diff --git a/gts/src/grammar.json b/gts/src/grammar.json
deleted file mode 100644
index ecf4d606..00000000
--- a/gts/src/grammar.json
+++ /dev/null
@@ -1,11959 +0,0 @@
-{
- "name": "gts",
- "word": "identifier",
- "rules": {
- "program": {
- "type": "SEQ",
- "members": [
- {
- "type": "CHOICE",
- "members": [
- {
- "type": "SYMBOL",
- "name": "hash_bang_line"
- },
- {
- "type": "BLANK"
- }
- ]
- },
- {
- "type": "REPEAT",
- "content": {
- "type": "SYMBOL",
- "name": "statement"
- }
- }
- ]
- },
- "hash_bang_line": {
- "type": "PATTERN",
- "value": "#!.*"
- },
- "export_statement": {
- "type": "CHOICE",
- "members": [
- {
- "type": "CHOICE",
- "members": [
- {
- "type": "SEQ",
- "members": [
- {
- "type": "STRING",
- "value": "export"
- },
- {
- "type": "CHOICE",
- "members": [
- {
- "type": "SEQ",
- "members": [
- {
- "type": "STRING",
- "value": "*"
- },
- {
- "type": "SYMBOL",
- "name": "_from_clause"
- }
- ]
- },
- {
- "type": "SEQ",
- "members": [
- {
- "type": "SYMBOL",
- "name": "namespace_export"
- },
- {
- "type": "SYMBOL",
- "name": "_from_clause"
- }
- ]
- },
- {
- "type": "SEQ",
- "members": [
- {
- "type": "SYMBOL",
- "name": "export_clause"
- },
- {
- "type": "SYMBOL",
- "name": "_from_clause"
- }
- ]
- },
- {
- "type": "SYMBOL",
- "name": "export_clause"
- }
- ]
- },
- {
- "type": "SYMBOL",
- "name": "_semicolon"
- }
- ]
- },
- {
- "type": "SEQ",
- "members": [
- {
- "type": "REPEAT",
- "content": {
- "type": "FIELD",
- "name": "decorator",
- "content": {
- "type": "SYMBOL",
- "name": "decorator"
- }
- }
- },
- {
- "type": "STRING",
- "value": "export"
- },
- {
- "type": "CHOICE",
- "members": [
- {
- "type": "FIELD",
- "name": "declaration",
- "content": {
- "type": "SYMBOL",
- "name": "declaration"
- }
- },
- {
- "type": "SEQ",
- "members": [
- {
- "type": "STRING",
- "value": "default"
- },
- {
- "type": "CHOICE",
- "members": [
- {
- "type": "FIELD",
- "name": "declaration",
- "content": {
- "type": "SYMBOL",
- "name": "declaration"
- }
- },
- {
- "type": "SEQ",
- "members": [
- {
- "type": "FIELD",
- "name": "value",
- "content": {
- "type": "SYMBOL",
- "name": "expression"
- }
- },
- {
- "type": "SYMBOL",
- "name": "_semicolon"
- }
- ]
- }
- ]
- }
- ]
- }
- ]
- }
- ]
- }
- ]
- },
- {
- "type": "SEQ",
- "members": [
- {
- "type": "STRING",
- "value": "export"
- },
- {
- "type": "STRING",
- "value": "type"
- },
- {
- "type": "SYMBOL",
- "name": "export_clause"
- },
- {
- "type": "CHOICE",
- "members": [
- {
- "type": "SYMBOL",
- "name": "_from_clause"
- },
- {
- "type": "BLANK"
- }
- ]
- },
- {
- "type": "SYMBOL",
- "name": "_semicolon"
- }
- ]
- },
- {
- "type": "SEQ",
- "members": [
- {
- "type": "STRING",
- "value": "export"
- },
- {
- "type": "STRING",
- "value": "="
- },
- {
- "type": "SYMBOL",
- "name": "expression"
- },
- {
- "type": "SYMBOL",
- "name": "_semicolon"
- }
- ]
- },
- {
- "type": "SEQ",
- "members": [
- {
- "type": "STRING",
- "value": "export"
- },
- {
- "type": "STRING",
- "value": "as"
- },
- {
- "type": "STRING",
- "value": "namespace"
- },
- {
- "type": "SYMBOL",
- "name": "identifier"
- },
- {
- "type": "SYMBOL",
- "name": "_semicolon"
- }
- ]
- }
- ]
- },
- "namespace_export": {
- "type": "SEQ",
- "members": [
- {
- "type": "STRING",
- "value": "*"
- },
- {
- "type": "STRING",
- "value": "as"
- },
- {
- "type": "SYMBOL",
- "name": "_module_export_name"
- }
- ]
- },
- "export_clause": {
- "type": "SEQ",
- "members": [
- {
- "type": "STRING",
- "value": "{"
- },
- {
- "type": "CHOICE",
- "members": [
- {
- "type": "SEQ",
- "members": [
- {
- "type": "SYMBOL",
- "name": "export_specifier"
- },
- {
- "type": "REPEAT",
- "content": {
- "type": "SEQ",
- "members": [
- {
- "type": "STRING",
- "value": ","
- },
- {
- "type": "SYMBOL",
- "name": "export_specifier"
- }
- ]
- }
- }
- ]
- },
- {
- "type": "BLANK"
- }
- ]
- },
- {
- "type": "CHOICE",
- "members": [
- {
- "type": "STRING",
- "value": ","
- },
- {
- "type": "BLANK"
- }
- ]
- },
- {
- "type": "STRING",
- "value": "}"
- }
- ]
- },
- "export_specifier": {
- "type": "SEQ",
- "members": [
- {
- "type": "CHOICE",
- "members": [
- {
- "type": "CHOICE",
- "members": [
- {
- "type": "STRING",
- "value": "type"
- },
- {
- "type": "STRING",
- "value": "typeof"
- }
- ]
- },
- {
- "type": "BLANK"
- }
- ]
- },
- {
- "type": "SEQ",
- "members": [
- {
- "type": "FIELD",
- "name": "name",
- "content": {
- "type": "SYMBOL",
- "name": "_module_export_name"
- }
- },
- {
- "type": "CHOICE",
- "members": [
- {
- "type": "SEQ",
- "members": [
- {
- "type": "STRING",
- "value": "as"
- },
- {
- "type": "FIELD",
- "name": "alias",
- "content": {
- "type": "SYMBOL",
- "name": "_module_export_name"
- }
- }
- ]
- },
- {
- "type": "BLANK"
- }
- ]
- }
- ]
- }
- ]
- },
- "_module_export_name": {
- "type": "CHOICE",
- "members": [
- {
- "type": "SYMBOL",
- "name": "identifier"
- },
- {
- "type": "SYMBOL",
- "name": "string"
- }
- ]
- },
- "declaration": {
- "type": "CHOICE",
- "members": [
- {
- "type": "CHOICE",
- "members": [
- {
- "type": "SYMBOL",
- "name": "function_declaration"
- },
- {
- "type": "SYMBOL",
- "name": "generator_function_declaration"
- },
- {
- "type": "SYMBOL",
- "name": "class_declaration"
- },
- {
- "type": "SYMBOL",
- "name": "lexical_declaration"
- },
- {
- "type": "SYMBOL",
- "name": "variable_declaration"
- }
- ]
- },
- {
- "type": "SYMBOL",
- "name": "function_signature"
- },
- {
- "type": "SYMBOL",
- "name": "abstract_class_declaration"
- },
- {
- "type": "SYMBOL",
- "name": "module"
- },
- {
- "type": "PREC",
- "value": "declaration",
- "content": {
- "type": "SYMBOL",
- "name": "internal_module"
- }
- },
- {
- "type": "SYMBOL",
- "name": "type_alias_declaration"
- },
- {
- "type": "SYMBOL",
- "name": "enum_declaration"
- },
- {
- "type": "SYMBOL",
- "name": "interface_declaration"
- },
- {
- "type": "SYMBOL",
- "name": "import_alias"
- },
- {
- "type": "SYMBOL",
- "name": "ambient_declaration"
- }
- ]
- },
- "import": {
- "type": "TOKEN",
- "content": {
- "type": "STRING",
- "value": "import"
- }
- },
- "import_statement": {
- "type": "SEQ",
- "members": [
- {
- "type": "STRING",
- "value": "import"
- },
- {
- "type": "CHOICE",
- "members": [
- {
- "type": "CHOICE",
- "members": [
- {
- "type": "STRING",
- "value": "type"
- },
- {
- "type": "STRING",
- "value": "typeof"
- }
- ]
- },
- {
- "type": "BLANK"
- }
- ]
- },
- {
- "type": "CHOICE",
- "members": [
- {
- "type": "SEQ",
- "members": [
- {
- "type": "SYMBOL",
- "name": "import_clause"
- },
- {
- "type": "SYMBOL",
- "name": "_from_clause"
- }
- ]
- },
- {
- "type": "SYMBOL",
- "name": "import_require_clause"
- },
- {
- "type": "FIELD",
- "name": "source",
- "content": {
- "type": "SYMBOL",
- "name": "string"
- }
- }
- ]
- },
- {
- "type": "CHOICE",
- "members": [
- {
- "type": "SYMBOL",
- "name": "import_attribute"
- },
- {
- "type": "BLANK"
- }
- ]
- },
- {
- "type": "SYMBOL",
- "name": "_semicolon"
- }
- ]
- },
- "import_clause": {
- "type": "CHOICE",
- "members": [
- {
- "type": "SYMBOL",
- "name": "namespace_import"
- },
- {
- "type": "SYMBOL",
- "name": "named_imports"
- },
- {
- "type": "SEQ",
- "members": [
- {
- "type": "SYMBOL",
- "name": "_import_identifier"
- },
- {
- "type": "CHOICE",
- "members": [
- {
- "type": "SEQ",
- "members": [
- {
- "type": "STRING",
- "value": ","
- },
- {
- "type": "CHOICE",
- "members": [
- {
- "type": "SYMBOL",
- "name": "namespace_import"
- },
- {
- "type": "SYMBOL",
- "name": "named_imports"
- }
- ]
- }
- ]
- },
- {
- "type": "BLANK"
- }
- ]
- }
- ]
- }
- ]
- },
- "_from_clause": {
- "type": "SEQ",
- "members": [
- {
- "type": "STRING",
- "value": "from"
- },
- {
- "type": "FIELD",
- "name": "source",
- "content": {
- "type": "SYMBOL",
- "name": "string"
- }
- }
- ]
- },
- "namespace_import": {
- "type": "SEQ",
- "members": [
- {
- "type": "STRING",
- "value": "*"
- },
- {
- "type": "STRING",
- "value": "as"
- },
- {
- "type": "SYMBOL",
- "name": "identifier"
- }
- ]
- },
- "named_imports": {
- "type": "SEQ",
- "members": [
- {
- "type": "STRING",
- "value": "{"
- },
- {
- "type": "CHOICE",
- "members": [
- {
- "type": "SEQ",
- "members": [
- {
- "type": "SYMBOL",
- "name": "import_specifier"
- },
- {
- "type": "REPEAT",
- "content": {
- "type": "SEQ",
- "members": [
- {
- "type": "STRING",
- "value": ","
- },
- {
- "type": "SYMBOL",
- "name": "import_specifier"
- }
- ]
- }
- }
- ]
- },
- {
- "type": "BLANK"
- }
- ]
- },
- {
- "type": "CHOICE",
- "members": [
- {
- "type": "STRING",
- "value": ","
- },
- {
- "type": "BLANK"
- }
- ]
- },
- {
- "type": "STRING",
- "value": "}"
- }
- ]
- },
- "import_specifier": {
- "type": "SEQ",
- "members": [
- {
- "type": "CHOICE",
- "members": [
- {
- "type": "CHOICE",
- "members": [
- {
- "type": "STRING",
- "value": "type"
- },
- {
- "type": "STRING",
- "value": "typeof"
- }
- ]
- },
- {
- "type": "BLANK"
- }
- ]
- },
- {
- "type": "CHOICE",
- "members": [
- {
- "type": "FIELD",
- "name": "name",
- "content": {
- "type": "SYMBOL",
- "name": "_import_identifier"
- }
- },
- {
- "type": "SEQ",
- "members": [
- {
- "type": "FIELD",
- "name": "name",
- "content": {
- "type": "CHOICE",
- "members": [
- {
- "type": "SYMBOL",
- "name": "_module_export_name"
- },
- {
- "type": "ALIAS",
- "content": {
- "type": "STRING",
- "value": "type"
- },
- "named": true,
- "value": "identifier"
- }
- ]
- }
- },
- {
- "type": "STRING",
- "value": "as"
- },
- {
- "type": "FIELD",
- "name": "alias",
- "content": {
- "type": "SYMBOL",
- "name": "_import_identifier"
- }
- }
- ]
- }
- ]
- }
- ]
- },
- "import_attribute": {
- "type": "SEQ",
- "members": [
- {
- "type": "CHOICE",
- "members": [
- {
- "type": "STRING",
- "value": "with"
- },
- {
- "type": "STRING",
- "value": "assert"
- }
- ]
- },
- {
- "type": "SYMBOL",
- "name": "object"
- }
- ]
- },
- "statement": {
- "type": "CHOICE",
- "members": [
- {
- "type": "SYMBOL",
- "name": "export_statement"
- },
- {
- "type": "SYMBOL",
- "name": "import_statement"
- },
- {
- "type": "SYMBOL",
- "name": "debugger_statement"
- },
- {
- "type": "SYMBOL",
- "name": "expression_statement"
- },
- {
- "type": "SYMBOL",
- "name": "declaration"
- },
- {
- "type": "SYMBOL",
- "name": "statement_block"
- },
- {
- "type": "SYMBOL",
- "name": "if_statement"
- },
- {
- "type": "SYMBOL",
- "name": "switch_statement"
- },
- {
- "type": "SYMBOL",
- "name": "for_statement"
- },
- {
- "type": "SYMBOL",
- "name": "for_in_statement"
- },
- {
- "type": "SYMBOL",
- "name": "while_statement"
- },
- {
- "type": "SYMBOL",
- "name": "do_statement"
- },
- {
- "type": "SYMBOL",
- "name": "try_statement"
- },
- {
- "type": "SYMBOL",
- "name": "with_statement"
- },
- {
- "type": "SYMBOL",
- "name": "break_statement"
- },
- {
- "type": "SYMBOL",
- "name": "continue_statement"
- },
- {
- "type": "SYMBOL",
- "name": "return_statement"
- },
- {
- "type": "SYMBOL",
- "name": "throw_statement"
- },
- {
- "type": "SYMBOL",
- "name": "empty_statement"
- },
- {
- "type": "SYMBOL",
- "name": "labeled_statement"
- }
- ]
- },
- "expression_statement": {
- "type": "SEQ",
- "members": [
- {
- "type": "SYMBOL",
- "name": "_expressions"
- },
- {
- "type": "SYMBOL",
- "name": "_semicolon"
- }
- ]
- },
- "variable_declaration": {
- "type": "SEQ",
- "members": [
- {
- "type": "STRING",
- "value": "var"
- },
- {
- "type": "SEQ",
- "members": [
- {
- "type": "SYMBOL",
- "name": "variable_declarator"
- },
- {
- "type": "REPEAT",
- "content": {
- "type": "SEQ",
- "members": [
- {
- "type": "STRING",
- "value": ","
- },
- {
- "type": "SYMBOL",
- "name": "variable_declarator"
- }
- ]
- }
- }
- ]
- },
- {
- "type": "SYMBOL",
- "name": "_semicolon"
- }
- ]
- },
- "lexical_declaration": {
- "type": "SEQ",
- "members": [
- {
- "type": "FIELD",
- "name": "kind",
- "content": {
- "type": "CHOICE",
- "members": [
- {
- "type": "STRING",
- "value": "let"
- },
- {
- "type": "STRING",
- "value": "const"
- }
- ]
- }
- },
- {
- "type": "SEQ",
- "members": [
- {
- "type": "SYMBOL",
- "name": "variable_declarator"
- },
- {
- "type": "REPEAT",
- "content": {
- "type": "SEQ",
- "members": [
- {
- "type": "STRING",
- "value": ","
- },
- {
- "type": "SYMBOL",
- "name": "variable_declarator"
- }
- ]
- }
- }
- ]
- },
- {
- "type": "SYMBOL",
- "name": "_semicolon"
- }
- ]
- },
- "variable_declarator": {
- "type": "CHOICE",
- "members": [
- {
- "type": "SEQ",
- "members": [
- {
- "type": "FIELD",
- "name": "name",
- "content": {
- "type": "CHOICE",
- "members": [
- {
- "type": "SYMBOL",
- "name": "identifier"
- },
- {
- "type": "SYMBOL",
- "name": "_destructuring_pattern"
- }
- ]
- }
- },
- {
- "type": "FIELD",
- "name": "type",
- "content": {
- "type": "CHOICE",
- "members": [
- {
- "type": "SYMBOL",
- "name": "type_annotation"
- },
- {
- "type": "BLANK"
- }
- ]
- }
- },
- {
- "type": "CHOICE",
- "members": [
- {
- "type": "SYMBOL",
- "name": "_initializer"
- },
- {
- "type": "BLANK"
- }
- ]
- }
- ]
- },
- {
- "type": "PREC",
- "value": "declaration",
- "content": {
- "type": "SEQ",
- "members": [
- {
- "type": "FIELD",
- "name": "name",
- "content": {
- "type": "SYMBOL",
- "name": "identifier"
- }
- },
- {
- "type": "STRING",
- "value": "!"
- },
- {
- "type": "FIELD",
- "name": "type",
- "content": {
- "type": "SYMBOL",
- "name": "type_annotation"
- }
- }
- ]
- }
- }
- ]
- },
- "statement_block": {
- "type": "PREC_RIGHT",
- "value": 0,
- "content": {
- "type": "SEQ",
- "members": [
- {
- "type": "STRING",
- "value": "{"
- },
- {
- "type": "REPEAT",
- "content": {
- "type": "SYMBOL",
- "name": "statement"
- }
- },
- {
- "type": "STRING",
- "value": "}"
- },
- {
- "type": "CHOICE",
- "members": [
- {
- "type": "SYMBOL",
- "name": "_automatic_semicolon"
- },
- {
- "type": "BLANK"
- }
- ]
- }
- ]
- }
- },
- "else_clause": {
- "type": "SEQ",
- "members": [
- {
- "type": "STRING",
- "value": "else"
- },
- {
- "type": "SYMBOL",
- "name": "statement"
- }
- ]
- },
- "if_statement": {
- "type": "PREC_RIGHT",
- "value": 0,
- "content": {
- "type": "SEQ",
- "members": [
- {
- "type": "STRING",
- "value": "if"
- },
- {
- "type": "FIELD",
- "name": "condition",
- "content": {
- "type": "SYMBOL",
- "name": "parenthesized_expression"
- }
- },
- {
- "type": "FIELD",
- "name": "consequence",
- "content": {
- "type": "SYMBOL",
- "name": "statement"
- }
- },
- {
- "type": "CHOICE",
- "members": [
- {
- "type": "FIELD",
- "name": "alternative",
- "content": {
- "type": "SYMBOL",
- "name": "else_clause"
- }
- },
- {
- "type": "BLANK"
- }
- ]
- }
- ]
- }
- },
- "switch_statement": {
- "type": "SEQ",
- "members": [
- {
- "type": "STRING",
- "value": "switch"
- },
- {
- "type": "FIELD",
- "name": "value",
- "content": {
- "type": "SYMBOL",
- "name": "parenthesized_expression"
- }
- },
- {
- "type": "FIELD",
- "name": "body",
- "content": {
- "type": "SYMBOL",
- "name": "switch_body"
- }
- }
- ]
- },
- "for_statement": {
- "type": "SEQ",
- "members": [
- {
- "type": "STRING",
- "value": "for"
- },
- {
- "type": "STRING",
- "value": "("
- },
- {
- "type": "FIELD",
- "name": "initializer",
- "content": {
- "type": "CHOICE",
- "members": [
- {
- "type": "SYMBOL",
- "name": "lexical_declaration"
- },
- {
- "type": "SYMBOL",
- "name": "variable_declaration"
- },
- {
- "type": "SYMBOL",
- "name": "expression_statement"
- },
- {
- "type": "SYMBOL",
- "name": "empty_statement"
- }
- ]
- }
- },
- {
- "type": "FIELD",
- "name": "condition",
- "content": {
- "type": "CHOICE",
- "members": [
- {
- "type": "SYMBOL",
- "name": "expression_statement"
- },
- {
- "type": "SYMBOL",
- "name": "empty_statement"
- }
- ]
- }
- },
- {
- "type": "FIELD",
- "name": "increment",
- "content": {
- "type": "CHOICE",
- "members": [
- {
- "type": "SYMBOL",
- "name": "_expressions"
- },
- {
- "type": "BLANK"
- }
- ]
- }
- },
- {
- "type": "STRING",
- "value": ")"
- },
- {
- "type": "FIELD",
- "name": "body",
- "content": {
- "type": "SYMBOL",
- "name": "statement"
- }
- }
- ]
- },
- "for_in_statement": {
- "type": "SEQ",
- "members": [
- {
- "type": "STRING",
- "value": "for"
- },
- {
- "type": "CHOICE",
- "members": [
- {
- "type": "STRING",
- "value": "await"
- },
- {
- "type": "BLANK"
- }
- ]
- },
- {
- "type": "SYMBOL",
- "name": "_for_header"
- },
- {
- "type": "FIELD",
- "name": "body",
- "content": {
- "type": "SYMBOL",
- "name": "statement"
- }
- }
- ]
- },
- "_for_header": {
- "type": "SEQ",
- "members": [
- {
- "type": "STRING",
- "value": "("
- },
- {
- "type": "CHOICE",
- "members": [
- {
- "type": "FIELD",
- "name": "left",
- "content": {
- "type": "CHOICE",
- "members": [
- {
- "type": "SYMBOL",
- "name": "_lhs_expression"
- },
- {
- "type": "SYMBOL",
- "name": "parenthesized_expression"
- }
- ]
- }
- },
- {
- "type": "SEQ",
- "members": [
- {
- "type": "FIELD",
- "name": "kind",
- "content": {
- "type": "STRING",
- "value": "var"
- }
- },
- {
- "type": "FIELD",
- "name": "left",
- "content": {
- "type": "CHOICE",
- "members": [
- {
- "type": "SYMBOL",
- "name": "identifier"
- },
- {
- "type": "SYMBOL",
- "name": "_destructuring_pattern"
- }
- ]
- }
- },
- {
- "type": "CHOICE",
- "members": [
- {
- "type": "SYMBOL",
- "name": "_initializer"
- },
- {
- "type": "BLANK"
- }
- ]
- }
- ]
- },
- {
- "type": "SEQ",
- "members": [
- {
- "type": "FIELD",
- "name": "kind",
- "content": {
- "type": "CHOICE",
- "members": [
- {
- "type": "STRING",
- "value": "let"
- },
- {
- "type": "STRING",
- "value": "const"
- }
- ]
- }
- },
- {
- "type": "FIELD",
- "name": "left",
- "content": {
- "type": "CHOICE",
- "members": [
- {
- "type": "SYMBOL",
- "name": "identifier"
- },
- {
- "type": "SYMBOL",
- "name": "_destructuring_pattern"
- }
- ]
- }
- }
- ]
- }
- ]
- },
- {
- "type": "FIELD",
- "name": "operator",
- "content": {
- "type": "CHOICE",
- "members": [
- {
- "type": "STRING",
- "value": "in"
- },
- {
- "type": "STRING",
- "value": "of"
- }
- ]
- }
- },
- {
- "type": "FIELD",
- "name": "right",
- "content": {
- "type": "SYMBOL",
- "name": "_expressions"
- }
- },
- {
- "type": "STRING",
- "value": ")"
- }
- ]
- },
- "while_statement": {
- "type": "SEQ",
- "members": [
- {
- "type": "STRING",
- "value": "while"
- },
- {
- "type": "FIELD",
- "name": "condition",
- "content": {
- "type": "SYMBOL",
- "name": "parenthesized_expression"
- }
- },
- {
- "type": "FIELD",
- "name": "body",
- "content": {
- "type": "SYMBOL",
- "name": "statement"
- }
- }
- ]
- },
- "do_statement": {
- "type": "PREC_RIGHT",
- "value": 0,
- "content": {
- "type": "SEQ",
- "members": [
- {
- "type": "STRING",
- "value": "do"
- },
- {
- "type": "FIELD",
- "name": "body",
- "content": {
- "type": "SYMBOL",
- "name": "statement"
- }
- },
- {
- "type": "STRING",
- "value": "while"
- },
- {
- "type": "FIELD",
- "name": "condition",
- "content": {
- "type": "SYMBOL",
- "name": "parenthesized_expression"
- }
- },
- {
- "type": "CHOICE",
- "members": [
- {
- "type": "SYMBOL",
- "name": "_semicolon"
- },
- {
- "type": "BLANK"
- }
- ]
- }
- ]
- }
- },
- "try_statement": {
- "type": "SEQ",
- "members": [
- {
- "type": "STRING",
- "value": "try"
- },
- {
- "type": "FIELD",
- "name": "body",
- "content": {
- "type": "SYMBOL",
- "name": "statement_block"
- }
- },
- {
- "type": "CHOICE",
- "members": [
- {
- "type": "FIELD",
- "name": "handler",
- "content": {
- "type": "SYMBOL",
- "name": "catch_clause"
- }
- },
- {
- "type": "BLANK"
- }
- ]
- },
- {
- "type": "CHOICE",
- "members": [
- {
- "type": "FIELD",
- "name": "finalizer",
- "content": {
- "type": "SYMBOL",
- "name": "finally_clause"
- }
- },
- {
- "type": "BLANK"
- }
- ]
- }
- ]
- },
- "with_statement": {
- "type": "SEQ",
- "members": [
- {
- "type": "STRING",
- "value": "with"
- },
- {
- "type": "FIELD",
- "name": "object",
- "content": {
- "type": "SYMBOL",
- "name": "parenthesized_expression"
- }
- },
- {
- "type": "FIELD",
- "name": "body",
- "content": {
- "type": "SYMBOL",
- "name": "statement"
- }
- }
- ]
- },
- "break_statement": {
- "type": "SEQ",
- "members": [
- {
- "type": "STRING",
- "value": "break"
- },
- {
- "type": "FIELD",
- "name": "label",
- "content": {
- "type": "CHOICE",
- "members": [
- {
- "type": "ALIAS",
- "content": {
- "type": "SYMBOL",
- "name": "identifier"
- },
- "named": true,
- "value": "statement_identifier"
- },
- {
- "type": "BLANK"
- }
- ]
- }
- },
- {
- "type": "SYMBOL",
- "name": "_semicolon"
- }
- ]
- },
- "continue_statement": {
- "type": "SEQ",
- "members": [
- {
- "type": "STRING",
- "value": "continue"
- },
- {
- "type": "FIELD",
- "name": "label",
- "content": {
- "type": "CHOICE",
- "members": [
- {
- "type": "ALIAS",
- "content": {
- "type": "SYMBOL",
- "name": "identifier"
- },
- "named": true,
- "value": "statement_identifier"
- },
- {
- "type": "BLANK"
- }
- ]
- }
- },
- {
- "type": "SYMBOL",
- "name": "_semicolon"
- }
- ]
- },
- "debugger_statement": {
- "type": "SEQ",
- "members": [
- {
- "type": "STRING",
- "value": "debugger"
- },
- {
- "type": "SYMBOL",
- "name": "_semicolon"
- }
- ]
- },
- "return_statement": {
- "type": "SEQ",
- "members": [
- {
- "type": "STRING",
- "value": "return"
- },
- {
- "type": "CHOICE",
- "members": [
- {
- "type": "SYMBOL",
- "name": "_expressions"
- },
- {
- "type": "BLANK"
- }
- ]
- },
- {
- "type": "SYMBOL",
- "name": "_semicolon"
- }
- ]
- },
- "throw_statement": {
- "type": "SEQ",
- "members": [
- {
- "type": "STRING",
- "value": "throw"
- },
- {
- "type": "SYMBOL",
- "name": "_expressions"
- },
- {
- "type": "SYMBOL",
- "name": "_semicolon"
- }
- ]
- },
- "empty_statement": {
- "type": "STRING",
- "value": ";"
- },
- "labeled_statement": {
- "type": "PREC_DYNAMIC",
- "value": -1,
- "content": {
- "type": "SEQ",
- "members": [
- {
- "type": "FIELD",
- "name": "label",
- "content": {
- "type": "ALIAS",
- "content": {
- "type": "CHOICE",
- "members": [
- {
- "type": "SYMBOL",
- "name": "identifier"
- },
- {
- "type": "SYMBOL",
- "name": "_reserved_identifier"
- }
- ]
- },
- "named": true,
- "value": "statement_identifier"
- }
- },
- {
- "type": "STRING",
- "value": ":"
- },
- {
- "type": "FIELD",
- "name": "body",
- "content": {
- "type": "SYMBOL",
- "name": "statement"
- }
- }
- ]
- }
- },
- "switch_body": {
- "type": "SEQ",
- "members": [
- {
- "type": "STRING",
- "value": "{"
- },
- {
- "type": "REPEAT",
- "content": {
- "type": "CHOICE",
- "members": [
- {
- "type": "SYMBOL",
- "name": "switch_case"
- },
- {
- "type": "SYMBOL",
- "name": "switch_default"
- }
- ]
- }
- },
- {
- "type": "STRING",
- "value": "}"
- }
- ]
- },
- "switch_case": {
- "type": "SEQ",
- "members": [
- {
- "type": "STRING",
- "value": "case"
- },
- {
- "type": "FIELD",
- "name": "value",
- "content": {
- "type": "SYMBOL",
- "name": "_expressions"
- }
- },
- {
- "type": "STRING",
- "value": ":"
- },
- {
- "type": "FIELD",
- "name": "body",
- "content": {
- "type": "REPEAT",
- "content": {
- "type": "SYMBOL",
- "name": "statement"
- }
- }
- }
- ]
- },
- "switch_default": {
- "type": "SEQ",
- "members": [
- {
- "type": "STRING",
- "value": "default"
- },
- {
- "type": "STRING",
- "value": ":"
- },
- {
- "type": "FIELD",
- "name": "body",
- "content": {
- "type": "REPEAT",
- "content": {
- "type": "SYMBOL",
- "name": "statement"
- }
- }
- }
- ]
- },
- "catch_clause": {
- "type": "SEQ",
- "members": [
- {
- "type": "STRING",
- "value": "catch"
- },
- {
- "type": "CHOICE",
- "members": [
- {
- "type": "SEQ",
- "members": [
- {
- "type": "STRING",
- "value": "("
- },
- {
- "type": "FIELD",
- "name": "parameter",
- "content": {
- "type": "CHOICE",
- "members": [
- {
- "type": "SYMBOL",
- "name": "identifier"
- },
- {
- "type": "SYMBOL",
- "name": "_destructuring_pattern"
- }
- ]
- }
- },
- {
- "type": "CHOICE",
- "members": [
- {
- "type": "FIELD",
- "name": "type",
- "content": {
- "type": "SYMBOL",
- "name": "type_annotation"
- }
- },
- {
- "type": "BLANK"
- }
- ]
- },
- {
- "type": "STRING",
- "value": ")"
- }
- ]
- },
- {
- "type": "BLANK"
- }
- ]
- },
- {
- "type": "FIELD",
- "name": "body",
- "content": {
- "type": "SYMBOL",
- "name": "statement_block"
- }
- }
- ]
- },
- "finally_clause": {
- "type": "SEQ",
- "members": [
- {
- "type": "STRING",
- "value": "finally"
- },
- {
- "type": "FIELD",
- "name": "body",
- "content": {
- "type": "SYMBOL",
- "name": "statement_block"
- }
- }
- ]
- },
- "parenthesized_expression": {
- "type": "SEQ",
- "members": [
- {
- "type": "STRING",
- "value": "("
- },
- {
- "type": "CHOICE",
- "members": [
- {
- "type": "SEQ",
- "members": [
- {
- "type": "SYMBOL",
- "name": "expression"
- },
- {
- "type": "FIELD",
- "name": "type",
- "content": {
- "type": "CHOICE",
- "members": [
- {
- "type": "SYMBOL",
- "name": "type_annotation"
- },
- {
- "type": "BLANK"
- }
- ]
- }
- }
- ]
- },
- {
- "type": "SYMBOL",
- "name": "sequence_expression"
- }
- ]
- },
- {
- "type": "STRING",
- "value": ")"
- }
- ]
- },
- "_expressions": {
- "type": "CHOICE",
- "members": [
- {
- "type": "SYMBOL",
- "name": "expression"
- },
- {
- "type": "SYMBOL",
- "name": "sequence_expression"
- }
- ]
- },
- "expression": {
- "type": "CHOICE",
- "members": [
- {
- "type": "SYMBOL",
- "name": "as_expression"
- },
- {
- "type": "SYMBOL",
- "name": "satisfies_expression"
- },
- {
- "type": "SYMBOL",
- "name": "instantiation_expression"
- },
- {
- "type": "SYMBOL",
- "name": "internal_module"
- },
- {
- "type": "SYMBOL",
- "name": "glimmer_template"
- },
- {
- "type": "SYMBOL",
- "name": "type_assertion"
- },
- {
- "type": "SYMBOL",
- "name": "primary_expression"
- },
- {
- "type": "SYMBOL",
- "name": "glimmer_template"
- },
- {
- "type": "SYMBOL",
- "name": "assignment_expression"
- },
- {
- "type": "SYMBOL",
- "name": "augmented_assignment_expression"
- },
- {
- "type": "SYMBOL",
- "name": "await_expression"
- },
- {
- "type": "SYMBOL",
- "name": "unary_expression"
- },
- {
- "type": "SYMBOL",
- "name": "binary_expression"
- },
- {
- "type": "SYMBOL",
- "name": "ternary_expression"
- },
- {
- "type": "SYMBOL",
- "name": "update_expression"
- },
- {
- "type": "SYMBOL",
- "name": "new_expression"
- },
- {
- "type": "SYMBOL",
- "name": "yield_expression"
- }
- ]
- },
- "primary_expression": {
- "type": "CHOICE",
- "members": [
- {
- "type": "CHOICE",
- "members": [
- {
- "type": "SYMBOL",
- "name": "subscript_expression"
- },
- {
- "type": "SYMBOL",
- "name": "member_expression"
- },
- {
- "type": "SYMBOL",
- "name": "parenthesized_expression"
- },
- {
- "type": "SYMBOL",
- "name": "_identifier"
- },
- {
- "type": "ALIAS",
- "content": {
- "type": "SYMBOL",
- "name": "_reserved_identifier"
- },
- "named": true,
- "value": "identifier"
- },
- {
- "type": "SYMBOL",
- "name": "this"
- },
- {
- "type": "SYMBOL",
- "name": "super"
- },
- {
- "type": "SYMBOL",
- "name": "number"
- },
- {
- "type": "SYMBOL",
- "name": "string"
- },
- {
- "type": "SYMBOL",
- "name": "template_string"
- },
- {
- "type": "SYMBOL",
- "name": "regex"
- },
- {
- "type": "SYMBOL",
- "name": "true"
- },
- {
- "type": "SYMBOL",
- "name": "false"
- },
- {
- "type": "SYMBOL",
- "name": "null"
- },
- {
- "type": "SYMBOL",
- "name": "object"
- },
- {
- "type": "SYMBOL",
- "name": "array"
- },
- {
- "type": "SYMBOL",
- "name": "function_expression"
- },
- {
- "type": "SYMBOL",
- "name": "arrow_function"
- },
- {
- "type": "SYMBOL",
- "name": "generator_function"
- },
- {
- "type": "SYMBOL",
- "name": "class"
- },
- {
- "type": "SYMBOL",
- "name": "meta_property"
- },
- {
- "type": "SYMBOL",
- "name": "call_expression"
- }
- ]
- },
- {
- "type": "SYMBOL",
- "name": "non_null_expression"
- }
- ]
- },
- "yield_expression": {
- "type": "PREC_RIGHT",
- "value": 0,
- "content": {
- "type": "SEQ",
- "members": [
- {
- "type": "STRING",
- "value": "yield"
- },
- {
- "type": "CHOICE",
- "members": [
- {
- "type": "SEQ",
- "members": [
- {
- "type": "STRING",
- "value": "*"
- },
- {
- "type": "SYMBOL",
- "name": "expression"
- }
- ]
- },
- {
- "type": "CHOICE",
- "members": [
- {
- "type": "SYMBOL",
- "name": "expression"
- },
- {
- "type": "BLANK"
- }
- ]
- }
- ]
- }
- ]
- }
- },
- "object": {
- "type": "PREC",
- "value": "object",
- "content": {
- "type": "SEQ",
- "members": [
- {
- "type": "STRING",
- "value": "{"
- },
- {
- "type": "CHOICE",
- "members": [
- {
- "type": "SEQ",
- "members": [
- {
- "type": "CHOICE",
- "members": [
- {
- "type": "CHOICE",
- "members": [
- {
- "type": "SYMBOL",
- "name": "pair"
- },
- {
- "type": "SYMBOL",
- "name": "spread_element"
- },
- {
- "type": "SYMBOL",
- "name": "method_definition"
- },
- {
- "type": "ALIAS",
- "content": {
- "type": "CHOICE",
- "members": [
- {
- "type": "SYMBOL",
- "name": "identifier"
- },
- {
- "type": "SYMBOL",
- "name": "_reserved_identifier"
- }
- ]
- },
- "named": true,
- "value": "shorthand_property_identifier"
- }
- ]
- },
- {
- "type": "BLANK"
- }
- ]
- },
- {
- "type": "REPEAT",
- "content": {
- "type": "SEQ",
- "members": [
- {
- "type": "STRING",
- "value": ","
- },
- {
- "type": "CHOICE",
- "members": [
- {
- "type": "CHOICE",
- "members": [
- {
- "type": "SYMBOL",
- "name": "pair"
- },
- {
- "type": "SYMBOL",
- "name": "spread_element"
- },
- {
- "type": "SYMBOL",
- "name": "method_definition"
- },
- {
- "type": "ALIAS",
- "content": {
- "type": "CHOICE",
- "members": [
- {
- "type": "SYMBOL",
- "name": "identifier"
- },
- {
- "type": "SYMBOL",
- "name": "_reserved_identifier"
- }
- ]
- },
- "named": true,
- "value": "shorthand_property_identifier"
- }
- ]
- },
- {
- "type": "BLANK"
- }
- ]
- }
- ]
- }
- }
- ]
- },
- {
- "type": "BLANK"
- }
- ]
- },
- {
- "type": "STRING",
- "value": "}"
- }
- ]
- }
- },
- "object_pattern": {
- "type": "PREC",
- "value": "object",
- "content": {
- "type": "SEQ",
- "members": [
- {
- "type": "STRING",
- "value": "{"
- },
- {
- "type": "CHOICE",
- "members": [
- {
- "type": "SEQ",
- "members": [
- {
- "type": "CHOICE",
- "members": [
- {
- "type": "CHOICE",
- "members": [
- {
- "type": "SYMBOL",
- "name": "pair_pattern"
- },
- {
- "type": "SYMBOL",
- "name": "rest_pattern"
- },
- {
- "type": "SYMBOL",
- "name": "object_assignment_pattern"
- },
- {
- "type": "ALIAS",
- "content": {
- "type": "CHOICE",
- "members": [
- {
- "type": "SYMBOL",
- "name": "identifier"
- },
- {
- "type": "SYMBOL",
- "name": "_reserved_identifier"
- }
- ]
- },
- "named": true,
- "value": "shorthand_property_identifier_pattern"
- }
- ]
- },
- {
- "type": "BLANK"
- }
- ]
- },
- {
- "type": "REPEAT",
- "content": {
- "type": "SEQ",
- "members": [
- {
- "type": "STRING",
- "value": ","
- },
- {
- "type": "CHOICE",
- "members": [
- {
- "type": "CHOICE",
- "members": [
- {
- "type": "SYMBOL",
- "name": "pair_pattern"
- },
- {
- "type": "SYMBOL",
- "name": "rest_pattern"
- },
- {
- "type": "SYMBOL",
- "name": "object_assignment_pattern"
- },
- {
- "type": "ALIAS",
- "content": {
- "type": "CHOICE",
- "members": [
- {
- "type": "SYMBOL",
- "name": "identifier"
- },
- {
- "type": "SYMBOL",
- "name": "_reserved_identifier"
- }
- ]
- },
- "named": true,
- "value": "shorthand_property_identifier_pattern"
- }
- ]
- },
- {
- "type": "BLANK"
- }
- ]
- }
- ]
- }
- }
- ]
- },
- {
- "type": "BLANK"
- }
- ]
- },
- {
- "type": "STRING",
- "value": "}"
- }
- ]
- }
- },
- "assignment_pattern": {
- "type": "SEQ",
- "members": [
- {
- "type": "FIELD",
- "name": "left",
- "content": {
- "type": "SYMBOL",
- "name": "pattern"
- }
- },
- {
- "type": "STRING",
- "value": "="
- },
- {
- "type": "FIELD",
- "name": "right",
- "content": {
- "type": "SYMBOL",
- "name": "expression"
- }
- }
- ]
- },
- "object_assignment_pattern": {
- "type": "SEQ",
- "members": [
- {
- "type": "FIELD",
- "name": "left",
- "content": {
- "type": "CHOICE",
- "members": [
- {
- "type": "ALIAS",
- "content": {
- "type": "CHOICE",
- "members": [
- {
- "type": "SYMBOL",
- "name": "_reserved_identifier"
- },
- {
- "type": "SYMBOL",
- "name": "identifier"
- }
- ]
- },
- "named": true,
- "value": "shorthand_property_identifier_pattern"
- },
- {
- "type": "SYMBOL",
- "name": "_destructuring_pattern"
- }
- ]
- }
- },
- {
- "type": "STRING",
- "value": "="
- },
- {
- "type": "FIELD",
- "name": "right",
- "content": {
- "type": "SYMBOL",
- "name": "expression"
- }
- }
- ]
- },
- "array": {
- "type": "SEQ",
- "members": [
- {
- "type": "STRING",
- "value": "["
- },
- {
- "type": "CHOICE",
- "members": [
- {
- "type": "SEQ",
- "members": [
- {
- "type": "CHOICE",
- "members": [
- {
- "type": "CHOICE",
- "members": [
- {
- "type": "SYMBOL",
- "name": "expression"
- },
- {
- "type": "SYMBOL",
- "name": "spread_element"
- }
- ]
- },
- {
- "type": "BLANK"
- }
- ]
- },
- {
- "type": "REPEAT",
- "content": {
- "type": "SEQ",
- "members": [
- {
- "type": "STRING",
- "value": ","
- },
- {
- "type": "CHOICE",
- "members": [
- {
- "type": "CHOICE",
- "members": [
- {
- "type": "SYMBOL",
- "name": "expression"
- },
- {
- "type": "SYMBOL",
- "name": "spread_element"
- }
- ]
- },
- {
- "type": "BLANK"
- }
- ]
- }
- ]
- }
- }
- ]
- },
- {
- "type": "BLANK"
- }
- ]
- },
- {
- "type": "STRING",
- "value": "]"
- }
- ]
- },
- "array_pattern": {
- "type": "SEQ",
- "members": [
- {
- "type": "STRING",
- "value": "["
- },
- {
- "type": "CHOICE",
- "members": [
- {
- "type": "SEQ",
- "members": [
- {
- "type": "CHOICE",
- "members": [
- {
- "type": "CHOICE",
- "members": [
- {
- "type": "SYMBOL",
- "name": "pattern"
- },
- {
- "type": "SYMBOL",
- "name": "assignment_pattern"
- }
- ]
- },
- {
- "type": "BLANK"
- }
- ]
- },
- {
- "type": "REPEAT",
- "content": {
- "type": "SEQ",
- "members": [
- {
- "type": "STRING",
- "value": ","
- },
- {
- "type": "CHOICE",
- "members": [
- {
- "type": "CHOICE",
- "members": [
- {
- "type": "SYMBOL",
- "name": "pattern"
- },
- {
- "type": "SYMBOL",
- "name": "assignment_pattern"
- }
- ]
- },
- {
- "type": "BLANK"
- }
- ]
- }
- ]
- }
- }
- ]
- },
- {
- "type": "BLANK"
- }
- ]
- },
- {
- "type": "STRING",
- "value": "]"
- }
- ]
- },
- "glimmer_template": {
- "type": "CHOICE",
- "members": [
- {
- "type": "SEQ",
- "members": [
- {
- "type": "FIELD",
- "name": "open_tag",
- "content": {
- "type": "SYMBOL",
- "name": "glimmer_opening_tag"
- }
- },
- {
- "type": "FIELD",
- "name": "content",
- "content": {
- "type": "REPEAT",
- "content": {
- "type": "SYMBOL",
- "name": "_glimmer_template_content"
- }
- }
- },
- {
- "type": "FIELD",
- "name": "close_tag",
- "content": {
- "type": "SYMBOL",
- "name": "glimmer_closing_tag"
- }
- }
- ]
- },
- {
- "type": "SEQ",
- "members": [
- {
- "type": "FIELD",
- "name": "open_tag",
- "content": {
- "type": "SYMBOL",
- "name": "glimmer_opening_tag"
- }
- },
- {
- "type": "FIELD",
- "name": "close_tag",
- "content": {
- "type": "SYMBOL",
- "name": "glimmer_closing_tag"
- }
- }
- ]
- }
- ]
- },
- "_glimmer_template_content": {
- "type": "PATTERN",
- "value": ".{1,}"
- },
- "glimmer_opening_tag": {
- "type": "STRING",
- "value": ""
- },
- "glimmer_closing_tag": {
- "type": "STRING",
- "value": ""
- },
- "_jsx_element": {
- "type": "CHOICE",
- "members": [
- {
- "type": "SYMBOL",
- "name": "jsx_element"
- },
- {
- "type": "SYMBOL",
- "name": "jsx_self_closing_element"
- }
- ]
- },
- "jsx_element": {
- "type": "SEQ",
- "members": [
- {
- "type": "FIELD",
- "name": "open_tag",
- "content": {
- "type": "SYMBOL",
- "name": "jsx_opening_element"
- }
- },
- {
- "type": "REPEAT",
- "content": {
- "type": "SYMBOL",
- "name": "_jsx_child"
- }
- },
- {
- "type": "FIELD",
- "name": "close_tag",
- "content": {
- "type": "SYMBOL",
- "name": "jsx_closing_element"
- }
- }
- ]
- },
- "jsx_text": {
- "type": "CHOICE",
- "members": [
- {
- "type": "IMMEDIATE_TOKEN",
- "content": {
- "type": "PATTERN",
- "value": "[^{}<>&]*[^{}<>\\s\\p{Zs}\\uFEFF\\u2028\\u2029\\u2060\\u200B&][^{}<>&]*"
- }
- },
- {
- "type": "IMMEDIATE_TOKEN",
- "content": {
- "type": "PATTERN",
- "value": "[^{}<>\\n&]+"
- }
- }
- ]
- },
- "html_character_reference": {
- "type": "PATTERN",
- "value": "&(#([xX][0-9a-fA-F]{1,6}|[0-9]{1,5})|[A-Za-z]{1,30});"
- },
- "jsx_expression": {
- "type": "SEQ",
- "members": [
- {
- "type": "STRING",
- "value": "{"
- },
- {
- "type": "CHOICE",
- "members": [
- {
- "type": "CHOICE",
- "members": [
- {
- "type": "SYMBOL",
- "name": "expression"
- },
- {
- "type": "SYMBOL",
- "name": "sequence_expression"
- },
- {
- "type": "SYMBOL",
- "name": "spread_element"
- }
- ]
- },
- {
- "type": "BLANK"
- }
- ]
- },
- {
- "type": "STRING",
- "value": "}"
- }
- ]
- },
- "_jsx_child": {
- "type": "CHOICE",
- "members": [
- {
- "type": "SYMBOL",
- "name": "jsx_text"
- },
- {
- "type": "SYMBOL",
- "name": "html_character_reference"
- },
- {
- "type": "SYMBOL",
- "name": "_jsx_element"
- },
- {
- "type": "SYMBOL",
- "name": "jsx_expression"
- }
- ]
- },
- "jsx_opening_element": {
- "type": "PREC_DYNAMIC",
- "value": -1,
- "content": {
- "type": "SEQ",
- "members": [
- {
- "type": "SYMBOL",
- "name": "_jsx_start_opening_element"
- },
- {
- "type": "STRING",
- "value": ">"
- }
- ]
- }
- },
- "jsx_identifier": {
- "type": "PATTERN",
- "value": "[a-zA-Z_$][a-zA-Z\\d_$]*-[a-zA-Z\\d_$\\-]*"
- },
- "_jsx_identifier": {
- "type": "CHOICE",
- "members": [
- {
- "type": "ALIAS",
- "content": {
- "type": "SYMBOL",
- "name": "jsx_identifier"
- },
- "named": true,
- "value": "identifier"
- },
- {
- "type": "SYMBOL",
- "name": "identifier"
- }
- ]
- },
- "nested_identifier": {
- "type": "PREC",
- "value": "member",
- "content": {
- "type": "SEQ",
- "members": [
- {
- "type": "FIELD",
- "name": "object",
- "content": {
- "type": "CHOICE",
- "members": [
- {
- "type": "SYMBOL",
- "name": "identifier"
- },
- {
- "type": "ALIAS",
- "content": {
- "type": "SYMBOL",
- "name": "nested_identifier"
- },
- "named": true,
- "value": "member_expression"
- }
- ]
- }
- },
- {
- "type": "STRING",
- "value": "."
- },
- {
- "type": "FIELD",
- "name": "property",
- "content": {
- "type": "ALIAS",
- "content": {
- "type": "SYMBOL",
- "name": "identifier"
- },
- "named": true,
- "value": "property_identifier"
- }
- }
- ]
- }
- },
- "jsx_namespace_name": {
- "type": "SEQ",
- "members": [
- {
- "type": "SYMBOL",
- "name": "_jsx_identifier"
- },
- {
- "type": "STRING",
- "value": ":"
- },
- {
- "type": "SYMBOL",
- "name": "_jsx_identifier"
- }
- ]
- },
- "_jsx_element_name": {
- "type": "CHOICE",
- "members": [
- {
- "type": "SYMBOL",
- "name": "_jsx_identifier"
- },
- {
- "type": "ALIAS",
- "content": {
- "type": "SYMBOL",
- "name": "nested_identifier"
- },
- "named": true,
- "value": "member_expression"
- },
- {
- "type": "SYMBOL",
- "name": "jsx_namespace_name"
- }
- ]
- },
- "jsx_closing_element": {
- "type": "SEQ",
- "members": [
- {
- "type": "STRING",
- "value": ""
- },
- {
- "type": "CHOICE",
- "members": [
- {
- "type": "FIELD",
- "name": "name",
- "content": {
- "type": "SYMBOL",
- "name": "_jsx_element_name"
- }
- },
- {
- "type": "BLANK"
- }
- ]
- },
- {
- "type": "STRING",
- "value": ">"
- }
- ]
- },
- "jsx_self_closing_element": {
- "type": "PREC_DYNAMIC",
- "value": -1,
- "content": {
- "type": "SEQ",
- "members": [
- {
- "type": "SYMBOL",
- "name": "_jsx_start_opening_element"
- },
- {
- "type": "STRING",
- "value": "/>"
- }
- ]
- }
- },
- "_jsx_attribute": {
- "type": "CHOICE",
- "members": [
- {
- "type": "SYMBOL",
- "name": "jsx_attribute"
- },
- {
- "type": "SYMBOL",
- "name": "jsx_expression"
- }
- ]
- },
- "_jsx_attribute_name": {
- "type": "CHOICE",
- "members": [
- {
- "type": "ALIAS",
- "content": {
- "type": "SYMBOL",
- "name": "_jsx_identifier"
- },
- "named": true,
- "value": "property_identifier"
- },
- {
- "type": "SYMBOL",
- "name": "jsx_namespace_name"
- }
- ]
- },
- "jsx_attribute": {
- "type": "SEQ",
- "members": [
- {
- "type": "SYMBOL",
- "name": "_jsx_attribute_name"
- },
- {
- "type": "CHOICE",
- "members": [
- {
- "type": "SEQ",
- "members": [
- {
- "type": "STRING",
- "value": "="
- },
- {
- "type": "SYMBOL",
- "name": "_jsx_attribute_value"
- }
- ]
- },
- {
- "type": "BLANK"
- }
- ]
- }
- ]
- },
- "_jsx_string": {
- "type": "CHOICE",
- "members": [
- {
- "type": "SEQ",
- "members": [
- {
- "type": "STRING",
- "value": "\""
- },
- {
- "type": "REPEAT",
- "content": {
- "type": "CHOICE",
- "members": [
- {
- "type": "ALIAS",
- "content": {
- "type": "SYMBOL",
- "name": "unescaped_double_jsx_string_fragment"
- },
- "named": true,
- "value": "string_fragment"
- },
- {
- "type": "SYMBOL",
- "name": "html_character_reference"
- }
- ]
- }
- },
- {
- "type": "STRING",
- "value": "\""
- }
- ]
- },
- {
- "type": "SEQ",
- "members": [
- {
- "type": "STRING",
- "value": "'"
- },
- {
- "type": "REPEAT",
- "content": {
- "type": "CHOICE",
- "members": [
- {
- "type": "ALIAS",
- "content": {
- "type": "SYMBOL",
- "name": "unescaped_single_jsx_string_fragment"
- },
- "named": true,
- "value": "string_fragment"
- },
- {
- "type": "SYMBOL",
- "name": "html_character_reference"
- }
- ]
- }
- },
- {
- "type": "STRING",
- "value": "'"
- }
- ]
- }
- ]
- },
- "unescaped_double_jsx_string_fragment": {
- "type": "IMMEDIATE_TOKEN",
- "content": {
- "type": "PREC",
- "value": 1,
- "content": {
- "type": "PATTERN",
- "value": "([^\"&]|&[^#A-Za-z])+"
- }
- }
- },
- "unescaped_single_jsx_string_fragment": {
- "type": "IMMEDIATE_TOKEN",
- "content": {
- "type": "PREC",
- "value": 1,
- "content": {
- "type": "PATTERN",
- "value": "([^'&]|&[^#A-Za-z])+"
- }
- }
- },
- "_jsx_attribute_value": {
- "type": "CHOICE",
- "members": [
- {
- "type": "ALIAS",
- "content": {
- "type": "SYMBOL",
- "name": "_jsx_string"
- },
- "named": true,
- "value": "string"
- },
- {
- "type": "SYMBOL",
- "name": "jsx_expression"
- },
- {
- "type": "SYMBOL",
- "name": "_jsx_element"
- }
- ]
- },
- "class": {
- "type": "PREC",
- "value": "literal",
- "content": {
- "type": "SEQ",
- "members": [
- {
- "type": "REPEAT",
- "content": {
- "type": "FIELD",
- "name": "decorator",
- "content": {
- "type": "SYMBOL",
- "name": "decorator"
- }
- }
- },
- {
- "type": "STRING",
- "value": "class"
- },
- {
- "type": "FIELD",
- "name": "name",
- "content": {
- "type": "CHOICE",
- "members": [
- {
- "type": "SYMBOL",
- "name": "_type_identifier"
- },
- {
- "type": "BLANK"
- }
- ]
- }
- },
- {
- "type": "FIELD",
- "name": "type_parameters",
- "content": {
- "type": "CHOICE",
- "members": [
- {
- "type": "SYMBOL",
- "name": "type_parameters"
- },
- {
- "type": "BLANK"
- }
- ]
- }
- },
- {
- "type": "CHOICE",
- "members": [
- {
- "type": "SYMBOL",
- "name": "class_heritage"
- },
- {
- "type": "BLANK"
- }
- ]
- },
- {
- "type": "FIELD",
- "name": "body",
- "content": {
- "type": "SYMBOL",
- "name": "class_body"
- }
- }
- ]
- }
- },
- "class_declaration": {
- "type": "PREC_LEFT",
- "value": "declaration",
- "content": {
- "type": "SEQ",
- "members": [
- {
- "type": "REPEAT",
- "content": {
- "type": "FIELD",
- "name": "decorator",
- "content": {
- "type": "SYMBOL",
- "name": "decorator"
- }
- }
- },
- {
- "type": "STRING",
- "value": "class"
- },
- {
- "type": "FIELD",
- "name": "name",
- "content": {
- "type": "SYMBOL",
- "name": "_type_identifier"
- }
- },
- {
- "type": "FIELD",
- "name": "type_parameters",
- "content": {
- "type": "CHOICE",
- "members": [
- {
- "type": "SYMBOL",
- "name": "type_parameters"
- },
- {
- "type": "BLANK"
- }
- ]
- }
- },
- {
- "type": "CHOICE",
- "members": [
- {
- "type": "SYMBOL",
- "name": "class_heritage"
- },
- {
- "type": "BLANK"
- }
- ]
- },
- {
- "type": "FIELD",
- "name": "body",
- "content": {
- "type": "SYMBOL",
- "name": "class_body"
- }
- },
- {
- "type": "CHOICE",
- "members": [
- {
- "type": "SYMBOL",
- "name": "_automatic_semicolon"
- },
- {
- "type": "BLANK"
- }
- ]
- }
- ]
- }
- },
- "class_heritage": {
- "type": "CHOICE",
- "members": [
- {
- "type": "SEQ",
- "members": [
- {
- "type": "SYMBOL",
- "name": "extends_clause"
- },
- {
- "type": "CHOICE",
- "members": [
- {
- "type": "SYMBOL",
- "name": "implements_clause"
- },
- {
- "type": "BLANK"
- }
- ]
- }
- ]
- },
- {
- "type": "SYMBOL",
- "name": "implements_clause"
- }
- ]
- },
- "function_expression": {
- "type": "PREC",
- "value": "literal",
- "content": {
- "type": "SEQ",
- "members": [
- {
- "type": "CHOICE",
- "members": [
- {
- "type": "STRING",
- "value": "async"
- },
- {
- "type": "BLANK"
- }
- ]
- },
- {
- "type": "STRING",
- "value": "function"
- },
- {
- "type": "FIELD",
- "name": "name",
- "content": {
- "type": "CHOICE",
- "members": [
- {
- "type": "SYMBOL",
- "name": "identifier"
- },
- {
- "type": "BLANK"
- }
- ]
- }
- },
- {
- "type": "SYMBOL",
- "name": "_call_signature"
- },
- {
- "type": "FIELD",
- "name": "body",
- "content": {
- "type": "SYMBOL",
- "name": "statement_block"
- }
- }
- ]
- }
- },
- "function_declaration": {
- "type": "PREC_RIGHT",
- "value": "declaration",
- "content": {
- "type": "SEQ",
- "members": [
- {
- "type": "CHOICE",
- "members": [
- {
- "type": "STRING",
- "value": "async"
- },
- {
- "type": "BLANK"
- }
- ]
- },
- {
- "type": "STRING",
- "value": "function"
- },
- {
- "type": "FIELD",
- "name": "name",
- "content": {
- "type": "SYMBOL",
- "name": "identifier"
- }
- },
- {
- "type": "SYMBOL",
- "name": "_call_signature"
- },
- {
- "type": "FIELD",
- "name": "body",
- "content": {
- "type": "SYMBOL",
- "name": "statement_block"
- }
- },
- {
- "type": "CHOICE",
- "members": [
- {
- "type": "SYMBOL",
- "name": "_automatic_semicolon"
- },
- {
- "type": "BLANK"
- }
- ]
- }
- ]
- }
- },
- "generator_function": {
- "type": "PREC",
- "value": "literal",
- "content": {
- "type": "SEQ",
- "members": [
- {
- "type": "CHOICE",
- "members": [
- {
- "type": "STRING",
- "value": "async"
- },
- {
- "type": "BLANK"
- }
- ]
- },
- {
- "type": "STRING",
- "value": "function"
- },
- {
- "type": "STRING",
- "value": "*"
- },
- {
- "type": "FIELD",
- "name": "name",
- "content": {
- "type": "CHOICE",
- "members": [
- {
- "type": "SYMBOL",
- "name": "identifier"
- },
- {
- "type": "BLANK"
- }
- ]
- }
- },
- {
- "type": "SYMBOL",
- "name": "_call_signature"
- },
- {
- "type": "FIELD",
- "name": "body",
- "content": {
- "type": "SYMBOL",
- "name": "statement_block"
- }
- }
- ]
- }
- },
- "generator_function_declaration": {
- "type": "PREC_RIGHT",
- "value": "declaration",
- "content": {
- "type": "SEQ",
- "members": [
- {
- "type": "CHOICE",
- "members": [
- {
- "type": "STRING",
- "value": "async"
- },
- {
- "type": "BLANK"
- }
- ]
- },
- {
- "type": "STRING",
- "value": "function"
- },
- {
- "type": "STRING",
- "value": "*"
- },
- {
- "type": "FIELD",
- "name": "name",
- "content": {
- "type": "SYMBOL",
- "name": "identifier"
- }
- },
- {
- "type": "SYMBOL",
- "name": "_call_signature"
- },
- {
- "type": "FIELD",
- "name": "body",
- "content": {
- "type": "SYMBOL",
- "name": "statement_block"
- }
- },
- {
- "type": "CHOICE",
- "members": [
- {
- "type": "SYMBOL",
- "name": "_automatic_semicolon"
- },
- {
- "type": "BLANK"
- }
- ]
- }
- ]
- }
- },
- "arrow_function": {
- "type": "SEQ",
- "members": [
- {
- "type": "CHOICE",
- "members": [
- {
- "type": "STRING",
- "value": "async"
- },
- {
- "type": "BLANK"
- }
- ]
- },
- {
- "type": "CHOICE",
- "members": [
- {
- "type": "FIELD",
- "name": "parameter",
- "content": {
- "type": "CHOICE",
- "members": [
- {
- "type": "ALIAS",
- "content": {
- "type": "SYMBOL",
- "name": "_reserved_identifier"
- },
- "named": true,
- "value": "identifier"
- },
- {
- "type": "SYMBOL",
- "name": "identifier"
- }
- ]
- }
- },
- {
- "type": "SYMBOL",
- "name": "_call_signature"
- }
- ]
- },
- {
- "type": "STRING",
- "value": "=>"
- },
- {
- "type": "FIELD",
- "name": "body",
- "content": {
- "type": "CHOICE",
- "members": [
- {
- "type": "SYMBOL",
- "name": "expression"
- },
- {
- "type": "SYMBOL",
- "name": "statement_block"
- }
- ]
- }
- }
- ]
- },
- "_call_signature": {
- "type": "SEQ",
- "members": [
- {
- "type": "FIELD",
- "name": "type_parameters",
- "content": {
- "type": "CHOICE",
- "members": [
- {
- "type": "SYMBOL",
- "name": "type_parameters"
- },
- {
- "type": "BLANK"
- }
- ]
- }
- },
- {
- "type": "FIELD",
- "name": "parameters",
- "content": {
- "type": "SYMBOL",
- "name": "formal_parameters"
- }
- },
- {
- "type": "FIELD",
- "name": "return_type",
- "content": {
- "type": "CHOICE",
- "members": [
- {
- "type": "CHOICE",
- "members": [
- {
- "type": "SYMBOL",
- "name": "type_annotation"
- },
- {
- "type": "SYMBOL",
- "name": "asserts_annotation"
- },
- {
- "type": "SYMBOL",
- "name": "type_predicate_annotation"
- }
- ]
- },
- {
- "type": "BLANK"
- }
- ]
- }
- }
- ]
- },
- "_formal_parameter": {
- "type": "CHOICE",
- "members": [
- {
- "type": "SYMBOL",
- "name": "required_parameter"
- },
- {
- "type": "SYMBOL",
- "name": "optional_parameter"
- }
- ]
- },
- "optional_chain": {
- "type": "STRING",
- "value": "?."
- },
- "call_expression": {
- "type": "CHOICE",
- "members": [
- {
- "type": "PREC",
- "value": "call",
- "content": {
- "type": "SEQ",
- "members": [
- {
- "type": "FIELD",
- "name": "function",
- "content": {
- "type": "CHOICE",
- "members": [
- {
- "type": "SYMBOL",
- "name": "expression"
- },
- {
- "type": "SYMBOL",
- "name": "import"
- }
- ]
- }
- },
- {
- "type": "FIELD",
- "name": "type_arguments",
- "content": {
- "type": "CHOICE",
- "members": [
- {
- "type": "SYMBOL",
- "name": "type_arguments"
- },
- {
- "type": "BLANK"
- }
- ]
- }
- },
- {
- "type": "FIELD",
- "name": "arguments",
- "content": {
- "type": "CHOICE",
- "members": [
- {
- "type": "SYMBOL",
- "name": "arguments"
- },
- {
- "type": "SYMBOL",
- "name": "template_string"
- }
- ]
- }
- }
- ]
- }
- },
- {
- "type": "PREC",
- "value": "member",
- "content": {
- "type": "SEQ",
- "members": [
- {
- "type": "FIELD",
- "name": "function",
- "content": {
- "type": "SYMBOL",
- "name": "primary_expression"
- }
- },
- {
- "type": "STRING",
- "value": "?."
- },
- {
- "type": "FIELD",
- "name": "type_arguments",
- "content": {
- "type": "CHOICE",
- "members": [
- {
- "type": "SYMBOL",
- "name": "type_arguments"
- },
- {
- "type": "BLANK"
- }
- ]
- }
- },
- {
- "type": "FIELD",
- "name": "arguments",
- "content": {
- "type": "SYMBOL",
- "name": "arguments"
- }
- }
- ]
- }
- }
- ]
- },
- "new_expression": {
- "type": "PREC_RIGHT",
- "value": "new",
- "content": {
- "type": "SEQ",
- "members": [
- {
- "type": "STRING",
- "value": "new"
- },
- {
- "type": "FIELD",
- "name": "constructor",
- "content": {
- "type": "SYMBOL",
- "name": "primary_expression"
- }
- },
- {
- "type": "FIELD",
- "name": "type_arguments",
- "content": {
- "type": "CHOICE",
- "members": [
- {
- "type": "SYMBOL",
- "name": "type_arguments"
- },
- {
- "type": "BLANK"
- }
- ]
- }
- },
- {
- "type": "FIELD",
- "name": "arguments",
- "content": {
- "type": "CHOICE",
- "members": [
- {
- "type": "SYMBOL",
- "name": "arguments"
- },
- {
- "type": "BLANK"
- }
- ]
- }
- }
- ]
- }
- },
- "await_expression": {
- "type": "PREC",
- "value": "unary_void",
- "content": {
- "type": "SEQ",
- "members": [
- {
- "type": "STRING",
- "value": "await"
- },
- {
- "type": "SYMBOL",
- "name": "expression"
- }
- ]
- }
- },
- "member_expression": {
- "type": "PREC",
- "value": "member",
- "content": {
- "type": "SEQ",
- "members": [
- {
- "type": "FIELD",
- "name": "object",
- "content": {
- "type": "CHOICE",
- "members": [
- {
- "type": "SYMBOL",
- "name": "expression"
- },
- {
- "type": "SYMBOL",
- "name": "primary_expression"
- },
- {
- "type": "SYMBOL",
- "name": "import"
- }
- ]
- }
- },
- {
- "type": "CHOICE",
- "members": [
- {
- "type": "STRING",
- "value": "."
- },
- {
- "type": "FIELD",
- "name": "optional_chain",
- "content": {
- "type": "SYMBOL",
- "name": "optional_chain"
- }
- }
- ]
- },
- {
- "type": "FIELD",
- "name": "property",
- "content": {
- "type": "CHOICE",
- "members": [
- {
- "type": "SYMBOL",
- "name": "private_property_identifier"
- },
- {
- "type": "ALIAS",
- "content": {
- "type": "SYMBOL",
- "name": "identifier"
- },
- "named": true,
- "value": "property_identifier"
- }
- ]
- }
- }
- ]
- }
- },
- "subscript_expression": {
- "type": "PREC_RIGHT",
- "value": "member",
- "content": {
- "type": "SEQ",
- "members": [
- {
- "type": "FIELD",
- "name": "object",
- "content": {
- "type": "CHOICE",
- "members": [
- {
- "type": "SYMBOL",
- "name": "expression"
- },
- {
- "type": "SYMBOL",
- "name": "primary_expression"
- }
- ]
- }
- },
- {
- "type": "CHOICE",
- "members": [
- {
- "type": "FIELD",
- "name": "optional_chain",
- "content": {
- "type": "SYMBOL",
- "name": "optional_chain"
- }
- },
- {
- "type": "BLANK"
- }
- ]
- },
- {
- "type": "STRING",
- "value": "["
- },
- {
- "type": "FIELD",
- "name": "index",
- "content": {
- "type": "SYMBOL",
- "name": "_expressions"
- }
- },
- {
- "type": "STRING",
- "value": "]"
- }
- ]
- }
- },
- "_lhs_expression": {
- "type": "CHOICE",
- "members": [
- {
- "type": "CHOICE",
- "members": [
- {
- "type": "SYMBOL",
- "name": "member_expression"
- },
- {
- "type": "SYMBOL",
- "name": "subscript_expression"
- },
- {
- "type": "SYMBOL",
- "name": "_identifier"
- },
- {
- "type": "ALIAS",
- "content": {
- "type": "SYMBOL",
- "name": "_reserved_identifier"
- },
- "named": true,
- "value": "identifier"
- },
- {
- "type": "SYMBOL",
- "name": "_destructuring_pattern"
- }
- ]
- },
- {
- "type": "SYMBOL",
- "name": "non_null_expression"
- }
- ]
- },
- "assignment_expression": {
- "type": "PREC_RIGHT",
- "value": "assign",
- "content": {
- "type": "SEQ",
- "members": [
- {
- "type": "CHOICE",
- "members": [
- {
- "type": "STRING",
- "value": "using"
- },
- {
- "type": "BLANK"
- }
- ]
- },
- {
- "type": "FIELD",
- "name": "left",
- "content": {
- "type": "CHOICE",
- "members": [
- {
- "type": "SYMBOL",
- "name": "parenthesized_expression"
- },
- {
- "type": "SYMBOL",
- "name": "_lhs_expression"
- }
- ]
- }
- },
- {
- "type": "STRING",
- "value": "="
- },
- {
- "type": "FIELD",
- "name": "right",
- "content": {
- "type": "SYMBOL",
- "name": "expression"
- }
- }
- ]
- }
- },
- "_augmented_assignment_lhs": {
- "type": "CHOICE",
- "members": [
- {
- "type": "CHOICE",
- "members": [
- {
- "type": "SYMBOL",
- "name": "member_expression"
- },
- {
- "type": "SYMBOL",
- "name": "subscript_expression"
- },
- {
- "type": "ALIAS",
- "content": {
- "type": "SYMBOL",
- "name": "_reserved_identifier"
- },
- "named": true,
- "value": "identifier"
- },
- {
- "type": "SYMBOL",
- "name": "identifier"
- },
- {
- "type": "SYMBOL",
- "name": "parenthesized_expression"
- }
- ]
- },
- {
- "type": "SYMBOL",
- "name": "non_null_expression"
- }
- ]
- },
- "augmented_assignment_expression": {
- "type": "PREC_RIGHT",
- "value": "assign",
- "content": {
- "type": "SEQ",
- "members": [
- {
- "type": "FIELD",
- "name": "left",
- "content": {
- "type": "SYMBOL",
- "name": "_augmented_assignment_lhs"
- }
- },
- {
- "type": "FIELD",
- "name": "operator",
- "content": {
- "type": "CHOICE",
- "members": [
- {
- "type": "STRING",
- "value": "+="
- },
- {
- "type": "STRING",
- "value": "-="
- },
- {
- "type": "STRING",
- "value": "*="
- },
- {
- "type": "STRING",
- "value": "/="
- },
- {
- "type": "STRING",
- "value": "%="
- },
- {
- "type": "STRING",
- "value": "^="
- },
- {
- "type": "STRING",
- "value": "&="
- },
- {
- "type": "STRING",
- "value": "|="
- },
- {
- "type": "STRING",
- "value": ">>="
- },
- {
- "type": "STRING",
- "value": ">>>="
- },
- {
- "type": "STRING",
- "value": "<<="
- },
- {
- "type": "STRING",
- "value": "**="
- },
- {
- "type": "STRING",
- "value": "&&="
- },
- {
- "type": "STRING",
- "value": "||="
- },
- {
- "type": "STRING",
- "value": "??="
- }
- ]
- }
- },
- {
- "type": "FIELD",
- "name": "right",
- "content": {
- "type": "SYMBOL",
- "name": "expression"
- }
- }
- ]
- }
- },
- "_initializer": {
- "type": "SEQ",
- "members": [
- {
- "type": "STRING",
- "value": "="
- },
- {
- "type": "FIELD",
- "name": "value",
- "content": {
- "type": "SYMBOL",
- "name": "expression"
- }
- }
- ]
- },
- "_destructuring_pattern": {
- "type": "CHOICE",
- "members": [
- {
- "type": "SYMBOL",
- "name": "object_pattern"
- },
- {
- "type": "SYMBOL",
- "name": "array_pattern"
- }
- ]
- },
- "spread_element": {
- "type": "SEQ",
- "members": [
- {
- "type": "STRING",
- "value": "..."
- },
- {
- "type": "SYMBOL",
- "name": "expression"
- }
- ]
- },
- "ternary_expression": {
- "type": "PREC_RIGHT",
- "value": "ternary",
- "content": {
- "type": "SEQ",
- "members": [
- {
- "type": "FIELD",
- "name": "condition",
- "content": {
- "type": "SYMBOL",
- "name": "expression"
- }
- },
- {
- "type": "ALIAS",
- "content": {
- "type": "SYMBOL",
- "name": "_ternary_qmark"
- },
- "named": false,
- "value": "?"
- },
- {
- "type": "FIELD",
- "name": "consequence",
- "content": {
- "type": "SYMBOL",
- "name": "expression"
- }
- },
- {
- "type": "STRING",
- "value": ":"
- },
- {
- "type": "FIELD",
- "name": "alternative",
- "content": {
- "type": "SYMBOL",
- "name": "expression"
- }
- }
- ]
- }
- },
- "binary_expression": {
- "type": "CHOICE",
- "members": [
- {
- "type": "PREC_LEFT",
- "value": "logical_and",
- "content": {
- "type": "SEQ",
- "members": [
- {
- "type": "FIELD",
- "name": "left",
- "content": {
- "type": "SYMBOL",
- "name": "expression"
- }
- },
- {
- "type": "FIELD",
- "name": "operator",
- "content": {
- "type": "STRING",
- "value": "&&"
- }
- },
- {
- "type": "FIELD",
- "name": "right",
- "content": {
- "type": "SYMBOL",
- "name": "expression"
- }
- }
- ]
- }
- },
- {
- "type": "PREC_LEFT",
- "value": "logical_or",
- "content": {
- "type": "SEQ",
- "members": [
- {
- "type": "FIELD",
- "name": "left",
- "content": {
- "type": "SYMBOL",
- "name": "expression"
- }
- },
- {
- "type": "FIELD",
- "name": "operator",
- "content": {
- "type": "STRING",
- "value": "||"
- }
- },
- {
- "type": "FIELD",
- "name": "right",
- "content": {
- "type": "SYMBOL",
- "name": "expression"
- }
- }
- ]
- }
- },
- {
- "type": "PREC_LEFT",
- "value": "binary_shift",
- "content": {
- "type": "SEQ",
- "members": [
- {
- "type": "FIELD",
- "name": "left",
- "content": {
- "type": "SYMBOL",
- "name": "expression"
- }
- },
- {
- "type": "FIELD",
- "name": "operator",
- "content": {
- "type": "STRING",
- "value": ">>"
- }
- },
- {
- "type": "FIELD",
- "name": "right",
- "content": {
- "type": "SYMBOL",
- "name": "expression"
- }
- }
- ]
- }
- },
- {
- "type": "PREC_LEFT",
- "value": "binary_shift",
- "content": {
- "type": "SEQ",
- "members": [
- {
- "type": "FIELD",
- "name": "left",
- "content": {
- "type": "SYMBOL",
- "name": "expression"
- }
- },
- {
- "type": "FIELD",
- "name": "operator",
- "content": {
- "type": "STRING",
- "value": ">>>"
- }
- },
- {
- "type": "FIELD",
- "name": "right",
- "content": {
- "type": "SYMBOL",
- "name": "expression"
- }
- }
- ]
- }
- },
- {
- "type": "PREC_LEFT",
- "value": "binary_shift",
- "content": {
- "type": "SEQ",
- "members": [
- {
- "type": "FIELD",
- "name": "left",
- "content": {
- "type": "SYMBOL",
- "name": "expression"
- }
- },
- {
- "type": "FIELD",
- "name": "operator",
- "content": {
- "type": "STRING",
- "value": "<<"
- }
- },
- {
- "type": "FIELD",
- "name": "right",
- "content": {
- "type": "SYMBOL",
- "name": "expression"
- }
- }
- ]
- }
- },
- {
- "type": "PREC_LEFT",
- "value": "bitwise_and",
- "content": {
- "type": "SEQ",
- "members": [
- {
- "type": "FIELD",
- "name": "left",
- "content": {
- "type": "SYMBOL",
- "name": "expression"
- }
- },
- {
- "type": "FIELD",
- "name": "operator",
- "content": {
- "type": "STRING",
- "value": "&"
- }
- },
- {
- "type": "FIELD",
- "name": "right",
- "content": {
- "type": "SYMBOL",
- "name": "expression"
- }
- }
- ]
- }
- },
- {
- "type": "PREC_LEFT",
- "value": "bitwise_xor",
- "content": {
- "type": "SEQ",
- "members": [
- {
- "type": "FIELD",
- "name": "left",
- "content": {
- "type": "SYMBOL",
- "name": "expression"
- }
- },
- {
- "type": "FIELD",
- "name": "operator",
- "content": {
- "type": "STRING",
- "value": "^"
- }
- },
- {
- "type": "FIELD",
- "name": "right",
- "content": {
- "type": "SYMBOL",
- "name": "expression"
- }
- }
- ]
- }
- },
- {
- "type": "PREC_LEFT",
- "value": "bitwise_or",
- "content": {
- "type": "SEQ",
- "members": [
- {
- "type": "FIELD",
- "name": "left",
- "content": {
- "type": "SYMBOL",
- "name": "expression"
- }
- },
- {
- "type": "FIELD",
- "name": "operator",
- "content": {
- "type": "STRING",
- "value": "|"
- }
- },
- {
- "type": "FIELD",
- "name": "right",
- "content": {
- "type": "SYMBOL",
- "name": "expression"
- }
- }
- ]
- }
- },
- {
- "type": "PREC_LEFT",
- "value": "binary_plus",
- "content": {
- "type": "SEQ",
- "members": [
- {
- "type": "FIELD",
- "name": "left",
- "content": {
- "type": "SYMBOL",
- "name": "expression"
- }
- },
- {
- "type": "FIELD",
- "name": "operator",
- "content": {
- "type": "STRING",
- "value": "+"
- }
- },
- {
- "type": "FIELD",
- "name": "right",
- "content": {
- "type": "SYMBOL",
- "name": "expression"
- }
- }
- ]
- }
- },
- {
- "type": "PREC_LEFT",
- "value": "binary_plus",
- "content": {
- "type": "SEQ",
- "members": [
- {
- "type": "FIELD",
- "name": "left",
- "content": {
- "type": "SYMBOL",
- "name": "expression"
- }
- },
- {
- "type": "FIELD",
- "name": "operator",
- "content": {
- "type": "STRING",
- "value": "-"
- }
- },
- {
- "type": "FIELD",
- "name": "right",
- "content": {
- "type": "SYMBOL",
- "name": "expression"
- }
- }
- ]
- }
- },
- {
- "type": "PREC_LEFT",
- "value": "binary_times",
- "content": {
- "type": "SEQ",
- "members": [
- {
- "type": "FIELD",
- "name": "left",
- "content": {
- "type": "SYMBOL",
- "name": "expression"
- }
- },
- {
- "type": "FIELD",
- "name": "operator",
- "content": {
- "type": "STRING",
- "value": "*"
- }
- },
- {
- "type": "FIELD",
- "name": "right",
- "content": {
- "type": "SYMBOL",
- "name": "expression"
- }
- }
- ]
- }
- },
- {
- "type": "PREC_LEFT",
- "value": "binary_times",
- "content": {
- "type": "SEQ",
- "members": [
- {
- "type": "FIELD",
- "name": "left",
- "content": {
- "type": "SYMBOL",
- "name": "expression"
- }
- },
- {
- "type": "FIELD",
- "name": "operator",
- "content": {
- "type": "STRING",
- "value": "/"
- }
- },
- {
- "type": "FIELD",
- "name": "right",
- "content": {
- "type": "SYMBOL",
- "name": "expression"
- }
- }
- ]
- }
- },
- {
- "type": "PREC_LEFT",
- "value": "binary_times",
- "content": {
- "type": "SEQ",
- "members": [
- {
- "type": "FIELD",
- "name": "left",
- "content": {
- "type": "SYMBOL",
- "name": "expression"
- }
- },
- {
- "type": "FIELD",
- "name": "operator",
- "content": {
- "type": "STRING",
- "value": "%"
- }
- },
- {
- "type": "FIELD",
- "name": "right",
- "content": {
- "type": "SYMBOL",
- "name": "expression"
- }
- }
- ]
- }
- },
- {
- "type": "PREC_RIGHT",
- "value": "binary_exp",
- "content": {
- "type": "SEQ",
- "members": [
- {
- "type": "FIELD",
- "name": "left",
- "content": {
- "type": "SYMBOL",
- "name": "expression"
- }
- },
- {
- "type": "FIELD",
- "name": "operator",
- "content": {
- "type": "STRING",
- "value": "**"
- }
- },
- {
- "type": "FIELD",
- "name": "right",
- "content": {
- "type": "SYMBOL",
- "name": "expression"
- }
- }
- ]
- }
- },
- {
- "type": "PREC_LEFT",
- "value": "binary_relation",
- "content": {
- "type": "SEQ",
- "members": [
- {
- "type": "FIELD",
- "name": "left",
- "content": {
- "type": "SYMBOL",
- "name": "expression"
- }
- },
- {
- "type": "FIELD",
- "name": "operator",
- "content": {
- "type": "STRING",
- "value": "<"
- }
- },
- {
- "type": "FIELD",
- "name": "right",
- "content": {
- "type": "SYMBOL",
- "name": "expression"
- }
- }
- ]
- }
- },
- {
- "type": "PREC_LEFT",
- "value": "binary_relation",
- "content": {
- "type": "SEQ",
- "members": [
- {
- "type": "FIELD",
- "name": "left",
- "content": {
- "type": "SYMBOL",
- "name": "expression"
- }
- },
- {
- "type": "FIELD",
- "name": "operator",
- "content": {
- "type": "STRING",
- "value": "<="
- }
- },
- {
- "type": "FIELD",
- "name": "right",
- "content": {
- "type": "SYMBOL",
- "name": "expression"
- }
- }
- ]
- }
- },
- {
- "type": "PREC_LEFT",
- "value": "binary_equality",
- "content": {
- "type": "SEQ",
- "members": [
- {
- "type": "FIELD",
- "name": "left",
- "content": {
- "type": "SYMBOL",
- "name": "expression"
- }
- },
- {
- "type": "FIELD",
- "name": "operator",
- "content": {
- "type": "STRING",
- "value": "=="
- }
- },
- {
- "type": "FIELD",
- "name": "right",
- "content": {
- "type": "SYMBOL",
- "name": "expression"
- }
- }
- ]
- }
- },
- {
- "type": "PREC_LEFT",
- "value": "binary_equality",
- "content": {
- "type": "SEQ",
- "members": [
- {
- "type": "FIELD",
- "name": "left",
- "content": {
- "type": "SYMBOL",
- "name": "expression"
- }
- },
- {
- "type": "FIELD",
- "name": "operator",
- "content": {
- "type": "STRING",
- "value": "==="
- }
- },
- {
- "type": "FIELD",
- "name": "right",
- "content": {
- "type": "SYMBOL",
- "name": "expression"
- }
- }
- ]
- }
- },
- {
- "type": "PREC_LEFT",
- "value": "binary_equality",
- "content": {
- "type": "SEQ",
- "members": [
- {
- "type": "FIELD",
- "name": "left",
- "content": {
- "type": "SYMBOL",
- "name": "expression"
- }
- },
- {
- "type": "FIELD",
- "name": "operator",
- "content": {
- "type": "STRING",
- "value": "!="
- }
- },
- {
- "type": "FIELD",
- "name": "right",
- "content": {
- "type": "SYMBOL",
- "name": "expression"
- }
- }
- ]
- }
- },
- {
- "type": "PREC_LEFT",
- "value": "binary_equality",
- "content": {
- "type": "SEQ",
- "members": [
- {
- "type": "FIELD",
- "name": "left",
- "content": {
- "type": "SYMBOL",
- "name": "expression"
- }
- },
- {
- "type": "FIELD",
- "name": "operator",
- "content": {
- "type": "STRING",
- "value": "!=="
- }
- },
- {
- "type": "FIELD",
- "name": "right",
- "content": {
- "type": "SYMBOL",
- "name": "expression"
- }
- }
- ]
- }
- },
- {
- "type": "PREC_LEFT",
- "value": "binary_relation",
- "content": {
- "type": "SEQ",
- "members": [
- {
- "type": "FIELD",
- "name": "left",
- "content": {
- "type": "SYMBOL",
- "name": "expression"
- }
- },
- {
- "type": "FIELD",
- "name": "operator",
- "content": {
- "type": "STRING",
- "value": ">="
- }
- },
- {
- "type": "FIELD",
- "name": "right",
- "content": {
- "type": "SYMBOL",
- "name": "expression"
- }
- }
- ]
- }
- },
- {
- "type": "PREC_LEFT",
- "value": "binary_relation",
- "content": {
- "type": "SEQ",
- "members": [
- {
- "type": "FIELD",
- "name": "left",
- "content": {
- "type": "SYMBOL",
- "name": "expression"
- }
- },
- {
- "type": "FIELD",
- "name": "operator",
- "content": {
- "type": "STRING",
- "value": ">"
- }
- },
- {
- "type": "FIELD",
- "name": "right",
- "content": {
- "type": "SYMBOL",
- "name": "expression"
- }
- }
- ]
- }
- },
- {
- "type": "PREC_LEFT",
- "value": "ternary",
- "content": {
- "type": "SEQ",
- "members": [
- {
- "type": "FIELD",
- "name": "left",
- "content": {
- "type": "SYMBOL",
- "name": "expression"
- }
- },
- {
- "type": "FIELD",
- "name": "operator",
- "content": {
- "type": "STRING",
- "value": "??"
- }
- },
- {
- "type": "FIELD",
- "name": "right",
- "content": {
- "type": "SYMBOL",
- "name": "expression"
- }
- }
- ]
- }
- },
- {
- "type": "PREC_LEFT",
- "value": "binary_relation",
- "content": {
- "type": "SEQ",
- "members": [
- {
- "type": "FIELD",
- "name": "left",
- "content": {
- "type": "SYMBOL",
- "name": "expression"
- }
- },
- {
- "type": "FIELD",
- "name": "operator",
- "content": {
- "type": "STRING",
- "value": "instanceof"
- }
- },
- {
- "type": "FIELD",
- "name": "right",
- "content": {
- "type": "SYMBOL",
- "name": "expression"
- }
- }
- ]
- }
- },
- {
- "type": "PREC_LEFT",
- "value": "binary_relation",
- "content": {
- "type": "SEQ",
- "members": [
- {
- "type": "FIELD",
- "name": "left",
- "content": {
- "type": "CHOICE",
- "members": [
- {
- "type": "SYMBOL",
- "name": "expression"
- },
- {
- "type": "SYMBOL",
- "name": "private_property_identifier"
- }
- ]
- }
- },
- {
- "type": "FIELD",
- "name": "operator",
- "content": {
- "type": "STRING",
- "value": "in"
- }
- },
- {
- "type": "FIELD",
- "name": "right",
- "content": {
- "type": "SYMBOL",
- "name": "expression"
- }
- }
- ]
- }
- }
- ]
- },
- "unary_expression": {
- "type": "PREC_LEFT",
- "value": "unary_void",
- "content": {
- "type": "SEQ",
- "members": [
- {
- "type": "FIELD",
- "name": "operator",
- "content": {
- "type": "CHOICE",
- "members": [
- {
- "type": "STRING",
- "value": "!"
- },
- {
- "type": "STRING",
- "value": "~"
- },
- {
- "type": "STRING",
- "value": "-"
- },
- {
- "type": "STRING",
- "value": "+"
- },
- {
- "type": "STRING",
- "value": "typeof"
- },
- {
- "type": "STRING",
- "value": "void"
- },
- {
- "type": "STRING",
- "value": "delete"
- }
- ]
- }
- },
- {
- "type": "FIELD",
- "name": "argument",
- "content": {
- "type": "SYMBOL",
- "name": "expression"
- }
- }
- ]
- }
- },
- "update_expression": {
- "type": "PREC_LEFT",
- "value": 0,
- "content": {
- "type": "CHOICE",
- "members": [
- {
- "type": "SEQ",
- "members": [
- {
- "type": "FIELD",
- "name": "argument",
- "content": {
- "type": "SYMBOL",
- "name": "expression"
- }
- },
- {
- "type": "FIELD",
- "name": "operator",
- "content": {
- "type": "CHOICE",
- "members": [
- {
- "type": "STRING",
- "value": "++"
- },
- {
- "type": "STRING",
- "value": "--"
- }
- ]
- }
- }
- ]
- },
- {
- "type": "SEQ",
- "members": [
- {
- "type": "FIELD",
- "name": "operator",
- "content": {
- "type": "CHOICE",
- "members": [
- {
- "type": "STRING",
- "value": "++"
- },
- {
- "type": "STRING",
- "value": "--"
- }
- ]
- }
- },
- {
- "type": "FIELD",
- "name": "argument",
- "content": {
- "type": "SYMBOL",
- "name": "expression"
- }
- }
- ]
- }
- ]
- }
- },
- "sequence_expression": {
- "type": "PREC_RIGHT",
- "value": 0,
- "content": {
- "type": "SEQ",
- "members": [
- {
- "type": "SYMBOL",
- "name": "expression"
- },
- {
- "type": "REPEAT",
- "content": {
- "type": "SEQ",
- "members": [
- {
- "type": "STRING",
- "value": ","
- },
- {
- "type": "SYMBOL",
- "name": "expression"
- }
- ]
- }
- }
- ]
- }
- },
- "string": {
- "type": "CHOICE",
- "members": [
- {
- "type": "SEQ",
- "members": [
- {
- "type": "STRING",
- "value": "\""
- },
- {
- "type": "REPEAT",
- "content": {
- "type": "CHOICE",
- "members": [
- {
- "type": "ALIAS",
- "content": {
- "type": "SYMBOL",
- "name": "unescaped_double_string_fragment"
- },
- "named": true,
- "value": "string_fragment"
- },
- {
- "type": "SYMBOL",
- "name": "escape_sequence"
- }
- ]
- }
- },
- {
- "type": "STRING",
- "value": "\""
- }
- ]
- },
- {
- "type": "SEQ",
- "members": [
- {
- "type": "STRING",
- "value": "'"
- },
- {
- "type": "REPEAT",
- "content": {
- "type": "CHOICE",
- "members": [
- {
- "type": "ALIAS",
- "content": {
- "type": "SYMBOL",
- "name": "unescaped_single_string_fragment"
- },
- "named": true,
- "value": "string_fragment"
- },
- {
- "type": "SYMBOL",
- "name": "escape_sequence"
- }
- ]
- }
- },
- {
- "type": "STRING",
- "value": "'"
- }
- ]
- }
- ]
- },
- "unescaped_double_string_fragment": {
- "type": "IMMEDIATE_TOKEN",
- "content": {
- "type": "PREC",
- "value": 1,
- "content": {
- "type": "PATTERN",
- "value": "[^\"\\\\\\r\\n]+"
- }
- }
- },
- "unescaped_single_string_fragment": {
- "type": "IMMEDIATE_TOKEN",
- "content": {
- "type": "PREC",
- "value": 1,
- "content": {
- "type": "PATTERN",
- "value": "[^'\\\\\\r\\n]+"
- }
- }
- },
- "escape_sequence": {
- "type": "IMMEDIATE_TOKEN",
- "content": {
- "type": "SEQ",
- "members": [
- {
- "type": "STRING",
- "value": "\\"
- },
- {
- "type": "CHOICE",
- "members": [
- {
- "type": "PATTERN",
- "value": "[^xu0-7]"
- },
- {
- "type": "PATTERN",
- "value": "[0-7]{1,3}"
- },
- {
- "type": "PATTERN",
- "value": "x[0-9a-fA-F]{2}"
- },
- {
- "type": "PATTERN",
- "value": "u[0-9a-fA-F]{4}"
- },
- {
- "type": "PATTERN",
- "value": "u\\{[0-9a-fA-F]+\\}"
- },
- {
- "type": "PATTERN",
- "value": "[\\r?][\\n\\u2028\\u2029]"
- }
- ]
- }
- ]
- }
- },
- "comment": {
- "type": "TOKEN",
- "content": {
- "type": "CHOICE",
- "members": [
- {
- "type": "SEQ",
- "members": [
- {
- "type": "STRING",
- "value": "//"
- },
- {
- "type": "PATTERN",
- "value": "[^\\r\\n\\u2028\\u2029]*"
- }
- ]
- },
- {
- "type": "SEQ",
- "members": [
- {
- "type": "STRING",
- "value": "/*"
- },
- {
- "type": "PATTERN",
- "value": "[^*]*\\*+([^/*][^*]*\\*+)*"
- },
- {
- "type": "STRING",
- "value": "/"
- }
- ]
- }
- ]
- }
- },
- "template_string": {
- "type": "SEQ",
- "members": [
- {
- "type": "STRING",
- "value": "`"
- },
- {
- "type": "REPEAT",
- "content": {
- "type": "CHOICE",
- "members": [
- {
- "type": "ALIAS",
- "content": {
- "type": "SYMBOL",
- "name": "_template_chars"
- },
- "named": true,
- "value": "string_fragment"
- },
- {
- "type": "SYMBOL",
- "name": "escape_sequence"
- },
- {
- "type": "SYMBOL",
- "name": "template_substitution"
- }
- ]
- }
- },
- {
- "type": "STRING",
- "value": "`"
- }
- ]
- },
- "template_substitution": {
- "type": "SEQ",
- "members": [
- {
- "type": "STRING",
- "value": "${"
- },
- {
- "type": "SYMBOL",
- "name": "_expressions"
- },
- {
- "type": "STRING",
- "value": "}"
- }
- ]
- },
- "regex": {
- "type": "SEQ",
- "members": [
- {
- "type": "STRING",
- "value": "/"
- },
- {
- "type": "FIELD",
- "name": "pattern",
- "content": {
- "type": "SYMBOL",
- "name": "regex_pattern"
- }
- },
- {
- "type": "IMMEDIATE_TOKEN",
- "content": {
- "type": "PREC",
- "value": 1,
- "content": {
- "type": "STRING",
- "value": "/"
- }
- }
- },
- {
- "type": "CHOICE",
- "members": [
- {
- "type": "FIELD",
- "name": "flags",
- "content": {
- "type": "SYMBOL",
- "name": "regex_flags"
- }
- },
- {
- "type": "BLANK"
- }
- ]
- }
- ]
- },
- "regex_pattern": {
- "type": "IMMEDIATE_TOKEN",
- "content": {
- "type": "PREC",
- "value": -1,
- "content": {
- "type": "REPEAT1",
- "content": {
- "type": "CHOICE",
- "members": [
- {
- "type": "SEQ",
- "members": [
- {
- "type": "STRING",
- "value": "["
- },
- {
- "type": "REPEAT",
- "content": {
- "type": "CHOICE",
- "members": [
- {
- "type": "SEQ",
- "members": [
- {
- "type": "STRING",
- "value": "\\"
- },
- {
- "type": "PATTERN",
- "value": "."
- }
- ]
- },
- {
- "type": "PATTERN",
- "value": "[^\\]\\n\\\\]"
- }
- ]
- }
- },
- {
- "type": "STRING",
- "value": "]"
- }
- ]
- },
- {
- "type": "SEQ",
- "members": [
- {
- "type": "STRING",
- "value": "\\"
- },
- {
- "type": "PATTERN",
- "value": "."
- }
- ]
- },
- {
- "type": "PATTERN",
- "value": "[^/\\\\\\[\\n]"
- }
- ]
- }
- }
- }
- },
- "regex_flags": {
- "type": "IMMEDIATE_TOKEN",
- "content": {
- "type": "PATTERN",
- "value": "[a-z]+"
- }
- },
- "number": {
- "type": "TOKEN",
- "content": {
- "type": "CHOICE",
- "members": [
- {
- "type": "SEQ",
- "members": [
- {
- "type": "CHOICE",
- "members": [
- {
- "type": "STRING",
- "value": "0x"
- },
- {
- "type": "STRING",
- "value": "0X"
- }
- ]
- },
- {
- "type": "PATTERN",
- "value": "[\\da-fA-F](_?[\\da-fA-F])*"
- }
- ]
- },
- {
- "type": "CHOICE",
- "members": [
- {
- "type": "SEQ",
- "members": [
- {
- "type": "CHOICE",
- "members": [
- {
- "type": "STRING",
- "value": "0"
- },
- {
- "type": "SEQ",
- "members": [
- {
- "type": "CHOICE",
- "members": [
- {
- "type": "STRING",
- "value": "0"
- },
- {
- "type": "BLANK"
- }
- ]
- },
- {
- "type": "PATTERN",
- "value": "[1-9]"
- },
- {
- "type": "CHOICE",
- "members": [
- {
- "type": "SEQ",
- "members": [
- {
- "type": "CHOICE",
- "members": [
- {
- "type": "STRING",
- "value": "_"
- },
- {
- "type": "BLANK"
- }
- ]
- },
- {
- "type": "PATTERN",
- "value": "\\d(_?\\d)*"
- }
- ]
- },
- {
- "type": "BLANK"
- }
- ]
- }
- ]
- }
- ]
- },
- {
- "type": "STRING",
- "value": "."
- },
- {
- "type": "CHOICE",
- "members": [
- {
- "type": "PATTERN",
- "value": "\\d(_?\\d)*"
- },
- {
- "type": "BLANK"
- }
- ]
- },
- {
- "type": "CHOICE",
- "members": [
- {
- "type": "SEQ",
- "members": [
- {
- "type": "CHOICE",
- "members": [
- {
- "type": "STRING",
- "value": "e"
- },
- {
- "type": "STRING",
- "value": "E"
- }
- ]
- },
- {
- "type": "SEQ",
- "members": [
- {
- "type": "CHOICE",
- "members": [
- {
- "type": "CHOICE",
- "members": [
- {
- "type": "STRING",
- "value": "-"
- },
- {
- "type": "STRING",
- "value": "+"
- }
- ]
- },
- {
- "type": "BLANK"
- }
- ]
- },
- {
- "type": "PATTERN",
- "value": "\\d(_?\\d)*"
- }
- ]
- }
- ]
- },
- {
- "type": "BLANK"
- }
- ]
- }
- ]
- },
- {
- "type": "SEQ",
- "members": [
- {
- "type": "STRING",
- "value": "."
- },
- {
- "type": "PATTERN",
- "value": "\\d(_?\\d)*"
- },
- {
- "type": "CHOICE",
- "members": [
- {
- "type": "SEQ",
- "members": [
- {
- "type": "CHOICE",
- "members": [
- {
- "type": "STRING",
- "value": "e"
- },
- {
- "type": "STRING",
- "value": "E"
- }
- ]
- },
- {
- "type": "SEQ",
- "members": [
- {
- "type": "CHOICE",
- "members": [
- {
- "type": "CHOICE",
- "members": [
- {
- "type": "STRING",
- "value": "-"
- },
- {
- "type": "STRING",
- "value": "+"
- }
- ]
- },
- {
- "type": "BLANK"
- }
- ]
- },
- {
- "type": "PATTERN",
- "value": "\\d(_?\\d)*"
- }
- ]
- }
- ]
- },
- {
- "type": "BLANK"
- }
- ]
- }
- ]
- },
- {
- "type": "SEQ",
- "members": [
- {
- "type": "CHOICE",
- "members": [
- {
- "type": "STRING",
- "value": "0"
- },
- {
- "type": "SEQ",
- "members": [
- {
- "type": "CHOICE",
- "members": [
- {
- "type": "STRING",
- "value": "0"
- },
- {
- "type": "BLANK"
- }
- ]
- },
- {
- "type": "PATTERN",
- "value": "[1-9]"
- },
- {
- "type": "CHOICE",
- "members": [
- {
- "type": "SEQ",
- "members": [
- {
- "type": "CHOICE",
- "members": [
- {
- "type": "STRING",
- "value": "_"
- },
- {
- "type": "BLANK"
- }
- ]
- },
- {
- "type": "PATTERN",
- "value": "\\d(_?\\d)*"
- }
- ]
- },
- {
- "type": "BLANK"
- }
- ]
- }
- ]
- }
- ]
- },
- {
- "type": "SEQ",
- "members": [
- {
- "type": "CHOICE",
- "members": [
- {
- "type": "STRING",
- "value": "e"
- },
- {
- "type": "STRING",
- "value": "E"
- }
- ]
- },
- {
- "type": "SEQ",
- "members": [
- {
- "type": "CHOICE",
- "members": [
- {
- "type": "CHOICE",
- "members": [
- {
- "type": "STRING",
- "value": "-"
- },
- {
- "type": "STRING",
- "value": "+"
- }
- ]
- },
- {
- "type": "BLANK"
- }
- ]
- },
- {
- "type": "PATTERN",
- "value": "\\d(_?\\d)*"
- }
- ]
- }
- ]
- }
- ]
- },
- {
- "type": "PATTERN",
- "value": "\\d(_?\\d)*"
- }
- ]
- },
- {
- "type": "SEQ",
- "members": [
- {
- "type": "CHOICE",
- "members": [
- {
- "type": "STRING",
- "value": "0b"
- },
- {
- "type": "STRING",
- "value": "0B"
- }
- ]
- },
- {
- "type": "PATTERN",
- "value": "[0-1](_?[0-1])*"
- }
- ]
- },
- {
- "type": "SEQ",
- "members": [
- {
- "type": "CHOICE",
- "members": [
- {
- "type": "STRING",
- "value": "0o"
- },
- {
- "type": "STRING",
- "value": "0O"
- }
- ]
- },
- {
- "type": "PATTERN",
- "value": "[0-7](_?[0-7])*"
- }
- ]
- },
- {
- "type": "SEQ",
- "members": [
- {
- "type": "CHOICE",
- "members": [
- {
- "type": "SEQ",
- "members": [
- {
- "type": "CHOICE",
- "members": [
- {
- "type": "STRING",
- "value": "0x"
- },
- {
- "type": "STRING",
- "value": "0X"
- }
- ]
- },
- {
- "type": "PATTERN",
- "value": "[\\da-fA-F](_?[\\da-fA-F])*"
- }
- ]
- },
- {
- "type": "SEQ",
- "members": [
- {
- "type": "CHOICE",
- "members": [
- {
- "type": "STRING",
- "value": "0b"
- },
- {
- "type": "STRING",
- "value": "0B"
- }
- ]
- },
- {
- "type": "PATTERN",
- "value": "[0-1](_?[0-1])*"
- }
- ]
- },
- {
- "type": "SEQ",
- "members": [
- {
- "type": "CHOICE",
- "members": [
- {
- "type": "STRING",
- "value": "0o"
- },
- {
- "type": "STRING",
- "value": "0O"
- }
- ]
- },
- {
- "type": "PATTERN",
- "value": "[0-7](_?[0-7])*"
- }
- ]
- },
- {
- "type": "PATTERN",
- "value": "\\d(_?\\d)*"
- }
- ]
- },
- {
- "type": "STRING",
- "value": "n"
- }
- ]
- }
- ]
- }
- },
- "_identifier": {
- "type": "CHOICE",
- "members": [
- {
- "type": "SYMBOL",
- "name": "undefined"
- },
- {
- "type": "SYMBOL",
- "name": "identifier"
- }
- ]
- },
- "identifier": {
- "type": "TOKEN",
- "content": {
- "type": "SEQ",
- "members": [
- {
- "type": "PATTERN",
- "value": "[^\\x00-\\x1F\\s\\p{Zs}0-9:;`\"'@#.,|^&<=>+\\-*/\\\\%?!~()\\[\\]{}\\uFEFF\\u2060\\u200B\\u2028\\u2029]|\\\\u[0-9a-fA-F]{4}|\\\\u\\{[0-9a-fA-F]+\\}"
- },
- {
- "type": "REPEAT",
- "content": {
- "type": "PATTERN",
- "value": "[^\\x00-\\x1F\\s\\p{Zs}:;`\"'@#.,|^&<=>+\\-*/\\\\%?!~()\\[\\]{}\\uFEFF\\u2060\\u200B\\u2028\\u2029]|\\\\u[0-9a-fA-F]{4}|\\\\u\\{[0-9a-fA-F]+\\}"
- }
- }
- ]
- }
- },
- "private_property_identifier": {
- "type": "TOKEN",
- "content": {
- "type": "SEQ",
- "members": [
- {
- "type": "STRING",
- "value": "#"
- },
- {
- "type": "PATTERN",
- "value": "[^\\x00-\\x1F\\s\\p{Zs}0-9:;`\"'@#.,|^&<=>+\\-*/\\\\%?!~()\\[\\]{}\\uFEFF\\u2060\\u200B\\u2028\\u2029]|\\\\u[0-9a-fA-F]{4}|\\\\u\\{[0-9a-fA-F]+\\}"
- },
- {
- "type": "REPEAT",
- "content": {
- "type": "PATTERN",
- "value": "[^\\x00-\\x1F\\s\\p{Zs}:;`\"'@#.,|^&<=>+\\-*/\\\\%?!~()\\[\\]{}\\uFEFF\\u2060\\u200B\\u2028\\u2029]|\\\\u[0-9a-fA-F]{4}|\\\\u\\{[0-9a-fA-F]+\\}"
- }
- }
- ]
- }
- },
- "meta_property": {
- "type": "SEQ",
- "members": [
- {
- "type": "STRING",
- "value": "new"
- },
- {
- "type": "STRING",
- "value": "."
- },
- {
- "type": "STRING",
- "value": "target"
- }
- ]
- },
- "this": {
- "type": "STRING",
- "value": "this"
- },
- "super": {
- "type": "STRING",
- "value": "super"
- },
- "true": {
- "type": "STRING",
- "value": "true"
- },
- "false": {
- "type": "STRING",
- "value": "false"
- },
- "null": {
- "type": "STRING",
- "value": "null"
- },
- "undefined": {
- "type": "STRING",
- "value": "undefined"
- },
- "arguments": {
- "type": "SEQ",
- "members": [
- {
- "type": "STRING",
- "value": "("
- },
- {
- "type": "CHOICE",
- "members": [
- {
- "type": "SEQ",
- "members": [
- {
- "type": "CHOICE",
- "members": [
- {
- "type": "CHOICE",
- "members": [
- {
- "type": "SYMBOL",
- "name": "expression"
- },
- {
- "type": "SYMBOL",
- "name": "spread_element"
- }
- ]
- },
- {
- "type": "BLANK"
- }
- ]
- },
- {
- "type": "REPEAT",
- "content": {
- "type": "SEQ",
- "members": [
- {
- "type": "STRING",
- "value": ","
- },
- {
- "type": "CHOICE",
- "members": [
- {
- "type": "CHOICE",
- "members": [
- {
- "type": "SYMBOL",
- "name": "expression"
- },
- {
- "type": "SYMBOL",
- "name": "spread_element"
- }
- ]
- },
- {
- "type": "BLANK"
- }
- ]
- }
- ]
- }
- }
- ]
- },
- {
- "type": "BLANK"
- }
- ]
- },
- {
- "type": "STRING",
- "value": ")"
- }
- ]
- },
- "decorator": {
- "type": "SEQ",
- "members": [
- {
- "type": "STRING",
- "value": "@"
- },
- {
- "type": "CHOICE",
- "members": [
- {
- "type": "SYMBOL",
- "name": "identifier"
- },
- {
- "type": "ALIAS",
- "content": {
- "type": "SYMBOL",
- "name": "decorator_member_expression"
- },
- "named": true,
- "value": "member_expression"
- },
- {
- "type": "ALIAS",
- "content": {
- "type": "SYMBOL",
- "name": "decorator_call_expression"
- },
- "named": true,
- "value": "call_expression"
- },
- {
- "type": "ALIAS",
- "content": {
- "type": "SYMBOL",
- "name": "decorator_parenthesized_expression"
- },
- "named": true,
- "value": "parenthesized_expression"
- }
- ]
- }
- ]
- },
- "decorator_member_expression": {
- "type": "PREC",
- "value": "member",
- "content": {
- "type": "SEQ",
- "members": [
- {
- "type": "FIELD",
- "name": "object",
- "content": {
- "type": "CHOICE",
- "members": [
- {
- "type": "SYMBOL",
- "name": "identifier"
- },
- {
- "type": "ALIAS",
- "content": {
- "type": "SYMBOL",
- "name": "decorator_member_expression"
- },
- "named": true,
- "value": "member_expression"
- }
- ]
- }
- },
- {
- "type": "STRING",
- "value": "."
- },
- {
- "type": "FIELD",
- "name": "property",
- "content": {
- "type": "ALIAS",
- "content": {
- "type": "SYMBOL",
- "name": "identifier"
- },
- "named": true,
- "value": "property_identifier"
- }
- }
- ]
- }
- },
- "decorator_call_expression": {
- "type": "PREC",
- "value": "call",
- "content": {
- "type": "SEQ",
- "members": [
- {
- "type": "FIELD",
- "name": "function",
- "content": {
- "type": "CHOICE",
- "members": [
- {
- "type": "SYMBOL",
- "name": "identifier"
- },
- {
- "type": "ALIAS",
- "content": {
- "type": "SYMBOL",
- "name": "decorator_member_expression"
- },
- "named": true,
- "value": "member_expression"
- }
- ]
- }
- },
- {
- "type": "CHOICE",
- "members": [
- {
- "type": "FIELD",
- "name": "type_arguments",
- "content": {
- "type": "SYMBOL",
- "name": "type_arguments"
- }
- },
- {
- "type": "BLANK"
- }
- ]
- },
- {
- "type": "FIELD",
- "name": "arguments",
- "content": {
- "type": "SYMBOL",
- "name": "arguments"
- }
- }
- ]
- }
- },
- "class_body": {
- "type": "SEQ",
- "members": [
- {
- "type": "STRING",
- "value": "{"
- },
- {
- "type": "REPEAT",
- "content": {
- "type": "CHOICE",
- "members": [
- {
- "type": "FIELD",
- "name": "template",
- "content": {
- "type": "SYMBOL",
- "name": "glimmer_template"
- }
- },
- {
- "type": "SEQ",
- "members": [
- {
- "type": "REPEAT",
- "content": {
- "type": "FIELD",
- "name": "decorator",
- "content": {
- "type": "SYMBOL",
- "name": "decorator"
- }
- }
- },
- {
- "type": "SYMBOL",
- "name": "method_definition"
- },
- {
- "type": "CHOICE",
- "members": [
- {
- "type": "SYMBOL",
- "name": "_semicolon"
- },
- {
- "type": "BLANK"
- }
- ]
- }
- ]
- },
- {
- "type": "SEQ",
- "members": [
- {
- "type": "SYMBOL",
- "name": "method_signature"
- },
- {
- "type": "CHOICE",
- "members": [
- {
- "type": "SYMBOL",
- "name": "_function_signature_automatic_semicolon"
- },
- {
- "type": "STRING",
- "value": ","
- }
- ]
- }
- ]
- },
- {
- "type": "SYMBOL",
- "name": "class_static_block"
- },
- {
- "type": "SEQ",
- "members": [
- {
- "type": "CHOICE",
- "members": [
- {
- "type": "SYMBOL",
- "name": "abstract_method_signature"
- },
- {
- "type": "SYMBOL",
- "name": "index_signature"
- },
- {
- "type": "SYMBOL",
- "name": "method_signature"
- },
- {
- "type": "SYMBOL",
- "name": "public_field_definition"
- }
- ]
- },
- {
- "type": "CHOICE",
- "members": [
- {
- "type": "SYMBOL",
- "name": "_semicolon"
- },
- {
- "type": "STRING",
- "value": ","
- }
- ]
- }
- ]
- },
- {
- "type": "STRING",
- "value": ";"
- }
- ]
- }
- },
- {
- "type": "STRING",
- "value": "}"
- }
- ]
- },
- "field_definition": {
- "type": "SEQ",
- "members": [
- {
- "type": "REPEAT",
- "content": {
- "type": "FIELD",
- "name": "decorator",
- "content": {
- "type": "SYMBOL",
- "name": "decorator"
- }
- }
- },
- {
- "type": "CHOICE",
- "members": [
- {
- "type": "STRING",
- "value": "static"
- },
- {
- "type": "BLANK"
- }
- ]
- },
- {
- "type": "FIELD",
- "name": "property",
- "content": {
- "type": "SYMBOL",
- "name": "_property_name"
- }
- },
- {
- "type": "CHOICE",
- "members": [
- {
- "type": "SYMBOL",
- "name": "_initializer"
- },
- {
- "type": "BLANK"
- }
- ]
- }
- ]
- },
- "formal_parameters": {
- "type": "SEQ",
- "members": [
- {
- "type": "STRING",
- "value": "("
- },
- {
- "type": "CHOICE",
- "members": [
- {
- "type": "SEQ",
- "members": [
- {
- "type": "SEQ",
- "members": [
- {
- "type": "SYMBOL",
- "name": "_formal_parameter"
- },
- {
- "type": "REPEAT",
- "content": {
- "type": "SEQ",
- "members": [
- {
- "type": "STRING",
- "value": ","
- },
- {
- "type": "SYMBOL",
- "name": "_formal_parameter"
- }
- ]
- }
- }
- ]
- },
- {
- "type": "CHOICE",
- "members": [
- {
- "type": "STRING",
- "value": ","
- },
- {
- "type": "BLANK"
- }
- ]
- }
- ]
- },
- {
- "type": "BLANK"
- }
- ]
- },
- {
- "type": "STRING",
- "value": ")"
- }
- ]
- },
- "class_static_block": {
- "type": "SEQ",
- "members": [
- {
- "type": "STRING",
- "value": "static"
- },
- {
- "type": "CHOICE",
- "members": [
- {
- "type": "SYMBOL",
- "name": "_automatic_semicolon"
- },
- {
- "type": "BLANK"
- }
- ]
- },
- {
- "type": "FIELD",
- "name": "body",
- "content": {
- "type": "SYMBOL",
- "name": "statement_block"
- }
- }
- ]
- },
- "pattern": {
- "type": "PREC_DYNAMIC",
- "value": -1,
- "content": {
- "type": "CHOICE",
- "members": [
- {
- "type": "SYMBOL",
- "name": "_lhs_expression"
- },
- {
- "type": "SYMBOL",
- "name": "rest_pattern"
- }
- ]
- }
- },
- "rest_pattern": {
- "type": "PREC_RIGHT",
- "value": 0,
- "content": {
- "type": "SEQ",
- "members": [
- {
- "type": "STRING",
- "value": "..."
- },
- {
- "type": "SYMBOL",
- "name": "_lhs_expression"
- }
- ]
- }
- },
- "method_definition": {
- "type": "PREC_LEFT",
- "value": 0,
- "content": {
- "type": "SEQ",
- "members": [
- {
- "type": "CHOICE",
- "members": [
- {
- "type": "SYMBOL",
- "name": "accessibility_modifier"
- },
- {
- "type": "BLANK"
- }
- ]
- },
- {
- "type": "CHOICE",
- "members": [
- {
- "type": "STRING",
- "value": "static"
- },
- {
- "type": "BLANK"
- }
- ]
- },
- {
- "type": "CHOICE",
- "members": [
- {
- "type": "SYMBOL",
- "name": "override_modifier"
- },
- {
- "type": "BLANK"
- }
- ]
- },
- {
- "type": "CHOICE",
- "members": [
- {
- "type": "STRING",
- "value": "readonly"
- },
- {
- "type": "BLANK"
- }
- ]
- },
- {
- "type": "CHOICE",
- "members": [
- {
- "type": "STRING",
- "value": "async"
- },
- {
- "type": "BLANK"
- }
- ]
- },
- {
- "type": "CHOICE",
- "members": [
- {
- "type": "CHOICE",
- "members": [
- {
- "type": "STRING",
- "value": "get"
- },
- {
- "type": "STRING",
- "value": "set"
- },
- {
- "type": "STRING",
- "value": "*"
- }
- ]
- },
- {
- "type": "BLANK"
- }
- ]
- },
- {
- "type": "FIELD",
- "name": "name",
- "content": {
- "type": "SYMBOL",
- "name": "_property_name"
- }
- },
- {
- "type": "CHOICE",
- "members": [
- {
- "type": "STRING",
- "value": "?"
- },
- {
- "type": "BLANK"
- }
- ]
- },
- {
- "type": "SYMBOL",
- "name": "_call_signature"
- },
- {
- "type": "FIELD",
- "name": "body",
- "content": {
- "type": "SYMBOL",
- "name": "statement_block"
- }
- }
- ]
- }
- },
- "pair": {
- "type": "SEQ",
- "members": [
- {
- "type": "FIELD",
- "name": "key",
- "content": {
- "type": "SYMBOL",
- "name": "_property_name"
- }
- },
- {
- "type": "STRING",
- "value": ":"
- },
- {
- "type": "FIELD",
- "name": "value",
- "content": {
- "type": "SYMBOL",
- "name": "expression"
- }
- }
- ]
- },
- "pair_pattern": {
- "type": "SEQ",
- "members": [
- {
- "type": "FIELD",
- "name": "key",
- "content": {
- "type": "SYMBOL",
- "name": "_property_name"
- }
- },
- {
- "type": "STRING",
- "value": ":"
- },
- {
- "type": "FIELD",
- "name": "value",
- "content": {
- "type": "CHOICE",
- "members": [
- {
- "type": "SYMBOL",
- "name": "pattern"
- },
- {
- "type": "SYMBOL",
- "name": "assignment_pattern"
- }
- ]
- }
- }
- ]
- },
- "_property_name": {
- "type": "CHOICE",
- "members": [
- {
- "type": "ALIAS",
- "content": {
- "type": "CHOICE",
- "members": [
- {
- "type": "SYMBOL",
- "name": "identifier"
- },
- {
- "type": "SYMBOL",
- "name": "_reserved_identifier"
- }
- ]
- },
- "named": true,
- "value": "property_identifier"
- },
- {
- "type": "SYMBOL",
- "name": "private_property_identifier"
- },
- {
- "type": "SYMBOL",
- "name": "string"
- },
- {
- "type": "SYMBOL",
- "name": "number"
- },
- {
- "type": "SYMBOL",
- "name": "computed_property_name"
- }
- ]
- },
- "computed_property_name": {
- "type": "SEQ",
- "members": [
- {
- "type": "STRING",
- "value": "["
- },
- {
- "type": "SYMBOL",
- "name": "expression"
- },
- {
- "type": "STRING",
- "value": "]"
- }
- ]
- },
- "_reserved_identifier": {
- "type": "CHOICE",
- "members": [
- {
- "type": "STRING",
- "value": "declare"
- },
- {
- "type": "STRING",
- "value": "namespace"
- },
- {
- "type": "STRING",
- "value": "type"
- },
- {
- "type": "STRING",
- "value": "public"
- },
- {
- "type": "STRING",
- "value": "private"
- },
- {
- "type": "STRING",
- "value": "protected"
- },
- {
- "type": "STRING",
- "value": "override"
- },
- {
- "type": "STRING",
- "value": "readonly"
- },
- {
- "type": "STRING",
- "value": "module"
- },
- {
- "type": "STRING",
- "value": "any"
- },
- {
- "type": "STRING",
- "value": "number"
- },
- {
- "type": "STRING",
- "value": "boolean"
- },
- {
- "type": "STRING",
- "value": "string"
- },
- {
- "type": "STRING",
- "value": "symbol"
- },
- {
- "type": "STRING",
- "value": "export"
- },
- {
- "type": "STRING",
- "value": "object"
- },
- {
- "type": "STRING",
- "value": "new"
- },
- {
- "type": "STRING",
- "value": "readonly"
- },
- {
- "type": "CHOICE",
- "members": [
- {
- "type": "STRING",
- "value": "get"
- },
- {
- "type": "STRING",
- "value": "set"
- },
- {
- "type": "STRING",
- "value": "async"
- },
- {
- "type": "STRING",
- "value": "static"
- },
- {
- "type": "STRING",
- "value": "export"
- },
- {
- "type": "STRING",
- "value": "let"
- }
- ]
- }
- ]
- },
- "_semicolon": {
- "type": "CHOICE",
- "members": [
- {
- "type": "SYMBOL",
- "name": "_automatic_semicolon"
- },
- {
- "type": "STRING",
- "value": ";"
- }
- ]
- },
- "public_field_definition": {
- "type": "SEQ",
- "members": [
- {
- "type": "REPEAT",
- "content": {
- "type": "FIELD",
- "name": "decorator",
- "content": {
- "type": "SYMBOL",
- "name": "decorator"
- }
- }
- },
- {
- "type": "CHOICE",
- "members": [
- {
- "type": "CHOICE",
- "members": [
- {
- "type": "SEQ",
- "members": [
- {
- "type": "STRING",
- "value": "declare"
- },
- {
- "type": "CHOICE",
- "members": [
- {
- "type": "SYMBOL",
- "name": "accessibility_modifier"
- },
- {
- "type": "BLANK"
- }
- ]
- }
- ]
- },
- {
- "type": "SEQ",
- "members": [
- {
- "type": "SYMBOL",
- "name": "accessibility_modifier"
- },
- {
- "type": "CHOICE",
- "members": [
- {
- "type": "STRING",
- "value": "declare"
- },
- {
- "type": "BLANK"
- }
- ]
- }
- ]
- }
- ]
- },
- {
- "type": "BLANK"
- }
- ]
- },
- {
- "type": "CHOICE",
- "members": [
- {
- "type": "SEQ",
- "members": [
- {
- "type": "CHOICE",
- "members": [
- {
- "type": "STRING",
- "value": "static"
- },
- {
- "type": "BLANK"
- }
- ]
- },
- {
- "type": "CHOICE",
- "members": [
- {
- "type": "SYMBOL",
- "name": "override_modifier"
- },
- {
- "type": "BLANK"
- }
- ]
- },
- {
- "type": "CHOICE",
- "members": [
- {
- "type": "STRING",
- "value": "readonly"
- },
- {
- "type": "BLANK"
- }
- ]
- }
- ]
- },
- {
- "type": "SEQ",
- "members": [
- {
- "type": "CHOICE",
- "members": [
- {
- "type": "STRING",
- "value": "abstract"
- },
- {
- "type": "BLANK"
- }
- ]
- },
- {
- "type": "CHOICE",
- "members": [
- {
- "type": "STRING",
- "value": "readonly"
- },
- {
- "type": "BLANK"
- }
- ]
- }
- ]
- },
- {
- "type": "SEQ",
- "members": [
- {
- "type": "CHOICE",
- "members": [
- {
- "type": "STRING",
- "value": "readonly"
- },
- {
- "type": "BLANK"
- }
- ]
- },
- {
- "type": "CHOICE",
- "members": [
- {
- "type": "STRING",
- "value": "abstract"
- },
- {
- "type": "BLANK"
- }
- ]
- }
- ]
- },
- {
- "type": "CHOICE",
- "members": [
- {
- "type": "STRING",
- "value": "accessor"
- },
- {
- "type": "BLANK"
- }
- ]
- }
- ]
- },
- {
- "type": "FIELD",
- "name": "name",
- "content": {
- "type": "SYMBOL",
- "name": "_property_name"
- }
- },
- {
- "type": "CHOICE",
- "members": [
- {
- "type": "CHOICE",
- "members": [
- {
- "type": "STRING",
- "value": "?"
- },
- {
- "type": "STRING",
- "value": "!"
- }
- ]
- },
- {
- "type": "BLANK"
- }
- ]
- },
- {
- "type": "FIELD",
- "name": "type",
- "content": {
- "type": "CHOICE",
- "members": [
- {
- "type": "SYMBOL",
- "name": "type_annotation"
- },
- {
- "type": "BLANK"
- }
- ]
- }
- },
- {
- "type": "CHOICE",
- "members": [
- {
- "type": "SYMBOL",
- "name": "_initializer"
- },
- {
- "type": "BLANK"
- }
- ]
- }
- ]
- },
- "_jsx_start_opening_element": {
- "type": "SEQ",
- "members": [
- {
- "type": "STRING",
- "value": "<"
- },
- {
- "type": "CHOICE",
- "members": [
- {
- "type": "SEQ",
- "members": [
- {
- "type": "CHOICE",
- "members": [
- {
- "type": "FIELD",
- "name": "name",
- "content": {
- "type": "CHOICE",
- "members": [
- {
- "type": "SYMBOL",
- "name": "_jsx_identifier"
- },
- {
- "type": "SYMBOL",
- "name": "jsx_namespace_name"
- }
- ]
- }
- },
- {
- "type": "SEQ",
- "members": [
- {
- "type": "FIELD",
- "name": "name",
- "content": {
- "type": "CHOICE",
- "members": [
- {
- "type": "SYMBOL",
- "name": "identifier"
- },
- {
- "type": "ALIAS",
- "content": {
- "type": "SYMBOL",
- "name": "nested_identifier"
- },
- "named": true,
- "value": "member_expression"
- }
- ]
- }
- },
- {
- "type": "FIELD",
- "name": "type_arguments",
- "content": {
- "type": "CHOICE",
- "members": [
- {
- "type": "SYMBOL",
- "name": "type_arguments"
- },
- {
- "type": "BLANK"
- }
- ]
- }
- }
- ]
- }
- ]
- },
- {
- "type": "REPEAT",
- "content": {
- "type": "FIELD",
- "name": "attribute",
- "content": {
- "type": "SYMBOL",
- "name": "_jsx_attribute"
- }
- }
- }
- ]
- },
- {
- "type": "BLANK"
- }
- ]
- }
- ]
- },
- "_import_identifier": {
- "type": "CHOICE",
- "members": [
- {
- "type": "SYMBOL",
- "name": "identifier"
- },
- {
- "type": "ALIAS",
- "content": {
- "type": "STRING",
- "value": "type"
- },
- "named": true,
- "value": "identifier"
- }
- ]
- },
- "non_null_expression": {
- "type": "PREC_LEFT",
- "value": "unary",
- "content": {
- "type": "SEQ",
- "members": [
- {
- "type": "SYMBOL",
- "name": "expression"
- },
- {
- "type": "STRING",
- "value": "!"
- }
- ]
- }
- },
- "method_signature": {
- "type": "SEQ",
- "members": [
- {
- "type": "CHOICE",
- "members": [
- {
- "type": "SYMBOL",
- "name": "accessibility_modifier"
- },
- {
- "type": "BLANK"
- }
- ]
- },
- {
- "type": "CHOICE",
- "members": [
- {
- "type": "STRING",
- "value": "static"
- },
- {
- "type": "BLANK"
- }
- ]
- },
- {
- "type": "CHOICE",
- "members": [
- {
- "type": "SYMBOL",
- "name": "override_modifier"
- },
- {
- "type": "BLANK"
- }
- ]
- },
- {
- "type": "CHOICE",
- "members": [
- {
- "type": "STRING",
- "value": "readonly"
- },
- {
- "type": "BLANK"
- }
- ]
- },
- {
- "type": "CHOICE",
- "members": [
- {
- "type": "STRING",
- "value": "async"
- },
- {
- "type": "BLANK"
- }
- ]
- },
- {
- "type": "CHOICE",
- "members": [
- {
- "type": "CHOICE",
- "members": [
- {
- "type": "STRING",
- "value": "get"
- },
- {
- "type": "STRING",
- "value": "set"
- },
- {
- "type": "STRING",
- "value": "*"
- }
- ]
- },
- {
- "type": "BLANK"
- }
- ]
- },
- {
- "type": "FIELD",
- "name": "name",
- "content": {
- "type": "SYMBOL",
- "name": "_property_name"
- }
- },
- {
- "type": "CHOICE",
- "members": [
- {
- "type": "STRING",
- "value": "?"
- },
- {
- "type": "BLANK"
- }
- ]
- },
- {
- "type": "SYMBOL",
- "name": "_call_signature"
- }
- ]
- },
- "abstract_method_signature": {
- "type": "SEQ",
- "members": [
- {
- "type": "CHOICE",
- "members": [
- {
- "type": "SYMBOL",
- "name": "accessibility_modifier"
- },
- {
- "type": "BLANK"
- }
- ]
- },
- {
- "type": "STRING",
- "value": "abstract"
- },
- {
- "type": "CHOICE",
- "members": [
- {
- "type": "SYMBOL",
- "name": "override_modifier"
- },
- {
- "type": "BLANK"
- }
- ]
- },
- {
- "type": "CHOICE",
- "members": [
- {
- "type": "CHOICE",
- "members": [
- {
- "type": "STRING",
- "value": "get"
- },
- {
- "type": "STRING",
- "value": "set"
- },
- {
- "type": "STRING",
- "value": "*"
- }
- ]
- },
- {
- "type": "BLANK"
- }
- ]
- },
- {
- "type": "FIELD",
- "name": "name",
- "content": {
- "type": "SYMBOL",
- "name": "_property_name"
- }
- },
- {
- "type": "CHOICE",
- "members": [
- {
- "type": "STRING",
- "value": "?"
- },
- {
- "type": "BLANK"
- }
- ]
- },
- {
- "type": "SYMBOL",
- "name": "_call_signature"
- }
- ]
- },
- "function_signature": {
- "type": "SEQ",
- "members": [
- {
- "type": "CHOICE",
- "members": [
- {
- "type": "STRING",
- "value": "async"
- },
- {
- "type": "BLANK"
- }
- ]
- },
- {
- "type": "STRING",
- "value": "function"
- },
- {
- "type": "FIELD",
- "name": "name",
- "content": {
- "type": "SYMBOL",
- "name": "identifier"
- }
- },
- {
- "type": "SYMBOL",
- "name": "_call_signature"
- },
- {
- "type": "CHOICE",
- "members": [
- {
- "type": "SYMBOL",
- "name": "_semicolon"
- },
- {
- "type": "SYMBOL",
- "name": "_function_signature_automatic_semicolon"
- }
- ]
- }
- ]
- },
- "decorator_parenthesized_expression": {
- "type": "SEQ",
- "members": [
- {
- "type": "STRING",
- "value": "("
- },
- {
- "type": "CHOICE",
- "members": [
- {
- "type": "SYMBOL",
- "name": "identifier"
- },
- {
- "type": "ALIAS",
- "content": {
- "type": "SYMBOL",
- "name": "decorator_member_expression"
- },
- "named": true,
- "value": "member_expression"
- },
- {
- "type": "ALIAS",
- "content": {
- "type": "SYMBOL",
- "name": "decorator_call_expression"
- },
- "named": true,
- "value": "call_expression"
- }
- ]
- },
- {
- "type": "STRING",
- "value": ")"
- }
- ]
- },
- "type_assertion": {
- "type": "PREC_LEFT",
- "value": "unary",
- "content": {
- "type": "SEQ",
- "members": [
- {
- "type": "SYMBOL",
- "name": "type_arguments"
- },
- {
- "type": "SYMBOL",
- "name": "expression"
- }
- ]
- }
- },
- "as_expression": {
- "type": "PREC_LEFT",
- "value": "binary",
- "content": {
- "type": "SEQ",
- "members": [
- {
- "type": "SYMBOL",
- "name": "expression"
- },
- {
- "type": "STRING",
- "value": "as"
- },
- {
- "type": "CHOICE",
- "members": [
- {
- "type": "STRING",
- "value": "const"
- },
- {
- "type": "SYMBOL",
- "name": "type"
- }
- ]
- }
- ]
- }
- },
- "satisfies_expression": {
- "type": "PREC_LEFT",
- "value": "binary",
- "content": {
- "type": "SEQ",
- "members": [
- {
- "type": "SYMBOL",
- "name": "expression"
- },
- {
- "type": "STRING",
- "value": "satisfies"
- },
- {
- "type": "SYMBOL",
- "name": "type"
- }
- ]
- }
- },
- "instantiation_expression": {
- "type": "PREC",
- "value": "instantiation",
- "content": {
- "type": "SEQ",
- "members": [
- {
- "type": "SYMBOL",
- "name": "expression"
- },
- {
- "type": "FIELD",
- "name": "type_arguments",
- "content": {
- "type": "SYMBOL",
- "name": "type_arguments"
- }
- }
- ]
- }
- },
- "import_require_clause": {
- "type": "SEQ",
- "members": [
- {
- "type": "SYMBOL",
- "name": "identifier"
- },
- {
- "type": "STRING",
- "value": "="
- },
- {
- "type": "STRING",
- "value": "require"
- },
- {
- "type": "STRING",
- "value": "("
- },
- {
- "type": "FIELD",
- "name": "source",
- "content": {
- "type": "SYMBOL",
- "name": "string"
- }
- },
- {
- "type": "STRING",
- "value": ")"
- }
- ]
- },
- "extends_clause": {
- "type": "SEQ",
- "members": [
- {
- "type": "STRING",
- "value": "extends"
- },
- {
- "type": "SEQ",
- "members": [
- {
- "type": "SYMBOL",
- "name": "_extends_clause_single"
- },
- {
- "type": "REPEAT",
- "content": {
- "type": "SEQ",
- "members": [
- {
- "type": "STRING",
- "value": ","
- },
- {
- "type": "SYMBOL",
- "name": "_extends_clause_single"
- }
- ]
- }
- }
- ]
- }
- ]
- },
- "_extends_clause_single": {
- "type": "PREC",
- "value": "extends",
- "content": {
- "type": "SEQ",
- "members": [
- {
- "type": "FIELD",
- "name": "value",
- "content": {
- "type": "SYMBOL",
- "name": "expression"
- }
- },
- {
- "type": "FIELD",
- "name": "type_arguments",
- "content": {
- "type": "CHOICE",
- "members": [
- {
- "type": "SYMBOL",
- "name": "type_arguments"
- },
- {
- "type": "BLANK"
- }
- ]
- }
- }
- ]
- }
- },
- "implements_clause": {
- "type": "SEQ",
- "members": [
- {
- "type": "STRING",
- "value": "implements"
- },
- {
- "type": "SEQ",
- "members": [
- {
- "type": "SYMBOL",
- "name": "type"
- },
- {
- "type": "REPEAT",
- "content": {
- "type": "SEQ",
- "members": [
- {
- "type": "STRING",
- "value": ","
- },
- {
- "type": "SYMBOL",
- "name": "type"
- }
- ]
- }
- }
- ]
- }
- ]
- },
- "ambient_declaration": {
- "type": "SEQ",
- "members": [
- {
- "type": "STRING",
- "value": "declare"
- },
- {
- "type": "CHOICE",
- "members": [
- {
- "type": "SYMBOL",
- "name": "declaration"
- },
- {
- "type": "SEQ",
- "members": [
- {
- "type": "STRING",
- "value": "global"
- },
- {
- "type": "SYMBOL",
- "name": "statement_block"
- }
- ]
- },
- {
- "type": "SEQ",
- "members": [
- {
- "type": "STRING",
- "value": "module"
- },
- {
- "type": "STRING",
- "value": "."
- },
- {
- "type": "ALIAS",
- "content": {
- "type": "SYMBOL",
- "name": "identifier"
- },
- "named": true,
- "value": "property_identifier"
- },
- {
- "type": "STRING",
- "value": ":"
- },
- {
- "type": "SYMBOL",
- "name": "type"
- },
- {
- "type": "SYMBOL",
- "name": "_semicolon"
- }
- ]
- }
- ]
- }
- ]
- },
- "abstract_class_declaration": {
- "type": "PREC",
- "value": "declaration",
- "content": {
- "type": "SEQ",
- "members": [
- {
- "type": "REPEAT",
- "content": {
- "type": "FIELD",
- "name": "decorator",
- "content": {
- "type": "SYMBOL",
- "name": "decorator"
- }
- }
- },
- {
- "type": "STRING",
- "value": "abstract"
- },
- {
- "type": "STRING",
- "value": "class"
- },
- {
- "type": "FIELD",
- "name": "name",
- "content": {
- "type": "SYMBOL",
- "name": "_type_identifier"
- }
- },
- {
- "type": "FIELD",
- "name": "type_parameters",
- "content": {
- "type": "CHOICE",
- "members": [
- {
- "type": "SYMBOL",
- "name": "type_parameters"
- },
- {
- "type": "BLANK"
- }
- ]
- }
- },
- {
- "type": "CHOICE",
- "members": [
- {
- "type": "SYMBOL",
- "name": "class_heritage"
- },
- {
- "type": "BLANK"
- }
- ]
- },
- {
- "type": "FIELD",
- "name": "body",
- "content": {
- "type": "SYMBOL",
- "name": "class_body"
- }
- }
- ]
- }
- },
- "module": {
- "type": "SEQ",
- "members": [
- {
- "type": "STRING",
- "value": "module"
- },
- {
- "type": "SYMBOL",
- "name": "_module"
- }
- ]
- },
- "internal_module": {
- "type": "SEQ",
- "members": [
- {
- "type": "STRING",
- "value": "namespace"
- },
- {
- "type": "SYMBOL",
- "name": "_module"
- }
- ]
- },
- "_module": {
- "type": "PREC_RIGHT",
- "value": 0,
- "content": {
- "type": "SEQ",
- "members": [
- {
- "type": "FIELD",
- "name": "name",
- "content": {
- "type": "CHOICE",
- "members": [
- {
- "type": "SYMBOL",
- "name": "string"
- },
- {
- "type": "SYMBOL",
- "name": "identifier"
- },
- {
- "type": "SYMBOL",
- "name": "nested_identifier"
- }
- ]
- }
- },
- {
- "type": "FIELD",
- "name": "body",
- "content": {
- "type": "CHOICE",
- "members": [
- {
- "type": "SYMBOL",
- "name": "statement_block"
- },
- {
- "type": "BLANK"
- }
- ]
- }
- }
- ]
- }
- },
- "import_alias": {
- "type": "SEQ",
- "members": [
- {
- "type": "STRING",
- "value": "import"
- },
- {
- "type": "SYMBOL",
- "name": "identifier"
- },
- {
- "type": "STRING",
- "value": "="
- },
- {
- "type": "CHOICE",
- "members": [
- {
- "type": "SYMBOL",
- "name": "identifier"
- },
- {
- "type": "SYMBOL",
- "name": "nested_identifier"
- }
- ]
- },
- {
- "type": "SYMBOL",
- "name": "_semicolon"
- }
- ]
- },
- "nested_type_identifier": {
- "type": "PREC",
- "value": "member",
- "content": {
- "type": "SEQ",
- "members": [
- {
- "type": "FIELD",
- "name": "module",
- "content": {
- "type": "CHOICE",
- "members": [
- {
- "type": "SYMBOL",
- "name": "identifier"
- },
- {
- "type": "SYMBOL",
- "name": "nested_identifier"
- }
- ]
- }
- },
- {
- "type": "STRING",
- "value": "."
- },
- {
- "type": "FIELD",
- "name": "name",
- "content": {
- "type": "SYMBOL",
- "name": "_type_identifier"
- }
- }
- ]
- }
- },
- "interface_declaration": {
- "type": "SEQ",
- "members": [
- {
- "type": "STRING",
- "value": "interface"
- },
- {
- "type": "FIELD",
- "name": "name",
- "content": {
- "type": "SYMBOL",
- "name": "_type_identifier"
- }
- },
- {
- "type": "FIELD",
- "name": "type_parameters",
- "content": {
- "type": "CHOICE",
- "members": [
- {
- "type": "SYMBOL",
- "name": "type_parameters"
- },
- {
- "type": "BLANK"
- }
- ]
- }
- },
- {
- "type": "CHOICE",
- "members": [
- {
- "type": "SYMBOL",
- "name": "extends_type_clause"
- },
- {
- "type": "BLANK"
- }
- ]
- },
- {
- "type": "FIELD",
- "name": "body",
- "content": {
- "type": "ALIAS",
- "content": {
- "type": "SYMBOL",
- "name": "object_type"
- },
- "named": true,
- "value": "interface_body"
- }
- }
- ]
- },
- "extends_type_clause": {
- "type": "SEQ",
- "members": [
- {
- "type": "STRING",
- "value": "extends"
- },
- {
- "type": "SEQ",
- "members": [
- {
- "type": "FIELD",
- "name": "type",
- "content": {
- "type": "CHOICE",
- "members": [
- {
- "type": "SYMBOL",
- "name": "_type_identifier"
- },
- {
- "type": "SYMBOL",
- "name": "nested_type_identifier"
- },
- {
- "type": "SYMBOL",
- "name": "generic_type"
- }
- ]
- }
- },
- {
- "type": "REPEAT",
- "content": {
- "type": "SEQ",
- "members": [
- {
- "type": "STRING",
- "value": ","
- },
- {
- "type": "FIELD",
- "name": "type",
- "content": {
- "type": "CHOICE",
- "members": [
- {
- "type": "SYMBOL",
- "name": "_type_identifier"
- },
- {
- "type": "SYMBOL",
- "name": "nested_type_identifier"
- },
- {
- "type": "SYMBOL",
- "name": "generic_type"
- }
- ]
- }
- }
- ]
- }
- }
- ]
- }
- ]
- },
- "enum_declaration": {
- "type": "SEQ",
- "members": [
- {
- "type": "CHOICE",
- "members": [
- {
- "type": "STRING",
- "value": "const"
- },
- {
- "type": "BLANK"
- }
- ]
- },
- {
- "type": "STRING",
- "value": "enum"
- },
- {
- "type": "FIELD",
- "name": "name",
- "content": {
- "type": "SYMBOL",
- "name": "identifier"
- }
- },
- {
- "type": "FIELD",
- "name": "body",
- "content": {
- "type": "SYMBOL",
- "name": "enum_body"
- }
- }
- ]
- },
- "enum_body": {
- "type": "SEQ",
- "members": [
- {
- "type": "STRING",
- "value": "{"
- },
- {
- "type": "CHOICE",
- "members": [
- {
- "type": "SEQ",
- "members": [
- {
- "type": "SEQ",
- "members": [
- {
- "type": "CHOICE",
- "members": [
- {
- "type": "FIELD",
- "name": "name",
- "content": {
- "type": "SYMBOL",
- "name": "_property_name"
- }
- },
- {
- "type": "SYMBOL",
- "name": "enum_assignment"
- }
- ]
- },
- {
- "type": "REPEAT",
- "content": {
- "type": "SEQ",
- "members": [
- {
- "type": "STRING",
- "value": ","
- },
- {
- "type": "CHOICE",
- "members": [
- {
- "type": "FIELD",
- "name": "name",
- "content": {
- "type": "SYMBOL",
- "name": "_property_name"
- }
- },
- {
- "type": "SYMBOL",
- "name": "enum_assignment"
- }
- ]
- }
- ]
- }
- }
- ]
- },
- {
- "type": "CHOICE",
- "members": [
- {
- "type": "STRING",
- "value": ","
- },
- {
- "type": "BLANK"
- }
- ]
- }
- ]
- },
- {
- "type": "BLANK"
- }
- ]
- },
- {
- "type": "STRING",
- "value": "}"
- }
- ]
- },
- "enum_assignment": {
- "type": "SEQ",
- "members": [
- {
- "type": "FIELD",
- "name": "name",
- "content": {
- "type": "SYMBOL",
- "name": "_property_name"
- }
- },
- {
- "type": "SYMBOL",
- "name": "_initializer"
- }
- ]
- },
- "type_alias_declaration": {
- "type": "SEQ",
- "members": [
- {
- "type": "STRING",
- "value": "type"
- },
- {
- "type": "FIELD",
- "name": "name",
- "content": {
- "type": "SYMBOL",
- "name": "_type_identifier"
- }
- },
- {
- "type": "FIELD",
- "name": "type_parameters",
- "content": {
- "type": "CHOICE",
- "members": [
- {
- "type": "SYMBOL",
- "name": "type_parameters"
- },
- {
- "type": "BLANK"
- }
- ]
- }
- },
- {
- "type": "STRING",
- "value": "="
- },
- {
- "type": "FIELD",
- "name": "value",
- "content": {
- "type": "SYMBOL",
- "name": "type"
- }
- },
- {
- "type": "SYMBOL",
- "name": "_semicolon"
- }
- ]
- },
- "accessibility_modifier": {
- "type": "CHOICE",
- "members": [
- {
- "type": "STRING",
- "value": "public"
- },
- {
- "type": "STRING",
- "value": "private"
- },
- {
- "type": "STRING",
- "value": "protected"
- }
- ]
- },
- "override_modifier": {
- "type": "STRING",
- "value": "override"
- },
- "required_parameter": {
- "type": "SEQ",
- "members": [
- {
- "type": "SYMBOL",
- "name": "_parameter_name"
- },
- {
- "type": "FIELD",
- "name": "type",
- "content": {
- "type": "CHOICE",
- "members": [
- {
- "type": "SYMBOL",
- "name": "type_annotation"
- },
- {
- "type": "BLANK"
- }
- ]
- }
- },
- {
- "type": "CHOICE",
- "members": [
- {
- "type": "SYMBOL",
- "name": "_initializer"
- },
- {
- "type": "BLANK"
- }
- ]
- }
- ]
- },
- "optional_parameter": {
- "type": "SEQ",
- "members": [
- {
- "type": "SYMBOL",
- "name": "_parameter_name"
- },
- {
- "type": "STRING",
- "value": "?"
- },
- {
- "type": "FIELD",
- "name": "type",
- "content": {
- "type": "CHOICE",
- "members": [
- {
- "type": "SYMBOL",
- "name": "type_annotation"
- },
- {
- "type": "BLANK"
- }
- ]
- }
- },
- {
- "type": "CHOICE",
- "members": [
- {
- "type": "SYMBOL",
- "name": "_initializer"
- },
- {
- "type": "BLANK"
- }
- ]
- }
- ]
- },
- "_parameter_name": {
- "type": "SEQ",
- "members": [
- {
- "type": "REPEAT",
- "content": {
- "type": "FIELD",
- "name": "decorator",
- "content": {
- "type": "SYMBOL",
- "name": "decorator"
- }
- }
- },
- {
- "type": "CHOICE",
- "members": [
- {
- "type": "SYMBOL",
- "name": "accessibility_modifier"
- },
- {
- "type": "BLANK"
- }
- ]
- },
- {
- "type": "CHOICE",
- "members": [
- {
- "type": "SYMBOL",
- "name": "override_modifier"
- },
- {
- "type": "BLANK"
- }
- ]
- },
- {
- "type": "CHOICE",
- "members": [
- {
- "type": "STRING",
- "value": "readonly"
- },
- {
- "type": "BLANK"
- }
- ]
- },
- {
- "type": "FIELD",
- "name": "pattern",
- "content": {
- "type": "CHOICE",
- "members": [
- {
- "type": "SYMBOL",
- "name": "pattern"
- },
- {
- "type": "SYMBOL",
- "name": "this"
- }
- ]
- }
- }
- ]
- },
- "omitting_type_annotation": {
- "type": "SEQ",
- "members": [
- {
- "type": "STRING",
- "value": "-?:"
- },
- {
- "type": "SYMBOL",
- "name": "type"
- }
- ]
- },
- "adding_type_annotation": {
- "type": "SEQ",
- "members": [
- {
- "type": "STRING",
- "value": "+?:"
- },
- {
- "type": "SYMBOL",
- "name": "type"
- }
- ]
- },
- "opting_type_annotation": {
- "type": "SEQ",
- "members": [
- {
- "type": "STRING",
- "value": "?:"
- },
- {
- "type": "SYMBOL",
- "name": "type"
- }
- ]
- },
- "type_annotation": {
- "type": "SEQ",
- "members": [
- {
- "type": "STRING",
- "value": ":"
- },
- {
- "type": "SYMBOL",
- "name": "type"
- }
- ]
- },
- "_type_query_member_expression_in_type_annotation": {
- "type": "SEQ",
- "members": [
- {
- "type": "FIELD",
- "name": "object",
- "content": {
- "type": "CHOICE",
- "members": [
- {
- "type": "SYMBOL",
- "name": "import"
- },
- {
- "type": "ALIAS",
- "content": {
- "type": "SYMBOL",
- "name": "_type_query_member_expression_in_type_annotation"
- },
- "named": true,
- "value": "member_expression"
- },
- {
- "type": "ALIAS",
- "content": {
- "type": "SYMBOL",
- "name": "_type_query_call_expression_in_type_annotation"
- },
- "named": true,
- "value": "call_expression"
- }
- ]
- }
- },
- {
- "type": "STRING",
- "value": "."
- },
- {
- "type": "FIELD",
- "name": "property",
- "content": {
- "type": "CHOICE",
- "members": [
- {
- "type": "SYMBOL",
- "name": "private_property_identifier"
- },
- {
- "type": "ALIAS",
- "content": {
- "type": "SYMBOL",
- "name": "identifier"
- },
- "named": true,
- "value": "property_identifier"
- }
- ]
- }
- }
- ]
- },
- "_type_query_call_expression_in_type_annotation": {
- "type": "SEQ",
- "members": [
- {
- "type": "FIELD",
- "name": "function",
- "content": {
- "type": "CHOICE",
- "members": [
- {
- "type": "SYMBOL",
- "name": "import"
- },
- {
- "type": "ALIAS",
- "content": {
- "type": "SYMBOL",
- "name": "_type_query_member_expression_in_type_annotation"
- },
- "named": true,
- "value": "member_expression"
- }
- ]
- }
- },
- {
- "type": "FIELD",
- "name": "arguments",
- "content": {
- "type": "SYMBOL",
- "name": "arguments"
- }
- }
- ]
- },
- "asserts": {
- "type": "SEQ",
- "members": [
- {
- "type": "STRING",
- "value": "asserts"
- },
- {
- "type": "CHOICE",
- "members": [
- {
- "type": "SYMBOL",
- "name": "type_predicate"
- },
- {
- "type": "SYMBOL",
- "name": "identifier"
- },
- {
- "type": "SYMBOL",
- "name": "this"
- }
- ]
- }
- ]
- },
- "asserts_annotation": {
- "type": "SEQ",
- "members": [
- {
- "type": "SEQ",
- "members": [
- {
- "type": "STRING",
- "value": ":"
- },
- {
- "type": "SYMBOL",
- "name": "asserts"
- }
- ]
- }
- ]
- },
- "type": {
- "type": "CHOICE",
- "members": [
- {
- "type": "SYMBOL",
- "name": "primary_type"
- },
- {
- "type": "SYMBOL",
- "name": "function_type"
- },
- {
- "type": "SYMBOL",
- "name": "readonly_type"
- },
- {
- "type": "SYMBOL",
- "name": "constructor_type"
- },
- {
- "type": "SYMBOL",
- "name": "infer_type"
- },
- {
- "type": "PREC",
- "value": -1,
- "content": {
- "type": "ALIAS",
- "content": {
- "type": "SYMBOL",
- "name": "_type_query_member_expression_in_type_annotation"
- },
- "named": true,
- "value": "member_expression"
- }
- },
- {
- "type": "PREC",
- "value": -1,
- "content": {
- "type": "ALIAS",
- "content": {
- "type": "SYMBOL",
- "name": "_type_query_call_expression_in_type_annotation"
- },
- "named": true,
- "value": "call_expression"
- }
- }
- ]
- },
- "tuple_parameter": {
- "type": "SEQ",
- "members": [
- {
- "type": "FIELD",
- "name": "name",
- "content": {
- "type": "CHOICE",
- "members": [
- {
- "type": "SYMBOL",
- "name": "identifier"
- },
- {
- "type": "SYMBOL",
- "name": "rest_pattern"
- }
- ]
- }
- },
- {
- "type": "FIELD",
- "name": "type",
- "content": {
- "type": "SYMBOL",
- "name": "type_annotation"
- }
- }
- ]
- },
- "optional_tuple_parameter": {
- "type": "SEQ",
- "members": [
- {
- "type": "FIELD",
- "name": "name",
- "content": {
- "type": "SYMBOL",
- "name": "identifier"
- }
- },
- {
- "type": "STRING",
- "value": "?"
- },
- {
- "type": "FIELD",
- "name": "type",
- "content": {
- "type": "SYMBOL",
- "name": "type_annotation"
- }
- }
- ]
- },
- "optional_type": {
- "type": "SEQ",
- "members": [
- {
- "type": "SYMBOL",
- "name": "type"
- },
- {
- "type": "STRING",
- "value": "?"
- }
- ]
- },
- "rest_type": {
- "type": "SEQ",
- "members": [
- {
- "type": "STRING",
- "value": "..."
- },
- {
- "type": "SYMBOL",
- "name": "type"
- }
- ]
- },
- "_tuple_type_member": {
- "type": "CHOICE",
- "members": [
- {
- "type": "ALIAS",
- "content": {
- "type": "SYMBOL",
- "name": "tuple_parameter"
- },
- "named": true,
- "value": "required_parameter"
- },
- {
- "type": "ALIAS",
- "content": {
- "type": "SYMBOL",
- "name": "optional_tuple_parameter"
- },
- "named": true,
- "value": "optional_parameter"
- },
- {
- "type": "SYMBOL",
- "name": "optional_type"
- },
- {
- "type": "SYMBOL",
- "name": "rest_type"
- },
- {
- "type": "SYMBOL",
- "name": "type"
- }
- ]
- },
- "constructor_type": {
- "type": "PREC_LEFT",
- "value": 0,
- "content": {
- "type": "SEQ",
- "members": [
- {
- "type": "CHOICE",
- "members": [
- {
- "type": "STRING",
- "value": "abstract"
- },
- {
- "type": "BLANK"
- }
- ]
- },
- {
- "type": "STRING",
- "value": "new"
- },
- {
- "type": "FIELD",
- "name": "type_parameters",
- "content": {
- "type": "CHOICE",
- "members": [
- {
- "type": "SYMBOL",
- "name": "type_parameters"
- },
- {
- "type": "BLANK"
- }
- ]
- }
- },
- {
- "type": "FIELD",
- "name": "parameters",
- "content": {
- "type": "SYMBOL",
- "name": "formal_parameters"
- }
- },
- {
- "type": "STRING",
- "value": "=>"
- },
- {
- "type": "FIELD",
- "name": "type",
- "content": {
- "type": "SYMBOL",
- "name": "type"
- }
- }
- ]
- }
- },
- "primary_type": {
- "type": "CHOICE",
- "members": [
- {
- "type": "SYMBOL",
- "name": "parenthesized_type"
- },
- {
- "type": "SYMBOL",
- "name": "predefined_type"
- },
- {
- "type": "SYMBOL",
- "name": "_type_identifier"
- },
- {
- "type": "SYMBOL",
- "name": "nested_type_identifier"
- },
- {
- "type": "SYMBOL",
- "name": "generic_type"
- },
- {
- "type": "SYMBOL",
- "name": "object_type"
- },
- {
- "type": "SYMBOL",
- "name": "array_type"
- },
- {
- "type": "SYMBOL",
- "name": "tuple_type"
- },
- {
- "type": "SYMBOL",
- "name": "flow_maybe_type"
- },
- {
- "type": "SYMBOL",
- "name": "type_query"
- },
- {
- "type": "SYMBOL",
- "name": "index_type_query"
- },
- {
- "type": "ALIAS",
- "content": {
- "type": "SYMBOL",
- "name": "this"
- },
- "named": true,
- "value": "this_type"
- },
- {
- "type": "SYMBOL",
- "name": "existential_type"
- },
- {
- "type": "SYMBOL",
- "name": "literal_type"
- },
- {
- "type": "SYMBOL",
- "name": "lookup_type"
- },
- {
- "type": "SYMBOL",
- "name": "conditional_type"
- },
- {
- "type": "SYMBOL",
- "name": "template_literal_type"
- },
- {
- "type": "SYMBOL",
- "name": "intersection_type"
- },
- {
- "type": "SYMBOL",
- "name": "union_type"
- },
- {
- "type": "STRING",
- "value": "const"
- }
- ]
- },
- "template_type": {
- "type": "SEQ",
- "members": [
- {
- "type": "STRING",
- "value": "${"
- },
- {
- "type": "CHOICE",
- "members": [
- {
- "type": "SYMBOL",
- "name": "primary_type"
- },
- {
- "type": "SYMBOL",
- "name": "infer_type"
- }
- ]
- },
- {
- "type": "STRING",
- "value": "}"
- }
- ]
- },
- "template_literal_type": {
- "type": "SEQ",
- "members": [
- {
- "type": "STRING",
- "value": "`"
- },
- {
- "type": "REPEAT",
- "content": {
- "type": "CHOICE",
- "members": [
- {
- "type": "ALIAS",
- "content": {
- "type": "SYMBOL",
- "name": "_template_chars"
- },
- "named": true,
- "value": "string_fragment"
- },
- {
- "type": "SYMBOL",
- "name": "template_type"
- }
- ]
- }
- },
- {
- "type": "STRING",
- "value": "`"
- }
- ]
- },
- "infer_type": {
- "type": "PREC_RIGHT",
- "value": 0,
- "content": {
- "type": "SEQ",
- "members": [
- {
- "type": "STRING",
- "value": "infer"
- },
- {
- "type": "SYMBOL",
- "name": "_type_identifier"
- },
- {
- "type": "CHOICE",
- "members": [
- {
- "type": "SEQ",
- "members": [
- {
- "type": "STRING",
- "value": "extends"
- },
- {
- "type": "SYMBOL",
- "name": "type"
- }
- ]
- },
- {
- "type": "BLANK"
- }
- ]
- }
- ]
- }
- },
- "conditional_type": {
- "type": "PREC_RIGHT",
- "value": 0,
- "content": {
- "type": "SEQ",
- "members": [
- {
- "type": "FIELD",
- "name": "left",
- "content": {
- "type": "SYMBOL",
- "name": "type"
- }
- },
- {
- "type": "STRING",
- "value": "extends"
- },
- {
- "type": "FIELD",
- "name": "right",
- "content": {
- "type": "SYMBOL",
- "name": "type"
- }
- },
- {
- "type": "STRING",
- "value": "?"
- },
- {
- "type": "FIELD",
- "name": "consequence",
- "content": {
- "type": "SYMBOL",
- "name": "type"
- }
- },
- {
- "type": "STRING",
- "value": ":"
- },
- {
- "type": "FIELD",
- "name": "alternative",
- "content": {
- "type": "SYMBOL",
- "name": "type"
- }
- }
- ]
- }
- },
- "generic_type": {
- "type": "PREC",
- "value": "call",
- "content": {
- "type": "SEQ",
- "members": [
- {
- "type": "FIELD",
- "name": "name",
- "content": {
- "type": "CHOICE",
- "members": [
- {
- "type": "SYMBOL",
- "name": "_type_identifier"
- },
- {
- "type": "SYMBOL",
- "name": "nested_type_identifier"
- }
- ]
- }
- },
- {
- "type": "FIELD",
- "name": "type_arguments",
- "content": {
- "type": "SYMBOL",
- "name": "type_arguments"
- }
- }
- ]
- }
- },
- "type_predicate": {
- "type": "SEQ",
- "members": [
- {
- "type": "FIELD",
- "name": "name",
- "content": {
- "type": "CHOICE",
- "members": [
- {
- "type": "SYMBOL",
- "name": "identifier"
- },
- {
- "type": "SYMBOL",
- "name": "this"
- },
- {
- "type": "ALIAS",
- "content": {
- "type": "SYMBOL",
- "name": "predefined_type"
- },
- "named": true,
- "value": "identifier"
- }
- ]
- }
- },
- {
- "type": "STRING",
- "value": "is"
- },
- {
- "type": "FIELD",
- "name": "type",
- "content": {
- "type": "SYMBOL",
- "name": "type"
- }
- }
- ]
- },
- "type_predicate_annotation": {
- "type": "SEQ",
- "members": [
- {
- "type": "SEQ",
- "members": [
- {
- "type": "STRING",
- "value": ":"
- },
- {
- "type": "SYMBOL",
- "name": "type_predicate"
- }
- ]
- }
- ]
- },
- "_type_query_member_expression": {
- "type": "SEQ",
- "members": [
- {
- "type": "FIELD",
- "name": "object",
- "content": {
- "type": "CHOICE",
- "members": [
- {
- "type": "SYMBOL",
- "name": "identifier"
- },
- {
- "type": "SYMBOL",
- "name": "this"
- },
- {
- "type": "ALIAS",
- "content": {
- "type": "SYMBOL",
- "name": "_type_query_subscript_expression"
- },
- "named": true,
- "value": "subscript_expression"
- },
- {
- "type": "ALIAS",
- "content": {
- "type": "SYMBOL",
- "name": "_type_query_member_expression"
- },
- "named": true,
- "value": "member_expression"
- },
- {
- "type": "ALIAS",
- "content": {
- "type": "SYMBOL",
- "name": "_type_query_call_expression"
- },
- "named": true,
- "value": "call_expression"
- }
- ]
- }
- },
- {
- "type": "CHOICE",
- "members": [
- {
- "type": "STRING",
- "value": "."
- },
- {
- "type": "STRING",
- "value": "?."
- }
- ]
- },
- {
- "type": "FIELD",
- "name": "property",
- "content": {
- "type": "CHOICE",
- "members": [
- {
- "type": "SYMBOL",
- "name": "private_property_identifier"
- },
- {
- "type": "ALIAS",
- "content": {
- "type": "SYMBOL",
- "name": "identifier"
- },
- "named": true,
- "value": "property_identifier"
- }
- ]
- }
- }
- ]
- },
- "_type_query_subscript_expression": {
- "type": "SEQ",
- "members": [
- {
- "type": "FIELD",
- "name": "object",
- "content": {
- "type": "CHOICE",
- "members": [
- {
- "type": "SYMBOL",
- "name": "identifier"
- },
- {
- "type": "SYMBOL",
- "name": "this"
- },
- {
- "type": "ALIAS",
- "content": {
- "type": "SYMBOL",
- "name": "_type_query_subscript_expression"
- },
- "named": true,
- "value": "subscript_expression"
- },
- {
- "type": "ALIAS",
- "content": {
- "type": "SYMBOL",
- "name": "_type_query_member_expression"
- },
- "named": true,
- "value": "member_expression"
- },
- {
- "type": "ALIAS",
- "content": {
- "type": "SYMBOL",
- "name": "_type_query_call_expression"
- },
- "named": true,
- "value": "call_expression"
- }
- ]
- }
- },
- {
- "type": "CHOICE",
- "members": [
- {
- "type": "STRING",
- "value": "?."
- },
- {
- "type": "BLANK"
- }
- ]
- },
- {
- "type": "STRING",
- "value": "["
- },
- {
- "type": "FIELD",
- "name": "index",
- "content": {
- "type": "CHOICE",
- "members": [
- {
- "type": "SYMBOL",
- "name": "predefined_type"
- },
- {
- "type": "SYMBOL",
- "name": "string"
- },
- {
- "type": "SYMBOL",
- "name": "number"
- }
- ]
- }
- },
- {
- "type": "STRING",
- "value": "]"
- }
- ]
- },
- "_type_query_call_expression": {
- "type": "SEQ",
- "members": [
- {
- "type": "FIELD",
- "name": "function",
- "content": {
- "type": "CHOICE",
- "members": [
- {
- "type": "SYMBOL",
- "name": "import"
- },
- {
- "type": "SYMBOL",
- "name": "identifier"
- },
- {
- "type": "ALIAS",
- "content": {
- "type": "SYMBOL",
- "name": "_type_query_member_expression"
- },
- "named": true,
- "value": "member_expression"
- },
- {
- "type": "ALIAS",
- "content": {
- "type": "SYMBOL",
- "name": "_type_query_subscript_expression"
- },
- "named": true,
- "value": "subscript_expression"
- }
- ]
- }
- },
- {
- "type": "FIELD",
- "name": "arguments",
- "content": {
- "type": "SYMBOL",
- "name": "arguments"
- }
- }
- ]
- },
- "_type_query_instantiation_expression": {
- "type": "SEQ",
- "members": [
- {
- "type": "FIELD",
- "name": "function",
- "content": {
- "type": "CHOICE",
- "members": [
- {
- "type": "SYMBOL",
- "name": "import"
- },
- {
- "type": "SYMBOL",
- "name": "identifier"
- },
- {
- "type": "ALIAS",
- "content": {
- "type": "SYMBOL",
- "name": "_type_query_member_expression"
- },
- "named": true,
- "value": "member_expression"
- },
- {
- "type": "ALIAS",
- "content": {
- "type": "SYMBOL",
- "name": "_type_query_subscript_expression"
- },
- "named": true,
- "value": "subscript_expression"
- }
- ]
- }
- },
- {
- "type": "FIELD",
- "name": "type_arguments",
- "content": {
- "type": "SYMBOL",
- "name": "type_arguments"
- }
- }
- ]
- },
- "type_query": {
- "type": "PREC_RIGHT",
- "value": 0,
- "content": {
- "type": "SEQ",
- "members": [
- {
- "type": "STRING",
- "value": "typeof"
- },
- {
- "type": "CHOICE",
- "members": [
- {
- "type": "ALIAS",
- "content": {
- "type": "SYMBOL",
- "name": "_type_query_subscript_expression"
- },
- "named": true,
- "value": "subscript_expression"
- },
- {
- "type": "ALIAS",
- "content": {
- "type": "SYMBOL",
- "name": "_type_query_member_expression"
- },
- "named": true,
- "value": "member_expression"
- },
- {
- "type": "ALIAS",
- "content": {
- "type": "SYMBOL",
- "name": "_type_query_call_expression"
- },
- "named": true,
- "value": "call_expression"
- },
- {
- "type": "ALIAS",
- "content": {
- "type": "SYMBOL",
- "name": "_type_query_instantiation_expression"
- },
- "named": true,
- "value": "instantiation_expression"
- },
- {
- "type": "SYMBOL",
- "name": "identifier"
- },
- {
- "type": "SYMBOL",
- "name": "this"
- }
- ]
- }
- ]
- }
- },
- "index_type_query": {
- "type": "SEQ",
- "members": [
- {
- "type": "STRING",
- "value": "keyof"
- },
- {
- "type": "SYMBOL",
- "name": "primary_type"
- }
- ]
- },
- "lookup_type": {
- "type": "SEQ",
- "members": [
- {
- "type": "SYMBOL",
- "name": "primary_type"
- },
- {
- "type": "STRING",
- "value": "["
- },
- {
- "type": "SYMBOL",
- "name": "type"
- },
- {
- "type": "STRING",
- "value": "]"
- }
- ]
- },
- "mapped_type_clause": {
- "type": "SEQ",
- "members": [
- {
- "type": "FIELD",
- "name": "name",
- "content": {
- "type": "SYMBOL",
- "name": "_type_identifier"
- }
- },
- {
- "type": "STRING",
- "value": "in"
- },
- {
- "type": "FIELD",
- "name": "type",
- "content": {
- "type": "SYMBOL",
- "name": "type"
- }
- },
- {
- "type": "CHOICE",
- "members": [
- {
- "type": "SEQ",
- "members": [
- {
- "type": "STRING",
- "value": "as"
- },
- {
- "type": "FIELD",
- "name": "alias",
- "content": {
- "type": "SYMBOL",
- "name": "type"
- }
- }
- ]
- },
- {
- "type": "BLANK"
- }
- ]
- }
- ]
- },
- "literal_type": {
- "type": "CHOICE",
- "members": [
- {
- "type": "ALIAS",
- "content": {
- "type": "SYMBOL",
- "name": "_number"
- },
- "named": true,
- "value": "unary_expression"
- },
- {
- "type": "SYMBOL",
- "name": "number"
- },
- {
- "type": "SYMBOL",
- "name": "string"
- },
- {
- "type": "SYMBOL",
- "name": "true"
- },
- {
- "type": "SYMBOL",
- "name": "false"
- },
- {
- "type": "SYMBOL",
- "name": "null"
- },
- {
- "type": "SYMBOL",
- "name": "undefined"
- }
- ]
- },
- "_number": {
- "type": "PREC_LEFT",
- "value": 1,
- "content": {
- "type": "SEQ",
- "members": [
- {
- "type": "FIELD",
- "name": "operator",
- "content": {
- "type": "CHOICE",
- "members": [
- {
- "type": "STRING",
- "value": "-"
- },
- {
- "type": "STRING",
- "value": "+"
- }
- ]
- }
- },
- {
- "type": "FIELD",
- "name": "argument",
- "content": {
- "type": "SYMBOL",
- "name": "number"
- }
- }
- ]
- }
- },
- "existential_type": {
- "type": "STRING",
- "value": "*"
- },
- "flow_maybe_type": {
- "type": "PREC_RIGHT",
- "value": 0,
- "content": {
- "type": "SEQ",
- "members": [
- {
- "type": "STRING",
- "value": "?"
- },
- {
- "type": "SYMBOL",
- "name": "primary_type"
- }
- ]
- }
- },
- "parenthesized_type": {
- "type": "SEQ",
- "members": [
- {
- "type": "STRING",
- "value": "("
- },
- {
- "type": "SYMBOL",
- "name": "type"
- },
- {
- "type": "STRING",
- "value": ")"
- }
- ]
- },
- "predefined_type": {
- "type": "CHOICE",
- "members": [
- {
- "type": "STRING",
- "value": "any"
- },
- {
- "type": "STRING",
- "value": "number"
- },
- {
- "type": "STRING",
- "value": "boolean"
- },
- {
- "type": "STRING",
- "value": "string"
- },
- {
- "type": "STRING",
- "value": "symbol"
- },
- {
- "type": "ALIAS",
- "content": {
- "type": "SEQ",
- "members": [
- {
- "type": "STRING",
- "value": "unique"
- },
- {
- "type": "STRING",
- "value": "symbol"
- }
- ]
- },
- "named": false,
- "value": "unique symbol"
- },
- {
- "type": "STRING",
- "value": "void"
- },
- {
- "type": "STRING",
- "value": "unknown"
- },
- {
- "type": "STRING",
- "value": "string"
- },
- {
- "type": "STRING",
- "value": "never"
- },
- {
- "type": "STRING",
- "value": "object"
- }
- ]
- },
- "type_arguments": {
- "type": "SEQ",
- "members": [
- {
- "type": "STRING",
- "value": "<"
- },
- {
- "type": "SEQ",
- "members": [
- {
- "type": "SYMBOL",
- "name": "type"
- },
- {
- "type": "REPEAT",
- "content": {
- "type": "SEQ",
- "members": [
- {
- "type": "STRING",
- "value": ","
- },
- {
- "type": "SYMBOL",
- "name": "type"
- }
- ]
- }
- }
- ]
- },
- {
- "type": "CHOICE",
- "members": [
- {
- "type": "STRING",
- "value": ","
- },
- {
- "type": "BLANK"
- }
- ]
- },
- {
- "type": "STRING",
- "value": ">"
- }
- ]
- },
- "object_type": {
- "type": "SEQ",
- "members": [
- {
- "type": "CHOICE",
- "members": [
- {
- "type": "STRING",
- "value": "{"
- },
- {
- "type": "STRING",
- "value": "{|"
- }
- ]
- },
- {
- "type": "CHOICE",
- "members": [
- {
- "type": "SEQ",
- "members": [
- {
- "type": "CHOICE",
- "members": [
- {
- "type": "CHOICE",
- "members": [
- {
- "type": "STRING",
- "value": ","
- },
- {
- "type": "STRING",
- "value": ";"
- }
- ]
- },
- {
- "type": "BLANK"
- }
- ]
- },
- {
- "type": "SEQ",
- "members": [
- {
- "type": "CHOICE",
- "members": [
- {
- "type": "SYMBOL",
- "name": "export_statement"
- },
- {
- "type": "SYMBOL",
- "name": "property_signature"
- },
- {
- "type": "SYMBOL",
- "name": "call_signature"
- },
- {
- "type": "SYMBOL",
- "name": "construct_signature"
- },
- {
- "type": "SYMBOL",
- "name": "index_signature"
- },
- {
- "type": "SYMBOL",
- "name": "method_signature"
- }
- ]
- },
- {
- "type": "REPEAT",
- "content": {
- "type": "SEQ",
- "members": [
- {
- "type": "CHOICE",
- "members": [
- {
- "type": "STRING",
- "value": ","
- },
- {
- "type": "SYMBOL",
- "name": "_semicolon"
- }
- ]
- },
- {
- "type": "CHOICE",
- "members": [
- {
- "type": "SYMBOL",
- "name": "export_statement"
- },
- {
- "type": "SYMBOL",
- "name": "property_signature"
- },
- {
- "type": "SYMBOL",
- "name": "call_signature"
- },
- {
- "type": "SYMBOL",
- "name": "construct_signature"
- },
- {
- "type": "SYMBOL",
- "name": "index_signature"
- },
- {
- "type": "SYMBOL",
- "name": "method_signature"
- }
- ]
- }
- ]
- }
- }
- ]
- },
- {
- "type": "CHOICE",
- "members": [
- {
- "type": "CHOICE",
- "members": [
- {
- "type": "STRING",
- "value": ","
- },
- {
- "type": "SYMBOL",
- "name": "_semicolon"
- }
- ]
- },
- {
- "type": "BLANK"
- }
- ]
- }
- ]
- },
- {
- "type": "BLANK"
- }
- ]
- },
- {
- "type": "CHOICE",
- "members": [
- {
- "type": "STRING",
- "value": "}"
- },
- {
- "type": "STRING",
- "value": "|}"
- }
- ]
- }
- ]
- },
- "call_signature": {
- "type": "SYMBOL",
- "name": "_call_signature"
- },
- "property_signature": {
- "type": "SEQ",
- "members": [
- {
- "type": "CHOICE",
- "members": [
- {
- "type": "SYMBOL",
- "name": "accessibility_modifier"
- },
- {
- "type": "BLANK"
- }
- ]
- },
- {
- "type": "CHOICE",
- "members": [
- {
- "type": "STRING",
- "value": "static"
- },
- {
- "type": "BLANK"
- }
- ]
- },
- {
- "type": "CHOICE",
- "members": [
- {
- "type": "SYMBOL",
- "name": "override_modifier"
- },
- {
- "type": "BLANK"
- }
- ]
- },
- {
- "type": "CHOICE",
- "members": [
- {
- "type": "STRING",
- "value": "readonly"
- },
- {
- "type": "BLANK"
- }
- ]
- },
- {
- "type": "FIELD",
- "name": "name",
- "content": {
- "type": "SYMBOL",
- "name": "_property_name"
- }
- },
- {
- "type": "CHOICE",
- "members": [
- {
- "type": "STRING",
- "value": "?"
- },
- {
- "type": "BLANK"
- }
- ]
- },
- {
- "type": "FIELD",
- "name": "type",
- "content": {
- "type": "CHOICE",
- "members": [
- {
- "type": "SYMBOL",
- "name": "type_annotation"
- },
- {
- "type": "BLANK"
- }
- ]
- }
- }
- ]
- },
- "type_parameters": {
- "type": "SEQ",
- "members": [
- {
- "type": "STRING",
- "value": "<"
- },
- {
- "type": "SEQ",
- "members": [
- {
- "type": "SYMBOL",
- "name": "type_parameter"
- },
- {
- "type": "REPEAT",
- "content": {
- "type": "SEQ",
- "members": [
- {
- "type": "STRING",
- "value": ","
- },
- {
- "type": "SYMBOL",
- "name": "type_parameter"
- }
- ]
- }
- }
- ]
- },
- {
- "type": "CHOICE",
- "members": [
- {
- "type": "STRING",
- "value": ","
- },
- {
- "type": "BLANK"
- }
- ]
- },
- {
- "type": "STRING",
- "value": ">"
- }
- ]
- },
- "type_parameter": {
- "type": "SEQ",
- "members": [
- {
- "type": "CHOICE",
- "members": [
- {
- "type": "STRING",
- "value": "const"
- },
- {
- "type": "BLANK"
- }
- ]
- },
- {
- "type": "FIELD",
- "name": "name",
- "content": {
- "type": "SYMBOL",
- "name": "_type_identifier"
- }
- },
- {
- "type": "FIELD",
- "name": "constraint",
- "content": {
- "type": "CHOICE",
- "members": [
- {
- "type": "SYMBOL",
- "name": "constraint"
- },
- {
- "type": "BLANK"
- }
- ]
- }
- },
- {
- "type": "FIELD",
- "name": "value",
- "content": {
- "type": "CHOICE",
- "members": [
- {
- "type": "SYMBOL",
- "name": "default_type"
- },
- {
- "type": "BLANK"
- }
- ]
- }
- }
- ]
- },
- "default_type": {
- "type": "SEQ",
- "members": [
- {
- "type": "STRING",
- "value": "="
- },
- {
- "type": "SYMBOL",
- "name": "type"
- }
- ]
- },
- "constraint": {
- "type": "SEQ",
- "members": [
- {
- "type": "CHOICE",
- "members": [
- {
- "type": "STRING",
- "value": "extends"
- },
- {
- "type": "STRING",
- "value": ":"
- }
- ]
- },
- {
- "type": "SYMBOL",
- "name": "type"
- }
- ]
- },
- "construct_signature": {
- "type": "SEQ",
- "members": [
- {
- "type": "CHOICE",
- "members": [
- {
- "type": "STRING",
- "value": "abstract"
- },
- {
- "type": "BLANK"
- }
- ]
- },
- {
- "type": "STRING",
- "value": "new"
- },
- {
- "type": "FIELD",
- "name": "type_parameters",
- "content": {
- "type": "CHOICE",
- "members": [
- {
- "type": "SYMBOL",
- "name": "type_parameters"
- },
- {
- "type": "BLANK"
- }
- ]
- }
- },
- {
- "type": "FIELD",
- "name": "parameters",
- "content": {
- "type": "SYMBOL",
- "name": "formal_parameters"
- }
- },
- {
- "type": "FIELD",
- "name": "type",
- "content": {
- "type": "CHOICE",
- "members": [
- {
- "type": "SYMBOL",
- "name": "type_annotation"
- },
- {
- "type": "BLANK"
- }
- ]
- }
- }
- ]
- },
- "index_signature": {
- "type": "SEQ",
- "members": [
- {
- "type": "CHOICE",
- "members": [
- {
- "type": "SEQ",
- "members": [
- {
- "type": "FIELD",
- "name": "sign",
- "content": {
- "type": "CHOICE",
- "members": [
- {
- "type": "CHOICE",
- "members": [
- {
- "type": "STRING",
- "value": "-"
- },
- {
- "type": "STRING",
- "value": "+"
- }
- ]
- },
- {
- "type": "BLANK"
- }
- ]
- }
- },
- {
- "type": "STRING",
- "value": "readonly"
- }
- ]
- },
- {
- "type": "BLANK"
- }
- ]
- },
- {
- "type": "STRING",
- "value": "["
- },
- {
- "type": "CHOICE",
- "members": [
- {
- "type": "SEQ",
- "members": [
- {
- "type": "FIELD",
- "name": "name",
- "content": {
- "type": "CHOICE",
- "members": [
- {
- "type": "SYMBOL",
- "name": "identifier"
- },
- {
- "type": "ALIAS",
- "content": {
- "type": "SYMBOL",
- "name": "_reserved_identifier"
- },
- "named": true,
- "value": "identifier"
- }
- ]
- }
- },
- {
- "type": "STRING",
- "value": ":"
- },
- {
- "type": "FIELD",
- "name": "index_type",
- "content": {
- "type": "SYMBOL",
- "name": "type"
- }
- }
- ]
- },
- {
- "type": "SYMBOL",
- "name": "mapped_type_clause"
- }
- ]
- },
- {
- "type": "STRING",
- "value": "]"
- },
- {
- "type": "FIELD",
- "name": "type",
- "content": {
- "type": "CHOICE",
- "members": [
- {
- "type": "SYMBOL",
- "name": "type_annotation"
- },
- {
- "type": "SYMBOL",
- "name": "omitting_type_annotation"
- },
- {
- "type": "SYMBOL",
- "name": "adding_type_annotation"
- },
- {
- "type": "SYMBOL",
- "name": "opting_type_annotation"
- }
- ]
- }
- }
- ]
- },
- "array_type": {
- "type": "SEQ",
- "members": [
- {
- "type": "SYMBOL",
- "name": "primary_type"
- },
- {
- "type": "STRING",
- "value": "["
- },
- {
- "type": "STRING",
- "value": "]"
- }
- ]
- },
- "tuple_type": {
- "type": "SEQ",
- "members": [
- {
- "type": "STRING",
- "value": "["
- },
- {
- "type": "CHOICE",
- "members": [
- {
- "type": "SEQ",
- "members": [
- {
- "type": "SYMBOL",
- "name": "_tuple_type_member"
- },
- {
- "type": "REPEAT",
- "content": {
- "type": "SEQ",
- "members": [
- {
- "type": "STRING",
- "value": ","
- },
- {
- "type": "SYMBOL",
- "name": "_tuple_type_member"
- }
- ]
- }
- }
- ]
- },
- {
- "type": "BLANK"
- }
- ]
- },
- {
- "type": "CHOICE",
- "members": [
- {
- "type": "STRING",
- "value": ","
- },
- {
- "type": "BLANK"
- }
- ]
- },
- {
- "type": "STRING",
- "value": "]"
- }
- ]
- },
- "readonly_type": {
- "type": "SEQ",
- "members": [
- {
- "type": "STRING",
- "value": "readonly"
- },
- {
- "type": "SYMBOL",
- "name": "type"
- }
- ]
- },
- "union_type": {
- "type": "PREC_LEFT",
- "value": 0,
- "content": {
- "type": "SEQ",
- "members": [
- {
- "type": "CHOICE",
- "members": [
- {
- "type": "SYMBOL",
- "name": "type"
- },
- {
- "type": "BLANK"
- }
- ]
- },
- {
- "type": "STRING",
- "value": "|"
- },
- {
- "type": "SYMBOL",
- "name": "type"
- }
- ]
- }
- },
- "intersection_type": {
- "type": "PREC_LEFT",
- "value": 0,
- "content": {
- "type": "SEQ",
- "members": [
- {
- "type": "CHOICE",
- "members": [
- {
- "type": "SYMBOL",
- "name": "type"
- },
- {
- "type": "BLANK"
- }
- ]
- },
- {
- "type": "STRING",
- "value": "&"
- },
- {
- "type": "SYMBOL",
- "name": "type"
- }
- ]
- }
- },
- "function_type": {
- "type": "PREC_LEFT",
- "value": 0,
- "content": {
- "type": "SEQ",
- "members": [
- {
- "type": "FIELD",
- "name": "type_parameters",
- "content": {
- "type": "CHOICE",
- "members": [
- {
- "type": "SYMBOL",
- "name": "type_parameters"
- },
- {
- "type": "BLANK"
- }
- ]
- }
- },
- {
- "type": "FIELD",
- "name": "parameters",
- "content": {
- "type": "SYMBOL",
- "name": "formal_parameters"
- }
- },
- {
- "type": "STRING",
- "value": "=>"
- },
- {
- "type": "FIELD",
- "name": "return_type",
- "content": {
- "type": "CHOICE",
- "members": [
- {
- "type": "SYMBOL",
- "name": "type"
- },
- {
- "type": "SYMBOL",
- "name": "asserts"
- },
- {
- "type": "SYMBOL",
- "name": "type_predicate"
- }
- ]
- }
- }
- ]
- }
- },
- "_type_identifier": {
- "type": "ALIAS",
- "content": {
- "type": "SYMBOL",
- "name": "identifier"
- },
- "named": true,
- "value": "type_identifier"
- }
- },
- "extras": [
- {
- "type": "SYMBOL",
- "name": "comment"
- },
- {
- "type": "SYMBOL",
- "name": "html_comment"
- },
- {
- "type": "PATTERN",
- "value": "[\\s\\p{Zs}\\uFEFF\\u2028\\u2029\\u2060\\u200B]"
- }
- ],
- "conflicts": [
- [
- "primary_expression",
- "_property_name"
- ],
- [
- "primary_expression",
- "_property_name",
- "arrow_function"
- ],
- [
- "primary_expression",
- "arrow_function"
- ],
- [
- "primary_expression",
- "method_definition"
- ],
- [
- "primary_expression",
- "rest_pattern"
- ],
- [
- "primary_expression",
- "pattern"
- ],
- [
- "primary_expression",
- "_for_header"
- ],
- [
- "array",
- "array_pattern"
- ],
- [
- "object",
- "object_pattern"
- ],
- [
- "assignment_expression",
- "pattern"
- ],
- [
- "assignment_expression",
- "object_assignment_pattern"
- ],
- [
- "labeled_statement",
- "_property_name"
- ],
- [
- "computed_property_name",
- "array"
- ],
- [
- "binary_expression",
- "_initializer"
- ],
- [
- "class_static_block",
- "_property_name"
- ],
- [
- "call_expression",
- "instantiation_expression",
- "binary_expression"
- ],
- [
- "call_expression",
- "instantiation_expression",
- "binary_expression",
- "unary_expression"
- ],
- [
- "call_expression",
- "instantiation_expression",
- "binary_expression",
- "update_expression"
- ],
- [
- "call_expression",
- "instantiation_expression",
- "binary_expression",
- "await_expression"
- ],
- [
- "class"
- ],
- [
- "nested_identifier",
- "nested_type_identifier",
- "primary_expression"
- ],
- [
- "nested_identifier",
- "nested_type_identifier"
- ],
- [
- "_call_signature",
- "function_type"
- ],
- [
- "_call_signature",
- "constructor_type"
- ],
- [
- "primary_expression",
- "_parameter_name"
- ],
- [
- "primary_expression",
- "_parameter_name",
- "primary_type"
- ],
- [
- "primary_expression",
- "literal_type"
- ],
- [
- "primary_expression",
- "literal_type",
- "rest_pattern"
- ],
- [
- "primary_expression",
- "predefined_type",
- "rest_pattern"
- ],
- [
- "primary_expression",
- "primary_type"
- ],
- [
- "primary_expression",
- "generic_type"
- ],
- [
- "primary_expression",
- "predefined_type"
- ],
- [
- "primary_expression",
- "pattern",
- "primary_type"
- ],
- [
- "_parameter_name",
- "primary_type"
- ],
- [
- "pattern",
- "primary_type"
- ],
- [
- "optional_tuple_parameter",
- "primary_type"
- ],
- [
- "rest_pattern",
- "primary_type",
- "primary_expression"
- ],
- [
- "object",
- "object_type"
- ],
- [
- "object",
- "object_pattern",
- "object_type"
- ],
- [
- "object",
- "object_pattern",
- "_property_name"
- ],
- [
- "object_pattern",
- "object_type"
- ],
- [
- "object_pattern",
- "object_type"
- ],
- [
- "array",
- "tuple_type"
- ],
- [
- "array",
- "array_pattern",
- "tuple_type"
- ],
- [
- "array_pattern",
- "tuple_type"
- ],
- [
- "template_literal_type",
- "template_string"
- ],
- [
- "glimmer_template",
- "primary_type",
- "type_parameter",
- "glimmer_template"
- ]
- ],
- "precedences": [
- [
- {
- "type": "STRING",
- "value": "member"
- },
- {
- "type": "STRING",
- "value": "call"
- },
- {
- "type": "SYMBOL",
- "name": "update_expression"
- },
- {
- "type": "STRING",
- "value": "unary_void"
- },
- {
- "type": "STRING",
- "value": "binary_exp"
- },
- {
- "type": "STRING",
- "value": "binary_times"
- },
- {
- "type": "STRING",
- "value": "binary_plus"
- },
- {
- "type": "STRING",
- "value": "binary_shift"
- },
- {
- "type": "STRING",
- "value": "binary_compare"
- },
- {
- "type": "STRING",
- "value": "binary_relation"
- },
- {
- "type": "STRING",
- "value": "binary_equality"
- },
- {
- "type": "STRING",
- "value": "bitwise_and"
- },
- {
- "type": "STRING",
- "value": "bitwise_xor"
- },
- {
- "type": "STRING",
- "value": "bitwise_or"
- },
- {
- "type": "STRING",
- "value": "logical_and"
- },
- {
- "type": "STRING",
- "value": "logical_or"
- },
- {
- "type": "STRING",
- "value": "ternary"
- },
- {
- "type": "SYMBOL",
- "name": "sequence_expression"
- },
- {
- "type": "SYMBOL",
- "name": "arrow_function"
- }
- ],
- [
- {
- "type": "STRING",
- "value": "assign"
- },
- {
- "type": "SYMBOL",
- "name": "primary_expression"
- }
- ],
- [
- {
- "type": "STRING",
- "value": "member"
- },
- {
- "type": "STRING",
- "value": "new"
- },
- {
- "type": "STRING",
- "value": "call"
- },
- {
- "type": "SYMBOL",
- "name": "expression"
- }
- ],
- [
- {
- "type": "STRING",
- "value": "declaration"
- },
- {
- "type": "STRING",
- "value": "literal"
- }
- ],
- [
- {
- "type": "SYMBOL",
- "name": "primary_expression"
- },
- {
- "type": "SYMBOL",
- "name": "statement_block"
- },
- {
- "type": "STRING",
- "value": "object"
- }
- ],
- [
- {
- "type": "SYMBOL",
- "name": "import_statement"
- },
- {
- "type": "SYMBOL",
- "name": "import"
- }
- ],
- [
- {
- "type": "SYMBOL",
- "name": "export_statement"
- },
- {
- "type": "SYMBOL",
- "name": "primary_expression"
- }
- ],
- [
- {
- "type": "SYMBOL",
- "name": "lexical_declaration"
- },
- {
- "type": "SYMBOL",
- "name": "primary_expression"
- }
- ],
- [
- {
- "type": "STRING",
- "value": "call"
- },
- {
- "type": "STRING",
- "value": "instantiation"
- },
- {
- "type": "STRING",
- "value": "unary"
- },
- {
- "type": "STRING",
- "value": "binary"
- },
- {
- "type": "SYMBOL",
- "name": "await_expression"
- },
- {
- "type": "SYMBOL",
- "name": "arrow_function"
- }
- ],
- [
- {
- "type": "STRING",
- "value": "extends"
- },
- {
- "type": "STRING",
- "value": "instantiation"
- }
- ],
- [
- {
- "type": "SYMBOL",
- "name": "intersection_type"
- },
- {
- "type": "SYMBOL",
- "name": "union_type"
- },
- {
- "type": "SYMBOL",
- "name": "conditional_type"
- },
- {
- "type": "SYMBOL",
- "name": "function_type"
- },
- {
- "type": "STRING",
- "value": "binary"
- },
- {
- "type": "SYMBOL",
- "name": "type_predicate"
- },
- {
- "type": "SYMBOL",
- "name": "readonly_type"
- }
- ],
- [
- {
- "type": "SYMBOL",
- "name": "mapped_type_clause"
- },
- {
- "type": "SYMBOL",
- "name": "primary_expression"
- }
- ],
- [
- {
- "type": "SYMBOL",
- "name": "accessibility_modifier"
- },
- {
- "type": "SYMBOL",
- "name": "primary_expression"
- }
- ],
- [
- {
- "type": "STRING",
- "value": "unary_void"
- },
- {
- "type": "SYMBOL",
- "name": "expression"
- }
- ],
- [
- {
- "type": "SYMBOL",
- "name": "extends_clause"
- },
- {
- "type": "SYMBOL",
- "name": "primary_expression"
- }
- ],
- [
- {
- "type": "STRING",
- "value": "unary"
- },
- {
- "type": "STRING",
- "value": "assign"
- }
- ],
- [
- {
- "type": "STRING",
- "value": "declaration"
- },
- {
- "type": "SYMBOL",
- "name": "expression"
- }
- ],
- [
- {
- "type": "SYMBOL",
- "name": "predefined_type"
- },
- {
- "type": "SYMBOL",
- "name": "unary_expression"
- }
- ],
- [
- {
- "type": "SYMBOL",
- "name": "type"
- },
- {
- "type": "SYMBOL",
- "name": "flow_maybe_type"
- }
- ],
- [
- {
- "type": "SYMBOL",
- "name": "tuple_type"
- },
- {
- "type": "SYMBOL",
- "name": "array_type"
- },
- {
- "type": "SYMBOL",
- "name": "pattern"
- },
- {
- "type": "SYMBOL",
- "name": "type"
- }
- ],
- [
- {
- "type": "SYMBOL",
- "name": "readonly_type"
- },
- {
- "type": "SYMBOL",
- "name": "pattern"
- }
- ],
- [
- {
- "type": "SYMBOL",
- "name": "readonly_type"
- },
- {
- "type": "SYMBOL",
- "name": "primary_expression"
- }
- ],
- [
- {
- "type": "SYMBOL",
- "name": "type_query"
- },
- {
- "type": "SYMBOL",
- "name": "subscript_expression"
- },
- {
- "type": "SYMBOL",
- "name": "expression"
- }
- ],
- [
- {
- "type": "SYMBOL",
- "name": "type_query"
- },
- {
- "type": "SYMBOL",
- "name": "_type_query_subscript_expression"
- }
- ],
- [
- {
- "type": "SYMBOL",
- "name": "nested_type_identifier"
- },
- {
- "type": "SYMBOL",
- "name": "generic_type"
- },
- {
- "type": "SYMBOL",
- "name": "primary_type"
- },
- {
- "type": "SYMBOL",
- "name": "lookup_type"
- },
- {
- "type": "SYMBOL",
- "name": "index_type_query"
- },
- {
- "type": "SYMBOL",
- "name": "type"
- }
- ],
- [
- {
- "type": "SYMBOL",
- "name": "as_expression"
- },
- {
- "type": "SYMBOL",
- "name": "satisfies_expression"
- },
- {
- "type": "SYMBOL",
- "name": "primary_type"
- }
- ],
- [
- {
- "type": "SYMBOL",
- "name": "_type_query_member_expression"
- },
- {
- "type": "SYMBOL",
- "name": "member_expression"
- }
- ],
- [
- {
- "type": "SYMBOL",
- "name": "member_expression"
- },
- {
- "type": "SYMBOL",
- "name": "_type_query_member_expression_in_type_annotation"
- }
- ],
- [
- {
- "type": "SYMBOL",
- "name": "_type_query_member_expression"
- },
- {
- "type": "SYMBOL",
- "name": "primary_expression"
- }
- ],
- [
- {
- "type": "SYMBOL",
- "name": "_type_query_subscript_expression"
- },
- {
- "type": "SYMBOL",
- "name": "subscript_expression"
- }
- ],
- [
- {
- "type": "SYMBOL",
- "name": "_type_query_subscript_expression"
- },
- {
- "type": "SYMBOL",
- "name": "primary_expression"
- }
- ],
- [
- {
- "type": "SYMBOL",
- "name": "_type_query_call_expression"
- },
- {
- "type": "SYMBOL",
- "name": "primary_expression"
- }
- ],
- [
- {
- "type": "SYMBOL",
- "name": "_type_query_instantiation_expression"
- },
- {
- "type": "SYMBOL",
- "name": "primary_expression"
- }
- ],
- [
- {
- "type": "SYMBOL",
- "name": "type_query"
- },
- {
- "type": "SYMBOL",
- "name": "primary_expression"
- }
- ],
- [
- {
- "type": "SYMBOL",
- "name": "override_modifier"
- },
- {
- "type": "SYMBOL",
- "name": "primary_expression"
- }
- ],
- [
- {
- "type": "SYMBOL",
- "name": "decorator_call_expression"
- },
- {
- "type": "SYMBOL",
- "name": "decorator"
- }
- ],
- [
- {
- "type": "SYMBOL",
- "name": "literal_type"
- },
- {
- "type": "SYMBOL",
- "name": "pattern"
- }
- ],
- [
- {
- "type": "SYMBOL",
- "name": "predefined_type"
- },
- {
- "type": "SYMBOL",
- "name": "pattern"
- }
- ],
- [
- {
- "type": "SYMBOL",
- "name": "call_expression"
- },
- {
- "type": "SYMBOL",
- "name": "_type_query_call_expression"
- }
- ],
- [
- {
- "type": "SYMBOL",
- "name": "call_expression"
- },
- {
- "type": "SYMBOL",
- "name": "_type_query_call_expression_in_type_annotation"
- }
- ],
- [
- {
- "type": "SYMBOL",
- "name": "new_expression"
- },
- {
- "type": "SYMBOL",
- "name": "primary_expression"
- }
- ],
- [
- {
- "type": "SYMBOL",
- "name": "meta_property"
- },
- {
- "type": "SYMBOL",
- "name": "primary_expression"
- }
- ],
- [
- {
- "type": "SYMBOL",
- "name": "construct_signature"
- },
- {
- "type": "SYMBOL",
- "name": "_property_name"
- }
- ]
- ],
- "externals": [
- {
- "type": "SYMBOL",
- "name": "_automatic_semicolon"
- },
- {
- "type": "SYMBOL",
- "name": "_template_chars"
- },
- {
- "type": "SYMBOL",
- "name": "_ternary_qmark"
- },
- {
- "type": "SYMBOL",
- "name": "html_comment"
- },
- {
- "type": "STRING",
- "value": "||"
- },
- {
- "type": "SYMBOL",
- "name": "escape_sequence"
- },
- {
- "type": "SYMBOL",
- "name": "regex_pattern"
- },
- {
- "type": "SYMBOL",
- "name": "_function_signature_automatic_semicolon"
- },
- {
- "type": "SYMBOL",
- "name": "__error_recovery"
- }
- ],
- "inline": [
- "_expressions",
- "_semicolon",
- "_identifier",
- "_reserved_identifier",
- "_jsx_attribute",
- "_jsx_element_name",
- "_jsx_child",
- "_jsx_element",
- "_jsx_attribute_name",
- "_jsx_attribute_value",
- "_jsx_identifier",
- "_lhs_expression",
- "_type_identifier",
- "_jsx_start_opening_element"
- ],
- "supertypes": [
- "statement",
- "declaration",
- "expression",
- "primary_expression",
- "pattern",
- "type",
- "primary_type"
- ]
-}
diff --git a/gts/src/node-types.json b/gts/src/node-types.json
deleted file mode 100644
index 30a9bc38..00000000
--- a/gts/src/node-types.json
+++ /dev/null
@@ -1,6310 +0,0 @@
-[
- {
- "type": "declaration",
- "named": true,
- "subtypes": [
- {
- "type": "abstract_class_declaration",
- "named": true
- },
- {
- "type": "ambient_declaration",
- "named": true
- },
- {
- "type": "class_declaration",
- "named": true
- },
- {
- "type": "enum_declaration",
- "named": true
- },
- {
- "type": "function_declaration",
- "named": true
- },
- {
- "type": "function_signature",
- "named": true
- },
- {
- "type": "generator_function_declaration",
- "named": true
- },
- {
- "type": "import_alias",
- "named": true
- },
- {
- "type": "interface_declaration",
- "named": true
- },
- {
- "type": "internal_module",
- "named": true
- },
- {
- "type": "lexical_declaration",
- "named": true
- },
- {
- "type": "module",
- "named": true
- },
- {
- "type": "type_alias_declaration",
- "named": true
- },
- {
- "type": "variable_declaration",
- "named": true
- }
- ]
- },
- {
- "type": "expression",
- "named": true,
- "subtypes": [
- {
- "type": "as_expression",
- "named": true
- },
- {
- "type": "assignment_expression",
- "named": true
- },
- {
- "type": "augmented_assignment_expression",
- "named": true
- },
- {
- "type": "await_expression",
- "named": true
- },
- {
- "type": "binary_expression",
- "named": true
- },
- {
- "type": "glimmer_template",
- "named": true
- },
- {
- "type": "instantiation_expression",
- "named": true
- },
- {
- "type": "internal_module",
- "named": true
- },
- {
- "type": "jsx_element",
- "named": true
- },
- {
- "type": "jsx_self_closing_element",
- "named": true
- },
- {
- "type": "new_expression",
- "named": true
- },
- {
- "type": "primary_expression",
- "named": true
- },
- {
- "type": "satisfies_expression",
- "named": true
- },
- {
- "type": "ternary_expression",
- "named": true
- },
- {
- "type": "unary_expression",
- "named": true
- },
- {
- "type": "update_expression",
- "named": true
- },
- {
- "type": "yield_expression",
- "named": true
- }
- ]
- },
- {
- "type": "pattern",
- "named": true,
- "subtypes": [
- {
- "type": "array_pattern",
- "named": true
- },
- {
- "type": "identifier",
- "named": true
- },
- {
- "type": "member_expression",
- "named": true
- },
- {
- "type": "non_null_expression",
- "named": true
- },
- {
- "type": "object_pattern",
- "named": true
- },
- {
- "type": "rest_pattern",
- "named": true
- },
- {
- "type": "subscript_expression",
- "named": true
- },
- {
- "type": "undefined",
- "named": true
- }
- ]
- },
- {
- "type": "primary_expression",
- "named": true,
- "subtypes": [
- {
- "type": "array",
- "named": true
- },
- {
- "type": "arrow_function",
- "named": true
- },
- {
- "type": "call_expression",
- "named": true
- },
- {
- "type": "class",
- "named": true
- },
- {
- "type": "false",
- "named": true
- },
- {
- "type": "function_expression",
- "named": true
- },
- {
- "type": "generator_function",
- "named": true
- },
- {
- "type": "identifier",
- "named": true
- },
- {
- "type": "member_expression",
- "named": true
- },
- {
- "type": "meta_property",
- "named": true
- },
- {
- "type": "non_null_expression",
- "named": true
- },
- {
- "type": "null",
- "named": true
- },
- {
- "type": "number",
- "named": true
- },
- {
- "type": "object",
- "named": true
- },
- {
- "type": "parenthesized_expression",
- "named": true
- },
- {
- "type": "regex",
- "named": true
- },
- {
- "type": "string",
- "named": true
- },
- {
- "type": "subscript_expression",
- "named": true
- },
- {
- "type": "super",
- "named": true
- },
- {
- "type": "template_string",
- "named": true
- },
- {
- "type": "this",
- "named": true
- },
- {
- "type": "true",
- "named": true
- },
- {
- "type": "undefined",
- "named": true
- }
- ]
- },
- {
- "type": "primary_type",
- "named": true,
- "subtypes": [
- {
- "type": "array_type",
- "named": true
- },
- {
- "type": "conditional_type",
- "named": true
- },
- {
- "type": "const",
- "named": false
- },
- {
- "type": "existential_type",
- "named": true
- },
- {
- "type": "flow_maybe_type",
- "named": true
- },
- {
- "type": "generic_type",
- "named": true
- },
- {
- "type": "index_type_query",
- "named": true
- },
- {
- "type": "intersection_type",
- "named": true
- },
- {
- "type": "literal_type",
- "named": true
- },
- {
- "type": "lookup_type",
- "named": true
- },
- {
- "type": "nested_type_identifier",
- "named": true
- },
- {
- "type": "object_type",
- "named": true
- },
- {
- "type": "parenthesized_type",
- "named": true
- },
- {
- "type": "predefined_type",
- "named": true
- },
- {
- "type": "template_literal_type",
- "named": true
- },
- {
- "type": "this_type",
- "named": true
- },
- {
- "type": "tuple_type",
- "named": true
- },
- {
- "type": "type_identifier",
- "named": true
- },
- {
- "type": "type_query",
- "named": true
- },
- {
- "type": "union_type",
- "named": true
- }
- ]
- },
- {
- "type": "statement",
- "named": true,
- "subtypes": [
- {
- "type": "break_statement",
- "named": true
- },
- {
- "type": "continue_statement",
- "named": true
- },
- {
- "type": "debugger_statement",
- "named": true
- },
- {
- "type": "declaration",
- "named": true
- },
- {
- "type": "do_statement",
- "named": true
- },
- {
- "type": "empty_statement",
- "named": true
- },
- {
- "type": "export_statement",
- "named": true
- },
- {
- "type": "expression_statement",
- "named": true
- },
- {
- "type": "for_in_statement",
- "named": true
- },
- {
- "type": "for_statement",
- "named": true
- },
- {
- "type": "if_statement",
- "named": true
- },
- {
- "type": "import_statement",
- "named": true
- },
- {
- "type": "labeled_statement",
- "named": true
- },
- {
- "type": "return_statement",
- "named": true
- },
- {
- "type": "statement_block",
- "named": true
- },
- {
- "type": "switch_statement",
- "named": true
- },
- {
- "type": "throw_statement",
- "named": true
- },
- {
- "type": "try_statement",
- "named": true
- },
- {
- "type": "while_statement",
- "named": true
- },
- {
- "type": "with_statement",
- "named": true
- }
- ]
- },
- {
- "type": "type",
- "named": true,
- "subtypes": [
- {
- "type": "call_expression",
- "named": true
- },
- {
- "type": "constructor_type",
- "named": true
- },
- {
- "type": "function_type",
- "named": true
- },
- {
- "type": "infer_type",
- "named": true
- },
- {
- "type": "member_expression",
- "named": true
- },
- {
- "type": "primary_type",
- "named": true
- },
- {
- "type": "readonly_type",
- "named": true
- }
- ]
- },
- {
- "type": "abstract_class_declaration",
- "named": true,
- "fields": {
- "body": {
- "multiple": false,
- "required": true,
- "types": [
- {
- "type": "class_body",
- "named": true
- }
- ]
- },
- "decorator": {
- "multiple": true,
- "required": false,
- "types": [
- {
- "type": "decorator",
- "named": true
- }
- ]
- },
- "name": {
- "multiple": false,
- "required": true,
- "types": [
- {
- "type": "type_identifier",
- "named": true
- }
- ]
- },
- "type_parameters": {
- "multiple": false,
- "required": false,
- "types": [
- {
- "type": "type_parameters",
- "named": true
- }
- ]
- }
- },
- "children": {
- "multiple": false,
- "required": false,
- "types": [
- {
- "type": "class_heritage",
- "named": true
- }
- ]
- }
- },
- {
- "type": "abstract_method_signature",
- "named": true,
- "fields": {
- "name": {
- "multiple": false,
- "required": true,
- "types": [
- {
- "type": "computed_property_name",
- "named": true
- },
- {
- "type": "number",
- "named": true
- },
- {
- "type": "private_property_identifier",
- "named": true
- },
- {
- "type": "property_identifier",
- "named": true
- },
- {
- "type": "string",
- "named": true
- }
- ]
- },
- "parameters": {
- "multiple": false,
- "required": true,
- "types": [
- {
- "type": "formal_parameters",
- "named": true
- }
- ]
- },
- "return_type": {
- "multiple": false,
- "required": false,
- "types": [
- {
- "type": "asserts_annotation",
- "named": true
- },
- {
- "type": "type_annotation",
- "named": true
- },
- {
- "type": "type_predicate_annotation",
- "named": true
- }
- ]
- },
- "type_parameters": {
- "multiple": false,
- "required": false,
- "types": [
- {
- "type": "type_parameters",
- "named": true
- }
- ]
- }
- },
- "children": {
- "multiple": true,
- "required": false,
- "types": [
- {
- "type": "accessibility_modifier",
- "named": true
- },
- {
- "type": "override_modifier",
- "named": true
- }
- ]
- }
- },
- {
- "type": "accessibility_modifier",
- "named": true,
- "fields": {}
- },
- {
- "type": "adding_type_annotation",
- "named": true,
- "fields": {},
- "children": {
- "multiple": false,
- "required": true,
- "types": [
- {
- "type": "type",
- "named": true
- }
- ]
- }
- },
- {
- "type": "ambient_declaration",
- "named": true,
- "fields": {},
- "children": {
- "multiple": true,
- "required": true,
- "types": [
- {
- "type": "declaration",
- "named": true
- },
- {
- "type": "property_identifier",
- "named": true
- },
- {
- "type": "statement_block",
- "named": true
- },
- {
- "type": "type",
- "named": true
- }
- ]
- }
- },
- {
- "type": "arguments",
- "named": true,
- "fields": {},
- "children": {
- "multiple": true,
- "required": false,
- "types": [
- {
- "type": "expression",
- "named": true
- },
- {
- "type": "spread_element",
- "named": true
- }
- ]
- }
- },
- {
- "type": "array",
- "named": true,
- "fields": {},
- "children": {
- "multiple": true,
- "required": false,
- "types": [
- {
- "type": "expression",
- "named": true
- },
- {
- "type": "spread_element",
- "named": true
- }
- ]
- }
- },
- {
- "type": "array_pattern",
- "named": true,
- "fields": {},
- "children": {
- "multiple": true,
- "required": false,
- "types": [
- {
- "type": "assignment_pattern",
- "named": true
- },
- {
- "type": "pattern",
- "named": true
- }
- ]
- }
- },
- {
- "type": "array_type",
- "named": true,
- "fields": {},
- "children": {
- "multiple": false,
- "required": true,
- "types": [
- {
- "type": "primary_type",
- "named": true
- }
- ]
- }
- },
- {
- "type": "arrow_function",
- "named": true,
- "fields": {
- "body": {
- "multiple": false,
- "required": true,
- "types": [
- {
- "type": "expression",
- "named": true
- },
- {
- "type": "statement_block",
- "named": true
- }
- ]
- },
- "parameter": {
- "multiple": false,
- "required": false,
- "types": [
- {
- "type": "identifier",
- "named": true
- }
- ]
- },
- "parameters": {
- "multiple": false,
- "required": false,
- "types": [
- {
- "type": "formal_parameters",
- "named": true
- }
- ]
- },
- "return_type": {
- "multiple": false,
- "required": false,
- "types": [
- {
- "type": "asserts_annotation",
- "named": true
- },
- {
- "type": "type_annotation",
- "named": true
- },
- {
- "type": "type_predicate_annotation",
- "named": true
- }
- ]
- },
- "type_parameters": {
- "multiple": false,
- "required": false,
- "types": [
- {
- "type": "type_parameters",
- "named": true
- }
- ]
- }
- }
- },
- {
- "type": "as_expression",
- "named": true,
- "fields": {},
- "children": {
- "multiple": true,
- "required": true,
- "types": [
- {
- "type": "expression",
- "named": true
- },
- {
- "type": "type",
- "named": true
- }
- ]
- }
- },
- {
- "type": "asserts",
- "named": true,
- "fields": {},
- "children": {
- "multiple": false,
- "required": true,
- "types": [
- {
- "type": "identifier",
- "named": true
- },
- {
- "type": "this",
- "named": true
- },
- {
- "type": "type_predicate",
- "named": true
- }
- ]
- }
- },
- {
- "type": "asserts_annotation",
- "named": true,
- "fields": {},
- "children": {
- "multiple": false,
- "required": true,
- "types": [
- {
- "type": "asserts",
- "named": true
- }
- ]
- }
- },
- {
- "type": "assignment_expression",
- "named": true,
- "fields": {
- "left": {
- "multiple": false,
- "required": true,
- "types": [
- {
- "type": "array_pattern",
- "named": true
- },
- {
- "type": "identifier",
- "named": true
- },
- {
- "type": "member_expression",
- "named": true
- },
- {
- "type": "non_null_expression",
- "named": true
- },
- {
- "type": "object_pattern",
- "named": true
- },
- {
- "type": "parenthesized_expression",
- "named": true
- },
- {
- "type": "subscript_expression",
- "named": true
- },
- {
- "type": "undefined",
- "named": true
- }
- ]
- },
- "right": {
- "multiple": false,
- "required": true,
- "types": [
- {
- "type": "expression",
- "named": true
- }
- ]
- }
- }
- },
- {
- "type": "assignment_pattern",
- "named": true,
- "fields": {
- "left": {
- "multiple": false,
- "required": true,
- "types": [
- {
- "type": "pattern",
- "named": true
- }
- ]
- },
- "right": {
- "multiple": false,
- "required": true,
- "types": [
- {
- "type": "expression",
- "named": true
- }
- ]
- }
- }
- },
- {
- "type": "augmented_assignment_expression",
- "named": true,
- "fields": {
- "left": {
- "multiple": false,
- "required": true,
- "types": [
- {
- "type": "identifier",
- "named": true
- },
- {
- "type": "member_expression",
- "named": true
- },
- {
- "type": "non_null_expression",
- "named": true
- },
- {
- "type": "parenthesized_expression",
- "named": true
- },
- {
- "type": "subscript_expression",
- "named": true
- }
- ]
- },
- "operator": {
- "multiple": false,
- "required": true,
- "types": [
- {
- "type": "%=",
- "named": false
- },
- {
- "type": "&&=",
- "named": false
- },
- {
- "type": "&=",
- "named": false
- },
- {
- "type": "**=",
- "named": false
- },
- {
- "type": "*=",
- "named": false
- },
- {
- "type": "+=",
- "named": false
- },
- {
- "type": "-=",
- "named": false
- },
- {
- "type": "/=",
- "named": false
- },
- {
- "type": "<<=",
- "named": false
- },
- {
- "type": ">>=",
- "named": false
- },
- {
- "type": ">>>=",
- "named": false
- },
- {
- "type": "??=",
- "named": false
- },
- {
- "type": "^=",
- "named": false
- },
- {
- "type": "|=",
- "named": false
- },
- {
- "type": "||=",
- "named": false
- }
- ]
- },
- "right": {
- "multiple": false,
- "required": true,
- "types": [
- {
- "type": "expression",
- "named": true
- }
- ]
- }
- }
- },
- {
- "type": "await_expression",
- "named": true,
- "fields": {},
- "children": {
- "multiple": false,
- "required": true,
- "types": [
- {
- "type": "expression",
- "named": true
- }
- ]
- }
- },
- {
- "type": "binary_expression",
- "named": true,
- "fields": {
- "left": {
- "multiple": false,
- "required": true,
- "types": [
- {
- "type": "expression",
- "named": true
- },
- {
- "type": "private_property_identifier",
- "named": true
- }
- ]
- },
- "operator": {
- "multiple": false,
- "required": true,
- "types": [
- {
- "type": "!=",
- "named": false
- },
- {
- "type": "!==",
- "named": false
- },
- {
- "type": "%",
- "named": false
- },
- {
- "type": "&",
- "named": false
- },
- {
- "type": "&&",
- "named": false
- },
- {
- "type": "*",
- "named": false
- },
- {
- "type": "**",
- "named": false
- },
- {
- "type": "+",
- "named": false
- },
- {
- "type": "-",
- "named": false
- },
- {
- "type": "/",
- "named": false
- },
- {
- "type": "<",
- "named": false
- },
- {
- "type": "<<",
- "named": false
- },
- {
- "type": "<=",
- "named": false
- },
- {
- "type": "==",
- "named": false
- },
- {
- "type": "===",
- "named": false
- },
- {
- "type": ">",
- "named": false
- },
- {
- "type": ">=",
- "named": false
- },
- {
- "type": ">>",
- "named": false
- },
- {
- "type": ">>>",
- "named": false
- },
- {
- "type": "??",
- "named": false
- },
- {
- "type": "^",
- "named": false
- },
- {
- "type": "in",
- "named": false
- },
- {
- "type": "instanceof",
- "named": false
- },
- {
- "type": "|",
- "named": false
- },
- {
- "type": "||",
- "named": false
- }
- ]
- },
- "right": {
- "multiple": false,
- "required": true,
- "types": [
- {
- "type": "expression",
- "named": true
- }
- ]
- }
- }
- },
- {
- "type": "break_statement",
- "named": true,
- "fields": {
- "label": {
- "multiple": false,
- "required": false,
- "types": [
- {
- "type": "statement_identifier",
- "named": true
- }
- ]
- }
- }
- },
- {
- "type": "call_expression",
- "named": true,
- "fields": {
- "arguments": {
- "multiple": false,
- "required": true,
- "types": [
- {
- "type": "arguments",
- "named": true
- },
- {
- "type": "template_string",
- "named": true
- }
- ]
- },
- "function": {
- "multiple": false,
- "required": true,
- "types": [
- {
- "type": "expression",
- "named": true
- },
- {
- "type": "import",
- "named": true
- }
- ]
- },
- "type_arguments": {
- "multiple": false,
- "required": false,
- "types": [
- {
- "type": "type_arguments",
- "named": true
- }
- ]
- }
- }
- },
- {
- "type": "call_signature",
- "named": true,
- "fields": {
- "parameters": {
- "multiple": false,
- "required": true,
- "types": [
- {
- "type": "formal_parameters",
- "named": true
- }
- ]
- },
- "return_type": {
- "multiple": false,
- "required": false,
- "types": [
- {
- "type": "asserts_annotation",
- "named": true
- },
- {
- "type": "type_annotation",
- "named": true
- },
- {
- "type": "type_predicate_annotation",
- "named": true
- }
- ]
- },
- "type_parameters": {
- "multiple": false,
- "required": false,
- "types": [
- {
- "type": "type_parameters",
- "named": true
- }
- ]
- }
- }
- },
- {
- "type": "catch_clause",
- "named": true,
- "fields": {
- "body": {
- "multiple": false,
- "required": true,
- "types": [
- {
- "type": "statement_block",
- "named": true
- }
- ]
- },
- "parameter": {
- "multiple": false,
- "required": false,
- "types": [
- {
- "type": "array_pattern",
- "named": true
- },
- {
- "type": "identifier",
- "named": true
- },
- {
- "type": "object_pattern",
- "named": true
- }
- ]
- },
- "type": {
- "multiple": false,
- "required": false,
- "types": [
- {
- "type": "type_annotation",
- "named": true
- }
- ]
- }
- }
- },
- {
- "type": "class",
- "named": true,
- "fields": {
- "body": {
- "multiple": false,
- "required": true,
- "types": [
- {
- "type": "class_body",
- "named": true
- }
- ]
- },
- "decorator": {
- "multiple": true,
- "required": false,
- "types": [
- {
- "type": "decorator",
- "named": true
- }
- ]
- },
- "name": {
- "multiple": false,
- "required": false,
- "types": [
- {
- "type": "type_identifier",
- "named": true
- }
- ]
- },
- "type_parameters": {
- "multiple": false,
- "required": false,
- "types": [
- {
- "type": "type_parameters",
- "named": true
- }
- ]
- }
- },
- "children": {
- "multiple": false,
- "required": false,
- "types": [
- {
- "type": "class_heritage",
- "named": true
- }
- ]
- }
- },
- {
- "type": "class_body",
- "named": true,
- "fields": {
- "decorator": {
- "multiple": true,
- "required": false,
- "types": [
- {
- "type": "decorator",
- "named": true
- }
- ]
- }
- },
- "children": {
- "multiple": true,
- "required": false,
- "types": [
- {
- "type": "abstract_method_signature",
- "named": true
- },
- {
- "type": "class_static_block",
- "named": true
- },
- {
- "type": "index_signature",
- "named": true
- },
- {
- "type": "method_definition",
- "named": true
- },
- {
- "type": "method_signature",
- "named": true
- },
- {
- "type": "public_field_definition",
- "named": true
- }
- ]
- }
- },
- {
- "type": "class_declaration",
- "named": true,
- "fields": {
- "body": {
- "multiple": false,
- "required": true,
- "types": [
- {
- "type": "class_body",
- "named": true
- }
- ]
- },
- "decorator": {
- "multiple": true,
- "required": false,
- "types": [
- {
- "type": "decorator",
- "named": true
- }
- ]
- },
- "name": {
- "multiple": false,
- "required": true,
- "types": [
- {
- "type": "type_identifier",
- "named": true
- }
- ]
- },
- "type_parameters": {
- "multiple": false,
- "required": false,
- "types": [
- {
- "type": "type_parameters",
- "named": true
- }
- ]
- }
- },
- "children": {
- "multiple": false,
- "required": false,
- "types": [
- {
- "type": "class_heritage",
- "named": true
- }
- ]
- }
- },
- {
- "type": "class_heritage",
- "named": true,
- "fields": {},
- "children": {
- "multiple": true,
- "required": true,
- "types": [
- {
- "type": "extends_clause",
- "named": true
- },
- {
- "type": "implements_clause",
- "named": true
- }
- ]
- }
- },
- {
- "type": "class_static_block",
- "named": true,
- "fields": {
- "body": {
- "multiple": false,
- "required": true,
- "types": [
- {
- "type": "statement_block",
- "named": true
- }
- ]
- }
- }
- },
- {
- "type": "computed_property_name",
- "named": true,
- "fields": {},
- "children": {
- "multiple": false,
- "required": true,
- "types": [
- {
- "type": "expression",
- "named": true
- }
- ]
- }
- },
- {
- "type": "conditional_type",
- "named": true,
- "fields": {
- "alternative": {
- "multiple": false,
- "required": true,
- "types": [
- {
- "type": "type",
- "named": true
- }
- ]
- },
- "consequence": {
- "multiple": false,
- "required": true,
- "types": [
- {
- "type": "type",
- "named": true
- }
- ]
- },
- "left": {
- "multiple": false,
- "required": true,
- "types": [
- {
- "type": "type",
- "named": true
- }
- ]
- },
- "right": {
- "multiple": false,
- "required": true,
- "types": [
- {
- "type": "type",
- "named": true
- }
- ]
- }
- }
- },
- {
- "type": "constraint",
- "named": true,
- "fields": {},
- "children": {
- "multiple": false,
- "required": true,
- "types": [
- {
- "type": "type",
- "named": true
- }
- ]
- }
- },
- {
- "type": "construct_signature",
- "named": true,
- "fields": {
- "parameters": {
- "multiple": false,
- "required": true,
- "types": [
- {
- "type": "formal_parameters",
- "named": true
- }
- ]
- },
- "type": {
- "multiple": false,
- "required": false,
- "types": [
- {
- "type": "type_annotation",
- "named": true
- }
- ]
- },
- "type_parameters": {
- "multiple": false,
- "required": false,
- "types": [
- {
- "type": "type_parameters",
- "named": true
- }
- ]
- }
- }
- },
- {
- "type": "constructor_type",
- "named": true,
- "fields": {
- "parameters": {
- "multiple": false,
- "required": true,
- "types": [
- {
- "type": "formal_parameters",
- "named": true
- }
- ]
- },
- "type": {
- "multiple": false,
- "required": true,
- "types": [
- {
- "type": "type",
- "named": true
- }
- ]
- },
- "type_parameters": {
- "multiple": false,
- "required": false,
- "types": [
- {
- "type": "type_parameters",
- "named": true
- }
- ]
- }
- }
- },
- {
- "type": "continue_statement",
- "named": true,
- "fields": {
- "label": {
- "multiple": false,
- "required": false,
- "types": [
- {
- "type": "statement_identifier",
- "named": true
- }
- ]
- }
- }
- },
- {
- "type": "debugger_statement",
- "named": true,
- "fields": {}
- },
- {
- "type": "decorator",
- "named": true,
- "fields": {},
- "children": {
- "multiple": false,
- "required": true,
- "types": [
- {
- "type": "call_expression",
- "named": true
- },
- {
- "type": "identifier",
- "named": true
- },
- {
- "type": "member_expression",
- "named": true
- },
- {
- "type": "parenthesized_expression",
- "named": true
- }
- ]
- }
- },
- {
- "type": "default_type",
- "named": true,
- "fields": {},
- "children": {
- "multiple": false,
- "required": true,
- "types": [
- {
- "type": "type",
- "named": true
- }
- ]
- }
- },
- {
- "type": "do_statement",
- "named": true,
- "fields": {
- "body": {
- "multiple": false,
- "required": true,
- "types": [
- {
- "type": "statement",
- "named": true
- }
- ]
- },
- "condition": {
- "multiple": false,
- "required": true,
- "types": [
- {
- "type": "parenthesized_expression",
- "named": true
- }
- ]
- }
- }
- },
- {
- "type": "else_clause",
- "named": true,
- "fields": {},
- "children": {
- "multiple": false,
- "required": true,
- "types": [
- {
- "type": "statement",
- "named": true
- }
- ]
- }
- },
- {
- "type": "empty_statement",
- "named": true,
- "fields": {}
- },
- {
- "type": "enum_assignment",
- "named": true,
- "fields": {
- "name": {
- "multiple": false,
- "required": true,
- "types": [
- {
- "type": "computed_property_name",
- "named": true
- },
- {
- "type": "number",
- "named": true
- },
- {
- "type": "private_property_identifier",
- "named": true
- },
- {
- "type": "property_identifier",
- "named": true
- },
- {
- "type": "string",
- "named": true
- }
- ]
- },
- "value": {
- "multiple": false,
- "required": true,
- "types": [
- {
- "type": "expression",
- "named": true
- }
- ]
- }
- }
- },
- {
- "type": "enum_body",
- "named": true,
- "fields": {
- "name": {
- "multiple": true,
- "required": false,
- "types": [
- {
- "type": "computed_property_name",
- "named": true
- },
- {
- "type": "number",
- "named": true
- },
- {
- "type": "private_property_identifier",
- "named": true
- },
- {
- "type": "property_identifier",
- "named": true
- },
- {
- "type": "string",
- "named": true
- }
- ]
- }
- },
- "children": {
- "multiple": true,
- "required": false,
- "types": [
- {
- "type": "enum_assignment",
- "named": true
- }
- ]
- }
- },
- {
- "type": "enum_declaration",
- "named": true,
- "fields": {
- "body": {
- "multiple": false,
- "required": true,
- "types": [
- {
- "type": "enum_body",
- "named": true
- }
- ]
- },
- "name": {
- "multiple": false,
- "required": true,
- "types": [
- {
- "type": "identifier",
- "named": true
- }
- ]
- }
- }
- },
- {
- "type": "existential_type",
- "named": true,
- "fields": {}
- },
- {
- "type": "export_clause",
- "named": true,
- "fields": {},
- "children": {
- "multiple": true,
- "required": false,
- "types": [
- {
- "type": "export_specifier",
- "named": true
- }
- ]
- }
- },
- {
- "type": "export_specifier",
- "named": true,
- "fields": {
- "alias": {
- "multiple": false,
- "required": false,
- "types": [
- {
- "type": "identifier",
- "named": true
- },
- {
- "type": "string",
- "named": true
- }
- ]
- },
- "name": {
- "multiple": false,
- "required": true,
- "types": [
- {
- "type": "identifier",
- "named": true
- },
- {
- "type": "string",
- "named": true
- }
- ]
- }
- }
- },
- {
- "type": "export_statement",
- "named": true,
- "fields": {
- "declaration": {
- "multiple": false,
- "required": false,
- "types": [
- {
- "type": "declaration",
- "named": true
- }
- ]
- },
- "decorator": {
- "multiple": true,
- "required": false,
- "types": [
- {
- "type": "decorator",
- "named": true
- }
- ]
- },
- "source": {
- "multiple": false,
- "required": false,
- "types": [
- {
- "type": "string",
- "named": true
- }
- ]
- },
- "value": {
- "multiple": false,
- "required": false,
- "types": [
- {
- "type": "expression",
- "named": true
- }
- ]
- }
- },
- "children": {
- "multiple": false,
- "required": false,
- "types": [
- {
- "type": "export_clause",
- "named": true
- },
- {
- "type": "expression",
- "named": true
- },
- {
- "type": "identifier",
- "named": true
- },
- {
- "type": "namespace_export",
- "named": true
- }
- ]
- }
- },
- {
- "type": "expression_statement",
- "named": true,
- "fields": {},
- "children": {
- "multiple": false,
- "required": true,
- "types": [
- {
- "type": "expression",
- "named": true
- },
- {
- "type": "sequence_expression",
- "named": true
- }
- ]
- }
- },
- {
- "type": "extends_clause",
- "named": true,
- "fields": {
- "type_arguments": {
- "multiple": true,
- "required": false,
- "types": [
- {
- "type": "type_arguments",
- "named": true
- }
- ]
- },
- "value": {
- "multiple": true,
- "required": true,
- "types": [
- {
- "type": "expression",
- "named": true
- }
- ]
- }
- }
- },
- {
- "type": "extends_type_clause",
- "named": true,
- "fields": {
- "type": {
- "multiple": true,
- "required": true,
- "types": [
- {
- "type": "generic_type",
- "named": true
- },
- {
- "type": "nested_type_identifier",
- "named": true
- },
- {
- "type": "type_identifier",
- "named": true
- }
- ]
- }
- }
- },
- {
- "type": "finally_clause",
- "named": true,
- "fields": {
- "body": {
- "multiple": false,
- "required": true,
- "types": [
- {
- "type": "statement_block",
- "named": true
- }
- ]
- }
- }
- },
- {
- "type": "flow_maybe_type",
- "named": true,
- "fields": {},
- "children": {
- "multiple": false,
- "required": true,
- "types": [
- {
- "type": "primary_type",
- "named": true
- }
- ]
- }
- },
- {
- "type": "for_in_statement",
- "named": true,
- "fields": {
- "body": {
- "multiple": false,
- "required": true,
- "types": [
- {
- "type": "statement",
- "named": true
- }
- ]
- },
- "kind": {
- "multiple": false,
- "required": false,
- "types": [
- {
- "type": "const",
- "named": false
- },
- {
- "type": "let",
- "named": false
- },
- {
- "type": "var",
- "named": false
- }
- ]
- },
- "left": {
- "multiple": false,
- "required": true,
- "types": [
- {
- "type": "array_pattern",
- "named": true
- },
- {
- "type": "identifier",
- "named": true
- },
- {
- "type": "member_expression",
- "named": true
- },
- {
- "type": "non_null_expression",
- "named": true
- },
- {
- "type": "object_pattern",
- "named": true
- },
- {
- "type": "parenthesized_expression",
- "named": true
- },
- {
- "type": "subscript_expression",
- "named": true
- },
- {
- "type": "undefined",
- "named": true
- }
- ]
- },
- "operator": {
- "multiple": false,
- "required": true,
- "types": [
- {
- "type": "in",
- "named": false
- },
- {
- "type": "of",
- "named": false
- }
- ]
- },
- "right": {
- "multiple": false,
- "required": true,
- "types": [
- {
- "type": "expression",
- "named": true
- },
- {
- "type": "sequence_expression",
- "named": true
- }
- ]
- },
- "value": {
- "multiple": false,
- "required": false,
- "types": [
- {
- "type": "expression",
- "named": true
- }
- ]
- }
- }
- },
- {
- "type": "for_statement",
- "named": true,
- "fields": {
- "body": {
- "multiple": false,
- "required": true,
- "types": [
- {
- "type": "statement",
- "named": true
- }
- ]
- },
- "condition": {
- "multiple": false,
- "required": true,
- "types": [
- {
- "type": "empty_statement",
- "named": true
- },
- {
- "type": "expression_statement",
- "named": true
- }
- ]
- },
- "increment": {
- "multiple": false,
- "required": false,
- "types": [
- {
- "type": "expression",
- "named": true
- },
- {
- "type": "sequence_expression",
- "named": true
- }
- ]
- },
- "initializer": {
- "multiple": false,
- "required": true,
- "types": [
- {
- "type": "empty_statement",
- "named": true
- },
- {
- "type": "expression_statement",
- "named": true
- },
- {
- "type": "lexical_declaration",
- "named": true
- },
- {
- "type": "variable_declaration",
- "named": true
- }
- ]
- }
- }
- },
- {
- "type": "formal_parameters",
- "named": true,
- "fields": {},
- "children": {
- "multiple": true,
- "required": false,
- "types": [
- {
- "type": "optional_parameter",
- "named": true
- },
- {
- "type": "required_parameter",
- "named": true
- }
- ]
- }
- },
- {
- "type": "function_declaration",
- "named": true,
- "fields": {
- "body": {
- "multiple": false,
- "required": true,
- "types": [
- {
- "type": "statement_block",
- "named": true
- }
- ]
- },
- "name": {
- "multiple": false,
- "required": true,
- "types": [
- {
- "type": "identifier",
- "named": true
- }
- ]
- },
- "parameters": {
- "multiple": false,
- "required": true,
- "types": [
- {
- "type": "formal_parameters",
- "named": true
- }
- ]
- },
- "return_type": {
- "multiple": false,
- "required": false,
- "types": [
- {
- "type": "asserts_annotation",
- "named": true
- },
- {
- "type": "type_annotation",
- "named": true
- },
- {
- "type": "type_predicate_annotation",
- "named": true
- }
- ]
- },
- "type_parameters": {
- "multiple": false,
- "required": false,
- "types": [
- {
- "type": "type_parameters",
- "named": true
- }
- ]
- }
- }
- },
- {
- "type": "function_expression",
- "named": true,
- "fields": {
- "body": {
- "multiple": false,
- "required": true,
- "types": [
- {
- "type": "statement_block",
- "named": true
- }
- ]
- },
- "name": {
- "multiple": false,
- "required": false,
- "types": [
- {
- "type": "identifier",
- "named": true
- }
- ]
- },
- "parameters": {
- "multiple": false,
- "required": true,
- "types": [
- {
- "type": "formal_parameters",
- "named": true
- }
- ]
- },
- "return_type": {
- "multiple": false,
- "required": false,
- "types": [
- {
- "type": "asserts_annotation",
- "named": true
- },
- {
- "type": "type_annotation",
- "named": true
- },
- {
- "type": "type_predicate_annotation",
- "named": true
- }
- ]
- },
- "type_parameters": {
- "multiple": false,
- "required": false,
- "types": [
- {
- "type": "type_parameters",
- "named": true
- }
- ]
- }
- }
- },
- {
- "type": "function_signature",
- "named": true,
- "fields": {
- "name": {
- "multiple": false,
- "required": true,
- "types": [
- {
- "type": "identifier",
- "named": true
- }
- ]
- },
- "parameters": {
- "multiple": false,
- "required": true,
- "types": [
- {
- "type": "formal_parameters",
- "named": true
- }
- ]
- },
- "return_type": {
- "multiple": false,
- "required": false,
- "types": [
- {
- "type": "asserts_annotation",
- "named": true
- },
- {
- "type": "type_annotation",
- "named": true
- },
- {
- "type": "type_predicate_annotation",
- "named": true
- }
- ]
- },
- "type_parameters": {
- "multiple": false,
- "required": false,
- "types": [
- {
- "type": "type_parameters",
- "named": true
- }
- ]
- }
- }
- },
- {
- "type": "function_type",
- "named": true,
- "fields": {
- "parameters": {
- "multiple": false,
- "required": true,
- "types": [
- {
- "type": "formal_parameters",
- "named": true
- }
- ]
- },
- "return_type": {
- "multiple": false,
- "required": true,
- "types": [
- {
- "type": "asserts",
- "named": true
- },
- {
- "type": "type",
- "named": true
- },
- {
- "type": "type_predicate",
- "named": true
- }
- ]
- },
- "type_parameters": {
- "multiple": false,
- "required": false,
- "types": [
- {
- "type": "type_parameters",
- "named": true
- }
- ]
- }
- }
- },
- {
- "type": "generator_function",
- "named": true,
- "fields": {
- "body": {
- "multiple": false,
- "required": true,
- "types": [
- {
- "type": "statement_block",
- "named": true
- }
- ]
- },
- "name": {
- "multiple": false,
- "required": false,
- "types": [
- {
- "type": "identifier",
- "named": true
- }
- ]
- },
- "parameters": {
- "multiple": false,
- "required": true,
- "types": [
- {
- "type": "formal_parameters",
- "named": true
- }
- ]
- },
- "return_type": {
- "multiple": false,
- "required": false,
- "types": [
- {
- "type": "asserts_annotation",
- "named": true
- },
- {
- "type": "type_annotation",
- "named": true
- },
- {
- "type": "type_predicate_annotation",
- "named": true
- }
- ]
- },
- "type_parameters": {
- "multiple": false,
- "required": false,
- "types": [
- {
- "type": "type_parameters",
- "named": true
- }
- ]
- }
- }
- },
- {
- "type": "generator_function_declaration",
- "named": true,
- "fields": {
- "body": {
- "multiple": false,
- "required": true,
- "types": [
- {
- "type": "statement_block",
- "named": true
- }
- ]
- },
- "name": {
- "multiple": false,
- "required": true,
- "types": [
- {
- "type": "identifier",
- "named": true
- }
- ]
- },
- "parameters": {
- "multiple": false,
- "required": true,
- "types": [
- {
- "type": "formal_parameters",
- "named": true
- }
- ]
- },
- "return_type": {
- "multiple": false,
- "required": false,
- "types": [
- {
- "type": "asserts_annotation",
- "named": true
- },
- {
- "type": "type_annotation",
- "named": true
- },
- {
- "type": "type_predicate_annotation",
- "named": true
- }
- ]
- },
- "type_parameters": {
- "multiple": false,
- "required": false,
- "types": [
- {
- "type": "type_parameters",
- "named": true
- }
- ]
- }
- }
- },
- {
- "type": "generic_type",
- "named": true,
- "fields": {
- "name": {
- "multiple": false,
- "required": true,
- "types": [
- {
- "type": "nested_type_identifier",
- "named": true
- },
- {
- "type": "type_identifier",
- "named": true
- }
- ]
- },
- "type_arguments": {
- "multiple": false,
- "required": true,
- "types": [
- {
- "type": "type_arguments",
- "named": true
- }
- ]
- }
- }
- },
- {
- "type": "glimmer_template",
- "named": true,
- "fields": {
- "close_tag": {
- "multiple": false,
- "required": true,
- "types": [
- {
- "type": "glimmer_closing_tag",
- "named": true
- }
- ]
- },
- "open_tag": {
- "multiple": false,
- "required": true,
- "types": [
- {
- "type": "glimmer_opening_tag",
- "named": true
- }
- ]
- }
- }
- },
- {
- "type": "identifier",
- "named": true,
- "fields": {}
- },
- {
- "type": "if_statement",
- "named": true,
- "fields": {
- "alternative": {
- "multiple": false,
- "required": false,
- "types": [
- {
- "type": "else_clause",
- "named": true
- }
- ]
- },
- "condition": {
- "multiple": false,
- "required": true,
- "types": [
- {
- "type": "parenthesized_expression",
- "named": true
- }
- ]
- },
- "consequence": {
- "multiple": false,
- "required": true,
- "types": [
- {
- "type": "statement",
- "named": true
- }
- ]
- }
- }
- },
- {
- "type": "implements_clause",
- "named": true,
- "fields": {},
- "children": {
- "multiple": true,
- "required": true,
- "types": [
- {
- "type": "type",
- "named": true
- }
- ]
- }
- },
- {
- "type": "import",
- "named": true,
- "fields": {}
- },
- {
- "type": "import_alias",
- "named": true,
- "fields": {},
- "children": {
- "multiple": true,
- "required": true,
- "types": [
- {
- "type": "identifier",
- "named": true
- },
- {
- "type": "nested_identifier",
- "named": true
- }
- ]
- }
- },
- {
- "type": "import_attribute",
- "named": true,
- "fields": {},
- "children": {
- "multiple": false,
- "required": true,
- "types": [
- {
- "type": "object",
- "named": true
- }
- ]
- }
- },
- {
- "type": "import_clause",
- "named": true,
- "fields": {},
- "children": {
- "multiple": true,
- "required": true,
- "types": [
- {
- "type": "identifier",
- "named": true
- },
- {
- "type": "named_imports",
- "named": true
- },
- {
- "type": "namespace_import",
- "named": true
- }
- ]
- }
- },
- {
- "type": "import_require_clause",
- "named": true,
- "fields": {
- "source": {
- "multiple": false,
- "required": true,
- "types": [
- {
- "type": "string",
- "named": true
- }
- ]
- }
- },
- "children": {
- "multiple": false,
- "required": true,
- "types": [
- {
- "type": "identifier",
- "named": true
- }
- ]
- }
- },
- {
- "type": "import_specifier",
- "named": true,
- "fields": {
- "alias": {
- "multiple": false,
- "required": false,
- "types": [
- {
- "type": "identifier",
- "named": true
- }
- ]
- },
- "name": {
- "multiple": false,
- "required": true,
- "types": [
- {
- "type": "identifier",
- "named": true
- },
- {
- "type": "string",
- "named": true
- }
- ]
- }
- }
- },
- {
- "type": "import_statement",
- "named": true,
- "fields": {
- "source": {
- "multiple": false,
- "required": false,
- "types": [
- {
- "type": "string",
- "named": true
- }
- ]
- }
- },
- "children": {
- "multiple": true,
- "required": false,
- "types": [
- {
- "type": "import_attribute",
- "named": true
- },
- {
- "type": "import_clause",
- "named": true
- },
- {
- "type": "import_require_clause",
- "named": true
- }
- ]
- }
- },
- {
- "type": "index_signature",
- "named": true,
- "fields": {
- "index_type": {
- "multiple": false,
- "required": false,
- "types": [
- {
- "type": "type",
- "named": true
- }
- ]
- },
- "name": {
- "multiple": false,
- "required": false,
- "types": [
- {
- "type": "identifier",
- "named": true
- }
- ]
- },
- "sign": {
- "multiple": false,
- "required": false,
- "types": [
- {
- "type": "+",
- "named": false
- },
- {
- "type": "-",
- "named": false
- }
- ]
- },
- "type": {
- "multiple": false,
- "required": true,
- "types": [
- {
- "type": "adding_type_annotation",
- "named": true
- },
- {
- "type": "omitting_type_annotation",
- "named": true
- },
- {
- "type": "opting_type_annotation",
- "named": true
- },
- {
- "type": "type_annotation",
- "named": true
- }
- ]
- }
- },
- "children": {
- "multiple": false,
- "required": false,
- "types": [
- {
- "type": "mapped_type_clause",
- "named": true
- }
- ]
- }
- },
- {
- "type": "index_type_query",
- "named": true,
- "fields": {},
- "children": {
- "multiple": false,
- "required": true,
- "types": [
- {
- "type": "primary_type",
- "named": true
- }
- ]
- }
- },
- {
- "type": "infer_type",
- "named": true,
- "fields": {},
- "children": {
- "multiple": true,
- "required": true,
- "types": [
- {
- "type": "type",
- "named": true
- },
- {
- "type": "type_identifier",
- "named": true
- }
- ]
- }
- },
- {
- "type": "instantiation_expression",
- "named": true,
- "fields": {
- "function": {
- "multiple": false,
- "required": false,
- "types": [
- {
- "type": "identifier",
- "named": true
- },
- {
- "type": "import",
- "named": true
- },
- {
- "type": "member_expression",
- "named": true
- },
- {
- "type": "subscript_expression",
- "named": true
- }
- ]
- },
- "type_arguments": {
- "multiple": false,
- "required": true,
- "types": [
- {
- "type": "type_arguments",
- "named": true
- }
- ]
- }
- },
- "children": {
- "multiple": false,
- "required": false,
- "types": [
- {
- "type": "expression",
- "named": true
- }
- ]
- }
- },
- {
- "type": "interface_body",
- "named": true,
- "fields": {},
- "children": {
- "multiple": true,
- "required": false,
- "types": [
- {
- "type": "call_signature",
- "named": true
- },
- {
- "type": "construct_signature",
- "named": true
- },
- {
- "type": "export_statement",
- "named": true
- },
- {
- "type": "index_signature",
- "named": true
- },
- {
- "type": "method_signature",
- "named": true
- },
- {
- "type": "property_signature",
- "named": true
- }
- ]
- }
- },
- {
- "type": "interface_declaration",
- "named": true,
- "fields": {
- "body": {
- "multiple": false,
- "required": true,
- "types": [
- {
- "type": "interface_body",
- "named": true
- }
- ]
- },
- "name": {
- "multiple": false,
- "required": true,
- "types": [
- {
- "type": "type_identifier",
- "named": true
- }
- ]
- },
- "type_parameters": {
- "multiple": false,
- "required": false,
- "types": [
- {
- "type": "type_parameters",
- "named": true
- }
- ]
- }
- },
- "children": {
- "multiple": false,
- "required": false,
- "types": [
- {
- "type": "extends_type_clause",
- "named": true
- }
- ]
- }
- },
- {
- "type": "internal_module",
- "named": true,
- "fields": {
- "body": {
- "multiple": false,
- "required": false,
- "types": [
- {
- "type": "statement_block",
- "named": true
- }
- ]
- },
- "name": {
- "multiple": false,
- "required": true,
- "types": [
- {
- "type": "identifier",
- "named": true
- },
- {
- "type": "nested_identifier",
- "named": true
- },
- {
- "type": "string",
- "named": true
- }
- ]
- }
- }
- },
- {
- "type": "intersection_type",
- "named": true,
- "fields": {},
- "children": {
- "multiple": true,
- "required": true,
- "types": [
- {
- "type": "type",
- "named": true
- }
- ]
- }
- },
- {
- "type": "jsx_attribute",
- "named": true,
- "fields": {},
- "children": {
- "multiple": true,
- "required": true,
- "types": [
- {
- "type": "jsx_element",
- "named": true
- },
- {
- "type": "jsx_expression",
- "named": true
- },
- {
- "type": "jsx_namespace_name",
- "named": true
- },
- {
- "type": "jsx_self_closing_element",
- "named": true
- },
- {
- "type": "property_identifier",
- "named": true
- },
- {
- "type": "string",
- "named": true
- }
- ]
- }
- },
- {
- "type": "jsx_closing_element",
- "named": true,
- "fields": {
- "name": {
- "multiple": false,
- "required": false,
- "types": [
- {
- "type": "identifier",
- "named": true
- },
- {
- "type": "jsx_namespace_name",
- "named": true
- },
- {
- "type": "member_expression",
- "named": true
- }
- ]
- }
- }
- },
- {
- "type": "jsx_element",
- "named": true,
- "fields": {
- "close_tag": {
- "multiple": false,
- "required": true,
- "types": [
- {
- "type": "jsx_closing_element",
- "named": true
- }
- ]
- },
- "open_tag": {
- "multiple": false,
- "required": true,
- "types": [
- {
- "type": "jsx_opening_element",
- "named": true
- }
- ]
- }
- },
- "children": {
- "multiple": true,
- "required": false,
- "types": [
- {
- "type": "html_character_reference",
- "named": true
- },
- {
- "type": "jsx_element",
- "named": true
- },
- {
- "type": "jsx_expression",
- "named": true
- },
- {
- "type": "jsx_self_closing_element",
- "named": true
- },
- {
- "type": "jsx_text",
- "named": true
- }
- ]
- }
- },
- {
- "type": "jsx_expression",
- "named": true,
- "fields": {},
- "children": {
- "multiple": false,
- "required": false,
- "types": [
- {
- "type": "expression",
- "named": true
- },
- {
- "type": "sequence_expression",
- "named": true
- },
- {
- "type": "spread_element",
- "named": true
- }
- ]
- }
- },
- {
- "type": "jsx_namespace_name",
- "named": true,
- "fields": {},
- "children": {
- "multiple": true,
- "required": true,
- "types": [
- {
- "type": "identifier",
- "named": true
- }
- ]
- }
- },
- {
- "type": "jsx_opening_element",
- "named": true,
- "fields": {
- "attribute": {
- "multiple": true,
- "required": false,
- "types": [
- {
- "type": "jsx_attribute",
- "named": true
- },
- {
- "type": "jsx_expression",
- "named": true
- }
- ]
- },
- "name": {
- "multiple": false,
- "required": false,
- "types": [
- {
- "type": "identifier",
- "named": true
- },
- {
- "type": "jsx_namespace_name",
- "named": true
- },
- {
- "type": "member_expression",
- "named": true
- }
- ]
- },
- "type_arguments": {
- "multiple": false,
- "required": false,
- "types": [
- {
- "type": "type_arguments",
- "named": true
- }
- ]
- }
- }
- },
- {
- "type": "jsx_self_closing_element",
- "named": true,
- "fields": {
- "attribute": {
- "multiple": true,
- "required": false,
- "types": [
- {
- "type": "jsx_attribute",
- "named": true
- },
- {
- "type": "jsx_expression",
- "named": true
- }
- ]
- },
- "name": {
- "multiple": false,
- "required": false,
- "types": [
- {
- "type": "identifier",
- "named": true
- },
- {
- "type": "jsx_namespace_name",
- "named": true
- },
- {
- "type": "member_expression",
- "named": true
- }
- ]
- },
- "type_arguments": {
- "multiple": false,
- "required": false,
- "types": [
- {
- "type": "type_arguments",
- "named": true
- }
- ]
- }
- }
- },
- {
- "type": "jsx_text",
- "named": true,
- "fields": {}
- },
- {
- "type": "labeled_statement",
- "named": true,
- "fields": {
- "body": {
- "multiple": false,
- "required": true,
- "types": [
- {
- "type": "statement",
- "named": true
- }
- ]
- },
- "label": {
- "multiple": false,
- "required": true,
- "types": [
- {
- "type": "statement_identifier",
- "named": true
- }
- ]
- }
- }
- },
- {
- "type": "lexical_declaration",
- "named": true,
- "fields": {
- "kind": {
- "multiple": false,
- "required": true,
- "types": [
- {
- "type": "const",
- "named": false
- },
- {
- "type": "let",
- "named": false
- }
- ]
- }
- },
- "children": {
- "multiple": true,
- "required": true,
- "types": [
- {
- "type": "variable_declarator",
- "named": true
- }
- ]
- }
- },
- {
- "type": "literal_type",
- "named": true,
- "fields": {},
- "children": {
- "multiple": false,
- "required": true,
- "types": [
- {
- "type": "false",
- "named": true
- },
- {
- "type": "null",
- "named": true
- },
- {
- "type": "number",
- "named": true
- },
- {
- "type": "string",
- "named": true
- },
- {
- "type": "true",
- "named": true
- },
- {
- "type": "unary_expression",
- "named": true
- },
- {
- "type": "undefined",
- "named": true
- }
- ]
- }
- },
- {
- "type": "lookup_type",
- "named": true,
- "fields": {},
- "children": {
- "multiple": true,
- "required": true,
- "types": [
- {
- "type": "type",
- "named": true
- }
- ]
- }
- },
- {
- "type": "mapped_type_clause",
- "named": true,
- "fields": {
- "alias": {
- "multiple": false,
- "required": false,
- "types": [
- {
- "type": "type",
- "named": true
- }
- ]
- },
- "name": {
- "multiple": false,
- "required": true,
- "types": [
- {
- "type": "type_identifier",
- "named": true
- }
- ]
- },
- "type": {
- "multiple": false,
- "required": true,
- "types": [
- {
- "type": "type",
- "named": true
- }
- ]
- }
- }
- },
- {
- "type": "member_expression",
- "named": true,
- "fields": {
- "object": {
- "multiple": false,
- "required": true,
- "types": [
- {
- "type": "expression",
- "named": true
- },
- {
- "type": "import",
- "named": true
- }
- ]
- },
- "optional_chain": {
- "multiple": false,
- "required": false,
- "types": [
- {
- "type": "optional_chain",
- "named": true
- }
- ]
- },
- "property": {
- "multiple": false,
- "required": true,
- "types": [
- {
- "type": "private_property_identifier",
- "named": true
- },
- {
- "type": "property_identifier",
- "named": true
- }
- ]
- }
- }
- },
- {
- "type": "meta_property",
- "named": true,
- "fields": {}
- },
- {
- "type": "method_definition",
- "named": true,
- "fields": {
- "body": {
- "multiple": false,
- "required": true,
- "types": [
- {
- "type": "statement_block",
- "named": true
- }
- ]
- },
- "name": {
- "multiple": false,
- "required": true,
- "types": [
- {
- "type": "computed_property_name",
- "named": true
- },
- {
- "type": "number",
- "named": true
- },
- {
- "type": "private_property_identifier",
- "named": true
- },
- {
- "type": "property_identifier",
- "named": true
- },
- {
- "type": "string",
- "named": true
- }
- ]
- },
- "parameters": {
- "multiple": false,
- "required": true,
- "types": [
- {
- "type": "formal_parameters",
- "named": true
- }
- ]
- },
- "return_type": {
- "multiple": false,
- "required": false,
- "types": [
- {
- "type": "asserts_annotation",
- "named": true
- },
- {
- "type": "type_annotation",
- "named": true
- },
- {
- "type": "type_predicate_annotation",
- "named": true
- }
- ]
- },
- "type_parameters": {
- "multiple": false,
- "required": false,
- "types": [
- {
- "type": "type_parameters",
- "named": true
- }
- ]
- }
- },
- "children": {
- "multiple": true,
- "required": false,
- "types": [
- {
- "type": "accessibility_modifier",
- "named": true
- },
- {
- "type": "override_modifier",
- "named": true
- }
- ]
- }
- },
- {
- "type": "method_signature",
- "named": true,
- "fields": {
- "name": {
- "multiple": false,
- "required": true,
- "types": [
- {
- "type": "computed_property_name",
- "named": true
- },
- {
- "type": "number",
- "named": true
- },
- {
- "type": "private_property_identifier",
- "named": true
- },
- {
- "type": "property_identifier",
- "named": true
- },
- {
- "type": "string",
- "named": true
- }
- ]
- },
- "parameters": {
- "multiple": false,
- "required": true,
- "types": [
- {
- "type": "formal_parameters",
- "named": true
- }
- ]
- },
- "return_type": {
- "multiple": false,
- "required": false,
- "types": [
- {
- "type": "asserts_annotation",
- "named": true
- },
- {
- "type": "type_annotation",
- "named": true
- },
- {
- "type": "type_predicate_annotation",
- "named": true
- }
- ]
- },
- "type_parameters": {
- "multiple": false,
- "required": false,
- "types": [
- {
- "type": "type_parameters",
- "named": true
- }
- ]
- }
- },
- "children": {
- "multiple": true,
- "required": false,
- "types": [
- {
- "type": "accessibility_modifier",
- "named": true
- },
- {
- "type": "override_modifier",
- "named": true
- }
- ]
- }
- },
- {
- "type": "module",
- "named": true,
- "fields": {
- "body": {
- "multiple": false,
- "required": false,
- "types": [
- {
- "type": "statement_block",
- "named": true
- }
- ]
- },
- "name": {
- "multiple": false,
- "required": true,
- "types": [
- {
- "type": "identifier",
- "named": true
- },
- {
- "type": "nested_identifier",
- "named": true
- },
- {
- "type": "string",
- "named": true
- }
- ]
- }
- }
- },
- {
- "type": "named_imports",
- "named": true,
- "fields": {},
- "children": {
- "multiple": true,
- "required": false,
- "types": [
- {
- "type": "import_specifier",
- "named": true
- }
- ]
- }
- },
- {
- "type": "namespace_export",
- "named": true,
- "fields": {},
- "children": {
- "multiple": false,
- "required": true,
- "types": [
- {
- "type": "identifier",
- "named": true
- },
- {
- "type": "string",
- "named": true
- }
- ]
- }
- },
- {
- "type": "namespace_import",
- "named": true,
- "fields": {},
- "children": {
- "multiple": false,
- "required": true,
- "types": [
- {
- "type": "identifier",
- "named": true
- }
- ]
- }
- },
- {
- "type": "nested_identifier",
- "named": true,
- "fields": {
- "object": {
- "multiple": false,
- "required": true,
- "types": [
- {
- "type": "identifier",
- "named": true
- },
- {
- "type": "member_expression",
- "named": true
- }
- ]
- },
- "property": {
- "multiple": false,
- "required": true,
- "types": [
- {
- "type": "property_identifier",
- "named": true
- }
- ]
- }
- }
- },
- {
- "type": "nested_type_identifier",
- "named": true,
- "fields": {
- "module": {
- "multiple": false,
- "required": true,
- "types": [
- {
- "type": "identifier",
- "named": true
- },
- {
- "type": "nested_identifier",
- "named": true
- }
- ]
- },
- "name": {
- "multiple": false,
- "required": true,
- "types": [
- {
- "type": "type_identifier",
- "named": true
- }
- ]
- }
- }
- },
- {
- "type": "new_expression",
- "named": true,
- "fields": {
- "arguments": {
- "multiple": false,
- "required": false,
- "types": [
- {
- "type": "arguments",
- "named": true
- }
- ]
- },
- "constructor": {
- "multiple": false,
- "required": true,
- "types": [
- {
- "type": "primary_expression",
- "named": true
- }
- ]
- },
- "type_arguments": {
- "multiple": false,
- "required": false,
- "types": [
- {
- "type": "type_arguments",
- "named": true
- }
- ]
- }
- }
- },
- {
- "type": "non_null_expression",
- "named": true,
- "fields": {},
- "children": {
- "multiple": false,
- "required": true,
- "types": [
- {
- "type": "expression",
- "named": true
- }
- ]
- }
- },
- {
- "type": "object",
- "named": true,
- "fields": {},
- "children": {
- "multiple": true,
- "required": false,
- "types": [
- {
- "type": "method_definition",
- "named": true
- },
- {
- "type": "pair",
- "named": true
- },
- {
- "type": "shorthand_property_identifier",
- "named": true
- },
- {
- "type": "spread_element",
- "named": true
- }
- ]
- }
- },
- {
- "type": "object_assignment_pattern",
- "named": true,
- "fields": {
- "left": {
- "multiple": false,
- "required": true,
- "types": [
- {
- "type": "array_pattern",
- "named": true
- },
- {
- "type": "object_pattern",
- "named": true
- },
- {
- "type": "shorthand_property_identifier_pattern",
- "named": true
- }
- ]
- },
- "right": {
- "multiple": false,
- "required": true,
- "types": [
- {
- "type": "expression",
- "named": true
- }
- ]
- }
- }
- },
- {
- "type": "object_pattern",
- "named": true,
- "fields": {},
- "children": {
- "multiple": true,
- "required": false,
- "types": [
- {
- "type": "object_assignment_pattern",
- "named": true
- },
- {
- "type": "pair_pattern",
- "named": true
- },
- {
- "type": "rest_pattern",
- "named": true
- },
- {
- "type": "shorthand_property_identifier_pattern",
- "named": true
- }
- ]
- }
- },
- {
- "type": "object_type",
- "named": true,
- "fields": {},
- "children": {
- "multiple": true,
- "required": false,
- "types": [
- {
- "type": "call_signature",
- "named": true
- },
- {
- "type": "construct_signature",
- "named": true
- },
- {
- "type": "export_statement",
- "named": true
- },
- {
- "type": "index_signature",
- "named": true
- },
- {
- "type": "method_signature",
- "named": true
- },
- {
- "type": "property_signature",
- "named": true
- }
- ]
- }
- },
- {
- "type": "omitting_type_annotation",
- "named": true,
- "fields": {},
- "children": {
- "multiple": false,
- "required": true,
- "types": [
- {
- "type": "type",
- "named": true
- }
- ]
- }
- },
- {
- "type": "opting_type_annotation",
- "named": true,
- "fields": {},
- "children": {
- "multiple": false,
- "required": true,
- "types": [
- {
- "type": "type",
- "named": true
- }
- ]
- }
- },
- {
- "type": "optional_chain",
- "named": true,
- "fields": {}
- },
- {
- "type": "optional_parameter",
- "named": true,
- "fields": {
- "decorator": {
- "multiple": true,
- "required": false,
- "types": [
- {
- "type": "decorator",
- "named": true
- }
- ]
- },
- "name": {
- "multiple": false,
- "required": false,
- "types": [
- {
- "type": "identifier",
- "named": true
- }
- ]
- },
- "pattern": {
- "multiple": false,
- "required": false,
- "types": [
- {
- "type": "pattern",
- "named": true
- },
- {
- "type": "this",
- "named": true
- }
- ]
- },
- "type": {
- "multiple": false,
- "required": false,
- "types": [
- {
- "type": "type_annotation",
- "named": true
- }
- ]
- },
- "value": {
- "multiple": false,
- "required": false,
- "types": [
- {
- "type": "expression",
- "named": true
- }
- ]
- }
- },
- "children": {
- "multiple": true,
- "required": false,
- "types": [
- {
- "type": "accessibility_modifier",
- "named": true
- },
- {
- "type": "override_modifier",
- "named": true
- }
- ]
- }
- },
- {
- "type": "optional_type",
- "named": true,
- "fields": {},
- "children": {
- "multiple": false,
- "required": true,
- "types": [
- {
- "type": "type",
- "named": true
- }
- ]
- }
- },
- {
- "type": "override_modifier",
- "named": true,
- "fields": {}
- },
- {
- "type": "pair",
- "named": true,
- "fields": {
- "key": {
- "multiple": false,
- "required": true,
- "types": [
- {
- "type": "computed_property_name",
- "named": true
- },
- {
- "type": "number",
- "named": true
- },
- {
- "type": "private_property_identifier",
- "named": true
- },
- {
- "type": "property_identifier",
- "named": true
- },
- {
- "type": "string",
- "named": true
- }
- ]
- },
- "value": {
- "multiple": false,
- "required": true,
- "types": [
- {
- "type": "expression",
- "named": true
- }
- ]
- }
- }
- },
- {
- "type": "pair_pattern",
- "named": true,
- "fields": {
- "key": {
- "multiple": false,
- "required": true,
- "types": [
- {
- "type": "computed_property_name",
- "named": true
- },
- {
- "type": "number",
- "named": true
- },
- {
- "type": "private_property_identifier",
- "named": true
- },
- {
- "type": "property_identifier",
- "named": true
- },
- {
- "type": "string",
- "named": true
- }
- ]
- },
- "value": {
- "multiple": false,
- "required": true,
- "types": [
- {
- "type": "assignment_pattern",
- "named": true
- },
- {
- "type": "pattern",
- "named": true
- }
- ]
- }
- }
- },
- {
- "type": "parenthesized_expression",
- "named": true,
- "fields": {
- "type": {
- "multiple": false,
- "required": false,
- "types": [
- {
- "type": "type_annotation",
- "named": true
- }
- ]
- }
- },
- "children": {
- "multiple": false,
- "required": true,
- "types": [
- {
- "type": "call_expression",
- "named": true
- },
- {
- "type": "expression",
- "named": true
- },
- {
- "type": "identifier",
- "named": true
- },
- {
- "type": "member_expression",
- "named": true
- },
- {
- "type": "sequence_expression",
- "named": true
- }
- ]
- }
- },
- {
- "type": "parenthesized_type",
- "named": true,
- "fields": {},
- "children": {
- "multiple": false,
- "required": true,
- "types": [
- {
- "type": "type",
- "named": true
- }
- ]
- }
- },
- {
- "type": "predefined_type",
- "named": true,
- "fields": {}
- },
- {
- "type": "program",
- "named": true,
- "fields": {},
- "children": {
- "multiple": true,
- "required": false,
- "types": [
- {
- "type": "hash_bang_line",
- "named": true
- },
- {
- "type": "statement",
- "named": true
- }
- ]
- }
- },
- {
- "type": "property_signature",
- "named": true,
- "fields": {
- "name": {
- "multiple": false,
- "required": true,
- "types": [
- {
- "type": "computed_property_name",
- "named": true
- },
- {
- "type": "number",
- "named": true
- },
- {
- "type": "private_property_identifier",
- "named": true
- },
- {
- "type": "property_identifier",
- "named": true
- },
- {
- "type": "string",
- "named": true
- }
- ]
- },
- "type": {
- "multiple": false,
- "required": false,
- "types": [
- {
- "type": "type_annotation",
- "named": true
- }
- ]
- }
- },
- "children": {
- "multiple": true,
- "required": false,
- "types": [
- {
- "type": "accessibility_modifier",
- "named": true
- },
- {
- "type": "override_modifier",
- "named": true
- }
- ]
- }
- },
- {
- "type": "public_field_definition",
- "named": true,
- "fields": {
- "decorator": {
- "multiple": true,
- "required": false,
- "types": [
- {
- "type": "decorator",
- "named": true
- }
- ]
- },
- "name": {
- "multiple": false,
- "required": true,
- "types": [
- {
- "type": "computed_property_name",
- "named": true
- },
- {
- "type": "number",
- "named": true
- },
- {
- "type": "private_property_identifier",
- "named": true
- },
- {
- "type": "property_identifier",
- "named": true
- },
- {
- "type": "string",
- "named": true
- }
- ]
- },
- "type": {
- "multiple": false,
- "required": false,
- "types": [
- {
- "type": "type_annotation",
- "named": true
- }
- ]
- },
- "value": {
- "multiple": false,
- "required": false,
- "types": [
- {
- "type": "expression",
- "named": true
- }
- ]
- }
- },
- "children": {
- "multiple": true,
- "required": false,
- "types": [
- {
- "type": "accessibility_modifier",
- "named": true
- },
- {
- "type": "override_modifier",
- "named": true
- }
- ]
- }
- },
- {
- "type": "readonly_type",
- "named": true,
- "fields": {},
- "children": {
- "multiple": false,
- "required": true,
- "types": [
- {
- "type": "type",
- "named": true
- }
- ]
- }
- },
- {
- "type": "regex",
- "named": true,
- "fields": {
- "flags": {
- "multiple": false,
- "required": false,
- "types": [
- {
- "type": "regex_flags",
- "named": true
- }
- ]
- },
- "pattern": {
- "multiple": false,
- "required": true,
- "types": [
- {
- "type": "regex_pattern",
- "named": true
- }
- ]
- }
- }
- },
- {
- "type": "required_parameter",
- "named": true,
- "fields": {
- "decorator": {
- "multiple": true,
- "required": false,
- "types": [
- {
- "type": "decorator",
- "named": true
- }
- ]
- },
- "name": {
- "multiple": false,
- "required": false,
- "types": [
- {
- "type": "identifier",
- "named": true
- },
- {
- "type": "rest_pattern",
- "named": true
- }
- ]
- },
- "pattern": {
- "multiple": false,
- "required": false,
- "types": [
- {
- "type": "pattern",
- "named": true
- },
- {
- "type": "this",
- "named": true
- }
- ]
- },
- "type": {
- "multiple": false,
- "required": false,
- "types": [
- {
- "type": "type_annotation",
- "named": true
- }
- ]
- },
- "value": {
- "multiple": false,
- "required": false,
- "types": [
- {
- "type": "expression",
- "named": true
- }
- ]
- }
- },
- "children": {
- "multiple": true,
- "required": false,
- "types": [
- {
- "type": "accessibility_modifier",
- "named": true
- },
- {
- "type": "override_modifier",
- "named": true
- }
- ]
- }
- },
- {
- "type": "rest_pattern",
- "named": true,
- "fields": {},
- "children": {
- "multiple": false,
- "required": true,
- "types": [
- {
- "type": "array_pattern",
- "named": true
- },
- {
- "type": "identifier",
- "named": true
- },
- {
- "type": "member_expression",
- "named": true
- },
- {
- "type": "non_null_expression",
- "named": true
- },
- {
- "type": "object_pattern",
- "named": true
- },
- {
- "type": "subscript_expression",
- "named": true
- },
- {
- "type": "undefined",
- "named": true
- }
- ]
- }
- },
- {
- "type": "rest_type",
- "named": true,
- "fields": {},
- "children": {
- "multiple": false,
- "required": true,
- "types": [
- {
- "type": "type",
- "named": true
- }
- ]
- }
- },
- {
- "type": "return_statement",
- "named": true,
- "fields": {},
- "children": {
- "multiple": false,
- "required": false,
- "types": [
- {
- "type": "expression",
- "named": true
- },
- {
- "type": "sequence_expression",
- "named": true
- }
- ]
- }
- },
- {
- "type": "satisfies_expression",
- "named": true,
- "fields": {},
- "children": {
- "multiple": true,
- "required": true,
- "types": [
- {
- "type": "expression",
- "named": true
- },
- {
- "type": "type",
- "named": true
- }
- ]
- }
- },
- {
- "type": "sequence_expression",
- "named": true,
- "fields": {},
- "children": {
- "multiple": true,
- "required": true,
- "types": [
- {
- "type": "expression",
- "named": true
- }
- ]
- }
- },
- {
- "type": "spread_element",
- "named": true,
- "fields": {},
- "children": {
- "multiple": false,
- "required": true,
- "types": [
- {
- "type": "expression",
- "named": true
- }
- ]
- }
- },
- {
- "type": "statement_block",
- "named": true,
- "fields": {},
- "children": {
- "multiple": true,
- "required": false,
- "types": [
- {
- "type": "statement",
- "named": true
- }
- ]
- }
- },
- {
- "type": "string",
- "named": true,
- "fields": {},
- "children": {
- "multiple": true,
- "required": false,
- "types": [
- {
- "type": "escape_sequence",
- "named": true
- },
- {
- "type": "html_character_reference",
- "named": true
- },
- {
- "type": "string_fragment",
- "named": true
- }
- ]
- }
- },
- {
- "type": "subscript_expression",
- "named": true,
- "fields": {
- "index": {
- "multiple": false,
- "required": true,
- "types": [
- {
- "type": "expression",
- "named": true
- },
- {
- "type": "number",
- "named": true
- },
- {
- "type": "predefined_type",
- "named": true
- },
- {
- "type": "sequence_expression",
- "named": true
- },
- {
- "type": "string",
- "named": true
- }
- ]
- },
- "object": {
- "multiple": false,
- "required": true,
- "types": [
- {
- "type": "expression",
- "named": true
- }
- ]
- },
- "optional_chain": {
- "multiple": false,
- "required": false,
- "types": [
- {
- "type": "optional_chain",
- "named": true
- }
- ]
- }
- }
- },
- {
- "type": "switch_body",
- "named": true,
- "fields": {},
- "children": {
- "multiple": true,
- "required": false,
- "types": [
- {
- "type": "switch_case",
- "named": true
- },
- {
- "type": "switch_default",
- "named": true
- }
- ]
- }
- },
- {
- "type": "switch_case",
- "named": true,
- "fields": {
- "body": {
- "multiple": true,
- "required": false,
- "types": [
- {
- "type": "statement",
- "named": true
- }
- ]
- },
- "value": {
- "multiple": false,
- "required": true,
- "types": [
- {
- "type": "expression",
- "named": true
- },
- {
- "type": "sequence_expression",
- "named": true
- }
- ]
- }
- }
- },
- {
- "type": "switch_default",
- "named": true,
- "fields": {
- "body": {
- "multiple": true,
- "required": false,
- "types": [
- {
- "type": "statement",
- "named": true
- }
- ]
- }
- }
- },
- {
- "type": "switch_statement",
- "named": true,
- "fields": {
- "body": {
- "multiple": false,
- "required": true,
- "types": [
- {
- "type": "switch_body",
- "named": true
- }
- ]
- },
- "value": {
- "multiple": false,
- "required": true,
- "types": [
- {
- "type": "parenthesized_expression",
- "named": true
- }
- ]
- }
- }
- },
- {
- "type": "template_literal_type",
- "named": true,
- "fields": {},
- "children": {
- "multiple": true,
- "required": false,
- "types": [
- {
- "type": "string_fragment",
- "named": true
- },
- {
- "type": "template_type",
- "named": true
- }
- ]
- }
- },
- {
- "type": "template_string",
- "named": true,
- "fields": {},
- "children": {
- "multiple": true,
- "required": false,
- "types": [
- {
- "type": "escape_sequence",
- "named": true
- },
- {
- "type": "string_fragment",
- "named": true
- },
- {
- "type": "template_substitution",
- "named": true
- }
- ]
- }
- },
- {
- "type": "template_substitution",
- "named": true,
- "fields": {},
- "children": {
- "multiple": false,
- "required": true,
- "types": [
- {
- "type": "expression",
- "named": true
- },
- {
- "type": "sequence_expression",
- "named": true
- }
- ]
- }
- },
- {
- "type": "template_type",
- "named": true,
- "fields": {},
- "children": {
- "multiple": false,
- "required": true,
- "types": [
- {
- "type": "infer_type",
- "named": true
- },
- {
- "type": "primary_type",
- "named": true
- }
- ]
- }
- },
- {
- "type": "ternary_expression",
- "named": true,
- "fields": {
- "alternative": {
- "multiple": false,
- "required": true,
- "types": [
- {
- "type": "expression",
- "named": true
- }
- ]
- },
- "condition": {
- "multiple": false,
- "required": true,
- "types": [
- {
- "type": "expression",
- "named": true
- }
- ]
- },
- "consequence": {
- "multiple": false,
- "required": true,
- "types": [
- {
- "type": "expression",
- "named": true
- }
- ]
- }
- }
- },
- {
- "type": "throw_statement",
- "named": true,
- "fields": {},
- "children": {
- "multiple": false,
- "required": true,
- "types": [
- {
- "type": "expression",
- "named": true
- },
- {
- "type": "sequence_expression",
- "named": true
- }
- ]
- }
- },
- {
- "type": "try_statement",
- "named": true,
- "fields": {
- "body": {
- "multiple": false,
- "required": true,
- "types": [
- {
- "type": "statement_block",
- "named": true
- }
- ]
- },
- "finalizer": {
- "multiple": false,
- "required": false,
- "types": [
- {
- "type": "finally_clause",
- "named": true
- }
- ]
- },
- "handler": {
- "multiple": false,
- "required": false,
- "types": [
- {
- "type": "catch_clause",
- "named": true
- }
- ]
- }
- }
- },
- {
- "type": "tuple_type",
- "named": true,
- "fields": {},
- "children": {
- "multiple": true,
- "required": false,
- "types": [
- {
- "type": "optional_parameter",
- "named": true
- },
- {
- "type": "optional_type",
- "named": true
- },
- {
- "type": "required_parameter",
- "named": true
- },
- {
- "type": "rest_type",
- "named": true
- },
- {
- "type": "type",
- "named": true
- }
- ]
- }
- },
- {
- "type": "type_alias_declaration",
- "named": true,
- "fields": {
- "name": {
- "multiple": false,
- "required": true,
- "types": [
- {
- "type": "type_identifier",
- "named": true
- }
- ]
- },
- "type_parameters": {
- "multiple": false,
- "required": false,
- "types": [
- {
- "type": "type_parameters",
- "named": true
- }
- ]
- },
- "value": {
- "multiple": false,
- "required": true,
- "types": [
- {
- "type": "type",
- "named": true
- }
- ]
- }
- }
- },
- {
- "type": "type_annotation",
- "named": true,
- "fields": {},
- "children": {
- "multiple": false,
- "required": true,
- "types": [
- {
- "type": "type",
- "named": true
- }
- ]
- }
- },
- {
- "type": "type_arguments",
- "named": true,
- "fields": {},
- "children": {
- "multiple": true,
- "required": true,
- "types": [
- {
- "type": "type",
- "named": true
- }
- ]
- }
- },
- {
- "type": "type_parameter",
- "named": true,
- "fields": {
- "constraint": {
- "multiple": false,
- "required": false,
- "types": [
- {
- "type": "constraint",
- "named": true
- }
- ]
- },
- "name": {
- "multiple": false,
- "required": true,
- "types": [
- {
- "type": "type_identifier",
- "named": true
- }
- ]
- },
- "value": {
- "multiple": false,
- "required": false,
- "types": [
- {
- "type": "default_type",
- "named": true
- }
- ]
- }
- }
- },
- {
- "type": "type_parameters",
- "named": true,
- "fields": {},
- "children": {
- "multiple": true,
- "required": true,
- "types": [
- {
- "type": "type_parameter",
- "named": true
- }
- ]
- }
- },
- {
- "type": "type_predicate",
- "named": true,
- "fields": {
- "name": {
- "multiple": false,
- "required": true,
- "types": [
- {
- "type": "identifier",
- "named": true
- },
- {
- "type": "this",
- "named": true
- }
- ]
- },
- "type": {
- "multiple": false,
- "required": true,
- "types": [
- {
- "type": "type",
- "named": true
- }
- ]
- }
- }
- },
- {
- "type": "type_predicate_annotation",
- "named": true,
- "fields": {},
- "children": {
- "multiple": false,
- "required": true,
- "types": [
- {
- "type": "type_predicate",
- "named": true
- }
- ]
- }
- },
- {
- "type": "type_query",
- "named": true,
- "fields": {},
- "children": {
- "multiple": false,
- "required": true,
- "types": [
- {
- "type": "call_expression",
- "named": true
- },
- {
- "type": "identifier",
- "named": true
- },
- {
- "type": "instantiation_expression",
- "named": true
- },
- {
- "type": "member_expression",
- "named": true
- },
- {
- "type": "subscript_expression",
- "named": true
- },
- {
- "type": "this",
- "named": true
- }
- ]
- }
- },
- {
- "type": "unary_expression",
- "named": true,
- "fields": {
- "argument": {
- "multiple": false,
- "required": true,
- "types": [
- {
- "type": "expression",
- "named": true
- },
- {
- "type": "number",
- "named": true
- }
- ]
- },
- "operator": {
- "multiple": false,
- "required": true,
- "types": [
- {
- "type": "!",
- "named": false
- },
- {
- "type": "+",
- "named": false
- },
- {
- "type": "-",
- "named": false
- },
- {
- "type": "delete",
- "named": false
- },
- {
- "type": "typeof",
- "named": false
- },
- {
- "type": "void",
- "named": false
- },
- {
- "type": "~",
- "named": false
- }
- ]
- }
- }
- },
- {
- "type": "union_type",
- "named": true,
- "fields": {},
- "children": {
- "multiple": true,
- "required": true,
- "types": [
- {
- "type": "type",
- "named": true
- }
- ]
- }
- },
- {
- "type": "update_expression",
- "named": true,
- "fields": {
- "argument": {
- "multiple": false,
- "required": true,
- "types": [
- {
- "type": "expression",
- "named": true
- }
- ]
- },
- "operator": {
- "multiple": false,
- "required": true,
- "types": [
- {
- "type": "++",
- "named": false
- },
- {
- "type": "--",
- "named": false
- }
- ]
- }
- }
- },
- {
- "type": "variable_declaration",
- "named": true,
- "fields": {},
- "children": {
- "multiple": true,
- "required": true,
- "types": [
- {
- "type": "variable_declarator",
- "named": true
- }
- ]
- }
- },
- {
- "type": "variable_declarator",
- "named": true,
- "fields": {
- "name": {
- "multiple": false,
- "required": true,
- "types": [
- {
- "type": "array_pattern",
- "named": true
- },
- {
- "type": "identifier",
- "named": true
- },
- {
- "type": "object_pattern",
- "named": true
- }
- ]
- },
- "type": {
- "multiple": false,
- "required": false,
- "types": [
- {
- "type": "type_annotation",
- "named": true
- }
- ]
- },
- "value": {
- "multiple": false,
- "required": false,
- "types": [
- {
- "type": "expression",
- "named": true
- }
- ]
- }
- }
- },
- {
- "type": "while_statement",
- "named": true,
- "fields": {
- "body": {
- "multiple": false,
- "required": true,
- "types": [
- {
- "type": "statement",
- "named": true
- }
- ]
- },
- "condition": {
- "multiple": false,
- "required": true,
- "types": [
- {
- "type": "parenthesized_expression",
- "named": true
- }
- ]
- }
- }
- },
- {
- "type": "with_statement",
- "named": true,
- "fields": {
- "body": {
- "multiple": false,
- "required": true,
- "types": [
- {
- "type": "statement",
- "named": true
- }
- ]
- },
- "object": {
- "multiple": false,
- "required": true,
- "types": [
- {
- "type": "parenthesized_expression",
- "named": true
- }
- ]
- }
- }
- },
- {
- "type": "yield_expression",
- "named": true,
- "fields": {},
- "children": {
- "multiple": false,
- "required": false,
- "types": [
- {
- "type": "expression",
- "named": true
- }
- ]
- }
- },
- {
- "type": "!",
- "named": false
- },
- {
- "type": "!=",
- "named": false
- },
- {
- "type": "!==",
- "named": false
- },
- {
- "type": "\"",
- "named": false
- },
- {
- "type": "${",
- "named": false
- },
- {
- "type": "%",
- "named": false
- },
- {
- "type": "%=",
- "named": false
- },
- {
- "type": "&",
- "named": false
- },
- {
- "type": "&&",
- "named": false
- },
- {
- "type": "&&=",
- "named": false
- },
- {
- "type": "&=",
- "named": false
- },
- {
- "type": "'",
- "named": false
- },
- {
- "type": "(",
- "named": false
- },
- {
- "type": ")",
- "named": false
- },
- {
- "type": "*",
- "named": false
- },
- {
- "type": "**",
- "named": false
- },
- {
- "type": "**=",
- "named": false
- },
- {
- "type": "*=",
- "named": false
- },
- {
- "type": "+",
- "named": false
- },
- {
- "type": "++",
- "named": false
- },
- {
- "type": "+=",
- "named": false
- },
- {
- "type": "+?:",
- "named": false
- },
- {
- "type": ",",
- "named": false
- },
- {
- "type": "-",
- "named": false
- },
- {
- "type": "--",
- "named": false
- },
- {
- "type": "-=",
- "named": false
- },
- {
- "type": "-?:",
- "named": false
- },
- {
- "type": ".",
- "named": false
- },
- {
- "type": "...",
- "named": false
- },
- {
- "type": "/",
- "named": false
- },
- {
- "type": "/=",
- "named": false
- },
- {
- "type": "/>",
- "named": false
- },
- {
- "type": ":",
- "named": false
- },
- {
- "type": ";",
- "named": false
- },
- {
- "type": "<",
- "named": false
- },
- {
- "type": "",
- "named": false
- },
- {
- "type": "<<",
- "named": false
- },
- {
- "type": "<<=",
- "named": false
- },
- {
- "type": "<=",
- "named": false
- },
- {
- "type": "=",
- "named": false
- },
- {
- "type": "==",
- "named": false
- },
- {
- "type": "===",
- "named": false
- },
- {
- "type": "=>",
- "named": false
- },
- {
- "type": ">",
- "named": false
- },
- {
- "type": ">=",
- "named": false
- },
- {
- "type": ">>",
- "named": false
- },
- {
- "type": ">>=",
- "named": false
- },
- {
- "type": ">>>",
- "named": false
- },
- {
- "type": ">>>=",
- "named": false
- },
- {
- "type": "?",
- "named": false
- },
- {
- "type": "?.",
- "named": false
- },
- {
- "type": "?:",
- "named": false
- },
- {
- "type": "??",
- "named": false
- },
- {
- "type": "??=",
- "named": false
- },
- {
- "type": "@",
- "named": false
- },
- {
- "type": "[",
- "named": false
- },
- {
- "type": "]",
- "named": false
- },
- {
- "type": "^",
- "named": false
- },
- {
- "type": "^=",
- "named": false
- },
- {
- "type": "`",
- "named": false
- },
- {
- "type": "abstract",
- "named": false
- },
- {
- "type": "accessor",
- "named": false
- },
- {
- "type": "any",
- "named": false
- },
- {
- "type": "as",
- "named": false
- },
- {
- "type": "assert",
- "named": false
- },
- {
- "type": "asserts",
- "named": false
- },
- {
- "type": "async",
- "named": false
- },
- {
- "type": "await",
- "named": false
- },
- {
- "type": "boolean",
- "named": false
- },
- {
- "type": "break",
- "named": false
- },
- {
- "type": "case",
- "named": false
- },
- {
- "type": "catch",
- "named": false
- },
- {
- "type": "class",
- "named": false
- },
- {
- "type": "comment",
- "named": true
- },
- {
- "type": "const",
- "named": false
- },
- {
- "type": "continue",
- "named": false
- },
- {
- "type": "debugger",
- "named": false
- },
- {
- "type": "declare",
- "named": false
- },
- {
- "type": "default",
- "named": false
- },
- {
- "type": "delete",
- "named": false
- },
- {
- "type": "do",
- "named": false
- },
- {
- "type": "else",
- "named": false
- },
- {
- "type": "enum",
- "named": false
- },
- {
- "type": "escape_sequence",
- "named": true
- },
- {
- "type": "export",
- "named": false
- },
- {
- "type": "extends",
- "named": false
- },
- {
- "type": "false",
- "named": true
- },
- {
- "type": "finally",
- "named": false
- },
- {
- "type": "for",
- "named": false
- },
- {
- "type": "from",
- "named": false
- },
- {
- "type": "function",
- "named": false
- },
- {
- "type": "get",
- "named": false
- },
- {
- "type": "glimmer_closing_tag",
- "named": true
- },
- {
- "type": "glimmer_opening_tag",
- "named": true
- },
- {
- "type": "global",
- "named": false
- },
- {
- "type": "hash_bang_line",
- "named": true
- },
- {
- "type": "html_character_reference",
- "named": true
- },
- {
- "type": "html_comment",
- "named": true
- },
- {
- "type": "if",
- "named": false
- },
- {
- "type": "implements",
- "named": false
- },
- {
- "type": "import",
- "named": false
- },
- {
- "type": "in",
- "named": false
- },
- {
- "type": "infer",
- "named": false
- },
- {
- "type": "instanceof",
- "named": false
- },
- {
- "type": "interface",
- "named": false
- },
- {
- "type": "is",
- "named": false
- },
- {
- "type": "keyof",
- "named": false
- },
- {
- "type": "let",
- "named": false
- },
- {
- "type": "module",
- "named": false
- },
- {
- "type": "namespace",
- "named": false
- },
- {
- "type": "never",
- "named": false
- },
- {
- "type": "new",
- "named": false
- },
- {
- "type": "null",
- "named": true
- },
- {
- "type": "number",
- "named": true
- },
- {
- "type": "number",
- "named": false
- },
- {
- "type": "object",
- "named": false
- },
- {
- "type": "of",
- "named": false
- },
- {
- "type": "override",
- "named": false
- },
- {
- "type": "private",
- "named": false
- },
- {
- "type": "private_property_identifier",
- "named": true
- },
- {
- "type": "property_identifier",
- "named": true
- },
- {
- "type": "protected",
- "named": false
- },
- {
- "type": "public",
- "named": false
- },
- {
- "type": "readonly",
- "named": false
- },
- {
- "type": "regex_flags",
- "named": true
- },
- {
- "type": "regex_pattern",
- "named": true
- },
- {
- "type": "require",
- "named": false
- },
- {
- "type": "return",
- "named": false
- },
- {
- "type": "satisfies",
- "named": false
- },
- {
- "type": "set",
- "named": false
- },
- {
- "type": "shorthand_property_identifier",
- "named": true
- },
- {
- "type": "shorthand_property_identifier_pattern",
- "named": true
- },
- {
- "type": "statement_identifier",
- "named": true
- },
- {
- "type": "static",
- "named": false
- },
- {
- "type": "string",
- "named": false
- },
- {
- "type": "string_fragment",
- "named": true
- },
- {
- "type": "super",
- "named": true
- },
- {
- "type": "switch",
- "named": false
- },
- {
- "type": "symbol",
- "named": false
- },
- {
- "type": "target",
- "named": false
- },
- {
- "type": "this",
- "named": true
- },
- {
- "type": "this_type",
- "named": true
- },
- {
- "type": "throw",
- "named": false
- },
- {
- "type": "true",
- "named": true
- },
- {
- "type": "try",
- "named": false
- },
- {
- "type": "type",
- "named": false
- },
- {
- "type": "type_identifier",
- "named": true
- },
- {
- "type": "typeof",
- "named": false
- },
- {
- "type": "undefined",
- "named": true
- },
- {
- "type": "unique symbol",
- "named": false
- },
- {
- "type": "unknown",
- "named": false
- },
- {
- "type": "using",
- "named": false
- },
- {
- "type": "var",
- "named": false
- },
- {
- "type": "void",
- "named": false
- },
- {
- "type": "while",
- "named": false
- },
- {
- "type": "with",
- "named": false
- },
- {
- "type": "yield",
- "named": false
- },
- {
- "type": "{",
- "named": false
- },
- {
- "type": "{|",
- "named": false
- },
- {
- "type": "|",
- "named": false
- },
- {
- "type": "|=",
- "named": false
- },
- {
- "type": "||",
- "named": false
- },
- {
- "type": "||=",
- "named": false
- },
- {
- "type": "|}",
- "named": false
- },
- {
- "type": "}",
- "named": false
- },
- {
- "type": "~",
- "named": false
- }
-]
\ No newline at end of file
diff --git a/gts/src/parser.c b/gts/src/parser.c
deleted file mode 100644
index 5c69810e..00000000
--- a/gts/src/parser.c
+++ /dev/null
@@ -1,279573 +0,0 @@
-#include "tree_sitter/parser.h"
-
-#if defined(__GNUC__) || defined(__clang__)
-#pragma GCC diagnostic ignored "-Wmissing-field-initializers"
-#endif
-
-#ifdef _MSC_VER
-#pragma optimize("", off)
-#elif defined(__clang__)
-#pragma clang optimize off
-#elif defined(__GNUC__)
-#pragma GCC optimize ("O0")
-#endif
-
-#define LANGUAGE_VERSION 14
-#define STATE_COUNT 5925
-#define LARGE_STATE_COUNT 1132
-#define SYMBOL_COUNT 399
-#define ALIAS_COUNT 7
-#define TOKEN_COUNT 175
-#define EXTERNAL_TOKEN_COUNT 9
-#define FIELD_COUNT 44
-#define MAX_ALIAS_SEQUENCE_LENGTH 10
-#define PRODUCTION_ID_COUNT 345
-
-enum ts_symbol_identifiers {
- sym_identifier = 1,
- sym_hash_bang_line = 2,
- anon_sym_export = 3,
- anon_sym_STAR = 4,
- anon_sym_default = 5,
- anon_sym_type = 6,
- anon_sym_EQ = 7,
- anon_sym_as = 8,
- anon_sym_namespace = 9,
- anon_sym_LBRACE = 10,
- anon_sym_COMMA = 11,
- anon_sym_RBRACE = 12,
- anon_sym_typeof = 13,
- anon_sym_import = 14,
- anon_sym_from = 15,
- anon_sym_with = 16,
- anon_sym_assert = 17,
- anon_sym_var = 18,
- anon_sym_let = 19,
- anon_sym_const = 20,
- anon_sym_BANG = 21,
- anon_sym_else = 22,
- anon_sym_if = 23,
- anon_sym_switch = 24,
- anon_sym_for = 25,
- anon_sym_LPAREN = 26,
- anon_sym_RPAREN = 27,
- anon_sym_await = 28,
- anon_sym_in = 29,
- anon_sym_of = 30,
- anon_sym_while = 31,
- anon_sym_do = 32,
- anon_sym_try = 33,
- anon_sym_break = 34,
- anon_sym_continue = 35,
- anon_sym_debugger = 36,
- anon_sym_return = 37,
- anon_sym_throw = 38,
- anon_sym_SEMI = 39,
- anon_sym_COLON = 40,
- anon_sym_case = 41,
- anon_sym_catch = 42,
- anon_sym_finally = 43,
- anon_sym_yield = 44,
- anon_sym_LBRACK = 45,
- anon_sym_RBRACK = 46,
- sym__glimmer_template_content = 47,
- sym_glimmer_opening_tag = 48,
- sym_glimmer_closing_tag = 49,
- aux_sym_jsx_text_token1 = 50,
- aux_sym_jsx_text_token2 = 51,
- sym_html_character_reference = 52,
- anon_sym_GT = 53,
- sym_jsx_identifier = 54,
- anon_sym_DOT = 55,
- anon_sym_LT_SLASH = 56,
- anon_sym_SLASH_GT = 57,
- anon_sym_DQUOTE = 58,
- anon_sym_SQUOTE = 59,
- sym_unescaped_double_jsx_string_fragment = 60,
- sym_unescaped_single_jsx_string_fragment = 61,
- anon_sym_class = 62,
- anon_sym_async = 63,
- anon_sym_function = 64,
- anon_sym_EQ_GT = 65,
- anon_sym_QMARK_DOT = 66,
- anon_sym_new = 67,
- anon_sym_using = 68,
- anon_sym_PLUS_EQ = 69,
- anon_sym_DASH_EQ = 70,
- anon_sym_STAR_EQ = 71,
- anon_sym_SLASH_EQ = 72,
- anon_sym_PERCENT_EQ = 73,
- anon_sym_CARET_EQ = 74,
- anon_sym_AMP_EQ = 75,
- anon_sym_PIPE_EQ = 76,
- anon_sym_GT_GT_EQ = 77,
- anon_sym_GT_GT_GT_EQ = 78,
- anon_sym_LT_LT_EQ = 79,
- anon_sym_STAR_STAR_EQ = 80,
- anon_sym_AMP_AMP_EQ = 81,
- anon_sym_PIPE_PIPE_EQ = 82,
- anon_sym_QMARK_QMARK_EQ = 83,
- anon_sym_DOT_DOT_DOT = 84,
- anon_sym_AMP_AMP = 85,
- anon_sym_PIPE_PIPE = 86,
- anon_sym_GT_GT = 87,
- anon_sym_GT_GT_GT = 88,
- anon_sym_LT_LT = 89,
- anon_sym_AMP = 90,
- anon_sym_CARET = 91,
- anon_sym_PIPE = 92,
- anon_sym_PLUS = 93,
- anon_sym_DASH = 94,
- anon_sym_SLASH = 95,
- anon_sym_PERCENT = 96,
- anon_sym_STAR_STAR = 97,
- anon_sym_LT = 98,
- anon_sym_LT_EQ = 99,
- anon_sym_EQ_EQ = 100,
- anon_sym_EQ_EQ_EQ = 101,
- anon_sym_BANG_EQ = 102,
- anon_sym_BANG_EQ_EQ = 103,
- anon_sym_GT_EQ = 104,
- anon_sym_QMARK_QMARK = 105,
- anon_sym_instanceof = 106,
- anon_sym_TILDE = 107,
- anon_sym_void = 108,
- anon_sym_delete = 109,
- anon_sym_PLUS_PLUS = 110,
- anon_sym_DASH_DASH = 111,
- sym_unescaped_double_string_fragment = 112,
- sym_unescaped_single_string_fragment = 113,
- sym_escape_sequence = 114,
- sym_comment = 115,
- anon_sym_BQUOTE = 116,
- anon_sym_DOLLAR_LBRACE = 117,
- anon_sym_SLASH2 = 118,
- sym_regex_pattern = 119,
- sym_regex_flags = 120,
- sym_number = 121,
- sym_private_property_identifier = 122,
- anon_sym_target = 123,
- sym_this = 124,
- sym_super = 125,
- sym_true = 126,
- sym_false = 127,
- sym_null = 128,
- sym_undefined = 129,
- anon_sym_AT = 130,
- anon_sym_static = 131,
- anon_sym_readonly = 132,
- anon_sym_get = 133,
- anon_sym_set = 134,
- anon_sym_QMARK = 135,
- anon_sym_declare = 136,
- anon_sym_public = 137,
- anon_sym_private = 138,
- anon_sym_protected = 139,
- anon_sym_override = 140,
- anon_sym_module = 141,
- anon_sym_any = 142,
- anon_sym_number = 143,
- anon_sym_boolean = 144,
- anon_sym_string = 145,
- anon_sym_symbol = 146,
- anon_sym_object = 147,
- anon_sym_abstract = 148,
- anon_sym_accessor = 149,
- anon_sym_satisfies = 150,
- anon_sym_require = 151,
- anon_sym_extends = 152,
- anon_sym_implements = 153,
- anon_sym_global = 154,
- anon_sym_interface = 155,
- anon_sym_enum = 156,
- anon_sym_DASH_QMARK_COLON = 157,
- anon_sym_PLUS_QMARK_COLON = 158,
- anon_sym_QMARK_COLON = 159,
- anon_sym_asserts = 160,
- anon_sym_infer = 161,
- anon_sym_is = 162,
- anon_sym_keyof = 163,
- anon_sym_unique = 164,
- anon_sym_unknown = 165,
- anon_sym_never = 166,
- anon_sym_LBRACE_PIPE = 167,
- anon_sym_PIPE_RBRACE = 168,
- sym__automatic_semicolon = 169,
- sym__template_chars = 170,
- sym__ternary_qmark = 171,
- sym_html_comment = 172,
- sym__function_signature_automatic_semicolon = 173,
- sym___error_recovery = 174,
- sym_program = 175,
- sym_export_statement = 176,
- sym_namespace_export = 177,
- sym_export_clause = 178,
- sym_export_specifier = 179,
- sym__module_export_name = 180,
- sym_declaration = 181,
- sym_import = 182,
- sym_import_statement = 183,
- sym_import_clause = 184,
- sym__from_clause = 185,
- sym_namespace_import = 186,
- sym_named_imports = 187,
- sym_import_specifier = 188,
- sym_import_attribute = 189,
- sym_statement = 190,
- sym_expression_statement = 191,
- sym_variable_declaration = 192,
- sym_lexical_declaration = 193,
- sym_variable_declarator = 194,
- sym_statement_block = 195,
- sym_else_clause = 196,
- sym_if_statement = 197,
- sym_switch_statement = 198,
- sym_for_statement = 199,
- sym_for_in_statement = 200,
- sym__for_header = 201,
- sym_while_statement = 202,
- sym_do_statement = 203,
- sym_try_statement = 204,
- sym_with_statement = 205,
- sym_break_statement = 206,
- sym_continue_statement = 207,
- sym_debugger_statement = 208,
- sym_return_statement = 209,
- sym_throw_statement = 210,
- sym_empty_statement = 211,
- sym_labeled_statement = 212,
- sym_switch_body = 213,
- sym_switch_case = 214,
- sym_switch_default = 215,
- sym_catch_clause = 216,
- sym_finally_clause = 217,
- sym_parenthesized_expression = 218,
- sym_expression = 219,
- sym_primary_expression = 220,
- sym_yield_expression = 221,
- sym_object = 222,
- sym_object_pattern = 223,
- sym_assignment_pattern = 224,
- sym_object_assignment_pattern = 225,
- sym_array = 226,
- sym_array_pattern = 227,
- sym_glimmer_template = 228,
- sym_jsx_element = 229,
- sym_jsx_text = 230,
- sym_jsx_expression = 231,
- sym_jsx_opening_element = 232,
- sym_nested_identifier = 233,
- sym_jsx_namespace_name = 234,
- sym_jsx_closing_element = 235,
- sym_jsx_self_closing_element = 236,
- sym_jsx_attribute = 237,
- sym__jsx_string = 238,
- sym_class = 239,
- sym_class_declaration = 240,
- sym_class_heritage = 241,
- sym_function_expression = 242,
- sym_function_declaration = 243,
- sym_generator_function = 244,
- sym_generator_function_declaration = 245,
- sym_arrow_function = 246,
- sym__call_signature = 247,
- sym__formal_parameter = 248,
- sym_optional_chain = 249,
- sym_call_expression = 250,
- sym_new_expression = 251,
- sym_await_expression = 252,
- sym_member_expression = 253,
- sym_subscript_expression = 254,
- sym_assignment_expression = 255,
- sym__augmented_assignment_lhs = 256,
- sym_augmented_assignment_expression = 257,
- sym__initializer = 258,
- sym__destructuring_pattern = 259,
- sym_spread_element = 260,
- sym_ternary_expression = 261,
- sym_binary_expression = 262,
- sym_unary_expression = 263,
- sym_update_expression = 264,
- sym_sequence_expression = 265,
- sym_string = 266,
- sym_template_string = 267,
- sym_template_substitution = 268,
- sym_regex = 269,
- sym_meta_property = 270,
- sym_arguments = 271,
- sym_decorator = 272,
- sym_decorator_member_expression = 273,
- sym_decorator_call_expression = 274,
- sym_class_body = 275,
- sym_formal_parameters = 276,
- sym_class_static_block = 277,
- sym_pattern = 278,
- sym_rest_pattern = 279,
- sym_method_definition = 280,
- sym_pair = 281,
- sym_pair_pattern = 282,
- sym__property_name = 283,
- sym_computed_property_name = 284,
- sym_public_field_definition = 285,
- sym__import_identifier = 286,
- sym_non_null_expression = 287,
- sym_method_signature = 288,
- sym_abstract_method_signature = 289,
- sym_function_signature = 290,
- sym_decorator_parenthesized_expression = 291,
- sym_as_expression = 292,
- sym_satisfies_expression = 293,
- sym_instantiation_expression = 294,
- sym_import_require_clause = 295,
- sym_extends_clause = 296,
- sym__extends_clause_single = 297,
- sym_implements_clause = 298,
- sym_ambient_declaration = 299,
- sym_abstract_class_declaration = 300,
- sym_module = 301,
- sym_internal_module = 302,
- sym__module = 303,
- sym_import_alias = 304,
- sym_nested_type_identifier = 305,
- sym_interface_declaration = 306,
- sym_extends_type_clause = 307,
- sym_enum_declaration = 308,
- sym_enum_body = 309,
- sym_enum_assignment = 310,
- sym_type_alias_declaration = 311,
- sym_accessibility_modifier = 312,
- sym_override_modifier = 313,
- sym_required_parameter = 314,
- sym_optional_parameter = 315,
- sym__parameter_name = 316,
- sym_omitting_type_annotation = 317,
- sym_adding_type_annotation = 318,
- sym_opting_type_annotation = 319,
- sym_type_annotation = 320,
- sym__type_query_member_expression_in_type_annotation = 321,
- sym__type_query_call_expression_in_type_annotation = 322,
- sym_asserts = 323,
- sym_asserts_annotation = 324,
- sym_type = 325,
- sym_tuple_parameter = 326,
- sym_optional_tuple_parameter = 327,
- sym_optional_type = 328,
- sym_rest_type = 329,
- sym__tuple_type_member = 330,
- sym_constructor_type = 331,
- sym_primary_type = 332,
- sym_template_type = 333,
- sym_template_literal_type = 334,
- sym_infer_type = 335,
- sym_conditional_type = 336,
- sym_generic_type = 337,
- sym_type_predicate = 338,
- sym_type_predicate_annotation = 339,
- sym__type_query_member_expression = 340,
- sym__type_query_subscript_expression = 341,
- sym__type_query_call_expression = 342,
- sym__type_query_instantiation_expression = 343,
- sym_type_query = 344,
- sym_index_type_query = 345,
- sym_lookup_type = 346,
- sym_mapped_type_clause = 347,
- sym_literal_type = 348,
- sym__number = 349,
- sym_existential_type = 350,
- sym_flow_maybe_type = 351,
- sym_parenthesized_type = 352,
- sym_predefined_type = 353,
- sym_type_arguments = 354,
- sym_object_type = 355,
- sym_call_signature = 356,
- sym_property_signature = 357,
- sym_type_parameters = 358,
- sym_type_parameter = 359,
- sym_default_type = 360,
- sym_constraint = 361,
- sym_construct_signature = 362,
- sym_index_signature = 363,
- sym_array_type = 364,
- sym_tuple_type = 365,
- sym_readonly_type = 366,
- sym_union_type = 367,
- sym_intersection_type = 368,
- sym_function_type = 369,
- aux_sym_program_repeat1 = 370,
- aux_sym_export_statement_repeat1 = 371,
- aux_sym_export_clause_repeat1 = 372,
- aux_sym_named_imports_repeat1 = 373,
- aux_sym_variable_declaration_repeat1 = 374,
- aux_sym_switch_body_repeat1 = 375,
- aux_sym_object_repeat1 = 376,
- aux_sym_object_pattern_repeat1 = 377,
- aux_sym_array_repeat1 = 378,
- aux_sym_array_pattern_repeat1 = 379,
- aux_sym_glimmer_template_repeat1 = 380,
- aux_sym_jsx_element_repeat1 = 381,
- aux_sym__jsx_string_repeat1 = 382,
- aux_sym__jsx_string_repeat2 = 383,
- aux_sym_sequence_expression_repeat1 = 384,
- aux_sym_string_repeat1 = 385,
- aux_sym_string_repeat2 = 386,
- aux_sym_template_string_repeat1 = 387,
- aux_sym_class_body_repeat1 = 388,
- aux_sym_formal_parameters_repeat1 = 389,
- aux_sym__jsx_start_opening_element_repeat1 = 390,
- aux_sym_extends_clause_repeat1 = 391,
- aux_sym_implements_clause_repeat1 = 392,
- aux_sym_extends_type_clause_repeat1 = 393,
- aux_sym_enum_body_repeat1 = 394,
- aux_sym_template_literal_type_repeat1 = 395,
- aux_sym_object_type_repeat1 = 396,
- aux_sym_type_parameters_repeat1 = 397,
- aux_sym_tuple_type_repeat1 = 398,
- alias_sym_interface_body = 399,
- alias_sym_property_identifier = 400,
- alias_sym_shorthand_property_identifier = 401,
- alias_sym_shorthand_property_identifier_pattern = 402,
- alias_sym_statement_identifier = 403,
- alias_sym_this_type = 404,
- alias_sym_type_identifier = 405,
-};
-
-static const char * const ts_symbol_names[] = {
- [ts_builtin_sym_end] = "end",
- [sym_identifier] = "identifier",
- [sym_hash_bang_line] = "hash_bang_line",
- [anon_sym_export] = "export",
- [anon_sym_STAR] = "*",
- [anon_sym_default] = "default",
- [anon_sym_type] = "type",
- [anon_sym_EQ] = "=",
- [anon_sym_as] = "as",
- [anon_sym_namespace] = "namespace",
- [anon_sym_LBRACE] = "{",
- [anon_sym_COMMA] = ",",
- [anon_sym_RBRACE] = "}",
- [anon_sym_typeof] = "typeof",
- [anon_sym_import] = "import",
- [anon_sym_from] = "from",
- [anon_sym_with] = "with",
- [anon_sym_assert] = "assert",
- [anon_sym_var] = "var",
- [anon_sym_let] = "let",
- [anon_sym_const] = "const",
- [anon_sym_BANG] = "!",
- [anon_sym_else] = "else",
- [anon_sym_if] = "if",
- [anon_sym_switch] = "switch",
- [anon_sym_for] = "for",
- [anon_sym_LPAREN] = "(",
- [anon_sym_RPAREN] = ")",
- [anon_sym_await] = "await",
- [anon_sym_in] = "in",
- [anon_sym_of] = "of",
- [anon_sym_while] = "while",
- [anon_sym_do] = "do",
- [anon_sym_try] = "try",
- [anon_sym_break] = "break",
- [anon_sym_continue] = "continue",
- [anon_sym_debugger] = "debugger",
- [anon_sym_return] = "return",
- [anon_sym_throw] = "throw",
- [anon_sym_SEMI] = ";",
- [anon_sym_COLON] = ":",
- [anon_sym_case] = "case",
- [anon_sym_catch] = "catch",
- [anon_sym_finally] = "finally",
- [anon_sym_yield] = "yield",
- [anon_sym_LBRACK] = "[",
- [anon_sym_RBRACK] = "]",
- [sym__glimmer_template_content] = "_glimmer_template_content",
- [sym_glimmer_opening_tag] = "glimmer_opening_tag",
- [sym_glimmer_closing_tag] = "glimmer_closing_tag",
- [aux_sym_jsx_text_token1] = "jsx_text_token1",
- [aux_sym_jsx_text_token2] = "jsx_text_token2",
- [sym_html_character_reference] = "html_character_reference",
- [anon_sym_GT] = ">",
- [sym_jsx_identifier] = "identifier",
- [anon_sym_DOT] = ".",
- [anon_sym_LT_SLASH] = "",
- [anon_sym_SLASH_GT] = "/>",
- [anon_sym_DQUOTE] = "\"",
- [anon_sym_SQUOTE] = "'",
- [sym_unescaped_double_jsx_string_fragment] = "string_fragment",
- [sym_unescaped_single_jsx_string_fragment] = "string_fragment",
- [anon_sym_class] = "class",
- [anon_sym_async] = "async",
- [anon_sym_function] = "function",
- [anon_sym_EQ_GT] = "=>",
- [anon_sym_QMARK_DOT] = "\?.",
- [anon_sym_new] = "new",
- [anon_sym_using] = "using",
- [anon_sym_PLUS_EQ] = "+=",
- [anon_sym_DASH_EQ] = "-=",
- [anon_sym_STAR_EQ] = "*=",
- [anon_sym_SLASH_EQ] = "/=",
- [anon_sym_PERCENT_EQ] = "%=",
- [anon_sym_CARET_EQ] = "^=",
- [anon_sym_AMP_EQ] = "&=",
- [anon_sym_PIPE_EQ] = "|=",
- [anon_sym_GT_GT_EQ] = ">>=",
- [anon_sym_GT_GT_GT_EQ] = ">>>=",
- [anon_sym_LT_LT_EQ] = "<<=",
- [anon_sym_STAR_STAR_EQ] = "**=",
- [anon_sym_AMP_AMP_EQ] = "&&=",
- [anon_sym_PIPE_PIPE_EQ] = "||=",
- [anon_sym_QMARK_QMARK_EQ] = "\?\?=",
- [anon_sym_DOT_DOT_DOT] = "...",
- [anon_sym_AMP_AMP] = "&&",
- [anon_sym_PIPE_PIPE] = "||",
- [anon_sym_GT_GT] = ">>",
- [anon_sym_GT_GT_GT] = ">>>",
- [anon_sym_LT_LT] = "<<",
- [anon_sym_AMP] = "&",
- [anon_sym_CARET] = "^",
- [anon_sym_PIPE] = "|",
- [anon_sym_PLUS] = "+",
- [anon_sym_DASH] = "-",
- [anon_sym_SLASH] = "/",
- [anon_sym_PERCENT] = "%",
- [anon_sym_STAR_STAR] = "**",
- [anon_sym_LT] = "<",
- [anon_sym_LT_EQ] = "<=",
- [anon_sym_EQ_EQ] = "==",
- [anon_sym_EQ_EQ_EQ] = "===",
- [anon_sym_BANG_EQ] = "!=",
- [anon_sym_BANG_EQ_EQ] = "!==",
- [anon_sym_GT_EQ] = ">=",
- [anon_sym_QMARK_QMARK] = "\?\?",
- [anon_sym_instanceof] = "instanceof",
- [anon_sym_TILDE] = "~",
- [anon_sym_void] = "void",
- [anon_sym_delete] = "delete",
- [anon_sym_PLUS_PLUS] = "++",
- [anon_sym_DASH_DASH] = "--",
- [sym_unescaped_double_string_fragment] = "string_fragment",
- [sym_unescaped_single_string_fragment] = "string_fragment",
- [sym_escape_sequence] = "escape_sequence",
- [sym_comment] = "comment",
- [anon_sym_BQUOTE] = "`",
- [anon_sym_DOLLAR_LBRACE] = "${",
- [anon_sym_SLASH2] = "/",
- [sym_regex_pattern] = "regex_pattern",
- [sym_regex_flags] = "regex_flags",
- [sym_number] = "number",
- [sym_private_property_identifier] = "private_property_identifier",
- [anon_sym_target] = "target",
- [sym_this] = "this",
- [sym_super] = "super",
- [sym_true] = "true",
- [sym_false] = "false",
- [sym_null] = "null",
- [sym_undefined] = "undefined",
- [anon_sym_AT] = "@",
- [anon_sym_static] = "static",
- [anon_sym_readonly] = "readonly",
- [anon_sym_get] = "get",
- [anon_sym_set] = "set",
- [anon_sym_QMARK] = "\?",
- [anon_sym_declare] = "declare",
- [anon_sym_public] = "public",
- [anon_sym_private] = "private",
- [anon_sym_protected] = "protected",
- [anon_sym_override] = "override",
- [anon_sym_module] = "module",
- [anon_sym_any] = "any",
- [anon_sym_number] = "number",
- [anon_sym_boolean] = "boolean",
- [anon_sym_string] = "string",
- [anon_sym_symbol] = "symbol",
- [anon_sym_object] = "object",
- [anon_sym_abstract] = "abstract",
- [anon_sym_accessor] = "accessor",
- [anon_sym_satisfies] = "satisfies",
- [anon_sym_require] = "require",
- [anon_sym_extends] = "extends",
- [anon_sym_implements] = "implements",
- [anon_sym_global] = "global",
- [anon_sym_interface] = "interface",
- [anon_sym_enum] = "enum",
- [anon_sym_DASH_QMARK_COLON] = "-\?:",
- [anon_sym_PLUS_QMARK_COLON] = "+\?:",
- [anon_sym_QMARK_COLON] = "\?:",
- [anon_sym_asserts] = "asserts",
- [anon_sym_infer] = "infer",
- [anon_sym_is] = "is",
- [anon_sym_keyof] = "keyof",
- [anon_sym_unique] = "unique symbol",
- [anon_sym_unknown] = "unknown",
- [anon_sym_never] = "never",
- [anon_sym_LBRACE_PIPE] = "{|",
- [anon_sym_PIPE_RBRACE] = "|}",
- [sym__automatic_semicolon] = "_automatic_semicolon",
- [sym__template_chars] = "string_fragment",
- [sym__ternary_qmark] = "\?",
- [sym_html_comment] = "html_comment",
- [sym__function_signature_automatic_semicolon] = "_function_signature_automatic_semicolon",
- [sym___error_recovery] = "__error_recovery",
- [sym_program] = "program",
- [sym_export_statement] = "export_statement",
- [sym_namespace_export] = "namespace_export",
- [sym_export_clause] = "export_clause",
- [sym_export_specifier] = "export_specifier",
- [sym__module_export_name] = "_module_export_name",
- [sym_declaration] = "declaration",
- [sym_import] = "import",
- [sym_import_statement] = "import_statement",
- [sym_import_clause] = "import_clause",
- [sym__from_clause] = "_from_clause",
- [sym_namespace_import] = "namespace_import",
- [sym_named_imports] = "named_imports",
- [sym_import_specifier] = "import_specifier",
- [sym_import_attribute] = "import_attribute",
- [sym_statement] = "statement",
- [sym_expression_statement] = "expression_statement",
- [sym_variable_declaration] = "variable_declaration",
- [sym_lexical_declaration] = "lexical_declaration",
- [sym_variable_declarator] = "variable_declarator",
- [sym_statement_block] = "statement_block",
- [sym_else_clause] = "else_clause",
- [sym_if_statement] = "if_statement",
- [sym_switch_statement] = "switch_statement",
- [sym_for_statement] = "for_statement",
- [sym_for_in_statement] = "for_in_statement",
- [sym__for_header] = "_for_header",
- [sym_while_statement] = "while_statement",
- [sym_do_statement] = "do_statement",
- [sym_try_statement] = "try_statement",
- [sym_with_statement] = "with_statement",
- [sym_break_statement] = "break_statement",
- [sym_continue_statement] = "continue_statement",
- [sym_debugger_statement] = "debugger_statement",
- [sym_return_statement] = "return_statement",
- [sym_throw_statement] = "throw_statement",
- [sym_empty_statement] = "empty_statement",
- [sym_labeled_statement] = "labeled_statement",
- [sym_switch_body] = "switch_body",
- [sym_switch_case] = "switch_case",
- [sym_switch_default] = "switch_default",
- [sym_catch_clause] = "catch_clause",
- [sym_finally_clause] = "finally_clause",
- [sym_parenthesized_expression] = "parenthesized_expression",
- [sym_expression] = "expression",
- [sym_primary_expression] = "primary_expression",
- [sym_yield_expression] = "yield_expression",
- [sym_object] = "object",
- [sym_object_pattern] = "object_pattern",
- [sym_assignment_pattern] = "assignment_pattern",
- [sym_object_assignment_pattern] = "object_assignment_pattern",
- [sym_array] = "array",
- [sym_array_pattern] = "array_pattern",
- [sym_glimmer_template] = "glimmer_template",
- [sym_jsx_element] = "jsx_element",
- [sym_jsx_text] = "jsx_text",
- [sym_jsx_expression] = "jsx_expression",
- [sym_jsx_opening_element] = "jsx_opening_element",
- [sym_nested_identifier] = "nested_identifier",
- [sym_jsx_namespace_name] = "jsx_namespace_name",
- [sym_jsx_closing_element] = "jsx_closing_element",
- [sym_jsx_self_closing_element] = "jsx_self_closing_element",
- [sym_jsx_attribute] = "jsx_attribute",
- [sym__jsx_string] = "string",
- [sym_class] = "class",
- [sym_class_declaration] = "class_declaration",
- [sym_class_heritage] = "class_heritage",
- [sym_function_expression] = "function_expression",
- [sym_function_declaration] = "function_declaration",
- [sym_generator_function] = "generator_function",
- [sym_generator_function_declaration] = "generator_function_declaration",
- [sym_arrow_function] = "arrow_function",
- [sym__call_signature] = "_call_signature",
- [sym__formal_parameter] = "_formal_parameter",
- [sym_optional_chain] = "optional_chain",
- [sym_call_expression] = "call_expression",
- [sym_new_expression] = "new_expression",
- [sym_await_expression] = "await_expression",
- [sym_member_expression] = "member_expression",
- [sym_subscript_expression] = "subscript_expression",
- [sym_assignment_expression] = "assignment_expression",
- [sym__augmented_assignment_lhs] = "_augmented_assignment_lhs",
- [sym_augmented_assignment_expression] = "augmented_assignment_expression",
- [sym__initializer] = "_initializer",
- [sym__destructuring_pattern] = "_destructuring_pattern",
- [sym_spread_element] = "spread_element",
- [sym_ternary_expression] = "ternary_expression",
- [sym_binary_expression] = "binary_expression",
- [sym_unary_expression] = "unary_expression",
- [sym_update_expression] = "update_expression",
- [sym_sequence_expression] = "sequence_expression",
- [sym_string] = "string",
- [sym_template_string] = "template_string",
- [sym_template_substitution] = "template_substitution",
- [sym_regex] = "regex",
- [sym_meta_property] = "meta_property",
- [sym_arguments] = "arguments",
- [sym_decorator] = "decorator",
- [sym_decorator_member_expression] = "member_expression",
- [sym_decorator_call_expression] = "call_expression",
- [sym_class_body] = "class_body",
- [sym_formal_parameters] = "formal_parameters",
- [sym_class_static_block] = "class_static_block",
- [sym_pattern] = "pattern",
- [sym_rest_pattern] = "rest_pattern",
- [sym_method_definition] = "method_definition",
- [sym_pair] = "pair",
- [sym_pair_pattern] = "pair_pattern",
- [sym__property_name] = "_property_name",
- [sym_computed_property_name] = "computed_property_name",
- [sym_public_field_definition] = "public_field_definition",
- [sym__import_identifier] = "_import_identifier",
- [sym_non_null_expression] = "non_null_expression",
- [sym_method_signature] = "method_signature",
- [sym_abstract_method_signature] = "abstract_method_signature",
- [sym_function_signature] = "function_signature",
- [sym_decorator_parenthesized_expression] = "parenthesized_expression",
- [sym_as_expression] = "as_expression",
- [sym_satisfies_expression] = "satisfies_expression",
- [sym_instantiation_expression] = "instantiation_expression",
- [sym_import_require_clause] = "import_require_clause",
- [sym_extends_clause] = "extends_clause",
- [sym__extends_clause_single] = "_extends_clause_single",
- [sym_implements_clause] = "implements_clause",
- [sym_ambient_declaration] = "ambient_declaration",
- [sym_abstract_class_declaration] = "abstract_class_declaration",
- [sym_module] = "module",
- [sym_internal_module] = "internal_module",
- [sym__module] = "_module",
- [sym_import_alias] = "import_alias",
- [sym_nested_type_identifier] = "nested_type_identifier",
- [sym_interface_declaration] = "interface_declaration",
- [sym_extends_type_clause] = "extends_type_clause",
- [sym_enum_declaration] = "enum_declaration",
- [sym_enum_body] = "enum_body",
- [sym_enum_assignment] = "enum_assignment",
- [sym_type_alias_declaration] = "type_alias_declaration",
- [sym_accessibility_modifier] = "accessibility_modifier",
- [sym_override_modifier] = "override_modifier",
- [sym_required_parameter] = "required_parameter",
- [sym_optional_parameter] = "optional_parameter",
- [sym__parameter_name] = "_parameter_name",
- [sym_omitting_type_annotation] = "omitting_type_annotation",
- [sym_adding_type_annotation] = "adding_type_annotation",
- [sym_opting_type_annotation] = "opting_type_annotation",
- [sym_type_annotation] = "type_annotation",
- [sym__type_query_member_expression_in_type_annotation] = "member_expression",
- [sym__type_query_call_expression_in_type_annotation] = "call_expression",
- [sym_asserts] = "asserts",
- [sym_asserts_annotation] = "asserts_annotation",
- [sym_type] = "type",
- [sym_tuple_parameter] = "required_parameter",
- [sym_optional_tuple_parameter] = "optional_parameter",
- [sym_optional_type] = "optional_type",
- [sym_rest_type] = "rest_type",
- [sym__tuple_type_member] = "_tuple_type_member",
- [sym_constructor_type] = "constructor_type",
- [sym_primary_type] = "primary_type",
- [sym_template_type] = "template_type",
- [sym_template_literal_type] = "template_literal_type",
- [sym_infer_type] = "infer_type",
- [sym_conditional_type] = "conditional_type",
- [sym_generic_type] = "generic_type",
- [sym_type_predicate] = "type_predicate",
- [sym_type_predicate_annotation] = "type_predicate_annotation",
- [sym__type_query_member_expression] = "member_expression",
- [sym__type_query_subscript_expression] = "subscript_expression",
- [sym__type_query_call_expression] = "call_expression",
- [sym__type_query_instantiation_expression] = "instantiation_expression",
- [sym_type_query] = "type_query",
- [sym_index_type_query] = "index_type_query",
- [sym_lookup_type] = "lookup_type",
- [sym_mapped_type_clause] = "mapped_type_clause",
- [sym_literal_type] = "literal_type",
- [sym__number] = "unary_expression",
- [sym_existential_type] = "existential_type",
- [sym_flow_maybe_type] = "flow_maybe_type",
- [sym_parenthesized_type] = "parenthesized_type",
- [sym_predefined_type] = "predefined_type",
- [sym_type_arguments] = "type_arguments",
- [sym_object_type] = "object_type",
- [sym_call_signature] = "call_signature",
- [sym_property_signature] = "property_signature",
- [sym_type_parameters] = "type_parameters",
- [sym_type_parameter] = "type_parameter",
- [sym_default_type] = "default_type",
- [sym_constraint] = "constraint",
- [sym_construct_signature] = "construct_signature",
- [sym_index_signature] = "index_signature",
- [sym_array_type] = "array_type",
- [sym_tuple_type] = "tuple_type",
- [sym_readonly_type] = "readonly_type",
- [sym_union_type] = "union_type",
- [sym_intersection_type] = "intersection_type",
- [sym_function_type] = "function_type",
- [aux_sym_program_repeat1] = "program_repeat1",
- [aux_sym_export_statement_repeat1] = "export_statement_repeat1",
- [aux_sym_export_clause_repeat1] = "export_clause_repeat1",
- [aux_sym_named_imports_repeat1] = "named_imports_repeat1",
- [aux_sym_variable_declaration_repeat1] = "variable_declaration_repeat1",
- [aux_sym_switch_body_repeat1] = "switch_body_repeat1",
- [aux_sym_object_repeat1] = "object_repeat1",
- [aux_sym_object_pattern_repeat1] = "object_pattern_repeat1",
- [aux_sym_array_repeat1] = "array_repeat1",
- [aux_sym_array_pattern_repeat1] = "array_pattern_repeat1",
- [aux_sym_glimmer_template_repeat1] = "glimmer_template_repeat1",
- [aux_sym_jsx_element_repeat1] = "jsx_element_repeat1",
- [aux_sym__jsx_string_repeat1] = "_jsx_string_repeat1",
- [aux_sym__jsx_string_repeat2] = "_jsx_string_repeat2",
- [aux_sym_sequence_expression_repeat1] = "sequence_expression_repeat1",
- [aux_sym_string_repeat1] = "string_repeat1",
- [aux_sym_string_repeat2] = "string_repeat2",
- [aux_sym_template_string_repeat1] = "template_string_repeat1",
- [aux_sym_class_body_repeat1] = "class_body_repeat1",
- [aux_sym_formal_parameters_repeat1] = "formal_parameters_repeat1",
- [aux_sym__jsx_start_opening_element_repeat1] = "_jsx_start_opening_element_repeat1",
- [aux_sym_extends_clause_repeat1] = "extends_clause_repeat1",
- [aux_sym_implements_clause_repeat1] = "implements_clause_repeat1",
- [aux_sym_extends_type_clause_repeat1] = "extends_type_clause_repeat1",
- [aux_sym_enum_body_repeat1] = "enum_body_repeat1",
- [aux_sym_template_literal_type_repeat1] = "template_literal_type_repeat1",
- [aux_sym_object_type_repeat1] = "object_type_repeat1",
- [aux_sym_type_parameters_repeat1] = "type_parameters_repeat1",
- [aux_sym_tuple_type_repeat1] = "tuple_type_repeat1",
- [alias_sym_interface_body] = "interface_body",
- [alias_sym_property_identifier] = "property_identifier",
- [alias_sym_shorthand_property_identifier] = "shorthand_property_identifier",
- [alias_sym_shorthand_property_identifier_pattern] = "shorthand_property_identifier_pattern",
- [alias_sym_statement_identifier] = "statement_identifier",
- [alias_sym_this_type] = "this_type",
- [alias_sym_type_identifier] = "type_identifier",
-};
-
-static const TSSymbol ts_symbol_map[] = {
- [ts_builtin_sym_end] = ts_builtin_sym_end,
- [sym_identifier] = sym_identifier,
- [sym_hash_bang_line] = sym_hash_bang_line,
- [anon_sym_export] = anon_sym_export,
- [anon_sym_STAR] = anon_sym_STAR,
- [anon_sym_default] = anon_sym_default,
- [anon_sym_type] = anon_sym_type,
- [anon_sym_EQ] = anon_sym_EQ,
- [anon_sym_as] = anon_sym_as,
- [anon_sym_namespace] = anon_sym_namespace,
- [anon_sym_LBRACE] = anon_sym_LBRACE,
- [anon_sym_COMMA] = anon_sym_COMMA,
- [anon_sym_RBRACE] = anon_sym_RBRACE,
- [anon_sym_typeof] = anon_sym_typeof,
- [anon_sym_import] = anon_sym_import,
- [anon_sym_from] = anon_sym_from,
- [anon_sym_with] = anon_sym_with,
- [anon_sym_assert] = anon_sym_assert,
- [anon_sym_var] = anon_sym_var,
- [anon_sym_let] = anon_sym_let,
- [anon_sym_const] = anon_sym_const,
- [anon_sym_BANG] = anon_sym_BANG,
- [anon_sym_else] = anon_sym_else,
- [anon_sym_if] = anon_sym_if,
- [anon_sym_switch] = anon_sym_switch,
- [anon_sym_for] = anon_sym_for,
- [anon_sym_LPAREN] = anon_sym_LPAREN,
- [anon_sym_RPAREN] = anon_sym_RPAREN,
- [anon_sym_await] = anon_sym_await,
- [anon_sym_in] = anon_sym_in,
- [anon_sym_of] = anon_sym_of,
- [anon_sym_while] = anon_sym_while,
- [anon_sym_do] = anon_sym_do,
- [anon_sym_try] = anon_sym_try,
- [anon_sym_break] = anon_sym_break,
- [anon_sym_continue] = anon_sym_continue,
- [anon_sym_debugger] = anon_sym_debugger,
- [anon_sym_return] = anon_sym_return,
- [anon_sym_throw] = anon_sym_throw,
- [anon_sym_SEMI] = anon_sym_SEMI,
- [anon_sym_COLON] = anon_sym_COLON,
- [anon_sym_case] = anon_sym_case,
- [anon_sym_catch] = anon_sym_catch,
- [anon_sym_finally] = anon_sym_finally,
- [anon_sym_yield] = anon_sym_yield,
- [anon_sym_LBRACK] = anon_sym_LBRACK,
- [anon_sym_RBRACK] = anon_sym_RBRACK,
- [sym__glimmer_template_content] = sym__glimmer_template_content,
- [sym_glimmer_opening_tag] = sym_glimmer_opening_tag,
- [sym_glimmer_closing_tag] = sym_glimmer_closing_tag,
- [aux_sym_jsx_text_token1] = aux_sym_jsx_text_token1,
- [aux_sym_jsx_text_token2] = aux_sym_jsx_text_token2,
- [sym_html_character_reference] = sym_html_character_reference,
- [anon_sym_GT] = anon_sym_GT,
- [sym_jsx_identifier] = sym_identifier,
- [anon_sym_DOT] = anon_sym_DOT,
- [anon_sym_LT_SLASH] = anon_sym_LT_SLASH,
- [anon_sym_SLASH_GT] = anon_sym_SLASH_GT,
- [anon_sym_DQUOTE] = anon_sym_DQUOTE,
- [anon_sym_SQUOTE] = anon_sym_SQUOTE,
- [sym_unescaped_double_jsx_string_fragment] = sym__template_chars,
- [sym_unescaped_single_jsx_string_fragment] = sym__template_chars,
- [anon_sym_class] = anon_sym_class,
- [anon_sym_async] = anon_sym_async,
- [anon_sym_function] = anon_sym_function,
- [anon_sym_EQ_GT] = anon_sym_EQ_GT,
- [anon_sym_QMARK_DOT] = anon_sym_QMARK_DOT,
- [anon_sym_new] = anon_sym_new,
- [anon_sym_using] = anon_sym_using,
- [anon_sym_PLUS_EQ] = anon_sym_PLUS_EQ,
- [anon_sym_DASH_EQ] = anon_sym_DASH_EQ,
- [anon_sym_STAR_EQ] = anon_sym_STAR_EQ,
- [anon_sym_SLASH_EQ] = anon_sym_SLASH_EQ,
- [anon_sym_PERCENT_EQ] = anon_sym_PERCENT_EQ,
- [anon_sym_CARET_EQ] = anon_sym_CARET_EQ,
- [anon_sym_AMP_EQ] = anon_sym_AMP_EQ,
- [anon_sym_PIPE_EQ] = anon_sym_PIPE_EQ,
- [anon_sym_GT_GT_EQ] = anon_sym_GT_GT_EQ,
- [anon_sym_GT_GT_GT_EQ] = anon_sym_GT_GT_GT_EQ,
- [anon_sym_LT_LT_EQ] = anon_sym_LT_LT_EQ,
- [anon_sym_STAR_STAR_EQ] = anon_sym_STAR_STAR_EQ,
- [anon_sym_AMP_AMP_EQ] = anon_sym_AMP_AMP_EQ,
- [anon_sym_PIPE_PIPE_EQ] = anon_sym_PIPE_PIPE_EQ,
- [anon_sym_QMARK_QMARK_EQ] = anon_sym_QMARK_QMARK_EQ,
- [anon_sym_DOT_DOT_DOT] = anon_sym_DOT_DOT_DOT,
- [anon_sym_AMP_AMP] = anon_sym_AMP_AMP,
- [anon_sym_PIPE_PIPE] = anon_sym_PIPE_PIPE,
- [anon_sym_GT_GT] = anon_sym_GT_GT,
- [anon_sym_GT_GT_GT] = anon_sym_GT_GT_GT,
- [anon_sym_LT_LT] = anon_sym_LT_LT,
- [anon_sym_AMP] = anon_sym_AMP,
- [anon_sym_CARET] = anon_sym_CARET,
- [anon_sym_PIPE] = anon_sym_PIPE,
- [anon_sym_PLUS] = anon_sym_PLUS,
- [anon_sym_DASH] = anon_sym_DASH,
- [anon_sym_SLASH] = anon_sym_SLASH,
- [anon_sym_PERCENT] = anon_sym_PERCENT,
- [anon_sym_STAR_STAR] = anon_sym_STAR_STAR,
- [anon_sym_LT] = anon_sym_LT,
- [anon_sym_LT_EQ] = anon_sym_LT_EQ,
- [anon_sym_EQ_EQ] = anon_sym_EQ_EQ,
- [anon_sym_EQ_EQ_EQ] = anon_sym_EQ_EQ_EQ,
- [anon_sym_BANG_EQ] = anon_sym_BANG_EQ,
- [anon_sym_BANG_EQ_EQ] = anon_sym_BANG_EQ_EQ,
- [anon_sym_GT_EQ] = anon_sym_GT_EQ,
- [anon_sym_QMARK_QMARK] = anon_sym_QMARK_QMARK,
- [anon_sym_instanceof] = anon_sym_instanceof,
- [anon_sym_TILDE] = anon_sym_TILDE,
- [anon_sym_void] = anon_sym_void,
- [anon_sym_delete] = anon_sym_delete,
- [anon_sym_PLUS_PLUS] = anon_sym_PLUS_PLUS,
- [anon_sym_DASH_DASH] = anon_sym_DASH_DASH,
- [sym_unescaped_double_string_fragment] = sym__template_chars,
- [sym_unescaped_single_string_fragment] = sym__template_chars,
- [sym_escape_sequence] = sym_escape_sequence,
- [sym_comment] = sym_comment,
- [anon_sym_BQUOTE] = anon_sym_BQUOTE,
- [anon_sym_DOLLAR_LBRACE] = anon_sym_DOLLAR_LBRACE,
- [anon_sym_SLASH2] = anon_sym_SLASH,
- [sym_regex_pattern] = sym_regex_pattern,
- [sym_regex_flags] = sym_regex_flags,
- [sym_number] = sym_number,
- [sym_private_property_identifier] = sym_private_property_identifier,
- [anon_sym_target] = anon_sym_target,
- [sym_this] = sym_this,
- [sym_super] = sym_super,
- [sym_true] = sym_true,
- [sym_false] = sym_false,
- [sym_null] = sym_null,
- [sym_undefined] = sym_undefined,
- [anon_sym_AT] = anon_sym_AT,
- [anon_sym_static] = anon_sym_static,
- [anon_sym_readonly] = anon_sym_readonly,
- [anon_sym_get] = anon_sym_get,
- [anon_sym_set] = anon_sym_set,
- [anon_sym_QMARK] = anon_sym_QMARK,
- [anon_sym_declare] = anon_sym_declare,
- [anon_sym_public] = anon_sym_public,
- [anon_sym_private] = anon_sym_private,
- [anon_sym_protected] = anon_sym_protected,
- [anon_sym_override] = anon_sym_override,
- [anon_sym_module] = anon_sym_module,
- [anon_sym_any] = anon_sym_any,
- [anon_sym_number] = anon_sym_number,
- [anon_sym_boolean] = anon_sym_boolean,
- [anon_sym_string] = anon_sym_string,
- [anon_sym_symbol] = anon_sym_symbol,
- [anon_sym_object] = anon_sym_object,
- [anon_sym_abstract] = anon_sym_abstract,
- [anon_sym_accessor] = anon_sym_accessor,
- [anon_sym_satisfies] = anon_sym_satisfies,
- [anon_sym_require] = anon_sym_require,
- [anon_sym_extends] = anon_sym_extends,
- [anon_sym_implements] = anon_sym_implements,
- [anon_sym_global] = anon_sym_global,
- [anon_sym_interface] = anon_sym_interface,
- [anon_sym_enum] = anon_sym_enum,
- [anon_sym_DASH_QMARK_COLON] = anon_sym_DASH_QMARK_COLON,
- [anon_sym_PLUS_QMARK_COLON] = anon_sym_PLUS_QMARK_COLON,
- [anon_sym_QMARK_COLON] = anon_sym_QMARK_COLON,
- [anon_sym_asserts] = anon_sym_asserts,
- [anon_sym_infer] = anon_sym_infer,
- [anon_sym_is] = anon_sym_is,
- [anon_sym_keyof] = anon_sym_keyof,
- [anon_sym_unique] = anon_sym_unique,
- [anon_sym_unknown] = anon_sym_unknown,
- [anon_sym_never] = anon_sym_never,
- [anon_sym_LBRACE_PIPE] = anon_sym_LBRACE_PIPE,
- [anon_sym_PIPE_RBRACE] = anon_sym_PIPE_RBRACE,
- [sym__automatic_semicolon] = sym__automatic_semicolon,
- [sym__template_chars] = sym__template_chars,
- [sym__ternary_qmark] = anon_sym_QMARK,
- [sym_html_comment] = sym_html_comment,
- [sym__function_signature_automatic_semicolon] = sym__function_signature_automatic_semicolon,
- [sym___error_recovery] = sym___error_recovery,
- [sym_program] = sym_program,
- [sym_export_statement] = sym_export_statement,
- [sym_namespace_export] = sym_namespace_export,
- [sym_export_clause] = sym_export_clause,
- [sym_export_specifier] = sym_export_specifier,
- [sym__module_export_name] = sym__module_export_name,
- [sym_declaration] = sym_declaration,
- [sym_import] = sym_import,
- [sym_import_statement] = sym_import_statement,
- [sym_import_clause] = sym_import_clause,
- [sym__from_clause] = sym__from_clause,
- [sym_namespace_import] = sym_namespace_import,
- [sym_named_imports] = sym_named_imports,
- [sym_import_specifier] = sym_import_specifier,
- [sym_import_attribute] = sym_import_attribute,
- [sym_statement] = sym_statement,
- [sym_expression_statement] = sym_expression_statement,
- [sym_variable_declaration] = sym_variable_declaration,
- [sym_lexical_declaration] = sym_lexical_declaration,
- [sym_variable_declarator] = sym_variable_declarator,
- [sym_statement_block] = sym_statement_block,
- [sym_else_clause] = sym_else_clause,
- [sym_if_statement] = sym_if_statement,
- [sym_switch_statement] = sym_switch_statement,
- [sym_for_statement] = sym_for_statement,
- [sym_for_in_statement] = sym_for_in_statement,
- [sym__for_header] = sym__for_header,
- [sym_while_statement] = sym_while_statement,
- [sym_do_statement] = sym_do_statement,
- [sym_try_statement] = sym_try_statement,
- [sym_with_statement] = sym_with_statement,
- [sym_break_statement] = sym_break_statement,
- [sym_continue_statement] = sym_continue_statement,
- [sym_debugger_statement] = sym_debugger_statement,
- [sym_return_statement] = sym_return_statement,
- [sym_throw_statement] = sym_throw_statement,
- [sym_empty_statement] = sym_empty_statement,
- [sym_labeled_statement] = sym_labeled_statement,
- [sym_switch_body] = sym_switch_body,
- [sym_switch_case] = sym_switch_case,
- [sym_switch_default] = sym_switch_default,
- [sym_catch_clause] = sym_catch_clause,
- [sym_finally_clause] = sym_finally_clause,
- [sym_parenthesized_expression] = sym_parenthesized_expression,
- [sym_expression] = sym_expression,
- [sym_primary_expression] = sym_primary_expression,
- [sym_yield_expression] = sym_yield_expression,
- [sym_object] = sym_object,
- [sym_object_pattern] = sym_object_pattern,
- [sym_assignment_pattern] = sym_assignment_pattern,
- [sym_object_assignment_pattern] = sym_object_assignment_pattern,
- [sym_array] = sym_array,
- [sym_array_pattern] = sym_array_pattern,
- [sym_glimmer_template] = sym_glimmer_template,
- [sym_jsx_element] = sym_jsx_element,
- [sym_jsx_text] = sym_jsx_text,
- [sym_jsx_expression] = sym_jsx_expression,
- [sym_jsx_opening_element] = sym_jsx_opening_element,
- [sym_nested_identifier] = sym_nested_identifier,
- [sym_jsx_namespace_name] = sym_jsx_namespace_name,
- [sym_jsx_closing_element] = sym_jsx_closing_element,
- [sym_jsx_self_closing_element] = sym_jsx_self_closing_element,
- [sym_jsx_attribute] = sym_jsx_attribute,
- [sym__jsx_string] = sym_string,
- [sym_class] = sym_class,
- [sym_class_declaration] = sym_class_declaration,
- [sym_class_heritage] = sym_class_heritage,
- [sym_function_expression] = sym_function_expression,
- [sym_function_declaration] = sym_function_declaration,
- [sym_generator_function] = sym_generator_function,
- [sym_generator_function_declaration] = sym_generator_function_declaration,
- [sym_arrow_function] = sym_arrow_function,
- [sym__call_signature] = sym__call_signature,
- [sym__formal_parameter] = sym__formal_parameter,
- [sym_optional_chain] = sym_optional_chain,
- [sym_call_expression] = sym_call_expression,
- [sym_new_expression] = sym_new_expression,
- [sym_await_expression] = sym_await_expression,
- [sym_member_expression] = sym_member_expression,
- [sym_subscript_expression] = sym_subscript_expression,
- [sym_assignment_expression] = sym_assignment_expression,
- [sym__augmented_assignment_lhs] = sym__augmented_assignment_lhs,
- [sym_augmented_assignment_expression] = sym_augmented_assignment_expression,
- [sym__initializer] = sym__initializer,
- [sym__destructuring_pattern] = sym__destructuring_pattern,
- [sym_spread_element] = sym_spread_element,
- [sym_ternary_expression] = sym_ternary_expression,
- [sym_binary_expression] = sym_binary_expression,
- [sym_unary_expression] = sym_unary_expression,
- [sym_update_expression] = sym_update_expression,
- [sym_sequence_expression] = sym_sequence_expression,
- [sym_string] = sym_string,
- [sym_template_string] = sym_template_string,
- [sym_template_substitution] = sym_template_substitution,
- [sym_regex] = sym_regex,
- [sym_meta_property] = sym_meta_property,
- [sym_arguments] = sym_arguments,
- [sym_decorator] = sym_decorator,
- [sym_decorator_member_expression] = sym_member_expression,
- [sym_decorator_call_expression] = sym_call_expression,
- [sym_class_body] = sym_class_body,
- [sym_formal_parameters] = sym_formal_parameters,
- [sym_class_static_block] = sym_class_static_block,
- [sym_pattern] = sym_pattern,
- [sym_rest_pattern] = sym_rest_pattern,
- [sym_method_definition] = sym_method_definition,
- [sym_pair] = sym_pair,
- [sym_pair_pattern] = sym_pair_pattern,
- [sym__property_name] = sym__property_name,
- [sym_computed_property_name] = sym_computed_property_name,
- [sym_public_field_definition] = sym_public_field_definition,
- [sym__import_identifier] = sym__import_identifier,
- [sym_non_null_expression] = sym_non_null_expression,
- [sym_method_signature] = sym_method_signature,
- [sym_abstract_method_signature] = sym_abstract_method_signature,
- [sym_function_signature] = sym_function_signature,
- [sym_decorator_parenthesized_expression] = sym_parenthesized_expression,
- [sym_as_expression] = sym_as_expression,
- [sym_satisfies_expression] = sym_satisfies_expression,
- [sym_instantiation_expression] = sym_instantiation_expression,
- [sym_import_require_clause] = sym_import_require_clause,
- [sym_extends_clause] = sym_extends_clause,
- [sym__extends_clause_single] = sym__extends_clause_single,
- [sym_implements_clause] = sym_implements_clause,
- [sym_ambient_declaration] = sym_ambient_declaration,
- [sym_abstract_class_declaration] = sym_abstract_class_declaration,
- [sym_module] = sym_module,
- [sym_internal_module] = sym_internal_module,
- [sym__module] = sym__module,
- [sym_import_alias] = sym_import_alias,
- [sym_nested_type_identifier] = sym_nested_type_identifier,
- [sym_interface_declaration] = sym_interface_declaration,
- [sym_extends_type_clause] = sym_extends_type_clause,
- [sym_enum_declaration] = sym_enum_declaration,
- [sym_enum_body] = sym_enum_body,
- [sym_enum_assignment] = sym_enum_assignment,
- [sym_type_alias_declaration] = sym_type_alias_declaration,
- [sym_accessibility_modifier] = sym_accessibility_modifier,
- [sym_override_modifier] = sym_override_modifier,
- [sym_required_parameter] = sym_required_parameter,
- [sym_optional_parameter] = sym_optional_parameter,
- [sym__parameter_name] = sym__parameter_name,
- [sym_omitting_type_annotation] = sym_omitting_type_annotation,
- [sym_adding_type_annotation] = sym_adding_type_annotation,
- [sym_opting_type_annotation] = sym_opting_type_annotation,
- [sym_type_annotation] = sym_type_annotation,
- [sym__type_query_member_expression_in_type_annotation] = sym_member_expression,
- [sym__type_query_call_expression_in_type_annotation] = sym_call_expression,
- [sym_asserts] = sym_asserts,
- [sym_asserts_annotation] = sym_asserts_annotation,
- [sym_type] = sym_type,
- [sym_tuple_parameter] = sym_required_parameter,
- [sym_optional_tuple_parameter] = sym_optional_parameter,
- [sym_optional_type] = sym_optional_type,
- [sym_rest_type] = sym_rest_type,
- [sym__tuple_type_member] = sym__tuple_type_member,
- [sym_constructor_type] = sym_constructor_type,
- [sym_primary_type] = sym_primary_type,
- [sym_template_type] = sym_template_type,
- [sym_template_literal_type] = sym_template_literal_type,
- [sym_infer_type] = sym_infer_type,
- [sym_conditional_type] = sym_conditional_type,
- [sym_generic_type] = sym_generic_type,
- [sym_type_predicate] = sym_type_predicate,
- [sym_type_predicate_annotation] = sym_type_predicate_annotation,
- [sym__type_query_member_expression] = sym_member_expression,
- [sym__type_query_subscript_expression] = sym_subscript_expression,
- [sym__type_query_call_expression] = sym_call_expression,
- [sym__type_query_instantiation_expression] = sym_instantiation_expression,
- [sym_type_query] = sym_type_query,
- [sym_index_type_query] = sym_index_type_query,
- [sym_lookup_type] = sym_lookup_type,
- [sym_mapped_type_clause] = sym_mapped_type_clause,
- [sym_literal_type] = sym_literal_type,
- [sym__number] = sym_unary_expression,
- [sym_existential_type] = sym_existential_type,
- [sym_flow_maybe_type] = sym_flow_maybe_type,
- [sym_parenthesized_type] = sym_parenthesized_type,
- [sym_predefined_type] = sym_predefined_type,
- [sym_type_arguments] = sym_type_arguments,
- [sym_object_type] = sym_object_type,
- [sym_call_signature] = sym_call_signature,
- [sym_property_signature] = sym_property_signature,
- [sym_type_parameters] = sym_type_parameters,
- [sym_type_parameter] = sym_type_parameter,
- [sym_default_type] = sym_default_type,
- [sym_constraint] = sym_constraint,
- [sym_construct_signature] = sym_construct_signature,
- [sym_index_signature] = sym_index_signature,
- [sym_array_type] = sym_array_type,
- [sym_tuple_type] = sym_tuple_type,
- [sym_readonly_type] = sym_readonly_type,
- [sym_union_type] = sym_union_type,
- [sym_intersection_type] = sym_intersection_type,
- [sym_function_type] = sym_function_type,
- [aux_sym_program_repeat1] = aux_sym_program_repeat1,
- [aux_sym_export_statement_repeat1] = aux_sym_export_statement_repeat1,
- [aux_sym_export_clause_repeat1] = aux_sym_export_clause_repeat1,
- [aux_sym_named_imports_repeat1] = aux_sym_named_imports_repeat1,
- [aux_sym_variable_declaration_repeat1] = aux_sym_variable_declaration_repeat1,
- [aux_sym_switch_body_repeat1] = aux_sym_switch_body_repeat1,
- [aux_sym_object_repeat1] = aux_sym_object_repeat1,
- [aux_sym_object_pattern_repeat1] = aux_sym_object_pattern_repeat1,
- [aux_sym_array_repeat1] = aux_sym_array_repeat1,
- [aux_sym_array_pattern_repeat1] = aux_sym_array_pattern_repeat1,
- [aux_sym_glimmer_template_repeat1] = aux_sym_glimmer_template_repeat1,
- [aux_sym_jsx_element_repeat1] = aux_sym_jsx_element_repeat1,
- [aux_sym__jsx_string_repeat1] = aux_sym__jsx_string_repeat1,
- [aux_sym__jsx_string_repeat2] = aux_sym__jsx_string_repeat2,
- [aux_sym_sequence_expression_repeat1] = aux_sym_sequence_expression_repeat1,
- [aux_sym_string_repeat1] = aux_sym_string_repeat1,
- [aux_sym_string_repeat2] = aux_sym_string_repeat2,
- [aux_sym_template_string_repeat1] = aux_sym_template_string_repeat1,
- [aux_sym_class_body_repeat1] = aux_sym_class_body_repeat1,
- [aux_sym_formal_parameters_repeat1] = aux_sym_formal_parameters_repeat1,
- [aux_sym__jsx_start_opening_element_repeat1] = aux_sym__jsx_start_opening_element_repeat1,
- [aux_sym_extends_clause_repeat1] = aux_sym_extends_clause_repeat1,
- [aux_sym_implements_clause_repeat1] = aux_sym_implements_clause_repeat1,
- [aux_sym_extends_type_clause_repeat1] = aux_sym_extends_type_clause_repeat1,
- [aux_sym_enum_body_repeat1] = aux_sym_enum_body_repeat1,
- [aux_sym_template_literal_type_repeat1] = aux_sym_template_literal_type_repeat1,
- [aux_sym_object_type_repeat1] = aux_sym_object_type_repeat1,
- [aux_sym_type_parameters_repeat1] = aux_sym_type_parameters_repeat1,
- [aux_sym_tuple_type_repeat1] = aux_sym_tuple_type_repeat1,
- [alias_sym_interface_body] = alias_sym_interface_body,
- [alias_sym_property_identifier] = alias_sym_property_identifier,
- [alias_sym_shorthand_property_identifier] = alias_sym_shorthand_property_identifier,
- [alias_sym_shorthand_property_identifier_pattern] = alias_sym_shorthand_property_identifier_pattern,
- [alias_sym_statement_identifier] = alias_sym_statement_identifier,
- [alias_sym_this_type] = alias_sym_this_type,
- [alias_sym_type_identifier] = alias_sym_type_identifier,
-};
-
-static const TSSymbolMetadata ts_symbol_metadata[] = {
- [ts_builtin_sym_end] = {
- .visible = false,
- .named = true,
- },
- [sym_identifier] = {
- .visible = true,
- .named = true,
- },
- [sym_hash_bang_line] = {
- .visible = true,
- .named = true,
- },
- [anon_sym_export] = {
- .visible = true,
- .named = false,
- },
- [anon_sym_STAR] = {
- .visible = true,
- .named = false,
- },
- [anon_sym_default] = {
- .visible = true,
- .named = false,
- },
- [anon_sym_type] = {
- .visible = true,
- .named = false,
- },
- [anon_sym_EQ] = {
- .visible = true,
- .named = false,
- },
- [anon_sym_as] = {
- .visible = true,
- .named = false,
- },
- [anon_sym_namespace] = {
- .visible = true,
- .named = false,
- },
- [anon_sym_LBRACE] = {
- .visible = true,
- .named = false,
- },
- [anon_sym_COMMA] = {
- .visible = true,
- .named = false,
- },
- [anon_sym_RBRACE] = {
- .visible = true,
- .named = false,
- },
- [anon_sym_typeof] = {
- .visible = true,
- .named = false,
- },
- [anon_sym_import] = {
- .visible = true,
- .named = false,
- },
- [anon_sym_from] = {
- .visible = true,
- .named = false,
- },
- [anon_sym_with] = {
- .visible = true,
- .named = false,
- },
- [anon_sym_assert] = {
- .visible = true,
- .named = false,
- },
- [anon_sym_var] = {
- .visible = true,
- .named = false,
- },
- [anon_sym_let] = {
- .visible = true,
- .named = false,
- },
- [anon_sym_const] = {
- .visible = true,
- .named = false,
- },
- [anon_sym_BANG] = {
- .visible = true,
- .named = false,
- },
- [anon_sym_else] = {
- .visible = true,
- .named = false,
- },
- [anon_sym_if] = {
- .visible = true,
- .named = false,
- },
- [anon_sym_switch] = {
- .visible = true,
- .named = false,
- },
- [anon_sym_for] = {
- .visible = true,
- .named = false,
- },
- [anon_sym_LPAREN] = {
- .visible = true,
- .named = false,
- },
- [anon_sym_RPAREN] = {
- .visible = true,
- .named = false,
- },
- [anon_sym_await] = {
- .visible = true,
- .named = false,
- },
- [anon_sym_in] = {
- .visible = true,
- .named = false,
- },
- [anon_sym_of] = {
- .visible = true,
- .named = false,
- },
- [anon_sym_while] = {
- .visible = true,
- .named = false,
- },
- [anon_sym_do] = {
- .visible = true,
- .named = false,
- },
- [anon_sym_try] = {
- .visible = true,
- .named = false,
- },
- [anon_sym_break] = {
- .visible = true,
- .named = false,
- },
- [anon_sym_continue] = {
- .visible = true,
- .named = false,
- },
- [anon_sym_debugger] = {
- .visible = true,
- .named = false,
- },
- [anon_sym_return] = {
- .visible = true,
- .named = false,
- },
- [anon_sym_throw] = {
- .visible = true,
- .named = false,
- },
- [anon_sym_SEMI] = {
- .visible = true,
- .named = false,
- },
- [anon_sym_COLON] = {
- .visible = true,
- .named = false,
- },
- [anon_sym_case] = {
- .visible = true,
- .named = false,
- },
- [anon_sym_catch] = {
- .visible = true,
- .named = false,
- },
- [anon_sym_finally] = {
- .visible = true,
- .named = false,
- },
- [anon_sym_yield] = {
- .visible = true,
- .named = false,
- },
- [anon_sym_LBRACK] = {
- .visible = true,
- .named = false,
- },
- [anon_sym_RBRACK] = {
- .visible = true,
- .named = false,
- },
- [sym__glimmer_template_content] = {
- .visible = false,
- .named = true,
- },
- [sym_glimmer_opening_tag] = {
- .visible = true,
- .named = true,
- },
- [sym_glimmer_closing_tag] = {
- .visible = true,
- .named = true,
- },
- [aux_sym_jsx_text_token1] = {
- .visible = false,
- .named = false,
- },
- [aux_sym_jsx_text_token2] = {
- .visible = false,
- .named = false,
- },
- [sym_html_character_reference] = {
- .visible = true,
- .named = true,
- },
- [anon_sym_GT] = {
- .visible = true,
- .named = false,
- },
- [sym_jsx_identifier] = {
- .visible = true,
- .named = true,
- },
- [anon_sym_DOT] = {
- .visible = true,
- .named = false,
- },
- [anon_sym_LT_SLASH] = {
- .visible = true,
- .named = false,
- },
- [anon_sym_SLASH_GT] = {
- .visible = true,
- .named = false,
- },
- [anon_sym_DQUOTE] = {
- .visible = true,
- .named = false,
- },
- [anon_sym_SQUOTE] = {
- .visible = true,
- .named = false,
- },
- [sym_unescaped_double_jsx_string_fragment] = {
- .visible = true,
- .named = true,
- },
- [sym_unescaped_single_jsx_string_fragment] = {
- .visible = true,
- .named = true,
- },
- [anon_sym_class] = {
- .visible = true,
- .named = false,
- },
- [anon_sym_async] = {
- .visible = true,
- .named = false,
- },
- [anon_sym_function] = {
- .visible = true,
- .named = false,
- },
- [anon_sym_EQ_GT] = {
- .visible = true,
- .named = false,
- },
- [anon_sym_QMARK_DOT] = {
- .visible = true,
- .named = false,
- },
- [anon_sym_new] = {
- .visible = true,
- .named = false,
- },
- [anon_sym_using] = {
- .visible = true,
- .named = false,
- },
- [anon_sym_PLUS_EQ] = {
- .visible = true,
- .named = false,
- },
- [anon_sym_DASH_EQ] = {
- .visible = true,
- .named = false,
- },
- [anon_sym_STAR_EQ] = {
- .visible = true,
- .named = false,
- },
- [anon_sym_SLASH_EQ] = {
- .visible = true,
- .named = false,
- },
- [anon_sym_PERCENT_EQ] = {
- .visible = true,
- .named = false,
- },
- [anon_sym_CARET_EQ] = {
- .visible = true,
- .named = false,
- },
- [anon_sym_AMP_EQ] = {
- .visible = true,
- .named = false,
- },
- [anon_sym_PIPE_EQ] = {
- .visible = true,
- .named = false,
- },
- [anon_sym_GT_GT_EQ] = {
- .visible = true,
- .named = false,
- },
- [anon_sym_GT_GT_GT_EQ] = {
- .visible = true,
- .named = false,
- },
- [anon_sym_LT_LT_EQ] = {
- .visible = true,
- .named = false,
- },
- [anon_sym_STAR_STAR_EQ] = {
- .visible = true,
- .named = false,
- },
- [anon_sym_AMP_AMP_EQ] = {
- .visible = true,
- .named = false,
- },
- [anon_sym_PIPE_PIPE_EQ] = {
- .visible = true,
- .named = false,
- },
- [anon_sym_QMARK_QMARK_EQ] = {
- .visible = true,
- .named = false,
- },
- [anon_sym_DOT_DOT_DOT] = {
- .visible = true,
- .named = false,
- },
- [anon_sym_AMP_AMP] = {
- .visible = true,
- .named = false,
- },
- [anon_sym_PIPE_PIPE] = {
- .visible = true,
- .named = false,
- },
- [anon_sym_GT_GT] = {
- .visible = true,
- .named = false,
- },
- [anon_sym_GT_GT_GT] = {
- .visible = true,
- .named = false,
- },
- [anon_sym_LT_LT] = {
- .visible = true,
- .named = false,
- },
- [anon_sym_AMP] = {
- .visible = true,
- .named = false,
- },
- [anon_sym_CARET] = {
- .visible = true,
- .named = false,
- },
- [anon_sym_PIPE] = {
- .visible = true,
- .named = false,
- },
- [anon_sym_PLUS] = {
- .visible = true,
- .named = false,
- },
- [anon_sym_DASH] = {
- .visible = true,
- .named = false,
- },
- [anon_sym_SLASH] = {
- .visible = true,
- .named = false,
- },
- [anon_sym_PERCENT] = {
- .visible = true,
- .named = false,
- },
- [anon_sym_STAR_STAR] = {
- .visible = true,
- .named = false,
- },
- [anon_sym_LT] = {
- .visible = true,
- .named = false,
- },
- [anon_sym_LT_EQ] = {
- .visible = true,
- .named = false,
- },
- [anon_sym_EQ_EQ] = {
- .visible = true,
- .named = false,
- },
- [anon_sym_EQ_EQ_EQ] = {
- .visible = true,
- .named = false,
- },
- [anon_sym_BANG_EQ] = {
- .visible = true,
- .named = false,
- },
- [anon_sym_BANG_EQ_EQ] = {
- .visible = true,
- .named = false,
- },
- [anon_sym_GT_EQ] = {
- .visible = true,
- .named = false,
- },
- [anon_sym_QMARK_QMARK] = {
- .visible = true,
- .named = false,
- },
- [anon_sym_instanceof] = {
- .visible = true,
- .named = false,
- },
- [anon_sym_TILDE] = {
- .visible = true,
- .named = false,
- },
- [anon_sym_void] = {
- .visible = true,
- .named = false,
- },
- [anon_sym_delete] = {
- .visible = true,
- .named = false,
- },
- [anon_sym_PLUS_PLUS] = {
- .visible = true,
- .named = false,
- },
- [anon_sym_DASH_DASH] = {
- .visible = true,
- .named = false,
- },
- [sym_unescaped_double_string_fragment] = {
- .visible = true,
- .named = true,
- },
- [sym_unescaped_single_string_fragment] = {
- .visible = true,
- .named = true,
- },
- [sym_escape_sequence] = {
- .visible = true,
- .named = true,
- },
- [sym_comment] = {
- .visible = true,
- .named = true,
- },
- [anon_sym_BQUOTE] = {
- .visible = true,
- .named = false,
- },
- [anon_sym_DOLLAR_LBRACE] = {
- .visible = true,
- .named = false,
- },
- [anon_sym_SLASH2] = {
- .visible = true,
- .named = false,
- },
- [sym_regex_pattern] = {
- .visible = true,
- .named = true,
- },
- [sym_regex_flags] = {
- .visible = true,
- .named = true,
- },
- [sym_number] = {
- .visible = true,
- .named = true,
- },
- [sym_private_property_identifier] = {
- .visible = true,
- .named = true,
- },
- [anon_sym_target] = {
- .visible = true,
- .named = false,
- },
- [sym_this] = {
- .visible = true,
- .named = true,
- },
- [sym_super] = {
- .visible = true,
- .named = true,
- },
- [sym_true] = {
- .visible = true,
- .named = true,
- },
- [sym_false] = {
- .visible = true,
- .named = true,
- },
- [sym_null] = {
- .visible = true,
- .named = true,
- },
- [sym_undefined] = {
- .visible = true,
- .named = true,
- },
- [anon_sym_AT] = {
- .visible = true,
- .named = false,
- },
- [anon_sym_static] = {
- .visible = true,
- .named = false,
- },
- [anon_sym_readonly] = {
- .visible = true,
- .named = false,
- },
- [anon_sym_get] = {
- .visible = true,
- .named = false,
- },
- [anon_sym_set] = {
- .visible = true,
- .named = false,
- },
- [anon_sym_QMARK] = {
- .visible = true,
- .named = false,
- },
- [anon_sym_declare] = {
- .visible = true,
- .named = false,
- },
- [anon_sym_public] = {
- .visible = true,
- .named = false,
- },
- [anon_sym_private] = {
- .visible = true,
- .named = false,
- },
- [anon_sym_protected] = {
- .visible = true,
- .named = false,
- },
- [anon_sym_override] = {
- .visible = true,
- .named = false,
- },
- [anon_sym_module] = {
- .visible = true,
- .named = false,
- },
- [anon_sym_any] = {
- .visible = true,
- .named = false,
- },
- [anon_sym_number] = {
- .visible = true,
- .named = false,
- },
- [anon_sym_boolean] = {
- .visible = true,
- .named = false,
- },
- [anon_sym_string] = {
- .visible = true,
- .named = false,
- },
- [anon_sym_symbol] = {
- .visible = true,
- .named = false,
- },
- [anon_sym_object] = {
- .visible = true,
- .named = false,
- },
- [anon_sym_abstract] = {
- .visible = true,
- .named = false,
- },
- [anon_sym_accessor] = {
- .visible = true,
- .named = false,
- },
- [anon_sym_satisfies] = {
- .visible = true,
- .named = false,
- },
- [anon_sym_require] = {
- .visible = true,
- .named = false,
- },
- [anon_sym_extends] = {
- .visible = true,
- .named = false,
- },
- [anon_sym_implements] = {
- .visible = true,
- .named = false,
- },
- [anon_sym_global] = {
- .visible = true,
- .named = false,
- },
- [anon_sym_interface] = {
- .visible = true,
- .named = false,
- },
- [anon_sym_enum] = {
- .visible = true,
- .named = false,
- },
- [anon_sym_DASH_QMARK_COLON] = {
- .visible = true,
- .named = false,
- },
- [anon_sym_PLUS_QMARK_COLON] = {
- .visible = true,
- .named = false,
- },
- [anon_sym_QMARK_COLON] = {
- .visible = true,
- .named = false,
- },
- [anon_sym_asserts] = {
- .visible = true,
- .named = false,
- },
- [anon_sym_infer] = {
- .visible = true,
- .named = false,
- },
- [anon_sym_is] = {
- .visible = true,
- .named = false,
- },
- [anon_sym_keyof] = {
- .visible = true,
- .named = false,
- },
- [anon_sym_unique] = {
- .visible = true,
- .named = false,
- },
- [anon_sym_unknown] = {
- .visible = true,
- .named = false,
- },
- [anon_sym_never] = {
- .visible = true,
- .named = false,
- },
- [anon_sym_LBRACE_PIPE] = {
- .visible = true,
- .named = false,
- },
- [anon_sym_PIPE_RBRACE] = {
- .visible = true,
- .named = false,
- },
- [sym__automatic_semicolon] = {
- .visible = false,
- .named = true,
- },
- [sym__template_chars] = {
- .visible = true,
- .named = true,
- },
- [sym__ternary_qmark] = {
- .visible = true,
- .named = false,
- },
- [sym_html_comment] = {
- .visible = true,
- .named = true,
- },
- [sym__function_signature_automatic_semicolon] = {
- .visible = false,
- .named = true,
- },
- [sym___error_recovery] = {
- .visible = false,
- .named = true,
- },
- [sym_program] = {
- .visible = true,
- .named = true,
- },
- [sym_export_statement] = {
- .visible = true,
- .named = true,
- },
- [sym_namespace_export] = {
- .visible = true,
- .named = true,
- },
- [sym_export_clause] = {
- .visible = true,
- .named = true,
- },
- [sym_export_specifier] = {
- .visible = true,
- .named = true,
- },
- [sym__module_export_name] = {
- .visible = false,
- .named = true,
- },
- [sym_declaration] = {
- .visible = false,
- .named = true,
- .supertype = true,
- },
- [sym_import] = {
- .visible = true,
- .named = true,
- },
- [sym_import_statement] = {
- .visible = true,
- .named = true,
- },
- [sym_import_clause] = {
- .visible = true,
- .named = true,
- },
- [sym__from_clause] = {
- .visible = false,
- .named = true,
- },
- [sym_namespace_import] = {
- .visible = true,
- .named = true,
- },
- [sym_named_imports] = {
- .visible = true,
- .named = true,
- },
- [sym_import_specifier] = {
- .visible = true,
- .named = true,
- },
- [sym_import_attribute] = {
- .visible = true,
- .named = true,
- },
- [sym_statement] = {
- .visible = false,
- .named = true,
- .supertype = true,
- },
- [sym_expression_statement] = {
- .visible = true,
- .named = true,
- },
- [sym_variable_declaration] = {
- .visible = true,
- .named = true,
- },
- [sym_lexical_declaration] = {
- .visible = true,
- .named = true,
- },
- [sym_variable_declarator] = {
- .visible = true,
- .named = true,
- },
- [sym_statement_block] = {
- .visible = true,
- .named = true,
- },
- [sym_else_clause] = {
- .visible = true,
- .named = true,
- },
- [sym_if_statement] = {
- .visible = true,
- .named = true,
- },
- [sym_switch_statement] = {
- .visible = true,
- .named = true,
- },
- [sym_for_statement] = {
- .visible = true,
- .named = true,
- },
- [sym_for_in_statement] = {
- .visible = true,
- .named = true,
- },
- [sym__for_header] = {
- .visible = false,
- .named = true,
- },
- [sym_while_statement] = {
- .visible = true,
- .named = true,
- },
- [sym_do_statement] = {
- .visible = true,
- .named = true,
- },
- [sym_try_statement] = {
- .visible = true,
- .named = true,
- },
- [sym_with_statement] = {
- .visible = true,
- .named = true,
- },
- [sym_break_statement] = {
- .visible = true,
- .named = true,
- },
- [sym_continue_statement] = {
- .visible = true,
- .named = true,
- },
- [sym_debugger_statement] = {
- .visible = true,
- .named = true,
- },
- [sym_return_statement] = {
- .visible = true,
- .named = true,
- },
- [sym_throw_statement] = {
- .visible = true,
- .named = true,
- },
- [sym_empty_statement] = {
- .visible = true,
- .named = true,
- },
- [sym_labeled_statement] = {
- .visible = true,
- .named = true,
- },
- [sym_switch_body] = {
- .visible = true,
- .named = true,
- },
- [sym_switch_case] = {
- .visible = true,
- .named = true,
- },
- [sym_switch_default] = {
- .visible = true,
- .named = true,
- },
- [sym_catch_clause] = {
- .visible = true,
- .named = true,
- },
- [sym_finally_clause] = {
- .visible = true,
- .named = true,
- },
- [sym_parenthesized_expression] = {
- .visible = true,
- .named = true,
- },
- [sym_expression] = {
- .visible = false,
- .named = true,
- .supertype = true,
- },
- [sym_primary_expression] = {
- .visible = false,
- .named = true,
- .supertype = true,
- },
- [sym_yield_expression] = {
- .visible = true,
- .named = true,
- },
- [sym_object] = {
- .visible = true,
- .named = true,
- },
- [sym_object_pattern] = {
- .visible = true,
- .named = true,
- },
- [sym_assignment_pattern] = {
- .visible = true,
- .named = true,
- },
- [sym_object_assignment_pattern] = {
- .visible = true,
- .named = true,
- },
- [sym_array] = {
- .visible = true,
- .named = true,
- },
- [sym_array_pattern] = {
- .visible = true,
- .named = true,
- },
- [sym_glimmer_template] = {
- .visible = true,
- .named = true,
- },
- [sym_jsx_element] = {
- .visible = true,
- .named = true,
- },
- [sym_jsx_text] = {
- .visible = true,
- .named = true,
- },
- [sym_jsx_expression] = {
- .visible = true,
- .named = true,
- },
- [sym_jsx_opening_element] = {
- .visible = true,
- .named = true,
- },
- [sym_nested_identifier] = {
- .visible = true,
- .named = true,
- },
- [sym_jsx_namespace_name] = {
- .visible = true,
- .named = true,
- },
- [sym_jsx_closing_element] = {
- .visible = true,
- .named = true,
- },
- [sym_jsx_self_closing_element] = {
- .visible = true,
- .named = true,
- },
- [sym_jsx_attribute] = {
- .visible = true,
- .named = true,
- },
- [sym__jsx_string] = {
- .visible = true,
- .named = true,
- },
- [sym_class] = {
- .visible = true,
- .named = true,
- },
- [sym_class_declaration] = {
- .visible = true,
- .named = true,
- },
- [sym_class_heritage] = {
- .visible = true,
- .named = true,
- },
- [sym_function_expression] = {
- .visible = true,
- .named = true,
- },
- [sym_function_declaration] = {
- .visible = true,
- .named = true,
- },
- [sym_generator_function] = {
- .visible = true,
- .named = true,
- },
- [sym_generator_function_declaration] = {
- .visible = true,
- .named = true,
- },
- [sym_arrow_function] = {
- .visible = true,
- .named = true,
- },
- [sym__call_signature] = {
- .visible = false,
- .named = true,
- },
- [sym__formal_parameter] = {
- .visible = false,
- .named = true,
- },
- [sym_optional_chain] = {
- .visible = true,
- .named = true,
- },
- [sym_call_expression] = {
- .visible = true,
- .named = true,
- },
- [sym_new_expression] = {
- .visible = true,
- .named = true,
- },
- [sym_await_expression] = {
- .visible = true,
- .named = true,
- },
- [sym_member_expression] = {
- .visible = true,
- .named = true,
- },
- [sym_subscript_expression] = {
- .visible = true,
- .named = true,
- },
- [sym_assignment_expression] = {
- .visible = true,
- .named = true,
- },
- [sym__augmented_assignment_lhs] = {
- .visible = false,
- .named = true,
- },
- [sym_augmented_assignment_expression] = {
- .visible = true,
- .named = true,
- },
- [sym__initializer] = {
- .visible = false,
- .named = true,
- },
- [sym__destructuring_pattern] = {
- .visible = false,
- .named = true,
- },
- [sym_spread_element] = {
- .visible = true,
- .named = true,
- },
- [sym_ternary_expression] = {
- .visible = true,
- .named = true,
- },
- [sym_binary_expression] = {
- .visible = true,
- .named = true,
- },
- [sym_unary_expression] = {
- .visible = true,
- .named = true,
- },
- [sym_update_expression] = {
- .visible = true,
- .named = true,
- },
- [sym_sequence_expression] = {
- .visible = true,
- .named = true,
- },
- [sym_string] = {
- .visible = true,
- .named = true,
- },
- [sym_template_string] = {
- .visible = true,
- .named = true,
- },
- [sym_template_substitution] = {
- .visible = true,
- .named = true,
- },
- [sym_regex] = {
- .visible = true,
- .named = true,
- },
- [sym_meta_property] = {
- .visible = true,
- .named = true,
- },
- [sym_arguments] = {
- .visible = true,
- .named = true,
- },
- [sym_decorator] = {
- .visible = true,
- .named = true,
- },
- [sym_decorator_member_expression] = {
- .visible = true,
- .named = true,
- },
- [sym_decorator_call_expression] = {
- .visible = true,
- .named = true,
- },
- [sym_class_body] = {
- .visible = true,
- .named = true,
- },
- [sym_formal_parameters] = {
- .visible = true,
- .named = true,
- },
- [sym_class_static_block] = {
- .visible = true,
- .named = true,
- },
- [sym_pattern] = {
- .visible = false,
- .named = true,
- .supertype = true,
- },
- [sym_rest_pattern] = {
- .visible = true,
- .named = true,
- },
- [sym_method_definition] = {
- .visible = true,
- .named = true,
- },
- [sym_pair] = {
- .visible = true,
- .named = true,
- },
- [sym_pair_pattern] = {
- .visible = true,
- .named = true,
- },
- [sym__property_name] = {
- .visible = false,
- .named = true,
- },
- [sym_computed_property_name] = {
- .visible = true,
- .named = true,
- },
- [sym_public_field_definition] = {
- .visible = true,
- .named = true,
- },
- [sym__import_identifier] = {
- .visible = false,
- .named = true,
- },
- [sym_non_null_expression] = {
- .visible = true,
- .named = true,
- },
- [sym_method_signature] = {
- .visible = true,
- .named = true,
- },
- [sym_abstract_method_signature] = {
- .visible = true,
- .named = true,
- },
- [sym_function_signature] = {
- .visible = true,
- .named = true,
- },
- [sym_decorator_parenthesized_expression] = {
- .visible = true,
- .named = true,
- },
- [sym_as_expression] = {
- .visible = true,
- .named = true,
- },
- [sym_satisfies_expression] = {
- .visible = true,
- .named = true,
- },
- [sym_instantiation_expression] = {
- .visible = true,
- .named = true,
- },
- [sym_import_require_clause] = {
- .visible = true,
- .named = true,
- },
- [sym_extends_clause] = {
- .visible = true,
- .named = true,
- },
- [sym__extends_clause_single] = {
- .visible = false,
- .named = true,
- },
- [sym_implements_clause] = {
- .visible = true,
- .named = true,
- },
- [sym_ambient_declaration] = {
- .visible = true,
- .named = true,
- },
- [sym_abstract_class_declaration] = {
- .visible = true,
- .named = true,
- },
- [sym_module] = {
- .visible = true,
- .named = true,
- },
- [sym_internal_module] = {
- .visible = true,
- .named = true,
- },
- [sym__module] = {
- .visible = false,
- .named = true,
- },
- [sym_import_alias] = {
- .visible = true,
- .named = true,
- },
- [sym_nested_type_identifier] = {
- .visible = true,
- .named = true,
- },
- [sym_interface_declaration] = {
- .visible = true,
- .named = true,
- },
- [sym_extends_type_clause] = {
- .visible = true,
- .named = true,
- },
- [sym_enum_declaration] = {
- .visible = true,
- .named = true,
- },
- [sym_enum_body] = {
- .visible = true,
- .named = true,
- },
- [sym_enum_assignment] = {
- .visible = true,
- .named = true,
- },
- [sym_type_alias_declaration] = {
- .visible = true,
- .named = true,
- },
- [sym_accessibility_modifier] = {
- .visible = true,
- .named = true,
- },
- [sym_override_modifier] = {
- .visible = true,
- .named = true,
- },
- [sym_required_parameter] = {
- .visible = true,
- .named = true,
- },
- [sym_optional_parameter] = {
- .visible = true,
- .named = true,
- },
- [sym__parameter_name] = {
- .visible = false,
- .named = true,
- },
- [sym_omitting_type_annotation] = {
- .visible = true,
- .named = true,
- },
- [sym_adding_type_annotation] = {
- .visible = true,
- .named = true,
- },
- [sym_opting_type_annotation] = {
- .visible = true,
- .named = true,
- },
- [sym_type_annotation] = {
- .visible = true,
- .named = true,
- },
- [sym__type_query_member_expression_in_type_annotation] = {
- .visible = true,
- .named = true,
- },
- [sym__type_query_call_expression_in_type_annotation] = {
- .visible = true,
- .named = true,
- },
- [sym_asserts] = {
- .visible = true,
- .named = true,
- },
- [sym_asserts_annotation] = {
- .visible = true,
- .named = true,
- },
- [sym_type] = {
- .visible = false,
- .named = true,
- .supertype = true,
- },
- [sym_tuple_parameter] = {
- .visible = true,
- .named = true,
- },
- [sym_optional_tuple_parameter] = {
- .visible = true,
- .named = true,
- },
- [sym_optional_type] = {
- .visible = true,
- .named = true,
- },
- [sym_rest_type] = {
- .visible = true,
- .named = true,
- },
- [sym__tuple_type_member] = {
- .visible = false,
- .named = true,
- },
- [sym_constructor_type] = {
- .visible = true,
- .named = true,
- },
- [sym_primary_type] = {
- .visible = false,
- .named = true,
- .supertype = true,
- },
- [sym_template_type] = {
- .visible = true,
- .named = true,
- },
- [sym_template_literal_type] = {
- .visible = true,
- .named = true,
- },
- [sym_infer_type] = {
- .visible = true,
- .named = true,
- },
- [sym_conditional_type] = {
- .visible = true,
- .named = true,
- },
- [sym_generic_type] = {
- .visible = true,
- .named = true,
- },
- [sym_type_predicate] = {
- .visible = true,
- .named = true,
- },
- [sym_type_predicate_annotation] = {
- .visible = true,
- .named = true,
- },
- [sym__type_query_member_expression] = {
- .visible = true,
- .named = true,
- },
- [sym__type_query_subscript_expression] = {
- .visible = true,
- .named = true,
- },
- [sym__type_query_call_expression] = {
- .visible = true,
- .named = true,
- },
- [sym__type_query_instantiation_expression] = {
- .visible = true,
- .named = true,
- },
- [sym_type_query] = {
- .visible = true,
- .named = true,
- },
- [sym_index_type_query] = {
- .visible = true,
- .named = true,
- },
- [sym_lookup_type] = {
- .visible = true,
- .named = true,
- },
- [sym_mapped_type_clause] = {
- .visible = true,
- .named = true,
- },
- [sym_literal_type] = {
- .visible = true,
- .named = true,
- },
- [sym__number] = {
- .visible = true,
- .named = true,
- },
- [sym_existential_type] = {
- .visible = true,
- .named = true,
- },
- [sym_flow_maybe_type] = {
- .visible = true,
- .named = true,
- },
- [sym_parenthesized_type] = {
- .visible = true,
- .named = true,
- },
- [sym_predefined_type] = {
- .visible = true,
- .named = true,
- },
- [sym_type_arguments] = {
- .visible = true,
- .named = true,
- },
- [sym_object_type] = {
- .visible = true,
- .named = true,
- },
- [sym_call_signature] = {
- .visible = true,
- .named = true,
- },
- [sym_property_signature] = {
- .visible = true,
- .named = true,
- },
- [sym_type_parameters] = {
- .visible = true,
- .named = true,
- },
- [sym_type_parameter] = {
- .visible = true,
- .named = true,
- },
- [sym_default_type] = {
- .visible = true,
- .named = true,
- },
- [sym_constraint] = {
- .visible = true,
- .named = true,
- },
- [sym_construct_signature] = {
- .visible = true,
- .named = true,
- },
- [sym_index_signature] = {
- .visible = true,
- .named = true,
- },
- [sym_array_type] = {
- .visible = true,
- .named = true,
- },
- [sym_tuple_type] = {
- .visible = true,
- .named = true,
- },
- [sym_readonly_type] = {
- .visible = true,
- .named = true,
- },
- [sym_union_type] = {
- .visible = true,
- .named = true,
- },
- [sym_intersection_type] = {
- .visible = true,
- .named = true,
- },
- [sym_function_type] = {
- .visible = true,
- .named = true,
- },
- [aux_sym_program_repeat1] = {
- .visible = false,
- .named = false,
- },
- [aux_sym_export_statement_repeat1] = {
- .visible = false,
- .named = false,
- },
- [aux_sym_export_clause_repeat1] = {
- .visible = false,
- .named = false,
- },
- [aux_sym_named_imports_repeat1] = {
- .visible = false,
- .named = false,
- },
- [aux_sym_variable_declaration_repeat1] = {
- .visible = false,
- .named = false,
- },
- [aux_sym_switch_body_repeat1] = {
- .visible = false,
- .named = false,
- },
- [aux_sym_object_repeat1] = {
- .visible = false,
- .named = false,
- },
- [aux_sym_object_pattern_repeat1] = {
- .visible = false,
- .named = false,
- },
- [aux_sym_array_repeat1] = {
- .visible = false,
- .named = false,
- },
- [aux_sym_array_pattern_repeat1] = {
- .visible = false,
- .named = false,
- },
- [aux_sym_glimmer_template_repeat1] = {
- .visible = false,
- .named = false,
- },
- [aux_sym_jsx_element_repeat1] = {
- .visible = false,
- .named = false,
- },
- [aux_sym__jsx_string_repeat1] = {
- .visible = false,
- .named = false,
- },
- [aux_sym__jsx_string_repeat2] = {
- .visible = false,
- .named = false,
- },
- [aux_sym_sequence_expression_repeat1] = {
- .visible = false,
- .named = false,
- },
- [aux_sym_string_repeat1] = {
- .visible = false,
- .named = false,
- },
- [aux_sym_string_repeat2] = {
- .visible = false,
- .named = false,
- },
- [aux_sym_template_string_repeat1] = {
- .visible = false,
- .named = false,
- },
- [aux_sym_class_body_repeat1] = {
- .visible = false,
- .named = false,
- },
- [aux_sym_formal_parameters_repeat1] = {
- .visible = false,
- .named = false,
- },
- [aux_sym__jsx_start_opening_element_repeat1] = {
- .visible = false,
- .named = false,
- },
- [aux_sym_extends_clause_repeat1] = {
- .visible = false,
- .named = false,
- },
- [aux_sym_implements_clause_repeat1] = {
- .visible = false,
- .named = false,
- },
- [aux_sym_extends_type_clause_repeat1] = {
- .visible = false,
- .named = false,
- },
- [aux_sym_enum_body_repeat1] = {
- .visible = false,
- .named = false,
- },
- [aux_sym_template_literal_type_repeat1] = {
- .visible = false,
- .named = false,
- },
- [aux_sym_object_type_repeat1] = {
- .visible = false,
- .named = false,
- },
- [aux_sym_type_parameters_repeat1] = {
- .visible = false,
- .named = false,
- },
- [aux_sym_tuple_type_repeat1] = {
- .visible = false,
- .named = false,
- },
- [alias_sym_interface_body] = {
- .visible = true,
- .named = true,
- },
- [alias_sym_property_identifier] = {
- .visible = true,
- .named = true,
- },
- [alias_sym_shorthand_property_identifier] = {
- .visible = true,
- .named = true,
- },
- [alias_sym_shorthand_property_identifier_pattern] = {
- .visible = true,
- .named = true,
- },
- [alias_sym_statement_identifier] = {
- .visible = true,
- .named = true,
- },
- [alias_sym_this_type] = {
- .visible = true,
- .named = true,
- },
- [alias_sym_type_identifier] = {
- .visible = true,
- .named = true,
- },
-};
-
-enum ts_field_identifiers {
- field_alias = 1,
- field_alternative = 2,
- field_argument = 3,
- field_arguments = 4,
- field_attribute = 5,
- field_body = 6,
- field_close_tag = 7,
- field_condition = 8,
- field_consequence = 9,
- field_constraint = 10,
- field_constructor = 11,
- field_content = 12,
- field_declaration = 13,
- field_decorator = 14,
- field_finalizer = 15,
- field_flags = 16,
- field_function = 17,
- field_handler = 18,
- field_increment = 19,
- field_index = 20,
- field_index_type = 21,
- field_initializer = 22,
- field_key = 23,
- field_kind = 24,
- field_label = 25,
- field_left = 26,
- field_module = 27,
- field_name = 28,
- field_object = 29,
- field_open_tag = 30,
- field_operator = 31,
- field_optional_chain = 32,
- field_parameter = 33,
- field_parameters = 34,
- field_pattern = 35,
- field_property = 36,
- field_return_type = 37,
- field_right = 38,
- field_sign = 39,
- field_source = 40,
- field_type = 41,
- field_type_arguments = 42,
- field_type_parameters = 43,
- field_value = 44,
-};
-
-static const char * const ts_field_names[] = {
- [0] = NULL,
- [field_alias] = "alias",
- [field_alternative] = "alternative",
- [field_argument] = "argument",
- [field_arguments] = "arguments",
- [field_attribute] = "attribute",
- [field_body] = "body",
- [field_close_tag] = "close_tag",
- [field_condition] = "condition",
- [field_consequence] = "consequence",
- [field_constraint] = "constraint",
- [field_constructor] = "constructor",
- [field_content] = "content",
- [field_declaration] = "declaration",
- [field_decorator] = "decorator",
- [field_finalizer] = "finalizer",
- [field_flags] = "flags",
- [field_function] = "function",
- [field_handler] = "handler",
- [field_increment] = "increment",
- [field_index] = "index",
- [field_index_type] = "index_type",
- [field_initializer] = "initializer",
- [field_key] = "key",
- [field_kind] = "kind",
- [field_label] = "label",
- [field_left] = "left",
- [field_module] = "module",
- [field_name] = "name",
- [field_object] = "object",
- [field_open_tag] = "open_tag",
- [field_operator] = "operator",
- [field_optional_chain] = "optional_chain",
- [field_parameter] = "parameter",
- [field_parameters] = "parameters",
- [field_pattern] = "pattern",
- [field_property] = "property",
- [field_return_type] = "return_type",
- [field_right] = "right",
- [field_sign] = "sign",
- [field_source] = "source",
- [field_type] = "type",
- [field_type_arguments] = "type_arguments",
- [field_type_parameters] = "type_parameters",
- [field_value] = "value",
-};
-
-static const TSFieldMapSlice ts_field_map_slices[PRODUCTION_ID_COUNT] = {
- [2] = {.index = 0, .length = 1},
- [3] = {.index = 1, .length = 1},
- [4] = {.index = 2, .length = 1},
- [5] = {.index = 3, .length = 1},
- [6] = {.index = 4, .length = 2},
- [8] = {.index = 6, .length = 2},
- [9] = {.index = 8, .length = 1},
- [10] = {.index = 9, .length = 2},
- [11] = {.index = 11, .length = 1},
- [12] = {.index = 12, .length = 2},
- [13] = {.index = 14, .length = 1},
- [14] = {.index = 3, .length = 1},
- [15] = {.index = 15, .length = 2},
- [16] = {.index = 17, .length = 2},
- [17] = {.index = 19, .length = 1},
- [18] = {.index = 20, .length = 2},
- [19] = {.index = 22, .length = 2},
- [20] = {.index = 24, .length = 2},
- [21] = {.index = 26, .length = 1},
- [22] = {.index = 27, .length = 2},
- [23] = {.index = 29, .length = 2},
- [24] = {.index = 31, .length = 2},
- [25] = {.index = 33, .length = 2},
- [29] = {.index = 35, .length = 1},
- [30] = {.index = 36, .length = 2},
- [31] = {.index = 38, .length = 2},
- [32] = {.index = 40, .length = 2},
- [33] = {.index = 42, .length = 1},
- [34] = {.index = 43, .length = 2},
- [35] = {.index = 45, .length = 2},
- [36] = {.index = 47, .length = 6},
- [37] = {.index = 53, .length = 1},
- [38] = {.index = 54, .length = 3},
- [39] = {.index = 57, .length = 3},
- [40] = {.index = 60, .length = 2},
- [41] = {.index = 62, .length = 2},
- [42] = {.index = 64, .length = 2},
- [43] = {.index = 66, .length = 2},
- [44] = {.index = 68, .length = 1},
- [45] = {.index = 69, .length = 3},
- [46] = {.index = 72, .length = 2},
- [47] = {.index = 74, .length = 1},
- [48] = {.index = 75, .length = 2},
- [51] = {.index = 77, .length = 2},
- [52] = {.index = 79, .length = 2},
- [53] = {.index = 81, .length = 2},
- [54] = {.index = 83, .length = 1},
- [55] = {.index = 84, .length = 2},
- [56] = {.index = 86, .length = 4},
- [57] = {.index = 90, .length = 2},
- [58] = {.index = 92, .length = 2},
- [59] = {.index = 94, .length = 1},
- [60] = {.index = 94, .length = 1},
- [61] = {.index = 95, .length = 1},
- [62] = {.index = 96, .length = 2},
- [63] = {.index = 98, .length = 2},
- [64] = {.index = 94, .length = 1},
- [65] = {.index = 27, .length = 2},
- [66] = {.index = 31, .length = 2},
- [67] = {.index = 100, .length = 3},
- [68] = {.index = 72, .length = 2},
- [69] = {.index = 72, .length = 2},
- [70] = {.index = 103, .length = 2},
- [71] = {.index = 103, .length = 2},
- [72] = {.index = 105, .length = 3},
- [73] = {.index = 105, .length = 3},
- [74] = {.index = 108, .length = 3},
- [75] = {.index = 111, .length = 2},
- [76] = {.index = 113, .length = 2},
- [77] = {.index = 115, .length = 4},
- [78] = {.index = 119, .length = 3},
- [79] = {.index = 122, .length = 2},
- [80] = {.index = 124, .length = 2},
- [81] = {.index = 126, .length = 1},
- [82] = {.index = 127, .length = 1},
- [83] = {.index = 103, .length = 2},
- [84] = {.index = 27, .length = 2},
- [85] = {.index = 128, .length = 2},
- [86] = {.index = 130, .length = 5},
- [87] = {.index = 135, .length = 1},
- [88] = {.index = 136, .length = 1},
- [89] = {.index = 137, .length = 2},
- [90] = {.index = 139, .length = 3},
- [91] = {.index = 142, .length = 2},
- [92] = {.index = 144, .length = 3},
- [93] = {.index = 147, .length = 6},
- [94] = {.index = 153, .length = 1},
- [95] = {.index = 154, .length = 1},
- [96] = {.index = 155, .length = 3},
- [97] = {.index = 158, .length = 3},
- [98] = {.index = 161, .length = 4},
- [99] = {.index = 165, .length = 2},
- [100] = {.index = 167, .length = 2},
- [101] = {.index = 169, .length = 3},
- [102] = {.index = 172, .length = 4},
- [103] = {.index = 176, .length = 1},
- [104] = {.index = 177, .length = 2},
- [105] = {.index = 179, .length = 1},
- [106] = {.index = 180, .length = 2},
- [107] = {.index = 182, .length = 3},
- [108] = {.index = 185, .length = 2},
- [109] = {.index = 187, .length = 4},
- [110] = {.index = 191, .length = 3},
- [111] = {.index = 194, .length = 2},
- [112] = {.index = 196, .length = 2},
- [113] = {.index = 198, .length = 2},
- [114] = {.index = 200, .length = 2},
- [115] = {.index = 202, .length = 2},
- [118] = {.index = 202, .length = 2},
- [119] = {.index = 204, .length = 4},
- [120] = {.index = 208, .length = 2},
- [121] = {.index = 210, .length = 2},
- [122] = {.index = 212, .length = 4},
- [123] = {.index = 210, .length = 2},
- [124] = {.index = 216, .length = 4},
- [125] = {.index = 220, .length = 4},
- [126] = {.index = 224, .length = 5},
- [127] = {.index = 229, .length = 3},
- [128] = {.index = 232, .length = 2},
- [129] = {.index = 232, .length = 2},
- [130] = {.index = 234, .length = 2},
- [131] = {.index = 236, .length = 2},
- [132] = {.index = 238, .length = 2},
- [133] = {.index = 240, .length = 2},
- [134] = {.index = 242, .length = 2},
- [135] = {.index = 244, .length = 2},
- [136] = {.index = 246, .length = 3},
- [137] = {.index = 244, .length = 2},
- [138] = {.index = 240, .length = 2},
- [139] = {.index = 142, .length = 2},
- [140] = {.index = 249, .length = 1},
- [141] = {.index = 249, .length = 1},
- [142] = {.index = 180, .length = 2},
- [143] = {.index = 182, .length = 3},
- [144] = {.index = 250, .length = 2},
- [145] = {.index = 252, .length = 3},
- [146] = {.index = 255, .length = 2},
- [147] = {.index = 257, .length = 3},
- [148] = {.index = 260, .length = 2},
- [149] = {.index = 262, .length = 3},
- [150] = {.index = 265, .length = 1},
- [151] = {.index = 266, .length = 2},
- [152] = {.index = 268, .length = 2},
- [153] = {.index = 270, .length = 5},
- [154] = {.index = 266, .length = 2},
- [155] = {.index = 275, .length = 1},
- [156] = {.index = 276, .length = 4},
- [157] = {.index = 280, .length = 2},
- [158] = {.index = 282, .length = 1},
- [159] = {.index = 283, .length = 2},
- [160] = {.index = 285, .length = 2},
- [161] = {.index = 287, .length = 2},
- [162] = {.index = 289, .length = 4},
- [163] = {.index = 293, .length = 2},
- [164] = {.index = 295, .length = 3},
- [165] = {.index = 298, .length = 3},
- [166] = {.index = 301, .length = 3},
- [167] = {.index = 304, .length = 4},
- [168] = {.index = 308, .length = 1},
- [169] = {.index = 309, .length = 2},
- [170] = {.index = 311, .length = 4},
- [171] = {.index = 315, .length = 4},
- [172] = {.index = 319, .length = 4},
- [173] = {.index = 323, .length = 2},
- [174] = {.index = 325, .length = 2},
- [175] = {.index = 327, .length = 4},
- [176] = {.index = 327, .length = 4},
- [177] = {.index = 331, .length = 4},
- [178] = {.index = 331, .length = 4},
- [179] = {.index = 335, .length = 4},
- [180] = {.index = 339, .length = 4},
- [181] = {.index = 343, .length = 5},
- [182] = {.index = 348, .length = 3},
- [183] = {.index = 351, .length = 3},
- [184] = {.index = 351, .length = 3},
- [185] = {.index = 354, .length = 2},
- [186] = {.index = 356, .length = 3},
- [187] = {.index = 359, .length = 2},
- [188] = {.index = 359, .length = 2},
- [189] = {.index = 301, .length = 3},
- [190] = {.index = 361, .length = 3},
- [191] = {.index = 364, .length = 3},
- [192] = {.index = 137, .length = 2},
- [193] = {.index = 367, .length = 2},
- [194] = {.index = 369, .length = 3},
- [195] = {.index = 372, .length = 4},
- [196] = {.index = 376, .length = 3},
- [197] = {.index = 379, .length = 3},
- [198] = {.index = 382, .length = 2},
- [199] = {.index = 384, .length = 3},
- [200] = {.index = 387, .length = 5},
- [201] = {.index = 382, .length = 2},
- [202] = {.index = 392, .length = 3},
- [203] = {.index = 392, .length = 3},
- [204] = {.index = 395, .length = 3},
- [205] = {.index = 398, .length = 2},
- [206] = {.index = 400, .length = 4},
- [207] = {.index = 137, .length = 2},
- [208] = {.index = 404, .length = 1},
- [209] = {.index = 405, .length = 2},
- [210] = {.index = 407, .length = 2},
- [211] = {.index = 409, .length = 2},
- [212] = {.index = 411, .length = 2},
- [213] = {.index = 413, .length = 3},
- [214] = {.index = 416, .length = 1},
- [215] = {.index = 417, .length = 3},
- [216] = {.index = 420, .length = 2},
- [217] = {.index = 422, .length = 3},
- [218] = {.index = 425, .length = 3},
- [219] = {.index = 428, .length = 3},
- [220] = {.index = 431, .length = 3},
- [221] = {.index = 434, .length = 4},
- [222] = {.index = 438, .length = 2},
- [223] = {.index = 440, .length = 2},
- [224] = {.index = 442, .length = 1},
- [225] = {.index = 443, .length = 4},
- [226] = {.index = 443, .length = 4},
- [227] = {.index = 447, .length = 2},
- [228] = {.index = 449, .length = 3},
- [229] = {.index = 452, .length = 5},
- [230] = {.index = 457, .length = 3},
- [231] = {.index = 460, .length = 2},
- [232] = {.index = 462, .length = 2},
- [233] = {.index = 464, .length = 2},
- [234] = {.index = 466, .length = 1},
- [235] = {.index = 467, .length = 4},
- [236] = {.index = 471, .length = 3},
- [237] = {.index = 474, .length = 4},
- [238] = {.index = 478, .length = 5},
- [239] = {.index = 483, .length = 1},
- [240] = {.index = 484, .length = 2},
- [241] = {.index = 486, .length = 4},
- [242] = {.index = 490, .length = 4},
- [243] = {.index = 494, .length = 2},
- [244] = {.index = 496, .length = 4},
- [245] = {.index = 500, .length = 4},
- [246] = {.index = 504, .length = 2},
- [247] = {.index = 506, .length = 2},
- [248] = {.index = 508, .length = 3},
- [249] = {.index = 511, .length = 3},
- [250] = {.index = 514, .length = 2},
- [251] = {.index = 516, .length = 2},
- [252] = {.index = 518, .length = 1},
- [253] = {.index = 519, .length = 1},
- [254] = {.index = 520, .length = 3},
- [255] = {.index = 523, .length = 3},
- [256] = {.index = 526, .length = 3},
- [257] = {.index = 529, .length = 3},
- [258] = {.index = 532, .length = 4},
- [259] = {.index = 536, .length = 2},
- [260] = {.index = 538, .length = 4},
- [261] = {.index = 542, .length = 3},
- [262] = {.index = 545, .length = 2},
- [263] = {.index = 547, .length = 2},
- [264] = {.index = 549, .length = 4},
- [265] = {.index = 553, .length = 4},
- [266] = {.index = 557, .length = 4},
- [267] = {.index = 561, .length = 3},
- [268] = {.index = 564, .length = 2},
- [270] = {.index = 566, .length = 4},
- [271] = {.index = 570, .length = 5},
- [272] = {.index = 575, .length = 5},
- [273] = {.index = 580, .length = 5},
- [274] = {.index = 585, .length = 3},
- [275] = {.index = 588, .length = 3},
- [276] = {.index = 591, .length = 3},
- [277] = {.index = 588, .length = 3},
- [278] = {.index = 594, .length = 2},
- [279] = {.index = 596, .length = 4},
- [280] = {.index = 600, .length = 4},
- [281] = {.index = 604, .length = 3},
- [282] = {.index = 607, .length = 2},
- [283] = {.index = 609, .length = 2},
- [284] = {.index = 611, .length = 3},
- [285] = {.index = 614, .length = 2},
- [286] = {.index = 616, .length = 2},
- [287] = {.index = 618, .length = 1},
- [288] = {.index = 619, .length = 3},
- [289] = {.index = 622, .length = 3},
- [290] = {.index = 625, .length = 4},
- [291] = {.index = 629, .length = 4},
- [292] = {.index = 633, .length = 3},
- [293] = {.index = 636, .length = 3},
- [294] = {.index = 639, .length = 2},
- [295] = {.index = 641, .length = 3},
- [296] = {.index = 644, .length = 2},
- [297] = {.index = 646, .length = 4},
- [298] = {.index = 650, .length = 4},
- [299] = {.index = 654, .length = 4},
- [300] = {.index = 658, .length = 3},
- [301] = {.index = 661, .length = 5},
- [302] = {.index = 666, .length = 5},
- [303] = {.index = 671, .length = 4},
- [304] = {.index = 675, .length = 4},
- [305] = {.index = 679, .length = 3},
- [306] = {.index = 682, .length = 3},
- [307] = {.index = 682, .length = 3},
- [308] = {.index = 685, .length = 2},
- [309] = {.index = 687, .length = 2},
- [310] = {.index = 689, .length = 3},
- [311] = {.index = 692, .length = 2},
- [312] = {.index = 694, .length = 2},
- [313] = {.index = 696, .length = 4},
- [314] = {.index = 700, .length = 3},
- [315] = {.index = 703, .length = 3},
- [316] = {.index = 706, .length = 4},
- [317] = {.index = 710, .length = 3},
- [318] = {.index = 713, .length = 3},
- [319] = {.index = 716, .length = 2},
- [320] = {.index = 718, .length = 4},
- [321] = {.index = 722, .length = 5},
- [322] = {.index = 727, .length = 5},
- [323] = {.index = 732, .length = 4},
- [324] = {.index = 732, .length = 4},
- [325] = {.index = 736, .length = 4},
- [326] = {.index = 740, .length = 3},
- [327] = {.index = 743, .length = 2},
- [328] = {.index = 745, .length = 2},
- [329] = {.index = 747, .length = 3},
- [330] = {.index = 750, .length = 4},
- [331] = {.index = 754, .length = 4},
- [332] = {.index = 758, .length = 3},
- [333] = {.index = 761, .length = 3},
- [334] = {.index = 764, .length = 4},
- [335] = {.index = 768, .length = 3},
- [336] = {.index = 771, .length = 3},
- [337] = {.index = 774, .length = 5},
- [338] = {.index = 779, .length = 3},
- [339] = {.index = 782, .length = 4},
- [340] = {.index = 786, .length = 4},
- [341] = {.index = 790, .length = 3},
- [342] = {.index = 793, .length = 3},
- [343] = {.index = 796, .length = 4},
- [344] = {.index = 800, .length = 4},
-};
-
-static const TSFieldMapEntry ts_field_map_entries[] = {
- [0] =
- {field_decorator, 0},
- [1] =
- {field_parameters, 0},
- [2] =
- {field_declaration, 1},
- [3] =
- {field_name, 0},
- [4] =
- {field_body, 1, .inherited = true},
- {field_name, 1, .inherited = true},
- [6] =
- {field_argument, 1},
- {field_operator, 0},
- [8] =
- {field_pattern, 0},
- [9] =
- {field_decorator, 0, .inherited = true},
- {field_pattern, 0, .inherited = true},
- [11] =
- {field_body, 1},
- [12] =
- {field_close_tag, 1},
- {field_open_tag, 0},
- [14] =
- {field_constructor, 1},
- [15] =
- {field_arguments, 1},
- {field_function, 0},
- [17] =
- {field_argument, 0},
- {field_operator, 1},
- [19] =
- {field_type_arguments, 1},
- [20] =
- {field_parameters, 0},
- {field_return_type, 1},
- [22] =
- {field_parameters, 1},
- {field_type_parameters, 0},
- [24] =
- {field_decorator, 0, .inherited = true},
- {field_decorator, 1, .inherited = true},
- [26] =
- {field_declaration, 2},
- [27] =
- {field_left, 0},
- {field_right, 2},
- [29] =
- {field_body, 2},
- {field_label, 0},
- [31] =
- {field_body, 2},
- {field_parameter, 0},
- [33] =
- {field_body, 1},
- {field_name, 0},
- [35] =
- {field_source, 1},
- [36] =
- {field_body, 2},
- {field_object, 1},
- [38] =
- {field_name, 0},
- {field_value, 1, .inherited = true},
- [40] =
- {field_name, 0},
- {field_type, 1},
- [42] =
- {field_kind, 0},
- [43] =
- {field_condition, 1},
- {field_consequence, 2},
- [45] =
- {field_body, 2},
- {field_value, 1},
- [47] =
- {field_body, 2},
- {field_kind, 1, .inherited = true},
- {field_left, 1, .inherited = true},
- {field_operator, 1, .inherited = true},
- {field_right, 1, .inherited = true},
- {field_value, 1, .inherited = true},
- [53] =
- {field_pattern, 1},
- [54] =
- {field_decorator, 0, .inherited = true},
- {field_pattern, 0, .inherited = true},
- {field_value, 1, .inherited = true},
- [57] =
- {field_decorator, 0, .inherited = true},
- {field_pattern, 0, .inherited = true},
- {field_type, 1},
- [60] =
- {field_decorator, 0, .inherited = true},
- {field_pattern, 1},
- [62] =
- {field_body, 2},
- {field_condition, 1},
- [64] =
- {field_body, 1},
- {field_handler, 2},
- [66] =
- {field_body, 1},
- {field_finalizer, 2},
- [68] =
- {field_label, 1},
- [69] =
- {field_close_tag, 2},
- {field_content, 1},
- {field_open_tag, 0},
- [72] =
- {field_body, 2},
- {field_name, 1},
- [74] =
- {field_value, 0},
- [75] =
- {field_type_arguments, 1, .inherited = true},
- {field_value, 1, .inherited = true},
- [77] =
- {field_object, 0, .inherited = true},
- {field_property, 0, .inherited = true},
- [79] =
- {field_arguments, 0, .inherited = true},
- {field_function, 0, .inherited = true},
- [81] =
- {field_argument, 0, .inherited = true},
- {field_operator, 0, .inherited = true},
- [83] =
- {field_body, 2},
- [84] =
- {field_body, 2},
- {field_type_parameters, 1},
- [86] =
- {field_body, 2},
- {field_parameters, 1, .inherited = true},
- {field_return_type, 1, .inherited = true},
- {field_type_parameters, 1, .inherited = true},
- [90] =
- {field_arguments, 2},
- {field_constructor, 1},
- [92] =
- {field_constructor, 1},
- {field_type_arguments, 2},
- [94] =
- {field_name, 1},
- [95] =
- {field_attribute, 0},
- [96] =
- {field_name, 0},
- {field_value, 1},
- [98] =
- {field_constraint, 1},
- {field_name, 0},
- [100] =
- {field_left, 0},
- {field_operator, 1},
- {field_right, 2},
- [103] =
- {field_object, 0},
- {field_property, 2},
- [105] =
- {field_object, 0},
- {field_optional_chain, 1},
- {field_property, 2},
- [108] =
- {field_arguments, 2},
- {field_function, 0},
- {field_type_arguments, 1},
- [111] =
- {field_arguments, 2},
- {field_function, 0},
- [113] =
- {field_close_tag, 2},
- {field_open_tag, 0},
- [115] =
- {field_body, 2},
- {field_parameters, 0, .inherited = true},
- {field_return_type, 0, .inherited = true},
- {field_type_parameters, 0, .inherited = true},
- [119] =
- {field_parameters, 1},
- {field_return_type, 2},
- {field_type_parameters, 0},
- [122] =
- {field_declaration, 2},
- {field_decorator, 0, .inherited = true},
- [124] =
- {field_body, 2},
- {field_decorator, 0, .inherited = true},
- [126] =
- {field_source, 2, .inherited = true},
- [127] =
- {field_value, 2},
- [128] =
- {field_key, 0},
- {field_value, 2},
- [130] =
- {field_body, 2},
- {field_name, 0},
- {field_parameters, 1, .inherited = true},
- {field_return_type, 1, .inherited = true},
- {field_type_parameters, 1, .inherited = true},
- [135] =
- {field_source, 2},
- [136] =
- {field_value, 1},
- [137] =
- {field_name, 0},
- {field_type, 2},
- [139] =
- {field_name, 0},
- {field_type, 1},
- {field_value, 2, .inherited = true},
- [142] =
- {field_body, 3},
- {field_name, 2},
- [144] =
- {field_alternative, 3},
- {field_condition, 1},
- {field_consequence, 2},
- [147] =
- {field_body, 3},
- {field_kind, 2, .inherited = true},
- {field_left, 2, .inherited = true},
- {field_operator, 2, .inherited = true},
- {field_right, 2, .inherited = true},
- {field_value, 2, .inherited = true},
- [153] =
- {field_type, 2},
- [154] =
- {field_pattern, 2},
- [155] =
- {field_decorator, 0, .inherited = true},
- {field_pattern, 0, .inherited = true},
- {field_value, 2, .inherited = true},
- [158] =
- {field_decorator, 0, .inherited = true},
- {field_pattern, 0, .inherited = true},
- {field_type, 2},
- [161] =
- {field_decorator, 0, .inherited = true},
- {field_pattern, 0, .inherited = true},
- {field_type, 1},
- {field_value, 2, .inherited = true},
- [165] =
- {field_decorator, 0, .inherited = true},
- {field_pattern, 2},
- [167] =
- {field_body, 1},
- {field_condition, 3},
- [169] =
- {field_body, 1},
- {field_finalizer, 3},
- {field_handler, 2},
- [172] =
- {field_name, 0},
- {field_parameters, 1, .inherited = true},
- {field_return_type, 1, .inherited = true},
- {field_type_parameters, 1, .inherited = true},
- [176] =
- {field_decorator, 0, .inherited = true},
- [177] =
- {field_decorator, 0, .inherited = true},
- {field_name, 1},
- [179] =
- {field_decorator, 1, .inherited = true},
- [180] =
- {field_body, 3},
- {field_name, 1},
- [182] =
- {field_body, 3},
- {field_name, 1},
- {field_type_parameters, 2},
- [185] =
- {field_type_arguments, 1},
- {field_value, 0},
- [187] =
- {field_type_arguments, 1, .inherited = true},
- {field_type_arguments, 2, .inherited = true},
- {field_value, 1, .inherited = true},
- {field_value, 2, .inherited = true},
- [191] =
- {field_parameters, 0, .inherited = true},
- {field_return_type, 0, .inherited = true},
- {field_type_parameters, 0, .inherited = true},
- [194] =
- {field_object, 1, .inherited = true},
- {field_property, 1, .inherited = true},
- [196] =
- {field_index, 1, .inherited = true},
- {field_object, 1, .inherited = true},
- [198] =
- {field_arguments, 1, .inherited = true},
- {field_function, 1, .inherited = true},
- [200] =
- {field_function, 1, .inherited = true},
- {field_type_arguments, 1, .inherited = true},
- [202] =
- {field_name, 0},
- {field_type_arguments, 1},
- [204] =
- {field_arguments, 1},
- {field_function, 0},
- {field_object, 0, .inherited = true},
- {field_property, 0, .inherited = true},
- [208] =
- {field_body, 3},
- {field_type_parameters, 1},
- [210] =
- {field_body, 3},
- {field_parameter, 1},
- [212] =
- {field_body, 3},
- {field_parameters, 2, .inherited = true},
- {field_return_type, 2, .inherited = true},
- {field_type_parameters, 2, .inherited = true},
- [216] =
- {field_body, 3},
- {field_parameters, 1, .inherited = true},
- {field_return_type, 1, .inherited = true},
- {field_type_parameters, 1, .inherited = true},
- [220] =
- {field_name, 1},
- {field_parameters, 2, .inherited = true},
- {field_return_type, 2, .inherited = true},
- {field_type_parameters, 2, .inherited = true},
- [224] =
- {field_body, 3},
- {field_name, 1},
- {field_parameters, 2, .inherited = true},
- {field_return_type, 2, .inherited = true},
- {field_type_parameters, 2, .inherited = true},
- [229] =
- {field_arguments, 3},
- {field_constructor, 1},
- {field_type_arguments, 2},
- [232] =
- {field_left, 1},
- {field_right, 3},
- [234] =
- {field_flags, 3},
- {field_pattern, 1},
- [236] =
- {field_name, 1},
- {field_value, 2},
- [238] =
- {field_constraint, 2},
- {field_name, 1},
- [240] =
- {field_attribute, 2, .inherited = true},
- {field_name, 1},
- [242] =
- {field_attribute, 0, .inherited = true},
- {field_attribute, 1, .inherited = true},
- [244] =
- {field_name, 1},
- {field_type_arguments, 2},
- [246] =
- {field_constraint, 1},
- {field_name, 0},
- {field_value, 2},
- [249] =
- {field_type, 1},
- [250] =
- {field_index, 2},
- {field_object, 0},
- [252] =
- {field_arguments, 3},
- {field_function, 0},
- {field_type_arguments, 2},
- [255] =
- {field_declaration, 3},
- {field_decorator, 0, .inherited = true},
- [257] =
- {field_body, 3},
- {field_decorator, 0, .inherited = true},
- {field_name, 2},
- [260] =
- {field_body, 3},
- {field_decorator, 0, .inherited = true},
- [262] =
- {field_body, 3},
- {field_decorator, 0, .inherited = true},
- {field_type_parameters, 2},
- [265] =
- {field_source, 3, .inherited = true},
- [266] =
- {field_alias, 2},
- {field_name, 0},
- [268] =
- {field_name, 1},
- {field_value, 3},
- [270] =
- {field_body, 3},
- {field_name, 0},
- {field_parameters, 2, .inherited = true},
- {field_return_type, 2, .inherited = true},
- {field_type_parameters, 2, .inherited = true},
- [275] =
- {field_pattern, 3},
- [276] =
- {field_decorator, 0, .inherited = true},
- {field_pattern, 0, .inherited = true},
- {field_type, 2},
- {field_value, 3, .inherited = true},
- [280] =
- {field_decorator, 0, .inherited = true},
- {field_pattern, 3},
- [282] =
- {field_name, 2},
- [283] =
- {field_name, 1},
- {field_value, 2, .inherited = true},
- [285] =
- {field_name, 1},
- {field_type, 2},
- [287] =
- {field_name, 0},
- {field_value, 2, .inherited = true},
- [289] =
- {field_name, 0},
- {field_parameters, 2, .inherited = true},
- {field_return_type, 2, .inherited = true},
- {field_type_parameters, 2, .inherited = true},
- [293] =
- {field_decorator, 0, .inherited = true},
- {field_name, 2},
- [295] =
- {field_decorator, 0, .inherited = true},
- {field_name, 1},
- {field_value, 2, .inherited = true},
- [298] =
- {field_decorator, 0, .inherited = true},
- {field_name, 1},
- {field_type, 2},
- [301] =
- {field_body, 4},
- {field_name, 1},
- {field_type_parameters, 2},
- [304] =
- {field_type_arguments, 0, .inherited = true},
- {field_type_arguments, 1, .inherited = true},
- {field_value, 0, .inherited = true},
- {field_value, 1, .inherited = true},
- [308] =
- {field_parameters, 1},
- [309] =
- {field_function, 0},
- {field_type_arguments, 1},
- [311] =
- {field_function, 0},
- {field_object, 0, .inherited = true},
- {field_property, 0, .inherited = true},
- {field_type_arguments, 1},
- [315] =
- {field_arguments, 1},
- {field_function, 0},
- {field_index, 0, .inherited = true},
- {field_object, 0, .inherited = true},
- [319] =
- {field_function, 0},
- {field_index, 0, .inherited = true},
- {field_object, 0, .inherited = true},
- {field_type_arguments, 1},
- [323] =
- {field_module, 0},
- {field_name, 2},
- [325] =
- {field_parameters, 0},
- {field_return_type, 2},
- [327] =
- {field_object, 0},
- {field_object, 0, .inherited = true},
- {field_property, 0, .inherited = true},
- {field_property, 2},
- [331] =
- {field_arguments, 0, .inherited = true},
- {field_function, 0, .inherited = true},
- {field_object, 0},
- {field_property, 2},
- [335] =
- {field_body, 4},
- {field_parameters, 3, .inherited = true},
- {field_return_type, 3, .inherited = true},
- {field_type_parameters, 3, .inherited = true},
- [339] =
- {field_name, 2},
- {field_parameters, 3, .inherited = true},
- {field_return_type, 3, .inherited = true},
- {field_type_parameters, 3, .inherited = true},
- [343] =
- {field_body, 4},
- {field_name, 2},
- {field_parameters, 3, .inherited = true},
- {field_return_type, 3, .inherited = true},
- {field_type_parameters, 3, .inherited = true},
- [348] =
- {field_constraint, 2},
- {field_name, 1},
- {field_value, 3},
- [351] =
- {field_attribute, 3, .inherited = true},
- {field_name, 1},
- {field_type_arguments, 2},
- [354] =
- {field_body, 4},
- {field_name, 2},
- [356] =
- {field_body, 4},
- {field_name, 2},
- {field_type_parameters, 3},
- [359] =
- {field_type, 1},
- {field_type, 2, .inherited = true},
- [361] =
- {field_alternative, 4},
- {field_condition, 0},
- {field_consequence, 2},
- [364] =
- {field_index, 3},
- {field_object, 0},
- {field_optional_chain, 1},
- [367] =
- {field_decorator, 0, .inherited = true},
- {field_value, 3},
- [369] =
- {field_body, 4},
- {field_decorator, 0, .inherited = true},
- {field_name, 2},
- [372] =
- {field_body, 4},
- {field_decorator, 0, .inherited = true},
- {field_name, 2},
- {field_type_parameters, 3},
- [376] =
- {field_body, 4},
- {field_decorator, 0, .inherited = true},
- {field_type_parameters, 2},
- [379] =
- {field_body, 4},
- {field_decorator, 0, .inherited = true},
- {field_name, 3},
- [382] =
- {field_alias, 3},
- {field_name, 1},
- [384] =
- {field_name, 1},
- {field_type_parameters, 2},
- {field_value, 4},
- [387] =
- {field_body, 4},
- {field_name, 1},
- {field_parameters, 3, .inherited = true},
- {field_return_type, 3, .inherited = true},
- {field_type_parameters, 3, .inherited = true},
- [392] =
- {field_left, 1},
- {field_operator, 2},
- {field_right, 3},
- [395] =
- {field_body, 5},
- {field_condition, 3},
- {field_initializer, 2},
- [398] =
- {field_decorator, 0, .inherited = true},
- {field_pattern, 4},
- [400] =
- {field_name, 1},
- {field_parameters, 3, .inherited = true},
- {field_return_type, 3, .inherited = true},
- {field_type_parameters, 3, .inherited = true},
- [404] =
- {field_type, 3},
- [405] =
- {field_name, 2},
- {field_value, 3, .inherited = true},
- [407] =
- {field_name, 2},
- {field_type, 3},
- [409] =
- {field_name, 1},
- {field_value, 3, .inherited = true},
- [411] =
- {field_name, 1},
- {field_type, 3},
- [413] =
- {field_name, 1},
- {field_type, 2},
- {field_value, 3, .inherited = true},
- [416] =
- {field_name, 3},
- [417] =
- {field_name, 0},
- {field_type, 2},
- {field_value, 3, .inherited = true},
- [420] =
- {field_decorator, 0, .inherited = true},
- {field_name, 3},
- [422] =
- {field_decorator, 0, .inherited = true},
- {field_name, 2},
- {field_value, 3, .inherited = true},
- [425] =
- {field_decorator, 0, .inherited = true},
- {field_name, 2},
- {field_type, 3},
- [428] =
- {field_decorator, 0, .inherited = true},
- {field_name, 1},
- {field_value, 3, .inherited = true},
- [431] =
- {field_decorator, 0, .inherited = true},
- {field_name, 1},
- {field_type, 3},
- [434] =
- {field_decorator, 0, .inherited = true},
- {field_name, 1},
- {field_type, 2},
- {field_value, 3, .inherited = true},
- [438] =
- {field_parameters, 1},
- {field_type, 2},
- [440] =
- {field_parameters, 2},
- {field_type_parameters, 1},
- [442] =
- {field_parameters, 2},
- [443] =
- {field_index, 0, .inherited = true},
- {field_object, 0},
- {field_object, 0, .inherited = true},
- {field_property, 2},
- [447] =
- {field_parameters, 1},
- {field_type, 3},
- [449] =
- {field_parameters, 1},
- {field_return_type, 3},
- {field_type_parameters, 0},
- [452] =
- {field_body, 5},
- {field_name, 3},
- {field_parameters, 4, .inherited = true},
- {field_return_type, 4, .inherited = true},
- {field_type_parameters, 4, .inherited = true},
- [457] =
- {field_body, 5},
- {field_name, 2},
- {field_type_parameters, 3},
- [460] =
- {field_type, 0, .inherited = true},
- {field_type, 1, .inherited = true},
- [462] =
- {field_name, 1},
- {field_name, 2, .inherited = true},
- [464] =
- {field_name, 0, .inherited = true},
- {field_name, 1, .inherited = true},
- [466] =
- {field_name, 2, .inherited = true},
- [467] =
- {field_body, 5},
- {field_decorator, 0, .inherited = true},
- {field_name, 2},
- {field_type_parameters, 3},
- [471] =
- {field_body, 5},
- {field_decorator, 0, .inherited = true},
- {field_name, 3},
- [474] =
- {field_body, 5},
- {field_decorator, 0, .inherited = true},
- {field_name, 3},
- {field_type_parameters, 4},
- [478] =
- {field_body, 5},
- {field_name, 2},
- {field_parameters, 4, .inherited = true},
- {field_return_type, 4, .inherited = true},
- {field_type_parameters, 4, .inherited = true},
- [483] =
- {field_source, 4},
- [484] =
- {field_body, 3},
- {field_value, 1},
- [486] =
- {field_kind, 1},
- {field_left, 2},
- {field_operator, 3},
- {field_right, 4},
- [490] =
- {field_body, 6},
- {field_condition, 3},
- {field_increment, 4},
- {field_initializer, 2},
- [494] =
- {field_body, 4},
- {field_parameter, 2},
- [496] =
- {field_name, 2},
- {field_parameters, 4, .inherited = true},
- {field_return_type, 4, .inherited = true},
- {field_type_parameters, 4, .inherited = true},
- [500] =
- {field_name, 3},
- {field_parameters, 4, .inherited = true},
- {field_return_type, 4, .inherited = true},
- {field_type_parameters, 4, .inherited = true},
- [504] =
- {field_name, 2},
- {field_value, 4, .inherited = true},
- [506] =
- {field_name, 2},
- {field_type, 4},
- [508] =
- {field_name, 2},
- {field_type, 3},
- {field_value, 4, .inherited = true},
- [511] =
- {field_name, 1},
- {field_type, 3},
- {field_value, 4, .inherited = true},
- [514] =
- {field_name, 3},
- {field_value, 4, .inherited = true},
- [516] =
- {field_name, 3},
- {field_type, 4},
- [518] =
- {field_type, 4},
- [519] =
- {field_name, 4},
- [520] =
- {field_decorator, 0, .inherited = true},
- {field_name, 3},
- {field_value, 4, .inherited = true},
- [523] =
- {field_decorator, 0, .inherited = true},
- {field_name, 3},
- {field_type, 4},
- [526] =
- {field_decorator, 0, .inherited = true},
- {field_name, 2},
- {field_value, 4, .inherited = true},
- [529] =
- {field_decorator, 0, .inherited = true},
- {field_name, 2},
- {field_type, 4},
- [532] =
- {field_decorator, 0, .inherited = true},
- {field_name, 2},
- {field_type, 3},
- {field_value, 4, .inherited = true},
- [536] =
- {field_decorator, 0, .inherited = true},
- {field_name, 4},
- [538] =
- {field_decorator, 0, .inherited = true},
- {field_name, 1},
- {field_type, 3},
- {field_value, 4, .inherited = true},
- [542] =
- {field_parameters, 2},
- {field_type, 3},
- {field_type_parameters, 1},
- [545] =
- {field_parameters, 2},
- {field_type, 3},
- [547] =
- {field_parameters, 3},
- {field_type_parameters, 2},
- [549] =
- {field_index, 2},
- {field_object, 0},
- {field_object, 0, .inherited = true},
- {field_property, 0, .inherited = true},
- [553] =
- {field_index, 0, .inherited = true},
- {field_index, 2},
- {field_object, 0},
- {field_object, 0, .inherited = true},
- [557] =
- {field_arguments, 0, .inherited = true},
- {field_function, 0, .inherited = true},
- {field_index, 2},
- {field_object, 0},
- [561] =
- {field_parameters, 2},
- {field_type, 4},
- {field_type_parameters, 1},
- [564] =
- {field_parameters, 2},
- {field_type, 4},
- [566] =
- {field_body, 6},
- {field_decorator, 0, .inherited = true},
- {field_name, 3},
- {field_type_parameters, 4},
- [570] =
- {field_body, 6},
- {field_name, 3},
- {field_parameters, 5, .inherited = true},
- {field_return_type, 5, .inherited = true},
- {field_type_parameters, 5, .inherited = true},
- [575] =
- {field_body, 6},
- {field_name, 4},
- {field_parameters, 5, .inherited = true},
- {field_return_type, 5, .inherited = true},
- {field_type_parameters, 5, .inherited = true},
- [580] =
- {field_kind, 1},
- {field_left, 2},
- {field_operator, 4},
- {field_right, 5},
- {field_value, 3, .inherited = true},
- [585] =
- {field_body, 5},
- {field_parameter, 2},
- {field_type, 3},
- [588] =
- {field_index_type, 3},
- {field_name, 1},
- {field_type, 5},
- [591] =
- {field_alias, 4},
- {field_name, 0},
- {field_type, 2},
- [594] =
- {field_sign, 0},
- {field_type, 5},
- [596] =
- {field_name, 3},
- {field_parameters, 5, .inherited = true},
- {field_return_type, 5, .inherited = true},
- {field_type_parameters, 5, .inherited = true},
- [600] =
- {field_name, 4},
- {field_parameters, 5, .inherited = true},
- {field_return_type, 5, .inherited = true},
- {field_type_parameters, 5, .inherited = true},
- [604] =
- {field_name, 2},
- {field_type, 4},
- {field_value, 5, .inherited = true},
- [607] =
- {field_name, 3},
- {field_value, 5, .inherited = true},
- [609] =
- {field_name, 3},
- {field_type, 5},
- [611] =
- {field_name, 3},
- {field_type, 4},
- {field_value, 5, .inherited = true},
- [614] =
- {field_name, 4},
- {field_value, 5, .inherited = true},
- [616] =
- {field_name, 4},
- {field_type, 5},
- [618] =
- {field_name, 5},
- [619] =
- {field_decorator, 0, .inherited = true},
- {field_name, 3},
- {field_value, 5, .inherited = true},
- [622] =
- {field_decorator, 0, .inherited = true},
- {field_name, 3},
- {field_type, 5},
- [625] =
- {field_decorator, 0, .inherited = true},
- {field_name, 3},
- {field_type, 4},
- {field_value, 5, .inherited = true},
- [629] =
- {field_decorator, 0, .inherited = true},
- {field_name, 2},
- {field_type, 4},
- {field_value, 5, .inherited = true},
- [633] =
- {field_decorator, 0, .inherited = true},
- {field_name, 4},
- {field_value, 5, .inherited = true},
- [636] =
- {field_decorator, 0, .inherited = true},
- {field_name, 4},
- {field_type, 5},
- [639] =
- {field_decorator, 0, .inherited = true},
- {field_name, 5},
- [641] =
- {field_parameters, 3},
- {field_type, 4},
- {field_type_parameters, 2},
- [644] =
- {field_index, 3},
- {field_object, 0},
- [646] =
- {field_index, 3},
- {field_object, 0},
- {field_object, 0, .inherited = true},
- {field_property, 0, .inherited = true},
- [650] =
- {field_index, 0, .inherited = true},
- {field_index, 3},
- {field_object, 0},
- {field_object, 0, .inherited = true},
- [654] =
- {field_arguments, 0, .inherited = true},
- {field_function, 0, .inherited = true},
- {field_index, 3},
- {field_object, 0},
- [658] =
- {field_parameters, 3},
- {field_type, 5},
- {field_type_parameters, 2},
- [661] =
- {field_body, 7},
- {field_name, 4},
- {field_parameters, 6, .inherited = true},
- {field_return_type, 6, .inherited = true},
- {field_type_parameters, 6, .inherited = true},
- [666] =
- {field_body, 7},
- {field_name, 5},
- {field_parameters, 6, .inherited = true},
- {field_return_type, 6, .inherited = true},
- {field_type_parameters, 6, .inherited = true},
- [671] =
- {field_name, 4},
- {field_parameters, 6, .inherited = true},
- {field_return_type, 6, .inherited = true},
- {field_type_parameters, 6, .inherited = true},
- [675] =
- {field_name, 5},
- {field_parameters, 6, .inherited = true},
- {field_return_type, 6, .inherited = true},
- {field_type_parameters, 6, .inherited = true},
- [679] =
- {field_name, 3},
- {field_type, 5},
- {field_value, 6, .inherited = true},
- [682] =
- {field_index_type, 4},
- {field_name, 2},
- {field_type, 6},
- [685] =
- {field_name, 4},
- {field_value, 6, .inherited = true},
- [687] =
- {field_name, 4},
- {field_type, 6},
- [689] =
- {field_name, 4},
- {field_type, 5},
- {field_value, 6, .inherited = true},
- [692] =
- {field_name, 5},
- {field_value, 6, .inherited = true},
- [694] =
- {field_name, 5},
- {field_type, 6},
- [696] =
- {field_decorator, 0, .inherited = true},
- {field_name, 3},
- {field_type, 5},
- {field_value, 6, .inherited = true},
- [700] =
- {field_decorator, 0, .inherited = true},
- {field_name, 4},
- {field_value, 6, .inherited = true},
- [703] =
- {field_decorator, 0, .inherited = true},
- {field_name, 4},
- {field_type, 6},
- [706] =
- {field_decorator, 0, .inherited = true},
- {field_name, 4},
- {field_type, 5},
- {field_value, 6, .inherited = true},
- [710] =
- {field_decorator, 0, .inherited = true},
- {field_name, 5},
- {field_value, 6, .inherited = true},
- [713] =
- {field_decorator, 0, .inherited = true},
- {field_name, 5},
- {field_type, 6},
- [716] =
- {field_decorator, 0, .inherited = true},
- {field_name, 6},
- [718] =
- {field_alternative, 6},
- {field_consequence, 4},
- {field_left, 0},
- {field_right, 2},
- [722] =
- {field_body, 8},
- {field_name, 5},
- {field_parameters, 7, .inherited = true},
- {field_return_type, 7, .inherited = true},
- {field_type_parameters, 7, .inherited = true},
- [727] =
- {field_body, 8},
- {field_name, 6},
- {field_parameters, 7, .inherited = true},
- {field_return_type, 7, .inherited = true},
- {field_type_parameters, 7, .inherited = true},
- [732] =
- {field_index_type, 5},
- {field_name, 3},
- {field_sign, 0},
- {field_type, 7},
- [736] =
- {field_name, 5},
- {field_parameters, 7, .inherited = true},
- {field_return_type, 7, .inherited = true},
- {field_type_parameters, 7, .inherited = true},
- [740] =
- {field_name, 4},
- {field_type, 6},
- {field_value, 7, .inherited = true},
- [743] =
- {field_name, 5},
- {field_value, 7, .inherited = true},
- [745] =
- {field_name, 5},
- {field_type, 7},
- [747] =
- {field_name, 5},
- {field_type, 6},
- {field_value, 7, .inherited = true},
- [750] =
- {field_name, 6},
- {field_parameters, 7, .inherited = true},
- {field_return_type, 7, .inherited = true},
- {field_type_parameters, 7, .inherited = true},
- [754] =
- {field_decorator, 0, .inherited = true},
- {field_name, 4},
- {field_type, 6},
- {field_value, 7, .inherited = true},
- [758] =
- {field_decorator, 0, .inherited = true},
- {field_name, 5},
- {field_value, 7, .inherited = true},
- [761] =
- {field_decorator, 0, .inherited = true},
- {field_name, 5},
- {field_type, 7},
- [764] =
- {field_decorator, 0, .inherited = true},
- {field_name, 5},
- {field_type, 6},
- {field_value, 7, .inherited = true},
- [768] =
- {field_decorator, 0, .inherited = true},
- {field_name, 6},
- {field_value, 7, .inherited = true},
- [771] =
- {field_decorator, 0, .inherited = true},
- {field_name, 6},
- {field_type, 7},
- [774] =
- {field_body, 9},
- {field_name, 6},
- {field_parameters, 8, .inherited = true},
- {field_return_type, 8, .inherited = true},
- {field_type_parameters, 8, .inherited = true},
- [779] =
- {field_name, 5},
- {field_type, 7},
- {field_value, 8, .inherited = true},
- [782] =
- {field_name, 6},
- {field_parameters, 8, .inherited = true},
- {field_return_type, 8, .inherited = true},
- {field_type_parameters, 8, .inherited = true},
- [786] =
- {field_decorator, 0, .inherited = true},
- {field_name, 5},
- {field_type, 7},
- {field_value, 8, .inherited = true},
- [790] =
- {field_decorator, 0, .inherited = true},
- {field_name, 6},
- {field_value, 8, .inherited = true},
- [793] =
- {field_decorator, 0, .inherited = true},
- {field_name, 6},
- {field_type, 8},
- [796] =
- {field_decorator, 0, .inherited = true},
- {field_name, 6},
- {field_type, 7},
- {field_value, 8, .inherited = true},
- [800] =
- {field_decorator, 0, .inherited = true},
- {field_name, 6},
- {field_type, 8},
- {field_value, 9, .inherited = true},
-};
-
-static const TSSymbol ts_alias_sequences[PRODUCTION_ID_COUNT][MAX_ALIAS_SEQUENCE_LENGTH] = {
- [0] = {0},
- [1] = {
- [0] = sym_identifier,
- },
- [7] = {
- [0] = alias_sym_property_identifier,
- },
- [14] = {
- [0] = alias_sym_type_identifier,
- },
- [22] = {
- [0] = sym_identifier,
- },
- [23] = {
- [0] = alias_sym_statement_identifier,
- },
- [24] = {
- [0] = sym_identifier,
- },
- [26] = {
- [1] = alias_sym_shorthand_property_identifier,
- },
- [27] = {
- [1] = alias_sym_shorthand_property_identifier_pattern,
- },
- [28] = {
- [1] = sym_identifier,
- },
- [44] = {
- [1] = alias_sym_statement_identifier,
- },
- [46] = {
- [1] = alias_sym_type_identifier,
- },
- [49] = {
- [0] = alias_sym_type_identifier,
- },
- [50] = {
- [0] = alias_sym_this_type,
- },
- [59] = {
- [1] = alias_sym_type_identifier,
- },
- [62] = {
- [0] = alias_sym_type_identifier,
- },
- [63] = {
- [0] = alias_sym_type_identifier,
- },
- [64] = {
- [1] = sym_member_expression,
- },
- [68] = {
- [1] = alias_sym_type_identifier,
- [2] = alias_sym_interface_body,
- },
- [70] = {
- [2] = alias_sym_property_identifier,
- },
- [72] = {
- [2] = alias_sym_property_identifier,
- },
- [83] = {
- [0] = sym_member_expression,
- [2] = alias_sym_property_identifier,
- },
- [84] = {
- [0] = alias_sym_shorthand_property_identifier_pattern,
- },
- [106] = {
- [1] = alias_sym_type_identifier,
- },
- [107] = {
- [1] = alias_sym_type_identifier,
- },
- [115] = {
- [0] = alias_sym_type_identifier,
- },
- [116] = {
- [1] = alias_sym_type_identifier,
- },
- [117] = {
- [1] = anon_sym_unique,
- },
- [121] = {
- [1] = sym_identifier,
- },
- [128] = {
- [1] = sym_identifier,
- },
- [131] = {
- [1] = alias_sym_type_identifier,
- },
- [132] = {
- [1] = alias_sym_type_identifier,
- },
- [136] = {
- [0] = alias_sym_type_identifier,
- },
- [137] = {
- [1] = sym_member_expression,
- },
- [138] = {
- [1] = sym_member_expression,
- },
- [139] = {
- [2] = alias_sym_type_identifier,
- },
- [140] = {
- [1] = alias_sym_type_identifier,
- },
- [142] = {
- [1] = alias_sym_type_identifier,
- [3] = alias_sym_interface_body,
- },
- [143] = {
- [1] = alias_sym_type_identifier,
- [3] = alias_sym_interface_body,
- },
- [147] = {
- [2] = alias_sym_type_identifier,
- },
- [152] = {
- [1] = alias_sym_type_identifier,
- },
- [154] = {
- [0] = sym_identifier,
- },
- [166] = {
- [1] = alias_sym_type_identifier,
- },
- [173] = {
- [2] = alias_sym_type_identifier,
- },
- [175] = {
- [2] = alias_sym_property_identifier,
- },
- [177] = {
- [2] = alias_sym_property_identifier,
- },
- [182] = {
- [1] = alias_sym_type_identifier,
- },
- [184] = {
- [1] = sym_member_expression,
- },
- [185] = {
- [2] = alias_sym_type_identifier,
- },
- [186] = {
- [2] = alias_sym_type_identifier,
- },
- [187] = {
- [1] = alias_sym_type_identifier,
- },
- [189] = {
- [1] = alias_sym_type_identifier,
- [4] = alias_sym_interface_body,
- },
- [192] = {
- [0] = sym_identifier,
- },
- [194] = {
- [2] = alias_sym_type_identifier,
- },
- [195] = {
- [2] = alias_sym_type_identifier,
- },
- [197] = {
- [3] = alias_sym_type_identifier,
- },
- [199] = {
- [1] = alias_sym_type_identifier,
- },
- [201] = {
- [1] = sym_identifier,
- },
- [202] = {
- [1] = sym_identifier,
- },
- [207] = {
- [0] = alias_sym_type_identifier,
- },
- [225] = {
- [2] = alias_sym_property_identifier,
- },
- [230] = {
- [2] = alias_sym_type_identifier,
- },
- [235] = {
- [2] = alias_sym_type_identifier,
- },
- [236] = {
- [3] = alias_sym_type_identifier,
- },
- [237] = {
- [3] = alias_sym_type_identifier,
- },
- [269] = {
- [3] = alias_sym_property_identifier,
- },
- [270] = {
- [3] = alias_sym_type_identifier,
- },
- [275] = {
- [1] = sym_identifier,
- },
- [276] = {
- [0] = alias_sym_type_identifier,
- },
- [306] = {
- [2] = sym_identifier,
- },
- [323] = {
- [3] = sym_identifier,
- },
-};
-
-static const uint16_t ts_non_terminal_alias_map[] = {
- sym_nested_identifier, 2,
- sym_nested_identifier,
- sym_member_expression,
- sym_predefined_type, 2,
- sym_predefined_type,
- sym_identifier,
- sym_object_type, 2,
- sym_object_type,
- alias_sym_interface_body,
- 0,
-};
-
-static const TSStateId ts_primary_state_ids[STATE_COUNT] = {
- [0] = 0,
- [1] = 1,
- [2] = 2,
- [3] = 2,
- [4] = 4,
- [5] = 4,
- [6] = 4,
- [7] = 4,
- [8] = 4,
- [9] = 9,
- [10] = 10,
- [11] = 11,
- [12] = 12,
- [13] = 13,
- [14] = 14,
- [15] = 15,
- [16] = 16,
- [17] = 17,
- [18] = 18,
- [19] = 14,
- [20] = 17,
- [21] = 14,
- [22] = 14,
- [23] = 17,
- [24] = 17,
- [25] = 14,
- [26] = 17,
- [27] = 14,
- [28] = 17,
- [29] = 17,
- [30] = 14,
- [31] = 31,
- [32] = 32,
- [33] = 33,
- [34] = 34,
- [35] = 31,
- [36] = 36,
- [37] = 37,
- [38] = 38,
- [39] = 38,
- [40] = 32,
- [41] = 34,
- [42] = 37,
- [43] = 43,
- [44] = 44,
- [45] = 45,
- [46] = 33,
- [47] = 36,
- [48] = 43,
- [49] = 44,
- [50] = 44,
- [51] = 44,
- [52] = 45,
- [53] = 44,
- [54] = 44,
- [55] = 44,
- [56] = 44,
- [57] = 44,
- [58] = 44,
- [59] = 38,
- [60] = 32,
- [61] = 31,
- [62] = 37,
- [63] = 43,
- [64] = 45,
- [65] = 33,
- [66] = 36,
- [67] = 34,
- [68] = 68,
- [69] = 69,
- [70] = 69,
- [71] = 69,
- [72] = 72,
- [73] = 73,
- [74] = 74,
- [75] = 75,
- [76] = 76,
- [77] = 77,
- [78] = 72,
- [79] = 77,
- [80] = 72,
- [81] = 81,
- [82] = 82,
- [83] = 83,
- [84] = 84,
- [85] = 85,
- [86] = 84,
- [87] = 84,
- [88] = 84,
- [89] = 84,
- [90] = 83,
- [91] = 91,
- [92] = 92,
- [93] = 91,
- [94] = 94,
- [95] = 95,
- [96] = 96,
- [97] = 91,
- [98] = 91,
- [99] = 91,
- [100] = 92,
- [101] = 94,
- [102] = 92,
- [103] = 96,
- [104] = 96,
- [105] = 91,
- [106] = 106,
- [107] = 107,
- [108] = 85,
- [109] = 91,
- [110] = 91,
- [111] = 91,
- [112] = 83,
- [113] = 94,
- [114] = 114,
- [115] = 91,
- [116] = 92,
- [117] = 117,
- [118] = 92,
- [119] = 91,
- [120] = 91,
- [121] = 92,
- [122] = 94,
- [123] = 95,
- [124] = 106,
- [125] = 92,
- [126] = 92,
- [127] = 91,
- [128] = 91,
- [129] = 91,
- [130] = 91,
- [131] = 131,
- [132] = 131,
- [133] = 131,
- [134] = 131,
- [135] = 131,
- [136] = 92,
- [137] = 131,
- [138] = 131,
- [139] = 131,
- [140] = 131,
- [141] = 141,
- [142] = 91,
- [143] = 143,
- [144] = 144,
- [145] = 144,
- [146] = 144,
- [147] = 144,
- [148] = 144,
- [149] = 144,
- [150] = 144,
- [151] = 151,
- [152] = 152,
- [153] = 144,
- [154] = 144,
- [155] = 155,
- [156] = 155,
- [157] = 155,
- [158] = 155,
- [159] = 155,
- [160] = 155,
- [161] = 155,
- [162] = 155,
- [163] = 155,
- [164] = 164,
- [165] = 165,
- [166] = 166,
- [167] = 165,
- [168] = 166,
- [169] = 166,
- [170] = 165,
- [171] = 166,
- [172] = 165,
- [173] = 164,
- [174] = 164,
- [175] = 175,
- [176] = 176,
- [177] = 164,
- [178] = 175,
- [179] = 164,
- [180] = 175,
- [181] = 164,
- [182] = 176,
- [183] = 164,
- [184] = 164,
- [185] = 164,
- [186] = 186,
- [187] = 186,
- [188] = 188,
- [189] = 189,
- [190] = 189,
- [191] = 191,
- [192] = 188,
- [193] = 191,
- [194] = 188,
- [195] = 191,
- [196] = 189,
- [197] = 197,
- [198] = 198,
- [199] = 199,
- [200] = 199,
- [201] = 199,
- [202] = 199,
- [203] = 199,
- [204] = 199,
- [205] = 205,
- [206] = 199,
- [207] = 207,
- [208] = 208,
- [209] = 207,
- [210] = 210,
- [211] = 197,
- [212] = 212,
- [213] = 213,
- [214] = 214,
- [215] = 207,
- [216] = 216,
- [217] = 217,
- [218] = 218,
- [219] = 219,
- [220] = 220,
- [221] = 221,
- [222] = 222,
- [223] = 223,
- [224] = 197,
- [225] = 217,
- [226] = 226,
- [227] = 227,
- [228] = 228,
- [229] = 229,
- [230] = 230,
- [231] = 231,
- [232] = 232,
- [233] = 233,
- [234] = 234,
- [235] = 235,
- [236] = 236,
- [237] = 237,
- [238] = 232,
- [239] = 239,
- [240] = 240,
- [241] = 241,
- [242] = 242,
- [243] = 243,
- [244] = 244,
- [245] = 245,
- [246] = 246,
- [247] = 247,
- [248] = 248,
- [249] = 249,
- [250] = 197,
- [251] = 249,
- [252] = 197,
- [253] = 253,
- [254] = 249,
- [255] = 249,
- [256] = 249,
- [257] = 197,
- [258] = 197,
- [259] = 197,
- [260] = 197,
- [261] = 261,
- [262] = 249,
- [263] = 249,
- [264] = 197,
- [265] = 265,
- [266] = 266,
- [267] = 266,
- [268] = 268,
- [269] = 266,
- [270] = 270,
- [271] = 266,
- [272] = 266,
- [273] = 266,
- [274] = 266,
- [275] = 275,
- [276] = 266,
- [277] = 277,
- [278] = 278,
- [279] = 266,
- [280] = 278,
- [281] = 266,
- [282] = 282,
- [283] = 266,
- [284] = 282,
- [285] = 266,
- [286] = 286,
- [287] = 266,
- [288] = 277,
- [289] = 277,
- [290] = 266,
- [291] = 270,
- [292] = 292,
- [293] = 293,
- [294] = 294,
- [295] = 295,
- [296] = 296,
- [297] = 297,
- [298] = 298,
- [299] = 297,
- [300] = 297,
- [301] = 301,
- [302] = 302,
- [303] = 303,
- [304] = 304,
- [305] = 305,
- [306] = 306,
- [307] = 307,
- [308] = 308,
- [309] = 309,
- [310] = 310,
- [311] = 311,
- [312] = 312,
- [313] = 312,
- [314] = 314,
- [315] = 315,
- [316] = 311,
- [317] = 317,
- [318] = 305,
- [319] = 319,
- [320] = 308,
- [321] = 321,
- [322] = 301,
- [323] = 323,
- [324] = 324,
- [325] = 325,
- [326] = 317,
- [327] = 312,
- [328] = 317,
- [329] = 308,
- [330] = 301,
- [331] = 323,
- [332] = 324,
- [333] = 312,
- [334] = 312,
- [335] = 317,
- [336] = 308,
- [337] = 337,
- [338] = 323,
- [339] = 324,
- [340] = 312,
- [341] = 325,
- [342] = 317,
- [343] = 308,
- [344] = 301,
- [345] = 323,
- [346] = 324,
- [347] = 317,
- [348] = 312,
- [349] = 317,
- [350] = 308,
- [351] = 301,
- [352] = 323,
- [353] = 324,
- [354] = 312,
- [355] = 317,
- [356] = 308,
- [357] = 301,
- [358] = 323,
- [359] = 324,
- [360] = 308,
- [361] = 312,
- [362] = 317,
- [363] = 308,
- [364] = 301,
- [365] = 323,
- [366] = 324,
- [367] = 301,
- [368] = 323,
- [369] = 324,
- [370] = 370,
- [371] = 301,
- [372] = 323,
- [373] = 324,
- [374] = 374,
- [375] = 375,
- [376] = 376,
- [377] = 377,
- [378] = 375,
- [379] = 379,
- [380] = 380,
- [381] = 381,
- [382] = 382,
- [383] = 377,
- [384] = 384,
- [385] = 385,
- [386] = 377,
- [387] = 387,
- [388] = 388,
- [389] = 389,
- [390] = 389,
- [391] = 391,
- [392] = 385,
- [393] = 393,
- [394] = 394,
- [395] = 375,
- [396] = 396,
- [397] = 397,
- [398] = 398,
- [399] = 399,
- [400] = 400,
- [401] = 401,
- [402] = 402,
- [403] = 403,
- [404] = 404,
- [405] = 405,
- [406] = 406,
- [407] = 407,
- [408] = 408,
- [409] = 409,
- [410] = 381,
- [411] = 411,
- [412] = 396,
- [413] = 413,
- [414] = 414,
- [415] = 415,
- [416] = 391,
- [417] = 377,
- [418] = 418,
- [419] = 419,
- [420] = 391,
- [421] = 385,
- [422] = 394,
- [423] = 375,
- [424] = 396,
- [425] = 398,
- [426] = 399,
- [427] = 400,
- [428] = 401,
- [429] = 402,
- [430] = 403,
- [431] = 404,
- [432] = 405,
- [433] = 406,
- [434] = 407,
- [435] = 408,
- [436] = 409,
- [437] = 397,
- [438] = 413,
- [439] = 414,
- [440] = 377,
- [441] = 419,
- [442] = 442,
- [443] = 376,
- [444] = 391,
- [445] = 398,
- [446] = 389,
- [447] = 385,
- [448] = 385,
- [449] = 394,
- [450] = 375,
- [451] = 396,
- [452] = 397,
- [453] = 398,
- [454] = 399,
- [455] = 400,
- [456] = 401,
- [457] = 402,
- [458] = 403,
- [459] = 404,
- [460] = 405,
- [461] = 406,
- [462] = 407,
- [463] = 408,
- [464] = 418,
- [465] = 409,
- [466] = 466,
- [467] = 413,
- [468] = 414,
- [469] = 377,
- [470] = 419,
- [471] = 391,
- [472] = 385,
- [473] = 394,
- [474] = 375,
- [475] = 399,
- [476] = 396,
- [477] = 398,
- [478] = 399,
- [479] = 400,
- [480] = 401,
- [481] = 402,
- [482] = 403,
- [483] = 404,
- [484] = 405,
- [485] = 406,
- [486] = 407,
- [487] = 408,
- [488] = 409,
- [489] = 400,
- [490] = 401,
- [491] = 413,
- [492] = 414,
- [493] = 493,
- [494] = 377,
- [495] = 394,
- [496] = 419,
- [497] = 442,
- [498] = 442,
- [499] = 376,
- [500] = 376,
- [501] = 389,
- [502] = 397,
- [503] = 418,
- [504] = 385,
- [505] = 394,
- [506] = 375,
- [507] = 377,
- [508] = 396,
- [509] = 398,
- [510] = 399,
- [511] = 400,
- [512] = 401,
- [513] = 402,
- [514] = 403,
- [515] = 404,
- [516] = 409,
- [517] = 406,
- [518] = 407,
- [519] = 408,
- [520] = 402,
- [521] = 409,
- [522] = 403,
- [523] = 404,
- [524] = 405,
- [525] = 413,
- [526] = 414,
- [527] = 396,
- [528] = 398,
- [529] = 377,
- [530] = 466,
- [531] = 399,
- [532] = 419,
- [533] = 400,
- [534] = 442,
- [535] = 376,
- [536] = 401,
- [537] = 389,
- [538] = 397,
- [539] = 402,
- [540] = 419,
- [541] = 385,
- [542] = 394,
- [543] = 375,
- [544] = 396,
- [545] = 398,
- [546] = 399,
- [547] = 400,
- [548] = 401,
- [549] = 402,
- [550] = 403,
- [551] = 404,
- [552] = 405,
- [553] = 406,
- [554] = 407,
- [555] = 408,
- [556] = 409,
- [557] = 406,
- [558] = 413,
- [559] = 414,
- [560] = 403,
- [561] = 404,
- [562] = 377,
- [563] = 405,
- [564] = 406,
- [565] = 419,
- [566] = 442,
- [567] = 376,
- [568] = 407,
- [569] = 389,
- [570] = 397,
- [571] = 408,
- [572] = 409,
- [573] = 442,
- [574] = 376,
- [575] = 391,
- [576] = 418,
- [577] = 391,
- [578] = 385,
- [579] = 394,
- [580] = 375,
- [581] = 396,
- [582] = 398,
- [583] = 399,
- [584] = 400,
- [585] = 401,
- [586] = 402,
- [587] = 403,
- [588] = 404,
- [589] = 405,
- [590] = 406,
- [591] = 591,
- [592] = 407,
- [593] = 408,
- [594] = 409,
- [595] = 595,
- [596] = 407,
- [597] = 408,
- [598] = 413,
- [599] = 414,
- [600] = 442,
- [601] = 377,
- [602] = 413,
- [603] = 414,
- [604] = 419,
- [605] = 605,
- [606] = 442,
- [607] = 376,
- [608] = 377,
- [609] = 377,
- [610] = 419,
- [611] = 413,
- [612] = 414,
- [613] = 389,
- [614] = 397,
- [615] = 415,
- [616] = 394,
- [617] = 442,
- [618] = 376,
- [619] = 619,
- [620] = 391,
- [621] = 391,
- [622] = 389,
- [623] = 377,
- [624] = 397,
- [625] = 389,
- [626] = 397,
- [627] = 405,
- [628] = 628,
- [629] = 628,
- [630] = 628,
- [631] = 631,
- [632] = 631,
- [633] = 631,
- [634] = 634,
- [635] = 634,
- [636] = 634,
- [637] = 637,
- [638] = 637,
- [639] = 637,
- [640] = 640,
- [641] = 640,
- [642] = 640,
- [643] = 643,
- [644] = 644,
- [645] = 231,
- [646] = 644,
- [647] = 643,
- [648] = 245,
- [649] = 643,
- [650] = 644,
- [651] = 651,
- [652] = 652,
- [653] = 653,
- [654] = 654,
- [655] = 651,
- [656] = 656,
- [657] = 651,
- [658] = 658,
- [659] = 659,
- [660] = 660,
- [661] = 661,
- [662] = 659,
- [663] = 660,
- [664] = 661,
- [665] = 659,
- [666] = 660,
- [667] = 661,
- [668] = 668,
- [669] = 668,
- [670] = 670,
- [671] = 671,
- [672] = 671,
- [673] = 671,
- [674] = 670,
- [675] = 675,
- [676] = 676,
- [677] = 671,
- [678] = 671,
- [679] = 675,
- [680] = 675,
- [681] = 671,
- [682] = 682,
- [683] = 226,
- [684] = 671,
- [685] = 671,
- [686] = 686,
- [687] = 243,
- [688] = 671,
- [689] = 218,
- [690] = 218,
- [691] = 246,
- [692] = 671,
- [693] = 693,
- [694] = 243,
- [695] = 671,
- [696] = 696,
- [697] = 697,
- [698] = 668,
- [699] = 220,
- [700] = 696,
- [701] = 239,
- [702] = 671,
- [703] = 239,
- [704] = 226,
- [705] = 696,
- [706] = 706,
- [707] = 671,
- [708] = 671,
- [709] = 210,
- [710] = 671,
- [711] = 214,
- [712] = 671,
- [713] = 670,
- [714] = 676,
- [715] = 715,
- [716] = 716,
- [717] = 717,
- [718] = 718,
- [719] = 719,
- [720] = 720,
- [721] = 721,
- [722] = 722,
- [723] = 723,
- [724] = 724,
- [725] = 725,
- [726] = 726,
- [727] = 726,
- [728] = 728,
- [729] = 671,
- [730] = 730,
- [731] = 731,
- [732] = 732,
- [733] = 726,
- [734] = 734,
- [735] = 735,
- [736] = 736,
- [737] = 228,
- [738] = 738,
- [739] = 236,
- [740] = 726,
- [741] = 213,
- [742] = 726,
- [743] = 726,
- [744] = 726,
- [745] = 726,
- [746] = 746,
- [747] = 726,
- [748] = 748,
- [749] = 749,
- [750] = 750,
- [751] = 751,
- [752] = 752,
- [753] = 753,
- [754] = 754,
- [755] = 755,
- [756] = 756,
- [757] = 757,
- [758] = 758,
- [759] = 759,
- [760] = 760,
- [761] = 761,
- [762] = 246,
- [763] = 220,
- [764] = 764,
- [765] = 765,
- [766] = 766,
- [767] = 767,
- [768] = 768,
- [769] = 769,
- [770] = 770,
- [771] = 771,
- [772] = 772,
- [773] = 773,
- [774] = 774,
- [775] = 775,
- [776] = 776,
- [777] = 777,
- [778] = 778,
- [779] = 779,
- [780] = 780,
- [781] = 781,
- [782] = 782,
- [783] = 775,
- [784] = 784,
- [785] = 785,
- [786] = 775,
- [787] = 787,
- [788] = 788,
- [789] = 789,
- [790] = 790,
- [791] = 775,
- [792] = 792,
- [793] = 793,
- [794] = 794,
- [795] = 795,
- [796] = 796,
- [797] = 797,
- [798] = 798,
- [799] = 799,
- [800] = 800,
- [801] = 801,
- [802] = 802,
- [803] = 803,
- [804] = 804,
- [805] = 805,
- [806] = 806,
- [807] = 807,
- [808] = 808,
- [809] = 809,
- [810] = 810,
- [811] = 811,
- [812] = 812,
- [813] = 813,
- [814] = 814,
- [815] = 815,
- [816] = 816,
- [817] = 817,
- [818] = 818,
- [819] = 819,
- [820] = 820,
- [821] = 821,
- [822] = 822,
- [823] = 823,
- [824] = 824,
- [825] = 825,
- [826] = 826,
- [827] = 827,
- [828] = 828,
- [829] = 829,
- [830] = 830,
- [831] = 831,
- [832] = 832,
- [833] = 833,
- [834] = 834,
- [835] = 835,
- [836] = 836,
- [837] = 837,
- [838] = 838,
- [839] = 839,
- [840] = 840,
- [841] = 841,
- [842] = 842,
- [843] = 843,
- [844] = 844,
- [845] = 845,
- [846] = 846,
- [847] = 775,
- [848] = 848,
- [849] = 849,
- [850] = 850,
- [851] = 851,
- [852] = 852,
- [853] = 853,
- [854] = 854,
- [855] = 247,
- [856] = 856,
- [857] = 857,
- [858] = 858,
- [859] = 859,
- [860] = 860,
- [861] = 861,
- [862] = 222,
- [863] = 863,
- [864] = 864,
- [865] = 865,
- [866] = 866,
- [867] = 867,
- [868] = 868,
- [869] = 869,
- [870] = 870,
- [871] = 870,
- [872] = 872,
- [873] = 872,
- [874] = 872,
- [875] = 870,
- [876] = 872,
- [877] = 870,
- [878] = 870,
- [879] = 872,
- [880] = 880,
- [881] = 881,
- [882] = 720,
- [883] = 883,
- [884] = 884,
- [885] = 885,
- [886] = 886,
- [887] = 887,
- [888] = 888,
- [889] = 889,
- [890] = 890,
- [891] = 891,
- [892] = 730,
- [893] = 893,
- [894] = 894,
- [895] = 894,
- [896] = 894,
- [897] = 894,
- [898] = 894,
- [899] = 899,
- [900] = 899,
- [901] = 901,
- [902] = 901,
- [903] = 899,
- [904] = 899,
- [905] = 899,
- [906] = 894,
- [907] = 901,
- [908] = 899,
- [909] = 899,
- [910] = 894,
- [911] = 911,
- [912] = 912,
- [913] = 913,
- [914] = 914,
- [915] = 914,
- [916] = 914,
- [917] = 917,
- [918] = 918,
- [919] = 917,
- [920] = 917,
- [921] = 917,
- [922] = 922,
- [923] = 922,
- [924] = 914,
- [925] = 914,
- [926] = 922,
- [927] = 922,
- [928] = 914,
- [929] = 922,
- [930] = 917,
- [931] = 922,
- [932] = 914,
- [933] = 922,
- [934] = 934,
- [935] = 935,
- [936] = 936,
- [937] = 937,
- [938] = 938,
- [939] = 939,
- [940] = 940,
- [941] = 941,
- [942] = 942,
- [943] = 943,
- [944] = 944,
- [945] = 938,
- [946] = 946,
- [947] = 939,
- [948] = 948,
- [949] = 949,
- [950] = 950,
- [951] = 951,
- [952] = 938,
- [953] = 939,
- [954] = 934,
- [955] = 941,
- [956] = 942,
- [957] = 948,
- [958] = 941,
- [959] = 942,
- [960] = 943,
- [961] = 944,
- [962] = 949,
- [963] = 963,
- [964] = 950,
- [965] = 948,
- [966] = 949,
- [967] = 950,
- [968] = 951,
- [969] = 941,
- [970] = 942,
- [971] = 951,
- [972] = 972,
- [973] = 973,
- [974] = 941,
- [975] = 942,
- [976] = 935,
- [977] = 936,
- [978] = 937,
- [979] = 979,
- [980] = 938,
- [981] = 939,
- [982] = 943,
- [983] = 944,
- [984] = 943,
- [985] = 948,
- [986] = 949,
- [987] = 950,
- [988] = 988,
- [989] = 989,
- [990] = 990,
- [991] = 951,
- [992] = 992,
- [993] = 993,
- [994] = 943,
- [995] = 944,
- [996] = 972,
- [997] = 973,
- [998] = 935,
- [999] = 936,
- [1000] = 937,
- [1001] = 1001,
- [1002] = 1002,
- [1003] = 992,
- [1004] = 944,
- [1005] = 938,
- [1006] = 939,
- [1007] = 938,
- [1008] = 941,
- [1009] = 942,
- [1010] = 943,
- [1011] = 944,
- [1012] = 939,
- [1013] = 1002,
- [1014] = 948,
- [1015] = 949,
- [1016] = 1016,
- [1017] = 950,
- [1018] = 951,
- [1019] = 943,
- [1020] = 944,
- [1021] = 993,
- [1022] = 948,
- [1023] = 949,
- [1024] = 950,
- [1025] = 973,
- [1026] = 1026,
- [1027] = 1027,
- [1028] = 1028,
- [1029] = 1029,
- [1030] = 1030,
- [1031] = 948,
- [1032] = 949,
- [1033] = 1016,
- [1034] = 972,
- [1035] = 973,
- [1036] = 993,
- [1037] = 1037,
- [1038] = 1001,
- [1039] = 1039,
- [1040] = 1040,
- [1041] = 1041,
- [1042] = 935,
- [1043] = 936,
- [1044] = 950,
- [1045] = 937,
- [1046] = 1016,
- [1047] = 972,
- [1048] = 973,
- [1049] = 951,
- [1050] = 935,
- [1051] = 936,
- [1052] = 937,
- [1053] = 1053,
- [1054] = 1054,
- [1055] = 1037,
- [1056] = 993,
- [1057] = 1016,
- [1058] = 1058,
- [1059] = 993,
- [1060] = 1016,
- [1061] = 972,
- [1062] = 973,
- [1063] = 935,
- [1064] = 936,
- [1065] = 937,
- [1066] = 1058,
- [1067] = 993,
- [1068] = 993,
- [1069] = 972,
- [1070] = 973,
- [1071] = 935,
- [1072] = 936,
- [1073] = 937,
- [1074] = 1016,
- [1075] = 979,
- [1076] = 938,
- [1077] = 939,
- [1078] = 972,
- [1079] = 934,
- [1080] = 1016,
- [1081] = 941,
- [1082] = 942,
- [1083] = 934,
- [1084] = 934,
- [1085] = 934,
- [1086] = 934,
- [1087] = 951,
- [1088] = 1088,
- [1089] = 1088,
- [1090] = 1088,
- [1091] = 1088,
- [1092] = 1088,
- [1093] = 1088,
- [1094] = 1088,
- [1095] = 1088,
- [1096] = 1088,
- [1097] = 1088,
- [1098] = 1088,
- [1099] = 1088,
- [1100] = 1100,
- [1101] = 1101,
- [1102] = 1100,
- [1103] = 1101,
- [1104] = 1104,
- [1105] = 1104,
- [1106] = 1100,
- [1107] = 1104,
- [1108] = 1101,
- [1109] = 1109,
- [1110] = 1110,
- [1111] = 1109,
- [1112] = 1112,
- [1113] = 1113,
- [1114] = 1113,
- [1115] = 1112,
- [1116] = 1113,
- [1117] = 1117,
- [1118] = 1110,
- [1119] = 1119,
- [1120] = 1113,
- [1121] = 1113,
- [1122] = 1122,
- [1123] = 1123,
- [1124] = 1124,
- [1125] = 1117,
- [1126] = 1113,
- [1127] = 1123,
- [1128] = 1123,
- [1129] = 1124,
- [1130] = 1124,
- [1131] = 1117,
- [1132] = 1132,
- [1133] = 1132,
- [1134] = 1113,
- [1135] = 1132,
- [1136] = 1113,
- [1137] = 1137,
- [1138] = 1113,
- [1139] = 1139,
- [1140] = 1140,
- [1141] = 1113,
- [1142] = 1142,
- [1143] = 1143,
- [1144] = 1144,
- [1145] = 1113,
- [1146] = 1146,
- [1147] = 1147,
- [1148] = 1148,
- [1149] = 1149,
- [1150] = 1150,
- [1151] = 1113,
- [1152] = 1152,
- [1153] = 1113,
- [1154] = 1154,
- [1155] = 1155,
- [1156] = 1154,
- [1157] = 1140,
- [1158] = 1154,
- [1159] = 1155,
- [1160] = 1140,
- [1161] = 1143,
- [1162] = 1162,
- [1163] = 1109,
- [1164] = 1152,
- [1165] = 1165,
- [1166] = 1166,
- [1167] = 1155,
- [1168] = 1152,
- [1169] = 1113,
- [1170] = 1113,
- [1171] = 1152,
- [1172] = 1152,
- [1173] = 1110,
- [1174] = 720,
- [1175] = 1175,
- [1176] = 1122,
- [1177] = 1113,
- [1178] = 730,
- [1179] = 1179,
- [1180] = 1180,
- [1181] = 1113,
- [1182] = 1182,
- [1183] = 1183,
- [1184] = 1175,
- [1185] = 1185,
- [1186] = 1185,
- [1187] = 1152,
- [1188] = 1188,
- [1189] = 1189,
- [1190] = 1185,
- [1191] = 1189,
- [1192] = 1192,
- [1193] = 1152,
- [1194] = 1194,
- [1195] = 1113,
- [1196] = 1185,
- [1197] = 1185,
- [1198] = 1185,
- [1199] = 1182,
- [1200] = 1200,
- [1201] = 1201,
- [1202] = 1202,
- [1203] = 1203,
- [1204] = 1204,
- [1205] = 1152,
- [1206] = 1175,
- [1207] = 1185,
- [1208] = 1185,
- [1209] = 1209,
- [1210] = 1185,
- [1211] = 1152,
- [1212] = 1212,
- [1213] = 1182,
- [1214] = 1192,
- [1215] = 1215,
- [1216] = 1216,
- [1217] = 1215,
- [1218] = 1152,
- [1219] = 1152,
- [1220] = 1182,
- [1221] = 1221,
- [1222] = 1188,
- [1223] = 1165,
- [1224] = 1202,
- [1225] = 1144,
- [1226] = 1182,
- [1227] = 1165,
- [1228] = 1228,
- [1229] = 1229,
- [1230] = 1221,
- [1231] = 1231,
- [1232] = 1232,
- [1233] = 1233,
- [1234] = 1234,
- [1235] = 1188,
- [1236] = 1182,
- [1237] = 1152,
- [1238] = 1229,
- [1239] = 1229,
- [1240] = 1216,
- [1241] = 1232,
- [1242] = 1144,
- [1243] = 1165,
- [1244] = 1244,
- [1245] = 1144,
- [1246] = 1202,
- [1247] = 1215,
- [1248] = 1248,
- [1249] = 1204,
- [1250] = 1216,
- [1251] = 1179,
- [1252] = 1150,
- [1253] = 1216,
- [1254] = 1215,
- [1255] = 1162,
- [1256] = 1139,
- [1257] = 1146,
- [1258] = 1147,
- [1259] = 1148,
- [1260] = 1149,
- [1261] = 1261,
- [1262] = 1215,
- [1263] = 1263,
- [1264] = 1264,
- [1265] = 1263,
- [1266] = 1152,
- [1267] = 1267,
- [1268] = 1152,
- [1269] = 1179,
- [1270] = 1216,
- [1271] = 720,
- [1272] = 730,
- [1273] = 1202,
- [1274] = 1248,
- [1275] = 1188,
- [1276] = 1202,
- [1277] = 1264,
- [1278] = 1263,
- [1279] = 1202,
- [1280] = 1215,
- [1281] = 1182,
- [1282] = 1182,
- [1283] = 1216,
- [1284] = 1182,
- [1285] = 1264,
- [1286] = 1286,
- [1287] = 1215,
- [1288] = 1165,
- [1289] = 1289,
- [1290] = 1290,
- [1291] = 1289,
- [1292] = 1209,
- [1293] = 1144,
- [1294] = 1179,
- [1295] = 1216,
- [1296] = 1182,
- [1297] = 1165,
- [1298] = 1144,
- [1299] = 1216,
- [1300] = 1179,
- [1301] = 1234,
- [1302] = 1302,
- [1303] = 1202,
- [1304] = 1202,
- [1305] = 1215,
- [1306] = 1202,
- [1307] = 1216,
- [1308] = 1216,
- [1309] = 1309,
- [1310] = 1309,
- [1311] = 1311,
- [1312] = 1202,
- [1313] = 1189,
- [1314] = 1215,
- [1315] = 1309,
- [1316] = 1316,
- [1317] = 1216,
- [1318] = 1192,
- [1319] = 1215,
- [1320] = 1165,
- [1321] = 1309,
- [1322] = 1144,
- [1323] = 1309,
- [1324] = 1215,
- [1325] = 1325,
- [1326] = 1216,
- [1327] = 1179,
- [1328] = 1215,
- [1329] = 1309,
- [1330] = 1330,
- [1331] = 1215,
- [1332] = 1267,
- [1333] = 1216,
- [1334] = 1216,
- [1335] = 1216,
- [1336] = 1179,
- [1337] = 1216,
- [1338] = 1179,
- [1339] = 1215,
- [1340] = 1215,
- [1341] = 1215,
- [1342] = 1261,
- [1343] = 1204,
- [1344] = 1221,
- [1345] = 1179,
- [1346] = 1346,
- [1347] = 1347,
- [1348] = 1346,
- [1349] = 1349,
- [1350] = 1346,
- [1351] = 1351,
- [1352] = 1346,
- [1353] = 1347,
- [1354] = 1354,
- [1355] = 1347,
- [1356] = 1349,
- [1357] = 1351,
- [1358] = 1346,
- [1359] = 1354,
- [1360] = 1347,
- [1361] = 1349,
- [1362] = 1354,
- [1363] = 1351,
- [1364] = 1354,
- [1365] = 1351,
- [1366] = 1215,
- [1367] = 1354,
- [1368] = 1351,
- [1369] = 1179,
- [1370] = 1351,
- [1371] = 1349,
- [1372] = 1346,
- [1373] = 1290,
- [1374] = 1349,
- [1375] = 1216,
- [1376] = 1351,
- [1377] = 1354,
- [1378] = 1347,
- [1379] = 1347,
- [1380] = 1351,
- [1381] = 1349,
- [1382] = 1349,
- [1383] = 1234,
- [1384] = 1349,
- [1385] = 1351,
- [1386] = 1349,
- [1387] = 1387,
- [1388] = 1387,
- [1389] = 1387,
- [1390] = 1387,
- [1391] = 1387,
- [1392] = 1387,
- [1393] = 1387,
- [1394] = 1387,
- [1395] = 1387,
- [1396] = 1396,
- [1397] = 1396,
- [1398] = 1396,
- [1399] = 1399,
- [1400] = 1396,
- [1401] = 1396,
- [1402] = 1396,
- [1403] = 1403,
- [1404] = 1404,
- [1405] = 1405,
- [1406] = 1403,
- [1407] = 1405,
- [1408] = 1405,
- [1409] = 1409,
- [1410] = 1404,
- [1411] = 1405,
- [1412] = 1404,
- [1413] = 1403,
- [1414] = 1404,
- [1415] = 1403,
- [1416] = 1405,
- [1417] = 1404,
- [1418] = 1403,
- [1419] = 1419,
- [1420] = 1419,
- [1421] = 1419,
- [1422] = 1419,
- [1423] = 1419,
- [1424] = 1419,
- [1425] = 1419,
- [1426] = 1426,
- [1427] = 1427,
- [1428] = 245,
- [1429] = 231,
- [1430] = 1430,
- [1431] = 1431,
- [1432] = 1432,
- [1433] = 1433,
- [1434] = 1434,
- [1435] = 1435,
- [1436] = 1436,
- [1437] = 913,
- [1438] = 911,
- [1439] = 212,
- [1440] = 1440,
- [1441] = 1441,
- [1442] = 210,
- [1443] = 1443,
- [1444] = 214,
- [1445] = 231,
- [1446] = 1446,
- [1447] = 1447,
- [1448] = 245,
- [1449] = 1449,
- [1450] = 1450,
- [1451] = 1451,
- [1452] = 213,
- [1453] = 912,
- [1454] = 1454,
- [1455] = 1455,
- [1456] = 1456,
- [1457] = 1457,
- [1458] = 1458,
- [1459] = 1459,
- [1460] = 1460,
- [1461] = 1461,
- [1462] = 1462,
- [1463] = 1463,
- [1464] = 1464,
- [1465] = 1465,
- [1466] = 1466,
- [1467] = 652,
- [1468] = 1468,
- [1469] = 1469,
- [1470] = 1470,
- [1471] = 1471,
- [1472] = 1472,
- [1473] = 1473,
- [1474] = 1474,
- [1475] = 1475,
- [1476] = 1476,
- [1477] = 1477,
- [1478] = 1478,
- [1479] = 1479,
- [1480] = 1480,
- [1481] = 1481,
- [1482] = 1482,
- [1483] = 1483,
- [1484] = 1484,
- [1485] = 210,
- [1486] = 214,
- [1487] = 1487,
- [1488] = 1488,
- [1489] = 1489,
- [1490] = 1490,
- [1491] = 1491,
- [1492] = 1492,
- [1493] = 653,
- [1494] = 1494,
- [1495] = 1495,
- [1496] = 1496,
- [1497] = 1497,
- [1498] = 1498,
- [1499] = 1499,
- [1500] = 243,
- [1501] = 1501,
- [1502] = 1502,
- [1503] = 1503,
- [1504] = 1504,
- [1505] = 1505,
- [1506] = 1506,
- [1507] = 1507,
- [1508] = 1508,
- [1509] = 1509,
- [1510] = 1510,
- [1511] = 1511,
- [1512] = 1512,
- [1513] = 213,
- [1514] = 654,
- [1515] = 1515,
- [1516] = 1516,
- [1517] = 1517,
- [1518] = 1518,
- [1519] = 1519,
- [1520] = 1520,
- [1521] = 1521,
- [1522] = 1522,
- [1523] = 1523,
- [1524] = 1524,
- [1525] = 1525,
- [1526] = 1526,
- [1527] = 1527,
- [1528] = 1528,
- [1529] = 1529,
- [1530] = 1530,
- [1531] = 1531,
- [1532] = 1511,
- [1533] = 226,
- [1534] = 1534,
- [1535] = 1535,
- [1536] = 1536,
- [1537] = 1537,
- [1538] = 1538,
- [1539] = 1539,
- [1540] = 1540,
- [1541] = 1541,
- [1542] = 1542,
- [1543] = 1543,
- [1544] = 1544,
- [1545] = 1545,
- [1546] = 1546,
- [1547] = 1547,
- [1548] = 1548,
- [1549] = 1506,
- [1550] = 1550,
- [1551] = 1551,
- [1552] = 1506,
- [1553] = 1553,
- [1554] = 1554,
- [1555] = 1555,
- [1556] = 1556,
- [1557] = 1557,
- [1558] = 1558,
- [1559] = 1559,
- [1560] = 1560,
- [1561] = 1561,
- [1562] = 1511,
- [1563] = 1563,
- [1564] = 1564,
- [1565] = 1565,
- [1566] = 1566,
- [1567] = 1506,
- [1568] = 228,
- [1569] = 236,
- [1570] = 656,
- [1571] = 1571,
- [1572] = 1572,
- [1573] = 1573,
- [1574] = 1574,
- [1575] = 1575,
- [1576] = 1576,
- [1577] = 1577,
- [1578] = 1578,
- [1579] = 1579,
- [1580] = 1580,
- [1581] = 1581,
- [1582] = 1582,
- [1583] = 1583,
- [1584] = 1584,
- [1585] = 1585,
- [1586] = 1586,
- [1587] = 1587,
- [1588] = 1588,
- [1589] = 1506,
- [1590] = 1590,
- [1591] = 1591,
- [1592] = 1592,
- [1593] = 1593,
- [1594] = 1594,
- [1595] = 1595,
- [1596] = 1596,
- [1597] = 1597,
- [1598] = 1598,
- [1599] = 1511,
- [1600] = 658,
- [1601] = 1601,
- [1602] = 1602,
- [1603] = 1603,
- [1604] = 1604,
- [1605] = 1605,
- [1606] = 1606,
- [1607] = 1607,
- [1608] = 1608,
- [1609] = 1609,
- [1610] = 1610,
- [1611] = 1611,
- [1612] = 1612,
- [1613] = 1613,
- [1614] = 1614,
- [1615] = 1543,
- [1616] = 1435,
- [1617] = 1544,
- [1618] = 1618,
- [1619] = 1619,
- [1620] = 222,
- [1621] = 1578,
- [1622] = 239,
- [1623] = 1623,
- [1624] = 1547,
- [1625] = 1625,
- [1626] = 1626,
- [1627] = 1548,
- [1628] = 1628,
- [1629] = 1551,
- [1630] = 1630,
- [1631] = 1631,
- [1632] = 1632,
- [1633] = 1633,
- [1634] = 1634,
- [1635] = 1479,
- [1636] = 1488,
- [1637] = 1490,
- [1638] = 1638,
- [1639] = 1639,
- [1640] = 1640,
- [1641] = 1641,
- [1642] = 228,
- [1643] = 236,
- [1644] = 1502,
- [1645] = 1645,
- [1646] = 1646,
- [1647] = 1647,
- [1648] = 1648,
- [1649] = 1649,
- [1650] = 1650,
- [1651] = 1525,
- [1652] = 1652,
- [1653] = 1653,
- [1654] = 222,
- [1655] = 1632,
- [1656] = 239,
- [1657] = 1527,
- [1658] = 1632,
- [1659] = 1530,
- [1660] = 1578,
- [1661] = 1488,
- [1662] = 1640,
- [1663] = 1534,
- [1664] = 1653,
- [1665] = 1538,
- [1666] = 1640,
- [1667] = 1518,
- [1668] = 1668,
- [1669] = 1669,
- [1670] = 1670,
- [1671] = 1671,
- [1672] = 1541,
- [1673] = 1542,
- [1674] = 1543,
- [1675] = 1544,
- [1676] = 1676,
- [1677] = 1677,
- [1678] = 1678,
- [1679] = 1679,
- [1680] = 1547,
- [1681] = 1548,
- [1682] = 1682,
- [1683] = 1683,
- [1684] = 1684,
- [1685] = 1685,
- [1686] = 218,
- [1687] = 1687,
- [1688] = 1551,
- [1689] = 1689,
- [1690] = 220,
- [1691] = 1433,
- [1692] = 1431,
- [1693] = 1432,
- [1694] = 246,
- [1695] = 1574,
- [1696] = 243,
- [1697] = 1697,
- [1698] = 1632,
- [1699] = 1502,
- [1700] = 1700,
- [1701] = 1701,
- [1702] = 218,
- [1703] = 1640,
- [1704] = 1704,
- [1705] = 1705,
- [1706] = 1697,
- [1707] = 1649,
- [1708] = 1708,
- [1709] = 1542,
- [1710] = 247,
- [1711] = 1711,
- [1712] = 1712,
- [1713] = 1713,
- [1714] = 1714,
- [1715] = 1715,
- [1716] = 226,
- [1717] = 1557,
- [1718] = 1718,
- [1719] = 1430,
- [1720] = 1507,
- [1721] = 1721,
- [1722] = 1558,
- [1723] = 1723,
- [1724] = 1724,
- [1725] = 1725,
- [1726] = 1726,
- [1727] = 1479,
- [1728] = 1728,
- [1729] = 1729,
- [1730] = 1730,
- [1731] = 1731,
- [1732] = 1732,
- [1733] = 1733,
- [1734] = 1734,
- [1735] = 1527,
- [1736] = 246,
- [1737] = 1560,
- [1738] = 1561,
- [1739] = 1575,
- [1740] = 1508,
- [1741] = 1530,
- [1742] = 1454,
- [1743] = 1632,
- [1744] = 1744,
- [1745] = 1745,
- [1746] = 1557,
- [1747] = 1747,
- [1748] = 1558,
- [1749] = 1640,
- [1750] = 1750,
- [1751] = 1751,
- [1752] = 1507,
- [1753] = 1753,
- [1754] = 1754,
- [1755] = 1755,
- [1756] = 1756,
- [1757] = 1757,
- [1758] = 1758,
- [1759] = 1508,
- [1760] = 1572,
- [1761] = 1761,
- [1762] = 1560,
- [1763] = 1763,
- [1764] = 1561,
- [1765] = 247,
- [1766] = 1490,
- [1767] = 1767,
- [1768] = 1572,
- [1769] = 1769,
- [1770] = 1770,
- [1771] = 1771,
- [1772] = 1573,
- [1773] = 1574,
- [1774] = 1774,
- [1775] = 1775,
- [1776] = 1776,
- [1777] = 220,
- [1778] = 1573,
- [1779] = 1575,
- [1780] = 1454,
- [1781] = 1781,
- [1782] = 1782,
- [1783] = 1518,
- [1784] = 1784,
- [1785] = 1785,
- [1786] = 1534,
- [1787] = 1538,
- [1788] = 1788,
- [1789] = 1541,
- [1790] = 1525,
- [1791] = 1585,
- [1792] = 1490,
- [1793] = 1793,
- [1794] = 1794,
- [1795] = 1795,
- [1796] = 1796,
- [1797] = 1446,
- [1798] = 1443,
- [1799] = 1441,
- [1800] = 1440,
- [1801] = 913,
- [1802] = 1802,
- [1803] = 1537,
- [1804] = 1804,
- [1805] = 1805,
- [1806] = 1625,
- [1807] = 1807,
- [1808] = 1451,
- [1809] = 1809,
- [1810] = 1449,
- [1811] = 1450,
- [1812] = 1447,
- [1813] = 1809,
- [1814] = 1625,
- [1815] = 1603,
- [1816] = 1436,
- [1817] = 1593,
- [1818] = 1649,
- [1819] = 1653,
- [1820] = 1697,
- [1821] = 1821,
- [1822] = 1822,
- [1823] = 1592,
- [1824] = 1824,
- [1825] = 1825,
- [1826] = 1585,
- [1827] = 1592,
- [1828] = 1828,
- [1829] = 1829,
- [1830] = 911,
- [1831] = 1585,
- [1832] = 1802,
- [1833] = 1804,
- [1834] = 1807,
- [1835] = 1809,
- [1836] = 1836,
- [1837] = 1837,
- [1838] = 1592,
- [1839] = 1837,
- [1840] = 1809,
- [1841] = 1794,
- [1842] = 1802,
- [1843] = 1809,
- [1844] = 1802,
- [1845] = 1845,
- [1846] = 1846,
- [1847] = 1802,
- [1848] = 1848,
- [1849] = 1849,
- [1850] = 1802,
- [1851] = 1802,
- [1852] = 1852,
- [1853] = 1849,
- [1854] = 912,
- [1855] = 1855,
- [1856] = 1856,
- [1857] = 1507,
- [1858] = 1508,
- [1859] = 1518,
- [1860] = 1525,
- [1861] = 1527,
- [1862] = 1530,
- [1863] = 1534,
- [1864] = 1538,
- [1865] = 1541,
- [1866] = 1542,
- [1867] = 1543,
- [1868] = 1544,
- [1869] = 1547,
- [1870] = 1548,
- [1871] = 1551,
- [1872] = 1557,
- [1873] = 1558,
- [1874] = 1560,
- [1875] = 1561,
- [1876] = 1572,
- [1877] = 1573,
- [1878] = 1574,
- [1879] = 1575,
- [1880] = 1454,
- [1881] = 1578,
- [1882] = 1849,
- [1883] = 1829,
- [1884] = 1884,
- [1885] = 1885,
- [1886] = 1886,
- [1887] = 1887,
- [1888] = 1479,
- [1889] = 1488,
- [1890] = 1502,
- [1891] = 1596,
- [1892] = 1487,
- [1893] = 1489,
- [1894] = 1491,
- [1895] = 1492,
- [1896] = 1466,
- [1897] = 653,
- [1898] = 1494,
- [1899] = 1495,
- [1900] = 1496,
- [1901] = 1497,
- [1902] = 1498,
- [1903] = 1499,
- [1904] = 1501,
- [1905] = 1503,
- [1906] = 1504,
- [1907] = 1505,
- [1908] = 1509,
- [1909] = 1510,
- [1910] = 1512,
- [1911] = 654,
- [1912] = 1515,
- [1913] = 1516,
- [1914] = 1517,
- [1915] = 1519,
- [1916] = 1520,
- [1917] = 1521,
- [1918] = 1523,
- [1919] = 1524,
- [1920] = 1526,
- [1921] = 1528,
- [1922] = 1529,
- [1923] = 1531,
- [1924] = 212,
- [1925] = 1925,
- [1926] = 1926,
- [1927] = 1670,
- [1928] = 1555,
- [1929] = 1556,
- [1930] = 1585,
- [1931] = 1565,
- [1932] = 1566,
- [1933] = 1592,
- [1934] = 1934,
- [1935] = 1539,
- [1936] = 1540,
- [1937] = 1550,
- [1938] = 1535,
- [1939] = 1563,
- [1940] = 1564,
- [1941] = 1536,
- [1942] = 1942,
- [1943] = 1553,
- [1944] = 1926,
- [1945] = 1668,
- [1946] = 1468,
- [1947] = 1545,
- [1948] = 1948,
- [1949] = 1949,
- [1950] = 1591,
- [1951] = 1668,
- [1952] = 1596,
- [1953] = 1761,
- [1954] = 1954,
- [1955] = 1955,
- [1956] = 1670,
- [1957] = 1957,
- [1958] = 1958,
- [1959] = 1805,
- [1960] = 1960,
- [1961] = 1961,
- [1962] = 1822,
- [1963] = 1926,
- [1964] = 1585,
- [1965] = 1592,
- [1966] = 1603,
- [1967] = 1593,
- [1968] = 1926,
- [1969] = 1585,
- [1970] = 1592,
- [1971] = 1926,
- [1972] = 1668,
- [1973] = 1761,
- [1974] = 1670,
- [1975] = 1522,
- [1976] = 656,
- [1977] = 1653,
- [1978] = 1553,
- [1979] = 1948,
- [1980] = 1559,
- [1981] = 1571,
- [1982] = 1949,
- [1983] = 1507,
- [1984] = 1508,
- [1985] = 1576,
- [1986] = 1518,
- [1987] = 1577,
- [1988] = 1525,
- [1989] = 1527,
- [1990] = 1530,
- [1991] = 1961,
- [1992] = 1534,
- [1993] = 1822,
- [1994] = 1538,
- [1995] = 1541,
- [1996] = 1542,
- [1997] = 1543,
- [1998] = 1544,
- [1999] = 1547,
- [2000] = 1548,
- [2001] = 1551,
- [2002] = 1557,
- [2003] = 1558,
- [2004] = 1546,
- [2005] = 1560,
- [2006] = 1561,
- [2007] = 1579,
- [2008] = 1591,
- [2009] = 1572,
- [2010] = 1573,
- [2011] = 1574,
- [2012] = 1575,
- [2013] = 1454,
- [2014] = 1580,
- [2015] = 1581,
- [2016] = 1582,
- [2017] = 2017,
- [2018] = 2018,
- [2019] = 1484,
- [2020] = 1761,
- [2021] = 1603,
- [2022] = 1583,
- [2023] = 2017,
- [2024] = 1584,
- [2025] = 1586,
- [2026] = 2026,
- [2027] = 1587,
- [2028] = 2028,
- [2029] = 1588,
- [2030] = 1590,
- [2031] = 212,
- [2032] = 1594,
- [2033] = 1595,
- [2034] = 1597,
- [2035] = 1554,
- [2036] = 1926,
- [2037] = 658,
- [2038] = 1697,
- [2039] = 1926,
- [2040] = 1479,
- [2041] = 1488,
- [2042] = 1490,
- [2043] = 1502,
- [2044] = 2044,
- [2045] = 2045,
- [2046] = 1601,
- [2047] = 1805,
- [2048] = 2048,
- [2049] = 1602,
- [2050] = 2050,
- [2051] = 1507,
- [2052] = 1508,
- [2053] = 1518,
- [2054] = 1525,
- [2055] = 1527,
- [2056] = 1530,
- [2057] = 1534,
- [2058] = 1538,
- [2059] = 1541,
- [2060] = 1542,
- [2061] = 1543,
- [2062] = 1544,
- [2063] = 1547,
- [2064] = 1548,
- [2065] = 1551,
- [2066] = 1557,
- [2067] = 1558,
- [2068] = 1560,
- [2069] = 1561,
- [2070] = 1572,
- [2071] = 1573,
- [2072] = 1574,
- [2073] = 1575,
- [2074] = 1454,
- [2075] = 1578,
- [2076] = 1604,
- [2077] = 2077,
- [2078] = 1605,
- [2079] = 2079,
- [2080] = 2080,
- [2081] = 1593,
- [2082] = 1479,
- [2083] = 1488,
- [2084] = 1490,
- [2085] = 1502,
- [2086] = 1606,
- [2087] = 2087,
- [2088] = 1607,
- [2089] = 1608,
- [2090] = 1609,
- [2091] = 1610,
- [2092] = 1611,
- [2093] = 1612,
- [2094] = 1455,
- [2095] = 1456,
- [2096] = 1457,
- [2097] = 1458,
- [2098] = 1459,
- [2099] = 1460,
- [2100] = 1461,
- [2101] = 1462,
- [2102] = 1463,
- [2103] = 1464,
- [2104] = 1465,
- [2105] = 1598,
- [2106] = 652,
- [2107] = 1613,
- [2108] = 1469,
- [2109] = 1470,
- [2110] = 1471,
- [2111] = 1472,
- [2112] = 1473,
- [2113] = 1474,
- [2114] = 1649,
- [2115] = 1475,
- [2116] = 1476,
- [2117] = 1477,
- [2118] = 1478,
- [2119] = 1480,
- [2120] = 1481,
- [2121] = 1482,
- [2122] = 1483,
- [2123] = 1578,
- [2124] = 1734,
- [2125] = 2125,
- [2126] = 2126,
- [2127] = 1934,
- [2128] = 1683,
- [2129] = 1805,
- [2130] = 2130,
- [2131] = 1625,
- [2132] = 1689,
- [2133] = 1757,
- [2134] = 2134,
- [2135] = 233,
- [2136] = 2136,
- [2137] = 2137,
- [2138] = 2138,
- [2139] = 230,
- [2140] = 2140,
- [2141] = 1744,
- [2142] = 1745,
- [2143] = 2143,
- [2144] = 2144,
- [2145] = 1753,
- [2146] = 2146,
- [2147] = 1754,
- [2148] = 1756,
- [2149] = 1641,
- [2150] = 1649,
- [2151] = 1653,
- [2152] = 1697,
- [2153] = 2153,
- [2154] = 2154,
- [2155] = 1668,
- [2156] = 1761,
- [2157] = 2157,
- [2158] = 1708,
- [2159] = 1614,
- [2160] = 1711,
- [2161] = 1712,
- [2162] = 2153,
- [2163] = 1934,
- [2164] = 2154,
- [2165] = 2165,
- [2166] = 2166,
- [2167] = 1714,
- [2168] = 1769,
- [2169] = 1718,
- [2170] = 2153,
- [2171] = 2171,
- [2172] = 2154,
- [2173] = 1585,
- [2174] = 1592,
- [2175] = 2153,
- [2176] = 1585,
- [2177] = 1592,
- [2178] = 2165,
- [2179] = 2166,
- [2180] = 2165,
- [2181] = 2166,
- [2182] = 2182,
- [2183] = 2154,
- [2184] = 2165,
- [2185] = 2166,
- [2186] = 2165,
- [2187] = 2166,
- [2188] = 1721,
- [2189] = 1724,
- [2190] = 1725,
- [2191] = 1726,
- [2192] = 1729,
- [2193] = 1730,
- [2194] = 1731,
- [2195] = 2195,
- [2196] = 219,
- [2197] = 235,
- [2198] = 1684,
- [2199] = 2199,
- [2200] = 237,
- [2201] = 216,
- [2202] = 2202,
- [2203] = 2203,
- [2204] = 2204,
- [2205] = 1771,
- [2206] = 240,
- [2207] = 2207,
- [2208] = 1728,
- [2209] = 1776,
- [2210] = 2210,
- [2211] = 2211,
- [2212] = 2199,
- [2213] = 1732,
- [2214] = 2214,
- [2215] = 1782,
- [2216] = 241,
- [2217] = 1700,
- [2218] = 242,
- [2219] = 1774,
- [2220] = 1775,
- [2221] = 1781,
- [2222] = 1626,
- [2223] = 1784,
- [2224] = 1723,
- [2225] = 2134,
- [2226] = 2203,
- [2227] = 1646,
- [2228] = 1758,
- [2229] = 1763,
- [2230] = 1715,
- [2231] = 2231,
- [2232] = 1682,
- [2233] = 1713,
- [2234] = 1634,
- [2235] = 2235,
- [2236] = 2236,
- [2237] = 2237,
- [2238] = 2238,
- [2239] = 2239,
- [2240] = 2240,
- [2241] = 2241,
- [2242] = 2153,
- [2243] = 2154,
- [2244] = 2244,
- [2245] = 2245,
- [2246] = 1671,
- [2247] = 229,
- [2248] = 2248,
- [2249] = 234,
- [2250] = 2250,
- [2251] = 2251,
- [2252] = 2136,
- [2253] = 2240,
- [2254] = 2254,
- [2255] = 2255,
- [2256] = 2157,
- [2257] = 1767,
- [2258] = 2203,
- [2259] = 1638,
- [2260] = 1676,
- [2261] = 223,
- [2262] = 1685,
- [2263] = 1687,
- [2264] = 2153,
- [2265] = 2154,
- [2266] = 1639,
- [2267] = 240,
- [2268] = 2268,
- [2269] = 2269,
- [2270] = 1631,
- [2271] = 1668,
- [2272] = 2272,
- [2273] = 1701,
- [2274] = 1647,
- [2275] = 1619,
- [2276] = 1623,
- [2277] = 1628,
- [2278] = 2203,
- [2279] = 1507,
- [2280] = 1508,
- [2281] = 1518,
- [2282] = 1525,
- [2283] = 1527,
- [2284] = 1530,
- [2285] = 1534,
- [2286] = 1538,
- [2287] = 1541,
- [2288] = 1542,
- [2289] = 1543,
- [2290] = 1544,
- [2291] = 1547,
- [2292] = 1548,
- [2293] = 1551,
- [2294] = 1557,
- [2295] = 1558,
- [2296] = 1560,
- [2297] = 1561,
- [2298] = 1572,
- [2299] = 1573,
- [2300] = 1574,
- [2301] = 1575,
- [2302] = 1454,
- [2303] = 1578,
- [2304] = 229,
- [2305] = 1479,
- [2306] = 1488,
- [2307] = 2307,
- [2308] = 1490,
- [2309] = 1502,
- [2310] = 1650,
- [2311] = 2311,
- [2312] = 2312,
- [2313] = 2203,
- [2314] = 2254,
- [2315] = 1553,
- [2316] = 2316,
- [2317] = 2317,
- [2318] = 2203,
- [2319] = 2319,
- [2320] = 2320,
- [2321] = 234,
- [2322] = 2203,
- [2323] = 2323,
- [2324] = 2324,
- [2325] = 1822,
- [2326] = 221,
- [2327] = 2327,
- [2328] = 1591,
- [2329] = 2255,
- [2330] = 1596,
- [2331] = 1761,
- [2332] = 223,
- [2333] = 233,
- [2334] = 1805,
- [2335] = 230,
- [2336] = 219,
- [2337] = 235,
- [2338] = 1648,
- [2339] = 1677,
- [2340] = 237,
- [2341] = 216,
- [2342] = 1633,
- [2343] = 241,
- [2344] = 1805,
- [2345] = 2203,
- [2346] = 1507,
- [2347] = 1508,
- [2348] = 1518,
- [2349] = 1525,
- [2350] = 1527,
- [2351] = 1530,
- [2352] = 1534,
- [2353] = 1538,
- [2354] = 1541,
- [2355] = 1542,
- [2356] = 1543,
- [2357] = 1544,
- [2358] = 1547,
- [2359] = 1548,
- [2360] = 1551,
- [2361] = 1557,
- [2362] = 1558,
- [2363] = 1560,
- [2364] = 1561,
- [2365] = 1572,
- [2366] = 1573,
- [2367] = 1574,
- [2368] = 1575,
- [2369] = 1454,
- [2370] = 1578,
- [2371] = 2371,
- [2372] = 242,
- [2373] = 1479,
- [2374] = 1488,
- [2375] = 1490,
- [2376] = 1502,
- [2377] = 1553,
- [2378] = 1678,
- [2379] = 1679,
- [2380] = 2380,
- [2381] = 2203,
- [2382] = 1645,
- [2383] = 1704,
- [2384] = 1630,
- [2385] = 221,
- [2386] = 2153,
- [2387] = 2154,
- [2388] = 1785,
- [2389] = 2389,
- [2390] = 2390,
- [2391] = 2391,
- [2392] = 1653,
- [2393] = 2393,
- [2394] = 2390,
- [2395] = 2395,
- [2396] = 2390,
- [2397] = 2397,
- [2398] = 1585,
- [2399] = 2399,
- [2400] = 2400,
- [2401] = 1592,
- [2402] = 1670,
- [2403] = 1805,
- [2404] = 2390,
- [2405] = 1479,
- [2406] = 1488,
- [2407] = 1490,
- [2408] = 1502,
- [2409] = 1591,
- [2410] = 1596,
- [2411] = 2411,
- [2412] = 2412,
- [2413] = 2390,
- [2414] = 1934,
- [2415] = 2411,
- [2416] = 1593,
- [2417] = 2417,
- [2418] = 2418,
- [2419] = 2419,
- [2420] = 2390,
- [2421] = 2421,
- [2422] = 1670,
- [2423] = 2423,
- [2424] = 2424,
- [2425] = 1668,
- [2426] = 2426,
- [2427] = 1761,
- [2428] = 1603,
- [2429] = 1507,
- [2430] = 1508,
- [2431] = 1518,
- [2432] = 1525,
- [2433] = 1527,
- [2434] = 1530,
- [2435] = 1534,
- [2436] = 2436,
- [2437] = 1538,
- [2438] = 1541,
- [2439] = 1542,
- [2440] = 1543,
- [2441] = 1544,
- [2442] = 1547,
- [2443] = 1548,
- [2444] = 1551,
- [2445] = 1557,
- [2446] = 1558,
- [2447] = 1560,
- [2448] = 1561,
- [2449] = 2400,
- [2450] = 1572,
- [2451] = 1573,
- [2452] = 1574,
- [2453] = 1575,
- [2454] = 1454,
- [2455] = 2455,
- [2456] = 2426,
- [2457] = 1578,
- [2458] = 2421,
- [2459] = 2455,
- [2460] = 2460,
- [2461] = 2461,
- [2462] = 1795,
- [2463] = 2463,
- [2464] = 2390,
- [2465] = 2465,
- [2466] = 2466,
- [2467] = 1805,
- [2468] = 1805,
- [2469] = 1553,
- [2470] = 2470,
- [2471] = 2471,
- [2472] = 2472,
- [2473] = 2473,
- [2474] = 1805,
- [2475] = 1649,
- [2476] = 1653,
- [2477] = 2477,
- [2478] = 1697,
- [2479] = 2479,
- [2480] = 2480,
- [2481] = 2481,
- [2482] = 2482,
- [2483] = 2483,
- [2484] = 913,
- [2485] = 1668,
- [2486] = 1670,
- [2487] = 911,
- [2488] = 1603,
- [2489] = 2489,
- [2490] = 2490,
- [2491] = 2491,
- [2492] = 2492,
- [2493] = 1593,
- [2494] = 2494,
- [2495] = 2495,
- [2496] = 1553,
- [2497] = 2497,
- [2498] = 2498,
- [2499] = 2499,
- [2500] = 2500,
- [2501] = 2501,
- [2502] = 1761,
- [2503] = 2503,
- [2504] = 2504,
- [2505] = 2505,
- [2506] = 1670,
- [2507] = 2507,
- [2508] = 2508,
- [2509] = 1553,
- [2510] = 1794,
- [2511] = 2511,
- [2512] = 912,
- [2513] = 2166,
- [2514] = 2165,
- [2515] = 2515,
- [2516] = 2166,
- [2517] = 2517,
- [2518] = 1649,
- [2519] = 1447,
- [2520] = 1934,
- [2521] = 1653,
- [2522] = 2522,
- [2523] = 2523,
- [2524] = 2524,
- [2525] = 2525,
- [2526] = 2526,
- [2527] = 2527,
- [2528] = 2165,
- [2529] = 2165,
- [2530] = 2530,
- [2531] = 2166,
- [2532] = 1697,
- [2533] = 2166,
- [2534] = 2534,
- [2535] = 2307,
- [2536] = 2536,
- [2537] = 2165,
- [2538] = 2166,
- [2539] = 2539,
- [2540] = 2540,
- [2541] = 2166,
- [2542] = 2542,
- [2543] = 2543,
- [2544] = 2544,
- [2545] = 2545,
- [2546] = 1553,
- [2547] = 2165,
- [2548] = 1553,
- [2549] = 2165,
- [2550] = 2550,
- [2551] = 2551,
- [2552] = 2165,
- [2553] = 2166,
- [2554] = 2554,
- [2555] = 243,
- [2556] = 2556,
- [2557] = 226,
- [2558] = 2558,
- [2559] = 2559,
- [2560] = 239,
- [2561] = 2561,
- [2562] = 2562,
- [2563] = 2563,
- [2564] = 2564,
- [2565] = 2565,
- [2566] = 2566,
- [2567] = 2567,
- [2568] = 2568,
- [2569] = 2569,
- [2570] = 2570,
- [2571] = 2571,
- [2572] = 2572,
- [2573] = 2573,
- [2574] = 2574,
- [2575] = 2575,
- [2576] = 2570,
- [2577] = 2577,
- [2578] = 2578,
- [2579] = 2579,
- [2580] = 2570,
- [2581] = 2581,
- [2582] = 2570,
- [2583] = 2583,
- [2584] = 2584,
- [2585] = 2585,
- [2586] = 2586,
- [2587] = 2587,
- [2588] = 2588,
- [2589] = 2589,
- [2590] = 1231,
- [2591] = 243,
- [2592] = 2592,
- [2593] = 2593,
- [2594] = 2594,
- [2595] = 2595,
- [2596] = 2596,
- [2597] = 2597,
- [2598] = 226,
- [2599] = 2570,
- [2600] = 2600,
- [2601] = 1183,
- [2602] = 2602,
- [2603] = 2603,
- [2604] = 2570,
- [2605] = 2605,
- [2606] = 2606,
- [2607] = 2570,
- [2608] = 2570,
- [2609] = 2609,
- [2610] = 2610,
- [2611] = 2611,
- [2612] = 218,
- [2613] = 2613,
- [2614] = 2614,
- [2615] = 2615,
- [2616] = 2616,
- [2617] = 2570,
- [2618] = 2618,
- [2619] = 2503,
- [2620] = 2620,
- [2621] = 218,
- [2622] = 2622,
- [2623] = 2623,
- [2624] = 2624,
- [2625] = 2625,
- [2626] = 2626,
- [2627] = 239,
- [2628] = 2628,
- [2629] = 2500,
- [2630] = 2630,
- [2631] = 2171,
- [2632] = 2632,
- [2633] = 2633,
- [2634] = 2634,
- [2635] = 2138,
- [2636] = 2636,
- [2637] = 2637,
- [2638] = 2638,
- [2639] = 2202,
- [2640] = 2244,
- [2641] = 2641,
- [2642] = 2642,
- [2643] = 2643,
- [2644] = 2644,
- [2645] = 2463,
- [2646] = 2646,
- [2647] = 2397,
- [2648] = 2455,
- [2649] = 2471,
- [2650] = 2419,
- [2651] = 2465,
- [2652] = 2426,
- [2653] = 2400,
- [2654] = 2470,
- [2655] = 2655,
- [2656] = 2393,
- [2657] = 2400,
- [2658] = 2426,
- [2659] = 2421,
- [2660] = 2455,
- [2661] = 2646,
- [2662] = 2418,
- [2663] = 2421,
- [2664] = 2664,
- [2665] = 2465,
- [2666] = 2471,
- [2667] = 2419,
- [2668] = 2418,
- [2669] = 2643,
- [2670] = 2423,
- [2671] = 1201,
- [2672] = 2672,
- [2673] = 2673,
- [2674] = 2674,
- [2675] = 2675,
- [2676] = 2676,
- [2677] = 2677,
- [2678] = 2678,
- [2679] = 2679,
- [2680] = 2680,
- [2681] = 2681,
- [2682] = 2682,
- [2683] = 2681,
- [2684] = 2681,
- [2685] = 2680,
- [2686] = 2676,
- [2687] = 2687,
- [2688] = 2678,
- [2689] = 2680,
- [2690] = 2679,
- [2691] = 2680,
- [2692] = 2692,
- [2693] = 2692,
- [2694] = 2673,
- [2695] = 2695,
- [2696] = 2696,
- [2697] = 1244,
- [2698] = 2698,
- [2699] = 2699,
- [2700] = 2700,
- [2701] = 2701,
- [2702] = 2702,
- [2703] = 1233,
- [2704] = 1228,
- [2705] = 2705,
- [2706] = 2706,
- [2707] = 2707,
- [2708] = 2708,
- [2709] = 1203,
- [2710] = 2710,
- [2711] = 2711,
- [2712] = 2712,
- [2713] = 2713,
- [2714] = 1194,
- [2715] = 2715,
- [2716] = 2716,
- [2717] = 2717,
- [2718] = 2391,
- [2719] = 2719,
- [2720] = 2720,
- [2721] = 2721,
- [2722] = 2722,
- [2723] = 2723,
- [2724] = 2724,
- [2725] = 2725,
- [2726] = 2726,
- [2727] = 2727,
- [2728] = 2728,
- [2729] = 2729,
- [2730] = 2730,
- [2731] = 2731,
- [2732] = 2732,
- [2733] = 2733,
- [2734] = 2734,
- [2735] = 2735,
- [2736] = 2731,
- [2737] = 2737,
- [2738] = 2738,
- [2739] = 2739,
- [2740] = 2740,
- [2741] = 2741,
- [2742] = 2742,
- [2743] = 2726,
- [2744] = 2744,
- [2745] = 2745,
- [2746] = 2746,
- [2747] = 2739,
- [2748] = 2748,
- [2749] = 2746,
- [2750] = 2750,
- [2751] = 2751,
- [2752] = 2752,
- [2753] = 2753,
- [2754] = 2754,
- [2755] = 2755,
- [2756] = 2756,
- [2757] = 2757,
- [2758] = 2758,
- [2759] = 2759,
- [2760] = 2760,
- [2761] = 2761,
- [2762] = 2762,
- [2763] = 2763,
- [2764] = 2764,
- [2765] = 2765,
- [2766] = 2766,
- [2767] = 2767,
- [2768] = 2768,
- [2769] = 2752,
- [2770] = 2770,
- [2771] = 2721,
- [2772] = 2753,
- [2773] = 2773,
- [2774] = 2742,
- [2775] = 2765,
- [2776] = 2776,
- [2777] = 2777,
- [2778] = 2770,
- [2779] = 2773,
- [2780] = 2744,
- [2781] = 2781,
- [2782] = 1431,
- [2783] = 1432,
- [2784] = 1433,
- [2785] = 1481,
- [2786] = 1494,
- [2787] = 1505,
- [2788] = 1495,
- [2789] = 1496,
- [2790] = 1504,
- [2791] = 1497,
- [2792] = 1498,
- [2793] = 1515,
- [2794] = 1516,
- [2795] = 1517,
- [2796] = 1519,
- [2797] = 1521,
- [2798] = 1523,
- [2799] = 1524,
- [2800] = 1613,
- [2801] = 1469,
- [2802] = 1470,
- [2803] = 1471,
- [2804] = 1472,
- [2805] = 1473,
- [2806] = 1474,
- [2807] = 1475,
- [2808] = 1476,
- [2809] = 1477,
- [2810] = 1478,
- [2811] = 1480,
- [2812] = 1482,
- [2813] = 1499,
- [2814] = 1526,
- [2815] = 1528,
- [2816] = 1501,
- [2817] = 1503,
- [2818] = 1520,
- [2819] = 2819,
- [2820] = 245,
- [2821] = 2819,
- [2822] = 231,
- [2823] = 2823,
- [2824] = 1443,
- [2825] = 1461,
- [2826] = 1456,
- [2827] = 1433,
- [2828] = 1441,
- [2829] = 1601,
- [2830] = 1455,
- [2831] = 1571,
- [2832] = 1431,
- [2833] = 1576,
- [2834] = 1612,
- [2835] = 1611,
- [2836] = 1460,
- [2837] = 1459,
- [2838] = 1462,
- [2839] = 1432,
- [2840] = 1435,
- [2841] = 1604,
- [2842] = 1466,
- [2843] = 1606,
- [2844] = 1554,
- [2845] = 1598,
- [2846] = 1440,
- [2847] = 1597,
- [2848] = 1594,
- [2849] = 1451,
- [2850] = 1555,
- [2851] = 1446,
- [2852] = 1602,
- [2853] = 1509,
- [2854] = 1510,
- [2855] = 1550,
- [2856] = 1584,
- [2857] = 1529,
- [2858] = 1587,
- [2859] = 1512,
- [2860] = 1590,
- [2861] = 1595,
- [2862] = 1433,
- [2863] = 1431,
- [2864] = 1432,
- [2865] = 1605,
- [2866] = 1607,
- [2867] = 2867,
- [2868] = 2868,
- [2869] = 2869,
- [2870] = 2870,
- [2871] = 1608,
- [2872] = 1609,
- [2873] = 1610,
- [2874] = 1457,
- [2875] = 2875,
- [2876] = 1463,
- [2877] = 1465,
- [2878] = 2875,
- [2879] = 2867,
- [2880] = 2868,
- [2881] = 2869,
- [2882] = 2870,
- [2883] = 1539,
- [2884] = 2875,
- [2885] = 1540,
- [2886] = 2868,
- [2887] = 2869,
- [2888] = 2870,
- [2889] = 1545,
- [2890] = 1546,
- [2891] = 2875,
- [2892] = 2867,
- [2893] = 2868,
- [2894] = 2869,
- [2895] = 2870,
- [2896] = 1556,
- [2897] = 1565,
- [2898] = 2875,
- [2899] = 2875,
- [2900] = 2875,
- [2901] = 1435,
- [2902] = 2867,
- [2903] = 1566,
- [2904] = 2868,
- [2905] = 1577,
- [2906] = 1613,
- [2907] = 1579,
- [2908] = 2869,
- [2909] = 1469,
- [2910] = 1470,
- [2911] = 1471,
- [2912] = 1472,
- [2913] = 1473,
- [2914] = 1474,
- [2915] = 1580,
- [2916] = 1475,
- [2917] = 2870,
- [2918] = 1582,
- [2919] = 2875,
- [2920] = 1483,
- [2921] = 1484,
- [2922] = 1476,
- [2923] = 1583,
- [2924] = 1477,
- [2925] = 1489,
- [2926] = 1491,
- [2927] = 1478,
- [2928] = 1480,
- [2929] = 1481,
- [2930] = 1482,
- [2931] = 1494,
- [2932] = 1495,
- [2933] = 1496,
- [2934] = 1497,
- [2935] = 1498,
- [2936] = 1499,
- [2937] = 1501,
- [2938] = 1503,
- [2939] = 1504,
- [2940] = 1505,
- [2941] = 1515,
- [2942] = 1516,
- [2943] = 2875,
- [2944] = 1517,
- [2945] = 1519,
- [2946] = 1520,
- [2947] = 1521,
- [2948] = 1523,
- [2949] = 1524,
- [2950] = 1526,
- [2951] = 1528,
- [2952] = 2867,
- [2953] = 2953,
- [2954] = 2954,
- [2955] = 2955,
- [2956] = 2956,
- [2957] = 1443,
- [2958] = 1440,
- [2959] = 2959,
- [2960] = 2953,
- [2961] = 2961,
- [2962] = 2953,
- [2963] = 2961,
- [2964] = 2964,
- [2965] = 2965,
- [2966] = 2966,
- [2967] = 2967,
- [2968] = 2968,
- [2969] = 2969,
- [2970] = 1449,
- [2971] = 2971,
- [2972] = 2953,
- [2973] = 2961,
- [2974] = 2974,
- [2975] = 2975,
- [2976] = 2976,
- [2977] = 2977,
- [2978] = 2953,
- [2979] = 2961,
- [2980] = 2980,
- [2981] = 2981,
- [2982] = 2961,
- [2983] = 2953,
- [2984] = 2984,
- [2985] = 2985,
- [2986] = 2986,
- [2987] = 2987,
- [2988] = 2988,
- [2989] = 2989,
- [2990] = 2990,
- [2991] = 2953,
- [2992] = 2992,
- [2993] = 1436,
- [2994] = 2994,
- [2995] = 1450,
- [2996] = 1496,
- [2997] = 2997,
- [2998] = 2998,
- [2999] = 1598,
- [3000] = 1563,
- [3001] = 1564,
- [3002] = 1528,
- [3003] = 1571,
- [3004] = 1435,
- [3005] = 1576,
- [3006] = 1458,
- [3007] = 912,
- [3008] = 1505,
- [3009] = 3009,
- [3010] = 1515,
- [3011] = 1516,
- [3012] = 913,
- [3013] = 1497,
- [3014] = 1586,
- [3015] = 1554,
- [3016] = 3016,
- [3017] = 1464,
- [3018] = 911,
- [3019] = 1531,
- [3020] = 1601,
- [3021] = 1604,
- [3022] = 1498,
- [3023] = 1606,
- [3024] = 1517,
- [3025] = 1519,
- [3026] = 2997,
- [3027] = 1499,
- [3028] = 3028,
- [3029] = 3029,
- [3030] = 1520,
- [3031] = 1611,
- [3032] = 1612,
- [3033] = 1521,
- [3034] = 1466,
- [3035] = 1455,
- [3036] = 1456,
- [3037] = 2998,
- [3038] = 3038,
- [3039] = 3039,
- [3040] = 1526,
- [3041] = 1501,
- [3042] = 1459,
- [3043] = 1460,
- [3044] = 1461,
- [3045] = 3016,
- [3046] = 1462,
- [3047] = 1441,
- [3048] = 1503,
- [3049] = 3049,
- [3050] = 1581,
- [3051] = 2997,
- [3052] = 2988,
- [3053] = 1613,
- [3054] = 1487,
- [3055] = 1469,
- [3056] = 1523,
- [3057] = 3057,
- [3058] = 1470,
- [3059] = 1492,
- [3060] = 1471,
- [3061] = 1472,
- [3062] = 2998,
- [3063] = 3063,
- [3064] = 1473,
- [3065] = 1474,
- [3066] = 1475,
- [3067] = 1476,
- [3068] = 1588,
- [3069] = 1477,
- [3070] = 2997,
- [3071] = 1478,
- [3072] = 1480,
- [3073] = 1524,
- [3074] = 3074,
- [3075] = 2998,
- [3076] = 1481,
- [3077] = 1482,
- [3078] = 1494,
- [3079] = 1495,
- [3080] = 1504,
- [3081] = 3081,
- [3082] = 3082,
- [3083] = 3083,
- [3084] = 1451,
- [3085] = 3085,
- [3086] = 1594,
- [3087] = 1597,
- [3088] = 3088,
- [3089] = 3089,
- [3090] = 3090,
- [3091] = 3091,
- [3092] = 3092,
- [3093] = 3093,
- [3094] = 3094,
- [3095] = 3095,
- [3096] = 1436,
- [3097] = 1446,
- [3098] = 3098,
- [3099] = 3099,
- [3100] = 3099,
- [3101] = 1449,
- [3102] = 3102,
- [3103] = 3103,
- [3104] = 3104,
- [3105] = 3105,
- [3106] = 3106,
- [3107] = 3107,
- [3108] = 3099,
- [3109] = 231,
- [3110] = 3110,
- [3111] = 3111,
- [3112] = 1450,
- [3113] = 1555,
- [3114] = 3114,
- [3115] = 3115,
- [3116] = 3116,
- [3117] = 3117,
- [3118] = 3118,
- [3119] = 3119,
- [3120] = 3120,
- [3121] = 3104,
- [3122] = 245,
- [3123] = 3123,
- [3124] = 3104,
- [3125] = 3125,
- [3126] = 1433,
- [3127] = 1431,
- [3128] = 3128,
- [3129] = 3129,
- [3130] = 3130,
- [3131] = 1432,
- [3132] = 3132,
- [3133] = 3104,
- [3134] = 3134,
- [3135] = 3135,
- [3136] = 3104,
- [3137] = 3099,
- [3138] = 1440,
- [3139] = 3139,
- [3140] = 3140,
- [3141] = 1443,
- [3142] = 3142,
- [3143] = 1465,
- [3144] = 1459,
- [3145] = 1611,
- [3146] = 1590,
- [3147] = 1460,
- [3148] = 1461,
- [3149] = 1539,
- [3150] = 1565,
- [3151] = 1462,
- [3152] = 1458,
- [3153] = 912,
- [3154] = 1566,
- [3155] = 1577,
- [3156] = 1576,
- [3157] = 1456,
- [3158] = 1609,
- [3159] = 1546,
- [3160] = 1545,
- [3161] = 1550,
- [3162] = 3162,
- [3163] = 1610,
- [3164] = 1579,
- [3165] = 1580,
- [3166] = 656,
- [3167] = 3167,
- [3168] = 1564,
- [3169] = 1483,
- [3170] = 1484,
- [3171] = 1463,
- [3172] = 1487,
- [3173] = 1489,
- [3174] = 1491,
- [3175] = 1492,
- [3176] = 1464,
- [3177] = 1581,
- [3178] = 1612,
- [3179] = 1455,
- [3180] = 1595,
- [3181] = 3181,
- [3182] = 911,
- [3183] = 3183,
- [3184] = 1435,
- [3185] = 1601,
- [3186] = 658,
- [3187] = 1582,
- [3188] = 1583,
- [3189] = 1602,
- [3190] = 1509,
- [3191] = 1510,
- [3192] = 1512,
- [3193] = 654,
- [3194] = 1584,
- [3195] = 1540,
- [3196] = 1605,
- [3197] = 652,
- [3198] = 1441,
- [3199] = 1571,
- [3200] = 1604,
- [3201] = 1563,
- [3202] = 1606,
- [3203] = 1586,
- [3204] = 1587,
- [3205] = 1556,
- [3206] = 1607,
- [3207] = 1588,
- [3208] = 1457,
- [3209] = 913,
- [3210] = 1529,
- [3211] = 1531,
- [3212] = 1608,
- [3213] = 653,
- [3214] = 3214,
- [3215] = 3215,
- [3216] = 3215,
- [3217] = 3215,
- [3218] = 3218,
- [3219] = 3219,
- [3220] = 3220,
- [3221] = 1446,
- [3222] = 3219,
- [3223] = 1555,
- [3224] = 3220,
- [3225] = 1449,
- [3226] = 3226,
- [3227] = 1450,
- [3228] = 1440,
- [3229] = 3229,
- [3230] = 3230,
- [3231] = 3231,
- [3232] = 3232,
- [3233] = 3233,
- [3234] = 3219,
- [3235] = 3220,
- [3236] = 2988,
- [3237] = 3237,
- [3238] = 1451,
- [3239] = 1594,
- [3240] = 3240,
- [3241] = 1597,
- [3242] = 3215,
- [3243] = 1436,
- [3244] = 3231,
- [3245] = 3245,
- [3246] = 3240,
- [3247] = 3247,
- [3248] = 3248,
- [3249] = 1435,
- [3250] = 3250,
- [3251] = 1484,
- [3252] = 3252,
- [3253] = 3253,
- [3254] = 3254,
- [3255] = 3255,
- [3256] = 1539,
- [3257] = 1540,
- [3258] = 3258,
- [3259] = 3259,
- [3260] = 1487,
- [3261] = 3254,
- [3262] = 3262,
- [3263] = 3259,
- [3264] = 3254,
- [3265] = 1509,
- [3266] = 3259,
- [3267] = 3104,
- [3268] = 1510,
- [3269] = 1512,
- [3270] = 3270,
- [3271] = 654,
- [3272] = 1545,
- [3273] = 3273,
- [3274] = 3274,
- [3275] = 3275,
- [3276] = 1546,
- [3277] = 3277,
- [3278] = 3278,
- [3279] = 3279,
- [3280] = 1556,
- [3281] = 1565,
- [3282] = 1529,
- [3283] = 1183,
- [3284] = 1531,
- [3285] = 1566,
- [3286] = 3286,
- [3287] = 3287,
- [3288] = 3288,
- [3289] = 3289,
- [3290] = 3259,
- [3291] = 3291,
- [3292] = 1489,
- [3293] = 3293,
- [3294] = 3294,
- [3295] = 3295,
- [3296] = 3296,
- [3297] = 3297,
- [3298] = 3298,
- [3299] = 1491,
- [3300] = 1584,
- [3301] = 1595,
- [3302] = 3302,
- [3303] = 3259,
- [3304] = 3252,
- [3305] = 3305,
- [3306] = 3306,
- [3307] = 245,
- [3308] = 3104,
- [3309] = 3309,
- [3310] = 3273,
- [3311] = 231,
- [3312] = 3253,
- [3313] = 656,
- [3314] = 3314,
- [3315] = 3104,
- [3316] = 3316,
- [3317] = 1492,
- [3318] = 3259,
- [3319] = 3104,
- [3320] = 3229,
- [3321] = 3321,
- [3322] = 3322,
- [3323] = 3323,
- [3324] = 3324,
- [3325] = 1577,
- [3326] = 3326,
- [3327] = 1579,
- [3328] = 3254,
- [3329] = 1580,
- [3330] = 1581,
- [3331] = 1466,
- [3332] = 1440,
- [3333] = 3226,
- [3334] = 3306,
- [3335] = 1582,
- [3336] = 1583,
- [3337] = 1586,
- [3338] = 1587,
- [3339] = 3339,
- [3340] = 3340,
- [3341] = 3341,
- [3342] = 3342,
- [3343] = 653,
- [3344] = 1588,
- [3345] = 3345,
- [3346] = 1590,
- [3347] = 3347,
- [3348] = 3348,
- [3349] = 3252,
- [3350] = 3294,
- [3351] = 3351,
- [3352] = 3352,
- [3353] = 3253,
- [3354] = 3354,
- [3355] = 3348,
- [3356] = 3352,
- [3357] = 3270,
- [3358] = 3358,
- [3359] = 1554,
- [3360] = 3352,
- [3361] = 3361,
- [3362] = 3273,
- [3363] = 3363,
- [3364] = 1550,
- [3365] = 3365,
- [3366] = 3366,
- [3367] = 3298,
- [3368] = 3279,
- [3369] = 3352,
- [3370] = 3370,
- [3371] = 3371,
- [3372] = 3372,
- [3373] = 3270,
- [3374] = 3374,
- [3375] = 3375,
- [3376] = 3273,
- [3377] = 3279,
- [3378] = 3286,
- [3379] = 3287,
- [3380] = 3289,
- [3381] = 3381,
- [3382] = 3382,
- [3383] = 3383,
- [3384] = 3384,
- [3385] = 658,
- [3386] = 3286,
- [3387] = 3387,
- [3388] = 3388,
- [3389] = 3389,
- [3390] = 3390,
- [3391] = 3391,
- [3392] = 3392,
- [3393] = 3393,
- [3394] = 1602,
- [3395] = 3259,
- [3396] = 3396,
- [3397] = 3104,
- [3398] = 3398,
- [3399] = 1605,
- [3400] = 3294,
- [3401] = 3398,
- [3402] = 3402,
- [3403] = 3322,
- [3404] = 1607,
- [3405] = 1608,
- [3406] = 3286,
- [3407] = 3407,
- [3408] = 3252,
- [3409] = 3253,
- [3410] = 3254,
- [3411] = 3254,
- [3412] = 3412,
- [3413] = 3413,
- [3414] = 3414,
- [3415] = 3233,
- [3416] = 1609,
- [3417] = 1610,
- [3418] = 3287,
- [3419] = 1457,
- [3420] = 3420,
- [3421] = 1458,
- [3422] = 3363,
- [3423] = 3423,
- [3424] = 3287,
- [3425] = 1563,
- [3426] = 1564,
- [3427] = 1463,
- [3428] = 1464,
- [3429] = 1465,
- [3430] = 3270,
- [3431] = 1598,
- [3432] = 3289,
- [3433] = 3348,
- [3434] = 652,
- [3435] = 3289,
- [3436] = 3384,
- [3437] = 3104,
- [3438] = 3438,
- [3439] = 3414,
- [3440] = 1483,
- [3441] = 3441,
- [3442] = 3442,
- [3443] = 3443,
- [3444] = 3104,
- [3445] = 3259,
- [3446] = 3446,
- [3447] = 3447,
- [3448] = 3279,
- [3449] = 3449,
- [3450] = 3450,
- [3451] = 3451,
- [3452] = 3449,
- [3453] = 3453,
- [3454] = 3226,
- [3455] = 3455,
- [3456] = 3456,
- [3457] = 3457,
- [3458] = 3450,
- [3459] = 3457,
- [3460] = 3450,
- [3461] = 3457,
- [3462] = 3462,
- [3463] = 3457,
- [3464] = 228,
- [3465] = 236,
- [3466] = 3457,
- [3467] = 3450,
- [3468] = 3450,
- [3469] = 3469,
- [3470] = 1436,
- [3471] = 1449,
- [3472] = 1450,
- [3473] = 3473,
- [3474] = 3474,
- [3475] = 3475,
- [3476] = 913,
- [3477] = 3450,
- [3478] = 3450,
- [3479] = 911,
- [3480] = 912,
- [3481] = 3481,
- [3482] = 210,
- [3483] = 214,
- [3484] = 3484,
- [3485] = 3485,
- [3486] = 3450,
- [3487] = 3487,
- [3488] = 3451,
- [3489] = 3489,
- [3490] = 3490,
- [3491] = 3457,
- [3492] = 3492,
- [3493] = 3493,
- [3494] = 3494,
- [3495] = 3495,
- [3496] = 3496,
- [3497] = 3497,
- [3498] = 3498,
- [3499] = 3499,
- [3500] = 3500,
- [3501] = 3501,
- [3502] = 3502,
- [3503] = 3503,
- [3504] = 3504,
- [3505] = 3505,
- [3506] = 3506,
- [3507] = 3507,
- [3508] = 3508,
- [3509] = 3509,
- [3510] = 3510,
- [3511] = 3511,
- [3512] = 3512,
- [3513] = 3513,
- [3514] = 3181,
- [3515] = 3515,
- [3516] = 3516,
- [3517] = 3517,
- [3518] = 3518,
- [3519] = 3519,
- [3520] = 3520,
- [3521] = 3521,
- [3522] = 3351,
- [3523] = 3523,
- [3524] = 3524,
- [3525] = 3515,
- [3526] = 3526,
- [3527] = 3527,
- [3528] = 3507,
- [3529] = 3529,
- [3530] = 3530,
- [3531] = 3531,
- [3532] = 3532,
- [3533] = 3533,
- [3534] = 3534,
- [3535] = 3535,
- [3536] = 3230,
- [3537] = 3537,
- [3538] = 3538,
- [3539] = 3539,
- [3540] = 3540,
- [3541] = 3541,
- [3542] = 3542,
- [3543] = 3543,
- [3544] = 3544,
- [3545] = 3545,
- [3546] = 3546,
- [3547] = 1554,
- [3548] = 3548,
- [3549] = 3523,
- [3550] = 3550,
- [3551] = 3551,
- [3552] = 3552,
- [3553] = 3553,
- [3554] = 3554,
- [3555] = 3555,
- [3556] = 3556,
- [3557] = 3557,
- [3558] = 3558,
- [3559] = 3559,
- [3560] = 3560,
- [3561] = 3561,
- [3562] = 3562,
- [3563] = 3423,
- [3564] = 3564,
- [3565] = 3565,
- [3566] = 3566,
- [3567] = 228,
- [3568] = 3568,
- [3569] = 3569,
- [3570] = 3526,
- [3571] = 3571,
- [3572] = 3572,
- [3573] = 236,
- [3574] = 3574,
- [3575] = 3575,
- [3576] = 3576,
- [3577] = 3577,
- [3578] = 3578,
- [3579] = 3579,
- [3580] = 3580,
- [3581] = 3581,
- [3582] = 3568,
- [3583] = 3583,
- [3584] = 3584,
- [3585] = 1449,
- [3586] = 3586,
- [3587] = 3587,
- [3588] = 3588,
- [3589] = 3589,
- [3590] = 1450,
- [3591] = 3530,
- [3592] = 3592,
- [3593] = 3593,
- [3594] = 3594,
- [3595] = 3595,
- [3596] = 3596,
- [3597] = 3534,
- [3598] = 3278,
- [3599] = 3599,
- [3600] = 3507,
- [3601] = 3601,
- [3602] = 3602,
- [3603] = 3603,
- [3604] = 3604,
- [3605] = 3605,
- [3606] = 3606,
- [3607] = 3607,
- [3608] = 3608,
- [3609] = 1598,
- [3610] = 3588,
- [3611] = 3611,
- [3612] = 3612,
- [3613] = 3613,
- [3614] = 3614,
- [3615] = 3615,
- [3616] = 3616,
- [3617] = 3512,
- [3618] = 1581,
- [3619] = 1586,
- [3620] = 1588,
- [3621] = 3545,
- [3622] = 3529,
- [3623] = 1458,
- [3624] = 3624,
- [3625] = 1464,
- [3626] = 3626,
- [3627] = 3627,
- [3628] = 3628,
- [3629] = 1563,
- [3630] = 1564,
- [3631] = 3631,
- [3632] = 3632,
- [3633] = 3633,
- [3634] = 3634,
- [3635] = 3635,
- [3636] = 3636,
- [3637] = 3637,
- [3638] = 3438,
- [3639] = 3639,
- [3640] = 3531,
- [3641] = 3641,
- [3642] = 3642,
- [3643] = 3643,
- [3644] = 3644,
- [3645] = 3645,
- [3646] = 1487,
- [3647] = 3647,
- [3648] = 1436,
- [3649] = 3649,
- [3650] = 3650,
- [3651] = 1492,
- [3652] = 3652,
- [3653] = 3653,
- [3654] = 3505,
- [3655] = 3655,
- [3656] = 3656,
- [3657] = 3657,
- [3658] = 3658,
- [3659] = 3659,
- [3660] = 3650,
- [3661] = 3661,
- [3662] = 3662,
- [3663] = 3663,
- [3664] = 3664,
- [3665] = 3665,
- [3666] = 1531,
- [3667] = 3667,
- [3668] = 3668,
- [3669] = 3669,
- [3670] = 3670,
- [3671] = 3523,
- [3672] = 3672,
- [3673] = 3673,
- [3674] = 3295,
- [3675] = 3675,
- [3676] = 3676,
- [3677] = 3677,
- [3678] = 3678,
- [3679] = 3679,
- [3680] = 3680,
- [3681] = 3681,
- [3682] = 3682,
- [3683] = 3683,
- [3684] = 3684,
- [3685] = 3685,
- [3686] = 3686,
- [3687] = 3687,
- [3688] = 3553,
- [3689] = 3689,
- [3690] = 3568,
- [3691] = 3691,
- [3692] = 3692,
- [3693] = 3680,
- [3694] = 3530,
- [3695] = 1466,
- [3696] = 3696,
- [3697] = 213,
- [3698] = 3650,
- [3699] = 3663,
- [3700] = 3700,
- [3701] = 3701,
- [3702] = 3702,
- [3703] = 3703,
- [3704] = 3704,
- [3705] = 3705,
- [3706] = 3706,
- [3707] = 3707,
- [3708] = 3708,
- [3709] = 3653,
- [3710] = 3624,
- [3711] = 3711,
- [3712] = 3712,
- [3713] = 3713,
- [3714] = 3714,
- [3715] = 3715,
- [3716] = 3716,
- [3717] = 3717,
- [3718] = 3718,
- [3719] = 3719,
- [3720] = 3662,
- [3721] = 3721,
- [3722] = 3722,
- [3723] = 3723,
- [3724] = 1700,
- [3725] = 3725,
- [3726] = 1633,
- [3727] = 3727,
- [3728] = 3728,
- [3729] = 3729,
- [3730] = 3730,
- [3731] = 3731,
- [3732] = 3635,
- [3733] = 3733,
- [3734] = 3734,
- [3735] = 3735,
- [3736] = 3736,
- [3737] = 3737,
- [3738] = 3738,
- [3739] = 656,
- [3740] = 3740,
- [3741] = 3741,
- [3742] = 3229,
- [3743] = 3574,
- [3744] = 3744,
- [3745] = 3735,
- [3746] = 3746,
- [3747] = 3747,
- [3748] = 3748,
- [3749] = 3749,
- [3750] = 3750,
- [3751] = 3751,
- [3752] = 3524,
- [3753] = 3753,
- [3754] = 3754,
- [3755] = 3755,
- [3756] = 3737,
- [3757] = 3757,
- [3758] = 3758,
- [3759] = 3500,
- [3760] = 3183,
- [3761] = 3761,
- [3762] = 3537,
- [3763] = 1725,
- [3764] = 1726,
- [3765] = 1729,
- [3766] = 3735,
- [3767] = 3767,
- [3768] = 1730,
- [3769] = 3233,
- [3770] = 3747,
- [3771] = 3753,
- [3772] = 3772,
- [3773] = 3773,
- [3774] = 3774,
- [3775] = 3758,
- [3776] = 3776,
- [3777] = 3607,
- [3778] = 1731,
- [3779] = 3779,
- [3780] = 1734,
- [3781] = 3781,
- [3782] = 1581,
- [3783] = 3783,
- [3784] = 1586,
- [3785] = 1588,
- [3786] = 3736,
- [3787] = 3787,
- [3788] = 3788,
- [3789] = 658,
- [3790] = 3678,
- [3791] = 3543,
- [3792] = 1638,
- [3793] = 1639,
- [3794] = 3794,
- [3795] = 3679,
- [3796] = 3796,
- [3797] = 3728,
- [3798] = 3798,
- [3799] = 3572,
- [3800] = 3800,
- [3801] = 3749,
- [3802] = 3753,
- [3803] = 3803,
- [3804] = 3736,
- [3805] = 3681,
- [3806] = 3796,
- [3807] = 3682,
- [3808] = 3731,
- [3809] = 3736,
- [3810] = 3787,
- [3811] = 3811,
- [3812] = 1458,
- [3813] = 1464,
- [3814] = 1201,
- [3815] = 1775,
- [3816] = 1781,
- [3817] = 3817,
- [3818] = 3818,
- [3819] = 1563,
- [3820] = 1564,
- [3821] = 3787,
- [3822] = 3822,
- [3823] = 3823,
- [3824] = 3788,
- [3825] = 3735,
- [3826] = 3826,
- [3827] = 3827,
- [3828] = 1487,
- [3829] = 1492,
- [3830] = 3753,
- [3831] = 3736,
- [3832] = 3822,
- [3833] = 3833,
- [3834] = 3772,
- [3835] = 3497,
- [3836] = 3823,
- [3837] = 1531,
- [3838] = 3838,
- [3839] = 3737,
- [3840] = 3840,
- [3841] = 3733,
- [3842] = 3842,
- [3843] = 3843,
- [3844] = 3844,
- [3845] = 3845,
- [3846] = 652,
- [3847] = 3593,
- [3848] = 3848,
- [3849] = 3787,
- [3850] = 3757,
- [3851] = 1769,
- [3852] = 3817,
- [3853] = 3853,
- [3854] = 3725,
- [3855] = 1771,
- [3856] = 653,
- [3857] = 654,
- [3858] = 3783,
- [3859] = 3859,
- [3860] = 3848,
- [3861] = 3552,
- [3862] = 3862,
- [3863] = 3848,
- [3864] = 3520,
- [3865] = 3865,
- [3866] = 3866,
- [3867] = 3735,
- [3868] = 3779,
- [3869] = 3869,
- [3870] = 3787,
- [3871] = 3642,
- [3872] = 3735,
- [3873] = 3596,
- [3874] = 3753,
- [3875] = 3601,
- [3876] = 3728,
- [3877] = 3877,
- [3878] = 3878,
- [3879] = 3737,
- [3880] = 3880,
- [3881] = 3818,
- [3882] = 3559,
- [3883] = 1677,
- [3884] = 3749,
- [3885] = 3495,
- [3886] = 3499,
- [3887] = 1678,
- [3888] = 3560,
- [3889] = 3737,
- [3890] = 3878,
- [3891] = 3737,
- [3892] = 3853,
- [3893] = 3541,
- [3894] = 3894,
- [3895] = 3895,
- [3896] = 3896,
- [3897] = 3897,
- [3898] = 3844,
- [3899] = 3869,
- [3900] = 3900,
- [3901] = 3641,
- [3902] = 3902,
- [3903] = 3903,
- [3904] = 3895,
- [3905] = 3905,
- [3906] = 3737,
- [3907] = 3736,
- [3908] = 3818,
- [3909] = 3787,
- [3910] = 3853,
- [3911] = 3753,
- [3912] = 3639,
- [3913] = 3913,
- [3914] = 3798,
- [3915] = 3915,
- [3916] = 3916,
- [3917] = 3917,
- [3918] = 3918,
- [3919] = 3919,
- [3920] = 856,
- [3921] = 857,
- [3922] = 858,
- [3923] = 3923,
- [3924] = 3924,
- [3925] = 3925,
- [3926] = 3926,
- [3927] = 3927,
- [3928] = 3928,
- [3929] = 3929,
- [3930] = 3930,
- [3931] = 3741,
- [3932] = 3932,
- [3933] = 3896,
- [3934] = 3934,
- [3935] = 3900,
- [3936] = 3729,
- [3937] = 863,
- [3938] = 3938,
- [3939] = 864,
- [3940] = 865,
- [3941] = 866,
- [3942] = 867,
- [3943] = 716,
- [3944] = 868,
- [3945] = 750,
- [3946] = 808,
- [3947] = 751,
- [3948] = 3948,
- [3949] = 3949,
- [3950] = 3950,
- [3951] = 3951,
- [3952] = 3952,
- [3953] = 3527,
- [3954] = 758,
- [3955] = 759,
- [3956] = 760,
- [3957] = 3957,
- [3958] = 3958,
- [3959] = 3959,
- [3960] = 3960,
- [3961] = 3961,
- [3962] = 3962,
- [3963] = 3963,
- [3964] = 3964,
- [3965] = 3965,
- [3966] = 3966,
- [3967] = 3967,
- [3968] = 3968,
- [3969] = 3969,
- [3970] = 3970,
- [3971] = 3971,
- [3972] = 3972,
- [3973] = 3973,
- [3974] = 3974,
- [3975] = 776,
- [3976] = 3976,
- [3977] = 777,
- [3978] = 778,
- [3979] = 3979,
- [3980] = 3980,
- [3981] = 3981,
- [3982] = 3982,
- [3983] = 3983,
- [3984] = 3984,
- [3985] = 3985,
- [3986] = 779,
- [3987] = 780,
- [3988] = 781,
- [3989] = 782,
- [3990] = 3990,
- [3991] = 3991,
- [3992] = 3992,
- [3993] = 3993,
- [3994] = 3994,
- [3995] = 3995,
- [3996] = 3838,
- [3997] = 3997,
- [3998] = 3998,
- [3999] = 788,
- [4000] = 4000,
- [4001] = 3952,
- [4002] = 789,
- [4003] = 790,
- [4004] = 792,
- [4005] = 718,
- [4006] = 736,
- [4007] = 717,
- [4008] = 795,
- [4009] = 4009,
- [4010] = 4010,
- [4011] = 4011,
- [4012] = 4012,
- [4013] = 4013,
- [4014] = 4009,
- [4015] = 801,
- [4016] = 4016,
- [4017] = 4017,
- [4018] = 4018,
- [4019] = 4019,
- [4020] = 4020,
- [4021] = 4021,
- [4022] = 4022,
- [4023] = 3980,
- [4024] = 3915,
- [4025] = 4025,
- [4026] = 4026,
- [4027] = 4027,
- [4028] = 4028,
- [4029] = 4029,
- [4030] = 4030,
- [4031] = 746,
- [4032] = 4032,
- [4033] = 4033,
- [4034] = 4034,
- [4035] = 4035,
- [4036] = 4036,
- [4037] = 4037,
- [4038] = 4038,
- [4039] = 4039,
- [4040] = 4040,
- [4041] = 4041,
- [4042] = 4042,
- [4043] = 4043,
- [4044] = 4044,
- [4045] = 4045,
- [4046] = 4046,
- [4047] = 4011,
- [4048] = 4048,
- [4049] = 810,
- [4050] = 748,
- [4051] = 735,
- [4052] = 811,
- [4053] = 4053,
- [4054] = 812,
- [4055] = 813,
- [4056] = 4025,
- [4057] = 4057,
- [4058] = 4058,
- [4059] = 814,
- [4060] = 724,
- [4061] = 3950,
- [4062] = 815,
- [4063] = 816,
- [4064] = 4064,
- [4065] = 817,
- [4066] = 818,
- [4067] = 4067,
- [4068] = 4068,
- [4069] = 4069,
- [4070] = 4070,
- [4071] = 820,
- [4072] = 821,
- [4073] = 824,
- [4074] = 723,
- [4075] = 715,
- [4076] = 719,
- [4077] = 828,
- [4078] = 4078,
- [4079] = 4067,
- [4080] = 4080,
- [4081] = 4081,
- [4082] = 4082,
- [4083] = 4083,
- [4084] = 4084,
- [4085] = 3957,
- [4086] = 4086,
- [4087] = 4087,
- [4088] = 3606,
- [4089] = 4089,
- [4090] = 4030,
- [4091] = 4091,
- [4092] = 4092,
- [4093] = 3976,
- [4094] = 4033,
- [4095] = 835,
- [4096] = 836,
- [4097] = 837,
- [4098] = 838,
- [4099] = 3990,
- [4100] = 3991,
- [4101] = 839,
- [4102] = 840,
- [4103] = 841,
- [4104] = 4104,
- [4105] = 844,
- [4106] = 845,
- [4107] = 728,
- [4108] = 4108,
- [4109] = 4109,
- [4110] = 4017,
- [4111] = 4020,
- [4112] = 4112,
- [4113] = 4113,
- [4114] = 4114,
- [4115] = 4115,
- [4116] = 4116,
- [4117] = 4117,
- [4118] = 4118,
- [4119] = 4119,
- [4120] = 848,
- [4121] = 849,
- [4122] = 850,
- [4123] = 851,
- [4124] = 853,
- [4125] = 3976,
- [4126] = 3990,
- [4127] = 4127,
- [4128] = 4128,
- [4129] = 4129,
- [4130] = 4130,
- [4131] = 4017,
- [4132] = 4132,
- [4133] = 4133,
- [4134] = 4134,
- [4135] = 4135,
- [4136] = 4136,
- [4137] = 4137,
- [4138] = 3990,
- [4139] = 4139,
- [4140] = 4140,
- [4141] = 4141,
- [4142] = 4142,
- [4143] = 4017,
- [4144] = 4144,
- [4145] = 4145,
- [4146] = 4146,
- [4147] = 4147,
- [4148] = 4148,
- [4149] = 4149,
- [4150] = 4150,
- [4151] = 4151,
- [4152] = 4152,
- [4153] = 4153,
- [4154] = 4154,
- [4155] = 4036,
- [4156] = 4156,
- [4157] = 4157,
- [4158] = 4158,
- [4159] = 4159,
- [4160] = 4160,
- [4161] = 4161,
- [4162] = 4162,
- [4163] = 4163,
- [4164] = 4164,
- [4165] = 4165,
- [4166] = 4166,
- [4167] = 4167,
- [4168] = 4168,
- [4169] = 4169,
- [4170] = 4170,
- [4171] = 4171,
- [4172] = 4172,
- [4173] = 4173,
- [4174] = 4174,
- [4175] = 4175,
- [4176] = 4176,
- [4177] = 4177,
- [4178] = 4178,
- [4179] = 4179,
- [4180] = 4180,
- [4181] = 4181,
- [4182] = 4182,
- [4183] = 4183,
- [4184] = 4184,
- [4185] = 4185,
- [4186] = 4186,
- [4187] = 4187,
- [4188] = 4188,
- [4189] = 4189,
- [4190] = 4190,
- [4191] = 4191,
- [4192] = 4012,
- [4193] = 4069,
- [4194] = 4194,
- [4195] = 4158,
- [4196] = 4159,
- [4197] = 4197,
- [4198] = 4198,
- [4199] = 4199,
- [4200] = 4200,
- [4201] = 4201,
- [4202] = 4178,
- [4203] = 4203,
- [4204] = 4204,
- [4205] = 4205,
- [4206] = 4109,
- [4207] = 4117,
- [4208] = 4208,
- [4209] = 4209,
- [4210] = 4210,
- [4211] = 4211,
- [4212] = 4212,
- [4213] = 4213,
- [4214] = 4214,
- [4215] = 4215,
- [4216] = 4216,
- [4217] = 4217,
- [4218] = 4218,
- [4219] = 4219,
- [4220] = 4220,
- [4221] = 4221,
- [4222] = 4177,
- [4223] = 4223,
- [4224] = 4078,
- [4225] = 3976,
- [4226] = 4226,
- [4227] = 4227,
- [4228] = 4228,
- [4229] = 4229,
- [4230] = 4230,
- [4231] = 4231,
- [4232] = 4232,
- [4233] = 4233,
- [4234] = 4068,
- [4235] = 4064,
- [4236] = 4236,
- [4237] = 4237,
- [4238] = 4238,
- [4239] = 4239,
- [4240] = 4240,
- [4241] = 4241,
- [4242] = 4242,
- [4243] = 4243,
- [4244] = 4244,
- [4245] = 4245,
- [4246] = 4246,
- [4247] = 4247,
- [4248] = 4248,
- [4249] = 4249,
- [4250] = 4250,
- [4251] = 4251,
- [4252] = 4170,
- [4253] = 4253,
- [4254] = 4254,
- [4255] = 3983,
- [4256] = 4174,
- [4257] = 4257,
- [4258] = 4180,
- [4259] = 1700,
- [4260] = 1633,
- [4261] = 4182,
- [4262] = 4262,
- [4263] = 4203,
- [4264] = 4264,
- [4265] = 4265,
- [4266] = 4046,
- [4267] = 4267,
- [4268] = 4268,
- [4269] = 4269,
- [4270] = 4270,
- [4271] = 4210,
- [4272] = 4272,
- [4273] = 4273,
- [4274] = 4274,
- [4275] = 1769,
- [4276] = 1771,
- [4277] = 4277,
- [4278] = 4278,
- [4279] = 1677,
- [4280] = 1678,
- [4281] = 4281,
- [4282] = 4282,
- [4283] = 4283,
- [4284] = 4284,
- [4285] = 4285,
- [4286] = 4286,
- [4287] = 4287,
- [4288] = 4288,
- [4289] = 4289,
- [4290] = 4290,
- [4291] = 4291,
- [4292] = 1725,
- [4293] = 1726,
- [4294] = 1729,
- [4295] = 1730,
- [4296] = 4296,
- [4297] = 1731,
- [4298] = 4298,
- [4299] = 1734,
- [4300] = 4300,
- [4301] = 4301,
- [4302] = 4053,
- [4303] = 4303,
- [4304] = 4304,
- [4305] = 4305,
- [4306] = 4306,
- [4307] = 4307,
- [4308] = 1775,
- [4309] = 1781,
- [4310] = 4310,
- [4311] = 4311,
- [4312] = 4312,
- [4313] = 4313,
- [4314] = 4314,
- [4315] = 4315,
- [4316] = 4316,
- [4317] = 4174,
- [4318] = 4318,
- [4319] = 1638,
- [4320] = 1639,
- [4321] = 4321,
- [4322] = 4322,
- [4323] = 4323,
- [4324] = 4324,
- [4325] = 4325,
- [4326] = 4326,
- [4327] = 4327,
- [4328] = 4328,
- [4329] = 4329,
- [4330] = 4330,
- [4331] = 4331,
- [4332] = 4332,
- [4333] = 4270,
- [4334] = 4334,
- [4335] = 4335,
- [4336] = 861,
- [4337] = 4175,
- [4338] = 4338,
- [4339] = 4339,
- [4340] = 4340,
- [4341] = 4341,
- [4342] = 859,
- [4343] = 860,
- [4344] = 3952,
- [4345] = 4345,
- [4346] = 247,
- [4347] = 4017,
- [4348] = 4013,
- [4349] = 222,
- [4350] = 4350,
- [4351] = 3915,
- [4352] = 4025,
- [4353] = 4089,
- [4354] = 4354,
- [4355] = 4046,
- [4356] = 4356,
- [4357] = 4357,
- [4358] = 4358,
- [4359] = 4359,
- [4360] = 4360,
- [4361] = 4361,
- [4362] = 4362,
- [4363] = 4363,
- [4364] = 4364,
- [4365] = 4365,
- [4366] = 3990,
- [4367] = 4367,
- [4368] = 4368,
- [4369] = 819,
- [4370] = 825,
- [4371] = 4371,
- [4372] = 4372,
- [4373] = 4373,
- [4374] = 4374,
- [4375] = 4180,
- [4376] = 4170,
- [4377] = 4182,
- [4378] = 3991,
- [4379] = 3730,
- [4380] = 4380,
- [4381] = 766,
- [4382] = 4382,
- [4383] = 769,
- [4384] = 4384,
- [4385] = 4385,
- [4386] = 1611,
- [4387] = 1456,
- [4388] = 4388,
- [4389] = 4389,
- [4390] = 4390,
- [4391] = 4391,
- [4392] = 4392,
- [4393] = 4058,
- [4394] = 3957,
- [4395] = 4395,
- [4396] = 4396,
- [4397] = 4397,
- [4398] = 4203,
- [4399] = 4399,
- [4400] = 4400,
- [4401] = 4401,
- [4402] = 3656,
- [4403] = 3669,
- [4404] = 793,
- [4405] = 794,
- [4406] = 4406,
- [4407] = 4407,
- [4408] = 4020,
- [4409] = 4409,
- [4410] = 4219,
- [4411] = 4411,
- [4412] = 4412,
- [4413] = 4413,
- [4414] = 4414,
- [4415] = 4415,
- [4416] = 4416,
- [4417] = 4417,
- [4418] = 4418,
- [4419] = 3995,
- [4420] = 4420,
- [4421] = 4421,
- [4422] = 3748,
- [4423] = 4423,
- [4424] = 4424,
- [4425] = 4425,
- [4426] = 4421,
- [4427] = 4427,
- [4428] = 210,
- [4429] = 214,
- [4430] = 4430,
- [4431] = 4431,
- [4432] = 4432,
- [4433] = 4433,
- [4434] = 4434,
- [4435] = 4435,
- [4436] = 4436,
- [4437] = 4437,
- [4438] = 4421,
- [4439] = 4439,
- [4440] = 4427,
- [4441] = 4441,
- [4442] = 4442,
- [4443] = 4421,
- [4444] = 4444,
- [4445] = 4445,
- [4446] = 4432,
- [4447] = 4447,
- [4448] = 4448,
- [4449] = 4449,
- [4450] = 4450,
- [4451] = 4427,
- [4452] = 4433,
- [4453] = 4453,
- [4454] = 4421,
- [4455] = 4455,
- [4456] = 4456,
- [4457] = 4430,
- [4458] = 4458,
- [4459] = 4431,
- [4460] = 4423,
- [4461] = 4461,
- [4462] = 4462,
- [4463] = 4430,
- [4464] = 4464,
- [4465] = 4431,
- [4466] = 4466,
- [4467] = 4467,
- [4468] = 4468,
- [4469] = 4469,
- [4470] = 4436,
- [4471] = 4471,
- [4472] = 4424,
- [4473] = 4473,
- [4474] = 4474,
- [4475] = 4475,
- [4476] = 4434,
- [4477] = 4444,
- [4478] = 4450,
- [4479] = 4423,
- [4480] = 4480,
- [4481] = 4481,
- [4482] = 4434,
- [4483] = 4455,
- [4484] = 4423,
- [4485] = 4434,
- [4486] = 4430,
- [4487] = 4487,
- [4488] = 4488,
- [4489] = 4423,
- [4490] = 4490,
- [4491] = 4424,
- [4492] = 4424,
- [4493] = 4493,
- [4494] = 4432,
- [4495] = 4450,
- [4496] = 4434,
- [4497] = 4455,
- [4498] = 4498,
- [4499] = 4458,
- [4500] = 4500,
- [4501] = 4501,
- [4502] = 4502,
- [4503] = 4431,
- [4504] = 4421,
- [4505] = 4427,
- [4506] = 4442,
- [4507] = 4431,
- [4508] = 4430,
- [4509] = 4431,
- [4510] = 4510,
- [4511] = 4511,
- [4512] = 4427,
- [4513] = 3803,
- [4514] = 4432,
- [4515] = 4515,
- [4516] = 4435,
- [4517] = 4450,
- [4518] = 4430,
- [4519] = 4424,
- [4520] = 4520,
- [4521] = 4500,
- [4522] = 4522,
- [4523] = 4523,
- [4524] = 4450,
- [4525] = 4455,
- [4526] = 4526,
- [4527] = 4461,
- [4528] = 4528,
- [4529] = 4423,
- [4530] = 4424,
- [4531] = 4420,
- [4532] = 4532,
- [4533] = 4501,
- [4534] = 4432,
- [4535] = 4535,
- [4536] = 4434,
- [4537] = 4537,
- [4538] = 4421,
- [4539] = 4427,
- [4540] = 4540,
- [4541] = 4541,
- [4542] = 4444,
- [4543] = 4450,
- [4544] = 4468,
- [4545] = 4444,
- [4546] = 4546,
- [4547] = 4430,
- [4548] = 4444,
- [4549] = 4549,
- [4550] = 4467,
- [4551] = 4551,
- [4552] = 4431,
- [4553] = 4553,
- [4554] = 4423,
- [4555] = 4424,
- [4556] = 4444,
- [4557] = 4455,
- [4558] = 4427,
- [4559] = 4559,
- [4560] = 4560,
- [4561] = 4444,
- [4562] = 4562,
- [4563] = 4434,
- [4564] = 4564,
- [4565] = 4565,
- [4566] = 4566,
- [4567] = 4567,
- [4568] = 4568,
- [4569] = 4569,
- [4570] = 4570,
- [4571] = 4571,
- [4572] = 4572,
- [4573] = 4573,
- [4574] = 4574,
- [4575] = 4575,
- [4576] = 4576,
- [4577] = 4577,
- [4578] = 4578,
- [4579] = 4579,
- [4580] = 4580,
- [4581] = 4569,
- [4582] = 4582,
- [4583] = 4583,
- [4584] = 4584,
- [4585] = 4585,
- [4586] = 4586,
- [4587] = 4587,
- [4588] = 4588,
- [4589] = 4589,
- [4590] = 3968,
- [4591] = 4591,
- [4592] = 4592,
- [4593] = 4593,
- [4594] = 4594,
- [4595] = 4571,
- [4596] = 4596,
- [4597] = 4597,
- [4598] = 4598,
- [4599] = 4599,
- [4600] = 4600,
- [4601] = 4601,
- [4602] = 4602,
- [4603] = 4603,
- [4604] = 4604,
- [4605] = 4605,
- [4606] = 4606,
- [4607] = 4607,
- [4608] = 4608,
- [4609] = 4609,
- [4610] = 4572,
- [4611] = 4583,
- [4612] = 4612,
- [4613] = 4613,
- [4614] = 4614,
- [4615] = 4615,
- [4616] = 4616,
- [4617] = 4617,
- [4618] = 4606,
- [4619] = 4619,
- [4620] = 4567,
- [4621] = 4621,
- [4622] = 4594,
- [4623] = 4569,
- [4624] = 4624,
- [4625] = 4571,
- [4626] = 4626,
- [4627] = 4627,
- [4628] = 4582,
- [4629] = 4629,
- [4630] = 4630,
- [4631] = 4631,
- [4632] = 4632,
- [4633] = 4633,
- [4634] = 4634,
- [4635] = 4635,
- [4636] = 4565,
- [4637] = 4637,
- [4638] = 4638,
- [4639] = 4639,
- [4640] = 4640,
- [4641] = 4641,
- [4642] = 4606,
- [4643] = 4643,
- [4644] = 4572,
- [4645] = 4583,
- [4646] = 4646,
- [4647] = 4647,
- [4648] = 4648,
- [4649] = 4649,
- [4650] = 4619,
- [4651] = 4567,
- [4652] = 4572,
- [4653] = 4569,
- [4654] = 4654,
- [4655] = 4571,
- [4656] = 4583,
- [4657] = 4657,
- [4658] = 4658,
- [4659] = 4577,
- [4660] = 4578,
- [4661] = 4579,
- [4662] = 4580,
- [4663] = 4582,
- [4664] = 4664,
- [4665] = 4665,
- [4666] = 4666,
- [4667] = 4667,
- [4668] = 4668,
- [4669] = 3552,
- [4670] = 4670,
- [4671] = 4671,
- [4672] = 4672,
- [4673] = 4673,
- [4674] = 4674,
- [4675] = 4675,
- [4676] = 4572,
- [4677] = 4583,
- [4678] = 4678,
- [4679] = 4679,
- [4680] = 4680,
- [4681] = 4569,
- [4682] = 4682,
- [4683] = 4571,
- [4684] = 4684,
- [4685] = 4685,
- [4686] = 4686,
- [4687] = 4687,
- [4688] = 4688,
- [4689] = 4689,
- [4690] = 4690,
- [4691] = 4691,
- [4692] = 4692,
- [4693] = 4693,
- [4694] = 4572,
- [4695] = 4583,
- [4696] = 4696,
- [4697] = 4697,
- [4698] = 4698,
- [4699] = 4699,
- [4700] = 4700,
- [4701] = 4569,
- [4702] = 4702,
- [4703] = 4571,
- [4704] = 4704,
- [4705] = 4616,
- [4706] = 4706,
- [4707] = 4707,
- [4708] = 4708,
- [4709] = 4709,
- [4710] = 4710,
- [4711] = 4711,
- [4712] = 4690,
- [4713] = 4713,
- [4714] = 4714,
- [4715] = 4715,
- [4716] = 4716,
- [4717] = 4717,
- [4718] = 4718,
- [4719] = 4719,
- [4720] = 4720,
- [4721] = 4721,
- [4722] = 4722,
- [4723] = 4723,
- [4724] = 4724,
- [4725] = 4725,
- [4726] = 4726,
- [4727] = 4727,
- [4728] = 4728,
- [4729] = 4729,
- [4730] = 4730,
- [4731] = 4731,
- [4732] = 4732,
- [4733] = 4733,
- [4734] = 4734,
- [4735] = 4735,
- [4736] = 4736,
- [4737] = 4737,
- [4738] = 4738,
- [4739] = 4739,
- [4740] = 4740,
- [4741] = 4741,
- [4742] = 4742,
- [4743] = 4743,
- [4744] = 4744,
- [4745] = 4745,
- [4746] = 4746,
- [4747] = 4747,
- [4748] = 4748,
- [4749] = 4749,
- [4750] = 4750,
- [4751] = 734,
- [4752] = 4752,
- [4753] = 4606,
- [4754] = 4752,
- [4755] = 4755,
- [4756] = 4756,
- [4757] = 4757,
- [4758] = 4758,
- [4759] = 4759,
- [4760] = 4760,
- [4761] = 4412,
- [4762] = 4762,
- [4763] = 4763,
- [4764] = 4764,
- [4765] = 4765,
- [4766] = 4647,
- [4767] = 4767,
- [4768] = 4756,
- [4769] = 4769,
- [4770] = 4619,
- [4771] = 4771,
- [4772] = 4772,
- [4773] = 4773,
- [4774] = 4774,
- [4775] = 4775,
- [4776] = 4776,
- [4777] = 4777,
- [4778] = 4778,
- [4779] = 4730,
- [4780] = 4780,
- [4781] = 4567,
- [4782] = 4782,
- [4783] = 4783,
- [4784] = 4784,
- [4785] = 4785,
- [4786] = 4786,
- [4787] = 4787,
- [4788] = 4788,
- [4789] = 4789,
- [4790] = 4790,
- [4791] = 4567,
- [4792] = 4792,
- [4793] = 4793,
- [4794] = 4794,
- [4795] = 4795,
- [4796] = 4796,
- [4797] = 4797,
- [4798] = 4798,
- [4799] = 4577,
- [4800] = 4800,
- [4801] = 4801,
- [4802] = 4802,
- [4803] = 4578,
- [4804] = 4804,
- [4805] = 4805,
- [4806] = 4806,
- [4807] = 4807,
- [4808] = 4808,
- [4809] = 4809,
- [4810] = 4810,
- [4811] = 4811,
- [4812] = 4579,
- [4813] = 4813,
- [4814] = 4814,
- [4815] = 4815,
- [4816] = 4816,
- [4817] = 4817,
- [4818] = 4818,
- [4819] = 4819,
- [4820] = 4566,
- [4821] = 4569,
- [4822] = 4822,
- [4823] = 4571,
- [4824] = 4580,
- [4825] = 4825,
- [4826] = 4826,
- [4827] = 4827,
- [4828] = 4828,
- [4829] = 4679,
- [4830] = 4735,
- [4831] = 4831,
- [4832] = 4832,
- [4833] = 4833,
- [4834] = 4834,
- [4835] = 4603,
- [4836] = 4836,
- [4837] = 4837,
- [4838] = 4582,
- [4839] = 4682,
- [4840] = 4840,
- [4841] = 4841,
- [4842] = 4842,
- [4843] = 4843,
- [4844] = 4844,
- [4845] = 4845,
- [4846] = 4846,
- [4847] = 4847,
- [4848] = 4759,
- [4849] = 4849,
- [4850] = 4850,
- [4851] = 4851,
- [4852] = 4852,
- [4853] = 4853,
- [4854] = 4854,
- [4855] = 4855,
- [4856] = 4856,
- [4857] = 4857,
- [4858] = 4858,
- [4859] = 4859,
- [4860] = 4860,
- [4861] = 4834,
- [4862] = 4862,
- [4863] = 4863,
- [4864] = 4864,
- [4865] = 4865,
- [4866] = 4866,
- [4867] = 4867,
- [4868] = 4868,
- [4869] = 4869,
- [4870] = 4870,
- [4871] = 4871,
- [4872] = 4582,
- [4873] = 4873,
- [4874] = 4874,
- [4875] = 4875,
- [4876] = 4876,
- [4877] = 4877,
- [4878] = 4878,
- [4879] = 4879,
- [4880] = 4880,
- [4881] = 4881,
- [4882] = 4882,
- [4883] = 4883,
- [4884] = 4884,
- [4885] = 4885,
- [4886] = 4886,
- [4887] = 4887,
- [4888] = 4888,
- [4889] = 4619,
- [4890] = 4890,
- [4891] = 4891,
- [4892] = 4890,
- [4893] = 4893,
- [4894] = 4894,
- [4895] = 4893,
- [4896] = 4896,
- [4897] = 4897,
- [4898] = 4897,
- [4899] = 4899,
- [4900] = 4900,
- [4901] = 4901,
- [4902] = 4902,
- [4903] = 4606,
- [4904] = 4904,
- [4905] = 4905,
- [4906] = 4906,
- [4907] = 4907,
- [4908] = 4908,
- [4909] = 4909,
- [4910] = 4910,
- [4911] = 4911,
- [4912] = 4912,
- [4913] = 4913,
- [4914] = 4914,
- [4915] = 4915,
- [4916] = 4916,
- [4917] = 4917,
- [4918] = 4918,
- [4919] = 3497,
- [4920] = 4920,
- [4921] = 4921,
- [4922] = 4922,
- [4923] = 4923,
- [4924] = 4924,
- [4925] = 4925,
- [4926] = 4926,
- [4927] = 4927,
- [4928] = 4928,
- [4929] = 4929,
- [4930] = 4930,
- [4931] = 4931,
- [4932] = 4932,
- [4933] = 4933,
- [4934] = 4934,
- [4935] = 4935,
- [4936] = 4936,
- [4937] = 4937,
- [4938] = 4938,
- [4939] = 4939,
- [4940] = 1554,
- [4941] = 4941,
- [4942] = 4942,
- [4943] = 4943,
- [4944] = 4944,
- [4945] = 4250,
- [4946] = 4946,
- [4947] = 4947,
- [4948] = 4948,
- [4949] = 4949,
- [4950] = 4950,
- [4951] = 4720,
- [4952] = 4952,
- [4953] = 4953,
- [4954] = 4954,
- [4955] = 4955,
- [4956] = 4956,
- [4957] = 4957,
- [4958] = 4958,
- [4959] = 4959,
- [4960] = 4960,
- [4961] = 4961,
- [4962] = 4962,
- [4963] = 4963,
- [4964] = 4964,
- [4965] = 4965,
- [4966] = 4966,
- [4967] = 4967,
- [4968] = 4968,
- [4969] = 4969,
- [4970] = 4970,
- [4971] = 4971,
- [4972] = 4972,
- [4973] = 4973,
- [4974] = 4974,
- [4975] = 4975,
- [4976] = 4976,
- [4977] = 4977,
- [4978] = 4978,
- [4979] = 4979,
- [4980] = 4980,
- [4981] = 4981,
- [4982] = 4982,
- [4983] = 4983,
- [4984] = 4984,
- [4985] = 4985,
- [4986] = 4986,
- [4987] = 4987,
- [4988] = 4988,
- [4989] = 4989,
- [4990] = 4990,
- [4991] = 4991,
- [4992] = 4992,
- [4993] = 4993,
- [4994] = 4994,
- [4995] = 4995,
- [4996] = 4996,
- [4997] = 4997,
- [4998] = 4998,
- [4999] = 4999,
- [5000] = 5000,
- [5001] = 5001,
- [5002] = 5002,
- [5003] = 5003,
- [5004] = 5004,
- [5005] = 5005,
- [5006] = 5006,
- [5007] = 5007,
- [5008] = 5008,
- [5009] = 5009,
- [5010] = 5010,
- [5011] = 5011,
- [5012] = 5012,
- [5013] = 5013,
- [5014] = 5014,
- [5015] = 5015,
- [5016] = 5016,
- [5017] = 5017,
- [5018] = 5018,
- [5019] = 5019,
- [5020] = 5020,
- [5021] = 5021,
- [5022] = 5022,
- [5023] = 5023,
- [5024] = 5024,
- [5025] = 1598,
- [5026] = 5026,
- [5027] = 5027,
- [5028] = 5028,
- [5029] = 5029,
- [5030] = 4616,
- [5031] = 5031,
- [5032] = 4744,
- [5033] = 5033,
- [5034] = 5034,
- [5035] = 5035,
- [5036] = 5036,
- [5037] = 3635,
- [5038] = 5038,
- [5039] = 4954,
- [5040] = 5040,
- [5041] = 5041,
- [5042] = 5042,
- [5043] = 5043,
- [5044] = 5044,
- [5045] = 5045,
- [5046] = 5046,
- [5047] = 5047,
- [5048] = 5048,
- [5049] = 4619,
- [5050] = 5050,
- [5051] = 5051,
- [5052] = 5052,
- [5053] = 5053,
- [5054] = 5054,
- [5055] = 5055,
- [5056] = 5056,
- [5057] = 5057,
- [5058] = 5058,
- [5059] = 5059,
- [5060] = 4567,
- [5061] = 5061,
- [5062] = 5062,
- [5063] = 5063,
- [5064] = 5064,
- [5065] = 5065,
- [5066] = 5066,
- [5067] = 5067,
- [5068] = 5068,
- [5069] = 3560,
- [5070] = 4591,
- [5071] = 5071,
- [5072] = 5072,
- [5073] = 5073,
- [5074] = 5074,
- [5075] = 5075,
- [5076] = 4567,
- [5077] = 5077,
- [5078] = 5078,
- [5079] = 5079,
- [5080] = 4772,
- [5081] = 5081,
- [5082] = 1466,
- [5083] = 5083,
- [5084] = 5084,
- [5085] = 5085,
- [5086] = 4603,
- [5087] = 4606,
- [5088] = 5088,
- [5089] = 4682,
- [5090] = 5090,
- [5091] = 5091,
- [5092] = 4890,
- [5093] = 5093,
- [5094] = 1584,
- [5095] = 5095,
- [5096] = 5096,
- [5097] = 5097,
- [5098] = 1595,
- [5099] = 5099,
- [5100] = 5100,
- [5101] = 5101,
- [5102] = 5102,
- [5103] = 5103,
- [5104] = 5104,
- [5105] = 5105,
- [5106] = 5106,
- [5107] = 5107,
- [5108] = 5108,
- [5109] = 5109,
- [5110] = 4818,
- [5111] = 5111,
- [5112] = 5112,
- [5113] = 5113,
- [5114] = 5114,
- [5115] = 5115,
- [5116] = 5116,
- [5117] = 5117,
- [5118] = 5118,
- [5119] = 5119,
- [5120] = 5120,
- [5121] = 5121,
- [5122] = 5122,
- [5123] = 5123,
- [5124] = 4671,
- [5125] = 5125,
- [5126] = 4565,
- [5127] = 5127,
- [5128] = 5128,
- [5129] = 4690,
- [5130] = 4591,
- [5131] = 5131,
- [5132] = 5132,
- [5133] = 5133,
- [5134] = 734,
- [5135] = 5135,
- [5136] = 4721,
- [5137] = 5137,
- [5138] = 5138,
- [5139] = 4606,
- [5140] = 5140,
- [5141] = 5141,
- [5142] = 5142,
- [5143] = 5143,
- [5144] = 3588,
- [5145] = 5145,
- [5146] = 5146,
- [5147] = 5147,
- [5148] = 4906,
- [5149] = 5149,
- [5150] = 5150,
- [5151] = 4572,
- [5152] = 4907,
- [5153] = 4583,
- [5154] = 4963,
- [5155] = 4912,
- [5156] = 4671,
- [5157] = 4672,
- [5158] = 4621,
- [5159] = 5159,
- [5160] = 5160,
- [5161] = 5161,
- [5162] = 5162,
- [5163] = 5163,
- [5164] = 5164,
- [5165] = 4923,
- [5166] = 4616,
- [5167] = 5167,
- [5168] = 5168,
- [5169] = 5169,
- [5170] = 4593,
- [5171] = 4637,
- [5172] = 5172,
- [5173] = 5173,
- [5174] = 5174,
- [5175] = 5175,
- [5176] = 4925,
- [5177] = 5177,
- [5178] = 5178,
- [5179] = 5179,
- [5180] = 5180,
- [5181] = 5181,
- [5182] = 5182,
- [5183] = 5183,
- [5184] = 5184,
- [5185] = 5185,
- [5186] = 5186,
- [5187] = 5187,
- [5188] = 5188,
- [5189] = 5189,
- [5190] = 5190,
- [5191] = 5191,
- [5192] = 5192,
- [5193] = 5193,
- [5194] = 5194,
- [5195] = 5195,
- [5196] = 5196,
- [5197] = 5197,
- [5198] = 2563,
- [5199] = 5199,
- [5200] = 5200,
- [5201] = 5201,
- [5202] = 5202,
- [5203] = 5203,
- [5204] = 2571,
- [5205] = 5205,
- [5206] = 5206,
- [5207] = 5207,
- [5208] = 5208,
- [5209] = 5209,
- [5210] = 5210,
- [5211] = 1682,
- [5212] = 5186,
- [5213] = 5210,
- [5214] = 5214,
- [5215] = 5215,
- [5216] = 5216,
- [5217] = 5217,
- [5218] = 5218,
- [5219] = 5219,
- [5220] = 5220,
- [5221] = 5221,
- [5222] = 5222,
- [5223] = 5223,
- [5224] = 5224,
- [5225] = 5225,
- [5226] = 5226,
- [5227] = 5227,
- [5228] = 5228,
- [5229] = 5229,
- [5230] = 5230,
- [5231] = 5231,
- [5232] = 3730,
- [5233] = 5233,
- [5234] = 5234,
- [5235] = 5235,
- [5236] = 5236,
- [5237] = 5237,
- [5238] = 5238,
- [5239] = 5207,
- [5240] = 5240,
- [5241] = 5241,
- [5242] = 5242,
- [5243] = 5243,
- [5244] = 5215,
- [5245] = 5245,
- [5246] = 5246,
- [5247] = 5247,
- [5248] = 5248,
- [5249] = 5249,
- [5250] = 5250,
- [5251] = 5251,
- [5252] = 5252,
- [5253] = 5221,
- [5254] = 5254,
- [5255] = 5187,
- [5256] = 5230,
- [5257] = 5257,
- [5258] = 5231,
- [5259] = 5259,
- [5260] = 5260,
- [5261] = 5261,
- [5262] = 5262,
- [5263] = 5263,
- [5264] = 5264,
- [5265] = 5265,
- [5266] = 5237,
- [5267] = 2618,
- [5268] = 5241,
- [5269] = 2569,
- [5270] = 5243,
- [5271] = 5246,
- [5272] = 5272,
- [5273] = 5249,
- [5274] = 5274,
- [5275] = 5275,
- [5276] = 5276,
- [5277] = 5207,
- [5278] = 5207,
- [5279] = 5279,
- [5280] = 5280,
- [5281] = 5281,
- [5282] = 5282,
- [5283] = 5283,
- [5284] = 5284,
- [5285] = 5193,
- [5286] = 5195,
- [5287] = 5287,
- [5288] = 5196,
- [5289] = 5289,
- [5290] = 5254,
- [5291] = 5291,
- [5292] = 5205,
- [5293] = 5293,
- [5294] = 5294,
- [5295] = 5228,
- [5296] = 5199,
- [5297] = 5235,
- [5298] = 5298,
- [5299] = 5240,
- [5300] = 5300,
- [5301] = 5301,
- [5302] = 5302,
- [5303] = 5303,
- [5304] = 5304,
- [5305] = 5305,
- [5306] = 5306,
- [5307] = 5307,
- [5308] = 5308,
- [5309] = 5309,
- [5310] = 5310,
- [5311] = 5311,
- [5312] = 5312,
- [5313] = 5313,
- [5314] = 5314,
- [5315] = 5315,
- [5316] = 5194,
- [5317] = 5317,
- [5318] = 5318,
- [5319] = 5319,
- [5320] = 5320,
- [5321] = 2572,
- [5322] = 5308,
- [5323] = 2589,
- [5324] = 5228,
- [5325] = 5235,
- [5326] = 5326,
- [5327] = 5240,
- [5328] = 5317,
- [5329] = 2559,
- [5330] = 5330,
- [5331] = 1684,
- [5332] = 1685,
- [5333] = 5262,
- [5334] = 2565,
- [5335] = 5335,
- [5336] = 5336,
- [5337] = 5202,
- [5338] = 5318,
- [5339] = 5209,
- [5340] = 5340,
- [5341] = 5335,
- [5342] = 5342,
- [5343] = 5343,
- [5344] = 5252,
- [5345] = 2583,
- [5346] = 5346,
- [5347] = 5228,
- [5348] = 5319,
- [5349] = 5342,
- [5350] = 5350,
- [5351] = 2566,
- [5352] = 2605,
- [5353] = 5353,
- [5354] = 5354,
- [5355] = 5350,
- [5356] = 5215,
- [5357] = 5357,
- [5358] = 5358,
- [5359] = 5201,
- [5360] = 2584,
- [5361] = 5221,
- [5362] = 5320,
- [5363] = 5282,
- [5364] = 2615,
- [5365] = 5217,
- [5366] = 5193,
- [5367] = 5367,
- [5368] = 5276,
- [5369] = 5226,
- [5370] = 5370,
- [5371] = 5371,
- [5372] = 5372,
- [5373] = 5373,
- [5374] = 5374,
- [5375] = 5357,
- [5376] = 5370,
- [5377] = 5377,
- [5378] = 5378,
- [5379] = 5235,
- [5380] = 5380,
- [5381] = 5381,
- [5382] = 5382,
- [5383] = 2574,
- [5384] = 2588,
- [5385] = 5385,
- [5386] = 5228,
- [5387] = 5229,
- [5388] = 5388,
- [5389] = 5272,
- [5390] = 5190,
- [5391] = 5391,
- [5392] = 5195,
- [5393] = 5183,
- [5394] = 5236,
- [5395] = 5235,
- [5396] = 5280,
- [5397] = 5397,
- [5398] = 5398,
- [5399] = 5248,
- [5400] = 5400,
- [5401] = 5250,
- [5402] = 5388,
- [5403] = 5240,
- [5404] = 5342,
- [5405] = 3729,
- [5406] = 5406,
- [5407] = 5196,
- [5408] = 5408,
- [5409] = 5236,
- [5410] = 5235,
- [5411] = 5411,
- [5412] = 5412,
- [5413] = 5400,
- [5414] = 5414,
- [5415] = 5415,
- [5416] = 5199,
- [5417] = 5305,
- [5418] = 5418,
- [5419] = 5419,
- [5420] = 5420,
- [5421] = 5421,
- [5422] = 5422,
- [5423] = 5423,
- [5424] = 5217,
- [5425] = 5425,
- [5426] = 5312,
- [5427] = 5236,
- [5428] = 5428,
- [5429] = 5248,
- [5430] = 5430,
- [5431] = 5193,
- [5432] = 5432,
- [5433] = 5236,
- [5434] = 5206,
- [5435] = 5228,
- [5436] = 5259,
- [5437] = 5195,
- [5438] = 5248,
- [5439] = 5439,
- [5440] = 5250,
- [5441] = 5281,
- [5442] = 5304,
- [5443] = 5430,
- [5444] = 5250,
- [5445] = 5445,
- [5446] = 5446,
- [5447] = 5447,
- [5448] = 5284,
- [5449] = 5248,
- [5450] = 5450,
- [5451] = 5451,
- [5452] = 5452,
- [5453] = 5453,
- [5454] = 5343,
- [5455] = 5250,
- [5456] = 5456,
- [5457] = 5207,
- [5458] = 5240,
- [5459] = 5196,
- [5460] = 5283,
- [5461] = 5193,
- [5462] = 5263,
- [5463] = 5463,
- [5464] = 5207,
- [5465] = 5195,
- [5466] = 5186,
- [5467] = 5196,
- [5468] = 2596,
- [5469] = 5199,
- [5470] = 5187,
- [5471] = 5184,
- [5472] = 5472,
- [5473] = 5272,
- [5474] = 5199,
- [5475] = 5475,
- [5476] = 5400,
- [5477] = 2600,
- [5478] = 5408,
- [5479] = 5308,
- [5480] = 5207,
- [5481] = 5481,
- [5482] = 5482,
- [5483] = 5224,
- [5484] = 2586,
- [5485] = 5485,
- [5486] = 5486,
- [5487] = 3896,
- [5488] = 5326,
- [5489] = 5264,
- [5490] = 5445,
- [5491] = 5456,
- [5492] = 3900,
- [5493] = 5493,
- [5494] = 2587,
- [5495] = 5495,
- [5496] = 5496,
- [5497] = 5229,
- [5498] = 5411,
- [5499] = 5499,
- [5500] = 5289,
- [5501] = 5398,
- [5502] = 5421,
- [5503] = 5503,
- [5504] = 2597,
- [5505] = 5294,
- [5506] = 2606,
- [5507] = 5507,
- [5508] = 5298,
- [5509] = 5509,
- [5510] = 5510,
- [5511] = 5511,
- [5512] = 5512,
- [5513] = 5432,
- [5514] = 5215,
- [5515] = 5515,
- [5516] = 5221,
- [5517] = 5228,
- [5518] = 5276,
- [5519] = 5235,
- [5520] = 5475,
- [5521] = 5206,
- [5522] = 5240,
- [5523] = 5510,
- [5524] = 5234,
- [5525] = 5353,
- [5526] = 5350,
- [5527] = 5240,
- [5528] = 5354,
- [5529] = 5264,
- [5530] = 5230,
- [5531] = 5531,
- [5532] = 5532,
- [5533] = 2567,
- [5534] = 5534,
- [5535] = 5535,
- [5536] = 5536,
- [5537] = 5537,
- [5538] = 5538,
- [5539] = 5539,
- [5540] = 5540,
- [5541] = 5541,
- [5542] = 5542,
- [5543] = 5543,
- [5544] = 5544,
- [5545] = 5545,
- [5546] = 5546,
- [5547] = 5547,
- [5548] = 5548,
- [5549] = 5549,
- [5550] = 5550,
- [5551] = 5551,
- [5552] = 5547,
- [5553] = 5553,
- [5554] = 5554,
- [5555] = 5555,
- [5556] = 5556,
- [5557] = 5557,
- [5558] = 5558,
- [5559] = 5559,
- [5560] = 5560,
- [5561] = 5561,
- [5562] = 5562,
- [5563] = 5563,
- [5564] = 5564,
- [5565] = 5547,
- [5566] = 5566,
- [5567] = 5567,
- [5568] = 5568,
- [5569] = 5553,
- [5570] = 5570,
- [5571] = 5571,
- [5572] = 5572,
- [5573] = 5573,
- [5574] = 5574,
- [5575] = 5575,
- [5576] = 5535,
- [5577] = 5577,
- [5578] = 5550,
- [5579] = 5579,
- [5580] = 5580,
- [5581] = 5570,
- [5582] = 5582,
- [5583] = 5583,
- [5584] = 5584,
- [5585] = 5558,
- [5586] = 5586,
- [5587] = 5559,
- [5588] = 5566,
- [5589] = 5589,
- [5590] = 5590,
- [5591] = 5536,
- [5592] = 5592,
- [5593] = 5593,
- [5594] = 5594,
- [5595] = 5595,
- [5596] = 5562,
- [5597] = 5536,
- [5598] = 5556,
- [5599] = 5599,
- [5600] = 5600,
- [5601] = 5538,
- [5602] = 5557,
- [5603] = 5603,
- [5604] = 5604,
- [5605] = 5547,
- [5606] = 5548,
- [5607] = 5607,
- [5608] = 5582,
- [5609] = 5590,
- [5610] = 5541,
- [5611] = 5611,
- [5612] = 5550,
- [5613] = 5613,
- [5614] = 5600,
- [5615] = 5595,
- [5616] = 5616,
- [5617] = 5617,
- [5618] = 5613,
- [5619] = 5553,
- [5620] = 5620,
- [5621] = 5584,
- [5622] = 5562,
- [5623] = 5623,
- [5624] = 5595,
- [5625] = 5544,
- [5626] = 5626,
- [5627] = 5558,
- [5628] = 5599,
- [5629] = 5613,
- [5630] = 5607,
- [5631] = 5631,
- [5632] = 5626,
- [5633] = 5571,
- [5634] = 5634,
- [5635] = 5635,
- [5636] = 5636,
- [5637] = 5559,
- [5638] = 5550,
- [5639] = 5639,
- [5640] = 5640,
- [5641] = 5534,
- [5642] = 5642,
- [5643] = 5643,
- [5644] = 5604,
- [5645] = 5554,
- [5646] = 5646,
- [5647] = 5550,
- [5648] = 5575,
- [5649] = 5590,
- [5650] = 5650,
- [5651] = 5626,
- [5652] = 5556,
- [5653] = 5541,
- [5654] = 5650,
- [5655] = 5655,
- [5656] = 5656,
- [5657] = 5543,
- [5658] = 5655,
- [5659] = 5659,
- [5660] = 5556,
- [5661] = 5607,
- [5662] = 5643,
- [5663] = 5631,
- [5664] = 5664,
- [5665] = 5583,
- [5666] = 5554,
- [5667] = 5571,
- [5668] = 5668,
- [5669] = 5556,
- [5670] = 5670,
- [5671] = 5550,
- [5672] = 5636,
- [5673] = 5636,
- [5674] = 5674,
- [5675] = 5558,
- [5676] = 5676,
- [5677] = 5650,
- [5678] = 5678,
- [5679] = 5566,
- [5680] = 5536,
- [5681] = 5643,
- [5682] = 5562,
- [5683] = 5683,
- [5684] = 5684,
- [5685] = 5655,
- [5686] = 5558,
- [5687] = 5656,
- [5688] = 5635,
- [5689] = 5689,
- [5690] = 5600,
- [5691] = 5691,
- [5692] = 5554,
- [5693] = 5550,
- [5694] = 5659,
- [5695] = 5678,
- [5696] = 5683,
- [5697] = 5697,
- [5698] = 5559,
- [5699] = 5546,
- [5700] = 5559,
- [5701] = 5623,
- [5702] = 5595,
- [5703] = 5566,
- [5704] = 5613,
- [5705] = 5705,
- [5706] = 5604,
- [5707] = 5541,
- [5708] = 5643,
- [5709] = 5626,
- [5710] = 5710,
- [5711] = 5556,
- [5712] = 5712,
- [5713] = 5713,
- [5714] = 5697,
- [5715] = 5546,
- [5716] = 5716,
- [5717] = 5551,
- [5718] = 5718,
- [5719] = 5551,
- [5720] = 5643,
- [5721] = 5721,
- [5722] = 5643,
- [5723] = 5535,
- [5724] = 5570,
- [5725] = 5635,
- [5726] = 5726,
- [5727] = 5583,
- [5728] = 5636,
- [5729] = 5547,
- [5730] = 5590,
- [5731] = 5534,
- [5732] = 5543,
- [5733] = 5555,
- [5734] = 5573,
- [5735] = 5593,
- [5736] = 5736,
- [5737] = 5664,
- [5738] = 5566,
- [5739] = 5555,
- [5740] = 5740,
- [5741] = 5741,
- [5742] = 5547,
- [5743] = 5553,
- [5744] = 5595,
- [5745] = 5571,
- [5746] = 5746,
- [5747] = 5554,
- [5748] = 5534,
- [5749] = 5716,
- [5750] = 5697,
- [5751] = 5558,
- [5752] = 5559,
- [5753] = 5566,
- [5754] = 5572,
- [5755] = 5543,
- [5756] = 5656,
- [5757] = 5757,
- [5758] = 5607,
- [5759] = 5561,
- [5760] = 5760,
- [5761] = 5536,
- [5762] = 5561,
- [5763] = 5659,
- [5764] = 5547,
- [5765] = 5553,
- [5766] = 5710,
- [5767] = 5767,
- [5768] = 5558,
- [5769] = 5650,
- [5770] = 5655,
- [5771] = 5559,
- [5772] = 5566,
- [5773] = 5705,
- [5774] = 5590,
- [5775] = 5611,
- [5776] = 5776,
- [5777] = 5650,
- [5778] = 5778,
- [5779] = 5655,
- [5780] = 5678,
- [5781] = 5691,
- [5782] = 5620,
- [5783] = 5683,
- [5784] = 5568,
- [5785] = 5684,
- [5786] = 5575,
- [5787] = 5549,
- [5788] = 5554,
- [5789] = 5712,
- [5790] = 5536,
- [5791] = 5791,
- [5792] = 5697,
- [5793] = 5568,
- [5794] = 5554,
- [5795] = 5564,
- [5796] = 5604,
- [5797] = 5535,
- [5798] = 5546,
- [5799] = 5600,
- [5800] = 5551,
- [5801] = 5541,
- [5802] = 5577,
- [5803] = 5575,
- [5804] = 5564,
- [5805] = 5805,
- [5806] = 5607,
- [5807] = 5570,
- [5808] = 5650,
- [5809] = 5553,
- [5810] = 5568,
- [5811] = 5600,
- [5812] = 5757,
- [5813] = 5590,
- [5814] = 5655,
- [5815] = 5564,
- [5816] = 5736,
- [5817] = 5595,
- [5818] = 5613,
- [5819] = 5555,
- [5820] = 5573,
- [5821] = 5571,
- [5822] = 5710,
- [5823] = 5536,
- [5824] = 5593,
- [5825] = 5590,
- [5826] = 5547,
- [5827] = 5626,
- [5828] = 5553,
- [5829] = 5553,
- [5830] = 5830,
- [5831] = 5571,
- [5832] = 5832,
- [5833] = 5713,
- [5834] = 5558,
- [5835] = 5646,
- [5836] = 5559,
- [5837] = 5566,
- [5838] = 5583,
- [5839] = 5712,
- [5840] = 5626,
- [5841] = 5841,
- [5842] = 5842,
- [5843] = 5713,
- [5844] = 5757,
- [5845] = 5568,
- [5846] = 5536,
- [5847] = 5607,
- [5848] = 5848,
- [5849] = 5623,
- [5850] = 5850,
- [5851] = 5716,
- [5852] = 5575,
- [5853] = 5853,
- [5854] = 5571,
- [5855] = 5656,
- [5856] = 5537,
- [5857] = 5710,
- [5858] = 5659,
- [5859] = 5678,
- [5860] = 5712,
- [5861] = 5571,
- [5862] = 5623,
- [5863] = 5767,
- [5864] = 5713,
- [5865] = 5568,
- [5866] = 5683,
- [5867] = 5604,
- [5868] = 5716,
- [5869] = 5573,
- [5870] = 5656,
- [5871] = 5697,
- [5872] = 5571,
- [5873] = 5623,
- [5874] = 5561,
- [5875] = 5546,
- [5876] = 5535,
- [5877] = 5551,
- [5878] = 5570,
- [5879] = 5659,
- [5880] = 5575,
- [5881] = 5583,
- [5882] = 5555,
- [5883] = 5573,
- [5884] = 5616,
- [5885] = 5718,
- [5886] = 5886,
- [5887] = 5577,
- [5888] = 5650,
- [5889] = 5594,
- [5890] = 5577,
- [5891] = 5623,
- [5892] = 5595,
- [5893] = 5593,
- [5894] = 5740,
- [5895] = 5567,
- [5896] = 5848,
- [5897] = 5678,
- [5898] = 5636,
- [5899] = 5899,
- [5900] = 5635,
- [5901] = 5534,
- [5902] = 5547,
- [5903] = 5593,
- [5904] = 5553,
- [5905] = 5905,
- [5906] = 5541,
- [5907] = 5655,
- [5908] = 5558,
- [5909] = 5559,
- [5910] = 5910,
- [5911] = 5911,
- [5912] = 5566,
- [5913] = 5536,
- [5914] = 5561,
- [5915] = 5607,
- [5916] = 5626,
- [5917] = 5716,
- [5918] = 5710,
- [5919] = 5712,
- [5920] = 5623,
- [5921] = 5713,
- [5922] = 5683,
- [5923] = 5562,
- [5924] = 5543,
-};
-
-static TSCharacterRange extras_character_set_1[] = {
- {'\t', '\r'}, {' ', ' '}, {0xa0, 0xa0}, {0x1680, 0x1680}, {0x2000, 0x200b}, {0x2028, 0x2029}, {0x202f, 0x202f}, {0x205f, 0x2060},
- {0x3000, 0x3000}, {0xfeff, 0xfeff},
-};
-
-static TSCharacterRange sym_identifier_character_set_1[] = {
- {'$', '$'}, {'A', 'Z'}, {'\\', '\\'}, {'_', '_'}, {'a', 'z'}, {0x7f, 0x9f}, {0xa1, 0x167f}, {0x1681, 0x1fff},
- {0x200c, 0x2027}, {0x202a, 0x202e}, {0x2030, 0x205e}, {0x2061, 0x2fff}, {0x3001, 0xfefe}, {0xff00, 0x10ffff},
-};
-
-static TSCharacterRange sym_identifier_character_set_2[] = {
- {'$', '$'}, {'0', '9'}, {'A', 'Z'}, {'\\', '\\'}, {'_', '_'}, {'a', 'z'}, {0x7f, 0x9f}, {0xa1, 0x167f},
- {0x1681, 0x1fff}, {0x200c, 0x2027}, {0x202a, 0x202e}, {0x2030, 0x205e}, {0x2061, 0x2fff}, {0x3001, 0xfefe}, {0xff00, 0x10ffff},
-};
-
-static bool ts_lex(TSLexer *lexer, TSStateId state) {
- START_LEXER();
- eof = lexer->eof(lexer);
- switch (state) {
- case 0:
- if (eof) ADVANCE(152);
- ADVANCE_MAP(
- '!', 166,
- '"', 200,
- '#', 11,
- '$', 324,
- '%', 264,
- '&', 243,
- '\'', 201,
- '(', 167,
- ')', 168,
- '*', 155,
- '+', 256,
- ',', 163,
- '-', 260,
- '.', 196,
- '/', 309,
- '0', 314,
- ':', 170,
- ';', 169,
- '<', 269,
- '=', 159,
- '>', 192,
- '?', 330,
- '@', 327,
- '[', 171,
- '\\', 106,
- ']', 172,
- '^', 246,
- '`', 307,
- '{', 162,
- '|', 249,
- '}', 164,
- '~', 283,
- );
- if (('1' <= lookahead && lookahead <= '9')) ADVANCE(315);
- if (set_contains(extras_character_set_1, 10, lookahead)) SKIP(149);
- if (lookahead > '@') ADVANCE(325);
- END_STATE();
- case 1:
- if (lookahead == '\n') ADVANCE(27);
- if (lookahead == '&') ADVANCE(21);
- if (lookahead == '/') ADVANCE(179);
- if (lookahead == '<') ADVANCE(268);
- if (lookahead == '{') ADVANCE(161);
- if (set_contains(extras_character_set_1, 10, lookahead)) ADVANCE(189);
- if (lookahead != 0 &&
- lookahead != '>' &&
- lookahead != '}') ADVANCE(181);
- END_STATE();
- case 2:
- if (lookahead == '\n') SKIP(2);
- if (lookahead == '/') ADVANCE(174);
- if (lookahead == '<') ADVANCE(176);
- if (set_contains(extras_character_set_1, 10, lookahead)) ADVANCE(175);
- if (lookahead != 0) ADVANCE(173);
- END_STATE();
- case 3:
- if (lookahead == '\n') SKIP(41);
- if (lookahead == '/') ADVANCE(31);
- if (lookahead == '[') ADVANCE(90);
- if (lookahead == '\\') ADVANCE(148);
- if (set_contains(extras_character_set_1, 10, lookahead)) ADVANCE(310);
- if (lookahead != 0) ADVANCE(311);
- END_STATE();
- case 4:
- ADVANCE_MAP(
- '!', 166,
- '"', 200,
- '#', 89,
- '%', 264,
- '&', 243,
- '\'', 201,
- '(', 167,
- ')', 168,
- '*', 155,
- '+', 255,
- ',', 163,
- '-', 259,
- '.', 196,
- '/', 262,
- '0', 314,
- ':', 170,
- ';', 169,
- '<', 271,
- '=', 159,
- '>', 192,
- '?', 330,
- '@', 327,
- '[', 171,
- '\\', 108,
- ']', 172,
- '^', 246,
- '`', 307,
- '{', 161,
- '|', 248,
- '}', 164,
- '~', 283,
- );
- if (('1' <= lookahead && lookahead <= '9')) ADVANCE(315);
- if (set_contains(extras_character_set_1, 10, lookahead)) SKIP(4);
- if (lookahead > '#') ADVANCE(325);
- END_STATE();
- case 5:
- ADVANCE_MAP(
- '!', 166,
- '"', 200,
- '#', 89,
- '%', 264,
- '&', 243,
- '\'', 201,
- '(', 167,
- ')', 168,
- '*', 155,
- '+', 255,
- ',', 163,
- '-', 259,
- '.', 196,
- '/', 262,
- '0', 314,
- ':', 170,
- '<', 271,
- '=', 159,
- '>', 192,
- '?', 330,
- '@', 327,
- '[', 171,
- '\\', 108,
- '^', 246,
- '`', 307,
- '{', 162,
- '|', 248,
- '~', 283,
- );
- if (('1' <= lookahead && lookahead <= '9')) ADVANCE(315);
- if (set_contains(extras_character_set_1, 10, lookahead)) SKIP(5);
- if (lookahead > '#' &&
- (lookahead < '%' || '@' < lookahead) &&
- (lookahead < '[' || '^' < lookahead) &&
- (lookahead < '{' || '~' < lookahead)) ADVANCE(325);
- END_STATE();
- case 6:
- ADVANCE_MAP(
- '!', 166,
- '"', 200,
- '#', 89,
- '%', 264,
- '&', 243,
- '\'', 201,
- '(', 167,
- ')', 168,
- '*', 155,
- '+', 255,
- ',', 163,
- '-', 259,
- '.', 197,
- '/', 262,
- '0', 314,
- ':', 170,
- ';', 169,
- '<', 270,
- '=', 159,
- '>', 192,
- '?', 330,
- '@', 327,
- '[', 171,
- '\\', 108,
- ']', 172,
- '^', 246,
- '`', 307,
- '{', 162,
- '|', 249,
- '}', 164,
- );
- if (('1' <= lookahead && lookahead <= '9')) ADVANCE(315);
- if (set_contains(extras_character_set_1, 10, lookahead)) SKIP(6);
- if (lookahead > '#' &&
- (lookahead < '{' || '~' < lookahead)) ADVANCE(325);
- END_STATE();
- case 7:
- ADVANCE_MAP(
- '!', 166,
- '"', 200,
- '%', 264,
- '&', 243,
- '\'', 201,
- '(', 167,
- ')', 168,
- '*', 155,
- '+', 255,
- ',', 163,
- '-', 259,
- '.', 195,
- '/', 262,
- ':', 170,
- ';', 169,
- '<', 270,
- '=', 159,
- '>', 192,
- '?', 330,
- '@', 327,
- '[', 171,
- '\\', 108,
- ']', 172,
- '^', 246,
- '`', 307,
- '{', 161,
- '|', 248,
- '}', 164,
- );
- if (set_contains(extras_character_set_1, 10, lookahead)) SKIP(7);
- if (lookahead > '#' &&
- (lookahead < '%' || '@' < lookahead) &&
- (lookahead < '{' || '~' < lookahead)) ADVANCE(325);
- END_STATE();
- case 8:
- ADVANCE_MAP(
- '!', 166,
- '%', 263,
- '&', 244,
- '(', 167,
- ')', 168,
- '*', 156,
- '+', 254,
- ',', 163,
- '-', 258,
- '.', 195,
- '/', 261,
- ':', 170,
- ';', 169,
- '<', 272,
- '=', 158,
- '>', 193,
- '?', 331,
- '[', 171,
- '\\', 108,
- ']', 172,
- '^', 245,
- '`', 307,
- '{', 161,
- '|', 251,
- '}', 164,
- );
- if (set_contains(extras_character_set_1, 10, lookahead)) SKIP(8);
- if (lookahead > '#' &&
- (lookahead < '%' || '@' < lookahead) &&
- (lookahead < '{' || '~' < lookahead)) ADVANCE(325);
- END_STATE();
- case 9:
- ADVANCE_MAP(
- '!', 166,
- '%', 263,
- '&', 244,
- '(', 167,
- ')', 168,
- '*', 156,
- '+', 254,
- ',', 163,
- '-', 258,
- '.', 195,
- '/', 261,
- ':', 170,
- ';', 169,
- '<', 272,
- '=', 84,
- '>', 193,
- '?', 38,
- '[', 171,
- '\\', 108,
- ']', 172,
- '^', 245,
- '`', 307,
- '{', 161,
- '|', 250,
- '}', 164,
- );
- if (('a' <= lookahead && lookahead <= 'z')) ADVANCE(312);
- if (set_contains(extras_character_set_1, 10, lookahead)) SKIP(10);
- if (lookahead > '#' &&
- (lookahead < '%' || '@' < lookahead) &&
- (lookahead < '`' || '~' < lookahead)) ADVANCE(325);
- END_STATE();
- case 10:
- ADVANCE_MAP(
- '!', 166,
- '%', 263,
- '&', 244,
- '(', 167,
- ')', 168,
- '*', 156,
- '+', 254,
- ',', 163,
- '-', 258,
- '.', 195,
- '/', 261,
- ':', 170,
- ';', 169,
- '<', 272,
- '=', 84,
- '>', 193,
- '?', 38,
- '[', 171,
- '\\', 108,
- ']', 172,
- '^', 245,
- '`', 307,
- '{', 161,
- '|', 250,
- '}', 164,
- );
- if (set_contains(extras_character_set_1, 10, lookahead)) SKIP(10);
- if (lookahead > '#' &&
- (lookahead < '%' || '@' < lookahead) &&
- (lookahead < '{' || '~' < lookahead)) ADVANCE(325);
- END_STATE();
- case 11:
- if (lookahead == '!') ADVANCE(153);
- if (lookahead == '\\') ADVANCE(107);
- if (set_contains(sym_identifier_character_set_1, 14, lookahead)) ADVANCE(326);
- END_STATE();
- case 12:
- ADVANCE_MAP(
- '!', 165,
- '"', 200,
- '#', 89,
- '&', 242,
- '\'', 201,
- '(', 167,
- ')', 168,
- '*', 154,
- '+', 254,
- ',', 163,
- '-', 258,
- '.', 37,
- '/', 261,
- '0', 314,
- '<', 274,
- '?', 328,
- '@', 327,
- '[', 171,
- '\\', 108,
- ']', 172,
- '`', 307,
- '{', 162,
- '|', 247,
- '~', 283,
- );
- if (('1' <= lookahead && lookahead <= '9')) ADVANCE(315);
- if (set_contains(extras_character_set_1, 10, lookahead)) SKIP(12);
- if (lookahead > '#' &&
- (lookahead < '%' || '@' < lookahead) &&
- (lookahead < '[' || '^' < lookahead) &&
- (lookahead < '{' || '~' < lookahead)) ADVANCE(325);
- END_STATE();
- case 13:
- ADVANCE_MAP(
- '!', 165,
- '"', 200,
- '#', 89,
- '&', 242,
- '\'', 201,
- '(', 167,
- ')', 168,
- '*', 154,
- '+', 253,
- ',', 163,
- '-', 257,
- '.', 196,
- '/', 31,
- '0', 314,
- ':', 170,
- ';', 169,
- '<', 267,
- '=', 160,
- '>', 191,
- '?', 328,
- '@', 327,
- '[', 171,
- '\\', 108,
- ']', 172,
- '`', 307,
- '{', 162,
- '|', 252,
- '}', 164,
- );
- if (('1' <= lookahead && lookahead <= '9')) ADVANCE(315);
- if (set_contains(extras_character_set_1, 10, lookahead)) SKIP(13);
- if (lookahead > '#' &&
- (lookahead < '%' || '@' < lookahead) &&
- (lookahead < '[' || '^' < lookahead) &&
- (lookahead < '{' || '~' < lookahead)) ADVANCE(325);
- END_STATE();
- case 14:
- ADVANCE_MAP(
- '!', 165,
- '"', 200,
- '#', 89,
- '&', 242,
- '\'', 201,
- '(', 167,
- ')', 168,
- '*', 154,
- '+', 253,
- ',', 163,
- '-', 257,
- '.', 196,
- '/', 31,
- '0', 314,
- ':', 170,
- ';', 169,
- '<', 267,
- '=', 160,
- '>', 191,
- '?', 328,
- '@', 327,
- '[', 171,
- '\\', 108,
- ']', 172,
- '{', 161,
- '|', 252,
- '}', 164,
- );
- if (('1' <= lookahead && lookahead <= '9')) ADVANCE(315);
- if (set_contains(extras_character_set_1, 10, lookahead)) SKIP(14);
- if (lookahead > '#' &&
- (lookahead < '%' || '@' < lookahead) &&
- (lookahead < '[' || '^' < lookahead) &&
- lookahead != '`' &&
- (lookahead < '{' || '~' < lookahead)) ADVANCE(325);
- END_STATE();
- case 15:
- ADVANCE_MAP(
- '!', 165,
- '"', 200,
- '#', 89,
- '&', 242,
- '\'', 201,
- '(', 167,
- ')', 168,
- '+', 254,
- ',', 163,
- '-', 258,
- '.', 196,
- '/', 261,
- '0', 314,
- ':', 170,
- ';', 169,
- '<', 274,
- '=', 160,
- '>', 191,
- '?', 329,
- '@', 327,
- '[', 171,
- '\\', 108,
- ']', 172,
- '`', 307,
- '{', 161,
- '|', 252,
- '}', 164,
- '~', 283,
- );
- if (('1' <= lookahead && lookahead <= '9')) ADVANCE(315);
- if (set_contains(extras_character_set_1, 10, lookahead)) SKIP(15);
- if (lookahead > '#' &&
- (lookahead < '%' || '@' < lookahead) &&
- (lookahead < '[' || '^' < lookahead)) ADVANCE(325);
- END_STATE();
- case 16:
- ADVANCE_MAP(
- '"', 200,
- '&', 242,
- '\'', 201,
- '(', 167,
- ')', 168,
- '*', 154,
- ',', 163,
- '.', 195,
- '/', 31,
- ':', 170,
- ';', 169,
- '<', 267,
- '=', 160,
- '>', 191,
- '?', 329,
- '[', 171,
- '\\', 108,
- ']', 172,
- '`', 307,
- '{', 161,
- '|', 252,
- '}', 164,
- );
- if (set_contains(extras_character_set_1, 10, lookahead)) SKIP(16);
- if (lookahead > '#' &&
- (lookahead < '%' || '@' < lookahead) &&
- (lookahead < '[' || '^' < lookahead) &&
- (lookahead < '{' || '~' < lookahead)) ADVANCE(325);
- END_STATE();
- case 17:
- ADVANCE_MAP(
- '"', 200,
- '&', 242,
- '\'', 201,
- '(', 167,
- '*', 154,
- '+', 253,
- '-', 257,
- '.', 124,
- '/', 32,
- '0', 314,
- '<', 267,
- '>', 191,
- '?', 328,
- '[', 171,
- '\\', 108,
- '`', 307,
- '{', 162,
- '|', 247,
- );
- if (('1' <= lookahead && lookahead <= '9')) ADVANCE(315);
- if (set_contains(extras_character_set_1, 10, lookahead)) SKIP(17);
- if (lookahead == '$' ||
- ('A' <= lookahead && lookahead <= 'Z') ||
- ('_' <= lookahead && lookahead <= 'z')) ADVANCE(323);
- if (lookahead > '~') ADVANCE(325);
- END_STATE();
- case 18:
- if (lookahead == '"') ADVANCE(200);
- if (lookahead == '&') ADVANCE(22);
- if (lookahead == '/') ADVANCE(203);
- if (set_contains(extras_character_set_1, 10, lookahead)) ADVANCE(202);
- if (lookahead != 0) ADVANCE(204);
- END_STATE();
- case 19:
- if (lookahead == '"') ADVANCE(200);
- if (lookahead == '/') ADVANCE(31);
- if (set_contains(extras_character_set_1, 10, lookahead)) SKIP(19);
- END_STATE();
- case 20:
- if (lookahead == '"') ADVANCE(200);
- if (lookahead == '/') ADVANCE(286);
- if (lookahead == '\\') ADVANCE(109);
- if (lookahead == '\n' ||
- lookahead == '\r') SKIP(19);
- if (set_contains(extras_character_set_1, 10, lookahead)) ADVANCE(289);
- if (lookahead != 0) ADVANCE(291);
- END_STATE();
- case 21:
- if (lookahead == '#') ADVANCE(120);
- if (('A' <= lookahead && lookahead <= 'Z') ||
- ('a' <= lookahead && lookahead <= 'z')) ADVANCE(83);
- END_STATE();
- case 22:
- if (lookahead == '#') ADVANCE(120);
- if (('A' <= lookahead && lookahead <= 'Z') ||
- ('a' <= lookahead && lookahead <= 'z')) ADVANCE(83);
- if (lookahead != 0) ADVANCE(204);
- END_STATE();
- case 23:
- if (lookahead == '#') ADVANCE(120);
- if (('A' <= lookahead && lookahead <= 'Z') ||
- ('a' <= lookahead && lookahead <= 'z')) ADVANCE(83);
- if (lookahead != 0) ADVANCE(210);
- END_STATE();
- case 24:
- if (lookahead == '$') ADVANCE(110);
- if (lookahead == '/') ADVANCE(31);
- if (lookahead == '\\') ADVANCE(109);
- if (lookahead == '`') ADVANCE(307);
- if (set_contains(extras_character_set_1, 10, lookahead)) SKIP(25);
- END_STATE();
- case 25:
- if (lookahead == '$') ADVANCE(110);
- if (lookahead == '/') ADVANCE(31);
- if (lookahead == '`') ADVANCE(307);
- if (set_contains(extras_character_set_1, 10, lookahead)) SKIP(25);
- END_STATE();
- case 26:
- ADVANCE_MAP(
- '&', 242,
- '(', 167,
- '+', 87,
- ',', 163,
- '-', 88,
- '.', 195,
- '/', 32,
- ':', 170,
- '<', 267,
- '=', 157,
- '>', 191,
- '?', 44,
- '[', 171,
- '\\', 108,
- '`', 307,
- '{', 161,
- '|', 247,
- );
- if (set_contains(extras_character_set_1, 10, lookahead)) SKIP(26);
- if (lookahead == '$' ||
- ('A' <= lookahead && lookahead <= 'Z') ||
- ('_' <= lookahead && lookahead <= 'z')) ADVANCE(323);
- if (lookahead > '~') ADVANCE(325);
- END_STATE();
- case 27:
- if (lookahead == '&') ADVANCE(21);
- if (lookahead == '/') ADVANCE(184);
- if (lookahead == '<') ADVANCE(268);
- if (lookahead == '{') ADVANCE(161);
- if (set_contains(extras_character_set_1, 10, lookahead)) ADVANCE(27);
- if (lookahead != 0 &&
- lookahead != '>' &&
- lookahead != '}') ADVANCE(188);
- END_STATE();
- case 28:
- if (lookahead == '&') ADVANCE(23);
- if (lookahead == '\'') ADVANCE(201);
- if (lookahead == '/') ADVANCE(209);
- if (set_contains(extras_character_set_1, 10, lookahead)) ADVANCE(208);
- if (lookahead != 0) ADVANCE(210);
- END_STATE();
- case 29:
- if (lookahead == '\'') ADVANCE(201);
- if (lookahead == '/') ADVANCE(31);
- if (set_contains(extras_character_set_1, 10, lookahead)) SKIP(29);
- END_STATE();
- case 30:
- if (lookahead == '\'') ADVANCE(201);
- if (lookahead == '/') ADVANCE(292);
- if (lookahead == '\\') ADVANCE(109);
- if (lookahead == '\n' ||
- lookahead == '\r') SKIP(29);
- if (set_contains(extras_character_set_1, 10, lookahead)) ADVANCE(295);
- if (lookahead != 0) ADVANCE(297);
- END_STATE();
- case 31:
- if (lookahead == '*') ADVANCE(34);
- if (lookahead == '/') ADVANCE(306);
- END_STATE();
- case 32:
- if (lookahead == '*') ADVANCE(34);
- if (lookahead == '/') ADVANCE(306);
- if (lookahead == '>') ADVANCE(199);
- END_STATE();
- case 33:
- if (lookahead == '*') ADVANCE(33);
- if (lookahead == '/') ADVANCE(303);
- if (lookahead != 0) ADVANCE(34);
- END_STATE();
- case 34:
- if (lookahead == '*') ADVANCE(33);
- if (lookahead != 0) ADVANCE(34);
- END_STATE();
- case 35:
- if (lookahead == '*') ADVANCE(205);
- if (lookahead == '#' ||
- ('A' <= lookahead && lookahead <= 'Z') ||
- ('a' <= lookahead && lookahead <= 'z')) ADVANCE(34);
- if (lookahead != 0) ADVANCE(206);
- END_STATE();
- case 36:
- if (lookahead == '*') ADVANCE(211);
- if (lookahead == '#' ||
- ('A' <= lookahead && lookahead <= 'Z') ||
- ('a' <= lookahead && lookahead <= 'z')) ADVANCE(34);
- if (lookahead != 0) ADVANCE(212);
- END_STATE();
- case 37:
- if (lookahead == '.') ADVANCE(39);
- if (('0' <= lookahead && lookahead <= '9')) ADVANCE(320);
- END_STATE();
- case 38:
- if (lookahead == '.') ADVANCE(215);
- if (lookahead == '?') ADVANCE(281);
- END_STATE();
- case 39:
- if (lookahead == '.') ADVANCE(231);
- END_STATE();
- case 40:
- if (lookahead == '/') ADVANCE(309);
- if (set_contains(extras_character_set_1, 10, lookahead)) SKIP(41);
- END_STATE();
- case 41:
- if (lookahead == '/') ADVANCE(31);
- if (set_contains(extras_character_set_1, 10, lookahead)) SKIP(41);
- END_STATE();
- case 42:
- if (lookahead == ':') ADVANCE(333);
- END_STATE();
- case 43:
- if (lookahead == ':') ADVANCE(332);
- END_STATE();
- case 44:
- if (lookahead == ':') ADVANCE(334);
- END_STATE();
- case 45:
- if (lookahead == ';') ADVANCE(190);
- END_STATE();
- case 46:
- if (lookahead == ';') ADVANCE(190);
- if (('0' <= lookahead && lookahead <= '9')) ADVANCE(45);
- END_STATE();
- case 47:
- if (lookahead == ';') ADVANCE(190);
- if (('0' <= lookahead && lookahead <= '9')) ADVANCE(46);
- END_STATE();
- case 48:
- if (lookahead == ';') ADVANCE(190);
- if (('0' <= lookahead && lookahead <= '9')) ADVANCE(47);
- END_STATE();
- case 49:
- if (lookahead == ';') ADVANCE(190);
- if (('0' <= lookahead && lookahead <= '9')) ADVANCE(48);
- END_STATE();
- case 50:
- if (lookahead == ';') ADVANCE(190);
- if (('0' <= lookahead && lookahead <= '9') ||
- ('A' <= lookahead && lookahead <= 'F') ||
- ('a' <= lookahead && lookahead <= 'f')) ADVANCE(45);
- END_STATE();
- case 51:
- if (lookahead == ';') ADVANCE(190);
- if (('0' <= lookahead && lookahead <= '9') ||
- ('A' <= lookahead && lookahead <= 'F') ||
- ('a' <= lookahead && lookahead <= 'f')) ADVANCE(50);
- END_STATE();
- case 52:
- if (lookahead == ';') ADVANCE(190);
- if (('0' <= lookahead && lookahead <= '9') ||
- ('A' <= lookahead && lookahead <= 'F') ||
- ('a' <= lookahead && lookahead <= 'f')) ADVANCE(51);
- END_STATE();
- case 53:
- if (lookahead == ';') ADVANCE(190);
- if (('0' <= lookahead && lookahead <= '9') ||
- ('A' <= lookahead && lookahead <= 'F') ||
- ('a' <= lookahead && lookahead <= 'f')) ADVANCE(52);
- END_STATE();
- case 54:
- if (lookahead == ';') ADVANCE(190);
- if (('0' <= lookahead && lookahead <= '9') ||
- ('A' <= lookahead && lookahead <= 'F') ||
- ('a' <= lookahead && lookahead <= 'f')) ADVANCE(53);
- END_STATE();
- case 55:
- if (lookahead == ';') ADVANCE(190);
- if (('A' <= lookahead && lookahead <= 'Z') ||
- ('a' <= lookahead && lookahead <= 'z')) ADVANCE(45);
- END_STATE();
- case 56:
- if (lookahead == ';') ADVANCE(190);
- if (('A' <= lookahead && lookahead <= 'Z') ||
- ('a' <= lookahead && lookahead <= 'z')) ADVANCE(55);
- END_STATE();
- case 57:
- if (lookahead == ';') ADVANCE(190);
- if (('A' <= lookahead && lookahead <= 'Z') ||
- ('a' <= lookahead && lookahead <= 'z')) ADVANCE(56);
- END_STATE();
- case 58:
- if (lookahead == ';') ADVANCE(190);
- if (('A' <= lookahead && lookahead <= 'Z') ||
- ('a' <= lookahead && lookahead <= 'z')) ADVANCE(57);
- END_STATE();
- case 59:
- if (lookahead == ';') ADVANCE(190);
- if (('A' <= lookahead && lookahead <= 'Z') ||
- ('a' <= lookahead && lookahead <= 'z')) ADVANCE(58);
- END_STATE();
- case 60:
- if (lookahead == ';') ADVANCE(190);
- if (('A' <= lookahead && lookahead <= 'Z') ||
- ('a' <= lookahead && lookahead <= 'z')) ADVANCE(59);
- END_STATE();
- case 61:
- if (lookahead == ';') ADVANCE(190);
- if (('A' <= lookahead && lookahead <= 'Z') ||
- ('a' <= lookahead && lookahead <= 'z')) ADVANCE(60);
- END_STATE();
- case 62:
- if (lookahead == ';') ADVANCE(190);
- if (('A' <= lookahead && lookahead <= 'Z') ||
- ('a' <= lookahead && lookahead <= 'z')) ADVANCE(61);
- END_STATE();
- case 63:
- if (lookahead == ';') ADVANCE(190);
- if (('A' <= lookahead && lookahead <= 'Z') ||
- ('a' <= lookahead && lookahead <= 'z')) ADVANCE(62);
- END_STATE();
- case 64:
- if (lookahead == ';') ADVANCE(190);
- if (('A' <= lookahead && lookahead <= 'Z') ||
- ('a' <= lookahead && lookahead <= 'z')) ADVANCE(63);
- END_STATE();
- case 65:
- if (lookahead == ';') ADVANCE(190);
- if (('A' <= lookahead && lookahead <= 'Z') ||
- ('a' <= lookahead && lookahead <= 'z')) ADVANCE(64);
- END_STATE();
- case 66:
- if (lookahead == ';') ADVANCE(190);
- if (('A' <= lookahead && lookahead <= 'Z') ||
- ('a' <= lookahead && lookahead <= 'z')) ADVANCE(65);
- END_STATE();
- case 67:
- if (lookahead == ';') ADVANCE(190);
- if (('A' <= lookahead && lookahead <= 'Z') ||
- ('a' <= lookahead && lookahead <= 'z')) ADVANCE(66);
- END_STATE();
- case 68:
- if (lookahead == ';') ADVANCE(190);
- if (('A' <= lookahead && lookahead <= 'Z') ||
- ('a' <= lookahead && lookahead <= 'z')) ADVANCE(67);
- END_STATE();
- case 69:
- if (lookahead == ';') ADVANCE(190);
- if (('A' <= lookahead && lookahead <= 'Z') ||
- ('a' <= lookahead && lookahead <= 'z')) ADVANCE(68);
- END_STATE();
- case 70:
- if (lookahead == ';') ADVANCE(190);
- if (('A' <= lookahead && lookahead <= 'Z') ||
- ('a' <= lookahead && lookahead <= 'z')) ADVANCE(69);
- END_STATE();
- case 71:
- if (lookahead == ';') ADVANCE(190);
- if (('A' <= lookahead && lookahead <= 'Z') ||
- ('a' <= lookahead && lookahead <= 'z')) ADVANCE(70);
- END_STATE();
- case 72:
- if (lookahead == ';') ADVANCE(190);
- if (('A' <= lookahead && lookahead <= 'Z') ||
- ('a' <= lookahead && lookahead <= 'z')) ADVANCE(71);
- END_STATE();
- case 73:
- if (lookahead == ';') ADVANCE(190);
- if (('A' <= lookahead && lookahead <= 'Z') ||
- ('a' <= lookahead && lookahead <= 'z')) ADVANCE(72);
- END_STATE();
- case 74:
- if (lookahead == ';') ADVANCE(190);
- if (('A' <= lookahead && lookahead <= 'Z') ||
- ('a' <= lookahead && lookahead <= 'z')) ADVANCE(73);
- END_STATE();
- case 75:
- if (lookahead == ';') ADVANCE(190);
- if (('A' <= lookahead && lookahead <= 'Z') ||
- ('a' <= lookahead && lookahead <= 'z')) ADVANCE(74);
- END_STATE();
- case 76:
- if (lookahead == ';') ADVANCE(190);
- if (('A' <= lookahead && lookahead <= 'Z') ||
- ('a' <= lookahead && lookahead <= 'z')) ADVANCE(75);
- END_STATE();
- case 77:
- if (lookahead == ';') ADVANCE(190);
- if (('A' <= lookahead && lookahead <= 'Z') ||
- ('a' <= lookahead && lookahead <= 'z')) ADVANCE(76);
- END_STATE();
- case 78:
- if (lookahead == ';') ADVANCE(190);
- if (('A' <= lookahead && lookahead <= 'Z') ||
- ('a' <= lookahead && lookahead <= 'z')) ADVANCE(77);
- END_STATE();
- case 79:
- if (lookahead == ';') ADVANCE(190);
- if (('A' <= lookahead && lookahead <= 'Z') ||
- ('a' <= lookahead && lookahead <= 'z')) ADVANCE(78);
- END_STATE();
- case 80:
- if (lookahead == ';') ADVANCE(190);
- if (('A' <= lookahead && lookahead <= 'Z') ||
- ('a' <= lookahead && lookahead <= 'z')) ADVANCE(79);
- END_STATE();
- case 81:
- if (lookahead == ';') ADVANCE(190);
- if (('A' <= lookahead && lookahead <= 'Z') ||
- ('a' <= lookahead && lookahead <= 'z')) ADVANCE(80);
- END_STATE();
- case 82:
- if (lookahead == ';') ADVANCE(190);
- if (('A' <= lookahead && lookahead <= 'Z') ||
- ('a' <= lookahead && lookahead <= 'z')) ADVANCE(81);
- END_STATE();
- case 83:
- if (lookahead == ';') ADVANCE(190);
- if (('A' <= lookahead && lookahead <= 'Z') ||
- ('a' <= lookahead && lookahead <= 'z')) ADVANCE(82);
- END_STATE();
- case 84:
- if (lookahead == '=') ADVANCE(276);
- END_STATE();
- case 85:
- if (lookahead == '>') ADVANCE(177);
- END_STATE();
- case 86:
- if (lookahead == '>') ADVANCE(178);
- END_STATE();
- case 87:
- if (lookahead == '?') ADVANCE(42);
- END_STATE();
- case 88:
- if (lookahead == '?') ADVANCE(43);
- END_STATE();
- case 89:
- if (lookahead == '\\') ADVANCE(107);
- if (set_contains(sym_identifier_character_set_1, 14, lookahead)) ADVANCE(326);
- END_STATE();
- case 90:
- if (lookahead == '\\') ADVANCE(147);
- if (lookahead == ']') ADVANCE(311);
- if (lookahead != 0 &&
- lookahead != '\n') ADVANCE(90);
- END_STATE();
- case 91:
- if (lookahead == 'a') ADVANCE(103);
- END_STATE();
- case 92:
- if (lookahead == 'a') ADVANCE(104);
- END_STATE();
- case 93:
- if (lookahead == 'e') ADVANCE(99);
- END_STATE();
- case 94:
- if (lookahead == 'e') ADVANCE(85);
- END_STATE();
- case 95:
- if (lookahead == 'e') ADVANCE(86);
- END_STATE();
- case 96:
- if (lookahead == 'e') ADVANCE(100);
- END_STATE();
- case 97:
- if (lookahead == 'l') ADVANCE(91);
- END_STATE();
- case 98:
- if (lookahead == 'l') ADVANCE(92);
- END_STATE();
- case 99:
- if (lookahead == 'm') ADVANCE(101);
- END_STATE();
- case 100:
- if (lookahead == 'm') ADVANCE(102);
- END_STATE();
- case 101:
- if (lookahead == 'p') ADVANCE(97);
- END_STATE();
- case 102:
- if (lookahead == 'p') ADVANCE(98);
- END_STATE();
- case 103:
- if (lookahead == 't') ADVANCE(94);
- END_STATE();
- case 104:
- if (lookahead == 't') ADVANCE(95);
- END_STATE();
- case 105:
- if (lookahead == 't') ADVANCE(96);
- END_STATE();
- case 106:
- if (lookahead == 'u') ADVANCE(111);
- if (lookahead == 'x') ADVANCE(137);
- if (lookahead == '\r' ||
- lookahead == '?') ADVANCE(300);
- if (('0' <= lookahead && lookahead <= '7')) ADVANCE(302);
- if (lookahead != 0) ADVANCE(298);
- END_STATE();
- case 107:
- if (lookahead == 'u') ADVANCE(112);
- END_STATE();
- case 108:
- if (lookahead == 'u') ADVANCE(113);
- END_STATE();
- case 109:
- if (lookahead == 'u') ADVANCE(114);
- if (lookahead == 'x') ADVANCE(137);
- if (lookahead == '\r' ||
- lookahead == '?') ADVANCE(300);
- if (('0' <= lookahead && lookahead <= '7')) ADVANCE(302);
- if (lookahead != 0) ADVANCE(298);
- END_STATE();
- case 110:
- if (lookahead == '{') ADVANCE(308);
- END_STATE();
- case 111:
- if (lookahead == '{') ADVANCE(131);
- if (('0' <= lookahead && lookahead <= '9') ||
- ('A' <= lookahead && lookahead <= 'F') ||
- ('a' <= lookahead && lookahead <= 'f')) ADVANCE(142);
- END_STATE();
- case 112:
- if (lookahead == '{') ADVANCE(135);
- if (('0' <= lookahead && lookahead <= '9') ||
- ('A' <= lookahead && lookahead <= 'F') ||
- ('a' <= lookahead && lookahead <= 'f')) ADVANCE(143);
- END_STATE();
- case 113:
- if (lookahead == '{') ADVANCE(136);
- if (('0' <= lookahead && lookahead <= '9') ||
- ('A' <= lookahead && lookahead <= 'F') ||
- ('a' <= lookahead && lookahead <= 'f')) ADVANCE(144);
- END_STATE();
- case 114:
- if (lookahead == '{') ADVANCE(138);
- if (('0' <= lookahead && lookahead <= '9') ||
- ('A' <= lookahead && lookahead <= 'F') ||
- ('a' <= lookahead && lookahead <= 'f')) ADVANCE(134);
- END_STATE();
- case 115:
- if (lookahead == '}') ADVANCE(325);
- if (('0' <= lookahead && lookahead <= '9') ||
- ('A' <= lookahead && lookahead <= 'F') ||
- ('a' <= lookahead && lookahead <= 'f')) ADVANCE(115);
- END_STATE();
- case 116:
- if (lookahead == '}') ADVANCE(326);
- if (('0' <= lookahead && lookahead <= '9') ||
- ('A' <= lookahead && lookahead <= 'F') ||
- ('a' <= lookahead && lookahead <= 'f')) ADVANCE(116);
- END_STATE();
- case 117:
- if (lookahead == '}') ADVANCE(298);
- if (('0' <= lookahead && lookahead <= '9') ||
- ('A' <= lookahead && lookahead <= 'F') ||
- ('a' <= lookahead && lookahead <= 'f')) ADVANCE(117);
- END_STATE();
- case 118:
- if (lookahead == '}') ADVANCE(299);
- if (('0' <= lookahead && lookahead <= '9') ||
- ('A' <= lookahead && lookahead <= 'F') ||
- ('a' <= lookahead && lookahead <= 'f')) ADVANCE(118);
- END_STATE();
- case 119:
- if (lookahead == '+' ||
- lookahead == '-') ADVANCE(126);
- if (('0' <= lookahead && lookahead <= '9')) ADVANCE(321);
- END_STATE();
- case 120:
- if (lookahead == 'X' ||
- lookahead == 'x') ADVANCE(133);
- if (('0' <= lookahead && lookahead <= '9')) ADVANCE(49);
- END_STATE();
- case 121:
- if (lookahead == '0' ||
- lookahead == '1') ADVANCE(317);
- END_STATE();
- case 122:
- if (('0' <= lookahead && lookahead <= '7')) ADVANCE(318);
- END_STATE();
- case 123:
- if (('0' <= lookahead && lookahead <= '9')) ADVANCE(315);
- END_STATE();
- case 124:
- if (('0' <= lookahead && lookahead <= '9')) ADVANCE(320);
- END_STATE();
- case 125:
- if (('0' <= lookahead && lookahead <= '9')) ADVANCE(316);
- END_STATE();
- case 126:
- if (('0' <= lookahead && lookahead <= '9')) ADVANCE(321);
- END_STATE();
- case 127:
- if (('0' <= lookahead && lookahead <= '9') ||
- ('A' <= lookahead && lookahead <= 'F') ||
- ('a' <= lookahead && lookahead <= 'f')) ADVANCE(325);
- END_STATE();
- case 128:
- if (('0' <= lookahead && lookahead <= '9') ||
- ('A' <= lookahead && lookahead <= 'F') ||
- ('a' <= lookahead && lookahead <= 'f')) ADVANCE(326);
- END_STATE();
- case 129:
- if (('0' <= lookahead && lookahead <= '9') ||
- ('A' <= lookahead && lookahead <= 'F') ||
- ('a' <= lookahead && lookahead <= 'f')) ADVANCE(298);
- END_STATE();
- case 130:
- if (('0' <= lookahead && lookahead <= '9') ||
- ('A' <= lookahead && lookahead <= 'F') ||
- ('a' <= lookahead && lookahead <= 'f')) ADVANCE(319);
- END_STATE();
- case 131:
- if (('0' <= lookahead && lookahead <= '9') ||
- ('A' <= lookahead && lookahead <= 'F') ||
- ('a' <= lookahead && lookahead <= 'f')) ADVANCE(118);
- END_STATE();
- case 132:
- if (('0' <= lookahead && lookahead <= '9') ||
- ('A' <= lookahead && lookahead <= 'F') ||
- ('a' <= lookahead && lookahead <= 'f')) ADVANCE(299);
- END_STATE();
- case 133:
- if (('0' <= lookahead && lookahead <= '9') ||
- ('A' <= lookahead && lookahead <= 'F') ||
- ('a' <= lookahead && lookahead <= 'f')) ADVANCE(54);
- END_STATE();
- case 134:
- if (('0' <= lookahead && lookahead <= '9') ||
- ('A' <= lookahead && lookahead <= 'F') ||
- ('a' <= lookahead && lookahead <= 'f')) ADVANCE(137);
- END_STATE();
- case 135:
- if (('0' <= lookahead && lookahead <= '9') ||
- ('A' <= lookahead && lookahead <= 'F') ||
- ('a' <= lookahead && lookahead <= 'f')) ADVANCE(116);
- END_STATE();
- case 136:
- if (('0' <= lookahead && lookahead <= '9') ||
- ('A' <= lookahead && lookahead <= 'F') ||
- ('a' <= lookahead && lookahead <= 'f')) ADVANCE(115);
- END_STATE();
- case 137:
- if (('0' <= lookahead && lookahead <= '9') ||
- ('A' <= lookahead && lookahead <= 'F') ||
- ('a' <= lookahead && lookahead <= 'f')) ADVANCE(129);
- END_STATE();
- case 138:
- if (('0' <= lookahead && lookahead <= '9') ||
- ('A' <= lookahead && lookahead <= 'F') ||
- ('a' <= lookahead && lookahead <= 'f')) ADVANCE(117);
- END_STATE();
- case 139:
- if (('0' <= lookahead && lookahead <= '9') ||
- ('A' <= lookahead && lookahead <= 'F') ||
- ('a' <= lookahead && lookahead <= 'f')) ADVANCE(132);
- END_STATE();
- case 140:
- if (('0' <= lookahead && lookahead <= '9') ||
- ('A' <= lookahead && lookahead <= 'F') ||
- ('a' <= lookahead && lookahead <= 'f')) ADVANCE(128);
- END_STATE();
- case 141:
- if (('0' <= lookahead && lookahead <= '9') ||
- ('A' <= lookahead && lookahead <= 'F') ||
- ('a' <= lookahead && lookahead <= 'f')) ADVANCE(127);
- END_STATE();
- case 142:
- if (('0' <= lookahead && lookahead <= '9') ||
- ('A' <= lookahead && lookahead <= 'F') ||
- ('a' <= lookahead && lookahead <= 'f')) ADVANCE(139);
- END_STATE();
- case 143:
- if (('0' <= lookahead && lookahead <= '9') ||
- ('A' <= lookahead && lookahead <= 'F') ||
- ('a' <= lookahead && lookahead <= 'f')) ADVANCE(140);
- END_STATE();
- case 144:
- if (('0' <= lookahead && lookahead <= '9') ||
- ('A' <= lookahead && lookahead <= 'F') ||
- ('a' <= lookahead && lookahead <= 'f')) ADVANCE(141);
- END_STATE();
- case 145:
- if (lookahead != 0 &&
- lookahead != '#' &&
- (lookahead < 'A' || 'Z' < lookahead) &&
- (lookahead < 'a' || 'z' < lookahead)) ADVANCE(204);
- END_STATE();
- case 146:
- if (lookahead != 0 &&
- lookahead != '#' &&
- (lookahead < 'A' || 'Z' < lookahead) &&
- (lookahead < 'a' || 'z' < lookahead)) ADVANCE(210);
- END_STATE();
- case 147:
- if (lookahead != 0 &&
- lookahead != '\n') ADVANCE(90);
- END_STATE();
- case 148:
- if (lookahead != 0 &&
- lookahead != '\n') ADVANCE(311);
- END_STATE();
- case 149:
- if (eof) ADVANCE(152);
- ADVANCE_MAP(
- '!', 166,
- '"', 200,
- '#', 11,
- '$', 324,
- '%', 264,
- '&', 243,
- '\'', 201,
- '(', 167,
- ')', 168,
- '*', 155,
- '+', 256,
- ',', 163,
- '-', 260,
- '.', 196,
- '/', 262,
- '0', 314,
- ':', 170,
- ';', 169,
- '<', 269,
- '=', 159,
- '>', 192,
- '?', 330,
- '@', 327,
- '[', 171,
- '\\', 108,
- ']', 172,
- '^', 246,
- '`', 307,
- '{', 162,
- '|', 249,
- '}', 164,
- '~', 283,
- );
- if (('1' <= lookahead && lookahead <= '9')) ADVANCE(315);
- if (set_contains(extras_character_set_1, 10, lookahead)) SKIP(149);
- if (lookahead > '@') ADVANCE(325);
- END_STATE();
- case 150:
- if (eof) ADVANCE(152);
- ADVANCE_MAP(
- '!', 166,
- '"', 200,
- '#', 89,
- '%', 263,
- '&', 244,
- '\'', 201,
- '(', 167,
- ')', 168,
- '*', 156,
- '+', 254,
- ',', 163,
- '-', 258,
- '.', 197,
- '/', 261,
- '0', 314,
- ':', 170,
- ';', 169,
- '<', 273,
- '=', 158,
- '>', 193,
- '?', 38,
- '@', 327,
- '[', 171,
- '\\', 108,
- ']', 172,
- '^', 245,
- '`', 307,
- '{', 161,
- '|', 250,
- '}', 164,
- '~', 283,
- );
- if (('1' <= lookahead && lookahead <= '9')) ADVANCE(315);
- if (set_contains(extras_character_set_1, 10, lookahead)) SKIP(150);
- if (lookahead > '#') ADVANCE(325);
- END_STATE();
- case 151:
- if (eof) ADVANCE(152);
- ADVANCE_MAP(
- '!', 165,
- '"', 200,
- '#', 11,
- '&', 242,
- '\'', 201,
- '(', 167,
- ')', 168,
- '*', 154,
- '+', 254,
- ',', 163,
- '-', 258,
- '.', 196,
- '/', 261,
- '0', 314,
- ':', 170,
- ';', 169,
- '<', 274,
- '=', 160,
- '>', 191,
- '?', 328,
- '@', 327,
- '[', 171,
- '\\', 108,
- ']', 172,
- '`', 307,
- '{', 161,
- '|', 252,
- '}', 164,
- '~', 283,
- );
- if (('1' <= lookahead && lookahead <= '9')) ADVANCE(315);
- if (set_contains(extras_character_set_1, 10, lookahead)) SKIP(151);
- if (lookahead > '#' &&
- (lookahead < '%' || '@' < lookahead) &&
- (lookahead < '[' || '^' < lookahead)) ADVANCE(325);
- END_STATE();
- case 152:
- ACCEPT_TOKEN(ts_builtin_sym_end);
- END_STATE();
- case 153:
- ACCEPT_TOKEN(sym_hash_bang_line);
- if (lookahead != 0 &&
- lookahead != '\n') ADVANCE(153);
- END_STATE();
- case 154:
- ACCEPT_TOKEN(anon_sym_STAR);
- END_STATE();
- case 155:
- ACCEPT_TOKEN(anon_sym_STAR);
- if (lookahead == '*') ADVANCE(266);
- if (lookahead == '=') ADVANCE(218);
- END_STATE();
- case 156:
- ACCEPT_TOKEN(anon_sym_STAR);
- if (lookahead == '*') ADVANCE(265);
- END_STATE();
- case 157:
- ACCEPT_TOKEN(anon_sym_EQ);
- END_STATE();
- case 158:
- ACCEPT_TOKEN(anon_sym_EQ);
- if (lookahead == '=') ADVANCE(276);
- END_STATE();
- case 159:
- ACCEPT_TOKEN(anon_sym_EQ);
- if (lookahead == '=') ADVANCE(276);
- if (lookahead == '>') ADVANCE(214);
- END_STATE();
- case 160:
- ACCEPT_TOKEN(anon_sym_EQ);
- if (lookahead == '>') ADVANCE(214);
- END_STATE();
- case 161:
- ACCEPT_TOKEN(anon_sym_LBRACE);
- END_STATE();
- case 162:
- ACCEPT_TOKEN(anon_sym_LBRACE);
- if (lookahead == '|') ADVANCE(335);
- END_STATE();
- case 163:
- ACCEPT_TOKEN(anon_sym_COMMA);
- END_STATE();
- case 164:
- ACCEPT_TOKEN(anon_sym_RBRACE);
- END_STATE();
- case 165:
- ACCEPT_TOKEN(anon_sym_BANG);
- END_STATE();
- case 166:
- ACCEPT_TOKEN(anon_sym_BANG);
- if (lookahead == '=') ADVANCE(278);
- END_STATE();
- case 167:
- ACCEPT_TOKEN(anon_sym_LPAREN);
- END_STATE();
- case 168:
- ACCEPT_TOKEN(anon_sym_RPAREN);
- END_STATE();
- case 169:
- ACCEPT_TOKEN(anon_sym_SEMI);
- END_STATE();
- case 170:
- ACCEPT_TOKEN(anon_sym_COLON);
- END_STATE();
- case 171:
- ACCEPT_TOKEN(anon_sym_LBRACK);
- END_STATE();
- case 172:
- ACCEPT_TOKEN(anon_sym_RBRACK);
- END_STATE();
- case 173:
- ACCEPT_TOKEN(sym__glimmer_template_content);
- END_STATE();
- case 174:
- ACCEPT_TOKEN(sym__glimmer_template_content);
- if (lookahead == '*') ADVANCE(34);
- if (lookahead == '/') ADVANCE(306);
- END_STATE();
- case 175:
- ACCEPT_TOKEN(sym__glimmer_template_content);
- if (lookahead == '/') ADVANCE(174);
- if (lookahead == '<') ADVANCE(176);
- if ((set_contains(extras_character_set_1, 10, lookahead)) &&
- lookahead != '\n') ADVANCE(175);
- if (lookahead != 0 &&
- (lookahead < '\t' || '\r' < lookahead)) ADVANCE(173);
- END_STATE();
- case 176:
- ACCEPT_TOKEN(sym__glimmer_template_content);
- if (lookahead == '/') ADVANCE(105);
- END_STATE();
- case 177:
- ACCEPT_TOKEN(sym_glimmer_opening_tag);
- END_STATE();
- case 178:
- ACCEPT_TOKEN(sym_glimmer_closing_tag);
- END_STATE();
- case 179:
- ACCEPT_TOKEN(aux_sym_jsx_text_token1);
- if (lookahead == '\n') ADVANCE(188);
- if (lookahead == '*') ADVANCE(183);
- if (lookahead == '/') ADVANCE(180);
- if (set_contains(extras_character_set_1, 10, lookahead)) ADVANCE(181);
- if (lookahead != 0 &&
- lookahead != '&' &&
- lookahead != '<' &&
- lookahead != '>' &&
- lookahead != '{' &&
- lookahead != '}') ADVANCE(181);
- END_STATE();
- case 180:
- ACCEPT_TOKEN(aux_sym_jsx_text_token1);
- ADVANCE_MAP(
- '\n', 188,
- '\r', 181,
- 0x2028, 181,
- 0x2029, 181,
- '&', 306,
- '<', 306,
- '>', 306,
- '{', 306,
- '}', 306,
- );
- if (set_contains(extras_character_set_1, 10, lookahead)) ADVANCE(180);
- if (lookahead != 0) ADVANCE(180);
- END_STATE();
- case 181:
- ACCEPT_TOKEN(aux_sym_jsx_text_token1);
- if (lookahead == '\n') ADVANCE(188);
- if (set_contains(extras_character_set_1, 10, lookahead)) ADVANCE(181);
- if (lookahead != 0 &&
- lookahead != '&' &&
- lookahead != '<' &&
- lookahead != '>' &&
- lookahead != '{' &&
- lookahead != '}') ADVANCE(181);
- END_STATE();
- case 182:
- ACCEPT_TOKEN(aux_sym_jsx_text_token1);
- ADVANCE_MAP(
- '\n', 186,
- '*', 182,
- '/', 181,
- '&', 34,
- '<', 34,
- '>', 34,
- '{', 34,
- '}', 34,
- );
- if (set_contains(extras_character_set_1, 10, lookahead)) ADVANCE(183);
- if (lookahead != 0) ADVANCE(183);
- END_STATE();
- case 183:
- ACCEPT_TOKEN(aux_sym_jsx_text_token1);
- if (lookahead == '\n') ADVANCE(186);
- if (lookahead == '*') ADVANCE(182);
- if (lookahead == '&' ||
- lookahead == '<' ||
- lookahead == '>' ||
- lookahead == '{' ||
- lookahead == '}') ADVANCE(34);
- if (set_contains(extras_character_set_1, 10, lookahead)) ADVANCE(183);
- if (lookahead != 0) ADVANCE(183);
- END_STATE();
- case 184:
- ACCEPT_TOKEN(aux_sym_jsx_text_token1);
- if (lookahead == '*') ADVANCE(186);
- if (lookahead == '/') ADVANCE(187);
- if (set_contains(extras_character_set_1, 10, lookahead)) ADVANCE(188);
- if (lookahead != 0 &&
- lookahead != '&' &&
- lookahead != '<' &&
- lookahead != '>' &&
- lookahead != '{' &&
- lookahead != '}') ADVANCE(188);
- END_STATE();
- case 185:
- ACCEPT_TOKEN(aux_sym_jsx_text_token1);
- if (lookahead == '*') ADVANCE(185);
- if (lookahead == '/') ADVANCE(188);
- if (lookahead == '&' ||
- lookahead == '<' ||
- lookahead == '>' ||
- lookahead == '{' ||
- lookahead == '}') ADVANCE(34);
- if (set_contains(extras_character_set_1, 10, lookahead)) ADVANCE(186);
- if (lookahead != 0) ADVANCE(186);
- END_STATE();
- case 186:
- ACCEPT_TOKEN(aux_sym_jsx_text_token1);
- if (lookahead == '*') ADVANCE(185);
- if (lookahead == '&' ||
- lookahead == '<' ||
- lookahead == '>' ||
- lookahead == '{' ||
- lookahead == '}') ADVANCE(34);
- if (set_contains(extras_character_set_1, 10, lookahead)) ADVANCE(186);
- if (lookahead != 0) ADVANCE(186);
- END_STATE();
- case 187:
- ACCEPT_TOKEN(aux_sym_jsx_text_token1);
- ADVANCE_MAP(
- '\n', 188,
- '\r', 188,
- 0x2028, 188,
- 0x2029, 188,
- '&', 306,
- '<', 306,
- '>', 306,
- '{', 306,
- '}', 306,
- );
- if (set_contains(extras_character_set_1, 10, lookahead)) ADVANCE(187);
- if (lookahead != 0) ADVANCE(187);
- END_STATE();
- case 188:
- ACCEPT_TOKEN(aux_sym_jsx_text_token1);
- if (set_contains(extras_character_set_1, 10, lookahead)) ADVANCE(188);
- if (lookahead != 0 &&
- lookahead != '&' &&
- lookahead != '<' &&
- lookahead != '>' &&
- lookahead != '{' &&
- lookahead != '}') ADVANCE(188);
- END_STATE();
- case 189:
- ACCEPT_TOKEN(aux_sym_jsx_text_token2);
- if (lookahead == '/') ADVANCE(179);
- if ((set_contains(extras_character_set_1, 10, lookahead)) &&
- lookahead != '\n') ADVANCE(189);
- if (lookahead != 0 &&
- (lookahead < '\t' || '\r' < lookahead) &&
- lookahead != '&' &&
- lookahead != '<' &&
- lookahead != '>' &&
- lookahead != '{' &&
- lookahead != '}') ADVANCE(181);
- END_STATE();
- case 190:
- ACCEPT_TOKEN(sym_html_character_reference);
- END_STATE();
- case 191:
- ACCEPT_TOKEN(anon_sym_GT);
- END_STATE();
- case 192:
- ACCEPT_TOKEN(anon_sym_GT);
- if (lookahead == '=') ADVANCE(280);
- if (lookahead == '>') ADVANCE(236);
- END_STATE();
- case 193:
- ACCEPT_TOKEN(anon_sym_GT);
- if (lookahead == '=') ADVANCE(280);
- if (lookahead == '>') ADVANCE(237);
- END_STATE();
- case 194:
- ACCEPT_TOKEN(sym_jsx_identifier);
- if (lookahead == '$' ||
- lookahead == '-' ||
- ('0' <= lookahead && lookahead <= '9') ||
- ('A' <= lookahead && lookahead <= 'Z') ||
- lookahead == '_' ||
- ('a' <= lookahead && lookahead <= 'z')) ADVANCE(194);
- END_STATE();
- case 195:
- ACCEPT_TOKEN(anon_sym_DOT);
- END_STATE();
- case 196:
- ACCEPT_TOKEN(anon_sym_DOT);
- if (lookahead == '.') ADVANCE(39);
- if (('0' <= lookahead && lookahead <= '9')) ADVANCE(320);
- END_STATE();
- case 197:
- ACCEPT_TOKEN(anon_sym_DOT);
- if (('0' <= lookahead && lookahead <= '9')) ADVANCE(320);
- END_STATE();
- case 198:
- ACCEPT_TOKEN(anon_sym_LT_SLASH);
- END_STATE();
- case 199:
- ACCEPT_TOKEN(anon_sym_SLASH_GT);
- END_STATE();
- case 200:
- ACCEPT_TOKEN(anon_sym_DQUOTE);
- END_STATE();
- case 201:
- ACCEPT_TOKEN(anon_sym_SQUOTE);
- END_STATE();
- case 202:
- ACCEPT_TOKEN(sym_unescaped_double_jsx_string_fragment);
- if (lookahead == '&') ADVANCE(22);
- if (lookahead == '/') ADVANCE(203);
- if (set_contains(extras_character_set_1, 10, lookahead)) ADVANCE(202);
- if (lookahead != 0 &&
- lookahead != '"') ADVANCE(204);
- END_STATE();
- case 203:
- ACCEPT_TOKEN(sym_unescaped_double_jsx_string_fragment);
- if (lookahead == '&') ADVANCE(145);
- if (lookahead == '*') ADVANCE(206);
- if (lookahead == '/') ADVANCE(207);
- if (lookahead != 0 &&
- lookahead != '"') ADVANCE(204);
- END_STATE();
- case 204:
- ACCEPT_TOKEN(sym_unescaped_double_jsx_string_fragment);
- if (lookahead == '&') ADVANCE(145);
- if (lookahead != 0 &&
- lookahead != '"') ADVANCE(204);
- END_STATE();
- case 205:
- ACCEPT_TOKEN(sym_unescaped_double_jsx_string_fragment);
- if (lookahead == '&') ADVANCE(35);
- if (lookahead == '*') ADVANCE(205);
- if (lookahead == '/') ADVANCE(204);
- if (lookahead != 0 &&
- lookahead != '"') ADVANCE(206);
- END_STATE();
- case 206:
- ACCEPT_TOKEN(sym_unescaped_double_jsx_string_fragment);
- if (lookahead == '&') ADVANCE(35);
- if (lookahead == '*') ADVANCE(205);
- if (lookahead != 0 &&
- lookahead != '"') ADVANCE(206);
- END_STATE();
- case 207:
- ACCEPT_TOKEN(sym_unescaped_double_jsx_string_fragment);
- if (lookahead == '&') ADVANCE(304);
- if (lookahead == '\n' ||
- lookahead == '\r' ||
- lookahead == 0x2028 ||
- lookahead == 0x2029) ADVANCE(204);
- if (lookahead != 0 &&
- lookahead != '"') ADVANCE(207);
- END_STATE();
- case 208:
- ACCEPT_TOKEN(sym_unescaped_single_jsx_string_fragment);
- if (lookahead == '&') ADVANCE(23);
- if (lookahead == '/') ADVANCE(209);
- if (set_contains(extras_character_set_1, 10, lookahead)) ADVANCE(208);
- if (lookahead != 0 &&
- lookahead != '&' &&
- lookahead != '\'') ADVANCE(210);
- END_STATE();
- case 209:
- ACCEPT_TOKEN(sym_unescaped_single_jsx_string_fragment);
- if (lookahead == '&') ADVANCE(146);
- if (lookahead == '*') ADVANCE(212);
- if (lookahead == '/') ADVANCE(213);
- if (lookahead != 0 &&
- lookahead != '&' &&
- lookahead != '\'') ADVANCE(210);
- END_STATE();
- case 210:
- ACCEPT_TOKEN(sym_unescaped_single_jsx_string_fragment);
- if (lookahead == '&') ADVANCE(146);
- if (lookahead != 0 &&
- lookahead != '&' &&
- lookahead != '\'') ADVANCE(210);
- END_STATE();
- case 211:
- ACCEPT_TOKEN(sym_unescaped_single_jsx_string_fragment);
- if (lookahead == '&') ADVANCE(36);
- if (lookahead == '*') ADVANCE(211);
- if (lookahead == '/') ADVANCE(210);
- if (lookahead != 0 &&
- lookahead != '&' &&
- lookahead != '\'') ADVANCE(212);
- END_STATE();
- case 212:
- ACCEPT_TOKEN(sym_unescaped_single_jsx_string_fragment);
- if (lookahead == '&') ADVANCE(36);
- if (lookahead == '*') ADVANCE(211);
- if (lookahead != 0 &&
- lookahead != '&' &&
- lookahead != '\'') ADVANCE(212);
- END_STATE();
- case 213:
- ACCEPT_TOKEN(sym_unescaped_single_jsx_string_fragment);
- if (lookahead == '&') ADVANCE(305);
- if (lookahead == '\n' ||
- lookahead == '\r' ||
- lookahead == 0x2028 ||
- lookahead == 0x2029) ADVANCE(210);
- if (lookahead != 0 &&
- lookahead != '&' &&
- lookahead != '\'') ADVANCE(213);
- END_STATE();
- case 214:
- ACCEPT_TOKEN(anon_sym_EQ_GT);
- END_STATE();
- case 215:
- ACCEPT_TOKEN(anon_sym_QMARK_DOT);
- END_STATE();
- case 216:
- ACCEPT_TOKEN(anon_sym_PLUS_EQ);
- END_STATE();
- case 217:
- ACCEPT_TOKEN(anon_sym_DASH_EQ);
- END_STATE();
- case 218:
- ACCEPT_TOKEN(anon_sym_STAR_EQ);
- END_STATE();
- case 219:
- ACCEPT_TOKEN(anon_sym_SLASH_EQ);
- END_STATE();
- case 220:
- ACCEPT_TOKEN(anon_sym_PERCENT_EQ);
- END_STATE();
- case 221:
- ACCEPT_TOKEN(anon_sym_CARET_EQ);
- END_STATE();
- case 222:
- ACCEPT_TOKEN(anon_sym_AMP_EQ);
- END_STATE();
- case 223:
- ACCEPT_TOKEN(anon_sym_PIPE_EQ);
- END_STATE();
- case 224:
- ACCEPT_TOKEN(anon_sym_GT_GT_EQ);
- END_STATE();
- case 225:
- ACCEPT_TOKEN(anon_sym_GT_GT_GT_EQ);
- END_STATE();
- case 226:
- ACCEPT_TOKEN(anon_sym_LT_LT_EQ);
- END_STATE();
- case 227:
- ACCEPT_TOKEN(anon_sym_STAR_STAR_EQ);
- END_STATE();
- case 228:
- ACCEPT_TOKEN(anon_sym_AMP_AMP_EQ);
- END_STATE();
- case 229:
- ACCEPT_TOKEN(anon_sym_PIPE_PIPE_EQ);
- END_STATE();
- case 230:
- ACCEPT_TOKEN(anon_sym_QMARK_QMARK_EQ);
- END_STATE();
- case 231:
- ACCEPT_TOKEN(anon_sym_DOT_DOT_DOT);
- END_STATE();
- case 232:
- ACCEPT_TOKEN(anon_sym_AMP_AMP);
- END_STATE();
- case 233:
- ACCEPT_TOKEN(anon_sym_AMP_AMP);
- if (lookahead == '=') ADVANCE(228);
- END_STATE();
- case 234:
- ACCEPT_TOKEN(anon_sym_PIPE_PIPE);
- END_STATE();
- case 235:
- ACCEPT_TOKEN(anon_sym_PIPE_PIPE);
- if (lookahead == '=') ADVANCE(229);
- END_STATE();
- case 236:
- ACCEPT_TOKEN(anon_sym_GT_GT);
- if (lookahead == '=') ADVANCE(224);
- if (lookahead == '>') ADVANCE(239);
- END_STATE();
- case 237:
- ACCEPT_TOKEN(anon_sym_GT_GT);
- if (lookahead == '>') ADVANCE(238);
- END_STATE();
- case 238:
- ACCEPT_TOKEN(anon_sym_GT_GT_GT);
- END_STATE();
- case 239:
- ACCEPT_TOKEN(anon_sym_GT_GT_GT);
- if (lookahead == '=') ADVANCE(225);
- END_STATE();
- case 240:
- ACCEPT_TOKEN(anon_sym_LT_LT);
- END_STATE();
- case 241:
- ACCEPT_TOKEN(anon_sym_LT_LT);
- if (lookahead == '=') ADVANCE(226);
- END_STATE();
- case 242:
- ACCEPT_TOKEN(anon_sym_AMP);
- END_STATE();
- case 243:
- ACCEPT_TOKEN(anon_sym_AMP);
- if (lookahead == '&') ADVANCE(233);
- if (lookahead == '=') ADVANCE(222);
- END_STATE();
- case 244:
- ACCEPT_TOKEN(anon_sym_AMP);
- if (lookahead == '&') ADVANCE(232);
- END_STATE();
- case 245:
- ACCEPT_TOKEN(anon_sym_CARET);
- END_STATE();
- case 246:
- ACCEPT_TOKEN(anon_sym_CARET);
- if (lookahead == '=') ADVANCE(221);
- END_STATE();
- case 247:
- ACCEPT_TOKEN(anon_sym_PIPE);
- END_STATE();
- case 248:
- ACCEPT_TOKEN(anon_sym_PIPE);
- if (lookahead == '=') ADVANCE(223);
- if (lookahead == '|') ADVANCE(235);
- END_STATE();
- case 249:
- ACCEPT_TOKEN(anon_sym_PIPE);
- if (lookahead == '=') ADVANCE(223);
- if (lookahead == '|') ADVANCE(235);
- if (lookahead == '}') ADVANCE(336);
- END_STATE();
- case 250:
- ACCEPT_TOKEN(anon_sym_PIPE);
- if (lookahead == '|') ADVANCE(234);
- END_STATE();
- case 251:
- ACCEPT_TOKEN(anon_sym_PIPE);
- if (lookahead == '|') ADVANCE(234);
- if (lookahead == '}') ADVANCE(336);
- END_STATE();
- case 252:
- ACCEPT_TOKEN(anon_sym_PIPE);
- if (lookahead == '}') ADVANCE(336);
- END_STATE();
- case 253:
- ACCEPT_TOKEN(anon_sym_PLUS);
- END_STATE();
- case 254:
- ACCEPT_TOKEN(anon_sym_PLUS);
- if (lookahead == '+') ADVANCE(284);
- END_STATE();
- case 255:
- ACCEPT_TOKEN(anon_sym_PLUS);
- if (lookahead == '+') ADVANCE(284);
- if (lookahead == '=') ADVANCE(216);
- END_STATE();
- case 256:
- ACCEPT_TOKEN(anon_sym_PLUS);
- if (lookahead == '+') ADVANCE(284);
- if (lookahead == '=') ADVANCE(216);
- if (lookahead == '?') ADVANCE(42);
- END_STATE();
- case 257:
- ACCEPT_TOKEN(anon_sym_DASH);
- END_STATE();
- case 258:
- ACCEPT_TOKEN(anon_sym_DASH);
- if (lookahead == '-') ADVANCE(285);
- END_STATE();
- case 259:
- ACCEPT_TOKEN(anon_sym_DASH);
- if (lookahead == '-') ADVANCE(285);
- if (lookahead == '=') ADVANCE(217);
- END_STATE();
- case 260:
- ACCEPT_TOKEN(anon_sym_DASH);
- if (lookahead == '-') ADVANCE(285);
- if (lookahead == '=') ADVANCE(217);
- if (lookahead == '?') ADVANCE(43);
- END_STATE();
- case 261:
- ACCEPT_TOKEN(anon_sym_SLASH);
- if (lookahead == '*') ADVANCE(34);
- if (lookahead == '/') ADVANCE(306);
- END_STATE();
- case 262:
- ACCEPT_TOKEN(anon_sym_SLASH);
- if (lookahead == '*') ADVANCE(34);
- if (lookahead == '/') ADVANCE(306);
- if (lookahead == '=') ADVANCE(219);
- END_STATE();
- case 263:
- ACCEPT_TOKEN(anon_sym_PERCENT);
- END_STATE();
- case 264:
- ACCEPT_TOKEN(anon_sym_PERCENT);
- if (lookahead == '=') ADVANCE(220);
- END_STATE();
- case 265:
- ACCEPT_TOKEN(anon_sym_STAR_STAR);
- END_STATE();
- case 266:
- ACCEPT_TOKEN(anon_sym_STAR_STAR);
- if (lookahead == '=') ADVANCE(227);
- END_STATE();
- case 267:
- ACCEPT_TOKEN(anon_sym_LT);
- END_STATE();
- case 268:
- ACCEPT_TOKEN(anon_sym_LT);
- if (lookahead == '/') ADVANCE(198);
- END_STATE();
- case 269:
- ACCEPT_TOKEN(anon_sym_LT);
- if (lookahead == '/') ADVANCE(198);
- if (lookahead == '<') ADVANCE(241);
- if (lookahead == '=') ADVANCE(275);
- if (lookahead == 't') ADVANCE(93);
- END_STATE();
- case 270:
- ACCEPT_TOKEN(anon_sym_LT);
- if (lookahead == '<') ADVANCE(241);
- if (lookahead == '=') ADVANCE(275);
- END_STATE();
- case 271:
- ACCEPT_TOKEN(anon_sym_LT);
- if (lookahead == '<') ADVANCE(241);
- if (lookahead == '=') ADVANCE(275);
- if (lookahead == 't') ADVANCE(93);
- END_STATE();
- case 272:
- ACCEPT_TOKEN(anon_sym_LT);
- if (lookahead == '<') ADVANCE(240);
- if (lookahead == '=') ADVANCE(275);
- END_STATE();
- case 273:
- ACCEPT_TOKEN(anon_sym_LT);
- if (lookahead == '<') ADVANCE(240);
- if (lookahead == '=') ADVANCE(275);
- if (lookahead == 't') ADVANCE(93);
- END_STATE();
- case 274:
- ACCEPT_TOKEN(anon_sym_LT);
- if (lookahead == 't') ADVANCE(93);
- END_STATE();
- case 275:
- ACCEPT_TOKEN(anon_sym_LT_EQ);
- END_STATE();
- case 276:
- ACCEPT_TOKEN(anon_sym_EQ_EQ);
- if (lookahead == '=') ADVANCE(277);
- END_STATE();
- case 277:
- ACCEPT_TOKEN(anon_sym_EQ_EQ_EQ);
- END_STATE();
- case 278:
- ACCEPT_TOKEN(anon_sym_BANG_EQ);
- if (lookahead == '=') ADVANCE(279);
- END_STATE();
- case 279:
- ACCEPT_TOKEN(anon_sym_BANG_EQ_EQ);
- END_STATE();
- case 280:
- ACCEPT_TOKEN(anon_sym_GT_EQ);
- END_STATE();
- case 281:
- ACCEPT_TOKEN(anon_sym_QMARK_QMARK);
- END_STATE();
- case 282:
- ACCEPT_TOKEN(anon_sym_QMARK_QMARK);
- if (lookahead == '=') ADVANCE(230);
- END_STATE();
- case 283:
- ACCEPT_TOKEN(anon_sym_TILDE);
- END_STATE();
- case 284:
- ACCEPT_TOKEN(anon_sym_PLUS_PLUS);
- END_STATE();
- case 285:
- ACCEPT_TOKEN(anon_sym_DASH_DASH);
- END_STATE();
- case 286:
- ACCEPT_TOKEN(sym_unescaped_double_string_fragment);
- if (lookahead == '*') ADVANCE(288);
- if (lookahead == '/') ADVANCE(290);
- if (lookahead != 0 &&
- lookahead != '\n' &&
- lookahead != '\r' &&
- lookahead != '"' &&
- lookahead != '\\') ADVANCE(291);
- END_STATE();
- case 287:
- ACCEPT_TOKEN(sym_unescaped_double_string_fragment);
- if (lookahead == '*') ADVANCE(287);
- if (lookahead == '/') ADVANCE(291);
- if (lookahead != 0 &&
- lookahead != '\n' &&
- lookahead != '\r' &&
- lookahead != '"' &&
- lookahead != '\\') ADVANCE(288);
- END_STATE();
- case 288:
- ACCEPT_TOKEN(sym_unescaped_double_string_fragment);
- if (lookahead == '*') ADVANCE(287);
- if (lookahead != 0 &&
- lookahead != '\n' &&
- lookahead != '\r' &&
- lookahead != '"' &&
- lookahead != '\\') ADVANCE(288);
- END_STATE();
- case 289:
- ACCEPT_TOKEN(sym_unescaped_double_string_fragment);
- if (lookahead == '/') ADVANCE(286);
- if ((set_contains(extras_character_set_1, 10, lookahead)) &&
- lookahead != '\n' &&
- lookahead != '\r') ADVANCE(289);
- if (lookahead != 0 &&
- (lookahead < '\t' || '\r' < lookahead) &&
- lookahead != '"' &&
- lookahead != '\\') ADVANCE(291);
- END_STATE();
- case 290:
- ACCEPT_TOKEN(sym_unescaped_double_string_fragment);
- if (lookahead == 0x2028 ||
- lookahead == 0x2029) ADVANCE(291);
- if (lookahead != 0 &&
- lookahead != '\n' &&
- lookahead != '\r' &&
- lookahead != '"' &&
- lookahead != '\\') ADVANCE(290);
- END_STATE();
- case 291:
- ACCEPT_TOKEN(sym_unescaped_double_string_fragment);
- if (lookahead != 0 &&
- lookahead != '\n' &&
- lookahead != '\r' &&
- lookahead != '"' &&
- lookahead != '\\') ADVANCE(291);
- END_STATE();
- case 292:
- ACCEPT_TOKEN(sym_unescaped_single_string_fragment);
- if (lookahead == '*') ADVANCE(294);
- if (lookahead == '/') ADVANCE(296);
- if (lookahead != 0 &&
- lookahead != '\n' &&
- lookahead != '\r' &&
- lookahead != '\'' &&
- lookahead != '\\') ADVANCE(297);
- END_STATE();
- case 293:
- ACCEPT_TOKEN(sym_unescaped_single_string_fragment);
- if (lookahead == '*') ADVANCE(293);
- if (lookahead == '/') ADVANCE(297);
- if (lookahead != 0 &&
- lookahead != '\n' &&
- lookahead != '\r' &&
- lookahead != '\'' &&
- lookahead != '\\') ADVANCE(294);
- END_STATE();
- case 294:
- ACCEPT_TOKEN(sym_unescaped_single_string_fragment);
- if (lookahead == '*') ADVANCE(293);
- if (lookahead != 0 &&
- lookahead != '\n' &&
- lookahead != '\r' &&
- lookahead != '\'' &&
- lookahead != '\\') ADVANCE(294);
- END_STATE();
- case 295:
- ACCEPT_TOKEN(sym_unescaped_single_string_fragment);
- if (lookahead == '/') ADVANCE(292);
- if ((set_contains(extras_character_set_1, 10, lookahead)) &&
- lookahead != '\n' &&
- lookahead != '\r') ADVANCE(295);
- if (lookahead != 0 &&
- (lookahead < '\t' || '\r' < lookahead) &&
- lookahead != '\'' &&
- lookahead != '\\') ADVANCE(297);
- END_STATE();
- case 296:
- ACCEPT_TOKEN(sym_unescaped_single_string_fragment);
- if (lookahead == 0x2028 ||
- lookahead == 0x2029) ADVANCE(297);
- if (lookahead != 0 &&
- lookahead != '\n' &&
- lookahead != '\r' &&
- lookahead != '\'' &&
- lookahead != '\\') ADVANCE(296);
- END_STATE();
- case 297:
- ACCEPT_TOKEN(sym_unescaped_single_string_fragment);
- if (lookahead != 0 &&
- lookahead != '\n' &&
- lookahead != '\r' &&
- lookahead != '\'' &&
- lookahead != '\\') ADVANCE(297);
- END_STATE();
- case 298:
- ACCEPT_TOKEN(sym_escape_sequence);
- END_STATE();
- case 299:
- ACCEPT_TOKEN(sym_escape_sequence);
- if (lookahead == '\\') ADVANCE(108);
- if (set_contains(sym_identifier_character_set_2, 15, lookahead)) ADVANCE(325);
- END_STATE();
- case 300:
- ACCEPT_TOKEN(sym_escape_sequence);
- if (lookahead == '\n' ||
- lookahead == 0x2028 ||
- lookahead == 0x2029) ADVANCE(298);
- END_STATE();
- case 301:
- ACCEPT_TOKEN(sym_escape_sequence);
- if (('0' <= lookahead && lookahead <= '7')) ADVANCE(298);
- END_STATE();
- case 302:
- ACCEPT_TOKEN(sym_escape_sequence);
- if (('0' <= lookahead && lookahead <= '7')) ADVANCE(301);
- END_STATE();
- case 303:
- ACCEPT_TOKEN(sym_comment);
- END_STATE();
- case 304:
- ACCEPT_TOKEN(sym_comment);
- if (lookahead == '\n' ||
- lookahead == '\r' ||
- lookahead == 0x2028 ||
- lookahead == 0x2029) ADVANCE(204);
- if (lookahead == '#' ||
- ('A' <= lookahead && lookahead <= 'Z') ||
- ('a' <= lookahead && lookahead <= 'z')) ADVANCE(306);
- if (lookahead != 0) ADVANCE(207);
- END_STATE();
- case 305:
- ACCEPT_TOKEN(sym_comment);
- if (lookahead == '\n' ||
- lookahead == '\r' ||
- lookahead == 0x2028 ||
- lookahead == 0x2029) ADVANCE(210);
- if (lookahead == '#' ||
- ('A' <= lookahead && lookahead <= 'Z') ||
- ('a' <= lookahead && lookahead <= 'z')) ADVANCE(306);
- if (lookahead != 0) ADVANCE(213);
- END_STATE();
- case 306:
- ACCEPT_TOKEN(sym_comment);
- if (lookahead != 0 &&
- lookahead != '\n' &&
- lookahead != '\r' &&
- lookahead != 0x2028 &&
- lookahead != 0x2029) ADVANCE(306);
- END_STATE();
- case 307:
- ACCEPT_TOKEN(anon_sym_BQUOTE);
- END_STATE();
- case 308:
- ACCEPT_TOKEN(anon_sym_DOLLAR_LBRACE);
- END_STATE();
- case 309:
- ACCEPT_TOKEN(anon_sym_SLASH2);
- END_STATE();
- case 310:
- ACCEPT_TOKEN(sym_regex_pattern);
- if (lookahead == '\n') SKIP(41);
- if (lookahead == '/') ADVANCE(31);
- if (lookahead == '[') ADVANCE(90);
- if (lookahead == '\\') ADVANCE(148);
- if (set_contains(extras_character_set_1, 10, lookahead)) ADVANCE(310);
- if (lookahead != 0) ADVANCE(311);
- END_STATE();
- case 311:
- ACCEPT_TOKEN(sym_regex_pattern);
- if (lookahead == '[') ADVANCE(90);
- if (lookahead == '\\') ADVANCE(148);
- if (lookahead != 0 &&
- lookahead != '\n' &&
- lookahead != '/') ADVANCE(311);
- END_STATE();
- case 312:
- ACCEPT_TOKEN(sym_regex_flags);
- if (lookahead == '\\') ADVANCE(108);
- if (('a' <= lookahead && lookahead <= 'z')) ADVANCE(312);
- if (set_contains(sym_identifier_character_set_2, 15, lookahead)) ADVANCE(325);
- END_STATE();
- case 313:
- ACCEPT_TOKEN(sym_number);
- END_STATE();
- case 314:
- ACCEPT_TOKEN(sym_number);
- ADVANCE_MAP(
- '.', 322,
- '0', 316,
- '_', 125,
- 'n', 313,
- 'B', 121,
- 'b', 121,
- 'E', 119,
- 'e', 119,
- 'O', 122,
- 'o', 122,
- 'X', 130,
- 'x', 130,
- );
- if (('1' <= lookahead && lookahead <= '9')) ADVANCE(315);
- END_STATE();
- case 315:
- ACCEPT_TOKEN(sym_number);
- if (lookahead == '.') ADVANCE(322);
- if (lookahead == '_') ADVANCE(123);
- if (lookahead == 'n') ADVANCE(313);
- if (lookahead == 'E' ||
- lookahead == 'e') ADVANCE(119);
- if (('0' <= lookahead && lookahead <= '9')) ADVANCE(315);
- END_STATE();
- case 316:
- ACCEPT_TOKEN(sym_number);
- if (lookahead == '_') ADVANCE(125);
- if (lookahead == 'n') ADVANCE(313);
- if (('0' <= lookahead && lookahead <= '9')) ADVANCE(316);
- END_STATE();
- case 317:
- ACCEPT_TOKEN(sym_number);
- if (lookahead == '_') ADVANCE(121);
- if (lookahead == 'n') ADVANCE(313);
- if (lookahead == '0' ||
- lookahead == '1') ADVANCE(317);
- END_STATE();
- case 318:
- ACCEPT_TOKEN(sym_number);
- if (lookahead == '_') ADVANCE(122);
- if (lookahead == 'n') ADVANCE(313);
- if (('0' <= lookahead && lookahead <= '7')) ADVANCE(318);
- END_STATE();
- case 319:
- ACCEPT_TOKEN(sym_number);
- if (lookahead == '_') ADVANCE(130);
- if (lookahead == 'n') ADVANCE(313);
- if (('0' <= lookahead && lookahead <= '9') ||
- ('A' <= lookahead && lookahead <= 'F') ||
- ('a' <= lookahead && lookahead <= 'f')) ADVANCE(319);
- END_STATE();
- case 320:
- ACCEPT_TOKEN(sym_number);
- if (lookahead == '_') ADVANCE(124);
- if (lookahead == 'E' ||
- lookahead == 'e') ADVANCE(119);
- if (('0' <= lookahead && lookahead <= '9')) ADVANCE(320);
- END_STATE();
- case 321:
- ACCEPT_TOKEN(sym_number);
- if (lookahead == '_') ADVANCE(126);
- if (('0' <= lookahead && lookahead <= '9')) ADVANCE(321);
- END_STATE();
- case 322:
- ACCEPT_TOKEN(sym_number);
- if (lookahead == 'E' ||
- lookahead == 'e') ADVANCE(119);
- if (('0' <= lookahead && lookahead <= '9')) ADVANCE(320);
- END_STATE();
- case 323:
- ACCEPT_TOKEN(sym_identifier);
- if (lookahead == '-') ADVANCE(194);
- if (lookahead == '\\') ADVANCE(108);
- if (lookahead == '$' ||
- ('0' <= lookahead && lookahead <= '9') ||
- ('A' <= lookahead && lookahead <= 'Z') ||
- lookahead == '_' ||
- ('a' <= lookahead && lookahead <= 'z')) ADVANCE(323);
- if (set_contains(sym_identifier_character_set_2, 15, lookahead)) ADVANCE(325);
- END_STATE();
- case 324:
- ACCEPT_TOKEN(sym_identifier);
- if (lookahead == '\\') ADVANCE(108);
- if (lookahead == '{') ADVANCE(308);
- if (set_contains(sym_identifier_character_set_2, 15, lookahead)) ADVANCE(325);
- END_STATE();
- case 325:
- ACCEPT_TOKEN(sym_identifier);
- if (lookahead == '\\') ADVANCE(108);
- if (set_contains(sym_identifier_character_set_2, 15, lookahead)) ADVANCE(325);
- END_STATE();
- case 326:
- ACCEPT_TOKEN(sym_private_property_identifier);
- if (lookahead == '\\') ADVANCE(107);
- if (set_contains(sym_identifier_character_set_2, 15, lookahead)) ADVANCE(326);
- END_STATE();
- case 327:
- ACCEPT_TOKEN(anon_sym_AT);
- END_STATE();
- case 328:
- ACCEPT_TOKEN(anon_sym_QMARK);
- END_STATE();
- case 329:
- ACCEPT_TOKEN(anon_sym_QMARK);
- if (lookahead == '.') ADVANCE(215);
- END_STATE();
- case 330:
- ACCEPT_TOKEN(anon_sym_QMARK);
- if (lookahead == '.') ADVANCE(215);
- if (lookahead == '?') ADVANCE(282);
- END_STATE();
- case 331:
- ACCEPT_TOKEN(anon_sym_QMARK);
- if (lookahead == '.') ADVANCE(215);
- if (lookahead == '?') ADVANCE(281);
- END_STATE();
- case 332:
- ACCEPT_TOKEN(anon_sym_DASH_QMARK_COLON);
- END_STATE();
- case 333:
- ACCEPT_TOKEN(anon_sym_PLUS_QMARK_COLON);
- END_STATE();
- case 334:
- ACCEPT_TOKEN(anon_sym_QMARK_COLON);
- END_STATE();
- case 335:
- ACCEPT_TOKEN(anon_sym_LBRACE_PIPE);
- END_STATE();
- case 336:
- ACCEPT_TOKEN(anon_sym_PIPE_RBRACE);
- END_STATE();
- default:
- return false;
- }
-}
-
-static bool ts_lex_keywords(TSLexer *lexer, TSStateId state) {
- START_LEXER();
- eof = lexer->eof(lexer);
- switch (state) {
- case 0:
- ADVANCE_MAP(
- 'a', 1,
- 'b', 2,
- 'c', 3,
- 'd', 4,
- 'e', 5,
- 'f', 6,
- 'g', 7,
- 'i', 8,
- 'k', 9,
- 'l', 10,
- 'm', 11,
- 'n', 12,
- 'o', 13,
- 'p', 14,
- 'r', 15,
- 's', 16,
- 't', 17,
- 'u', 18,
- 'v', 19,
- 'w', 20,
- 'y', 21,
- );
- if (set_contains(extras_character_set_1, 10, lookahead)) SKIP(0);
- END_STATE();
- case 1:
- if (lookahead == 'b') ADVANCE(22);
- if (lookahead == 'c') ADVANCE(23);
- if (lookahead == 'n') ADVANCE(24);
- if (lookahead == 's') ADVANCE(25);
- if (lookahead == 'w') ADVANCE(26);
- END_STATE();
- case 2:
- if (lookahead == 'o') ADVANCE(27);
- if (lookahead == 'r') ADVANCE(28);
- END_STATE();
- case 3:
- if (lookahead == 'a') ADVANCE(29);
- if (lookahead == 'l') ADVANCE(30);
- if (lookahead == 'o') ADVANCE(31);
- END_STATE();
- case 4:
- if (lookahead == 'e') ADVANCE(32);
- if (lookahead == 'o') ADVANCE(33);
- END_STATE();
- case 5:
- if (lookahead == 'l') ADVANCE(34);
- if (lookahead == 'n') ADVANCE(35);
- if (lookahead == 'x') ADVANCE(36);
- END_STATE();
- case 6:
- if (lookahead == 'a') ADVANCE(37);
- if (lookahead == 'i') ADVANCE(38);
- if (lookahead == 'o') ADVANCE(39);
- if (lookahead == 'r') ADVANCE(40);
- if (lookahead == 'u') ADVANCE(41);
- END_STATE();
- case 7:
- if (lookahead == 'e') ADVANCE(42);
- if (lookahead == 'l') ADVANCE(43);
- END_STATE();
- case 8:
- if (lookahead == 'f') ADVANCE(44);
- if (lookahead == 'm') ADVANCE(45);
- if (lookahead == 'n') ADVANCE(46);
- if (lookahead == 's') ADVANCE(47);
- END_STATE();
- case 9:
- if (lookahead == 'e') ADVANCE(48);
- END_STATE();
- case 10:
- if (lookahead == 'e') ADVANCE(49);
- END_STATE();
- case 11:
- if (lookahead == 'o') ADVANCE(50);
- END_STATE();
- case 12:
- if (lookahead == 'a') ADVANCE(51);
- if (lookahead == 'e') ADVANCE(52);
- if (lookahead == 'u') ADVANCE(53);
- END_STATE();
- case 13:
- if (lookahead == 'b') ADVANCE(54);
- if (lookahead == 'f') ADVANCE(55);
- if (lookahead == 'v') ADVANCE(56);
- END_STATE();
- case 14:
- if (lookahead == 'r') ADVANCE(57);
- if (lookahead == 'u') ADVANCE(58);
- END_STATE();
- case 15:
- if (lookahead == 'e') ADVANCE(59);
- END_STATE();
- case 16:
- if (lookahead == 'a') ADVANCE(60);
- if (lookahead == 'e') ADVANCE(61);
- if (lookahead == 't') ADVANCE(62);
- if (lookahead == 'u') ADVANCE(63);
- if (lookahead == 'w') ADVANCE(64);
- if (lookahead == 'y') ADVANCE(65);
- END_STATE();
- case 17:
- if (lookahead == 'a') ADVANCE(66);
- if (lookahead == 'h') ADVANCE(67);
- if (lookahead == 'r') ADVANCE(68);
- if (lookahead == 'y') ADVANCE(69);
- END_STATE();
- case 18:
- if (lookahead == 'n') ADVANCE(70);
- if (lookahead == 's') ADVANCE(71);
- END_STATE();
- case 19:
- if (lookahead == 'a') ADVANCE(72);
- if (lookahead == 'o') ADVANCE(73);
- END_STATE();
- case 20:
- if (lookahead == 'h') ADVANCE(74);
- if (lookahead == 'i') ADVANCE(75);
- END_STATE();
- case 21:
- if (lookahead == 'i') ADVANCE(76);
- END_STATE();
- case 22:
- if (lookahead == 's') ADVANCE(77);
- END_STATE();
- case 23:
- if (lookahead == 'c') ADVANCE(78);
- END_STATE();
- case 24:
- if (lookahead == 'y') ADVANCE(79);
- END_STATE();
- case 25:
- ACCEPT_TOKEN(anon_sym_as);
- if (lookahead == 's') ADVANCE(80);
- if (lookahead == 'y') ADVANCE(81);
- END_STATE();
- case 26:
- if (lookahead == 'a') ADVANCE(82);
- END_STATE();
- case 27:
- if (lookahead == 'o') ADVANCE(83);
- END_STATE();
- case 28:
- if (lookahead == 'e') ADVANCE(84);
- END_STATE();
- case 29:
- if (lookahead == 's') ADVANCE(85);
- if (lookahead == 't') ADVANCE(86);
- END_STATE();
- case 30:
- if (lookahead == 'a') ADVANCE(87);
- END_STATE();
- case 31:
- if (lookahead == 'n') ADVANCE(88);
- END_STATE();
- case 32:
- if (lookahead == 'b') ADVANCE(89);
- if (lookahead == 'c') ADVANCE(90);
- if (lookahead == 'f') ADVANCE(91);
- if (lookahead == 'l') ADVANCE(92);
- END_STATE();
- case 33:
- ACCEPT_TOKEN(anon_sym_do);
- END_STATE();
- case 34:
- if (lookahead == 's') ADVANCE(93);
- END_STATE();
- case 35:
- if (lookahead == 'u') ADVANCE(94);
- END_STATE();
- case 36:
- if (lookahead == 'p') ADVANCE(95);
- if (lookahead == 't') ADVANCE(96);
- END_STATE();
- case 37:
- if (lookahead == 'l') ADVANCE(97);
- END_STATE();
- case 38:
- if (lookahead == 'n') ADVANCE(98);
- END_STATE();
- case 39:
- if (lookahead == 'r') ADVANCE(99);
- END_STATE();
- case 40:
- if (lookahead == 'o') ADVANCE(100);
- END_STATE();
- case 41:
- if (lookahead == 'n') ADVANCE(101);
- END_STATE();
- case 42:
- if (lookahead == 't') ADVANCE(102);
- END_STATE();
- case 43:
- if (lookahead == 'o') ADVANCE(103);
- END_STATE();
- case 44:
- ACCEPT_TOKEN(anon_sym_if);
- END_STATE();
- case 45:
- if (lookahead == 'p') ADVANCE(104);
- END_STATE();
- case 46:
- ACCEPT_TOKEN(anon_sym_in);
- if (lookahead == 'f') ADVANCE(105);
- if (lookahead == 's') ADVANCE(106);
- if (lookahead == 't') ADVANCE(107);
- END_STATE();
- case 47:
- ACCEPT_TOKEN(anon_sym_is);
- END_STATE();
- case 48:
- if (lookahead == 'y') ADVANCE(108);
- END_STATE();
- case 49:
- if (lookahead == 't') ADVANCE(109);
- END_STATE();
- case 50:
- if (lookahead == 'd') ADVANCE(110);
- END_STATE();
- case 51:
- if (lookahead == 'm') ADVANCE(111);
- END_STATE();
- case 52:
- if (lookahead == 'v') ADVANCE(112);
- if (lookahead == 'w') ADVANCE(113);
- END_STATE();
- case 53:
- if (lookahead == 'l') ADVANCE(114);
- if (lookahead == 'm') ADVANCE(115);
- END_STATE();
- case 54:
- if (lookahead == 'j') ADVANCE(116);
- END_STATE();
- case 55:
- ACCEPT_TOKEN(anon_sym_of);
- END_STATE();
- case 56:
- if (lookahead == 'e') ADVANCE(117);
- END_STATE();
- case 57:
- if (lookahead == 'i') ADVANCE(118);
- if (lookahead == 'o') ADVANCE(119);
- END_STATE();
- case 58:
- if (lookahead == 'b') ADVANCE(120);
- END_STATE();
- case 59:
- if (lookahead == 'a') ADVANCE(121);
- if (lookahead == 'q') ADVANCE(122);
- if (lookahead == 't') ADVANCE(123);
- END_STATE();
- case 60:
- if (lookahead == 't') ADVANCE(124);
- END_STATE();
- case 61:
- if (lookahead == 't') ADVANCE(125);
- END_STATE();
- case 62:
- if (lookahead == 'a') ADVANCE(126);
- if (lookahead == 'r') ADVANCE(127);
- END_STATE();
- case 63:
- if (lookahead == 'p') ADVANCE(128);
- END_STATE();
- case 64:
- if (lookahead == 'i') ADVANCE(129);
- END_STATE();
- case 65:
- if (lookahead == 'm') ADVANCE(130);
- END_STATE();
- case 66:
- if (lookahead == 'r') ADVANCE(131);
- END_STATE();
- case 67:
- if (lookahead == 'i') ADVANCE(132);
- if (lookahead == 'r') ADVANCE(133);
- END_STATE();
- case 68:
- if (lookahead == 'u') ADVANCE(134);
- if (lookahead == 'y') ADVANCE(135);
- END_STATE();
- case 69:
- if (lookahead == 'p') ADVANCE(136);
- END_STATE();
- case 70:
- if (lookahead == 'd') ADVANCE(137);
- if (lookahead == 'i') ADVANCE(138);
- if (lookahead == 'k') ADVANCE(139);
- END_STATE();
- case 71:
- if (lookahead == 'i') ADVANCE(140);
- END_STATE();
- case 72:
- if (lookahead == 'r') ADVANCE(141);
- END_STATE();
- case 73:
- if (lookahead == 'i') ADVANCE(142);
- END_STATE();
- case 74:
- if (lookahead == 'i') ADVANCE(143);
- END_STATE();
- case 75:
- if (lookahead == 't') ADVANCE(144);
- END_STATE();
- case 76:
- if (lookahead == 'e') ADVANCE(145);
- END_STATE();
- case 77:
- if (lookahead == 't') ADVANCE(146);
- END_STATE();
- case 78:
- if (lookahead == 'e') ADVANCE(147);
- END_STATE();
- case 79:
- ACCEPT_TOKEN(anon_sym_any);
- END_STATE();
- case 80:
- if (lookahead == 'e') ADVANCE(148);
- END_STATE();
- case 81:
- if (lookahead == 'n') ADVANCE(149);
- END_STATE();
- case 82:
- if (lookahead == 'i') ADVANCE(150);
- END_STATE();
- case 83:
- if (lookahead == 'l') ADVANCE(151);
- END_STATE();
- case 84:
- if (lookahead == 'a') ADVANCE(152);
- END_STATE();
- case 85:
- if (lookahead == 'e') ADVANCE(153);
- END_STATE();
- case 86:
- if (lookahead == 'c') ADVANCE(154);
- END_STATE();
- case 87:
- if (lookahead == 's') ADVANCE(155);
- END_STATE();
- case 88:
- if (lookahead == 's') ADVANCE(156);
- if (lookahead == 't') ADVANCE(157);
- END_STATE();
- case 89:
- if (lookahead == 'u') ADVANCE(158);
- END_STATE();
- case 90:
- if (lookahead == 'l') ADVANCE(159);
- END_STATE();
- case 91:
- if (lookahead == 'a') ADVANCE(160);
- END_STATE();
- case 92:
- if (lookahead == 'e') ADVANCE(161);
- END_STATE();
- case 93:
- if (lookahead == 'e') ADVANCE(162);
- END_STATE();
- case 94:
- if (lookahead == 'm') ADVANCE(163);
- END_STATE();
- case 95:
- if (lookahead == 'o') ADVANCE(164);
- END_STATE();
- case 96:
- if (lookahead == 'e') ADVANCE(165);
- END_STATE();
- case 97:
- if (lookahead == 's') ADVANCE(166);
- END_STATE();
- case 98:
- if (lookahead == 'a') ADVANCE(167);
- END_STATE();
- case 99:
- ACCEPT_TOKEN(anon_sym_for);
- END_STATE();
- case 100:
- if (lookahead == 'm') ADVANCE(168);
- END_STATE();
- case 101:
- if (lookahead == 'c') ADVANCE(169);
- END_STATE();
- case 102:
- ACCEPT_TOKEN(anon_sym_get);
- END_STATE();
- case 103:
- if (lookahead == 'b') ADVANCE(170);
- END_STATE();
- case 104:
- if (lookahead == 'l') ADVANCE(171);
- if (lookahead == 'o') ADVANCE(172);
- END_STATE();
- case 105:
- if (lookahead == 'e') ADVANCE(173);
- END_STATE();
- case 106:
- if (lookahead == 't') ADVANCE(174);
- END_STATE();
- case 107:
- if (lookahead == 'e') ADVANCE(175);
- END_STATE();
- case 108:
- if (lookahead == 'o') ADVANCE(176);
- END_STATE();
- case 109:
- ACCEPT_TOKEN(anon_sym_let);
- END_STATE();
- case 110:
- if (lookahead == 'u') ADVANCE(177);
- END_STATE();
- case 111:
- if (lookahead == 'e') ADVANCE(178);
- END_STATE();
- case 112:
- if (lookahead == 'e') ADVANCE(179);
- END_STATE();
- case 113:
- ACCEPT_TOKEN(anon_sym_new);
- END_STATE();
- case 114:
- if (lookahead == 'l') ADVANCE(180);
- END_STATE();
- case 115:
- if (lookahead == 'b') ADVANCE(181);
- END_STATE();
- case 116:
- if (lookahead == 'e') ADVANCE(182);
- END_STATE();
- case 117:
- if (lookahead == 'r') ADVANCE(183);
- END_STATE();
- case 118:
- if (lookahead == 'v') ADVANCE(184);
- END_STATE();
- case 119:
- if (lookahead == 't') ADVANCE(185);
- END_STATE();
- case 120:
- if (lookahead == 'l') ADVANCE(186);
- END_STATE();
- case 121:
- if (lookahead == 'd') ADVANCE(187);
- END_STATE();
- case 122:
- if (lookahead == 'u') ADVANCE(188);
- END_STATE();
- case 123:
- if (lookahead == 'u') ADVANCE(189);
- END_STATE();
- case 124:
- if (lookahead == 'i') ADVANCE(190);
- END_STATE();
- case 125:
- ACCEPT_TOKEN(anon_sym_set);
- END_STATE();
- case 126:
- if (lookahead == 't') ADVANCE(191);
- END_STATE();
- case 127:
- if (lookahead == 'i') ADVANCE(192);
- END_STATE();
- case 128:
- if (lookahead == 'e') ADVANCE(193);
- END_STATE();
- case 129:
- if (lookahead == 't') ADVANCE(194);
- END_STATE();
- case 130:
- if (lookahead == 'b') ADVANCE(195);
- END_STATE();
- case 131:
- if (lookahead == 'g') ADVANCE(196);
- END_STATE();
- case 132:
- if (lookahead == 's') ADVANCE(197);
- END_STATE();
- case 133:
- if (lookahead == 'o') ADVANCE(198);
- END_STATE();
- case 134:
- if (lookahead == 'e') ADVANCE(199);
- END_STATE();
- case 135:
- ACCEPT_TOKEN(anon_sym_try);
- END_STATE();
- case 136:
- if (lookahead == 'e') ADVANCE(200);
- END_STATE();
- case 137:
- if (lookahead == 'e') ADVANCE(201);
- END_STATE();
- case 138:
- if (lookahead == 'q') ADVANCE(202);
- END_STATE();
- case 139:
- if (lookahead == 'n') ADVANCE(203);
- END_STATE();
- case 140:
- if (lookahead == 'n') ADVANCE(204);
- END_STATE();
- case 141:
- ACCEPT_TOKEN(anon_sym_var);
- END_STATE();
- case 142:
- if (lookahead == 'd') ADVANCE(205);
- END_STATE();
- case 143:
- if (lookahead == 'l') ADVANCE(206);
- END_STATE();
- case 144:
- if (lookahead == 'h') ADVANCE(207);
- END_STATE();
- case 145:
- if (lookahead == 'l') ADVANCE(208);
- END_STATE();
- case 146:
- if (lookahead == 'r') ADVANCE(209);
- END_STATE();
- case 147:
- if (lookahead == 's') ADVANCE(210);
- END_STATE();
- case 148:
- if (lookahead == 'r') ADVANCE(211);
- END_STATE();
- case 149:
- if (lookahead == 'c') ADVANCE(212);
- END_STATE();
- case 150:
- if (lookahead == 't') ADVANCE(213);
- END_STATE();
- case 151:
- if (lookahead == 'e') ADVANCE(214);
- END_STATE();
- case 152:
- if (lookahead == 'k') ADVANCE(215);
- END_STATE();
- case 153:
- ACCEPT_TOKEN(anon_sym_case);
- END_STATE();
- case 154:
- if (lookahead == 'h') ADVANCE(216);
- END_STATE();
- case 155:
- if (lookahead == 's') ADVANCE(217);
- END_STATE();
- case 156:
- if (lookahead == 't') ADVANCE(218);
- END_STATE();
- case 157:
- if (lookahead == 'i') ADVANCE(219);
- END_STATE();
- case 158:
- if (lookahead == 'g') ADVANCE(220);
- END_STATE();
- case 159:
- if (lookahead == 'a') ADVANCE(221);
- END_STATE();
- case 160:
- if (lookahead == 'u') ADVANCE(222);
- END_STATE();
- case 161:
- if (lookahead == 't') ADVANCE(223);
- END_STATE();
- case 162:
- ACCEPT_TOKEN(anon_sym_else);
- END_STATE();
- case 163:
- ACCEPT_TOKEN(anon_sym_enum);
- END_STATE();
- case 164:
- if (lookahead == 'r') ADVANCE(224);
- END_STATE();
- case 165:
- if (lookahead == 'n') ADVANCE(225);
- END_STATE();
- case 166:
- if (lookahead == 'e') ADVANCE(226);
- END_STATE();
- case 167:
- if (lookahead == 'l') ADVANCE(227);
- END_STATE();
- case 168:
- ACCEPT_TOKEN(anon_sym_from);
- END_STATE();
- case 169:
- if (lookahead == 't') ADVANCE(228);
- END_STATE();
- case 170:
- if (lookahead == 'a') ADVANCE(229);
- END_STATE();
- case 171:
- if (lookahead == 'e') ADVANCE(230);
- END_STATE();
- case 172:
- if (lookahead == 'r') ADVANCE(231);
- END_STATE();
- case 173:
- if (lookahead == 'r') ADVANCE(232);
- END_STATE();
- case 174:
- if (lookahead == 'a') ADVANCE(233);
- END_STATE();
- case 175:
- if (lookahead == 'r') ADVANCE(234);
- END_STATE();
- case 176:
- if (lookahead == 'f') ADVANCE(235);
- END_STATE();
- case 177:
- if (lookahead == 'l') ADVANCE(236);
- END_STATE();
- case 178:
- if (lookahead == 's') ADVANCE(237);
- END_STATE();
- case 179:
- if (lookahead == 'r') ADVANCE(238);
- END_STATE();
- case 180:
- ACCEPT_TOKEN(sym_null);
- END_STATE();
- case 181:
- if (lookahead == 'e') ADVANCE(239);
- END_STATE();
- case 182:
- if (lookahead == 'c') ADVANCE(240);
- END_STATE();
- case 183:
- if (lookahead == 'r') ADVANCE(241);
- END_STATE();
- case 184:
- if (lookahead == 'a') ADVANCE(242);
- END_STATE();
- case 185:
- if (lookahead == 'e') ADVANCE(243);
- END_STATE();
- case 186:
- if (lookahead == 'i') ADVANCE(244);
- END_STATE();
- case 187:
- if (lookahead == 'o') ADVANCE(245);
- END_STATE();
- case 188:
- if (lookahead == 'i') ADVANCE(246);
- END_STATE();
- case 189:
- if (lookahead == 'r') ADVANCE(247);
- END_STATE();
- case 190:
- if (lookahead == 's') ADVANCE(248);
- END_STATE();
- case 191:
- if (lookahead == 'i') ADVANCE(249);
- END_STATE();
- case 192:
- if (lookahead == 'n') ADVANCE(250);
- END_STATE();
- case 193:
- if (lookahead == 'r') ADVANCE(251);
- END_STATE();
- case 194:
- if (lookahead == 'c') ADVANCE(252);
- END_STATE();
- case 195:
- if (lookahead == 'o') ADVANCE(253);
- END_STATE();
- case 196:
- if (lookahead == 'e') ADVANCE(254);
- END_STATE();
- case 197:
- ACCEPT_TOKEN(sym_this);
- END_STATE();
- case 198:
- if (lookahead == 'w') ADVANCE(255);
- END_STATE();
- case 199:
- ACCEPT_TOKEN(sym_true);
- END_STATE();
- case 200:
- ACCEPT_TOKEN(anon_sym_type);
- if (lookahead == 'o') ADVANCE(256);
- END_STATE();
- case 201:
- if (lookahead == 'f') ADVANCE(257);
- END_STATE();
- case 202:
- if (lookahead == 'u') ADVANCE(258);
- END_STATE();
- case 203:
- if (lookahead == 'o') ADVANCE(259);
- END_STATE();
- case 204:
- if (lookahead == 'g') ADVANCE(260);
- END_STATE();
- case 205:
- ACCEPT_TOKEN(anon_sym_void);
- END_STATE();
- case 206:
- if (lookahead == 'e') ADVANCE(261);
- END_STATE();
- case 207:
- ACCEPT_TOKEN(anon_sym_with);
- END_STATE();
- case 208:
- if (lookahead == 'd') ADVANCE(262);
- END_STATE();
- case 209:
- if (lookahead == 'a') ADVANCE(263);
- END_STATE();
- case 210:
- if (lookahead == 's') ADVANCE(264);
- END_STATE();
- case 211:
- if (lookahead == 't') ADVANCE(265);
- END_STATE();
- case 212:
- ACCEPT_TOKEN(anon_sym_async);
- END_STATE();
- case 213:
- ACCEPT_TOKEN(anon_sym_await);
- END_STATE();
- case 214:
- if (lookahead == 'a') ADVANCE(266);
- END_STATE();
- case 215:
- ACCEPT_TOKEN(anon_sym_break);
- END_STATE();
- case 216:
- ACCEPT_TOKEN(anon_sym_catch);
- END_STATE();
- case 217:
- ACCEPT_TOKEN(anon_sym_class);
- END_STATE();
- case 218:
- ACCEPT_TOKEN(anon_sym_const);
- END_STATE();
- case 219:
- if (lookahead == 'n') ADVANCE(267);
- END_STATE();
- case 220:
- if (lookahead == 'g') ADVANCE(268);
- END_STATE();
- case 221:
- if (lookahead == 'r') ADVANCE(269);
- END_STATE();
- case 222:
- if (lookahead == 'l') ADVANCE(270);
- END_STATE();
- case 223:
- if (lookahead == 'e') ADVANCE(271);
- END_STATE();
- case 224:
- if (lookahead == 't') ADVANCE(272);
- END_STATE();
- case 225:
- if (lookahead == 'd') ADVANCE(273);
- END_STATE();
- case 226:
- ACCEPT_TOKEN(sym_false);
- END_STATE();
- case 227:
- if (lookahead == 'l') ADVANCE(274);
- END_STATE();
- case 228:
- if (lookahead == 'i') ADVANCE(275);
- END_STATE();
- case 229:
- if (lookahead == 'l') ADVANCE(276);
- END_STATE();
- case 230:
- if (lookahead == 'm') ADVANCE(277);
- END_STATE();
- case 231:
- if (lookahead == 't') ADVANCE(278);
- END_STATE();
- case 232:
- ACCEPT_TOKEN(anon_sym_infer);
- END_STATE();
- case 233:
- if (lookahead == 'n') ADVANCE(279);
- END_STATE();
- case 234:
- if (lookahead == 'f') ADVANCE(280);
- END_STATE();
- case 235:
- ACCEPT_TOKEN(anon_sym_keyof);
- END_STATE();
- case 236:
- if (lookahead == 'e') ADVANCE(281);
- END_STATE();
- case 237:
- if (lookahead == 'p') ADVANCE(282);
- END_STATE();
- case 238:
- ACCEPT_TOKEN(anon_sym_never);
- END_STATE();
- case 239:
- if (lookahead == 'r') ADVANCE(283);
- END_STATE();
- case 240:
- if (lookahead == 't') ADVANCE(284);
- END_STATE();
- case 241:
- if (lookahead == 'i') ADVANCE(285);
- END_STATE();
- case 242:
- if (lookahead == 't') ADVANCE(286);
- END_STATE();
- case 243:
- if (lookahead == 'c') ADVANCE(287);
- END_STATE();
- case 244:
- if (lookahead == 'c') ADVANCE(288);
- END_STATE();
- case 245:
- if (lookahead == 'n') ADVANCE(289);
- END_STATE();
- case 246:
- if (lookahead == 'r') ADVANCE(290);
- END_STATE();
- case 247:
- if (lookahead == 'n') ADVANCE(291);
- END_STATE();
- case 248:
- if (lookahead == 'f') ADVANCE(292);
- END_STATE();
- case 249:
- if (lookahead == 'c') ADVANCE(293);
- END_STATE();
- case 250:
- if (lookahead == 'g') ADVANCE(294);
- END_STATE();
- case 251:
- ACCEPT_TOKEN(sym_super);
- END_STATE();
- case 252:
- if (lookahead == 'h') ADVANCE(295);
- END_STATE();
- case 253:
- if (lookahead == 'l') ADVANCE(296);
- END_STATE();
- case 254:
- if (lookahead == 't') ADVANCE(297);
- END_STATE();
- case 255:
- ACCEPT_TOKEN(anon_sym_throw);
- END_STATE();
- case 256:
- if (lookahead == 'f') ADVANCE(298);
- END_STATE();
- case 257:
- if (lookahead == 'i') ADVANCE(299);
- END_STATE();
- case 258:
- if (lookahead == 'e') ADVANCE(300);
- END_STATE();
- case 259:
- if (lookahead == 'w') ADVANCE(301);
- END_STATE();
- case 260:
- ACCEPT_TOKEN(anon_sym_using);
- END_STATE();
- case 261:
- ACCEPT_TOKEN(anon_sym_while);
- END_STATE();
- case 262:
- ACCEPT_TOKEN(anon_sym_yield);
- END_STATE();
- case 263:
- if (lookahead == 'c') ADVANCE(302);
- END_STATE();
- case 264:
- if (lookahead == 'o') ADVANCE(303);
- END_STATE();
- case 265:
- ACCEPT_TOKEN(anon_sym_assert);
- if (lookahead == 's') ADVANCE(304);
- END_STATE();
- case 266:
- if (lookahead == 'n') ADVANCE(305);
- END_STATE();
- case 267:
- if (lookahead == 'u') ADVANCE(306);
- END_STATE();
- case 268:
- if (lookahead == 'e') ADVANCE(307);
- END_STATE();
- case 269:
- if (lookahead == 'e') ADVANCE(308);
- END_STATE();
- case 270:
- if (lookahead == 't') ADVANCE(309);
- END_STATE();
- case 271:
- ACCEPT_TOKEN(anon_sym_delete);
- END_STATE();
- case 272:
- ACCEPT_TOKEN(anon_sym_export);
- END_STATE();
- case 273:
- if (lookahead == 's') ADVANCE(310);
- END_STATE();
- case 274:
- if (lookahead == 'y') ADVANCE(311);
- END_STATE();
- case 275:
- if (lookahead == 'o') ADVANCE(312);
- END_STATE();
- case 276:
- ACCEPT_TOKEN(anon_sym_global);
- END_STATE();
- case 277:
- if (lookahead == 'e') ADVANCE(313);
- END_STATE();
- case 278:
- ACCEPT_TOKEN(anon_sym_import);
- END_STATE();
- case 279:
- if (lookahead == 'c') ADVANCE(314);
- END_STATE();
- case 280:
- if (lookahead == 'a') ADVANCE(315);
- END_STATE();
- case 281:
- ACCEPT_TOKEN(anon_sym_module);
- END_STATE();
- case 282:
- if (lookahead == 'a') ADVANCE(316);
- END_STATE();
- case 283:
- ACCEPT_TOKEN(anon_sym_number);
- END_STATE();
- case 284:
- ACCEPT_TOKEN(anon_sym_object);
- END_STATE();
- case 285:
- if (lookahead == 'd') ADVANCE(317);
- END_STATE();
- case 286:
- if (lookahead == 'e') ADVANCE(318);
- END_STATE();
- case 287:
- if (lookahead == 't') ADVANCE(319);
- END_STATE();
- case 288:
- ACCEPT_TOKEN(anon_sym_public);
- END_STATE();
- case 289:
- if (lookahead == 'l') ADVANCE(320);
- END_STATE();
- case 290:
- if (lookahead == 'e') ADVANCE(321);
- END_STATE();
- case 291:
- ACCEPT_TOKEN(anon_sym_return);
- END_STATE();
- case 292:
- if (lookahead == 'i') ADVANCE(322);
- END_STATE();
- case 293:
- ACCEPT_TOKEN(anon_sym_static);
- END_STATE();
- case 294:
- ACCEPT_TOKEN(anon_sym_string);
- END_STATE();
- case 295:
- ACCEPT_TOKEN(anon_sym_switch);
- END_STATE();
- case 296:
- ACCEPT_TOKEN(anon_sym_symbol);
- END_STATE();
- case 297:
- ACCEPT_TOKEN(anon_sym_target);
- END_STATE();
- case 298:
- ACCEPT_TOKEN(anon_sym_typeof);
- END_STATE();
- case 299:
- if (lookahead == 'n') ADVANCE(323);
- END_STATE();
- case 300:
- ACCEPT_TOKEN(anon_sym_unique);
- END_STATE();
- case 301:
- if (lookahead == 'n') ADVANCE(324);
- END_STATE();
- case 302:
- if (lookahead == 't') ADVANCE(325);
- END_STATE();
- case 303:
- if (lookahead == 'r') ADVANCE(326);
- END_STATE();
- case 304:
- ACCEPT_TOKEN(anon_sym_asserts);
- END_STATE();
- case 305:
- ACCEPT_TOKEN(anon_sym_boolean);
- END_STATE();
- case 306:
- if (lookahead == 'e') ADVANCE(327);
- END_STATE();
- case 307:
- if (lookahead == 'r') ADVANCE(328);
- END_STATE();
- case 308:
- ACCEPT_TOKEN(anon_sym_declare);
- END_STATE();
- case 309:
- ACCEPT_TOKEN(anon_sym_default);
- END_STATE();
- case 310:
- ACCEPT_TOKEN(anon_sym_extends);
- END_STATE();
- case 311:
- ACCEPT_TOKEN(anon_sym_finally);
- END_STATE();
- case 312:
- if (lookahead == 'n') ADVANCE(329);
- END_STATE();
- case 313:
- if (lookahead == 'n') ADVANCE(330);
- END_STATE();
- case 314:
- if (lookahead == 'e') ADVANCE(331);
- END_STATE();
- case 315:
- if (lookahead == 'c') ADVANCE(332);
- END_STATE();
- case 316:
- if (lookahead == 'c') ADVANCE(333);
- END_STATE();
- case 317:
- if (lookahead == 'e') ADVANCE(334);
- END_STATE();
- case 318:
- ACCEPT_TOKEN(anon_sym_private);
- END_STATE();
- case 319:
- if (lookahead == 'e') ADVANCE(335);
- END_STATE();
- case 320:
- if (lookahead == 'y') ADVANCE(336);
- END_STATE();
- case 321:
- ACCEPT_TOKEN(anon_sym_require);
- END_STATE();
- case 322:
- if (lookahead == 'e') ADVANCE(337);
- END_STATE();
- case 323:
- if (lookahead == 'e') ADVANCE(338);
- END_STATE();
- case 324:
- ACCEPT_TOKEN(anon_sym_unknown);
- END_STATE();
- case 325:
- ACCEPT_TOKEN(anon_sym_abstract);
- END_STATE();
- case 326:
- ACCEPT_TOKEN(anon_sym_accessor);
- END_STATE();
- case 327:
- ACCEPT_TOKEN(anon_sym_continue);
- END_STATE();
- case 328:
- ACCEPT_TOKEN(anon_sym_debugger);
- END_STATE();
- case 329:
- ACCEPT_TOKEN(anon_sym_function);
- END_STATE();
- case 330:
- if (lookahead == 't') ADVANCE(339);
- END_STATE();
- case 331:
- if (lookahead == 'o') ADVANCE(340);
- END_STATE();
- case 332:
- if (lookahead == 'e') ADVANCE(341);
- END_STATE();
- case 333:
- if (lookahead == 'e') ADVANCE(342);
- END_STATE();
- case 334:
- ACCEPT_TOKEN(anon_sym_override);
- END_STATE();
- case 335:
- if (lookahead == 'd') ADVANCE(343);
- END_STATE();
- case 336:
- ACCEPT_TOKEN(anon_sym_readonly);
- END_STATE();
- case 337:
- if (lookahead == 's') ADVANCE(344);
- END_STATE();
- case 338:
- if (lookahead == 'd') ADVANCE(345);
- END_STATE();
- case 339:
- if (lookahead == 's') ADVANCE(346);
- END_STATE();
- case 340:
- if (lookahead == 'f') ADVANCE(347);
- END_STATE();
- case 341:
- ACCEPT_TOKEN(anon_sym_interface);
- END_STATE();
- case 342:
- ACCEPT_TOKEN(anon_sym_namespace);
- END_STATE();
- case 343:
- ACCEPT_TOKEN(anon_sym_protected);
- END_STATE();
- case 344:
- ACCEPT_TOKEN(anon_sym_satisfies);
- END_STATE();
- case 345:
- ACCEPT_TOKEN(sym_undefined);
- END_STATE();
- case 346:
- ACCEPT_TOKEN(anon_sym_implements);
- END_STATE();
- case 347:
- ACCEPT_TOKEN(anon_sym_instanceof);
- END_STATE();
- default:
- return false;
- }
-}
-
-static const TSLexMode ts_lex_modes[STATE_COUNT] = {
- [0] = {.lex_state = 0, .external_lex_state = 1},
- [1] = {.lex_state = 151, .external_lex_state = 2},
- [2] = {.lex_state = 5, .external_lex_state = 3},
- [3] = {.lex_state = 5, .external_lex_state = 3},
- [4] = {.lex_state = 151, .external_lex_state = 2},
- [5] = {.lex_state = 151, .external_lex_state = 2},
- [6] = {.lex_state = 151, .external_lex_state = 2},
- [7] = {.lex_state = 151, .external_lex_state = 2},
- [8] = {.lex_state = 151, .external_lex_state = 2},
- [9] = {.lex_state = 151, .external_lex_state = 2},
- [10] = {.lex_state = 151, .external_lex_state = 2},
- [11] = {.lex_state = 151, .external_lex_state = 2},
- [12] = {.lex_state = 151, .external_lex_state = 2},
- [13] = {.lex_state = 151, .external_lex_state = 2},
- [14] = {.lex_state = 151, .external_lex_state = 2},
- [15] = {.lex_state = 151, .external_lex_state = 2},
- [16] = {.lex_state = 151, .external_lex_state = 2},
- [17] = {.lex_state = 151, .external_lex_state = 2},
- [18] = {.lex_state = 151, .external_lex_state = 2},
- [19] = {.lex_state = 151, .external_lex_state = 2},
- [20] = {.lex_state = 151, .external_lex_state = 2},
- [21] = {.lex_state = 151, .external_lex_state = 2},
- [22] = {.lex_state = 151, .external_lex_state = 2},
- [23] = {.lex_state = 151, .external_lex_state = 2},
- [24] = {.lex_state = 151, .external_lex_state = 2},
- [25] = {.lex_state = 151, .external_lex_state = 2},
- [26] = {.lex_state = 151, .external_lex_state = 2},
- [27] = {.lex_state = 151, .external_lex_state = 2},
- [28] = {.lex_state = 151, .external_lex_state = 2},
- [29] = {.lex_state = 151, .external_lex_state = 2},
- [30] = {.lex_state = 151, .external_lex_state = 2},
- [31] = {.lex_state = 151, .external_lex_state = 2},
- [32] = {.lex_state = 151, .external_lex_state = 2},
- [33] = {.lex_state = 151, .external_lex_state = 2},
- [34] = {.lex_state = 151, .external_lex_state = 2},
- [35] = {.lex_state = 151, .external_lex_state = 2},
- [36] = {.lex_state = 151, .external_lex_state = 2},
- [37] = {.lex_state = 151, .external_lex_state = 2},
- [38] = {.lex_state = 151, .external_lex_state = 2},
- [39] = {.lex_state = 151, .external_lex_state = 2},
- [40] = {.lex_state = 151, .external_lex_state = 2},
- [41] = {.lex_state = 151, .external_lex_state = 2},
- [42] = {.lex_state = 151, .external_lex_state = 2},
- [43] = {.lex_state = 151, .external_lex_state = 2},
- [44] = {.lex_state = 12, .external_lex_state = 2},
- [45] = {.lex_state = 151, .external_lex_state = 2},
- [46] = {.lex_state = 151, .external_lex_state = 2},
- [47] = {.lex_state = 151, .external_lex_state = 2},
- [48] = {.lex_state = 151, .external_lex_state = 2},
- [49] = {.lex_state = 12, .external_lex_state = 2},
- [50] = {.lex_state = 12, .external_lex_state = 2},
- [51] = {.lex_state = 12, .external_lex_state = 2},
- [52] = {.lex_state = 151, .external_lex_state = 2},
- [53] = {.lex_state = 12, .external_lex_state = 2},
- [54] = {.lex_state = 12, .external_lex_state = 2},
- [55] = {.lex_state = 12, .external_lex_state = 2},
- [56] = {.lex_state = 12, .external_lex_state = 2},
- [57] = {.lex_state = 12, .external_lex_state = 2},
- [58] = {.lex_state = 12, .external_lex_state = 2},
- [59] = {.lex_state = 151, .external_lex_state = 2},
- [60] = {.lex_state = 151, .external_lex_state = 2},
- [61] = {.lex_state = 151, .external_lex_state = 2},
- [62] = {.lex_state = 151, .external_lex_state = 2},
- [63] = {.lex_state = 151, .external_lex_state = 2},
- [64] = {.lex_state = 151, .external_lex_state = 2},
- [65] = {.lex_state = 151, .external_lex_state = 2},
- [66] = {.lex_state = 151, .external_lex_state = 2},
- [67] = {.lex_state = 151, .external_lex_state = 2},
- [68] = {.lex_state = 151, .external_lex_state = 2},
- [69] = {.lex_state = 4, .external_lex_state = 4},
- [70] = {.lex_state = 4, .external_lex_state = 4},
- [71] = {.lex_state = 4, .external_lex_state = 4},
- [72] = {.lex_state = 12, .external_lex_state = 2},
- [73] = {.lex_state = 4, .external_lex_state = 3},
- [74] = {.lex_state = 4, .external_lex_state = 3},
- [75] = {.lex_state = 4, .external_lex_state = 3},
- [76] = {.lex_state = 4, .external_lex_state = 3},
- [77] = {.lex_state = 4, .external_lex_state = 3},
- [78] = {.lex_state = 12, .external_lex_state = 2},
- [79] = {.lex_state = 4, .external_lex_state = 3},
- [80] = {.lex_state = 12, .external_lex_state = 2},
- [81] = {.lex_state = 4, .external_lex_state = 3},
- [82] = {.lex_state = 4, .external_lex_state = 3},
- [83] = {.lex_state = 4, .external_lex_state = 3},
- [84] = {.lex_state = 12, .external_lex_state = 2},
- [85] = {.lex_state = 4, .external_lex_state = 3},
- [86] = {.lex_state = 12, .external_lex_state = 2},
- [87] = {.lex_state = 12, .external_lex_state = 2},
- [88] = {.lex_state = 12, .external_lex_state = 2},
- [89] = {.lex_state = 12, .external_lex_state = 2},
- [90] = {.lex_state = 4, .external_lex_state = 3},
- [91] = {.lex_state = 4, .external_lex_state = 3},
- [92] = {.lex_state = 4, .external_lex_state = 3},
- [93] = {.lex_state = 4, .external_lex_state = 3},
- [94] = {.lex_state = 4, .external_lex_state = 3},
- [95] = {.lex_state = 4, .external_lex_state = 4},
- [96] = {.lex_state = 4, .external_lex_state = 4},
- [97] = {.lex_state = 4, .external_lex_state = 4},
- [98] = {.lex_state = 4, .external_lex_state = 4},
- [99] = {.lex_state = 4, .external_lex_state = 4},
- [100] = {.lex_state = 4, .external_lex_state = 4},
- [101] = {.lex_state = 4, .external_lex_state = 3},
- [102] = {.lex_state = 4, .external_lex_state = 4},
- [103] = {.lex_state = 4, .external_lex_state = 4},
- [104] = {.lex_state = 4, .external_lex_state = 4},
- [105] = {.lex_state = 4, .external_lex_state = 4},
- [106] = {.lex_state = 4, .external_lex_state = 3},
- [107] = {.lex_state = 4, .external_lex_state = 3},
- [108] = {.lex_state = 4, .external_lex_state = 3},
- [109] = {.lex_state = 4, .external_lex_state = 3},
- [110] = {.lex_state = 4, .external_lex_state = 3},
- [111] = {.lex_state = 4, .external_lex_state = 4},
- [112] = {.lex_state = 4, .external_lex_state = 3},
- [113] = {.lex_state = 4, .external_lex_state = 3},
- [114] = {.lex_state = 4, .external_lex_state = 3},
- [115] = {.lex_state = 4, .external_lex_state = 4},
- [116] = {.lex_state = 4, .external_lex_state = 4},
- [117] = {.lex_state = 4, .external_lex_state = 3},
- [118] = {.lex_state = 4, .external_lex_state = 3},
- [119] = {.lex_state = 4, .external_lex_state = 3},
- [120] = {.lex_state = 4, .external_lex_state = 3},
- [121] = {.lex_state = 4, .external_lex_state = 3},
- [122] = {.lex_state = 4, .external_lex_state = 3},
- [123] = {.lex_state = 4, .external_lex_state = 3},
- [124] = {.lex_state = 4, .external_lex_state = 3},
- [125] = {.lex_state = 4, .external_lex_state = 3},
- [126] = {.lex_state = 4, .external_lex_state = 3},
- [127] = {.lex_state = 4, .external_lex_state = 3},
- [128] = {.lex_state = 4, .external_lex_state = 3},
- [129] = {.lex_state = 4, .external_lex_state = 3},
- [130] = {.lex_state = 4, .external_lex_state = 3},
- [131] = {.lex_state = 4, .external_lex_state = 3},
- [132] = {.lex_state = 4, .external_lex_state = 3},
- [133] = {.lex_state = 4, .external_lex_state = 3},
- [134] = {.lex_state = 4, .external_lex_state = 3},
- [135] = {.lex_state = 4, .external_lex_state = 3},
- [136] = {.lex_state = 4, .external_lex_state = 3},
- [137] = {.lex_state = 4, .external_lex_state = 3},
- [138] = {.lex_state = 4, .external_lex_state = 3},
- [139] = {.lex_state = 4, .external_lex_state = 3},
- [140] = {.lex_state = 4, .external_lex_state = 3},
- [141] = {.lex_state = 12, .external_lex_state = 2},
- [142] = {.lex_state = 4, .external_lex_state = 3},
- [143] = {.lex_state = 12, .external_lex_state = 2},
- [144] = {.lex_state = 12, .external_lex_state = 2},
- [145] = {.lex_state = 12, .external_lex_state = 2},
- [146] = {.lex_state = 12, .external_lex_state = 2},
- [147] = {.lex_state = 12, .external_lex_state = 2},
- [148] = {.lex_state = 12, .external_lex_state = 2},
- [149] = {.lex_state = 12, .external_lex_state = 2},
- [150] = {.lex_state = 12, .external_lex_state = 2},
- [151] = {.lex_state = 12, .external_lex_state = 2},
- [152] = {.lex_state = 12, .external_lex_state = 2},
- [153] = {.lex_state = 12, .external_lex_state = 2},
- [154] = {.lex_state = 12, .external_lex_state = 2},
- [155] = {.lex_state = 150, .external_lex_state = 3},
- [156] = {.lex_state = 150, .external_lex_state = 4},
- [157] = {.lex_state = 150, .external_lex_state = 4},
- [158] = {.lex_state = 150, .external_lex_state = 4},
- [159] = {.lex_state = 150, .external_lex_state = 3},
- [160] = {.lex_state = 150, .external_lex_state = 3},
- [161] = {.lex_state = 150, .external_lex_state = 3},
- [162] = {.lex_state = 150, .external_lex_state = 3},
- [163] = {.lex_state = 150, .external_lex_state = 3},
- [164] = {.lex_state = 6, .external_lex_state = 3},
- [165] = {.lex_state = 151, .external_lex_state = 2},
- [166] = {.lex_state = 151, .external_lex_state = 2},
- [167] = {.lex_state = 151, .external_lex_state = 2},
- [168] = {.lex_state = 151, .external_lex_state = 2},
- [169] = {.lex_state = 151, .external_lex_state = 2},
- [170] = {.lex_state = 151, .external_lex_state = 2},
- [171] = {.lex_state = 151, .external_lex_state = 2},
- [172] = {.lex_state = 151, .external_lex_state = 2},
- [173] = {.lex_state = 6, .external_lex_state = 4},
- [174] = {.lex_state = 6, .external_lex_state = 4},
- [175] = {.lex_state = 6, .external_lex_state = 3},
- [176] = {.lex_state = 6, .external_lex_state = 3},
- [177] = {.lex_state = 6, .external_lex_state = 3},
- [178] = {.lex_state = 6, .external_lex_state = 3},
- [179] = {.lex_state = 6, .external_lex_state = 4},
- [180] = {.lex_state = 6, .external_lex_state = 3},
- [181] = {.lex_state = 6, .external_lex_state = 3},
- [182] = {.lex_state = 6, .external_lex_state = 3},
- [183] = {.lex_state = 6, .external_lex_state = 3},
- [184] = {.lex_state = 6, .external_lex_state = 3},
- [185] = {.lex_state = 6, .external_lex_state = 3},
- [186] = {.lex_state = 151, .external_lex_state = 2},
- [187] = {.lex_state = 151, .external_lex_state = 2},
- [188] = {.lex_state = 151, .external_lex_state = 2},
- [189] = {.lex_state = 151, .external_lex_state = 2},
- [190] = {.lex_state = 151, .external_lex_state = 2},
- [191] = {.lex_state = 151, .external_lex_state = 2},
- [192] = {.lex_state = 151, .external_lex_state = 2},
- [193] = {.lex_state = 151, .external_lex_state = 2},
- [194] = {.lex_state = 151, .external_lex_state = 2},
- [195] = {.lex_state = 151, .external_lex_state = 2},
- [196] = {.lex_state = 151, .external_lex_state = 2},
- [197] = {.lex_state = 151, .external_lex_state = 2},
- [198] = {.lex_state = 151, .external_lex_state = 2},
- [199] = {.lex_state = 151, .external_lex_state = 2},
- [200] = {.lex_state = 151, .external_lex_state = 2},
- [201] = {.lex_state = 151, .external_lex_state = 2},
- [202] = {.lex_state = 151, .external_lex_state = 2},
- [203] = {.lex_state = 151, .external_lex_state = 2},
- [204] = {.lex_state = 151, .external_lex_state = 2},
- [205] = {.lex_state = 151, .external_lex_state = 2},
- [206] = {.lex_state = 151, .external_lex_state = 2},
- [207] = {.lex_state = 151, .external_lex_state = 2},
- [208] = {.lex_state = 151, .external_lex_state = 2},
- [209] = {.lex_state = 151, .external_lex_state = 2},
- [210] = {.lex_state = 150, .external_lex_state = 4},
- [211] = {.lex_state = 151, .external_lex_state = 5},
- [212] = {.lex_state = 150, .external_lex_state = 4},
- [213] = {.lex_state = 150, .external_lex_state = 4},
- [214] = {.lex_state = 150, .external_lex_state = 4},
- [215] = {.lex_state = 151, .external_lex_state = 2},
- [216] = {.lex_state = 150, .external_lex_state = 4},
- [217] = {.lex_state = 151, .external_lex_state = 2},
- [218] = {.lex_state = 150, .external_lex_state = 4},
- [219] = {.lex_state = 150, .external_lex_state = 4},
- [220] = {.lex_state = 150, .external_lex_state = 4},
- [221] = {.lex_state = 150, .external_lex_state = 4},
- [222] = {.lex_state = 150, .external_lex_state = 4},
- [223] = {.lex_state = 150, .external_lex_state = 4},
- [224] = {.lex_state = 151, .external_lex_state = 2},
- [225] = {.lex_state = 151, .external_lex_state = 2},
- [226] = {.lex_state = 150, .external_lex_state = 4},
- [227] = {.lex_state = 151, .external_lex_state = 2},
- [228] = {.lex_state = 150, .external_lex_state = 4},
- [229] = {.lex_state = 150, .external_lex_state = 4},
- [230] = {.lex_state = 150, .external_lex_state = 4},
- [231] = {.lex_state = 150, .external_lex_state = 4},
- [232] = {.lex_state = 151, .external_lex_state = 2},
- [233] = {.lex_state = 150, .external_lex_state = 4},
- [234] = {.lex_state = 150, .external_lex_state = 4},
- [235] = {.lex_state = 150, .external_lex_state = 4},
- [236] = {.lex_state = 150, .external_lex_state = 4},
- [237] = {.lex_state = 150, .external_lex_state = 4},
- [238] = {.lex_state = 151, .external_lex_state = 2},
- [239] = {.lex_state = 150, .external_lex_state = 4},
- [240] = {.lex_state = 150, .external_lex_state = 4},
- [241] = {.lex_state = 150, .external_lex_state = 4},
- [242] = {.lex_state = 150, .external_lex_state = 4},
- [243] = {.lex_state = 150, .external_lex_state = 4},
- [244] = {.lex_state = 151, .external_lex_state = 2},
- [245] = {.lex_state = 150, .external_lex_state = 4},
- [246] = {.lex_state = 150, .external_lex_state = 4},
- [247] = {.lex_state = 150, .external_lex_state = 4},
- [248] = {.lex_state = 151, .external_lex_state = 2},
- [249] = {.lex_state = 151, .external_lex_state = 2},
- [250] = {.lex_state = 151, .external_lex_state = 2},
- [251] = {.lex_state = 151, .external_lex_state = 2},
- [252] = {.lex_state = 151, .external_lex_state = 2},
- [253] = {.lex_state = 151, .external_lex_state = 2},
- [254] = {.lex_state = 151, .external_lex_state = 2},
- [255] = {.lex_state = 151, .external_lex_state = 2},
- [256] = {.lex_state = 151, .external_lex_state = 2},
- [257] = {.lex_state = 151, .external_lex_state = 2},
- [258] = {.lex_state = 151, .external_lex_state = 2},
- [259] = {.lex_state = 151, .external_lex_state = 2},
- [260] = {.lex_state = 151, .external_lex_state = 2},
- [261] = {.lex_state = 151, .external_lex_state = 2},
- [262] = {.lex_state = 151, .external_lex_state = 2},
- [263] = {.lex_state = 151, .external_lex_state = 2},
- [264] = {.lex_state = 151, .external_lex_state = 2},
- [265] = {.lex_state = 151, .external_lex_state = 2},
- [266] = {.lex_state = 151, .external_lex_state = 2},
- [267] = {.lex_state = 151, .external_lex_state = 2},
- [268] = {.lex_state = 151, .external_lex_state = 2},
- [269] = {.lex_state = 151, .external_lex_state = 2},
- [270] = {.lex_state = 151, .external_lex_state = 2},
- [271] = {.lex_state = 151, .external_lex_state = 2},
- [272] = {.lex_state = 151, .external_lex_state = 2},
- [273] = {.lex_state = 151, .external_lex_state = 2},
- [274] = {.lex_state = 151, .external_lex_state = 2},
- [275] = {.lex_state = 151, .external_lex_state = 2},
- [276] = {.lex_state = 151, .external_lex_state = 2},
- [277] = {.lex_state = 151, .external_lex_state = 2},
- [278] = {.lex_state = 4, .external_lex_state = 3},
- [279] = {.lex_state = 151, .external_lex_state = 2},
- [280] = {.lex_state = 4, .external_lex_state = 3},
- [281] = {.lex_state = 151, .external_lex_state = 2},
- [282] = {.lex_state = 4, .external_lex_state = 3},
- [283] = {.lex_state = 151, .external_lex_state = 2},
- [284] = {.lex_state = 4, .external_lex_state = 3},
- [285] = {.lex_state = 151, .external_lex_state = 2},
- [286] = {.lex_state = 151, .external_lex_state = 2},
- [287] = {.lex_state = 151, .external_lex_state = 2},
- [288] = {.lex_state = 151, .external_lex_state = 2},
- [289] = {.lex_state = 151, .external_lex_state = 2},
- [290] = {.lex_state = 151, .external_lex_state = 2},
- [291] = {.lex_state = 151, .external_lex_state = 2},
- [292] = {.lex_state = 151, .external_lex_state = 2},
- [293] = {.lex_state = 151, .external_lex_state = 2},
- [294] = {.lex_state = 151, .external_lex_state = 5},
- [295] = {.lex_state = 151, .external_lex_state = 2},
- [296] = {.lex_state = 151, .external_lex_state = 2},
- [297] = {.lex_state = 151, .external_lex_state = 2},
- [298] = {.lex_state = 151, .external_lex_state = 2},
- [299] = {.lex_state = 151, .external_lex_state = 2},
- [300] = {.lex_state = 151, .external_lex_state = 2},
- [301] = {.lex_state = 151, .external_lex_state = 2},
- [302] = {.lex_state = 151, .external_lex_state = 2},
- [303] = {.lex_state = 151, .external_lex_state = 2},
- [304] = {.lex_state = 151, .external_lex_state = 2},
- [305] = {.lex_state = 151, .external_lex_state = 2},
- [306] = {.lex_state = 151, .external_lex_state = 2},
- [307] = {.lex_state = 151, .external_lex_state = 2},
- [308] = {.lex_state = 151, .external_lex_state = 2},
- [309] = {.lex_state = 151, .external_lex_state = 2},
- [310] = {.lex_state = 151, .external_lex_state = 2},
- [311] = {.lex_state = 151, .external_lex_state = 2},
- [312] = {.lex_state = 151, .external_lex_state = 2},
- [313] = {.lex_state = 151, .external_lex_state = 2},
- [314] = {.lex_state = 151, .external_lex_state = 2},
- [315] = {.lex_state = 151, .external_lex_state = 2},
- [316] = {.lex_state = 151, .external_lex_state = 2},
- [317] = {.lex_state = 151, .external_lex_state = 2},
- [318] = {.lex_state = 151, .external_lex_state = 2},
- [319] = {.lex_state = 151, .external_lex_state = 2},
- [320] = {.lex_state = 151, .external_lex_state = 2},
- [321] = {.lex_state = 151, .external_lex_state = 2},
- [322] = {.lex_state = 151, .external_lex_state = 2},
- [323] = {.lex_state = 151, .external_lex_state = 2},
- [324] = {.lex_state = 151, .external_lex_state = 2},
- [325] = {.lex_state = 151, .external_lex_state = 2},
- [326] = {.lex_state = 151, .external_lex_state = 2},
- [327] = {.lex_state = 151, .external_lex_state = 2},
- [328] = {.lex_state = 151, .external_lex_state = 2},
- [329] = {.lex_state = 151, .external_lex_state = 2},
- [330] = {.lex_state = 151, .external_lex_state = 2},
- [331] = {.lex_state = 151, .external_lex_state = 2},
- [332] = {.lex_state = 151, .external_lex_state = 2},
- [333] = {.lex_state = 151, .external_lex_state = 2},
- [334] = {.lex_state = 151, .external_lex_state = 2},
- [335] = {.lex_state = 151, .external_lex_state = 2},
- [336] = {.lex_state = 151, .external_lex_state = 2},
- [337] = {.lex_state = 151, .external_lex_state = 2},
- [338] = {.lex_state = 151, .external_lex_state = 2},
- [339] = {.lex_state = 151, .external_lex_state = 2},
- [340] = {.lex_state = 151, .external_lex_state = 2},
- [341] = {.lex_state = 151, .external_lex_state = 2},
- [342] = {.lex_state = 151, .external_lex_state = 2},
- [343] = {.lex_state = 151, .external_lex_state = 2},
- [344] = {.lex_state = 151, .external_lex_state = 2},
- [345] = {.lex_state = 151, .external_lex_state = 2},
- [346] = {.lex_state = 151, .external_lex_state = 2},
- [347] = {.lex_state = 151, .external_lex_state = 2},
- [348] = {.lex_state = 151, .external_lex_state = 2},
- [349] = {.lex_state = 151, .external_lex_state = 2},
- [350] = {.lex_state = 151, .external_lex_state = 2},
- [351] = {.lex_state = 151, .external_lex_state = 2},
- [352] = {.lex_state = 151, .external_lex_state = 2},
- [353] = {.lex_state = 151, .external_lex_state = 2},
- [354] = {.lex_state = 151, .external_lex_state = 2},
- [355] = {.lex_state = 151, .external_lex_state = 2},
- [356] = {.lex_state = 151, .external_lex_state = 2},
- [357] = {.lex_state = 151, .external_lex_state = 2},
- [358] = {.lex_state = 151, .external_lex_state = 2},
- [359] = {.lex_state = 151, .external_lex_state = 2},
- [360] = {.lex_state = 151, .external_lex_state = 2},
- [361] = {.lex_state = 151, .external_lex_state = 2},
- [362] = {.lex_state = 151, .external_lex_state = 2},
- [363] = {.lex_state = 151, .external_lex_state = 2},
- [364] = {.lex_state = 151, .external_lex_state = 2},
- [365] = {.lex_state = 151, .external_lex_state = 2},
- [366] = {.lex_state = 151, .external_lex_state = 2},
- [367] = {.lex_state = 151, .external_lex_state = 2},
- [368] = {.lex_state = 151, .external_lex_state = 2},
- [369] = {.lex_state = 151, .external_lex_state = 2},
- [370] = {.lex_state = 151, .external_lex_state = 2},
- [371] = {.lex_state = 151, .external_lex_state = 2},
- [372] = {.lex_state = 151, .external_lex_state = 2},
- [373] = {.lex_state = 151, .external_lex_state = 2},
- [374] = {.lex_state = 151, .external_lex_state = 2},
- [375] = {.lex_state = 151, .external_lex_state = 2},
- [376] = {.lex_state = 151, .external_lex_state = 2},
- [377] = {.lex_state = 151, .external_lex_state = 2},
- [378] = {.lex_state = 151, .external_lex_state = 2},
- [379] = {.lex_state = 151, .external_lex_state = 2},
- [380] = {.lex_state = 151, .external_lex_state = 2},
- [381] = {.lex_state = 151, .external_lex_state = 2},
- [382] = {.lex_state = 151, .external_lex_state = 2},
- [383] = {.lex_state = 151, .external_lex_state = 2},
- [384] = {.lex_state = 151, .external_lex_state = 2},
- [385] = {.lex_state = 151, .external_lex_state = 2},
- [386] = {.lex_state = 151, .external_lex_state = 2},
- [387] = {.lex_state = 151, .external_lex_state = 2},
- [388] = {.lex_state = 151, .external_lex_state = 2},
- [389] = {.lex_state = 151, .external_lex_state = 2},
- [390] = {.lex_state = 151, .external_lex_state = 2},
- [391] = {.lex_state = 151, .external_lex_state = 2},
- [392] = {.lex_state = 151, .external_lex_state = 2},
- [393] = {.lex_state = 151, .external_lex_state = 2},
- [394] = {.lex_state = 151, .external_lex_state = 2},
- [395] = {.lex_state = 151, .external_lex_state = 2},
- [396] = {.lex_state = 151, .external_lex_state = 2},
- [397] = {.lex_state = 151, .external_lex_state = 2},
- [398] = {.lex_state = 151, .external_lex_state = 2},
- [399] = {.lex_state = 151, .external_lex_state = 2},
- [400] = {.lex_state = 151, .external_lex_state = 2},
- [401] = {.lex_state = 151, .external_lex_state = 2},
- [402] = {.lex_state = 151, .external_lex_state = 2},
- [403] = {.lex_state = 151, .external_lex_state = 2},
- [404] = {.lex_state = 151, .external_lex_state = 2},
- [405] = {.lex_state = 151, .external_lex_state = 2},
- [406] = {.lex_state = 151, .external_lex_state = 2},
- [407] = {.lex_state = 151, .external_lex_state = 2},
- [408] = {.lex_state = 151, .external_lex_state = 2},
- [409] = {.lex_state = 151, .external_lex_state = 2},
- [410] = {.lex_state = 151, .external_lex_state = 2},
- [411] = {.lex_state = 151, .external_lex_state = 2},
- [412] = {.lex_state = 151, .external_lex_state = 2},
- [413] = {.lex_state = 151, .external_lex_state = 2},
- [414] = {.lex_state = 151, .external_lex_state = 2},
- [415] = {.lex_state = 151, .external_lex_state = 2},
- [416] = {.lex_state = 151, .external_lex_state = 2},
- [417] = {.lex_state = 151, .external_lex_state = 2},
- [418] = {.lex_state = 151, .external_lex_state = 2},
- [419] = {.lex_state = 151, .external_lex_state = 2},
- [420] = {.lex_state = 151, .external_lex_state = 2},
- [421] = {.lex_state = 151, .external_lex_state = 2},
- [422] = {.lex_state = 151, .external_lex_state = 2},
- [423] = {.lex_state = 151, .external_lex_state = 2},
- [424] = {.lex_state = 151, .external_lex_state = 2},
- [425] = {.lex_state = 151, .external_lex_state = 2},
- [426] = {.lex_state = 151, .external_lex_state = 2},
- [427] = {.lex_state = 151, .external_lex_state = 2},
- [428] = {.lex_state = 151, .external_lex_state = 2},
- [429] = {.lex_state = 151, .external_lex_state = 2},
- [430] = {.lex_state = 151, .external_lex_state = 2},
- [431] = {.lex_state = 151, .external_lex_state = 2},
- [432] = {.lex_state = 151, .external_lex_state = 2},
- [433] = {.lex_state = 151, .external_lex_state = 2},
- [434] = {.lex_state = 151, .external_lex_state = 2},
- [435] = {.lex_state = 151, .external_lex_state = 2},
- [436] = {.lex_state = 151, .external_lex_state = 2},
- [437] = {.lex_state = 151, .external_lex_state = 2},
- [438] = {.lex_state = 151, .external_lex_state = 2},
- [439] = {.lex_state = 151, .external_lex_state = 2},
- [440] = {.lex_state = 151, .external_lex_state = 2},
- [441] = {.lex_state = 151, .external_lex_state = 2},
- [442] = {.lex_state = 151, .external_lex_state = 2},
- [443] = {.lex_state = 151, .external_lex_state = 2},
- [444] = {.lex_state = 151, .external_lex_state = 2},
- [445] = {.lex_state = 151, .external_lex_state = 2},
- [446] = {.lex_state = 151, .external_lex_state = 2},
- [447] = {.lex_state = 151, .external_lex_state = 2},
- [448] = {.lex_state = 151, .external_lex_state = 2},
- [449] = {.lex_state = 151, .external_lex_state = 2},
- [450] = {.lex_state = 151, .external_lex_state = 2},
- [451] = {.lex_state = 151, .external_lex_state = 2},
- [452] = {.lex_state = 151, .external_lex_state = 2},
- [453] = {.lex_state = 151, .external_lex_state = 2},
- [454] = {.lex_state = 151, .external_lex_state = 2},
- [455] = {.lex_state = 151, .external_lex_state = 2},
- [456] = {.lex_state = 151, .external_lex_state = 2},
- [457] = {.lex_state = 151, .external_lex_state = 2},
- [458] = {.lex_state = 151, .external_lex_state = 2},
- [459] = {.lex_state = 151, .external_lex_state = 2},
- [460] = {.lex_state = 151, .external_lex_state = 2},
- [461] = {.lex_state = 151, .external_lex_state = 2},
- [462] = {.lex_state = 151, .external_lex_state = 2},
- [463] = {.lex_state = 151, .external_lex_state = 2},
- [464] = {.lex_state = 151, .external_lex_state = 2},
- [465] = {.lex_state = 151, .external_lex_state = 2},
- [466] = {.lex_state = 151, .external_lex_state = 2},
- [467] = {.lex_state = 151, .external_lex_state = 2},
- [468] = {.lex_state = 151, .external_lex_state = 2},
- [469] = {.lex_state = 151, .external_lex_state = 2},
- [470] = {.lex_state = 151, .external_lex_state = 2},
- [471] = {.lex_state = 151, .external_lex_state = 2},
- [472] = {.lex_state = 151, .external_lex_state = 2},
- [473] = {.lex_state = 151, .external_lex_state = 2},
- [474] = {.lex_state = 151, .external_lex_state = 2},
- [475] = {.lex_state = 151, .external_lex_state = 2},
- [476] = {.lex_state = 151, .external_lex_state = 2},
- [477] = {.lex_state = 151, .external_lex_state = 2},
- [478] = {.lex_state = 151, .external_lex_state = 2},
- [479] = {.lex_state = 151, .external_lex_state = 2},
- [480] = {.lex_state = 151, .external_lex_state = 2},
- [481] = {.lex_state = 151, .external_lex_state = 2},
- [482] = {.lex_state = 151, .external_lex_state = 2},
- [483] = {.lex_state = 151, .external_lex_state = 2},
- [484] = {.lex_state = 151, .external_lex_state = 2},
- [485] = {.lex_state = 151, .external_lex_state = 2},
- [486] = {.lex_state = 151, .external_lex_state = 2},
- [487] = {.lex_state = 151, .external_lex_state = 2},
- [488] = {.lex_state = 151, .external_lex_state = 2},
- [489] = {.lex_state = 151, .external_lex_state = 2},
- [490] = {.lex_state = 151, .external_lex_state = 2},
- [491] = {.lex_state = 151, .external_lex_state = 2},
- [492] = {.lex_state = 151, .external_lex_state = 2},
- [493] = {.lex_state = 151, .external_lex_state = 2},
- [494] = {.lex_state = 151, .external_lex_state = 2},
- [495] = {.lex_state = 151, .external_lex_state = 2},
- [496] = {.lex_state = 151, .external_lex_state = 2},
- [497] = {.lex_state = 151, .external_lex_state = 2},
- [498] = {.lex_state = 151, .external_lex_state = 2},
- [499] = {.lex_state = 151, .external_lex_state = 2},
- [500] = {.lex_state = 151, .external_lex_state = 2},
- [501] = {.lex_state = 151, .external_lex_state = 2},
- [502] = {.lex_state = 151, .external_lex_state = 2},
- [503] = {.lex_state = 151, .external_lex_state = 2},
- [504] = {.lex_state = 151, .external_lex_state = 2},
- [505] = {.lex_state = 151, .external_lex_state = 2},
- [506] = {.lex_state = 151, .external_lex_state = 2},
- [507] = {.lex_state = 151, .external_lex_state = 2},
- [508] = {.lex_state = 151, .external_lex_state = 2},
- [509] = {.lex_state = 151, .external_lex_state = 2},
- [510] = {.lex_state = 151, .external_lex_state = 2},
- [511] = {.lex_state = 151, .external_lex_state = 2},
- [512] = {.lex_state = 151, .external_lex_state = 2},
- [513] = {.lex_state = 151, .external_lex_state = 2},
- [514] = {.lex_state = 151, .external_lex_state = 2},
- [515] = {.lex_state = 151, .external_lex_state = 2},
- [516] = {.lex_state = 151, .external_lex_state = 2},
- [517] = {.lex_state = 151, .external_lex_state = 2},
- [518] = {.lex_state = 151, .external_lex_state = 2},
- [519] = {.lex_state = 151, .external_lex_state = 2},
- [520] = {.lex_state = 151, .external_lex_state = 2},
- [521] = {.lex_state = 151, .external_lex_state = 2},
- [522] = {.lex_state = 151, .external_lex_state = 2},
- [523] = {.lex_state = 151, .external_lex_state = 2},
- [524] = {.lex_state = 151, .external_lex_state = 2},
- [525] = {.lex_state = 151, .external_lex_state = 2},
- [526] = {.lex_state = 151, .external_lex_state = 2},
- [527] = {.lex_state = 151, .external_lex_state = 2},
- [528] = {.lex_state = 151, .external_lex_state = 2},
- [529] = {.lex_state = 151, .external_lex_state = 2},
- [530] = {.lex_state = 151, .external_lex_state = 2},
- [531] = {.lex_state = 151, .external_lex_state = 2},
- [532] = {.lex_state = 151, .external_lex_state = 2},
- [533] = {.lex_state = 151, .external_lex_state = 2},
- [534] = {.lex_state = 151, .external_lex_state = 2},
- [535] = {.lex_state = 151, .external_lex_state = 2},
- [536] = {.lex_state = 151, .external_lex_state = 2},
- [537] = {.lex_state = 151, .external_lex_state = 2},
- [538] = {.lex_state = 151, .external_lex_state = 2},
- [539] = {.lex_state = 151, .external_lex_state = 2},
- [540] = {.lex_state = 151, .external_lex_state = 2},
- [541] = {.lex_state = 151, .external_lex_state = 2},
- [542] = {.lex_state = 151, .external_lex_state = 2},
- [543] = {.lex_state = 151, .external_lex_state = 2},
- [544] = {.lex_state = 151, .external_lex_state = 2},
- [545] = {.lex_state = 151, .external_lex_state = 2},
- [546] = {.lex_state = 151, .external_lex_state = 2},
- [547] = {.lex_state = 151, .external_lex_state = 2},
- [548] = {.lex_state = 151, .external_lex_state = 2},
- [549] = {.lex_state = 151, .external_lex_state = 2},
- [550] = {.lex_state = 151, .external_lex_state = 2},
- [551] = {.lex_state = 151, .external_lex_state = 2},
- [552] = {.lex_state = 151, .external_lex_state = 2},
- [553] = {.lex_state = 151, .external_lex_state = 2},
- [554] = {.lex_state = 151, .external_lex_state = 2},
- [555] = {.lex_state = 151, .external_lex_state = 2},
- [556] = {.lex_state = 151, .external_lex_state = 2},
- [557] = {.lex_state = 151, .external_lex_state = 2},
- [558] = {.lex_state = 151, .external_lex_state = 2},
- [559] = {.lex_state = 151, .external_lex_state = 2},
- [560] = {.lex_state = 151, .external_lex_state = 2},
- [561] = {.lex_state = 151, .external_lex_state = 2},
- [562] = {.lex_state = 151, .external_lex_state = 2},
- [563] = {.lex_state = 151, .external_lex_state = 2},
- [564] = {.lex_state = 151, .external_lex_state = 2},
- [565] = {.lex_state = 151, .external_lex_state = 2},
- [566] = {.lex_state = 151, .external_lex_state = 2},
- [567] = {.lex_state = 151, .external_lex_state = 2},
- [568] = {.lex_state = 151, .external_lex_state = 2},
- [569] = {.lex_state = 151, .external_lex_state = 2},
- [570] = {.lex_state = 151, .external_lex_state = 2},
- [571] = {.lex_state = 151, .external_lex_state = 2},
- [572] = {.lex_state = 151, .external_lex_state = 2},
- [573] = {.lex_state = 151, .external_lex_state = 2},
- [574] = {.lex_state = 151, .external_lex_state = 2},
- [575] = {.lex_state = 151, .external_lex_state = 2},
- [576] = {.lex_state = 151, .external_lex_state = 2},
- [577] = {.lex_state = 151, .external_lex_state = 2},
- [578] = {.lex_state = 151, .external_lex_state = 2},
- [579] = {.lex_state = 151, .external_lex_state = 2},
- [580] = {.lex_state = 151, .external_lex_state = 2},
- [581] = {.lex_state = 151, .external_lex_state = 2},
- [582] = {.lex_state = 151, .external_lex_state = 2},
- [583] = {.lex_state = 151, .external_lex_state = 2},
- [584] = {.lex_state = 151, .external_lex_state = 2},
- [585] = {.lex_state = 151, .external_lex_state = 2},
- [586] = {.lex_state = 151, .external_lex_state = 2},
- [587] = {.lex_state = 151, .external_lex_state = 2},
- [588] = {.lex_state = 151, .external_lex_state = 2},
- [589] = {.lex_state = 151, .external_lex_state = 2},
- [590] = {.lex_state = 151, .external_lex_state = 2},
- [591] = {.lex_state = 151, .external_lex_state = 2},
- [592] = {.lex_state = 151, .external_lex_state = 2},
- [593] = {.lex_state = 151, .external_lex_state = 2},
- [594] = {.lex_state = 151, .external_lex_state = 2},
- [595] = {.lex_state = 151, .external_lex_state = 2},
- [596] = {.lex_state = 151, .external_lex_state = 2},
- [597] = {.lex_state = 151, .external_lex_state = 2},
- [598] = {.lex_state = 151, .external_lex_state = 2},
- [599] = {.lex_state = 151, .external_lex_state = 2},
- [600] = {.lex_state = 151, .external_lex_state = 2},
- [601] = {.lex_state = 151, .external_lex_state = 2},
- [602] = {.lex_state = 151, .external_lex_state = 2},
- [603] = {.lex_state = 151, .external_lex_state = 2},
- [604] = {.lex_state = 151, .external_lex_state = 2},
- [605] = {.lex_state = 151, .external_lex_state = 2},
- [606] = {.lex_state = 151, .external_lex_state = 2},
- [607] = {.lex_state = 151, .external_lex_state = 2},
- [608] = {.lex_state = 151, .external_lex_state = 2},
- [609] = {.lex_state = 151, .external_lex_state = 2},
- [610] = {.lex_state = 151, .external_lex_state = 2},
- [611] = {.lex_state = 151, .external_lex_state = 2},
- [612] = {.lex_state = 151, .external_lex_state = 2},
- [613] = {.lex_state = 151, .external_lex_state = 2},
- [614] = {.lex_state = 151, .external_lex_state = 2},
- [615] = {.lex_state = 151, .external_lex_state = 2},
- [616] = {.lex_state = 151, .external_lex_state = 2},
- [617] = {.lex_state = 151, .external_lex_state = 2},
- [618] = {.lex_state = 151, .external_lex_state = 2},
- [619] = {.lex_state = 151, .external_lex_state = 2},
- [620] = {.lex_state = 151, .external_lex_state = 2},
- [621] = {.lex_state = 151, .external_lex_state = 2},
- [622] = {.lex_state = 151, .external_lex_state = 2},
- [623] = {.lex_state = 151, .external_lex_state = 2},
- [624] = {.lex_state = 151, .external_lex_state = 2},
- [625] = {.lex_state = 151, .external_lex_state = 2},
- [626] = {.lex_state = 151, .external_lex_state = 2},
- [627] = {.lex_state = 151, .external_lex_state = 2},
- [628] = {.lex_state = 7, .external_lex_state = 4},
- [629] = {.lex_state = 7, .external_lex_state = 4},
- [630] = {.lex_state = 7, .external_lex_state = 4},
- [631] = {.lex_state = 6, .external_lex_state = 4},
- [632] = {.lex_state = 6, .external_lex_state = 4},
- [633] = {.lex_state = 6, .external_lex_state = 4},
- [634] = {.lex_state = 6, .external_lex_state = 4},
- [635] = {.lex_state = 6, .external_lex_state = 4},
- [636] = {.lex_state = 6, .external_lex_state = 4},
- [637] = {.lex_state = 7, .external_lex_state = 4},
- [638] = {.lex_state = 7, .external_lex_state = 4},
- [639] = {.lex_state = 7, .external_lex_state = 4},
- [640] = {.lex_state = 6, .external_lex_state = 4},
- [641] = {.lex_state = 6, .external_lex_state = 4},
- [642] = {.lex_state = 6, .external_lex_state = 4},
- [643] = {.lex_state = 6, .external_lex_state = 4},
- [644] = {.lex_state = 6, .external_lex_state = 4},
- [645] = {.lex_state = 151, .external_lex_state = 2},
- [646] = {.lex_state = 6, .external_lex_state = 4},
- [647] = {.lex_state = 6, .external_lex_state = 4},
- [648] = {.lex_state = 151, .external_lex_state = 2},
- [649] = {.lex_state = 6, .external_lex_state = 4},
- [650] = {.lex_state = 6, .external_lex_state = 4},
- [651] = {.lex_state = 6, .external_lex_state = 4},
- [652] = {.lex_state = 151, .external_lex_state = 2},
- [653] = {.lex_state = 151, .external_lex_state = 2},
- [654] = {.lex_state = 151, .external_lex_state = 2},
- [655] = {.lex_state = 6, .external_lex_state = 4},
- [656] = {.lex_state = 151, .external_lex_state = 2},
- [657] = {.lex_state = 6, .external_lex_state = 4},
- [658] = {.lex_state = 151, .external_lex_state = 2},
- [659] = {.lex_state = 6, .external_lex_state = 4},
- [660] = {.lex_state = 6, .external_lex_state = 4},
- [661] = {.lex_state = 6, .external_lex_state = 4},
- [662] = {.lex_state = 6, .external_lex_state = 4},
- [663] = {.lex_state = 6, .external_lex_state = 4},
- [664] = {.lex_state = 6, .external_lex_state = 4},
- [665] = {.lex_state = 6, .external_lex_state = 4},
- [666] = {.lex_state = 6, .external_lex_state = 4},
- [667] = {.lex_state = 6, .external_lex_state = 4},
- [668] = {.lex_state = 6, .external_lex_state = 3},
- [669] = {.lex_state = 6, .external_lex_state = 3},
- [670] = {.lex_state = 6, .external_lex_state = 3},
- [671] = {.lex_state = 6, .external_lex_state = 3},
- [672] = {.lex_state = 6, .external_lex_state = 3},
- [673] = {.lex_state = 6, .external_lex_state = 4},
- [674] = {.lex_state = 6, .external_lex_state = 3},
- [675] = {.lex_state = 6, .external_lex_state = 4},
- [676] = {.lex_state = 6, .external_lex_state = 4},
- [677] = {.lex_state = 6, .external_lex_state = 4},
- [678] = {.lex_state = 6, .external_lex_state = 4},
- [679] = {.lex_state = 6, .external_lex_state = 4},
- [680] = {.lex_state = 6, .external_lex_state = 4},
- [681] = {.lex_state = 6, .external_lex_state = 4},
- [682] = {.lex_state = 6, .external_lex_state = 3},
- [683] = {.lex_state = 151, .external_lex_state = 5},
- [684] = {.lex_state = 7, .external_lex_state = 3},
- [685] = {.lex_state = 7, .external_lex_state = 3},
- [686] = {.lex_state = 151, .external_lex_state = 2},
- [687] = {.lex_state = 151, .external_lex_state = 5},
- [688] = {.lex_state = 6, .external_lex_state = 3},
- [689] = {.lex_state = 151, .external_lex_state = 5},
- [690] = {.lex_state = 151, .external_lex_state = 2},
- [691] = {.lex_state = 151, .external_lex_state = 5},
- [692] = {.lex_state = 6, .external_lex_state = 4},
- [693] = {.lex_state = 6, .external_lex_state = 3},
- [694] = {.lex_state = 151, .external_lex_state = 5},
- [695] = {.lex_state = 6, .external_lex_state = 4},
- [696] = {.lex_state = 6, .external_lex_state = 4},
- [697] = {.lex_state = 6, .external_lex_state = 3},
- [698] = {.lex_state = 6, .external_lex_state = 3},
- [699] = {.lex_state = 151, .external_lex_state = 5},
- [700] = {.lex_state = 6, .external_lex_state = 4},
- [701] = {.lex_state = 151, .external_lex_state = 2},
- [702] = {.lex_state = 6, .external_lex_state = 3},
- [703] = {.lex_state = 151, .external_lex_state = 5},
- [704] = {.lex_state = 151, .external_lex_state = 5},
- [705] = {.lex_state = 6, .external_lex_state = 4},
- [706] = {.lex_state = 151, .external_lex_state = 2},
- [707] = {.lex_state = 6, .external_lex_state = 3},
- [708] = {.lex_state = 6, .external_lex_state = 3},
- [709] = {.lex_state = 151, .external_lex_state = 2},
- [710] = {.lex_state = 6, .external_lex_state = 3},
- [711] = {.lex_state = 151, .external_lex_state = 2},
- [712] = {.lex_state = 6, .external_lex_state = 3},
- [713] = {.lex_state = 6, .external_lex_state = 3},
- [714] = {.lex_state = 6, .external_lex_state = 3},
- [715] = {.lex_state = 151, .external_lex_state = 5},
- [716] = {.lex_state = 151, .external_lex_state = 5},
- [717] = {.lex_state = 151, .external_lex_state = 5},
- [718] = {.lex_state = 151, .external_lex_state = 5},
- [719] = {.lex_state = 151, .external_lex_state = 5},
- [720] = {.lex_state = 151, .external_lex_state = 5},
- [721] = {.lex_state = 151, .external_lex_state = 2},
- [722] = {.lex_state = 151, .external_lex_state = 2},
- [723] = {.lex_state = 151, .external_lex_state = 5},
- [724] = {.lex_state = 151, .external_lex_state = 5},
- [725] = {.lex_state = 151, .external_lex_state = 2},
- [726] = {.lex_state = 6, .external_lex_state = 3},
- [727] = {.lex_state = 6, .external_lex_state = 3},
- [728] = {.lex_state = 151, .external_lex_state = 5},
- [729] = {.lex_state = 6, .external_lex_state = 3},
- [730] = {.lex_state = 151, .external_lex_state = 5},
- [731] = {.lex_state = 151, .external_lex_state = 2},
- [732] = {.lex_state = 151, .external_lex_state = 5},
- [733] = {.lex_state = 6, .external_lex_state = 3},
- [734] = {.lex_state = 151, .external_lex_state = 2},
- [735] = {.lex_state = 151, .external_lex_state = 5},
- [736] = {.lex_state = 151, .external_lex_state = 5},
- [737] = {.lex_state = 151, .external_lex_state = 2},
- [738] = {.lex_state = 151, .external_lex_state = 2},
- [739] = {.lex_state = 151, .external_lex_state = 2},
- [740] = {.lex_state = 6, .external_lex_state = 3},
- [741] = {.lex_state = 151, .external_lex_state = 2},
- [742] = {.lex_state = 6, .external_lex_state = 3},
- [743] = {.lex_state = 6, .external_lex_state = 3},
- [744] = {.lex_state = 6, .external_lex_state = 3},
- [745] = {.lex_state = 6, .external_lex_state = 3},
- [746] = {.lex_state = 151, .external_lex_state = 5},
- [747] = {.lex_state = 6, .external_lex_state = 3},
- [748] = {.lex_state = 151, .external_lex_state = 5},
- [749] = {.lex_state = 151, .external_lex_state = 2},
- [750] = {.lex_state = 151, .external_lex_state = 2},
- [751] = {.lex_state = 151, .external_lex_state = 2},
- [752] = {.lex_state = 151, .external_lex_state = 2},
- [753] = {.lex_state = 151, .external_lex_state = 2},
- [754] = {.lex_state = 151, .external_lex_state = 2},
- [755] = {.lex_state = 151, .external_lex_state = 2},
- [756] = {.lex_state = 151, .external_lex_state = 2},
- [757] = {.lex_state = 151, .external_lex_state = 2},
- [758] = {.lex_state = 151, .external_lex_state = 2},
- [759] = {.lex_state = 151, .external_lex_state = 2},
- [760] = {.lex_state = 151, .external_lex_state = 2},
- [761] = {.lex_state = 151, .external_lex_state = 2},
- [762] = {.lex_state = 151, .external_lex_state = 2},
- [763] = {.lex_state = 151, .external_lex_state = 2},
- [764] = {.lex_state = 151, .external_lex_state = 2},
- [765] = {.lex_state = 151, .external_lex_state = 2},
- [766] = {.lex_state = 151, .external_lex_state = 2},
- [767] = {.lex_state = 151, .external_lex_state = 2},
- [768] = {.lex_state = 151, .external_lex_state = 2},
- [769] = {.lex_state = 151, .external_lex_state = 2},
- [770] = {.lex_state = 151, .external_lex_state = 2},
- [771] = {.lex_state = 151, .external_lex_state = 2},
- [772] = {.lex_state = 151, .external_lex_state = 2},
- [773] = {.lex_state = 151, .external_lex_state = 2},
- [774] = {.lex_state = 151, .external_lex_state = 2},
- [775] = {.lex_state = 13, .external_lex_state = 2},
- [776] = {.lex_state = 151, .external_lex_state = 2},
- [777] = {.lex_state = 151, .external_lex_state = 2},
- [778] = {.lex_state = 151, .external_lex_state = 2},
- [779] = {.lex_state = 151, .external_lex_state = 2},
- [780] = {.lex_state = 151, .external_lex_state = 2},
- [781] = {.lex_state = 151, .external_lex_state = 2},
- [782] = {.lex_state = 151, .external_lex_state = 2},
- [783] = {.lex_state = 13, .external_lex_state = 2},
- [784] = {.lex_state = 151, .external_lex_state = 2},
- [785] = {.lex_state = 151, .external_lex_state = 2},
- [786] = {.lex_state = 13, .external_lex_state = 2},
- [787] = {.lex_state = 151, .external_lex_state = 2},
- [788] = {.lex_state = 151, .external_lex_state = 2},
- [789] = {.lex_state = 151, .external_lex_state = 2},
- [790] = {.lex_state = 151, .external_lex_state = 2},
- [791] = {.lex_state = 13, .external_lex_state = 2},
- [792] = {.lex_state = 151, .external_lex_state = 2},
- [793] = {.lex_state = 151, .external_lex_state = 2},
- [794] = {.lex_state = 151, .external_lex_state = 2},
- [795] = {.lex_state = 151, .external_lex_state = 2},
- [796] = {.lex_state = 151, .external_lex_state = 2},
- [797] = {.lex_state = 151, .external_lex_state = 2},
- [798] = {.lex_state = 151, .external_lex_state = 2},
- [799] = {.lex_state = 151, .external_lex_state = 2},
- [800] = {.lex_state = 151, .external_lex_state = 2},
- [801] = {.lex_state = 151, .external_lex_state = 2},
- [802] = {.lex_state = 151, .external_lex_state = 2},
- [803] = {.lex_state = 151, .external_lex_state = 2},
- [804] = {.lex_state = 151, .external_lex_state = 2},
- [805] = {.lex_state = 151, .external_lex_state = 2},
- [806] = {.lex_state = 151, .external_lex_state = 2},
- [807] = {.lex_state = 151, .external_lex_state = 2},
- [808] = {.lex_state = 151, .external_lex_state = 2},
- [809] = {.lex_state = 151, .external_lex_state = 2},
- [810] = {.lex_state = 151, .external_lex_state = 2},
- [811] = {.lex_state = 151, .external_lex_state = 2},
- [812] = {.lex_state = 151, .external_lex_state = 2},
- [813] = {.lex_state = 151, .external_lex_state = 2},
- [814] = {.lex_state = 151, .external_lex_state = 2},
- [815] = {.lex_state = 151, .external_lex_state = 2},
- [816] = {.lex_state = 151, .external_lex_state = 2},
- [817] = {.lex_state = 151, .external_lex_state = 2},
- [818] = {.lex_state = 151, .external_lex_state = 2},
- [819] = {.lex_state = 151, .external_lex_state = 2},
- [820] = {.lex_state = 151, .external_lex_state = 2},
- [821] = {.lex_state = 151, .external_lex_state = 2},
- [822] = {.lex_state = 151, .external_lex_state = 2},
- [823] = {.lex_state = 151, .external_lex_state = 2},
- [824] = {.lex_state = 151, .external_lex_state = 2},
- [825] = {.lex_state = 151, .external_lex_state = 2},
- [826] = {.lex_state = 151, .external_lex_state = 2},
- [827] = {.lex_state = 151, .external_lex_state = 2},
- [828] = {.lex_state = 151, .external_lex_state = 2},
- [829] = {.lex_state = 151, .external_lex_state = 2},
- [830] = {.lex_state = 151, .external_lex_state = 2},
- [831] = {.lex_state = 151, .external_lex_state = 2},
- [832] = {.lex_state = 151, .external_lex_state = 2},
- [833] = {.lex_state = 151, .external_lex_state = 2},
- [834] = {.lex_state = 151, .external_lex_state = 2},
- [835] = {.lex_state = 151, .external_lex_state = 2},
- [836] = {.lex_state = 151, .external_lex_state = 2},
- [837] = {.lex_state = 151, .external_lex_state = 2},
- [838] = {.lex_state = 151, .external_lex_state = 2},
- [839] = {.lex_state = 151, .external_lex_state = 2},
- [840] = {.lex_state = 151, .external_lex_state = 2},
- [841] = {.lex_state = 151, .external_lex_state = 2},
- [842] = {.lex_state = 151, .external_lex_state = 2},
- [843] = {.lex_state = 151, .external_lex_state = 2},
- [844] = {.lex_state = 151, .external_lex_state = 2},
- [845] = {.lex_state = 151, .external_lex_state = 2},
- [846] = {.lex_state = 151, .external_lex_state = 2},
- [847] = {.lex_state = 13, .external_lex_state = 2},
- [848] = {.lex_state = 151, .external_lex_state = 2},
- [849] = {.lex_state = 151, .external_lex_state = 2},
- [850] = {.lex_state = 151, .external_lex_state = 2},
- [851] = {.lex_state = 151, .external_lex_state = 2},
- [852] = {.lex_state = 151, .external_lex_state = 2},
- [853] = {.lex_state = 151, .external_lex_state = 2},
- [854] = {.lex_state = 151, .external_lex_state = 2},
- [855] = {.lex_state = 151, .external_lex_state = 2},
- [856] = {.lex_state = 151, .external_lex_state = 2},
- [857] = {.lex_state = 151, .external_lex_state = 2},
- [858] = {.lex_state = 151, .external_lex_state = 2},
- [859] = {.lex_state = 151, .external_lex_state = 2},
- [860] = {.lex_state = 151, .external_lex_state = 2},
- [861] = {.lex_state = 151, .external_lex_state = 2},
- [862] = {.lex_state = 151, .external_lex_state = 2},
- [863] = {.lex_state = 151, .external_lex_state = 2},
- [864] = {.lex_state = 151, .external_lex_state = 2},
- [865] = {.lex_state = 151, .external_lex_state = 2},
- [866] = {.lex_state = 151, .external_lex_state = 2},
- [867] = {.lex_state = 151, .external_lex_state = 2},
- [868] = {.lex_state = 151, .external_lex_state = 2},
- [869] = {.lex_state = 151, .external_lex_state = 2},
- [870] = {.lex_state = 13, .external_lex_state = 2},
- [871] = {.lex_state = 13, .external_lex_state = 2},
- [872] = {.lex_state = 13, .external_lex_state = 2},
- [873] = {.lex_state = 13, .external_lex_state = 2},
- [874] = {.lex_state = 13, .external_lex_state = 2},
- [875] = {.lex_state = 13, .external_lex_state = 2},
- [876] = {.lex_state = 13, .external_lex_state = 2},
- [877] = {.lex_state = 13, .external_lex_state = 2},
- [878] = {.lex_state = 13, .external_lex_state = 2},
- [879] = {.lex_state = 13, .external_lex_state = 2},
- [880] = {.lex_state = 13, .external_lex_state = 2},
- [881] = {.lex_state = 151, .external_lex_state = 2},
- [882] = {.lex_state = 151, .external_lex_state = 2},
- [883] = {.lex_state = 151, .external_lex_state = 2},
- [884] = {.lex_state = 151, .external_lex_state = 2},
- [885] = {.lex_state = 151, .external_lex_state = 2},
- [886] = {.lex_state = 151, .external_lex_state = 2},
- [887] = {.lex_state = 151, .external_lex_state = 2},
- [888] = {.lex_state = 151, .external_lex_state = 2},
- [889] = {.lex_state = 151, .external_lex_state = 2},
- [890] = {.lex_state = 151, .external_lex_state = 2},
- [891] = {.lex_state = 151, .external_lex_state = 2},
- [892] = {.lex_state = 151, .external_lex_state = 2},
- [893] = {.lex_state = 151, .external_lex_state = 2},
- [894] = {.lex_state = 13, .external_lex_state = 2},
- [895] = {.lex_state = 13, .external_lex_state = 2},
- [896] = {.lex_state = 13, .external_lex_state = 2},
- [897] = {.lex_state = 13, .external_lex_state = 2},
- [898] = {.lex_state = 13, .external_lex_state = 2},
- [899] = {.lex_state = 13, .external_lex_state = 2},
- [900] = {.lex_state = 13, .external_lex_state = 2},
- [901] = {.lex_state = 13, .external_lex_state = 2},
- [902] = {.lex_state = 13, .external_lex_state = 2},
- [903] = {.lex_state = 13, .external_lex_state = 2},
- [904] = {.lex_state = 13, .external_lex_state = 2},
- [905] = {.lex_state = 13, .external_lex_state = 2},
- [906] = {.lex_state = 13, .external_lex_state = 2},
- [907] = {.lex_state = 13, .external_lex_state = 2},
- [908] = {.lex_state = 13, .external_lex_state = 2},
- [909] = {.lex_state = 13, .external_lex_state = 2},
- [910] = {.lex_state = 13, .external_lex_state = 2},
- [911] = {.lex_state = 15, .external_lex_state = 2},
- [912] = {.lex_state = 15, .external_lex_state = 2},
- [913] = {.lex_state = 15, .external_lex_state = 2},
- [914] = {.lex_state = 13, .external_lex_state = 2},
- [915] = {.lex_state = 13, .external_lex_state = 2},
- [916] = {.lex_state = 13, .external_lex_state = 2},
- [917] = {.lex_state = 13, .external_lex_state = 2},
- [918] = {.lex_state = 17, .external_lex_state = 2},
- [919] = {.lex_state = 13, .external_lex_state = 2},
- [920] = {.lex_state = 13, .external_lex_state = 2},
- [921] = {.lex_state = 13, .external_lex_state = 2},
- [922] = {.lex_state = 13, .external_lex_state = 2},
- [923] = {.lex_state = 13, .external_lex_state = 2},
- [924] = {.lex_state = 13, .external_lex_state = 2},
- [925] = {.lex_state = 13, .external_lex_state = 2},
- [926] = {.lex_state = 13, .external_lex_state = 2},
- [927] = {.lex_state = 13, .external_lex_state = 2},
- [928] = {.lex_state = 13, .external_lex_state = 2},
- [929] = {.lex_state = 13, .external_lex_state = 2},
- [930] = {.lex_state = 13, .external_lex_state = 2},
- [931] = {.lex_state = 13, .external_lex_state = 2},
- [932] = {.lex_state = 13, .external_lex_state = 2},
- [933] = {.lex_state = 13, .external_lex_state = 2},
- [934] = {.lex_state = 13, .external_lex_state = 2},
- [935] = {.lex_state = 13, .external_lex_state = 2},
- [936] = {.lex_state = 13, .external_lex_state = 2},
- [937] = {.lex_state = 13, .external_lex_state = 2},
- [938] = {.lex_state = 13, .external_lex_state = 2},
- [939] = {.lex_state = 13, .external_lex_state = 2},
- [940] = {.lex_state = 13, .external_lex_state = 2},
- [941] = {.lex_state = 13, .external_lex_state = 2},
- [942] = {.lex_state = 13, .external_lex_state = 2},
- [943] = {.lex_state = 13, .external_lex_state = 2},
- [944] = {.lex_state = 13, .external_lex_state = 2},
- [945] = {.lex_state = 13, .external_lex_state = 2},
- [946] = {.lex_state = 13, .external_lex_state = 2},
- [947] = {.lex_state = 13, .external_lex_state = 2},
- [948] = {.lex_state = 13, .external_lex_state = 2},
- [949] = {.lex_state = 13, .external_lex_state = 2},
- [950] = {.lex_state = 13, .external_lex_state = 2},
- [951] = {.lex_state = 13, .external_lex_state = 2},
- [952] = {.lex_state = 13, .external_lex_state = 2},
- [953] = {.lex_state = 13, .external_lex_state = 2},
- [954] = {.lex_state = 13, .external_lex_state = 2},
- [955] = {.lex_state = 13, .external_lex_state = 2},
- [956] = {.lex_state = 13, .external_lex_state = 2},
- [957] = {.lex_state = 13, .external_lex_state = 2},
- [958] = {.lex_state = 13, .external_lex_state = 2},
- [959] = {.lex_state = 13, .external_lex_state = 2},
- [960] = {.lex_state = 13, .external_lex_state = 2},
- [961] = {.lex_state = 13, .external_lex_state = 2},
- [962] = {.lex_state = 13, .external_lex_state = 2},
- [963] = {.lex_state = 13, .external_lex_state = 2},
- [964] = {.lex_state = 13, .external_lex_state = 2},
- [965] = {.lex_state = 13, .external_lex_state = 2},
- [966] = {.lex_state = 13, .external_lex_state = 2},
- [967] = {.lex_state = 13, .external_lex_state = 2},
- [968] = {.lex_state = 13, .external_lex_state = 2},
- [969] = {.lex_state = 13, .external_lex_state = 2},
- [970] = {.lex_state = 13, .external_lex_state = 2},
- [971] = {.lex_state = 13, .external_lex_state = 2},
- [972] = {.lex_state = 13, .external_lex_state = 2},
- [973] = {.lex_state = 13, .external_lex_state = 2},
- [974] = {.lex_state = 13, .external_lex_state = 2},
- [975] = {.lex_state = 13, .external_lex_state = 2},
- [976] = {.lex_state = 13, .external_lex_state = 2},
- [977] = {.lex_state = 13, .external_lex_state = 2},
- [978] = {.lex_state = 13, .external_lex_state = 2},
- [979] = {.lex_state = 13, .external_lex_state = 2},
- [980] = {.lex_state = 13, .external_lex_state = 2},
- [981] = {.lex_state = 13, .external_lex_state = 2},
- [982] = {.lex_state = 13, .external_lex_state = 2},
- [983] = {.lex_state = 13, .external_lex_state = 2},
- [984] = {.lex_state = 13, .external_lex_state = 2},
- [985] = {.lex_state = 13, .external_lex_state = 2},
- [986] = {.lex_state = 13, .external_lex_state = 2},
- [987] = {.lex_state = 13, .external_lex_state = 2},
- [988] = {.lex_state = 13, .external_lex_state = 2},
- [989] = {.lex_state = 13, .external_lex_state = 2},
- [990] = {.lex_state = 13, .external_lex_state = 2},
- [991] = {.lex_state = 13, .external_lex_state = 2},
- [992] = {.lex_state = 13, .external_lex_state = 2},
- [993] = {.lex_state = 13, .external_lex_state = 2},
- [994] = {.lex_state = 13, .external_lex_state = 2},
- [995] = {.lex_state = 13, .external_lex_state = 2},
- [996] = {.lex_state = 13, .external_lex_state = 2},
- [997] = {.lex_state = 13, .external_lex_state = 2},
- [998] = {.lex_state = 13, .external_lex_state = 2},
- [999] = {.lex_state = 13, .external_lex_state = 2},
- [1000] = {.lex_state = 13, .external_lex_state = 2},
- [1001] = {.lex_state = 13, .external_lex_state = 2},
- [1002] = {.lex_state = 13, .external_lex_state = 2},
- [1003] = {.lex_state = 13, .external_lex_state = 2},
- [1004] = {.lex_state = 13, .external_lex_state = 2},
- [1005] = {.lex_state = 13, .external_lex_state = 2},
- [1006] = {.lex_state = 13, .external_lex_state = 2},
- [1007] = {.lex_state = 13, .external_lex_state = 2},
- [1008] = {.lex_state = 13, .external_lex_state = 2},
- [1009] = {.lex_state = 13, .external_lex_state = 2},
- [1010] = {.lex_state = 13, .external_lex_state = 2},
- [1011] = {.lex_state = 13, .external_lex_state = 2},
- [1012] = {.lex_state = 13, .external_lex_state = 2},
- [1013] = {.lex_state = 13, .external_lex_state = 2},
- [1014] = {.lex_state = 13, .external_lex_state = 2},
- [1015] = {.lex_state = 13, .external_lex_state = 2},
- [1016] = {.lex_state = 13, .external_lex_state = 2},
- [1017] = {.lex_state = 13, .external_lex_state = 2},
- [1018] = {.lex_state = 13, .external_lex_state = 2},
- [1019] = {.lex_state = 13, .external_lex_state = 2},
- [1020] = {.lex_state = 13, .external_lex_state = 2},
- [1021] = {.lex_state = 13, .external_lex_state = 2},
- [1022] = {.lex_state = 13, .external_lex_state = 2},
- [1023] = {.lex_state = 13, .external_lex_state = 2},
- [1024] = {.lex_state = 13, .external_lex_state = 2},
- [1025] = {.lex_state = 13, .external_lex_state = 2},
- [1026] = {.lex_state = 13, .external_lex_state = 2},
- [1027] = {.lex_state = 13, .external_lex_state = 2},
- [1028] = {.lex_state = 13, .external_lex_state = 2},
- [1029] = {.lex_state = 13, .external_lex_state = 2},
- [1030] = {.lex_state = 13, .external_lex_state = 2},
- [1031] = {.lex_state = 13, .external_lex_state = 2},
- [1032] = {.lex_state = 13, .external_lex_state = 2},
- [1033] = {.lex_state = 13, .external_lex_state = 2},
- [1034] = {.lex_state = 13, .external_lex_state = 2},
- [1035] = {.lex_state = 13, .external_lex_state = 2},
- [1036] = {.lex_state = 13, .external_lex_state = 2},
- [1037] = {.lex_state = 13, .external_lex_state = 2},
- [1038] = {.lex_state = 13, .external_lex_state = 2},
- [1039] = {.lex_state = 13, .external_lex_state = 2},
- [1040] = {.lex_state = 13, .external_lex_state = 2},
- [1041] = {.lex_state = 13, .external_lex_state = 2},
- [1042] = {.lex_state = 13, .external_lex_state = 2},
- [1043] = {.lex_state = 13, .external_lex_state = 2},
- [1044] = {.lex_state = 13, .external_lex_state = 2},
- [1045] = {.lex_state = 13, .external_lex_state = 2},
- [1046] = {.lex_state = 13, .external_lex_state = 2},
- [1047] = {.lex_state = 13, .external_lex_state = 2},
- [1048] = {.lex_state = 13, .external_lex_state = 2},
- [1049] = {.lex_state = 13, .external_lex_state = 2},
- [1050] = {.lex_state = 13, .external_lex_state = 2},
- [1051] = {.lex_state = 13, .external_lex_state = 2},
- [1052] = {.lex_state = 13, .external_lex_state = 2},
- [1053] = {.lex_state = 13, .external_lex_state = 2},
- [1054] = {.lex_state = 13, .external_lex_state = 2},
- [1055] = {.lex_state = 13, .external_lex_state = 2},
- [1056] = {.lex_state = 13, .external_lex_state = 2},
- [1057] = {.lex_state = 13, .external_lex_state = 2},
- [1058] = {.lex_state = 13, .external_lex_state = 2},
- [1059] = {.lex_state = 13, .external_lex_state = 2},
- [1060] = {.lex_state = 13, .external_lex_state = 2},
- [1061] = {.lex_state = 13, .external_lex_state = 2},
- [1062] = {.lex_state = 13, .external_lex_state = 2},
- [1063] = {.lex_state = 13, .external_lex_state = 2},
- [1064] = {.lex_state = 13, .external_lex_state = 2},
- [1065] = {.lex_state = 13, .external_lex_state = 2},
- [1066] = {.lex_state = 13, .external_lex_state = 2},
- [1067] = {.lex_state = 13, .external_lex_state = 2},
- [1068] = {.lex_state = 13, .external_lex_state = 2},
- [1069] = {.lex_state = 13, .external_lex_state = 2},
- [1070] = {.lex_state = 13, .external_lex_state = 2},
- [1071] = {.lex_state = 13, .external_lex_state = 2},
- [1072] = {.lex_state = 13, .external_lex_state = 2},
- [1073] = {.lex_state = 13, .external_lex_state = 2},
- [1074] = {.lex_state = 13, .external_lex_state = 2},
- [1075] = {.lex_state = 13, .external_lex_state = 2},
- [1076] = {.lex_state = 13, .external_lex_state = 2},
- [1077] = {.lex_state = 13, .external_lex_state = 2},
- [1078] = {.lex_state = 13, .external_lex_state = 2},
- [1079] = {.lex_state = 13, .external_lex_state = 2},
- [1080] = {.lex_state = 13, .external_lex_state = 2},
- [1081] = {.lex_state = 13, .external_lex_state = 2},
- [1082] = {.lex_state = 13, .external_lex_state = 2},
- [1083] = {.lex_state = 13, .external_lex_state = 2},
- [1084] = {.lex_state = 13, .external_lex_state = 2},
- [1085] = {.lex_state = 13, .external_lex_state = 2},
- [1086] = {.lex_state = 13, .external_lex_state = 2},
- [1087] = {.lex_state = 13, .external_lex_state = 2},
- [1088] = {.lex_state = 14, .external_lex_state = 2},
- [1089] = {.lex_state = 14, .external_lex_state = 2},
- [1090] = {.lex_state = 14, .external_lex_state = 2},
- [1091] = {.lex_state = 14, .external_lex_state = 2},
- [1092] = {.lex_state = 14, .external_lex_state = 2},
- [1093] = {.lex_state = 14, .external_lex_state = 2},
- [1094] = {.lex_state = 14, .external_lex_state = 2},
- [1095] = {.lex_state = 14, .external_lex_state = 2},
- [1096] = {.lex_state = 14, .external_lex_state = 2},
- [1097] = {.lex_state = 14, .external_lex_state = 2},
- [1098] = {.lex_state = 14, .external_lex_state = 2},
- [1099] = {.lex_state = 14, .external_lex_state = 2},
- [1100] = {.lex_state = 6, .external_lex_state = 4},
- [1101] = {.lex_state = 7, .external_lex_state = 4},
- [1102] = {.lex_state = 6, .external_lex_state = 4},
- [1103] = {.lex_state = 7, .external_lex_state = 4},
- [1104] = {.lex_state = 6, .external_lex_state = 4},
- [1105] = {.lex_state = 6, .external_lex_state = 4},
- [1106] = {.lex_state = 6, .external_lex_state = 4},
- [1107] = {.lex_state = 6, .external_lex_state = 4},
- [1108] = {.lex_state = 7, .external_lex_state = 4},
- [1109] = {.lex_state = 6, .external_lex_state = 3},
- [1110] = {.lex_state = 6, .external_lex_state = 3},
- [1111] = {.lex_state = 6, .external_lex_state = 3},
- [1112] = {.lex_state = 14, .external_lex_state = 2},
- [1113] = {.lex_state = 6, .external_lex_state = 3},
- [1114] = {.lex_state = 6, .external_lex_state = 3},
- [1115] = {.lex_state = 14, .external_lex_state = 2},
- [1116] = {.lex_state = 6, .external_lex_state = 4},
- [1117] = {.lex_state = 6, .external_lex_state = 4},
- [1118] = {.lex_state = 6, .external_lex_state = 3},
- [1119] = {.lex_state = 7, .external_lex_state = 4},
- [1120] = {.lex_state = 6, .external_lex_state = 4},
- [1121] = {.lex_state = 6, .external_lex_state = 4},
- [1122] = {.lex_state = 6, .external_lex_state = 4},
- [1123] = {.lex_state = 7, .external_lex_state = 4},
- [1124] = {.lex_state = 6, .external_lex_state = 4},
- [1125] = {.lex_state = 6, .external_lex_state = 4},
- [1126] = {.lex_state = 6, .external_lex_state = 4},
- [1127] = {.lex_state = 7, .external_lex_state = 4},
- [1128] = {.lex_state = 7, .external_lex_state = 4},
- [1129] = {.lex_state = 6, .external_lex_state = 4},
- [1130] = {.lex_state = 6, .external_lex_state = 4},
- [1131] = {.lex_state = 6, .external_lex_state = 4},
- [1132] = {.lex_state = 6, .external_lex_state = 4},
- [1133] = {.lex_state = 6, .external_lex_state = 4},
- [1134] = {.lex_state = 7, .external_lex_state = 3},
- [1135] = {.lex_state = 6, .external_lex_state = 4},
- [1136] = {.lex_state = 7, .external_lex_state = 3},
- [1137] = {.lex_state = 6, .external_lex_state = 3},
- [1138] = {.lex_state = 6, .external_lex_state = 4},
- [1139] = {.lex_state = 7, .external_lex_state = 3},
- [1140] = {.lex_state = 6, .external_lex_state = 4},
- [1141] = {.lex_state = 6, .external_lex_state = 3},
- [1142] = {.lex_state = 6, .external_lex_state = 3},
- [1143] = {.lex_state = 7, .external_lex_state = 4},
- [1144] = {.lex_state = 7, .external_lex_state = 3},
- [1145] = {.lex_state = 6, .external_lex_state = 3},
- [1146] = {.lex_state = 7, .external_lex_state = 3},
- [1147] = {.lex_state = 7, .external_lex_state = 3},
- [1148] = {.lex_state = 7, .external_lex_state = 3},
- [1149] = {.lex_state = 7, .external_lex_state = 3},
- [1150] = {.lex_state = 7, .external_lex_state = 3},
- [1151] = {.lex_state = 6, .external_lex_state = 4},
- [1152] = {.lex_state = 6, .external_lex_state = 4},
- [1153] = {.lex_state = 6, .external_lex_state = 4},
- [1154] = {.lex_state = 6, .external_lex_state = 4},
- [1155] = {.lex_state = 6, .external_lex_state = 4},
- [1156] = {.lex_state = 6, .external_lex_state = 4},
- [1157] = {.lex_state = 6, .external_lex_state = 4},
- [1158] = {.lex_state = 6, .external_lex_state = 4},
- [1159] = {.lex_state = 6, .external_lex_state = 4},
- [1160] = {.lex_state = 6, .external_lex_state = 4},
- [1161] = {.lex_state = 7, .external_lex_state = 4},
- [1162] = {.lex_state = 7, .external_lex_state = 3},
- [1163] = {.lex_state = 6, .external_lex_state = 3},
- [1164] = {.lex_state = 6, .external_lex_state = 3},
- [1165] = {.lex_state = 7, .external_lex_state = 3},
- [1166] = {.lex_state = 6, .external_lex_state = 3},
- [1167] = {.lex_state = 6, .external_lex_state = 4},
- [1168] = {.lex_state = 6, .external_lex_state = 3},
- [1169] = {.lex_state = 6, .external_lex_state = 3},
- [1170] = {.lex_state = 6, .external_lex_state = 3},
- [1171] = {.lex_state = 6, .external_lex_state = 4},
- [1172] = {.lex_state = 6, .external_lex_state = 4},
- [1173] = {.lex_state = 6, .external_lex_state = 3},
- [1174] = {.lex_state = 7, .external_lex_state = 3},
- [1175] = {.lex_state = 6, .external_lex_state = 4},
- [1176] = {.lex_state = 6, .external_lex_state = 3},
- [1177] = {.lex_state = 6, .external_lex_state = 3},
- [1178] = {.lex_state = 7, .external_lex_state = 3},
- [1179] = {.lex_state = 7, .external_lex_state = 3},
- [1180] = {.lex_state = 6, .external_lex_state = 3},
- [1181] = {.lex_state = 6, .external_lex_state = 3},
- [1182] = {.lex_state = 6, .external_lex_state = 3},
- [1183] = {.lex_state = 151, .external_lex_state = 2},
- [1184] = {.lex_state = 6, .external_lex_state = 3},
- [1185] = {.lex_state = 6, .external_lex_state = 3},
- [1186] = {.lex_state = 6, .external_lex_state = 3},
- [1187] = {.lex_state = 6, .external_lex_state = 4},
- [1188] = {.lex_state = 6, .external_lex_state = 4},
- [1189] = {.lex_state = 6, .external_lex_state = 3},
- [1190] = {.lex_state = 6, .external_lex_state = 3},
- [1191] = {.lex_state = 6, .external_lex_state = 3},
- [1192] = {.lex_state = 6, .external_lex_state = 3},
- [1193] = {.lex_state = 6, .external_lex_state = 3},
- [1194] = {.lex_state = 151, .external_lex_state = 2},
- [1195] = {.lex_state = 6, .external_lex_state = 3},
- [1196] = {.lex_state = 6, .external_lex_state = 3},
- [1197] = {.lex_state = 6, .external_lex_state = 3},
- [1198] = {.lex_state = 6, .external_lex_state = 3},
- [1199] = {.lex_state = 6, .external_lex_state = 4},
- [1200] = {.lex_state = 7, .external_lex_state = 3},
- [1201] = {.lex_state = 151, .external_lex_state = 2},
- [1202] = {.lex_state = 6, .external_lex_state = 3},
- [1203] = {.lex_state = 151, .external_lex_state = 2},
- [1204] = {.lex_state = 6, .external_lex_state = 3},
- [1205] = {.lex_state = 7, .external_lex_state = 3},
- [1206] = {.lex_state = 6, .external_lex_state = 3},
- [1207] = {.lex_state = 6, .external_lex_state = 3},
- [1208] = {.lex_state = 6, .external_lex_state = 3},
- [1209] = {.lex_state = 6, .external_lex_state = 3},
- [1210] = {.lex_state = 6, .external_lex_state = 3},
- [1211] = {.lex_state = 6, .external_lex_state = 3},
- [1212] = {.lex_state = 151, .external_lex_state = 2},
- [1213] = {.lex_state = 6, .external_lex_state = 4},
- [1214] = {.lex_state = 6, .external_lex_state = 3},
- [1215] = {.lex_state = 6, .external_lex_state = 3},
- [1216] = {.lex_state = 6, .external_lex_state = 3},
- [1217] = {.lex_state = 6, .external_lex_state = 3},
- [1218] = {.lex_state = 6, .external_lex_state = 3},
- [1219] = {.lex_state = 6, .external_lex_state = 3},
- [1220] = {.lex_state = 7, .external_lex_state = 3},
- [1221] = {.lex_state = 6, .external_lex_state = 3},
- [1222] = {.lex_state = 6, .external_lex_state = 3},
- [1223] = {.lex_state = 6, .external_lex_state = 4},
- [1224] = {.lex_state = 6, .external_lex_state = 4},
- [1225] = {.lex_state = 6, .external_lex_state = 4},
- [1226] = {.lex_state = 6, .external_lex_state = 3},
- [1227] = {.lex_state = 6, .external_lex_state = 3},
- [1228] = {.lex_state = 151, .external_lex_state = 2},
- [1229] = {.lex_state = 6, .external_lex_state = 4},
- [1230] = {.lex_state = 6, .external_lex_state = 3},
- [1231] = {.lex_state = 151, .external_lex_state = 2},
- [1232] = {.lex_state = 6, .external_lex_state = 3},
- [1233] = {.lex_state = 151, .external_lex_state = 2},
- [1234] = {.lex_state = 6, .external_lex_state = 3},
- [1235] = {.lex_state = 6, .external_lex_state = 3},
- [1236] = {.lex_state = 6, .external_lex_state = 4},
- [1237] = {.lex_state = 6, .external_lex_state = 3},
- [1238] = {.lex_state = 6, .external_lex_state = 4},
- [1239] = {.lex_state = 6, .external_lex_state = 4},
- [1240] = {.lex_state = 6, .external_lex_state = 3},
- [1241] = {.lex_state = 6, .external_lex_state = 3},
- [1242] = {.lex_state = 6, .external_lex_state = 3},
- [1243] = {.lex_state = 6, .external_lex_state = 4},
- [1244] = {.lex_state = 151, .external_lex_state = 2},
- [1245] = {.lex_state = 6, .external_lex_state = 4},
- [1246] = {.lex_state = 6, .external_lex_state = 4},
- [1247] = {.lex_state = 6, .external_lex_state = 4},
- [1248] = {.lex_state = 6, .external_lex_state = 3},
- [1249] = {.lex_state = 6, .external_lex_state = 3},
- [1250] = {.lex_state = 6, .external_lex_state = 4},
- [1251] = {.lex_state = 6, .external_lex_state = 3},
- [1252] = {.lex_state = 6, .external_lex_state = 4},
- [1253] = {.lex_state = 6, .external_lex_state = 4},
- [1254] = {.lex_state = 6, .external_lex_state = 4},
- [1255] = {.lex_state = 6, .external_lex_state = 4},
- [1256] = {.lex_state = 6, .external_lex_state = 4},
- [1257] = {.lex_state = 6, .external_lex_state = 4},
- [1258] = {.lex_state = 6, .external_lex_state = 4},
- [1259] = {.lex_state = 6, .external_lex_state = 4},
- [1260] = {.lex_state = 6, .external_lex_state = 4},
- [1261] = {.lex_state = 6, .external_lex_state = 4},
- [1262] = {.lex_state = 6, .external_lex_state = 4},
- [1263] = {.lex_state = 6, .external_lex_state = 4},
- [1264] = {.lex_state = 6, .external_lex_state = 4},
- [1265] = {.lex_state = 6, .external_lex_state = 4},
- [1266] = {.lex_state = 6, .external_lex_state = 3},
- [1267] = {.lex_state = 6, .external_lex_state = 4},
- [1268] = {.lex_state = 6, .external_lex_state = 3},
- [1269] = {.lex_state = 6, .external_lex_state = 4},
- [1270] = {.lex_state = 6, .external_lex_state = 4},
- [1271] = {.lex_state = 6, .external_lex_state = 4},
- [1272] = {.lex_state = 6, .external_lex_state = 4},
- [1273] = {.lex_state = 7, .external_lex_state = 3},
- [1274] = {.lex_state = 6, .external_lex_state = 3},
- [1275] = {.lex_state = 6, .external_lex_state = 3},
- [1276] = {.lex_state = 6, .external_lex_state = 3},
- [1277] = {.lex_state = 6, .external_lex_state = 4},
- [1278] = {.lex_state = 6, .external_lex_state = 4},
- [1279] = {.lex_state = 6, .external_lex_state = 4},
- [1280] = {.lex_state = 6, .external_lex_state = 4},
- [1281] = {.lex_state = 6, .external_lex_state = 3},
- [1282] = {.lex_state = 6, .external_lex_state = 3},
- [1283] = {.lex_state = 6, .external_lex_state = 4},
- [1284] = {.lex_state = 6, .external_lex_state = 3},
- [1285] = {.lex_state = 6, .external_lex_state = 4},
- [1286] = {.lex_state = 6, .external_lex_state = 3},
- [1287] = {.lex_state = 7, .external_lex_state = 3},
- [1288] = {.lex_state = 6, .external_lex_state = 4},
- [1289] = {.lex_state = 6, .external_lex_state = 4},
- [1290] = {.lex_state = 6, .external_lex_state = 4},
- [1291] = {.lex_state = 6, .external_lex_state = 4},
- [1292] = {.lex_state = 6, .external_lex_state = 3},
- [1293] = {.lex_state = 6, .external_lex_state = 4},
- [1294] = {.lex_state = 6, .external_lex_state = 4},
- [1295] = {.lex_state = 7, .external_lex_state = 3},
- [1296] = {.lex_state = 6, .external_lex_state = 3},
- [1297] = {.lex_state = 6, .external_lex_state = 3},
- [1298] = {.lex_state = 6, .external_lex_state = 3},
- [1299] = {.lex_state = 7, .external_lex_state = 3},
- [1300] = {.lex_state = 6, .external_lex_state = 4},
- [1301] = {.lex_state = 6, .external_lex_state = 3},
- [1302] = {.lex_state = 6, .external_lex_state = 3},
- [1303] = {.lex_state = 6, .external_lex_state = 3},
- [1304] = {.lex_state = 6, .external_lex_state = 3},
- [1305] = {.lex_state = 7, .external_lex_state = 3},
- [1306] = {.lex_state = 6, .external_lex_state = 3},
- [1307] = {.lex_state = 6, .external_lex_state = 3},
- [1308] = {.lex_state = 6, .external_lex_state = 4},
- [1309] = {.lex_state = 13, .external_lex_state = 2},
- [1310] = {.lex_state = 13, .external_lex_state = 2},
- [1311] = {.lex_state = 6, .external_lex_state = 3},
- [1312] = {.lex_state = 6, .external_lex_state = 3},
- [1313] = {.lex_state = 6, .external_lex_state = 3},
- [1314] = {.lex_state = 6, .external_lex_state = 4},
- [1315] = {.lex_state = 13, .external_lex_state = 2},
- [1316] = {.lex_state = 6, .external_lex_state = 3},
- [1317] = {.lex_state = 6, .external_lex_state = 3},
- [1318] = {.lex_state = 6, .external_lex_state = 3},
- [1319] = {.lex_state = 6, .external_lex_state = 3},
- [1320] = {.lex_state = 6, .external_lex_state = 3},
- [1321] = {.lex_state = 13, .external_lex_state = 2},
- [1322] = {.lex_state = 6, .external_lex_state = 3},
- [1323] = {.lex_state = 13, .external_lex_state = 2},
- [1324] = {.lex_state = 6, .external_lex_state = 3},
- [1325] = {.lex_state = 6, .external_lex_state = 3},
- [1326] = {.lex_state = 6, .external_lex_state = 4},
- [1327] = {.lex_state = 7, .external_lex_state = 3},
- [1328] = {.lex_state = 6, .external_lex_state = 4},
- [1329] = {.lex_state = 13, .external_lex_state = 2},
- [1330] = {.lex_state = 6, .external_lex_state = 3},
- [1331] = {.lex_state = 6, .external_lex_state = 3},
- [1332] = {.lex_state = 6, .external_lex_state = 3},
- [1333] = {.lex_state = 6, .external_lex_state = 3},
- [1334] = {.lex_state = 6, .external_lex_state = 3},
- [1335] = {.lex_state = 6, .external_lex_state = 3},
- [1336] = {.lex_state = 6, .external_lex_state = 3},
- [1337] = {.lex_state = 6, .external_lex_state = 3},
- [1338] = {.lex_state = 6, .external_lex_state = 4},
- [1339] = {.lex_state = 6, .external_lex_state = 3},
- [1340] = {.lex_state = 6, .external_lex_state = 3},
- [1341] = {.lex_state = 6, .external_lex_state = 3},
- [1342] = {.lex_state = 6, .external_lex_state = 3},
- [1343] = {.lex_state = 6, .external_lex_state = 3},
- [1344] = {.lex_state = 6, .external_lex_state = 3},
- [1345] = {.lex_state = 6, .external_lex_state = 3},
- [1346] = {.lex_state = 13, .external_lex_state = 2},
- [1347] = {.lex_state = 13, .external_lex_state = 2},
- [1348] = {.lex_state = 13, .external_lex_state = 2},
- [1349] = {.lex_state = 6, .external_lex_state = 3},
- [1350] = {.lex_state = 13, .external_lex_state = 2},
- [1351] = {.lex_state = 6, .external_lex_state = 3},
- [1352] = {.lex_state = 13, .external_lex_state = 2},
- [1353] = {.lex_state = 13, .external_lex_state = 2},
- [1354] = {.lex_state = 13, .external_lex_state = 2},
- [1355] = {.lex_state = 13, .external_lex_state = 2},
- [1356] = {.lex_state = 6, .external_lex_state = 3},
- [1357] = {.lex_state = 6, .external_lex_state = 3},
- [1358] = {.lex_state = 13, .external_lex_state = 2},
- [1359] = {.lex_state = 13, .external_lex_state = 2},
- [1360] = {.lex_state = 13, .external_lex_state = 2},
- [1361] = {.lex_state = 6, .external_lex_state = 3},
- [1362] = {.lex_state = 13, .external_lex_state = 2},
- [1363] = {.lex_state = 6, .external_lex_state = 3},
- [1364] = {.lex_state = 13, .external_lex_state = 2},
- [1365] = {.lex_state = 6, .external_lex_state = 3},
- [1366] = {.lex_state = 6, .external_lex_state = 3},
- [1367] = {.lex_state = 13, .external_lex_state = 2},
- [1368] = {.lex_state = 6, .external_lex_state = 3},
- [1369] = {.lex_state = 6, .external_lex_state = 3},
- [1370] = {.lex_state = 6, .external_lex_state = 3},
- [1371] = {.lex_state = 6, .external_lex_state = 3},
- [1372] = {.lex_state = 13, .external_lex_state = 2},
- [1373] = {.lex_state = 6, .external_lex_state = 3},
- [1374] = {.lex_state = 6, .external_lex_state = 3},
- [1375] = {.lex_state = 6, .external_lex_state = 3},
- [1376] = {.lex_state = 6, .external_lex_state = 3},
- [1377] = {.lex_state = 13, .external_lex_state = 2},
- [1378] = {.lex_state = 13, .external_lex_state = 2},
- [1379] = {.lex_state = 13, .external_lex_state = 2},
- [1380] = {.lex_state = 6, .external_lex_state = 3},
- [1381] = {.lex_state = 6, .external_lex_state = 3},
- [1382] = {.lex_state = 6, .external_lex_state = 3},
- [1383] = {.lex_state = 6, .external_lex_state = 3},
- [1384] = {.lex_state = 6, .external_lex_state = 3},
- [1385] = {.lex_state = 6, .external_lex_state = 3},
- [1386] = {.lex_state = 6, .external_lex_state = 3},
- [1387] = {.lex_state = 6, .external_lex_state = 3},
- [1388] = {.lex_state = 6, .external_lex_state = 3},
- [1389] = {.lex_state = 6, .external_lex_state = 3},
- [1390] = {.lex_state = 6, .external_lex_state = 3},
- [1391] = {.lex_state = 6, .external_lex_state = 3},
- [1392] = {.lex_state = 6, .external_lex_state = 3},
- [1393] = {.lex_state = 6, .external_lex_state = 3},
- [1394] = {.lex_state = 6, .external_lex_state = 3},
- [1395] = {.lex_state = 6, .external_lex_state = 3},
- [1396] = {.lex_state = 13, .external_lex_state = 2},
- [1397] = {.lex_state = 13, .external_lex_state = 2},
- [1398] = {.lex_state = 13, .external_lex_state = 2},
- [1399] = {.lex_state = 13, .external_lex_state = 2},
- [1400] = {.lex_state = 13, .external_lex_state = 2},
- [1401] = {.lex_state = 13, .external_lex_state = 2},
- [1402] = {.lex_state = 13, .external_lex_state = 2},
- [1403] = {.lex_state = 13, .external_lex_state = 2},
- [1404] = {.lex_state = 14, .external_lex_state = 5},
- [1405] = {.lex_state = 13, .external_lex_state = 2},
- [1406] = {.lex_state = 13, .external_lex_state = 2},
- [1407] = {.lex_state = 13, .external_lex_state = 2},
- [1408] = {.lex_state = 13, .external_lex_state = 2},
- [1409] = {.lex_state = 13, .external_lex_state = 2},
- [1410] = {.lex_state = 14, .external_lex_state = 5},
- [1411] = {.lex_state = 13, .external_lex_state = 2},
- [1412] = {.lex_state = 14, .external_lex_state = 5},
- [1413] = {.lex_state = 13, .external_lex_state = 2},
- [1414] = {.lex_state = 14, .external_lex_state = 5},
- [1415] = {.lex_state = 13, .external_lex_state = 2},
- [1416] = {.lex_state = 13, .external_lex_state = 2},
- [1417] = {.lex_state = 14, .external_lex_state = 5},
- [1418] = {.lex_state = 13, .external_lex_state = 2},
- [1419] = {.lex_state = 151, .external_lex_state = 2},
- [1420] = {.lex_state = 151, .external_lex_state = 2},
- [1421] = {.lex_state = 151, .external_lex_state = 2},
- [1422] = {.lex_state = 151, .external_lex_state = 2},
- [1423] = {.lex_state = 151, .external_lex_state = 2},
- [1424] = {.lex_state = 151, .external_lex_state = 2},
- [1425] = {.lex_state = 151, .external_lex_state = 2},
- [1426] = {.lex_state = 14, .external_lex_state = 5},
- [1427] = {.lex_state = 14, .external_lex_state = 5},
- [1428] = {.lex_state = 8, .external_lex_state = 4},
- [1429] = {.lex_state = 8, .external_lex_state = 4},
- [1430] = {.lex_state = 8, .external_lex_state = 3},
- [1431] = {.lex_state = 8, .external_lex_state = 3},
- [1432] = {.lex_state = 8, .external_lex_state = 3},
- [1433] = {.lex_state = 8, .external_lex_state = 3},
- [1434] = {.lex_state = 151, .external_lex_state = 2},
- [1435] = {.lex_state = 8, .external_lex_state = 3},
- [1436] = {.lex_state = 8, .external_lex_state = 3},
- [1437] = {.lex_state = 8, .external_lex_state = 3},
- [1438] = {.lex_state = 8, .external_lex_state = 3},
- [1439] = {.lex_state = 8, .external_lex_state = 4},
- [1440] = {.lex_state = 8, .external_lex_state = 3},
- [1441] = {.lex_state = 8, .external_lex_state = 3},
- [1442] = {.lex_state = 8, .external_lex_state = 4},
- [1443] = {.lex_state = 8, .external_lex_state = 3},
- [1444] = {.lex_state = 8, .external_lex_state = 4},
- [1445] = {.lex_state = 8, .external_lex_state = 3},
- [1446] = {.lex_state = 8, .external_lex_state = 3},
- [1447] = {.lex_state = 8, .external_lex_state = 3},
- [1448] = {.lex_state = 8, .external_lex_state = 3},
- [1449] = {.lex_state = 8, .external_lex_state = 3},
- [1450] = {.lex_state = 8, .external_lex_state = 3},
- [1451] = {.lex_state = 8, .external_lex_state = 3},
- [1452] = {.lex_state = 8, .external_lex_state = 4},
- [1453] = {.lex_state = 8, .external_lex_state = 3},
- [1454] = {.lex_state = 8, .external_lex_state = 3},
- [1455] = {.lex_state = 8, .external_lex_state = 3},
- [1456] = {.lex_state = 8, .external_lex_state = 3},
- [1457] = {.lex_state = 8, .external_lex_state = 3},
- [1458] = {.lex_state = 8, .external_lex_state = 3},
- [1459] = {.lex_state = 8, .external_lex_state = 3},
- [1460] = {.lex_state = 8, .external_lex_state = 3},
- [1461] = {.lex_state = 8, .external_lex_state = 3},
- [1462] = {.lex_state = 8, .external_lex_state = 3},
- [1463] = {.lex_state = 8, .external_lex_state = 3},
- [1464] = {.lex_state = 8, .external_lex_state = 3},
- [1465] = {.lex_state = 8, .external_lex_state = 3},
- [1466] = {.lex_state = 8, .external_lex_state = 3},
- [1467] = {.lex_state = 8, .external_lex_state = 3},
- [1468] = {.lex_state = 8, .external_lex_state = 3},
- [1469] = {.lex_state = 8, .external_lex_state = 3},
- [1470] = {.lex_state = 8, .external_lex_state = 3},
- [1471] = {.lex_state = 8, .external_lex_state = 3},
- [1472] = {.lex_state = 8, .external_lex_state = 3},
- [1473] = {.lex_state = 8, .external_lex_state = 3},
- [1474] = {.lex_state = 8, .external_lex_state = 3},
- [1475] = {.lex_state = 8, .external_lex_state = 3},
- [1476] = {.lex_state = 8, .external_lex_state = 3},
- [1477] = {.lex_state = 8, .external_lex_state = 3},
- [1478] = {.lex_state = 8, .external_lex_state = 3},
- [1479] = {.lex_state = 8, .external_lex_state = 3},
- [1480] = {.lex_state = 8, .external_lex_state = 3},
- [1481] = {.lex_state = 8, .external_lex_state = 3},
- [1482] = {.lex_state = 8, .external_lex_state = 3},
- [1483] = {.lex_state = 8, .external_lex_state = 3},
- [1484] = {.lex_state = 8, .external_lex_state = 3},
- [1485] = {.lex_state = 8, .external_lex_state = 3},
- [1486] = {.lex_state = 8, .external_lex_state = 3},
- [1487] = {.lex_state = 8, .external_lex_state = 3},
- [1488] = {.lex_state = 8, .external_lex_state = 3},
- [1489] = {.lex_state = 8, .external_lex_state = 3},
- [1490] = {.lex_state = 8, .external_lex_state = 3},
- [1491] = {.lex_state = 8, .external_lex_state = 3},
- [1492] = {.lex_state = 8, .external_lex_state = 3},
- [1493] = {.lex_state = 8, .external_lex_state = 3},
- [1494] = {.lex_state = 8, .external_lex_state = 3},
- [1495] = {.lex_state = 8, .external_lex_state = 3},
- [1496] = {.lex_state = 8, .external_lex_state = 3},
- [1497] = {.lex_state = 8, .external_lex_state = 3},
- [1498] = {.lex_state = 8, .external_lex_state = 3},
- [1499] = {.lex_state = 8, .external_lex_state = 3},
- [1500] = {.lex_state = 8, .external_lex_state = 4},
- [1501] = {.lex_state = 8, .external_lex_state = 3},
- [1502] = {.lex_state = 8, .external_lex_state = 3},
- [1503] = {.lex_state = 8, .external_lex_state = 3},
- [1504] = {.lex_state = 8, .external_lex_state = 3},
- [1505] = {.lex_state = 8, .external_lex_state = 3},
- [1506] = {.lex_state = 13, .external_lex_state = 5},
- [1507] = {.lex_state = 8, .external_lex_state = 3},
- [1508] = {.lex_state = 8, .external_lex_state = 3},
- [1509] = {.lex_state = 8, .external_lex_state = 3},
- [1510] = {.lex_state = 8, .external_lex_state = 3},
- [1511] = {.lex_state = 8, .external_lex_state = 3},
- [1512] = {.lex_state = 8, .external_lex_state = 3},
- [1513] = {.lex_state = 8, .external_lex_state = 3},
- [1514] = {.lex_state = 8, .external_lex_state = 3},
- [1515] = {.lex_state = 8, .external_lex_state = 3},
- [1516] = {.lex_state = 8, .external_lex_state = 3},
- [1517] = {.lex_state = 8, .external_lex_state = 3},
- [1518] = {.lex_state = 8, .external_lex_state = 3},
- [1519] = {.lex_state = 8, .external_lex_state = 3},
- [1520] = {.lex_state = 8, .external_lex_state = 3},
- [1521] = {.lex_state = 8, .external_lex_state = 3},
- [1522] = {.lex_state = 8, .external_lex_state = 3},
- [1523] = {.lex_state = 8, .external_lex_state = 3},
- [1524] = {.lex_state = 8, .external_lex_state = 3},
- [1525] = {.lex_state = 8, .external_lex_state = 3},
- [1526] = {.lex_state = 8, .external_lex_state = 3},
- [1527] = {.lex_state = 8, .external_lex_state = 3},
- [1528] = {.lex_state = 8, .external_lex_state = 3},
- [1529] = {.lex_state = 8, .external_lex_state = 3},
- [1530] = {.lex_state = 8, .external_lex_state = 3},
- [1531] = {.lex_state = 8, .external_lex_state = 3},
- [1532] = {.lex_state = 8, .external_lex_state = 3},
- [1533] = {.lex_state = 8, .external_lex_state = 4},
- [1534] = {.lex_state = 8, .external_lex_state = 3},
- [1535] = {.lex_state = 8, .external_lex_state = 3},
- [1536] = {.lex_state = 8, .external_lex_state = 3},
- [1537] = {.lex_state = 8, .external_lex_state = 3},
- [1538] = {.lex_state = 8, .external_lex_state = 3},
- [1539] = {.lex_state = 8, .external_lex_state = 3},
- [1540] = {.lex_state = 8, .external_lex_state = 3},
- [1541] = {.lex_state = 8, .external_lex_state = 3},
- [1542] = {.lex_state = 8, .external_lex_state = 3},
- [1543] = {.lex_state = 8, .external_lex_state = 3},
- [1544] = {.lex_state = 8, .external_lex_state = 3},
- [1545] = {.lex_state = 8, .external_lex_state = 3},
- [1546] = {.lex_state = 8, .external_lex_state = 3},
- [1547] = {.lex_state = 8, .external_lex_state = 3},
- [1548] = {.lex_state = 8, .external_lex_state = 3},
- [1549] = {.lex_state = 13, .external_lex_state = 5},
- [1550] = {.lex_state = 8, .external_lex_state = 3},
- [1551] = {.lex_state = 8, .external_lex_state = 3},
- [1552] = {.lex_state = 13, .external_lex_state = 5},
- [1553] = {.lex_state = 8, .external_lex_state = 3},
- [1554] = {.lex_state = 8, .external_lex_state = 3},
- [1555] = {.lex_state = 8, .external_lex_state = 3},
- [1556] = {.lex_state = 8, .external_lex_state = 3},
- [1557] = {.lex_state = 8, .external_lex_state = 3},
- [1558] = {.lex_state = 8, .external_lex_state = 3},
- [1559] = {.lex_state = 8, .external_lex_state = 3},
- [1560] = {.lex_state = 8, .external_lex_state = 3},
- [1561] = {.lex_state = 8, .external_lex_state = 3},
- [1562] = {.lex_state = 8, .external_lex_state = 3},
- [1563] = {.lex_state = 8, .external_lex_state = 3},
- [1564] = {.lex_state = 8, .external_lex_state = 3},
- [1565] = {.lex_state = 8, .external_lex_state = 3},
- [1566] = {.lex_state = 8, .external_lex_state = 3},
- [1567] = {.lex_state = 13, .external_lex_state = 5},
- [1568] = {.lex_state = 8, .external_lex_state = 4},
- [1569] = {.lex_state = 8, .external_lex_state = 4},
- [1570] = {.lex_state = 8, .external_lex_state = 3},
- [1571] = {.lex_state = 8, .external_lex_state = 3},
- [1572] = {.lex_state = 8, .external_lex_state = 3},
- [1573] = {.lex_state = 8, .external_lex_state = 3},
- [1574] = {.lex_state = 8, .external_lex_state = 3},
- [1575] = {.lex_state = 8, .external_lex_state = 3},
- [1576] = {.lex_state = 8, .external_lex_state = 3},
- [1577] = {.lex_state = 8, .external_lex_state = 3},
- [1578] = {.lex_state = 8, .external_lex_state = 3},
- [1579] = {.lex_state = 8, .external_lex_state = 3},
- [1580] = {.lex_state = 8, .external_lex_state = 3},
- [1581] = {.lex_state = 8, .external_lex_state = 3},
- [1582] = {.lex_state = 8, .external_lex_state = 3},
- [1583] = {.lex_state = 8, .external_lex_state = 3},
- [1584] = {.lex_state = 8, .external_lex_state = 3},
- [1585] = {.lex_state = 8, .external_lex_state = 3},
- [1586] = {.lex_state = 8, .external_lex_state = 3},
- [1587] = {.lex_state = 8, .external_lex_state = 3},
- [1588] = {.lex_state = 8, .external_lex_state = 3},
- [1589] = {.lex_state = 13, .external_lex_state = 5},
- [1590] = {.lex_state = 8, .external_lex_state = 3},
- [1591] = {.lex_state = 8, .external_lex_state = 3},
- [1592] = {.lex_state = 8, .external_lex_state = 3},
- [1593] = {.lex_state = 8, .external_lex_state = 3},
- [1594] = {.lex_state = 8, .external_lex_state = 3},
- [1595] = {.lex_state = 8, .external_lex_state = 3},
- [1596] = {.lex_state = 8, .external_lex_state = 3},
- [1597] = {.lex_state = 8, .external_lex_state = 3},
- [1598] = {.lex_state = 8, .external_lex_state = 3},
- [1599] = {.lex_state = 8, .external_lex_state = 3},
- [1600] = {.lex_state = 8, .external_lex_state = 3},
- [1601] = {.lex_state = 8, .external_lex_state = 3},
- [1602] = {.lex_state = 8, .external_lex_state = 3},
- [1603] = {.lex_state = 8, .external_lex_state = 3},
- [1604] = {.lex_state = 8, .external_lex_state = 3},
- [1605] = {.lex_state = 8, .external_lex_state = 3},
- [1606] = {.lex_state = 8, .external_lex_state = 3},
- [1607] = {.lex_state = 8, .external_lex_state = 3},
- [1608] = {.lex_state = 8, .external_lex_state = 3},
- [1609] = {.lex_state = 8, .external_lex_state = 3},
- [1610] = {.lex_state = 8, .external_lex_state = 3},
- [1611] = {.lex_state = 8, .external_lex_state = 3},
- [1612] = {.lex_state = 8, .external_lex_state = 3},
- [1613] = {.lex_state = 8, .external_lex_state = 3},
- [1614] = {.lex_state = 8, .external_lex_state = 3},
- [1615] = {.lex_state = 8, .external_lex_state = 4},
- [1616] = {.lex_state = 8, .external_lex_state = 4},
- [1617] = {.lex_state = 8, .external_lex_state = 4},
- [1618] = {.lex_state = 8, .external_lex_state = 4},
- [1619] = {.lex_state = 8, .external_lex_state = 3},
- [1620] = {.lex_state = 8, .external_lex_state = 3},
- [1621] = {.lex_state = 8, .external_lex_state = 4},
- [1622] = {.lex_state = 8, .external_lex_state = 3},
- [1623] = {.lex_state = 8, .external_lex_state = 3},
- [1624] = {.lex_state = 8, .external_lex_state = 4},
- [1625] = {.lex_state = 8, .external_lex_state = 4},
- [1626] = {.lex_state = 8, .external_lex_state = 3},
- [1627] = {.lex_state = 8, .external_lex_state = 4},
- [1628] = {.lex_state = 8, .external_lex_state = 3},
- [1629] = {.lex_state = 8, .external_lex_state = 4},
- [1630] = {.lex_state = 8, .external_lex_state = 3},
- [1631] = {.lex_state = 8, .external_lex_state = 3},
- [1632] = {.lex_state = 13, .external_lex_state = 5},
- [1633] = {.lex_state = 8, .external_lex_state = 3},
- [1634] = {.lex_state = 8, .external_lex_state = 3},
- [1635] = {.lex_state = 8, .external_lex_state = 4},
- [1636] = {.lex_state = 8, .external_lex_state = 4},
- [1637] = {.lex_state = 8, .external_lex_state = 4},
- [1638] = {.lex_state = 8, .external_lex_state = 3},
- [1639] = {.lex_state = 8, .external_lex_state = 3},
- [1640] = {.lex_state = 13, .external_lex_state = 5},
- [1641] = {.lex_state = 8, .external_lex_state = 3},
- [1642] = {.lex_state = 8, .external_lex_state = 3},
- [1643] = {.lex_state = 8, .external_lex_state = 3},
- [1644] = {.lex_state = 8, .external_lex_state = 4},
- [1645] = {.lex_state = 8, .external_lex_state = 3},
- [1646] = {.lex_state = 8, .external_lex_state = 3},
- [1647] = {.lex_state = 8, .external_lex_state = 3},
- [1648] = {.lex_state = 8, .external_lex_state = 3},
- [1649] = {.lex_state = 8, .external_lex_state = 3},
- [1650] = {.lex_state = 8, .external_lex_state = 3},
- [1651] = {.lex_state = 8, .external_lex_state = 4},
- [1652] = {.lex_state = 8, .external_lex_state = 4},
- [1653] = {.lex_state = 8, .external_lex_state = 3},
- [1654] = {.lex_state = 8, .external_lex_state = 4},
- [1655] = {.lex_state = 13, .external_lex_state = 5},
- [1656] = {.lex_state = 8, .external_lex_state = 4},
- [1657] = {.lex_state = 8, .external_lex_state = 4},
- [1658] = {.lex_state = 13, .external_lex_state = 5},
- [1659] = {.lex_state = 8, .external_lex_state = 4},
- [1660] = {.lex_state = 8, .external_lex_state = 4},
- [1661] = {.lex_state = 8, .external_lex_state = 4},
- [1662] = {.lex_state = 13, .external_lex_state = 5},
- [1663] = {.lex_state = 8, .external_lex_state = 4},
- [1664] = {.lex_state = 8, .external_lex_state = 3},
- [1665] = {.lex_state = 8, .external_lex_state = 4},
- [1666] = {.lex_state = 13, .external_lex_state = 5},
- [1667] = {.lex_state = 8, .external_lex_state = 4},
- [1668] = {.lex_state = 8, .external_lex_state = 3},
- [1669] = {.lex_state = 8, .external_lex_state = 4},
- [1670] = {.lex_state = 8, .external_lex_state = 3},
- [1671] = {.lex_state = 8, .external_lex_state = 3},
- [1672] = {.lex_state = 8, .external_lex_state = 4},
- [1673] = {.lex_state = 8, .external_lex_state = 4},
- [1674] = {.lex_state = 8, .external_lex_state = 4},
- [1675] = {.lex_state = 8, .external_lex_state = 4},
- [1676] = {.lex_state = 8, .external_lex_state = 3},
- [1677] = {.lex_state = 8, .external_lex_state = 3},
- [1678] = {.lex_state = 8, .external_lex_state = 3},
- [1679] = {.lex_state = 8, .external_lex_state = 3},
- [1680] = {.lex_state = 8, .external_lex_state = 4},
- [1681] = {.lex_state = 8, .external_lex_state = 4},
- [1682] = {.lex_state = 8, .external_lex_state = 3},
- [1683] = {.lex_state = 8, .external_lex_state = 3},
- [1684] = {.lex_state = 8, .external_lex_state = 3},
- [1685] = {.lex_state = 8, .external_lex_state = 3},
- [1686] = {.lex_state = 8, .external_lex_state = 4},
- [1687] = {.lex_state = 8, .external_lex_state = 3},
- [1688] = {.lex_state = 8, .external_lex_state = 4},
- [1689] = {.lex_state = 8, .external_lex_state = 3},
- [1690] = {.lex_state = 8, .external_lex_state = 3},
- [1691] = {.lex_state = 8, .external_lex_state = 4},
- [1692] = {.lex_state = 8, .external_lex_state = 4},
- [1693] = {.lex_state = 8, .external_lex_state = 4},
- [1694] = {.lex_state = 8, .external_lex_state = 4},
- [1695] = {.lex_state = 8, .external_lex_state = 4},
- [1696] = {.lex_state = 8, .external_lex_state = 4},
- [1697] = {.lex_state = 8, .external_lex_state = 3},
- [1698] = {.lex_state = 13, .external_lex_state = 5},
- [1699] = {.lex_state = 8, .external_lex_state = 4},
- [1700] = {.lex_state = 8, .external_lex_state = 3},
- [1701] = {.lex_state = 8, .external_lex_state = 3},
- [1702] = {.lex_state = 8, .external_lex_state = 3},
- [1703] = {.lex_state = 13, .external_lex_state = 5},
- [1704] = {.lex_state = 8, .external_lex_state = 3},
- [1705] = {.lex_state = 8, .external_lex_state = 4},
- [1706] = {.lex_state = 8, .external_lex_state = 3},
- [1707] = {.lex_state = 8, .external_lex_state = 3},
- [1708] = {.lex_state = 8, .external_lex_state = 3},
- [1709] = {.lex_state = 8, .external_lex_state = 4},
- [1710] = {.lex_state = 8, .external_lex_state = 3},
- [1711] = {.lex_state = 8, .external_lex_state = 3},
- [1712] = {.lex_state = 8, .external_lex_state = 3},
- [1713] = {.lex_state = 8, .external_lex_state = 3},
- [1714] = {.lex_state = 8, .external_lex_state = 3},
- [1715] = {.lex_state = 8, .external_lex_state = 3},
- [1716] = {.lex_state = 8, .external_lex_state = 4},
- [1717] = {.lex_state = 8, .external_lex_state = 4},
- [1718] = {.lex_state = 8, .external_lex_state = 3},
- [1719] = {.lex_state = 8, .external_lex_state = 4},
- [1720] = {.lex_state = 8, .external_lex_state = 4},
- [1721] = {.lex_state = 8, .external_lex_state = 3},
- [1722] = {.lex_state = 8, .external_lex_state = 4},
- [1723] = {.lex_state = 8, .external_lex_state = 3},
- [1724] = {.lex_state = 8, .external_lex_state = 3},
- [1725] = {.lex_state = 8, .external_lex_state = 3},
- [1726] = {.lex_state = 8, .external_lex_state = 3},
- [1727] = {.lex_state = 8, .external_lex_state = 4},
- [1728] = {.lex_state = 8, .external_lex_state = 3},
- [1729] = {.lex_state = 8, .external_lex_state = 3},
- [1730] = {.lex_state = 8, .external_lex_state = 3},
- [1731] = {.lex_state = 8, .external_lex_state = 3},
- [1732] = {.lex_state = 8, .external_lex_state = 3},
- [1733] = {.lex_state = 14, .external_lex_state = 5},
- [1734] = {.lex_state = 8, .external_lex_state = 3},
- [1735] = {.lex_state = 8, .external_lex_state = 4},
- [1736] = {.lex_state = 8, .external_lex_state = 3},
- [1737] = {.lex_state = 8, .external_lex_state = 4},
- [1738] = {.lex_state = 8, .external_lex_state = 4},
- [1739] = {.lex_state = 8, .external_lex_state = 4},
- [1740] = {.lex_state = 8, .external_lex_state = 4},
- [1741] = {.lex_state = 8, .external_lex_state = 4},
- [1742] = {.lex_state = 8, .external_lex_state = 4},
- [1743] = {.lex_state = 13, .external_lex_state = 5},
- [1744] = {.lex_state = 8, .external_lex_state = 3},
- [1745] = {.lex_state = 8, .external_lex_state = 3},
- [1746] = {.lex_state = 8, .external_lex_state = 4},
- [1747] = {.lex_state = 8, .external_lex_state = 4},
- [1748] = {.lex_state = 8, .external_lex_state = 4},
- [1749] = {.lex_state = 13, .external_lex_state = 5},
- [1750] = {.lex_state = 8, .external_lex_state = 4},
- [1751] = {.lex_state = 8, .external_lex_state = 4},
- [1752] = {.lex_state = 8, .external_lex_state = 4},
- [1753] = {.lex_state = 8, .external_lex_state = 3},
- [1754] = {.lex_state = 8, .external_lex_state = 3},
- [1755] = {.lex_state = 13, .external_lex_state = 5},
- [1756] = {.lex_state = 8, .external_lex_state = 3},
- [1757] = {.lex_state = 8, .external_lex_state = 3},
- [1758] = {.lex_state = 8, .external_lex_state = 3},
- [1759] = {.lex_state = 8, .external_lex_state = 4},
- [1760] = {.lex_state = 8, .external_lex_state = 4},
- [1761] = {.lex_state = 8, .external_lex_state = 3},
- [1762] = {.lex_state = 8, .external_lex_state = 4},
- [1763] = {.lex_state = 8, .external_lex_state = 3},
- [1764] = {.lex_state = 8, .external_lex_state = 4},
- [1765] = {.lex_state = 8, .external_lex_state = 4},
- [1766] = {.lex_state = 8, .external_lex_state = 4},
- [1767] = {.lex_state = 8, .external_lex_state = 3},
- [1768] = {.lex_state = 8, .external_lex_state = 4},
- [1769] = {.lex_state = 8, .external_lex_state = 3},
- [1770] = {.lex_state = 13, .external_lex_state = 5},
- [1771] = {.lex_state = 8, .external_lex_state = 3},
- [1772] = {.lex_state = 8, .external_lex_state = 4},
- [1773] = {.lex_state = 8, .external_lex_state = 4},
- [1774] = {.lex_state = 8, .external_lex_state = 3},
- [1775] = {.lex_state = 8, .external_lex_state = 3},
- [1776] = {.lex_state = 8, .external_lex_state = 3},
- [1777] = {.lex_state = 8, .external_lex_state = 4},
- [1778] = {.lex_state = 8, .external_lex_state = 4},
- [1779] = {.lex_state = 8, .external_lex_state = 4},
- [1780] = {.lex_state = 8, .external_lex_state = 4},
- [1781] = {.lex_state = 8, .external_lex_state = 3},
- [1782] = {.lex_state = 8, .external_lex_state = 3},
- [1783] = {.lex_state = 8, .external_lex_state = 4},
- [1784] = {.lex_state = 8, .external_lex_state = 3},
- [1785] = {.lex_state = 8, .external_lex_state = 3},
- [1786] = {.lex_state = 8, .external_lex_state = 4},
- [1787] = {.lex_state = 8, .external_lex_state = 4},
- [1788] = {.lex_state = 8, .external_lex_state = 4},
- [1789] = {.lex_state = 8, .external_lex_state = 4},
- [1790] = {.lex_state = 8, .external_lex_state = 4},
- [1791] = {.lex_state = 8, .external_lex_state = 3},
- [1792] = {.lex_state = 8, .external_lex_state = 3},
- [1793] = {.lex_state = 8, .external_lex_state = 3},
- [1794] = {.lex_state = 8, .external_lex_state = 3},
- [1795] = {.lex_state = 8, .external_lex_state = 3},
- [1796] = {.lex_state = 8, .external_lex_state = 3},
- [1797] = {.lex_state = 8, .external_lex_state = 4},
- [1798] = {.lex_state = 8, .external_lex_state = 4},
- [1799] = {.lex_state = 8, .external_lex_state = 4},
- [1800] = {.lex_state = 8, .external_lex_state = 4},
- [1801] = {.lex_state = 8, .external_lex_state = 4},
- [1802] = {.lex_state = 8, .external_lex_state = 3},
- [1803] = {.lex_state = 8, .external_lex_state = 4},
- [1804] = {.lex_state = 8, .external_lex_state = 3},
- [1805] = {.lex_state = 8, .external_lex_state = 3},
- [1806] = {.lex_state = 8, .external_lex_state = 3},
- [1807] = {.lex_state = 8, .external_lex_state = 3},
- [1808] = {.lex_state = 8, .external_lex_state = 4},
- [1809] = {.lex_state = 13, .external_lex_state = 5},
- [1810] = {.lex_state = 8, .external_lex_state = 4},
- [1811] = {.lex_state = 8, .external_lex_state = 4},
- [1812] = {.lex_state = 8, .external_lex_state = 4},
- [1813] = {.lex_state = 13, .external_lex_state = 5},
- [1814] = {.lex_state = 8, .external_lex_state = 4},
- [1815] = {.lex_state = 8, .external_lex_state = 3},
- [1816] = {.lex_state = 8, .external_lex_state = 4},
- [1817] = {.lex_state = 8, .external_lex_state = 3},
- [1818] = {.lex_state = 8, .external_lex_state = 3},
- [1819] = {.lex_state = 8, .external_lex_state = 3},
- [1820] = {.lex_state = 8, .external_lex_state = 3},
- [1821] = {.lex_state = 8, .external_lex_state = 3},
- [1822] = {.lex_state = 8, .external_lex_state = 4},
- [1823] = {.lex_state = 8, .external_lex_state = 3},
- [1824] = {.lex_state = 13, .external_lex_state = 5},
- [1825] = {.lex_state = 8, .external_lex_state = 4},
- [1826] = {.lex_state = 8, .external_lex_state = 4},
- [1827] = {.lex_state = 8, .external_lex_state = 4},
- [1828] = {.lex_state = 8, .external_lex_state = 3},
- [1829] = {.lex_state = 8, .external_lex_state = 3},
- [1830] = {.lex_state = 8, .external_lex_state = 4},
- [1831] = {.lex_state = 8, .external_lex_state = 4},
- [1832] = {.lex_state = 8, .external_lex_state = 3},
- [1833] = {.lex_state = 8, .external_lex_state = 3},
- [1834] = {.lex_state = 8, .external_lex_state = 3},
- [1835] = {.lex_state = 13, .external_lex_state = 5},
- [1836] = {.lex_state = 8, .external_lex_state = 3},
- [1837] = {.lex_state = 8, .external_lex_state = 3},
- [1838] = {.lex_state = 8, .external_lex_state = 4},
- [1839] = {.lex_state = 8, .external_lex_state = 3},
- [1840] = {.lex_state = 13, .external_lex_state = 5},
- [1841] = {.lex_state = 8, .external_lex_state = 3},
- [1842] = {.lex_state = 8, .external_lex_state = 3},
- [1843] = {.lex_state = 13, .external_lex_state = 5},
- [1844] = {.lex_state = 8, .external_lex_state = 3},
- [1845] = {.lex_state = 8, .external_lex_state = 3},
- [1846] = {.lex_state = 8, .external_lex_state = 3},
- [1847] = {.lex_state = 8, .external_lex_state = 3},
- [1848] = {.lex_state = 8, .external_lex_state = 3},
- [1849] = {.lex_state = 8, .external_lex_state = 3},
- [1850] = {.lex_state = 8, .external_lex_state = 3},
- [1851] = {.lex_state = 8, .external_lex_state = 3},
- [1852] = {.lex_state = 13, .external_lex_state = 5},
- [1853] = {.lex_state = 8, .external_lex_state = 3},
- [1854] = {.lex_state = 8, .external_lex_state = 4},
- [1855] = {.lex_state = 13, .external_lex_state = 5},
- [1856] = {.lex_state = 8, .external_lex_state = 3},
- [1857] = {.lex_state = 8, .external_lex_state = 3},
- [1858] = {.lex_state = 8, .external_lex_state = 3},
- [1859] = {.lex_state = 8, .external_lex_state = 3},
- [1860] = {.lex_state = 8, .external_lex_state = 3},
- [1861] = {.lex_state = 8, .external_lex_state = 3},
- [1862] = {.lex_state = 8, .external_lex_state = 3},
- [1863] = {.lex_state = 8, .external_lex_state = 3},
- [1864] = {.lex_state = 8, .external_lex_state = 3},
- [1865] = {.lex_state = 8, .external_lex_state = 3},
- [1866] = {.lex_state = 8, .external_lex_state = 3},
- [1867] = {.lex_state = 8, .external_lex_state = 3},
- [1868] = {.lex_state = 8, .external_lex_state = 3},
- [1869] = {.lex_state = 8, .external_lex_state = 3},
- [1870] = {.lex_state = 8, .external_lex_state = 3},
- [1871] = {.lex_state = 8, .external_lex_state = 3},
- [1872] = {.lex_state = 8, .external_lex_state = 3},
- [1873] = {.lex_state = 8, .external_lex_state = 3},
- [1874] = {.lex_state = 8, .external_lex_state = 3},
- [1875] = {.lex_state = 8, .external_lex_state = 3},
- [1876] = {.lex_state = 8, .external_lex_state = 3},
- [1877] = {.lex_state = 8, .external_lex_state = 3},
- [1878] = {.lex_state = 8, .external_lex_state = 3},
- [1879] = {.lex_state = 8, .external_lex_state = 3},
- [1880] = {.lex_state = 8, .external_lex_state = 3},
- [1881] = {.lex_state = 8, .external_lex_state = 3},
- [1882] = {.lex_state = 8, .external_lex_state = 3},
- [1883] = {.lex_state = 8, .external_lex_state = 3},
- [1884] = {.lex_state = 8, .external_lex_state = 3},
- [1885] = {.lex_state = 8, .external_lex_state = 3},
- [1886] = {.lex_state = 8, .external_lex_state = 3},
- [1887] = {.lex_state = 8, .external_lex_state = 3},
- [1888] = {.lex_state = 8, .external_lex_state = 3},
- [1889] = {.lex_state = 8, .external_lex_state = 3},
- [1890] = {.lex_state = 8, .external_lex_state = 3},
- [1891] = {.lex_state = 8, .external_lex_state = 4},
- [1892] = {.lex_state = 8, .external_lex_state = 4},
- [1893] = {.lex_state = 8, .external_lex_state = 4},
- [1894] = {.lex_state = 8, .external_lex_state = 4},
- [1895] = {.lex_state = 8, .external_lex_state = 4},
- [1896] = {.lex_state = 8, .external_lex_state = 4},
- [1897] = {.lex_state = 8, .external_lex_state = 4},
- [1898] = {.lex_state = 8, .external_lex_state = 4},
- [1899] = {.lex_state = 8, .external_lex_state = 4},
- [1900] = {.lex_state = 8, .external_lex_state = 4},
- [1901] = {.lex_state = 8, .external_lex_state = 4},
- [1902] = {.lex_state = 8, .external_lex_state = 4},
- [1903] = {.lex_state = 8, .external_lex_state = 4},
- [1904] = {.lex_state = 8, .external_lex_state = 4},
- [1905] = {.lex_state = 8, .external_lex_state = 4},
- [1906] = {.lex_state = 8, .external_lex_state = 4},
- [1907] = {.lex_state = 8, .external_lex_state = 4},
- [1908] = {.lex_state = 8, .external_lex_state = 4},
- [1909] = {.lex_state = 8, .external_lex_state = 4},
- [1910] = {.lex_state = 8, .external_lex_state = 4},
- [1911] = {.lex_state = 8, .external_lex_state = 4},
- [1912] = {.lex_state = 8, .external_lex_state = 4},
- [1913] = {.lex_state = 8, .external_lex_state = 4},
- [1914] = {.lex_state = 8, .external_lex_state = 4},
- [1915] = {.lex_state = 8, .external_lex_state = 4},
- [1916] = {.lex_state = 8, .external_lex_state = 4},
- [1917] = {.lex_state = 8, .external_lex_state = 4},
- [1918] = {.lex_state = 8, .external_lex_state = 4},
- [1919] = {.lex_state = 8, .external_lex_state = 4},
- [1920] = {.lex_state = 8, .external_lex_state = 4},
- [1921] = {.lex_state = 8, .external_lex_state = 4},
- [1922] = {.lex_state = 8, .external_lex_state = 4},
- [1923] = {.lex_state = 8, .external_lex_state = 4},
- [1924] = {.lex_state = 8, .external_lex_state = 4},
- [1925] = {.lex_state = 8, .external_lex_state = 3},
- [1926] = {.lex_state = 13, .external_lex_state = 2},
- [1927] = {.lex_state = 8, .external_lex_state = 3},
- [1928] = {.lex_state = 8, .external_lex_state = 4},
- [1929] = {.lex_state = 8, .external_lex_state = 4},
- [1930] = {.lex_state = 8, .external_lex_state = 3},
- [1931] = {.lex_state = 8, .external_lex_state = 4},
- [1932] = {.lex_state = 8, .external_lex_state = 4},
- [1933] = {.lex_state = 8, .external_lex_state = 3},
- [1934] = {.lex_state = 9, .external_lex_state = 3},
- [1935] = {.lex_state = 8, .external_lex_state = 4},
- [1936] = {.lex_state = 8, .external_lex_state = 4},
- [1937] = {.lex_state = 8, .external_lex_state = 4},
- [1938] = {.lex_state = 8, .external_lex_state = 4},
- [1939] = {.lex_state = 8, .external_lex_state = 4},
- [1940] = {.lex_state = 8, .external_lex_state = 4},
- [1941] = {.lex_state = 8, .external_lex_state = 4},
- [1942] = {.lex_state = 13, .external_lex_state = 5},
- [1943] = {.lex_state = 8, .external_lex_state = 3},
- [1944] = {.lex_state = 13, .external_lex_state = 2},
- [1945] = {.lex_state = 8, .external_lex_state = 3},
- [1946] = {.lex_state = 8, .external_lex_state = 4},
- [1947] = {.lex_state = 8, .external_lex_state = 4},
- [1948] = {.lex_state = 151, .external_lex_state = 2},
- [1949] = {.lex_state = 8, .external_lex_state = 4},
- [1950] = {.lex_state = 8, .external_lex_state = 4},
- [1951] = {.lex_state = 8, .external_lex_state = 4},
- [1952] = {.lex_state = 8, .external_lex_state = 4},
- [1953] = {.lex_state = 8, .external_lex_state = 3},
- [1954] = {.lex_state = 13, .external_lex_state = 5},
- [1955] = {.lex_state = 13, .external_lex_state = 5},
- [1956] = {.lex_state = 8, .external_lex_state = 4},
- [1957] = {.lex_state = 13, .external_lex_state = 5},
- [1958] = {.lex_state = 13, .external_lex_state = 5},
- [1959] = {.lex_state = 8, .external_lex_state = 4},
- [1960] = {.lex_state = 13, .external_lex_state = 5},
- [1961] = {.lex_state = 8, .external_lex_state = 3},
- [1962] = {.lex_state = 8, .external_lex_state = 3},
- [1963] = {.lex_state = 13, .external_lex_state = 2},
- [1964] = {.lex_state = 8, .external_lex_state = 3},
- [1965] = {.lex_state = 8, .external_lex_state = 3},
- [1966] = {.lex_state = 8, .external_lex_state = 4},
- [1967] = {.lex_state = 8, .external_lex_state = 4},
- [1968] = {.lex_state = 13, .external_lex_state = 2},
- [1969] = {.lex_state = 8, .external_lex_state = 3},
- [1970] = {.lex_state = 8, .external_lex_state = 3},
- [1971] = {.lex_state = 13, .external_lex_state = 2},
- [1972] = {.lex_state = 8, .external_lex_state = 4},
- [1973] = {.lex_state = 8, .external_lex_state = 4},
- [1974] = {.lex_state = 8, .external_lex_state = 4},
- [1975] = {.lex_state = 8, .external_lex_state = 4},
- [1976] = {.lex_state = 8, .external_lex_state = 4},
- [1977] = {.lex_state = 8, .external_lex_state = 4},
- [1978] = {.lex_state = 8, .external_lex_state = 4},
- [1979] = {.lex_state = 151, .external_lex_state = 2},
- [1980] = {.lex_state = 8, .external_lex_state = 4},
- [1981] = {.lex_state = 8, .external_lex_state = 4},
- [1982] = {.lex_state = 8, .external_lex_state = 4},
- [1983] = {.lex_state = 8, .external_lex_state = 4},
- [1984] = {.lex_state = 8, .external_lex_state = 4},
- [1985] = {.lex_state = 8, .external_lex_state = 4},
- [1986] = {.lex_state = 8, .external_lex_state = 4},
- [1987] = {.lex_state = 8, .external_lex_state = 4},
- [1988] = {.lex_state = 8, .external_lex_state = 4},
- [1989] = {.lex_state = 8, .external_lex_state = 4},
- [1990] = {.lex_state = 8, .external_lex_state = 4},
- [1991] = {.lex_state = 8, .external_lex_state = 3},
- [1992] = {.lex_state = 8, .external_lex_state = 4},
- [1993] = {.lex_state = 8, .external_lex_state = 3},
- [1994] = {.lex_state = 8, .external_lex_state = 4},
- [1995] = {.lex_state = 8, .external_lex_state = 4},
- [1996] = {.lex_state = 8, .external_lex_state = 4},
- [1997] = {.lex_state = 8, .external_lex_state = 4},
- [1998] = {.lex_state = 8, .external_lex_state = 4},
- [1999] = {.lex_state = 8, .external_lex_state = 4},
- [2000] = {.lex_state = 8, .external_lex_state = 4},
- [2001] = {.lex_state = 8, .external_lex_state = 4},
- [2002] = {.lex_state = 8, .external_lex_state = 4},
- [2003] = {.lex_state = 8, .external_lex_state = 4},
- [2004] = {.lex_state = 8, .external_lex_state = 4},
- [2005] = {.lex_state = 8, .external_lex_state = 4},
- [2006] = {.lex_state = 8, .external_lex_state = 4},
- [2007] = {.lex_state = 8, .external_lex_state = 4},
- [2008] = {.lex_state = 8, .external_lex_state = 4},
- [2009] = {.lex_state = 8, .external_lex_state = 4},
- [2010] = {.lex_state = 8, .external_lex_state = 4},
- [2011] = {.lex_state = 8, .external_lex_state = 4},
- [2012] = {.lex_state = 8, .external_lex_state = 4},
- [2013] = {.lex_state = 8, .external_lex_state = 4},
- [2014] = {.lex_state = 8, .external_lex_state = 4},
- [2015] = {.lex_state = 8, .external_lex_state = 4},
- [2016] = {.lex_state = 8, .external_lex_state = 4},
- [2017] = {.lex_state = 8, .external_lex_state = 4},
- [2018] = {.lex_state = 13, .external_lex_state = 5},
- [2019] = {.lex_state = 8, .external_lex_state = 4},
- [2020] = {.lex_state = 8, .external_lex_state = 4},
- [2021] = {.lex_state = 8, .external_lex_state = 4},
- [2022] = {.lex_state = 8, .external_lex_state = 4},
- [2023] = {.lex_state = 8, .external_lex_state = 4},
- [2024] = {.lex_state = 8, .external_lex_state = 4},
- [2025] = {.lex_state = 8, .external_lex_state = 4},
- [2026] = {.lex_state = 8, .external_lex_state = 3},
- [2027] = {.lex_state = 8, .external_lex_state = 4},
- [2028] = {.lex_state = 8, .external_lex_state = 3},
- [2029] = {.lex_state = 8, .external_lex_state = 4},
- [2030] = {.lex_state = 8, .external_lex_state = 4},
- [2031] = {.lex_state = 8, .external_lex_state = 4},
- [2032] = {.lex_state = 8, .external_lex_state = 4},
- [2033] = {.lex_state = 8, .external_lex_state = 4},
- [2034] = {.lex_state = 8, .external_lex_state = 4},
- [2035] = {.lex_state = 8, .external_lex_state = 4},
- [2036] = {.lex_state = 13, .external_lex_state = 2},
- [2037] = {.lex_state = 8, .external_lex_state = 4},
- [2038] = {.lex_state = 8, .external_lex_state = 4},
- [2039] = {.lex_state = 13, .external_lex_state = 2},
- [2040] = {.lex_state = 8, .external_lex_state = 4},
- [2041] = {.lex_state = 8, .external_lex_state = 4},
- [2042] = {.lex_state = 8, .external_lex_state = 4},
- [2043] = {.lex_state = 8, .external_lex_state = 4},
- [2044] = {.lex_state = 13, .external_lex_state = 5},
- [2045] = {.lex_state = 13, .external_lex_state = 5},
- [2046] = {.lex_state = 8, .external_lex_state = 4},
- [2047] = {.lex_state = 8, .external_lex_state = 4},
- [2048] = {.lex_state = 13, .external_lex_state = 5},
- [2049] = {.lex_state = 8, .external_lex_state = 4},
- [2050] = {.lex_state = 8, .external_lex_state = 3},
- [2051] = {.lex_state = 8, .external_lex_state = 3},
- [2052] = {.lex_state = 8, .external_lex_state = 3},
- [2053] = {.lex_state = 8, .external_lex_state = 3},
- [2054] = {.lex_state = 8, .external_lex_state = 3},
- [2055] = {.lex_state = 8, .external_lex_state = 3},
- [2056] = {.lex_state = 8, .external_lex_state = 3},
- [2057] = {.lex_state = 8, .external_lex_state = 3},
- [2058] = {.lex_state = 8, .external_lex_state = 3},
- [2059] = {.lex_state = 8, .external_lex_state = 3},
- [2060] = {.lex_state = 8, .external_lex_state = 3},
- [2061] = {.lex_state = 8, .external_lex_state = 3},
- [2062] = {.lex_state = 8, .external_lex_state = 3},
- [2063] = {.lex_state = 8, .external_lex_state = 3},
- [2064] = {.lex_state = 8, .external_lex_state = 3},
- [2065] = {.lex_state = 8, .external_lex_state = 3},
- [2066] = {.lex_state = 8, .external_lex_state = 3},
- [2067] = {.lex_state = 8, .external_lex_state = 3},
- [2068] = {.lex_state = 8, .external_lex_state = 3},
- [2069] = {.lex_state = 8, .external_lex_state = 3},
- [2070] = {.lex_state = 8, .external_lex_state = 3},
- [2071] = {.lex_state = 8, .external_lex_state = 3},
- [2072] = {.lex_state = 8, .external_lex_state = 3},
- [2073] = {.lex_state = 8, .external_lex_state = 3},
- [2074] = {.lex_state = 8, .external_lex_state = 3},
- [2075] = {.lex_state = 8, .external_lex_state = 3},
- [2076] = {.lex_state = 8, .external_lex_state = 4},
- [2077] = {.lex_state = 13, .external_lex_state = 5},
- [2078] = {.lex_state = 8, .external_lex_state = 4},
- [2079] = {.lex_state = 13, .external_lex_state = 5},
- [2080] = {.lex_state = 13, .external_lex_state = 5},
- [2081] = {.lex_state = 8, .external_lex_state = 4},
- [2082] = {.lex_state = 8, .external_lex_state = 3},
- [2083] = {.lex_state = 8, .external_lex_state = 3},
- [2084] = {.lex_state = 8, .external_lex_state = 3},
- [2085] = {.lex_state = 8, .external_lex_state = 3},
- [2086] = {.lex_state = 8, .external_lex_state = 4},
- [2087] = {.lex_state = 8, .external_lex_state = 4},
- [2088] = {.lex_state = 8, .external_lex_state = 4},
- [2089] = {.lex_state = 8, .external_lex_state = 4},
- [2090] = {.lex_state = 8, .external_lex_state = 4},
- [2091] = {.lex_state = 8, .external_lex_state = 4},
- [2092] = {.lex_state = 8, .external_lex_state = 4},
- [2093] = {.lex_state = 8, .external_lex_state = 4},
- [2094] = {.lex_state = 8, .external_lex_state = 4},
- [2095] = {.lex_state = 8, .external_lex_state = 4},
- [2096] = {.lex_state = 8, .external_lex_state = 4},
- [2097] = {.lex_state = 8, .external_lex_state = 4},
- [2098] = {.lex_state = 8, .external_lex_state = 4},
- [2099] = {.lex_state = 8, .external_lex_state = 4},
- [2100] = {.lex_state = 8, .external_lex_state = 4},
- [2101] = {.lex_state = 8, .external_lex_state = 4},
- [2102] = {.lex_state = 8, .external_lex_state = 4},
- [2103] = {.lex_state = 8, .external_lex_state = 4},
- [2104] = {.lex_state = 8, .external_lex_state = 4},
- [2105] = {.lex_state = 8, .external_lex_state = 4},
- [2106] = {.lex_state = 8, .external_lex_state = 4},
- [2107] = {.lex_state = 8, .external_lex_state = 4},
- [2108] = {.lex_state = 8, .external_lex_state = 4},
- [2109] = {.lex_state = 8, .external_lex_state = 4},
- [2110] = {.lex_state = 8, .external_lex_state = 4},
- [2111] = {.lex_state = 8, .external_lex_state = 4},
- [2112] = {.lex_state = 8, .external_lex_state = 4},
- [2113] = {.lex_state = 8, .external_lex_state = 4},
- [2114] = {.lex_state = 8, .external_lex_state = 4},
- [2115] = {.lex_state = 8, .external_lex_state = 4},
- [2116] = {.lex_state = 8, .external_lex_state = 4},
- [2117] = {.lex_state = 8, .external_lex_state = 4},
- [2118] = {.lex_state = 8, .external_lex_state = 4},
- [2119] = {.lex_state = 8, .external_lex_state = 4},
- [2120] = {.lex_state = 8, .external_lex_state = 4},
- [2121] = {.lex_state = 8, .external_lex_state = 4},
- [2122] = {.lex_state = 8, .external_lex_state = 4},
- [2123] = {.lex_state = 8, .external_lex_state = 4},
- [2124] = {.lex_state = 8, .external_lex_state = 4},
- [2125] = {.lex_state = 8, .external_lex_state = 3},
- [2126] = {.lex_state = 8, .external_lex_state = 3},
- [2127] = {.lex_state = 9, .external_lex_state = 4},
- [2128] = {.lex_state = 8, .external_lex_state = 4},
- [2129] = {.lex_state = 8, .external_lex_state = 4},
- [2130] = {.lex_state = 8, .external_lex_state = 3},
- [2131] = {.lex_state = 8, .external_lex_state = 3},
- [2132] = {.lex_state = 8, .external_lex_state = 4},
- [2133] = {.lex_state = 8, .external_lex_state = 4},
- [2134] = {.lex_state = 8, .external_lex_state = 3},
- [2135] = {.lex_state = 8, .external_lex_state = 4},
- [2136] = {.lex_state = 13, .external_lex_state = 5},
- [2137] = {.lex_state = 13, .external_lex_state = 5},
- [2138] = {.lex_state = 13, .external_lex_state = 5},
- [2139] = {.lex_state = 8, .external_lex_state = 4},
- [2140] = {.lex_state = 13, .external_lex_state = 5},
- [2141] = {.lex_state = 8, .external_lex_state = 4},
- [2142] = {.lex_state = 8, .external_lex_state = 4},
- [2143] = {.lex_state = 8, .external_lex_state = 3},
- [2144] = {.lex_state = 13, .external_lex_state = 5},
- [2145] = {.lex_state = 8, .external_lex_state = 4},
- [2146] = {.lex_state = 13, .external_lex_state = 5},
- [2147] = {.lex_state = 8, .external_lex_state = 4},
- [2148] = {.lex_state = 8, .external_lex_state = 4},
- [2149] = {.lex_state = 8, .external_lex_state = 4},
- [2150] = {.lex_state = 8, .external_lex_state = 4},
- [2151] = {.lex_state = 8, .external_lex_state = 4},
- [2152] = {.lex_state = 8, .external_lex_state = 4},
- [2153] = {.lex_state = 13, .external_lex_state = 2},
- [2154] = {.lex_state = 13, .external_lex_state = 2},
- [2155] = {.lex_state = 8, .external_lex_state = 3},
- [2156] = {.lex_state = 8, .external_lex_state = 3},
- [2157] = {.lex_state = 8, .external_lex_state = 3},
- [2158] = {.lex_state = 8, .external_lex_state = 4},
- [2159] = {.lex_state = 8, .external_lex_state = 4},
- [2160] = {.lex_state = 8, .external_lex_state = 4},
- [2161] = {.lex_state = 8, .external_lex_state = 4},
- [2162] = {.lex_state = 13, .external_lex_state = 2},
- [2163] = {.lex_state = 9, .external_lex_state = 4},
- [2164] = {.lex_state = 13, .external_lex_state = 2},
- [2165] = {.lex_state = 13, .external_lex_state = 5},
- [2166] = {.lex_state = 13, .external_lex_state = 5},
- [2167] = {.lex_state = 8, .external_lex_state = 4},
- [2168] = {.lex_state = 8, .external_lex_state = 4},
- [2169] = {.lex_state = 8, .external_lex_state = 4},
- [2170] = {.lex_state = 13, .external_lex_state = 2},
- [2171] = {.lex_state = 13, .external_lex_state = 5},
- [2172] = {.lex_state = 13, .external_lex_state = 2},
- [2173] = {.lex_state = 8, .external_lex_state = 4},
- [2174] = {.lex_state = 8, .external_lex_state = 4},
- [2175] = {.lex_state = 13, .external_lex_state = 2},
- [2176] = {.lex_state = 8, .external_lex_state = 3},
- [2177] = {.lex_state = 8, .external_lex_state = 3},
- [2178] = {.lex_state = 13, .external_lex_state = 5},
- [2179] = {.lex_state = 13, .external_lex_state = 5},
- [2180] = {.lex_state = 13, .external_lex_state = 5},
- [2181] = {.lex_state = 13, .external_lex_state = 5},
- [2182] = {.lex_state = 13, .external_lex_state = 5},
- [2183] = {.lex_state = 13, .external_lex_state = 2},
- [2184] = {.lex_state = 13, .external_lex_state = 5},
- [2185] = {.lex_state = 13, .external_lex_state = 5},
- [2186] = {.lex_state = 13, .external_lex_state = 5},
- [2187] = {.lex_state = 13, .external_lex_state = 5},
- [2188] = {.lex_state = 8, .external_lex_state = 4},
- [2189] = {.lex_state = 8, .external_lex_state = 4},
- [2190] = {.lex_state = 8, .external_lex_state = 4},
- [2191] = {.lex_state = 8, .external_lex_state = 4},
- [2192] = {.lex_state = 8, .external_lex_state = 4},
- [2193] = {.lex_state = 8, .external_lex_state = 4},
- [2194] = {.lex_state = 8, .external_lex_state = 4},
- [2195] = {.lex_state = 8, .external_lex_state = 4},
- [2196] = {.lex_state = 8, .external_lex_state = 4},
- [2197] = {.lex_state = 8, .external_lex_state = 4},
- [2198] = {.lex_state = 8, .external_lex_state = 4},
- [2199] = {.lex_state = 8, .external_lex_state = 3},
- [2200] = {.lex_state = 8, .external_lex_state = 4},
- [2201] = {.lex_state = 8, .external_lex_state = 4},
- [2202] = {.lex_state = 13, .external_lex_state = 5},
- [2203] = {.lex_state = 8, .external_lex_state = 3},
- [2204] = {.lex_state = 8, .external_lex_state = 4},
- [2205] = {.lex_state = 8, .external_lex_state = 4},
- [2206] = {.lex_state = 8, .external_lex_state = 4},
- [2207] = {.lex_state = 13, .external_lex_state = 5},
- [2208] = {.lex_state = 8, .external_lex_state = 4},
- [2209] = {.lex_state = 8, .external_lex_state = 4},
- [2210] = {.lex_state = 13, .external_lex_state = 5},
- [2211] = {.lex_state = 13, .external_lex_state = 5},
- [2212] = {.lex_state = 8, .external_lex_state = 3},
- [2213] = {.lex_state = 8, .external_lex_state = 4},
- [2214] = {.lex_state = 13, .external_lex_state = 5},
- [2215] = {.lex_state = 8, .external_lex_state = 4},
- [2216] = {.lex_state = 8, .external_lex_state = 4},
- [2217] = {.lex_state = 8, .external_lex_state = 4},
- [2218] = {.lex_state = 8, .external_lex_state = 4},
- [2219] = {.lex_state = 8, .external_lex_state = 4},
- [2220] = {.lex_state = 8, .external_lex_state = 4},
- [2221] = {.lex_state = 8, .external_lex_state = 4},
- [2222] = {.lex_state = 8, .external_lex_state = 4},
- [2223] = {.lex_state = 8, .external_lex_state = 4},
- [2224] = {.lex_state = 8, .external_lex_state = 4},
- [2225] = {.lex_state = 8, .external_lex_state = 3},
- [2226] = {.lex_state = 8, .external_lex_state = 3},
- [2227] = {.lex_state = 8, .external_lex_state = 4},
- [2228] = {.lex_state = 8, .external_lex_state = 4},
- [2229] = {.lex_state = 8, .external_lex_state = 4},
- [2230] = {.lex_state = 8, .external_lex_state = 4},
- [2231] = {.lex_state = 151, .external_lex_state = 2},
- [2232] = {.lex_state = 8, .external_lex_state = 4},
- [2233] = {.lex_state = 8, .external_lex_state = 4},
- [2234] = {.lex_state = 8, .external_lex_state = 4},
- [2235] = {.lex_state = 8, .external_lex_state = 3},
- [2236] = {.lex_state = 8, .external_lex_state = 3},
- [2237] = {.lex_state = 8, .external_lex_state = 3},
- [2238] = {.lex_state = 8, .external_lex_state = 3},
- [2239] = {.lex_state = 13, .external_lex_state = 5},
- [2240] = {.lex_state = 13, .external_lex_state = 5},
- [2241] = {.lex_state = 13, .external_lex_state = 5},
- [2242] = {.lex_state = 13, .external_lex_state = 2},
- [2243] = {.lex_state = 13, .external_lex_state = 2},
- [2244] = {.lex_state = 13, .external_lex_state = 5},
- [2245] = {.lex_state = 13, .external_lex_state = 5},
- [2246] = {.lex_state = 8, .external_lex_state = 3},
- [2247] = {.lex_state = 8, .external_lex_state = 4},
- [2248] = {.lex_state = 13, .external_lex_state = 5},
- [2249] = {.lex_state = 8, .external_lex_state = 4},
- [2250] = {.lex_state = 13, .external_lex_state = 5},
- [2251] = {.lex_state = 13, .external_lex_state = 5},
- [2252] = {.lex_state = 13, .external_lex_state = 5},
- [2253] = {.lex_state = 13, .external_lex_state = 5},
- [2254] = {.lex_state = 13, .external_lex_state = 5},
- [2255] = {.lex_state = 13, .external_lex_state = 5},
- [2256] = {.lex_state = 8, .external_lex_state = 3},
- [2257] = {.lex_state = 8, .external_lex_state = 4},
- [2258] = {.lex_state = 8, .external_lex_state = 3},
- [2259] = {.lex_state = 8, .external_lex_state = 4},
- [2260] = {.lex_state = 8, .external_lex_state = 4},
- [2261] = {.lex_state = 8, .external_lex_state = 4},
- [2262] = {.lex_state = 8, .external_lex_state = 4},
- [2263] = {.lex_state = 8, .external_lex_state = 4},
- [2264] = {.lex_state = 13, .external_lex_state = 2},
- [2265] = {.lex_state = 13, .external_lex_state = 2},
- [2266] = {.lex_state = 8, .external_lex_state = 4},
- [2267] = {.lex_state = 8, .external_lex_state = 4},
- [2268] = {.lex_state = 13, .external_lex_state = 5},
- [2269] = {.lex_state = 13, .external_lex_state = 5},
- [2270] = {.lex_state = 8, .external_lex_state = 4},
- [2271] = {.lex_state = 8, .external_lex_state = 3},
- [2272] = {.lex_state = 8, .external_lex_state = 3},
- [2273] = {.lex_state = 8, .external_lex_state = 4},
- [2274] = {.lex_state = 8, .external_lex_state = 4},
- [2275] = {.lex_state = 8, .external_lex_state = 4},
- [2276] = {.lex_state = 8, .external_lex_state = 4},
- [2277] = {.lex_state = 8, .external_lex_state = 4},
- [2278] = {.lex_state = 8, .external_lex_state = 3},
- [2279] = {.lex_state = 8, .external_lex_state = 3},
- [2280] = {.lex_state = 8, .external_lex_state = 3},
- [2281] = {.lex_state = 8, .external_lex_state = 3},
- [2282] = {.lex_state = 8, .external_lex_state = 3},
- [2283] = {.lex_state = 8, .external_lex_state = 3},
- [2284] = {.lex_state = 8, .external_lex_state = 3},
- [2285] = {.lex_state = 8, .external_lex_state = 3},
- [2286] = {.lex_state = 8, .external_lex_state = 3},
- [2287] = {.lex_state = 8, .external_lex_state = 3},
- [2288] = {.lex_state = 8, .external_lex_state = 3},
- [2289] = {.lex_state = 8, .external_lex_state = 3},
- [2290] = {.lex_state = 8, .external_lex_state = 3},
- [2291] = {.lex_state = 8, .external_lex_state = 3},
- [2292] = {.lex_state = 8, .external_lex_state = 3},
- [2293] = {.lex_state = 8, .external_lex_state = 3},
- [2294] = {.lex_state = 8, .external_lex_state = 3},
- [2295] = {.lex_state = 8, .external_lex_state = 3},
- [2296] = {.lex_state = 8, .external_lex_state = 3},
- [2297] = {.lex_state = 8, .external_lex_state = 3},
- [2298] = {.lex_state = 8, .external_lex_state = 3},
- [2299] = {.lex_state = 8, .external_lex_state = 3},
- [2300] = {.lex_state = 8, .external_lex_state = 3},
- [2301] = {.lex_state = 8, .external_lex_state = 3},
- [2302] = {.lex_state = 8, .external_lex_state = 3},
- [2303] = {.lex_state = 8, .external_lex_state = 3},
- [2304] = {.lex_state = 8, .external_lex_state = 4},
- [2305] = {.lex_state = 8, .external_lex_state = 3},
- [2306] = {.lex_state = 8, .external_lex_state = 3},
- [2307] = {.lex_state = 8, .external_lex_state = 4},
- [2308] = {.lex_state = 8, .external_lex_state = 3},
- [2309] = {.lex_state = 8, .external_lex_state = 3},
- [2310] = {.lex_state = 8, .external_lex_state = 4},
- [2311] = {.lex_state = 8, .external_lex_state = 3},
- [2312] = {.lex_state = 8, .external_lex_state = 3},
- [2313] = {.lex_state = 8, .external_lex_state = 3},
- [2314] = {.lex_state = 13, .external_lex_state = 5},
- [2315] = {.lex_state = 8, .external_lex_state = 4},
- [2316] = {.lex_state = 13, .external_lex_state = 5},
- [2317] = {.lex_state = 13, .external_lex_state = 5},
- [2318] = {.lex_state = 8, .external_lex_state = 3},
- [2319] = {.lex_state = 13, .external_lex_state = 5},
- [2320] = {.lex_state = 13, .external_lex_state = 5},
- [2321] = {.lex_state = 8, .external_lex_state = 4},
- [2322] = {.lex_state = 8, .external_lex_state = 3},
- [2323] = {.lex_state = 13, .external_lex_state = 5},
- [2324] = {.lex_state = 13, .external_lex_state = 5},
- [2325] = {.lex_state = 8, .external_lex_state = 3},
- [2326] = {.lex_state = 8, .external_lex_state = 4},
- [2327] = {.lex_state = 151, .external_lex_state = 2},
- [2328] = {.lex_state = 8, .external_lex_state = 3},
- [2329] = {.lex_state = 13, .external_lex_state = 5},
- [2330] = {.lex_state = 8, .external_lex_state = 3},
- [2331] = {.lex_state = 8, .external_lex_state = 3},
- [2332] = {.lex_state = 8, .external_lex_state = 4},
- [2333] = {.lex_state = 8, .external_lex_state = 4},
- [2334] = {.lex_state = 8, .external_lex_state = 3},
- [2335] = {.lex_state = 8, .external_lex_state = 4},
- [2336] = {.lex_state = 8, .external_lex_state = 4},
- [2337] = {.lex_state = 8, .external_lex_state = 4},
- [2338] = {.lex_state = 8, .external_lex_state = 4},
- [2339] = {.lex_state = 8, .external_lex_state = 4},
- [2340] = {.lex_state = 8, .external_lex_state = 4},
- [2341] = {.lex_state = 8, .external_lex_state = 4},
- [2342] = {.lex_state = 8, .external_lex_state = 4},
- [2343] = {.lex_state = 8, .external_lex_state = 4},
- [2344] = {.lex_state = 8, .external_lex_state = 3},
- [2345] = {.lex_state = 8, .external_lex_state = 3},
- [2346] = {.lex_state = 8, .external_lex_state = 3},
- [2347] = {.lex_state = 8, .external_lex_state = 3},
- [2348] = {.lex_state = 8, .external_lex_state = 3},
- [2349] = {.lex_state = 8, .external_lex_state = 3},
- [2350] = {.lex_state = 8, .external_lex_state = 3},
- [2351] = {.lex_state = 8, .external_lex_state = 3},
- [2352] = {.lex_state = 8, .external_lex_state = 3},
- [2353] = {.lex_state = 8, .external_lex_state = 3},
- [2354] = {.lex_state = 8, .external_lex_state = 3},
- [2355] = {.lex_state = 8, .external_lex_state = 3},
- [2356] = {.lex_state = 8, .external_lex_state = 3},
- [2357] = {.lex_state = 8, .external_lex_state = 3},
- [2358] = {.lex_state = 8, .external_lex_state = 3},
- [2359] = {.lex_state = 8, .external_lex_state = 3},
- [2360] = {.lex_state = 8, .external_lex_state = 3},
- [2361] = {.lex_state = 8, .external_lex_state = 3},
- [2362] = {.lex_state = 8, .external_lex_state = 3},
- [2363] = {.lex_state = 8, .external_lex_state = 3},
- [2364] = {.lex_state = 8, .external_lex_state = 3},
- [2365] = {.lex_state = 8, .external_lex_state = 3},
- [2366] = {.lex_state = 8, .external_lex_state = 3},
- [2367] = {.lex_state = 8, .external_lex_state = 3},
- [2368] = {.lex_state = 8, .external_lex_state = 3},
- [2369] = {.lex_state = 8, .external_lex_state = 3},
- [2370] = {.lex_state = 8, .external_lex_state = 3},
- [2371] = {.lex_state = 8, .external_lex_state = 3},
- [2372] = {.lex_state = 8, .external_lex_state = 4},
- [2373] = {.lex_state = 8, .external_lex_state = 3},
- [2374] = {.lex_state = 8, .external_lex_state = 3},
- [2375] = {.lex_state = 8, .external_lex_state = 3},
- [2376] = {.lex_state = 8, .external_lex_state = 3},
- [2377] = {.lex_state = 8, .external_lex_state = 4},
- [2378] = {.lex_state = 8, .external_lex_state = 4},
- [2379] = {.lex_state = 8, .external_lex_state = 4},
- [2380] = {.lex_state = 13, .external_lex_state = 5},
- [2381] = {.lex_state = 8, .external_lex_state = 3},
- [2382] = {.lex_state = 8, .external_lex_state = 4},
- [2383] = {.lex_state = 8, .external_lex_state = 4},
- [2384] = {.lex_state = 8, .external_lex_state = 4},
- [2385] = {.lex_state = 8, .external_lex_state = 4},
- [2386] = {.lex_state = 13, .external_lex_state = 2},
- [2387] = {.lex_state = 13, .external_lex_state = 2},
- [2388] = {.lex_state = 8, .external_lex_state = 4},
- [2389] = {.lex_state = 13, .external_lex_state = 2},
- [2390] = {.lex_state = 13, .external_lex_state = 2},
- [2391] = {.lex_state = 13, .external_lex_state = 5},
- [2392] = {.lex_state = 8, .external_lex_state = 3},
- [2393] = {.lex_state = 13, .external_lex_state = 5},
- [2394] = {.lex_state = 13, .external_lex_state = 2},
- [2395] = {.lex_state = 13, .external_lex_state = 5},
- [2396] = {.lex_state = 13, .external_lex_state = 2},
- [2397] = {.lex_state = 13, .external_lex_state = 5},
- [2398] = {.lex_state = 8, .external_lex_state = 3},
- [2399] = {.lex_state = 13, .external_lex_state = 5},
- [2400] = {.lex_state = 13, .external_lex_state = 5},
- [2401] = {.lex_state = 8, .external_lex_state = 3},
- [2402] = {.lex_state = 8, .external_lex_state = 4},
- [2403] = {.lex_state = 8, .external_lex_state = 3},
- [2404] = {.lex_state = 13, .external_lex_state = 2},
- [2405] = {.lex_state = 8, .external_lex_state = 3},
- [2406] = {.lex_state = 8, .external_lex_state = 3},
- [2407] = {.lex_state = 8, .external_lex_state = 3},
- [2408] = {.lex_state = 8, .external_lex_state = 3},
- [2409] = {.lex_state = 8, .external_lex_state = 3},
- [2410] = {.lex_state = 8, .external_lex_state = 3},
- [2411] = {.lex_state = 8, .external_lex_state = 3},
- [2412] = {.lex_state = 13, .external_lex_state = 5},
- [2413] = {.lex_state = 13, .external_lex_state = 2},
- [2414] = {.lex_state = 9, .external_lex_state = 3},
- [2415] = {.lex_state = 8, .external_lex_state = 3},
- [2416] = {.lex_state = 8, .external_lex_state = 4},
- [2417] = {.lex_state = 13, .external_lex_state = 2},
- [2418] = {.lex_state = 13, .external_lex_state = 5},
- [2419] = {.lex_state = 13, .external_lex_state = 5},
- [2420] = {.lex_state = 13, .external_lex_state = 2},
- [2421] = {.lex_state = 13, .external_lex_state = 5},
- [2422] = {.lex_state = 8, .external_lex_state = 3},
- [2423] = {.lex_state = 13, .external_lex_state = 5},
- [2424] = {.lex_state = 13, .external_lex_state = 5},
- [2425] = {.lex_state = 8, .external_lex_state = 4},
- [2426] = {.lex_state = 13, .external_lex_state = 5},
- [2427] = {.lex_state = 8, .external_lex_state = 4},
- [2428] = {.lex_state = 8, .external_lex_state = 4},
- [2429] = {.lex_state = 8, .external_lex_state = 3},
- [2430] = {.lex_state = 8, .external_lex_state = 3},
- [2431] = {.lex_state = 8, .external_lex_state = 3},
- [2432] = {.lex_state = 8, .external_lex_state = 3},
- [2433] = {.lex_state = 8, .external_lex_state = 3},
- [2434] = {.lex_state = 8, .external_lex_state = 3},
- [2435] = {.lex_state = 8, .external_lex_state = 3},
- [2436] = {.lex_state = 151, .external_lex_state = 2},
- [2437] = {.lex_state = 8, .external_lex_state = 3},
- [2438] = {.lex_state = 8, .external_lex_state = 3},
- [2439] = {.lex_state = 8, .external_lex_state = 3},
- [2440] = {.lex_state = 8, .external_lex_state = 3},
- [2441] = {.lex_state = 8, .external_lex_state = 3},
- [2442] = {.lex_state = 8, .external_lex_state = 3},
- [2443] = {.lex_state = 8, .external_lex_state = 3},
- [2444] = {.lex_state = 8, .external_lex_state = 3},
- [2445] = {.lex_state = 8, .external_lex_state = 3},
- [2446] = {.lex_state = 8, .external_lex_state = 3},
- [2447] = {.lex_state = 8, .external_lex_state = 3},
- [2448] = {.lex_state = 8, .external_lex_state = 3},
- [2449] = {.lex_state = 13, .external_lex_state = 5},
- [2450] = {.lex_state = 8, .external_lex_state = 3},
- [2451] = {.lex_state = 8, .external_lex_state = 3},
- [2452] = {.lex_state = 8, .external_lex_state = 3},
- [2453] = {.lex_state = 8, .external_lex_state = 3},
- [2454] = {.lex_state = 8, .external_lex_state = 3},
- [2455] = {.lex_state = 13, .external_lex_state = 5},
- [2456] = {.lex_state = 13, .external_lex_state = 5},
- [2457] = {.lex_state = 8, .external_lex_state = 3},
- [2458] = {.lex_state = 13, .external_lex_state = 5},
- [2459] = {.lex_state = 13, .external_lex_state = 5},
- [2460] = {.lex_state = 13, .external_lex_state = 5},
- [2461] = {.lex_state = 13, .external_lex_state = 5},
- [2462] = {.lex_state = 8, .external_lex_state = 3},
- [2463] = {.lex_state = 13, .external_lex_state = 5},
- [2464] = {.lex_state = 13, .external_lex_state = 2},
- [2465] = {.lex_state = 13, .external_lex_state = 5},
- [2466] = {.lex_state = 151, .external_lex_state = 2},
- [2467] = {.lex_state = 8, .external_lex_state = 3},
- [2468] = {.lex_state = 8, .external_lex_state = 3},
- [2469] = {.lex_state = 8, .external_lex_state = 3},
- [2470] = {.lex_state = 13, .external_lex_state = 5},
- [2471] = {.lex_state = 13, .external_lex_state = 5},
- [2472] = {.lex_state = 151, .external_lex_state = 5},
- [2473] = {.lex_state = 8, .external_lex_state = 3},
- [2474] = {.lex_state = 8, .external_lex_state = 3},
- [2475] = {.lex_state = 8, .external_lex_state = 3},
- [2476] = {.lex_state = 8, .external_lex_state = 3},
- [2477] = {.lex_state = 13, .external_lex_state = 2},
- [2478] = {.lex_state = 8, .external_lex_state = 3},
- [2479] = {.lex_state = 13, .external_lex_state = 2},
- [2480] = {.lex_state = 151, .external_lex_state = 5},
- [2481] = {.lex_state = 151, .external_lex_state = 5},
- [2482] = {.lex_state = 151, .external_lex_state = 5},
- [2483] = {.lex_state = 151, .external_lex_state = 5},
- [2484] = {.lex_state = 151, .external_lex_state = 2},
- [2485] = {.lex_state = 8, .external_lex_state = 3},
- [2486] = {.lex_state = 8, .external_lex_state = 3},
- [2487] = {.lex_state = 151, .external_lex_state = 2},
- [2488] = {.lex_state = 8, .external_lex_state = 3},
- [2489] = {.lex_state = 8, .external_lex_state = 3},
- [2490] = {.lex_state = 8, .external_lex_state = 3},
- [2491] = {.lex_state = 8, .external_lex_state = 3},
- [2492] = {.lex_state = 151, .external_lex_state = 5},
- [2493] = {.lex_state = 8, .external_lex_state = 3},
- [2494] = {.lex_state = 8, .external_lex_state = 3},
- [2495] = {.lex_state = 151, .external_lex_state = 5},
- [2496] = {.lex_state = 8, .external_lex_state = 4},
- [2497] = {.lex_state = 151, .external_lex_state = 5},
- [2498] = {.lex_state = 151, .external_lex_state = 5},
- [2499] = {.lex_state = 8, .external_lex_state = 3},
- [2500] = {.lex_state = 13, .external_lex_state = 5},
- [2501] = {.lex_state = 8, .external_lex_state = 3},
- [2502] = {.lex_state = 8, .external_lex_state = 3},
- [2503] = {.lex_state = 13, .external_lex_state = 5},
- [2504] = {.lex_state = 8, .external_lex_state = 3},
- [2505] = {.lex_state = 13, .external_lex_state = 2},
- [2506] = {.lex_state = 8, .external_lex_state = 3},
- [2507] = {.lex_state = 13, .external_lex_state = 2},
- [2508] = {.lex_state = 13, .external_lex_state = 2},
- [2509] = {.lex_state = 8, .external_lex_state = 3},
- [2510] = {.lex_state = 8, .external_lex_state = 3},
- [2511] = {.lex_state = 151, .external_lex_state = 5},
- [2512] = {.lex_state = 151, .external_lex_state = 2},
- [2513] = {.lex_state = 13, .external_lex_state = 2},
- [2514] = {.lex_state = 13, .external_lex_state = 2},
- [2515] = {.lex_state = 151, .external_lex_state = 5},
- [2516] = {.lex_state = 13, .external_lex_state = 2},
- [2517] = {.lex_state = 151, .external_lex_state = 5},
- [2518] = {.lex_state = 8, .external_lex_state = 3},
- [2519] = {.lex_state = 8, .external_lex_state = 3},
- [2520] = {.lex_state = 9, .external_lex_state = 3},
- [2521] = {.lex_state = 8, .external_lex_state = 3},
- [2522] = {.lex_state = 151, .external_lex_state = 5},
- [2523] = {.lex_state = 151, .external_lex_state = 5},
- [2524] = {.lex_state = 151, .external_lex_state = 5},
- [2525] = {.lex_state = 151, .external_lex_state = 5},
- [2526] = {.lex_state = 151, .external_lex_state = 5},
- [2527] = {.lex_state = 151, .external_lex_state = 5},
- [2528] = {.lex_state = 13, .external_lex_state = 2},
- [2529] = {.lex_state = 13, .external_lex_state = 2},
- [2530] = {.lex_state = 151, .external_lex_state = 5},
- [2531] = {.lex_state = 13, .external_lex_state = 2},
- [2532] = {.lex_state = 8, .external_lex_state = 3},
- [2533] = {.lex_state = 13, .external_lex_state = 2},
- [2534] = {.lex_state = 13, .external_lex_state = 2},
- [2535] = {.lex_state = 8, .external_lex_state = 3},
- [2536] = {.lex_state = 13, .external_lex_state = 2},
- [2537] = {.lex_state = 13, .external_lex_state = 2},
- [2538] = {.lex_state = 13, .external_lex_state = 2},
- [2539] = {.lex_state = 151, .external_lex_state = 5},
- [2540] = {.lex_state = 151, .external_lex_state = 5},
- [2541] = {.lex_state = 13, .external_lex_state = 2},
- [2542] = {.lex_state = 151, .external_lex_state = 5},
- [2543] = {.lex_state = 13, .external_lex_state = 2},
- [2544] = {.lex_state = 151, .external_lex_state = 5},
- [2545] = {.lex_state = 13, .external_lex_state = 2},
- [2546] = {.lex_state = 8, .external_lex_state = 3},
- [2547] = {.lex_state = 13, .external_lex_state = 2},
- [2548] = {.lex_state = 8, .external_lex_state = 3},
- [2549] = {.lex_state = 13, .external_lex_state = 2},
- [2550] = {.lex_state = 151, .external_lex_state = 5},
- [2551] = {.lex_state = 151, .external_lex_state = 5},
- [2552] = {.lex_state = 13, .external_lex_state = 2},
- [2553] = {.lex_state = 13, .external_lex_state = 2},
- [2554] = {.lex_state = 151, .external_lex_state = 5},
- [2555] = {.lex_state = 13, .external_lex_state = 5},
- [2556] = {.lex_state = 13, .external_lex_state = 5},
- [2557] = {.lex_state = 13, .external_lex_state = 5},
- [2558] = {.lex_state = 13, .external_lex_state = 5},
- [2559] = {.lex_state = 13, .external_lex_state = 5},
- [2560] = {.lex_state = 13, .external_lex_state = 5},
- [2561] = {.lex_state = 13, .external_lex_state = 5},
- [2562] = {.lex_state = 13, .external_lex_state = 5},
- [2563] = {.lex_state = 13, .external_lex_state = 5},
- [2564] = {.lex_state = 13, .external_lex_state = 5},
- [2565] = {.lex_state = 13, .external_lex_state = 5},
- [2566] = {.lex_state = 13, .external_lex_state = 5},
- [2567] = {.lex_state = 13, .external_lex_state = 5},
- [2568] = {.lex_state = 13, .external_lex_state = 5},
- [2569] = {.lex_state = 13, .external_lex_state = 5},
- [2570] = {.lex_state = 8, .external_lex_state = 3},
- [2571] = {.lex_state = 13, .external_lex_state = 5},
- [2572] = {.lex_state = 13, .external_lex_state = 5},
- [2573] = {.lex_state = 13, .external_lex_state = 5},
- [2574] = {.lex_state = 13, .external_lex_state = 5},
- [2575] = {.lex_state = 13, .external_lex_state = 5},
- [2576] = {.lex_state = 8, .external_lex_state = 3},
- [2577] = {.lex_state = 13, .external_lex_state = 5},
- [2578] = {.lex_state = 13, .external_lex_state = 5},
- [2579] = {.lex_state = 13, .external_lex_state = 5},
- [2580] = {.lex_state = 8, .external_lex_state = 3},
- [2581] = {.lex_state = 13, .external_lex_state = 5},
- [2582] = {.lex_state = 8, .external_lex_state = 3},
- [2583] = {.lex_state = 13, .external_lex_state = 5},
- [2584] = {.lex_state = 13, .external_lex_state = 5},
- [2585] = {.lex_state = 13, .external_lex_state = 5},
- [2586] = {.lex_state = 13, .external_lex_state = 5},
- [2587] = {.lex_state = 13, .external_lex_state = 5},
- [2588] = {.lex_state = 13, .external_lex_state = 5},
- [2589] = {.lex_state = 13, .external_lex_state = 5},
- [2590] = {.lex_state = 13, .external_lex_state = 2},
- [2591] = {.lex_state = 13, .external_lex_state = 5},
- [2592] = {.lex_state = 13, .external_lex_state = 5},
- [2593] = {.lex_state = 13, .external_lex_state = 2},
- [2594] = {.lex_state = 13, .external_lex_state = 5},
- [2595] = {.lex_state = 13, .external_lex_state = 5},
- [2596] = {.lex_state = 13, .external_lex_state = 5},
- [2597] = {.lex_state = 13, .external_lex_state = 5},
- [2598] = {.lex_state = 13, .external_lex_state = 5},
- [2599] = {.lex_state = 8, .external_lex_state = 3},
- [2600] = {.lex_state = 13, .external_lex_state = 5},
- [2601] = {.lex_state = 13, .external_lex_state = 2},
- [2602] = {.lex_state = 13, .external_lex_state = 5},
- [2603] = {.lex_state = 13, .external_lex_state = 5},
- [2604] = {.lex_state = 8, .external_lex_state = 3},
- [2605] = {.lex_state = 13, .external_lex_state = 5},
- [2606] = {.lex_state = 13, .external_lex_state = 5},
- [2607] = {.lex_state = 8, .external_lex_state = 3},
- [2608] = {.lex_state = 8, .external_lex_state = 3},
- [2609] = {.lex_state = 13, .external_lex_state = 5},
- [2610] = {.lex_state = 13, .external_lex_state = 5},
- [2611] = {.lex_state = 13, .external_lex_state = 5},
- [2612] = {.lex_state = 13, .external_lex_state = 5},
- [2613] = {.lex_state = 13, .external_lex_state = 5},
- [2614] = {.lex_state = 13, .external_lex_state = 5},
- [2615] = {.lex_state = 13, .external_lex_state = 5},
- [2616] = {.lex_state = 13, .external_lex_state = 5},
- [2617] = {.lex_state = 8, .external_lex_state = 3},
- [2618] = {.lex_state = 13, .external_lex_state = 5},
- [2619] = {.lex_state = 13, .external_lex_state = 2},
- [2620] = {.lex_state = 13, .external_lex_state = 2},
- [2621] = {.lex_state = 13, .external_lex_state = 2},
- [2622] = {.lex_state = 13, .external_lex_state = 2},
- [2623] = {.lex_state = 13, .external_lex_state = 2},
- [2624] = {.lex_state = 13, .external_lex_state = 2},
- [2625] = {.lex_state = 13, .external_lex_state = 2},
- [2626] = {.lex_state = 13, .external_lex_state = 2},
- [2627] = {.lex_state = 13, .external_lex_state = 2},
- [2628] = {.lex_state = 13, .external_lex_state = 2},
- [2629] = {.lex_state = 13, .external_lex_state = 2},
- [2630] = {.lex_state = 13, .external_lex_state = 2},
- [2631] = {.lex_state = 13, .external_lex_state = 2},
- [2632] = {.lex_state = 13, .external_lex_state = 2},
- [2633] = {.lex_state = 151, .external_lex_state = 2},
- [2634] = {.lex_state = 13, .external_lex_state = 2},
- [2635] = {.lex_state = 13, .external_lex_state = 2},
- [2636] = {.lex_state = 13, .external_lex_state = 2},
- [2637] = {.lex_state = 13, .external_lex_state = 2},
- [2638] = {.lex_state = 151, .external_lex_state = 2},
- [2639] = {.lex_state = 13, .external_lex_state = 2},
- [2640] = {.lex_state = 13, .external_lex_state = 2},
- [2641] = {.lex_state = 13, .external_lex_state = 2},
- [2642] = {.lex_state = 13, .external_lex_state = 2},
- [2643] = {.lex_state = 13, .external_lex_state = 2},
- [2644] = {.lex_state = 151, .external_lex_state = 2},
- [2645] = {.lex_state = 13, .external_lex_state = 2},
- [2646] = {.lex_state = 13, .external_lex_state = 2},
- [2647] = {.lex_state = 13, .external_lex_state = 2},
- [2648] = {.lex_state = 13, .external_lex_state = 2},
- [2649] = {.lex_state = 13, .external_lex_state = 2},
- [2650] = {.lex_state = 13, .external_lex_state = 2},
- [2651] = {.lex_state = 13, .external_lex_state = 2},
- [2652] = {.lex_state = 13, .external_lex_state = 2},
- [2653] = {.lex_state = 13, .external_lex_state = 2},
- [2654] = {.lex_state = 13, .external_lex_state = 2},
- [2655] = {.lex_state = 151, .external_lex_state = 2},
- [2656] = {.lex_state = 13, .external_lex_state = 2},
- [2657] = {.lex_state = 13, .external_lex_state = 2},
- [2658] = {.lex_state = 13, .external_lex_state = 2},
- [2659] = {.lex_state = 13, .external_lex_state = 2},
- [2660] = {.lex_state = 13, .external_lex_state = 2},
- [2661] = {.lex_state = 13, .external_lex_state = 2},
- [2662] = {.lex_state = 13, .external_lex_state = 2},
- [2663] = {.lex_state = 13, .external_lex_state = 2},
- [2664] = {.lex_state = 13, .external_lex_state = 2},
- [2665] = {.lex_state = 13, .external_lex_state = 2},
- [2666] = {.lex_state = 13, .external_lex_state = 2},
- [2667] = {.lex_state = 13, .external_lex_state = 2},
- [2668] = {.lex_state = 13, .external_lex_state = 2},
- [2669] = {.lex_state = 13, .external_lex_state = 2},
- [2670] = {.lex_state = 13, .external_lex_state = 2},
- [2671] = {.lex_state = 151, .external_lex_state = 2},
- [2672] = {.lex_state = 13, .external_lex_state = 2},
- [2673] = {.lex_state = 151, .external_lex_state = 2},
- [2674] = {.lex_state = 151, .external_lex_state = 2},
- [2675] = {.lex_state = 151, .external_lex_state = 2},
- [2676] = {.lex_state = 151, .external_lex_state = 2},
- [2677] = {.lex_state = 151, .external_lex_state = 2},
- [2678] = {.lex_state = 151, .external_lex_state = 2},
- [2679] = {.lex_state = 151, .external_lex_state = 2},
- [2680] = {.lex_state = 151, .external_lex_state = 2},
- [2681] = {.lex_state = 151, .external_lex_state = 2},
- [2682] = {.lex_state = 151, .external_lex_state = 2},
- [2683] = {.lex_state = 151, .external_lex_state = 2},
- [2684] = {.lex_state = 151, .external_lex_state = 2},
- [2685] = {.lex_state = 151, .external_lex_state = 2},
- [2686] = {.lex_state = 151, .external_lex_state = 2},
- [2687] = {.lex_state = 151, .external_lex_state = 2},
- [2688] = {.lex_state = 151, .external_lex_state = 2},
- [2689] = {.lex_state = 151, .external_lex_state = 2},
- [2690] = {.lex_state = 151, .external_lex_state = 2},
- [2691] = {.lex_state = 151, .external_lex_state = 2},
- [2692] = {.lex_state = 151, .external_lex_state = 2},
- [2693] = {.lex_state = 151, .external_lex_state = 2},
- [2694] = {.lex_state = 151, .external_lex_state = 2},
- [2695] = {.lex_state = 151, .external_lex_state = 2},
- [2696] = {.lex_state = 151, .external_lex_state = 2},
- [2697] = {.lex_state = 151, .external_lex_state = 2},
- [2698] = {.lex_state = 151, .external_lex_state = 2},
- [2699] = {.lex_state = 151, .external_lex_state = 2},
- [2700] = {.lex_state = 151, .external_lex_state = 2},
- [2701] = {.lex_state = 151, .external_lex_state = 2},
- [2702] = {.lex_state = 151, .external_lex_state = 2},
- [2703] = {.lex_state = 151, .external_lex_state = 2},
- [2704] = {.lex_state = 151, .external_lex_state = 2},
- [2705] = {.lex_state = 151, .external_lex_state = 2},
- [2706] = {.lex_state = 151, .external_lex_state = 2},
- [2707] = {.lex_state = 151, .external_lex_state = 2},
- [2708] = {.lex_state = 151, .external_lex_state = 2},
- [2709] = {.lex_state = 151, .external_lex_state = 2},
- [2710] = {.lex_state = 151, .external_lex_state = 2},
- [2711] = {.lex_state = 151, .external_lex_state = 2},
- [2712] = {.lex_state = 151, .external_lex_state = 2},
- [2713] = {.lex_state = 151, .external_lex_state = 2},
- [2714] = {.lex_state = 151, .external_lex_state = 2},
- [2715] = {.lex_state = 151, .external_lex_state = 2},
- [2716] = {.lex_state = 151, .external_lex_state = 2},
- [2717] = {.lex_state = 151, .external_lex_state = 2},
- [2718] = {.lex_state = 13, .external_lex_state = 2},
- [2719] = {.lex_state = 151, .external_lex_state = 2},
- [2720] = {.lex_state = 151, .external_lex_state = 2},
- [2721] = {.lex_state = 151, .external_lex_state = 2},
- [2722] = {.lex_state = 151, .external_lex_state = 2},
- [2723] = {.lex_state = 151, .external_lex_state = 2},
- [2724] = {.lex_state = 151, .external_lex_state = 2},
- [2725] = {.lex_state = 151, .external_lex_state = 2},
- [2726] = {.lex_state = 151, .external_lex_state = 2},
- [2727] = {.lex_state = 151, .external_lex_state = 2},
- [2728] = {.lex_state = 151, .external_lex_state = 2},
- [2729] = {.lex_state = 151, .external_lex_state = 2},
- [2730] = {.lex_state = 151, .external_lex_state = 2},
- [2731] = {.lex_state = 151, .external_lex_state = 2},
- [2732] = {.lex_state = 151, .external_lex_state = 2},
- [2733] = {.lex_state = 151, .external_lex_state = 2},
- [2734] = {.lex_state = 151, .external_lex_state = 2},
- [2735] = {.lex_state = 151, .external_lex_state = 2},
- [2736] = {.lex_state = 151, .external_lex_state = 2},
- [2737] = {.lex_state = 151, .external_lex_state = 2},
- [2738] = {.lex_state = 151, .external_lex_state = 2},
- [2739] = {.lex_state = 151, .external_lex_state = 2},
- [2740] = {.lex_state = 151, .external_lex_state = 2},
- [2741] = {.lex_state = 151, .external_lex_state = 2},
- [2742] = {.lex_state = 151, .external_lex_state = 2},
- [2743] = {.lex_state = 151, .external_lex_state = 2},
- [2744] = {.lex_state = 151, .external_lex_state = 2},
- [2745] = {.lex_state = 151, .external_lex_state = 2},
- [2746] = {.lex_state = 151, .external_lex_state = 2},
- [2747] = {.lex_state = 151, .external_lex_state = 2},
- [2748] = {.lex_state = 151, .external_lex_state = 2},
- [2749] = {.lex_state = 151, .external_lex_state = 2},
- [2750] = {.lex_state = 151, .external_lex_state = 2},
- [2751] = {.lex_state = 151, .external_lex_state = 2},
- [2752] = {.lex_state = 151, .external_lex_state = 2},
- [2753] = {.lex_state = 151, .external_lex_state = 2},
- [2754] = {.lex_state = 151, .external_lex_state = 2},
- [2755] = {.lex_state = 151, .external_lex_state = 2},
- [2756] = {.lex_state = 151, .external_lex_state = 2},
- [2757] = {.lex_state = 151, .external_lex_state = 2},
- [2758] = {.lex_state = 151, .external_lex_state = 2},
- [2759] = {.lex_state = 151, .external_lex_state = 2},
- [2760] = {.lex_state = 151, .external_lex_state = 2},
- [2761] = {.lex_state = 151, .external_lex_state = 2},
- [2762] = {.lex_state = 151, .external_lex_state = 2},
- [2763] = {.lex_state = 151, .external_lex_state = 2},
- [2764] = {.lex_state = 151, .external_lex_state = 2},
- [2765] = {.lex_state = 151, .external_lex_state = 2},
- [2766] = {.lex_state = 151, .external_lex_state = 2},
- [2767] = {.lex_state = 151, .external_lex_state = 2},
- [2768] = {.lex_state = 151, .external_lex_state = 2},
- [2769] = {.lex_state = 151, .external_lex_state = 2},
- [2770] = {.lex_state = 151, .external_lex_state = 2},
- [2771] = {.lex_state = 151, .external_lex_state = 2},
- [2772] = {.lex_state = 151, .external_lex_state = 2},
- [2773] = {.lex_state = 151, .external_lex_state = 2},
- [2774] = {.lex_state = 151, .external_lex_state = 2},
- [2775] = {.lex_state = 151, .external_lex_state = 2},
- [2776] = {.lex_state = 151, .external_lex_state = 2},
- [2777] = {.lex_state = 151, .external_lex_state = 2},
- [2778] = {.lex_state = 151, .external_lex_state = 2},
- [2779] = {.lex_state = 151, .external_lex_state = 2},
- [2780] = {.lex_state = 151, .external_lex_state = 2},
- [2781] = {.lex_state = 151, .external_lex_state = 2},
- [2782] = {.lex_state = 16, .external_lex_state = 2},
- [2783] = {.lex_state = 16, .external_lex_state = 2},
- [2784] = {.lex_state = 16, .external_lex_state = 2},
- [2785] = {.lex_state = 16, .external_lex_state = 2},
- [2786] = {.lex_state = 16, .external_lex_state = 2},
- [2787] = {.lex_state = 16, .external_lex_state = 2},
- [2788] = {.lex_state = 16, .external_lex_state = 2},
- [2789] = {.lex_state = 16, .external_lex_state = 2},
- [2790] = {.lex_state = 16, .external_lex_state = 2},
- [2791] = {.lex_state = 16, .external_lex_state = 2},
- [2792] = {.lex_state = 16, .external_lex_state = 2},
- [2793] = {.lex_state = 16, .external_lex_state = 2},
- [2794] = {.lex_state = 16, .external_lex_state = 2},
- [2795] = {.lex_state = 16, .external_lex_state = 2},
- [2796] = {.lex_state = 16, .external_lex_state = 2},
- [2797] = {.lex_state = 16, .external_lex_state = 2},
- [2798] = {.lex_state = 16, .external_lex_state = 2},
- [2799] = {.lex_state = 16, .external_lex_state = 2},
- [2800] = {.lex_state = 16, .external_lex_state = 2},
- [2801] = {.lex_state = 16, .external_lex_state = 2},
- [2802] = {.lex_state = 16, .external_lex_state = 2},
- [2803] = {.lex_state = 16, .external_lex_state = 2},
- [2804] = {.lex_state = 16, .external_lex_state = 2},
- [2805] = {.lex_state = 16, .external_lex_state = 2},
- [2806] = {.lex_state = 16, .external_lex_state = 2},
- [2807] = {.lex_state = 16, .external_lex_state = 2},
- [2808] = {.lex_state = 16, .external_lex_state = 2},
- [2809] = {.lex_state = 16, .external_lex_state = 2},
- [2810] = {.lex_state = 16, .external_lex_state = 2},
- [2811] = {.lex_state = 16, .external_lex_state = 2},
- [2812] = {.lex_state = 16, .external_lex_state = 2},
- [2813] = {.lex_state = 16, .external_lex_state = 2},
- [2814] = {.lex_state = 16, .external_lex_state = 2},
- [2815] = {.lex_state = 16, .external_lex_state = 2},
- [2816] = {.lex_state = 16, .external_lex_state = 2},
- [2817] = {.lex_state = 16, .external_lex_state = 2},
- [2818] = {.lex_state = 16, .external_lex_state = 2},
- [2819] = {.lex_state = 26, .external_lex_state = 2},
- [2820] = {.lex_state = 14, .external_lex_state = 5},
- [2821] = {.lex_state = 26, .external_lex_state = 2},
- [2822] = {.lex_state = 14, .external_lex_state = 5},
- [2823] = {.lex_state = 16, .external_lex_state = 2},
- [2824] = {.lex_state = 14, .external_lex_state = 2},
- [2825] = {.lex_state = 151, .external_lex_state = 2},
- [2826] = {.lex_state = 14, .external_lex_state = 2},
- [2827] = {.lex_state = 16, .external_lex_state = 5},
- [2828] = {.lex_state = 14, .external_lex_state = 2},
- [2829] = {.lex_state = 15, .external_lex_state = 2},
- [2830] = {.lex_state = 151, .external_lex_state = 2},
- [2831] = {.lex_state = 15, .external_lex_state = 2},
- [2832] = {.lex_state = 16, .external_lex_state = 5},
- [2833] = {.lex_state = 15, .external_lex_state = 2},
- [2834] = {.lex_state = 151, .external_lex_state = 2},
- [2835] = {.lex_state = 14, .external_lex_state = 2},
- [2836] = {.lex_state = 151, .external_lex_state = 2},
- [2837] = {.lex_state = 151, .external_lex_state = 2},
- [2838] = {.lex_state = 151, .external_lex_state = 2},
- [2839] = {.lex_state = 16, .external_lex_state = 5},
- [2840] = {.lex_state = 14, .external_lex_state = 2},
- [2841] = {.lex_state = 15, .external_lex_state = 2},
- [2842] = {.lex_state = 151, .external_lex_state = 2},
- [2843] = {.lex_state = 15, .external_lex_state = 2},
- [2844] = {.lex_state = 151, .external_lex_state = 2},
- [2845] = {.lex_state = 151, .external_lex_state = 2},
- [2846] = {.lex_state = 151, .external_lex_state = 2},
- [2847] = {.lex_state = 151, .external_lex_state = 2},
- [2848] = {.lex_state = 151, .external_lex_state = 2},
- [2849] = {.lex_state = 151, .external_lex_state = 2},
- [2850] = {.lex_state = 151, .external_lex_state = 2},
- [2851] = {.lex_state = 151, .external_lex_state = 2},
- [2852] = {.lex_state = 151, .external_lex_state = 2},
- [2853] = {.lex_state = 151, .external_lex_state = 2},
- [2854] = {.lex_state = 151, .external_lex_state = 2},
- [2855] = {.lex_state = 151, .external_lex_state = 2},
- [2856] = {.lex_state = 151, .external_lex_state = 2},
- [2857] = {.lex_state = 151, .external_lex_state = 2},
- [2858] = {.lex_state = 151, .external_lex_state = 2},
- [2859] = {.lex_state = 151, .external_lex_state = 2},
- [2860] = {.lex_state = 151, .external_lex_state = 2},
- [2861] = {.lex_state = 151, .external_lex_state = 2},
- [2862] = {.lex_state = 16, .external_lex_state = 6},
- [2863] = {.lex_state = 16, .external_lex_state = 6},
- [2864] = {.lex_state = 16, .external_lex_state = 6},
- [2865] = {.lex_state = 151, .external_lex_state = 2},
- [2866] = {.lex_state = 151, .external_lex_state = 2},
- [2867] = {.lex_state = 151, .external_lex_state = 2},
- [2868] = {.lex_state = 151, .external_lex_state = 2},
- [2869] = {.lex_state = 151, .external_lex_state = 2},
- [2870] = {.lex_state = 151, .external_lex_state = 2},
- [2871] = {.lex_state = 151, .external_lex_state = 2},
- [2872] = {.lex_state = 151, .external_lex_state = 2},
- [2873] = {.lex_state = 151, .external_lex_state = 2},
- [2874] = {.lex_state = 151, .external_lex_state = 2},
- [2875] = {.lex_state = 5, .external_lex_state = 2},
- [2876] = {.lex_state = 151, .external_lex_state = 2},
- [2877] = {.lex_state = 151, .external_lex_state = 2},
- [2878] = {.lex_state = 5, .external_lex_state = 2},
- [2879] = {.lex_state = 151, .external_lex_state = 2},
- [2880] = {.lex_state = 151, .external_lex_state = 2},
- [2881] = {.lex_state = 151, .external_lex_state = 2},
- [2882] = {.lex_state = 151, .external_lex_state = 2},
- [2883] = {.lex_state = 151, .external_lex_state = 2},
- [2884] = {.lex_state = 5, .external_lex_state = 2},
- [2885] = {.lex_state = 151, .external_lex_state = 2},
- [2886] = {.lex_state = 151, .external_lex_state = 2},
- [2887] = {.lex_state = 151, .external_lex_state = 2},
- [2888] = {.lex_state = 151, .external_lex_state = 2},
- [2889] = {.lex_state = 151, .external_lex_state = 2},
- [2890] = {.lex_state = 151, .external_lex_state = 2},
- [2891] = {.lex_state = 5, .external_lex_state = 2},
- [2892] = {.lex_state = 151, .external_lex_state = 2},
- [2893] = {.lex_state = 151, .external_lex_state = 2},
- [2894] = {.lex_state = 151, .external_lex_state = 2},
- [2895] = {.lex_state = 151, .external_lex_state = 2},
- [2896] = {.lex_state = 151, .external_lex_state = 2},
- [2897] = {.lex_state = 151, .external_lex_state = 2},
- [2898] = {.lex_state = 5, .external_lex_state = 2},
- [2899] = {.lex_state = 5, .external_lex_state = 2},
- [2900] = {.lex_state = 5, .external_lex_state = 2},
- [2901] = {.lex_state = 14, .external_lex_state = 5},
- [2902] = {.lex_state = 151, .external_lex_state = 2},
- [2903] = {.lex_state = 151, .external_lex_state = 2},
- [2904] = {.lex_state = 151, .external_lex_state = 2},
- [2905] = {.lex_state = 151, .external_lex_state = 2},
- [2906] = {.lex_state = 16, .external_lex_state = 5},
- [2907] = {.lex_state = 151, .external_lex_state = 2},
- [2908] = {.lex_state = 151, .external_lex_state = 2},
- [2909] = {.lex_state = 16, .external_lex_state = 5},
- [2910] = {.lex_state = 16, .external_lex_state = 5},
- [2911] = {.lex_state = 16, .external_lex_state = 5},
- [2912] = {.lex_state = 16, .external_lex_state = 5},
- [2913] = {.lex_state = 16, .external_lex_state = 5},
- [2914] = {.lex_state = 16, .external_lex_state = 5},
- [2915] = {.lex_state = 151, .external_lex_state = 2},
- [2916] = {.lex_state = 16, .external_lex_state = 5},
- [2917] = {.lex_state = 151, .external_lex_state = 2},
- [2918] = {.lex_state = 151, .external_lex_state = 2},
- [2919] = {.lex_state = 5, .external_lex_state = 2},
- [2920] = {.lex_state = 151, .external_lex_state = 2},
- [2921] = {.lex_state = 151, .external_lex_state = 2},
- [2922] = {.lex_state = 16, .external_lex_state = 5},
- [2923] = {.lex_state = 151, .external_lex_state = 2},
- [2924] = {.lex_state = 16, .external_lex_state = 5},
- [2925] = {.lex_state = 151, .external_lex_state = 2},
- [2926] = {.lex_state = 151, .external_lex_state = 2},
- [2927] = {.lex_state = 16, .external_lex_state = 5},
- [2928] = {.lex_state = 16, .external_lex_state = 5},
- [2929] = {.lex_state = 16, .external_lex_state = 5},
- [2930] = {.lex_state = 16, .external_lex_state = 5},
- [2931] = {.lex_state = 16, .external_lex_state = 5},
- [2932] = {.lex_state = 16, .external_lex_state = 5},
- [2933] = {.lex_state = 16, .external_lex_state = 5},
- [2934] = {.lex_state = 16, .external_lex_state = 5},
- [2935] = {.lex_state = 16, .external_lex_state = 5},
- [2936] = {.lex_state = 16, .external_lex_state = 5},
- [2937] = {.lex_state = 16, .external_lex_state = 5},
- [2938] = {.lex_state = 16, .external_lex_state = 5},
- [2939] = {.lex_state = 16, .external_lex_state = 5},
- [2940] = {.lex_state = 16, .external_lex_state = 5},
- [2941] = {.lex_state = 16, .external_lex_state = 5},
- [2942] = {.lex_state = 16, .external_lex_state = 5},
- [2943] = {.lex_state = 5, .external_lex_state = 2},
- [2944] = {.lex_state = 16, .external_lex_state = 5},
- [2945] = {.lex_state = 16, .external_lex_state = 5},
- [2946] = {.lex_state = 16, .external_lex_state = 5},
- [2947] = {.lex_state = 16, .external_lex_state = 5},
- [2948] = {.lex_state = 16, .external_lex_state = 5},
- [2949] = {.lex_state = 16, .external_lex_state = 5},
- [2950] = {.lex_state = 16, .external_lex_state = 5},
- [2951] = {.lex_state = 16, .external_lex_state = 5},
- [2952] = {.lex_state = 151, .external_lex_state = 2},
- [2953] = {.lex_state = 151, .external_lex_state = 2},
- [2954] = {.lex_state = 151, .external_lex_state = 2},
- [2955] = {.lex_state = 13, .external_lex_state = 5},
- [2956] = {.lex_state = 13, .external_lex_state = 5},
- [2957] = {.lex_state = 14, .external_lex_state = 5},
- [2958] = {.lex_state = 151, .external_lex_state = 5},
- [2959] = {.lex_state = 13, .external_lex_state = 5},
- [2960] = {.lex_state = 151, .external_lex_state = 2},
- [2961] = {.lex_state = 13, .external_lex_state = 5},
- [2962] = {.lex_state = 151, .external_lex_state = 2},
- [2963] = {.lex_state = 13, .external_lex_state = 5},
- [2964] = {.lex_state = 13, .external_lex_state = 5},
- [2965] = {.lex_state = 13, .external_lex_state = 5},
- [2966] = {.lex_state = 13, .external_lex_state = 5},
- [2967] = {.lex_state = 13, .external_lex_state = 5},
- [2968] = {.lex_state = 13, .external_lex_state = 5},
- [2969] = {.lex_state = 13, .external_lex_state = 5},
- [2970] = {.lex_state = 151, .external_lex_state = 2},
- [2971] = {.lex_state = 13, .external_lex_state = 5},
- [2972] = {.lex_state = 151, .external_lex_state = 2},
- [2973] = {.lex_state = 13, .external_lex_state = 5},
- [2974] = {.lex_state = 13, .external_lex_state = 5},
- [2975] = {.lex_state = 26, .external_lex_state = 2},
- [2976] = {.lex_state = 13, .external_lex_state = 5},
- [2977] = {.lex_state = 13, .external_lex_state = 5},
- [2978] = {.lex_state = 151, .external_lex_state = 2},
- [2979] = {.lex_state = 13, .external_lex_state = 5},
- [2980] = {.lex_state = 13, .external_lex_state = 5},
- [2981] = {.lex_state = 13, .external_lex_state = 5},
- [2982] = {.lex_state = 13, .external_lex_state = 5},
- [2983] = {.lex_state = 151, .external_lex_state = 2},
- [2984] = {.lex_state = 13, .external_lex_state = 5},
- [2985] = {.lex_state = 13, .external_lex_state = 5},
- [2986] = {.lex_state = 13, .external_lex_state = 5},
- [2987] = {.lex_state = 13, .external_lex_state = 5},
- [2988] = {.lex_state = 151, .external_lex_state = 2},
- [2989] = {.lex_state = 13, .external_lex_state = 5},
- [2990] = {.lex_state = 13, .external_lex_state = 5},
- [2991] = {.lex_state = 151, .external_lex_state = 2},
- [2992] = {.lex_state = 13, .external_lex_state = 5},
- [2993] = {.lex_state = 151, .external_lex_state = 2},
- [2994] = {.lex_state = 13, .external_lex_state = 5},
- [2995] = {.lex_state = 151, .external_lex_state = 2},
- [2996] = {.lex_state = 16, .external_lex_state = 6},
- [2997] = {.lex_state = 1, .external_lex_state = 2},
- [2998] = {.lex_state = 1, .external_lex_state = 2},
- [2999] = {.lex_state = 151, .external_lex_state = 5},
- [3000] = {.lex_state = 151, .external_lex_state = 2},
- [3001] = {.lex_state = 151, .external_lex_state = 2},
- [3002] = {.lex_state = 16, .external_lex_state = 6},
- [3003] = {.lex_state = 15, .external_lex_state = 5},
- [3004] = {.lex_state = 14, .external_lex_state = 6},
- [3005] = {.lex_state = 15, .external_lex_state = 5},
- [3006] = {.lex_state = 151, .external_lex_state = 2},
- [3007] = {.lex_state = 15, .external_lex_state = 5},
- [3008] = {.lex_state = 16, .external_lex_state = 6},
- [3009] = {.lex_state = 13, .external_lex_state = 5},
- [3010] = {.lex_state = 16, .external_lex_state = 6},
- [3011] = {.lex_state = 16, .external_lex_state = 6},
- [3012] = {.lex_state = 15, .external_lex_state = 5},
- [3013] = {.lex_state = 16, .external_lex_state = 6},
- [3014] = {.lex_state = 151, .external_lex_state = 2},
- [3015] = {.lex_state = 151, .external_lex_state = 5},
- [3016] = {.lex_state = 26, .external_lex_state = 2},
- [3017] = {.lex_state = 151, .external_lex_state = 2},
- [3018] = {.lex_state = 15, .external_lex_state = 5},
- [3019] = {.lex_state = 151, .external_lex_state = 2},
- [3020] = {.lex_state = 15, .external_lex_state = 5},
- [3021] = {.lex_state = 15, .external_lex_state = 5},
- [3022] = {.lex_state = 16, .external_lex_state = 6},
- [3023] = {.lex_state = 15, .external_lex_state = 5},
- [3024] = {.lex_state = 16, .external_lex_state = 6},
- [3025] = {.lex_state = 16, .external_lex_state = 6},
- [3026] = {.lex_state = 1, .external_lex_state = 2},
- [3027] = {.lex_state = 16, .external_lex_state = 6},
- [3028] = {.lex_state = 13, .external_lex_state = 5},
- [3029] = {.lex_state = 13, .external_lex_state = 5},
- [3030] = {.lex_state = 16, .external_lex_state = 6},
- [3031] = {.lex_state = 14, .external_lex_state = 5},
- [3032] = {.lex_state = 151, .external_lex_state = 5},
- [3033] = {.lex_state = 16, .external_lex_state = 6},
- [3034] = {.lex_state = 151, .external_lex_state = 5},
- [3035] = {.lex_state = 151, .external_lex_state = 5},
- [3036] = {.lex_state = 14, .external_lex_state = 5},
- [3037] = {.lex_state = 1, .external_lex_state = 2},
- [3038] = {.lex_state = 13, .external_lex_state = 5},
- [3039] = {.lex_state = 13, .external_lex_state = 5},
- [3040] = {.lex_state = 16, .external_lex_state = 6},
- [3041] = {.lex_state = 16, .external_lex_state = 6},
- [3042] = {.lex_state = 151, .external_lex_state = 5},
- [3043] = {.lex_state = 151, .external_lex_state = 5},
- [3044] = {.lex_state = 151, .external_lex_state = 5},
- [3045] = {.lex_state = 26, .external_lex_state = 2},
- [3046] = {.lex_state = 151, .external_lex_state = 5},
- [3047] = {.lex_state = 14, .external_lex_state = 5},
- [3048] = {.lex_state = 16, .external_lex_state = 6},
- [3049] = {.lex_state = 13, .external_lex_state = 5},
- [3050] = {.lex_state = 151, .external_lex_state = 2},
- [3051] = {.lex_state = 1, .external_lex_state = 2},
- [3052] = {.lex_state = 151, .external_lex_state = 5},
- [3053] = {.lex_state = 16, .external_lex_state = 6},
- [3054] = {.lex_state = 151, .external_lex_state = 2},
- [3055] = {.lex_state = 16, .external_lex_state = 6},
- [3056] = {.lex_state = 16, .external_lex_state = 6},
- [3057] = {.lex_state = 13, .external_lex_state = 5},
- [3058] = {.lex_state = 16, .external_lex_state = 6},
- [3059] = {.lex_state = 151, .external_lex_state = 2},
- [3060] = {.lex_state = 16, .external_lex_state = 6},
- [3061] = {.lex_state = 16, .external_lex_state = 6},
- [3062] = {.lex_state = 1, .external_lex_state = 2},
- [3063] = {.lex_state = 13, .external_lex_state = 5},
- [3064] = {.lex_state = 16, .external_lex_state = 6},
- [3065] = {.lex_state = 16, .external_lex_state = 6},
- [3066] = {.lex_state = 16, .external_lex_state = 6},
- [3067] = {.lex_state = 16, .external_lex_state = 6},
- [3068] = {.lex_state = 151, .external_lex_state = 2},
- [3069] = {.lex_state = 16, .external_lex_state = 6},
- [3070] = {.lex_state = 1, .external_lex_state = 2},
- [3071] = {.lex_state = 16, .external_lex_state = 6},
- [3072] = {.lex_state = 16, .external_lex_state = 6},
- [3073] = {.lex_state = 16, .external_lex_state = 6},
- [3074] = {.lex_state = 13, .external_lex_state = 5},
- [3075] = {.lex_state = 1, .external_lex_state = 2},
- [3076] = {.lex_state = 16, .external_lex_state = 6},
- [3077] = {.lex_state = 16, .external_lex_state = 6},
- [3078] = {.lex_state = 16, .external_lex_state = 6},
- [3079] = {.lex_state = 16, .external_lex_state = 6},
- [3080] = {.lex_state = 16, .external_lex_state = 6},
- [3081] = {.lex_state = 13, .external_lex_state = 5},
- [3082] = {.lex_state = 13, .external_lex_state = 5},
- [3083] = {.lex_state = 13, .external_lex_state = 5},
- [3084] = {.lex_state = 151, .external_lex_state = 5},
- [3085] = {.lex_state = 13, .external_lex_state = 5},
- [3086] = {.lex_state = 151, .external_lex_state = 5},
- [3087] = {.lex_state = 151, .external_lex_state = 5},
- [3088] = {.lex_state = 151, .external_lex_state = 2},
- [3089] = {.lex_state = 13, .external_lex_state = 5},
- [3090] = {.lex_state = 13, .external_lex_state = 5},
- [3091] = {.lex_state = 13, .external_lex_state = 5},
- [3092] = {.lex_state = 13, .external_lex_state = 5},
- [3093] = {.lex_state = 13, .external_lex_state = 5},
- [3094] = {.lex_state = 13, .external_lex_state = 5},
- [3095] = {.lex_state = 13, .external_lex_state = 5},
- [3096] = {.lex_state = 151, .external_lex_state = 5},
- [3097] = {.lex_state = 151, .external_lex_state = 5},
- [3098] = {.lex_state = 13, .external_lex_state = 5},
- [3099] = {.lex_state = 26, .external_lex_state = 2},
- [3100] = {.lex_state = 26, .external_lex_state = 2},
- [3101] = {.lex_state = 151, .external_lex_state = 5},
- [3102] = {.lex_state = 13, .external_lex_state = 5},
- [3103] = {.lex_state = 13, .external_lex_state = 5},
- [3104] = {.lex_state = 13, .external_lex_state = 5},
- [3105] = {.lex_state = 13, .external_lex_state = 5},
- [3106] = {.lex_state = 13, .external_lex_state = 5},
- [3107] = {.lex_state = 13, .external_lex_state = 5},
- [3108] = {.lex_state = 26, .external_lex_state = 2},
- [3109] = {.lex_state = 13, .external_lex_state = 2},
- [3110] = {.lex_state = 13, .external_lex_state = 5},
- [3111] = {.lex_state = 13, .external_lex_state = 5},
- [3112] = {.lex_state = 151, .external_lex_state = 5},
- [3113] = {.lex_state = 151, .external_lex_state = 5},
- [3114] = {.lex_state = 13, .external_lex_state = 5},
- [3115] = {.lex_state = 13, .external_lex_state = 5},
- [3116] = {.lex_state = 13, .external_lex_state = 5},
- [3117] = {.lex_state = 13, .external_lex_state = 5},
- [3118] = {.lex_state = 13, .external_lex_state = 5},
- [3119] = {.lex_state = 13, .external_lex_state = 5},
- [3120] = {.lex_state = 13, .external_lex_state = 5},
- [3121] = {.lex_state = 13, .external_lex_state = 5},
- [3122] = {.lex_state = 13, .external_lex_state = 2},
- [3123] = {.lex_state = 13, .external_lex_state = 5},
- [3124] = {.lex_state = 13, .external_lex_state = 5},
- [3125] = {.lex_state = 13, .external_lex_state = 5},
- [3126] = {.lex_state = 16, .external_lex_state = 2},
- [3127] = {.lex_state = 16, .external_lex_state = 2},
- [3128] = {.lex_state = 13, .external_lex_state = 5},
- [3129] = {.lex_state = 13, .external_lex_state = 5},
- [3130] = {.lex_state = 13, .external_lex_state = 5},
- [3131] = {.lex_state = 16, .external_lex_state = 2},
- [3132] = {.lex_state = 13, .external_lex_state = 5},
- [3133] = {.lex_state = 13, .external_lex_state = 5},
- [3134] = {.lex_state = 1, .external_lex_state = 2},
- [3135] = {.lex_state = 13, .external_lex_state = 5},
- [3136] = {.lex_state = 13, .external_lex_state = 5},
- [3137] = {.lex_state = 26, .external_lex_state = 2},
- [3138] = {.lex_state = 151, .external_lex_state = 6},
- [3139] = {.lex_state = 13, .external_lex_state = 5},
- [3140] = {.lex_state = 13, .external_lex_state = 5},
- [3141] = {.lex_state = 14, .external_lex_state = 6},
- [3142] = {.lex_state = 13, .external_lex_state = 2},
- [3143] = {.lex_state = 151, .external_lex_state = 5},
- [3144] = {.lex_state = 151, .external_lex_state = 6},
- [3145] = {.lex_state = 14, .external_lex_state = 6},
- [3146] = {.lex_state = 151, .external_lex_state = 5},
- [3147] = {.lex_state = 151, .external_lex_state = 6},
- [3148] = {.lex_state = 151, .external_lex_state = 6},
- [3149] = {.lex_state = 151, .external_lex_state = 5},
- [3150] = {.lex_state = 151, .external_lex_state = 5},
- [3151] = {.lex_state = 151, .external_lex_state = 6},
- [3152] = {.lex_state = 151, .external_lex_state = 5},
- [3153] = {.lex_state = 15, .external_lex_state = 6},
- [3154] = {.lex_state = 151, .external_lex_state = 5},
- [3155] = {.lex_state = 151, .external_lex_state = 5},
- [3156] = {.lex_state = 15, .external_lex_state = 6},
- [3157] = {.lex_state = 14, .external_lex_state = 6},
- [3158] = {.lex_state = 151, .external_lex_state = 5},
- [3159] = {.lex_state = 151, .external_lex_state = 5},
- [3160] = {.lex_state = 151, .external_lex_state = 5},
- [3161] = {.lex_state = 151, .external_lex_state = 5},
- [3162] = {.lex_state = 13, .external_lex_state = 5},
- [3163] = {.lex_state = 151, .external_lex_state = 5},
- [3164] = {.lex_state = 151, .external_lex_state = 5},
- [3165] = {.lex_state = 151, .external_lex_state = 5},
- [3166] = {.lex_state = 151, .external_lex_state = 5},
- [3167] = {.lex_state = 151, .external_lex_state = 2},
- [3168] = {.lex_state = 151, .external_lex_state = 5},
- [3169] = {.lex_state = 151, .external_lex_state = 5},
- [3170] = {.lex_state = 151, .external_lex_state = 5},
- [3171] = {.lex_state = 151, .external_lex_state = 5},
- [3172] = {.lex_state = 151, .external_lex_state = 5},
- [3173] = {.lex_state = 151, .external_lex_state = 5},
- [3174] = {.lex_state = 151, .external_lex_state = 5},
- [3175] = {.lex_state = 151, .external_lex_state = 5},
- [3176] = {.lex_state = 151, .external_lex_state = 5},
- [3177] = {.lex_state = 151, .external_lex_state = 5},
- [3178] = {.lex_state = 151, .external_lex_state = 6},
- [3179] = {.lex_state = 151, .external_lex_state = 6},
- [3180] = {.lex_state = 151, .external_lex_state = 5},
- [3181] = {.lex_state = 13, .external_lex_state = 5},
- [3182] = {.lex_state = 15, .external_lex_state = 6},
- [3183] = {.lex_state = 13, .external_lex_state = 5},
- [3184] = {.lex_state = 13, .external_lex_state = 2},
- [3185] = {.lex_state = 15, .external_lex_state = 6},
- [3186] = {.lex_state = 151, .external_lex_state = 5},
- [3187] = {.lex_state = 151, .external_lex_state = 5},
- [3188] = {.lex_state = 151, .external_lex_state = 5},
- [3189] = {.lex_state = 151, .external_lex_state = 5},
- [3190] = {.lex_state = 151, .external_lex_state = 5},
- [3191] = {.lex_state = 151, .external_lex_state = 5},
- [3192] = {.lex_state = 151, .external_lex_state = 5},
- [3193] = {.lex_state = 151, .external_lex_state = 5},
- [3194] = {.lex_state = 151, .external_lex_state = 5},
- [3195] = {.lex_state = 151, .external_lex_state = 5},
- [3196] = {.lex_state = 151, .external_lex_state = 5},
- [3197] = {.lex_state = 151, .external_lex_state = 5},
- [3198] = {.lex_state = 14, .external_lex_state = 6},
- [3199] = {.lex_state = 15, .external_lex_state = 6},
- [3200] = {.lex_state = 15, .external_lex_state = 6},
- [3201] = {.lex_state = 151, .external_lex_state = 5},
- [3202] = {.lex_state = 15, .external_lex_state = 6},
- [3203] = {.lex_state = 151, .external_lex_state = 5},
- [3204] = {.lex_state = 151, .external_lex_state = 5},
- [3205] = {.lex_state = 151, .external_lex_state = 5},
- [3206] = {.lex_state = 151, .external_lex_state = 5},
- [3207] = {.lex_state = 151, .external_lex_state = 5},
- [3208] = {.lex_state = 151, .external_lex_state = 5},
- [3209] = {.lex_state = 15, .external_lex_state = 6},
- [3210] = {.lex_state = 151, .external_lex_state = 5},
- [3211] = {.lex_state = 151, .external_lex_state = 5},
- [3212] = {.lex_state = 151, .external_lex_state = 5},
- [3213] = {.lex_state = 151, .external_lex_state = 5},
- [3214] = {.lex_state = 151, .external_lex_state = 5},
- [3215] = {.lex_state = 26, .external_lex_state = 2},
- [3216] = {.lex_state = 26, .external_lex_state = 2},
- [3217] = {.lex_state = 26, .external_lex_state = 2},
- [3218] = {.lex_state = 151, .external_lex_state = 2},
- [3219] = {.lex_state = 14, .external_lex_state = 2},
- [3220] = {.lex_state = 14, .external_lex_state = 2},
- [3221] = {.lex_state = 151, .external_lex_state = 6},
- [3222] = {.lex_state = 14, .external_lex_state = 2},
- [3223] = {.lex_state = 151, .external_lex_state = 6},
- [3224] = {.lex_state = 14, .external_lex_state = 2},
- [3225] = {.lex_state = 151, .external_lex_state = 6},
- [3226] = {.lex_state = 151, .external_lex_state = 5},
- [3227] = {.lex_state = 151, .external_lex_state = 6},
- [3228] = {.lex_state = 151, .external_lex_state = 2},
- [3229] = {.lex_state = 151, .external_lex_state = 5},
- [3230] = {.lex_state = 13, .external_lex_state = 5},
- [3231] = {.lex_state = 14, .external_lex_state = 2},
- [3232] = {.lex_state = 151, .external_lex_state = 2},
- [3233] = {.lex_state = 151, .external_lex_state = 5},
- [3234] = {.lex_state = 14, .external_lex_state = 2},
- [3235] = {.lex_state = 14, .external_lex_state = 2},
- [3236] = {.lex_state = 151, .external_lex_state = 2},
- [3237] = {.lex_state = 151, .external_lex_state = 2},
- [3238] = {.lex_state = 151, .external_lex_state = 6},
- [3239] = {.lex_state = 151, .external_lex_state = 6},
- [3240] = {.lex_state = 14, .external_lex_state = 2},
- [3241] = {.lex_state = 151, .external_lex_state = 6},
- [3242] = {.lex_state = 26, .external_lex_state = 2},
- [3243] = {.lex_state = 151, .external_lex_state = 6},
- [3244] = {.lex_state = 14, .external_lex_state = 2},
- [3245] = {.lex_state = 151, .external_lex_state = 2},
- [3246] = {.lex_state = 14, .external_lex_state = 2},
- [3247] = {.lex_state = 14, .external_lex_state = 2},
- [3248] = {.lex_state = 151, .external_lex_state = 5},
- [3249] = {.lex_state = 13, .external_lex_state = 2},
- [3250] = {.lex_state = 14, .external_lex_state = 2},
- [3251] = {.lex_state = 151, .external_lex_state = 6},
- [3252] = {.lex_state = 26, .external_lex_state = 2},
- [3253] = {.lex_state = 26, .external_lex_state = 2},
- [3254] = {.lex_state = 16, .external_lex_state = 2},
- [3255] = {.lex_state = 151, .external_lex_state = 5},
- [3256] = {.lex_state = 151, .external_lex_state = 6},
- [3257] = {.lex_state = 151, .external_lex_state = 6},
- [3258] = {.lex_state = 151, .external_lex_state = 5},
- [3259] = {.lex_state = 16, .external_lex_state = 2},
- [3260] = {.lex_state = 151, .external_lex_state = 6},
- [3261] = {.lex_state = 16, .external_lex_state = 2},
- [3262] = {.lex_state = 151, .external_lex_state = 5},
- [3263] = {.lex_state = 16, .external_lex_state = 2},
- [3264] = {.lex_state = 16, .external_lex_state = 2},
- [3265] = {.lex_state = 151, .external_lex_state = 6},
- [3266] = {.lex_state = 16, .external_lex_state = 2},
- [3267] = {.lex_state = 13, .external_lex_state = 2},
- [3268] = {.lex_state = 151, .external_lex_state = 6},
- [3269] = {.lex_state = 151, .external_lex_state = 6},
- [3270] = {.lex_state = 26, .external_lex_state = 2},
- [3271] = {.lex_state = 151, .external_lex_state = 6},
- [3272] = {.lex_state = 151, .external_lex_state = 6},
- [3273] = {.lex_state = 26, .external_lex_state = 2},
- [3274] = {.lex_state = 151, .external_lex_state = 5},
- [3275] = {.lex_state = 14, .external_lex_state = 2},
- [3276] = {.lex_state = 151, .external_lex_state = 6},
- [3277] = {.lex_state = 151, .external_lex_state = 5},
- [3278] = {.lex_state = 151, .external_lex_state = 2},
- [3279] = {.lex_state = 26, .external_lex_state = 2},
- [3280] = {.lex_state = 151, .external_lex_state = 6},
- [3281] = {.lex_state = 151, .external_lex_state = 6},
- [3282] = {.lex_state = 151, .external_lex_state = 6},
- [3283] = {.lex_state = 13, .external_lex_state = 2},
- [3284] = {.lex_state = 151, .external_lex_state = 6},
- [3285] = {.lex_state = 151, .external_lex_state = 6},
- [3286] = {.lex_state = 26, .external_lex_state = 2},
- [3287] = {.lex_state = 26, .external_lex_state = 2},
- [3288] = {.lex_state = 151, .external_lex_state = 5},
- [3289] = {.lex_state = 26, .external_lex_state = 2},
- [3290] = {.lex_state = 16, .external_lex_state = 2},
- [3291] = {.lex_state = 151, .external_lex_state = 5},
- [3292] = {.lex_state = 151, .external_lex_state = 6},
- [3293] = {.lex_state = 151, .external_lex_state = 5},
- [3294] = {.lex_state = 14, .external_lex_state = 2},
- [3295] = {.lex_state = 151, .external_lex_state = 2},
- [3296] = {.lex_state = 151, .external_lex_state = 5},
- [3297] = {.lex_state = 151, .external_lex_state = 5},
- [3298] = {.lex_state = 14, .external_lex_state = 2},
- [3299] = {.lex_state = 151, .external_lex_state = 6},
- [3300] = {.lex_state = 151, .external_lex_state = 6},
- [3301] = {.lex_state = 151, .external_lex_state = 6},
- [3302] = {.lex_state = 151, .external_lex_state = 5},
- [3303] = {.lex_state = 16, .external_lex_state = 2},
- [3304] = {.lex_state = 26, .external_lex_state = 2},
- [3305] = {.lex_state = 151, .external_lex_state = 5},
- [3306] = {.lex_state = 16, .external_lex_state = 2},
- [3307] = {.lex_state = 151, .external_lex_state = 6},
- [3308] = {.lex_state = 13, .external_lex_state = 2},
- [3309] = {.lex_state = 151, .external_lex_state = 5},
- [3310] = {.lex_state = 26, .external_lex_state = 2},
- [3311] = {.lex_state = 151, .external_lex_state = 6},
- [3312] = {.lex_state = 26, .external_lex_state = 2},
- [3313] = {.lex_state = 151, .external_lex_state = 6},
- [3314] = {.lex_state = 151, .external_lex_state = 5},
- [3315] = {.lex_state = 13, .external_lex_state = 2},
- [3316] = {.lex_state = 151, .external_lex_state = 5},
- [3317] = {.lex_state = 151, .external_lex_state = 6},
- [3318] = {.lex_state = 16, .external_lex_state = 2},
- [3319] = {.lex_state = 13, .external_lex_state = 2},
- [3320] = {.lex_state = 151, .external_lex_state = 6},
- [3321] = {.lex_state = 151, .external_lex_state = 5},
- [3322] = {.lex_state = 14, .external_lex_state = 2},
- [3323] = {.lex_state = 151, .external_lex_state = 5},
- [3324] = {.lex_state = 151, .external_lex_state = 5},
- [3325] = {.lex_state = 151, .external_lex_state = 6},
- [3326] = {.lex_state = 151, .external_lex_state = 5},
- [3327] = {.lex_state = 151, .external_lex_state = 6},
- [3328] = {.lex_state = 16, .external_lex_state = 2},
- [3329] = {.lex_state = 151, .external_lex_state = 6},
- [3330] = {.lex_state = 151, .external_lex_state = 6},
- [3331] = {.lex_state = 151, .external_lex_state = 6},
- [3332] = {.lex_state = 151, .external_lex_state = 2},
- [3333] = {.lex_state = 151, .external_lex_state = 2},
- [3334] = {.lex_state = 16, .external_lex_state = 2},
- [3335] = {.lex_state = 151, .external_lex_state = 6},
- [3336] = {.lex_state = 151, .external_lex_state = 6},
- [3337] = {.lex_state = 151, .external_lex_state = 6},
- [3338] = {.lex_state = 151, .external_lex_state = 6},
- [3339] = {.lex_state = 151, .external_lex_state = 5},
- [3340] = {.lex_state = 151, .external_lex_state = 5},
- [3341] = {.lex_state = 14, .external_lex_state = 2},
- [3342] = {.lex_state = 151, .external_lex_state = 2},
- [3343] = {.lex_state = 151, .external_lex_state = 6},
- [3344] = {.lex_state = 151, .external_lex_state = 6},
- [3345] = {.lex_state = 26, .external_lex_state = 2},
- [3346] = {.lex_state = 151, .external_lex_state = 6},
- [3347] = {.lex_state = 151, .external_lex_state = 2},
- [3348] = {.lex_state = 14, .external_lex_state = 2},
- [3349] = {.lex_state = 26, .external_lex_state = 2},
- [3350] = {.lex_state = 14, .external_lex_state = 2},
- [3351] = {.lex_state = 151, .external_lex_state = 2},
- [3352] = {.lex_state = 26, .external_lex_state = 2},
- [3353] = {.lex_state = 26, .external_lex_state = 2},
- [3354] = {.lex_state = 151, .external_lex_state = 5},
- [3355] = {.lex_state = 14, .external_lex_state = 2},
- [3356] = {.lex_state = 26, .external_lex_state = 2},
- [3357] = {.lex_state = 26, .external_lex_state = 2},
- [3358] = {.lex_state = 151, .external_lex_state = 5},
- [3359] = {.lex_state = 151, .external_lex_state = 6},
- [3360] = {.lex_state = 26, .external_lex_state = 2},
- [3361] = {.lex_state = 151, .external_lex_state = 2},
- [3362] = {.lex_state = 26, .external_lex_state = 2},
- [3363] = {.lex_state = 14, .external_lex_state = 2},
- [3364] = {.lex_state = 151, .external_lex_state = 6},
- [3365] = {.lex_state = 151, .external_lex_state = 5},
- [3366] = {.lex_state = 151, .external_lex_state = 5},
- [3367] = {.lex_state = 14, .external_lex_state = 2},
- [3368] = {.lex_state = 26, .external_lex_state = 2},
- [3369] = {.lex_state = 26, .external_lex_state = 2},
- [3370] = {.lex_state = 151, .external_lex_state = 5},
- [3371] = {.lex_state = 151, .external_lex_state = 5},
- [3372] = {.lex_state = 151, .external_lex_state = 5},
- [3373] = {.lex_state = 26, .external_lex_state = 2},
- [3374] = {.lex_state = 151, .external_lex_state = 5},
- [3375] = {.lex_state = 151, .external_lex_state = 5},
- [3376] = {.lex_state = 26, .external_lex_state = 2},
- [3377] = {.lex_state = 26, .external_lex_state = 2},
- [3378] = {.lex_state = 26, .external_lex_state = 2},
- [3379] = {.lex_state = 26, .external_lex_state = 2},
- [3380] = {.lex_state = 26, .external_lex_state = 2},
- [3381] = {.lex_state = 151, .external_lex_state = 5},
- [3382] = {.lex_state = 151, .external_lex_state = 5},
- [3383] = {.lex_state = 151, .external_lex_state = 5},
- [3384] = {.lex_state = 14, .external_lex_state = 2},
- [3385] = {.lex_state = 151, .external_lex_state = 6},
- [3386] = {.lex_state = 26, .external_lex_state = 2},
- [3387] = {.lex_state = 151, .external_lex_state = 5},
- [3388] = {.lex_state = 151, .external_lex_state = 5},
- [3389] = {.lex_state = 151, .external_lex_state = 5},
- [3390] = {.lex_state = 151, .external_lex_state = 5},
- [3391] = {.lex_state = 151, .external_lex_state = 5},
- [3392] = {.lex_state = 151, .external_lex_state = 5},
- [3393] = {.lex_state = 151, .external_lex_state = 5},
- [3394] = {.lex_state = 151, .external_lex_state = 6},
- [3395] = {.lex_state = 16, .external_lex_state = 2},
- [3396] = {.lex_state = 151, .external_lex_state = 5},
- [3397] = {.lex_state = 13, .external_lex_state = 2},
- [3398] = {.lex_state = 14, .external_lex_state = 2},
- [3399] = {.lex_state = 151, .external_lex_state = 6},
- [3400] = {.lex_state = 14, .external_lex_state = 2},
- [3401] = {.lex_state = 14, .external_lex_state = 2},
- [3402] = {.lex_state = 151, .external_lex_state = 5},
- [3403] = {.lex_state = 14, .external_lex_state = 2},
- [3404] = {.lex_state = 151, .external_lex_state = 6},
- [3405] = {.lex_state = 151, .external_lex_state = 6},
- [3406] = {.lex_state = 26, .external_lex_state = 2},
- [3407] = {.lex_state = 151, .external_lex_state = 5},
- [3408] = {.lex_state = 26, .external_lex_state = 2},
- [3409] = {.lex_state = 26, .external_lex_state = 2},
- [3410] = {.lex_state = 16, .external_lex_state = 2},
- [3411] = {.lex_state = 16, .external_lex_state = 2},
- [3412] = {.lex_state = 151, .external_lex_state = 5},
- [3413] = {.lex_state = 151, .external_lex_state = 5},
- [3414] = {.lex_state = 14, .external_lex_state = 2},
- [3415] = {.lex_state = 151, .external_lex_state = 6},
- [3416] = {.lex_state = 151, .external_lex_state = 6},
- [3417] = {.lex_state = 151, .external_lex_state = 6},
- [3418] = {.lex_state = 26, .external_lex_state = 2},
- [3419] = {.lex_state = 151, .external_lex_state = 6},
- [3420] = {.lex_state = 151, .external_lex_state = 5},
- [3421] = {.lex_state = 151, .external_lex_state = 6},
- [3422] = {.lex_state = 14, .external_lex_state = 2},
- [3423] = {.lex_state = 151, .external_lex_state = 2},
- [3424] = {.lex_state = 26, .external_lex_state = 2},
- [3425] = {.lex_state = 151, .external_lex_state = 6},
- [3426] = {.lex_state = 151, .external_lex_state = 6},
- [3427] = {.lex_state = 151, .external_lex_state = 6},
- [3428] = {.lex_state = 151, .external_lex_state = 6},
- [3429] = {.lex_state = 151, .external_lex_state = 6},
- [3430] = {.lex_state = 26, .external_lex_state = 2},
- [3431] = {.lex_state = 151, .external_lex_state = 6},
- [3432] = {.lex_state = 26, .external_lex_state = 2},
- [3433] = {.lex_state = 14, .external_lex_state = 2},
- [3434] = {.lex_state = 151, .external_lex_state = 6},
- [3435] = {.lex_state = 26, .external_lex_state = 2},
- [3436] = {.lex_state = 14, .external_lex_state = 2},
- [3437] = {.lex_state = 13, .external_lex_state = 2},
- [3438] = {.lex_state = 151, .external_lex_state = 2},
- [3439] = {.lex_state = 14, .external_lex_state = 2},
- [3440] = {.lex_state = 151, .external_lex_state = 6},
- [3441] = {.lex_state = 151, .external_lex_state = 5},
- [3442] = {.lex_state = 151, .external_lex_state = 5},
- [3443] = {.lex_state = 151, .external_lex_state = 5},
- [3444] = {.lex_state = 13, .external_lex_state = 2},
- [3445] = {.lex_state = 16, .external_lex_state = 2},
- [3446] = {.lex_state = 151, .external_lex_state = 5},
- [3447] = {.lex_state = 151, .external_lex_state = 5},
- [3448] = {.lex_state = 26, .external_lex_state = 2},
- [3449] = {.lex_state = 17, .external_lex_state = 2},
- [3450] = {.lex_state = 24, .external_lex_state = 7},
- [3451] = {.lex_state = 151, .external_lex_state = 2},
- [3452] = {.lex_state = 17, .external_lex_state = 2},
- [3453] = {.lex_state = 151, .external_lex_state = 5},
- [3454] = {.lex_state = 151, .external_lex_state = 6},
- [3455] = {.lex_state = 151, .external_lex_state = 2},
- [3456] = {.lex_state = 151, .external_lex_state = 5},
- [3457] = {.lex_state = 151, .external_lex_state = 2},
- [3458] = {.lex_state = 24, .external_lex_state = 7},
- [3459] = {.lex_state = 151, .external_lex_state = 2},
- [3460] = {.lex_state = 24, .external_lex_state = 7},
- [3461] = {.lex_state = 151, .external_lex_state = 2},
- [3462] = {.lex_state = 26, .external_lex_state = 2},
- [3463] = {.lex_state = 151, .external_lex_state = 2},
- [3464] = {.lex_state = 26, .external_lex_state = 2},
- [3465] = {.lex_state = 26, .external_lex_state = 2},
- [3466] = {.lex_state = 151, .external_lex_state = 2},
- [3467] = {.lex_state = 24, .external_lex_state = 7},
- [3468] = {.lex_state = 24, .external_lex_state = 7},
- [3469] = {.lex_state = 151, .external_lex_state = 5},
- [3470] = {.lex_state = 151, .external_lex_state = 2},
- [3471] = {.lex_state = 151, .external_lex_state = 2},
- [3472] = {.lex_state = 151, .external_lex_state = 2},
- [3473] = {.lex_state = 26, .external_lex_state = 2},
- [3474] = {.lex_state = 26, .external_lex_state = 2},
- [3475] = {.lex_state = 151, .external_lex_state = 5},
- [3476] = {.lex_state = 15, .external_lex_state = 2},
- [3477] = {.lex_state = 24, .external_lex_state = 7},
- [3478] = {.lex_state = 24, .external_lex_state = 7},
- [3479] = {.lex_state = 15, .external_lex_state = 2},
- [3480] = {.lex_state = 15, .external_lex_state = 2},
- [3481] = {.lex_state = 26, .external_lex_state = 2},
- [3482] = {.lex_state = 151, .external_lex_state = 5},
- [3483] = {.lex_state = 151, .external_lex_state = 5},
- [3484] = {.lex_state = 26, .external_lex_state = 2},
- [3485] = {.lex_state = 26, .external_lex_state = 2},
- [3486] = {.lex_state = 24, .external_lex_state = 7},
- [3487] = {.lex_state = 26, .external_lex_state = 2},
- [3488] = {.lex_state = 151, .external_lex_state = 2},
- [3489] = {.lex_state = 26, .external_lex_state = 2},
- [3490] = {.lex_state = 26, .external_lex_state = 2},
- [3491] = {.lex_state = 151, .external_lex_state = 2},
- [3492] = {.lex_state = 151, .external_lex_state = 5},
- [3493] = {.lex_state = 151, .external_lex_state = 2},
- [3494] = {.lex_state = 151, .external_lex_state = 5},
- [3495] = {.lex_state = 151, .external_lex_state = 5},
- [3496] = {.lex_state = 151, .external_lex_state = 5},
- [3497] = {.lex_state = 151, .external_lex_state = 5},
- [3498] = {.lex_state = 151, .external_lex_state = 5},
- [3499] = {.lex_state = 151, .external_lex_state = 5},
- [3500] = {.lex_state = 151, .external_lex_state = 5},
- [3501] = {.lex_state = 151, .external_lex_state = 2},
- [3502] = {.lex_state = 151, .external_lex_state = 5},
- [3503] = {.lex_state = 151, .external_lex_state = 5},
- [3504] = {.lex_state = 151, .external_lex_state = 5},
- [3505] = {.lex_state = 151, .external_lex_state = 2},
- [3506] = {.lex_state = 151, .external_lex_state = 5},
- [3507] = {.lex_state = 151, .external_lex_state = 2},
- [3508] = {.lex_state = 151, .external_lex_state = 5},
- [3509] = {.lex_state = 151, .external_lex_state = 5},
- [3510] = {.lex_state = 151, .external_lex_state = 5},
- [3511] = {.lex_state = 151, .external_lex_state = 5},
- [3512] = {.lex_state = 151, .external_lex_state = 2},
- [3513] = {.lex_state = 151, .external_lex_state = 5},
- [3514] = {.lex_state = 13, .external_lex_state = 2},
- [3515] = {.lex_state = 151, .external_lex_state = 2},
- [3516] = {.lex_state = 151, .external_lex_state = 5},
- [3517] = {.lex_state = 151, .external_lex_state = 5},
- [3518] = {.lex_state = 151, .external_lex_state = 5},
- [3519] = {.lex_state = 151, .external_lex_state = 2},
- [3520] = {.lex_state = 151, .external_lex_state = 5},
- [3521] = {.lex_state = 151, .external_lex_state = 5},
- [3522] = {.lex_state = 151, .external_lex_state = 5},
- [3523] = {.lex_state = 151, .external_lex_state = 2},
- [3524] = {.lex_state = 151, .external_lex_state = 5},
- [3525] = {.lex_state = 151, .external_lex_state = 2},
- [3526] = {.lex_state = 13, .external_lex_state = 2},
- [3527] = {.lex_state = 151, .external_lex_state = 5},
- [3528] = {.lex_state = 151, .external_lex_state = 2},
- [3529] = {.lex_state = 13, .external_lex_state = 2},
- [3530] = {.lex_state = 13, .external_lex_state = 2},
- [3531] = {.lex_state = 151, .external_lex_state = 2},
- [3532] = {.lex_state = 13, .external_lex_state = 2},
- [3533] = {.lex_state = 151, .external_lex_state = 5},
- [3534] = {.lex_state = 13, .external_lex_state = 2},
- [3535] = {.lex_state = 151, .external_lex_state = 5},
- [3536] = {.lex_state = 13, .external_lex_state = 2},
- [3537] = {.lex_state = 151, .external_lex_state = 5},
- [3538] = {.lex_state = 151, .external_lex_state = 5},
- [3539] = {.lex_state = 151, .external_lex_state = 5},
- [3540] = {.lex_state = 151, .external_lex_state = 5},
- [3541] = {.lex_state = 151, .external_lex_state = 5},
- [3542] = {.lex_state = 151, .external_lex_state = 5},
- [3543] = {.lex_state = 151, .external_lex_state = 5},
- [3544] = {.lex_state = 151, .external_lex_state = 5},
- [3545] = {.lex_state = 151, .external_lex_state = 2},
- [3546] = {.lex_state = 151, .external_lex_state = 5},
- [3547] = {.lex_state = 26, .external_lex_state = 2},
- [3548] = {.lex_state = 151, .external_lex_state = 5},
- [3549] = {.lex_state = 151, .external_lex_state = 2},
- [3550] = {.lex_state = 151, .external_lex_state = 5},
- [3551] = {.lex_state = 151, .external_lex_state = 5},
- [3552] = {.lex_state = 151, .external_lex_state = 5},
- [3553] = {.lex_state = 151, .external_lex_state = 2},
- [3554] = {.lex_state = 151, .external_lex_state = 5},
- [3555] = {.lex_state = 151, .external_lex_state = 5},
- [3556] = {.lex_state = 151, .external_lex_state = 5},
- [3557] = {.lex_state = 151, .external_lex_state = 5},
- [3558] = {.lex_state = 151, .external_lex_state = 5},
- [3559] = {.lex_state = 151, .external_lex_state = 5},
- [3560] = {.lex_state = 151, .external_lex_state = 5},
- [3561] = {.lex_state = 151, .external_lex_state = 5},
- [3562] = {.lex_state = 151, .external_lex_state = 5},
- [3563] = {.lex_state = 151, .external_lex_state = 5},
- [3564] = {.lex_state = 151, .external_lex_state = 5},
- [3565] = {.lex_state = 151, .external_lex_state = 5},
- [3566] = {.lex_state = 151, .external_lex_state = 5},
- [3567] = {.lex_state = 151, .external_lex_state = 5},
- [3568] = {.lex_state = 13, .external_lex_state = 2},
- [3569] = {.lex_state = 151, .external_lex_state = 5},
- [3570] = {.lex_state = 13, .external_lex_state = 2},
- [3571] = {.lex_state = 151, .external_lex_state = 5},
- [3572] = {.lex_state = 151, .external_lex_state = 5},
- [3573] = {.lex_state = 151, .external_lex_state = 5},
- [3574] = {.lex_state = 151, .external_lex_state = 5},
- [3575] = {.lex_state = 151, .external_lex_state = 5},
- [3576] = {.lex_state = 151, .external_lex_state = 5},
- [3577] = {.lex_state = 151, .external_lex_state = 5},
- [3578] = {.lex_state = 151, .external_lex_state = 5},
- [3579] = {.lex_state = 151, .external_lex_state = 5},
- [3580] = {.lex_state = 151, .external_lex_state = 5},
- [3581] = {.lex_state = 151, .external_lex_state = 5},
- [3582] = {.lex_state = 13, .external_lex_state = 2},
- [3583] = {.lex_state = 151, .external_lex_state = 5},
- [3584] = {.lex_state = 151, .external_lex_state = 5},
- [3585] = {.lex_state = 151, .external_lex_state = 2},
- [3586] = {.lex_state = 151, .external_lex_state = 5},
- [3587] = {.lex_state = 151, .external_lex_state = 5},
- [3588] = {.lex_state = 151, .external_lex_state = 2},
- [3589] = {.lex_state = 151, .external_lex_state = 2},
- [3590] = {.lex_state = 151, .external_lex_state = 2},
- [3591] = {.lex_state = 13, .external_lex_state = 2},
- [3592] = {.lex_state = 151, .external_lex_state = 5},
- [3593] = {.lex_state = 151, .external_lex_state = 5},
- [3594] = {.lex_state = 151, .external_lex_state = 5},
- [3595] = {.lex_state = 151, .external_lex_state = 5},
- [3596] = {.lex_state = 151, .external_lex_state = 5},
- [3597] = {.lex_state = 13, .external_lex_state = 2},
- [3598] = {.lex_state = 151, .external_lex_state = 5},
- [3599] = {.lex_state = 151, .external_lex_state = 5},
- [3600] = {.lex_state = 151, .external_lex_state = 2},
- [3601] = {.lex_state = 151, .external_lex_state = 5},
- [3602] = {.lex_state = 151, .external_lex_state = 5},
- [3603] = {.lex_state = 151, .external_lex_state = 5},
- [3604] = {.lex_state = 151, .external_lex_state = 5},
- [3605] = {.lex_state = 151, .external_lex_state = 5},
- [3606] = {.lex_state = 151, .external_lex_state = 2},
- [3607] = {.lex_state = 151, .external_lex_state = 5},
- [3608] = {.lex_state = 151, .external_lex_state = 5},
- [3609] = {.lex_state = 26, .external_lex_state = 2},
- [3610] = {.lex_state = 151, .external_lex_state = 2},
- [3611] = {.lex_state = 13, .external_lex_state = 2},
- [3612] = {.lex_state = 151, .external_lex_state = 5},
- [3613] = {.lex_state = 151, .external_lex_state = 5},
- [3614] = {.lex_state = 151, .external_lex_state = 5},
- [3615] = {.lex_state = 151, .external_lex_state = 5},
- [3616] = {.lex_state = 151, .external_lex_state = 5},
- [3617] = {.lex_state = 151, .external_lex_state = 2},
- [3618] = {.lex_state = 151, .external_lex_state = 2},
- [3619] = {.lex_state = 151, .external_lex_state = 2},
- [3620] = {.lex_state = 151, .external_lex_state = 2},
- [3621] = {.lex_state = 151, .external_lex_state = 2},
- [3622] = {.lex_state = 13, .external_lex_state = 2},
- [3623] = {.lex_state = 151, .external_lex_state = 2},
- [3624] = {.lex_state = 151, .external_lex_state = 2},
- [3625] = {.lex_state = 151, .external_lex_state = 2},
- [3626] = {.lex_state = 151, .external_lex_state = 5},
- [3627] = {.lex_state = 151, .external_lex_state = 5},
- [3628] = {.lex_state = 151, .external_lex_state = 5},
- [3629] = {.lex_state = 151, .external_lex_state = 2},
- [3630] = {.lex_state = 151, .external_lex_state = 2},
- [3631] = {.lex_state = 151, .external_lex_state = 5},
- [3632] = {.lex_state = 151, .external_lex_state = 5},
- [3633] = {.lex_state = 151, .external_lex_state = 5},
- [3634] = {.lex_state = 151, .external_lex_state = 5},
- [3635] = {.lex_state = 151, .external_lex_state = 5},
- [3636] = {.lex_state = 151, .external_lex_state = 5},
- [3637] = {.lex_state = 151, .external_lex_state = 5},
- [3638] = {.lex_state = 151, .external_lex_state = 5},
- [3639] = {.lex_state = 151, .external_lex_state = 5},
- [3640] = {.lex_state = 151, .external_lex_state = 2},
- [3641] = {.lex_state = 151, .external_lex_state = 5},
- [3642] = {.lex_state = 151, .external_lex_state = 5},
- [3643] = {.lex_state = 151, .external_lex_state = 5},
- [3644] = {.lex_state = 151, .external_lex_state = 5},
- [3645] = {.lex_state = 151, .external_lex_state = 5},
- [3646] = {.lex_state = 151, .external_lex_state = 2},
- [3647] = {.lex_state = 151, .external_lex_state = 5},
- [3648] = {.lex_state = 151, .external_lex_state = 2},
- [3649] = {.lex_state = 151, .external_lex_state = 5},
- [3650] = {.lex_state = 151, .external_lex_state = 2},
- [3651] = {.lex_state = 151, .external_lex_state = 2},
- [3652] = {.lex_state = 151, .external_lex_state = 2},
- [3653] = {.lex_state = 151, .external_lex_state = 2},
- [3654] = {.lex_state = 151, .external_lex_state = 2},
- [3655] = {.lex_state = 151, .external_lex_state = 5},
- [3656] = {.lex_state = 151, .external_lex_state = 5},
- [3657] = {.lex_state = 151, .external_lex_state = 5},
- [3658] = {.lex_state = 151, .external_lex_state = 2},
- [3659] = {.lex_state = 26, .external_lex_state = 2},
- [3660] = {.lex_state = 151, .external_lex_state = 2},
- [3661] = {.lex_state = 151, .external_lex_state = 5},
- [3662] = {.lex_state = 151, .external_lex_state = 2},
- [3663] = {.lex_state = 13, .external_lex_state = 2},
- [3664] = {.lex_state = 151, .external_lex_state = 5},
- [3665] = {.lex_state = 13, .external_lex_state = 2},
- [3666] = {.lex_state = 151, .external_lex_state = 2},
- [3667] = {.lex_state = 151, .external_lex_state = 5},
- [3668] = {.lex_state = 151, .external_lex_state = 5},
- [3669] = {.lex_state = 151, .external_lex_state = 5},
- [3670] = {.lex_state = 151, .external_lex_state = 5},
- [3671] = {.lex_state = 151, .external_lex_state = 2},
- [3672] = {.lex_state = 151, .external_lex_state = 5},
- [3673] = {.lex_state = 151, .external_lex_state = 5},
- [3674] = {.lex_state = 151, .external_lex_state = 5},
- [3675] = {.lex_state = 151, .external_lex_state = 5},
- [3676] = {.lex_state = 151, .external_lex_state = 5},
- [3677] = {.lex_state = 151, .external_lex_state = 5},
- [3678] = {.lex_state = 151, .external_lex_state = 5},
- [3679] = {.lex_state = 151, .external_lex_state = 5},
- [3680] = {.lex_state = 151, .external_lex_state = 2},
- [3681] = {.lex_state = 151, .external_lex_state = 5},
- [3682] = {.lex_state = 151, .external_lex_state = 5},
- [3683] = {.lex_state = 151, .external_lex_state = 5},
- [3684] = {.lex_state = 151, .external_lex_state = 5},
- [3685] = {.lex_state = 151, .external_lex_state = 5},
- [3686] = {.lex_state = 151, .external_lex_state = 5},
- [3687] = {.lex_state = 151, .external_lex_state = 5},
- [3688] = {.lex_state = 151, .external_lex_state = 2},
- [3689] = {.lex_state = 151, .external_lex_state = 5},
- [3690] = {.lex_state = 13, .external_lex_state = 2},
- [3691] = {.lex_state = 151, .external_lex_state = 5},
- [3692] = {.lex_state = 151, .external_lex_state = 5},
- [3693] = {.lex_state = 151, .external_lex_state = 2},
- [3694] = {.lex_state = 13, .external_lex_state = 2},
- [3695] = {.lex_state = 26, .external_lex_state = 2},
- [3696] = {.lex_state = 13, .external_lex_state = 2},
- [3697] = {.lex_state = 151, .external_lex_state = 5},
- [3698] = {.lex_state = 151, .external_lex_state = 2},
- [3699] = {.lex_state = 13, .external_lex_state = 2},
- [3700] = {.lex_state = 151, .external_lex_state = 2},
- [3701] = {.lex_state = 151, .external_lex_state = 5},
- [3702] = {.lex_state = 151, .external_lex_state = 5},
- [3703] = {.lex_state = 151, .external_lex_state = 2},
- [3704] = {.lex_state = 151, .external_lex_state = 2},
- [3705] = {.lex_state = 151, .external_lex_state = 5},
- [3706] = {.lex_state = 151, .external_lex_state = 5},
- [3707] = {.lex_state = 151, .external_lex_state = 5},
- [3708] = {.lex_state = 151, .external_lex_state = 5},
- [3709] = {.lex_state = 151, .external_lex_state = 2},
- [3710] = {.lex_state = 151, .external_lex_state = 2},
- [3711] = {.lex_state = 151, .external_lex_state = 5},
- [3712] = {.lex_state = 151, .external_lex_state = 5},
- [3713] = {.lex_state = 151, .external_lex_state = 5},
- [3714] = {.lex_state = 151, .external_lex_state = 5},
- [3715] = {.lex_state = 151, .external_lex_state = 5},
- [3716] = {.lex_state = 151, .external_lex_state = 5},
- [3717] = {.lex_state = 151, .external_lex_state = 2},
- [3718] = {.lex_state = 151, .external_lex_state = 5},
- [3719] = {.lex_state = 151, .external_lex_state = 5},
- [3720] = {.lex_state = 151, .external_lex_state = 2},
- [3721] = {.lex_state = 151, .external_lex_state = 5},
- [3722] = {.lex_state = 151, .external_lex_state = 5},
- [3723] = {.lex_state = 151, .external_lex_state = 2},
- [3724] = {.lex_state = 1, .external_lex_state = 2},
- [3725] = {.lex_state = 13, .external_lex_state = 2},
- [3726] = {.lex_state = 1, .external_lex_state = 2},
- [3727] = {.lex_state = 1, .external_lex_state = 2},
- [3728] = {.lex_state = 13, .external_lex_state = 2},
- [3729] = {.lex_state = 151, .external_lex_state = 5},
- [3730] = {.lex_state = 151, .external_lex_state = 5},
- [3731] = {.lex_state = 13, .external_lex_state = 2},
- [3732] = {.lex_state = 151, .external_lex_state = 6},
- [3733] = {.lex_state = 13, .external_lex_state = 2},
- [3734] = {.lex_state = 13, .external_lex_state = 2},
- [3735] = {.lex_state = 151, .external_lex_state = 5},
- [3736] = {.lex_state = 151, .external_lex_state = 5},
- [3737] = {.lex_state = 151, .external_lex_state = 2},
- [3738] = {.lex_state = 151, .external_lex_state = 2},
- [3739] = {.lex_state = 151, .external_lex_state = 2},
- [3740] = {.lex_state = 1, .external_lex_state = 2},
- [3741] = {.lex_state = 1, .external_lex_state = 2},
- [3742] = {.lex_state = 151, .external_lex_state = 2},
- [3743] = {.lex_state = 151, .external_lex_state = 6},
- [3744] = {.lex_state = 1, .external_lex_state = 2},
- [3745] = {.lex_state = 151, .external_lex_state = 5},
- [3746] = {.lex_state = 1, .external_lex_state = 2},
- [3747] = {.lex_state = 13, .external_lex_state = 2},
- [3748] = {.lex_state = 151, .external_lex_state = 2},
- [3749] = {.lex_state = 13, .external_lex_state = 2},
- [3750] = {.lex_state = 151, .external_lex_state = 2},
- [3751] = {.lex_state = 1, .external_lex_state = 2},
- [3752] = {.lex_state = 151, .external_lex_state = 6},
- [3753] = {.lex_state = 151, .external_lex_state = 5},
- [3754] = {.lex_state = 1, .external_lex_state = 2},
- [3755] = {.lex_state = 1, .external_lex_state = 2},
- [3756] = {.lex_state = 151, .external_lex_state = 2},
- [3757] = {.lex_state = 13, .external_lex_state = 2},
- [3758] = {.lex_state = 13, .external_lex_state = 2},
- [3759] = {.lex_state = 151, .external_lex_state = 6},
- [3760] = {.lex_state = 13, .external_lex_state = 2},
- [3761] = {.lex_state = 1, .external_lex_state = 2},
- [3762] = {.lex_state = 151, .external_lex_state = 6},
- [3763] = {.lex_state = 1, .external_lex_state = 2},
- [3764] = {.lex_state = 1, .external_lex_state = 2},
- [3765] = {.lex_state = 1, .external_lex_state = 2},
- [3766] = {.lex_state = 151, .external_lex_state = 5},
- [3767] = {.lex_state = 13, .external_lex_state = 2},
- [3768] = {.lex_state = 1, .external_lex_state = 2},
- [3769] = {.lex_state = 151, .external_lex_state = 2},
- [3770] = {.lex_state = 13, .external_lex_state = 2},
- [3771] = {.lex_state = 151, .external_lex_state = 5},
- [3772] = {.lex_state = 13, .external_lex_state = 2},
- [3773] = {.lex_state = 13, .external_lex_state = 2},
- [3774] = {.lex_state = 151, .external_lex_state = 2},
- [3775] = {.lex_state = 13, .external_lex_state = 2},
- [3776] = {.lex_state = 151, .external_lex_state = 5},
- [3777] = {.lex_state = 151, .external_lex_state = 6},
- [3778] = {.lex_state = 1, .external_lex_state = 2},
- [3779] = {.lex_state = 24, .external_lex_state = 7},
- [3780] = {.lex_state = 1, .external_lex_state = 2},
- [3781] = {.lex_state = 24, .external_lex_state = 7},
- [3782] = {.lex_state = 151, .external_lex_state = 2},
- [3783] = {.lex_state = 24, .external_lex_state = 7},
- [3784] = {.lex_state = 151, .external_lex_state = 2},
- [3785] = {.lex_state = 151, .external_lex_state = 2},
- [3786] = {.lex_state = 151, .external_lex_state = 5},
- [3787] = {.lex_state = 151, .external_lex_state = 5},
- [3788] = {.lex_state = 13, .external_lex_state = 2},
- [3789] = {.lex_state = 151, .external_lex_state = 2},
- [3790] = {.lex_state = 151, .external_lex_state = 6},
- [3791] = {.lex_state = 151, .external_lex_state = 6},
- [3792] = {.lex_state = 1, .external_lex_state = 2},
- [3793] = {.lex_state = 1, .external_lex_state = 2},
- [3794] = {.lex_state = 1, .external_lex_state = 2},
- [3795] = {.lex_state = 151, .external_lex_state = 6},
- [3796] = {.lex_state = 17, .external_lex_state = 2},
- [3797] = {.lex_state = 13, .external_lex_state = 2},
- [3798] = {.lex_state = 13, .external_lex_state = 2},
- [3799] = {.lex_state = 151, .external_lex_state = 6},
- [3800] = {.lex_state = 13, .external_lex_state = 2},
- [3801] = {.lex_state = 13, .external_lex_state = 2},
- [3802] = {.lex_state = 151, .external_lex_state = 5},
- [3803] = {.lex_state = 151, .external_lex_state = 2},
- [3804] = {.lex_state = 151, .external_lex_state = 5},
- [3805] = {.lex_state = 151, .external_lex_state = 6},
- [3806] = {.lex_state = 17, .external_lex_state = 2},
- [3807] = {.lex_state = 151, .external_lex_state = 6},
- [3808] = {.lex_state = 13, .external_lex_state = 2},
- [3809] = {.lex_state = 151, .external_lex_state = 5},
- [3810] = {.lex_state = 151, .external_lex_state = 5},
- [3811] = {.lex_state = 1, .external_lex_state = 2},
- [3812] = {.lex_state = 151, .external_lex_state = 2},
- [3813] = {.lex_state = 151, .external_lex_state = 2},
- [3814] = {.lex_state = 151, .external_lex_state = 2},
- [3815] = {.lex_state = 1, .external_lex_state = 2},
- [3816] = {.lex_state = 1, .external_lex_state = 2},
- [3817] = {.lex_state = 13, .external_lex_state = 2},
- [3818] = {.lex_state = 151, .external_lex_state = 2},
- [3819] = {.lex_state = 151, .external_lex_state = 2},
- [3820] = {.lex_state = 151, .external_lex_state = 2},
- [3821] = {.lex_state = 151, .external_lex_state = 5},
- [3822] = {.lex_state = 13, .external_lex_state = 2},
- [3823] = {.lex_state = 13, .external_lex_state = 2},
- [3824] = {.lex_state = 13, .external_lex_state = 2},
- [3825] = {.lex_state = 151, .external_lex_state = 5},
- [3826] = {.lex_state = 26, .external_lex_state = 2},
- [3827] = {.lex_state = 151, .external_lex_state = 2},
- [3828] = {.lex_state = 151, .external_lex_state = 2},
- [3829] = {.lex_state = 151, .external_lex_state = 2},
- [3830] = {.lex_state = 151, .external_lex_state = 5},
- [3831] = {.lex_state = 151, .external_lex_state = 5},
- [3832] = {.lex_state = 13, .external_lex_state = 2},
- [3833] = {.lex_state = 151, .external_lex_state = 2},
- [3834] = {.lex_state = 13, .external_lex_state = 2},
- [3835] = {.lex_state = 151, .external_lex_state = 6},
- [3836] = {.lex_state = 13, .external_lex_state = 2},
- [3837] = {.lex_state = 151, .external_lex_state = 2},
- [3838] = {.lex_state = 1, .external_lex_state = 2},
- [3839] = {.lex_state = 151, .external_lex_state = 2},
- [3840] = {.lex_state = 13, .external_lex_state = 2},
- [3841] = {.lex_state = 13, .external_lex_state = 2},
- [3842] = {.lex_state = 13, .external_lex_state = 2},
- [3843] = {.lex_state = 13, .external_lex_state = 2},
- [3844] = {.lex_state = 13, .external_lex_state = 2},
- [3845] = {.lex_state = 1, .external_lex_state = 2},
- [3846] = {.lex_state = 151, .external_lex_state = 2},
- [3847] = {.lex_state = 151, .external_lex_state = 6},
- [3848] = {.lex_state = 151, .external_lex_state = 2},
- [3849] = {.lex_state = 151, .external_lex_state = 5},
- [3850] = {.lex_state = 13, .external_lex_state = 2},
- [3851] = {.lex_state = 1, .external_lex_state = 2},
- [3852] = {.lex_state = 13, .external_lex_state = 2},
- [3853] = {.lex_state = 151, .external_lex_state = 2},
- [3854] = {.lex_state = 13, .external_lex_state = 2},
- [3855] = {.lex_state = 1, .external_lex_state = 2},
- [3856] = {.lex_state = 151, .external_lex_state = 2},
- [3857] = {.lex_state = 151, .external_lex_state = 2},
- [3858] = {.lex_state = 24, .external_lex_state = 7},
- [3859] = {.lex_state = 151, .external_lex_state = 2},
- [3860] = {.lex_state = 151, .external_lex_state = 2},
- [3861] = {.lex_state = 151, .external_lex_state = 6},
- [3862] = {.lex_state = 13, .external_lex_state = 2},
- [3863] = {.lex_state = 151, .external_lex_state = 2},
- [3864] = {.lex_state = 151, .external_lex_state = 6},
- [3865] = {.lex_state = 151, .external_lex_state = 2},
- [3866] = {.lex_state = 151, .external_lex_state = 2},
- [3867] = {.lex_state = 151, .external_lex_state = 5},
- [3868] = {.lex_state = 24, .external_lex_state = 7},
- [3869] = {.lex_state = 16, .external_lex_state = 2},
- [3870] = {.lex_state = 151, .external_lex_state = 5},
- [3871] = {.lex_state = 151, .external_lex_state = 6},
- [3872] = {.lex_state = 151, .external_lex_state = 5},
- [3873] = {.lex_state = 151, .external_lex_state = 6},
- [3874] = {.lex_state = 151, .external_lex_state = 5},
- [3875] = {.lex_state = 151, .external_lex_state = 6},
- [3876] = {.lex_state = 13, .external_lex_state = 2},
- [3877] = {.lex_state = 13, .external_lex_state = 2},
- [3878] = {.lex_state = 13, .external_lex_state = 2},
- [3879] = {.lex_state = 151, .external_lex_state = 2},
- [3880] = {.lex_state = 13, .external_lex_state = 2},
- [3881] = {.lex_state = 151, .external_lex_state = 2},
- [3882] = {.lex_state = 151, .external_lex_state = 6},
- [3883] = {.lex_state = 1, .external_lex_state = 2},
- [3884] = {.lex_state = 13, .external_lex_state = 2},
- [3885] = {.lex_state = 151, .external_lex_state = 6},
- [3886] = {.lex_state = 151, .external_lex_state = 6},
- [3887] = {.lex_state = 1, .external_lex_state = 2},
- [3888] = {.lex_state = 151, .external_lex_state = 6},
- [3889] = {.lex_state = 151, .external_lex_state = 2},
- [3890] = {.lex_state = 13, .external_lex_state = 2},
- [3891] = {.lex_state = 151, .external_lex_state = 2},
- [3892] = {.lex_state = 151, .external_lex_state = 2},
- [3893] = {.lex_state = 151, .external_lex_state = 6},
- [3894] = {.lex_state = 26, .external_lex_state = 2},
- [3895] = {.lex_state = 13, .external_lex_state = 2},
- [3896] = {.lex_state = 151, .external_lex_state = 5},
- [3897] = {.lex_state = 13, .external_lex_state = 2},
- [3898] = {.lex_state = 13, .external_lex_state = 2},
- [3899] = {.lex_state = 16, .external_lex_state = 2},
- [3900] = {.lex_state = 151, .external_lex_state = 5},
- [3901] = {.lex_state = 151, .external_lex_state = 6},
- [3902] = {.lex_state = 151, .external_lex_state = 2},
- [3903] = {.lex_state = 1, .external_lex_state = 2},
- [3904] = {.lex_state = 13, .external_lex_state = 2},
- [3905] = {.lex_state = 13, .external_lex_state = 2},
- [3906] = {.lex_state = 151, .external_lex_state = 2},
- [3907] = {.lex_state = 151, .external_lex_state = 5},
- [3908] = {.lex_state = 151, .external_lex_state = 2},
- [3909] = {.lex_state = 151, .external_lex_state = 5},
- [3910] = {.lex_state = 151, .external_lex_state = 2},
- [3911] = {.lex_state = 151, .external_lex_state = 5},
- [3912] = {.lex_state = 151, .external_lex_state = 6},
- [3913] = {.lex_state = 151, .external_lex_state = 2},
- [3914] = {.lex_state = 13, .external_lex_state = 2},
- [3915] = {.lex_state = 151, .external_lex_state = 2},
- [3916] = {.lex_state = 151, .external_lex_state = 5},
- [3917] = {.lex_state = 151, .external_lex_state = 5},
- [3918] = {.lex_state = 13, .external_lex_state = 2},
- [3919] = {.lex_state = 151, .external_lex_state = 5},
- [3920] = {.lex_state = 151, .external_lex_state = 5},
- [3921] = {.lex_state = 151, .external_lex_state = 5},
- [3922] = {.lex_state = 151, .external_lex_state = 5},
- [3923] = {.lex_state = 151, .external_lex_state = 5},
- [3924] = {.lex_state = 151, .external_lex_state = 5},
- [3925] = {.lex_state = 151, .external_lex_state = 5},
- [3926] = {.lex_state = 151, .external_lex_state = 5},
- [3927] = {.lex_state = 151, .external_lex_state = 5},
- [3928] = {.lex_state = 151, .external_lex_state = 5},
- [3929] = {.lex_state = 151, .external_lex_state = 5},
- [3930] = {.lex_state = 151, .external_lex_state = 5},
- [3931] = {.lex_state = 26, .external_lex_state = 2},
- [3932] = {.lex_state = 151, .external_lex_state = 5},
- [3933] = {.lex_state = 151, .external_lex_state = 6},
- [3934] = {.lex_state = 151, .external_lex_state = 5},
- [3935] = {.lex_state = 151, .external_lex_state = 6},
- [3936] = {.lex_state = 151, .external_lex_state = 6},
- [3937] = {.lex_state = 151, .external_lex_state = 5},
- [3938] = {.lex_state = 151, .external_lex_state = 5},
- [3939] = {.lex_state = 151, .external_lex_state = 5},
- [3940] = {.lex_state = 151, .external_lex_state = 5},
- [3941] = {.lex_state = 151, .external_lex_state = 5},
- [3942] = {.lex_state = 151, .external_lex_state = 5},
- [3943] = {.lex_state = 151, .external_lex_state = 5},
- [3944] = {.lex_state = 151, .external_lex_state = 5},
- [3945] = {.lex_state = 151, .external_lex_state = 5},
- [3946] = {.lex_state = 151, .external_lex_state = 5},
- [3947] = {.lex_state = 151, .external_lex_state = 5},
- [3948] = {.lex_state = 151, .external_lex_state = 5},
- [3949] = {.lex_state = 151, .external_lex_state = 5},
- [3950] = {.lex_state = 13, .external_lex_state = 2},
- [3951] = {.lex_state = 151, .external_lex_state = 5},
- [3952] = {.lex_state = 151, .external_lex_state = 2},
- [3953] = {.lex_state = 151, .external_lex_state = 2},
- [3954] = {.lex_state = 151, .external_lex_state = 5},
- [3955] = {.lex_state = 151, .external_lex_state = 5},
- [3956] = {.lex_state = 151, .external_lex_state = 5},
- [3957] = {.lex_state = 151, .external_lex_state = 2},
- [3958] = {.lex_state = 151, .external_lex_state = 5},
- [3959] = {.lex_state = 151, .external_lex_state = 5},
- [3960] = {.lex_state = 151, .external_lex_state = 5},
- [3961] = {.lex_state = 151, .external_lex_state = 2},
- [3962] = {.lex_state = 151, .external_lex_state = 5},
- [3963] = {.lex_state = 151, .external_lex_state = 5},
- [3964] = {.lex_state = 151, .external_lex_state = 5},
- [3965] = {.lex_state = 151, .external_lex_state = 5},
- [3966] = {.lex_state = 151, .external_lex_state = 5},
- [3967] = {.lex_state = 151, .external_lex_state = 5},
- [3968] = {.lex_state = 151, .external_lex_state = 2},
- [3969] = {.lex_state = 151, .external_lex_state = 5},
- [3970] = {.lex_state = 151, .external_lex_state = 5},
- [3971] = {.lex_state = 151, .external_lex_state = 5},
- [3972] = {.lex_state = 151, .external_lex_state = 5},
- [3973] = {.lex_state = 151, .external_lex_state = 5},
- [3974] = {.lex_state = 151, .external_lex_state = 5},
- [3975] = {.lex_state = 151, .external_lex_state = 5},
- [3976] = {.lex_state = 17, .external_lex_state = 2},
- [3977] = {.lex_state = 151, .external_lex_state = 5},
- [3978] = {.lex_state = 151, .external_lex_state = 5},
- [3979] = {.lex_state = 151, .external_lex_state = 5},
- [3980] = {.lex_state = 151, .external_lex_state = 2},
- [3981] = {.lex_state = 151, .external_lex_state = 5},
- [3982] = {.lex_state = 13, .external_lex_state = 2},
- [3983] = {.lex_state = 151, .external_lex_state = 2},
- [3984] = {.lex_state = 151, .external_lex_state = 5},
- [3985] = {.lex_state = 151, .external_lex_state = 5},
- [3986] = {.lex_state = 151, .external_lex_state = 5},
- [3987] = {.lex_state = 151, .external_lex_state = 5},
- [3988] = {.lex_state = 151, .external_lex_state = 5},
- [3989] = {.lex_state = 151, .external_lex_state = 5},
- [3990] = {.lex_state = 24, .external_lex_state = 8},
- [3991] = {.lex_state = 151, .external_lex_state = 6},
- [3992] = {.lex_state = 151, .external_lex_state = 5},
- [3993] = {.lex_state = 151, .external_lex_state = 5},
- [3994] = {.lex_state = 151, .external_lex_state = 5},
- [3995] = {.lex_state = 5, .external_lex_state = 2},
- [3996] = {.lex_state = 26, .external_lex_state = 2},
- [3997] = {.lex_state = 151, .external_lex_state = 2},
- [3998] = {.lex_state = 151, .external_lex_state = 5},
- [3999] = {.lex_state = 151, .external_lex_state = 5},
- [4000] = {.lex_state = 151, .external_lex_state = 5},
- [4001] = {.lex_state = 151, .external_lex_state = 2},
- [4002] = {.lex_state = 151, .external_lex_state = 5},
- [4003] = {.lex_state = 151, .external_lex_state = 5},
- [4004] = {.lex_state = 151, .external_lex_state = 5},
- [4005] = {.lex_state = 151, .external_lex_state = 5},
- [4006] = {.lex_state = 151, .external_lex_state = 5},
- [4007] = {.lex_state = 151, .external_lex_state = 5},
- [4008] = {.lex_state = 151, .external_lex_state = 5},
- [4009] = {.lex_state = 151, .external_lex_state = 6},
- [4010] = {.lex_state = 151, .external_lex_state = 5},
- [4011] = {.lex_state = 151, .external_lex_state = 5},
- [4012] = {.lex_state = 13, .external_lex_state = 2},
- [4013] = {.lex_state = 13, .external_lex_state = 2},
- [4014] = {.lex_state = 151, .external_lex_state = 6},
- [4015] = {.lex_state = 151, .external_lex_state = 5},
- [4016] = {.lex_state = 151, .external_lex_state = 5},
- [4017] = {.lex_state = 24, .external_lex_state = 8},
- [4018] = {.lex_state = 151, .external_lex_state = 5},
- [4019] = {.lex_state = 151, .external_lex_state = 5},
- [4020] = {.lex_state = 151, .external_lex_state = 6},
- [4021] = {.lex_state = 151, .external_lex_state = 5},
- [4022] = {.lex_state = 151, .external_lex_state = 5},
- [4023] = {.lex_state = 151, .external_lex_state = 2},
- [4024] = {.lex_state = 151, .external_lex_state = 2},
- [4025] = {.lex_state = 151, .external_lex_state = 2},
- [4026] = {.lex_state = 151, .external_lex_state = 5},
- [4027] = {.lex_state = 151, .external_lex_state = 5},
- [4028] = {.lex_state = 13, .external_lex_state = 2},
- [4029] = {.lex_state = 151, .external_lex_state = 5},
- [4030] = {.lex_state = 151, .external_lex_state = 6},
- [4031] = {.lex_state = 151, .external_lex_state = 5},
- [4032] = {.lex_state = 151, .external_lex_state = 5},
- [4033] = {.lex_state = 151, .external_lex_state = 5},
- [4034] = {.lex_state = 151, .external_lex_state = 5},
- [4035] = {.lex_state = 151, .external_lex_state = 5},
- [4036] = {.lex_state = 13, .external_lex_state = 2},
- [4037] = {.lex_state = 151, .external_lex_state = 5},
- [4038] = {.lex_state = 151, .external_lex_state = 5},
- [4039] = {.lex_state = 151, .external_lex_state = 2},
- [4040] = {.lex_state = 151, .external_lex_state = 5},
- [4041] = {.lex_state = 151, .external_lex_state = 5},
- [4042] = {.lex_state = 151, .external_lex_state = 5},
- [4043] = {.lex_state = 151, .external_lex_state = 5},
- [4044] = {.lex_state = 151, .external_lex_state = 5},
- [4045] = {.lex_state = 151, .external_lex_state = 5},
- [4046] = {.lex_state = 151, .external_lex_state = 2},
- [4047] = {.lex_state = 151, .external_lex_state = 5},
- [4048] = {.lex_state = 16, .external_lex_state = 2},
- [4049] = {.lex_state = 151, .external_lex_state = 5},
- [4050] = {.lex_state = 151, .external_lex_state = 5},
- [4051] = {.lex_state = 151, .external_lex_state = 5},
- [4052] = {.lex_state = 151, .external_lex_state = 5},
- [4053] = {.lex_state = 13, .external_lex_state = 2},
- [4054] = {.lex_state = 151, .external_lex_state = 5},
- [4055] = {.lex_state = 151, .external_lex_state = 5},
- [4056] = {.lex_state = 151, .external_lex_state = 2},
- [4057] = {.lex_state = 151, .external_lex_state = 5},
- [4058] = {.lex_state = 151, .external_lex_state = 5},
- [4059] = {.lex_state = 151, .external_lex_state = 5},
- [4060] = {.lex_state = 151, .external_lex_state = 5},
- [4061] = {.lex_state = 13, .external_lex_state = 2},
- [4062] = {.lex_state = 151, .external_lex_state = 5},
- [4063] = {.lex_state = 151, .external_lex_state = 5},
- [4064] = {.lex_state = 13, .external_lex_state = 2},
- [4065] = {.lex_state = 151, .external_lex_state = 5},
- [4066] = {.lex_state = 151, .external_lex_state = 5},
- [4067] = {.lex_state = 13, .external_lex_state = 2},
- [4068] = {.lex_state = 13, .external_lex_state = 2},
- [4069] = {.lex_state = 13, .external_lex_state = 2},
- [4070] = {.lex_state = 151, .external_lex_state = 5},
- [4071] = {.lex_state = 151, .external_lex_state = 5},
- [4072] = {.lex_state = 151, .external_lex_state = 5},
- [4073] = {.lex_state = 151, .external_lex_state = 5},
- [4074] = {.lex_state = 151, .external_lex_state = 5},
- [4075] = {.lex_state = 151, .external_lex_state = 5},
- [4076] = {.lex_state = 151, .external_lex_state = 5},
- [4077] = {.lex_state = 151, .external_lex_state = 5},
- [4078] = {.lex_state = 13, .external_lex_state = 2},
- [4079] = {.lex_state = 13, .external_lex_state = 2},
- [4080] = {.lex_state = 151, .external_lex_state = 5},
- [4081] = {.lex_state = 151, .external_lex_state = 5},
- [4082] = {.lex_state = 151, .external_lex_state = 5},
- [4083] = {.lex_state = 151, .external_lex_state = 5},
- [4084] = {.lex_state = 151, .external_lex_state = 5},
- [4085] = {.lex_state = 151, .external_lex_state = 2},
- [4086] = {.lex_state = 151, .external_lex_state = 2},
- [4087] = {.lex_state = 151, .external_lex_state = 5},
- [4088] = {.lex_state = 151, .external_lex_state = 2},
- [4089] = {.lex_state = 13, .external_lex_state = 2},
- [4090] = {.lex_state = 151, .external_lex_state = 6},
- [4091] = {.lex_state = 151, .external_lex_state = 5},
- [4092] = {.lex_state = 151, .external_lex_state = 5},
- [4093] = {.lex_state = 17, .external_lex_state = 2},
- [4094] = {.lex_state = 151, .external_lex_state = 5},
- [4095] = {.lex_state = 151, .external_lex_state = 5},
- [4096] = {.lex_state = 151, .external_lex_state = 5},
- [4097] = {.lex_state = 151, .external_lex_state = 5},
- [4098] = {.lex_state = 151, .external_lex_state = 5},
- [4099] = {.lex_state = 24, .external_lex_state = 8},
- [4100] = {.lex_state = 151, .external_lex_state = 6},
- [4101] = {.lex_state = 151, .external_lex_state = 5},
- [4102] = {.lex_state = 151, .external_lex_state = 5},
- [4103] = {.lex_state = 151, .external_lex_state = 5},
- [4104] = {.lex_state = 151, .external_lex_state = 5},
- [4105] = {.lex_state = 151, .external_lex_state = 5},
- [4106] = {.lex_state = 151, .external_lex_state = 5},
- [4107] = {.lex_state = 151, .external_lex_state = 5},
- [4108] = {.lex_state = 151, .external_lex_state = 5},
- [4109] = {.lex_state = 13, .external_lex_state = 2},
- [4110] = {.lex_state = 24, .external_lex_state = 8},
- [4111] = {.lex_state = 151, .external_lex_state = 6},
- [4112] = {.lex_state = 151, .external_lex_state = 5},
- [4113] = {.lex_state = 151, .external_lex_state = 5},
- [4114] = {.lex_state = 151, .external_lex_state = 5},
- [4115] = {.lex_state = 151, .external_lex_state = 5},
- [4116] = {.lex_state = 151, .external_lex_state = 5},
- [4117] = {.lex_state = 13, .external_lex_state = 2},
- [4118] = {.lex_state = 151, .external_lex_state = 5},
- [4119] = {.lex_state = 151, .external_lex_state = 5},
- [4120] = {.lex_state = 151, .external_lex_state = 5},
- [4121] = {.lex_state = 151, .external_lex_state = 5},
- [4122] = {.lex_state = 151, .external_lex_state = 5},
- [4123] = {.lex_state = 151, .external_lex_state = 5},
- [4124] = {.lex_state = 151, .external_lex_state = 5},
- [4125] = {.lex_state = 17, .external_lex_state = 2},
- [4126] = {.lex_state = 24, .external_lex_state = 8},
- [4127] = {.lex_state = 151, .external_lex_state = 5},
- [4128] = {.lex_state = 151, .external_lex_state = 5},
- [4129] = {.lex_state = 151, .external_lex_state = 5},
- [4130] = {.lex_state = 151, .external_lex_state = 5},
- [4131] = {.lex_state = 24, .external_lex_state = 8},
- [4132] = {.lex_state = 26, .external_lex_state = 2},
- [4133] = {.lex_state = 151, .external_lex_state = 5},
- [4134] = {.lex_state = 151, .external_lex_state = 5},
- [4135] = {.lex_state = 151, .external_lex_state = 5},
- [4136] = {.lex_state = 151, .external_lex_state = 5},
- [4137] = {.lex_state = 151, .external_lex_state = 5},
- [4138] = {.lex_state = 24, .external_lex_state = 8},
- [4139] = {.lex_state = 151, .external_lex_state = 5},
- [4140] = {.lex_state = 13, .external_lex_state = 2},
- [4141] = {.lex_state = 151, .external_lex_state = 5},
- [4142] = {.lex_state = 151, .external_lex_state = 5},
- [4143] = {.lex_state = 24, .external_lex_state = 8},
- [4144] = {.lex_state = 151, .external_lex_state = 5},
- [4145] = {.lex_state = 151, .external_lex_state = 5},
- [4146] = {.lex_state = 151, .external_lex_state = 5},
- [4147] = {.lex_state = 151, .external_lex_state = 2},
- [4148] = {.lex_state = 151, .external_lex_state = 5},
- [4149] = {.lex_state = 151, .external_lex_state = 5},
- [4150] = {.lex_state = 151, .external_lex_state = 5},
- [4151] = {.lex_state = 151, .external_lex_state = 2},
- [4152] = {.lex_state = 151, .external_lex_state = 5},
- [4153] = {.lex_state = 151, .external_lex_state = 2},
- [4154] = {.lex_state = 151, .external_lex_state = 2},
- [4155] = {.lex_state = 13, .external_lex_state = 2},
- [4156] = {.lex_state = 151, .external_lex_state = 5},
- [4157] = {.lex_state = 151, .external_lex_state = 5},
- [4158] = {.lex_state = 13, .external_lex_state = 2},
- [4159] = {.lex_state = 13, .external_lex_state = 2},
- [4160] = {.lex_state = 151, .external_lex_state = 5},
- [4161] = {.lex_state = 151, .external_lex_state = 5},
- [4162] = {.lex_state = 151, .external_lex_state = 5},
- [4163] = {.lex_state = 151, .external_lex_state = 5},
- [4164] = {.lex_state = 151, .external_lex_state = 5},
- [4165] = {.lex_state = 151, .external_lex_state = 5},
- [4166] = {.lex_state = 151, .external_lex_state = 5},
- [4167] = {.lex_state = 151, .external_lex_state = 5},
- [4168] = {.lex_state = 151, .external_lex_state = 5},
- [4169] = {.lex_state = 151, .external_lex_state = 5},
- [4170] = {.lex_state = 13, .external_lex_state = 2},
- [4171] = {.lex_state = 151, .external_lex_state = 5},
- [4172] = {.lex_state = 151, .external_lex_state = 5},
- [4173] = {.lex_state = 151, .external_lex_state = 5},
- [4174] = {.lex_state = 151, .external_lex_state = 2},
- [4175] = {.lex_state = 13, .external_lex_state = 2},
- [4176] = {.lex_state = 151, .external_lex_state = 5},
- [4177] = {.lex_state = 13, .external_lex_state = 2},
- [4178] = {.lex_state = 13, .external_lex_state = 2},
- [4179] = {.lex_state = 151, .external_lex_state = 5},
- [4180] = {.lex_state = 13, .external_lex_state = 2},
- [4181] = {.lex_state = 151, .external_lex_state = 5},
- [4182] = {.lex_state = 13, .external_lex_state = 2},
- [4183] = {.lex_state = 151, .external_lex_state = 5},
- [4184] = {.lex_state = 151, .external_lex_state = 5},
- [4185] = {.lex_state = 151, .external_lex_state = 5},
- [4186] = {.lex_state = 151, .external_lex_state = 5},
- [4187] = {.lex_state = 151, .external_lex_state = 5},
- [4188] = {.lex_state = 151, .external_lex_state = 5},
- [4189] = {.lex_state = 151, .external_lex_state = 5},
- [4190] = {.lex_state = 151, .external_lex_state = 5},
- [4191] = {.lex_state = 151, .external_lex_state = 5},
- [4192] = {.lex_state = 13, .external_lex_state = 2},
- [4193] = {.lex_state = 13, .external_lex_state = 2},
- [4194] = {.lex_state = 151, .external_lex_state = 5},
- [4195] = {.lex_state = 13, .external_lex_state = 2},
- [4196] = {.lex_state = 13, .external_lex_state = 2},
- [4197] = {.lex_state = 151, .external_lex_state = 5},
- [4198] = {.lex_state = 151, .external_lex_state = 5},
- [4199] = {.lex_state = 151, .external_lex_state = 5},
- [4200] = {.lex_state = 151, .external_lex_state = 5},
- [4201] = {.lex_state = 151, .external_lex_state = 5},
- [4202] = {.lex_state = 13, .external_lex_state = 2},
- [4203] = {.lex_state = 13, .external_lex_state = 2},
- [4204] = {.lex_state = 151, .external_lex_state = 5},
- [4205] = {.lex_state = 151, .external_lex_state = 5},
- [4206] = {.lex_state = 13, .external_lex_state = 2},
- [4207] = {.lex_state = 13, .external_lex_state = 2},
- [4208] = {.lex_state = 151, .external_lex_state = 5},
- [4209] = {.lex_state = 151, .external_lex_state = 5},
- [4210] = {.lex_state = 13, .external_lex_state = 2},
- [4211] = {.lex_state = 151, .external_lex_state = 5},
- [4212] = {.lex_state = 13, .external_lex_state = 2},
- [4213] = {.lex_state = 151, .external_lex_state = 5},
- [4214] = {.lex_state = 151, .external_lex_state = 5},
- [4215] = {.lex_state = 151, .external_lex_state = 5},
- [4216] = {.lex_state = 151, .external_lex_state = 5},
- [4217] = {.lex_state = 151, .external_lex_state = 5},
- [4218] = {.lex_state = 151, .external_lex_state = 5},
- [4219] = {.lex_state = 13, .external_lex_state = 2},
- [4220] = {.lex_state = 151, .external_lex_state = 5},
- [4221] = {.lex_state = 151, .external_lex_state = 5},
- [4222] = {.lex_state = 13, .external_lex_state = 2},
- [4223] = {.lex_state = 151, .external_lex_state = 5},
- [4224] = {.lex_state = 13, .external_lex_state = 2},
- [4225] = {.lex_state = 17, .external_lex_state = 2},
- [4226] = {.lex_state = 151, .external_lex_state = 5},
- [4227] = {.lex_state = 151, .external_lex_state = 2},
- [4228] = {.lex_state = 151, .external_lex_state = 5},
- [4229] = {.lex_state = 151, .external_lex_state = 5},
- [4230] = {.lex_state = 151, .external_lex_state = 5},
- [4231] = {.lex_state = 151, .external_lex_state = 5},
- [4232] = {.lex_state = 151, .external_lex_state = 2},
- [4233] = {.lex_state = 24, .external_lex_state = 8},
- [4234] = {.lex_state = 13, .external_lex_state = 2},
- [4235] = {.lex_state = 13, .external_lex_state = 2},
- [4236] = {.lex_state = 151, .external_lex_state = 5},
- [4237] = {.lex_state = 151, .external_lex_state = 5},
- [4238] = {.lex_state = 26, .external_lex_state = 2},
- [4239] = {.lex_state = 26, .external_lex_state = 2},
- [4240] = {.lex_state = 151, .external_lex_state = 5},
- [4241] = {.lex_state = 151, .external_lex_state = 5},
- [4242] = {.lex_state = 151, .external_lex_state = 5},
- [4243] = {.lex_state = 151, .external_lex_state = 5},
- [4244] = {.lex_state = 151, .external_lex_state = 5},
- [4245] = {.lex_state = 151, .external_lex_state = 5},
- [4246] = {.lex_state = 151, .external_lex_state = 5},
- [4247] = {.lex_state = 151, .external_lex_state = 5},
- [4248] = {.lex_state = 151, .external_lex_state = 5},
- [4249] = {.lex_state = 151, .external_lex_state = 5},
- [4250] = {.lex_state = 151, .external_lex_state = 2},
- [4251] = {.lex_state = 151, .external_lex_state = 5},
- [4252] = {.lex_state = 13, .external_lex_state = 2},
- [4253] = {.lex_state = 151, .external_lex_state = 5},
- [4254] = {.lex_state = 151, .external_lex_state = 5},
- [4255] = {.lex_state = 151, .external_lex_state = 2},
- [4256] = {.lex_state = 151, .external_lex_state = 2},
- [4257] = {.lex_state = 151, .external_lex_state = 5},
- [4258] = {.lex_state = 13, .external_lex_state = 2},
- [4259] = {.lex_state = 26, .external_lex_state = 2},
- [4260] = {.lex_state = 26, .external_lex_state = 2},
- [4261] = {.lex_state = 13, .external_lex_state = 2},
- [4262] = {.lex_state = 151, .external_lex_state = 2},
- [4263] = {.lex_state = 13, .external_lex_state = 2},
- [4264] = {.lex_state = 151, .external_lex_state = 5},
- [4265] = {.lex_state = 151, .external_lex_state = 5},
- [4266] = {.lex_state = 151, .external_lex_state = 2},
- [4267] = {.lex_state = 151, .external_lex_state = 5},
- [4268] = {.lex_state = 151, .external_lex_state = 2},
- [4269] = {.lex_state = 151, .external_lex_state = 5},
- [4270] = {.lex_state = 151, .external_lex_state = 2},
- [4271] = {.lex_state = 13, .external_lex_state = 2},
- [4272] = {.lex_state = 151, .external_lex_state = 5},
- [4273] = {.lex_state = 151, .external_lex_state = 2},
- [4274] = {.lex_state = 151, .external_lex_state = 2},
- [4275] = {.lex_state = 26, .external_lex_state = 2},
- [4276] = {.lex_state = 26, .external_lex_state = 2},
- [4277] = {.lex_state = 151, .external_lex_state = 5},
- [4278] = {.lex_state = 151, .external_lex_state = 5},
- [4279] = {.lex_state = 26, .external_lex_state = 2},
- [4280] = {.lex_state = 26, .external_lex_state = 2},
- [4281] = {.lex_state = 151, .external_lex_state = 5},
- [4282] = {.lex_state = 151, .external_lex_state = 5},
- [4283] = {.lex_state = 151, .external_lex_state = 2},
- [4284] = {.lex_state = 151, .external_lex_state = 2},
- [4285] = {.lex_state = 151, .external_lex_state = 5},
- [4286] = {.lex_state = 151, .external_lex_state = 5},
- [4287] = {.lex_state = 151, .external_lex_state = 5},
- [4288] = {.lex_state = 151, .external_lex_state = 5},
- [4289] = {.lex_state = 151, .external_lex_state = 5},
- [4290] = {.lex_state = 151, .external_lex_state = 5},
- [4291] = {.lex_state = 151, .external_lex_state = 5},
- [4292] = {.lex_state = 26, .external_lex_state = 2},
- [4293] = {.lex_state = 26, .external_lex_state = 2},
- [4294] = {.lex_state = 26, .external_lex_state = 2},
- [4295] = {.lex_state = 26, .external_lex_state = 2},
- [4296] = {.lex_state = 151, .external_lex_state = 2},
- [4297] = {.lex_state = 26, .external_lex_state = 2},
- [4298] = {.lex_state = 151, .external_lex_state = 2},
- [4299] = {.lex_state = 26, .external_lex_state = 2},
- [4300] = {.lex_state = 151, .external_lex_state = 2},
- [4301] = {.lex_state = 151, .external_lex_state = 5},
- [4302] = {.lex_state = 13, .external_lex_state = 2},
- [4303] = {.lex_state = 151, .external_lex_state = 5},
- [4304] = {.lex_state = 13, .external_lex_state = 2},
- [4305] = {.lex_state = 151, .external_lex_state = 5},
- [4306] = {.lex_state = 151, .external_lex_state = 5},
- [4307] = {.lex_state = 151, .external_lex_state = 5},
- [4308] = {.lex_state = 26, .external_lex_state = 2},
- [4309] = {.lex_state = 26, .external_lex_state = 2},
- [4310] = {.lex_state = 151, .external_lex_state = 5},
- [4311] = {.lex_state = 151, .external_lex_state = 5},
- [4312] = {.lex_state = 151, .external_lex_state = 5},
- [4313] = {.lex_state = 13, .external_lex_state = 2},
- [4314] = {.lex_state = 151, .external_lex_state = 5},
- [4315] = {.lex_state = 151, .external_lex_state = 5},
- [4316] = {.lex_state = 151, .external_lex_state = 5},
- [4317] = {.lex_state = 151, .external_lex_state = 2},
- [4318] = {.lex_state = 151, .external_lex_state = 5},
- [4319] = {.lex_state = 26, .external_lex_state = 2},
- [4320] = {.lex_state = 26, .external_lex_state = 2},
- [4321] = {.lex_state = 151, .external_lex_state = 5},
- [4322] = {.lex_state = 151, .external_lex_state = 5},
- [4323] = {.lex_state = 151, .external_lex_state = 5},
- [4324] = {.lex_state = 151, .external_lex_state = 2},
- [4325] = {.lex_state = 151, .external_lex_state = 5},
- [4326] = {.lex_state = 151, .external_lex_state = 5},
- [4327] = {.lex_state = 151, .external_lex_state = 5},
- [4328] = {.lex_state = 151, .external_lex_state = 5},
- [4329] = {.lex_state = 151, .external_lex_state = 5},
- [4330] = {.lex_state = 151, .external_lex_state = 5},
- [4331] = {.lex_state = 13, .external_lex_state = 2},
- [4332] = {.lex_state = 151, .external_lex_state = 5},
- [4333] = {.lex_state = 151, .external_lex_state = 2},
- [4334] = {.lex_state = 151, .external_lex_state = 5},
- [4335] = {.lex_state = 151, .external_lex_state = 5},
- [4336] = {.lex_state = 151, .external_lex_state = 5},
- [4337] = {.lex_state = 13, .external_lex_state = 2},
- [4338] = {.lex_state = 151, .external_lex_state = 5},
- [4339] = {.lex_state = 151, .external_lex_state = 5},
- [4340] = {.lex_state = 151, .external_lex_state = 5},
- [4341] = {.lex_state = 151, .external_lex_state = 5},
- [4342] = {.lex_state = 151, .external_lex_state = 5},
- [4343] = {.lex_state = 151, .external_lex_state = 5},
- [4344] = {.lex_state = 151, .external_lex_state = 2},
- [4345] = {.lex_state = 151, .external_lex_state = 5},
- [4346] = {.lex_state = 151, .external_lex_state = 5},
- [4347] = {.lex_state = 24, .external_lex_state = 8},
- [4348] = {.lex_state = 13, .external_lex_state = 2},
- [4349] = {.lex_state = 151, .external_lex_state = 5},
- [4350] = {.lex_state = 13, .external_lex_state = 2},
- [4351] = {.lex_state = 151, .external_lex_state = 2},
- [4352] = {.lex_state = 151, .external_lex_state = 2},
- [4353] = {.lex_state = 13, .external_lex_state = 2},
- [4354] = {.lex_state = 13, .external_lex_state = 2},
- [4355] = {.lex_state = 151, .external_lex_state = 2},
- [4356] = {.lex_state = 151, .external_lex_state = 5},
- [4357] = {.lex_state = 151, .external_lex_state = 5},
- [4358] = {.lex_state = 151, .external_lex_state = 5},
- [4359] = {.lex_state = 151, .external_lex_state = 5},
- [4360] = {.lex_state = 151, .external_lex_state = 5},
- [4361] = {.lex_state = 151, .external_lex_state = 5},
- [4362] = {.lex_state = 151, .external_lex_state = 5},
- [4363] = {.lex_state = 151, .external_lex_state = 5},
- [4364] = {.lex_state = 151, .external_lex_state = 5},
- [4365] = {.lex_state = 151, .external_lex_state = 5},
- [4366] = {.lex_state = 24, .external_lex_state = 8},
- [4367] = {.lex_state = 151, .external_lex_state = 5},
- [4368] = {.lex_state = 151, .external_lex_state = 5},
- [4369] = {.lex_state = 151, .external_lex_state = 5},
- [4370] = {.lex_state = 151, .external_lex_state = 5},
- [4371] = {.lex_state = 151, .external_lex_state = 5},
- [4372] = {.lex_state = 151, .external_lex_state = 5},
- [4373] = {.lex_state = 151, .external_lex_state = 5},
- [4374] = {.lex_state = 151, .external_lex_state = 5},
- [4375] = {.lex_state = 13, .external_lex_state = 2},
- [4376] = {.lex_state = 13, .external_lex_state = 2},
- [4377] = {.lex_state = 13, .external_lex_state = 2},
- [4378] = {.lex_state = 151, .external_lex_state = 6},
- [4379] = {.lex_state = 151, .external_lex_state = 6},
- [4380] = {.lex_state = 151, .external_lex_state = 5},
- [4381] = {.lex_state = 151, .external_lex_state = 5},
- [4382] = {.lex_state = 151, .external_lex_state = 5},
- [4383] = {.lex_state = 151, .external_lex_state = 5},
- [4384] = {.lex_state = 151, .external_lex_state = 5},
- [4385] = {.lex_state = 151, .external_lex_state = 5},
- [4386] = {.lex_state = 13, .external_lex_state = 2},
- [4387] = {.lex_state = 13, .external_lex_state = 2},
- [4388] = {.lex_state = 151, .external_lex_state = 5},
- [4389] = {.lex_state = 151, .external_lex_state = 5},
- [4390] = {.lex_state = 151, .external_lex_state = 5},
- [4391] = {.lex_state = 26, .external_lex_state = 2},
- [4392] = {.lex_state = 26, .external_lex_state = 2},
- [4393] = {.lex_state = 151, .external_lex_state = 5},
- [4394] = {.lex_state = 151, .external_lex_state = 2},
- [4395] = {.lex_state = 151, .external_lex_state = 5},
- [4396] = {.lex_state = 13, .external_lex_state = 2},
- [4397] = {.lex_state = 151, .external_lex_state = 5},
- [4398] = {.lex_state = 13, .external_lex_state = 2},
- [4399] = {.lex_state = 151, .external_lex_state = 2},
- [4400] = {.lex_state = 151, .external_lex_state = 5},
- [4401] = {.lex_state = 151, .external_lex_state = 5},
- [4402] = {.lex_state = 151, .external_lex_state = 2},
- [4403] = {.lex_state = 151, .external_lex_state = 2},
- [4404] = {.lex_state = 151, .external_lex_state = 5},
- [4405] = {.lex_state = 151, .external_lex_state = 5},
- [4406] = {.lex_state = 151, .external_lex_state = 5},
- [4407] = {.lex_state = 151, .external_lex_state = 5},
- [4408] = {.lex_state = 151, .external_lex_state = 6},
- [4409] = {.lex_state = 151, .external_lex_state = 5},
- [4410] = {.lex_state = 13, .external_lex_state = 2},
- [4411] = {.lex_state = 13, .external_lex_state = 2},
- [4412] = {.lex_state = 151, .external_lex_state = 2},
- [4413] = {.lex_state = 151, .external_lex_state = 5},
- [4414] = {.lex_state = 151, .external_lex_state = 5},
- [4415] = {.lex_state = 151, .external_lex_state = 5},
- [4416] = {.lex_state = 151, .external_lex_state = 5},
- [4417] = {.lex_state = 151, .external_lex_state = 5},
- [4418] = {.lex_state = 151, .external_lex_state = 5},
- [4419] = {.lex_state = 5, .external_lex_state = 2},
- [4420] = {.lex_state = 151, .external_lex_state = 5},
- [4421] = {.lex_state = 20, .external_lex_state = 9},
- [4422] = {.lex_state = 151, .external_lex_state = 5},
- [4423] = {.lex_state = 13, .external_lex_state = 2},
- [4424] = {.lex_state = 13, .external_lex_state = 2},
- [4425] = {.lex_state = 13, .external_lex_state = 2},
- [4426] = {.lex_state = 20, .external_lex_state = 9},
- [4427] = {.lex_state = 30, .external_lex_state = 9},
- [4428] = {.lex_state = 151, .external_lex_state = 2},
- [4429] = {.lex_state = 151, .external_lex_state = 2},
- [4430] = {.lex_state = 20, .external_lex_state = 9},
- [4431] = {.lex_state = 30, .external_lex_state = 9},
- [4432] = {.lex_state = 151, .external_lex_state = 2},
- [4433] = {.lex_state = 151, .external_lex_state = 5},
- [4434] = {.lex_state = 151, .external_lex_state = 2},
- [4435] = {.lex_state = 151, .external_lex_state = 5},
- [4436] = {.lex_state = 151, .external_lex_state = 2},
- [4437] = {.lex_state = 151, .external_lex_state = 2},
- [4438] = {.lex_state = 20, .external_lex_state = 9},
- [4439] = {.lex_state = 151, .external_lex_state = 2},
- [4440] = {.lex_state = 30, .external_lex_state = 9},
- [4441] = {.lex_state = 151, .external_lex_state = 2},
- [4442] = {.lex_state = 151, .external_lex_state = 5},
- [4443] = {.lex_state = 20, .external_lex_state = 9},
- [4444] = {.lex_state = 151, .external_lex_state = 2},
- [4445] = {.lex_state = 151, .external_lex_state = 2},
- [4446] = {.lex_state = 151, .external_lex_state = 2},
- [4447] = {.lex_state = 18, .external_lex_state = 2},
- [4448] = {.lex_state = 151, .external_lex_state = 2},
- [4449] = {.lex_state = 28, .external_lex_state = 2},
- [4450] = {.lex_state = 13, .external_lex_state = 2},
- [4451] = {.lex_state = 30, .external_lex_state = 9},
- [4452] = {.lex_state = 151, .external_lex_state = 5},
- [4453] = {.lex_state = 5, .external_lex_state = 2},
- [4454] = {.lex_state = 20, .external_lex_state = 9},
- [4455] = {.lex_state = 151, .external_lex_state = 2},
- [4456] = {.lex_state = 151, .external_lex_state = 2},
- [4457] = {.lex_state = 20, .external_lex_state = 9},
- [4458] = {.lex_state = 151, .external_lex_state = 2},
- [4459] = {.lex_state = 30, .external_lex_state = 9},
- [4460] = {.lex_state = 13, .external_lex_state = 2},
- [4461] = {.lex_state = 151, .external_lex_state = 2},
- [4462] = {.lex_state = 151, .external_lex_state = 5},
- [4463] = {.lex_state = 20, .external_lex_state = 9},
- [4464] = {.lex_state = 151, .external_lex_state = 6},
- [4465] = {.lex_state = 30, .external_lex_state = 9},
- [4466] = {.lex_state = 151, .external_lex_state = 2},
- [4467] = {.lex_state = 151, .external_lex_state = 2},
- [4468] = {.lex_state = 151, .external_lex_state = 2},
- [4469] = {.lex_state = 151, .external_lex_state = 2},
- [4470] = {.lex_state = 151, .external_lex_state = 2},
- [4471] = {.lex_state = 5, .external_lex_state = 2},
- [4472] = {.lex_state = 13, .external_lex_state = 2},
- [4473] = {.lex_state = 5, .external_lex_state = 2},
- [4474] = {.lex_state = 5, .external_lex_state = 2},
- [4475] = {.lex_state = 151, .external_lex_state = 2},
- [4476] = {.lex_state = 151, .external_lex_state = 2},
- [4477] = {.lex_state = 151, .external_lex_state = 2},
- [4478] = {.lex_state = 13, .external_lex_state = 2},
- [4479] = {.lex_state = 13, .external_lex_state = 2},
- [4480] = {.lex_state = 20, .external_lex_state = 9},
- [4481] = {.lex_state = 151, .external_lex_state = 2},
- [4482] = {.lex_state = 151, .external_lex_state = 2},
- [4483] = {.lex_state = 151, .external_lex_state = 2},
- [4484] = {.lex_state = 13, .external_lex_state = 2},
- [4485] = {.lex_state = 151, .external_lex_state = 2},
- [4486] = {.lex_state = 20, .external_lex_state = 9},
- [4487] = {.lex_state = 13, .external_lex_state = 2},
- [4488] = {.lex_state = 18, .external_lex_state = 2},
- [4489] = {.lex_state = 13, .external_lex_state = 2},
- [4490] = {.lex_state = 28, .external_lex_state = 2},
- [4491] = {.lex_state = 13, .external_lex_state = 2},
- [4492] = {.lex_state = 13, .external_lex_state = 2},
- [4493] = {.lex_state = 30, .external_lex_state = 9},
- [4494] = {.lex_state = 151, .external_lex_state = 2},
- [4495] = {.lex_state = 13, .external_lex_state = 2},
- [4496] = {.lex_state = 151, .external_lex_state = 2},
- [4497] = {.lex_state = 151, .external_lex_state = 2},
- [4498] = {.lex_state = 151, .external_lex_state = 2},
- [4499] = {.lex_state = 151, .external_lex_state = 2},
- [4500] = {.lex_state = 151, .external_lex_state = 5},
- [4501] = {.lex_state = 151, .external_lex_state = 5},
- [4502] = {.lex_state = 151, .external_lex_state = 2},
- [4503] = {.lex_state = 30, .external_lex_state = 9},
- [4504] = {.lex_state = 20, .external_lex_state = 9},
- [4505] = {.lex_state = 30, .external_lex_state = 9},
- [4506] = {.lex_state = 151, .external_lex_state = 5},
- [4507] = {.lex_state = 30, .external_lex_state = 9},
- [4508] = {.lex_state = 20, .external_lex_state = 9},
- [4509] = {.lex_state = 30, .external_lex_state = 9},
- [4510] = {.lex_state = 151, .external_lex_state = 2},
- [4511] = {.lex_state = 151, .external_lex_state = 2},
- [4512] = {.lex_state = 30, .external_lex_state = 9},
- [4513] = {.lex_state = 151, .external_lex_state = 5},
- [4514] = {.lex_state = 151, .external_lex_state = 2},
- [4515] = {.lex_state = 13, .external_lex_state = 2},
- [4516] = {.lex_state = 151, .external_lex_state = 5},
- [4517] = {.lex_state = 13, .external_lex_state = 2},
- [4518] = {.lex_state = 20, .external_lex_state = 9},
- [4519] = {.lex_state = 13, .external_lex_state = 2},
- [4520] = {.lex_state = 24, .external_lex_state = 7},
- [4521] = {.lex_state = 151, .external_lex_state = 5},
- [4522] = {.lex_state = 18, .external_lex_state = 2},
- [4523] = {.lex_state = 28, .external_lex_state = 2},
- [4524] = {.lex_state = 13, .external_lex_state = 2},
- [4525] = {.lex_state = 151, .external_lex_state = 2},
- [4526] = {.lex_state = 151, .external_lex_state = 2},
- [4527] = {.lex_state = 151, .external_lex_state = 2},
- [4528] = {.lex_state = 5, .external_lex_state = 2},
- [4529] = {.lex_state = 13, .external_lex_state = 2},
- [4530] = {.lex_state = 13, .external_lex_state = 2},
- [4531] = {.lex_state = 151, .external_lex_state = 5},
- [4532] = {.lex_state = 151, .external_lex_state = 2},
- [4533] = {.lex_state = 151, .external_lex_state = 5},
- [4534] = {.lex_state = 151, .external_lex_state = 2},
- [4535] = {.lex_state = 151, .external_lex_state = 2},
- [4536] = {.lex_state = 151, .external_lex_state = 2},
- [4537] = {.lex_state = 151, .external_lex_state = 2},
- [4538] = {.lex_state = 20, .external_lex_state = 9},
- [4539] = {.lex_state = 30, .external_lex_state = 9},
- [4540] = {.lex_state = 151, .external_lex_state = 2},
- [4541] = {.lex_state = 151, .external_lex_state = 2},
- [4542] = {.lex_state = 151, .external_lex_state = 2},
- [4543] = {.lex_state = 13, .external_lex_state = 2},
- [4544] = {.lex_state = 151, .external_lex_state = 2},
- [4545] = {.lex_state = 151, .external_lex_state = 2},
- [4546] = {.lex_state = 151, .external_lex_state = 2},
- [4547] = {.lex_state = 20, .external_lex_state = 9},
- [4548] = {.lex_state = 151, .external_lex_state = 2},
- [4549] = {.lex_state = 151, .external_lex_state = 2},
- [4550] = {.lex_state = 151, .external_lex_state = 2},
- [4551] = {.lex_state = 151, .external_lex_state = 5},
- [4552] = {.lex_state = 30, .external_lex_state = 9},
- [4553] = {.lex_state = 151, .external_lex_state = 2},
- [4554] = {.lex_state = 13, .external_lex_state = 2},
- [4555] = {.lex_state = 13, .external_lex_state = 2},
- [4556] = {.lex_state = 151, .external_lex_state = 2},
- [4557] = {.lex_state = 151, .external_lex_state = 2},
- [4558] = {.lex_state = 30, .external_lex_state = 9},
- [4559] = {.lex_state = 24, .external_lex_state = 7},
- [4560] = {.lex_state = 151, .external_lex_state = 5},
- [4561] = {.lex_state = 151, .external_lex_state = 2},
- [4562] = {.lex_state = 151, .external_lex_state = 2},
- [4563] = {.lex_state = 151, .external_lex_state = 2},
- [4564] = {.lex_state = 151, .external_lex_state = 5},
- [4565] = {.lex_state = 151, .external_lex_state = 2},
- [4566] = {.lex_state = 151, .external_lex_state = 2},
- [4567] = {.lex_state = 151, .external_lex_state = 2},
- [4568] = {.lex_state = 151, .external_lex_state = 5},
- [4569] = {.lex_state = 151, .external_lex_state = 2},
- [4570] = {.lex_state = 151, .external_lex_state = 5},
- [4571] = {.lex_state = 151, .external_lex_state = 2},
- [4572] = {.lex_state = 151, .external_lex_state = 2},
- [4573] = {.lex_state = 151, .external_lex_state = 5},
- [4574] = {.lex_state = 151, .external_lex_state = 5},
- [4575] = {.lex_state = 151, .external_lex_state = 5},
- [4576] = {.lex_state = 151, .external_lex_state = 5},
- [4577] = {.lex_state = 151, .external_lex_state = 2},
- [4578] = {.lex_state = 151, .external_lex_state = 2},
- [4579] = {.lex_state = 151, .external_lex_state = 2},
- [4580] = {.lex_state = 151, .external_lex_state = 2},
- [4581] = {.lex_state = 151, .external_lex_state = 2},
- [4582] = {.lex_state = 151, .external_lex_state = 2},
- [4583] = {.lex_state = 151, .external_lex_state = 2},
- [4584] = {.lex_state = 151, .external_lex_state = 5},
- [4585] = {.lex_state = 151, .external_lex_state = 5},
- [4586] = {.lex_state = 151, .external_lex_state = 5},
- [4587] = {.lex_state = 151, .external_lex_state = 5},
- [4588] = {.lex_state = 151, .external_lex_state = 5},
- [4589] = {.lex_state = 151, .external_lex_state = 5},
- [4590] = {.lex_state = 5, .external_lex_state = 2},
- [4591] = {.lex_state = 151, .external_lex_state = 2},
- [4592] = {.lex_state = 151, .external_lex_state = 5},
- [4593] = {.lex_state = 151, .external_lex_state = 2},
- [4594] = {.lex_state = 151, .external_lex_state = 2},
- [4595] = {.lex_state = 151, .external_lex_state = 2},
- [4596] = {.lex_state = 151, .external_lex_state = 5},
- [4597] = {.lex_state = 151, .external_lex_state = 2},
- [4598] = {.lex_state = 151, .external_lex_state = 5},
- [4599] = {.lex_state = 151, .external_lex_state = 5},
- [4600] = {.lex_state = 151, .external_lex_state = 5},
- [4601] = {.lex_state = 151, .external_lex_state = 5},
- [4602] = {.lex_state = 151, .external_lex_state = 2},
- [4603] = {.lex_state = 151, .external_lex_state = 2},
- [4604] = {.lex_state = 151, .external_lex_state = 5},
- [4605] = {.lex_state = 151, .external_lex_state = 5},
- [4606] = {.lex_state = 151, .external_lex_state = 2},
- [4607] = {.lex_state = 151, .external_lex_state = 5},
- [4608] = {.lex_state = 151, .external_lex_state = 5},
- [4609] = {.lex_state = 151, .external_lex_state = 5},
- [4610] = {.lex_state = 151, .external_lex_state = 2},
- [4611] = {.lex_state = 151, .external_lex_state = 2},
- [4612] = {.lex_state = 151, .external_lex_state = 5},
- [4613] = {.lex_state = 151, .external_lex_state = 5},
- [4614] = {.lex_state = 151, .external_lex_state = 2},
- [4615] = {.lex_state = 151, .external_lex_state = 5},
- [4616] = {.lex_state = 151, .external_lex_state = 2},
- [4617] = {.lex_state = 151, .external_lex_state = 5},
- [4618] = {.lex_state = 151, .external_lex_state = 2},
- [4619] = {.lex_state = 151, .external_lex_state = 2},
- [4620] = {.lex_state = 151, .external_lex_state = 2},
- [4621] = {.lex_state = 151, .external_lex_state = 2},
- [4622] = {.lex_state = 151, .external_lex_state = 2},
- [4623] = {.lex_state = 151, .external_lex_state = 2},
- [4624] = {.lex_state = 151, .external_lex_state = 2},
- [4625] = {.lex_state = 151, .external_lex_state = 2},
- [4626] = {.lex_state = 151, .external_lex_state = 5},
- [4627] = {.lex_state = 151, .external_lex_state = 5},
- [4628] = {.lex_state = 151, .external_lex_state = 2},
- [4629] = {.lex_state = 151, .external_lex_state = 5},
- [4630] = {.lex_state = 151, .external_lex_state = 5},
- [4631] = {.lex_state = 151, .external_lex_state = 5},
- [4632] = {.lex_state = 151, .external_lex_state = 5},
- [4633] = {.lex_state = 151, .external_lex_state = 5},
- [4634] = {.lex_state = 151, .external_lex_state = 5},
- [4635] = {.lex_state = 151, .external_lex_state = 5},
- [4636] = {.lex_state = 151, .external_lex_state = 2},
- [4637] = {.lex_state = 151, .external_lex_state = 2},
- [4638] = {.lex_state = 151, .external_lex_state = 5},
- [4639] = {.lex_state = 151, .external_lex_state = 5},
- [4640] = {.lex_state = 151, .external_lex_state = 5},
- [4641] = {.lex_state = 151, .external_lex_state = 5},
- [4642] = {.lex_state = 151, .external_lex_state = 2},
- [4643] = {.lex_state = 151, .external_lex_state = 5},
- [4644] = {.lex_state = 151, .external_lex_state = 2},
- [4645] = {.lex_state = 151, .external_lex_state = 2},
- [4646] = {.lex_state = 151, .external_lex_state = 5},
- [4647] = {.lex_state = 5, .external_lex_state = 2},
- [4648] = {.lex_state = 151, .external_lex_state = 5},
- [4649] = {.lex_state = 151, .external_lex_state = 5},
- [4650] = {.lex_state = 151, .external_lex_state = 2},
- [4651] = {.lex_state = 151, .external_lex_state = 2},
- [4652] = {.lex_state = 151, .external_lex_state = 2},
- [4653] = {.lex_state = 151, .external_lex_state = 2},
- [4654] = {.lex_state = 151, .external_lex_state = 5},
- [4655] = {.lex_state = 151, .external_lex_state = 2},
- [4656] = {.lex_state = 151, .external_lex_state = 2},
- [4657] = {.lex_state = 151, .external_lex_state = 5},
- [4658] = {.lex_state = 151, .external_lex_state = 2},
- [4659] = {.lex_state = 151, .external_lex_state = 2},
- [4660] = {.lex_state = 151, .external_lex_state = 2},
- [4661] = {.lex_state = 151, .external_lex_state = 2},
- [4662] = {.lex_state = 151, .external_lex_state = 2},
- [4663] = {.lex_state = 151, .external_lex_state = 2},
- [4664] = {.lex_state = 151, .external_lex_state = 5},
- [4665] = {.lex_state = 151, .external_lex_state = 5},
- [4666] = {.lex_state = 151, .external_lex_state = 5},
- [4667] = {.lex_state = 151, .external_lex_state = 5},
- [4668] = {.lex_state = 151, .external_lex_state = 2},
- [4669] = {.lex_state = 151, .external_lex_state = 2},
- [4670] = {.lex_state = 151, .external_lex_state = 5},
- [4671] = {.lex_state = 151, .external_lex_state = 2},
- [4672] = {.lex_state = 151, .external_lex_state = 2},
- [4673] = {.lex_state = 151, .external_lex_state = 5},
- [4674] = {.lex_state = 151, .external_lex_state = 2},
- [4675] = {.lex_state = 151, .external_lex_state = 2},
- [4676] = {.lex_state = 151, .external_lex_state = 2},
- [4677] = {.lex_state = 151, .external_lex_state = 2},
- [4678] = {.lex_state = 151, .external_lex_state = 5},
- [4679] = {.lex_state = 2, .external_lex_state = 2},
- [4680] = {.lex_state = 151, .external_lex_state = 5},
- [4681] = {.lex_state = 151, .external_lex_state = 2},
- [4682] = {.lex_state = 151, .external_lex_state = 2},
- [4683] = {.lex_state = 151, .external_lex_state = 2},
- [4684] = {.lex_state = 151, .external_lex_state = 5},
- [4685] = {.lex_state = 151, .external_lex_state = 5},
- [4686] = {.lex_state = 151, .external_lex_state = 5},
- [4687] = {.lex_state = 151, .external_lex_state = 5},
- [4688] = {.lex_state = 151, .external_lex_state = 5},
- [4689] = {.lex_state = 151, .external_lex_state = 5},
- [4690] = {.lex_state = 151, .external_lex_state = 2},
- [4691] = {.lex_state = 151, .external_lex_state = 2},
- [4692] = {.lex_state = 151, .external_lex_state = 2},
- [4693] = {.lex_state = 151, .external_lex_state = 5},
- [4694] = {.lex_state = 151, .external_lex_state = 2},
- [4695] = {.lex_state = 151, .external_lex_state = 2},
- [4696] = {.lex_state = 151, .external_lex_state = 5},
- [4697] = {.lex_state = 151, .external_lex_state = 5},
- [4698] = {.lex_state = 151, .external_lex_state = 2},
- [4699] = {.lex_state = 151, .external_lex_state = 5},
- [4700] = {.lex_state = 151, .external_lex_state = 5},
- [4701] = {.lex_state = 151, .external_lex_state = 2},
- [4702] = {.lex_state = 151, .external_lex_state = 5},
- [4703] = {.lex_state = 151, .external_lex_state = 2},
- [4704] = {.lex_state = 151, .external_lex_state = 5},
- [4705] = {.lex_state = 151, .external_lex_state = 2},
- [4706] = {.lex_state = 151, .external_lex_state = 5},
- [4707] = {.lex_state = 151, .external_lex_state = 5},
- [4708] = {.lex_state = 151, .external_lex_state = 5},
- [4709] = {.lex_state = 151, .external_lex_state = 5},
- [4710] = {.lex_state = 151, .external_lex_state = 5},
- [4711] = {.lex_state = 151, .external_lex_state = 5},
- [4712] = {.lex_state = 151, .external_lex_state = 2},
- [4713] = {.lex_state = 151, .external_lex_state = 5},
- [4714] = {.lex_state = 151, .external_lex_state = 5},
- [4715] = {.lex_state = 151, .external_lex_state = 5},
- [4716] = {.lex_state = 151, .external_lex_state = 5},
- [4717] = {.lex_state = 151, .external_lex_state = 5},
- [4718] = {.lex_state = 151, .external_lex_state = 5},
- [4719] = {.lex_state = 151, .external_lex_state = 5},
- [4720] = {.lex_state = 151, .external_lex_state = 2},
- [4721] = {.lex_state = 151, .external_lex_state = 2},
- [4722] = {.lex_state = 151, .external_lex_state = 5},
- [4723] = {.lex_state = 2, .external_lex_state = 2},
- [4724] = {.lex_state = 151, .external_lex_state = 5},
- [4725] = {.lex_state = 151, .external_lex_state = 5},
- [4726] = {.lex_state = 151, .external_lex_state = 5},
- [4727] = {.lex_state = 151, .external_lex_state = 5},
- [4728] = {.lex_state = 151, .external_lex_state = 2},
- [4729] = {.lex_state = 151, .external_lex_state = 5},
- [4730] = {.lex_state = 151, .external_lex_state = 2},
- [4731] = {.lex_state = 151, .external_lex_state = 5},
- [4732] = {.lex_state = 151, .external_lex_state = 5},
- [4733] = {.lex_state = 151, .external_lex_state = 5},
- [4734] = {.lex_state = 151, .external_lex_state = 2},
- [4735] = {.lex_state = 151, .external_lex_state = 2},
- [4736] = {.lex_state = 151, .external_lex_state = 5},
- [4737] = {.lex_state = 151, .external_lex_state = 5},
- [4738] = {.lex_state = 151, .external_lex_state = 5},
- [4739] = {.lex_state = 151, .external_lex_state = 5},
- [4740] = {.lex_state = 151, .external_lex_state = 5},
- [4741] = {.lex_state = 151, .external_lex_state = 5},
- [4742] = {.lex_state = 151, .external_lex_state = 2},
- [4743] = {.lex_state = 151, .external_lex_state = 5},
- [4744] = {.lex_state = 151, .external_lex_state = 2},
- [4745] = {.lex_state = 151, .external_lex_state = 5},
- [4746] = {.lex_state = 151, .external_lex_state = 2},
- [4747] = {.lex_state = 151, .external_lex_state = 5},
- [4748] = {.lex_state = 151, .external_lex_state = 5},
- [4749] = {.lex_state = 151, .external_lex_state = 5},
- [4750] = {.lex_state = 151, .external_lex_state = 5},
- [4751] = {.lex_state = 151, .external_lex_state = 2},
- [4752] = {.lex_state = 151, .external_lex_state = 5},
- [4753] = {.lex_state = 151, .external_lex_state = 2},
- [4754] = {.lex_state = 151, .external_lex_state = 5},
- [4755] = {.lex_state = 151, .external_lex_state = 5},
- [4756] = {.lex_state = 151, .external_lex_state = 5},
- [4757] = {.lex_state = 151, .external_lex_state = 5},
- [4758] = {.lex_state = 151, .external_lex_state = 5},
- [4759] = {.lex_state = 151, .external_lex_state = 2},
- [4760] = {.lex_state = 151, .external_lex_state = 5},
- [4761] = {.lex_state = 5, .external_lex_state = 2},
- [4762] = {.lex_state = 151, .external_lex_state = 5},
- [4763] = {.lex_state = 151, .external_lex_state = 5},
- [4764] = {.lex_state = 151, .external_lex_state = 5},
- [4765] = {.lex_state = 151, .external_lex_state = 5},
- [4766] = {.lex_state = 5, .external_lex_state = 2},
- [4767] = {.lex_state = 151, .external_lex_state = 5},
- [4768] = {.lex_state = 151, .external_lex_state = 5},
- [4769] = {.lex_state = 151, .external_lex_state = 5},
- [4770] = {.lex_state = 151, .external_lex_state = 2},
- [4771] = {.lex_state = 151, .external_lex_state = 2},
- [4772] = {.lex_state = 151, .external_lex_state = 2},
- [4773] = {.lex_state = 151, .external_lex_state = 5},
- [4774] = {.lex_state = 151, .external_lex_state = 5},
- [4775] = {.lex_state = 151, .external_lex_state = 5},
- [4776] = {.lex_state = 151, .external_lex_state = 5},
- [4777] = {.lex_state = 151, .external_lex_state = 5},
- [4778] = {.lex_state = 151, .external_lex_state = 5},
- [4779] = {.lex_state = 151, .external_lex_state = 2},
- [4780] = {.lex_state = 151, .external_lex_state = 5},
- [4781] = {.lex_state = 151, .external_lex_state = 2},
- [4782] = {.lex_state = 151, .external_lex_state = 5},
- [4783] = {.lex_state = 151, .external_lex_state = 5},
- [4784] = {.lex_state = 151, .external_lex_state = 5},
- [4785] = {.lex_state = 151, .external_lex_state = 5},
- [4786] = {.lex_state = 151, .external_lex_state = 5},
- [4787] = {.lex_state = 151, .external_lex_state = 5},
- [4788] = {.lex_state = 151, .external_lex_state = 5},
- [4789] = {.lex_state = 151, .external_lex_state = 5},
- [4790] = {.lex_state = 151, .external_lex_state = 5},
- [4791] = {.lex_state = 151, .external_lex_state = 2},
- [4792] = {.lex_state = 151, .external_lex_state = 5},
- [4793] = {.lex_state = 151, .external_lex_state = 5},
- [4794] = {.lex_state = 151, .external_lex_state = 5},
- [4795] = {.lex_state = 151, .external_lex_state = 5},
- [4796] = {.lex_state = 151, .external_lex_state = 5},
- [4797] = {.lex_state = 151, .external_lex_state = 5},
- [4798] = {.lex_state = 151, .external_lex_state = 5},
- [4799] = {.lex_state = 151, .external_lex_state = 2},
- [4800] = {.lex_state = 151, .external_lex_state = 5},
- [4801] = {.lex_state = 151, .external_lex_state = 5},
- [4802] = {.lex_state = 151, .external_lex_state = 5},
- [4803] = {.lex_state = 151, .external_lex_state = 2},
- [4804] = {.lex_state = 151, .external_lex_state = 5},
- [4805] = {.lex_state = 151, .external_lex_state = 5},
- [4806] = {.lex_state = 151, .external_lex_state = 5},
- [4807] = {.lex_state = 151, .external_lex_state = 5},
- [4808] = {.lex_state = 151, .external_lex_state = 5},
- [4809] = {.lex_state = 151, .external_lex_state = 5},
- [4810] = {.lex_state = 151, .external_lex_state = 5},
- [4811] = {.lex_state = 151, .external_lex_state = 5},
- [4812] = {.lex_state = 151, .external_lex_state = 2},
- [4813] = {.lex_state = 151, .external_lex_state = 5},
- [4814] = {.lex_state = 151, .external_lex_state = 5},
- [4815] = {.lex_state = 151, .external_lex_state = 5},
- [4816] = {.lex_state = 151, .external_lex_state = 5},
- [4817] = {.lex_state = 151, .external_lex_state = 5},
- [4818] = {.lex_state = 5, .external_lex_state = 2},
- [4819] = {.lex_state = 151, .external_lex_state = 5},
- [4820] = {.lex_state = 151, .external_lex_state = 2},
- [4821] = {.lex_state = 151, .external_lex_state = 2},
- [4822] = {.lex_state = 151, .external_lex_state = 5},
- [4823] = {.lex_state = 151, .external_lex_state = 2},
- [4824] = {.lex_state = 151, .external_lex_state = 2},
- [4825] = {.lex_state = 151, .external_lex_state = 5},
- [4826] = {.lex_state = 151, .external_lex_state = 5},
- [4827] = {.lex_state = 151, .external_lex_state = 5},
- [4828] = {.lex_state = 151, .external_lex_state = 2},
- [4829] = {.lex_state = 2, .external_lex_state = 2},
- [4830] = {.lex_state = 151, .external_lex_state = 2},
- [4831] = {.lex_state = 151, .external_lex_state = 2},
- [4832] = {.lex_state = 151, .external_lex_state = 2},
- [4833] = {.lex_state = 151, .external_lex_state = 5},
- [4834] = {.lex_state = 151, .external_lex_state = 2},
- [4835] = {.lex_state = 151, .external_lex_state = 2},
- [4836] = {.lex_state = 151, .external_lex_state = 5},
- [4837] = {.lex_state = 151, .external_lex_state = 5},
- [4838] = {.lex_state = 151, .external_lex_state = 2},
- [4839] = {.lex_state = 151, .external_lex_state = 2},
- [4840] = {.lex_state = 151, .external_lex_state = 5},
- [4841] = {.lex_state = 151, .external_lex_state = 5},
- [4842] = {.lex_state = 151, .external_lex_state = 5},
- [4843] = {.lex_state = 151, .external_lex_state = 5},
- [4844] = {.lex_state = 151, .external_lex_state = 5},
- [4845] = {.lex_state = 151, .external_lex_state = 5},
- [4846] = {.lex_state = 151, .external_lex_state = 5},
- [4847] = {.lex_state = 151, .external_lex_state = 5},
- [4848] = {.lex_state = 151, .external_lex_state = 2},
- [4849] = {.lex_state = 151, .external_lex_state = 5},
- [4850] = {.lex_state = 151, .external_lex_state = 5},
- [4851] = {.lex_state = 151, .external_lex_state = 5},
- [4852] = {.lex_state = 151, .external_lex_state = 5},
- [4853] = {.lex_state = 151, .external_lex_state = 5},
- [4854] = {.lex_state = 151, .external_lex_state = 5},
- [4855] = {.lex_state = 151, .external_lex_state = 5},
- [4856] = {.lex_state = 151, .external_lex_state = 5},
- [4857] = {.lex_state = 151, .external_lex_state = 2},
- [4858] = {.lex_state = 151, .external_lex_state = 2},
- [4859] = {.lex_state = 151, .external_lex_state = 5},
- [4860] = {.lex_state = 151, .external_lex_state = 5},
- [4861] = {.lex_state = 151, .external_lex_state = 2},
- [4862] = {.lex_state = 151, .external_lex_state = 5},
- [4863] = {.lex_state = 151, .external_lex_state = 5},
- [4864] = {.lex_state = 151, .external_lex_state = 5},
- [4865] = {.lex_state = 151, .external_lex_state = 5},
- [4866] = {.lex_state = 151, .external_lex_state = 5},
- [4867] = {.lex_state = 151, .external_lex_state = 5},
- [4868] = {.lex_state = 151, .external_lex_state = 5},
- [4869] = {.lex_state = 151, .external_lex_state = 5},
- [4870] = {.lex_state = 151, .external_lex_state = 5},
- [4871] = {.lex_state = 151, .external_lex_state = 5},
- [4872] = {.lex_state = 151, .external_lex_state = 2},
- [4873] = {.lex_state = 151, .external_lex_state = 5},
- [4874] = {.lex_state = 151, .external_lex_state = 5},
- [4875] = {.lex_state = 151, .external_lex_state = 5},
- [4876] = {.lex_state = 151, .external_lex_state = 5},
- [4877] = {.lex_state = 151, .external_lex_state = 5},
- [4878] = {.lex_state = 151, .external_lex_state = 5},
- [4879] = {.lex_state = 151, .external_lex_state = 5},
- [4880] = {.lex_state = 151, .external_lex_state = 5},
- [4881] = {.lex_state = 151, .external_lex_state = 5},
- [4882] = {.lex_state = 151, .external_lex_state = 5},
- [4883] = {.lex_state = 151, .external_lex_state = 5},
- [4884] = {.lex_state = 151, .external_lex_state = 5},
- [4885] = {.lex_state = 151, .external_lex_state = 5},
- [4886] = {.lex_state = 151, .external_lex_state = 5},
- [4887] = {.lex_state = 151, .external_lex_state = 2},
- [4888] = {.lex_state = 151, .external_lex_state = 2},
- [4889] = {.lex_state = 151, .external_lex_state = 2},
- [4890] = {.lex_state = 151, .external_lex_state = 2},
- [4891] = {.lex_state = 151, .external_lex_state = 5},
- [4892] = {.lex_state = 151, .external_lex_state = 2},
- [4893] = {.lex_state = 151, .external_lex_state = 2},
- [4894] = {.lex_state = 151, .external_lex_state = 5},
- [4895] = {.lex_state = 151, .external_lex_state = 2},
- [4896] = {.lex_state = 151, .external_lex_state = 5},
- [4897] = {.lex_state = 151, .external_lex_state = 2},
- [4898] = {.lex_state = 151, .external_lex_state = 2},
- [4899] = {.lex_state = 151, .external_lex_state = 5},
- [4900] = {.lex_state = 151, .external_lex_state = 5},
- [4901] = {.lex_state = 151, .external_lex_state = 5},
- [4902] = {.lex_state = 151, .external_lex_state = 5},
- [4903] = {.lex_state = 151, .external_lex_state = 2},
- [4904] = {.lex_state = 151, .external_lex_state = 5},
- [4905] = {.lex_state = 151, .external_lex_state = 5},
- [4906] = {.lex_state = 151, .external_lex_state = 2},
- [4907] = {.lex_state = 151, .external_lex_state = 2},
- [4908] = {.lex_state = 151, .external_lex_state = 5},
- [4909] = {.lex_state = 151, .external_lex_state = 5},
- [4910] = {.lex_state = 151, .external_lex_state = 5},
- [4911] = {.lex_state = 151, .external_lex_state = 5},
- [4912] = {.lex_state = 151, .external_lex_state = 2},
- [4913] = {.lex_state = 151, .external_lex_state = 5},
- [4914] = {.lex_state = 151, .external_lex_state = 5},
- [4915] = {.lex_state = 151, .external_lex_state = 5},
- [4916] = {.lex_state = 151, .external_lex_state = 5},
- [4917] = {.lex_state = 151, .external_lex_state = 5},
- [4918] = {.lex_state = 151, .external_lex_state = 5},
- [4919] = {.lex_state = 151, .external_lex_state = 2},
- [4920] = {.lex_state = 151, .external_lex_state = 5},
- [4921] = {.lex_state = 151, .external_lex_state = 2},
- [4922] = {.lex_state = 151, .external_lex_state = 5},
- [4923] = {.lex_state = 151, .external_lex_state = 2},
- [4924] = {.lex_state = 151, .external_lex_state = 5},
- [4925] = {.lex_state = 2, .external_lex_state = 2},
- [4926] = {.lex_state = 151, .external_lex_state = 5},
- [4927] = {.lex_state = 151, .external_lex_state = 5},
- [4928] = {.lex_state = 151, .external_lex_state = 5},
- [4929] = {.lex_state = 151, .external_lex_state = 5},
- [4930] = {.lex_state = 151, .external_lex_state = 5},
- [4931] = {.lex_state = 151, .external_lex_state = 5},
- [4932] = {.lex_state = 151, .external_lex_state = 5},
- [4933] = {.lex_state = 151, .external_lex_state = 5},
- [4934] = {.lex_state = 151, .external_lex_state = 5},
- [4935] = {.lex_state = 151, .external_lex_state = 5},
- [4936] = {.lex_state = 151, .external_lex_state = 5},
- [4937] = {.lex_state = 151, .external_lex_state = 5},
- [4938] = {.lex_state = 151, .external_lex_state = 2},
- [4939] = {.lex_state = 151, .external_lex_state = 5},
- [4940] = {.lex_state = 5, .external_lex_state = 2},
- [4941] = {.lex_state = 151, .external_lex_state = 2},
- [4942] = {.lex_state = 151, .external_lex_state = 5},
- [4943] = {.lex_state = 151, .external_lex_state = 5},
- [4944] = {.lex_state = 151, .external_lex_state = 5},
- [4945] = {.lex_state = 5, .external_lex_state = 2},
- [4946] = {.lex_state = 151, .external_lex_state = 5},
- [4947] = {.lex_state = 151, .external_lex_state = 5},
- [4948] = {.lex_state = 151, .external_lex_state = 5},
- [4949] = {.lex_state = 151, .external_lex_state = 5},
- [4950] = {.lex_state = 151, .external_lex_state = 5},
- [4951] = {.lex_state = 151, .external_lex_state = 2},
- [4952] = {.lex_state = 151, .external_lex_state = 5},
- [4953] = {.lex_state = 151, .external_lex_state = 5},
- [4954] = {.lex_state = 13, .external_lex_state = 2},
- [4955] = {.lex_state = 151, .external_lex_state = 5},
- [4956] = {.lex_state = 151, .external_lex_state = 5},
- [4957] = {.lex_state = 151, .external_lex_state = 5},
- [4958] = {.lex_state = 151, .external_lex_state = 5},
- [4959] = {.lex_state = 151, .external_lex_state = 5},
- [4960] = {.lex_state = 151, .external_lex_state = 5},
- [4961] = {.lex_state = 151, .external_lex_state = 5},
- [4962] = {.lex_state = 151, .external_lex_state = 5},
- [4963] = {.lex_state = 151, .external_lex_state = 2},
- [4964] = {.lex_state = 151, .external_lex_state = 5},
- [4965] = {.lex_state = 151, .external_lex_state = 5},
- [4966] = {.lex_state = 151, .external_lex_state = 5},
- [4967] = {.lex_state = 151, .external_lex_state = 5},
- [4968] = {.lex_state = 151, .external_lex_state = 5},
- [4969] = {.lex_state = 151, .external_lex_state = 5},
- [4970] = {.lex_state = 151, .external_lex_state = 5},
- [4971] = {.lex_state = 151, .external_lex_state = 5},
- [4972] = {.lex_state = 151, .external_lex_state = 5},
- [4973] = {.lex_state = 151, .external_lex_state = 5},
- [4974] = {.lex_state = 151, .external_lex_state = 5},
- [4975] = {.lex_state = 151, .external_lex_state = 5},
- [4976] = {.lex_state = 151, .external_lex_state = 5},
- [4977] = {.lex_state = 151, .external_lex_state = 5},
- [4978] = {.lex_state = 151, .external_lex_state = 5},
- [4979] = {.lex_state = 151, .external_lex_state = 2},
- [4980] = {.lex_state = 151, .external_lex_state = 5},
- [4981] = {.lex_state = 151, .external_lex_state = 5},
- [4982] = {.lex_state = 151, .external_lex_state = 5},
- [4983] = {.lex_state = 151, .external_lex_state = 5},
- [4984] = {.lex_state = 151, .external_lex_state = 5},
- [4985] = {.lex_state = 151, .external_lex_state = 5},
- [4986] = {.lex_state = 151, .external_lex_state = 5},
- [4987] = {.lex_state = 151, .external_lex_state = 5},
- [4988] = {.lex_state = 151, .external_lex_state = 5},
- [4989] = {.lex_state = 151, .external_lex_state = 5},
- [4990] = {.lex_state = 151, .external_lex_state = 5},
- [4991] = {.lex_state = 151, .external_lex_state = 5},
- [4992] = {.lex_state = 151, .external_lex_state = 5},
- [4993] = {.lex_state = 151, .external_lex_state = 5},
- [4994] = {.lex_state = 151, .external_lex_state = 5},
- [4995] = {.lex_state = 151, .external_lex_state = 5},
- [4996] = {.lex_state = 151, .external_lex_state = 5},
- [4997] = {.lex_state = 151, .external_lex_state = 5},
- [4998] = {.lex_state = 151, .external_lex_state = 5},
- [4999] = {.lex_state = 151, .external_lex_state = 5},
- [5000] = {.lex_state = 151, .external_lex_state = 5},
- [5001] = {.lex_state = 151, .external_lex_state = 5},
- [5002] = {.lex_state = 151, .external_lex_state = 5},
- [5003] = {.lex_state = 151, .external_lex_state = 5},
- [5004] = {.lex_state = 151, .external_lex_state = 5},
- [5005] = {.lex_state = 151, .external_lex_state = 5},
- [5006] = {.lex_state = 151, .external_lex_state = 5},
- [5007] = {.lex_state = 151, .external_lex_state = 5},
- [5008] = {.lex_state = 151, .external_lex_state = 5},
- [5009] = {.lex_state = 151, .external_lex_state = 5},
- [5010] = {.lex_state = 151, .external_lex_state = 5},
- [5011] = {.lex_state = 151, .external_lex_state = 5},
- [5012] = {.lex_state = 151, .external_lex_state = 5},
- [5013] = {.lex_state = 151, .external_lex_state = 5},
- [5014] = {.lex_state = 151, .external_lex_state = 5},
- [5015] = {.lex_state = 151, .external_lex_state = 5},
- [5016] = {.lex_state = 151, .external_lex_state = 5},
- [5017] = {.lex_state = 151, .external_lex_state = 5},
- [5018] = {.lex_state = 151, .external_lex_state = 5},
- [5019] = {.lex_state = 151, .external_lex_state = 5},
- [5020] = {.lex_state = 151, .external_lex_state = 2},
- [5021] = {.lex_state = 151, .external_lex_state = 5},
- [5022] = {.lex_state = 151, .external_lex_state = 2},
- [5023] = {.lex_state = 151, .external_lex_state = 5},
- [5024] = {.lex_state = 151, .external_lex_state = 5},
- [5025] = {.lex_state = 5, .external_lex_state = 2},
- [5026] = {.lex_state = 151, .external_lex_state = 5},
- [5027] = {.lex_state = 151, .external_lex_state = 5},
- [5028] = {.lex_state = 151, .external_lex_state = 5},
- [5029] = {.lex_state = 151, .external_lex_state = 5},
- [5030] = {.lex_state = 151, .external_lex_state = 2},
- [5031] = {.lex_state = 151, .external_lex_state = 5},
- [5032] = {.lex_state = 151, .external_lex_state = 2},
- [5033] = {.lex_state = 151, .external_lex_state = 5},
- [5034] = {.lex_state = 151, .external_lex_state = 5},
- [5035] = {.lex_state = 151, .external_lex_state = 5},
- [5036] = {.lex_state = 151, .external_lex_state = 5},
- [5037] = {.lex_state = 151, .external_lex_state = 2},
- [5038] = {.lex_state = 151, .external_lex_state = 5},
- [5039] = {.lex_state = 13, .external_lex_state = 2},
- [5040] = {.lex_state = 151, .external_lex_state = 5},
- [5041] = {.lex_state = 151, .external_lex_state = 5},
- [5042] = {.lex_state = 151, .external_lex_state = 5},
- [5043] = {.lex_state = 151, .external_lex_state = 5},
- [5044] = {.lex_state = 151, .external_lex_state = 5},
- [5045] = {.lex_state = 151, .external_lex_state = 5},
- [5046] = {.lex_state = 151, .external_lex_state = 5},
- [5047] = {.lex_state = 151, .external_lex_state = 5},
- [5048] = {.lex_state = 151, .external_lex_state = 5},
- [5049] = {.lex_state = 151, .external_lex_state = 2},
- [5050] = {.lex_state = 151, .external_lex_state = 5},
- [5051] = {.lex_state = 151, .external_lex_state = 5},
- [5052] = {.lex_state = 151, .external_lex_state = 5},
- [5053] = {.lex_state = 151, .external_lex_state = 5},
- [5054] = {.lex_state = 151, .external_lex_state = 5},
- [5055] = {.lex_state = 151, .external_lex_state = 5},
- [5056] = {.lex_state = 151, .external_lex_state = 5},
- [5057] = {.lex_state = 151, .external_lex_state = 5},
- [5058] = {.lex_state = 151, .external_lex_state = 5},
- [5059] = {.lex_state = 151, .external_lex_state = 5},
- [5060] = {.lex_state = 151, .external_lex_state = 2},
- [5061] = {.lex_state = 151, .external_lex_state = 5},
- [5062] = {.lex_state = 151, .external_lex_state = 5},
- [5063] = {.lex_state = 151, .external_lex_state = 5},
- [5064] = {.lex_state = 151, .external_lex_state = 5},
- [5065] = {.lex_state = 151, .external_lex_state = 5},
- [5066] = {.lex_state = 151, .external_lex_state = 5},
- [5067] = {.lex_state = 151, .external_lex_state = 5},
- [5068] = {.lex_state = 151, .external_lex_state = 5},
- [5069] = {.lex_state = 151, .external_lex_state = 2},
- [5070] = {.lex_state = 151, .external_lex_state = 2},
- [5071] = {.lex_state = 151, .external_lex_state = 2},
- [5072] = {.lex_state = 151, .external_lex_state = 5},
- [5073] = {.lex_state = 151, .external_lex_state = 2},
- [5074] = {.lex_state = 151, .external_lex_state = 5},
- [5075] = {.lex_state = 151, .external_lex_state = 5},
- [5076] = {.lex_state = 151, .external_lex_state = 2},
- [5077] = {.lex_state = 151, .external_lex_state = 5},
- [5078] = {.lex_state = 151, .external_lex_state = 5},
- [5079] = {.lex_state = 151, .external_lex_state = 5},
- [5080] = {.lex_state = 151, .external_lex_state = 2},
- [5081] = {.lex_state = 151, .external_lex_state = 2},
- [5082] = {.lex_state = 5, .external_lex_state = 2},
- [5083] = {.lex_state = 151, .external_lex_state = 5},
- [5084] = {.lex_state = 151, .external_lex_state = 5},
- [5085] = {.lex_state = 151, .external_lex_state = 5},
- [5086] = {.lex_state = 151, .external_lex_state = 2},
- [5087] = {.lex_state = 151, .external_lex_state = 2},
- [5088] = {.lex_state = 151, .external_lex_state = 5},
- [5089] = {.lex_state = 151, .external_lex_state = 2},
- [5090] = {.lex_state = 151, .external_lex_state = 5},
- [5091] = {.lex_state = 151, .external_lex_state = 5},
- [5092] = {.lex_state = 151, .external_lex_state = 2},
- [5093] = {.lex_state = 151, .external_lex_state = 5},
- [5094] = {.lex_state = 5, .external_lex_state = 2},
- [5095] = {.lex_state = 151, .external_lex_state = 5},
- [5096] = {.lex_state = 151, .external_lex_state = 5},
- [5097] = {.lex_state = 151, .external_lex_state = 5},
- [5098] = {.lex_state = 5, .external_lex_state = 2},
- [5099] = {.lex_state = 151, .external_lex_state = 5},
- [5100] = {.lex_state = 151, .external_lex_state = 5},
- [5101] = {.lex_state = 151, .external_lex_state = 2},
- [5102] = {.lex_state = 24, .external_lex_state = 8},
- [5103] = {.lex_state = 151, .external_lex_state = 5},
- [5104] = {.lex_state = 151, .external_lex_state = 5},
- [5105] = {.lex_state = 151, .external_lex_state = 5},
- [5106] = {.lex_state = 151, .external_lex_state = 5},
- [5107] = {.lex_state = 151, .external_lex_state = 5},
- [5108] = {.lex_state = 151, .external_lex_state = 5},
- [5109] = {.lex_state = 151, .external_lex_state = 5},
- [5110] = {.lex_state = 5, .external_lex_state = 2},
- [5111] = {.lex_state = 151, .external_lex_state = 5},
- [5112] = {.lex_state = 151, .external_lex_state = 5},
- [5113] = {.lex_state = 151, .external_lex_state = 5},
- [5114] = {.lex_state = 151, .external_lex_state = 5},
- [5115] = {.lex_state = 151, .external_lex_state = 5},
- [5116] = {.lex_state = 151, .external_lex_state = 2},
- [5117] = {.lex_state = 151, .external_lex_state = 5},
- [5118] = {.lex_state = 151, .external_lex_state = 5},
- [5119] = {.lex_state = 151, .external_lex_state = 5},
- [5120] = {.lex_state = 151, .external_lex_state = 5},
- [5121] = {.lex_state = 151, .external_lex_state = 5},
- [5122] = {.lex_state = 151, .external_lex_state = 5},
- [5123] = {.lex_state = 151, .external_lex_state = 5},
- [5124] = {.lex_state = 151, .external_lex_state = 2},
- [5125] = {.lex_state = 151, .external_lex_state = 5},
- [5126] = {.lex_state = 151, .external_lex_state = 2},
- [5127] = {.lex_state = 151, .external_lex_state = 5},
- [5128] = {.lex_state = 151, .external_lex_state = 2},
- [5129] = {.lex_state = 151, .external_lex_state = 2},
- [5130] = {.lex_state = 151, .external_lex_state = 2},
- [5131] = {.lex_state = 151, .external_lex_state = 5},
- [5132] = {.lex_state = 151, .external_lex_state = 5},
- [5133] = {.lex_state = 5, .external_lex_state = 2},
- [5134] = {.lex_state = 151, .external_lex_state = 2},
- [5135] = {.lex_state = 151, .external_lex_state = 5},
- [5136] = {.lex_state = 151, .external_lex_state = 2},
- [5137] = {.lex_state = 151, .external_lex_state = 5},
- [5138] = {.lex_state = 151, .external_lex_state = 5},
- [5139] = {.lex_state = 151, .external_lex_state = 2},
- [5140] = {.lex_state = 151, .external_lex_state = 5},
- [5141] = {.lex_state = 151, .external_lex_state = 2},
- [5142] = {.lex_state = 151, .external_lex_state = 5},
- [5143] = {.lex_state = 151, .external_lex_state = 5},
- [5144] = {.lex_state = 151, .external_lex_state = 2},
- [5145] = {.lex_state = 151, .external_lex_state = 5},
- [5146] = {.lex_state = 151, .external_lex_state = 5},
- [5147] = {.lex_state = 151, .external_lex_state = 5},
- [5148] = {.lex_state = 151, .external_lex_state = 2},
- [5149] = {.lex_state = 151, .external_lex_state = 5},
- [5150] = {.lex_state = 151, .external_lex_state = 2},
- [5151] = {.lex_state = 151, .external_lex_state = 2},
- [5152] = {.lex_state = 151, .external_lex_state = 2},
- [5153] = {.lex_state = 151, .external_lex_state = 2},
- [5154] = {.lex_state = 151, .external_lex_state = 2},
- [5155] = {.lex_state = 151, .external_lex_state = 2},
- [5156] = {.lex_state = 151, .external_lex_state = 2},
- [5157] = {.lex_state = 151, .external_lex_state = 2},
- [5158] = {.lex_state = 151, .external_lex_state = 2},
- [5159] = {.lex_state = 151, .external_lex_state = 5},
- [5160] = {.lex_state = 151, .external_lex_state = 5},
- [5161] = {.lex_state = 151, .external_lex_state = 5},
- [5162] = {.lex_state = 151, .external_lex_state = 5},
- [5163] = {.lex_state = 151, .external_lex_state = 5},
- [5164] = {.lex_state = 151, .external_lex_state = 5},
- [5165] = {.lex_state = 151, .external_lex_state = 2},
- [5166] = {.lex_state = 151, .external_lex_state = 2},
- [5167] = {.lex_state = 151, .external_lex_state = 5},
- [5168] = {.lex_state = 151, .external_lex_state = 5},
- [5169] = {.lex_state = 151, .external_lex_state = 5},
- [5170] = {.lex_state = 151, .external_lex_state = 2},
- [5171] = {.lex_state = 151, .external_lex_state = 2},
- [5172] = {.lex_state = 151, .external_lex_state = 5},
- [5173] = {.lex_state = 151, .external_lex_state = 5},
- [5174] = {.lex_state = 151, .external_lex_state = 5},
- [5175] = {.lex_state = 151, .external_lex_state = 5},
- [5176] = {.lex_state = 2, .external_lex_state = 2},
- [5177] = {.lex_state = 151, .external_lex_state = 5},
- [5178] = {.lex_state = 151, .external_lex_state = 5},
- [5179] = {.lex_state = 151, .external_lex_state = 5},
- [5180] = {.lex_state = 151, .external_lex_state = 5},
- [5181] = {.lex_state = 151, .external_lex_state = 5},
- [5182] = {.lex_state = 151, .external_lex_state = 5},
- [5183] = {.lex_state = 151, .external_lex_state = 2},
- [5184] = {.lex_state = 151, .external_lex_state = 2},
- [5185] = {.lex_state = 151, .external_lex_state = 2},
- [5186] = {.lex_state = 151, .external_lex_state = 2},
- [5187] = {.lex_state = 151, .external_lex_state = 2},
- [5188] = {.lex_state = 151, .external_lex_state = 2},
- [5189] = {.lex_state = 151, .external_lex_state = 2},
- [5190] = {.lex_state = 151, .external_lex_state = 2},
- [5191] = {.lex_state = 151, .external_lex_state = 2},
- [5192] = {.lex_state = 151, .external_lex_state = 2},
- [5193] = {.lex_state = 151, .external_lex_state = 2},
- [5194] = {.lex_state = 151, .external_lex_state = 2},
- [5195] = {.lex_state = 151, .external_lex_state = 2},
- [5196] = {.lex_state = 151, .external_lex_state = 2},
- [5197] = {.lex_state = 151, .external_lex_state = 2},
- [5198] = {.lex_state = 151, .external_lex_state = 2},
- [5199] = {.lex_state = 151, .external_lex_state = 2},
- [5200] = {.lex_state = 151, .external_lex_state = 2},
- [5201] = {.lex_state = 151, .external_lex_state = 2},
- [5202] = {.lex_state = 151, .external_lex_state = 2},
- [5203] = {.lex_state = 151, .external_lex_state = 2},
- [5204] = {.lex_state = 151, .external_lex_state = 2},
- [5205] = {.lex_state = 151, .external_lex_state = 2},
- [5206] = {.lex_state = 151, .external_lex_state = 2},
- [5207] = {.lex_state = 151, .external_lex_state = 2},
- [5208] = {.lex_state = 151, .external_lex_state = 2},
- [5209] = {.lex_state = 151, .external_lex_state = 2},
- [5210] = {.lex_state = 151, .external_lex_state = 2},
- [5211] = {.lex_state = 151, .external_lex_state = 5},
- [5212] = {.lex_state = 151, .external_lex_state = 2},
- [5213] = {.lex_state = 151, .external_lex_state = 2},
- [5214] = {.lex_state = 151, .external_lex_state = 2},
- [5215] = {.lex_state = 151, .external_lex_state = 2},
- [5216] = {.lex_state = 151, .external_lex_state = 2},
- [5217] = {.lex_state = 151, .external_lex_state = 2},
- [5218] = {.lex_state = 151, .external_lex_state = 5},
- [5219] = {.lex_state = 151, .external_lex_state = 2},
- [5220] = {.lex_state = 151, .external_lex_state = 2},
- [5221] = {.lex_state = 151, .external_lex_state = 2},
- [5222] = {.lex_state = 151, .external_lex_state = 5},
- [5223] = {.lex_state = 151, .external_lex_state = 2},
- [5224] = {.lex_state = 151, .external_lex_state = 2},
- [5225] = {.lex_state = 151, .external_lex_state = 2},
- [5226] = {.lex_state = 151, .external_lex_state = 2},
- [5227] = {.lex_state = 151, .external_lex_state = 2},
- [5228] = {.lex_state = 151, .external_lex_state = 2},
- [5229] = {.lex_state = 151, .external_lex_state = 2},
- [5230] = {.lex_state = 151, .external_lex_state = 2},
- [5231] = {.lex_state = 151, .external_lex_state = 2},
- [5232] = {.lex_state = 151, .external_lex_state = 2},
- [5233] = {.lex_state = 151, .external_lex_state = 2},
- [5234] = {.lex_state = 151, .external_lex_state = 2},
- [5235] = {.lex_state = 151, .external_lex_state = 2},
- [5236] = {.lex_state = 151, .external_lex_state = 2},
- [5237] = {.lex_state = 151, .external_lex_state = 2},
- [5238] = {.lex_state = 151, .external_lex_state = 2},
- [5239] = {.lex_state = 151, .external_lex_state = 2},
- [5240] = {.lex_state = 151, .external_lex_state = 2},
- [5241] = {.lex_state = 151, .external_lex_state = 2},
- [5242] = {.lex_state = 151, .external_lex_state = 2},
- [5243] = {.lex_state = 151, .external_lex_state = 2},
- [5244] = {.lex_state = 151, .external_lex_state = 2},
- [5245] = {.lex_state = 151, .external_lex_state = 2},
- [5246] = {.lex_state = 151, .external_lex_state = 2},
- [5247] = {.lex_state = 151, .external_lex_state = 2},
- [5248] = {.lex_state = 151, .external_lex_state = 2},
- [5249] = {.lex_state = 151, .external_lex_state = 2},
- [5250] = {.lex_state = 151, .external_lex_state = 2},
- [5251] = {.lex_state = 151, .external_lex_state = 2},
- [5252] = {.lex_state = 151, .external_lex_state = 2},
- [5253] = {.lex_state = 151, .external_lex_state = 2},
- [5254] = {.lex_state = 151, .external_lex_state = 2},
- [5255] = {.lex_state = 151, .external_lex_state = 2},
- [5256] = {.lex_state = 151, .external_lex_state = 2},
- [5257] = {.lex_state = 151, .external_lex_state = 2},
- [5258] = {.lex_state = 151, .external_lex_state = 2},
- [5259] = {.lex_state = 151, .external_lex_state = 2},
- [5260] = {.lex_state = 151, .external_lex_state = 2},
- [5261] = {.lex_state = 151, .external_lex_state = 2},
- [5262] = {.lex_state = 151, .external_lex_state = 2},
- [5263] = {.lex_state = 151, .external_lex_state = 2},
- [5264] = {.lex_state = 151, .external_lex_state = 2},
- [5265] = {.lex_state = 151, .external_lex_state = 2},
- [5266] = {.lex_state = 151, .external_lex_state = 2},
- [5267] = {.lex_state = 151, .external_lex_state = 2},
- [5268] = {.lex_state = 151, .external_lex_state = 2},
- [5269] = {.lex_state = 151, .external_lex_state = 2},
- [5270] = {.lex_state = 151, .external_lex_state = 2},
- [5271] = {.lex_state = 151, .external_lex_state = 2},
- [5272] = {.lex_state = 151, .external_lex_state = 2},
- [5273] = {.lex_state = 151, .external_lex_state = 2},
- [5274] = {.lex_state = 151, .external_lex_state = 2},
- [5275] = {.lex_state = 151, .external_lex_state = 2},
- [5276] = {.lex_state = 151, .external_lex_state = 2},
- [5277] = {.lex_state = 151, .external_lex_state = 2},
- [5278] = {.lex_state = 151, .external_lex_state = 2},
- [5279] = {.lex_state = 151, .external_lex_state = 2},
- [5280] = {.lex_state = 151, .external_lex_state = 2},
- [5281] = {.lex_state = 151, .external_lex_state = 2},
- [5282] = {.lex_state = 151, .external_lex_state = 2},
- [5283] = {.lex_state = 151, .external_lex_state = 5},
- [5284] = {.lex_state = 151, .external_lex_state = 2},
- [5285] = {.lex_state = 151, .external_lex_state = 2},
- [5286] = {.lex_state = 151, .external_lex_state = 2},
- [5287] = {.lex_state = 151, .external_lex_state = 2},
- [5288] = {.lex_state = 151, .external_lex_state = 2},
- [5289] = {.lex_state = 151, .external_lex_state = 2},
- [5290] = {.lex_state = 151, .external_lex_state = 2},
- [5291] = {.lex_state = 151, .external_lex_state = 5},
- [5292] = {.lex_state = 151, .external_lex_state = 2},
- [5293] = {.lex_state = 151, .external_lex_state = 2},
- [5294] = {.lex_state = 151, .external_lex_state = 2},
- [5295] = {.lex_state = 151, .external_lex_state = 2},
- [5296] = {.lex_state = 151, .external_lex_state = 2},
- [5297] = {.lex_state = 151, .external_lex_state = 2},
- [5298] = {.lex_state = 151, .external_lex_state = 2},
- [5299] = {.lex_state = 151, .external_lex_state = 2},
- [5300] = {.lex_state = 151, .external_lex_state = 2},
- [5301] = {.lex_state = 151, .external_lex_state = 5},
- [5302] = {.lex_state = 151, .external_lex_state = 2},
- [5303] = {.lex_state = 151, .external_lex_state = 5},
- [5304] = {.lex_state = 151, .external_lex_state = 2},
- [5305] = {.lex_state = 151, .external_lex_state = 5},
- [5306] = {.lex_state = 151, .external_lex_state = 5},
- [5307] = {.lex_state = 151, .external_lex_state = 5},
- [5308] = {.lex_state = 151, .external_lex_state = 2},
- [5309] = {.lex_state = 151, .external_lex_state = 2},
- [5310] = {.lex_state = 151, .external_lex_state = 2},
- [5311] = {.lex_state = 151, .external_lex_state = 2},
- [5312] = {.lex_state = 151, .external_lex_state = 5},
- [5313] = {.lex_state = 151, .external_lex_state = 2},
- [5314] = {.lex_state = 151, .external_lex_state = 2},
- [5315] = {.lex_state = 151, .external_lex_state = 5},
- [5316] = {.lex_state = 151, .external_lex_state = 2},
- [5317] = {.lex_state = 151, .external_lex_state = 2},
- [5318] = {.lex_state = 151, .external_lex_state = 2},
- [5319] = {.lex_state = 151, .external_lex_state = 2},
- [5320] = {.lex_state = 151, .external_lex_state = 2},
- [5321] = {.lex_state = 151, .external_lex_state = 2},
- [5322] = {.lex_state = 151, .external_lex_state = 2},
- [5323] = {.lex_state = 151, .external_lex_state = 2},
- [5324] = {.lex_state = 151, .external_lex_state = 2},
- [5325] = {.lex_state = 151, .external_lex_state = 2},
- [5326] = {.lex_state = 151, .external_lex_state = 2},
- [5327] = {.lex_state = 151, .external_lex_state = 2},
- [5328] = {.lex_state = 151, .external_lex_state = 2},
- [5329] = {.lex_state = 151, .external_lex_state = 2},
- [5330] = {.lex_state = 151, .external_lex_state = 2},
- [5331] = {.lex_state = 151, .external_lex_state = 5},
- [5332] = {.lex_state = 151, .external_lex_state = 5},
- [5333] = {.lex_state = 151, .external_lex_state = 2},
- [5334] = {.lex_state = 151, .external_lex_state = 2},
- [5335] = {.lex_state = 151, .external_lex_state = 2},
- [5336] = {.lex_state = 151, .external_lex_state = 2},
- [5337] = {.lex_state = 151, .external_lex_state = 2},
- [5338] = {.lex_state = 151, .external_lex_state = 2},
- [5339] = {.lex_state = 151, .external_lex_state = 2},
- [5340] = {.lex_state = 151, .external_lex_state = 2},
- [5341] = {.lex_state = 151, .external_lex_state = 2},
- [5342] = {.lex_state = 151, .external_lex_state = 2},
- [5343] = {.lex_state = 151, .external_lex_state = 2},
- [5344] = {.lex_state = 151, .external_lex_state = 2},
- [5345] = {.lex_state = 151, .external_lex_state = 2},
- [5346] = {.lex_state = 151, .external_lex_state = 2},
- [5347] = {.lex_state = 151, .external_lex_state = 2},
- [5348] = {.lex_state = 151, .external_lex_state = 2},
- [5349] = {.lex_state = 151, .external_lex_state = 2},
- [5350] = {.lex_state = 151, .external_lex_state = 2},
- [5351] = {.lex_state = 151, .external_lex_state = 2},
- [5352] = {.lex_state = 151, .external_lex_state = 2},
- [5353] = {.lex_state = 151, .external_lex_state = 2},
- [5354] = {.lex_state = 151, .external_lex_state = 2},
- [5355] = {.lex_state = 151, .external_lex_state = 2},
- [5356] = {.lex_state = 151, .external_lex_state = 2},
- [5357] = {.lex_state = 151, .external_lex_state = 2},
- [5358] = {.lex_state = 151, .external_lex_state = 2},
- [5359] = {.lex_state = 151, .external_lex_state = 2},
- [5360] = {.lex_state = 151, .external_lex_state = 2},
- [5361] = {.lex_state = 151, .external_lex_state = 2},
- [5362] = {.lex_state = 151, .external_lex_state = 2},
- [5363] = {.lex_state = 151, .external_lex_state = 2},
- [5364] = {.lex_state = 151, .external_lex_state = 2},
- [5365] = {.lex_state = 151, .external_lex_state = 2},
- [5366] = {.lex_state = 151, .external_lex_state = 2},
- [5367] = {.lex_state = 151, .external_lex_state = 2},
- [5368] = {.lex_state = 151, .external_lex_state = 2},
- [5369] = {.lex_state = 151, .external_lex_state = 2},
- [5370] = {.lex_state = 151, .external_lex_state = 2},
- [5371] = {.lex_state = 151, .external_lex_state = 2},
- [5372] = {.lex_state = 151, .external_lex_state = 2},
- [5373] = {.lex_state = 151, .external_lex_state = 2},
- [5374] = {.lex_state = 151, .external_lex_state = 2},
- [5375] = {.lex_state = 151, .external_lex_state = 2},
- [5376] = {.lex_state = 151, .external_lex_state = 2},
- [5377] = {.lex_state = 151, .external_lex_state = 2},
- [5378] = {.lex_state = 151, .external_lex_state = 2},
- [5379] = {.lex_state = 151, .external_lex_state = 2},
- [5380] = {.lex_state = 151, .external_lex_state = 5},
- [5381] = {.lex_state = 151, .external_lex_state = 5},
- [5382] = {.lex_state = 151, .external_lex_state = 2},
- [5383] = {.lex_state = 151, .external_lex_state = 2},
- [5384] = {.lex_state = 151, .external_lex_state = 2},
- [5385] = {.lex_state = 151, .external_lex_state = 5},
- [5386] = {.lex_state = 151, .external_lex_state = 2},
- [5387] = {.lex_state = 151, .external_lex_state = 2},
- [5388] = {.lex_state = 151, .external_lex_state = 2},
- [5389] = {.lex_state = 151, .external_lex_state = 2},
- [5390] = {.lex_state = 151, .external_lex_state = 2},
- [5391] = {.lex_state = 151, .external_lex_state = 2},
- [5392] = {.lex_state = 151, .external_lex_state = 2},
- [5393] = {.lex_state = 151, .external_lex_state = 2},
- [5394] = {.lex_state = 151, .external_lex_state = 2},
- [5395] = {.lex_state = 151, .external_lex_state = 2},
- [5396] = {.lex_state = 151, .external_lex_state = 2},
- [5397] = {.lex_state = 151, .external_lex_state = 2},
- [5398] = {.lex_state = 151, .external_lex_state = 2},
- [5399] = {.lex_state = 151, .external_lex_state = 2},
- [5400] = {.lex_state = 151, .external_lex_state = 2},
- [5401] = {.lex_state = 151, .external_lex_state = 2},
- [5402] = {.lex_state = 151, .external_lex_state = 2},
- [5403] = {.lex_state = 151, .external_lex_state = 2},
- [5404] = {.lex_state = 151, .external_lex_state = 2},
- [5405] = {.lex_state = 151, .external_lex_state = 2},
- [5406] = {.lex_state = 151, .external_lex_state = 2},
- [5407] = {.lex_state = 151, .external_lex_state = 2},
- [5408] = {.lex_state = 151, .external_lex_state = 2},
- [5409] = {.lex_state = 151, .external_lex_state = 2},
- [5410] = {.lex_state = 151, .external_lex_state = 2},
- [5411] = {.lex_state = 151, .external_lex_state = 2},
- [5412] = {.lex_state = 151, .external_lex_state = 5},
- [5413] = {.lex_state = 151, .external_lex_state = 2},
- [5414] = {.lex_state = 151, .external_lex_state = 2},
- [5415] = {.lex_state = 151, .external_lex_state = 2},
- [5416] = {.lex_state = 151, .external_lex_state = 2},
- [5417] = {.lex_state = 151, .external_lex_state = 5},
- [5418] = {.lex_state = 151, .external_lex_state = 2},
- [5419] = {.lex_state = 151, .external_lex_state = 2},
- [5420] = {.lex_state = 151, .external_lex_state = 2},
- [5421] = {.lex_state = 151, .external_lex_state = 2},
- [5422] = {.lex_state = 151, .external_lex_state = 2},
- [5423] = {.lex_state = 151, .external_lex_state = 2},
- [5424] = {.lex_state = 151, .external_lex_state = 2},
- [5425] = {.lex_state = 151, .external_lex_state = 2},
- [5426] = {.lex_state = 151, .external_lex_state = 5},
- [5427] = {.lex_state = 151, .external_lex_state = 2},
- [5428] = {.lex_state = 151, .external_lex_state = 2},
- [5429] = {.lex_state = 151, .external_lex_state = 2},
- [5430] = {.lex_state = 151, .external_lex_state = 2},
- [5431] = {.lex_state = 151, .external_lex_state = 2},
- [5432] = {.lex_state = 151, .external_lex_state = 2},
- [5433] = {.lex_state = 151, .external_lex_state = 2},
- [5434] = {.lex_state = 151, .external_lex_state = 2},
- [5435] = {.lex_state = 151, .external_lex_state = 2},
- [5436] = {.lex_state = 151, .external_lex_state = 2},
- [5437] = {.lex_state = 151, .external_lex_state = 2},
- [5438] = {.lex_state = 151, .external_lex_state = 2},
- [5439] = {.lex_state = 151, .external_lex_state = 2},
- [5440] = {.lex_state = 151, .external_lex_state = 2},
- [5441] = {.lex_state = 151, .external_lex_state = 2},
- [5442] = {.lex_state = 151, .external_lex_state = 2},
- [5443] = {.lex_state = 151, .external_lex_state = 2},
- [5444] = {.lex_state = 151, .external_lex_state = 2},
- [5445] = {.lex_state = 151, .external_lex_state = 5},
- [5446] = {.lex_state = 151, .external_lex_state = 2},
- [5447] = {.lex_state = 151, .external_lex_state = 2},
- [5448] = {.lex_state = 151, .external_lex_state = 2},
- [5449] = {.lex_state = 151, .external_lex_state = 2},
- [5450] = {.lex_state = 151, .external_lex_state = 5},
- [5451] = {.lex_state = 151, .external_lex_state = 2},
- [5452] = {.lex_state = 151, .external_lex_state = 2},
- [5453] = {.lex_state = 151, .external_lex_state = 2},
- [5454] = {.lex_state = 151, .external_lex_state = 2},
- [5455] = {.lex_state = 151, .external_lex_state = 2},
- [5456] = {.lex_state = 151, .external_lex_state = 5},
- [5457] = {.lex_state = 151, .external_lex_state = 2},
- [5458] = {.lex_state = 151, .external_lex_state = 2},
- [5459] = {.lex_state = 151, .external_lex_state = 2},
- [5460] = {.lex_state = 151, .external_lex_state = 5},
- [5461] = {.lex_state = 151, .external_lex_state = 2},
- [5462] = {.lex_state = 151, .external_lex_state = 2},
- [5463] = {.lex_state = 17, .external_lex_state = 2},
- [5464] = {.lex_state = 151, .external_lex_state = 2},
- [5465] = {.lex_state = 151, .external_lex_state = 2},
- [5466] = {.lex_state = 151, .external_lex_state = 2},
- [5467] = {.lex_state = 151, .external_lex_state = 2},
- [5468] = {.lex_state = 151, .external_lex_state = 2},
- [5469] = {.lex_state = 151, .external_lex_state = 2},
- [5470] = {.lex_state = 151, .external_lex_state = 2},
- [5471] = {.lex_state = 151, .external_lex_state = 2},
- [5472] = {.lex_state = 151, .external_lex_state = 2},
- [5473] = {.lex_state = 151, .external_lex_state = 2},
- [5474] = {.lex_state = 151, .external_lex_state = 2},
- [5475] = {.lex_state = 151, .external_lex_state = 2},
- [5476] = {.lex_state = 151, .external_lex_state = 2},
- [5477] = {.lex_state = 151, .external_lex_state = 2},
- [5478] = {.lex_state = 151, .external_lex_state = 2},
- [5479] = {.lex_state = 151, .external_lex_state = 2},
- [5480] = {.lex_state = 151, .external_lex_state = 2},
- [5481] = {.lex_state = 151, .external_lex_state = 2},
- [5482] = {.lex_state = 151, .external_lex_state = 5},
- [5483] = {.lex_state = 151, .external_lex_state = 2},
- [5484] = {.lex_state = 151, .external_lex_state = 2},
- [5485] = {.lex_state = 151, .external_lex_state = 5},
- [5486] = {.lex_state = 151, .external_lex_state = 2},
- [5487] = {.lex_state = 151, .external_lex_state = 2},
- [5488] = {.lex_state = 151, .external_lex_state = 2},
- [5489] = {.lex_state = 151, .external_lex_state = 2},
- [5490] = {.lex_state = 151, .external_lex_state = 5},
- [5491] = {.lex_state = 151, .external_lex_state = 5},
- [5492] = {.lex_state = 151, .external_lex_state = 2},
- [5493] = {.lex_state = 151, .external_lex_state = 2},
- [5494] = {.lex_state = 151, .external_lex_state = 2},
- [5495] = {.lex_state = 151, .external_lex_state = 2},
- [5496] = {.lex_state = 151, .external_lex_state = 2},
- [5497] = {.lex_state = 151, .external_lex_state = 2},
- [5498] = {.lex_state = 151, .external_lex_state = 2},
- [5499] = {.lex_state = 151, .external_lex_state = 2},
- [5500] = {.lex_state = 151, .external_lex_state = 2},
- [5501] = {.lex_state = 151, .external_lex_state = 2},
- [5502] = {.lex_state = 151, .external_lex_state = 2},
- [5503] = {.lex_state = 151, .external_lex_state = 2},
- [5504] = {.lex_state = 151, .external_lex_state = 2},
- [5505] = {.lex_state = 151, .external_lex_state = 2},
- [5506] = {.lex_state = 151, .external_lex_state = 2},
- [5507] = {.lex_state = 151, .external_lex_state = 2},
- [5508] = {.lex_state = 151, .external_lex_state = 2},
- [5509] = {.lex_state = 151, .external_lex_state = 2},
- [5510] = {.lex_state = 151, .external_lex_state = 2},
- [5511] = {.lex_state = 151, .external_lex_state = 2},
- [5512] = {.lex_state = 151, .external_lex_state = 2},
- [5513] = {.lex_state = 151, .external_lex_state = 2},
- [5514] = {.lex_state = 151, .external_lex_state = 2},
- [5515] = {.lex_state = 151, .external_lex_state = 2},
- [5516] = {.lex_state = 151, .external_lex_state = 2},
- [5517] = {.lex_state = 151, .external_lex_state = 2},
- [5518] = {.lex_state = 151, .external_lex_state = 2},
- [5519] = {.lex_state = 151, .external_lex_state = 2},
- [5520] = {.lex_state = 151, .external_lex_state = 2},
- [5521] = {.lex_state = 151, .external_lex_state = 2},
- [5522] = {.lex_state = 151, .external_lex_state = 2},
- [5523] = {.lex_state = 151, .external_lex_state = 2},
- [5524] = {.lex_state = 151, .external_lex_state = 2},
- [5525] = {.lex_state = 151, .external_lex_state = 2},
- [5526] = {.lex_state = 151, .external_lex_state = 2},
- [5527] = {.lex_state = 151, .external_lex_state = 2},
- [5528] = {.lex_state = 151, .external_lex_state = 2},
- [5529] = {.lex_state = 151, .external_lex_state = 2},
- [5530] = {.lex_state = 151, .external_lex_state = 2},
- [5531] = {.lex_state = 151, .external_lex_state = 2},
- [5532] = {.lex_state = 151, .external_lex_state = 2},
- [5533] = {.lex_state = 151, .external_lex_state = 2},
- [5534] = {.lex_state = 151, .external_lex_state = 2},
- [5535] = {.lex_state = 151, .external_lex_state = 2},
- [5536] = {.lex_state = 151, .external_lex_state = 2},
- [5537] = {.lex_state = 151, .external_lex_state = 2},
- [5538] = {.lex_state = 151, .external_lex_state = 2},
- [5539] = {.lex_state = 151, .external_lex_state = 2},
- [5540] = {.lex_state = 151, .external_lex_state = 2},
- [5541] = {.lex_state = 151, .external_lex_state = 2},
- [5542] = {.lex_state = 151, .external_lex_state = 2},
- [5543] = {.lex_state = 151, .external_lex_state = 2},
- [5544] = {.lex_state = 151, .external_lex_state = 2},
- [5545] = {.lex_state = 151, .external_lex_state = 2},
- [5546] = {.lex_state = 151, .external_lex_state = 2},
- [5547] = {.lex_state = 151, .external_lex_state = 2},
- [5548] = {.lex_state = 151, .external_lex_state = 2},
- [5549] = {.lex_state = 151, .external_lex_state = 2},
- [5550] = {.lex_state = 151, .external_lex_state = 2},
- [5551] = {.lex_state = 151, .external_lex_state = 2},
- [5552] = {.lex_state = 151, .external_lex_state = 2},
- [5553] = {.lex_state = 151, .external_lex_state = 2},
- [5554] = {.lex_state = 151, .external_lex_state = 2},
- [5555] = {.lex_state = 151, .external_lex_state = 2},
- [5556] = {.lex_state = 151, .external_lex_state = 2},
- [5557] = {.lex_state = 151, .external_lex_state = 2},
- [5558] = {.lex_state = 151, .external_lex_state = 2},
- [5559] = {.lex_state = 151, .external_lex_state = 2},
- [5560] = {.lex_state = 151, .external_lex_state = 2},
- [5561] = {.lex_state = 40, .external_lex_state = 2},
- [5562] = {.lex_state = 151, .external_lex_state = 2},
- [5563] = {.lex_state = 151, .external_lex_state = 2},
- [5564] = {.lex_state = 151, .external_lex_state = 2},
- [5565] = {.lex_state = 151, .external_lex_state = 2},
- [5566] = {.lex_state = 151, .external_lex_state = 2},
- [5567] = {.lex_state = 151, .external_lex_state = 2},
- [5568] = {.lex_state = 151, .external_lex_state = 2},
- [5569] = {.lex_state = 151, .external_lex_state = 2},
- [5570] = {.lex_state = 151, .external_lex_state = 2},
- [5571] = {.lex_state = 151, .external_lex_state = 2},
- [5572] = {.lex_state = 151, .external_lex_state = 2},
- [5573] = {.lex_state = 151, .external_lex_state = 2},
- [5574] = {.lex_state = 151, .external_lex_state = 2},
- [5575] = {.lex_state = 151, .external_lex_state = 2},
- [5576] = {.lex_state = 151, .external_lex_state = 2},
- [5577] = {.lex_state = 151, .external_lex_state = 2},
- [5578] = {.lex_state = 151, .external_lex_state = 2},
- [5579] = {.lex_state = 151, .external_lex_state = 2},
- [5580] = {.lex_state = 151, .external_lex_state = 2},
- [5581] = {.lex_state = 151, .external_lex_state = 2},
- [5582] = {.lex_state = 151, .external_lex_state = 2},
- [5583] = {.lex_state = 151, .external_lex_state = 2},
- [5584] = {.lex_state = 151, .external_lex_state = 2},
- [5585] = {.lex_state = 151, .external_lex_state = 2},
- [5586] = {.lex_state = 151, .external_lex_state = 2},
- [5587] = {.lex_state = 151, .external_lex_state = 2},
- [5588] = {.lex_state = 151, .external_lex_state = 2},
- [5589] = {.lex_state = 151, .external_lex_state = 2},
- [5590] = {.lex_state = 151, .external_lex_state = 2},
- [5591] = {.lex_state = 151, .external_lex_state = 2},
- [5592] = {.lex_state = 151, .external_lex_state = 2},
- [5593] = {.lex_state = 151, .external_lex_state = 2},
- [5594] = {.lex_state = 151, .external_lex_state = 2},
- [5595] = {.lex_state = 151, .external_lex_state = 2},
- [5596] = {.lex_state = 151, .external_lex_state = 2},
- [5597] = {.lex_state = 151, .external_lex_state = 2},
- [5598] = {.lex_state = 151, .external_lex_state = 2},
- [5599] = {.lex_state = 151, .external_lex_state = 2},
- [5600] = {.lex_state = 151, .external_lex_state = 2},
- [5601] = {.lex_state = 151, .external_lex_state = 2},
- [5602] = {.lex_state = 151, .external_lex_state = 2},
- [5603] = {.lex_state = 151, .external_lex_state = 2},
- [5604] = {.lex_state = 3, .external_lex_state = 10},
- [5605] = {.lex_state = 151, .external_lex_state = 2},
- [5606] = {.lex_state = 151, .external_lex_state = 2},
- [5607] = {.lex_state = 151, .external_lex_state = 2},
- [5608] = {.lex_state = 151, .external_lex_state = 2},
- [5609] = {.lex_state = 151, .external_lex_state = 2},
- [5610] = {.lex_state = 151, .external_lex_state = 2},
- [5611] = {.lex_state = 151, .external_lex_state = 2},
- [5612] = {.lex_state = 151, .external_lex_state = 2},
- [5613] = {.lex_state = 151, .external_lex_state = 2},
- [5614] = {.lex_state = 151, .external_lex_state = 2},
- [5615] = {.lex_state = 151, .external_lex_state = 2},
- [5616] = {.lex_state = 151, .external_lex_state = 2},
- [5617] = {.lex_state = 151, .external_lex_state = 2},
- [5618] = {.lex_state = 151, .external_lex_state = 2},
- [5619] = {.lex_state = 151, .external_lex_state = 2},
- [5620] = {.lex_state = 151, .external_lex_state = 2},
- [5621] = {.lex_state = 151, .external_lex_state = 2},
- [5622] = {.lex_state = 151, .external_lex_state = 2},
- [5623] = {.lex_state = 151, .external_lex_state = 2},
- [5624] = {.lex_state = 151, .external_lex_state = 2},
- [5625] = {.lex_state = 151, .external_lex_state = 2},
- [5626] = {.lex_state = 151, .external_lex_state = 2},
- [5627] = {.lex_state = 151, .external_lex_state = 2},
- [5628] = {.lex_state = 151, .external_lex_state = 2},
- [5629] = {.lex_state = 151, .external_lex_state = 2},
- [5630] = {.lex_state = 151, .external_lex_state = 2},
- [5631] = {.lex_state = 151, .external_lex_state = 2},
- [5632] = {.lex_state = 151, .external_lex_state = 2},
- [5633] = {.lex_state = 151, .external_lex_state = 2},
- [5634] = {.lex_state = 151, .external_lex_state = 2},
- [5635] = {.lex_state = 151, .external_lex_state = 2},
- [5636] = {.lex_state = 151, .external_lex_state = 2},
- [5637] = {.lex_state = 151, .external_lex_state = 2},
- [5638] = {.lex_state = 151, .external_lex_state = 2},
- [5639] = {.lex_state = 151, .external_lex_state = 2},
- [5640] = {.lex_state = 151, .external_lex_state = 2},
- [5641] = {.lex_state = 151, .external_lex_state = 2},
- [5642] = {.lex_state = 151, .external_lex_state = 2},
- [5643] = {.lex_state = 151, .external_lex_state = 2},
- [5644] = {.lex_state = 3, .external_lex_state = 10},
- [5645] = {.lex_state = 151, .external_lex_state = 2},
- [5646] = {.lex_state = 151, .external_lex_state = 2},
- [5647] = {.lex_state = 151, .external_lex_state = 2},
- [5648] = {.lex_state = 151, .external_lex_state = 2},
- [5649] = {.lex_state = 151, .external_lex_state = 2},
- [5650] = {.lex_state = 151, .external_lex_state = 2},
- [5651] = {.lex_state = 151, .external_lex_state = 2},
- [5652] = {.lex_state = 151, .external_lex_state = 2},
- [5653] = {.lex_state = 151, .external_lex_state = 2},
- [5654] = {.lex_state = 151, .external_lex_state = 2},
- [5655] = {.lex_state = 151, .external_lex_state = 2},
- [5656] = {.lex_state = 151, .external_lex_state = 2},
- [5657] = {.lex_state = 151, .external_lex_state = 2},
- [5658] = {.lex_state = 151, .external_lex_state = 2},
- [5659] = {.lex_state = 151, .external_lex_state = 2},
- [5660] = {.lex_state = 151, .external_lex_state = 2},
- [5661] = {.lex_state = 151, .external_lex_state = 2},
- [5662] = {.lex_state = 151, .external_lex_state = 2},
- [5663] = {.lex_state = 151, .external_lex_state = 2},
- [5664] = {.lex_state = 151, .external_lex_state = 2},
- [5665] = {.lex_state = 151, .external_lex_state = 2},
- [5666] = {.lex_state = 151, .external_lex_state = 2},
- [5667] = {.lex_state = 151, .external_lex_state = 2},
- [5668] = {.lex_state = 151, .external_lex_state = 2},
- [5669] = {.lex_state = 151, .external_lex_state = 2},
- [5670] = {.lex_state = 151, .external_lex_state = 2},
- [5671] = {.lex_state = 151, .external_lex_state = 2},
- [5672] = {.lex_state = 151, .external_lex_state = 2},
- [5673] = {.lex_state = 151, .external_lex_state = 2},
- [5674] = {.lex_state = 151, .external_lex_state = 2},
- [5675] = {.lex_state = 151, .external_lex_state = 2},
- [5676] = {.lex_state = 151, .external_lex_state = 2},
- [5677] = {.lex_state = 151, .external_lex_state = 2},
- [5678] = {.lex_state = 151, .external_lex_state = 2},
- [5679] = {.lex_state = 151, .external_lex_state = 2},
- [5680] = {.lex_state = 151, .external_lex_state = 2},
- [5681] = {.lex_state = 151, .external_lex_state = 2},
- [5682] = {.lex_state = 151, .external_lex_state = 2},
- [5683] = {.lex_state = 151, .external_lex_state = 2},
- [5684] = {.lex_state = 151, .external_lex_state = 2},
- [5685] = {.lex_state = 151, .external_lex_state = 2},
- [5686] = {.lex_state = 151, .external_lex_state = 2},
- [5687] = {.lex_state = 151, .external_lex_state = 2},
- [5688] = {.lex_state = 151, .external_lex_state = 2},
- [5689] = {.lex_state = 151, .external_lex_state = 2},
- [5690] = {.lex_state = 151, .external_lex_state = 2},
- [5691] = {.lex_state = 151, .external_lex_state = 2},
- [5692] = {.lex_state = 151, .external_lex_state = 2},
- [5693] = {.lex_state = 151, .external_lex_state = 2},
- [5694] = {.lex_state = 151, .external_lex_state = 2},
- [5695] = {.lex_state = 151, .external_lex_state = 2},
- [5696] = {.lex_state = 151, .external_lex_state = 2},
- [5697] = {.lex_state = 151, .external_lex_state = 2},
- [5698] = {.lex_state = 151, .external_lex_state = 2},
- [5699] = {.lex_state = 151, .external_lex_state = 2},
- [5700] = {.lex_state = 151, .external_lex_state = 2},
- [5701] = {.lex_state = 151, .external_lex_state = 2},
- [5702] = {.lex_state = 151, .external_lex_state = 2},
- [5703] = {.lex_state = 151, .external_lex_state = 2},
- [5704] = {.lex_state = 151, .external_lex_state = 2},
- [5705] = {.lex_state = 151, .external_lex_state = 2},
- [5706] = {.lex_state = 3, .external_lex_state = 10},
- [5707] = {.lex_state = 151, .external_lex_state = 2},
- [5708] = {.lex_state = 151, .external_lex_state = 2},
- [5709] = {.lex_state = 151, .external_lex_state = 2},
- [5710] = {.lex_state = 151, .external_lex_state = 2},
- [5711] = {.lex_state = 151, .external_lex_state = 2},
- [5712] = {.lex_state = 151, .external_lex_state = 2},
- [5713] = {.lex_state = 151, .external_lex_state = 2},
- [5714] = {.lex_state = 151, .external_lex_state = 2},
- [5715] = {.lex_state = 151, .external_lex_state = 2},
- [5716] = {.lex_state = 151, .external_lex_state = 2},
- [5717] = {.lex_state = 151, .external_lex_state = 2},
- [5718] = {.lex_state = 151, .external_lex_state = 2},
- [5719] = {.lex_state = 151, .external_lex_state = 2},
- [5720] = {.lex_state = 151, .external_lex_state = 2},
- [5721] = {.lex_state = 151, .external_lex_state = 2},
- [5722] = {.lex_state = 151, .external_lex_state = 2},
- [5723] = {.lex_state = 151, .external_lex_state = 2},
- [5724] = {.lex_state = 151, .external_lex_state = 2},
- [5725] = {.lex_state = 151, .external_lex_state = 2},
- [5726] = {.lex_state = 151, .external_lex_state = 2},
- [5727] = {.lex_state = 151, .external_lex_state = 2},
- [5728] = {.lex_state = 151, .external_lex_state = 2},
- [5729] = {.lex_state = 151, .external_lex_state = 2},
- [5730] = {.lex_state = 151, .external_lex_state = 2},
- [5731] = {.lex_state = 151, .external_lex_state = 2},
- [5732] = {.lex_state = 151, .external_lex_state = 2},
- [5733] = {.lex_state = 151, .external_lex_state = 2},
- [5734] = {.lex_state = 151, .external_lex_state = 2},
- [5735] = {.lex_state = 151, .external_lex_state = 2},
- [5736] = {.lex_state = 151, .external_lex_state = 2},
- [5737] = {.lex_state = 151, .external_lex_state = 2},
- [5738] = {.lex_state = 151, .external_lex_state = 2},
- [5739] = {.lex_state = 151, .external_lex_state = 2},
- [5740] = {.lex_state = 151, .external_lex_state = 2},
- [5741] = {.lex_state = 151, .external_lex_state = 2},
- [5742] = {.lex_state = 151, .external_lex_state = 2},
- [5743] = {.lex_state = 151, .external_lex_state = 2},
- [5744] = {.lex_state = 151, .external_lex_state = 2},
- [5745] = {.lex_state = 151, .external_lex_state = 2},
- [5746] = {.lex_state = 151, .external_lex_state = 2},
- [5747] = {.lex_state = 151, .external_lex_state = 2},
- [5748] = {.lex_state = 151, .external_lex_state = 2},
- [5749] = {.lex_state = 151, .external_lex_state = 2},
- [5750] = {.lex_state = 151, .external_lex_state = 2},
- [5751] = {.lex_state = 151, .external_lex_state = 2},
- [5752] = {.lex_state = 151, .external_lex_state = 2},
- [5753] = {.lex_state = 151, .external_lex_state = 2},
- [5754] = {.lex_state = 151, .external_lex_state = 2},
- [5755] = {.lex_state = 151, .external_lex_state = 2},
- [5756] = {.lex_state = 151, .external_lex_state = 2},
- [5757] = {.lex_state = 151, .external_lex_state = 2},
- [5758] = {.lex_state = 151, .external_lex_state = 2},
- [5759] = {.lex_state = 40, .external_lex_state = 2},
- [5760] = {.lex_state = 151, .external_lex_state = 2},
- [5761] = {.lex_state = 151, .external_lex_state = 2},
- [5762] = {.lex_state = 40, .external_lex_state = 2},
- [5763] = {.lex_state = 151, .external_lex_state = 2},
- [5764] = {.lex_state = 151, .external_lex_state = 2},
- [5765] = {.lex_state = 151, .external_lex_state = 2},
- [5766] = {.lex_state = 151, .external_lex_state = 2},
- [5767] = {.lex_state = 151, .external_lex_state = 2},
- [5768] = {.lex_state = 151, .external_lex_state = 2},
- [5769] = {.lex_state = 151, .external_lex_state = 2},
- [5770] = {.lex_state = 151, .external_lex_state = 2},
- [5771] = {.lex_state = 151, .external_lex_state = 2},
- [5772] = {.lex_state = 151, .external_lex_state = 2},
- [5773] = {.lex_state = 151, .external_lex_state = 2},
- [5774] = {.lex_state = 151, .external_lex_state = 2},
- [5775] = {.lex_state = 151, .external_lex_state = 2},
- [5776] = {.lex_state = 151, .external_lex_state = 2},
- [5777] = {.lex_state = 151, .external_lex_state = 2},
- [5778] = {.lex_state = 151, .external_lex_state = 2},
- [5779] = {.lex_state = 151, .external_lex_state = 2},
- [5780] = {.lex_state = 151, .external_lex_state = 2},
- [5781] = {.lex_state = 151, .external_lex_state = 2},
- [5782] = {.lex_state = 151, .external_lex_state = 2},
- [5783] = {.lex_state = 151, .external_lex_state = 2},
- [5784] = {.lex_state = 151, .external_lex_state = 2},
- [5785] = {.lex_state = 151, .external_lex_state = 2},
- [5786] = {.lex_state = 151, .external_lex_state = 2},
- [5787] = {.lex_state = 151, .external_lex_state = 2},
- [5788] = {.lex_state = 151, .external_lex_state = 2},
- [5789] = {.lex_state = 151, .external_lex_state = 2},
- [5790] = {.lex_state = 151, .external_lex_state = 2},
- [5791] = {.lex_state = 151, .external_lex_state = 2},
- [5792] = {.lex_state = 151, .external_lex_state = 2},
- [5793] = {.lex_state = 151, .external_lex_state = 2},
- [5794] = {.lex_state = 151, .external_lex_state = 2},
- [5795] = {.lex_state = 151, .external_lex_state = 2},
- [5796] = {.lex_state = 3, .external_lex_state = 10},
- [5797] = {.lex_state = 151, .external_lex_state = 2},
- [5798] = {.lex_state = 151, .external_lex_state = 2},
- [5799] = {.lex_state = 151, .external_lex_state = 2},
- [5800] = {.lex_state = 151, .external_lex_state = 2},
- [5801] = {.lex_state = 151, .external_lex_state = 2},
- [5802] = {.lex_state = 151, .external_lex_state = 2},
- [5803] = {.lex_state = 151, .external_lex_state = 2},
- [5804] = {.lex_state = 151, .external_lex_state = 2},
- [5805] = {.lex_state = 151, .external_lex_state = 2},
- [5806] = {.lex_state = 151, .external_lex_state = 2},
- [5807] = {.lex_state = 151, .external_lex_state = 2},
- [5808] = {.lex_state = 151, .external_lex_state = 2},
- [5809] = {.lex_state = 151, .external_lex_state = 2},
- [5810] = {.lex_state = 151, .external_lex_state = 2},
- [5811] = {.lex_state = 151, .external_lex_state = 2},
- [5812] = {.lex_state = 151, .external_lex_state = 2},
- [5813] = {.lex_state = 151, .external_lex_state = 2},
- [5814] = {.lex_state = 151, .external_lex_state = 2},
- [5815] = {.lex_state = 151, .external_lex_state = 2},
- [5816] = {.lex_state = 151, .external_lex_state = 2},
- [5817] = {.lex_state = 151, .external_lex_state = 2},
- [5818] = {.lex_state = 151, .external_lex_state = 2},
- [5819] = {.lex_state = 151, .external_lex_state = 2},
- [5820] = {.lex_state = 151, .external_lex_state = 2},
- [5821] = {.lex_state = 151, .external_lex_state = 2},
- [5822] = {.lex_state = 151, .external_lex_state = 2},
- [5823] = {.lex_state = 151, .external_lex_state = 2},
- [5824] = {.lex_state = 151, .external_lex_state = 2},
- [5825] = {.lex_state = 151, .external_lex_state = 2},
- [5826] = {.lex_state = 151, .external_lex_state = 2},
- [5827] = {.lex_state = 151, .external_lex_state = 2},
- [5828] = {.lex_state = 151, .external_lex_state = 2},
- [5829] = {.lex_state = 151, .external_lex_state = 2},
- [5830] = {.lex_state = 151, .external_lex_state = 2},
- [5831] = {.lex_state = 151, .external_lex_state = 2},
- [5832] = {.lex_state = 151, .external_lex_state = 2},
- [5833] = {.lex_state = 151, .external_lex_state = 2},
- [5834] = {.lex_state = 151, .external_lex_state = 2},
- [5835] = {.lex_state = 151, .external_lex_state = 2},
- [5836] = {.lex_state = 151, .external_lex_state = 2},
- [5837] = {.lex_state = 151, .external_lex_state = 2},
- [5838] = {.lex_state = 151, .external_lex_state = 2},
- [5839] = {.lex_state = 151, .external_lex_state = 2},
- [5840] = {.lex_state = 151, .external_lex_state = 2},
- [5841] = {.lex_state = 151, .external_lex_state = 2},
- [5842] = {.lex_state = 151, .external_lex_state = 2},
- [5843] = {.lex_state = 151, .external_lex_state = 2},
- [5844] = {.lex_state = 151, .external_lex_state = 2},
- [5845] = {.lex_state = 151, .external_lex_state = 2},
- [5846] = {.lex_state = 151, .external_lex_state = 2},
- [5847] = {.lex_state = 151, .external_lex_state = 2},
- [5848] = {.lex_state = 151, .external_lex_state = 2},
- [5849] = {.lex_state = 151, .external_lex_state = 2},
- [5850] = {.lex_state = 151, .external_lex_state = 2},
- [5851] = {.lex_state = 151, .external_lex_state = 2},
- [5852] = {.lex_state = 151, .external_lex_state = 2},
- [5853] = {.lex_state = 151, .external_lex_state = 2},
- [5854] = {.lex_state = 151, .external_lex_state = 2},
- [5855] = {.lex_state = 151, .external_lex_state = 2},
- [5856] = {.lex_state = 151, .external_lex_state = 2},
- [5857] = {.lex_state = 151, .external_lex_state = 2},
- [5858] = {.lex_state = 151, .external_lex_state = 2},
- [5859] = {.lex_state = 151, .external_lex_state = 2},
- [5860] = {.lex_state = 151, .external_lex_state = 2},
- [5861] = {.lex_state = 151, .external_lex_state = 2},
- [5862] = {.lex_state = 151, .external_lex_state = 2},
- [5863] = {.lex_state = 151, .external_lex_state = 2},
- [5864] = {.lex_state = 151, .external_lex_state = 2},
- [5865] = {.lex_state = 151, .external_lex_state = 2},
- [5866] = {.lex_state = 151, .external_lex_state = 2},
- [5867] = {.lex_state = 3, .external_lex_state = 10},
- [5868] = {.lex_state = 151, .external_lex_state = 2},
- [5869] = {.lex_state = 151, .external_lex_state = 2},
- [5870] = {.lex_state = 151, .external_lex_state = 2},
- [5871] = {.lex_state = 151, .external_lex_state = 2},
- [5872] = {.lex_state = 151, .external_lex_state = 2},
- [5873] = {.lex_state = 151, .external_lex_state = 2},
- [5874] = {.lex_state = 40, .external_lex_state = 2},
- [5875] = {.lex_state = 151, .external_lex_state = 2},
- [5876] = {.lex_state = 151, .external_lex_state = 2},
- [5877] = {.lex_state = 151, .external_lex_state = 2},
- [5878] = {.lex_state = 151, .external_lex_state = 2},
- [5879] = {.lex_state = 151, .external_lex_state = 2},
- [5880] = {.lex_state = 151, .external_lex_state = 2},
- [5881] = {.lex_state = 151, .external_lex_state = 2},
- [5882] = {.lex_state = 151, .external_lex_state = 2},
- [5883] = {.lex_state = 151, .external_lex_state = 2},
- [5884] = {.lex_state = 151, .external_lex_state = 2},
- [5885] = {.lex_state = 151, .external_lex_state = 2},
- [5886] = {.lex_state = 151, .external_lex_state = 2},
- [5887] = {.lex_state = 151, .external_lex_state = 2},
- [5888] = {.lex_state = 151, .external_lex_state = 2},
- [5889] = {.lex_state = 151, .external_lex_state = 2},
- [5890] = {.lex_state = 151, .external_lex_state = 2},
- [5891] = {.lex_state = 151, .external_lex_state = 2},
- [5892] = {.lex_state = 151, .external_lex_state = 2},
- [5893] = {.lex_state = 151, .external_lex_state = 2},
- [5894] = {.lex_state = 151, .external_lex_state = 2},
- [5895] = {.lex_state = 151, .external_lex_state = 2},
- [5896] = {.lex_state = 151, .external_lex_state = 2},
- [5897] = {.lex_state = 151, .external_lex_state = 2},
- [5898] = {.lex_state = 151, .external_lex_state = 2},
- [5899] = {.lex_state = 151, .external_lex_state = 2},
- [5900] = {.lex_state = 151, .external_lex_state = 2},
- [5901] = {.lex_state = 151, .external_lex_state = 2},
- [5902] = {.lex_state = 151, .external_lex_state = 2},
- [5903] = {.lex_state = 151, .external_lex_state = 2},
- [5904] = {.lex_state = 151, .external_lex_state = 2},
- [5905] = {.lex_state = 151, .external_lex_state = 2},
- [5906] = {.lex_state = 151, .external_lex_state = 2},
- [5907] = {.lex_state = 151, .external_lex_state = 2},
- [5908] = {.lex_state = 151, .external_lex_state = 2},
- [5909] = {.lex_state = 151, .external_lex_state = 2},
- [5910] = {.lex_state = 151, .external_lex_state = 2},
- [5911] = {.lex_state = 151, .external_lex_state = 2},
- [5912] = {.lex_state = 151, .external_lex_state = 2},
- [5913] = {.lex_state = 151, .external_lex_state = 2},
- [5914] = {.lex_state = 40, .external_lex_state = 2},
- [5915] = {.lex_state = 151, .external_lex_state = 2},
- [5916] = {.lex_state = 151, .external_lex_state = 2},
- [5917] = {.lex_state = 151, .external_lex_state = 2},
- [5918] = {.lex_state = 151, .external_lex_state = 2},
- [5919] = {.lex_state = 151, .external_lex_state = 2},
- [5920] = {.lex_state = 151, .external_lex_state = 2},
- [5921] = {.lex_state = 151, .external_lex_state = 2},
- [5922] = {.lex_state = 151, .external_lex_state = 2},
- [5923] = {.lex_state = 151, .external_lex_state = 2},
- [5924] = {.lex_state = 151, .external_lex_state = 2},
-};
-
-static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = {
- [0] = {
- [ts_builtin_sym_end] = ACTIONS(1),
- [sym_identifier] = ACTIONS(1),
- [sym_hash_bang_line] = ACTIONS(1),
- [anon_sym_export] = ACTIONS(1),
- [anon_sym_STAR] = ACTIONS(1),
- [anon_sym_default] = ACTIONS(1),
- [anon_sym_type] = ACTIONS(1),
- [anon_sym_EQ] = ACTIONS(1),
- [anon_sym_as] = ACTIONS(1),
- [anon_sym_namespace] = ACTIONS(1),
- [anon_sym_LBRACE] = ACTIONS(1),
- [anon_sym_COMMA] = ACTIONS(1),
- [anon_sym_RBRACE] = ACTIONS(1),
- [anon_sym_typeof] = ACTIONS(1),
- [anon_sym_import] = ACTIONS(1),
- [anon_sym_from] = ACTIONS(1),
- [anon_sym_with] = ACTIONS(1),
- [anon_sym_assert] = ACTIONS(1),
- [anon_sym_var] = ACTIONS(1),
- [anon_sym_let] = ACTIONS(1),
- [anon_sym_const] = ACTIONS(1),
- [anon_sym_BANG] = ACTIONS(1),
- [anon_sym_else] = ACTIONS(1),
- [anon_sym_if] = ACTIONS(1),
- [anon_sym_switch] = ACTIONS(1),
- [anon_sym_for] = ACTIONS(1),
- [anon_sym_LPAREN] = ACTIONS(1),
- [anon_sym_RPAREN] = ACTIONS(1),
- [anon_sym_await] = ACTIONS(1),
- [anon_sym_in] = ACTIONS(1),
- [anon_sym_of] = ACTIONS(1),
- [anon_sym_while] = ACTIONS(1),
- [anon_sym_do] = ACTIONS(1),
- [anon_sym_try] = ACTIONS(1),
- [anon_sym_break] = ACTIONS(1),
- [anon_sym_continue] = ACTIONS(1),
- [anon_sym_debugger] = ACTIONS(1),
- [anon_sym_return] = ACTIONS(1),
- [anon_sym_throw] = ACTIONS(1),
- [anon_sym_SEMI] = ACTIONS(1),
- [anon_sym_COLON] = ACTIONS(1),
- [anon_sym_case] = ACTIONS(1),
- [anon_sym_catch] = ACTIONS(1),
- [anon_sym_finally] = ACTIONS(1),
- [anon_sym_yield] = ACTIONS(1),
- [anon_sym_LBRACK] = ACTIONS(1),
- [anon_sym_RBRACK] = ACTIONS(1),
- [sym_glimmer_opening_tag] = ACTIONS(1),
- [anon_sym_GT] = ACTIONS(1),
- [anon_sym_DOT] = ACTIONS(1),
- [anon_sym_LT_SLASH] = ACTIONS(1),
- [anon_sym_DQUOTE] = ACTIONS(1),
- [anon_sym_SQUOTE] = ACTIONS(1),
- [anon_sym_class] = ACTIONS(1),
- [anon_sym_async] = ACTIONS(1),
- [anon_sym_function] = ACTIONS(1),
- [anon_sym_EQ_GT] = ACTIONS(1),
- [anon_sym_QMARK_DOT] = ACTIONS(1),
- [anon_sym_new] = ACTIONS(1),
- [anon_sym_using] = ACTIONS(1),
- [anon_sym_PLUS_EQ] = ACTIONS(1),
- [anon_sym_DASH_EQ] = ACTIONS(1),
- [anon_sym_STAR_EQ] = ACTIONS(1),
- [anon_sym_SLASH_EQ] = ACTIONS(1),
- [anon_sym_PERCENT_EQ] = ACTIONS(1),
- [anon_sym_CARET_EQ] = ACTIONS(1),
- [anon_sym_AMP_EQ] = ACTIONS(1),
- [anon_sym_PIPE_EQ] = ACTIONS(1),
- [anon_sym_GT_GT_EQ] = ACTIONS(1),
- [anon_sym_GT_GT_GT_EQ] = ACTIONS(1),
- [anon_sym_LT_LT_EQ] = ACTIONS(1),
- [anon_sym_STAR_STAR_EQ] = ACTIONS(1),
- [anon_sym_AMP_AMP_EQ] = ACTIONS(1),
- [anon_sym_PIPE_PIPE_EQ] = ACTIONS(1),
- [anon_sym_QMARK_QMARK_EQ] = ACTIONS(1),
- [anon_sym_DOT_DOT_DOT] = ACTIONS(1),
- [anon_sym_AMP_AMP] = ACTIONS(1),
- [anon_sym_PIPE_PIPE] = ACTIONS(1),
- [anon_sym_GT_GT] = ACTIONS(1),
- [anon_sym_GT_GT_GT] = ACTIONS(1),
- [anon_sym_LT_LT] = ACTIONS(1),
- [anon_sym_AMP] = ACTIONS(1),
- [anon_sym_CARET] = ACTIONS(1),
- [anon_sym_PIPE] = ACTIONS(1),
- [anon_sym_PLUS] = ACTIONS(1),
- [anon_sym_DASH] = ACTIONS(1),
- [anon_sym_SLASH] = ACTIONS(1),
- [anon_sym_PERCENT] = ACTIONS(1),
- [anon_sym_STAR_STAR] = ACTIONS(1),
- [anon_sym_LT] = ACTIONS(1),
- [anon_sym_LT_EQ] = ACTIONS(1),
- [anon_sym_EQ_EQ] = ACTIONS(1),
- [anon_sym_EQ_EQ_EQ] = ACTIONS(1),
- [anon_sym_BANG_EQ] = ACTIONS(1),
- [anon_sym_BANG_EQ_EQ] = ACTIONS(1),
- [anon_sym_GT_EQ] = ACTIONS(1),
- [anon_sym_QMARK_QMARK] = ACTIONS(1),
- [anon_sym_instanceof] = ACTIONS(1),
- [anon_sym_TILDE] = ACTIONS(1),
- [anon_sym_void] = ACTIONS(1),
- [anon_sym_delete] = ACTIONS(1),
- [anon_sym_PLUS_PLUS] = ACTIONS(1),
- [anon_sym_DASH_DASH] = ACTIONS(1),
- [sym_escape_sequence] = ACTIONS(1),
- [sym_comment] = ACTIONS(3),
- [anon_sym_BQUOTE] = ACTIONS(1),
- [anon_sym_DOLLAR_LBRACE] = ACTIONS(1),
- [anon_sym_SLASH2] = ACTIONS(1),
- [sym_number] = ACTIONS(1),
- [sym_private_property_identifier] = ACTIONS(1),
- [anon_sym_target] = ACTIONS(1),
- [sym_this] = ACTIONS(1),
- [sym_super] = ACTIONS(1),
- [sym_true] = ACTIONS(1),
- [sym_false] = ACTIONS(1),
- [sym_null] = ACTIONS(1),
- [sym_undefined] = ACTIONS(1),
- [anon_sym_AT] = ACTIONS(1),
- [anon_sym_static] = ACTIONS(1),
- [anon_sym_readonly] = ACTIONS(1),
- [anon_sym_get] = ACTIONS(1),
- [anon_sym_set] = ACTIONS(1),
- [anon_sym_QMARK] = ACTIONS(1),
- [anon_sym_declare] = ACTIONS(1),
- [anon_sym_public] = ACTIONS(1),
- [anon_sym_private] = ACTIONS(1),
- [anon_sym_protected] = ACTIONS(1),
- [anon_sym_override] = ACTIONS(1),
- [anon_sym_module] = ACTIONS(1),
- [anon_sym_any] = ACTIONS(1),
- [anon_sym_number] = ACTIONS(1),
- [anon_sym_boolean] = ACTIONS(1),
- [anon_sym_string] = ACTIONS(1),
- [anon_sym_symbol] = ACTIONS(1),
- [anon_sym_object] = ACTIONS(1),
- [anon_sym_abstract] = ACTIONS(1),
- [anon_sym_accessor] = ACTIONS(1),
- [anon_sym_satisfies] = ACTIONS(1),
- [anon_sym_require] = ACTIONS(1),
- [anon_sym_extends] = ACTIONS(1),
- [anon_sym_implements] = ACTIONS(1),
- [anon_sym_global] = ACTIONS(1),
- [anon_sym_interface] = ACTIONS(1),
- [anon_sym_enum] = ACTIONS(1),
- [anon_sym_DASH_QMARK_COLON] = ACTIONS(1),
- [anon_sym_PLUS_QMARK_COLON] = ACTIONS(1),
- [anon_sym_asserts] = ACTIONS(1),
- [anon_sym_infer] = ACTIONS(1),
- [anon_sym_is] = ACTIONS(1),
- [anon_sym_keyof] = ACTIONS(1),
- [anon_sym_unique] = ACTIONS(1),
- [anon_sym_unknown] = ACTIONS(1),
- [anon_sym_never] = ACTIONS(1),
- [anon_sym_LBRACE_PIPE] = ACTIONS(1),
- [anon_sym_PIPE_RBRACE] = ACTIONS(1),
- [sym__automatic_semicolon] = ACTIONS(1),
- [sym__template_chars] = ACTIONS(1),
- [sym__ternary_qmark] = ACTIONS(1),
- [sym_html_comment] = ACTIONS(5),
- [sym__function_signature_automatic_semicolon] = ACTIONS(1),
- [sym___error_recovery] = ACTIONS(1),
- },
- [1] = {
- [sym_program] = STATE(5689),
- [sym_export_statement] = STATE(854),
- [sym_declaration] = STATE(854),
- [sym_import] = STATE(3306),
- [sym_import_statement] = STATE(854),
- [sym_statement] = STATE(16),
- [sym_expression_statement] = STATE(854),
- [sym_variable_declaration] = STATE(861),
- [sym_lexical_declaration] = STATE(861),
- [sym_statement_block] = STATE(854),
- [sym_if_statement] = STATE(854),
- [sym_switch_statement] = STATE(854),
- [sym_for_statement] = STATE(854),
- [sym_for_in_statement] = STATE(854),
- [sym_while_statement] = STATE(854),
- [sym_do_statement] = STATE(854),
- [sym_try_statement] = STATE(854),
- [sym_with_statement] = STATE(854),
- [sym_break_statement] = STATE(854),
- [sym_continue_statement] = STATE(854),
- [sym_debugger_statement] = STATE(854),
- [sym_return_statement] = STATE(854),
- [sym_throw_statement] = STATE(854),
- [sym_empty_statement] = STATE(854),
- [sym_labeled_statement] = STATE(854),
- [sym_parenthesized_expression] = STATE(1294),
- [sym_expression] = STATE(1705),
- [sym_primary_expression] = STATE(1946),
- [sym_yield_expression] = STATE(2234),
- [sym_object] = STATE(2310),
- [sym_object_pattern] = STATE(5667),
- [sym_array] = STATE(2310),
- [sym_array_pattern] = STATE(5667),
- [sym_glimmer_template] = STATE(2234),
- [sym_jsx_element] = STATE(2234),
- [sym_jsx_opening_element] = STATE(3051),
- [sym_jsx_self_closing_element] = STATE(2234),
- [sym_class] = STATE(2310),
- [sym_class_declaration] = STATE(861),
- [sym_function_expression] = STATE(2310),
- [sym_function_declaration] = STATE(861),
- [sym_generator_function] = STATE(2310),
- [sym_generator_function_declaration] = STATE(861),
- [sym_arrow_function] = STATE(2310),
- [sym__call_signature] = STATE(5809),
- [sym_call_expression] = STATE(2310),
- [sym_new_expression] = STATE(2234),
- [sym_await_expression] = STATE(2234),
- [sym_member_expression] = STATE(1294),
- [sym_subscript_expression] = STATE(1294),
- [sym_assignment_expression] = STATE(2234),
- [sym__augmented_assignment_lhs] = STATE(2875),
- [sym_augmented_assignment_expression] = STATE(2234),
- [sym__destructuring_pattern] = STATE(5667),
- [sym_ternary_expression] = STATE(2234),
- [sym_binary_expression] = STATE(2234),
- [sym_unary_expression] = STATE(2234),
- [sym_update_expression] = STATE(2234),
- [sym_sequence_expression] = STATE(5482),
- [sym_string] = STATE(2310),
- [sym_template_string] = STATE(2310),
- [sym_regex] = STATE(2310),
- [sym_meta_property] = STATE(2310),
- [sym_decorator] = STATE(1244),
- [sym_formal_parameters] = STATE(3742),
- [sym_non_null_expression] = STATE(1294),
- [sym_function_signature] = STATE(861),
- [sym_as_expression] = STATE(2234),
- [sym_satisfies_expression] = STATE(2234),
- [sym_instantiation_expression] = STATE(2234),
- [sym_ambient_declaration] = STATE(861),
- [sym_abstract_class_declaration] = STATE(861),
- [sym_module] = STATE(861),
- [sym_internal_module] = STATE(223),
- [sym_import_alias] = STATE(861),
- [sym_interface_declaration] = STATE(861),
- [sym_enum_declaration] = STATE(861),
- [sym_type_alias_declaration] = STATE(861),
- [sym_type_parameters] = STATE(5349),
- [aux_sym_program_repeat1] = STATE(16),
- [aux_sym_export_statement_repeat1] = STATE(3848),
- [ts_builtin_sym_end] = ACTIONS(7),
- [sym_identifier] = ACTIONS(9),
- [sym_hash_bang_line] = ACTIONS(11),
- [anon_sym_export] = ACTIONS(13),
- [anon_sym_type] = ACTIONS(15),
- [anon_sym_namespace] = ACTIONS(17),
- [anon_sym_LBRACE] = ACTIONS(19),
- [anon_sym_typeof] = ACTIONS(21),
- [anon_sym_import] = ACTIONS(23),
- [anon_sym_with] = ACTIONS(25),
- [anon_sym_var] = ACTIONS(27),
- [anon_sym_let] = ACTIONS(29),
- [anon_sym_const] = ACTIONS(31),
- [anon_sym_BANG] = ACTIONS(33),
- [anon_sym_if] = ACTIONS(35),
- [anon_sym_switch] = ACTIONS(37),
- [anon_sym_for] = ACTIONS(39),
- [anon_sym_LPAREN] = ACTIONS(41),
- [anon_sym_await] = ACTIONS(43),
- [anon_sym_while] = ACTIONS(45),
- [anon_sym_do] = ACTIONS(47),
- [anon_sym_try] = ACTIONS(49),
- [anon_sym_break] = ACTIONS(51),
- [anon_sym_continue] = ACTIONS(53),
- [anon_sym_debugger] = ACTIONS(55),
- [anon_sym_return] = ACTIONS(57),
- [anon_sym_throw] = ACTIONS(59),
- [anon_sym_SEMI] = ACTIONS(61),
- [anon_sym_yield] = ACTIONS(63),
- [anon_sym_LBRACK] = ACTIONS(65),
- [sym_glimmer_opening_tag] = ACTIONS(67),
- [anon_sym_DQUOTE] = ACTIONS(69),
- [anon_sym_SQUOTE] = ACTIONS(71),
- [anon_sym_class] = ACTIONS(73),
- [anon_sym_async] = ACTIONS(75),
- [anon_sym_function] = ACTIONS(77),
- [anon_sym_new] = ACTIONS(79),
- [anon_sym_using] = ACTIONS(81),
- [anon_sym_PLUS] = ACTIONS(21),
- [anon_sym_DASH] = ACTIONS(21),
- [anon_sym_SLASH] = ACTIONS(83),
- [anon_sym_LT] = ACTIONS(85),
- [anon_sym_TILDE] = ACTIONS(33),
- [anon_sym_void] = ACTIONS(21),
- [anon_sym_delete] = ACTIONS(21),
- [anon_sym_PLUS_PLUS] = ACTIONS(87),
- [anon_sym_DASH_DASH] = ACTIONS(87),
- [sym_comment] = ACTIONS(5),
- [anon_sym_BQUOTE] = ACTIONS(89),
- [sym_number] = ACTIONS(91),
- [sym_private_property_identifier] = ACTIONS(93),
- [sym_this] = ACTIONS(95),
- [sym_super] = ACTIONS(95),
- [sym_true] = ACTIONS(95),
- [sym_false] = ACTIONS(95),
- [sym_null] = ACTIONS(95),
- [sym_undefined] = ACTIONS(97),
- [anon_sym_AT] = ACTIONS(99),
- [anon_sym_static] = ACTIONS(101),
- [anon_sym_readonly] = ACTIONS(101),
- [anon_sym_get] = ACTIONS(101),
- [anon_sym_set] = ACTIONS(101),
- [anon_sym_declare] = ACTIONS(103),
- [anon_sym_public] = ACTIONS(101),
- [anon_sym_private] = ACTIONS(101),
- [anon_sym_protected] = ACTIONS(101),
- [anon_sym_override] = ACTIONS(101),
- [anon_sym_module] = ACTIONS(105),
- [anon_sym_any] = ACTIONS(101),
- [anon_sym_number] = ACTIONS(101),
- [anon_sym_boolean] = ACTIONS(101),
- [anon_sym_string] = ACTIONS(101),
- [anon_sym_symbol] = ACTIONS(101),
- [anon_sym_object] = ACTIONS(101),
- [anon_sym_abstract] = ACTIONS(107),
- [anon_sym_interface] = ACTIONS(109),
- [anon_sym_enum] = ACTIONS(111),
- [sym_html_comment] = ACTIONS(5),
- },
- [2] = {
- [sym_import] = STATE(3290),
- [sym_parenthesized_expression] = STATE(1179),
- [sym_expression] = STATE(2415),
- [sym_primary_expression] = STATE(1468),
- [sym_yield_expression] = STATE(1634),
- [sym_object] = STATE(1650),
- [sym_object_pattern] = STATE(3588),
- [sym_array] = STATE(1650),
- [sym_array_pattern] = STATE(3588),
- [sym_glimmer_template] = STATE(1634),
- [sym_jsx_element] = STATE(1634),
- [sym_jsx_opening_element] = STATE(3026),
- [sym_nested_identifier] = STATE(5707),
- [sym_jsx_self_closing_element] = STATE(1634),
- [sym_class] = STATE(1650),
- [sym_function_expression] = STATE(1650),
- [sym_generator_function] = STATE(1650),
- [sym_arrow_function] = STATE(1650),
- [sym__call_signature] = STATE(5619),
- [sym_call_expression] = STATE(1650),
- [sym_new_expression] = STATE(1634),
- [sym_await_expression] = STATE(1634),
- [sym_member_expression] = STATE(1221),
- [sym_subscript_expression] = STATE(1221),
- [sym_assignment_expression] = STATE(1634),
- [sym__augmented_assignment_lhs] = STATE(2878),
- [sym_augmented_assignment_expression] = STATE(1634),
- [sym__destructuring_pattern] = STATE(3588),
- [sym_ternary_expression] = STATE(1634),
- [sym_binary_expression] = STATE(1634),
- [sym_unary_expression] = STATE(1634),
- [sym_update_expression] = STATE(1634),
- [sym_string] = STATE(2271),
- [sym_template_string] = STATE(1650),
- [sym_regex] = STATE(1650),
- [sym_meta_property] = STATE(1650),
- [sym_decorator] = STATE(1244),
- [sym_formal_parameters] = STATE(3952),
- [sym_pattern] = STATE(4300),
- [sym_rest_pattern] = STATE(3700),
- [sym_non_null_expression] = STATE(1221),
- [sym_as_expression] = STATE(1634),
- [sym_satisfies_expression] = STATE(1634),
- [sym_instantiation_expression] = STATE(1634),
- [sym_internal_module] = STATE(1634),
- [sym_nested_type_identifier] = STATE(2828),
- [sym__type_query_member_expression_in_type_annotation] = STATE(2846),
- [sym__type_query_call_expression_in_type_annotation] = STATE(2850),
- [sym_type] = STATE(3014),
- [sym_constructor_type] = STATE(2896),
- [sym_primary_type] = STATE(2897),
- [sym_template_literal_type] = STATE(2885),
- [sym_infer_type] = STATE(2896),
- [sym_conditional_type] = STATE(2885),
- [sym_generic_type] = STATE(2885),
- [sym_type_query] = STATE(2885),
- [sym_index_type_query] = STATE(2885),
- [sym_lookup_type] = STATE(2885),
- [sym_literal_type] = STATE(2885),
- [sym__number] = STATE(2903),
- [sym_existential_type] = STATE(2885),
- [sym_flow_maybe_type] = STATE(2885),
- [sym_parenthesized_type] = STATE(2885),
- [sym_predefined_type] = STATE(2885),
- [sym_object_type] = STATE(2885),
- [sym_type_parameters] = STATE(5276),
- [sym_array_type] = STATE(2885),
- [sym_tuple_type] = STATE(2885),
- [sym_readonly_type] = STATE(2896),
- [sym_union_type] = STATE(2885),
- [sym_intersection_type] = STATE(2885),
- [sym_function_type] = STATE(2896),
- [aux_sym_export_statement_repeat1] = STATE(4458),
- [sym_identifier] = ACTIONS(113),
- [anon_sym_export] = ACTIONS(115),
- [anon_sym_STAR] = ACTIONS(117),
- [anon_sym_type] = ACTIONS(115),
- [anon_sym_EQ] = ACTIONS(119),
- [anon_sym_as] = ACTIONS(122),
- [anon_sym_namespace] = ACTIONS(124),
- [anon_sym_LBRACE] = ACTIONS(126),
- [anon_sym_COMMA] = ACTIONS(128),
- [anon_sym_typeof] = ACTIONS(131),
- [anon_sym_import] = ACTIONS(133),
- [anon_sym_let] = ACTIONS(115),
- [anon_sym_const] = ACTIONS(135),
- [anon_sym_BANG] = ACTIONS(137),
- [anon_sym_LPAREN] = ACTIONS(140),
- [anon_sym_RPAREN] = ACTIONS(128),
- [anon_sym_await] = ACTIONS(142),
- [anon_sym_in] = ACTIONS(122),
- [anon_sym_COLON] = ACTIONS(128),
- [anon_sym_yield] = ACTIONS(144),
- [anon_sym_LBRACK] = ACTIONS(146),
- [sym_glimmer_opening_tag] = ACTIONS(148),
- [anon_sym_GT] = ACTIONS(122),
- [anon_sym_DOT] = ACTIONS(122),
- [anon_sym_DQUOTE] = ACTIONS(150),
- [anon_sym_SQUOTE] = ACTIONS(152),
- [anon_sym_class] = ACTIONS(154),
- [anon_sym_async] = ACTIONS(156),
- [anon_sym_function] = ACTIONS(158),
- [anon_sym_EQ_GT] = ACTIONS(160),
- [anon_sym_QMARK_DOT] = ACTIONS(162),
- [anon_sym_new] = ACTIONS(164),
- [anon_sym_using] = ACTIONS(166),
- [anon_sym_PLUS_EQ] = ACTIONS(168),
- [anon_sym_DASH_EQ] = ACTIONS(168),
- [anon_sym_STAR_EQ] = ACTIONS(168),
- [anon_sym_SLASH_EQ] = ACTIONS(168),
- [anon_sym_PERCENT_EQ] = ACTIONS(168),
- [anon_sym_CARET_EQ] = ACTIONS(168),
- [anon_sym_AMP_EQ] = ACTIONS(168),
- [anon_sym_PIPE_EQ] = ACTIONS(168),
- [anon_sym_GT_GT_EQ] = ACTIONS(168),
- [anon_sym_GT_GT_GT_EQ] = ACTIONS(168),
- [anon_sym_LT_LT_EQ] = ACTIONS(168),
- [anon_sym_STAR_STAR_EQ] = ACTIONS(168),
- [anon_sym_AMP_AMP_EQ] = ACTIONS(168),
- [anon_sym_PIPE_PIPE_EQ] = ACTIONS(168),
- [anon_sym_QMARK_QMARK_EQ] = ACTIONS(168),
- [anon_sym_DOT_DOT_DOT] = ACTIONS(170),
- [anon_sym_AMP_AMP] = ACTIONS(122),
- [anon_sym_PIPE_PIPE] = ACTIONS(122),
- [anon_sym_GT_GT] = ACTIONS(122),
- [anon_sym_GT_GT_GT] = ACTIONS(122),
- [anon_sym_LT_LT] = ACTIONS(122),
- [anon_sym_AMP] = ACTIONS(172),
- [anon_sym_CARET] = ACTIONS(122),
- [anon_sym_PIPE] = ACTIONS(174),
- [anon_sym_PLUS] = ACTIONS(176),
- [anon_sym_DASH] = ACTIONS(176),
- [anon_sym_SLASH] = ACTIONS(178),
- [anon_sym_PERCENT] = ACTIONS(122),
- [anon_sym_STAR_STAR] = ACTIONS(122),
- [anon_sym_LT] = ACTIONS(181),
- [anon_sym_LT_EQ] = ACTIONS(162),
- [anon_sym_EQ_EQ] = ACTIONS(122),
- [anon_sym_EQ_EQ_EQ] = ACTIONS(162),
- [anon_sym_BANG_EQ] = ACTIONS(122),
- [anon_sym_BANG_EQ_EQ] = ACTIONS(162),
- [anon_sym_GT_EQ] = ACTIONS(162),
- [anon_sym_QMARK_QMARK] = ACTIONS(122),
- [anon_sym_instanceof] = ACTIONS(122),
- [anon_sym_TILDE] = ACTIONS(183),
- [anon_sym_void] = ACTIONS(185),
- [anon_sym_delete] = ACTIONS(187),
- [anon_sym_PLUS_PLUS] = ACTIONS(189),
- [anon_sym_DASH_DASH] = ACTIONS(189),
- [sym_comment] = ACTIONS(5),
- [anon_sym_BQUOTE] = ACTIONS(192),
- [sym_number] = ACTIONS(194),
- [sym_private_property_identifier] = ACTIONS(196),
- [sym_this] = ACTIONS(198),
- [sym_super] = ACTIONS(200),
- [sym_true] = ACTIONS(202),
- [sym_false] = ACTIONS(202),
- [sym_null] = ACTIONS(202),
- [sym_undefined] = ACTIONS(204),
- [anon_sym_AT] = ACTIONS(99),
- [anon_sym_static] = ACTIONS(115),
- [anon_sym_readonly] = ACTIONS(206),
- [anon_sym_get] = ACTIONS(115),
- [anon_sym_set] = ACTIONS(115),
- [anon_sym_QMARK] = ACTIONS(208),
- [anon_sym_declare] = ACTIONS(115),
- [anon_sym_public] = ACTIONS(115),
- [anon_sym_private] = ACTIONS(115),
- [anon_sym_protected] = ACTIONS(115),
- [anon_sym_override] = ACTIONS(115),
- [anon_sym_module] = ACTIONS(115),
- [anon_sym_any] = ACTIONS(210),
- [anon_sym_number] = ACTIONS(210),
- [anon_sym_boolean] = ACTIONS(210),
- [anon_sym_string] = ACTIONS(210),
- [anon_sym_symbol] = ACTIONS(210),
- [anon_sym_object] = ACTIONS(210),
- [anon_sym_abstract] = ACTIONS(212),
- [anon_sym_satisfies] = ACTIONS(122),
- [anon_sym_infer] = ACTIONS(214),
- [anon_sym_keyof] = ACTIONS(216),
- [anon_sym_unique] = ACTIONS(218),
- [anon_sym_unknown] = ACTIONS(220),
- [anon_sym_never] = ACTIONS(220),
- [anon_sym_LBRACE_PIPE] = ACTIONS(222),
- [sym__ternary_qmark] = ACTIONS(162),
- [sym_html_comment] = ACTIONS(5),
- },
- [3] = {
- [sym_import] = STATE(3290),
- [sym_parenthesized_expression] = STATE(1179),
- [sym_expression] = STATE(2415),
- [sym_primary_expression] = STATE(1468),
- [sym_yield_expression] = STATE(1634),
- [sym_object] = STATE(1650),
- [sym_object_pattern] = STATE(3588),
- [sym_array] = STATE(1650),
- [sym_array_pattern] = STATE(3588),
- [sym_glimmer_template] = STATE(1634),
- [sym_jsx_element] = STATE(1634),
- [sym_jsx_opening_element] = STATE(3026),
- [sym_nested_identifier] = STATE(5707),
- [sym_jsx_self_closing_element] = STATE(1634),
- [sym_class] = STATE(1650),
- [sym_function_expression] = STATE(1650),
- [sym_generator_function] = STATE(1650),
- [sym_arrow_function] = STATE(1650),
- [sym__call_signature] = STATE(5619),
- [sym_call_expression] = STATE(1650),
- [sym_new_expression] = STATE(1634),
- [sym_await_expression] = STATE(1634),
- [sym_member_expression] = STATE(1221),
- [sym_subscript_expression] = STATE(1221),
- [sym_assignment_expression] = STATE(1634),
- [sym__augmented_assignment_lhs] = STATE(2878),
- [sym_augmented_assignment_expression] = STATE(1634),
- [sym__destructuring_pattern] = STATE(3588),
- [sym_ternary_expression] = STATE(1634),
- [sym_binary_expression] = STATE(1634),
- [sym_unary_expression] = STATE(1634),
- [sym_update_expression] = STATE(1634),
- [sym_string] = STATE(2271),
- [sym_template_string] = STATE(1650),
- [sym_regex] = STATE(1650),
- [sym_meta_property] = STATE(1650),
- [sym_decorator] = STATE(1244),
- [sym_formal_parameters] = STATE(3952),
- [sym_pattern] = STATE(4300),
- [sym_rest_pattern] = STATE(3700),
- [sym_non_null_expression] = STATE(1221),
- [sym_as_expression] = STATE(1634),
- [sym_satisfies_expression] = STATE(1634),
- [sym_instantiation_expression] = STATE(1634),
- [sym_internal_module] = STATE(1634),
- [sym_nested_type_identifier] = STATE(2828),
- [sym__type_query_member_expression_in_type_annotation] = STATE(2846),
- [sym__type_query_call_expression_in_type_annotation] = STATE(2850),
- [sym_type] = STATE(3014),
- [sym_constructor_type] = STATE(2896),
- [sym_primary_type] = STATE(2897),
- [sym_template_literal_type] = STATE(2885),
- [sym_infer_type] = STATE(2896),
- [sym_conditional_type] = STATE(2885),
- [sym_generic_type] = STATE(2885),
- [sym_type_query] = STATE(2885),
- [sym_index_type_query] = STATE(2885),
- [sym_lookup_type] = STATE(2885),
- [sym_literal_type] = STATE(2885),
- [sym__number] = STATE(2903),
- [sym_existential_type] = STATE(2885),
- [sym_flow_maybe_type] = STATE(2885),
- [sym_parenthesized_type] = STATE(2885),
- [sym_predefined_type] = STATE(2885),
- [sym_object_type] = STATE(2885),
- [sym_type_parameters] = STATE(5276),
- [sym_array_type] = STATE(2885),
- [sym_tuple_type] = STATE(2885),
- [sym_readonly_type] = STATE(2896),
- [sym_union_type] = STATE(2885),
- [sym_intersection_type] = STATE(2885),
- [sym_function_type] = STATE(2896),
- [aux_sym_export_statement_repeat1] = STATE(4458),
- [sym_identifier] = ACTIONS(113),
- [anon_sym_export] = ACTIONS(115),
- [anon_sym_STAR] = ACTIONS(117),
- [anon_sym_type] = ACTIONS(115),
- [anon_sym_EQ] = ACTIONS(224),
- [anon_sym_as] = ACTIONS(122),
- [anon_sym_namespace] = ACTIONS(124),
- [anon_sym_LBRACE] = ACTIONS(126),
- [anon_sym_COMMA] = ACTIONS(227),
- [anon_sym_typeof] = ACTIONS(131),
- [anon_sym_import] = ACTIONS(133),
- [anon_sym_let] = ACTIONS(115),
- [anon_sym_const] = ACTIONS(135),
- [anon_sym_BANG] = ACTIONS(137),
- [anon_sym_LPAREN] = ACTIONS(140),
- [anon_sym_RPAREN] = ACTIONS(227),
- [anon_sym_await] = ACTIONS(142),
- [anon_sym_in] = ACTIONS(122),
- [anon_sym_COLON] = ACTIONS(227),
- [anon_sym_yield] = ACTIONS(144),
- [anon_sym_LBRACK] = ACTIONS(146),
- [sym_glimmer_opening_tag] = ACTIONS(148),
- [anon_sym_GT] = ACTIONS(122),
- [anon_sym_DOT] = ACTIONS(122),
- [anon_sym_DQUOTE] = ACTIONS(150),
- [anon_sym_SQUOTE] = ACTIONS(152),
- [anon_sym_class] = ACTIONS(154),
- [anon_sym_async] = ACTIONS(156),
- [anon_sym_function] = ACTIONS(158),
- [anon_sym_EQ_GT] = ACTIONS(229),
- [anon_sym_QMARK_DOT] = ACTIONS(162),
- [anon_sym_new] = ACTIONS(164),
- [anon_sym_using] = ACTIONS(166),
- [anon_sym_PLUS_EQ] = ACTIONS(168),
- [anon_sym_DASH_EQ] = ACTIONS(168),
- [anon_sym_STAR_EQ] = ACTIONS(168),
- [anon_sym_SLASH_EQ] = ACTIONS(168),
- [anon_sym_PERCENT_EQ] = ACTIONS(168),
- [anon_sym_CARET_EQ] = ACTIONS(168),
- [anon_sym_AMP_EQ] = ACTIONS(168),
- [anon_sym_PIPE_EQ] = ACTIONS(168),
- [anon_sym_GT_GT_EQ] = ACTIONS(168),
- [anon_sym_GT_GT_GT_EQ] = ACTIONS(168),
- [anon_sym_LT_LT_EQ] = ACTIONS(168),
- [anon_sym_STAR_STAR_EQ] = ACTIONS(168),
- [anon_sym_AMP_AMP_EQ] = ACTIONS(168),
- [anon_sym_PIPE_PIPE_EQ] = ACTIONS(168),
- [anon_sym_QMARK_QMARK_EQ] = ACTIONS(168),
- [anon_sym_DOT_DOT_DOT] = ACTIONS(170),
- [anon_sym_AMP_AMP] = ACTIONS(122),
- [anon_sym_PIPE_PIPE] = ACTIONS(122),
- [anon_sym_GT_GT] = ACTIONS(122),
- [anon_sym_GT_GT_GT] = ACTIONS(122),
- [anon_sym_LT_LT] = ACTIONS(122),
- [anon_sym_AMP] = ACTIONS(172),
- [anon_sym_CARET] = ACTIONS(122),
- [anon_sym_PIPE] = ACTIONS(174),
- [anon_sym_PLUS] = ACTIONS(176),
- [anon_sym_DASH] = ACTIONS(176),
- [anon_sym_SLASH] = ACTIONS(178),
- [anon_sym_PERCENT] = ACTIONS(122),
- [anon_sym_STAR_STAR] = ACTIONS(122),
- [anon_sym_LT] = ACTIONS(181),
- [anon_sym_LT_EQ] = ACTIONS(162),
- [anon_sym_EQ_EQ] = ACTIONS(122),
- [anon_sym_EQ_EQ_EQ] = ACTIONS(162),
- [anon_sym_BANG_EQ] = ACTIONS(122),
- [anon_sym_BANG_EQ_EQ] = ACTIONS(162),
- [anon_sym_GT_EQ] = ACTIONS(162),
- [anon_sym_QMARK_QMARK] = ACTIONS(122),
- [anon_sym_instanceof] = ACTIONS(122),
- [anon_sym_TILDE] = ACTIONS(183),
- [anon_sym_void] = ACTIONS(185),
- [anon_sym_delete] = ACTIONS(187),
- [anon_sym_PLUS_PLUS] = ACTIONS(189),
- [anon_sym_DASH_DASH] = ACTIONS(189),
- [sym_comment] = ACTIONS(5),
- [anon_sym_BQUOTE] = ACTIONS(192),
- [sym_number] = ACTIONS(194),
- [sym_private_property_identifier] = ACTIONS(196),
- [sym_this] = ACTIONS(198),
- [sym_super] = ACTIONS(200),
- [sym_true] = ACTIONS(202),
- [sym_false] = ACTIONS(202),
- [sym_null] = ACTIONS(202),
- [sym_undefined] = ACTIONS(204),
- [anon_sym_AT] = ACTIONS(99),
- [anon_sym_static] = ACTIONS(115),
- [anon_sym_readonly] = ACTIONS(206),
- [anon_sym_get] = ACTIONS(115),
- [anon_sym_set] = ACTIONS(115),
- [anon_sym_QMARK] = ACTIONS(208),
- [anon_sym_declare] = ACTIONS(115),
- [anon_sym_public] = ACTIONS(115),
- [anon_sym_private] = ACTIONS(115),
- [anon_sym_protected] = ACTIONS(115),
- [anon_sym_override] = ACTIONS(115),
- [anon_sym_module] = ACTIONS(115),
- [anon_sym_any] = ACTIONS(210),
- [anon_sym_number] = ACTIONS(210),
- [anon_sym_boolean] = ACTIONS(210),
- [anon_sym_string] = ACTIONS(210),
- [anon_sym_symbol] = ACTIONS(210),
- [anon_sym_object] = ACTIONS(210),
- [anon_sym_abstract] = ACTIONS(212),
- [anon_sym_satisfies] = ACTIONS(122),
- [anon_sym_infer] = ACTIONS(214),
- [anon_sym_keyof] = ACTIONS(216),
- [anon_sym_unique] = ACTIONS(218),
- [anon_sym_unknown] = ACTIONS(220),
- [anon_sym_never] = ACTIONS(220),
- [anon_sym_LBRACE_PIPE] = ACTIONS(222),
- [sym__ternary_qmark] = ACTIONS(162),
- [sym_html_comment] = ACTIONS(5),
- },
- [4] = {
- [sym_export_statement] = STATE(854),
- [sym_declaration] = STATE(854),
- [sym_import] = STATE(3306),
- [sym_import_statement] = STATE(854),
- [sym_statement] = STATE(14),
- [sym_expression_statement] = STATE(854),
- [sym_variable_declaration] = STATE(861),
- [sym_lexical_declaration] = STATE(861),
- [sym_statement_block] = STATE(854),
- [sym_if_statement] = STATE(854),
- [sym_switch_statement] = STATE(854),
- [sym_for_statement] = STATE(854),
- [sym_for_in_statement] = STATE(854),
- [sym_while_statement] = STATE(854),
- [sym_do_statement] = STATE(854),
- [sym_try_statement] = STATE(854),
- [sym_with_statement] = STATE(854),
- [sym_break_statement] = STATE(854),
- [sym_continue_statement] = STATE(854),
- [sym_debugger_statement] = STATE(854),
- [sym_return_statement] = STATE(854),
- [sym_throw_statement] = STATE(854),
- [sym_empty_statement] = STATE(854),
- [sym_labeled_statement] = STATE(854),
- [sym_parenthesized_expression] = STATE(1294),
- [sym_expression] = STATE(1705),
- [sym_primary_expression] = STATE(1946),
- [sym_yield_expression] = STATE(2234),
- [sym_object] = STATE(2310),
- [sym_object_pattern] = STATE(5603),
- [sym_object_assignment_pattern] = STATE(4861),
- [sym_array] = STATE(2310),
- [sym_array_pattern] = STATE(5603),
- [sym_glimmer_template] = STATE(2234),
- [sym_jsx_element] = STATE(2234),
- [sym_jsx_opening_element] = STATE(3051),
- [sym_jsx_self_closing_element] = STATE(2234),
- [sym_class] = STATE(2310),
- [sym_class_declaration] = STATE(861),
- [sym_function_expression] = STATE(2310),
- [sym_function_declaration] = STATE(861),
- [sym_generator_function] = STATE(2310),
- [sym_generator_function_declaration] = STATE(861),
- [sym_arrow_function] = STATE(2310),
- [sym__call_signature] = STATE(5809),
- [sym_call_expression] = STATE(2310),
- [sym_new_expression] = STATE(2234),
- [sym_await_expression] = STATE(2234),
- [sym_member_expression] = STATE(1294),
- [sym_subscript_expression] = STATE(1294),
- [sym_assignment_expression] = STATE(2234),
- [sym__augmented_assignment_lhs] = STATE(2875),
- [sym_augmented_assignment_expression] = STATE(2234),
- [sym__destructuring_pattern] = STATE(5603),
- [sym_spread_element] = STATE(4603),
- [sym_ternary_expression] = STATE(2234),
- [sym_binary_expression] = STATE(2234),
- [sym_unary_expression] = STATE(2234),
- [sym_update_expression] = STATE(2234),
- [sym_sequence_expression] = STATE(5482),
- [sym_string] = STATE(2195),
- [sym_template_string] = STATE(2310),
- [sym_regex] = STATE(2310),
- [sym_meta_property] = STATE(2310),
- [sym_decorator] = STATE(1244),
- [sym_formal_parameters] = STATE(3742),
- [sym_rest_pattern] = STATE(4861),
- [sym_method_definition] = STATE(4603),
- [sym_pair] = STATE(4603),
- [sym_pair_pattern] = STATE(4861),
- [sym__property_name] = STATE(3665),
- [sym_computed_property_name] = STATE(3665),
- [sym_non_null_expression] = STATE(1294),
- [sym_function_signature] = STATE(861),
- [sym_as_expression] = STATE(2234),
- [sym_satisfies_expression] = STATE(2234),
- [sym_instantiation_expression] = STATE(2234),
- [sym_ambient_declaration] = STATE(861),
- [sym_abstract_class_declaration] = STATE(861),
- [sym_module] = STATE(861),
- [sym_internal_module] = STATE(223),
- [sym_import_alias] = STATE(861),
- [sym_interface_declaration] = STATE(861),
- [sym_enum_declaration] = STATE(861),
- [sym_type_alias_declaration] = STATE(861),
- [sym_accessibility_modifier] = STATE(2682),
- [sym_override_modifier] = STATE(2711),
- [sym_type_parameters] = STATE(5349),
- [aux_sym_program_repeat1] = STATE(14),
- [aux_sym_export_statement_repeat1] = STATE(3848),
- [aux_sym_object_repeat1] = STATE(4682),
- [aux_sym_object_pattern_repeat1] = STATE(4759),
- [sym_identifier] = ACTIONS(231),
- [anon_sym_export] = ACTIONS(233),
- [anon_sym_STAR] = ACTIONS(235),
- [anon_sym_type] = ACTIONS(237),
- [anon_sym_namespace] = ACTIONS(239),
- [anon_sym_LBRACE] = ACTIONS(19),
- [anon_sym_COMMA] = ACTIONS(241),
- [anon_sym_RBRACE] = ACTIONS(243),
- [anon_sym_typeof] = ACTIONS(21),
- [anon_sym_import] = ACTIONS(23),
- [anon_sym_with] = ACTIONS(25),
- [anon_sym_var] = ACTIONS(27),
- [anon_sym_let] = ACTIONS(245),
- [anon_sym_const] = ACTIONS(31),
- [anon_sym_BANG] = ACTIONS(33),
- [anon_sym_if] = ACTIONS(35),
- [anon_sym_switch] = ACTIONS(37),
- [anon_sym_for] = ACTIONS(39),
- [anon_sym_LPAREN] = ACTIONS(41),
- [anon_sym_await] = ACTIONS(43),
- [anon_sym_while] = ACTIONS(45),
- [anon_sym_do] = ACTIONS(47),
- [anon_sym_try] = ACTIONS(49),
- [anon_sym_break] = ACTIONS(51),
- [anon_sym_continue] = ACTIONS(53),
- [anon_sym_debugger] = ACTIONS(55),
- [anon_sym_return] = ACTIONS(57),
- [anon_sym_throw] = ACTIONS(59),
- [anon_sym_SEMI] = ACTIONS(61),
- [anon_sym_yield] = ACTIONS(63),
- [anon_sym_LBRACK] = ACTIONS(247),
- [sym_glimmer_opening_tag] = ACTIONS(67),
- [anon_sym_DQUOTE] = ACTIONS(69),
- [anon_sym_SQUOTE] = ACTIONS(71),
- [anon_sym_class] = ACTIONS(73),
- [anon_sym_async] = ACTIONS(249),
- [anon_sym_function] = ACTIONS(77),
- [anon_sym_new] = ACTIONS(251),
- [anon_sym_using] = ACTIONS(81),
- [anon_sym_DOT_DOT_DOT] = ACTIONS(253),
- [anon_sym_PLUS] = ACTIONS(21),
- [anon_sym_DASH] = ACTIONS(21),
- [anon_sym_SLASH] = ACTIONS(83),
- [anon_sym_LT] = ACTIONS(85),
- [anon_sym_TILDE] = ACTIONS(33),
- [anon_sym_void] = ACTIONS(21),
- [anon_sym_delete] = ACTIONS(21),
- [anon_sym_PLUS_PLUS] = ACTIONS(87),
- [anon_sym_DASH_DASH] = ACTIONS(87),
- [sym_comment] = ACTIONS(5),
- [anon_sym_BQUOTE] = ACTIONS(89),
- [sym_number] = ACTIONS(255),
- [sym_private_property_identifier] = ACTIONS(257),
- [sym_this] = ACTIONS(95),
- [sym_super] = ACTIONS(95),
- [sym_true] = ACTIONS(95),
- [sym_false] = ACTIONS(95),
- [sym_null] = ACTIONS(95),
- [sym_undefined] = ACTIONS(97),
- [anon_sym_AT] = ACTIONS(99),
- [anon_sym_static] = ACTIONS(259),
- [anon_sym_readonly] = ACTIONS(261),
- [anon_sym_get] = ACTIONS(263),
- [anon_sym_set] = ACTIONS(263),
- [anon_sym_declare] = ACTIONS(265),
- [anon_sym_public] = ACTIONS(267),
- [anon_sym_private] = ACTIONS(267),
- [anon_sym_protected] = ACTIONS(267),
- [anon_sym_override] = ACTIONS(269),
- [anon_sym_module] = ACTIONS(271),
- [anon_sym_any] = ACTIONS(273),
- [anon_sym_number] = ACTIONS(273),
- [anon_sym_boolean] = ACTIONS(273),
- [anon_sym_string] = ACTIONS(273),
- [anon_sym_symbol] = ACTIONS(273),
- [anon_sym_object] = ACTIONS(273),
- [anon_sym_abstract] = ACTIONS(107),
- [anon_sym_interface] = ACTIONS(109),
- [anon_sym_enum] = ACTIONS(111),
- [sym_html_comment] = ACTIONS(5),
- },
- [5] = {
- [sym_export_statement] = STATE(854),
- [sym_declaration] = STATE(854),
- [sym_import] = STATE(3306),
- [sym_import_statement] = STATE(854),
- [sym_statement] = STATE(14),
- [sym_expression_statement] = STATE(854),
- [sym_variable_declaration] = STATE(861),
- [sym_lexical_declaration] = STATE(861),
- [sym_statement_block] = STATE(854),
- [sym_if_statement] = STATE(854),
- [sym_switch_statement] = STATE(854),
- [sym_for_statement] = STATE(854),
- [sym_for_in_statement] = STATE(854),
- [sym_while_statement] = STATE(854),
- [sym_do_statement] = STATE(854),
- [sym_try_statement] = STATE(854),
- [sym_with_statement] = STATE(854),
- [sym_break_statement] = STATE(854),
- [sym_continue_statement] = STATE(854),
- [sym_debugger_statement] = STATE(854),
- [sym_return_statement] = STATE(854),
- [sym_throw_statement] = STATE(854),
- [sym_empty_statement] = STATE(854),
- [sym_labeled_statement] = STATE(854),
- [sym_parenthesized_expression] = STATE(1294),
- [sym_expression] = STATE(1705),
- [sym_primary_expression] = STATE(1946),
- [sym_yield_expression] = STATE(2234),
- [sym_object] = STATE(2310),
- [sym_object_pattern] = STATE(5603),
- [sym_object_assignment_pattern] = STATE(4861),
- [sym_array] = STATE(2310),
- [sym_array_pattern] = STATE(5603),
- [sym_glimmer_template] = STATE(2234),
- [sym_jsx_element] = STATE(2234),
- [sym_jsx_opening_element] = STATE(3051),
- [sym_jsx_self_closing_element] = STATE(2234),
- [sym_class] = STATE(2310),
- [sym_class_declaration] = STATE(861),
- [sym_function_expression] = STATE(2310),
- [sym_function_declaration] = STATE(861),
- [sym_generator_function] = STATE(2310),
- [sym_generator_function_declaration] = STATE(861),
- [sym_arrow_function] = STATE(2310),
- [sym__call_signature] = STATE(5809),
- [sym_call_expression] = STATE(2310),
- [sym_new_expression] = STATE(2234),
- [sym_await_expression] = STATE(2234),
- [sym_member_expression] = STATE(1294),
- [sym_subscript_expression] = STATE(1294),
- [sym_assignment_expression] = STATE(2234),
- [sym__augmented_assignment_lhs] = STATE(2875),
- [sym_augmented_assignment_expression] = STATE(2234),
- [sym__destructuring_pattern] = STATE(5603),
- [sym_spread_element] = STATE(4603),
- [sym_ternary_expression] = STATE(2234),
- [sym_binary_expression] = STATE(2234),
- [sym_unary_expression] = STATE(2234),
- [sym_update_expression] = STATE(2234),
- [sym_sequence_expression] = STATE(5482),
- [sym_string] = STATE(2195),
- [sym_template_string] = STATE(2310),
- [sym_regex] = STATE(2310),
- [sym_meta_property] = STATE(2310),
- [sym_decorator] = STATE(1244),
- [sym_formal_parameters] = STATE(3742),
- [sym_rest_pattern] = STATE(4861),
- [sym_method_definition] = STATE(4603),
- [sym_pair] = STATE(4603),
- [sym_pair_pattern] = STATE(4861),
- [sym__property_name] = STATE(3665),
- [sym_computed_property_name] = STATE(3665),
- [sym_non_null_expression] = STATE(1294),
- [sym_function_signature] = STATE(861),
- [sym_as_expression] = STATE(2234),
- [sym_satisfies_expression] = STATE(2234),
- [sym_instantiation_expression] = STATE(2234),
- [sym_ambient_declaration] = STATE(861),
- [sym_abstract_class_declaration] = STATE(861),
- [sym_module] = STATE(861),
- [sym_internal_module] = STATE(223),
- [sym_import_alias] = STATE(861),
- [sym_interface_declaration] = STATE(861),
- [sym_enum_declaration] = STATE(861),
- [sym_type_alias_declaration] = STATE(861),
- [sym_accessibility_modifier] = STATE(2682),
- [sym_override_modifier] = STATE(2711),
- [sym_type_parameters] = STATE(5349),
- [aux_sym_program_repeat1] = STATE(14),
- [aux_sym_export_statement_repeat1] = STATE(3848),
- [aux_sym_object_repeat1] = STATE(4682),
- [aux_sym_object_pattern_repeat1] = STATE(4759),
- [sym_identifier] = ACTIONS(231),
- [anon_sym_export] = ACTIONS(233),
- [anon_sym_STAR] = ACTIONS(235),
- [anon_sym_type] = ACTIONS(237),
- [anon_sym_namespace] = ACTIONS(239),
- [anon_sym_LBRACE] = ACTIONS(19),
- [anon_sym_COMMA] = ACTIONS(241),
- [anon_sym_RBRACE] = ACTIONS(275),
- [anon_sym_typeof] = ACTIONS(21),
- [anon_sym_import] = ACTIONS(23),
- [anon_sym_with] = ACTIONS(25),
- [anon_sym_var] = ACTIONS(27),
- [anon_sym_let] = ACTIONS(245),
- [anon_sym_const] = ACTIONS(31),
- [anon_sym_BANG] = ACTIONS(33),
- [anon_sym_if] = ACTIONS(35),
- [anon_sym_switch] = ACTIONS(37),
- [anon_sym_for] = ACTIONS(39),
- [anon_sym_LPAREN] = ACTIONS(41),
- [anon_sym_await] = ACTIONS(43),
- [anon_sym_while] = ACTIONS(45),
- [anon_sym_do] = ACTIONS(47),
- [anon_sym_try] = ACTIONS(49),
- [anon_sym_break] = ACTIONS(51),
- [anon_sym_continue] = ACTIONS(53),
- [anon_sym_debugger] = ACTIONS(55),
- [anon_sym_return] = ACTIONS(57),
- [anon_sym_throw] = ACTIONS(59),
- [anon_sym_SEMI] = ACTIONS(61),
- [anon_sym_yield] = ACTIONS(63),
- [anon_sym_LBRACK] = ACTIONS(247),
- [sym_glimmer_opening_tag] = ACTIONS(67),
- [anon_sym_DQUOTE] = ACTIONS(69),
- [anon_sym_SQUOTE] = ACTIONS(71),
- [anon_sym_class] = ACTIONS(73),
- [anon_sym_async] = ACTIONS(249),
- [anon_sym_function] = ACTIONS(77),
- [anon_sym_new] = ACTIONS(251),
- [anon_sym_using] = ACTIONS(81),
- [anon_sym_DOT_DOT_DOT] = ACTIONS(253),
- [anon_sym_PLUS] = ACTIONS(21),
- [anon_sym_DASH] = ACTIONS(21),
- [anon_sym_SLASH] = ACTIONS(83),
- [anon_sym_LT] = ACTIONS(85),
- [anon_sym_TILDE] = ACTIONS(33),
- [anon_sym_void] = ACTIONS(21),
- [anon_sym_delete] = ACTIONS(21),
- [anon_sym_PLUS_PLUS] = ACTIONS(87),
- [anon_sym_DASH_DASH] = ACTIONS(87),
- [sym_comment] = ACTIONS(5),
- [anon_sym_BQUOTE] = ACTIONS(89),
- [sym_number] = ACTIONS(255),
- [sym_private_property_identifier] = ACTIONS(257),
- [sym_this] = ACTIONS(95),
- [sym_super] = ACTIONS(95),
- [sym_true] = ACTIONS(95),
- [sym_false] = ACTIONS(95),
- [sym_null] = ACTIONS(95),
- [sym_undefined] = ACTIONS(97),
- [anon_sym_AT] = ACTIONS(99),
- [anon_sym_static] = ACTIONS(259),
- [anon_sym_readonly] = ACTIONS(261),
- [anon_sym_get] = ACTIONS(263),
- [anon_sym_set] = ACTIONS(263),
- [anon_sym_declare] = ACTIONS(265),
- [anon_sym_public] = ACTIONS(267),
- [anon_sym_private] = ACTIONS(267),
- [anon_sym_protected] = ACTIONS(267),
- [anon_sym_override] = ACTIONS(269),
- [anon_sym_module] = ACTIONS(271),
- [anon_sym_any] = ACTIONS(273),
- [anon_sym_number] = ACTIONS(273),
- [anon_sym_boolean] = ACTIONS(273),
- [anon_sym_string] = ACTIONS(273),
- [anon_sym_symbol] = ACTIONS(273),
- [anon_sym_object] = ACTIONS(273),
- [anon_sym_abstract] = ACTIONS(107),
- [anon_sym_interface] = ACTIONS(109),
- [anon_sym_enum] = ACTIONS(111),
- [sym_html_comment] = ACTIONS(5),
- },
- [6] = {
- [sym_export_statement] = STATE(854),
- [sym_declaration] = STATE(854),
- [sym_import] = STATE(3306),
- [sym_import_statement] = STATE(854),
- [sym_statement] = STATE(19),
- [sym_expression_statement] = STATE(854),
- [sym_variable_declaration] = STATE(861),
- [sym_lexical_declaration] = STATE(861),
- [sym_statement_block] = STATE(854),
- [sym_if_statement] = STATE(854),
- [sym_switch_statement] = STATE(854),
- [sym_for_statement] = STATE(854),
- [sym_for_in_statement] = STATE(854),
- [sym_while_statement] = STATE(854),
- [sym_do_statement] = STATE(854),
- [sym_try_statement] = STATE(854),
- [sym_with_statement] = STATE(854),
- [sym_break_statement] = STATE(854),
- [sym_continue_statement] = STATE(854),
- [sym_debugger_statement] = STATE(854),
- [sym_return_statement] = STATE(854),
- [sym_throw_statement] = STATE(854),
- [sym_empty_statement] = STATE(854),
- [sym_labeled_statement] = STATE(854),
- [sym_parenthesized_expression] = STATE(1294),
- [sym_expression] = STATE(1705),
- [sym_primary_expression] = STATE(1946),
- [sym_yield_expression] = STATE(2234),
- [sym_object] = STATE(2310),
- [sym_object_pattern] = STATE(5603),
- [sym_object_assignment_pattern] = STATE(4861),
- [sym_array] = STATE(2310),
- [sym_array_pattern] = STATE(5603),
- [sym_glimmer_template] = STATE(2234),
- [sym_jsx_element] = STATE(2234),
- [sym_jsx_opening_element] = STATE(3051),
- [sym_jsx_self_closing_element] = STATE(2234),
- [sym_class] = STATE(2310),
- [sym_class_declaration] = STATE(861),
- [sym_function_expression] = STATE(2310),
- [sym_function_declaration] = STATE(861),
- [sym_generator_function] = STATE(2310),
- [sym_generator_function_declaration] = STATE(861),
- [sym_arrow_function] = STATE(2310),
- [sym__call_signature] = STATE(5809),
- [sym_call_expression] = STATE(2310),
- [sym_new_expression] = STATE(2234),
- [sym_await_expression] = STATE(2234),
- [sym_member_expression] = STATE(1294),
- [sym_subscript_expression] = STATE(1294),
- [sym_assignment_expression] = STATE(2234),
- [sym__augmented_assignment_lhs] = STATE(2875),
- [sym_augmented_assignment_expression] = STATE(2234),
- [sym__destructuring_pattern] = STATE(5603),
- [sym_spread_element] = STATE(4603),
- [sym_ternary_expression] = STATE(2234),
- [sym_binary_expression] = STATE(2234),
- [sym_unary_expression] = STATE(2234),
- [sym_update_expression] = STATE(2234),
- [sym_sequence_expression] = STATE(5482),
- [sym_string] = STATE(2195),
- [sym_template_string] = STATE(2310),
- [sym_regex] = STATE(2310),
- [sym_meta_property] = STATE(2310),
- [sym_decorator] = STATE(1244),
- [sym_formal_parameters] = STATE(3742),
- [sym_rest_pattern] = STATE(4861),
- [sym_method_definition] = STATE(4603),
- [sym_pair] = STATE(4603),
- [sym_pair_pattern] = STATE(4861),
- [sym__property_name] = STATE(3665),
- [sym_computed_property_name] = STATE(3665),
- [sym_non_null_expression] = STATE(1294),
- [sym_function_signature] = STATE(861),
- [sym_as_expression] = STATE(2234),
- [sym_satisfies_expression] = STATE(2234),
- [sym_instantiation_expression] = STATE(2234),
- [sym_ambient_declaration] = STATE(861),
- [sym_abstract_class_declaration] = STATE(861),
- [sym_module] = STATE(861),
- [sym_internal_module] = STATE(223),
- [sym_import_alias] = STATE(861),
- [sym_interface_declaration] = STATE(861),
- [sym_enum_declaration] = STATE(861),
- [sym_type_alias_declaration] = STATE(861),
- [sym_accessibility_modifier] = STATE(2682),
- [sym_override_modifier] = STATE(2711),
- [sym_type_parameters] = STATE(5349),
- [aux_sym_program_repeat1] = STATE(19),
- [aux_sym_export_statement_repeat1] = STATE(3848),
- [aux_sym_object_repeat1] = STATE(4682),
- [aux_sym_object_pattern_repeat1] = STATE(4759),
- [sym_identifier] = ACTIONS(231),
- [anon_sym_export] = ACTIONS(233),
- [anon_sym_STAR] = ACTIONS(235),
- [anon_sym_type] = ACTIONS(237),
- [anon_sym_namespace] = ACTIONS(239),
- [anon_sym_LBRACE] = ACTIONS(19),
- [anon_sym_COMMA] = ACTIONS(241),
- [anon_sym_RBRACE] = ACTIONS(277),
- [anon_sym_typeof] = ACTIONS(21),
- [anon_sym_import] = ACTIONS(23),
- [anon_sym_with] = ACTIONS(25),
- [anon_sym_var] = ACTIONS(27),
- [anon_sym_let] = ACTIONS(245),
- [anon_sym_const] = ACTIONS(31),
- [anon_sym_BANG] = ACTIONS(33),
- [anon_sym_if] = ACTIONS(35),
- [anon_sym_switch] = ACTIONS(37),
- [anon_sym_for] = ACTIONS(39),
- [anon_sym_LPAREN] = ACTIONS(41),
- [anon_sym_await] = ACTIONS(43),
- [anon_sym_while] = ACTIONS(45),
- [anon_sym_do] = ACTIONS(47),
- [anon_sym_try] = ACTIONS(49),
- [anon_sym_break] = ACTIONS(51),
- [anon_sym_continue] = ACTIONS(53),
- [anon_sym_debugger] = ACTIONS(55),
- [anon_sym_return] = ACTIONS(57),
- [anon_sym_throw] = ACTIONS(59),
- [anon_sym_SEMI] = ACTIONS(61),
- [anon_sym_yield] = ACTIONS(63),
- [anon_sym_LBRACK] = ACTIONS(247),
- [sym_glimmer_opening_tag] = ACTIONS(67),
- [anon_sym_DQUOTE] = ACTIONS(69),
- [anon_sym_SQUOTE] = ACTIONS(71),
- [anon_sym_class] = ACTIONS(73),
- [anon_sym_async] = ACTIONS(249),
- [anon_sym_function] = ACTIONS(77),
- [anon_sym_new] = ACTIONS(251),
- [anon_sym_using] = ACTIONS(81),
- [anon_sym_DOT_DOT_DOT] = ACTIONS(253),
- [anon_sym_PLUS] = ACTIONS(21),
- [anon_sym_DASH] = ACTIONS(21),
- [anon_sym_SLASH] = ACTIONS(83),
- [anon_sym_LT] = ACTIONS(85),
- [anon_sym_TILDE] = ACTIONS(33),
- [anon_sym_void] = ACTIONS(21),
- [anon_sym_delete] = ACTIONS(21),
- [anon_sym_PLUS_PLUS] = ACTIONS(87),
- [anon_sym_DASH_DASH] = ACTIONS(87),
- [sym_comment] = ACTIONS(5),
- [anon_sym_BQUOTE] = ACTIONS(89),
- [sym_number] = ACTIONS(255),
- [sym_private_property_identifier] = ACTIONS(257),
- [sym_this] = ACTIONS(95),
- [sym_super] = ACTIONS(95),
- [sym_true] = ACTIONS(95),
- [sym_false] = ACTIONS(95),
- [sym_null] = ACTIONS(95),
- [sym_undefined] = ACTIONS(97),
- [anon_sym_AT] = ACTIONS(99),
- [anon_sym_static] = ACTIONS(259),
- [anon_sym_readonly] = ACTIONS(261),
- [anon_sym_get] = ACTIONS(263),
- [anon_sym_set] = ACTIONS(263),
- [anon_sym_declare] = ACTIONS(265),
- [anon_sym_public] = ACTIONS(267),
- [anon_sym_private] = ACTIONS(267),
- [anon_sym_protected] = ACTIONS(267),
- [anon_sym_override] = ACTIONS(269),
- [anon_sym_module] = ACTIONS(271),
- [anon_sym_any] = ACTIONS(273),
- [anon_sym_number] = ACTIONS(273),
- [anon_sym_boolean] = ACTIONS(273),
- [anon_sym_string] = ACTIONS(273),
- [anon_sym_symbol] = ACTIONS(273),
- [anon_sym_object] = ACTIONS(273),
- [anon_sym_abstract] = ACTIONS(107),
- [anon_sym_interface] = ACTIONS(109),
- [anon_sym_enum] = ACTIONS(111),
- [sym_html_comment] = ACTIONS(5),
- },
- [7] = {
- [sym_export_statement] = STATE(854),
- [sym_declaration] = STATE(854),
- [sym_import] = STATE(3306),
- [sym_import_statement] = STATE(854),
- [sym_statement] = STATE(22),
- [sym_expression_statement] = STATE(854),
- [sym_variable_declaration] = STATE(861),
- [sym_lexical_declaration] = STATE(861),
- [sym_statement_block] = STATE(854),
- [sym_if_statement] = STATE(854),
- [sym_switch_statement] = STATE(854),
- [sym_for_statement] = STATE(854),
- [sym_for_in_statement] = STATE(854),
- [sym_while_statement] = STATE(854),
- [sym_do_statement] = STATE(854),
- [sym_try_statement] = STATE(854),
- [sym_with_statement] = STATE(854),
- [sym_break_statement] = STATE(854),
- [sym_continue_statement] = STATE(854),
- [sym_debugger_statement] = STATE(854),
- [sym_return_statement] = STATE(854),
- [sym_throw_statement] = STATE(854),
- [sym_empty_statement] = STATE(854),
- [sym_labeled_statement] = STATE(854),
- [sym_parenthesized_expression] = STATE(1294),
- [sym_expression] = STATE(1705),
- [sym_primary_expression] = STATE(1946),
- [sym_yield_expression] = STATE(2234),
- [sym_object] = STATE(2310),
- [sym_object_pattern] = STATE(5603),
- [sym_object_assignment_pattern] = STATE(4861),
- [sym_array] = STATE(2310),
- [sym_array_pattern] = STATE(5603),
- [sym_glimmer_template] = STATE(2234),
- [sym_jsx_element] = STATE(2234),
- [sym_jsx_opening_element] = STATE(3051),
- [sym_jsx_self_closing_element] = STATE(2234),
- [sym_class] = STATE(2310),
- [sym_class_declaration] = STATE(861),
- [sym_function_expression] = STATE(2310),
- [sym_function_declaration] = STATE(861),
- [sym_generator_function] = STATE(2310),
- [sym_generator_function_declaration] = STATE(861),
- [sym_arrow_function] = STATE(2310),
- [sym__call_signature] = STATE(5809),
- [sym_call_expression] = STATE(2310),
- [sym_new_expression] = STATE(2234),
- [sym_await_expression] = STATE(2234),
- [sym_member_expression] = STATE(1294),
- [sym_subscript_expression] = STATE(1294),
- [sym_assignment_expression] = STATE(2234),
- [sym__augmented_assignment_lhs] = STATE(2875),
- [sym_augmented_assignment_expression] = STATE(2234),
- [sym__destructuring_pattern] = STATE(5603),
- [sym_spread_element] = STATE(4835),
- [sym_ternary_expression] = STATE(2234),
- [sym_binary_expression] = STATE(2234),
- [sym_unary_expression] = STATE(2234),
- [sym_update_expression] = STATE(2234),
- [sym_sequence_expression] = STATE(5482),
- [sym_string] = STATE(2195),
- [sym_template_string] = STATE(2310),
- [sym_regex] = STATE(2310),
- [sym_meta_property] = STATE(2310),
- [sym_decorator] = STATE(1244),
- [sym_formal_parameters] = STATE(3742),
- [sym_rest_pattern] = STATE(4861),
- [sym_method_definition] = STATE(4835),
- [sym_pair] = STATE(4835),
- [sym_pair_pattern] = STATE(4861),
- [sym__property_name] = STATE(3665),
- [sym_computed_property_name] = STATE(3665),
- [sym_non_null_expression] = STATE(1294),
- [sym_function_signature] = STATE(861),
- [sym_as_expression] = STATE(2234),
- [sym_satisfies_expression] = STATE(2234),
- [sym_instantiation_expression] = STATE(2234),
- [sym_ambient_declaration] = STATE(861),
- [sym_abstract_class_declaration] = STATE(861),
- [sym_module] = STATE(861),
- [sym_internal_module] = STATE(223),
- [sym_import_alias] = STATE(861),
- [sym_interface_declaration] = STATE(861),
- [sym_enum_declaration] = STATE(861),
- [sym_type_alias_declaration] = STATE(861),
- [sym_accessibility_modifier] = STATE(2682),
- [sym_override_modifier] = STATE(2711),
- [sym_type_parameters] = STATE(5349),
- [aux_sym_program_repeat1] = STATE(22),
- [aux_sym_export_statement_repeat1] = STATE(3848),
- [aux_sym_object_repeat1] = STATE(4839),
- [aux_sym_object_pattern_repeat1] = STATE(4759),
- [sym_identifier] = ACTIONS(279),
- [anon_sym_export] = ACTIONS(281),
- [anon_sym_STAR] = ACTIONS(235),
- [anon_sym_type] = ACTIONS(283),
- [anon_sym_namespace] = ACTIONS(285),
- [anon_sym_LBRACE] = ACTIONS(19),
- [anon_sym_COMMA] = ACTIONS(241),
- [anon_sym_RBRACE] = ACTIONS(287),
- [anon_sym_typeof] = ACTIONS(21),
- [anon_sym_import] = ACTIONS(23),
- [anon_sym_with] = ACTIONS(25),
- [anon_sym_var] = ACTIONS(27),
- [anon_sym_let] = ACTIONS(289),
- [anon_sym_const] = ACTIONS(31),
- [anon_sym_BANG] = ACTIONS(33),
- [anon_sym_if] = ACTIONS(35),
- [anon_sym_switch] = ACTIONS(37),
- [anon_sym_for] = ACTIONS(39),
- [anon_sym_LPAREN] = ACTIONS(41),
- [anon_sym_await] = ACTIONS(43),
- [anon_sym_while] = ACTIONS(45),
- [anon_sym_do] = ACTIONS(47),
- [anon_sym_try] = ACTIONS(49),
- [anon_sym_break] = ACTIONS(51),
- [anon_sym_continue] = ACTIONS(53),
- [anon_sym_debugger] = ACTIONS(55),
- [anon_sym_return] = ACTIONS(57),
- [anon_sym_throw] = ACTIONS(59),
- [anon_sym_SEMI] = ACTIONS(61),
- [anon_sym_yield] = ACTIONS(63),
- [anon_sym_LBRACK] = ACTIONS(247),
- [sym_glimmer_opening_tag] = ACTIONS(67),
- [anon_sym_DQUOTE] = ACTIONS(69),
- [anon_sym_SQUOTE] = ACTIONS(71),
- [anon_sym_class] = ACTIONS(73),
- [anon_sym_async] = ACTIONS(291),
- [anon_sym_function] = ACTIONS(77),
- [anon_sym_new] = ACTIONS(293),
- [anon_sym_using] = ACTIONS(81),
- [anon_sym_DOT_DOT_DOT] = ACTIONS(253),
- [anon_sym_PLUS] = ACTIONS(21),
- [anon_sym_DASH] = ACTIONS(21),
- [anon_sym_SLASH] = ACTIONS(83),
- [anon_sym_LT] = ACTIONS(85),
- [anon_sym_TILDE] = ACTIONS(33),
- [anon_sym_void] = ACTIONS(21),
- [anon_sym_delete] = ACTIONS(21),
- [anon_sym_PLUS_PLUS] = ACTIONS(87),
- [anon_sym_DASH_DASH] = ACTIONS(87),
- [sym_comment] = ACTIONS(5),
- [anon_sym_BQUOTE] = ACTIONS(89),
- [sym_number] = ACTIONS(255),
- [sym_private_property_identifier] = ACTIONS(257),
- [sym_this] = ACTIONS(95),
- [sym_super] = ACTIONS(95),
- [sym_true] = ACTIONS(95),
- [sym_false] = ACTIONS(95),
- [sym_null] = ACTIONS(95),
- [sym_undefined] = ACTIONS(97),
- [anon_sym_AT] = ACTIONS(99),
- [anon_sym_static] = ACTIONS(295),
- [anon_sym_readonly] = ACTIONS(297),
- [anon_sym_get] = ACTIONS(299),
- [anon_sym_set] = ACTIONS(299),
- [anon_sym_declare] = ACTIONS(301),
- [anon_sym_public] = ACTIONS(303),
- [anon_sym_private] = ACTIONS(303),
- [anon_sym_protected] = ACTIONS(303),
- [anon_sym_override] = ACTIONS(305),
- [anon_sym_module] = ACTIONS(307),
- [anon_sym_any] = ACTIONS(309),
- [anon_sym_number] = ACTIONS(309),
- [anon_sym_boolean] = ACTIONS(309),
- [anon_sym_string] = ACTIONS(309),
- [anon_sym_symbol] = ACTIONS(309),
- [anon_sym_object] = ACTIONS(309),
- [anon_sym_abstract] = ACTIONS(107),
- [anon_sym_interface] = ACTIONS(109),
- [anon_sym_enum] = ACTIONS(111),
- [sym_html_comment] = ACTIONS(5),
- },
- [8] = {
- [sym_export_statement] = STATE(854),
- [sym_declaration] = STATE(854),
- [sym_import] = STATE(3306),
- [sym_import_statement] = STATE(854),
- [sym_statement] = STATE(22),
- [sym_expression_statement] = STATE(854),
- [sym_variable_declaration] = STATE(861),
- [sym_lexical_declaration] = STATE(861),
- [sym_statement_block] = STATE(854),
- [sym_if_statement] = STATE(854),
- [sym_switch_statement] = STATE(854),
- [sym_for_statement] = STATE(854),
- [sym_for_in_statement] = STATE(854),
- [sym_while_statement] = STATE(854),
- [sym_do_statement] = STATE(854),
- [sym_try_statement] = STATE(854),
- [sym_with_statement] = STATE(854),
- [sym_break_statement] = STATE(854),
- [sym_continue_statement] = STATE(854),
- [sym_debugger_statement] = STATE(854),
- [sym_return_statement] = STATE(854),
- [sym_throw_statement] = STATE(854),
- [sym_empty_statement] = STATE(854),
- [sym_labeled_statement] = STATE(854),
- [sym_parenthesized_expression] = STATE(1294),
- [sym_expression] = STATE(1705),
- [sym_primary_expression] = STATE(1946),
- [sym_yield_expression] = STATE(2234),
- [sym_object] = STATE(2310),
- [sym_object_pattern] = STATE(5603),
- [sym_object_assignment_pattern] = STATE(4861),
- [sym_array] = STATE(2310),
- [sym_array_pattern] = STATE(5603),
- [sym_glimmer_template] = STATE(2234),
- [sym_jsx_element] = STATE(2234),
- [sym_jsx_opening_element] = STATE(3051),
- [sym_jsx_self_closing_element] = STATE(2234),
- [sym_class] = STATE(2310),
- [sym_class_declaration] = STATE(861),
- [sym_function_expression] = STATE(2310),
- [sym_function_declaration] = STATE(861),
- [sym_generator_function] = STATE(2310),
- [sym_generator_function_declaration] = STATE(861),
- [sym_arrow_function] = STATE(2310),
- [sym__call_signature] = STATE(5809),
- [sym_call_expression] = STATE(2310),
- [sym_new_expression] = STATE(2234),
- [sym_await_expression] = STATE(2234),
- [sym_member_expression] = STATE(1294),
- [sym_subscript_expression] = STATE(1294),
- [sym_assignment_expression] = STATE(2234),
- [sym__augmented_assignment_lhs] = STATE(2875),
- [sym_augmented_assignment_expression] = STATE(2234),
- [sym__destructuring_pattern] = STATE(5603),
- [sym_spread_element] = STATE(4835),
- [sym_ternary_expression] = STATE(2234),
- [sym_binary_expression] = STATE(2234),
- [sym_unary_expression] = STATE(2234),
- [sym_update_expression] = STATE(2234),
- [sym_sequence_expression] = STATE(5482),
- [sym_string] = STATE(2195),
- [sym_template_string] = STATE(2310),
- [sym_regex] = STATE(2310),
- [sym_meta_property] = STATE(2310),
- [sym_decorator] = STATE(1244),
- [sym_formal_parameters] = STATE(3742),
- [sym_rest_pattern] = STATE(4861),
- [sym_method_definition] = STATE(4835),
- [sym_pair] = STATE(4835),
- [sym_pair_pattern] = STATE(4861),
- [sym__property_name] = STATE(3665),
- [sym_computed_property_name] = STATE(3665),
- [sym_non_null_expression] = STATE(1294),
- [sym_function_signature] = STATE(861),
- [sym_as_expression] = STATE(2234),
- [sym_satisfies_expression] = STATE(2234),
- [sym_instantiation_expression] = STATE(2234),
- [sym_ambient_declaration] = STATE(861),
- [sym_abstract_class_declaration] = STATE(861),
- [sym_module] = STATE(861),
- [sym_internal_module] = STATE(223),
- [sym_import_alias] = STATE(861),
- [sym_interface_declaration] = STATE(861),
- [sym_enum_declaration] = STATE(861),
- [sym_type_alias_declaration] = STATE(861),
- [sym_accessibility_modifier] = STATE(2682),
- [sym_override_modifier] = STATE(2711),
- [sym_type_parameters] = STATE(5349),
- [aux_sym_program_repeat1] = STATE(22),
- [aux_sym_export_statement_repeat1] = STATE(3848),
- [aux_sym_object_repeat1] = STATE(4839),
- [aux_sym_object_pattern_repeat1] = STATE(4759),
- [sym_identifier] = ACTIONS(311),
- [anon_sym_export] = ACTIONS(313),
- [anon_sym_STAR] = ACTIONS(235),
- [anon_sym_type] = ACTIONS(315),
- [anon_sym_namespace] = ACTIONS(317),
- [anon_sym_LBRACE] = ACTIONS(19),
- [anon_sym_COMMA] = ACTIONS(241),
- [anon_sym_RBRACE] = ACTIONS(287),
- [anon_sym_typeof] = ACTIONS(21),
- [anon_sym_import] = ACTIONS(23),
- [anon_sym_with] = ACTIONS(25),
- [anon_sym_var] = ACTIONS(27),
- [anon_sym_let] = ACTIONS(319),
- [anon_sym_const] = ACTIONS(31),
- [anon_sym_BANG] = ACTIONS(33),
- [anon_sym_if] = ACTIONS(35),
- [anon_sym_switch] = ACTIONS(37),
- [anon_sym_for] = ACTIONS(39),
- [anon_sym_LPAREN] = ACTIONS(41),
- [anon_sym_await] = ACTIONS(43),
- [anon_sym_while] = ACTIONS(45),
- [anon_sym_do] = ACTIONS(47),
- [anon_sym_try] = ACTIONS(49),
- [anon_sym_break] = ACTIONS(51),
- [anon_sym_continue] = ACTIONS(53),
- [anon_sym_debugger] = ACTIONS(55),
- [anon_sym_return] = ACTIONS(57),
- [anon_sym_throw] = ACTIONS(59),
- [anon_sym_SEMI] = ACTIONS(61),
- [anon_sym_yield] = ACTIONS(63),
- [anon_sym_LBRACK] = ACTIONS(247),
- [sym_glimmer_opening_tag] = ACTIONS(67),
- [anon_sym_DQUOTE] = ACTIONS(69),
- [anon_sym_SQUOTE] = ACTIONS(71),
- [anon_sym_class] = ACTIONS(73),
- [anon_sym_async] = ACTIONS(321),
- [anon_sym_function] = ACTIONS(77),
- [anon_sym_new] = ACTIONS(323),
- [anon_sym_using] = ACTIONS(81),
- [anon_sym_DOT_DOT_DOT] = ACTIONS(253),
- [anon_sym_PLUS] = ACTIONS(21),
- [anon_sym_DASH] = ACTIONS(21),
- [anon_sym_SLASH] = ACTIONS(83),
- [anon_sym_LT] = ACTIONS(85),
- [anon_sym_TILDE] = ACTIONS(33),
- [anon_sym_void] = ACTIONS(21),
- [anon_sym_delete] = ACTIONS(21),
- [anon_sym_PLUS_PLUS] = ACTIONS(87),
- [anon_sym_DASH_DASH] = ACTIONS(87),
- [sym_comment] = ACTIONS(5),
- [anon_sym_BQUOTE] = ACTIONS(89),
- [sym_number] = ACTIONS(255),
- [sym_private_property_identifier] = ACTIONS(257),
- [sym_this] = ACTIONS(95),
- [sym_super] = ACTIONS(95),
- [sym_true] = ACTIONS(95),
- [sym_false] = ACTIONS(95),
- [sym_null] = ACTIONS(95),
- [sym_undefined] = ACTIONS(97),
- [anon_sym_AT] = ACTIONS(99),
- [anon_sym_static] = ACTIONS(325),
- [anon_sym_readonly] = ACTIONS(327),
- [anon_sym_get] = ACTIONS(329),
- [anon_sym_set] = ACTIONS(329),
- [anon_sym_declare] = ACTIONS(331),
- [anon_sym_public] = ACTIONS(333),
- [anon_sym_private] = ACTIONS(333),
- [anon_sym_protected] = ACTIONS(333),
- [anon_sym_override] = ACTIONS(335),
- [anon_sym_module] = ACTIONS(337),
- [anon_sym_any] = ACTIONS(339),
- [anon_sym_number] = ACTIONS(339),
- [anon_sym_boolean] = ACTIONS(339),
- [anon_sym_string] = ACTIONS(339),
- [anon_sym_symbol] = ACTIONS(339),
- [anon_sym_object] = ACTIONS(339),
- [anon_sym_abstract] = ACTIONS(107),
- [anon_sym_interface] = ACTIONS(109),
- [anon_sym_enum] = ACTIONS(111),
- [sym_html_comment] = ACTIONS(5),
- },
- [9] = {
- [sym_export_statement] = STATE(854),
- [sym_declaration] = STATE(854),
- [sym_import] = STATE(3306),
- [sym_import_statement] = STATE(854),
- [sym_statement] = STATE(9),
- [sym_expression_statement] = STATE(854),
- [sym_variable_declaration] = STATE(861),
- [sym_lexical_declaration] = STATE(861),
- [sym_statement_block] = STATE(854),
- [sym_if_statement] = STATE(854),
- [sym_switch_statement] = STATE(854),
- [sym_for_statement] = STATE(854),
- [sym_for_in_statement] = STATE(854),
- [sym_while_statement] = STATE(854),
- [sym_do_statement] = STATE(854),
- [sym_try_statement] = STATE(854),
- [sym_with_statement] = STATE(854),
- [sym_break_statement] = STATE(854),
- [sym_continue_statement] = STATE(854),
- [sym_debugger_statement] = STATE(854),
- [sym_return_statement] = STATE(854),
- [sym_throw_statement] = STATE(854),
- [sym_empty_statement] = STATE(854),
- [sym_labeled_statement] = STATE(854),
- [sym_parenthesized_expression] = STATE(1294),
- [sym_expression] = STATE(1705),
- [sym_primary_expression] = STATE(1946),
- [sym_yield_expression] = STATE(2234),
- [sym_object] = STATE(2310),
- [sym_object_pattern] = STATE(5667),
- [sym_array] = STATE(2310),
- [sym_array_pattern] = STATE(5667),
- [sym_glimmer_template] = STATE(2234),
- [sym_jsx_element] = STATE(2234),
- [sym_jsx_opening_element] = STATE(3051),
- [sym_jsx_self_closing_element] = STATE(2234),
- [sym_class] = STATE(2310),
- [sym_class_declaration] = STATE(861),
- [sym_function_expression] = STATE(2310),
- [sym_function_declaration] = STATE(861),
- [sym_generator_function] = STATE(2310),
- [sym_generator_function_declaration] = STATE(861),
- [sym_arrow_function] = STATE(2310),
- [sym__call_signature] = STATE(5809),
- [sym_call_expression] = STATE(2310),
- [sym_new_expression] = STATE(2234),
- [sym_await_expression] = STATE(2234),
- [sym_member_expression] = STATE(1294),
- [sym_subscript_expression] = STATE(1294),
- [sym_assignment_expression] = STATE(2234),
- [sym__augmented_assignment_lhs] = STATE(2875),
- [sym_augmented_assignment_expression] = STATE(2234),
- [sym__destructuring_pattern] = STATE(5667),
- [sym_ternary_expression] = STATE(2234),
- [sym_binary_expression] = STATE(2234),
- [sym_unary_expression] = STATE(2234),
- [sym_update_expression] = STATE(2234),
- [sym_sequence_expression] = STATE(5482),
- [sym_string] = STATE(2310),
- [sym_template_string] = STATE(2310),
- [sym_regex] = STATE(2310),
- [sym_meta_property] = STATE(2310),
- [sym_decorator] = STATE(1244),
- [sym_formal_parameters] = STATE(3742),
- [sym_non_null_expression] = STATE(1294),
- [sym_function_signature] = STATE(861),
- [sym_as_expression] = STATE(2234),
- [sym_satisfies_expression] = STATE(2234),
- [sym_instantiation_expression] = STATE(2234),
- [sym_ambient_declaration] = STATE(861),
- [sym_abstract_class_declaration] = STATE(861),
- [sym_module] = STATE(861),
- [sym_internal_module] = STATE(223),
- [sym_import_alias] = STATE(861),
- [sym_interface_declaration] = STATE(861),
- [sym_enum_declaration] = STATE(861),
- [sym_type_alias_declaration] = STATE(861),
- [sym_type_parameters] = STATE(5349),
- [aux_sym_program_repeat1] = STATE(9),
- [aux_sym_export_statement_repeat1] = STATE(3848),
- [ts_builtin_sym_end] = ACTIONS(341),
- [sym_identifier] = ACTIONS(343),
- [anon_sym_export] = ACTIONS(346),
- [anon_sym_default] = ACTIONS(349),
- [anon_sym_type] = ACTIONS(351),
- [anon_sym_namespace] = ACTIONS(354),
- [anon_sym_LBRACE] = ACTIONS(357),
- [anon_sym_RBRACE] = ACTIONS(341),
- [anon_sym_typeof] = ACTIONS(360),
- [anon_sym_import] = ACTIONS(363),
- [anon_sym_with] = ACTIONS(366),
- [anon_sym_var] = ACTIONS(369),
- [anon_sym_let] = ACTIONS(372),
- [anon_sym_const] = ACTIONS(375),
- [anon_sym_BANG] = ACTIONS(378),
- [anon_sym_if] = ACTIONS(381),
- [anon_sym_switch] = ACTIONS(384),
- [anon_sym_for] = ACTIONS(387),
- [anon_sym_LPAREN] = ACTIONS(390),
- [anon_sym_await] = ACTIONS(393),
- [anon_sym_while] = ACTIONS(396),
- [anon_sym_do] = ACTIONS(399),
- [anon_sym_try] = ACTIONS(402),
- [anon_sym_break] = ACTIONS(405),
- [anon_sym_continue] = ACTIONS(408),
- [anon_sym_debugger] = ACTIONS(411),
- [anon_sym_return] = ACTIONS(414),
- [anon_sym_throw] = ACTIONS(417),
- [anon_sym_SEMI] = ACTIONS(420),
- [anon_sym_case] = ACTIONS(349),
- [anon_sym_yield] = ACTIONS(423),
- [anon_sym_LBRACK] = ACTIONS(426),
- [sym_glimmer_opening_tag] = ACTIONS(429),
- [anon_sym_DQUOTE] = ACTIONS(432),
- [anon_sym_SQUOTE] = ACTIONS(435),
- [anon_sym_class] = ACTIONS(438),
- [anon_sym_async] = ACTIONS(441),
- [anon_sym_function] = ACTIONS(444),
- [anon_sym_new] = ACTIONS(447),
- [anon_sym_using] = ACTIONS(450),
- [anon_sym_PLUS] = ACTIONS(360),
- [anon_sym_DASH] = ACTIONS(360),
- [anon_sym_SLASH] = ACTIONS(453),
- [anon_sym_LT] = ACTIONS(456),
- [anon_sym_TILDE] = ACTIONS(378),
- [anon_sym_void] = ACTIONS(360),
- [anon_sym_delete] = ACTIONS(360),
- [anon_sym_PLUS_PLUS] = ACTIONS(459),
- [anon_sym_DASH_DASH] = ACTIONS(459),
- [sym_comment] = ACTIONS(5),
- [anon_sym_BQUOTE] = ACTIONS(462),
- [sym_number] = ACTIONS(465),
- [sym_private_property_identifier] = ACTIONS(468),
- [sym_this] = ACTIONS(471),
- [sym_super] = ACTIONS(471),
- [sym_true] = ACTIONS(471),
- [sym_false] = ACTIONS(471),
- [sym_null] = ACTIONS(471),
- [sym_undefined] = ACTIONS(474),
- [anon_sym_AT] = ACTIONS(477),
- [anon_sym_static] = ACTIONS(480),
- [anon_sym_readonly] = ACTIONS(480),
- [anon_sym_get] = ACTIONS(480),
- [anon_sym_set] = ACTIONS(480),
- [anon_sym_declare] = ACTIONS(483),
- [anon_sym_public] = ACTIONS(480),
- [anon_sym_private] = ACTIONS(480),
- [anon_sym_protected] = ACTIONS(480),
- [anon_sym_override] = ACTIONS(480),
- [anon_sym_module] = ACTIONS(486),
- [anon_sym_any] = ACTIONS(480),
- [anon_sym_number] = ACTIONS(480),
- [anon_sym_boolean] = ACTIONS(480),
- [anon_sym_string] = ACTIONS(480),
- [anon_sym_symbol] = ACTIONS(480),
- [anon_sym_object] = ACTIONS(480),
- [anon_sym_abstract] = ACTIONS(489),
- [anon_sym_interface] = ACTIONS(492),
- [anon_sym_enum] = ACTIONS(495),
- [sym_html_comment] = ACTIONS(5),
- },
- [10] = {
- [sym_export_statement] = STATE(854),
- [sym_declaration] = STATE(854),
- [sym_import] = STATE(3306),
- [sym_import_statement] = STATE(854),
- [sym_statement] = STATE(9),
- [sym_expression_statement] = STATE(854),
- [sym_variable_declaration] = STATE(861),
- [sym_lexical_declaration] = STATE(861),
- [sym_statement_block] = STATE(854),
- [sym_if_statement] = STATE(854),
- [sym_switch_statement] = STATE(854),
- [sym_for_statement] = STATE(854),
- [sym_for_in_statement] = STATE(854),
- [sym_while_statement] = STATE(854),
- [sym_do_statement] = STATE(854),
- [sym_try_statement] = STATE(854),
- [sym_with_statement] = STATE(854),
- [sym_break_statement] = STATE(854),
- [sym_continue_statement] = STATE(854),
- [sym_debugger_statement] = STATE(854),
- [sym_return_statement] = STATE(854),
- [sym_throw_statement] = STATE(854),
- [sym_empty_statement] = STATE(854),
- [sym_labeled_statement] = STATE(854),
- [sym_parenthesized_expression] = STATE(1294),
- [sym_expression] = STATE(1705),
- [sym_primary_expression] = STATE(1946),
- [sym_yield_expression] = STATE(2234),
- [sym_object] = STATE(2310),
- [sym_object_pattern] = STATE(5667),
- [sym_array] = STATE(2310),
- [sym_array_pattern] = STATE(5667),
- [sym_glimmer_template] = STATE(2234),
- [sym_jsx_element] = STATE(2234),
- [sym_jsx_opening_element] = STATE(3051),
- [sym_jsx_self_closing_element] = STATE(2234),
- [sym_class] = STATE(2310),
- [sym_class_declaration] = STATE(861),
- [sym_function_expression] = STATE(2310),
- [sym_function_declaration] = STATE(861),
- [sym_generator_function] = STATE(2310),
- [sym_generator_function_declaration] = STATE(861),
- [sym_arrow_function] = STATE(2310),
- [sym__call_signature] = STATE(5809),
- [sym_call_expression] = STATE(2310),
- [sym_new_expression] = STATE(2234),
- [sym_await_expression] = STATE(2234),
- [sym_member_expression] = STATE(1294),
- [sym_subscript_expression] = STATE(1294),
- [sym_assignment_expression] = STATE(2234),
- [sym__augmented_assignment_lhs] = STATE(2875),
- [sym_augmented_assignment_expression] = STATE(2234),
- [sym__destructuring_pattern] = STATE(5667),
- [sym_ternary_expression] = STATE(2234),
- [sym_binary_expression] = STATE(2234),
- [sym_unary_expression] = STATE(2234),
- [sym_update_expression] = STATE(2234),
- [sym_sequence_expression] = STATE(5482),
- [sym_string] = STATE(2310),
- [sym_template_string] = STATE(2310),
- [sym_regex] = STATE(2310),
- [sym_meta_property] = STATE(2310),
- [sym_decorator] = STATE(1244),
- [sym_formal_parameters] = STATE(3742),
- [sym_non_null_expression] = STATE(1294),
- [sym_function_signature] = STATE(861),
- [sym_as_expression] = STATE(2234),
- [sym_satisfies_expression] = STATE(2234),
- [sym_instantiation_expression] = STATE(2234),
- [sym_ambient_declaration] = STATE(861),
- [sym_abstract_class_declaration] = STATE(861),
- [sym_module] = STATE(861),
- [sym_internal_module] = STATE(223),
- [sym_import_alias] = STATE(861),
- [sym_interface_declaration] = STATE(861),
- [sym_enum_declaration] = STATE(861),
- [sym_type_alias_declaration] = STATE(861),
- [sym_type_parameters] = STATE(5349),
- [aux_sym_program_repeat1] = STATE(9),
- [aux_sym_export_statement_repeat1] = STATE(3848),
- [sym_identifier] = ACTIONS(9),
- [anon_sym_export] = ACTIONS(13),
- [anon_sym_default] = ACTIONS(498),
- [anon_sym_type] = ACTIONS(15),
- [anon_sym_namespace] = ACTIONS(17),
- [anon_sym_LBRACE] = ACTIONS(19),
- [anon_sym_RBRACE] = ACTIONS(500),
- [anon_sym_typeof] = ACTIONS(21),
- [anon_sym_import] = ACTIONS(23),
- [anon_sym_with] = ACTIONS(25),
- [anon_sym_var] = ACTIONS(27),
- [anon_sym_let] = ACTIONS(29),
- [anon_sym_const] = ACTIONS(31),
- [anon_sym_BANG] = ACTIONS(33),
- [anon_sym_if] = ACTIONS(35),
- [anon_sym_switch] = ACTIONS(37),
- [anon_sym_for] = ACTIONS(39),
- [anon_sym_LPAREN] = ACTIONS(41),
- [anon_sym_await] = ACTIONS(43),
- [anon_sym_while] = ACTIONS(45),
- [anon_sym_do] = ACTIONS(47),
- [anon_sym_try] = ACTIONS(49),
- [anon_sym_break] = ACTIONS(51),
- [anon_sym_continue] = ACTIONS(53),
- [anon_sym_debugger] = ACTIONS(55),
- [anon_sym_return] = ACTIONS(57),
- [anon_sym_throw] = ACTIONS(59),
- [anon_sym_SEMI] = ACTIONS(61),
- [anon_sym_case] = ACTIONS(498),
- [anon_sym_yield] = ACTIONS(63),
- [anon_sym_LBRACK] = ACTIONS(65),
- [sym_glimmer_opening_tag] = ACTIONS(67),
- [anon_sym_DQUOTE] = ACTIONS(69),
- [anon_sym_SQUOTE] = ACTIONS(71),
- [anon_sym_class] = ACTIONS(73),
- [anon_sym_async] = ACTIONS(75),
- [anon_sym_function] = ACTIONS(77),
- [anon_sym_new] = ACTIONS(79),
- [anon_sym_using] = ACTIONS(81),
- [anon_sym_PLUS] = ACTIONS(21),
- [anon_sym_DASH] = ACTIONS(21),
- [anon_sym_SLASH] = ACTIONS(83),
- [anon_sym_LT] = ACTIONS(85),
- [anon_sym_TILDE] = ACTIONS(33),
- [anon_sym_void] = ACTIONS(21),
- [anon_sym_delete] = ACTIONS(21),
- [anon_sym_PLUS_PLUS] = ACTIONS(87),
- [anon_sym_DASH_DASH] = ACTIONS(87),
- [sym_comment] = ACTIONS(5),
- [anon_sym_BQUOTE] = ACTIONS(89),
- [sym_number] = ACTIONS(91),
- [sym_private_property_identifier] = ACTIONS(93),
- [sym_this] = ACTIONS(95),
- [sym_super] = ACTIONS(95),
- [sym_true] = ACTIONS(95),
- [sym_false] = ACTIONS(95),
- [sym_null] = ACTIONS(95),
- [sym_undefined] = ACTIONS(97),
- [anon_sym_AT] = ACTIONS(99),
- [anon_sym_static] = ACTIONS(101),
- [anon_sym_readonly] = ACTIONS(101),
- [anon_sym_get] = ACTIONS(101),
- [anon_sym_set] = ACTIONS(101),
- [anon_sym_declare] = ACTIONS(103),
- [anon_sym_public] = ACTIONS(101),
- [anon_sym_private] = ACTIONS(101),
- [anon_sym_protected] = ACTIONS(101),
- [anon_sym_override] = ACTIONS(101),
- [anon_sym_module] = ACTIONS(105),
- [anon_sym_any] = ACTIONS(101),
- [anon_sym_number] = ACTIONS(101),
- [anon_sym_boolean] = ACTIONS(101),
- [anon_sym_string] = ACTIONS(101),
- [anon_sym_symbol] = ACTIONS(101),
- [anon_sym_object] = ACTIONS(101),
- [anon_sym_abstract] = ACTIONS(107),
- [anon_sym_interface] = ACTIONS(109),
- [anon_sym_enum] = ACTIONS(111),
- [sym_html_comment] = ACTIONS(5),
- },
- [11] = {
- [sym_export_statement] = STATE(854),
- [sym_declaration] = STATE(854),
- [sym_import] = STATE(3306),
- [sym_import_statement] = STATE(854),
- [sym_statement] = STATE(9),
- [sym_expression_statement] = STATE(854),
- [sym_variable_declaration] = STATE(861),
- [sym_lexical_declaration] = STATE(861),
- [sym_statement_block] = STATE(854),
- [sym_if_statement] = STATE(854),
- [sym_switch_statement] = STATE(854),
- [sym_for_statement] = STATE(854),
- [sym_for_in_statement] = STATE(854),
- [sym_while_statement] = STATE(854),
- [sym_do_statement] = STATE(854),
- [sym_try_statement] = STATE(854),
- [sym_with_statement] = STATE(854),
- [sym_break_statement] = STATE(854),
- [sym_continue_statement] = STATE(854),
- [sym_debugger_statement] = STATE(854),
- [sym_return_statement] = STATE(854),
- [sym_throw_statement] = STATE(854),
- [sym_empty_statement] = STATE(854),
- [sym_labeled_statement] = STATE(854),
- [sym_parenthesized_expression] = STATE(1294),
- [sym_expression] = STATE(1705),
- [sym_primary_expression] = STATE(1946),
- [sym_yield_expression] = STATE(2234),
- [sym_object] = STATE(2310),
- [sym_object_pattern] = STATE(5667),
- [sym_array] = STATE(2310),
- [sym_array_pattern] = STATE(5667),
- [sym_glimmer_template] = STATE(2234),
- [sym_jsx_element] = STATE(2234),
- [sym_jsx_opening_element] = STATE(3051),
- [sym_jsx_self_closing_element] = STATE(2234),
- [sym_class] = STATE(2310),
- [sym_class_declaration] = STATE(861),
- [sym_function_expression] = STATE(2310),
- [sym_function_declaration] = STATE(861),
- [sym_generator_function] = STATE(2310),
- [sym_generator_function_declaration] = STATE(861),
- [sym_arrow_function] = STATE(2310),
- [sym__call_signature] = STATE(5809),
- [sym_call_expression] = STATE(2310),
- [sym_new_expression] = STATE(2234),
- [sym_await_expression] = STATE(2234),
- [sym_member_expression] = STATE(1294),
- [sym_subscript_expression] = STATE(1294),
- [sym_assignment_expression] = STATE(2234),
- [sym__augmented_assignment_lhs] = STATE(2875),
- [sym_augmented_assignment_expression] = STATE(2234),
- [sym__destructuring_pattern] = STATE(5667),
- [sym_ternary_expression] = STATE(2234),
- [sym_binary_expression] = STATE(2234),
- [sym_unary_expression] = STATE(2234),
- [sym_update_expression] = STATE(2234),
- [sym_sequence_expression] = STATE(5482),
- [sym_string] = STATE(2310),
- [sym_template_string] = STATE(2310),
- [sym_regex] = STATE(2310),
- [sym_meta_property] = STATE(2310),
- [sym_decorator] = STATE(1244),
- [sym_formal_parameters] = STATE(3742),
- [sym_non_null_expression] = STATE(1294),
- [sym_function_signature] = STATE(861),
- [sym_as_expression] = STATE(2234),
- [sym_satisfies_expression] = STATE(2234),
- [sym_instantiation_expression] = STATE(2234),
- [sym_ambient_declaration] = STATE(861),
- [sym_abstract_class_declaration] = STATE(861),
- [sym_module] = STATE(861),
- [sym_internal_module] = STATE(223),
- [sym_import_alias] = STATE(861),
- [sym_interface_declaration] = STATE(861),
- [sym_enum_declaration] = STATE(861),
- [sym_type_alias_declaration] = STATE(861),
- [sym_type_parameters] = STATE(5349),
- [aux_sym_program_repeat1] = STATE(9),
- [aux_sym_export_statement_repeat1] = STATE(3848),
- [sym_identifier] = ACTIONS(9),
- [anon_sym_export] = ACTIONS(13),
- [anon_sym_default] = ACTIONS(502),
- [anon_sym_type] = ACTIONS(15),
- [anon_sym_namespace] = ACTIONS(17),
- [anon_sym_LBRACE] = ACTIONS(19),
- [anon_sym_RBRACE] = ACTIONS(504),
- [anon_sym_typeof] = ACTIONS(21),
- [anon_sym_import] = ACTIONS(23),
- [anon_sym_with] = ACTIONS(25),
- [anon_sym_var] = ACTIONS(27),
- [anon_sym_let] = ACTIONS(29),
- [anon_sym_const] = ACTIONS(31),
- [anon_sym_BANG] = ACTIONS(33),
- [anon_sym_if] = ACTIONS(35),
- [anon_sym_switch] = ACTIONS(37),
- [anon_sym_for] = ACTIONS(39),
- [anon_sym_LPAREN] = ACTIONS(41),
- [anon_sym_await] = ACTIONS(43),
- [anon_sym_while] = ACTIONS(45),
- [anon_sym_do] = ACTIONS(47),
- [anon_sym_try] = ACTIONS(49),
- [anon_sym_break] = ACTIONS(51),
- [anon_sym_continue] = ACTIONS(53),
- [anon_sym_debugger] = ACTIONS(55),
- [anon_sym_return] = ACTIONS(57),
- [anon_sym_throw] = ACTIONS(59),
- [anon_sym_SEMI] = ACTIONS(61),
- [anon_sym_case] = ACTIONS(502),
- [anon_sym_yield] = ACTIONS(63),
- [anon_sym_LBRACK] = ACTIONS(65),
- [sym_glimmer_opening_tag] = ACTIONS(67),
- [anon_sym_DQUOTE] = ACTIONS(69),
- [anon_sym_SQUOTE] = ACTIONS(71),
- [anon_sym_class] = ACTIONS(73),
- [anon_sym_async] = ACTIONS(75),
- [anon_sym_function] = ACTIONS(77),
- [anon_sym_new] = ACTIONS(79),
- [anon_sym_using] = ACTIONS(81),
- [anon_sym_PLUS] = ACTIONS(21),
- [anon_sym_DASH] = ACTIONS(21),
- [anon_sym_SLASH] = ACTIONS(83),
- [anon_sym_LT] = ACTIONS(85),
- [anon_sym_TILDE] = ACTIONS(33),
- [anon_sym_void] = ACTIONS(21),
- [anon_sym_delete] = ACTIONS(21),
- [anon_sym_PLUS_PLUS] = ACTIONS(87),
- [anon_sym_DASH_DASH] = ACTIONS(87),
- [sym_comment] = ACTIONS(5),
- [anon_sym_BQUOTE] = ACTIONS(89),
- [sym_number] = ACTIONS(91),
- [sym_private_property_identifier] = ACTIONS(93),
- [sym_this] = ACTIONS(95),
- [sym_super] = ACTIONS(95),
- [sym_true] = ACTIONS(95),
- [sym_false] = ACTIONS(95),
- [sym_null] = ACTIONS(95),
- [sym_undefined] = ACTIONS(97),
- [anon_sym_AT] = ACTIONS(99),
- [anon_sym_static] = ACTIONS(101),
- [anon_sym_readonly] = ACTIONS(101),
- [anon_sym_get] = ACTIONS(101),
- [anon_sym_set] = ACTIONS(101),
- [anon_sym_declare] = ACTIONS(103),
- [anon_sym_public] = ACTIONS(101),
- [anon_sym_private] = ACTIONS(101),
- [anon_sym_protected] = ACTIONS(101),
- [anon_sym_override] = ACTIONS(101),
- [anon_sym_module] = ACTIONS(105),
- [anon_sym_any] = ACTIONS(101),
- [anon_sym_number] = ACTIONS(101),
- [anon_sym_boolean] = ACTIONS(101),
- [anon_sym_string] = ACTIONS(101),
- [anon_sym_symbol] = ACTIONS(101),
- [anon_sym_object] = ACTIONS(101),
- [anon_sym_abstract] = ACTIONS(107),
- [anon_sym_interface] = ACTIONS(109),
- [anon_sym_enum] = ACTIONS(111),
- [sym_html_comment] = ACTIONS(5),
- },
- [12] = {
- [sym_export_statement] = STATE(854),
- [sym_declaration] = STATE(854),
- [sym_import] = STATE(3306),
- [sym_import_statement] = STATE(854),
- [sym_statement] = STATE(11),
- [sym_expression_statement] = STATE(854),
- [sym_variable_declaration] = STATE(861),
- [sym_lexical_declaration] = STATE(861),
- [sym_statement_block] = STATE(854),
- [sym_if_statement] = STATE(854),
- [sym_switch_statement] = STATE(854),
- [sym_for_statement] = STATE(854),
- [sym_for_in_statement] = STATE(854),
- [sym_while_statement] = STATE(854),
- [sym_do_statement] = STATE(854),
- [sym_try_statement] = STATE(854),
- [sym_with_statement] = STATE(854),
- [sym_break_statement] = STATE(854),
- [sym_continue_statement] = STATE(854),
- [sym_debugger_statement] = STATE(854),
- [sym_return_statement] = STATE(854),
- [sym_throw_statement] = STATE(854),
- [sym_empty_statement] = STATE(854),
- [sym_labeled_statement] = STATE(854),
- [sym_parenthesized_expression] = STATE(1294),
- [sym_expression] = STATE(1705),
- [sym_primary_expression] = STATE(1946),
- [sym_yield_expression] = STATE(2234),
- [sym_object] = STATE(2310),
- [sym_object_pattern] = STATE(5667),
- [sym_array] = STATE(2310),
- [sym_array_pattern] = STATE(5667),
- [sym_glimmer_template] = STATE(2234),
- [sym_jsx_element] = STATE(2234),
- [sym_jsx_opening_element] = STATE(3051),
- [sym_jsx_self_closing_element] = STATE(2234),
- [sym_class] = STATE(2310),
- [sym_class_declaration] = STATE(861),
- [sym_function_expression] = STATE(2310),
- [sym_function_declaration] = STATE(861),
- [sym_generator_function] = STATE(2310),
- [sym_generator_function_declaration] = STATE(861),
- [sym_arrow_function] = STATE(2310),
- [sym__call_signature] = STATE(5809),
- [sym_call_expression] = STATE(2310),
- [sym_new_expression] = STATE(2234),
- [sym_await_expression] = STATE(2234),
- [sym_member_expression] = STATE(1294),
- [sym_subscript_expression] = STATE(1294),
- [sym_assignment_expression] = STATE(2234),
- [sym__augmented_assignment_lhs] = STATE(2875),
- [sym_augmented_assignment_expression] = STATE(2234),
- [sym__destructuring_pattern] = STATE(5667),
- [sym_ternary_expression] = STATE(2234),
- [sym_binary_expression] = STATE(2234),
- [sym_unary_expression] = STATE(2234),
- [sym_update_expression] = STATE(2234),
- [sym_sequence_expression] = STATE(5482),
- [sym_string] = STATE(2310),
- [sym_template_string] = STATE(2310),
- [sym_regex] = STATE(2310),
- [sym_meta_property] = STATE(2310),
- [sym_decorator] = STATE(1244),
- [sym_formal_parameters] = STATE(3742),
- [sym_non_null_expression] = STATE(1294),
- [sym_function_signature] = STATE(861),
- [sym_as_expression] = STATE(2234),
- [sym_satisfies_expression] = STATE(2234),
- [sym_instantiation_expression] = STATE(2234),
- [sym_ambient_declaration] = STATE(861),
- [sym_abstract_class_declaration] = STATE(861),
- [sym_module] = STATE(861),
- [sym_internal_module] = STATE(223),
- [sym_import_alias] = STATE(861),
- [sym_interface_declaration] = STATE(861),
- [sym_enum_declaration] = STATE(861),
- [sym_type_alias_declaration] = STATE(861),
- [sym_type_parameters] = STATE(5349),
- [aux_sym_program_repeat1] = STATE(11),
- [aux_sym_export_statement_repeat1] = STATE(3848),
- [sym_identifier] = ACTIONS(9),
- [anon_sym_export] = ACTIONS(13),
- [anon_sym_default] = ACTIONS(506),
- [anon_sym_type] = ACTIONS(15),
- [anon_sym_namespace] = ACTIONS(17),
- [anon_sym_LBRACE] = ACTIONS(19),
- [anon_sym_RBRACE] = ACTIONS(508),
- [anon_sym_typeof] = ACTIONS(21),
- [anon_sym_import] = ACTIONS(23),
- [anon_sym_with] = ACTIONS(25),
- [anon_sym_var] = ACTIONS(27),
- [anon_sym_let] = ACTIONS(29),
- [anon_sym_const] = ACTIONS(31),
- [anon_sym_BANG] = ACTIONS(33),
- [anon_sym_if] = ACTIONS(35),
- [anon_sym_switch] = ACTIONS(37),
- [anon_sym_for] = ACTIONS(39),
- [anon_sym_LPAREN] = ACTIONS(41),
- [anon_sym_await] = ACTIONS(43),
- [anon_sym_while] = ACTIONS(45),
- [anon_sym_do] = ACTIONS(47),
- [anon_sym_try] = ACTIONS(49),
- [anon_sym_break] = ACTIONS(51),
- [anon_sym_continue] = ACTIONS(53),
- [anon_sym_debugger] = ACTIONS(55),
- [anon_sym_return] = ACTIONS(57),
- [anon_sym_throw] = ACTIONS(59),
- [anon_sym_SEMI] = ACTIONS(61),
- [anon_sym_case] = ACTIONS(506),
- [anon_sym_yield] = ACTIONS(63),
- [anon_sym_LBRACK] = ACTIONS(65),
- [sym_glimmer_opening_tag] = ACTIONS(67),
- [anon_sym_DQUOTE] = ACTIONS(69),
- [anon_sym_SQUOTE] = ACTIONS(71),
- [anon_sym_class] = ACTIONS(73),
- [anon_sym_async] = ACTIONS(75),
- [anon_sym_function] = ACTIONS(77),
- [anon_sym_new] = ACTIONS(79),
- [anon_sym_using] = ACTIONS(81),
- [anon_sym_PLUS] = ACTIONS(21),
- [anon_sym_DASH] = ACTIONS(21),
- [anon_sym_SLASH] = ACTIONS(83),
- [anon_sym_LT] = ACTIONS(85),
- [anon_sym_TILDE] = ACTIONS(33),
- [anon_sym_void] = ACTIONS(21),
- [anon_sym_delete] = ACTIONS(21),
- [anon_sym_PLUS_PLUS] = ACTIONS(87),
- [anon_sym_DASH_DASH] = ACTIONS(87),
- [sym_comment] = ACTIONS(5),
- [anon_sym_BQUOTE] = ACTIONS(89),
- [sym_number] = ACTIONS(91),
- [sym_private_property_identifier] = ACTIONS(93),
- [sym_this] = ACTIONS(95),
- [sym_super] = ACTIONS(95),
- [sym_true] = ACTIONS(95),
- [sym_false] = ACTIONS(95),
- [sym_null] = ACTIONS(95),
- [sym_undefined] = ACTIONS(97),
- [anon_sym_AT] = ACTIONS(99),
- [anon_sym_static] = ACTIONS(101),
- [anon_sym_readonly] = ACTIONS(101),
- [anon_sym_get] = ACTIONS(101),
- [anon_sym_set] = ACTIONS(101),
- [anon_sym_declare] = ACTIONS(103),
- [anon_sym_public] = ACTIONS(101),
- [anon_sym_private] = ACTIONS(101),
- [anon_sym_protected] = ACTIONS(101),
- [anon_sym_override] = ACTIONS(101),
- [anon_sym_module] = ACTIONS(105),
- [anon_sym_any] = ACTIONS(101),
- [anon_sym_number] = ACTIONS(101),
- [anon_sym_boolean] = ACTIONS(101),
- [anon_sym_string] = ACTIONS(101),
- [anon_sym_symbol] = ACTIONS(101),
- [anon_sym_object] = ACTIONS(101),
- [anon_sym_abstract] = ACTIONS(107),
- [anon_sym_interface] = ACTIONS(109),
- [anon_sym_enum] = ACTIONS(111),
- [sym_html_comment] = ACTIONS(5),
- },
- [13] = {
- [sym_export_statement] = STATE(854),
- [sym_declaration] = STATE(854),
- [sym_import] = STATE(3306),
- [sym_import_statement] = STATE(854),
- [sym_statement] = STATE(10),
- [sym_expression_statement] = STATE(854),
- [sym_variable_declaration] = STATE(861),
- [sym_lexical_declaration] = STATE(861),
- [sym_statement_block] = STATE(854),
- [sym_if_statement] = STATE(854),
- [sym_switch_statement] = STATE(854),
- [sym_for_statement] = STATE(854),
- [sym_for_in_statement] = STATE(854),
- [sym_while_statement] = STATE(854),
- [sym_do_statement] = STATE(854),
- [sym_try_statement] = STATE(854),
- [sym_with_statement] = STATE(854),
- [sym_break_statement] = STATE(854),
- [sym_continue_statement] = STATE(854),
- [sym_debugger_statement] = STATE(854),
- [sym_return_statement] = STATE(854),
- [sym_throw_statement] = STATE(854),
- [sym_empty_statement] = STATE(854),
- [sym_labeled_statement] = STATE(854),
- [sym_parenthesized_expression] = STATE(1294),
- [sym_expression] = STATE(1705),
- [sym_primary_expression] = STATE(1946),
- [sym_yield_expression] = STATE(2234),
- [sym_object] = STATE(2310),
- [sym_object_pattern] = STATE(5667),
- [sym_array] = STATE(2310),
- [sym_array_pattern] = STATE(5667),
- [sym_glimmer_template] = STATE(2234),
- [sym_jsx_element] = STATE(2234),
- [sym_jsx_opening_element] = STATE(3051),
- [sym_jsx_self_closing_element] = STATE(2234),
- [sym_class] = STATE(2310),
- [sym_class_declaration] = STATE(861),
- [sym_function_expression] = STATE(2310),
- [sym_function_declaration] = STATE(861),
- [sym_generator_function] = STATE(2310),
- [sym_generator_function_declaration] = STATE(861),
- [sym_arrow_function] = STATE(2310),
- [sym__call_signature] = STATE(5809),
- [sym_call_expression] = STATE(2310),
- [sym_new_expression] = STATE(2234),
- [sym_await_expression] = STATE(2234),
- [sym_member_expression] = STATE(1294),
- [sym_subscript_expression] = STATE(1294),
- [sym_assignment_expression] = STATE(2234),
- [sym__augmented_assignment_lhs] = STATE(2875),
- [sym_augmented_assignment_expression] = STATE(2234),
- [sym__destructuring_pattern] = STATE(5667),
- [sym_ternary_expression] = STATE(2234),
- [sym_binary_expression] = STATE(2234),
- [sym_unary_expression] = STATE(2234),
- [sym_update_expression] = STATE(2234),
- [sym_sequence_expression] = STATE(5482),
- [sym_string] = STATE(2310),
- [sym_template_string] = STATE(2310),
- [sym_regex] = STATE(2310),
- [sym_meta_property] = STATE(2310),
- [sym_decorator] = STATE(1244),
- [sym_formal_parameters] = STATE(3742),
- [sym_non_null_expression] = STATE(1294),
- [sym_function_signature] = STATE(861),
- [sym_as_expression] = STATE(2234),
- [sym_satisfies_expression] = STATE(2234),
- [sym_instantiation_expression] = STATE(2234),
- [sym_ambient_declaration] = STATE(861),
- [sym_abstract_class_declaration] = STATE(861),
- [sym_module] = STATE(861),
- [sym_internal_module] = STATE(223),
- [sym_import_alias] = STATE(861),
- [sym_interface_declaration] = STATE(861),
- [sym_enum_declaration] = STATE(861),
- [sym_type_alias_declaration] = STATE(861),
- [sym_type_parameters] = STATE(5349),
- [aux_sym_program_repeat1] = STATE(10),
- [aux_sym_export_statement_repeat1] = STATE(3848),
- [sym_identifier] = ACTIONS(9),
- [anon_sym_export] = ACTIONS(13),
- [anon_sym_default] = ACTIONS(510),
- [anon_sym_type] = ACTIONS(15),
- [anon_sym_namespace] = ACTIONS(17),
- [anon_sym_LBRACE] = ACTIONS(19),
- [anon_sym_RBRACE] = ACTIONS(512),
- [anon_sym_typeof] = ACTIONS(21),
- [anon_sym_import] = ACTIONS(23),
- [anon_sym_with] = ACTIONS(25),
- [anon_sym_var] = ACTIONS(27),
- [anon_sym_let] = ACTIONS(29),
- [anon_sym_const] = ACTIONS(31),
- [anon_sym_BANG] = ACTIONS(33),
- [anon_sym_if] = ACTIONS(35),
- [anon_sym_switch] = ACTIONS(37),
- [anon_sym_for] = ACTIONS(39),
- [anon_sym_LPAREN] = ACTIONS(41),
- [anon_sym_await] = ACTIONS(43),
- [anon_sym_while] = ACTIONS(45),
- [anon_sym_do] = ACTIONS(47),
- [anon_sym_try] = ACTIONS(49),
- [anon_sym_break] = ACTIONS(51),
- [anon_sym_continue] = ACTIONS(53),
- [anon_sym_debugger] = ACTIONS(55),
- [anon_sym_return] = ACTIONS(57),
- [anon_sym_throw] = ACTIONS(59),
- [anon_sym_SEMI] = ACTIONS(61),
- [anon_sym_case] = ACTIONS(510),
- [anon_sym_yield] = ACTIONS(63),
- [anon_sym_LBRACK] = ACTIONS(65),
- [sym_glimmer_opening_tag] = ACTIONS(67),
- [anon_sym_DQUOTE] = ACTIONS(69),
- [anon_sym_SQUOTE] = ACTIONS(71),
- [anon_sym_class] = ACTIONS(73),
- [anon_sym_async] = ACTIONS(75),
- [anon_sym_function] = ACTIONS(77),
- [anon_sym_new] = ACTIONS(79),
- [anon_sym_using] = ACTIONS(81),
- [anon_sym_PLUS] = ACTIONS(21),
- [anon_sym_DASH] = ACTIONS(21),
- [anon_sym_SLASH] = ACTIONS(83),
- [anon_sym_LT] = ACTIONS(85),
- [anon_sym_TILDE] = ACTIONS(33),
- [anon_sym_void] = ACTIONS(21),
- [anon_sym_delete] = ACTIONS(21),
- [anon_sym_PLUS_PLUS] = ACTIONS(87),
- [anon_sym_DASH_DASH] = ACTIONS(87),
- [sym_comment] = ACTIONS(5),
- [anon_sym_BQUOTE] = ACTIONS(89),
- [sym_number] = ACTIONS(91),
- [sym_private_property_identifier] = ACTIONS(93),
- [sym_this] = ACTIONS(95),
- [sym_super] = ACTIONS(95),
- [sym_true] = ACTIONS(95),
- [sym_false] = ACTIONS(95),
- [sym_null] = ACTIONS(95),
- [sym_undefined] = ACTIONS(97),
- [anon_sym_AT] = ACTIONS(99),
- [anon_sym_static] = ACTIONS(101),
- [anon_sym_readonly] = ACTIONS(101),
- [anon_sym_get] = ACTIONS(101),
- [anon_sym_set] = ACTIONS(101),
- [anon_sym_declare] = ACTIONS(103),
- [anon_sym_public] = ACTIONS(101),
- [anon_sym_private] = ACTIONS(101),
- [anon_sym_protected] = ACTIONS(101),
- [anon_sym_override] = ACTIONS(101),
- [anon_sym_module] = ACTIONS(105),
- [anon_sym_any] = ACTIONS(101),
- [anon_sym_number] = ACTIONS(101),
- [anon_sym_boolean] = ACTIONS(101),
- [anon_sym_string] = ACTIONS(101),
- [anon_sym_symbol] = ACTIONS(101),
- [anon_sym_object] = ACTIONS(101),
- [anon_sym_abstract] = ACTIONS(107),
- [anon_sym_interface] = ACTIONS(109),
- [anon_sym_enum] = ACTIONS(111),
- [sym_html_comment] = ACTIONS(5),
- },
- [14] = {
- [sym_export_statement] = STATE(854),
- [sym_declaration] = STATE(854),
- [sym_import] = STATE(3306),
- [sym_import_statement] = STATE(854),
- [sym_statement] = STATE(9),
- [sym_expression_statement] = STATE(854),
- [sym_variable_declaration] = STATE(861),
- [sym_lexical_declaration] = STATE(861),
- [sym_statement_block] = STATE(854),
- [sym_if_statement] = STATE(854),
- [sym_switch_statement] = STATE(854),
- [sym_for_statement] = STATE(854),
- [sym_for_in_statement] = STATE(854),
- [sym_while_statement] = STATE(854),
- [sym_do_statement] = STATE(854),
- [sym_try_statement] = STATE(854),
- [sym_with_statement] = STATE(854),
- [sym_break_statement] = STATE(854),
- [sym_continue_statement] = STATE(854),
- [sym_debugger_statement] = STATE(854),
- [sym_return_statement] = STATE(854),
- [sym_throw_statement] = STATE(854),
- [sym_empty_statement] = STATE(854),
- [sym_labeled_statement] = STATE(854),
- [sym_parenthesized_expression] = STATE(1294),
- [sym_expression] = STATE(1705),
- [sym_primary_expression] = STATE(1946),
- [sym_yield_expression] = STATE(2234),
- [sym_object] = STATE(2310),
- [sym_object_pattern] = STATE(5667),
- [sym_array] = STATE(2310),
- [sym_array_pattern] = STATE(5667),
- [sym_glimmer_template] = STATE(2234),
- [sym_jsx_element] = STATE(2234),
- [sym_jsx_opening_element] = STATE(3051),
- [sym_jsx_self_closing_element] = STATE(2234),
- [sym_class] = STATE(2310),
- [sym_class_declaration] = STATE(861),
- [sym_function_expression] = STATE(2310),
- [sym_function_declaration] = STATE(861),
- [sym_generator_function] = STATE(2310),
- [sym_generator_function_declaration] = STATE(861),
- [sym_arrow_function] = STATE(2310),
- [sym__call_signature] = STATE(5809),
- [sym_call_expression] = STATE(2310),
- [sym_new_expression] = STATE(2234),
- [sym_await_expression] = STATE(2234),
- [sym_member_expression] = STATE(1294),
- [sym_subscript_expression] = STATE(1294),
- [sym_assignment_expression] = STATE(2234),
- [sym__augmented_assignment_lhs] = STATE(2875),
- [sym_augmented_assignment_expression] = STATE(2234),
- [sym__destructuring_pattern] = STATE(5667),
- [sym_ternary_expression] = STATE(2234),
- [sym_binary_expression] = STATE(2234),
- [sym_unary_expression] = STATE(2234),
- [sym_update_expression] = STATE(2234),
- [sym_sequence_expression] = STATE(5482),
- [sym_string] = STATE(2310),
- [sym_template_string] = STATE(2310),
- [sym_regex] = STATE(2310),
- [sym_meta_property] = STATE(2310),
- [sym_decorator] = STATE(1244),
- [sym_formal_parameters] = STATE(3742),
- [sym_non_null_expression] = STATE(1294),
- [sym_function_signature] = STATE(861),
- [sym_as_expression] = STATE(2234),
- [sym_satisfies_expression] = STATE(2234),
- [sym_instantiation_expression] = STATE(2234),
- [sym_ambient_declaration] = STATE(861),
- [sym_abstract_class_declaration] = STATE(861),
- [sym_module] = STATE(861),
- [sym_internal_module] = STATE(223),
- [sym_import_alias] = STATE(861),
- [sym_interface_declaration] = STATE(861),
- [sym_enum_declaration] = STATE(861),
- [sym_type_alias_declaration] = STATE(861),
- [sym_type_parameters] = STATE(5349),
- [aux_sym_program_repeat1] = STATE(9),
- [aux_sym_export_statement_repeat1] = STATE(3848),
- [sym_identifier] = ACTIONS(9),
- [anon_sym_export] = ACTIONS(13),
- [anon_sym_type] = ACTIONS(15),
- [anon_sym_namespace] = ACTIONS(17),
- [anon_sym_LBRACE] = ACTIONS(19),
- [anon_sym_RBRACE] = ACTIONS(514),
- [anon_sym_typeof] = ACTIONS(21),
- [anon_sym_import] = ACTIONS(23),
- [anon_sym_with] = ACTIONS(25),
- [anon_sym_var] = ACTIONS(27),
- [anon_sym_let] = ACTIONS(29),
- [anon_sym_const] = ACTIONS(31),
- [anon_sym_BANG] = ACTIONS(33),
- [anon_sym_if] = ACTIONS(35),
- [anon_sym_switch] = ACTIONS(37),
- [anon_sym_for] = ACTIONS(39),
- [anon_sym_LPAREN] = ACTIONS(41),
- [anon_sym_await] = ACTIONS(43),
- [anon_sym_while] = ACTIONS(45),
- [anon_sym_do] = ACTIONS(47),
- [anon_sym_try] = ACTIONS(49),
- [anon_sym_break] = ACTIONS(51),
- [anon_sym_continue] = ACTIONS(53),
- [anon_sym_debugger] = ACTIONS(55),
- [anon_sym_return] = ACTIONS(57),
- [anon_sym_throw] = ACTIONS(59),
- [anon_sym_SEMI] = ACTIONS(61),
- [anon_sym_yield] = ACTIONS(63),
- [anon_sym_LBRACK] = ACTIONS(65),
- [sym_glimmer_opening_tag] = ACTIONS(67),
- [anon_sym_DQUOTE] = ACTIONS(69),
- [anon_sym_SQUOTE] = ACTIONS(71),
- [anon_sym_class] = ACTIONS(73),
- [anon_sym_async] = ACTIONS(75),
- [anon_sym_function] = ACTIONS(77),
- [anon_sym_new] = ACTIONS(79),
- [anon_sym_using] = ACTIONS(81),
- [anon_sym_PLUS] = ACTIONS(21),
- [anon_sym_DASH] = ACTIONS(21),
- [anon_sym_SLASH] = ACTIONS(83),
- [anon_sym_LT] = ACTIONS(85),
- [anon_sym_TILDE] = ACTIONS(33),
- [anon_sym_void] = ACTIONS(21),
- [anon_sym_delete] = ACTIONS(21),
- [anon_sym_PLUS_PLUS] = ACTIONS(87),
- [anon_sym_DASH_DASH] = ACTIONS(87),
- [sym_comment] = ACTIONS(5),
- [anon_sym_BQUOTE] = ACTIONS(89),
- [sym_number] = ACTIONS(91),
- [sym_private_property_identifier] = ACTIONS(93),
- [sym_this] = ACTIONS(95),
- [sym_super] = ACTIONS(95),
- [sym_true] = ACTIONS(95),
- [sym_false] = ACTIONS(95),
- [sym_null] = ACTIONS(95),
- [sym_undefined] = ACTIONS(97),
- [anon_sym_AT] = ACTIONS(99),
- [anon_sym_static] = ACTIONS(101),
- [anon_sym_readonly] = ACTIONS(101),
- [anon_sym_get] = ACTIONS(101),
- [anon_sym_set] = ACTIONS(101),
- [anon_sym_declare] = ACTIONS(103),
- [anon_sym_public] = ACTIONS(101),
- [anon_sym_private] = ACTIONS(101),
- [anon_sym_protected] = ACTIONS(101),
- [anon_sym_override] = ACTIONS(101),
- [anon_sym_module] = ACTIONS(105),
- [anon_sym_any] = ACTIONS(101),
- [anon_sym_number] = ACTIONS(101),
- [anon_sym_boolean] = ACTIONS(101),
- [anon_sym_string] = ACTIONS(101),
- [anon_sym_symbol] = ACTIONS(101),
- [anon_sym_object] = ACTIONS(101),
- [anon_sym_abstract] = ACTIONS(107),
- [anon_sym_interface] = ACTIONS(109),
- [anon_sym_enum] = ACTIONS(111),
- [sym_html_comment] = ACTIONS(5),
- },
- [15] = {
- [sym_export_statement] = STATE(854),
- [sym_declaration] = STATE(854),
- [sym_import] = STATE(3306),
- [sym_import_statement] = STATE(854),
- [sym_statement] = STATE(9),
- [sym_expression_statement] = STATE(854),
- [sym_variable_declaration] = STATE(861),
- [sym_lexical_declaration] = STATE(861),
- [sym_statement_block] = STATE(854),
- [sym_if_statement] = STATE(854),
- [sym_switch_statement] = STATE(854),
- [sym_for_statement] = STATE(854),
- [sym_for_in_statement] = STATE(854),
- [sym_while_statement] = STATE(854),
- [sym_do_statement] = STATE(854),
- [sym_try_statement] = STATE(854),
- [sym_with_statement] = STATE(854),
- [sym_break_statement] = STATE(854),
- [sym_continue_statement] = STATE(854),
- [sym_debugger_statement] = STATE(854),
- [sym_return_statement] = STATE(854),
- [sym_throw_statement] = STATE(854),
- [sym_empty_statement] = STATE(854),
- [sym_labeled_statement] = STATE(854),
- [sym_parenthesized_expression] = STATE(1294),
- [sym_expression] = STATE(1705),
- [sym_primary_expression] = STATE(1946),
- [sym_yield_expression] = STATE(2234),
- [sym_object] = STATE(2310),
- [sym_object_pattern] = STATE(5667),
- [sym_array] = STATE(2310),
- [sym_array_pattern] = STATE(5667),
- [sym_glimmer_template] = STATE(2234),
- [sym_jsx_element] = STATE(2234),
- [sym_jsx_opening_element] = STATE(3051),
- [sym_jsx_self_closing_element] = STATE(2234),
- [sym_class] = STATE(2310),
- [sym_class_declaration] = STATE(861),
- [sym_function_expression] = STATE(2310),
- [sym_function_declaration] = STATE(861),
- [sym_generator_function] = STATE(2310),
- [sym_generator_function_declaration] = STATE(861),
- [sym_arrow_function] = STATE(2310),
- [sym__call_signature] = STATE(5809),
- [sym_call_expression] = STATE(2310),
- [sym_new_expression] = STATE(2234),
- [sym_await_expression] = STATE(2234),
- [sym_member_expression] = STATE(1294),
- [sym_subscript_expression] = STATE(1294),
- [sym_assignment_expression] = STATE(2234),
- [sym__augmented_assignment_lhs] = STATE(2875),
- [sym_augmented_assignment_expression] = STATE(2234),
- [sym__destructuring_pattern] = STATE(5667),
- [sym_ternary_expression] = STATE(2234),
- [sym_binary_expression] = STATE(2234),
- [sym_unary_expression] = STATE(2234),
- [sym_update_expression] = STATE(2234),
- [sym_sequence_expression] = STATE(5482),
- [sym_string] = STATE(2310),
- [sym_template_string] = STATE(2310),
- [sym_regex] = STATE(2310),
- [sym_meta_property] = STATE(2310),
- [sym_decorator] = STATE(1244),
- [sym_formal_parameters] = STATE(3742),
- [sym_non_null_expression] = STATE(1294),
- [sym_function_signature] = STATE(861),
- [sym_as_expression] = STATE(2234),
- [sym_satisfies_expression] = STATE(2234),
- [sym_instantiation_expression] = STATE(2234),
- [sym_ambient_declaration] = STATE(861),
- [sym_abstract_class_declaration] = STATE(861),
- [sym_module] = STATE(861),
- [sym_internal_module] = STATE(223),
- [sym_import_alias] = STATE(861),
- [sym_interface_declaration] = STATE(861),
- [sym_enum_declaration] = STATE(861),
- [sym_type_alias_declaration] = STATE(861),
- [sym_type_parameters] = STATE(5349),
- [aux_sym_program_repeat1] = STATE(9),
- [aux_sym_export_statement_repeat1] = STATE(3848),
- [ts_builtin_sym_end] = ACTIONS(516),
- [sym_identifier] = ACTIONS(9),
- [anon_sym_export] = ACTIONS(13),
- [anon_sym_type] = ACTIONS(15),
- [anon_sym_namespace] = ACTIONS(17),
- [anon_sym_LBRACE] = ACTIONS(19),
- [anon_sym_typeof] = ACTIONS(21),
- [anon_sym_import] = ACTIONS(23),
- [anon_sym_with] = ACTIONS(25),
- [anon_sym_var] = ACTIONS(27),
- [anon_sym_let] = ACTIONS(29),
- [anon_sym_const] = ACTIONS(31),
- [anon_sym_BANG] = ACTIONS(33),
- [anon_sym_if] = ACTIONS(35),
- [anon_sym_switch] = ACTIONS(37),
- [anon_sym_for] = ACTIONS(39),
- [anon_sym_LPAREN] = ACTIONS(41),
- [anon_sym_await] = ACTIONS(43),
- [anon_sym_while] = ACTIONS(45),
- [anon_sym_do] = ACTIONS(47),
- [anon_sym_try] = ACTIONS(49),
- [anon_sym_break] = ACTIONS(51),
- [anon_sym_continue] = ACTIONS(53),
- [anon_sym_debugger] = ACTIONS(55),
- [anon_sym_return] = ACTIONS(57),
- [anon_sym_throw] = ACTIONS(59),
- [anon_sym_SEMI] = ACTIONS(61),
- [anon_sym_yield] = ACTIONS(63),
- [anon_sym_LBRACK] = ACTIONS(65),
- [sym_glimmer_opening_tag] = ACTIONS(67),
- [anon_sym_DQUOTE] = ACTIONS(69),
- [anon_sym_SQUOTE] = ACTIONS(71),
- [anon_sym_class] = ACTIONS(73),
- [anon_sym_async] = ACTIONS(75),
- [anon_sym_function] = ACTIONS(77),
- [anon_sym_new] = ACTIONS(79),
- [anon_sym_using] = ACTIONS(81),
- [anon_sym_PLUS] = ACTIONS(21),
- [anon_sym_DASH] = ACTIONS(21),
- [anon_sym_SLASH] = ACTIONS(83),
- [anon_sym_LT] = ACTIONS(85),
- [anon_sym_TILDE] = ACTIONS(33),
- [anon_sym_void] = ACTIONS(21),
- [anon_sym_delete] = ACTIONS(21),
- [anon_sym_PLUS_PLUS] = ACTIONS(87),
- [anon_sym_DASH_DASH] = ACTIONS(87),
- [sym_comment] = ACTIONS(5),
- [anon_sym_BQUOTE] = ACTIONS(89),
- [sym_number] = ACTIONS(91),
- [sym_private_property_identifier] = ACTIONS(93),
- [sym_this] = ACTIONS(95),
- [sym_super] = ACTIONS(95),
- [sym_true] = ACTIONS(95),
- [sym_false] = ACTIONS(95),
- [sym_null] = ACTIONS(95),
- [sym_undefined] = ACTIONS(97),
- [anon_sym_AT] = ACTIONS(99),
- [anon_sym_static] = ACTIONS(101),
- [anon_sym_readonly] = ACTIONS(101),
- [anon_sym_get] = ACTIONS(101),
- [anon_sym_set] = ACTIONS(101),
- [anon_sym_declare] = ACTIONS(103),
- [anon_sym_public] = ACTIONS(101),
- [anon_sym_private] = ACTIONS(101),
- [anon_sym_protected] = ACTIONS(101),
- [anon_sym_override] = ACTIONS(101),
- [anon_sym_module] = ACTIONS(105),
- [anon_sym_any] = ACTIONS(101),
- [anon_sym_number] = ACTIONS(101),
- [anon_sym_boolean] = ACTIONS(101),
- [anon_sym_string] = ACTIONS(101),
- [anon_sym_symbol] = ACTIONS(101),
- [anon_sym_object] = ACTIONS(101),
- [anon_sym_abstract] = ACTIONS(107),
- [anon_sym_interface] = ACTIONS(109),
- [anon_sym_enum] = ACTIONS(111),
- [sym_html_comment] = ACTIONS(5),
- },
- [16] = {
- [sym_export_statement] = STATE(854),
- [sym_declaration] = STATE(854),
- [sym_import] = STATE(3306),
- [sym_import_statement] = STATE(854),
- [sym_statement] = STATE(9),
- [sym_expression_statement] = STATE(854),
- [sym_variable_declaration] = STATE(861),
- [sym_lexical_declaration] = STATE(861),
- [sym_statement_block] = STATE(854),
- [sym_if_statement] = STATE(854),
- [sym_switch_statement] = STATE(854),
- [sym_for_statement] = STATE(854),
- [sym_for_in_statement] = STATE(854),
- [sym_while_statement] = STATE(854),
- [sym_do_statement] = STATE(854),
- [sym_try_statement] = STATE(854),
- [sym_with_statement] = STATE(854),
- [sym_break_statement] = STATE(854),
- [sym_continue_statement] = STATE(854),
- [sym_debugger_statement] = STATE(854),
- [sym_return_statement] = STATE(854),
- [sym_throw_statement] = STATE(854),
- [sym_empty_statement] = STATE(854),
- [sym_labeled_statement] = STATE(854),
- [sym_parenthesized_expression] = STATE(1294),
- [sym_expression] = STATE(1705),
- [sym_primary_expression] = STATE(1946),
- [sym_yield_expression] = STATE(2234),
- [sym_object] = STATE(2310),
- [sym_object_pattern] = STATE(5667),
- [sym_array] = STATE(2310),
- [sym_array_pattern] = STATE(5667),
- [sym_glimmer_template] = STATE(2234),
- [sym_jsx_element] = STATE(2234),
- [sym_jsx_opening_element] = STATE(3051),
- [sym_jsx_self_closing_element] = STATE(2234),
- [sym_class] = STATE(2310),
- [sym_class_declaration] = STATE(861),
- [sym_function_expression] = STATE(2310),
- [sym_function_declaration] = STATE(861),
- [sym_generator_function] = STATE(2310),
- [sym_generator_function_declaration] = STATE(861),
- [sym_arrow_function] = STATE(2310),
- [sym__call_signature] = STATE(5809),
- [sym_call_expression] = STATE(2310),
- [sym_new_expression] = STATE(2234),
- [sym_await_expression] = STATE(2234),
- [sym_member_expression] = STATE(1294),
- [sym_subscript_expression] = STATE(1294),
- [sym_assignment_expression] = STATE(2234),
- [sym__augmented_assignment_lhs] = STATE(2875),
- [sym_augmented_assignment_expression] = STATE(2234),
- [sym__destructuring_pattern] = STATE(5667),
- [sym_ternary_expression] = STATE(2234),
- [sym_binary_expression] = STATE(2234),
- [sym_unary_expression] = STATE(2234),
- [sym_update_expression] = STATE(2234),
- [sym_sequence_expression] = STATE(5482),
- [sym_string] = STATE(2310),
- [sym_template_string] = STATE(2310),
- [sym_regex] = STATE(2310),
- [sym_meta_property] = STATE(2310),
- [sym_decorator] = STATE(1244),
- [sym_formal_parameters] = STATE(3742),
- [sym_non_null_expression] = STATE(1294),
- [sym_function_signature] = STATE(861),
- [sym_as_expression] = STATE(2234),
- [sym_satisfies_expression] = STATE(2234),
- [sym_instantiation_expression] = STATE(2234),
- [sym_ambient_declaration] = STATE(861),
- [sym_abstract_class_declaration] = STATE(861),
- [sym_module] = STATE(861),
- [sym_internal_module] = STATE(223),
- [sym_import_alias] = STATE(861),
- [sym_interface_declaration] = STATE(861),
- [sym_enum_declaration] = STATE(861),
- [sym_type_alias_declaration] = STATE(861),
- [sym_type_parameters] = STATE(5349),
- [aux_sym_program_repeat1] = STATE(9),
- [aux_sym_export_statement_repeat1] = STATE(3848),
- [ts_builtin_sym_end] = ACTIONS(518),
- [sym_identifier] = ACTIONS(9),
- [anon_sym_export] = ACTIONS(13),
- [anon_sym_type] = ACTIONS(15),
- [anon_sym_namespace] = ACTIONS(17),
- [anon_sym_LBRACE] = ACTIONS(19),
- [anon_sym_typeof] = ACTIONS(21),
- [anon_sym_import] = ACTIONS(23),
- [anon_sym_with] = ACTIONS(25),
- [anon_sym_var] = ACTIONS(27),
- [anon_sym_let] = ACTIONS(29),
- [anon_sym_const] = ACTIONS(31),
- [anon_sym_BANG] = ACTIONS(33),
- [anon_sym_if] = ACTIONS(35),
- [anon_sym_switch] = ACTIONS(37),
- [anon_sym_for] = ACTIONS(39),
- [anon_sym_LPAREN] = ACTIONS(41),
- [anon_sym_await] = ACTIONS(43),
- [anon_sym_while] = ACTIONS(45),
- [anon_sym_do] = ACTIONS(47),
- [anon_sym_try] = ACTIONS(49),
- [anon_sym_break] = ACTIONS(51),
- [anon_sym_continue] = ACTIONS(53),
- [anon_sym_debugger] = ACTIONS(55),
- [anon_sym_return] = ACTIONS(57),
- [anon_sym_throw] = ACTIONS(59),
- [anon_sym_SEMI] = ACTIONS(61),
- [anon_sym_yield] = ACTIONS(63),
- [anon_sym_LBRACK] = ACTIONS(65),
- [sym_glimmer_opening_tag] = ACTIONS(67),
- [anon_sym_DQUOTE] = ACTIONS(69),
- [anon_sym_SQUOTE] = ACTIONS(71),
- [anon_sym_class] = ACTIONS(73),
- [anon_sym_async] = ACTIONS(75),
- [anon_sym_function] = ACTIONS(77),
- [anon_sym_new] = ACTIONS(79),
- [anon_sym_using] = ACTIONS(81),
- [anon_sym_PLUS] = ACTIONS(21),
- [anon_sym_DASH] = ACTIONS(21),
- [anon_sym_SLASH] = ACTIONS(83),
- [anon_sym_LT] = ACTIONS(85),
- [anon_sym_TILDE] = ACTIONS(33),
- [anon_sym_void] = ACTIONS(21),
- [anon_sym_delete] = ACTIONS(21),
- [anon_sym_PLUS_PLUS] = ACTIONS(87),
- [anon_sym_DASH_DASH] = ACTIONS(87),
- [sym_comment] = ACTIONS(5),
- [anon_sym_BQUOTE] = ACTIONS(89),
- [sym_number] = ACTIONS(91),
- [sym_private_property_identifier] = ACTIONS(93),
- [sym_this] = ACTIONS(95),
- [sym_super] = ACTIONS(95),
- [sym_true] = ACTIONS(95),
- [sym_false] = ACTIONS(95),
- [sym_null] = ACTIONS(95),
- [sym_undefined] = ACTIONS(97),
- [anon_sym_AT] = ACTIONS(99),
- [anon_sym_static] = ACTIONS(101),
- [anon_sym_readonly] = ACTIONS(101),
- [anon_sym_get] = ACTIONS(101),
- [anon_sym_set] = ACTIONS(101),
- [anon_sym_declare] = ACTIONS(103),
- [anon_sym_public] = ACTIONS(101),
- [anon_sym_private] = ACTIONS(101),
- [anon_sym_protected] = ACTIONS(101),
- [anon_sym_override] = ACTIONS(101),
- [anon_sym_module] = ACTIONS(105),
- [anon_sym_any] = ACTIONS(101),
- [anon_sym_number] = ACTIONS(101),
- [anon_sym_boolean] = ACTIONS(101),
- [anon_sym_string] = ACTIONS(101),
- [anon_sym_symbol] = ACTIONS(101),
- [anon_sym_object] = ACTIONS(101),
- [anon_sym_abstract] = ACTIONS(107),
- [anon_sym_interface] = ACTIONS(109),
- [anon_sym_enum] = ACTIONS(111),
- [sym_html_comment] = ACTIONS(5),
- },
- [17] = {
- [sym_export_statement] = STATE(854),
- [sym_declaration] = STATE(854),
- [sym_import] = STATE(3306),
- [sym_import_statement] = STATE(854),
- [sym_statement] = STATE(14),
- [sym_expression_statement] = STATE(854),
- [sym_variable_declaration] = STATE(861),
- [sym_lexical_declaration] = STATE(861),
- [sym_statement_block] = STATE(854),
- [sym_if_statement] = STATE(854),
- [sym_switch_statement] = STATE(854),
- [sym_for_statement] = STATE(854),
- [sym_for_in_statement] = STATE(854),
- [sym_while_statement] = STATE(854),
- [sym_do_statement] = STATE(854),
- [sym_try_statement] = STATE(854),
- [sym_with_statement] = STATE(854),
- [sym_break_statement] = STATE(854),
- [sym_continue_statement] = STATE(854),
- [sym_debugger_statement] = STATE(854),
- [sym_return_statement] = STATE(854),
- [sym_throw_statement] = STATE(854),
- [sym_empty_statement] = STATE(854),
- [sym_labeled_statement] = STATE(854),
- [sym_parenthesized_expression] = STATE(1294),
- [sym_expression] = STATE(1705),
- [sym_primary_expression] = STATE(1946),
- [sym_yield_expression] = STATE(2234),
- [sym_object] = STATE(2310),
- [sym_object_pattern] = STATE(5667),
- [sym_array] = STATE(2310),
- [sym_array_pattern] = STATE(5667),
- [sym_glimmer_template] = STATE(2234),
- [sym_jsx_element] = STATE(2234),
- [sym_jsx_opening_element] = STATE(3051),
- [sym_jsx_self_closing_element] = STATE(2234),
- [sym_class] = STATE(2310),
- [sym_class_declaration] = STATE(861),
- [sym_function_expression] = STATE(2310),
- [sym_function_declaration] = STATE(861),
- [sym_generator_function] = STATE(2310),
- [sym_generator_function_declaration] = STATE(861),
- [sym_arrow_function] = STATE(2310),
- [sym__call_signature] = STATE(5809),
- [sym_call_expression] = STATE(2310),
- [sym_new_expression] = STATE(2234),
- [sym_await_expression] = STATE(2234),
- [sym_member_expression] = STATE(1294),
- [sym_subscript_expression] = STATE(1294),
- [sym_assignment_expression] = STATE(2234),
- [sym__augmented_assignment_lhs] = STATE(2875),
- [sym_augmented_assignment_expression] = STATE(2234),
- [sym__destructuring_pattern] = STATE(5667),
- [sym_ternary_expression] = STATE(2234),
- [sym_binary_expression] = STATE(2234),
- [sym_unary_expression] = STATE(2234),
- [sym_update_expression] = STATE(2234),
- [sym_sequence_expression] = STATE(5482),
- [sym_string] = STATE(2310),
- [sym_template_string] = STATE(2310),
- [sym_regex] = STATE(2310),
- [sym_meta_property] = STATE(2310),
- [sym_decorator] = STATE(1244),
- [sym_formal_parameters] = STATE(3742),
- [sym_non_null_expression] = STATE(1294),
- [sym_function_signature] = STATE(861),
- [sym_as_expression] = STATE(2234),
- [sym_satisfies_expression] = STATE(2234),
- [sym_instantiation_expression] = STATE(2234),
- [sym_ambient_declaration] = STATE(861),
- [sym_abstract_class_declaration] = STATE(861),
- [sym_module] = STATE(861),
- [sym_internal_module] = STATE(223),
- [sym_import_alias] = STATE(861),
- [sym_interface_declaration] = STATE(861),
- [sym_enum_declaration] = STATE(861),
- [sym_type_alias_declaration] = STATE(861),
- [sym_type_parameters] = STATE(5349),
- [aux_sym_program_repeat1] = STATE(14),
- [aux_sym_export_statement_repeat1] = STATE(3848),
- [sym_identifier] = ACTIONS(9),
- [anon_sym_export] = ACTIONS(13),
- [anon_sym_type] = ACTIONS(15),
- [anon_sym_namespace] = ACTIONS(17),
- [anon_sym_LBRACE] = ACTIONS(19),
- [anon_sym_RBRACE] = ACTIONS(520),
- [anon_sym_typeof] = ACTIONS(21),
- [anon_sym_import] = ACTIONS(23),
- [anon_sym_with] = ACTIONS(25),
- [anon_sym_var] = ACTIONS(27),
- [anon_sym_let] = ACTIONS(29),
- [anon_sym_const] = ACTIONS(31),
- [anon_sym_BANG] = ACTIONS(33),
- [anon_sym_if] = ACTIONS(35),
- [anon_sym_switch] = ACTIONS(37),
- [anon_sym_for] = ACTIONS(39),
- [anon_sym_LPAREN] = ACTIONS(41),
- [anon_sym_await] = ACTIONS(43),
- [anon_sym_while] = ACTIONS(45),
- [anon_sym_do] = ACTIONS(47),
- [anon_sym_try] = ACTIONS(49),
- [anon_sym_break] = ACTIONS(51),
- [anon_sym_continue] = ACTIONS(53),
- [anon_sym_debugger] = ACTIONS(55),
- [anon_sym_return] = ACTIONS(57),
- [anon_sym_throw] = ACTIONS(59),
- [anon_sym_SEMI] = ACTIONS(61),
- [anon_sym_yield] = ACTIONS(63),
- [anon_sym_LBRACK] = ACTIONS(65),
- [sym_glimmer_opening_tag] = ACTIONS(67),
- [anon_sym_DQUOTE] = ACTIONS(69),
- [anon_sym_SQUOTE] = ACTIONS(71),
- [anon_sym_class] = ACTIONS(73),
- [anon_sym_async] = ACTIONS(75),
- [anon_sym_function] = ACTIONS(77),
- [anon_sym_new] = ACTIONS(79),
- [anon_sym_using] = ACTIONS(81),
- [anon_sym_PLUS] = ACTIONS(21),
- [anon_sym_DASH] = ACTIONS(21),
- [anon_sym_SLASH] = ACTIONS(83),
- [anon_sym_LT] = ACTIONS(85),
- [anon_sym_TILDE] = ACTIONS(33),
- [anon_sym_void] = ACTIONS(21),
- [anon_sym_delete] = ACTIONS(21),
- [anon_sym_PLUS_PLUS] = ACTIONS(87),
- [anon_sym_DASH_DASH] = ACTIONS(87),
- [sym_comment] = ACTIONS(5),
- [anon_sym_BQUOTE] = ACTIONS(89),
- [sym_number] = ACTIONS(91),
- [sym_private_property_identifier] = ACTIONS(93),
- [sym_this] = ACTIONS(95),
- [sym_super] = ACTIONS(95),
- [sym_true] = ACTIONS(95),
- [sym_false] = ACTIONS(95),
- [sym_null] = ACTIONS(95),
- [sym_undefined] = ACTIONS(97),
- [anon_sym_AT] = ACTIONS(99),
- [anon_sym_static] = ACTIONS(101),
- [anon_sym_readonly] = ACTIONS(101),
- [anon_sym_get] = ACTIONS(101),
- [anon_sym_set] = ACTIONS(101),
- [anon_sym_declare] = ACTIONS(103),
- [anon_sym_public] = ACTIONS(101),
- [anon_sym_private] = ACTIONS(101),
- [anon_sym_protected] = ACTIONS(101),
- [anon_sym_override] = ACTIONS(101),
- [anon_sym_module] = ACTIONS(105),
- [anon_sym_any] = ACTIONS(101),
- [anon_sym_number] = ACTIONS(101),
- [anon_sym_boolean] = ACTIONS(101),
- [anon_sym_string] = ACTIONS(101),
- [anon_sym_symbol] = ACTIONS(101),
- [anon_sym_object] = ACTIONS(101),
- [anon_sym_abstract] = ACTIONS(107),
- [anon_sym_interface] = ACTIONS(109),
- [anon_sym_enum] = ACTIONS(111),
- [sym_html_comment] = ACTIONS(5),
- },
- [18] = {
- [sym_export_statement] = STATE(854),
- [sym_declaration] = STATE(854),
- [sym_import] = STATE(3306),
- [sym_import_statement] = STATE(854),
- [sym_statement] = STATE(15),
- [sym_expression_statement] = STATE(854),
- [sym_variable_declaration] = STATE(861),
- [sym_lexical_declaration] = STATE(861),
- [sym_statement_block] = STATE(854),
- [sym_if_statement] = STATE(854),
- [sym_switch_statement] = STATE(854),
- [sym_for_statement] = STATE(854),
- [sym_for_in_statement] = STATE(854),
- [sym_while_statement] = STATE(854),
- [sym_do_statement] = STATE(854),
- [sym_try_statement] = STATE(854),
- [sym_with_statement] = STATE(854),
- [sym_break_statement] = STATE(854),
- [sym_continue_statement] = STATE(854),
- [sym_debugger_statement] = STATE(854),
- [sym_return_statement] = STATE(854),
- [sym_throw_statement] = STATE(854),
- [sym_empty_statement] = STATE(854),
- [sym_labeled_statement] = STATE(854),
- [sym_parenthesized_expression] = STATE(1294),
- [sym_expression] = STATE(1705),
- [sym_primary_expression] = STATE(1946),
- [sym_yield_expression] = STATE(2234),
- [sym_object] = STATE(2310),
- [sym_object_pattern] = STATE(5667),
- [sym_array] = STATE(2310),
- [sym_array_pattern] = STATE(5667),
- [sym_glimmer_template] = STATE(2234),
- [sym_jsx_element] = STATE(2234),
- [sym_jsx_opening_element] = STATE(3051),
- [sym_jsx_self_closing_element] = STATE(2234),
- [sym_class] = STATE(2310),
- [sym_class_declaration] = STATE(861),
- [sym_function_expression] = STATE(2310),
- [sym_function_declaration] = STATE(861),
- [sym_generator_function] = STATE(2310),
- [sym_generator_function_declaration] = STATE(861),
- [sym_arrow_function] = STATE(2310),
- [sym__call_signature] = STATE(5809),
- [sym_call_expression] = STATE(2310),
- [sym_new_expression] = STATE(2234),
- [sym_await_expression] = STATE(2234),
- [sym_member_expression] = STATE(1294),
- [sym_subscript_expression] = STATE(1294),
- [sym_assignment_expression] = STATE(2234),
- [sym__augmented_assignment_lhs] = STATE(2875),
- [sym_augmented_assignment_expression] = STATE(2234),
- [sym__destructuring_pattern] = STATE(5667),
- [sym_ternary_expression] = STATE(2234),
- [sym_binary_expression] = STATE(2234),
- [sym_unary_expression] = STATE(2234),
- [sym_update_expression] = STATE(2234),
- [sym_sequence_expression] = STATE(5482),
- [sym_string] = STATE(2310),
- [sym_template_string] = STATE(2310),
- [sym_regex] = STATE(2310),
- [sym_meta_property] = STATE(2310),
- [sym_decorator] = STATE(1244),
- [sym_formal_parameters] = STATE(3742),
- [sym_non_null_expression] = STATE(1294),
- [sym_function_signature] = STATE(861),
- [sym_as_expression] = STATE(2234),
- [sym_satisfies_expression] = STATE(2234),
- [sym_instantiation_expression] = STATE(2234),
- [sym_ambient_declaration] = STATE(861),
- [sym_abstract_class_declaration] = STATE(861),
- [sym_module] = STATE(861),
- [sym_internal_module] = STATE(223),
- [sym_import_alias] = STATE(861),
- [sym_interface_declaration] = STATE(861),
- [sym_enum_declaration] = STATE(861),
- [sym_type_alias_declaration] = STATE(861),
- [sym_type_parameters] = STATE(5349),
- [aux_sym_program_repeat1] = STATE(15),
- [aux_sym_export_statement_repeat1] = STATE(3848),
- [ts_builtin_sym_end] = ACTIONS(518),
- [sym_identifier] = ACTIONS(9),
- [anon_sym_export] = ACTIONS(13),
- [anon_sym_type] = ACTIONS(15),
- [anon_sym_namespace] = ACTIONS(17),
- [anon_sym_LBRACE] = ACTIONS(19),
- [anon_sym_typeof] = ACTIONS(21),
- [anon_sym_import] = ACTIONS(23),
- [anon_sym_with] = ACTIONS(25),
- [anon_sym_var] = ACTIONS(27),
- [anon_sym_let] = ACTIONS(29),
- [anon_sym_const] = ACTIONS(31),
- [anon_sym_BANG] = ACTIONS(33),
- [anon_sym_if] = ACTIONS(35),
- [anon_sym_switch] = ACTIONS(37),
- [anon_sym_for] = ACTIONS(39),
- [anon_sym_LPAREN] = ACTIONS(41),
- [anon_sym_await] = ACTIONS(43),
- [anon_sym_while] = ACTIONS(45),
- [anon_sym_do] = ACTIONS(47),
- [anon_sym_try] = ACTIONS(49),
- [anon_sym_break] = ACTIONS(51),
- [anon_sym_continue] = ACTIONS(53),
- [anon_sym_debugger] = ACTIONS(55),
- [anon_sym_return] = ACTIONS(57),
- [anon_sym_throw] = ACTIONS(59),
- [anon_sym_SEMI] = ACTIONS(61),
- [anon_sym_yield] = ACTIONS(63),
- [anon_sym_LBRACK] = ACTIONS(65),
- [sym_glimmer_opening_tag] = ACTIONS(67),
- [anon_sym_DQUOTE] = ACTIONS(69),
- [anon_sym_SQUOTE] = ACTIONS(71),
- [anon_sym_class] = ACTIONS(73),
- [anon_sym_async] = ACTIONS(75),
- [anon_sym_function] = ACTIONS(77),
- [anon_sym_new] = ACTIONS(79),
- [anon_sym_using] = ACTIONS(81),
- [anon_sym_PLUS] = ACTIONS(21),
- [anon_sym_DASH] = ACTIONS(21),
- [anon_sym_SLASH] = ACTIONS(83),
- [anon_sym_LT] = ACTIONS(85),
- [anon_sym_TILDE] = ACTIONS(33),
- [anon_sym_void] = ACTIONS(21),
- [anon_sym_delete] = ACTIONS(21),
- [anon_sym_PLUS_PLUS] = ACTIONS(87),
- [anon_sym_DASH_DASH] = ACTIONS(87),
- [sym_comment] = ACTIONS(5),
- [anon_sym_BQUOTE] = ACTIONS(89),
- [sym_number] = ACTIONS(91),
- [sym_private_property_identifier] = ACTIONS(93),
- [sym_this] = ACTIONS(95),
- [sym_super] = ACTIONS(95),
- [sym_true] = ACTIONS(95),
- [sym_false] = ACTIONS(95),
- [sym_null] = ACTIONS(95),
- [sym_undefined] = ACTIONS(97),
- [anon_sym_AT] = ACTIONS(99),
- [anon_sym_static] = ACTIONS(101),
- [anon_sym_readonly] = ACTIONS(101),
- [anon_sym_get] = ACTIONS(101),
- [anon_sym_set] = ACTIONS(101),
- [anon_sym_declare] = ACTIONS(103),
- [anon_sym_public] = ACTIONS(101),
- [anon_sym_private] = ACTIONS(101),
- [anon_sym_protected] = ACTIONS(101),
- [anon_sym_override] = ACTIONS(101),
- [anon_sym_module] = ACTIONS(105),
- [anon_sym_any] = ACTIONS(101),
- [anon_sym_number] = ACTIONS(101),
- [anon_sym_boolean] = ACTIONS(101),
- [anon_sym_string] = ACTIONS(101),
- [anon_sym_symbol] = ACTIONS(101),
- [anon_sym_object] = ACTIONS(101),
- [anon_sym_abstract] = ACTIONS(107),
- [anon_sym_interface] = ACTIONS(109),
- [anon_sym_enum] = ACTIONS(111),
- [sym_html_comment] = ACTIONS(5),
- },
- [19] = {
- [sym_export_statement] = STATE(854),
- [sym_declaration] = STATE(854),
- [sym_import] = STATE(3306),
- [sym_import_statement] = STATE(854),
- [sym_statement] = STATE(9),
- [sym_expression_statement] = STATE(854),
- [sym_variable_declaration] = STATE(861),
- [sym_lexical_declaration] = STATE(861),
- [sym_statement_block] = STATE(854),
- [sym_if_statement] = STATE(854),
- [sym_switch_statement] = STATE(854),
- [sym_for_statement] = STATE(854),
- [sym_for_in_statement] = STATE(854),
- [sym_while_statement] = STATE(854),
- [sym_do_statement] = STATE(854),
- [sym_try_statement] = STATE(854),
- [sym_with_statement] = STATE(854),
- [sym_break_statement] = STATE(854),
- [sym_continue_statement] = STATE(854),
- [sym_debugger_statement] = STATE(854),
- [sym_return_statement] = STATE(854),
- [sym_throw_statement] = STATE(854),
- [sym_empty_statement] = STATE(854),
- [sym_labeled_statement] = STATE(854),
- [sym_parenthesized_expression] = STATE(1294),
- [sym_expression] = STATE(1705),
- [sym_primary_expression] = STATE(1946),
- [sym_yield_expression] = STATE(2234),
- [sym_object] = STATE(2310),
- [sym_object_pattern] = STATE(5667),
- [sym_array] = STATE(2310),
- [sym_array_pattern] = STATE(5667),
- [sym_glimmer_template] = STATE(2234),
- [sym_jsx_element] = STATE(2234),
- [sym_jsx_opening_element] = STATE(3051),
- [sym_jsx_self_closing_element] = STATE(2234),
- [sym_class] = STATE(2310),
- [sym_class_declaration] = STATE(861),
- [sym_function_expression] = STATE(2310),
- [sym_function_declaration] = STATE(861),
- [sym_generator_function] = STATE(2310),
- [sym_generator_function_declaration] = STATE(861),
- [sym_arrow_function] = STATE(2310),
- [sym__call_signature] = STATE(5809),
- [sym_call_expression] = STATE(2310),
- [sym_new_expression] = STATE(2234),
- [sym_await_expression] = STATE(2234),
- [sym_member_expression] = STATE(1294),
- [sym_subscript_expression] = STATE(1294),
- [sym_assignment_expression] = STATE(2234),
- [sym__augmented_assignment_lhs] = STATE(2875),
- [sym_augmented_assignment_expression] = STATE(2234),
- [sym__destructuring_pattern] = STATE(5667),
- [sym_ternary_expression] = STATE(2234),
- [sym_binary_expression] = STATE(2234),
- [sym_unary_expression] = STATE(2234),
- [sym_update_expression] = STATE(2234),
- [sym_sequence_expression] = STATE(5482),
- [sym_string] = STATE(2310),
- [sym_template_string] = STATE(2310),
- [sym_regex] = STATE(2310),
- [sym_meta_property] = STATE(2310),
- [sym_decorator] = STATE(1244),
- [sym_formal_parameters] = STATE(3742),
- [sym_non_null_expression] = STATE(1294),
- [sym_function_signature] = STATE(861),
- [sym_as_expression] = STATE(2234),
- [sym_satisfies_expression] = STATE(2234),
- [sym_instantiation_expression] = STATE(2234),
- [sym_ambient_declaration] = STATE(861),
- [sym_abstract_class_declaration] = STATE(861),
- [sym_module] = STATE(861),
- [sym_internal_module] = STATE(223),
- [sym_import_alias] = STATE(861),
- [sym_interface_declaration] = STATE(861),
- [sym_enum_declaration] = STATE(861),
- [sym_type_alias_declaration] = STATE(861),
- [sym_type_parameters] = STATE(5349),
- [aux_sym_program_repeat1] = STATE(9),
- [aux_sym_export_statement_repeat1] = STATE(3848),
- [sym_identifier] = ACTIONS(9),
- [anon_sym_export] = ACTIONS(13),
- [anon_sym_type] = ACTIONS(15),
- [anon_sym_namespace] = ACTIONS(17),
- [anon_sym_LBRACE] = ACTIONS(19),
- [anon_sym_RBRACE] = ACTIONS(522),
- [anon_sym_typeof] = ACTIONS(21),
- [anon_sym_import] = ACTIONS(23),
- [anon_sym_with] = ACTIONS(25),
- [anon_sym_var] = ACTIONS(27),
- [anon_sym_let] = ACTIONS(29),
- [anon_sym_const] = ACTIONS(31),
- [anon_sym_BANG] = ACTIONS(33),
- [anon_sym_if] = ACTIONS(35),
- [anon_sym_switch] = ACTIONS(37),
- [anon_sym_for] = ACTIONS(39),
- [anon_sym_LPAREN] = ACTIONS(41),
- [anon_sym_await] = ACTIONS(43),
- [anon_sym_while] = ACTIONS(45),
- [anon_sym_do] = ACTIONS(47),
- [anon_sym_try] = ACTIONS(49),
- [anon_sym_break] = ACTIONS(51),
- [anon_sym_continue] = ACTIONS(53),
- [anon_sym_debugger] = ACTIONS(55),
- [anon_sym_return] = ACTIONS(57),
- [anon_sym_throw] = ACTIONS(59),
- [anon_sym_SEMI] = ACTIONS(61),
- [anon_sym_yield] = ACTIONS(63),
- [anon_sym_LBRACK] = ACTIONS(65),
- [sym_glimmer_opening_tag] = ACTIONS(67),
- [anon_sym_DQUOTE] = ACTIONS(69),
- [anon_sym_SQUOTE] = ACTIONS(71),
- [anon_sym_class] = ACTIONS(73),
- [anon_sym_async] = ACTIONS(75),
- [anon_sym_function] = ACTIONS(77),
- [anon_sym_new] = ACTIONS(79),
- [anon_sym_using] = ACTIONS(81),
- [anon_sym_PLUS] = ACTIONS(21),
- [anon_sym_DASH] = ACTIONS(21),
- [anon_sym_SLASH] = ACTIONS(83),
- [anon_sym_LT] = ACTIONS(85),
- [anon_sym_TILDE] = ACTIONS(33),
- [anon_sym_void] = ACTIONS(21),
- [anon_sym_delete] = ACTIONS(21),
- [anon_sym_PLUS_PLUS] = ACTIONS(87),
- [anon_sym_DASH_DASH] = ACTIONS(87),
- [sym_comment] = ACTIONS(5),
- [anon_sym_BQUOTE] = ACTIONS(89),
- [sym_number] = ACTIONS(91),
- [sym_private_property_identifier] = ACTIONS(93),
- [sym_this] = ACTIONS(95),
- [sym_super] = ACTIONS(95),
- [sym_true] = ACTIONS(95),
- [sym_false] = ACTIONS(95),
- [sym_null] = ACTIONS(95),
- [sym_undefined] = ACTIONS(97),
- [anon_sym_AT] = ACTIONS(99),
- [anon_sym_static] = ACTIONS(101),
- [anon_sym_readonly] = ACTIONS(101),
- [anon_sym_get] = ACTIONS(101),
- [anon_sym_set] = ACTIONS(101),
- [anon_sym_declare] = ACTIONS(103),
- [anon_sym_public] = ACTIONS(101),
- [anon_sym_private] = ACTIONS(101),
- [anon_sym_protected] = ACTIONS(101),
- [anon_sym_override] = ACTIONS(101),
- [anon_sym_module] = ACTIONS(105),
- [anon_sym_any] = ACTIONS(101),
- [anon_sym_number] = ACTIONS(101),
- [anon_sym_boolean] = ACTIONS(101),
- [anon_sym_string] = ACTIONS(101),
- [anon_sym_symbol] = ACTIONS(101),
- [anon_sym_object] = ACTIONS(101),
- [anon_sym_abstract] = ACTIONS(107),
- [anon_sym_interface] = ACTIONS(109),
- [anon_sym_enum] = ACTIONS(111),
- [sym_html_comment] = ACTIONS(5),
- },
- [20] = {
- [sym_export_statement] = STATE(854),
- [sym_declaration] = STATE(854),
- [sym_import] = STATE(3306),
- [sym_import_statement] = STATE(854),
- [sym_statement] = STATE(19),
- [sym_expression_statement] = STATE(854),
- [sym_variable_declaration] = STATE(861),
- [sym_lexical_declaration] = STATE(861),
- [sym_statement_block] = STATE(854),
- [sym_if_statement] = STATE(854),
- [sym_switch_statement] = STATE(854),
- [sym_for_statement] = STATE(854),
- [sym_for_in_statement] = STATE(854),
- [sym_while_statement] = STATE(854),
- [sym_do_statement] = STATE(854),
- [sym_try_statement] = STATE(854),
- [sym_with_statement] = STATE(854),
- [sym_break_statement] = STATE(854),
- [sym_continue_statement] = STATE(854),
- [sym_debugger_statement] = STATE(854),
- [sym_return_statement] = STATE(854),
- [sym_throw_statement] = STATE(854),
- [sym_empty_statement] = STATE(854),
- [sym_labeled_statement] = STATE(854),
- [sym_parenthesized_expression] = STATE(1294),
- [sym_expression] = STATE(1705),
- [sym_primary_expression] = STATE(1946),
- [sym_yield_expression] = STATE(2234),
- [sym_object] = STATE(2310),
- [sym_object_pattern] = STATE(5667),
- [sym_array] = STATE(2310),
- [sym_array_pattern] = STATE(5667),
- [sym_glimmer_template] = STATE(2234),
- [sym_jsx_element] = STATE(2234),
- [sym_jsx_opening_element] = STATE(3051),
- [sym_jsx_self_closing_element] = STATE(2234),
- [sym_class] = STATE(2310),
- [sym_class_declaration] = STATE(861),
- [sym_function_expression] = STATE(2310),
- [sym_function_declaration] = STATE(861),
- [sym_generator_function] = STATE(2310),
- [sym_generator_function_declaration] = STATE(861),
- [sym_arrow_function] = STATE(2310),
- [sym__call_signature] = STATE(5809),
- [sym_call_expression] = STATE(2310),
- [sym_new_expression] = STATE(2234),
- [sym_await_expression] = STATE(2234),
- [sym_member_expression] = STATE(1294),
- [sym_subscript_expression] = STATE(1294),
- [sym_assignment_expression] = STATE(2234),
- [sym__augmented_assignment_lhs] = STATE(2875),
- [sym_augmented_assignment_expression] = STATE(2234),
- [sym__destructuring_pattern] = STATE(5667),
- [sym_ternary_expression] = STATE(2234),
- [sym_binary_expression] = STATE(2234),
- [sym_unary_expression] = STATE(2234),
- [sym_update_expression] = STATE(2234),
- [sym_sequence_expression] = STATE(5482),
- [sym_string] = STATE(2310),
- [sym_template_string] = STATE(2310),
- [sym_regex] = STATE(2310),
- [sym_meta_property] = STATE(2310),
- [sym_decorator] = STATE(1244),
- [sym_formal_parameters] = STATE(3742),
- [sym_non_null_expression] = STATE(1294),
- [sym_function_signature] = STATE(861),
- [sym_as_expression] = STATE(2234),
- [sym_satisfies_expression] = STATE(2234),
- [sym_instantiation_expression] = STATE(2234),
- [sym_ambient_declaration] = STATE(861),
- [sym_abstract_class_declaration] = STATE(861),
- [sym_module] = STATE(861),
- [sym_internal_module] = STATE(223),
- [sym_import_alias] = STATE(861),
- [sym_interface_declaration] = STATE(861),
- [sym_enum_declaration] = STATE(861),
- [sym_type_alias_declaration] = STATE(861),
- [sym_type_parameters] = STATE(5349),
- [aux_sym_program_repeat1] = STATE(19),
- [aux_sym_export_statement_repeat1] = STATE(3848),
- [sym_identifier] = ACTIONS(9),
- [anon_sym_export] = ACTIONS(13),
- [anon_sym_type] = ACTIONS(15),
- [anon_sym_namespace] = ACTIONS(17),
- [anon_sym_LBRACE] = ACTIONS(19),
- [anon_sym_RBRACE] = ACTIONS(524),
- [anon_sym_typeof] = ACTIONS(21),
- [anon_sym_import] = ACTIONS(23),
- [anon_sym_with] = ACTIONS(25),
- [anon_sym_var] = ACTIONS(27),
- [anon_sym_let] = ACTIONS(29),
- [anon_sym_const] = ACTIONS(31),
- [anon_sym_BANG] = ACTIONS(33),
- [anon_sym_if] = ACTIONS(35),
- [anon_sym_switch] = ACTIONS(37),
- [anon_sym_for] = ACTIONS(39),
- [anon_sym_LPAREN] = ACTIONS(41),
- [anon_sym_await] = ACTIONS(43),
- [anon_sym_while] = ACTIONS(45),
- [anon_sym_do] = ACTIONS(47),
- [anon_sym_try] = ACTIONS(49),
- [anon_sym_break] = ACTIONS(51),
- [anon_sym_continue] = ACTIONS(53),
- [anon_sym_debugger] = ACTIONS(55),
- [anon_sym_return] = ACTIONS(57),
- [anon_sym_throw] = ACTIONS(59),
- [anon_sym_SEMI] = ACTIONS(61),
- [anon_sym_yield] = ACTIONS(63),
- [anon_sym_LBRACK] = ACTIONS(65),
- [sym_glimmer_opening_tag] = ACTIONS(67),
- [anon_sym_DQUOTE] = ACTIONS(69),
- [anon_sym_SQUOTE] = ACTIONS(71),
- [anon_sym_class] = ACTIONS(73),
- [anon_sym_async] = ACTIONS(75),
- [anon_sym_function] = ACTIONS(77),
- [anon_sym_new] = ACTIONS(79),
- [anon_sym_using] = ACTIONS(81),
- [anon_sym_PLUS] = ACTIONS(21),
- [anon_sym_DASH] = ACTIONS(21),
- [anon_sym_SLASH] = ACTIONS(83),
- [anon_sym_LT] = ACTIONS(85),
- [anon_sym_TILDE] = ACTIONS(33),
- [anon_sym_void] = ACTIONS(21),
- [anon_sym_delete] = ACTIONS(21),
- [anon_sym_PLUS_PLUS] = ACTIONS(87),
- [anon_sym_DASH_DASH] = ACTIONS(87),
- [sym_comment] = ACTIONS(5),
- [anon_sym_BQUOTE] = ACTIONS(89),
- [sym_number] = ACTIONS(91),
- [sym_private_property_identifier] = ACTIONS(93),
- [sym_this] = ACTIONS(95),
- [sym_super] = ACTIONS(95),
- [sym_true] = ACTIONS(95),
- [sym_false] = ACTIONS(95),
- [sym_null] = ACTIONS(95),
- [sym_undefined] = ACTIONS(97),
- [anon_sym_AT] = ACTIONS(99),
- [anon_sym_static] = ACTIONS(101),
- [anon_sym_readonly] = ACTIONS(101),
- [anon_sym_get] = ACTIONS(101),
- [anon_sym_set] = ACTIONS(101),
- [anon_sym_declare] = ACTIONS(103),
- [anon_sym_public] = ACTIONS(101),
- [anon_sym_private] = ACTIONS(101),
- [anon_sym_protected] = ACTIONS(101),
- [anon_sym_override] = ACTIONS(101),
- [anon_sym_module] = ACTIONS(105),
- [anon_sym_any] = ACTIONS(101),
- [anon_sym_number] = ACTIONS(101),
- [anon_sym_boolean] = ACTIONS(101),
- [anon_sym_string] = ACTIONS(101),
- [anon_sym_symbol] = ACTIONS(101),
- [anon_sym_object] = ACTIONS(101),
- [anon_sym_abstract] = ACTIONS(107),
- [anon_sym_interface] = ACTIONS(109),
- [anon_sym_enum] = ACTIONS(111),
- [sym_html_comment] = ACTIONS(5),
- },
- [21] = {
- [sym_export_statement] = STATE(854),
- [sym_declaration] = STATE(854),
- [sym_import] = STATE(3306),
- [sym_import_statement] = STATE(854),
- [sym_statement] = STATE(9),
- [sym_expression_statement] = STATE(854),
- [sym_variable_declaration] = STATE(861),
- [sym_lexical_declaration] = STATE(861),
- [sym_statement_block] = STATE(854),
- [sym_if_statement] = STATE(854),
- [sym_switch_statement] = STATE(854),
- [sym_for_statement] = STATE(854),
- [sym_for_in_statement] = STATE(854),
- [sym_while_statement] = STATE(854),
- [sym_do_statement] = STATE(854),
- [sym_try_statement] = STATE(854),
- [sym_with_statement] = STATE(854),
- [sym_break_statement] = STATE(854),
- [sym_continue_statement] = STATE(854),
- [sym_debugger_statement] = STATE(854),
- [sym_return_statement] = STATE(854),
- [sym_throw_statement] = STATE(854),
- [sym_empty_statement] = STATE(854),
- [sym_labeled_statement] = STATE(854),
- [sym_parenthesized_expression] = STATE(1294),
- [sym_expression] = STATE(1705),
- [sym_primary_expression] = STATE(1946),
- [sym_yield_expression] = STATE(2234),
- [sym_object] = STATE(2310),
- [sym_object_pattern] = STATE(5667),
- [sym_array] = STATE(2310),
- [sym_array_pattern] = STATE(5667),
- [sym_glimmer_template] = STATE(2234),
- [sym_jsx_element] = STATE(2234),
- [sym_jsx_opening_element] = STATE(3051),
- [sym_jsx_self_closing_element] = STATE(2234),
- [sym_class] = STATE(2310),
- [sym_class_declaration] = STATE(861),
- [sym_function_expression] = STATE(2310),
- [sym_function_declaration] = STATE(861),
- [sym_generator_function] = STATE(2310),
- [sym_generator_function_declaration] = STATE(861),
- [sym_arrow_function] = STATE(2310),
- [sym__call_signature] = STATE(5809),
- [sym_call_expression] = STATE(2310),
- [sym_new_expression] = STATE(2234),
- [sym_await_expression] = STATE(2234),
- [sym_member_expression] = STATE(1294),
- [sym_subscript_expression] = STATE(1294),
- [sym_assignment_expression] = STATE(2234),
- [sym__augmented_assignment_lhs] = STATE(2875),
- [sym_augmented_assignment_expression] = STATE(2234),
- [sym__destructuring_pattern] = STATE(5667),
- [sym_ternary_expression] = STATE(2234),
- [sym_binary_expression] = STATE(2234),
- [sym_unary_expression] = STATE(2234),
- [sym_update_expression] = STATE(2234),
- [sym_sequence_expression] = STATE(5482),
- [sym_string] = STATE(2310),
- [sym_template_string] = STATE(2310),
- [sym_regex] = STATE(2310),
- [sym_meta_property] = STATE(2310),
- [sym_decorator] = STATE(1244),
- [sym_formal_parameters] = STATE(3742),
- [sym_non_null_expression] = STATE(1294),
- [sym_function_signature] = STATE(861),
- [sym_as_expression] = STATE(2234),
- [sym_satisfies_expression] = STATE(2234),
- [sym_instantiation_expression] = STATE(2234),
- [sym_ambient_declaration] = STATE(861),
- [sym_abstract_class_declaration] = STATE(861),
- [sym_module] = STATE(861),
- [sym_internal_module] = STATE(223),
- [sym_import_alias] = STATE(861),
- [sym_interface_declaration] = STATE(861),
- [sym_enum_declaration] = STATE(861),
- [sym_type_alias_declaration] = STATE(861),
- [sym_type_parameters] = STATE(5349),
- [aux_sym_program_repeat1] = STATE(9),
- [aux_sym_export_statement_repeat1] = STATE(3848),
- [sym_identifier] = ACTIONS(9),
- [anon_sym_export] = ACTIONS(13),
- [anon_sym_type] = ACTIONS(15),
- [anon_sym_namespace] = ACTIONS(17),
- [anon_sym_LBRACE] = ACTIONS(19),
- [anon_sym_RBRACE] = ACTIONS(526),
- [anon_sym_typeof] = ACTIONS(21),
- [anon_sym_import] = ACTIONS(23),
- [anon_sym_with] = ACTIONS(25),
- [anon_sym_var] = ACTIONS(27),
- [anon_sym_let] = ACTIONS(29),
- [anon_sym_const] = ACTIONS(31),
- [anon_sym_BANG] = ACTIONS(33),
- [anon_sym_if] = ACTIONS(35),
- [anon_sym_switch] = ACTIONS(37),
- [anon_sym_for] = ACTIONS(39),
- [anon_sym_LPAREN] = ACTIONS(41),
- [anon_sym_await] = ACTIONS(43),
- [anon_sym_while] = ACTIONS(45),
- [anon_sym_do] = ACTIONS(47),
- [anon_sym_try] = ACTIONS(49),
- [anon_sym_break] = ACTIONS(51),
- [anon_sym_continue] = ACTIONS(53),
- [anon_sym_debugger] = ACTIONS(55),
- [anon_sym_return] = ACTIONS(57),
- [anon_sym_throw] = ACTIONS(59),
- [anon_sym_SEMI] = ACTIONS(61),
- [anon_sym_yield] = ACTIONS(63),
- [anon_sym_LBRACK] = ACTIONS(65),
- [sym_glimmer_opening_tag] = ACTIONS(67),
- [anon_sym_DQUOTE] = ACTIONS(69),
- [anon_sym_SQUOTE] = ACTIONS(71),
- [anon_sym_class] = ACTIONS(73),
- [anon_sym_async] = ACTIONS(75),
- [anon_sym_function] = ACTIONS(77),
- [anon_sym_new] = ACTIONS(79),
- [anon_sym_using] = ACTIONS(81),
- [anon_sym_PLUS] = ACTIONS(21),
- [anon_sym_DASH] = ACTIONS(21),
- [anon_sym_SLASH] = ACTIONS(83),
- [anon_sym_LT] = ACTIONS(85),
- [anon_sym_TILDE] = ACTIONS(33),
- [anon_sym_void] = ACTIONS(21),
- [anon_sym_delete] = ACTIONS(21),
- [anon_sym_PLUS_PLUS] = ACTIONS(87),
- [anon_sym_DASH_DASH] = ACTIONS(87),
- [sym_comment] = ACTIONS(5),
- [anon_sym_BQUOTE] = ACTIONS(89),
- [sym_number] = ACTIONS(91),
- [sym_private_property_identifier] = ACTIONS(93),
- [sym_this] = ACTIONS(95),
- [sym_super] = ACTIONS(95),
- [sym_true] = ACTIONS(95),
- [sym_false] = ACTIONS(95),
- [sym_null] = ACTIONS(95),
- [sym_undefined] = ACTIONS(97),
- [anon_sym_AT] = ACTIONS(99),
- [anon_sym_static] = ACTIONS(101),
- [anon_sym_readonly] = ACTIONS(101),
- [anon_sym_get] = ACTIONS(101),
- [anon_sym_set] = ACTIONS(101),
- [anon_sym_declare] = ACTIONS(103),
- [anon_sym_public] = ACTIONS(101),
- [anon_sym_private] = ACTIONS(101),
- [anon_sym_protected] = ACTIONS(101),
- [anon_sym_override] = ACTIONS(101),
- [anon_sym_module] = ACTIONS(105),
- [anon_sym_any] = ACTIONS(101),
- [anon_sym_number] = ACTIONS(101),
- [anon_sym_boolean] = ACTIONS(101),
- [anon_sym_string] = ACTIONS(101),
- [anon_sym_symbol] = ACTIONS(101),
- [anon_sym_object] = ACTIONS(101),
- [anon_sym_abstract] = ACTIONS(107),
- [anon_sym_interface] = ACTIONS(109),
- [anon_sym_enum] = ACTIONS(111),
- [sym_html_comment] = ACTIONS(5),
- },
- [22] = {
- [sym_export_statement] = STATE(854),
- [sym_declaration] = STATE(854),
- [sym_import] = STATE(3306),
- [sym_import_statement] = STATE(854),
- [sym_statement] = STATE(9),
- [sym_expression_statement] = STATE(854),
- [sym_variable_declaration] = STATE(861),
- [sym_lexical_declaration] = STATE(861),
- [sym_statement_block] = STATE(854),
- [sym_if_statement] = STATE(854),
- [sym_switch_statement] = STATE(854),
- [sym_for_statement] = STATE(854),
- [sym_for_in_statement] = STATE(854),
- [sym_while_statement] = STATE(854),
- [sym_do_statement] = STATE(854),
- [sym_try_statement] = STATE(854),
- [sym_with_statement] = STATE(854),
- [sym_break_statement] = STATE(854),
- [sym_continue_statement] = STATE(854),
- [sym_debugger_statement] = STATE(854),
- [sym_return_statement] = STATE(854),
- [sym_throw_statement] = STATE(854),
- [sym_empty_statement] = STATE(854),
- [sym_labeled_statement] = STATE(854),
- [sym_parenthesized_expression] = STATE(1294),
- [sym_expression] = STATE(1705),
- [sym_primary_expression] = STATE(1946),
- [sym_yield_expression] = STATE(2234),
- [sym_object] = STATE(2310),
- [sym_object_pattern] = STATE(5667),
- [sym_array] = STATE(2310),
- [sym_array_pattern] = STATE(5667),
- [sym_glimmer_template] = STATE(2234),
- [sym_jsx_element] = STATE(2234),
- [sym_jsx_opening_element] = STATE(3051),
- [sym_jsx_self_closing_element] = STATE(2234),
- [sym_class] = STATE(2310),
- [sym_class_declaration] = STATE(861),
- [sym_function_expression] = STATE(2310),
- [sym_function_declaration] = STATE(861),
- [sym_generator_function] = STATE(2310),
- [sym_generator_function_declaration] = STATE(861),
- [sym_arrow_function] = STATE(2310),
- [sym__call_signature] = STATE(5809),
- [sym_call_expression] = STATE(2310),
- [sym_new_expression] = STATE(2234),
- [sym_await_expression] = STATE(2234),
- [sym_member_expression] = STATE(1294),
- [sym_subscript_expression] = STATE(1294),
- [sym_assignment_expression] = STATE(2234),
- [sym__augmented_assignment_lhs] = STATE(2875),
- [sym_augmented_assignment_expression] = STATE(2234),
- [sym__destructuring_pattern] = STATE(5667),
- [sym_ternary_expression] = STATE(2234),
- [sym_binary_expression] = STATE(2234),
- [sym_unary_expression] = STATE(2234),
- [sym_update_expression] = STATE(2234),
- [sym_sequence_expression] = STATE(5482),
- [sym_string] = STATE(2310),
- [sym_template_string] = STATE(2310),
- [sym_regex] = STATE(2310),
- [sym_meta_property] = STATE(2310),
- [sym_decorator] = STATE(1244),
- [sym_formal_parameters] = STATE(3742),
- [sym_non_null_expression] = STATE(1294),
- [sym_function_signature] = STATE(861),
- [sym_as_expression] = STATE(2234),
- [sym_satisfies_expression] = STATE(2234),
- [sym_instantiation_expression] = STATE(2234),
- [sym_ambient_declaration] = STATE(861),
- [sym_abstract_class_declaration] = STATE(861),
- [sym_module] = STATE(861),
- [sym_internal_module] = STATE(223),
- [sym_import_alias] = STATE(861),
- [sym_interface_declaration] = STATE(861),
- [sym_enum_declaration] = STATE(861),
- [sym_type_alias_declaration] = STATE(861),
- [sym_type_parameters] = STATE(5349),
- [aux_sym_program_repeat1] = STATE(9),
- [aux_sym_export_statement_repeat1] = STATE(3848),
- [sym_identifier] = ACTIONS(9),
- [anon_sym_export] = ACTIONS(13),
- [anon_sym_type] = ACTIONS(15),
- [anon_sym_namespace] = ACTIONS(17),
- [anon_sym_LBRACE] = ACTIONS(19),
- [anon_sym_RBRACE] = ACTIONS(528),
- [anon_sym_typeof] = ACTIONS(21),
- [anon_sym_import] = ACTIONS(23),
- [anon_sym_with] = ACTIONS(25),
- [anon_sym_var] = ACTIONS(27),
- [anon_sym_let] = ACTIONS(29),
- [anon_sym_const] = ACTIONS(31),
- [anon_sym_BANG] = ACTIONS(33),
- [anon_sym_if] = ACTIONS(35),
- [anon_sym_switch] = ACTIONS(37),
- [anon_sym_for] = ACTIONS(39),
- [anon_sym_LPAREN] = ACTIONS(41),
- [anon_sym_await] = ACTIONS(43),
- [anon_sym_while] = ACTIONS(45),
- [anon_sym_do] = ACTIONS(47),
- [anon_sym_try] = ACTIONS(49),
- [anon_sym_break] = ACTIONS(51),
- [anon_sym_continue] = ACTIONS(53),
- [anon_sym_debugger] = ACTIONS(55),
- [anon_sym_return] = ACTIONS(57),
- [anon_sym_throw] = ACTIONS(59),
- [anon_sym_SEMI] = ACTIONS(61),
- [anon_sym_yield] = ACTIONS(63),
- [anon_sym_LBRACK] = ACTIONS(65),
- [sym_glimmer_opening_tag] = ACTIONS(67),
- [anon_sym_DQUOTE] = ACTIONS(69),
- [anon_sym_SQUOTE] = ACTIONS(71),
- [anon_sym_class] = ACTIONS(73),
- [anon_sym_async] = ACTIONS(75),
- [anon_sym_function] = ACTIONS(77),
- [anon_sym_new] = ACTIONS(79),
- [anon_sym_using] = ACTIONS(81),
- [anon_sym_PLUS] = ACTIONS(21),
- [anon_sym_DASH] = ACTIONS(21),
- [anon_sym_SLASH] = ACTIONS(83),
- [anon_sym_LT] = ACTIONS(85),
- [anon_sym_TILDE] = ACTIONS(33),
- [anon_sym_void] = ACTIONS(21),
- [anon_sym_delete] = ACTIONS(21),
- [anon_sym_PLUS_PLUS] = ACTIONS(87),
- [anon_sym_DASH_DASH] = ACTIONS(87),
- [sym_comment] = ACTIONS(5),
- [anon_sym_BQUOTE] = ACTIONS(89),
- [sym_number] = ACTIONS(91),
- [sym_private_property_identifier] = ACTIONS(93),
- [sym_this] = ACTIONS(95),
- [sym_super] = ACTIONS(95),
- [sym_true] = ACTIONS(95),
- [sym_false] = ACTIONS(95),
- [sym_null] = ACTIONS(95),
- [sym_undefined] = ACTIONS(97),
- [anon_sym_AT] = ACTIONS(99),
- [anon_sym_static] = ACTIONS(101),
- [anon_sym_readonly] = ACTIONS(101),
- [anon_sym_get] = ACTIONS(101),
- [anon_sym_set] = ACTIONS(101),
- [anon_sym_declare] = ACTIONS(103),
- [anon_sym_public] = ACTIONS(101),
- [anon_sym_private] = ACTIONS(101),
- [anon_sym_protected] = ACTIONS(101),
- [anon_sym_override] = ACTIONS(101),
- [anon_sym_module] = ACTIONS(105),
- [anon_sym_any] = ACTIONS(101),
- [anon_sym_number] = ACTIONS(101),
- [anon_sym_boolean] = ACTIONS(101),
- [anon_sym_string] = ACTIONS(101),
- [anon_sym_symbol] = ACTIONS(101),
- [anon_sym_object] = ACTIONS(101),
- [anon_sym_abstract] = ACTIONS(107),
- [anon_sym_interface] = ACTIONS(109),
- [anon_sym_enum] = ACTIONS(111),
- [sym_html_comment] = ACTIONS(5),
- },
- [23] = {
- [sym_export_statement] = STATE(854),
- [sym_declaration] = STATE(854),
- [sym_import] = STATE(3306),
- [sym_import_statement] = STATE(854),
- [sym_statement] = STATE(22),
- [sym_expression_statement] = STATE(854),
- [sym_variable_declaration] = STATE(861),
- [sym_lexical_declaration] = STATE(861),
- [sym_statement_block] = STATE(854),
- [sym_if_statement] = STATE(854),
- [sym_switch_statement] = STATE(854),
- [sym_for_statement] = STATE(854),
- [sym_for_in_statement] = STATE(854),
- [sym_while_statement] = STATE(854),
- [sym_do_statement] = STATE(854),
- [sym_try_statement] = STATE(854),
- [sym_with_statement] = STATE(854),
- [sym_break_statement] = STATE(854),
- [sym_continue_statement] = STATE(854),
- [sym_debugger_statement] = STATE(854),
- [sym_return_statement] = STATE(854),
- [sym_throw_statement] = STATE(854),
- [sym_empty_statement] = STATE(854),
- [sym_labeled_statement] = STATE(854),
- [sym_parenthesized_expression] = STATE(1294),
- [sym_expression] = STATE(1705),
- [sym_primary_expression] = STATE(1946),
- [sym_yield_expression] = STATE(2234),
- [sym_object] = STATE(2310),
- [sym_object_pattern] = STATE(5667),
- [sym_array] = STATE(2310),
- [sym_array_pattern] = STATE(5667),
- [sym_glimmer_template] = STATE(2234),
- [sym_jsx_element] = STATE(2234),
- [sym_jsx_opening_element] = STATE(3051),
- [sym_jsx_self_closing_element] = STATE(2234),
- [sym_class] = STATE(2310),
- [sym_class_declaration] = STATE(861),
- [sym_function_expression] = STATE(2310),
- [sym_function_declaration] = STATE(861),
- [sym_generator_function] = STATE(2310),
- [sym_generator_function_declaration] = STATE(861),
- [sym_arrow_function] = STATE(2310),
- [sym__call_signature] = STATE(5809),
- [sym_call_expression] = STATE(2310),
- [sym_new_expression] = STATE(2234),
- [sym_await_expression] = STATE(2234),
- [sym_member_expression] = STATE(1294),
- [sym_subscript_expression] = STATE(1294),
- [sym_assignment_expression] = STATE(2234),
- [sym__augmented_assignment_lhs] = STATE(2875),
- [sym_augmented_assignment_expression] = STATE(2234),
- [sym__destructuring_pattern] = STATE(5667),
- [sym_ternary_expression] = STATE(2234),
- [sym_binary_expression] = STATE(2234),
- [sym_unary_expression] = STATE(2234),
- [sym_update_expression] = STATE(2234),
- [sym_sequence_expression] = STATE(5482),
- [sym_string] = STATE(2310),
- [sym_template_string] = STATE(2310),
- [sym_regex] = STATE(2310),
- [sym_meta_property] = STATE(2310),
- [sym_decorator] = STATE(1244),
- [sym_formal_parameters] = STATE(3742),
- [sym_non_null_expression] = STATE(1294),
- [sym_function_signature] = STATE(861),
- [sym_as_expression] = STATE(2234),
- [sym_satisfies_expression] = STATE(2234),
- [sym_instantiation_expression] = STATE(2234),
- [sym_ambient_declaration] = STATE(861),
- [sym_abstract_class_declaration] = STATE(861),
- [sym_module] = STATE(861),
- [sym_internal_module] = STATE(223),
- [sym_import_alias] = STATE(861),
- [sym_interface_declaration] = STATE(861),
- [sym_enum_declaration] = STATE(861),
- [sym_type_alias_declaration] = STATE(861),
- [sym_type_parameters] = STATE(5349),
- [aux_sym_program_repeat1] = STATE(22),
- [aux_sym_export_statement_repeat1] = STATE(3848),
- [sym_identifier] = ACTIONS(9),
- [anon_sym_export] = ACTIONS(13),
- [anon_sym_type] = ACTIONS(15),
- [anon_sym_namespace] = ACTIONS(17),
- [anon_sym_LBRACE] = ACTIONS(19),
- [anon_sym_RBRACE] = ACTIONS(530),
- [anon_sym_typeof] = ACTIONS(21),
- [anon_sym_import] = ACTIONS(23),
- [anon_sym_with] = ACTIONS(25),
- [anon_sym_var] = ACTIONS(27),
- [anon_sym_let] = ACTIONS(29),
- [anon_sym_const] = ACTIONS(31),
- [anon_sym_BANG] = ACTIONS(33),
- [anon_sym_if] = ACTIONS(35),
- [anon_sym_switch] = ACTIONS(37),
- [anon_sym_for] = ACTIONS(39),
- [anon_sym_LPAREN] = ACTIONS(41),
- [anon_sym_await] = ACTIONS(43),
- [anon_sym_while] = ACTIONS(45),
- [anon_sym_do] = ACTIONS(47),
- [anon_sym_try] = ACTIONS(49),
- [anon_sym_break] = ACTIONS(51),
- [anon_sym_continue] = ACTIONS(53),
- [anon_sym_debugger] = ACTIONS(55),
- [anon_sym_return] = ACTIONS(57),
- [anon_sym_throw] = ACTIONS(59),
- [anon_sym_SEMI] = ACTIONS(61),
- [anon_sym_yield] = ACTIONS(63),
- [anon_sym_LBRACK] = ACTIONS(65),
- [sym_glimmer_opening_tag] = ACTIONS(67),
- [anon_sym_DQUOTE] = ACTIONS(69),
- [anon_sym_SQUOTE] = ACTIONS(71),
- [anon_sym_class] = ACTIONS(73),
- [anon_sym_async] = ACTIONS(75),
- [anon_sym_function] = ACTIONS(77),
- [anon_sym_new] = ACTIONS(79),
- [anon_sym_using] = ACTIONS(81),
- [anon_sym_PLUS] = ACTIONS(21),
- [anon_sym_DASH] = ACTIONS(21),
- [anon_sym_SLASH] = ACTIONS(83),
- [anon_sym_LT] = ACTIONS(85),
- [anon_sym_TILDE] = ACTIONS(33),
- [anon_sym_void] = ACTIONS(21),
- [anon_sym_delete] = ACTIONS(21),
- [anon_sym_PLUS_PLUS] = ACTIONS(87),
- [anon_sym_DASH_DASH] = ACTIONS(87),
- [sym_comment] = ACTIONS(5),
- [anon_sym_BQUOTE] = ACTIONS(89),
- [sym_number] = ACTIONS(91),
- [sym_private_property_identifier] = ACTIONS(93),
- [sym_this] = ACTIONS(95),
- [sym_super] = ACTIONS(95),
- [sym_true] = ACTIONS(95),
- [sym_false] = ACTIONS(95),
- [sym_null] = ACTIONS(95),
- [sym_undefined] = ACTIONS(97),
- [anon_sym_AT] = ACTIONS(99),
- [anon_sym_static] = ACTIONS(101),
- [anon_sym_readonly] = ACTIONS(101),
- [anon_sym_get] = ACTIONS(101),
- [anon_sym_set] = ACTIONS(101),
- [anon_sym_declare] = ACTIONS(103),
- [anon_sym_public] = ACTIONS(101),
- [anon_sym_private] = ACTIONS(101),
- [anon_sym_protected] = ACTIONS(101),
- [anon_sym_override] = ACTIONS(101),
- [anon_sym_module] = ACTIONS(105),
- [anon_sym_any] = ACTIONS(101),
- [anon_sym_number] = ACTIONS(101),
- [anon_sym_boolean] = ACTIONS(101),
- [anon_sym_string] = ACTIONS(101),
- [anon_sym_symbol] = ACTIONS(101),
- [anon_sym_object] = ACTIONS(101),
- [anon_sym_abstract] = ACTIONS(107),
- [anon_sym_interface] = ACTIONS(109),
- [anon_sym_enum] = ACTIONS(111),
- [sym_html_comment] = ACTIONS(5),
- },
- [24] = {
- [sym_export_statement] = STATE(854),
- [sym_declaration] = STATE(854),
- [sym_import] = STATE(3306),
- [sym_import_statement] = STATE(854),
- [sym_statement] = STATE(21),
- [sym_expression_statement] = STATE(854),
- [sym_variable_declaration] = STATE(861),
- [sym_lexical_declaration] = STATE(861),
- [sym_statement_block] = STATE(854),
- [sym_if_statement] = STATE(854),
- [sym_switch_statement] = STATE(854),
- [sym_for_statement] = STATE(854),
- [sym_for_in_statement] = STATE(854),
- [sym_while_statement] = STATE(854),
- [sym_do_statement] = STATE(854),
- [sym_try_statement] = STATE(854),
- [sym_with_statement] = STATE(854),
- [sym_break_statement] = STATE(854),
- [sym_continue_statement] = STATE(854),
- [sym_debugger_statement] = STATE(854),
- [sym_return_statement] = STATE(854),
- [sym_throw_statement] = STATE(854),
- [sym_empty_statement] = STATE(854),
- [sym_labeled_statement] = STATE(854),
- [sym_parenthesized_expression] = STATE(1294),
- [sym_expression] = STATE(1705),
- [sym_primary_expression] = STATE(1946),
- [sym_yield_expression] = STATE(2234),
- [sym_object] = STATE(2310),
- [sym_object_pattern] = STATE(5667),
- [sym_array] = STATE(2310),
- [sym_array_pattern] = STATE(5667),
- [sym_glimmer_template] = STATE(2234),
- [sym_jsx_element] = STATE(2234),
- [sym_jsx_opening_element] = STATE(3051),
- [sym_jsx_self_closing_element] = STATE(2234),
- [sym_class] = STATE(2310),
- [sym_class_declaration] = STATE(861),
- [sym_function_expression] = STATE(2310),
- [sym_function_declaration] = STATE(861),
- [sym_generator_function] = STATE(2310),
- [sym_generator_function_declaration] = STATE(861),
- [sym_arrow_function] = STATE(2310),
- [sym__call_signature] = STATE(5809),
- [sym_call_expression] = STATE(2310),
- [sym_new_expression] = STATE(2234),
- [sym_await_expression] = STATE(2234),
- [sym_member_expression] = STATE(1294),
- [sym_subscript_expression] = STATE(1294),
- [sym_assignment_expression] = STATE(2234),
- [sym__augmented_assignment_lhs] = STATE(2875),
- [sym_augmented_assignment_expression] = STATE(2234),
- [sym__destructuring_pattern] = STATE(5667),
- [sym_ternary_expression] = STATE(2234),
- [sym_binary_expression] = STATE(2234),
- [sym_unary_expression] = STATE(2234),
- [sym_update_expression] = STATE(2234),
- [sym_sequence_expression] = STATE(5482),
- [sym_string] = STATE(2310),
- [sym_template_string] = STATE(2310),
- [sym_regex] = STATE(2310),
- [sym_meta_property] = STATE(2310),
- [sym_decorator] = STATE(1244),
- [sym_formal_parameters] = STATE(3742),
- [sym_non_null_expression] = STATE(1294),
- [sym_function_signature] = STATE(861),
- [sym_as_expression] = STATE(2234),
- [sym_satisfies_expression] = STATE(2234),
- [sym_instantiation_expression] = STATE(2234),
- [sym_ambient_declaration] = STATE(861),
- [sym_abstract_class_declaration] = STATE(861),
- [sym_module] = STATE(861),
- [sym_internal_module] = STATE(223),
- [sym_import_alias] = STATE(861),
- [sym_interface_declaration] = STATE(861),
- [sym_enum_declaration] = STATE(861),
- [sym_type_alias_declaration] = STATE(861),
- [sym_type_parameters] = STATE(5349),
- [aux_sym_program_repeat1] = STATE(21),
- [aux_sym_export_statement_repeat1] = STATE(3848),
- [sym_identifier] = ACTIONS(9),
- [anon_sym_export] = ACTIONS(13),
- [anon_sym_type] = ACTIONS(15),
- [anon_sym_namespace] = ACTIONS(17),
- [anon_sym_LBRACE] = ACTIONS(19),
- [anon_sym_RBRACE] = ACTIONS(532),
- [anon_sym_typeof] = ACTIONS(21),
- [anon_sym_import] = ACTIONS(23),
- [anon_sym_with] = ACTIONS(25),
- [anon_sym_var] = ACTIONS(27),
- [anon_sym_let] = ACTIONS(29),
- [anon_sym_const] = ACTIONS(31),
- [anon_sym_BANG] = ACTIONS(33),
- [anon_sym_if] = ACTIONS(35),
- [anon_sym_switch] = ACTIONS(37),
- [anon_sym_for] = ACTIONS(39),
- [anon_sym_LPAREN] = ACTIONS(41),
- [anon_sym_await] = ACTIONS(43),
- [anon_sym_while] = ACTIONS(45),
- [anon_sym_do] = ACTIONS(47),
- [anon_sym_try] = ACTIONS(49),
- [anon_sym_break] = ACTIONS(51),
- [anon_sym_continue] = ACTIONS(53),
- [anon_sym_debugger] = ACTIONS(55),
- [anon_sym_return] = ACTIONS(57),
- [anon_sym_throw] = ACTIONS(59),
- [anon_sym_SEMI] = ACTIONS(61),
- [anon_sym_yield] = ACTIONS(63),
- [anon_sym_LBRACK] = ACTIONS(65),
- [sym_glimmer_opening_tag] = ACTIONS(67),
- [anon_sym_DQUOTE] = ACTIONS(69),
- [anon_sym_SQUOTE] = ACTIONS(71),
- [anon_sym_class] = ACTIONS(73),
- [anon_sym_async] = ACTIONS(75),
- [anon_sym_function] = ACTIONS(77),
- [anon_sym_new] = ACTIONS(79),
- [anon_sym_using] = ACTIONS(81),
- [anon_sym_PLUS] = ACTIONS(21),
- [anon_sym_DASH] = ACTIONS(21),
- [anon_sym_SLASH] = ACTIONS(83),
- [anon_sym_LT] = ACTIONS(85),
- [anon_sym_TILDE] = ACTIONS(33),
- [anon_sym_void] = ACTIONS(21),
- [anon_sym_delete] = ACTIONS(21),
- [anon_sym_PLUS_PLUS] = ACTIONS(87),
- [anon_sym_DASH_DASH] = ACTIONS(87),
- [sym_comment] = ACTIONS(5),
- [anon_sym_BQUOTE] = ACTIONS(89),
- [sym_number] = ACTIONS(91),
- [sym_private_property_identifier] = ACTIONS(93),
- [sym_this] = ACTIONS(95),
- [sym_super] = ACTIONS(95),
- [sym_true] = ACTIONS(95),
- [sym_false] = ACTIONS(95),
- [sym_null] = ACTIONS(95),
- [sym_undefined] = ACTIONS(97),
- [anon_sym_AT] = ACTIONS(99),
- [anon_sym_static] = ACTIONS(101),
- [anon_sym_readonly] = ACTIONS(101),
- [anon_sym_get] = ACTIONS(101),
- [anon_sym_set] = ACTIONS(101),
- [anon_sym_declare] = ACTIONS(103),
- [anon_sym_public] = ACTIONS(101),
- [anon_sym_private] = ACTIONS(101),
- [anon_sym_protected] = ACTIONS(101),
- [anon_sym_override] = ACTIONS(101),
- [anon_sym_module] = ACTIONS(105),
- [anon_sym_any] = ACTIONS(101),
- [anon_sym_number] = ACTIONS(101),
- [anon_sym_boolean] = ACTIONS(101),
- [anon_sym_string] = ACTIONS(101),
- [anon_sym_symbol] = ACTIONS(101),
- [anon_sym_object] = ACTIONS(101),
- [anon_sym_abstract] = ACTIONS(107),
- [anon_sym_interface] = ACTIONS(109),
- [anon_sym_enum] = ACTIONS(111),
- [sym_html_comment] = ACTIONS(5),
- },
- [25] = {
- [sym_export_statement] = STATE(854),
- [sym_declaration] = STATE(854),
- [sym_import] = STATE(3306),
- [sym_import_statement] = STATE(854),
- [sym_statement] = STATE(9),
- [sym_expression_statement] = STATE(854),
- [sym_variable_declaration] = STATE(861),
- [sym_lexical_declaration] = STATE(861),
- [sym_statement_block] = STATE(854),
- [sym_if_statement] = STATE(854),
- [sym_switch_statement] = STATE(854),
- [sym_for_statement] = STATE(854),
- [sym_for_in_statement] = STATE(854),
- [sym_while_statement] = STATE(854),
- [sym_do_statement] = STATE(854),
- [sym_try_statement] = STATE(854),
- [sym_with_statement] = STATE(854),
- [sym_break_statement] = STATE(854),
- [sym_continue_statement] = STATE(854),
- [sym_debugger_statement] = STATE(854),
- [sym_return_statement] = STATE(854),
- [sym_throw_statement] = STATE(854),
- [sym_empty_statement] = STATE(854),
- [sym_labeled_statement] = STATE(854),
- [sym_parenthesized_expression] = STATE(1294),
- [sym_expression] = STATE(1705),
- [sym_primary_expression] = STATE(1946),
- [sym_yield_expression] = STATE(2234),
- [sym_object] = STATE(2310),
- [sym_object_pattern] = STATE(5667),
- [sym_array] = STATE(2310),
- [sym_array_pattern] = STATE(5667),
- [sym_glimmer_template] = STATE(2234),
- [sym_jsx_element] = STATE(2234),
- [sym_jsx_opening_element] = STATE(3051),
- [sym_jsx_self_closing_element] = STATE(2234),
- [sym_class] = STATE(2310),
- [sym_class_declaration] = STATE(861),
- [sym_function_expression] = STATE(2310),
- [sym_function_declaration] = STATE(861),
- [sym_generator_function] = STATE(2310),
- [sym_generator_function_declaration] = STATE(861),
- [sym_arrow_function] = STATE(2310),
- [sym__call_signature] = STATE(5809),
- [sym_call_expression] = STATE(2310),
- [sym_new_expression] = STATE(2234),
- [sym_await_expression] = STATE(2234),
- [sym_member_expression] = STATE(1294),
- [sym_subscript_expression] = STATE(1294),
- [sym_assignment_expression] = STATE(2234),
- [sym__augmented_assignment_lhs] = STATE(2875),
- [sym_augmented_assignment_expression] = STATE(2234),
- [sym__destructuring_pattern] = STATE(5667),
- [sym_ternary_expression] = STATE(2234),
- [sym_binary_expression] = STATE(2234),
- [sym_unary_expression] = STATE(2234),
- [sym_update_expression] = STATE(2234),
- [sym_sequence_expression] = STATE(5482),
- [sym_string] = STATE(2310),
- [sym_template_string] = STATE(2310),
- [sym_regex] = STATE(2310),
- [sym_meta_property] = STATE(2310),
- [sym_decorator] = STATE(1244),
- [sym_formal_parameters] = STATE(3742),
- [sym_non_null_expression] = STATE(1294),
- [sym_function_signature] = STATE(861),
- [sym_as_expression] = STATE(2234),
- [sym_satisfies_expression] = STATE(2234),
- [sym_instantiation_expression] = STATE(2234),
- [sym_ambient_declaration] = STATE(861),
- [sym_abstract_class_declaration] = STATE(861),
- [sym_module] = STATE(861),
- [sym_internal_module] = STATE(223),
- [sym_import_alias] = STATE(861),
- [sym_interface_declaration] = STATE(861),
- [sym_enum_declaration] = STATE(861),
- [sym_type_alias_declaration] = STATE(861),
- [sym_type_parameters] = STATE(5349),
- [aux_sym_program_repeat1] = STATE(9),
- [aux_sym_export_statement_repeat1] = STATE(3848),
- [sym_identifier] = ACTIONS(9),
- [anon_sym_export] = ACTIONS(13),
- [anon_sym_type] = ACTIONS(15),
- [anon_sym_namespace] = ACTIONS(17),
- [anon_sym_LBRACE] = ACTIONS(19),
- [anon_sym_RBRACE] = ACTIONS(534),
- [anon_sym_typeof] = ACTIONS(21),
- [anon_sym_import] = ACTIONS(23),
- [anon_sym_with] = ACTIONS(25),
- [anon_sym_var] = ACTIONS(27),
- [anon_sym_let] = ACTIONS(29),
- [anon_sym_const] = ACTIONS(31),
- [anon_sym_BANG] = ACTIONS(33),
- [anon_sym_if] = ACTIONS(35),
- [anon_sym_switch] = ACTIONS(37),
- [anon_sym_for] = ACTIONS(39),
- [anon_sym_LPAREN] = ACTIONS(41),
- [anon_sym_await] = ACTIONS(43),
- [anon_sym_while] = ACTIONS(45),
- [anon_sym_do] = ACTIONS(47),
- [anon_sym_try] = ACTIONS(49),
- [anon_sym_break] = ACTIONS(51),
- [anon_sym_continue] = ACTIONS(53),
- [anon_sym_debugger] = ACTIONS(55),
- [anon_sym_return] = ACTIONS(57),
- [anon_sym_throw] = ACTIONS(59),
- [anon_sym_SEMI] = ACTIONS(61),
- [anon_sym_yield] = ACTIONS(63),
- [anon_sym_LBRACK] = ACTIONS(65),
- [sym_glimmer_opening_tag] = ACTIONS(67),
- [anon_sym_DQUOTE] = ACTIONS(69),
- [anon_sym_SQUOTE] = ACTIONS(71),
- [anon_sym_class] = ACTIONS(73),
- [anon_sym_async] = ACTIONS(75),
- [anon_sym_function] = ACTIONS(77),
- [anon_sym_new] = ACTIONS(79),
- [anon_sym_using] = ACTIONS(81),
- [anon_sym_PLUS] = ACTIONS(21),
- [anon_sym_DASH] = ACTIONS(21),
- [anon_sym_SLASH] = ACTIONS(83),
- [anon_sym_LT] = ACTIONS(85),
- [anon_sym_TILDE] = ACTIONS(33),
- [anon_sym_void] = ACTIONS(21),
- [anon_sym_delete] = ACTIONS(21),
- [anon_sym_PLUS_PLUS] = ACTIONS(87),
- [anon_sym_DASH_DASH] = ACTIONS(87),
- [sym_comment] = ACTIONS(5),
- [anon_sym_BQUOTE] = ACTIONS(89),
- [sym_number] = ACTIONS(91),
- [sym_private_property_identifier] = ACTIONS(93),
- [sym_this] = ACTIONS(95),
- [sym_super] = ACTIONS(95),
- [sym_true] = ACTIONS(95),
- [sym_false] = ACTIONS(95),
- [sym_null] = ACTIONS(95),
- [sym_undefined] = ACTIONS(97),
- [anon_sym_AT] = ACTIONS(99),
- [anon_sym_static] = ACTIONS(101),
- [anon_sym_readonly] = ACTIONS(101),
- [anon_sym_get] = ACTIONS(101),
- [anon_sym_set] = ACTIONS(101),
- [anon_sym_declare] = ACTIONS(103),
- [anon_sym_public] = ACTIONS(101),
- [anon_sym_private] = ACTIONS(101),
- [anon_sym_protected] = ACTIONS(101),
- [anon_sym_override] = ACTIONS(101),
- [anon_sym_module] = ACTIONS(105),
- [anon_sym_any] = ACTIONS(101),
- [anon_sym_number] = ACTIONS(101),
- [anon_sym_boolean] = ACTIONS(101),
- [anon_sym_string] = ACTIONS(101),
- [anon_sym_symbol] = ACTIONS(101),
- [anon_sym_object] = ACTIONS(101),
- [anon_sym_abstract] = ACTIONS(107),
- [anon_sym_interface] = ACTIONS(109),
- [anon_sym_enum] = ACTIONS(111),
- [sym_html_comment] = ACTIONS(5),
- },
- [26] = {
- [sym_export_statement] = STATE(854),
- [sym_declaration] = STATE(854),
- [sym_import] = STATE(3306),
- [sym_import_statement] = STATE(854),
- [sym_statement] = STATE(25),
- [sym_expression_statement] = STATE(854),
- [sym_variable_declaration] = STATE(861),
- [sym_lexical_declaration] = STATE(861),
- [sym_statement_block] = STATE(854),
- [sym_if_statement] = STATE(854),
- [sym_switch_statement] = STATE(854),
- [sym_for_statement] = STATE(854),
- [sym_for_in_statement] = STATE(854),
- [sym_while_statement] = STATE(854),
- [sym_do_statement] = STATE(854),
- [sym_try_statement] = STATE(854),
- [sym_with_statement] = STATE(854),
- [sym_break_statement] = STATE(854),
- [sym_continue_statement] = STATE(854),
- [sym_debugger_statement] = STATE(854),
- [sym_return_statement] = STATE(854),
- [sym_throw_statement] = STATE(854),
- [sym_empty_statement] = STATE(854),
- [sym_labeled_statement] = STATE(854),
- [sym_parenthesized_expression] = STATE(1294),
- [sym_expression] = STATE(1705),
- [sym_primary_expression] = STATE(1946),
- [sym_yield_expression] = STATE(2234),
- [sym_object] = STATE(2310),
- [sym_object_pattern] = STATE(5667),
- [sym_array] = STATE(2310),
- [sym_array_pattern] = STATE(5667),
- [sym_glimmer_template] = STATE(2234),
- [sym_jsx_element] = STATE(2234),
- [sym_jsx_opening_element] = STATE(3051),
- [sym_jsx_self_closing_element] = STATE(2234),
- [sym_class] = STATE(2310),
- [sym_class_declaration] = STATE(861),
- [sym_function_expression] = STATE(2310),
- [sym_function_declaration] = STATE(861),
- [sym_generator_function] = STATE(2310),
- [sym_generator_function_declaration] = STATE(861),
- [sym_arrow_function] = STATE(2310),
- [sym__call_signature] = STATE(5809),
- [sym_call_expression] = STATE(2310),
- [sym_new_expression] = STATE(2234),
- [sym_await_expression] = STATE(2234),
- [sym_member_expression] = STATE(1294),
- [sym_subscript_expression] = STATE(1294),
- [sym_assignment_expression] = STATE(2234),
- [sym__augmented_assignment_lhs] = STATE(2875),
- [sym_augmented_assignment_expression] = STATE(2234),
- [sym__destructuring_pattern] = STATE(5667),
- [sym_ternary_expression] = STATE(2234),
- [sym_binary_expression] = STATE(2234),
- [sym_unary_expression] = STATE(2234),
- [sym_update_expression] = STATE(2234),
- [sym_sequence_expression] = STATE(5482),
- [sym_string] = STATE(2310),
- [sym_template_string] = STATE(2310),
- [sym_regex] = STATE(2310),
- [sym_meta_property] = STATE(2310),
- [sym_decorator] = STATE(1244),
- [sym_formal_parameters] = STATE(3742),
- [sym_non_null_expression] = STATE(1294),
- [sym_function_signature] = STATE(861),
- [sym_as_expression] = STATE(2234),
- [sym_satisfies_expression] = STATE(2234),
- [sym_instantiation_expression] = STATE(2234),
- [sym_ambient_declaration] = STATE(861),
- [sym_abstract_class_declaration] = STATE(861),
- [sym_module] = STATE(861),
- [sym_internal_module] = STATE(223),
- [sym_import_alias] = STATE(861),
- [sym_interface_declaration] = STATE(861),
- [sym_enum_declaration] = STATE(861),
- [sym_type_alias_declaration] = STATE(861),
- [sym_type_parameters] = STATE(5349),
- [aux_sym_program_repeat1] = STATE(25),
- [aux_sym_export_statement_repeat1] = STATE(3848),
- [sym_identifier] = ACTIONS(9),
- [anon_sym_export] = ACTIONS(13),
- [anon_sym_type] = ACTIONS(15),
- [anon_sym_namespace] = ACTIONS(17),
- [anon_sym_LBRACE] = ACTIONS(19),
- [anon_sym_RBRACE] = ACTIONS(536),
- [anon_sym_typeof] = ACTIONS(21),
- [anon_sym_import] = ACTIONS(23),
- [anon_sym_with] = ACTIONS(25),
- [anon_sym_var] = ACTIONS(27),
- [anon_sym_let] = ACTIONS(29),
- [anon_sym_const] = ACTIONS(31),
- [anon_sym_BANG] = ACTIONS(33),
- [anon_sym_if] = ACTIONS(35),
- [anon_sym_switch] = ACTIONS(37),
- [anon_sym_for] = ACTIONS(39),
- [anon_sym_LPAREN] = ACTIONS(41),
- [anon_sym_await] = ACTIONS(43),
- [anon_sym_while] = ACTIONS(45),
- [anon_sym_do] = ACTIONS(47),
- [anon_sym_try] = ACTIONS(49),
- [anon_sym_break] = ACTIONS(51),
- [anon_sym_continue] = ACTIONS(53),
- [anon_sym_debugger] = ACTIONS(55),
- [anon_sym_return] = ACTIONS(57),
- [anon_sym_throw] = ACTIONS(59),
- [anon_sym_SEMI] = ACTIONS(61),
- [anon_sym_yield] = ACTIONS(63),
- [anon_sym_LBRACK] = ACTIONS(65),
- [sym_glimmer_opening_tag] = ACTIONS(67),
- [anon_sym_DQUOTE] = ACTIONS(69),
- [anon_sym_SQUOTE] = ACTIONS(71),
- [anon_sym_class] = ACTIONS(73),
- [anon_sym_async] = ACTIONS(75),
- [anon_sym_function] = ACTIONS(77),
- [anon_sym_new] = ACTIONS(79),
- [anon_sym_using] = ACTIONS(81),
- [anon_sym_PLUS] = ACTIONS(21),
- [anon_sym_DASH] = ACTIONS(21),
- [anon_sym_SLASH] = ACTIONS(83),
- [anon_sym_LT] = ACTIONS(85),
- [anon_sym_TILDE] = ACTIONS(33),
- [anon_sym_void] = ACTIONS(21),
- [anon_sym_delete] = ACTIONS(21),
- [anon_sym_PLUS_PLUS] = ACTIONS(87),
- [anon_sym_DASH_DASH] = ACTIONS(87),
- [sym_comment] = ACTIONS(5),
- [anon_sym_BQUOTE] = ACTIONS(89),
- [sym_number] = ACTIONS(91),
- [sym_private_property_identifier] = ACTIONS(93),
- [sym_this] = ACTIONS(95),
- [sym_super] = ACTIONS(95),
- [sym_true] = ACTIONS(95),
- [sym_false] = ACTIONS(95),
- [sym_null] = ACTIONS(95),
- [sym_undefined] = ACTIONS(97),
- [anon_sym_AT] = ACTIONS(99),
- [anon_sym_static] = ACTIONS(101),
- [anon_sym_readonly] = ACTIONS(101),
- [anon_sym_get] = ACTIONS(101),
- [anon_sym_set] = ACTIONS(101),
- [anon_sym_declare] = ACTIONS(103),
- [anon_sym_public] = ACTIONS(101),
- [anon_sym_private] = ACTIONS(101),
- [anon_sym_protected] = ACTIONS(101),
- [anon_sym_override] = ACTIONS(101),
- [anon_sym_module] = ACTIONS(105),
- [anon_sym_any] = ACTIONS(101),
- [anon_sym_number] = ACTIONS(101),
- [anon_sym_boolean] = ACTIONS(101),
- [anon_sym_string] = ACTIONS(101),
- [anon_sym_symbol] = ACTIONS(101),
- [anon_sym_object] = ACTIONS(101),
- [anon_sym_abstract] = ACTIONS(107),
- [anon_sym_interface] = ACTIONS(109),
- [anon_sym_enum] = ACTIONS(111),
- [sym_html_comment] = ACTIONS(5),
- },
- [27] = {
- [sym_export_statement] = STATE(854),
- [sym_declaration] = STATE(854),
- [sym_import] = STATE(3306),
- [sym_import_statement] = STATE(854),
- [sym_statement] = STATE(9),
- [sym_expression_statement] = STATE(854),
- [sym_variable_declaration] = STATE(861),
- [sym_lexical_declaration] = STATE(861),
- [sym_statement_block] = STATE(854),
- [sym_if_statement] = STATE(854),
- [sym_switch_statement] = STATE(854),
- [sym_for_statement] = STATE(854),
- [sym_for_in_statement] = STATE(854),
- [sym_while_statement] = STATE(854),
- [sym_do_statement] = STATE(854),
- [sym_try_statement] = STATE(854),
- [sym_with_statement] = STATE(854),
- [sym_break_statement] = STATE(854),
- [sym_continue_statement] = STATE(854),
- [sym_debugger_statement] = STATE(854),
- [sym_return_statement] = STATE(854),
- [sym_throw_statement] = STATE(854),
- [sym_empty_statement] = STATE(854),
- [sym_labeled_statement] = STATE(854),
- [sym_parenthesized_expression] = STATE(1294),
- [sym_expression] = STATE(1705),
- [sym_primary_expression] = STATE(1946),
- [sym_yield_expression] = STATE(2234),
- [sym_object] = STATE(2310),
- [sym_object_pattern] = STATE(5667),
- [sym_array] = STATE(2310),
- [sym_array_pattern] = STATE(5667),
- [sym_glimmer_template] = STATE(2234),
- [sym_jsx_element] = STATE(2234),
- [sym_jsx_opening_element] = STATE(3051),
- [sym_jsx_self_closing_element] = STATE(2234),
- [sym_class] = STATE(2310),
- [sym_class_declaration] = STATE(861),
- [sym_function_expression] = STATE(2310),
- [sym_function_declaration] = STATE(861),
- [sym_generator_function] = STATE(2310),
- [sym_generator_function_declaration] = STATE(861),
- [sym_arrow_function] = STATE(2310),
- [sym__call_signature] = STATE(5809),
- [sym_call_expression] = STATE(2310),
- [sym_new_expression] = STATE(2234),
- [sym_await_expression] = STATE(2234),
- [sym_member_expression] = STATE(1294),
- [sym_subscript_expression] = STATE(1294),
- [sym_assignment_expression] = STATE(2234),
- [sym__augmented_assignment_lhs] = STATE(2875),
- [sym_augmented_assignment_expression] = STATE(2234),
- [sym__destructuring_pattern] = STATE(5667),
- [sym_ternary_expression] = STATE(2234),
- [sym_binary_expression] = STATE(2234),
- [sym_unary_expression] = STATE(2234),
- [sym_update_expression] = STATE(2234),
- [sym_sequence_expression] = STATE(5482),
- [sym_string] = STATE(2310),
- [sym_template_string] = STATE(2310),
- [sym_regex] = STATE(2310),
- [sym_meta_property] = STATE(2310),
- [sym_decorator] = STATE(1244),
- [sym_formal_parameters] = STATE(3742),
- [sym_non_null_expression] = STATE(1294),
- [sym_function_signature] = STATE(861),
- [sym_as_expression] = STATE(2234),
- [sym_satisfies_expression] = STATE(2234),
- [sym_instantiation_expression] = STATE(2234),
- [sym_ambient_declaration] = STATE(861),
- [sym_abstract_class_declaration] = STATE(861),
- [sym_module] = STATE(861),
- [sym_internal_module] = STATE(223),
- [sym_import_alias] = STATE(861),
- [sym_interface_declaration] = STATE(861),
- [sym_enum_declaration] = STATE(861),
- [sym_type_alias_declaration] = STATE(861),
- [sym_type_parameters] = STATE(5349),
- [aux_sym_program_repeat1] = STATE(9),
- [aux_sym_export_statement_repeat1] = STATE(3848),
- [sym_identifier] = ACTIONS(9),
- [anon_sym_export] = ACTIONS(13),
- [anon_sym_type] = ACTIONS(15),
- [anon_sym_namespace] = ACTIONS(17),
- [anon_sym_LBRACE] = ACTIONS(19),
- [anon_sym_RBRACE] = ACTIONS(538),
- [anon_sym_typeof] = ACTIONS(21),
- [anon_sym_import] = ACTIONS(23),
- [anon_sym_with] = ACTIONS(25),
- [anon_sym_var] = ACTIONS(27),
- [anon_sym_let] = ACTIONS(29),
- [anon_sym_const] = ACTIONS(31),
- [anon_sym_BANG] = ACTIONS(33),
- [anon_sym_if] = ACTIONS(35),
- [anon_sym_switch] = ACTIONS(37),
- [anon_sym_for] = ACTIONS(39),
- [anon_sym_LPAREN] = ACTIONS(41),
- [anon_sym_await] = ACTIONS(43),
- [anon_sym_while] = ACTIONS(45),
- [anon_sym_do] = ACTIONS(47),
- [anon_sym_try] = ACTIONS(49),
- [anon_sym_break] = ACTIONS(51),
- [anon_sym_continue] = ACTIONS(53),
- [anon_sym_debugger] = ACTIONS(55),
- [anon_sym_return] = ACTIONS(57),
- [anon_sym_throw] = ACTIONS(59),
- [anon_sym_SEMI] = ACTIONS(61),
- [anon_sym_yield] = ACTIONS(63),
- [anon_sym_LBRACK] = ACTIONS(65),
- [sym_glimmer_opening_tag] = ACTIONS(67),
- [anon_sym_DQUOTE] = ACTIONS(69),
- [anon_sym_SQUOTE] = ACTIONS(71),
- [anon_sym_class] = ACTIONS(73),
- [anon_sym_async] = ACTIONS(75),
- [anon_sym_function] = ACTIONS(77),
- [anon_sym_new] = ACTIONS(79),
- [anon_sym_using] = ACTIONS(81),
- [anon_sym_PLUS] = ACTIONS(21),
- [anon_sym_DASH] = ACTIONS(21),
- [anon_sym_SLASH] = ACTIONS(83),
- [anon_sym_LT] = ACTIONS(85),
- [anon_sym_TILDE] = ACTIONS(33),
- [anon_sym_void] = ACTIONS(21),
- [anon_sym_delete] = ACTIONS(21),
- [anon_sym_PLUS_PLUS] = ACTIONS(87),
- [anon_sym_DASH_DASH] = ACTIONS(87),
- [sym_comment] = ACTIONS(5),
- [anon_sym_BQUOTE] = ACTIONS(89),
- [sym_number] = ACTIONS(91),
- [sym_private_property_identifier] = ACTIONS(93),
- [sym_this] = ACTIONS(95),
- [sym_super] = ACTIONS(95),
- [sym_true] = ACTIONS(95),
- [sym_false] = ACTIONS(95),
- [sym_null] = ACTIONS(95),
- [sym_undefined] = ACTIONS(97),
- [anon_sym_AT] = ACTIONS(99),
- [anon_sym_static] = ACTIONS(101),
- [anon_sym_readonly] = ACTIONS(101),
- [anon_sym_get] = ACTIONS(101),
- [anon_sym_set] = ACTIONS(101),
- [anon_sym_declare] = ACTIONS(103),
- [anon_sym_public] = ACTIONS(101),
- [anon_sym_private] = ACTIONS(101),
- [anon_sym_protected] = ACTIONS(101),
- [anon_sym_override] = ACTIONS(101),
- [anon_sym_module] = ACTIONS(105),
- [anon_sym_any] = ACTIONS(101),
- [anon_sym_number] = ACTIONS(101),
- [anon_sym_boolean] = ACTIONS(101),
- [anon_sym_string] = ACTIONS(101),
- [anon_sym_symbol] = ACTIONS(101),
- [anon_sym_object] = ACTIONS(101),
- [anon_sym_abstract] = ACTIONS(107),
- [anon_sym_interface] = ACTIONS(109),
- [anon_sym_enum] = ACTIONS(111),
- [sym_html_comment] = ACTIONS(5),
- },
- [28] = {
- [sym_export_statement] = STATE(854),
- [sym_declaration] = STATE(854),
- [sym_import] = STATE(3306),
- [sym_import_statement] = STATE(854),
- [sym_statement] = STATE(30),
- [sym_expression_statement] = STATE(854),
- [sym_variable_declaration] = STATE(861),
- [sym_lexical_declaration] = STATE(861),
- [sym_statement_block] = STATE(854),
- [sym_if_statement] = STATE(854),
- [sym_switch_statement] = STATE(854),
- [sym_for_statement] = STATE(854),
- [sym_for_in_statement] = STATE(854),
- [sym_while_statement] = STATE(854),
- [sym_do_statement] = STATE(854),
- [sym_try_statement] = STATE(854),
- [sym_with_statement] = STATE(854),
- [sym_break_statement] = STATE(854),
- [sym_continue_statement] = STATE(854),
- [sym_debugger_statement] = STATE(854),
- [sym_return_statement] = STATE(854),
- [sym_throw_statement] = STATE(854),
- [sym_empty_statement] = STATE(854),
- [sym_labeled_statement] = STATE(854),
- [sym_parenthesized_expression] = STATE(1294),
- [sym_expression] = STATE(1705),
- [sym_primary_expression] = STATE(1946),
- [sym_yield_expression] = STATE(2234),
- [sym_object] = STATE(2310),
- [sym_object_pattern] = STATE(5667),
- [sym_array] = STATE(2310),
- [sym_array_pattern] = STATE(5667),
- [sym_glimmer_template] = STATE(2234),
- [sym_jsx_element] = STATE(2234),
- [sym_jsx_opening_element] = STATE(3051),
- [sym_jsx_self_closing_element] = STATE(2234),
- [sym_class] = STATE(2310),
- [sym_class_declaration] = STATE(861),
- [sym_function_expression] = STATE(2310),
- [sym_function_declaration] = STATE(861),
- [sym_generator_function] = STATE(2310),
- [sym_generator_function_declaration] = STATE(861),
- [sym_arrow_function] = STATE(2310),
- [sym__call_signature] = STATE(5809),
- [sym_call_expression] = STATE(2310),
- [sym_new_expression] = STATE(2234),
- [sym_await_expression] = STATE(2234),
- [sym_member_expression] = STATE(1294),
- [sym_subscript_expression] = STATE(1294),
- [sym_assignment_expression] = STATE(2234),
- [sym__augmented_assignment_lhs] = STATE(2875),
- [sym_augmented_assignment_expression] = STATE(2234),
- [sym__destructuring_pattern] = STATE(5667),
- [sym_ternary_expression] = STATE(2234),
- [sym_binary_expression] = STATE(2234),
- [sym_unary_expression] = STATE(2234),
- [sym_update_expression] = STATE(2234),
- [sym_sequence_expression] = STATE(5482),
- [sym_string] = STATE(2310),
- [sym_template_string] = STATE(2310),
- [sym_regex] = STATE(2310),
- [sym_meta_property] = STATE(2310),
- [sym_decorator] = STATE(1244),
- [sym_formal_parameters] = STATE(3742),
- [sym_non_null_expression] = STATE(1294),
- [sym_function_signature] = STATE(861),
- [sym_as_expression] = STATE(2234),
- [sym_satisfies_expression] = STATE(2234),
- [sym_instantiation_expression] = STATE(2234),
- [sym_ambient_declaration] = STATE(861),
- [sym_abstract_class_declaration] = STATE(861),
- [sym_module] = STATE(861),
- [sym_internal_module] = STATE(223),
- [sym_import_alias] = STATE(861),
- [sym_interface_declaration] = STATE(861),
- [sym_enum_declaration] = STATE(861),
- [sym_type_alias_declaration] = STATE(861),
- [sym_type_parameters] = STATE(5349),
- [aux_sym_program_repeat1] = STATE(30),
- [aux_sym_export_statement_repeat1] = STATE(3848),
- [sym_identifier] = ACTIONS(9),
- [anon_sym_export] = ACTIONS(13),
- [anon_sym_type] = ACTIONS(15),
- [anon_sym_namespace] = ACTIONS(17),
- [anon_sym_LBRACE] = ACTIONS(19),
- [anon_sym_RBRACE] = ACTIONS(540),
- [anon_sym_typeof] = ACTIONS(21),
- [anon_sym_import] = ACTIONS(23),
- [anon_sym_with] = ACTIONS(25),
- [anon_sym_var] = ACTIONS(27),
- [anon_sym_let] = ACTIONS(29),
- [anon_sym_const] = ACTIONS(31),
- [anon_sym_BANG] = ACTIONS(33),
- [anon_sym_if] = ACTIONS(35),
- [anon_sym_switch] = ACTIONS(37),
- [anon_sym_for] = ACTIONS(39),
- [anon_sym_LPAREN] = ACTIONS(41),
- [anon_sym_await] = ACTIONS(43),
- [anon_sym_while] = ACTIONS(45),
- [anon_sym_do] = ACTIONS(47),
- [anon_sym_try] = ACTIONS(49),
- [anon_sym_break] = ACTIONS(51),
- [anon_sym_continue] = ACTIONS(53),
- [anon_sym_debugger] = ACTIONS(55),
- [anon_sym_return] = ACTIONS(57),
- [anon_sym_throw] = ACTIONS(59),
- [anon_sym_SEMI] = ACTIONS(61),
- [anon_sym_yield] = ACTIONS(63),
- [anon_sym_LBRACK] = ACTIONS(65),
- [sym_glimmer_opening_tag] = ACTIONS(67),
- [anon_sym_DQUOTE] = ACTIONS(69),
- [anon_sym_SQUOTE] = ACTIONS(71),
- [anon_sym_class] = ACTIONS(73),
- [anon_sym_async] = ACTIONS(75),
- [anon_sym_function] = ACTIONS(77),
- [anon_sym_new] = ACTIONS(79),
- [anon_sym_using] = ACTIONS(81),
- [anon_sym_PLUS] = ACTIONS(21),
- [anon_sym_DASH] = ACTIONS(21),
- [anon_sym_SLASH] = ACTIONS(83),
- [anon_sym_LT] = ACTIONS(85),
- [anon_sym_TILDE] = ACTIONS(33),
- [anon_sym_void] = ACTIONS(21),
- [anon_sym_delete] = ACTIONS(21),
- [anon_sym_PLUS_PLUS] = ACTIONS(87),
- [anon_sym_DASH_DASH] = ACTIONS(87),
- [sym_comment] = ACTIONS(5),
- [anon_sym_BQUOTE] = ACTIONS(89),
- [sym_number] = ACTIONS(91),
- [sym_private_property_identifier] = ACTIONS(93),
- [sym_this] = ACTIONS(95),
- [sym_super] = ACTIONS(95),
- [sym_true] = ACTIONS(95),
- [sym_false] = ACTIONS(95),
- [sym_null] = ACTIONS(95),
- [sym_undefined] = ACTIONS(97),
- [anon_sym_AT] = ACTIONS(99),
- [anon_sym_static] = ACTIONS(101),
- [anon_sym_readonly] = ACTIONS(101),
- [anon_sym_get] = ACTIONS(101),
- [anon_sym_set] = ACTIONS(101),
- [anon_sym_declare] = ACTIONS(103),
- [anon_sym_public] = ACTIONS(101),
- [anon_sym_private] = ACTIONS(101),
- [anon_sym_protected] = ACTIONS(101),
- [anon_sym_override] = ACTIONS(101),
- [anon_sym_module] = ACTIONS(105),
- [anon_sym_any] = ACTIONS(101),
- [anon_sym_number] = ACTIONS(101),
- [anon_sym_boolean] = ACTIONS(101),
- [anon_sym_string] = ACTIONS(101),
- [anon_sym_symbol] = ACTIONS(101),
- [anon_sym_object] = ACTIONS(101),
- [anon_sym_abstract] = ACTIONS(107),
- [anon_sym_interface] = ACTIONS(109),
- [anon_sym_enum] = ACTIONS(111),
- [sym_html_comment] = ACTIONS(5),
- },
- [29] = {
- [sym_export_statement] = STATE(854),
- [sym_declaration] = STATE(854),
- [sym_import] = STATE(3306),
- [sym_import_statement] = STATE(854),
- [sym_statement] = STATE(27),
- [sym_expression_statement] = STATE(854),
- [sym_variable_declaration] = STATE(861),
- [sym_lexical_declaration] = STATE(861),
- [sym_statement_block] = STATE(854),
- [sym_if_statement] = STATE(854),
- [sym_switch_statement] = STATE(854),
- [sym_for_statement] = STATE(854),
- [sym_for_in_statement] = STATE(854),
- [sym_while_statement] = STATE(854),
- [sym_do_statement] = STATE(854),
- [sym_try_statement] = STATE(854),
- [sym_with_statement] = STATE(854),
- [sym_break_statement] = STATE(854),
- [sym_continue_statement] = STATE(854),
- [sym_debugger_statement] = STATE(854),
- [sym_return_statement] = STATE(854),
- [sym_throw_statement] = STATE(854),
- [sym_empty_statement] = STATE(854),
- [sym_labeled_statement] = STATE(854),
- [sym_parenthesized_expression] = STATE(1294),
- [sym_expression] = STATE(1705),
- [sym_primary_expression] = STATE(1946),
- [sym_yield_expression] = STATE(2234),
- [sym_object] = STATE(2310),
- [sym_object_pattern] = STATE(5667),
- [sym_array] = STATE(2310),
- [sym_array_pattern] = STATE(5667),
- [sym_glimmer_template] = STATE(2234),
- [sym_jsx_element] = STATE(2234),
- [sym_jsx_opening_element] = STATE(3051),
- [sym_jsx_self_closing_element] = STATE(2234),
- [sym_class] = STATE(2310),
- [sym_class_declaration] = STATE(861),
- [sym_function_expression] = STATE(2310),
- [sym_function_declaration] = STATE(861),
- [sym_generator_function] = STATE(2310),
- [sym_generator_function_declaration] = STATE(861),
- [sym_arrow_function] = STATE(2310),
- [sym__call_signature] = STATE(5809),
- [sym_call_expression] = STATE(2310),
- [sym_new_expression] = STATE(2234),
- [sym_await_expression] = STATE(2234),
- [sym_member_expression] = STATE(1294),
- [sym_subscript_expression] = STATE(1294),
- [sym_assignment_expression] = STATE(2234),
- [sym__augmented_assignment_lhs] = STATE(2875),
- [sym_augmented_assignment_expression] = STATE(2234),
- [sym__destructuring_pattern] = STATE(5667),
- [sym_ternary_expression] = STATE(2234),
- [sym_binary_expression] = STATE(2234),
- [sym_unary_expression] = STATE(2234),
- [sym_update_expression] = STATE(2234),
- [sym_sequence_expression] = STATE(5482),
- [sym_string] = STATE(2310),
- [sym_template_string] = STATE(2310),
- [sym_regex] = STATE(2310),
- [sym_meta_property] = STATE(2310),
- [sym_decorator] = STATE(1244),
- [sym_formal_parameters] = STATE(3742),
- [sym_non_null_expression] = STATE(1294),
- [sym_function_signature] = STATE(861),
- [sym_as_expression] = STATE(2234),
- [sym_satisfies_expression] = STATE(2234),
- [sym_instantiation_expression] = STATE(2234),
- [sym_ambient_declaration] = STATE(861),
- [sym_abstract_class_declaration] = STATE(861),
- [sym_module] = STATE(861),
- [sym_internal_module] = STATE(223),
- [sym_import_alias] = STATE(861),
- [sym_interface_declaration] = STATE(861),
- [sym_enum_declaration] = STATE(861),
- [sym_type_alias_declaration] = STATE(861),
- [sym_type_parameters] = STATE(5349),
- [aux_sym_program_repeat1] = STATE(27),
- [aux_sym_export_statement_repeat1] = STATE(3848),
- [sym_identifier] = ACTIONS(9),
- [anon_sym_export] = ACTIONS(13),
- [anon_sym_type] = ACTIONS(15),
- [anon_sym_namespace] = ACTIONS(17),
- [anon_sym_LBRACE] = ACTIONS(19),
- [anon_sym_RBRACE] = ACTIONS(542),
- [anon_sym_typeof] = ACTIONS(21),
- [anon_sym_import] = ACTIONS(23),
- [anon_sym_with] = ACTIONS(25),
- [anon_sym_var] = ACTIONS(27),
- [anon_sym_let] = ACTIONS(29),
- [anon_sym_const] = ACTIONS(31),
- [anon_sym_BANG] = ACTIONS(33),
- [anon_sym_if] = ACTIONS(35),
- [anon_sym_switch] = ACTIONS(37),
- [anon_sym_for] = ACTIONS(39),
- [anon_sym_LPAREN] = ACTIONS(41),
- [anon_sym_await] = ACTIONS(43),
- [anon_sym_while] = ACTIONS(45),
- [anon_sym_do] = ACTIONS(47),
- [anon_sym_try] = ACTIONS(49),
- [anon_sym_break] = ACTIONS(51),
- [anon_sym_continue] = ACTIONS(53),
- [anon_sym_debugger] = ACTIONS(55),
- [anon_sym_return] = ACTIONS(57),
- [anon_sym_throw] = ACTIONS(59),
- [anon_sym_SEMI] = ACTIONS(61),
- [anon_sym_yield] = ACTIONS(63),
- [anon_sym_LBRACK] = ACTIONS(65),
- [sym_glimmer_opening_tag] = ACTIONS(67),
- [anon_sym_DQUOTE] = ACTIONS(69),
- [anon_sym_SQUOTE] = ACTIONS(71),
- [anon_sym_class] = ACTIONS(73),
- [anon_sym_async] = ACTIONS(75),
- [anon_sym_function] = ACTIONS(77),
- [anon_sym_new] = ACTIONS(79),
- [anon_sym_using] = ACTIONS(81),
- [anon_sym_PLUS] = ACTIONS(21),
- [anon_sym_DASH] = ACTIONS(21),
- [anon_sym_SLASH] = ACTIONS(83),
- [anon_sym_LT] = ACTIONS(85),
- [anon_sym_TILDE] = ACTIONS(33),
- [anon_sym_void] = ACTIONS(21),
- [anon_sym_delete] = ACTIONS(21),
- [anon_sym_PLUS_PLUS] = ACTIONS(87),
- [anon_sym_DASH_DASH] = ACTIONS(87),
- [sym_comment] = ACTIONS(5),
- [anon_sym_BQUOTE] = ACTIONS(89),
- [sym_number] = ACTIONS(91),
- [sym_private_property_identifier] = ACTIONS(93),
- [sym_this] = ACTIONS(95),
- [sym_super] = ACTIONS(95),
- [sym_true] = ACTIONS(95),
- [sym_false] = ACTIONS(95),
- [sym_null] = ACTIONS(95),
- [sym_undefined] = ACTIONS(97),
- [anon_sym_AT] = ACTIONS(99),
- [anon_sym_static] = ACTIONS(101),
- [anon_sym_readonly] = ACTIONS(101),
- [anon_sym_get] = ACTIONS(101),
- [anon_sym_set] = ACTIONS(101),
- [anon_sym_declare] = ACTIONS(103),
- [anon_sym_public] = ACTIONS(101),
- [anon_sym_private] = ACTIONS(101),
- [anon_sym_protected] = ACTIONS(101),
- [anon_sym_override] = ACTIONS(101),
- [anon_sym_module] = ACTIONS(105),
- [anon_sym_any] = ACTIONS(101),
- [anon_sym_number] = ACTIONS(101),
- [anon_sym_boolean] = ACTIONS(101),
- [anon_sym_string] = ACTIONS(101),
- [anon_sym_symbol] = ACTIONS(101),
- [anon_sym_object] = ACTIONS(101),
- [anon_sym_abstract] = ACTIONS(107),
- [anon_sym_interface] = ACTIONS(109),
- [anon_sym_enum] = ACTIONS(111),
- [sym_html_comment] = ACTIONS(5),
- },
- [30] = {
- [sym_export_statement] = STATE(854),
- [sym_declaration] = STATE(854),
- [sym_import] = STATE(3306),
- [sym_import_statement] = STATE(854),
- [sym_statement] = STATE(9),
- [sym_expression_statement] = STATE(854),
- [sym_variable_declaration] = STATE(861),
- [sym_lexical_declaration] = STATE(861),
- [sym_statement_block] = STATE(854),
- [sym_if_statement] = STATE(854),
- [sym_switch_statement] = STATE(854),
- [sym_for_statement] = STATE(854),
- [sym_for_in_statement] = STATE(854),
- [sym_while_statement] = STATE(854),
- [sym_do_statement] = STATE(854),
- [sym_try_statement] = STATE(854),
- [sym_with_statement] = STATE(854),
- [sym_break_statement] = STATE(854),
- [sym_continue_statement] = STATE(854),
- [sym_debugger_statement] = STATE(854),
- [sym_return_statement] = STATE(854),
- [sym_throw_statement] = STATE(854),
- [sym_empty_statement] = STATE(854),
- [sym_labeled_statement] = STATE(854),
- [sym_parenthesized_expression] = STATE(1294),
- [sym_expression] = STATE(1705),
- [sym_primary_expression] = STATE(1946),
- [sym_yield_expression] = STATE(2234),
- [sym_object] = STATE(2310),
- [sym_object_pattern] = STATE(5667),
- [sym_array] = STATE(2310),
- [sym_array_pattern] = STATE(5667),
- [sym_glimmer_template] = STATE(2234),
- [sym_jsx_element] = STATE(2234),
- [sym_jsx_opening_element] = STATE(3051),
- [sym_jsx_self_closing_element] = STATE(2234),
- [sym_class] = STATE(2310),
- [sym_class_declaration] = STATE(861),
- [sym_function_expression] = STATE(2310),
- [sym_function_declaration] = STATE(861),
- [sym_generator_function] = STATE(2310),
- [sym_generator_function_declaration] = STATE(861),
- [sym_arrow_function] = STATE(2310),
- [sym__call_signature] = STATE(5809),
- [sym_call_expression] = STATE(2310),
- [sym_new_expression] = STATE(2234),
- [sym_await_expression] = STATE(2234),
- [sym_member_expression] = STATE(1294),
- [sym_subscript_expression] = STATE(1294),
- [sym_assignment_expression] = STATE(2234),
- [sym__augmented_assignment_lhs] = STATE(2875),
- [sym_augmented_assignment_expression] = STATE(2234),
- [sym__destructuring_pattern] = STATE(5667),
- [sym_ternary_expression] = STATE(2234),
- [sym_binary_expression] = STATE(2234),
- [sym_unary_expression] = STATE(2234),
- [sym_update_expression] = STATE(2234),
- [sym_sequence_expression] = STATE(5482),
- [sym_string] = STATE(2310),
- [sym_template_string] = STATE(2310),
- [sym_regex] = STATE(2310),
- [sym_meta_property] = STATE(2310),
- [sym_decorator] = STATE(1244),
- [sym_formal_parameters] = STATE(3742),
- [sym_non_null_expression] = STATE(1294),
- [sym_function_signature] = STATE(861),
- [sym_as_expression] = STATE(2234),
- [sym_satisfies_expression] = STATE(2234),
- [sym_instantiation_expression] = STATE(2234),
- [sym_ambient_declaration] = STATE(861),
- [sym_abstract_class_declaration] = STATE(861),
- [sym_module] = STATE(861),
- [sym_internal_module] = STATE(223),
- [sym_import_alias] = STATE(861),
- [sym_interface_declaration] = STATE(861),
- [sym_enum_declaration] = STATE(861),
- [sym_type_alias_declaration] = STATE(861),
- [sym_type_parameters] = STATE(5349),
- [aux_sym_program_repeat1] = STATE(9),
- [aux_sym_export_statement_repeat1] = STATE(3848),
- [sym_identifier] = ACTIONS(9),
- [anon_sym_export] = ACTIONS(13),
- [anon_sym_type] = ACTIONS(15),
- [anon_sym_namespace] = ACTIONS(17),
- [anon_sym_LBRACE] = ACTIONS(19),
- [anon_sym_RBRACE] = ACTIONS(544),
- [anon_sym_typeof] = ACTIONS(21),
- [anon_sym_import] = ACTIONS(23),
- [anon_sym_with] = ACTIONS(25),
- [anon_sym_var] = ACTIONS(27),
- [anon_sym_let] = ACTIONS(29),
- [anon_sym_const] = ACTIONS(31),
- [anon_sym_BANG] = ACTIONS(33),
- [anon_sym_if] = ACTIONS(35),
- [anon_sym_switch] = ACTIONS(37),
- [anon_sym_for] = ACTIONS(39),
- [anon_sym_LPAREN] = ACTIONS(41),
- [anon_sym_await] = ACTIONS(43),
- [anon_sym_while] = ACTIONS(45),
- [anon_sym_do] = ACTIONS(47),
- [anon_sym_try] = ACTIONS(49),
- [anon_sym_break] = ACTIONS(51),
- [anon_sym_continue] = ACTIONS(53),
- [anon_sym_debugger] = ACTIONS(55),
- [anon_sym_return] = ACTIONS(57),
- [anon_sym_throw] = ACTIONS(59),
- [anon_sym_SEMI] = ACTIONS(61),
- [anon_sym_yield] = ACTIONS(63),
- [anon_sym_LBRACK] = ACTIONS(65),
- [sym_glimmer_opening_tag] = ACTIONS(67),
- [anon_sym_DQUOTE] = ACTIONS(69),
- [anon_sym_SQUOTE] = ACTIONS(71),
- [anon_sym_class] = ACTIONS(73),
- [anon_sym_async] = ACTIONS(75),
- [anon_sym_function] = ACTIONS(77),
- [anon_sym_new] = ACTIONS(79),
- [anon_sym_using] = ACTIONS(81),
- [anon_sym_PLUS] = ACTIONS(21),
- [anon_sym_DASH] = ACTIONS(21),
- [anon_sym_SLASH] = ACTIONS(83),
- [anon_sym_LT] = ACTIONS(85),
- [anon_sym_TILDE] = ACTIONS(33),
- [anon_sym_void] = ACTIONS(21),
- [anon_sym_delete] = ACTIONS(21),
- [anon_sym_PLUS_PLUS] = ACTIONS(87),
- [anon_sym_DASH_DASH] = ACTIONS(87),
- [sym_comment] = ACTIONS(5),
- [anon_sym_BQUOTE] = ACTIONS(89),
- [sym_number] = ACTIONS(91),
- [sym_private_property_identifier] = ACTIONS(93),
- [sym_this] = ACTIONS(95),
- [sym_super] = ACTIONS(95),
- [sym_true] = ACTIONS(95),
- [sym_false] = ACTIONS(95),
- [sym_null] = ACTIONS(95),
- [sym_undefined] = ACTIONS(97),
- [anon_sym_AT] = ACTIONS(99),
- [anon_sym_static] = ACTIONS(101),
- [anon_sym_readonly] = ACTIONS(101),
- [anon_sym_get] = ACTIONS(101),
- [anon_sym_set] = ACTIONS(101),
- [anon_sym_declare] = ACTIONS(103),
- [anon_sym_public] = ACTIONS(101),
- [anon_sym_private] = ACTIONS(101),
- [anon_sym_protected] = ACTIONS(101),
- [anon_sym_override] = ACTIONS(101),
- [anon_sym_module] = ACTIONS(105),
- [anon_sym_any] = ACTIONS(101),
- [anon_sym_number] = ACTIONS(101),
- [anon_sym_boolean] = ACTIONS(101),
- [anon_sym_string] = ACTIONS(101),
- [anon_sym_symbol] = ACTIONS(101),
- [anon_sym_object] = ACTIONS(101),
- [anon_sym_abstract] = ACTIONS(107),
- [anon_sym_interface] = ACTIONS(109),
- [anon_sym_enum] = ACTIONS(111),
- [sym_html_comment] = ACTIONS(5),
- },
- [31] = {
- [sym_export_statement] = STATE(854),
- [sym_declaration] = STATE(854),
- [sym_import] = STATE(3306),
- [sym_import_statement] = STATE(854),
- [sym_statement] = STATE(809),
- [sym_expression_statement] = STATE(854),
- [sym_variable_declaration] = STATE(861),
- [sym_lexical_declaration] = STATE(861),
- [sym_statement_block] = STATE(854),
- [sym_if_statement] = STATE(854),
- [sym_switch_statement] = STATE(854),
- [sym_for_statement] = STATE(854),
- [sym_for_in_statement] = STATE(854),
- [sym_while_statement] = STATE(854),
- [sym_do_statement] = STATE(854),
- [sym_try_statement] = STATE(854),
- [sym_with_statement] = STATE(854),
- [sym_break_statement] = STATE(854),
- [sym_continue_statement] = STATE(854),
- [sym_debugger_statement] = STATE(854),
- [sym_return_statement] = STATE(854),
- [sym_throw_statement] = STATE(854),
- [sym_empty_statement] = STATE(854),
- [sym_labeled_statement] = STATE(854),
- [sym_parenthesized_expression] = STATE(1294),
- [sym_expression] = STATE(1705),
- [sym_primary_expression] = STATE(1946),
- [sym_yield_expression] = STATE(2234),
- [sym_object] = STATE(2310),
- [sym_object_pattern] = STATE(5667),
- [sym_array] = STATE(2310),
- [sym_array_pattern] = STATE(5667),
- [sym_glimmer_template] = STATE(2234),
- [sym_jsx_element] = STATE(2234),
- [sym_jsx_opening_element] = STATE(3051),
- [sym_jsx_self_closing_element] = STATE(2234),
- [sym_class] = STATE(2310),
- [sym_class_declaration] = STATE(861),
- [sym_function_expression] = STATE(2310),
- [sym_function_declaration] = STATE(861),
- [sym_generator_function] = STATE(2310),
- [sym_generator_function_declaration] = STATE(861),
- [sym_arrow_function] = STATE(2310),
- [sym__call_signature] = STATE(5809),
- [sym_call_expression] = STATE(2310),
- [sym_new_expression] = STATE(2234),
- [sym_await_expression] = STATE(2234),
- [sym_member_expression] = STATE(1294),
- [sym_subscript_expression] = STATE(1294),
- [sym_assignment_expression] = STATE(2234),
- [sym__augmented_assignment_lhs] = STATE(2875),
- [sym_augmented_assignment_expression] = STATE(2234),
- [sym__destructuring_pattern] = STATE(5667),
- [sym_ternary_expression] = STATE(2234),
- [sym_binary_expression] = STATE(2234),
- [sym_unary_expression] = STATE(2234),
- [sym_update_expression] = STATE(2234),
- [sym_sequence_expression] = STATE(5482),
- [sym_string] = STATE(2310),
- [sym_template_string] = STATE(2310),
- [sym_regex] = STATE(2310),
- [sym_meta_property] = STATE(2310),
- [sym_decorator] = STATE(1244),
- [sym_formal_parameters] = STATE(3742),
- [sym_non_null_expression] = STATE(1294),
- [sym_function_signature] = STATE(861),
- [sym_as_expression] = STATE(2234),
- [sym_satisfies_expression] = STATE(2234),
- [sym_instantiation_expression] = STATE(2234),
- [sym_ambient_declaration] = STATE(861),
- [sym_abstract_class_declaration] = STATE(861),
- [sym_module] = STATE(861),
- [sym_internal_module] = STATE(2332),
- [sym_import_alias] = STATE(861),
- [sym_interface_declaration] = STATE(861),
- [sym_enum_declaration] = STATE(861),
- [sym_type_alias_declaration] = STATE(861),
- [sym_type_parameters] = STATE(5349),
- [aux_sym_export_statement_repeat1] = STATE(3860),
- [sym_identifier] = ACTIONS(546),
- [anon_sym_export] = ACTIONS(548),
- [anon_sym_type] = ACTIONS(550),
- [anon_sym_namespace] = ACTIONS(552),
- [anon_sym_LBRACE] = ACTIONS(554),
- [anon_sym_typeof] = ACTIONS(21),
- [anon_sym_import] = ACTIONS(23),
- [anon_sym_with] = ACTIONS(556),
- [anon_sym_var] = ACTIONS(27),
- [anon_sym_let] = ACTIONS(558),
- [anon_sym_const] = ACTIONS(31),
- [anon_sym_BANG] = ACTIONS(33),
- [anon_sym_if] = ACTIONS(560),
- [anon_sym_switch] = ACTIONS(37),
- [anon_sym_for] = ACTIONS(562),
- [anon_sym_LPAREN] = ACTIONS(41),
- [anon_sym_await] = ACTIONS(43),
- [anon_sym_while] = ACTIONS(564),
- [anon_sym_do] = ACTIONS(47),
- [anon_sym_try] = ACTIONS(49),
- [anon_sym_break] = ACTIONS(51),
- [anon_sym_continue] = ACTIONS(53),
- [anon_sym_debugger] = ACTIONS(55),
- [anon_sym_return] = ACTIONS(57),
- [anon_sym_throw] = ACTIONS(59),
- [anon_sym_SEMI] = ACTIONS(61),
- [anon_sym_yield] = ACTIONS(63),
- [anon_sym_LBRACK] = ACTIONS(65),
- [sym_glimmer_opening_tag] = ACTIONS(67),
- [anon_sym_DQUOTE] = ACTIONS(69),
- [anon_sym_SQUOTE] = ACTIONS(71),
- [anon_sym_class] = ACTIONS(566),
- [anon_sym_async] = ACTIONS(568),
- [anon_sym_function] = ACTIONS(570),
- [anon_sym_new] = ACTIONS(572),
- [anon_sym_using] = ACTIONS(81),
- [anon_sym_PLUS] = ACTIONS(21),
- [anon_sym_DASH] = ACTIONS(21),
- [anon_sym_SLASH] = ACTIONS(83),
- [anon_sym_LT] = ACTIONS(85),
- [anon_sym_TILDE] = ACTIONS(33),
- [anon_sym_void] = ACTIONS(21),
- [anon_sym_delete] = ACTIONS(21),
- [anon_sym_PLUS_PLUS] = ACTIONS(87),
- [anon_sym_DASH_DASH] = ACTIONS(87),
- [sym_comment] = ACTIONS(5),
- [anon_sym_BQUOTE] = ACTIONS(89),
- [sym_number] = ACTIONS(91),
- [sym_private_property_identifier] = ACTIONS(93),
- [sym_this] = ACTIONS(95),
- [sym_super] = ACTIONS(95),
- [sym_true] = ACTIONS(95),
- [sym_false] = ACTIONS(95),
- [sym_null] = ACTIONS(95),
- [sym_undefined] = ACTIONS(97),
- [anon_sym_AT] = ACTIONS(99),
- [anon_sym_static] = ACTIONS(574),
- [anon_sym_readonly] = ACTIONS(574),
- [anon_sym_get] = ACTIONS(574),
- [anon_sym_set] = ACTIONS(574),
- [anon_sym_declare] = ACTIONS(576),
- [anon_sym_public] = ACTIONS(574),
- [anon_sym_private] = ACTIONS(574),
- [anon_sym_protected] = ACTIONS(574),
- [anon_sym_override] = ACTIONS(574),
- [anon_sym_module] = ACTIONS(578),
- [anon_sym_any] = ACTIONS(574),
- [anon_sym_number] = ACTIONS(574),
- [anon_sym_boolean] = ACTIONS(574),
- [anon_sym_string] = ACTIONS(574),
- [anon_sym_symbol] = ACTIONS(574),
- [anon_sym_object] = ACTIONS(574),
- [anon_sym_abstract] = ACTIONS(107),
- [anon_sym_interface] = ACTIONS(109),
- [anon_sym_enum] = ACTIONS(111),
- [sym_html_comment] = ACTIONS(5),
- },
- [32] = {
- [sym_export_statement] = STATE(854),
- [sym_declaration] = STATE(854),
- [sym_import] = STATE(3306),
- [sym_import_statement] = STATE(854),
- [sym_statement] = STATE(787),
- [sym_expression_statement] = STATE(854),
- [sym_variable_declaration] = STATE(861),
- [sym_lexical_declaration] = STATE(861),
- [sym_statement_block] = STATE(854),
- [sym_if_statement] = STATE(854),
- [sym_switch_statement] = STATE(854),
- [sym_for_statement] = STATE(854),
- [sym_for_in_statement] = STATE(854),
- [sym_while_statement] = STATE(854),
- [sym_do_statement] = STATE(854),
- [sym_try_statement] = STATE(854),
- [sym_with_statement] = STATE(854),
- [sym_break_statement] = STATE(854),
- [sym_continue_statement] = STATE(854),
- [sym_debugger_statement] = STATE(854),
- [sym_return_statement] = STATE(854),
- [sym_throw_statement] = STATE(854),
- [sym_empty_statement] = STATE(854),
- [sym_labeled_statement] = STATE(854),
- [sym_parenthesized_expression] = STATE(1294),
- [sym_expression] = STATE(1705),
- [sym_primary_expression] = STATE(1946),
- [sym_yield_expression] = STATE(2234),
- [sym_object] = STATE(2310),
- [sym_object_pattern] = STATE(5667),
- [sym_array] = STATE(2310),
- [sym_array_pattern] = STATE(5667),
- [sym_glimmer_template] = STATE(2234),
- [sym_jsx_element] = STATE(2234),
- [sym_jsx_opening_element] = STATE(3051),
- [sym_jsx_self_closing_element] = STATE(2234),
- [sym_class] = STATE(2310),
- [sym_class_declaration] = STATE(861),
- [sym_function_expression] = STATE(2310),
- [sym_function_declaration] = STATE(861),
- [sym_generator_function] = STATE(2310),
- [sym_generator_function_declaration] = STATE(861),
- [sym_arrow_function] = STATE(2310),
- [sym__call_signature] = STATE(5809),
- [sym_call_expression] = STATE(2310),
- [sym_new_expression] = STATE(2234),
- [sym_await_expression] = STATE(2234),
- [sym_member_expression] = STATE(1294),
- [sym_subscript_expression] = STATE(1294),
- [sym_assignment_expression] = STATE(2234),
- [sym__augmented_assignment_lhs] = STATE(2875),
- [sym_augmented_assignment_expression] = STATE(2234),
- [sym__destructuring_pattern] = STATE(5667),
- [sym_ternary_expression] = STATE(2234),
- [sym_binary_expression] = STATE(2234),
- [sym_unary_expression] = STATE(2234),
- [sym_update_expression] = STATE(2234),
- [sym_sequence_expression] = STATE(5482),
- [sym_string] = STATE(2310),
- [sym_template_string] = STATE(2310),
- [sym_regex] = STATE(2310),
- [sym_meta_property] = STATE(2310),
- [sym_decorator] = STATE(1244),
- [sym_formal_parameters] = STATE(3742),
- [sym_non_null_expression] = STATE(1294),
- [sym_function_signature] = STATE(861),
- [sym_as_expression] = STATE(2234),
- [sym_satisfies_expression] = STATE(2234),
- [sym_instantiation_expression] = STATE(2234),
- [sym_ambient_declaration] = STATE(861),
- [sym_abstract_class_declaration] = STATE(861),
- [sym_module] = STATE(861),
- [sym_internal_module] = STATE(223),
- [sym_import_alias] = STATE(861),
- [sym_interface_declaration] = STATE(861),
- [sym_enum_declaration] = STATE(861),
- [sym_type_alias_declaration] = STATE(861),
- [sym_type_parameters] = STATE(5349),
- [aux_sym_export_statement_repeat1] = STATE(3848),
- [sym_identifier] = ACTIONS(9),
- [anon_sym_export] = ACTIONS(13),
- [anon_sym_type] = ACTIONS(15),
- [anon_sym_namespace] = ACTIONS(17),
- [anon_sym_LBRACE] = ACTIONS(19),
- [anon_sym_typeof] = ACTIONS(21),
- [anon_sym_import] = ACTIONS(23),
- [anon_sym_with] = ACTIONS(25),
- [anon_sym_var] = ACTIONS(27),
- [anon_sym_let] = ACTIONS(29),
- [anon_sym_const] = ACTIONS(31),
- [anon_sym_BANG] = ACTIONS(33),
- [anon_sym_if] = ACTIONS(35),
- [anon_sym_switch] = ACTIONS(37),
- [anon_sym_for] = ACTIONS(39),
- [anon_sym_LPAREN] = ACTIONS(41),
- [anon_sym_await] = ACTIONS(43),
- [anon_sym_while] = ACTIONS(45),
- [anon_sym_do] = ACTIONS(47),
- [anon_sym_try] = ACTIONS(49),
- [anon_sym_break] = ACTIONS(51),
- [anon_sym_continue] = ACTIONS(53),
- [anon_sym_debugger] = ACTIONS(55),
- [anon_sym_return] = ACTIONS(57),
- [anon_sym_throw] = ACTIONS(59),
- [anon_sym_SEMI] = ACTIONS(61),
- [anon_sym_yield] = ACTIONS(63),
- [anon_sym_LBRACK] = ACTIONS(65),
- [sym_glimmer_opening_tag] = ACTIONS(67),
- [anon_sym_DQUOTE] = ACTIONS(69),
- [anon_sym_SQUOTE] = ACTIONS(71),
- [anon_sym_class] = ACTIONS(73),
- [anon_sym_async] = ACTIONS(75),
- [anon_sym_function] = ACTIONS(77),
- [anon_sym_new] = ACTIONS(79),
- [anon_sym_using] = ACTIONS(81),
- [anon_sym_PLUS] = ACTIONS(21),
- [anon_sym_DASH] = ACTIONS(21),
- [anon_sym_SLASH] = ACTIONS(83),
- [anon_sym_LT] = ACTIONS(85),
- [anon_sym_TILDE] = ACTIONS(33),
- [anon_sym_void] = ACTIONS(21),
- [anon_sym_delete] = ACTIONS(21),
- [anon_sym_PLUS_PLUS] = ACTIONS(87),
- [anon_sym_DASH_DASH] = ACTIONS(87),
- [sym_comment] = ACTIONS(5),
- [anon_sym_BQUOTE] = ACTIONS(89),
- [sym_number] = ACTIONS(91),
- [sym_private_property_identifier] = ACTIONS(93),
- [sym_this] = ACTIONS(95),
- [sym_super] = ACTIONS(95),
- [sym_true] = ACTIONS(95),
- [sym_false] = ACTIONS(95),
- [sym_null] = ACTIONS(95),
- [sym_undefined] = ACTIONS(97),
- [anon_sym_AT] = ACTIONS(99),
- [anon_sym_static] = ACTIONS(101),
- [anon_sym_readonly] = ACTIONS(101),
- [anon_sym_get] = ACTIONS(101),
- [anon_sym_set] = ACTIONS(101),
- [anon_sym_declare] = ACTIONS(103),
- [anon_sym_public] = ACTIONS(101),
- [anon_sym_private] = ACTIONS(101),
- [anon_sym_protected] = ACTIONS(101),
- [anon_sym_override] = ACTIONS(101),
- [anon_sym_module] = ACTIONS(105),
- [anon_sym_any] = ACTIONS(101),
- [anon_sym_number] = ACTIONS(101),
- [anon_sym_boolean] = ACTIONS(101),
- [anon_sym_string] = ACTIONS(101),
- [anon_sym_symbol] = ACTIONS(101),
- [anon_sym_object] = ACTIONS(101),
- [anon_sym_abstract] = ACTIONS(107),
- [anon_sym_interface] = ACTIONS(109),
- [anon_sym_enum] = ACTIONS(111),
- [sym_html_comment] = ACTIONS(5),
- },
- [33] = {
- [sym_export_statement] = STATE(854),
- [sym_declaration] = STATE(854),
- [sym_import] = STATE(3306),
- [sym_import_statement] = STATE(854),
- [sym_statement] = STATE(833),
- [sym_expression_statement] = STATE(854),
- [sym_variable_declaration] = STATE(861),
- [sym_lexical_declaration] = STATE(861),
- [sym_statement_block] = STATE(854),
- [sym_if_statement] = STATE(854),
- [sym_switch_statement] = STATE(854),
- [sym_for_statement] = STATE(854),
- [sym_for_in_statement] = STATE(854),
- [sym_while_statement] = STATE(854),
- [sym_do_statement] = STATE(854),
- [sym_try_statement] = STATE(854),
- [sym_with_statement] = STATE(854),
- [sym_break_statement] = STATE(854),
- [sym_continue_statement] = STATE(854),
- [sym_debugger_statement] = STATE(854),
- [sym_return_statement] = STATE(854),
- [sym_throw_statement] = STATE(854),
- [sym_empty_statement] = STATE(854),
- [sym_labeled_statement] = STATE(854),
- [sym_parenthesized_expression] = STATE(1294),
- [sym_expression] = STATE(1705),
- [sym_primary_expression] = STATE(1946),
- [sym_yield_expression] = STATE(2234),
- [sym_object] = STATE(2310),
- [sym_object_pattern] = STATE(5667),
- [sym_array] = STATE(2310),
- [sym_array_pattern] = STATE(5667),
- [sym_glimmer_template] = STATE(2234),
- [sym_jsx_element] = STATE(2234),
- [sym_jsx_opening_element] = STATE(3051),
- [sym_jsx_self_closing_element] = STATE(2234),
- [sym_class] = STATE(2310),
- [sym_class_declaration] = STATE(861),
- [sym_function_expression] = STATE(2310),
- [sym_function_declaration] = STATE(861),
- [sym_generator_function] = STATE(2310),
- [sym_generator_function_declaration] = STATE(861),
- [sym_arrow_function] = STATE(2310),
- [sym__call_signature] = STATE(5809),
- [sym_call_expression] = STATE(2310),
- [sym_new_expression] = STATE(2234),
- [sym_await_expression] = STATE(2234),
- [sym_member_expression] = STATE(1294),
- [sym_subscript_expression] = STATE(1294),
- [sym_assignment_expression] = STATE(2234),
- [sym__augmented_assignment_lhs] = STATE(2875),
- [sym_augmented_assignment_expression] = STATE(2234),
- [sym__destructuring_pattern] = STATE(5667),
- [sym_ternary_expression] = STATE(2234),
- [sym_binary_expression] = STATE(2234),
- [sym_unary_expression] = STATE(2234),
- [sym_update_expression] = STATE(2234),
- [sym_sequence_expression] = STATE(5482),
- [sym_string] = STATE(2310),
- [sym_template_string] = STATE(2310),
- [sym_regex] = STATE(2310),
- [sym_meta_property] = STATE(2310),
- [sym_decorator] = STATE(1244),
- [sym_formal_parameters] = STATE(3742),
- [sym_non_null_expression] = STATE(1294),
- [sym_function_signature] = STATE(861),
- [sym_as_expression] = STATE(2234),
- [sym_satisfies_expression] = STATE(2234),
- [sym_instantiation_expression] = STATE(2234),
- [sym_ambient_declaration] = STATE(861),
- [sym_abstract_class_declaration] = STATE(861),
- [sym_module] = STATE(861),
- [sym_internal_module] = STATE(223),
- [sym_import_alias] = STATE(861),
- [sym_interface_declaration] = STATE(861),
- [sym_enum_declaration] = STATE(861),
- [sym_type_alias_declaration] = STATE(861),
- [sym_type_parameters] = STATE(5349),
- [aux_sym_export_statement_repeat1] = STATE(3848),
- [sym_identifier] = ACTIONS(9),
- [anon_sym_export] = ACTIONS(13),
- [anon_sym_type] = ACTIONS(15),
- [anon_sym_namespace] = ACTIONS(17),
- [anon_sym_LBRACE] = ACTIONS(19),
- [anon_sym_typeof] = ACTIONS(21),
- [anon_sym_import] = ACTIONS(23),
- [anon_sym_with] = ACTIONS(25),
- [anon_sym_var] = ACTIONS(27),
- [anon_sym_let] = ACTIONS(29),
- [anon_sym_const] = ACTIONS(31),
- [anon_sym_BANG] = ACTIONS(33),
- [anon_sym_if] = ACTIONS(35),
- [anon_sym_switch] = ACTIONS(37),
- [anon_sym_for] = ACTIONS(39),
- [anon_sym_LPAREN] = ACTIONS(41),
- [anon_sym_await] = ACTIONS(43),
- [anon_sym_while] = ACTIONS(45),
- [anon_sym_do] = ACTIONS(47),
- [anon_sym_try] = ACTIONS(49),
- [anon_sym_break] = ACTIONS(51),
- [anon_sym_continue] = ACTIONS(53),
- [anon_sym_debugger] = ACTIONS(55),
- [anon_sym_return] = ACTIONS(57),
- [anon_sym_throw] = ACTIONS(59),
- [anon_sym_SEMI] = ACTIONS(61),
- [anon_sym_yield] = ACTIONS(63),
- [anon_sym_LBRACK] = ACTIONS(65),
- [sym_glimmer_opening_tag] = ACTIONS(67),
- [anon_sym_DQUOTE] = ACTIONS(69),
- [anon_sym_SQUOTE] = ACTIONS(71),
- [anon_sym_class] = ACTIONS(73),
- [anon_sym_async] = ACTIONS(75),
- [anon_sym_function] = ACTIONS(77),
- [anon_sym_new] = ACTIONS(79),
- [anon_sym_using] = ACTIONS(81),
- [anon_sym_PLUS] = ACTIONS(21),
- [anon_sym_DASH] = ACTIONS(21),
- [anon_sym_SLASH] = ACTIONS(83),
- [anon_sym_LT] = ACTIONS(85),
- [anon_sym_TILDE] = ACTIONS(33),
- [anon_sym_void] = ACTIONS(21),
- [anon_sym_delete] = ACTIONS(21),
- [anon_sym_PLUS_PLUS] = ACTIONS(87),
- [anon_sym_DASH_DASH] = ACTIONS(87),
- [sym_comment] = ACTIONS(5),
- [anon_sym_BQUOTE] = ACTIONS(89),
- [sym_number] = ACTIONS(91),
- [sym_private_property_identifier] = ACTIONS(93),
- [sym_this] = ACTIONS(95),
- [sym_super] = ACTIONS(95),
- [sym_true] = ACTIONS(95),
- [sym_false] = ACTIONS(95),
- [sym_null] = ACTIONS(95),
- [sym_undefined] = ACTIONS(97),
- [anon_sym_AT] = ACTIONS(99),
- [anon_sym_static] = ACTIONS(101),
- [anon_sym_readonly] = ACTIONS(101),
- [anon_sym_get] = ACTIONS(101),
- [anon_sym_set] = ACTIONS(101),
- [anon_sym_declare] = ACTIONS(103),
- [anon_sym_public] = ACTIONS(101),
- [anon_sym_private] = ACTIONS(101),
- [anon_sym_protected] = ACTIONS(101),
- [anon_sym_override] = ACTIONS(101),
- [anon_sym_module] = ACTIONS(105),
- [anon_sym_any] = ACTIONS(101),
- [anon_sym_number] = ACTIONS(101),
- [anon_sym_boolean] = ACTIONS(101),
- [anon_sym_string] = ACTIONS(101),
- [anon_sym_symbol] = ACTIONS(101),
- [anon_sym_object] = ACTIONS(101),
- [anon_sym_abstract] = ACTIONS(107),
- [anon_sym_interface] = ACTIONS(109),
- [anon_sym_enum] = ACTIONS(111),
- [sym_html_comment] = ACTIONS(5),
- },
- [34] = {
- [sym_export_statement] = STATE(854),
- [sym_declaration] = STATE(854),
- [sym_import] = STATE(3306),
- [sym_import_statement] = STATE(854),
- [sym_statement] = STATE(734),
- [sym_expression_statement] = STATE(854),
- [sym_variable_declaration] = STATE(861),
- [sym_lexical_declaration] = STATE(861),
- [sym_statement_block] = STATE(854),
- [sym_if_statement] = STATE(854),
- [sym_switch_statement] = STATE(854),
- [sym_for_statement] = STATE(854),
- [sym_for_in_statement] = STATE(854),
- [sym_while_statement] = STATE(854),
- [sym_do_statement] = STATE(854),
- [sym_try_statement] = STATE(854),
- [sym_with_statement] = STATE(854),
- [sym_break_statement] = STATE(854),
- [sym_continue_statement] = STATE(854),
- [sym_debugger_statement] = STATE(854),
- [sym_return_statement] = STATE(854),
- [sym_throw_statement] = STATE(854),
- [sym_empty_statement] = STATE(854),
- [sym_labeled_statement] = STATE(854),
- [sym_parenthesized_expression] = STATE(1294),
- [sym_expression] = STATE(1705),
- [sym_primary_expression] = STATE(1946),
- [sym_yield_expression] = STATE(2234),
- [sym_object] = STATE(2310),
- [sym_object_pattern] = STATE(5667),
- [sym_array] = STATE(2310),
- [sym_array_pattern] = STATE(5667),
- [sym_glimmer_template] = STATE(2234),
- [sym_jsx_element] = STATE(2234),
- [sym_jsx_opening_element] = STATE(3051),
- [sym_jsx_self_closing_element] = STATE(2234),
- [sym_class] = STATE(2310),
- [sym_class_declaration] = STATE(861),
- [sym_function_expression] = STATE(2310),
- [sym_function_declaration] = STATE(861),
- [sym_generator_function] = STATE(2310),
- [sym_generator_function_declaration] = STATE(861),
- [sym_arrow_function] = STATE(2310),
- [sym__call_signature] = STATE(5809),
- [sym_call_expression] = STATE(2310),
- [sym_new_expression] = STATE(2234),
- [sym_await_expression] = STATE(2234),
- [sym_member_expression] = STATE(1294),
- [sym_subscript_expression] = STATE(1294),
- [sym_assignment_expression] = STATE(2234),
- [sym__augmented_assignment_lhs] = STATE(2875),
- [sym_augmented_assignment_expression] = STATE(2234),
- [sym__destructuring_pattern] = STATE(5667),
- [sym_ternary_expression] = STATE(2234),
- [sym_binary_expression] = STATE(2234),
- [sym_unary_expression] = STATE(2234),
- [sym_update_expression] = STATE(2234),
- [sym_sequence_expression] = STATE(5482),
- [sym_string] = STATE(2310),
- [sym_template_string] = STATE(2310),
- [sym_regex] = STATE(2310),
- [sym_meta_property] = STATE(2310),
- [sym_decorator] = STATE(1244),
- [sym_formal_parameters] = STATE(3742),
- [sym_non_null_expression] = STATE(1294),
- [sym_function_signature] = STATE(861),
- [sym_as_expression] = STATE(2234),
- [sym_satisfies_expression] = STATE(2234),
- [sym_instantiation_expression] = STATE(2234),
- [sym_ambient_declaration] = STATE(861),
- [sym_abstract_class_declaration] = STATE(861),
- [sym_module] = STATE(861),
- [sym_internal_module] = STATE(223),
- [sym_import_alias] = STATE(861),
- [sym_interface_declaration] = STATE(861),
- [sym_enum_declaration] = STATE(861),
- [sym_type_alias_declaration] = STATE(861),
- [sym_type_parameters] = STATE(5349),
- [aux_sym_export_statement_repeat1] = STATE(3848),
- [sym_identifier] = ACTIONS(9),
- [anon_sym_export] = ACTIONS(13),
- [anon_sym_type] = ACTIONS(15),
- [anon_sym_namespace] = ACTIONS(17),
- [anon_sym_LBRACE] = ACTIONS(19),
- [anon_sym_typeof] = ACTIONS(21),
- [anon_sym_import] = ACTIONS(23),
- [anon_sym_with] = ACTIONS(25),
- [anon_sym_var] = ACTIONS(27),
- [anon_sym_let] = ACTIONS(29),
- [anon_sym_const] = ACTIONS(31),
- [anon_sym_BANG] = ACTIONS(33),
- [anon_sym_if] = ACTIONS(35),
- [anon_sym_switch] = ACTIONS(37),
- [anon_sym_for] = ACTIONS(39),
- [anon_sym_LPAREN] = ACTIONS(41),
- [anon_sym_await] = ACTIONS(43),
- [anon_sym_while] = ACTIONS(45),
- [anon_sym_do] = ACTIONS(47),
- [anon_sym_try] = ACTIONS(49),
- [anon_sym_break] = ACTIONS(51),
- [anon_sym_continue] = ACTIONS(53),
- [anon_sym_debugger] = ACTIONS(55),
- [anon_sym_return] = ACTIONS(57),
- [anon_sym_throw] = ACTIONS(59),
- [anon_sym_SEMI] = ACTIONS(61),
- [anon_sym_yield] = ACTIONS(63),
- [anon_sym_LBRACK] = ACTIONS(65),
- [sym_glimmer_opening_tag] = ACTIONS(67),
- [anon_sym_DQUOTE] = ACTIONS(69),
- [anon_sym_SQUOTE] = ACTIONS(71),
- [anon_sym_class] = ACTIONS(73),
- [anon_sym_async] = ACTIONS(75),
- [anon_sym_function] = ACTIONS(77),
- [anon_sym_new] = ACTIONS(79),
- [anon_sym_using] = ACTIONS(81),
- [anon_sym_PLUS] = ACTIONS(21),
- [anon_sym_DASH] = ACTIONS(21),
- [anon_sym_SLASH] = ACTIONS(83),
- [anon_sym_LT] = ACTIONS(85),
- [anon_sym_TILDE] = ACTIONS(33),
- [anon_sym_void] = ACTIONS(21),
- [anon_sym_delete] = ACTIONS(21),
- [anon_sym_PLUS_PLUS] = ACTIONS(87),
- [anon_sym_DASH_DASH] = ACTIONS(87),
- [sym_comment] = ACTIONS(5),
- [anon_sym_BQUOTE] = ACTIONS(89),
- [sym_number] = ACTIONS(91),
- [sym_private_property_identifier] = ACTIONS(93),
- [sym_this] = ACTIONS(95),
- [sym_super] = ACTIONS(95),
- [sym_true] = ACTIONS(95),
- [sym_false] = ACTIONS(95),
- [sym_null] = ACTIONS(95),
- [sym_undefined] = ACTIONS(97),
- [anon_sym_AT] = ACTIONS(99),
- [anon_sym_static] = ACTIONS(101),
- [anon_sym_readonly] = ACTIONS(101),
- [anon_sym_get] = ACTIONS(101),
- [anon_sym_set] = ACTIONS(101),
- [anon_sym_declare] = ACTIONS(103),
- [anon_sym_public] = ACTIONS(101),
- [anon_sym_private] = ACTIONS(101),
- [anon_sym_protected] = ACTIONS(101),
- [anon_sym_override] = ACTIONS(101),
- [anon_sym_module] = ACTIONS(105),
- [anon_sym_any] = ACTIONS(101),
- [anon_sym_number] = ACTIONS(101),
- [anon_sym_boolean] = ACTIONS(101),
- [anon_sym_string] = ACTIONS(101),
- [anon_sym_symbol] = ACTIONS(101),
- [anon_sym_object] = ACTIONS(101),
- [anon_sym_abstract] = ACTIONS(107),
- [anon_sym_interface] = ACTIONS(109),
- [anon_sym_enum] = ACTIONS(111),
- [sym_html_comment] = ACTIONS(5),
- },
- [35] = {
- [sym_export_statement] = STATE(854),
- [sym_declaration] = STATE(854),
- [sym_import] = STATE(3306),
- [sym_import_statement] = STATE(854),
- [sym_statement] = STATE(809),
- [sym_expression_statement] = STATE(854),
- [sym_variable_declaration] = STATE(861),
- [sym_lexical_declaration] = STATE(861),
- [sym_statement_block] = STATE(854),
- [sym_if_statement] = STATE(854),
- [sym_switch_statement] = STATE(854),
- [sym_for_statement] = STATE(854),
- [sym_for_in_statement] = STATE(854),
- [sym_while_statement] = STATE(854),
- [sym_do_statement] = STATE(854),
- [sym_try_statement] = STATE(854),
- [sym_with_statement] = STATE(854),
- [sym_break_statement] = STATE(854),
- [sym_continue_statement] = STATE(854),
- [sym_debugger_statement] = STATE(854),
- [sym_return_statement] = STATE(854),
- [sym_throw_statement] = STATE(854),
- [sym_empty_statement] = STATE(854),
- [sym_labeled_statement] = STATE(854),
- [sym_parenthesized_expression] = STATE(1294),
- [sym_expression] = STATE(1705),
- [sym_primary_expression] = STATE(1946),
- [sym_yield_expression] = STATE(2234),
- [sym_object] = STATE(2310),
- [sym_object_pattern] = STATE(5667),
- [sym_array] = STATE(2310),
- [sym_array_pattern] = STATE(5667),
- [sym_glimmer_template] = STATE(2234),
- [sym_jsx_element] = STATE(2234),
- [sym_jsx_opening_element] = STATE(3051),
- [sym_jsx_self_closing_element] = STATE(2234),
- [sym_class] = STATE(2310),
- [sym_class_declaration] = STATE(861),
- [sym_function_expression] = STATE(2310),
- [sym_function_declaration] = STATE(861),
- [sym_generator_function] = STATE(2310),
- [sym_generator_function_declaration] = STATE(861),
- [sym_arrow_function] = STATE(2310),
- [sym__call_signature] = STATE(5809),
- [sym_call_expression] = STATE(2310),
- [sym_new_expression] = STATE(2234),
- [sym_await_expression] = STATE(2234),
- [sym_member_expression] = STATE(1294),
- [sym_subscript_expression] = STATE(1294),
- [sym_assignment_expression] = STATE(2234),
- [sym__augmented_assignment_lhs] = STATE(2875),
- [sym_augmented_assignment_expression] = STATE(2234),
- [sym__destructuring_pattern] = STATE(5667),
- [sym_ternary_expression] = STATE(2234),
- [sym_binary_expression] = STATE(2234),
- [sym_unary_expression] = STATE(2234),
- [sym_update_expression] = STATE(2234),
- [sym_sequence_expression] = STATE(5482),
- [sym_string] = STATE(2310),
- [sym_template_string] = STATE(2310),
- [sym_regex] = STATE(2310),
- [sym_meta_property] = STATE(2310),
- [sym_decorator] = STATE(1244),
- [sym_formal_parameters] = STATE(3742),
- [sym_non_null_expression] = STATE(1294),
- [sym_function_signature] = STATE(861),
- [sym_as_expression] = STATE(2234),
- [sym_satisfies_expression] = STATE(2234),
- [sym_instantiation_expression] = STATE(2234),
- [sym_ambient_declaration] = STATE(861),
- [sym_abstract_class_declaration] = STATE(861),
- [sym_module] = STATE(861),
- [sym_internal_module] = STATE(223),
- [sym_import_alias] = STATE(861),
- [sym_interface_declaration] = STATE(861),
- [sym_enum_declaration] = STATE(861),
- [sym_type_alias_declaration] = STATE(861),
- [sym_type_parameters] = STATE(5349),
- [aux_sym_export_statement_repeat1] = STATE(3848),
- [sym_identifier] = ACTIONS(9),
- [anon_sym_export] = ACTIONS(13),
- [anon_sym_type] = ACTIONS(15),
- [anon_sym_namespace] = ACTIONS(17),
- [anon_sym_LBRACE] = ACTIONS(19),
- [anon_sym_typeof] = ACTIONS(21),
- [anon_sym_import] = ACTIONS(23),
- [anon_sym_with] = ACTIONS(25),
- [anon_sym_var] = ACTIONS(27),
- [anon_sym_let] = ACTIONS(29),
- [anon_sym_const] = ACTIONS(31),
- [anon_sym_BANG] = ACTIONS(33),
- [anon_sym_if] = ACTIONS(35),
- [anon_sym_switch] = ACTIONS(37),
- [anon_sym_for] = ACTIONS(39),
- [anon_sym_LPAREN] = ACTIONS(41),
- [anon_sym_await] = ACTIONS(43),
- [anon_sym_while] = ACTIONS(45),
- [anon_sym_do] = ACTIONS(47),
- [anon_sym_try] = ACTIONS(49),
- [anon_sym_break] = ACTIONS(51),
- [anon_sym_continue] = ACTIONS(53),
- [anon_sym_debugger] = ACTIONS(55),
- [anon_sym_return] = ACTIONS(57),
- [anon_sym_throw] = ACTIONS(59),
- [anon_sym_SEMI] = ACTIONS(61),
- [anon_sym_yield] = ACTIONS(63),
- [anon_sym_LBRACK] = ACTIONS(65),
- [sym_glimmer_opening_tag] = ACTIONS(67),
- [anon_sym_DQUOTE] = ACTIONS(69),
- [anon_sym_SQUOTE] = ACTIONS(71),
- [anon_sym_class] = ACTIONS(73),
- [anon_sym_async] = ACTIONS(75),
- [anon_sym_function] = ACTIONS(77),
- [anon_sym_new] = ACTIONS(79),
- [anon_sym_using] = ACTIONS(81),
- [anon_sym_PLUS] = ACTIONS(21),
- [anon_sym_DASH] = ACTIONS(21),
- [anon_sym_SLASH] = ACTIONS(83),
- [anon_sym_LT] = ACTIONS(85),
- [anon_sym_TILDE] = ACTIONS(33),
- [anon_sym_void] = ACTIONS(21),
- [anon_sym_delete] = ACTIONS(21),
- [anon_sym_PLUS_PLUS] = ACTIONS(87),
- [anon_sym_DASH_DASH] = ACTIONS(87),
- [sym_comment] = ACTIONS(5),
- [anon_sym_BQUOTE] = ACTIONS(89),
- [sym_number] = ACTIONS(91),
- [sym_private_property_identifier] = ACTIONS(93),
- [sym_this] = ACTIONS(95),
- [sym_super] = ACTIONS(95),
- [sym_true] = ACTIONS(95),
- [sym_false] = ACTIONS(95),
- [sym_null] = ACTIONS(95),
- [sym_undefined] = ACTIONS(97),
- [anon_sym_AT] = ACTIONS(99),
- [anon_sym_static] = ACTIONS(101),
- [anon_sym_readonly] = ACTIONS(101),
- [anon_sym_get] = ACTIONS(101),
- [anon_sym_set] = ACTIONS(101),
- [anon_sym_declare] = ACTIONS(103),
- [anon_sym_public] = ACTIONS(101),
- [anon_sym_private] = ACTIONS(101),
- [anon_sym_protected] = ACTIONS(101),
- [anon_sym_override] = ACTIONS(101),
- [anon_sym_module] = ACTIONS(105),
- [anon_sym_any] = ACTIONS(101),
- [anon_sym_number] = ACTIONS(101),
- [anon_sym_boolean] = ACTIONS(101),
- [anon_sym_string] = ACTIONS(101),
- [anon_sym_symbol] = ACTIONS(101),
- [anon_sym_object] = ACTIONS(101),
- [anon_sym_abstract] = ACTIONS(107),
- [anon_sym_interface] = ACTIONS(109),
- [anon_sym_enum] = ACTIONS(111),
- [sym_html_comment] = ACTIONS(5),
- },
- [36] = {
- [sym_export_statement] = STATE(854),
- [sym_declaration] = STATE(854),
- [sym_import] = STATE(3306),
- [sym_import_statement] = STATE(854),
- [sym_statement] = STATE(846),
- [sym_expression_statement] = STATE(854),
- [sym_variable_declaration] = STATE(861),
- [sym_lexical_declaration] = STATE(861),
- [sym_statement_block] = STATE(854),
- [sym_if_statement] = STATE(854),
- [sym_switch_statement] = STATE(854),
- [sym_for_statement] = STATE(854),
- [sym_for_in_statement] = STATE(854),
- [sym_while_statement] = STATE(854),
- [sym_do_statement] = STATE(854),
- [sym_try_statement] = STATE(854),
- [sym_with_statement] = STATE(854),
- [sym_break_statement] = STATE(854),
- [sym_continue_statement] = STATE(854),
- [sym_debugger_statement] = STATE(854),
- [sym_return_statement] = STATE(854),
- [sym_throw_statement] = STATE(854),
- [sym_empty_statement] = STATE(854),
- [sym_labeled_statement] = STATE(854),
- [sym_parenthesized_expression] = STATE(1294),
- [sym_expression] = STATE(1705),
- [sym_primary_expression] = STATE(1946),
- [sym_yield_expression] = STATE(2234),
- [sym_object] = STATE(2310),
- [sym_object_pattern] = STATE(5667),
- [sym_array] = STATE(2310),
- [sym_array_pattern] = STATE(5667),
- [sym_glimmer_template] = STATE(2234),
- [sym_jsx_element] = STATE(2234),
- [sym_jsx_opening_element] = STATE(3051),
- [sym_jsx_self_closing_element] = STATE(2234),
- [sym_class] = STATE(2310),
- [sym_class_declaration] = STATE(861),
- [sym_function_expression] = STATE(2310),
- [sym_function_declaration] = STATE(861),
- [sym_generator_function] = STATE(2310),
- [sym_generator_function_declaration] = STATE(861),
- [sym_arrow_function] = STATE(2310),
- [sym__call_signature] = STATE(5809),
- [sym_call_expression] = STATE(2310),
- [sym_new_expression] = STATE(2234),
- [sym_await_expression] = STATE(2234),
- [sym_member_expression] = STATE(1294),
- [sym_subscript_expression] = STATE(1294),
- [sym_assignment_expression] = STATE(2234),
- [sym__augmented_assignment_lhs] = STATE(2875),
- [sym_augmented_assignment_expression] = STATE(2234),
- [sym__destructuring_pattern] = STATE(5667),
- [sym_ternary_expression] = STATE(2234),
- [sym_binary_expression] = STATE(2234),
- [sym_unary_expression] = STATE(2234),
- [sym_update_expression] = STATE(2234),
- [sym_sequence_expression] = STATE(5482),
- [sym_string] = STATE(2310),
- [sym_template_string] = STATE(2310),
- [sym_regex] = STATE(2310),
- [sym_meta_property] = STATE(2310),
- [sym_decorator] = STATE(1244),
- [sym_formal_parameters] = STATE(3742),
- [sym_non_null_expression] = STATE(1294),
- [sym_function_signature] = STATE(861),
- [sym_as_expression] = STATE(2234),
- [sym_satisfies_expression] = STATE(2234),
- [sym_instantiation_expression] = STATE(2234),
- [sym_ambient_declaration] = STATE(861),
- [sym_abstract_class_declaration] = STATE(861),
- [sym_module] = STATE(861),
- [sym_internal_module] = STATE(223),
- [sym_import_alias] = STATE(861),
- [sym_interface_declaration] = STATE(861),
- [sym_enum_declaration] = STATE(861),
- [sym_type_alias_declaration] = STATE(861),
- [sym_type_parameters] = STATE(5349),
- [aux_sym_export_statement_repeat1] = STATE(3848),
- [sym_identifier] = ACTIONS(9),
- [anon_sym_export] = ACTIONS(13),
- [anon_sym_type] = ACTIONS(15),
- [anon_sym_namespace] = ACTIONS(17),
- [anon_sym_LBRACE] = ACTIONS(19),
- [anon_sym_typeof] = ACTIONS(21),
- [anon_sym_import] = ACTIONS(23),
- [anon_sym_with] = ACTIONS(25),
- [anon_sym_var] = ACTIONS(27),
- [anon_sym_let] = ACTIONS(29),
- [anon_sym_const] = ACTIONS(31),
- [anon_sym_BANG] = ACTIONS(33),
- [anon_sym_if] = ACTIONS(35),
- [anon_sym_switch] = ACTIONS(37),
- [anon_sym_for] = ACTIONS(39),
- [anon_sym_LPAREN] = ACTIONS(41),
- [anon_sym_await] = ACTIONS(43),
- [anon_sym_while] = ACTIONS(45),
- [anon_sym_do] = ACTIONS(47),
- [anon_sym_try] = ACTIONS(49),
- [anon_sym_break] = ACTIONS(51),
- [anon_sym_continue] = ACTIONS(53),
- [anon_sym_debugger] = ACTIONS(55),
- [anon_sym_return] = ACTIONS(57),
- [anon_sym_throw] = ACTIONS(59),
- [anon_sym_SEMI] = ACTIONS(61),
- [anon_sym_yield] = ACTIONS(63),
- [anon_sym_LBRACK] = ACTIONS(65),
- [sym_glimmer_opening_tag] = ACTIONS(67),
- [anon_sym_DQUOTE] = ACTIONS(69),
- [anon_sym_SQUOTE] = ACTIONS(71),
- [anon_sym_class] = ACTIONS(73),
- [anon_sym_async] = ACTIONS(75),
- [anon_sym_function] = ACTIONS(77),
- [anon_sym_new] = ACTIONS(79),
- [anon_sym_using] = ACTIONS(81),
- [anon_sym_PLUS] = ACTIONS(21),
- [anon_sym_DASH] = ACTIONS(21),
- [anon_sym_SLASH] = ACTIONS(83),
- [anon_sym_LT] = ACTIONS(85),
- [anon_sym_TILDE] = ACTIONS(33),
- [anon_sym_void] = ACTIONS(21),
- [anon_sym_delete] = ACTIONS(21),
- [anon_sym_PLUS_PLUS] = ACTIONS(87),
- [anon_sym_DASH_DASH] = ACTIONS(87),
- [sym_comment] = ACTIONS(5),
- [anon_sym_BQUOTE] = ACTIONS(89),
- [sym_number] = ACTIONS(91),
- [sym_private_property_identifier] = ACTIONS(93),
- [sym_this] = ACTIONS(95),
- [sym_super] = ACTIONS(95),
- [sym_true] = ACTIONS(95),
- [sym_false] = ACTIONS(95),
- [sym_null] = ACTIONS(95),
- [sym_undefined] = ACTIONS(97),
- [anon_sym_AT] = ACTIONS(99),
- [anon_sym_static] = ACTIONS(101),
- [anon_sym_readonly] = ACTIONS(101),
- [anon_sym_get] = ACTIONS(101),
- [anon_sym_set] = ACTIONS(101),
- [anon_sym_declare] = ACTIONS(103),
- [anon_sym_public] = ACTIONS(101),
- [anon_sym_private] = ACTIONS(101),
- [anon_sym_protected] = ACTIONS(101),
- [anon_sym_override] = ACTIONS(101),
- [anon_sym_module] = ACTIONS(105),
- [anon_sym_any] = ACTIONS(101),
- [anon_sym_number] = ACTIONS(101),
- [anon_sym_boolean] = ACTIONS(101),
- [anon_sym_string] = ACTIONS(101),
- [anon_sym_symbol] = ACTIONS(101),
- [anon_sym_object] = ACTIONS(101),
- [anon_sym_abstract] = ACTIONS(107),
- [anon_sym_interface] = ACTIONS(109),
- [anon_sym_enum] = ACTIONS(111),
- [sym_html_comment] = ACTIONS(5),
- },
- [37] = {
- [sym_export_statement] = STATE(854),
- [sym_declaration] = STATE(854),
- [sym_import] = STATE(3306),
- [sym_import_statement] = STATE(854),
- [sym_statement] = STATE(823),
- [sym_expression_statement] = STATE(854),
- [sym_variable_declaration] = STATE(861),
- [sym_lexical_declaration] = STATE(861),
- [sym_statement_block] = STATE(854),
- [sym_if_statement] = STATE(854),
- [sym_switch_statement] = STATE(854),
- [sym_for_statement] = STATE(854),
- [sym_for_in_statement] = STATE(854),
- [sym_while_statement] = STATE(854),
- [sym_do_statement] = STATE(854),
- [sym_try_statement] = STATE(854),
- [sym_with_statement] = STATE(854),
- [sym_break_statement] = STATE(854),
- [sym_continue_statement] = STATE(854),
- [sym_debugger_statement] = STATE(854),
- [sym_return_statement] = STATE(854),
- [sym_throw_statement] = STATE(854),
- [sym_empty_statement] = STATE(854),
- [sym_labeled_statement] = STATE(854),
- [sym_parenthesized_expression] = STATE(1294),
- [sym_expression] = STATE(1705),
- [sym_primary_expression] = STATE(1946),
- [sym_yield_expression] = STATE(2234),
- [sym_object] = STATE(2310),
- [sym_object_pattern] = STATE(5667),
- [sym_array] = STATE(2310),
- [sym_array_pattern] = STATE(5667),
- [sym_glimmer_template] = STATE(2234),
- [sym_jsx_element] = STATE(2234),
- [sym_jsx_opening_element] = STATE(3051),
- [sym_jsx_self_closing_element] = STATE(2234),
- [sym_class] = STATE(2310),
- [sym_class_declaration] = STATE(861),
- [sym_function_expression] = STATE(2310),
- [sym_function_declaration] = STATE(861),
- [sym_generator_function] = STATE(2310),
- [sym_generator_function_declaration] = STATE(861),
- [sym_arrow_function] = STATE(2310),
- [sym__call_signature] = STATE(5809),
- [sym_call_expression] = STATE(2310),
- [sym_new_expression] = STATE(2234),
- [sym_await_expression] = STATE(2234),
- [sym_member_expression] = STATE(1294),
- [sym_subscript_expression] = STATE(1294),
- [sym_assignment_expression] = STATE(2234),
- [sym__augmented_assignment_lhs] = STATE(2875),
- [sym_augmented_assignment_expression] = STATE(2234),
- [sym__destructuring_pattern] = STATE(5667),
- [sym_ternary_expression] = STATE(2234),
- [sym_binary_expression] = STATE(2234),
- [sym_unary_expression] = STATE(2234),
- [sym_update_expression] = STATE(2234),
- [sym_sequence_expression] = STATE(5482),
- [sym_string] = STATE(2310),
- [sym_template_string] = STATE(2310),
- [sym_regex] = STATE(2310),
- [sym_meta_property] = STATE(2310),
- [sym_decorator] = STATE(1244),
- [sym_formal_parameters] = STATE(3742),
- [sym_non_null_expression] = STATE(1294),
- [sym_function_signature] = STATE(861),
- [sym_as_expression] = STATE(2234),
- [sym_satisfies_expression] = STATE(2234),
- [sym_instantiation_expression] = STATE(2234),
- [sym_ambient_declaration] = STATE(861),
- [sym_abstract_class_declaration] = STATE(861),
- [sym_module] = STATE(861),
- [sym_internal_module] = STATE(223),
- [sym_import_alias] = STATE(861),
- [sym_interface_declaration] = STATE(861),
- [sym_enum_declaration] = STATE(861),
- [sym_type_alias_declaration] = STATE(861),
- [sym_type_parameters] = STATE(5349),
- [aux_sym_export_statement_repeat1] = STATE(3848),
- [sym_identifier] = ACTIONS(9),
- [anon_sym_export] = ACTIONS(13),
- [anon_sym_type] = ACTIONS(15),
- [anon_sym_namespace] = ACTIONS(17),
- [anon_sym_LBRACE] = ACTIONS(19),
- [anon_sym_typeof] = ACTIONS(21),
- [anon_sym_import] = ACTIONS(23),
- [anon_sym_with] = ACTIONS(25),
- [anon_sym_var] = ACTIONS(27),
- [anon_sym_let] = ACTIONS(29),
- [anon_sym_const] = ACTIONS(31),
- [anon_sym_BANG] = ACTIONS(33),
- [anon_sym_if] = ACTIONS(35),
- [anon_sym_switch] = ACTIONS(37),
- [anon_sym_for] = ACTIONS(39),
- [anon_sym_LPAREN] = ACTIONS(41),
- [anon_sym_await] = ACTIONS(43),
- [anon_sym_while] = ACTIONS(45),
- [anon_sym_do] = ACTIONS(47),
- [anon_sym_try] = ACTIONS(49),
- [anon_sym_break] = ACTIONS(51),
- [anon_sym_continue] = ACTIONS(53),
- [anon_sym_debugger] = ACTIONS(55),
- [anon_sym_return] = ACTIONS(57),
- [anon_sym_throw] = ACTIONS(59),
- [anon_sym_SEMI] = ACTIONS(61),
- [anon_sym_yield] = ACTIONS(63),
- [anon_sym_LBRACK] = ACTIONS(65),
- [sym_glimmer_opening_tag] = ACTIONS(67),
- [anon_sym_DQUOTE] = ACTIONS(69),
- [anon_sym_SQUOTE] = ACTIONS(71),
- [anon_sym_class] = ACTIONS(73),
- [anon_sym_async] = ACTIONS(75),
- [anon_sym_function] = ACTIONS(77),
- [anon_sym_new] = ACTIONS(79),
- [anon_sym_using] = ACTIONS(81),
- [anon_sym_PLUS] = ACTIONS(21),
- [anon_sym_DASH] = ACTIONS(21),
- [anon_sym_SLASH] = ACTIONS(83),
- [anon_sym_LT] = ACTIONS(85),
- [anon_sym_TILDE] = ACTIONS(33),
- [anon_sym_void] = ACTIONS(21),
- [anon_sym_delete] = ACTIONS(21),
- [anon_sym_PLUS_PLUS] = ACTIONS(87),
- [anon_sym_DASH_DASH] = ACTIONS(87),
- [sym_comment] = ACTIONS(5),
- [anon_sym_BQUOTE] = ACTIONS(89),
- [sym_number] = ACTIONS(91),
- [sym_private_property_identifier] = ACTIONS(93),
- [sym_this] = ACTIONS(95),
- [sym_super] = ACTIONS(95),
- [sym_true] = ACTIONS(95),
- [sym_false] = ACTIONS(95),
- [sym_null] = ACTIONS(95),
- [sym_undefined] = ACTIONS(97),
- [anon_sym_AT] = ACTIONS(99),
- [anon_sym_static] = ACTIONS(101),
- [anon_sym_readonly] = ACTIONS(101),
- [anon_sym_get] = ACTIONS(101),
- [anon_sym_set] = ACTIONS(101),
- [anon_sym_declare] = ACTIONS(103),
- [anon_sym_public] = ACTIONS(101),
- [anon_sym_private] = ACTIONS(101),
- [anon_sym_protected] = ACTIONS(101),
- [anon_sym_override] = ACTIONS(101),
- [anon_sym_module] = ACTIONS(105),
- [anon_sym_any] = ACTIONS(101),
- [anon_sym_number] = ACTIONS(101),
- [anon_sym_boolean] = ACTIONS(101),
- [anon_sym_string] = ACTIONS(101),
- [anon_sym_symbol] = ACTIONS(101),
- [anon_sym_object] = ACTIONS(101),
- [anon_sym_abstract] = ACTIONS(107),
- [anon_sym_interface] = ACTIONS(109),
- [anon_sym_enum] = ACTIONS(111),
- [sym_html_comment] = ACTIONS(5),
- },
- [38] = {
- [sym_export_statement] = STATE(854),
- [sym_declaration] = STATE(854),
- [sym_import] = STATE(3306),
- [sym_import_statement] = STATE(854),
- [sym_statement] = STATE(767),
- [sym_expression_statement] = STATE(854),
- [sym_variable_declaration] = STATE(861),
- [sym_lexical_declaration] = STATE(861),
- [sym_statement_block] = STATE(854),
- [sym_if_statement] = STATE(854),
- [sym_switch_statement] = STATE(854),
- [sym_for_statement] = STATE(854),
- [sym_for_in_statement] = STATE(854),
- [sym_while_statement] = STATE(854),
- [sym_do_statement] = STATE(854),
- [sym_try_statement] = STATE(854),
- [sym_with_statement] = STATE(854),
- [sym_break_statement] = STATE(854),
- [sym_continue_statement] = STATE(854),
- [sym_debugger_statement] = STATE(854),
- [sym_return_statement] = STATE(854),
- [sym_throw_statement] = STATE(854),
- [sym_empty_statement] = STATE(854),
- [sym_labeled_statement] = STATE(854),
- [sym_parenthesized_expression] = STATE(1294),
- [sym_expression] = STATE(1705),
- [sym_primary_expression] = STATE(1946),
- [sym_yield_expression] = STATE(2234),
- [sym_object] = STATE(2310),
- [sym_object_pattern] = STATE(5667),
- [sym_array] = STATE(2310),
- [sym_array_pattern] = STATE(5667),
- [sym_glimmer_template] = STATE(2234),
- [sym_jsx_element] = STATE(2234),
- [sym_jsx_opening_element] = STATE(3051),
- [sym_jsx_self_closing_element] = STATE(2234),
- [sym_class] = STATE(2310),
- [sym_class_declaration] = STATE(861),
- [sym_function_expression] = STATE(2310),
- [sym_function_declaration] = STATE(861),
- [sym_generator_function] = STATE(2310),
- [sym_generator_function_declaration] = STATE(861),
- [sym_arrow_function] = STATE(2310),
- [sym__call_signature] = STATE(5809),
- [sym_call_expression] = STATE(2310),
- [sym_new_expression] = STATE(2234),
- [sym_await_expression] = STATE(2234),
- [sym_member_expression] = STATE(1294),
- [sym_subscript_expression] = STATE(1294),
- [sym_assignment_expression] = STATE(2234),
- [sym__augmented_assignment_lhs] = STATE(2875),
- [sym_augmented_assignment_expression] = STATE(2234),
- [sym__destructuring_pattern] = STATE(5667),
- [sym_ternary_expression] = STATE(2234),
- [sym_binary_expression] = STATE(2234),
- [sym_unary_expression] = STATE(2234),
- [sym_update_expression] = STATE(2234),
- [sym_sequence_expression] = STATE(5482),
- [sym_string] = STATE(2310),
- [sym_template_string] = STATE(2310),
- [sym_regex] = STATE(2310),
- [sym_meta_property] = STATE(2310),
- [sym_decorator] = STATE(1244),
- [sym_formal_parameters] = STATE(3742),
- [sym_non_null_expression] = STATE(1294),
- [sym_function_signature] = STATE(861),
- [sym_as_expression] = STATE(2234),
- [sym_satisfies_expression] = STATE(2234),
- [sym_instantiation_expression] = STATE(2234),
- [sym_ambient_declaration] = STATE(861),
- [sym_abstract_class_declaration] = STATE(861),
- [sym_module] = STATE(861),
- [sym_internal_module] = STATE(223),
- [sym_import_alias] = STATE(861),
- [sym_interface_declaration] = STATE(861),
- [sym_enum_declaration] = STATE(861),
- [sym_type_alias_declaration] = STATE(861),
- [sym_type_parameters] = STATE(5349),
- [aux_sym_export_statement_repeat1] = STATE(3848),
- [sym_identifier] = ACTIONS(9),
- [anon_sym_export] = ACTIONS(13),
- [anon_sym_type] = ACTIONS(15),
- [anon_sym_namespace] = ACTIONS(17),
- [anon_sym_LBRACE] = ACTIONS(19),
- [anon_sym_typeof] = ACTIONS(21),
- [anon_sym_import] = ACTIONS(23),
- [anon_sym_with] = ACTIONS(25),
- [anon_sym_var] = ACTIONS(27),
- [anon_sym_let] = ACTIONS(29),
- [anon_sym_const] = ACTIONS(31),
- [anon_sym_BANG] = ACTIONS(33),
- [anon_sym_if] = ACTIONS(35),
- [anon_sym_switch] = ACTIONS(37),
- [anon_sym_for] = ACTIONS(39),
- [anon_sym_LPAREN] = ACTIONS(41),
- [anon_sym_await] = ACTIONS(43),
- [anon_sym_while] = ACTIONS(45),
- [anon_sym_do] = ACTIONS(47),
- [anon_sym_try] = ACTIONS(49),
- [anon_sym_break] = ACTIONS(51),
- [anon_sym_continue] = ACTIONS(53),
- [anon_sym_debugger] = ACTIONS(55),
- [anon_sym_return] = ACTIONS(57),
- [anon_sym_throw] = ACTIONS(59),
- [anon_sym_SEMI] = ACTIONS(61),
- [anon_sym_yield] = ACTIONS(63),
- [anon_sym_LBRACK] = ACTIONS(65),
- [sym_glimmer_opening_tag] = ACTIONS(67),
- [anon_sym_DQUOTE] = ACTIONS(69),
- [anon_sym_SQUOTE] = ACTIONS(71),
- [anon_sym_class] = ACTIONS(73),
- [anon_sym_async] = ACTIONS(75),
- [anon_sym_function] = ACTIONS(77),
- [anon_sym_new] = ACTIONS(79),
- [anon_sym_using] = ACTIONS(81),
- [anon_sym_PLUS] = ACTIONS(21),
- [anon_sym_DASH] = ACTIONS(21),
- [anon_sym_SLASH] = ACTIONS(83),
- [anon_sym_LT] = ACTIONS(85),
- [anon_sym_TILDE] = ACTIONS(33),
- [anon_sym_void] = ACTIONS(21),
- [anon_sym_delete] = ACTIONS(21),
- [anon_sym_PLUS_PLUS] = ACTIONS(87),
- [anon_sym_DASH_DASH] = ACTIONS(87),
- [sym_comment] = ACTIONS(5),
- [anon_sym_BQUOTE] = ACTIONS(89),
- [sym_number] = ACTIONS(91),
- [sym_private_property_identifier] = ACTIONS(93),
- [sym_this] = ACTIONS(95),
- [sym_super] = ACTIONS(95),
- [sym_true] = ACTIONS(95),
- [sym_false] = ACTIONS(95),
- [sym_null] = ACTIONS(95),
- [sym_undefined] = ACTIONS(97),
- [anon_sym_AT] = ACTIONS(99),
- [anon_sym_static] = ACTIONS(101),
- [anon_sym_readonly] = ACTIONS(101),
- [anon_sym_get] = ACTIONS(101),
- [anon_sym_set] = ACTIONS(101),
- [anon_sym_declare] = ACTIONS(103),
- [anon_sym_public] = ACTIONS(101),
- [anon_sym_private] = ACTIONS(101),
- [anon_sym_protected] = ACTIONS(101),
- [anon_sym_override] = ACTIONS(101),
- [anon_sym_module] = ACTIONS(105),
- [anon_sym_any] = ACTIONS(101),
- [anon_sym_number] = ACTIONS(101),
- [anon_sym_boolean] = ACTIONS(101),
- [anon_sym_string] = ACTIONS(101),
- [anon_sym_symbol] = ACTIONS(101),
- [anon_sym_object] = ACTIONS(101),
- [anon_sym_abstract] = ACTIONS(107),
- [anon_sym_interface] = ACTIONS(109),
- [anon_sym_enum] = ACTIONS(111),
- [sym_html_comment] = ACTIONS(5),
- },
- [39] = {
- [sym_export_statement] = STATE(854),
- [sym_declaration] = STATE(854),
- [sym_import] = STATE(3306),
- [sym_import_statement] = STATE(854),
- [sym_statement] = STATE(767),
- [sym_expression_statement] = STATE(854),
- [sym_variable_declaration] = STATE(861),
- [sym_lexical_declaration] = STATE(861),
- [sym_statement_block] = STATE(854),
- [sym_if_statement] = STATE(854),
- [sym_switch_statement] = STATE(854),
- [sym_for_statement] = STATE(854),
- [sym_for_in_statement] = STATE(854),
- [sym_while_statement] = STATE(854),
- [sym_do_statement] = STATE(854),
- [sym_try_statement] = STATE(854),
- [sym_with_statement] = STATE(854),
- [sym_break_statement] = STATE(854),
- [sym_continue_statement] = STATE(854),
- [sym_debugger_statement] = STATE(854),
- [sym_return_statement] = STATE(854),
- [sym_throw_statement] = STATE(854),
- [sym_empty_statement] = STATE(854),
- [sym_labeled_statement] = STATE(854),
- [sym_parenthesized_expression] = STATE(1294),
- [sym_expression] = STATE(1705),
- [sym_primary_expression] = STATE(1946),
- [sym_yield_expression] = STATE(2234),
- [sym_object] = STATE(2310),
- [sym_object_pattern] = STATE(5667),
- [sym_array] = STATE(2310),
- [sym_array_pattern] = STATE(5667),
- [sym_glimmer_template] = STATE(2234),
- [sym_jsx_element] = STATE(2234),
- [sym_jsx_opening_element] = STATE(3051),
- [sym_jsx_self_closing_element] = STATE(2234),
- [sym_class] = STATE(2310),
- [sym_class_declaration] = STATE(861),
- [sym_function_expression] = STATE(2310),
- [sym_function_declaration] = STATE(861),
- [sym_generator_function] = STATE(2310),
- [sym_generator_function_declaration] = STATE(861),
- [sym_arrow_function] = STATE(2310),
- [sym__call_signature] = STATE(5809),
- [sym_call_expression] = STATE(2310),
- [sym_new_expression] = STATE(2234),
- [sym_await_expression] = STATE(2234),
- [sym_member_expression] = STATE(1294),
- [sym_subscript_expression] = STATE(1294),
- [sym_assignment_expression] = STATE(2234),
- [sym__augmented_assignment_lhs] = STATE(2875),
- [sym_augmented_assignment_expression] = STATE(2234),
- [sym__destructuring_pattern] = STATE(5667),
- [sym_ternary_expression] = STATE(2234),
- [sym_binary_expression] = STATE(2234),
- [sym_unary_expression] = STATE(2234),
- [sym_update_expression] = STATE(2234),
- [sym_sequence_expression] = STATE(5482),
- [sym_string] = STATE(2310),
- [sym_template_string] = STATE(2310),
- [sym_regex] = STATE(2310),
- [sym_meta_property] = STATE(2310),
- [sym_decorator] = STATE(1244),
- [sym_formal_parameters] = STATE(3742),
- [sym_non_null_expression] = STATE(1294),
- [sym_function_signature] = STATE(861),
- [sym_as_expression] = STATE(2234),
- [sym_satisfies_expression] = STATE(2234),
- [sym_instantiation_expression] = STATE(2234),
- [sym_ambient_declaration] = STATE(861),
- [sym_abstract_class_declaration] = STATE(861),
- [sym_module] = STATE(861),
- [sym_internal_module] = STATE(2332),
- [sym_import_alias] = STATE(861),
- [sym_interface_declaration] = STATE(861),
- [sym_enum_declaration] = STATE(861),
- [sym_type_alias_declaration] = STATE(861),
- [sym_type_parameters] = STATE(5349),
- [aux_sym_export_statement_repeat1] = STATE(3860),
- [sym_identifier] = ACTIONS(546),
- [anon_sym_export] = ACTIONS(548),
- [anon_sym_type] = ACTIONS(550),
- [anon_sym_namespace] = ACTIONS(552),
- [anon_sym_LBRACE] = ACTIONS(554),
- [anon_sym_typeof] = ACTIONS(21),
- [anon_sym_import] = ACTIONS(23),
- [anon_sym_with] = ACTIONS(556),
- [anon_sym_var] = ACTIONS(27),
- [anon_sym_let] = ACTIONS(558),
- [anon_sym_const] = ACTIONS(31),
- [anon_sym_BANG] = ACTIONS(33),
- [anon_sym_if] = ACTIONS(560),
- [anon_sym_switch] = ACTIONS(37),
- [anon_sym_for] = ACTIONS(562),
- [anon_sym_LPAREN] = ACTIONS(41),
- [anon_sym_await] = ACTIONS(43),
- [anon_sym_while] = ACTIONS(564),
- [anon_sym_do] = ACTIONS(47),
- [anon_sym_try] = ACTIONS(49),
- [anon_sym_break] = ACTIONS(51),
- [anon_sym_continue] = ACTIONS(53),
- [anon_sym_debugger] = ACTIONS(55),
- [anon_sym_return] = ACTIONS(57),
- [anon_sym_throw] = ACTIONS(59),
- [anon_sym_SEMI] = ACTIONS(61),
- [anon_sym_yield] = ACTIONS(63),
- [anon_sym_LBRACK] = ACTIONS(65),
- [sym_glimmer_opening_tag] = ACTIONS(67),
- [anon_sym_DQUOTE] = ACTIONS(69),
- [anon_sym_SQUOTE] = ACTIONS(71),
- [anon_sym_class] = ACTIONS(566),
- [anon_sym_async] = ACTIONS(568),
- [anon_sym_function] = ACTIONS(570),
- [anon_sym_new] = ACTIONS(572),
- [anon_sym_using] = ACTIONS(81),
- [anon_sym_PLUS] = ACTIONS(21),
- [anon_sym_DASH] = ACTIONS(21),
- [anon_sym_SLASH] = ACTIONS(83),
- [anon_sym_LT] = ACTIONS(85),
- [anon_sym_TILDE] = ACTIONS(33),
- [anon_sym_void] = ACTIONS(21),
- [anon_sym_delete] = ACTIONS(21),
- [anon_sym_PLUS_PLUS] = ACTIONS(87),
- [anon_sym_DASH_DASH] = ACTIONS(87),
- [sym_comment] = ACTIONS(5),
- [anon_sym_BQUOTE] = ACTIONS(89),
- [sym_number] = ACTIONS(91),
- [sym_private_property_identifier] = ACTIONS(93),
- [sym_this] = ACTIONS(95),
- [sym_super] = ACTIONS(95),
- [sym_true] = ACTIONS(95),
- [sym_false] = ACTIONS(95),
- [sym_null] = ACTIONS(95),
- [sym_undefined] = ACTIONS(97),
- [anon_sym_AT] = ACTIONS(99),
- [anon_sym_static] = ACTIONS(574),
- [anon_sym_readonly] = ACTIONS(574),
- [anon_sym_get] = ACTIONS(574),
- [anon_sym_set] = ACTIONS(574),
- [anon_sym_declare] = ACTIONS(576),
- [anon_sym_public] = ACTIONS(574),
- [anon_sym_private] = ACTIONS(574),
- [anon_sym_protected] = ACTIONS(574),
- [anon_sym_override] = ACTIONS(574),
- [anon_sym_module] = ACTIONS(578),
- [anon_sym_any] = ACTIONS(574),
- [anon_sym_number] = ACTIONS(574),
- [anon_sym_boolean] = ACTIONS(574),
- [anon_sym_string] = ACTIONS(574),
- [anon_sym_symbol] = ACTIONS(574),
- [anon_sym_object] = ACTIONS(574),
- [anon_sym_abstract] = ACTIONS(107),
- [anon_sym_interface] = ACTIONS(109),
- [anon_sym_enum] = ACTIONS(111),
- [sym_html_comment] = ACTIONS(5),
- },
- [40] = {
- [sym_export_statement] = STATE(854),
- [sym_declaration] = STATE(854),
- [sym_import] = STATE(3306),
- [sym_import_statement] = STATE(854),
- [sym_statement] = STATE(787),
- [sym_expression_statement] = STATE(854),
- [sym_variable_declaration] = STATE(861),
- [sym_lexical_declaration] = STATE(861),
- [sym_statement_block] = STATE(854),
- [sym_if_statement] = STATE(854),
- [sym_switch_statement] = STATE(854),
- [sym_for_statement] = STATE(854),
- [sym_for_in_statement] = STATE(854),
- [sym_while_statement] = STATE(854),
- [sym_do_statement] = STATE(854),
- [sym_try_statement] = STATE(854),
- [sym_with_statement] = STATE(854),
- [sym_break_statement] = STATE(854),
- [sym_continue_statement] = STATE(854),
- [sym_debugger_statement] = STATE(854),
- [sym_return_statement] = STATE(854),
- [sym_throw_statement] = STATE(854),
- [sym_empty_statement] = STATE(854),
- [sym_labeled_statement] = STATE(854),
- [sym_parenthesized_expression] = STATE(1294),
- [sym_expression] = STATE(1705),
- [sym_primary_expression] = STATE(1946),
- [sym_yield_expression] = STATE(2234),
- [sym_object] = STATE(2310),
- [sym_object_pattern] = STATE(5667),
- [sym_array] = STATE(2310),
- [sym_array_pattern] = STATE(5667),
- [sym_glimmer_template] = STATE(2234),
- [sym_jsx_element] = STATE(2234),
- [sym_jsx_opening_element] = STATE(3051),
- [sym_jsx_self_closing_element] = STATE(2234),
- [sym_class] = STATE(2310),
- [sym_class_declaration] = STATE(861),
- [sym_function_expression] = STATE(2310),
- [sym_function_declaration] = STATE(861),
- [sym_generator_function] = STATE(2310),
- [sym_generator_function_declaration] = STATE(861),
- [sym_arrow_function] = STATE(2310),
- [sym__call_signature] = STATE(5809),
- [sym_call_expression] = STATE(2310),
- [sym_new_expression] = STATE(2234),
- [sym_await_expression] = STATE(2234),
- [sym_member_expression] = STATE(1294),
- [sym_subscript_expression] = STATE(1294),
- [sym_assignment_expression] = STATE(2234),
- [sym__augmented_assignment_lhs] = STATE(2875),
- [sym_augmented_assignment_expression] = STATE(2234),
- [sym__destructuring_pattern] = STATE(5667),
- [sym_ternary_expression] = STATE(2234),
- [sym_binary_expression] = STATE(2234),
- [sym_unary_expression] = STATE(2234),
- [sym_update_expression] = STATE(2234),
- [sym_sequence_expression] = STATE(5482),
- [sym_string] = STATE(2310),
- [sym_template_string] = STATE(2310),
- [sym_regex] = STATE(2310),
- [sym_meta_property] = STATE(2310),
- [sym_decorator] = STATE(1244),
- [sym_formal_parameters] = STATE(3742),
- [sym_non_null_expression] = STATE(1294),
- [sym_function_signature] = STATE(861),
- [sym_as_expression] = STATE(2234),
- [sym_satisfies_expression] = STATE(2234),
- [sym_instantiation_expression] = STATE(2234),
- [sym_ambient_declaration] = STATE(861),
- [sym_abstract_class_declaration] = STATE(861),
- [sym_module] = STATE(861),
- [sym_internal_module] = STATE(2332),
- [sym_import_alias] = STATE(861),
- [sym_interface_declaration] = STATE(861),
- [sym_enum_declaration] = STATE(861),
- [sym_type_alias_declaration] = STATE(861),
- [sym_type_parameters] = STATE(5349),
- [aux_sym_export_statement_repeat1] = STATE(3860),
- [sym_identifier] = ACTIONS(546),
- [anon_sym_export] = ACTIONS(548),
- [anon_sym_type] = ACTIONS(550),
- [anon_sym_namespace] = ACTIONS(552),
- [anon_sym_LBRACE] = ACTIONS(554),
- [anon_sym_typeof] = ACTIONS(21),
- [anon_sym_import] = ACTIONS(23),
- [anon_sym_with] = ACTIONS(556),
- [anon_sym_var] = ACTIONS(27),
- [anon_sym_let] = ACTIONS(558),
- [anon_sym_const] = ACTIONS(31),
- [anon_sym_BANG] = ACTIONS(33),
- [anon_sym_if] = ACTIONS(560),
- [anon_sym_switch] = ACTIONS(37),
- [anon_sym_for] = ACTIONS(562),
- [anon_sym_LPAREN] = ACTIONS(41),
- [anon_sym_await] = ACTIONS(43),
- [anon_sym_while] = ACTIONS(564),
- [anon_sym_do] = ACTIONS(47),
- [anon_sym_try] = ACTIONS(49),
- [anon_sym_break] = ACTIONS(51),
- [anon_sym_continue] = ACTIONS(53),
- [anon_sym_debugger] = ACTIONS(55),
- [anon_sym_return] = ACTIONS(57),
- [anon_sym_throw] = ACTIONS(59),
- [anon_sym_SEMI] = ACTIONS(61),
- [anon_sym_yield] = ACTIONS(63),
- [anon_sym_LBRACK] = ACTIONS(65),
- [sym_glimmer_opening_tag] = ACTIONS(67),
- [anon_sym_DQUOTE] = ACTIONS(69),
- [anon_sym_SQUOTE] = ACTIONS(71),
- [anon_sym_class] = ACTIONS(566),
- [anon_sym_async] = ACTIONS(568),
- [anon_sym_function] = ACTIONS(570),
- [anon_sym_new] = ACTIONS(572),
- [anon_sym_using] = ACTIONS(81),
- [anon_sym_PLUS] = ACTIONS(21),
- [anon_sym_DASH] = ACTIONS(21),
- [anon_sym_SLASH] = ACTIONS(83),
- [anon_sym_LT] = ACTIONS(85),
- [anon_sym_TILDE] = ACTIONS(33),
- [anon_sym_void] = ACTIONS(21),
- [anon_sym_delete] = ACTIONS(21),
- [anon_sym_PLUS_PLUS] = ACTIONS(87),
- [anon_sym_DASH_DASH] = ACTIONS(87),
- [sym_comment] = ACTIONS(5),
- [anon_sym_BQUOTE] = ACTIONS(89),
- [sym_number] = ACTIONS(91),
- [sym_private_property_identifier] = ACTIONS(93),
- [sym_this] = ACTIONS(95),
- [sym_super] = ACTIONS(95),
- [sym_true] = ACTIONS(95),
- [sym_false] = ACTIONS(95),
- [sym_null] = ACTIONS(95),
- [sym_undefined] = ACTIONS(97),
- [anon_sym_AT] = ACTIONS(99),
- [anon_sym_static] = ACTIONS(574),
- [anon_sym_readonly] = ACTIONS(574),
- [anon_sym_get] = ACTIONS(574),
- [anon_sym_set] = ACTIONS(574),
- [anon_sym_declare] = ACTIONS(576),
- [anon_sym_public] = ACTIONS(574),
- [anon_sym_private] = ACTIONS(574),
- [anon_sym_protected] = ACTIONS(574),
- [anon_sym_override] = ACTIONS(574),
- [anon_sym_module] = ACTIONS(578),
- [anon_sym_any] = ACTIONS(574),
- [anon_sym_number] = ACTIONS(574),
- [anon_sym_boolean] = ACTIONS(574),
- [anon_sym_string] = ACTIONS(574),
- [anon_sym_symbol] = ACTIONS(574),
- [anon_sym_object] = ACTIONS(574),
- [anon_sym_abstract] = ACTIONS(107),
- [anon_sym_interface] = ACTIONS(109),
- [anon_sym_enum] = ACTIONS(111),
- [sym_html_comment] = ACTIONS(5),
- },
- [41] = {
- [sym_export_statement] = STATE(854),
- [sym_declaration] = STATE(854),
- [sym_import] = STATE(3306),
- [sym_import_statement] = STATE(854),
- [sym_statement] = STATE(4751),
- [sym_expression_statement] = STATE(854),
- [sym_variable_declaration] = STATE(861),
- [sym_lexical_declaration] = STATE(861),
- [sym_statement_block] = STATE(854),
- [sym_if_statement] = STATE(854),
- [sym_switch_statement] = STATE(854),
- [sym_for_statement] = STATE(854),
- [sym_for_in_statement] = STATE(854),
- [sym_while_statement] = STATE(854),
- [sym_do_statement] = STATE(854),
- [sym_try_statement] = STATE(854),
- [sym_with_statement] = STATE(854),
- [sym_break_statement] = STATE(854),
- [sym_continue_statement] = STATE(854),
- [sym_debugger_statement] = STATE(854),
- [sym_return_statement] = STATE(854),
- [sym_throw_statement] = STATE(854),
- [sym_empty_statement] = STATE(854),
- [sym_labeled_statement] = STATE(854),
- [sym_parenthesized_expression] = STATE(1294),
- [sym_expression] = STATE(1705),
- [sym_primary_expression] = STATE(1946),
- [sym_yield_expression] = STATE(2234),
- [sym_object] = STATE(2310),
- [sym_object_pattern] = STATE(5667),
- [sym_array] = STATE(2310),
- [sym_array_pattern] = STATE(5667),
- [sym_glimmer_template] = STATE(2234),
- [sym_jsx_element] = STATE(2234),
- [sym_jsx_opening_element] = STATE(3051),
- [sym_jsx_self_closing_element] = STATE(2234),
- [sym_class] = STATE(2310),
- [sym_class_declaration] = STATE(861),
- [sym_function_expression] = STATE(2310),
- [sym_function_declaration] = STATE(861),
- [sym_generator_function] = STATE(2310),
- [sym_generator_function_declaration] = STATE(861),
- [sym_arrow_function] = STATE(2310),
- [sym__call_signature] = STATE(5809),
- [sym_call_expression] = STATE(2310),
- [sym_new_expression] = STATE(2234),
- [sym_await_expression] = STATE(2234),
- [sym_member_expression] = STATE(1294),
- [sym_subscript_expression] = STATE(1294),
- [sym_assignment_expression] = STATE(2234),
- [sym__augmented_assignment_lhs] = STATE(2875),
- [sym_augmented_assignment_expression] = STATE(2234),
- [sym__destructuring_pattern] = STATE(5667),
- [sym_ternary_expression] = STATE(2234),
- [sym_binary_expression] = STATE(2234),
- [sym_unary_expression] = STATE(2234),
- [sym_update_expression] = STATE(2234),
- [sym_sequence_expression] = STATE(5482),
- [sym_string] = STATE(2310),
- [sym_template_string] = STATE(2310),
- [sym_regex] = STATE(2310),
- [sym_meta_property] = STATE(2310),
- [sym_decorator] = STATE(1244),
- [sym_formal_parameters] = STATE(3742),
- [sym_non_null_expression] = STATE(1294),
- [sym_function_signature] = STATE(861),
- [sym_as_expression] = STATE(2234),
- [sym_satisfies_expression] = STATE(2234),
- [sym_instantiation_expression] = STATE(2234),
- [sym_ambient_declaration] = STATE(861),
- [sym_abstract_class_declaration] = STATE(861),
- [sym_module] = STATE(861),
- [sym_internal_module] = STATE(2332),
- [sym_import_alias] = STATE(861),
- [sym_interface_declaration] = STATE(861),
- [sym_enum_declaration] = STATE(861),
- [sym_type_alias_declaration] = STATE(861),
- [sym_type_parameters] = STATE(5349),
- [aux_sym_export_statement_repeat1] = STATE(3863),
- [sym_identifier] = ACTIONS(580),
- [anon_sym_export] = ACTIONS(582),
- [anon_sym_type] = ACTIONS(584),
- [anon_sym_namespace] = ACTIONS(586),
- [anon_sym_LBRACE] = ACTIONS(554),
- [anon_sym_typeof] = ACTIONS(21),
- [anon_sym_import] = ACTIONS(23),
- [anon_sym_with] = ACTIONS(588),
- [anon_sym_var] = ACTIONS(27),
- [anon_sym_let] = ACTIONS(590),
- [anon_sym_const] = ACTIONS(31),
- [anon_sym_BANG] = ACTIONS(33),
- [anon_sym_if] = ACTIONS(592),
- [anon_sym_switch] = ACTIONS(37),
- [anon_sym_for] = ACTIONS(594),
- [anon_sym_LPAREN] = ACTIONS(41),
- [anon_sym_await] = ACTIONS(43),
- [anon_sym_while] = ACTIONS(596),
- [anon_sym_do] = ACTIONS(47),
- [anon_sym_try] = ACTIONS(49),
- [anon_sym_break] = ACTIONS(51),
- [anon_sym_continue] = ACTIONS(53),
- [anon_sym_debugger] = ACTIONS(55),
- [anon_sym_return] = ACTIONS(57),
- [anon_sym_throw] = ACTIONS(59),
- [anon_sym_SEMI] = ACTIONS(61),
- [anon_sym_yield] = ACTIONS(63),
- [anon_sym_LBRACK] = ACTIONS(65),
- [sym_glimmer_opening_tag] = ACTIONS(67),
- [anon_sym_DQUOTE] = ACTIONS(69),
- [anon_sym_SQUOTE] = ACTIONS(71),
- [anon_sym_class] = ACTIONS(566),
- [anon_sym_async] = ACTIONS(598),
- [anon_sym_function] = ACTIONS(570),
- [anon_sym_new] = ACTIONS(600),
- [anon_sym_using] = ACTIONS(81),
- [anon_sym_PLUS] = ACTIONS(21),
- [anon_sym_DASH] = ACTIONS(21),
- [anon_sym_SLASH] = ACTIONS(83),
- [anon_sym_LT] = ACTIONS(85),
- [anon_sym_TILDE] = ACTIONS(33),
- [anon_sym_void] = ACTIONS(21),
- [anon_sym_delete] = ACTIONS(21),
- [anon_sym_PLUS_PLUS] = ACTIONS(87),
- [anon_sym_DASH_DASH] = ACTIONS(87),
- [sym_comment] = ACTIONS(5),
- [anon_sym_BQUOTE] = ACTIONS(89),
- [sym_number] = ACTIONS(91),
- [sym_private_property_identifier] = ACTIONS(93),
- [sym_this] = ACTIONS(95),
- [sym_super] = ACTIONS(95),
- [sym_true] = ACTIONS(95),
- [sym_false] = ACTIONS(95),
- [sym_null] = ACTIONS(95),
- [sym_undefined] = ACTIONS(97),
- [anon_sym_AT] = ACTIONS(99),
- [anon_sym_static] = ACTIONS(602),
- [anon_sym_readonly] = ACTIONS(602),
- [anon_sym_get] = ACTIONS(602),
- [anon_sym_set] = ACTIONS(602),
- [anon_sym_declare] = ACTIONS(604),
- [anon_sym_public] = ACTIONS(602),
- [anon_sym_private] = ACTIONS(602),
- [anon_sym_protected] = ACTIONS(602),
- [anon_sym_override] = ACTIONS(602),
- [anon_sym_module] = ACTIONS(606),
- [anon_sym_any] = ACTIONS(602),
- [anon_sym_number] = ACTIONS(602),
- [anon_sym_boolean] = ACTIONS(602),
- [anon_sym_string] = ACTIONS(602),
- [anon_sym_symbol] = ACTIONS(602),
- [anon_sym_object] = ACTIONS(602),
- [anon_sym_abstract] = ACTIONS(107),
- [anon_sym_interface] = ACTIONS(109),
- [anon_sym_enum] = ACTIONS(111),
- [sym_html_comment] = ACTIONS(5),
- },
- [42] = {
- [sym_export_statement] = STATE(854),
- [sym_declaration] = STATE(854),
- [sym_import] = STATE(3306),
- [sym_import_statement] = STATE(854),
- [sym_statement] = STATE(823),
- [sym_expression_statement] = STATE(854),
- [sym_variable_declaration] = STATE(861),
- [sym_lexical_declaration] = STATE(861),
- [sym_statement_block] = STATE(854),
- [sym_if_statement] = STATE(854),
- [sym_switch_statement] = STATE(854),
- [sym_for_statement] = STATE(854),
- [sym_for_in_statement] = STATE(854),
- [sym_while_statement] = STATE(854),
- [sym_do_statement] = STATE(854),
- [sym_try_statement] = STATE(854),
- [sym_with_statement] = STATE(854),
- [sym_break_statement] = STATE(854),
- [sym_continue_statement] = STATE(854),
- [sym_debugger_statement] = STATE(854),
- [sym_return_statement] = STATE(854),
- [sym_throw_statement] = STATE(854),
- [sym_empty_statement] = STATE(854),
- [sym_labeled_statement] = STATE(854),
- [sym_parenthesized_expression] = STATE(1294),
- [sym_expression] = STATE(1705),
- [sym_primary_expression] = STATE(1946),
- [sym_yield_expression] = STATE(2234),
- [sym_object] = STATE(2310),
- [sym_object_pattern] = STATE(5667),
- [sym_array] = STATE(2310),
- [sym_array_pattern] = STATE(5667),
- [sym_glimmer_template] = STATE(2234),
- [sym_jsx_element] = STATE(2234),
- [sym_jsx_opening_element] = STATE(3051),
- [sym_jsx_self_closing_element] = STATE(2234),
- [sym_class] = STATE(2310),
- [sym_class_declaration] = STATE(861),
- [sym_function_expression] = STATE(2310),
- [sym_function_declaration] = STATE(861),
- [sym_generator_function] = STATE(2310),
- [sym_generator_function_declaration] = STATE(861),
- [sym_arrow_function] = STATE(2310),
- [sym__call_signature] = STATE(5809),
- [sym_call_expression] = STATE(2310),
- [sym_new_expression] = STATE(2234),
- [sym_await_expression] = STATE(2234),
- [sym_member_expression] = STATE(1294),
- [sym_subscript_expression] = STATE(1294),
- [sym_assignment_expression] = STATE(2234),
- [sym__augmented_assignment_lhs] = STATE(2875),
- [sym_augmented_assignment_expression] = STATE(2234),
- [sym__destructuring_pattern] = STATE(5667),
- [sym_ternary_expression] = STATE(2234),
- [sym_binary_expression] = STATE(2234),
- [sym_unary_expression] = STATE(2234),
- [sym_update_expression] = STATE(2234),
- [sym_sequence_expression] = STATE(5482),
- [sym_string] = STATE(2310),
- [sym_template_string] = STATE(2310),
- [sym_regex] = STATE(2310),
- [sym_meta_property] = STATE(2310),
- [sym_decorator] = STATE(1244),
- [sym_formal_parameters] = STATE(3742),
- [sym_non_null_expression] = STATE(1294),
- [sym_function_signature] = STATE(861),
- [sym_as_expression] = STATE(2234),
- [sym_satisfies_expression] = STATE(2234),
- [sym_instantiation_expression] = STATE(2234),
- [sym_ambient_declaration] = STATE(861),
- [sym_abstract_class_declaration] = STATE(861),
- [sym_module] = STATE(861),
- [sym_internal_module] = STATE(2332),
- [sym_import_alias] = STATE(861),
- [sym_interface_declaration] = STATE(861),
- [sym_enum_declaration] = STATE(861),
- [sym_type_alias_declaration] = STATE(861),
- [sym_type_parameters] = STATE(5349),
- [aux_sym_export_statement_repeat1] = STATE(3860),
- [sym_identifier] = ACTIONS(546),
- [anon_sym_export] = ACTIONS(548),
- [anon_sym_type] = ACTIONS(550),
- [anon_sym_namespace] = ACTIONS(552),
- [anon_sym_LBRACE] = ACTIONS(554),
- [anon_sym_typeof] = ACTIONS(21),
- [anon_sym_import] = ACTIONS(23),
- [anon_sym_with] = ACTIONS(556),
- [anon_sym_var] = ACTIONS(27),
- [anon_sym_let] = ACTIONS(558),
- [anon_sym_const] = ACTIONS(31),
- [anon_sym_BANG] = ACTIONS(33),
- [anon_sym_if] = ACTIONS(560),
- [anon_sym_switch] = ACTIONS(37),
- [anon_sym_for] = ACTIONS(562),
- [anon_sym_LPAREN] = ACTIONS(41),
- [anon_sym_await] = ACTIONS(43),
- [anon_sym_while] = ACTIONS(564),
- [anon_sym_do] = ACTIONS(47),
- [anon_sym_try] = ACTIONS(49),
- [anon_sym_break] = ACTIONS(51),
- [anon_sym_continue] = ACTIONS(53),
- [anon_sym_debugger] = ACTIONS(55),
- [anon_sym_return] = ACTIONS(57),
- [anon_sym_throw] = ACTIONS(59),
- [anon_sym_SEMI] = ACTIONS(61),
- [anon_sym_yield] = ACTIONS(63),
- [anon_sym_LBRACK] = ACTIONS(65),
- [sym_glimmer_opening_tag] = ACTIONS(67),
- [anon_sym_DQUOTE] = ACTIONS(69),
- [anon_sym_SQUOTE] = ACTIONS(71),
- [anon_sym_class] = ACTIONS(566),
- [anon_sym_async] = ACTIONS(568),
- [anon_sym_function] = ACTIONS(570),
- [anon_sym_new] = ACTIONS(572),
- [anon_sym_using] = ACTIONS(81),
- [anon_sym_PLUS] = ACTIONS(21),
- [anon_sym_DASH] = ACTIONS(21),
- [anon_sym_SLASH] = ACTIONS(83),
- [anon_sym_LT] = ACTIONS(85),
- [anon_sym_TILDE] = ACTIONS(33),
- [anon_sym_void] = ACTIONS(21),
- [anon_sym_delete] = ACTIONS(21),
- [anon_sym_PLUS_PLUS] = ACTIONS(87),
- [anon_sym_DASH_DASH] = ACTIONS(87),
- [sym_comment] = ACTIONS(5),
- [anon_sym_BQUOTE] = ACTIONS(89),
- [sym_number] = ACTIONS(91),
- [sym_private_property_identifier] = ACTIONS(93),
- [sym_this] = ACTIONS(95),
- [sym_super] = ACTIONS(95),
- [sym_true] = ACTIONS(95),
- [sym_false] = ACTIONS(95),
- [sym_null] = ACTIONS(95),
- [sym_undefined] = ACTIONS(97),
- [anon_sym_AT] = ACTIONS(99),
- [anon_sym_static] = ACTIONS(574),
- [anon_sym_readonly] = ACTIONS(574),
- [anon_sym_get] = ACTIONS(574),
- [anon_sym_set] = ACTIONS(574),
- [anon_sym_declare] = ACTIONS(576),
- [anon_sym_public] = ACTIONS(574),
- [anon_sym_private] = ACTIONS(574),
- [anon_sym_protected] = ACTIONS(574),
- [anon_sym_override] = ACTIONS(574),
- [anon_sym_module] = ACTIONS(578),
- [anon_sym_any] = ACTIONS(574),
- [anon_sym_number] = ACTIONS(574),
- [anon_sym_boolean] = ACTIONS(574),
- [anon_sym_string] = ACTIONS(574),
- [anon_sym_symbol] = ACTIONS(574),
- [anon_sym_object] = ACTIONS(574),
- [anon_sym_abstract] = ACTIONS(107),
- [anon_sym_interface] = ACTIONS(109),
- [anon_sym_enum] = ACTIONS(111),
- [sym_html_comment] = ACTIONS(5),
- },
- [43] = {
- [sym_export_statement] = STATE(854),
- [sym_declaration] = STATE(854),
- [sym_import] = STATE(3306),
- [sym_import_statement] = STATE(854),
- [sym_statement] = STATE(768),
- [sym_expression_statement] = STATE(854),
- [sym_variable_declaration] = STATE(861),
- [sym_lexical_declaration] = STATE(861),
- [sym_statement_block] = STATE(854),
- [sym_if_statement] = STATE(854),
- [sym_switch_statement] = STATE(854),
- [sym_for_statement] = STATE(854),
- [sym_for_in_statement] = STATE(854),
- [sym_while_statement] = STATE(854),
- [sym_do_statement] = STATE(854),
- [sym_try_statement] = STATE(854),
- [sym_with_statement] = STATE(854),
- [sym_break_statement] = STATE(854),
- [sym_continue_statement] = STATE(854),
- [sym_debugger_statement] = STATE(854),
- [sym_return_statement] = STATE(854),
- [sym_throw_statement] = STATE(854),
- [sym_empty_statement] = STATE(854),
- [sym_labeled_statement] = STATE(854),
- [sym_parenthesized_expression] = STATE(1294),
- [sym_expression] = STATE(1705),
- [sym_primary_expression] = STATE(1946),
- [sym_yield_expression] = STATE(2234),
- [sym_object] = STATE(2310),
- [sym_object_pattern] = STATE(5667),
- [sym_array] = STATE(2310),
- [sym_array_pattern] = STATE(5667),
- [sym_glimmer_template] = STATE(2234),
- [sym_jsx_element] = STATE(2234),
- [sym_jsx_opening_element] = STATE(3051),
- [sym_jsx_self_closing_element] = STATE(2234),
- [sym_class] = STATE(2310),
- [sym_class_declaration] = STATE(861),
- [sym_function_expression] = STATE(2310),
- [sym_function_declaration] = STATE(861),
- [sym_generator_function] = STATE(2310),
- [sym_generator_function_declaration] = STATE(861),
- [sym_arrow_function] = STATE(2310),
- [sym__call_signature] = STATE(5809),
- [sym_call_expression] = STATE(2310),
- [sym_new_expression] = STATE(2234),
- [sym_await_expression] = STATE(2234),
- [sym_member_expression] = STATE(1294),
- [sym_subscript_expression] = STATE(1294),
- [sym_assignment_expression] = STATE(2234),
- [sym__augmented_assignment_lhs] = STATE(2875),
- [sym_augmented_assignment_expression] = STATE(2234),
- [sym__destructuring_pattern] = STATE(5667),
- [sym_ternary_expression] = STATE(2234),
- [sym_binary_expression] = STATE(2234),
- [sym_unary_expression] = STATE(2234),
- [sym_update_expression] = STATE(2234),
- [sym_sequence_expression] = STATE(5482),
- [sym_string] = STATE(2310),
- [sym_template_string] = STATE(2310),
- [sym_regex] = STATE(2310),
- [sym_meta_property] = STATE(2310),
- [sym_decorator] = STATE(1244),
- [sym_formal_parameters] = STATE(3742),
- [sym_non_null_expression] = STATE(1294),
- [sym_function_signature] = STATE(861),
- [sym_as_expression] = STATE(2234),
- [sym_satisfies_expression] = STATE(2234),
- [sym_instantiation_expression] = STATE(2234),
- [sym_ambient_declaration] = STATE(861),
- [sym_abstract_class_declaration] = STATE(861),
- [sym_module] = STATE(861),
- [sym_internal_module] = STATE(2332),
- [sym_import_alias] = STATE(861),
- [sym_interface_declaration] = STATE(861),
- [sym_enum_declaration] = STATE(861),
- [sym_type_alias_declaration] = STATE(861),
- [sym_type_parameters] = STATE(5349),
- [aux_sym_export_statement_repeat1] = STATE(3860),
- [sym_identifier] = ACTIONS(546),
- [anon_sym_export] = ACTIONS(548),
- [anon_sym_type] = ACTIONS(550),
- [anon_sym_namespace] = ACTIONS(552),
- [anon_sym_LBRACE] = ACTIONS(554),
- [anon_sym_typeof] = ACTIONS(21),
- [anon_sym_import] = ACTIONS(23),
- [anon_sym_with] = ACTIONS(556),
- [anon_sym_var] = ACTIONS(27),
- [anon_sym_let] = ACTIONS(558),
- [anon_sym_const] = ACTIONS(31),
- [anon_sym_BANG] = ACTIONS(33),
- [anon_sym_if] = ACTIONS(560),
- [anon_sym_switch] = ACTIONS(37),
- [anon_sym_for] = ACTIONS(562),
- [anon_sym_LPAREN] = ACTIONS(41),
- [anon_sym_await] = ACTIONS(43),
- [anon_sym_while] = ACTIONS(564),
- [anon_sym_do] = ACTIONS(47),
- [anon_sym_try] = ACTIONS(49),
- [anon_sym_break] = ACTIONS(51),
- [anon_sym_continue] = ACTIONS(53),
- [anon_sym_debugger] = ACTIONS(55),
- [anon_sym_return] = ACTIONS(57),
- [anon_sym_throw] = ACTIONS(59),
- [anon_sym_SEMI] = ACTIONS(61),
- [anon_sym_yield] = ACTIONS(63),
- [anon_sym_LBRACK] = ACTIONS(65),
- [sym_glimmer_opening_tag] = ACTIONS(67),
- [anon_sym_DQUOTE] = ACTIONS(69),
- [anon_sym_SQUOTE] = ACTIONS(71),
- [anon_sym_class] = ACTIONS(566),
- [anon_sym_async] = ACTIONS(568),
- [anon_sym_function] = ACTIONS(570),
- [anon_sym_new] = ACTIONS(572),
- [anon_sym_using] = ACTIONS(81),
- [anon_sym_PLUS] = ACTIONS(21),
- [anon_sym_DASH] = ACTIONS(21),
- [anon_sym_SLASH] = ACTIONS(83),
- [anon_sym_LT] = ACTIONS(85),
- [anon_sym_TILDE] = ACTIONS(33),
- [anon_sym_void] = ACTIONS(21),
- [anon_sym_delete] = ACTIONS(21),
- [anon_sym_PLUS_PLUS] = ACTIONS(87),
- [anon_sym_DASH_DASH] = ACTIONS(87),
- [sym_comment] = ACTIONS(5),
- [anon_sym_BQUOTE] = ACTIONS(89),
- [sym_number] = ACTIONS(91),
- [sym_private_property_identifier] = ACTIONS(93),
- [sym_this] = ACTIONS(95),
- [sym_super] = ACTIONS(95),
- [sym_true] = ACTIONS(95),
- [sym_false] = ACTIONS(95),
- [sym_null] = ACTIONS(95),
- [sym_undefined] = ACTIONS(97),
- [anon_sym_AT] = ACTIONS(99),
- [anon_sym_static] = ACTIONS(574),
- [anon_sym_readonly] = ACTIONS(574),
- [anon_sym_get] = ACTIONS(574),
- [anon_sym_set] = ACTIONS(574),
- [anon_sym_declare] = ACTIONS(576),
- [anon_sym_public] = ACTIONS(574),
- [anon_sym_private] = ACTIONS(574),
- [anon_sym_protected] = ACTIONS(574),
- [anon_sym_override] = ACTIONS(574),
- [anon_sym_module] = ACTIONS(578),
- [anon_sym_any] = ACTIONS(574),
- [anon_sym_number] = ACTIONS(574),
- [anon_sym_boolean] = ACTIONS(574),
- [anon_sym_string] = ACTIONS(574),
- [anon_sym_symbol] = ACTIONS(574),
- [anon_sym_object] = ACTIONS(574),
- [anon_sym_abstract] = ACTIONS(107),
- [anon_sym_interface] = ACTIONS(109),
- [anon_sym_enum] = ACTIONS(111),
- [sym_html_comment] = ACTIONS(5),
- },
- [44] = {
- [sym_import] = STATE(3318),
- [sym_parenthesized_expression] = STATE(1251),
- [sym_expression] = STATE(1829),
- [sym_primary_expression] = STATE(1468),
- [sym_yield_expression] = STATE(1634),
- [sym_object] = STATE(1650),
- [sym_object_pattern] = STATE(3610),
- [sym_assignment_pattern] = STATE(5148),
- [sym_array] = STATE(1650),
- [sym_array_pattern] = STATE(3610),
- [sym_glimmer_template] = STATE(1634),
- [sym_jsx_element] = STATE(1634),
- [sym_jsx_opening_element] = STATE(3026),
- [sym_nested_identifier] = STATE(5707),
- [sym_jsx_self_closing_element] = STATE(1634),
- [sym_class] = STATE(1650),
- [sym_function_expression] = STATE(1650),
- [sym_generator_function] = STATE(1650),
- [sym_arrow_function] = STATE(1650),
- [sym__call_signature] = STATE(5828),
- [sym_call_expression] = STATE(1650),
- [sym_new_expression] = STATE(1634),
- [sym_await_expression] = STATE(1634),
- [sym_member_expression] = STATE(1230),
- [sym_subscript_expression] = STATE(1230),
- [sym_assignment_expression] = STATE(1634),
- [sym__augmented_assignment_lhs] = STATE(2900),
- [sym_augmented_assignment_expression] = STATE(1634),
- [sym__destructuring_pattern] = STATE(3610),
- [sym_spread_element] = STATE(4907),
- [sym_ternary_expression] = STATE(1634),
- [sym_binary_expression] = STATE(1634),
- [sym_unary_expression] = STATE(1634),
- [sym_update_expression] = STATE(1634),
- [sym_string] = STATE(2271),
- [sym_template_string] = STATE(1650),
- [sym_regex] = STATE(1650),
- [sym_meta_property] = STATE(1650),
- [sym_decorator] = STATE(1244),
- [sym_formal_parameters] = STATE(4344),
- [sym_pattern] = STATE(4544),
- [sym_rest_pattern] = STATE(4039),
- [sym_non_null_expression] = STATE(1230),
- [sym_as_expression] = STATE(1634),
- [sym_satisfies_expression] = STATE(1634),
- [sym_instantiation_expression] = STATE(1634),
- [sym_internal_module] = STATE(1634),
- [sym_nested_type_identifier] = STATE(2828),
- [sym__type_query_member_expression_in_type_annotation] = STATE(3228),
- [sym__type_query_call_expression_in_type_annotation] = STATE(2850),
- [sym_type] = STATE(3859),
- [sym_tuple_parameter] = STATE(5049),
- [sym_optional_tuple_parameter] = STATE(5049),
- [sym_optional_type] = STATE(5049),
- [sym_rest_type] = STATE(5049),
- [sym__tuple_type_member] = STATE(5049),
- [sym_constructor_type] = STATE(2896),
- [sym_primary_type] = STATE(2897),
- [sym_template_literal_type] = STATE(2885),
- [sym_infer_type] = STATE(2896),
- [sym_conditional_type] = STATE(2885),
- [sym_generic_type] = STATE(2885),
- [sym_type_query] = STATE(2885),
- [sym_index_type_query] = STATE(2885),
- [sym_lookup_type] = STATE(2885),
- [sym_literal_type] = STATE(2885),
- [sym__number] = STATE(2903),
- [sym_existential_type] = STATE(2885),
- [sym_flow_maybe_type] = STATE(2885),
- [sym_parenthesized_type] = STATE(2885),
- [sym_predefined_type] = STATE(2885),
- [sym_object_type] = STATE(2885),
- [sym_type_parameters] = STATE(5518),
- [sym_array_type] = STATE(2885),
- [sym_tuple_type] = STATE(2885),
- [sym_readonly_type] = STATE(2896),
- [sym_union_type] = STATE(2885),
- [sym_intersection_type] = STATE(2885),
- [sym_function_type] = STATE(2896),
- [aux_sym_export_statement_repeat1] = STATE(4458),
- [aux_sym_array_repeat1] = STATE(4912),
- [aux_sym_array_pattern_repeat1] = STATE(5165),
- [sym_identifier] = ACTIONS(608),
- [anon_sym_export] = ACTIONS(610),
- [anon_sym_STAR] = ACTIONS(612),
- [anon_sym_type] = ACTIONS(610),
- [anon_sym_namespace] = ACTIONS(614),
- [anon_sym_LBRACE] = ACTIONS(616),
- [anon_sym_COMMA] = ACTIONS(618),
- [anon_sym_typeof] = ACTIONS(620),
- [anon_sym_import] = ACTIONS(133),
- [anon_sym_let] = ACTIONS(610),
- [anon_sym_const] = ACTIONS(135),
- [anon_sym_BANG] = ACTIONS(622),
- [anon_sym_LPAREN] = ACTIONS(140),
- [anon_sym_await] = ACTIONS(624),
- [anon_sym_yield] = ACTIONS(626),
- [anon_sym_LBRACK] = ACTIONS(628),
- [anon_sym_RBRACK] = ACTIONS(630),
- [sym_glimmer_opening_tag] = ACTIONS(148),
- [anon_sym_DQUOTE] = ACTIONS(150),
- [anon_sym_SQUOTE] = ACTIONS(152),
- [anon_sym_class] = ACTIONS(154),
- [anon_sym_async] = ACTIONS(632),
- [anon_sym_function] = ACTIONS(158),
- [anon_sym_new] = ACTIONS(634),
- [anon_sym_using] = ACTIONS(636),
- [anon_sym_DOT_DOT_DOT] = ACTIONS(638),
- [anon_sym_AMP] = ACTIONS(640),
- [anon_sym_PIPE] = ACTIONS(642),
- [anon_sym_PLUS] = ACTIONS(644),
- [anon_sym_DASH] = ACTIONS(644),
- [anon_sym_SLASH] = ACTIONS(646),
- [anon_sym_LT] = ACTIONS(181),
- [anon_sym_TILDE] = ACTIONS(622),
- [anon_sym_void] = ACTIONS(648),
- [anon_sym_delete] = ACTIONS(650),
- [anon_sym_PLUS_PLUS] = ACTIONS(652),
- [anon_sym_DASH_DASH] = ACTIONS(652),
- [sym_comment] = ACTIONS(5),
- [anon_sym_BQUOTE] = ACTIONS(192),
- [sym_number] = ACTIONS(194),
- [sym_private_property_identifier] = ACTIONS(654),
- [sym_this] = ACTIONS(656),
- [sym_super] = ACTIONS(200),
- [sym_true] = ACTIONS(202),
- [sym_false] = ACTIONS(202),
- [sym_null] = ACTIONS(202),
- [sym_undefined] = ACTIONS(658),
- [anon_sym_AT] = ACTIONS(99),
- [anon_sym_static] = ACTIONS(610),
- [anon_sym_readonly] = ACTIONS(660),
- [anon_sym_get] = ACTIONS(610),
- [anon_sym_set] = ACTIONS(610),
- [anon_sym_QMARK] = ACTIONS(662),
- [anon_sym_declare] = ACTIONS(610),
- [anon_sym_public] = ACTIONS(610),
- [anon_sym_private] = ACTIONS(610),
- [anon_sym_protected] = ACTIONS(610),
- [anon_sym_override] = ACTIONS(610),
- [anon_sym_module] = ACTIONS(610),
- [anon_sym_any] = ACTIONS(664),
- [anon_sym_number] = ACTIONS(664),
- [anon_sym_boolean] = ACTIONS(664),
- [anon_sym_string] = ACTIONS(664),
- [anon_sym_symbol] = ACTIONS(664),
- [anon_sym_object] = ACTIONS(664),
- [anon_sym_abstract] = ACTIONS(666),
- [anon_sym_infer] = ACTIONS(668),
- [anon_sym_keyof] = ACTIONS(670),
- [anon_sym_unique] = ACTIONS(218),
- [anon_sym_unknown] = ACTIONS(220),
- [anon_sym_never] = ACTIONS(220),
- [anon_sym_LBRACE_PIPE] = ACTIONS(222),
- [sym_html_comment] = ACTIONS(5),
- },
- [45] = {
- [sym_export_statement] = STATE(854),
- [sym_declaration] = STATE(854),
- [sym_import] = STATE(3306),
- [sym_import_statement] = STATE(854),
- [sym_statement] = STATE(804),
- [sym_expression_statement] = STATE(854),
- [sym_variable_declaration] = STATE(861),
- [sym_lexical_declaration] = STATE(861),
- [sym_statement_block] = STATE(854),
- [sym_if_statement] = STATE(854),
- [sym_switch_statement] = STATE(854),
- [sym_for_statement] = STATE(854),
- [sym_for_in_statement] = STATE(854),
- [sym_while_statement] = STATE(854),
- [sym_do_statement] = STATE(854),
- [sym_try_statement] = STATE(854),
- [sym_with_statement] = STATE(854),
- [sym_break_statement] = STATE(854),
- [sym_continue_statement] = STATE(854),
- [sym_debugger_statement] = STATE(854),
- [sym_return_statement] = STATE(854),
- [sym_throw_statement] = STATE(854),
- [sym_empty_statement] = STATE(854),
- [sym_labeled_statement] = STATE(854),
- [sym_parenthesized_expression] = STATE(1294),
- [sym_expression] = STATE(1705),
- [sym_primary_expression] = STATE(1946),
- [sym_yield_expression] = STATE(2234),
- [sym_object] = STATE(2310),
- [sym_object_pattern] = STATE(5667),
- [sym_array] = STATE(2310),
- [sym_array_pattern] = STATE(5667),
- [sym_glimmer_template] = STATE(2234),
- [sym_jsx_element] = STATE(2234),
- [sym_jsx_opening_element] = STATE(3051),
- [sym_jsx_self_closing_element] = STATE(2234),
- [sym_class] = STATE(2310),
- [sym_class_declaration] = STATE(861),
- [sym_function_expression] = STATE(2310),
- [sym_function_declaration] = STATE(861),
- [sym_generator_function] = STATE(2310),
- [sym_generator_function_declaration] = STATE(861),
- [sym_arrow_function] = STATE(2310),
- [sym__call_signature] = STATE(5809),
- [sym_call_expression] = STATE(2310),
- [sym_new_expression] = STATE(2234),
- [sym_await_expression] = STATE(2234),
- [sym_member_expression] = STATE(1294),
- [sym_subscript_expression] = STATE(1294),
- [sym_assignment_expression] = STATE(2234),
- [sym__augmented_assignment_lhs] = STATE(2875),
- [sym_augmented_assignment_expression] = STATE(2234),
- [sym__destructuring_pattern] = STATE(5667),
- [sym_ternary_expression] = STATE(2234),
- [sym_binary_expression] = STATE(2234),
- [sym_unary_expression] = STATE(2234),
- [sym_update_expression] = STATE(2234),
- [sym_sequence_expression] = STATE(5482),
- [sym_string] = STATE(2310),
- [sym_template_string] = STATE(2310),
- [sym_regex] = STATE(2310),
- [sym_meta_property] = STATE(2310),
- [sym_decorator] = STATE(1244),
- [sym_formal_parameters] = STATE(3742),
- [sym_non_null_expression] = STATE(1294),
- [sym_function_signature] = STATE(861),
- [sym_as_expression] = STATE(2234),
- [sym_satisfies_expression] = STATE(2234),
- [sym_instantiation_expression] = STATE(2234),
- [sym_ambient_declaration] = STATE(861),
- [sym_abstract_class_declaration] = STATE(861),
- [sym_module] = STATE(861),
- [sym_internal_module] = STATE(2332),
- [sym_import_alias] = STATE(861),
- [sym_interface_declaration] = STATE(861),
- [sym_enum_declaration] = STATE(861),
- [sym_type_alias_declaration] = STATE(861),
- [sym_type_parameters] = STATE(5349),
- [aux_sym_export_statement_repeat1] = STATE(3860),
- [sym_identifier] = ACTIONS(546),
- [anon_sym_export] = ACTIONS(548),
- [anon_sym_type] = ACTIONS(550),
- [anon_sym_namespace] = ACTIONS(552),
- [anon_sym_LBRACE] = ACTIONS(554),
- [anon_sym_typeof] = ACTIONS(21),
- [anon_sym_import] = ACTIONS(23),
- [anon_sym_with] = ACTIONS(556),
- [anon_sym_var] = ACTIONS(27),
- [anon_sym_let] = ACTIONS(558),
- [anon_sym_const] = ACTIONS(31),
- [anon_sym_BANG] = ACTIONS(33),
- [anon_sym_if] = ACTIONS(560),
- [anon_sym_switch] = ACTIONS(37),
- [anon_sym_for] = ACTIONS(562),
- [anon_sym_LPAREN] = ACTIONS(41),
- [anon_sym_await] = ACTIONS(43),
- [anon_sym_while] = ACTIONS(564),
- [anon_sym_do] = ACTIONS(47),
- [anon_sym_try] = ACTIONS(49),
- [anon_sym_break] = ACTIONS(51),
- [anon_sym_continue] = ACTIONS(53),
- [anon_sym_debugger] = ACTIONS(55),
- [anon_sym_return] = ACTIONS(57),
- [anon_sym_throw] = ACTIONS(59),
- [anon_sym_SEMI] = ACTIONS(61),
- [anon_sym_yield] = ACTIONS(63),
- [anon_sym_LBRACK] = ACTIONS(65),
- [sym_glimmer_opening_tag] = ACTIONS(67),
- [anon_sym_DQUOTE] = ACTIONS(69),
- [anon_sym_SQUOTE] = ACTIONS(71),
- [anon_sym_class] = ACTIONS(566),
- [anon_sym_async] = ACTIONS(568),
- [anon_sym_function] = ACTIONS(570),
- [anon_sym_new] = ACTIONS(572),
- [anon_sym_using] = ACTIONS(81),
- [anon_sym_PLUS] = ACTIONS(21),
- [anon_sym_DASH] = ACTIONS(21),
- [anon_sym_SLASH] = ACTIONS(83),
- [anon_sym_LT] = ACTIONS(85),
- [anon_sym_TILDE] = ACTIONS(33),
- [anon_sym_void] = ACTIONS(21),
- [anon_sym_delete] = ACTIONS(21),
- [anon_sym_PLUS_PLUS] = ACTIONS(87),
- [anon_sym_DASH_DASH] = ACTIONS(87),
- [sym_comment] = ACTIONS(5),
- [anon_sym_BQUOTE] = ACTIONS(89),
- [sym_number] = ACTIONS(91),
- [sym_private_property_identifier] = ACTIONS(93),
- [sym_this] = ACTIONS(95),
- [sym_super] = ACTIONS(95),
- [sym_true] = ACTIONS(95),
- [sym_false] = ACTIONS(95),
- [sym_null] = ACTIONS(95),
- [sym_undefined] = ACTIONS(97),
- [anon_sym_AT] = ACTIONS(99),
- [anon_sym_static] = ACTIONS(574),
- [anon_sym_readonly] = ACTIONS(574),
- [anon_sym_get] = ACTIONS(574),
- [anon_sym_set] = ACTIONS(574),
- [anon_sym_declare] = ACTIONS(576),
- [anon_sym_public] = ACTIONS(574),
- [anon_sym_private] = ACTIONS(574),
- [anon_sym_protected] = ACTIONS(574),
- [anon_sym_override] = ACTIONS(574),
- [anon_sym_module] = ACTIONS(578),
- [anon_sym_any] = ACTIONS(574),
- [anon_sym_number] = ACTIONS(574),
- [anon_sym_boolean] = ACTIONS(574),
- [anon_sym_string] = ACTIONS(574),
- [anon_sym_symbol] = ACTIONS(574),
- [anon_sym_object] = ACTIONS(574),
- [anon_sym_abstract] = ACTIONS(107),
- [anon_sym_interface] = ACTIONS(109),
- [anon_sym_enum] = ACTIONS(111),
- [sym_html_comment] = ACTIONS(5),
- },
- [46] = {
- [sym_export_statement] = STATE(854),
- [sym_declaration] = STATE(854),
- [sym_import] = STATE(3306),
- [sym_import_statement] = STATE(854),
- [sym_statement] = STATE(833),
- [sym_expression_statement] = STATE(854),
- [sym_variable_declaration] = STATE(861),
- [sym_lexical_declaration] = STATE(861),
- [sym_statement_block] = STATE(854),
- [sym_if_statement] = STATE(854),
- [sym_switch_statement] = STATE(854),
- [sym_for_statement] = STATE(854),
- [sym_for_in_statement] = STATE(854),
- [sym_while_statement] = STATE(854),
- [sym_do_statement] = STATE(854),
- [sym_try_statement] = STATE(854),
- [sym_with_statement] = STATE(854),
- [sym_break_statement] = STATE(854),
- [sym_continue_statement] = STATE(854),
- [sym_debugger_statement] = STATE(854),
- [sym_return_statement] = STATE(854),
- [sym_throw_statement] = STATE(854),
- [sym_empty_statement] = STATE(854),
- [sym_labeled_statement] = STATE(854),
- [sym_parenthesized_expression] = STATE(1294),
- [sym_expression] = STATE(1705),
- [sym_primary_expression] = STATE(1946),
- [sym_yield_expression] = STATE(2234),
- [sym_object] = STATE(2310),
- [sym_object_pattern] = STATE(5667),
- [sym_array] = STATE(2310),
- [sym_array_pattern] = STATE(5667),
- [sym_glimmer_template] = STATE(2234),
- [sym_jsx_element] = STATE(2234),
- [sym_jsx_opening_element] = STATE(3051),
- [sym_jsx_self_closing_element] = STATE(2234),
- [sym_class] = STATE(2310),
- [sym_class_declaration] = STATE(861),
- [sym_function_expression] = STATE(2310),
- [sym_function_declaration] = STATE(861),
- [sym_generator_function] = STATE(2310),
- [sym_generator_function_declaration] = STATE(861),
- [sym_arrow_function] = STATE(2310),
- [sym__call_signature] = STATE(5809),
- [sym_call_expression] = STATE(2310),
- [sym_new_expression] = STATE(2234),
- [sym_await_expression] = STATE(2234),
- [sym_member_expression] = STATE(1294),
- [sym_subscript_expression] = STATE(1294),
- [sym_assignment_expression] = STATE(2234),
- [sym__augmented_assignment_lhs] = STATE(2875),
- [sym_augmented_assignment_expression] = STATE(2234),
- [sym__destructuring_pattern] = STATE(5667),
- [sym_ternary_expression] = STATE(2234),
- [sym_binary_expression] = STATE(2234),
- [sym_unary_expression] = STATE(2234),
- [sym_update_expression] = STATE(2234),
- [sym_sequence_expression] = STATE(5482),
- [sym_string] = STATE(2310),
- [sym_template_string] = STATE(2310),
- [sym_regex] = STATE(2310),
- [sym_meta_property] = STATE(2310),
- [sym_decorator] = STATE(1244),
- [sym_formal_parameters] = STATE(3742),
- [sym_non_null_expression] = STATE(1294),
- [sym_function_signature] = STATE(861),
- [sym_as_expression] = STATE(2234),
- [sym_satisfies_expression] = STATE(2234),
- [sym_instantiation_expression] = STATE(2234),
- [sym_ambient_declaration] = STATE(861),
- [sym_abstract_class_declaration] = STATE(861),
- [sym_module] = STATE(861),
- [sym_internal_module] = STATE(2332),
- [sym_import_alias] = STATE(861),
- [sym_interface_declaration] = STATE(861),
- [sym_enum_declaration] = STATE(861),
- [sym_type_alias_declaration] = STATE(861),
- [sym_type_parameters] = STATE(5349),
- [aux_sym_export_statement_repeat1] = STATE(3860),
- [sym_identifier] = ACTIONS(546),
- [anon_sym_export] = ACTIONS(548),
- [anon_sym_type] = ACTIONS(550),
- [anon_sym_namespace] = ACTIONS(552),
- [anon_sym_LBRACE] = ACTIONS(554),
- [anon_sym_typeof] = ACTIONS(21),
- [anon_sym_import] = ACTIONS(23),
- [anon_sym_with] = ACTIONS(556),
- [anon_sym_var] = ACTIONS(27),
- [anon_sym_let] = ACTIONS(558),
- [anon_sym_const] = ACTIONS(31),
- [anon_sym_BANG] = ACTIONS(33),
- [anon_sym_if] = ACTIONS(560),
- [anon_sym_switch] = ACTIONS(37),
- [anon_sym_for] = ACTIONS(562),
- [anon_sym_LPAREN] = ACTIONS(41),
- [anon_sym_await] = ACTIONS(43),
- [anon_sym_while] = ACTIONS(564),
- [anon_sym_do] = ACTIONS(47),
- [anon_sym_try] = ACTIONS(49),
- [anon_sym_break] = ACTIONS(51),
- [anon_sym_continue] = ACTIONS(53),
- [anon_sym_debugger] = ACTIONS(55),
- [anon_sym_return] = ACTIONS(57),
- [anon_sym_throw] = ACTIONS(59),
- [anon_sym_SEMI] = ACTIONS(61),
- [anon_sym_yield] = ACTIONS(63),
- [anon_sym_LBRACK] = ACTIONS(65),
- [sym_glimmer_opening_tag] = ACTIONS(67),
- [anon_sym_DQUOTE] = ACTIONS(69),
- [anon_sym_SQUOTE] = ACTIONS(71),
- [anon_sym_class] = ACTIONS(566),
- [anon_sym_async] = ACTIONS(568),
- [anon_sym_function] = ACTIONS(570),
- [anon_sym_new] = ACTIONS(572),
- [anon_sym_using] = ACTIONS(81),
- [anon_sym_PLUS] = ACTIONS(21),
- [anon_sym_DASH] = ACTIONS(21),
- [anon_sym_SLASH] = ACTIONS(83),
- [anon_sym_LT] = ACTIONS(85),
- [anon_sym_TILDE] = ACTIONS(33),
- [anon_sym_void] = ACTIONS(21),
- [anon_sym_delete] = ACTIONS(21),
- [anon_sym_PLUS_PLUS] = ACTIONS(87),
- [anon_sym_DASH_DASH] = ACTIONS(87),
- [sym_comment] = ACTIONS(5),
- [anon_sym_BQUOTE] = ACTIONS(89),
- [sym_number] = ACTIONS(91),
- [sym_private_property_identifier] = ACTIONS(93),
- [sym_this] = ACTIONS(95),
- [sym_super] = ACTIONS(95),
- [sym_true] = ACTIONS(95),
- [sym_false] = ACTIONS(95),
- [sym_null] = ACTIONS(95),
- [sym_undefined] = ACTIONS(97),
- [anon_sym_AT] = ACTIONS(99),
- [anon_sym_static] = ACTIONS(574),
- [anon_sym_readonly] = ACTIONS(574),
- [anon_sym_get] = ACTIONS(574),
- [anon_sym_set] = ACTIONS(574),
- [anon_sym_declare] = ACTIONS(576),
- [anon_sym_public] = ACTIONS(574),
- [anon_sym_private] = ACTIONS(574),
- [anon_sym_protected] = ACTIONS(574),
- [anon_sym_override] = ACTIONS(574),
- [anon_sym_module] = ACTIONS(578),
- [anon_sym_any] = ACTIONS(574),
- [anon_sym_number] = ACTIONS(574),
- [anon_sym_boolean] = ACTIONS(574),
- [anon_sym_string] = ACTIONS(574),
- [anon_sym_symbol] = ACTIONS(574),
- [anon_sym_object] = ACTIONS(574),
- [anon_sym_abstract] = ACTIONS(107),
- [anon_sym_interface] = ACTIONS(109),
- [anon_sym_enum] = ACTIONS(111),
- [sym_html_comment] = ACTIONS(5),
- },
- [47] = {
- [sym_export_statement] = STATE(854),
- [sym_declaration] = STATE(854),
- [sym_import] = STATE(3306),
- [sym_import_statement] = STATE(854),
- [sym_statement] = STATE(846),
- [sym_expression_statement] = STATE(854),
- [sym_variable_declaration] = STATE(861),
- [sym_lexical_declaration] = STATE(861),
- [sym_statement_block] = STATE(854),
- [sym_if_statement] = STATE(854),
- [sym_switch_statement] = STATE(854),
- [sym_for_statement] = STATE(854),
- [sym_for_in_statement] = STATE(854),
- [sym_while_statement] = STATE(854),
- [sym_do_statement] = STATE(854),
- [sym_try_statement] = STATE(854),
- [sym_with_statement] = STATE(854),
- [sym_break_statement] = STATE(854),
- [sym_continue_statement] = STATE(854),
- [sym_debugger_statement] = STATE(854),
- [sym_return_statement] = STATE(854),
- [sym_throw_statement] = STATE(854),
- [sym_empty_statement] = STATE(854),
- [sym_labeled_statement] = STATE(854),
- [sym_parenthesized_expression] = STATE(1294),
- [sym_expression] = STATE(1705),
- [sym_primary_expression] = STATE(1946),
- [sym_yield_expression] = STATE(2234),
- [sym_object] = STATE(2310),
- [sym_object_pattern] = STATE(5667),
- [sym_array] = STATE(2310),
- [sym_array_pattern] = STATE(5667),
- [sym_glimmer_template] = STATE(2234),
- [sym_jsx_element] = STATE(2234),
- [sym_jsx_opening_element] = STATE(3051),
- [sym_jsx_self_closing_element] = STATE(2234),
- [sym_class] = STATE(2310),
- [sym_class_declaration] = STATE(861),
- [sym_function_expression] = STATE(2310),
- [sym_function_declaration] = STATE(861),
- [sym_generator_function] = STATE(2310),
- [sym_generator_function_declaration] = STATE(861),
- [sym_arrow_function] = STATE(2310),
- [sym__call_signature] = STATE(5809),
- [sym_call_expression] = STATE(2310),
- [sym_new_expression] = STATE(2234),
- [sym_await_expression] = STATE(2234),
- [sym_member_expression] = STATE(1294),
- [sym_subscript_expression] = STATE(1294),
- [sym_assignment_expression] = STATE(2234),
- [sym__augmented_assignment_lhs] = STATE(2875),
- [sym_augmented_assignment_expression] = STATE(2234),
- [sym__destructuring_pattern] = STATE(5667),
- [sym_ternary_expression] = STATE(2234),
- [sym_binary_expression] = STATE(2234),
- [sym_unary_expression] = STATE(2234),
- [sym_update_expression] = STATE(2234),
- [sym_sequence_expression] = STATE(5482),
- [sym_string] = STATE(2310),
- [sym_template_string] = STATE(2310),
- [sym_regex] = STATE(2310),
- [sym_meta_property] = STATE(2310),
- [sym_decorator] = STATE(1244),
- [sym_formal_parameters] = STATE(3742),
- [sym_non_null_expression] = STATE(1294),
- [sym_function_signature] = STATE(861),
- [sym_as_expression] = STATE(2234),
- [sym_satisfies_expression] = STATE(2234),
- [sym_instantiation_expression] = STATE(2234),
- [sym_ambient_declaration] = STATE(861),
- [sym_abstract_class_declaration] = STATE(861),
- [sym_module] = STATE(861),
- [sym_internal_module] = STATE(2332),
- [sym_import_alias] = STATE(861),
- [sym_interface_declaration] = STATE(861),
- [sym_enum_declaration] = STATE(861),
- [sym_type_alias_declaration] = STATE(861),
- [sym_type_parameters] = STATE(5349),
- [aux_sym_export_statement_repeat1] = STATE(3860),
- [sym_identifier] = ACTIONS(546),
- [anon_sym_export] = ACTIONS(548),
- [anon_sym_type] = ACTIONS(550),
- [anon_sym_namespace] = ACTIONS(552),
- [anon_sym_LBRACE] = ACTIONS(554),
- [anon_sym_typeof] = ACTIONS(21),
- [anon_sym_import] = ACTIONS(23),
- [anon_sym_with] = ACTIONS(556),
- [anon_sym_var] = ACTIONS(27),
- [anon_sym_let] = ACTIONS(558),
- [anon_sym_const] = ACTIONS(31),
- [anon_sym_BANG] = ACTIONS(33),
- [anon_sym_if] = ACTIONS(560),
- [anon_sym_switch] = ACTIONS(37),
- [anon_sym_for] = ACTIONS(562),
- [anon_sym_LPAREN] = ACTIONS(41),
- [anon_sym_await] = ACTIONS(43),
- [anon_sym_while] = ACTIONS(564),
- [anon_sym_do] = ACTIONS(47),
- [anon_sym_try] = ACTIONS(49),
- [anon_sym_break] = ACTIONS(51),
- [anon_sym_continue] = ACTIONS(53),
- [anon_sym_debugger] = ACTIONS(55),
- [anon_sym_return] = ACTIONS(57),
- [anon_sym_throw] = ACTIONS(59),
- [anon_sym_SEMI] = ACTIONS(61),
- [anon_sym_yield] = ACTIONS(63),
- [anon_sym_LBRACK] = ACTIONS(65),
- [sym_glimmer_opening_tag] = ACTIONS(67),
- [anon_sym_DQUOTE] = ACTIONS(69),
- [anon_sym_SQUOTE] = ACTIONS(71),
- [anon_sym_class] = ACTIONS(566),
- [anon_sym_async] = ACTIONS(568),
- [anon_sym_function] = ACTIONS(570),
- [anon_sym_new] = ACTIONS(572),
- [anon_sym_using] = ACTIONS(81),
- [anon_sym_PLUS] = ACTIONS(21),
- [anon_sym_DASH] = ACTIONS(21),
- [anon_sym_SLASH] = ACTIONS(83),
- [anon_sym_LT] = ACTIONS(85),
- [anon_sym_TILDE] = ACTIONS(33),
- [anon_sym_void] = ACTIONS(21),
- [anon_sym_delete] = ACTIONS(21),
- [anon_sym_PLUS_PLUS] = ACTIONS(87),
- [anon_sym_DASH_DASH] = ACTIONS(87),
- [sym_comment] = ACTIONS(5),
- [anon_sym_BQUOTE] = ACTIONS(89),
- [sym_number] = ACTIONS(91),
- [sym_private_property_identifier] = ACTIONS(93),
- [sym_this] = ACTIONS(95),
- [sym_super] = ACTIONS(95),
- [sym_true] = ACTIONS(95),
- [sym_false] = ACTIONS(95),
- [sym_null] = ACTIONS(95),
- [sym_undefined] = ACTIONS(97),
- [anon_sym_AT] = ACTIONS(99),
- [anon_sym_static] = ACTIONS(574),
- [anon_sym_readonly] = ACTIONS(574),
- [anon_sym_get] = ACTIONS(574),
- [anon_sym_set] = ACTIONS(574),
- [anon_sym_declare] = ACTIONS(576),
- [anon_sym_public] = ACTIONS(574),
- [anon_sym_private] = ACTIONS(574),
- [anon_sym_protected] = ACTIONS(574),
- [anon_sym_override] = ACTIONS(574),
- [anon_sym_module] = ACTIONS(578),
- [anon_sym_any] = ACTIONS(574),
- [anon_sym_number] = ACTIONS(574),
- [anon_sym_boolean] = ACTIONS(574),
- [anon_sym_string] = ACTIONS(574),
- [anon_sym_symbol] = ACTIONS(574),
- [anon_sym_object] = ACTIONS(574),
- [anon_sym_abstract] = ACTIONS(107),
- [anon_sym_interface] = ACTIONS(109),
- [anon_sym_enum] = ACTIONS(111),
- [sym_html_comment] = ACTIONS(5),
- },
- [48] = {
- [sym_export_statement] = STATE(854),
- [sym_declaration] = STATE(854),
- [sym_import] = STATE(3306),
- [sym_import_statement] = STATE(854),
- [sym_statement] = STATE(768),
- [sym_expression_statement] = STATE(854),
- [sym_variable_declaration] = STATE(861),
- [sym_lexical_declaration] = STATE(861),
- [sym_statement_block] = STATE(854),
- [sym_if_statement] = STATE(854),
- [sym_switch_statement] = STATE(854),
- [sym_for_statement] = STATE(854),
- [sym_for_in_statement] = STATE(854),
- [sym_while_statement] = STATE(854),
- [sym_do_statement] = STATE(854),
- [sym_try_statement] = STATE(854),
- [sym_with_statement] = STATE(854),
- [sym_break_statement] = STATE(854),
- [sym_continue_statement] = STATE(854),
- [sym_debugger_statement] = STATE(854),
- [sym_return_statement] = STATE(854),
- [sym_throw_statement] = STATE(854),
- [sym_empty_statement] = STATE(854),
- [sym_labeled_statement] = STATE(854),
- [sym_parenthesized_expression] = STATE(1294),
- [sym_expression] = STATE(1705),
- [sym_primary_expression] = STATE(1946),
- [sym_yield_expression] = STATE(2234),
- [sym_object] = STATE(2310),
- [sym_object_pattern] = STATE(5667),
- [sym_array] = STATE(2310),
- [sym_array_pattern] = STATE(5667),
- [sym_glimmer_template] = STATE(2234),
- [sym_jsx_element] = STATE(2234),
- [sym_jsx_opening_element] = STATE(3051),
- [sym_jsx_self_closing_element] = STATE(2234),
- [sym_class] = STATE(2310),
- [sym_class_declaration] = STATE(861),
- [sym_function_expression] = STATE(2310),
- [sym_function_declaration] = STATE(861),
- [sym_generator_function] = STATE(2310),
- [sym_generator_function_declaration] = STATE(861),
- [sym_arrow_function] = STATE(2310),
- [sym__call_signature] = STATE(5809),
- [sym_call_expression] = STATE(2310),
- [sym_new_expression] = STATE(2234),
- [sym_await_expression] = STATE(2234),
- [sym_member_expression] = STATE(1294),
- [sym_subscript_expression] = STATE(1294),
- [sym_assignment_expression] = STATE(2234),
- [sym__augmented_assignment_lhs] = STATE(2875),
- [sym_augmented_assignment_expression] = STATE(2234),
- [sym__destructuring_pattern] = STATE(5667),
- [sym_ternary_expression] = STATE(2234),
- [sym_binary_expression] = STATE(2234),
- [sym_unary_expression] = STATE(2234),
- [sym_update_expression] = STATE(2234),
- [sym_sequence_expression] = STATE(5482),
- [sym_string] = STATE(2310),
- [sym_template_string] = STATE(2310),
- [sym_regex] = STATE(2310),
- [sym_meta_property] = STATE(2310),
- [sym_decorator] = STATE(1244),
- [sym_formal_parameters] = STATE(3742),
- [sym_non_null_expression] = STATE(1294),
- [sym_function_signature] = STATE(861),
- [sym_as_expression] = STATE(2234),
- [sym_satisfies_expression] = STATE(2234),
- [sym_instantiation_expression] = STATE(2234),
- [sym_ambient_declaration] = STATE(861),
- [sym_abstract_class_declaration] = STATE(861),
- [sym_module] = STATE(861),
- [sym_internal_module] = STATE(223),
- [sym_import_alias] = STATE(861),
- [sym_interface_declaration] = STATE(861),
- [sym_enum_declaration] = STATE(861),
- [sym_type_alias_declaration] = STATE(861),
- [sym_type_parameters] = STATE(5349),
- [aux_sym_export_statement_repeat1] = STATE(3848),
- [sym_identifier] = ACTIONS(9),
- [anon_sym_export] = ACTIONS(13),
- [anon_sym_type] = ACTIONS(15),
- [anon_sym_namespace] = ACTIONS(17),
- [anon_sym_LBRACE] = ACTIONS(19),
- [anon_sym_typeof] = ACTIONS(21),
- [anon_sym_import] = ACTIONS(23),
- [anon_sym_with] = ACTIONS(25),
- [anon_sym_var] = ACTIONS(27),
- [anon_sym_let] = ACTIONS(29),
- [anon_sym_const] = ACTIONS(31),
- [anon_sym_BANG] = ACTIONS(33),
- [anon_sym_if] = ACTIONS(35),
- [anon_sym_switch] = ACTIONS(37),
- [anon_sym_for] = ACTIONS(39),
- [anon_sym_LPAREN] = ACTIONS(41),
- [anon_sym_await] = ACTIONS(43),
- [anon_sym_while] = ACTIONS(45),
- [anon_sym_do] = ACTIONS(47),
- [anon_sym_try] = ACTIONS(49),
- [anon_sym_break] = ACTIONS(51),
- [anon_sym_continue] = ACTIONS(53),
- [anon_sym_debugger] = ACTIONS(55),
- [anon_sym_return] = ACTIONS(57),
- [anon_sym_throw] = ACTIONS(59),
- [anon_sym_SEMI] = ACTIONS(61),
- [anon_sym_yield] = ACTIONS(63),
- [anon_sym_LBRACK] = ACTIONS(65),
- [sym_glimmer_opening_tag] = ACTIONS(67),
- [anon_sym_DQUOTE] = ACTIONS(69),
- [anon_sym_SQUOTE] = ACTIONS(71),
- [anon_sym_class] = ACTIONS(73),
- [anon_sym_async] = ACTIONS(75),
- [anon_sym_function] = ACTIONS(77),
- [anon_sym_new] = ACTIONS(79),
- [anon_sym_using] = ACTIONS(81),
- [anon_sym_PLUS] = ACTIONS(21),
- [anon_sym_DASH] = ACTIONS(21),
- [anon_sym_SLASH] = ACTIONS(83),
- [anon_sym_LT] = ACTIONS(85),
- [anon_sym_TILDE] = ACTIONS(33),
- [anon_sym_void] = ACTIONS(21),
- [anon_sym_delete] = ACTIONS(21),
- [anon_sym_PLUS_PLUS] = ACTIONS(87),
- [anon_sym_DASH_DASH] = ACTIONS(87),
- [sym_comment] = ACTIONS(5),
- [anon_sym_BQUOTE] = ACTIONS(89),
- [sym_number] = ACTIONS(91),
- [sym_private_property_identifier] = ACTIONS(93),
- [sym_this] = ACTIONS(95),
- [sym_super] = ACTIONS(95),
- [sym_true] = ACTIONS(95),
- [sym_false] = ACTIONS(95),
- [sym_null] = ACTIONS(95),
- [sym_undefined] = ACTIONS(97),
- [anon_sym_AT] = ACTIONS(99),
- [anon_sym_static] = ACTIONS(101),
- [anon_sym_readonly] = ACTIONS(101),
- [anon_sym_get] = ACTIONS(101),
- [anon_sym_set] = ACTIONS(101),
- [anon_sym_declare] = ACTIONS(103),
- [anon_sym_public] = ACTIONS(101),
- [anon_sym_private] = ACTIONS(101),
- [anon_sym_protected] = ACTIONS(101),
- [anon_sym_override] = ACTIONS(101),
- [anon_sym_module] = ACTIONS(105),
- [anon_sym_any] = ACTIONS(101),
- [anon_sym_number] = ACTIONS(101),
- [anon_sym_boolean] = ACTIONS(101),
- [anon_sym_string] = ACTIONS(101),
- [anon_sym_symbol] = ACTIONS(101),
- [anon_sym_object] = ACTIONS(101),
- [anon_sym_abstract] = ACTIONS(107),
- [anon_sym_interface] = ACTIONS(109),
- [anon_sym_enum] = ACTIONS(111),
- [sym_html_comment] = ACTIONS(5),
- },
- [49] = {
- [sym_import] = STATE(3318),
- [sym_parenthesized_expression] = STATE(1251),
- [sym_expression] = STATE(1829),
- [sym_primary_expression] = STATE(1468),
- [sym_yield_expression] = STATE(1634),
- [sym_object] = STATE(1650),
- [sym_object_pattern] = STATE(3610),
- [sym_assignment_pattern] = STATE(5148),
- [sym_array] = STATE(1650),
- [sym_array_pattern] = STATE(3610),
- [sym_glimmer_template] = STATE(1634),
- [sym_jsx_element] = STATE(1634),
- [sym_jsx_opening_element] = STATE(3026),
- [sym_nested_identifier] = STATE(5707),
- [sym_jsx_self_closing_element] = STATE(1634),
- [sym_class] = STATE(1650),
- [sym_function_expression] = STATE(1650),
- [sym_generator_function] = STATE(1650),
- [sym_arrow_function] = STATE(1650),
- [sym__call_signature] = STATE(5828),
- [sym_call_expression] = STATE(1650),
- [sym_new_expression] = STATE(1634),
- [sym_await_expression] = STATE(1634),
- [sym_member_expression] = STATE(1230),
- [sym_subscript_expression] = STATE(1230),
- [sym_assignment_expression] = STATE(1634),
- [sym__augmented_assignment_lhs] = STATE(2900),
- [sym_augmented_assignment_expression] = STATE(1634),
- [sym__destructuring_pattern] = STATE(3610),
- [sym_spread_element] = STATE(4907),
- [sym_ternary_expression] = STATE(1634),
- [sym_binary_expression] = STATE(1634),
- [sym_unary_expression] = STATE(1634),
- [sym_update_expression] = STATE(1634),
- [sym_string] = STATE(2271),
- [sym_template_string] = STATE(1650),
- [sym_regex] = STATE(1650),
- [sym_meta_property] = STATE(1650),
- [sym_decorator] = STATE(1244),
- [sym_formal_parameters] = STATE(4344),
- [sym_pattern] = STATE(4544),
- [sym_rest_pattern] = STATE(4039),
- [sym_non_null_expression] = STATE(1230),
- [sym_as_expression] = STATE(1634),
- [sym_satisfies_expression] = STATE(1634),
- [sym_instantiation_expression] = STATE(1634),
- [sym_internal_module] = STATE(1634),
- [sym_nested_type_identifier] = STATE(2828),
- [sym__type_query_member_expression_in_type_annotation] = STATE(3228),
- [sym__type_query_call_expression_in_type_annotation] = STATE(2850),
- [sym_type] = STATE(3859),
- [sym_tuple_parameter] = STATE(5049),
- [sym_optional_tuple_parameter] = STATE(5049),
- [sym_optional_type] = STATE(5049),
- [sym_rest_type] = STATE(5049),
- [sym__tuple_type_member] = STATE(5049),
- [sym_constructor_type] = STATE(2896),
- [sym_primary_type] = STATE(2897),
- [sym_template_literal_type] = STATE(2885),
- [sym_infer_type] = STATE(2896),
- [sym_conditional_type] = STATE(2885),
- [sym_generic_type] = STATE(2885),
- [sym_type_query] = STATE(2885),
- [sym_index_type_query] = STATE(2885),
- [sym_lookup_type] = STATE(2885),
- [sym_literal_type] = STATE(2885),
- [sym__number] = STATE(2903),
- [sym_existential_type] = STATE(2885),
- [sym_flow_maybe_type] = STATE(2885),
- [sym_parenthesized_type] = STATE(2885),
- [sym_predefined_type] = STATE(2885),
- [sym_object_type] = STATE(2885),
- [sym_type_parameters] = STATE(5518),
- [sym_array_type] = STATE(2885),
- [sym_tuple_type] = STATE(2885),
- [sym_readonly_type] = STATE(2896),
- [sym_union_type] = STATE(2885),
- [sym_intersection_type] = STATE(2885),
- [sym_function_type] = STATE(2896),
- [aux_sym_export_statement_repeat1] = STATE(4458),
- [aux_sym_array_repeat1] = STATE(4912),
- [aux_sym_array_pattern_repeat1] = STATE(5165),
- [sym_identifier] = ACTIONS(608),
- [anon_sym_export] = ACTIONS(610),
- [anon_sym_STAR] = ACTIONS(612),
- [anon_sym_type] = ACTIONS(610),
- [anon_sym_namespace] = ACTIONS(614),
- [anon_sym_LBRACE] = ACTIONS(616),
- [anon_sym_COMMA] = ACTIONS(618),
- [anon_sym_typeof] = ACTIONS(620),
- [anon_sym_import] = ACTIONS(133),
- [anon_sym_let] = ACTIONS(610),
- [anon_sym_const] = ACTIONS(135),
- [anon_sym_BANG] = ACTIONS(622),
- [anon_sym_LPAREN] = ACTIONS(140),
- [anon_sym_await] = ACTIONS(624),
- [anon_sym_yield] = ACTIONS(626),
- [anon_sym_LBRACK] = ACTIONS(628),
- [anon_sym_RBRACK] = ACTIONS(672),
- [sym_glimmer_opening_tag] = ACTIONS(148),
- [anon_sym_DQUOTE] = ACTIONS(150),
- [anon_sym_SQUOTE] = ACTIONS(152),
- [anon_sym_class] = ACTIONS(154),
- [anon_sym_async] = ACTIONS(632),
- [anon_sym_function] = ACTIONS(158),
- [anon_sym_new] = ACTIONS(634),
- [anon_sym_using] = ACTIONS(636),
- [anon_sym_DOT_DOT_DOT] = ACTIONS(638),
- [anon_sym_AMP] = ACTIONS(640),
- [anon_sym_PIPE] = ACTIONS(642),
- [anon_sym_PLUS] = ACTIONS(644),
- [anon_sym_DASH] = ACTIONS(644),
- [anon_sym_SLASH] = ACTIONS(646),
- [anon_sym_LT] = ACTIONS(181),
- [anon_sym_TILDE] = ACTIONS(622),
- [anon_sym_void] = ACTIONS(648),
- [anon_sym_delete] = ACTIONS(650),
- [anon_sym_PLUS_PLUS] = ACTIONS(652),
- [anon_sym_DASH_DASH] = ACTIONS(652),
- [sym_comment] = ACTIONS(5),
- [anon_sym_BQUOTE] = ACTIONS(192),
- [sym_number] = ACTIONS(194),
- [sym_private_property_identifier] = ACTIONS(654),
- [sym_this] = ACTIONS(656),
- [sym_super] = ACTIONS(200),
- [sym_true] = ACTIONS(202),
- [sym_false] = ACTIONS(202),
- [sym_null] = ACTIONS(202),
- [sym_undefined] = ACTIONS(658),
- [anon_sym_AT] = ACTIONS(99),
- [anon_sym_static] = ACTIONS(610),
- [anon_sym_readonly] = ACTIONS(660),
- [anon_sym_get] = ACTIONS(610),
- [anon_sym_set] = ACTIONS(610),
- [anon_sym_QMARK] = ACTIONS(662),
- [anon_sym_declare] = ACTIONS(610),
- [anon_sym_public] = ACTIONS(610),
- [anon_sym_private] = ACTIONS(610),
- [anon_sym_protected] = ACTIONS(610),
- [anon_sym_override] = ACTIONS(610),
- [anon_sym_module] = ACTIONS(610),
- [anon_sym_any] = ACTIONS(664),
- [anon_sym_number] = ACTIONS(664),
- [anon_sym_boolean] = ACTIONS(664),
- [anon_sym_string] = ACTIONS(664),
- [anon_sym_symbol] = ACTIONS(664),
- [anon_sym_object] = ACTIONS(664),
- [anon_sym_abstract] = ACTIONS(666),
- [anon_sym_infer] = ACTIONS(668),
- [anon_sym_keyof] = ACTIONS(670),
- [anon_sym_unique] = ACTIONS(218),
- [anon_sym_unknown] = ACTIONS(220),
- [anon_sym_never] = ACTIONS(220),
- [anon_sym_LBRACE_PIPE] = ACTIONS(222),
- [sym_html_comment] = ACTIONS(5),
- },
- [50] = {
- [sym_import] = STATE(3318),
- [sym_parenthesized_expression] = STATE(1251),
- [sym_expression] = STATE(1829),
- [sym_primary_expression] = STATE(1468),
- [sym_yield_expression] = STATE(1634),
- [sym_object] = STATE(1650),
- [sym_object_pattern] = STATE(3610),
- [sym_assignment_pattern] = STATE(5148),
- [sym_array] = STATE(1650),
- [sym_array_pattern] = STATE(3610),
- [sym_glimmer_template] = STATE(1634),
- [sym_jsx_element] = STATE(1634),
- [sym_jsx_opening_element] = STATE(3026),
- [sym_nested_identifier] = STATE(5707),
- [sym_jsx_self_closing_element] = STATE(1634),
- [sym_class] = STATE(1650),
- [sym_function_expression] = STATE(1650),
- [sym_generator_function] = STATE(1650),
- [sym_arrow_function] = STATE(1650),
- [sym__call_signature] = STATE(5828),
- [sym_call_expression] = STATE(1650),
- [sym_new_expression] = STATE(1634),
- [sym_await_expression] = STATE(1634),
- [sym_member_expression] = STATE(1230),
- [sym_subscript_expression] = STATE(1230),
- [sym_assignment_expression] = STATE(1634),
- [sym__augmented_assignment_lhs] = STATE(2900),
- [sym_augmented_assignment_expression] = STATE(1634),
- [sym__destructuring_pattern] = STATE(3610),
- [sym_spread_element] = STATE(4907),
- [sym_ternary_expression] = STATE(1634),
- [sym_binary_expression] = STATE(1634),
- [sym_unary_expression] = STATE(1634),
- [sym_update_expression] = STATE(1634),
- [sym_string] = STATE(2271),
- [sym_template_string] = STATE(1650),
- [sym_regex] = STATE(1650),
- [sym_meta_property] = STATE(1650),
- [sym_decorator] = STATE(1244),
- [sym_formal_parameters] = STATE(4344),
- [sym_pattern] = STATE(4544),
- [sym_rest_pattern] = STATE(4039),
- [sym_non_null_expression] = STATE(1230),
- [sym_as_expression] = STATE(1634),
- [sym_satisfies_expression] = STATE(1634),
- [sym_instantiation_expression] = STATE(1634),
- [sym_internal_module] = STATE(1634),
- [sym_nested_type_identifier] = STATE(2828),
- [sym__type_query_member_expression_in_type_annotation] = STATE(3228),
- [sym__type_query_call_expression_in_type_annotation] = STATE(2850),
- [sym_type] = STATE(3859),
- [sym_tuple_parameter] = STATE(5049),
- [sym_optional_tuple_parameter] = STATE(5049),
- [sym_optional_type] = STATE(5049),
- [sym_rest_type] = STATE(5049),
- [sym__tuple_type_member] = STATE(5049),
- [sym_constructor_type] = STATE(2896),
- [sym_primary_type] = STATE(2897),
- [sym_template_literal_type] = STATE(2885),
- [sym_infer_type] = STATE(2896),
- [sym_conditional_type] = STATE(2885),
- [sym_generic_type] = STATE(2885),
- [sym_type_query] = STATE(2885),
- [sym_index_type_query] = STATE(2885),
- [sym_lookup_type] = STATE(2885),
- [sym_literal_type] = STATE(2885),
- [sym__number] = STATE(2903),
- [sym_existential_type] = STATE(2885),
- [sym_flow_maybe_type] = STATE(2885),
- [sym_parenthesized_type] = STATE(2885),
- [sym_predefined_type] = STATE(2885),
- [sym_object_type] = STATE(2885),
- [sym_type_parameters] = STATE(5518),
- [sym_array_type] = STATE(2885),
- [sym_tuple_type] = STATE(2885),
- [sym_readonly_type] = STATE(2896),
- [sym_union_type] = STATE(2885),
- [sym_intersection_type] = STATE(2885),
- [sym_function_type] = STATE(2896),
- [aux_sym_export_statement_repeat1] = STATE(4458),
- [aux_sym_array_repeat1] = STATE(4912),
- [aux_sym_array_pattern_repeat1] = STATE(5165),
- [sym_identifier] = ACTIONS(608),
- [anon_sym_export] = ACTIONS(610),
- [anon_sym_STAR] = ACTIONS(612),
- [anon_sym_type] = ACTIONS(610),
- [anon_sym_namespace] = ACTIONS(614),
- [anon_sym_LBRACE] = ACTIONS(616),
- [anon_sym_COMMA] = ACTIONS(618),
- [anon_sym_typeof] = ACTIONS(620),
- [anon_sym_import] = ACTIONS(133),
- [anon_sym_let] = ACTIONS(610),
- [anon_sym_const] = ACTIONS(135),
- [anon_sym_BANG] = ACTIONS(622),
- [anon_sym_LPAREN] = ACTIONS(140),
- [anon_sym_await] = ACTIONS(624),
- [anon_sym_yield] = ACTIONS(626),
- [anon_sym_LBRACK] = ACTIONS(628),
- [anon_sym_RBRACK] = ACTIONS(674),
- [sym_glimmer_opening_tag] = ACTIONS(148),
- [anon_sym_DQUOTE] = ACTIONS(150),
- [anon_sym_SQUOTE] = ACTIONS(152),
- [anon_sym_class] = ACTIONS(154),
- [anon_sym_async] = ACTIONS(632),
- [anon_sym_function] = ACTIONS(158),
- [anon_sym_new] = ACTIONS(634),
- [anon_sym_using] = ACTIONS(636),
- [anon_sym_DOT_DOT_DOT] = ACTIONS(638),
- [anon_sym_AMP] = ACTIONS(640),
- [anon_sym_PIPE] = ACTIONS(642),
- [anon_sym_PLUS] = ACTIONS(644),
- [anon_sym_DASH] = ACTIONS(644),
- [anon_sym_SLASH] = ACTIONS(646),
- [anon_sym_LT] = ACTIONS(181),
- [anon_sym_TILDE] = ACTIONS(622),
- [anon_sym_void] = ACTIONS(648),
- [anon_sym_delete] = ACTIONS(650),
- [anon_sym_PLUS_PLUS] = ACTIONS(652),
- [anon_sym_DASH_DASH] = ACTIONS(652),
- [sym_comment] = ACTIONS(5),
- [anon_sym_BQUOTE] = ACTIONS(192),
- [sym_number] = ACTIONS(194),
- [sym_private_property_identifier] = ACTIONS(654),
- [sym_this] = ACTIONS(656),
- [sym_super] = ACTIONS(200),
- [sym_true] = ACTIONS(202),
- [sym_false] = ACTIONS(202),
- [sym_null] = ACTIONS(202),
- [sym_undefined] = ACTIONS(658),
- [anon_sym_AT] = ACTIONS(99),
- [anon_sym_static] = ACTIONS(610),
- [anon_sym_readonly] = ACTIONS(660),
- [anon_sym_get] = ACTIONS(610),
- [anon_sym_set] = ACTIONS(610),
- [anon_sym_QMARK] = ACTIONS(662),
- [anon_sym_declare] = ACTIONS(610),
- [anon_sym_public] = ACTIONS(610),
- [anon_sym_private] = ACTIONS(610),
- [anon_sym_protected] = ACTIONS(610),
- [anon_sym_override] = ACTIONS(610),
- [anon_sym_module] = ACTIONS(610),
- [anon_sym_any] = ACTIONS(664),
- [anon_sym_number] = ACTIONS(664),
- [anon_sym_boolean] = ACTIONS(664),
- [anon_sym_string] = ACTIONS(664),
- [anon_sym_symbol] = ACTIONS(664),
- [anon_sym_object] = ACTIONS(664),
- [anon_sym_abstract] = ACTIONS(666),
- [anon_sym_infer] = ACTIONS(668),
- [anon_sym_keyof] = ACTIONS(670),
- [anon_sym_unique] = ACTIONS(218),
- [anon_sym_unknown] = ACTIONS(220),
- [anon_sym_never] = ACTIONS(220),
- [anon_sym_LBRACE_PIPE] = ACTIONS(222),
- [sym_html_comment] = ACTIONS(5),
- },
- [51] = {
- [sym_import] = STATE(3318),
- [sym_parenthesized_expression] = STATE(1251),
- [sym_expression] = STATE(1883),
- [sym_primary_expression] = STATE(1468),
- [sym_yield_expression] = STATE(1634),
- [sym_object] = STATE(1650),
- [sym_object_pattern] = STATE(3610),
- [sym_assignment_pattern] = STATE(5148),
- [sym_array] = STATE(1650),
- [sym_array_pattern] = STATE(3610),
- [sym_glimmer_template] = STATE(1634),
- [sym_jsx_element] = STATE(1634),
- [sym_jsx_opening_element] = STATE(3026),
- [sym_nested_identifier] = STATE(5707),
- [sym_jsx_self_closing_element] = STATE(1634),
- [sym_class] = STATE(1650),
- [sym_function_expression] = STATE(1650),
- [sym_generator_function] = STATE(1650),
- [sym_arrow_function] = STATE(1650),
- [sym__call_signature] = STATE(5828),
- [sym_call_expression] = STATE(1650),
- [sym_new_expression] = STATE(1634),
- [sym_await_expression] = STATE(1634),
- [sym_member_expression] = STATE(1230),
- [sym_subscript_expression] = STATE(1230),
- [sym_assignment_expression] = STATE(1634),
- [sym__augmented_assignment_lhs] = STATE(2900),
- [sym_augmented_assignment_expression] = STATE(1634),
- [sym__destructuring_pattern] = STATE(3610),
- [sym_spread_element] = STATE(5152),
- [sym_ternary_expression] = STATE(1634),
- [sym_binary_expression] = STATE(1634),
- [sym_unary_expression] = STATE(1634),
- [sym_update_expression] = STATE(1634),
- [sym_string] = STATE(2271),
- [sym_template_string] = STATE(1650),
- [sym_regex] = STATE(1650),
- [sym_meta_property] = STATE(1650),
- [sym_decorator] = STATE(1244),
- [sym_formal_parameters] = STATE(4344),
- [sym_pattern] = STATE(4544),
- [sym_rest_pattern] = STATE(4039),
- [sym_non_null_expression] = STATE(1230),
- [sym_as_expression] = STATE(1634),
- [sym_satisfies_expression] = STATE(1634),
- [sym_instantiation_expression] = STATE(1634),
- [sym_internal_module] = STATE(1634),
- [sym_nested_type_identifier] = STATE(2828),
- [sym__type_query_member_expression_in_type_annotation] = STATE(3228),
- [sym__type_query_call_expression_in_type_annotation] = STATE(2850),
- [sym_type] = STATE(3859),
- [sym_tuple_parameter] = STATE(5049),
- [sym_optional_tuple_parameter] = STATE(5049),
- [sym_optional_type] = STATE(5049),
- [sym_rest_type] = STATE(5049),
- [sym__tuple_type_member] = STATE(5049),
- [sym_constructor_type] = STATE(2896),
- [sym_primary_type] = STATE(2897),
- [sym_template_literal_type] = STATE(2885),
- [sym_infer_type] = STATE(2896),
- [sym_conditional_type] = STATE(2885),
- [sym_generic_type] = STATE(2885),
- [sym_type_query] = STATE(2885),
- [sym_index_type_query] = STATE(2885),
- [sym_lookup_type] = STATE(2885),
- [sym_literal_type] = STATE(2885),
- [sym__number] = STATE(2903),
- [sym_existential_type] = STATE(2885),
- [sym_flow_maybe_type] = STATE(2885),
- [sym_parenthesized_type] = STATE(2885),
- [sym_predefined_type] = STATE(2885),
- [sym_object_type] = STATE(2885),
- [sym_type_parameters] = STATE(5518),
- [sym_array_type] = STATE(2885),
- [sym_tuple_type] = STATE(2885),
- [sym_readonly_type] = STATE(2896),
- [sym_union_type] = STATE(2885),
- [sym_intersection_type] = STATE(2885),
- [sym_function_type] = STATE(2896),
- [aux_sym_export_statement_repeat1] = STATE(4458),
- [aux_sym_array_repeat1] = STATE(5155),
- [aux_sym_array_pattern_repeat1] = STATE(5165),
- [sym_identifier] = ACTIONS(608),
- [anon_sym_export] = ACTIONS(610),
- [anon_sym_STAR] = ACTIONS(612),
- [anon_sym_type] = ACTIONS(610),
- [anon_sym_namespace] = ACTIONS(614),
- [anon_sym_LBRACE] = ACTIONS(616),
- [anon_sym_COMMA] = ACTIONS(618),
- [anon_sym_typeof] = ACTIONS(620),
- [anon_sym_import] = ACTIONS(133),
- [anon_sym_let] = ACTIONS(610),
- [anon_sym_const] = ACTIONS(135),
- [anon_sym_BANG] = ACTIONS(622),
- [anon_sym_LPAREN] = ACTIONS(140),
- [anon_sym_await] = ACTIONS(624),
- [anon_sym_yield] = ACTIONS(626),
- [anon_sym_LBRACK] = ACTIONS(628),
- [anon_sym_RBRACK] = ACTIONS(676),
- [sym_glimmer_opening_tag] = ACTIONS(148),
- [anon_sym_DQUOTE] = ACTIONS(150),
- [anon_sym_SQUOTE] = ACTIONS(152),
- [anon_sym_class] = ACTIONS(154),
- [anon_sym_async] = ACTIONS(632),
- [anon_sym_function] = ACTIONS(158),
- [anon_sym_new] = ACTIONS(634),
- [anon_sym_using] = ACTIONS(636),
- [anon_sym_DOT_DOT_DOT] = ACTIONS(638),
- [anon_sym_AMP] = ACTIONS(640),
- [anon_sym_PIPE] = ACTIONS(642),
- [anon_sym_PLUS] = ACTIONS(644),
- [anon_sym_DASH] = ACTIONS(644),
- [anon_sym_SLASH] = ACTIONS(646),
- [anon_sym_LT] = ACTIONS(181),
- [anon_sym_TILDE] = ACTIONS(622),
- [anon_sym_void] = ACTIONS(648),
- [anon_sym_delete] = ACTIONS(650),
- [anon_sym_PLUS_PLUS] = ACTIONS(652),
- [anon_sym_DASH_DASH] = ACTIONS(652),
- [sym_comment] = ACTIONS(5),
- [anon_sym_BQUOTE] = ACTIONS(192),
- [sym_number] = ACTIONS(194),
- [sym_private_property_identifier] = ACTIONS(654),
- [sym_this] = ACTIONS(656),
- [sym_super] = ACTIONS(200),
- [sym_true] = ACTIONS(202),
- [sym_false] = ACTIONS(202),
- [sym_null] = ACTIONS(202),
- [sym_undefined] = ACTIONS(658),
- [anon_sym_AT] = ACTIONS(99),
- [anon_sym_static] = ACTIONS(610),
- [anon_sym_readonly] = ACTIONS(660),
- [anon_sym_get] = ACTIONS(610),
- [anon_sym_set] = ACTIONS(610),
- [anon_sym_QMARK] = ACTIONS(662),
- [anon_sym_declare] = ACTIONS(610),
- [anon_sym_public] = ACTIONS(610),
- [anon_sym_private] = ACTIONS(610),
- [anon_sym_protected] = ACTIONS(610),
- [anon_sym_override] = ACTIONS(610),
- [anon_sym_module] = ACTIONS(610),
- [anon_sym_any] = ACTIONS(664),
- [anon_sym_number] = ACTIONS(664),
- [anon_sym_boolean] = ACTIONS(664),
- [anon_sym_string] = ACTIONS(664),
- [anon_sym_symbol] = ACTIONS(664),
- [anon_sym_object] = ACTIONS(664),
- [anon_sym_abstract] = ACTIONS(666),
- [anon_sym_infer] = ACTIONS(668),
- [anon_sym_keyof] = ACTIONS(670),
- [anon_sym_unique] = ACTIONS(218),
- [anon_sym_unknown] = ACTIONS(220),
- [anon_sym_never] = ACTIONS(220),
- [anon_sym_LBRACE_PIPE] = ACTIONS(222),
- [sym_html_comment] = ACTIONS(5),
- },
- [52] = {
- [sym_export_statement] = STATE(854),
- [sym_declaration] = STATE(854),
- [sym_import] = STATE(3306),
- [sym_import_statement] = STATE(854),
- [sym_statement] = STATE(804),
- [sym_expression_statement] = STATE(854),
- [sym_variable_declaration] = STATE(861),
- [sym_lexical_declaration] = STATE(861),
- [sym_statement_block] = STATE(854),
- [sym_if_statement] = STATE(854),
- [sym_switch_statement] = STATE(854),
- [sym_for_statement] = STATE(854),
- [sym_for_in_statement] = STATE(854),
- [sym_while_statement] = STATE(854),
- [sym_do_statement] = STATE(854),
- [sym_try_statement] = STATE(854),
- [sym_with_statement] = STATE(854),
- [sym_break_statement] = STATE(854),
- [sym_continue_statement] = STATE(854),
- [sym_debugger_statement] = STATE(854),
- [sym_return_statement] = STATE(854),
- [sym_throw_statement] = STATE(854),
- [sym_empty_statement] = STATE(854),
- [sym_labeled_statement] = STATE(854),
- [sym_parenthesized_expression] = STATE(1294),
- [sym_expression] = STATE(1705),
- [sym_primary_expression] = STATE(1946),
- [sym_yield_expression] = STATE(2234),
- [sym_object] = STATE(2310),
- [sym_object_pattern] = STATE(5667),
- [sym_array] = STATE(2310),
- [sym_array_pattern] = STATE(5667),
- [sym_glimmer_template] = STATE(2234),
- [sym_jsx_element] = STATE(2234),
- [sym_jsx_opening_element] = STATE(3051),
- [sym_jsx_self_closing_element] = STATE(2234),
- [sym_class] = STATE(2310),
- [sym_class_declaration] = STATE(861),
- [sym_function_expression] = STATE(2310),
- [sym_function_declaration] = STATE(861),
- [sym_generator_function] = STATE(2310),
- [sym_generator_function_declaration] = STATE(861),
- [sym_arrow_function] = STATE(2310),
- [sym__call_signature] = STATE(5809),
- [sym_call_expression] = STATE(2310),
- [sym_new_expression] = STATE(2234),
- [sym_await_expression] = STATE(2234),
- [sym_member_expression] = STATE(1294),
- [sym_subscript_expression] = STATE(1294),
- [sym_assignment_expression] = STATE(2234),
- [sym__augmented_assignment_lhs] = STATE(2875),
- [sym_augmented_assignment_expression] = STATE(2234),
- [sym__destructuring_pattern] = STATE(5667),
- [sym_ternary_expression] = STATE(2234),
- [sym_binary_expression] = STATE(2234),
- [sym_unary_expression] = STATE(2234),
- [sym_update_expression] = STATE(2234),
- [sym_sequence_expression] = STATE(5482),
- [sym_string] = STATE(2310),
- [sym_template_string] = STATE(2310),
- [sym_regex] = STATE(2310),
- [sym_meta_property] = STATE(2310),
- [sym_decorator] = STATE(1244),
- [sym_formal_parameters] = STATE(3742),
- [sym_non_null_expression] = STATE(1294),
- [sym_function_signature] = STATE(861),
- [sym_as_expression] = STATE(2234),
- [sym_satisfies_expression] = STATE(2234),
- [sym_instantiation_expression] = STATE(2234),
- [sym_ambient_declaration] = STATE(861),
- [sym_abstract_class_declaration] = STATE(861),
- [sym_module] = STATE(861),
- [sym_internal_module] = STATE(223),
- [sym_import_alias] = STATE(861),
- [sym_interface_declaration] = STATE(861),
- [sym_enum_declaration] = STATE(861),
- [sym_type_alias_declaration] = STATE(861),
- [sym_type_parameters] = STATE(5349),
- [aux_sym_export_statement_repeat1] = STATE(3848),
- [sym_identifier] = ACTIONS(9),
- [anon_sym_export] = ACTIONS(13),
- [anon_sym_type] = ACTIONS(15),
- [anon_sym_namespace] = ACTIONS(17),
- [anon_sym_LBRACE] = ACTIONS(19),
- [anon_sym_typeof] = ACTIONS(21),
- [anon_sym_import] = ACTIONS(23),
- [anon_sym_with] = ACTIONS(25),
- [anon_sym_var] = ACTIONS(27),
- [anon_sym_let] = ACTIONS(29),
- [anon_sym_const] = ACTIONS(31),
- [anon_sym_BANG] = ACTIONS(33),
- [anon_sym_if] = ACTIONS(35),
- [anon_sym_switch] = ACTIONS(37),
- [anon_sym_for] = ACTIONS(39),
- [anon_sym_LPAREN] = ACTIONS(41),
- [anon_sym_await] = ACTIONS(43),
- [anon_sym_while] = ACTIONS(45),
- [anon_sym_do] = ACTIONS(47),
- [anon_sym_try] = ACTIONS(49),
- [anon_sym_break] = ACTIONS(51),
- [anon_sym_continue] = ACTIONS(53),
- [anon_sym_debugger] = ACTIONS(55),
- [anon_sym_return] = ACTIONS(57),
- [anon_sym_throw] = ACTIONS(59),
- [anon_sym_SEMI] = ACTIONS(61),
- [anon_sym_yield] = ACTIONS(63),
- [anon_sym_LBRACK] = ACTIONS(65),
- [sym_glimmer_opening_tag] = ACTIONS(67),
- [anon_sym_DQUOTE] = ACTIONS(69),
- [anon_sym_SQUOTE] = ACTIONS(71),
- [anon_sym_class] = ACTIONS(73),
- [anon_sym_async] = ACTIONS(75),
- [anon_sym_function] = ACTIONS(77),
- [anon_sym_new] = ACTIONS(79),
- [anon_sym_using] = ACTIONS(81),
- [anon_sym_PLUS] = ACTIONS(21),
- [anon_sym_DASH] = ACTIONS(21),
- [anon_sym_SLASH] = ACTIONS(83),
- [anon_sym_LT] = ACTIONS(85),
- [anon_sym_TILDE] = ACTIONS(33),
- [anon_sym_void] = ACTIONS(21),
- [anon_sym_delete] = ACTIONS(21),
- [anon_sym_PLUS_PLUS] = ACTIONS(87),
- [anon_sym_DASH_DASH] = ACTIONS(87),
- [sym_comment] = ACTIONS(5),
- [anon_sym_BQUOTE] = ACTIONS(89),
- [sym_number] = ACTIONS(91),
- [sym_private_property_identifier] = ACTIONS(93),
- [sym_this] = ACTIONS(95),
- [sym_super] = ACTIONS(95),
- [sym_true] = ACTIONS(95),
- [sym_false] = ACTIONS(95),
- [sym_null] = ACTIONS(95),
- [sym_undefined] = ACTIONS(97),
- [anon_sym_AT] = ACTIONS(99),
- [anon_sym_static] = ACTIONS(101),
- [anon_sym_readonly] = ACTIONS(101),
- [anon_sym_get] = ACTIONS(101),
- [anon_sym_set] = ACTIONS(101),
- [anon_sym_declare] = ACTIONS(103),
- [anon_sym_public] = ACTIONS(101),
- [anon_sym_private] = ACTIONS(101),
- [anon_sym_protected] = ACTIONS(101),
- [anon_sym_override] = ACTIONS(101),
- [anon_sym_module] = ACTIONS(105),
- [anon_sym_any] = ACTIONS(101),
- [anon_sym_number] = ACTIONS(101),
- [anon_sym_boolean] = ACTIONS(101),
- [anon_sym_string] = ACTIONS(101),
- [anon_sym_symbol] = ACTIONS(101),
- [anon_sym_object] = ACTIONS(101),
- [anon_sym_abstract] = ACTIONS(107),
- [anon_sym_interface] = ACTIONS(109),
- [anon_sym_enum] = ACTIONS(111),
- [sym_html_comment] = ACTIONS(5),
- },
- [53] = {
- [sym_import] = STATE(3318),
- [sym_parenthesized_expression] = STATE(1251),
- [sym_expression] = STATE(1829),
- [sym_primary_expression] = STATE(1468),
- [sym_yield_expression] = STATE(1634),
- [sym_object] = STATE(1650),
- [sym_object_pattern] = STATE(3610),
- [sym_assignment_pattern] = STATE(5148),
- [sym_array] = STATE(1650),
- [sym_array_pattern] = STATE(3610),
- [sym_glimmer_template] = STATE(1634),
- [sym_jsx_element] = STATE(1634),
- [sym_jsx_opening_element] = STATE(3026),
- [sym_nested_identifier] = STATE(5707),
- [sym_jsx_self_closing_element] = STATE(1634),
- [sym_class] = STATE(1650),
- [sym_function_expression] = STATE(1650),
- [sym_generator_function] = STATE(1650),
- [sym_arrow_function] = STATE(1650),
- [sym__call_signature] = STATE(5828),
- [sym_call_expression] = STATE(1650),
- [sym_new_expression] = STATE(1634),
- [sym_await_expression] = STATE(1634),
- [sym_member_expression] = STATE(1230),
- [sym_subscript_expression] = STATE(1230),
- [sym_assignment_expression] = STATE(1634),
- [sym__augmented_assignment_lhs] = STATE(2900),
- [sym_augmented_assignment_expression] = STATE(1634),
- [sym__destructuring_pattern] = STATE(3610),
- [sym_spread_element] = STATE(4907),
- [sym_ternary_expression] = STATE(1634),
- [sym_binary_expression] = STATE(1634),
- [sym_unary_expression] = STATE(1634),
- [sym_update_expression] = STATE(1634),
- [sym_string] = STATE(2271),
- [sym_template_string] = STATE(1650),
- [sym_regex] = STATE(1650),
- [sym_meta_property] = STATE(1650),
- [sym_decorator] = STATE(1244),
- [sym_formal_parameters] = STATE(4344),
- [sym_pattern] = STATE(4544),
- [sym_rest_pattern] = STATE(4039),
- [sym_non_null_expression] = STATE(1230),
- [sym_as_expression] = STATE(1634),
- [sym_satisfies_expression] = STATE(1634),
- [sym_instantiation_expression] = STATE(1634),
- [sym_internal_module] = STATE(1634),
- [sym_nested_type_identifier] = STATE(2828),
- [sym__type_query_member_expression_in_type_annotation] = STATE(3228),
- [sym__type_query_call_expression_in_type_annotation] = STATE(2850),
- [sym_type] = STATE(3859),
- [sym_tuple_parameter] = STATE(5049),
- [sym_optional_tuple_parameter] = STATE(5049),
- [sym_optional_type] = STATE(5049),
- [sym_rest_type] = STATE(5049),
- [sym__tuple_type_member] = STATE(5049),
- [sym_constructor_type] = STATE(2896),
- [sym_primary_type] = STATE(2897),
- [sym_template_literal_type] = STATE(2885),
- [sym_infer_type] = STATE(2896),
- [sym_conditional_type] = STATE(2885),
- [sym_generic_type] = STATE(2885),
- [sym_type_query] = STATE(2885),
- [sym_index_type_query] = STATE(2885),
- [sym_lookup_type] = STATE(2885),
- [sym_literal_type] = STATE(2885),
- [sym__number] = STATE(2903),
- [sym_existential_type] = STATE(2885),
- [sym_flow_maybe_type] = STATE(2885),
- [sym_parenthesized_type] = STATE(2885),
- [sym_predefined_type] = STATE(2885),
- [sym_object_type] = STATE(2885),
- [sym_type_parameters] = STATE(5518),
- [sym_array_type] = STATE(2885),
- [sym_tuple_type] = STATE(2885),
- [sym_readonly_type] = STATE(2896),
- [sym_union_type] = STATE(2885),
- [sym_intersection_type] = STATE(2885),
- [sym_function_type] = STATE(2896),
- [aux_sym_export_statement_repeat1] = STATE(4458),
- [aux_sym_array_repeat1] = STATE(4912),
- [aux_sym_array_pattern_repeat1] = STATE(5165),
- [sym_identifier] = ACTIONS(608),
- [anon_sym_export] = ACTIONS(610),
- [anon_sym_STAR] = ACTIONS(612),
- [anon_sym_type] = ACTIONS(610),
- [anon_sym_namespace] = ACTIONS(614),
- [anon_sym_LBRACE] = ACTIONS(616),
- [anon_sym_COMMA] = ACTIONS(618),
- [anon_sym_typeof] = ACTIONS(620),
- [anon_sym_import] = ACTIONS(133),
- [anon_sym_let] = ACTIONS(610),
- [anon_sym_const] = ACTIONS(135),
- [anon_sym_BANG] = ACTIONS(622),
- [anon_sym_LPAREN] = ACTIONS(140),
- [anon_sym_await] = ACTIONS(624),
- [anon_sym_yield] = ACTIONS(626),
- [anon_sym_LBRACK] = ACTIONS(628),
- [anon_sym_RBRACK] = ACTIONS(678),
- [sym_glimmer_opening_tag] = ACTIONS(148),
- [anon_sym_DQUOTE] = ACTIONS(150),
- [anon_sym_SQUOTE] = ACTIONS(152),
- [anon_sym_class] = ACTIONS(154),
- [anon_sym_async] = ACTIONS(632),
- [anon_sym_function] = ACTIONS(158),
- [anon_sym_new] = ACTIONS(634),
- [anon_sym_using] = ACTIONS(636),
- [anon_sym_DOT_DOT_DOT] = ACTIONS(638),
- [anon_sym_AMP] = ACTIONS(640),
- [anon_sym_PIPE] = ACTIONS(642),
- [anon_sym_PLUS] = ACTIONS(644),
- [anon_sym_DASH] = ACTIONS(644),
- [anon_sym_SLASH] = ACTIONS(646),
- [anon_sym_LT] = ACTIONS(181),
- [anon_sym_TILDE] = ACTIONS(622),
- [anon_sym_void] = ACTIONS(648),
- [anon_sym_delete] = ACTIONS(650),
- [anon_sym_PLUS_PLUS] = ACTIONS(652),
- [anon_sym_DASH_DASH] = ACTIONS(652),
- [sym_comment] = ACTIONS(5),
- [anon_sym_BQUOTE] = ACTIONS(192),
- [sym_number] = ACTIONS(194),
- [sym_private_property_identifier] = ACTIONS(654),
- [sym_this] = ACTIONS(656),
- [sym_super] = ACTIONS(200),
- [sym_true] = ACTIONS(202),
- [sym_false] = ACTIONS(202),
- [sym_null] = ACTIONS(202),
- [sym_undefined] = ACTIONS(658),
- [anon_sym_AT] = ACTIONS(99),
- [anon_sym_static] = ACTIONS(610),
- [anon_sym_readonly] = ACTIONS(660),
- [anon_sym_get] = ACTIONS(610),
- [anon_sym_set] = ACTIONS(610),
- [anon_sym_QMARK] = ACTIONS(662),
- [anon_sym_declare] = ACTIONS(610),
- [anon_sym_public] = ACTIONS(610),
- [anon_sym_private] = ACTIONS(610),
- [anon_sym_protected] = ACTIONS(610),
- [anon_sym_override] = ACTIONS(610),
- [anon_sym_module] = ACTIONS(610),
- [anon_sym_any] = ACTIONS(664),
- [anon_sym_number] = ACTIONS(664),
- [anon_sym_boolean] = ACTIONS(664),
- [anon_sym_string] = ACTIONS(664),
- [anon_sym_symbol] = ACTIONS(664),
- [anon_sym_object] = ACTIONS(664),
- [anon_sym_abstract] = ACTIONS(666),
- [anon_sym_infer] = ACTIONS(668),
- [anon_sym_keyof] = ACTIONS(670),
- [anon_sym_unique] = ACTIONS(218),
- [anon_sym_unknown] = ACTIONS(220),
- [anon_sym_never] = ACTIONS(220),
- [anon_sym_LBRACE_PIPE] = ACTIONS(222),
- [sym_html_comment] = ACTIONS(5),
- },
- [54] = {
- [sym_import] = STATE(3318),
- [sym_parenthesized_expression] = STATE(1251),
- [sym_expression] = STATE(1829),
- [sym_primary_expression] = STATE(1468),
- [sym_yield_expression] = STATE(1634),
- [sym_object] = STATE(1650),
- [sym_object_pattern] = STATE(3610),
- [sym_assignment_pattern] = STATE(5148),
- [sym_array] = STATE(1650),
- [sym_array_pattern] = STATE(3610),
- [sym_glimmer_template] = STATE(1634),
- [sym_jsx_element] = STATE(1634),
- [sym_jsx_opening_element] = STATE(3026),
- [sym_nested_identifier] = STATE(5707),
- [sym_jsx_self_closing_element] = STATE(1634),
- [sym_class] = STATE(1650),
- [sym_function_expression] = STATE(1650),
- [sym_generator_function] = STATE(1650),
- [sym_arrow_function] = STATE(1650),
- [sym__call_signature] = STATE(5828),
- [sym_call_expression] = STATE(1650),
- [sym_new_expression] = STATE(1634),
- [sym_await_expression] = STATE(1634),
- [sym_member_expression] = STATE(1230),
- [sym_subscript_expression] = STATE(1230),
- [sym_assignment_expression] = STATE(1634),
- [sym__augmented_assignment_lhs] = STATE(2900),
- [sym_augmented_assignment_expression] = STATE(1634),
- [sym__destructuring_pattern] = STATE(3610),
- [sym_spread_element] = STATE(4907),
- [sym_ternary_expression] = STATE(1634),
- [sym_binary_expression] = STATE(1634),
- [sym_unary_expression] = STATE(1634),
- [sym_update_expression] = STATE(1634),
- [sym_string] = STATE(2271),
- [sym_template_string] = STATE(1650),
- [sym_regex] = STATE(1650),
- [sym_meta_property] = STATE(1650),
- [sym_decorator] = STATE(1244),
- [sym_formal_parameters] = STATE(4344),
- [sym_pattern] = STATE(4544),
- [sym_rest_pattern] = STATE(4039),
- [sym_non_null_expression] = STATE(1230),
- [sym_as_expression] = STATE(1634),
- [sym_satisfies_expression] = STATE(1634),
- [sym_instantiation_expression] = STATE(1634),
- [sym_internal_module] = STATE(1634),
- [sym_nested_type_identifier] = STATE(2828),
- [sym__type_query_member_expression_in_type_annotation] = STATE(3228),
- [sym__type_query_call_expression_in_type_annotation] = STATE(2850),
- [sym_type] = STATE(3859),
- [sym_tuple_parameter] = STATE(5049),
- [sym_optional_tuple_parameter] = STATE(5049),
- [sym_optional_type] = STATE(5049),
- [sym_rest_type] = STATE(5049),
- [sym__tuple_type_member] = STATE(5049),
- [sym_constructor_type] = STATE(2896),
- [sym_primary_type] = STATE(2897),
- [sym_template_literal_type] = STATE(2885),
- [sym_infer_type] = STATE(2896),
- [sym_conditional_type] = STATE(2885),
- [sym_generic_type] = STATE(2885),
- [sym_type_query] = STATE(2885),
- [sym_index_type_query] = STATE(2885),
- [sym_lookup_type] = STATE(2885),
- [sym_literal_type] = STATE(2885),
- [sym__number] = STATE(2903),
- [sym_existential_type] = STATE(2885),
- [sym_flow_maybe_type] = STATE(2885),
- [sym_parenthesized_type] = STATE(2885),
- [sym_predefined_type] = STATE(2885),
- [sym_object_type] = STATE(2885),
- [sym_type_parameters] = STATE(5518),
- [sym_array_type] = STATE(2885),
- [sym_tuple_type] = STATE(2885),
- [sym_readonly_type] = STATE(2896),
- [sym_union_type] = STATE(2885),
- [sym_intersection_type] = STATE(2885),
- [sym_function_type] = STATE(2896),
- [aux_sym_export_statement_repeat1] = STATE(4458),
- [aux_sym_array_repeat1] = STATE(4912),
- [aux_sym_array_pattern_repeat1] = STATE(5165),
- [sym_identifier] = ACTIONS(608),
- [anon_sym_export] = ACTIONS(610),
- [anon_sym_STAR] = ACTIONS(612),
- [anon_sym_type] = ACTIONS(610),
- [anon_sym_namespace] = ACTIONS(614),
- [anon_sym_LBRACE] = ACTIONS(616),
- [anon_sym_COMMA] = ACTIONS(618),
- [anon_sym_typeof] = ACTIONS(620),
- [anon_sym_import] = ACTIONS(133),
- [anon_sym_let] = ACTIONS(610),
- [anon_sym_const] = ACTIONS(135),
- [anon_sym_BANG] = ACTIONS(622),
- [anon_sym_LPAREN] = ACTIONS(140),
- [anon_sym_await] = ACTIONS(624),
- [anon_sym_yield] = ACTIONS(626),
- [anon_sym_LBRACK] = ACTIONS(628),
- [anon_sym_RBRACK] = ACTIONS(680),
- [sym_glimmer_opening_tag] = ACTIONS(148),
- [anon_sym_DQUOTE] = ACTIONS(150),
- [anon_sym_SQUOTE] = ACTIONS(152),
- [anon_sym_class] = ACTIONS(154),
- [anon_sym_async] = ACTIONS(632),
- [anon_sym_function] = ACTIONS(158),
- [anon_sym_new] = ACTIONS(634),
- [anon_sym_using] = ACTIONS(636),
- [anon_sym_DOT_DOT_DOT] = ACTIONS(638),
- [anon_sym_AMP] = ACTIONS(640),
- [anon_sym_PIPE] = ACTIONS(642),
- [anon_sym_PLUS] = ACTIONS(644),
- [anon_sym_DASH] = ACTIONS(644),
- [anon_sym_SLASH] = ACTIONS(646),
- [anon_sym_LT] = ACTIONS(181),
- [anon_sym_TILDE] = ACTIONS(622),
- [anon_sym_void] = ACTIONS(648),
- [anon_sym_delete] = ACTIONS(650),
- [anon_sym_PLUS_PLUS] = ACTIONS(652),
- [anon_sym_DASH_DASH] = ACTIONS(652),
- [sym_comment] = ACTIONS(5),
- [anon_sym_BQUOTE] = ACTIONS(192),
- [sym_number] = ACTIONS(194),
- [sym_private_property_identifier] = ACTIONS(654),
- [sym_this] = ACTIONS(656),
- [sym_super] = ACTIONS(200),
- [sym_true] = ACTIONS(202),
- [sym_false] = ACTIONS(202),
- [sym_null] = ACTIONS(202),
- [sym_undefined] = ACTIONS(658),
- [anon_sym_AT] = ACTIONS(99),
- [anon_sym_static] = ACTIONS(610),
- [anon_sym_readonly] = ACTIONS(660),
- [anon_sym_get] = ACTIONS(610),
- [anon_sym_set] = ACTIONS(610),
- [anon_sym_QMARK] = ACTIONS(662),
- [anon_sym_declare] = ACTIONS(610),
- [anon_sym_public] = ACTIONS(610),
- [anon_sym_private] = ACTIONS(610),
- [anon_sym_protected] = ACTIONS(610),
- [anon_sym_override] = ACTIONS(610),
- [anon_sym_module] = ACTIONS(610),
- [anon_sym_any] = ACTIONS(664),
- [anon_sym_number] = ACTIONS(664),
- [anon_sym_boolean] = ACTIONS(664),
- [anon_sym_string] = ACTIONS(664),
- [anon_sym_symbol] = ACTIONS(664),
- [anon_sym_object] = ACTIONS(664),
- [anon_sym_abstract] = ACTIONS(666),
- [anon_sym_infer] = ACTIONS(668),
- [anon_sym_keyof] = ACTIONS(670),
- [anon_sym_unique] = ACTIONS(218),
- [anon_sym_unknown] = ACTIONS(220),
- [anon_sym_never] = ACTIONS(220),
- [anon_sym_LBRACE_PIPE] = ACTIONS(222),
- [sym_html_comment] = ACTIONS(5),
- },
- [55] = {
- [sym_import] = STATE(3318),
- [sym_parenthesized_expression] = STATE(1251),
- [sym_expression] = STATE(1883),
- [sym_primary_expression] = STATE(1468),
- [sym_yield_expression] = STATE(1634),
- [sym_object] = STATE(1650),
- [sym_object_pattern] = STATE(3610),
- [sym_assignment_pattern] = STATE(5148),
- [sym_array] = STATE(1650),
- [sym_array_pattern] = STATE(3610),
- [sym_glimmer_template] = STATE(1634),
- [sym_jsx_element] = STATE(1634),
- [sym_jsx_opening_element] = STATE(3026),
- [sym_nested_identifier] = STATE(5707),
- [sym_jsx_self_closing_element] = STATE(1634),
- [sym_class] = STATE(1650),
- [sym_function_expression] = STATE(1650),
- [sym_generator_function] = STATE(1650),
- [sym_arrow_function] = STATE(1650),
- [sym__call_signature] = STATE(5828),
- [sym_call_expression] = STATE(1650),
- [sym_new_expression] = STATE(1634),
- [sym_await_expression] = STATE(1634),
- [sym_member_expression] = STATE(1230),
- [sym_subscript_expression] = STATE(1230),
- [sym_assignment_expression] = STATE(1634),
- [sym__augmented_assignment_lhs] = STATE(2900),
- [sym_augmented_assignment_expression] = STATE(1634),
- [sym__destructuring_pattern] = STATE(3610),
- [sym_spread_element] = STATE(5152),
- [sym_ternary_expression] = STATE(1634),
- [sym_binary_expression] = STATE(1634),
- [sym_unary_expression] = STATE(1634),
- [sym_update_expression] = STATE(1634),
- [sym_string] = STATE(2271),
- [sym_template_string] = STATE(1650),
- [sym_regex] = STATE(1650),
- [sym_meta_property] = STATE(1650),
- [sym_decorator] = STATE(1244),
- [sym_formal_parameters] = STATE(4344),
- [sym_pattern] = STATE(4544),
- [sym_rest_pattern] = STATE(4039),
- [sym_non_null_expression] = STATE(1230),
- [sym_as_expression] = STATE(1634),
- [sym_satisfies_expression] = STATE(1634),
- [sym_instantiation_expression] = STATE(1634),
- [sym_internal_module] = STATE(1634),
- [sym_nested_type_identifier] = STATE(2828),
- [sym__type_query_member_expression_in_type_annotation] = STATE(3228),
- [sym__type_query_call_expression_in_type_annotation] = STATE(2850),
- [sym_type] = STATE(3859),
- [sym_tuple_parameter] = STATE(5049),
- [sym_optional_tuple_parameter] = STATE(5049),
- [sym_optional_type] = STATE(5049),
- [sym_rest_type] = STATE(5049),
- [sym__tuple_type_member] = STATE(5049),
- [sym_constructor_type] = STATE(2896),
- [sym_primary_type] = STATE(2897),
- [sym_template_literal_type] = STATE(2885),
- [sym_infer_type] = STATE(2896),
- [sym_conditional_type] = STATE(2885),
- [sym_generic_type] = STATE(2885),
- [sym_type_query] = STATE(2885),
- [sym_index_type_query] = STATE(2885),
- [sym_lookup_type] = STATE(2885),
- [sym_literal_type] = STATE(2885),
- [sym__number] = STATE(2903),
- [sym_existential_type] = STATE(2885),
- [sym_flow_maybe_type] = STATE(2885),
- [sym_parenthesized_type] = STATE(2885),
- [sym_predefined_type] = STATE(2885),
- [sym_object_type] = STATE(2885),
- [sym_type_parameters] = STATE(5518),
- [sym_array_type] = STATE(2885),
- [sym_tuple_type] = STATE(2885),
- [sym_readonly_type] = STATE(2896),
- [sym_union_type] = STATE(2885),
- [sym_intersection_type] = STATE(2885),
- [sym_function_type] = STATE(2896),
- [aux_sym_export_statement_repeat1] = STATE(4458),
- [aux_sym_array_repeat1] = STATE(5155),
- [aux_sym_array_pattern_repeat1] = STATE(5165),
- [sym_identifier] = ACTIONS(608),
- [anon_sym_export] = ACTIONS(610),
- [anon_sym_STAR] = ACTIONS(612),
- [anon_sym_type] = ACTIONS(610),
- [anon_sym_namespace] = ACTIONS(614),
- [anon_sym_LBRACE] = ACTIONS(616),
- [anon_sym_COMMA] = ACTIONS(618),
- [anon_sym_typeof] = ACTIONS(620),
- [anon_sym_import] = ACTIONS(133),
- [anon_sym_let] = ACTIONS(610),
- [anon_sym_const] = ACTIONS(135),
- [anon_sym_BANG] = ACTIONS(622),
- [anon_sym_LPAREN] = ACTIONS(140),
- [anon_sym_await] = ACTIONS(624),
- [anon_sym_yield] = ACTIONS(626),
- [anon_sym_LBRACK] = ACTIONS(628),
- [anon_sym_RBRACK] = ACTIONS(682),
- [sym_glimmer_opening_tag] = ACTIONS(148),
- [anon_sym_DQUOTE] = ACTIONS(150),
- [anon_sym_SQUOTE] = ACTIONS(152),
- [anon_sym_class] = ACTIONS(154),
- [anon_sym_async] = ACTIONS(632),
- [anon_sym_function] = ACTIONS(158),
- [anon_sym_new] = ACTIONS(634),
- [anon_sym_using] = ACTIONS(636),
- [anon_sym_DOT_DOT_DOT] = ACTIONS(638),
- [anon_sym_AMP] = ACTIONS(640),
- [anon_sym_PIPE] = ACTIONS(642),
- [anon_sym_PLUS] = ACTIONS(644),
- [anon_sym_DASH] = ACTIONS(644),
- [anon_sym_SLASH] = ACTIONS(646),
- [anon_sym_LT] = ACTIONS(181),
- [anon_sym_TILDE] = ACTIONS(622),
- [anon_sym_void] = ACTIONS(648),
- [anon_sym_delete] = ACTIONS(650),
- [anon_sym_PLUS_PLUS] = ACTIONS(652),
- [anon_sym_DASH_DASH] = ACTIONS(652),
- [sym_comment] = ACTIONS(5),
- [anon_sym_BQUOTE] = ACTIONS(192),
- [sym_number] = ACTIONS(194),
- [sym_private_property_identifier] = ACTIONS(654),
- [sym_this] = ACTIONS(656),
- [sym_super] = ACTIONS(200),
- [sym_true] = ACTIONS(202),
- [sym_false] = ACTIONS(202),
- [sym_null] = ACTIONS(202),
- [sym_undefined] = ACTIONS(658),
- [anon_sym_AT] = ACTIONS(99),
- [anon_sym_static] = ACTIONS(610),
- [anon_sym_readonly] = ACTIONS(660),
- [anon_sym_get] = ACTIONS(610),
- [anon_sym_set] = ACTIONS(610),
- [anon_sym_QMARK] = ACTIONS(662),
- [anon_sym_declare] = ACTIONS(610),
- [anon_sym_public] = ACTIONS(610),
- [anon_sym_private] = ACTIONS(610),
- [anon_sym_protected] = ACTIONS(610),
- [anon_sym_override] = ACTIONS(610),
- [anon_sym_module] = ACTIONS(610),
- [anon_sym_any] = ACTIONS(664),
- [anon_sym_number] = ACTIONS(664),
- [anon_sym_boolean] = ACTIONS(664),
- [anon_sym_string] = ACTIONS(664),
- [anon_sym_symbol] = ACTIONS(664),
- [anon_sym_object] = ACTIONS(664),
- [anon_sym_abstract] = ACTIONS(666),
- [anon_sym_infer] = ACTIONS(668),
- [anon_sym_keyof] = ACTIONS(670),
- [anon_sym_unique] = ACTIONS(218),
- [anon_sym_unknown] = ACTIONS(220),
- [anon_sym_never] = ACTIONS(220),
- [anon_sym_LBRACE_PIPE] = ACTIONS(222),
- [sym_html_comment] = ACTIONS(5),
- },
- [56] = {
- [sym_import] = STATE(3318),
- [sym_parenthesized_expression] = STATE(1251),
- [sym_expression] = STATE(1829),
- [sym_primary_expression] = STATE(1468),
- [sym_yield_expression] = STATE(1634),
- [sym_object] = STATE(1650),
- [sym_object_pattern] = STATE(3610),
- [sym_assignment_pattern] = STATE(5148),
- [sym_array] = STATE(1650),
- [sym_array_pattern] = STATE(3610),
- [sym_glimmer_template] = STATE(1634),
- [sym_jsx_element] = STATE(1634),
- [sym_jsx_opening_element] = STATE(3026),
- [sym_nested_identifier] = STATE(5707),
- [sym_jsx_self_closing_element] = STATE(1634),
- [sym_class] = STATE(1650),
- [sym_function_expression] = STATE(1650),
- [sym_generator_function] = STATE(1650),
- [sym_arrow_function] = STATE(1650),
- [sym__call_signature] = STATE(5828),
- [sym_call_expression] = STATE(1650),
- [sym_new_expression] = STATE(1634),
- [sym_await_expression] = STATE(1634),
- [sym_member_expression] = STATE(1230),
- [sym_subscript_expression] = STATE(1230),
- [sym_assignment_expression] = STATE(1634),
- [sym__augmented_assignment_lhs] = STATE(2900),
- [sym_augmented_assignment_expression] = STATE(1634),
- [sym__destructuring_pattern] = STATE(3610),
- [sym_spread_element] = STATE(4907),
- [sym_ternary_expression] = STATE(1634),
- [sym_binary_expression] = STATE(1634),
- [sym_unary_expression] = STATE(1634),
- [sym_update_expression] = STATE(1634),
- [sym_string] = STATE(2271),
- [sym_template_string] = STATE(1650),
- [sym_regex] = STATE(1650),
- [sym_meta_property] = STATE(1650),
- [sym_decorator] = STATE(1244),
- [sym_formal_parameters] = STATE(4344),
- [sym_pattern] = STATE(4544),
- [sym_rest_pattern] = STATE(4039),
- [sym_non_null_expression] = STATE(1230),
- [sym_as_expression] = STATE(1634),
- [sym_satisfies_expression] = STATE(1634),
- [sym_instantiation_expression] = STATE(1634),
- [sym_internal_module] = STATE(1634),
- [sym_nested_type_identifier] = STATE(2828),
- [sym__type_query_member_expression_in_type_annotation] = STATE(3228),
- [sym__type_query_call_expression_in_type_annotation] = STATE(2850),
- [sym_type] = STATE(3859),
- [sym_tuple_parameter] = STATE(5049),
- [sym_optional_tuple_parameter] = STATE(5049),
- [sym_optional_type] = STATE(5049),
- [sym_rest_type] = STATE(5049),
- [sym__tuple_type_member] = STATE(5049),
- [sym_constructor_type] = STATE(2896),
- [sym_primary_type] = STATE(2897),
- [sym_template_literal_type] = STATE(2885),
- [sym_infer_type] = STATE(2896),
- [sym_conditional_type] = STATE(2885),
- [sym_generic_type] = STATE(2885),
- [sym_type_query] = STATE(2885),
- [sym_index_type_query] = STATE(2885),
- [sym_lookup_type] = STATE(2885),
- [sym_literal_type] = STATE(2885),
- [sym__number] = STATE(2903),
- [sym_existential_type] = STATE(2885),
- [sym_flow_maybe_type] = STATE(2885),
- [sym_parenthesized_type] = STATE(2885),
- [sym_predefined_type] = STATE(2885),
- [sym_object_type] = STATE(2885),
- [sym_type_parameters] = STATE(5518),
- [sym_array_type] = STATE(2885),
- [sym_tuple_type] = STATE(2885),
- [sym_readonly_type] = STATE(2896),
- [sym_union_type] = STATE(2885),
- [sym_intersection_type] = STATE(2885),
- [sym_function_type] = STATE(2896),
- [aux_sym_export_statement_repeat1] = STATE(4458),
- [aux_sym_array_repeat1] = STATE(4912),
- [aux_sym_array_pattern_repeat1] = STATE(5165),
- [sym_identifier] = ACTIONS(608),
- [anon_sym_export] = ACTIONS(610),
- [anon_sym_STAR] = ACTIONS(612),
- [anon_sym_type] = ACTIONS(610),
- [anon_sym_namespace] = ACTIONS(614),
- [anon_sym_LBRACE] = ACTIONS(616),
- [anon_sym_COMMA] = ACTIONS(618),
- [anon_sym_typeof] = ACTIONS(620),
- [anon_sym_import] = ACTIONS(133),
- [anon_sym_let] = ACTIONS(610),
- [anon_sym_const] = ACTIONS(135),
- [anon_sym_BANG] = ACTIONS(622),
- [anon_sym_LPAREN] = ACTIONS(140),
- [anon_sym_await] = ACTIONS(624),
- [anon_sym_yield] = ACTIONS(626),
- [anon_sym_LBRACK] = ACTIONS(628),
- [anon_sym_RBRACK] = ACTIONS(684),
- [sym_glimmer_opening_tag] = ACTIONS(148),
- [anon_sym_DQUOTE] = ACTIONS(150),
- [anon_sym_SQUOTE] = ACTIONS(152),
- [anon_sym_class] = ACTIONS(154),
- [anon_sym_async] = ACTIONS(632),
- [anon_sym_function] = ACTIONS(158),
- [anon_sym_new] = ACTIONS(634),
- [anon_sym_using] = ACTIONS(636),
- [anon_sym_DOT_DOT_DOT] = ACTIONS(638),
- [anon_sym_AMP] = ACTIONS(640),
- [anon_sym_PIPE] = ACTIONS(642),
- [anon_sym_PLUS] = ACTIONS(644),
- [anon_sym_DASH] = ACTIONS(644),
- [anon_sym_SLASH] = ACTIONS(646),
- [anon_sym_LT] = ACTIONS(181),
- [anon_sym_TILDE] = ACTIONS(622),
- [anon_sym_void] = ACTIONS(648),
- [anon_sym_delete] = ACTIONS(650),
- [anon_sym_PLUS_PLUS] = ACTIONS(652),
- [anon_sym_DASH_DASH] = ACTIONS(652),
- [sym_comment] = ACTIONS(5),
- [anon_sym_BQUOTE] = ACTIONS(192),
- [sym_number] = ACTIONS(194),
- [sym_private_property_identifier] = ACTIONS(654),
- [sym_this] = ACTIONS(656),
- [sym_super] = ACTIONS(200),
- [sym_true] = ACTIONS(202),
- [sym_false] = ACTIONS(202),
- [sym_null] = ACTIONS(202),
- [sym_undefined] = ACTIONS(658),
- [anon_sym_AT] = ACTIONS(99),
- [anon_sym_static] = ACTIONS(610),
- [anon_sym_readonly] = ACTIONS(660),
- [anon_sym_get] = ACTIONS(610),
- [anon_sym_set] = ACTIONS(610),
- [anon_sym_QMARK] = ACTIONS(662),
- [anon_sym_declare] = ACTIONS(610),
- [anon_sym_public] = ACTIONS(610),
- [anon_sym_private] = ACTIONS(610),
- [anon_sym_protected] = ACTIONS(610),
- [anon_sym_override] = ACTIONS(610),
- [anon_sym_module] = ACTIONS(610),
- [anon_sym_any] = ACTIONS(664),
- [anon_sym_number] = ACTIONS(664),
- [anon_sym_boolean] = ACTIONS(664),
- [anon_sym_string] = ACTIONS(664),
- [anon_sym_symbol] = ACTIONS(664),
- [anon_sym_object] = ACTIONS(664),
- [anon_sym_abstract] = ACTIONS(666),
- [anon_sym_infer] = ACTIONS(668),
- [anon_sym_keyof] = ACTIONS(670),
- [anon_sym_unique] = ACTIONS(218),
- [anon_sym_unknown] = ACTIONS(220),
- [anon_sym_never] = ACTIONS(220),
- [anon_sym_LBRACE_PIPE] = ACTIONS(222),
- [sym_html_comment] = ACTIONS(5),
- },
- [57] = {
- [sym_import] = STATE(3318),
- [sym_parenthesized_expression] = STATE(1251),
- [sym_expression] = STATE(1829),
- [sym_primary_expression] = STATE(1468),
- [sym_yield_expression] = STATE(1634),
- [sym_object] = STATE(1650),
- [sym_object_pattern] = STATE(3610),
- [sym_assignment_pattern] = STATE(5148),
- [sym_array] = STATE(1650),
- [sym_array_pattern] = STATE(3610),
- [sym_glimmer_template] = STATE(1634),
- [sym_jsx_element] = STATE(1634),
- [sym_jsx_opening_element] = STATE(3026),
- [sym_nested_identifier] = STATE(5707),
- [sym_jsx_self_closing_element] = STATE(1634),
- [sym_class] = STATE(1650),
- [sym_function_expression] = STATE(1650),
- [sym_generator_function] = STATE(1650),
- [sym_arrow_function] = STATE(1650),
- [sym__call_signature] = STATE(5828),
- [sym_call_expression] = STATE(1650),
- [sym_new_expression] = STATE(1634),
- [sym_await_expression] = STATE(1634),
- [sym_member_expression] = STATE(1230),
- [sym_subscript_expression] = STATE(1230),
- [sym_assignment_expression] = STATE(1634),
- [sym__augmented_assignment_lhs] = STATE(2900),
- [sym_augmented_assignment_expression] = STATE(1634),
- [sym__destructuring_pattern] = STATE(3610),
- [sym_spread_element] = STATE(4907),
- [sym_ternary_expression] = STATE(1634),
- [sym_binary_expression] = STATE(1634),
- [sym_unary_expression] = STATE(1634),
- [sym_update_expression] = STATE(1634),
- [sym_string] = STATE(2271),
- [sym_template_string] = STATE(1650),
- [sym_regex] = STATE(1650),
- [sym_meta_property] = STATE(1650),
- [sym_decorator] = STATE(1244),
- [sym_formal_parameters] = STATE(4344),
- [sym_pattern] = STATE(4544),
- [sym_rest_pattern] = STATE(4039),
- [sym_non_null_expression] = STATE(1230),
- [sym_as_expression] = STATE(1634),
- [sym_satisfies_expression] = STATE(1634),
- [sym_instantiation_expression] = STATE(1634),
- [sym_internal_module] = STATE(1634),
- [sym_nested_type_identifier] = STATE(2828),
- [sym__type_query_member_expression_in_type_annotation] = STATE(3228),
- [sym__type_query_call_expression_in_type_annotation] = STATE(2850),
- [sym_type] = STATE(3859),
- [sym_tuple_parameter] = STATE(5049),
- [sym_optional_tuple_parameter] = STATE(5049),
- [sym_optional_type] = STATE(5049),
- [sym_rest_type] = STATE(5049),
- [sym__tuple_type_member] = STATE(5049),
- [sym_constructor_type] = STATE(2896),
- [sym_primary_type] = STATE(2897),
- [sym_template_literal_type] = STATE(2885),
- [sym_infer_type] = STATE(2896),
- [sym_conditional_type] = STATE(2885),
- [sym_generic_type] = STATE(2885),
- [sym_type_query] = STATE(2885),
- [sym_index_type_query] = STATE(2885),
- [sym_lookup_type] = STATE(2885),
- [sym_literal_type] = STATE(2885),
- [sym__number] = STATE(2903),
- [sym_existential_type] = STATE(2885),
- [sym_flow_maybe_type] = STATE(2885),
- [sym_parenthesized_type] = STATE(2885),
- [sym_predefined_type] = STATE(2885),
- [sym_object_type] = STATE(2885),
- [sym_type_parameters] = STATE(5518),
- [sym_array_type] = STATE(2885),
- [sym_tuple_type] = STATE(2885),
- [sym_readonly_type] = STATE(2896),
- [sym_union_type] = STATE(2885),
- [sym_intersection_type] = STATE(2885),
- [sym_function_type] = STATE(2896),
- [aux_sym_export_statement_repeat1] = STATE(4458),
- [aux_sym_array_repeat1] = STATE(4912),
- [aux_sym_array_pattern_repeat1] = STATE(5165),
- [sym_identifier] = ACTIONS(608),
- [anon_sym_export] = ACTIONS(610),
- [anon_sym_STAR] = ACTIONS(612),
- [anon_sym_type] = ACTIONS(610),
- [anon_sym_namespace] = ACTIONS(614),
- [anon_sym_LBRACE] = ACTIONS(616),
- [anon_sym_COMMA] = ACTIONS(618),
- [anon_sym_typeof] = ACTIONS(620),
- [anon_sym_import] = ACTIONS(133),
- [anon_sym_let] = ACTIONS(610),
- [anon_sym_const] = ACTIONS(135),
- [anon_sym_BANG] = ACTIONS(622),
- [anon_sym_LPAREN] = ACTIONS(140),
- [anon_sym_await] = ACTIONS(624),
- [anon_sym_yield] = ACTIONS(626),
- [anon_sym_LBRACK] = ACTIONS(628),
- [anon_sym_RBRACK] = ACTIONS(686),
- [sym_glimmer_opening_tag] = ACTIONS(148),
- [anon_sym_DQUOTE] = ACTIONS(150),
- [anon_sym_SQUOTE] = ACTIONS(152),
- [anon_sym_class] = ACTIONS(154),
- [anon_sym_async] = ACTIONS(632),
- [anon_sym_function] = ACTIONS(158),
- [anon_sym_new] = ACTIONS(634),
- [anon_sym_using] = ACTIONS(636),
- [anon_sym_DOT_DOT_DOT] = ACTIONS(638),
- [anon_sym_AMP] = ACTIONS(640),
- [anon_sym_PIPE] = ACTIONS(642),
- [anon_sym_PLUS] = ACTIONS(644),
- [anon_sym_DASH] = ACTIONS(644),
- [anon_sym_SLASH] = ACTIONS(646),
- [anon_sym_LT] = ACTIONS(181),
- [anon_sym_TILDE] = ACTIONS(622),
- [anon_sym_void] = ACTIONS(648),
- [anon_sym_delete] = ACTIONS(650),
- [anon_sym_PLUS_PLUS] = ACTIONS(652),
- [anon_sym_DASH_DASH] = ACTIONS(652),
- [sym_comment] = ACTIONS(5),
- [anon_sym_BQUOTE] = ACTIONS(192),
- [sym_number] = ACTIONS(194),
- [sym_private_property_identifier] = ACTIONS(654),
- [sym_this] = ACTIONS(656),
- [sym_super] = ACTIONS(200),
- [sym_true] = ACTIONS(202),
- [sym_false] = ACTIONS(202),
- [sym_null] = ACTIONS(202),
- [sym_undefined] = ACTIONS(658),
- [anon_sym_AT] = ACTIONS(99),
- [anon_sym_static] = ACTIONS(610),
- [anon_sym_readonly] = ACTIONS(660),
- [anon_sym_get] = ACTIONS(610),
- [anon_sym_set] = ACTIONS(610),
- [anon_sym_QMARK] = ACTIONS(662),
- [anon_sym_declare] = ACTIONS(610),
- [anon_sym_public] = ACTIONS(610),
- [anon_sym_private] = ACTIONS(610),
- [anon_sym_protected] = ACTIONS(610),
- [anon_sym_override] = ACTIONS(610),
- [anon_sym_module] = ACTIONS(610),
- [anon_sym_any] = ACTIONS(664),
- [anon_sym_number] = ACTIONS(664),
- [anon_sym_boolean] = ACTIONS(664),
- [anon_sym_string] = ACTIONS(664),
- [anon_sym_symbol] = ACTIONS(664),
- [anon_sym_object] = ACTIONS(664),
- [anon_sym_abstract] = ACTIONS(666),
- [anon_sym_infer] = ACTIONS(668),
- [anon_sym_keyof] = ACTIONS(670),
- [anon_sym_unique] = ACTIONS(218),
- [anon_sym_unknown] = ACTIONS(220),
- [anon_sym_never] = ACTIONS(220),
- [anon_sym_LBRACE_PIPE] = ACTIONS(222),
- [sym_html_comment] = ACTIONS(5),
- },
- [58] = {
- [sym_import] = STATE(3318),
- [sym_parenthesized_expression] = STATE(1251),
- [sym_expression] = STATE(1829),
- [sym_primary_expression] = STATE(1468),
- [sym_yield_expression] = STATE(1634),
- [sym_object] = STATE(1650),
- [sym_object_pattern] = STATE(3610),
- [sym_assignment_pattern] = STATE(5148),
- [sym_array] = STATE(1650),
- [sym_array_pattern] = STATE(3610),
- [sym_glimmer_template] = STATE(1634),
- [sym_jsx_element] = STATE(1634),
- [sym_jsx_opening_element] = STATE(3026),
- [sym_nested_identifier] = STATE(5707),
- [sym_jsx_self_closing_element] = STATE(1634),
- [sym_class] = STATE(1650),
- [sym_function_expression] = STATE(1650),
- [sym_generator_function] = STATE(1650),
- [sym_arrow_function] = STATE(1650),
- [sym__call_signature] = STATE(5828),
- [sym_call_expression] = STATE(1650),
- [sym_new_expression] = STATE(1634),
- [sym_await_expression] = STATE(1634),
- [sym_member_expression] = STATE(1230),
- [sym_subscript_expression] = STATE(1230),
- [sym_assignment_expression] = STATE(1634),
- [sym__augmented_assignment_lhs] = STATE(2900),
- [sym_augmented_assignment_expression] = STATE(1634),
- [sym__destructuring_pattern] = STATE(3610),
- [sym_spread_element] = STATE(4907),
- [sym_ternary_expression] = STATE(1634),
- [sym_binary_expression] = STATE(1634),
- [sym_unary_expression] = STATE(1634),
- [sym_update_expression] = STATE(1634),
- [sym_string] = STATE(2271),
- [sym_template_string] = STATE(1650),
- [sym_regex] = STATE(1650),
- [sym_meta_property] = STATE(1650),
- [sym_decorator] = STATE(1244),
- [sym_formal_parameters] = STATE(4344),
- [sym_pattern] = STATE(4544),
- [sym_rest_pattern] = STATE(4039),
- [sym_non_null_expression] = STATE(1230),
- [sym_as_expression] = STATE(1634),
- [sym_satisfies_expression] = STATE(1634),
- [sym_instantiation_expression] = STATE(1634),
- [sym_internal_module] = STATE(1634),
- [sym_nested_type_identifier] = STATE(2828),
- [sym__type_query_member_expression_in_type_annotation] = STATE(3228),
- [sym__type_query_call_expression_in_type_annotation] = STATE(2850),
- [sym_type] = STATE(3859),
- [sym_tuple_parameter] = STATE(4889),
- [sym_optional_tuple_parameter] = STATE(4889),
- [sym_optional_type] = STATE(4889),
- [sym_rest_type] = STATE(4889),
- [sym__tuple_type_member] = STATE(4889),
- [sym_constructor_type] = STATE(2896),
- [sym_primary_type] = STATE(2897),
- [sym_template_literal_type] = STATE(2885),
- [sym_infer_type] = STATE(2896),
- [sym_conditional_type] = STATE(2885),
- [sym_generic_type] = STATE(2885),
- [sym_type_query] = STATE(2885),
- [sym_index_type_query] = STATE(2885),
- [sym_lookup_type] = STATE(2885),
- [sym_literal_type] = STATE(2885),
- [sym__number] = STATE(2903),
- [sym_existential_type] = STATE(2885),
- [sym_flow_maybe_type] = STATE(2885),
- [sym_parenthesized_type] = STATE(2885),
- [sym_predefined_type] = STATE(2885),
- [sym_object_type] = STATE(2885),
- [sym_type_parameters] = STATE(5518),
- [sym_array_type] = STATE(2885),
- [sym_tuple_type] = STATE(2885),
- [sym_readonly_type] = STATE(2896),
- [sym_union_type] = STATE(2885),
- [sym_intersection_type] = STATE(2885),
- [sym_function_type] = STATE(2896),
- [aux_sym_export_statement_repeat1] = STATE(4458),
- [aux_sym_array_repeat1] = STATE(4912),
- [aux_sym_array_pattern_repeat1] = STATE(5165),
- [sym_identifier] = ACTIONS(608),
- [anon_sym_export] = ACTIONS(610),
- [anon_sym_STAR] = ACTIONS(612),
- [anon_sym_type] = ACTIONS(610),
- [anon_sym_namespace] = ACTIONS(614),
- [anon_sym_LBRACE] = ACTIONS(616),
- [anon_sym_COMMA] = ACTIONS(688),
- [anon_sym_typeof] = ACTIONS(620),
- [anon_sym_import] = ACTIONS(133),
- [anon_sym_let] = ACTIONS(610),
- [anon_sym_const] = ACTIONS(135),
- [anon_sym_BANG] = ACTIONS(622),
- [anon_sym_LPAREN] = ACTIONS(140),
- [anon_sym_await] = ACTIONS(624),
- [anon_sym_yield] = ACTIONS(626),
- [anon_sym_LBRACK] = ACTIONS(628),
- [anon_sym_RBRACK] = ACTIONS(690),
- [sym_glimmer_opening_tag] = ACTIONS(148),
- [anon_sym_DQUOTE] = ACTIONS(150),
- [anon_sym_SQUOTE] = ACTIONS(152),
- [anon_sym_class] = ACTIONS(154),
- [anon_sym_async] = ACTIONS(632),
- [anon_sym_function] = ACTIONS(158),
- [anon_sym_new] = ACTIONS(634),
- [anon_sym_using] = ACTIONS(636),
- [anon_sym_DOT_DOT_DOT] = ACTIONS(638),
- [anon_sym_AMP] = ACTIONS(640),
- [anon_sym_PIPE] = ACTIONS(642),
- [anon_sym_PLUS] = ACTIONS(644),
- [anon_sym_DASH] = ACTIONS(644),
- [anon_sym_SLASH] = ACTIONS(646),
- [anon_sym_LT] = ACTIONS(181),
- [anon_sym_TILDE] = ACTIONS(622),
- [anon_sym_void] = ACTIONS(648),
- [anon_sym_delete] = ACTIONS(650),
- [anon_sym_PLUS_PLUS] = ACTIONS(652),
- [anon_sym_DASH_DASH] = ACTIONS(652),
- [sym_comment] = ACTIONS(5),
- [anon_sym_BQUOTE] = ACTIONS(192),
- [sym_number] = ACTIONS(194),
- [sym_private_property_identifier] = ACTIONS(654),
- [sym_this] = ACTIONS(656),
- [sym_super] = ACTIONS(200),
- [sym_true] = ACTIONS(202),
- [sym_false] = ACTIONS(202),
- [sym_null] = ACTIONS(202),
- [sym_undefined] = ACTIONS(658),
- [anon_sym_AT] = ACTIONS(99),
- [anon_sym_static] = ACTIONS(610),
- [anon_sym_readonly] = ACTIONS(660),
- [anon_sym_get] = ACTIONS(610),
- [anon_sym_set] = ACTIONS(610),
- [anon_sym_QMARK] = ACTIONS(662),
- [anon_sym_declare] = ACTIONS(610),
- [anon_sym_public] = ACTIONS(610),
- [anon_sym_private] = ACTIONS(610),
- [anon_sym_protected] = ACTIONS(610),
- [anon_sym_override] = ACTIONS(610),
- [anon_sym_module] = ACTIONS(610),
- [anon_sym_any] = ACTIONS(664),
- [anon_sym_number] = ACTIONS(664),
- [anon_sym_boolean] = ACTIONS(664),
- [anon_sym_string] = ACTIONS(664),
- [anon_sym_symbol] = ACTIONS(664),
- [anon_sym_object] = ACTIONS(664),
- [anon_sym_abstract] = ACTIONS(666),
- [anon_sym_infer] = ACTIONS(668),
- [anon_sym_keyof] = ACTIONS(670),
- [anon_sym_unique] = ACTIONS(218),
- [anon_sym_unknown] = ACTIONS(220),
- [anon_sym_never] = ACTIONS(220),
- [anon_sym_LBRACE_PIPE] = ACTIONS(222),
- [sym_html_comment] = ACTIONS(5),
- },
- [59] = {
- [sym_export_statement] = STATE(854),
- [sym_declaration] = STATE(854),
- [sym_import] = STATE(3306),
- [sym_import_statement] = STATE(854),
- [sym_statement] = STATE(767),
- [sym_expression_statement] = STATE(854),
- [sym_variable_declaration] = STATE(861),
- [sym_lexical_declaration] = STATE(861),
- [sym_statement_block] = STATE(854),
- [sym_if_statement] = STATE(854),
- [sym_switch_statement] = STATE(854),
- [sym_for_statement] = STATE(854),
- [sym_for_in_statement] = STATE(854),
- [sym_while_statement] = STATE(854),
- [sym_do_statement] = STATE(854),
- [sym_try_statement] = STATE(854),
- [sym_with_statement] = STATE(854),
- [sym_break_statement] = STATE(854),
- [sym_continue_statement] = STATE(854),
- [sym_debugger_statement] = STATE(854),
- [sym_return_statement] = STATE(854),
- [sym_throw_statement] = STATE(854),
- [sym_empty_statement] = STATE(854),
- [sym_labeled_statement] = STATE(854),
- [sym_parenthesized_expression] = STATE(1294),
- [sym_expression] = STATE(1705),
- [sym_primary_expression] = STATE(1946),
- [sym_yield_expression] = STATE(2234),
- [sym_object] = STATE(2310),
- [sym_object_pattern] = STATE(5667),
- [sym_array] = STATE(2310),
- [sym_array_pattern] = STATE(5667),
- [sym_glimmer_template] = STATE(2234),
- [sym_jsx_element] = STATE(2234),
- [sym_jsx_opening_element] = STATE(3051),
- [sym_jsx_self_closing_element] = STATE(2234),
- [sym_class] = STATE(2310),
- [sym_class_declaration] = STATE(861),
- [sym_function_expression] = STATE(2310),
- [sym_function_declaration] = STATE(861),
- [sym_generator_function] = STATE(2310),
- [sym_generator_function_declaration] = STATE(861),
- [sym_arrow_function] = STATE(2310),
- [sym__call_signature] = STATE(5809),
- [sym_call_expression] = STATE(2310),
- [sym_new_expression] = STATE(2234),
- [sym_await_expression] = STATE(2234),
- [sym_member_expression] = STATE(1294),
- [sym_subscript_expression] = STATE(1294),
- [sym_assignment_expression] = STATE(2234),
- [sym__augmented_assignment_lhs] = STATE(2875),
- [sym_augmented_assignment_expression] = STATE(2234),
- [sym__destructuring_pattern] = STATE(5667),
- [sym_ternary_expression] = STATE(2234),
- [sym_binary_expression] = STATE(2234),
- [sym_unary_expression] = STATE(2234),
- [sym_update_expression] = STATE(2234),
- [sym_sequence_expression] = STATE(5482),
- [sym_string] = STATE(2310),
- [sym_template_string] = STATE(2310),
- [sym_regex] = STATE(2310),
- [sym_meta_property] = STATE(2310),
- [sym_decorator] = STATE(1244),
- [sym_formal_parameters] = STATE(3742),
- [sym_non_null_expression] = STATE(1294),
- [sym_function_signature] = STATE(861),
- [sym_as_expression] = STATE(2234),
- [sym_satisfies_expression] = STATE(2234),
- [sym_instantiation_expression] = STATE(2234),
- [sym_ambient_declaration] = STATE(861),
- [sym_abstract_class_declaration] = STATE(861),
- [sym_module] = STATE(861),
- [sym_internal_module] = STATE(2332),
- [sym_import_alias] = STATE(861),
- [sym_interface_declaration] = STATE(861),
- [sym_enum_declaration] = STATE(861),
- [sym_type_alias_declaration] = STATE(861),
- [sym_type_parameters] = STATE(5349),
- [aux_sym_export_statement_repeat1] = STATE(3863),
- [sym_identifier] = ACTIONS(580),
- [anon_sym_export] = ACTIONS(582),
- [anon_sym_type] = ACTIONS(584),
- [anon_sym_namespace] = ACTIONS(586),
- [anon_sym_LBRACE] = ACTIONS(554),
- [anon_sym_typeof] = ACTIONS(21),
- [anon_sym_import] = ACTIONS(23),
- [anon_sym_with] = ACTIONS(588),
- [anon_sym_var] = ACTIONS(27),
- [anon_sym_let] = ACTIONS(590),
- [anon_sym_const] = ACTIONS(31),
- [anon_sym_BANG] = ACTIONS(33),
- [anon_sym_if] = ACTIONS(592),
- [anon_sym_switch] = ACTIONS(37),
- [anon_sym_for] = ACTIONS(594),
- [anon_sym_LPAREN] = ACTIONS(41),
- [anon_sym_await] = ACTIONS(43),
- [anon_sym_while] = ACTIONS(596),
- [anon_sym_do] = ACTIONS(47),
- [anon_sym_try] = ACTIONS(49),
- [anon_sym_break] = ACTIONS(51),
- [anon_sym_continue] = ACTIONS(53),
- [anon_sym_debugger] = ACTIONS(55),
- [anon_sym_return] = ACTIONS(57),
- [anon_sym_throw] = ACTIONS(59),
- [anon_sym_SEMI] = ACTIONS(61),
- [anon_sym_yield] = ACTIONS(63),
- [anon_sym_LBRACK] = ACTIONS(65),
- [sym_glimmer_opening_tag] = ACTIONS(67),
- [anon_sym_DQUOTE] = ACTIONS(69),
- [anon_sym_SQUOTE] = ACTIONS(71),
- [anon_sym_class] = ACTIONS(566),
- [anon_sym_async] = ACTIONS(598),
- [anon_sym_function] = ACTIONS(570),
- [anon_sym_new] = ACTIONS(600),
- [anon_sym_using] = ACTIONS(81),
- [anon_sym_PLUS] = ACTIONS(21),
- [anon_sym_DASH] = ACTIONS(21),
- [anon_sym_SLASH] = ACTIONS(83),
- [anon_sym_LT] = ACTIONS(85),
- [anon_sym_TILDE] = ACTIONS(33),
- [anon_sym_void] = ACTIONS(21),
- [anon_sym_delete] = ACTIONS(21),
- [anon_sym_PLUS_PLUS] = ACTIONS(87),
- [anon_sym_DASH_DASH] = ACTIONS(87),
- [sym_comment] = ACTIONS(5),
- [anon_sym_BQUOTE] = ACTIONS(89),
- [sym_number] = ACTIONS(91),
- [sym_private_property_identifier] = ACTIONS(93),
- [sym_this] = ACTIONS(95),
- [sym_super] = ACTIONS(95),
- [sym_true] = ACTIONS(95),
- [sym_false] = ACTIONS(95),
- [sym_null] = ACTIONS(95),
- [sym_undefined] = ACTIONS(97),
- [anon_sym_AT] = ACTIONS(99),
- [anon_sym_static] = ACTIONS(602),
- [anon_sym_readonly] = ACTIONS(602),
- [anon_sym_get] = ACTIONS(602),
- [anon_sym_set] = ACTIONS(602),
- [anon_sym_declare] = ACTIONS(604),
- [anon_sym_public] = ACTIONS(602),
- [anon_sym_private] = ACTIONS(602),
- [anon_sym_protected] = ACTIONS(602),
- [anon_sym_override] = ACTIONS(602),
- [anon_sym_module] = ACTIONS(606),
- [anon_sym_any] = ACTIONS(602),
- [anon_sym_number] = ACTIONS(602),
- [anon_sym_boolean] = ACTIONS(602),
- [anon_sym_string] = ACTIONS(602),
- [anon_sym_symbol] = ACTIONS(602),
- [anon_sym_object] = ACTIONS(602),
- [anon_sym_abstract] = ACTIONS(107),
- [anon_sym_interface] = ACTIONS(109),
- [anon_sym_enum] = ACTIONS(111),
- [sym_html_comment] = ACTIONS(5),
- },
- [60] = {
- [sym_export_statement] = STATE(854),
- [sym_declaration] = STATE(854),
- [sym_import] = STATE(3306),
- [sym_import_statement] = STATE(854),
- [sym_statement] = STATE(787),
- [sym_expression_statement] = STATE(854),
- [sym_variable_declaration] = STATE(861),
- [sym_lexical_declaration] = STATE(861),
- [sym_statement_block] = STATE(854),
- [sym_if_statement] = STATE(854),
- [sym_switch_statement] = STATE(854),
- [sym_for_statement] = STATE(854),
- [sym_for_in_statement] = STATE(854),
- [sym_while_statement] = STATE(854),
- [sym_do_statement] = STATE(854),
- [sym_try_statement] = STATE(854),
- [sym_with_statement] = STATE(854),
- [sym_break_statement] = STATE(854),
- [sym_continue_statement] = STATE(854),
- [sym_debugger_statement] = STATE(854),
- [sym_return_statement] = STATE(854),
- [sym_throw_statement] = STATE(854),
- [sym_empty_statement] = STATE(854),
- [sym_labeled_statement] = STATE(854),
- [sym_parenthesized_expression] = STATE(1294),
- [sym_expression] = STATE(1705),
- [sym_primary_expression] = STATE(1946),
- [sym_yield_expression] = STATE(2234),
- [sym_object] = STATE(2310),
- [sym_object_pattern] = STATE(5667),
- [sym_array] = STATE(2310),
- [sym_array_pattern] = STATE(5667),
- [sym_glimmer_template] = STATE(2234),
- [sym_jsx_element] = STATE(2234),
- [sym_jsx_opening_element] = STATE(3051),
- [sym_jsx_self_closing_element] = STATE(2234),
- [sym_class] = STATE(2310),
- [sym_class_declaration] = STATE(861),
- [sym_function_expression] = STATE(2310),
- [sym_function_declaration] = STATE(861),
- [sym_generator_function] = STATE(2310),
- [sym_generator_function_declaration] = STATE(861),
- [sym_arrow_function] = STATE(2310),
- [sym__call_signature] = STATE(5809),
- [sym_call_expression] = STATE(2310),
- [sym_new_expression] = STATE(2234),
- [sym_await_expression] = STATE(2234),
- [sym_member_expression] = STATE(1294),
- [sym_subscript_expression] = STATE(1294),
- [sym_assignment_expression] = STATE(2234),
- [sym__augmented_assignment_lhs] = STATE(2875),
- [sym_augmented_assignment_expression] = STATE(2234),
- [sym__destructuring_pattern] = STATE(5667),
- [sym_ternary_expression] = STATE(2234),
- [sym_binary_expression] = STATE(2234),
- [sym_unary_expression] = STATE(2234),
- [sym_update_expression] = STATE(2234),
- [sym_sequence_expression] = STATE(5482),
- [sym_string] = STATE(2310),
- [sym_template_string] = STATE(2310),
- [sym_regex] = STATE(2310),
- [sym_meta_property] = STATE(2310),
- [sym_decorator] = STATE(1244),
- [sym_formal_parameters] = STATE(3742),
- [sym_non_null_expression] = STATE(1294),
- [sym_function_signature] = STATE(861),
- [sym_as_expression] = STATE(2234),
- [sym_satisfies_expression] = STATE(2234),
- [sym_instantiation_expression] = STATE(2234),
- [sym_ambient_declaration] = STATE(861),
- [sym_abstract_class_declaration] = STATE(861),
- [sym_module] = STATE(861),
- [sym_internal_module] = STATE(2332),
- [sym_import_alias] = STATE(861),
- [sym_interface_declaration] = STATE(861),
- [sym_enum_declaration] = STATE(861),
- [sym_type_alias_declaration] = STATE(861),
- [sym_type_parameters] = STATE(5349),
- [aux_sym_export_statement_repeat1] = STATE(3863),
- [sym_identifier] = ACTIONS(580),
- [anon_sym_export] = ACTIONS(582),
- [anon_sym_type] = ACTIONS(584),
- [anon_sym_namespace] = ACTIONS(586),
- [anon_sym_LBRACE] = ACTIONS(554),
- [anon_sym_typeof] = ACTIONS(21),
- [anon_sym_import] = ACTIONS(23),
- [anon_sym_with] = ACTIONS(588),
- [anon_sym_var] = ACTIONS(27),
- [anon_sym_let] = ACTIONS(590),
- [anon_sym_const] = ACTIONS(31),
- [anon_sym_BANG] = ACTIONS(33),
- [anon_sym_if] = ACTIONS(592),
- [anon_sym_switch] = ACTIONS(37),
- [anon_sym_for] = ACTIONS(594),
- [anon_sym_LPAREN] = ACTIONS(41),
- [anon_sym_await] = ACTIONS(43),
- [anon_sym_while] = ACTIONS(596),
- [anon_sym_do] = ACTIONS(47),
- [anon_sym_try] = ACTIONS(49),
- [anon_sym_break] = ACTIONS(51),
- [anon_sym_continue] = ACTIONS(53),
- [anon_sym_debugger] = ACTIONS(55),
- [anon_sym_return] = ACTIONS(57),
- [anon_sym_throw] = ACTIONS(59),
- [anon_sym_SEMI] = ACTIONS(61),
- [anon_sym_yield] = ACTIONS(63),
- [anon_sym_LBRACK] = ACTIONS(65),
- [sym_glimmer_opening_tag] = ACTIONS(67),
- [anon_sym_DQUOTE] = ACTIONS(69),
- [anon_sym_SQUOTE] = ACTIONS(71),
- [anon_sym_class] = ACTIONS(566),
- [anon_sym_async] = ACTIONS(598),
- [anon_sym_function] = ACTIONS(570),
- [anon_sym_new] = ACTIONS(600),
- [anon_sym_using] = ACTIONS(81),
- [anon_sym_PLUS] = ACTIONS(21),
- [anon_sym_DASH] = ACTIONS(21),
- [anon_sym_SLASH] = ACTIONS(83),
- [anon_sym_LT] = ACTIONS(85),
- [anon_sym_TILDE] = ACTIONS(33),
- [anon_sym_void] = ACTIONS(21),
- [anon_sym_delete] = ACTIONS(21),
- [anon_sym_PLUS_PLUS] = ACTIONS(87),
- [anon_sym_DASH_DASH] = ACTIONS(87),
- [sym_comment] = ACTIONS(5),
- [anon_sym_BQUOTE] = ACTIONS(89),
- [sym_number] = ACTIONS(91),
- [sym_private_property_identifier] = ACTIONS(93),
- [sym_this] = ACTIONS(95),
- [sym_super] = ACTIONS(95),
- [sym_true] = ACTIONS(95),
- [sym_false] = ACTIONS(95),
- [sym_null] = ACTIONS(95),
- [sym_undefined] = ACTIONS(97),
- [anon_sym_AT] = ACTIONS(99),
- [anon_sym_static] = ACTIONS(602),
- [anon_sym_readonly] = ACTIONS(602),
- [anon_sym_get] = ACTIONS(602),
- [anon_sym_set] = ACTIONS(602),
- [anon_sym_declare] = ACTIONS(604),
- [anon_sym_public] = ACTIONS(602),
- [anon_sym_private] = ACTIONS(602),
- [anon_sym_protected] = ACTIONS(602),
- [anon_sym_override] = ACTIONS(602),
- [anon_sym_module] = ACTIONS(606),
- [anon_sym_any] = ACTIONS(602),
- [anon_sym_number] = ACTIONS(602),
- [anon_sym_boolean] = ACTIONS(602),
- [anon_sym_string] = ACTIONS(602),
- [anon_sym_symbol] = ACTIONS(602),
- [anon_sym_object] = ACTIONS(602),
- [anon_sym_abstract] = ACTIONS(107),
- [anon_sym_interface] = ACTIONS(109),
- [anon_sym_enum] = ACTIONS(111),
- [sym_html_comment] = ACTIONS(5),
- },
- [61] = {
- [sym_export_statement] = STATE(854),
- [sym_declaration] = STATE(854),
- [sym_import] = STATE(3306),
- [sym_import_statement] = STATE(854),
- [sym_statement] = STATE(809),
- [sym_expression_statement] = STATE(854),
- [sym_variable_declaration] = STATE(861),
- [sym_lexical_declaration] = STATE(861),
- [sym_statement_block] = STATE(854),
- [sym_if_statement] = STATE(854),
- [sym_switch_statement] = STATE(854),
- [sym_for_statement] = STATE(854),
- [sym_for_in_statement] = STATE(854),
- [sym_while_statement] = STATE(854),
- [sym_do_statement] = STATE(854),
- [sym_try_statement] = STATE(854),
- [sym_with_statement] = STATE(854),
- [sym_break_statement] = STATE(854),
- [sym_continue_statement] = STATE(854),
- [sym_debugger_statement] = STATE(854),
- [sym_return_statement] = STATE(854),
- [sym_throw_statement] = STATE(854),
- [sym_empty_statement] = STATE(854),
- [sym_labeled_statement] = STATE(854),
- [sym_parenthesized_expression] = STATE(1294),
- [sym_expression] = STATE(1705),
- [sym_primary_expression] = STATE(1946),
- [sym_yield_expression] = STATE(2234),
- [sym_object] = STATE(2310),
- [sym_object_pattern] = STATE(5667),
- [sym_array] = STATE(2310),
- [sym_array_pattern] = STATE(5667),
- [sym_glimmer_template] = STATE(2234),
- [sym_jsx_element] = STATE(2234),
- [sym_jsx_opening_element] = STATE(3051),
- [sym_jsx_self_closing_element] = STATE(2234),
- [sym_class] = STATE(2310),
- [sym_class_declaration] = STATE(861),
- [sym_function_expression] = STATE(2310),
- [sym_function_declaration] = STATE(861),
- [sym_generator_function] = STATE(2310),
- [sym_generator_function_declaration] = STATE(861),
- [sym_arrow_function] = STATE(2310),
- [sym__call_signature] = STATE(5809),
- [sym_call_expression] = STATE(2310),
- [sym_new_expression] = STATE(2234),
- [sym_await_expression] = STATE(2234),
- [sym_member_expression] = STATE(1294),
- [sym_subscript_expression] = STATE(1294),
- [sym_assignment_expression] = STATE(2234),
- [sym__augmented_assignment_lhs] = STATE(2875),
- [sym_augmented_assignment_expression] = STATE(2234),
- [sym__destructuring_pattern] = STATE(5667),
- [sym_ternary_expression] = STATE(2234),
- [sym_binary_expression] = STATE(2234),
- [sym_unary_expression] = STATE(2234),
- [sym_update_expression] = STATE(2234),
- [sym_sequence_expression] = STATE(5482),
- [sym_string] = STATE(2310),
- [sym_template_string] = STATE(2310),
- [sym_regex] = STATE(2310),
- [sym_meta_property] = STATE(2310),
- [sym_decorator] = STATE(1244),
- [sym_formal_parameters] = STATE(3742),
- [sym_non_null_expression] = STATE(1294),
- [sym_function_signature] = STATE(861),
- [sym_as_expression] = STATE(2234),
- [sym_satisfies_expression] = STATE(2234),
- [sym_instantiation_expression] = STATE(2234),
- [sym_ambient_declaration] = STATE(861),
- [sym_abstract_class_declaration] = STATE(861),
- [sym_module] = STATE(861),
- [sym_internal_module] = STATE(2332),
- [sym_import_alias] = STATE(861),
- [sym_interface_declaration] = STATE(861),
- [sym_enum_declaration] = STATE(861),
- [sym_type_alias_declaration] = STATE(861),
- [sym_type_parameters] = STATE(5349),
- [aux_sym_export_statement_repeat1] = STATE(3863),
- [sym_identifier] = ACTIONS(580),
- [anon_sym_export] = ACTIONS(582),
- [anon_sym_type] = ACTIONS(584),
- [anon_sym_namespace] = ACTIONS(586),
- [anon_sym_LBRACE] = ACTIONS(554),
- [anon_sym_typeof] = ACTIONS(21),
- [anon_sym_import] = ACTIONS(23),
- [anon_sym_with] = ACTIONS(588),
- [anon_sym_var] = ACTIONS(27),
- [anon_sym_let] = ACTIONS(590),
- [anon_sym_const] = ACTIONS(31),
- [anon_sym_BANG] = ACTIONS(33),
- [anon_sym_if] = ACTIONS(592),
- [anon_sym_switch] = ACTIONS(37),
- [anon_sym_for] = ACTIONS(594),
- [anon_sym_LPAREN] = ACTIONS(41),
- [anon_sym_await] = ACTIONS(43),
- [anon_sym_while] = ACTIONS(596),
- [anon_sym_do] = ACTIONS(47),
- [anon_sym_try] = ACTIONS(49),
- [anon_sym_break] = ACTIONS(51),
- [anon_sym_continue] = ACTIONS(53),
- [anon_sym_debugger] = ACTIONS(55),
- [anon_sym_return] = ACTIONS(57),
- [anon_sym_throw] = ACTIONS(59),
- [anon_sym_SEMI] = ACTIONS(61),
- [anon_sym_yield] = ACTIONS(63),
- [anon_sym_LBRACK] = ACTIONS(65),
- [sym_glimmer_opening_tag] = ACTIONS(67),
- [anon_sym_DQUOTE] = ACTIONS(69),
- [anon_sym_SQUOTE] = ACTIONS(71),
- [anon_sym_class] = ACTIONS(566),
- [anon_sym_async] = ACTIONS(598),
- [anon_sym_function] = ACTIONS(570),
- [anon_sym_new] = ACTIONS(600),
- [anon_sym_using] = ACTIONS(81),
- [anon_sym_PLUS] = ACTIONS(21),
- [anon_sym_DASH] = ACTIONS(21),
- [anon_sym_SLASH] = ACTIONS(83),
- [anon_sym_LT] = ACTIONS(85),
- [anon_sym_TILDE] = ACTIONS(33),
- [anon_sym_void] = ACTIONS(21),
- [anon_sym_delete] = ACTIONS(21),
- [anon_sym_PLUS_PLUS] = ACTIONS(87),
- [anon_sym_DASH_DASH] = ACTIONS(87),
- [sym_comment] = ACTIONS(5),
- [anon_sym_BQUOTE] = ACTIONS(89),
- [sym_number] = ACTIONS(91),
- [sym_private_property_identifier] = ACTIONS(93),
- [sym_this] = ACTIONS(95),
- [sym_super] = ACTIONS(95),
- [sym_true] = ACTIONS(95),
- [sym_false] = ACTIONS(95),
- [sym_null] = ACTIONS(95),
- [sym_undefined] = ACTIONS(97),
- [anon_sym_AT] = ACTIONS(99),
- [anon_sym_static] = ACTIONS(602),
- [anon_sym_readonly] = ACTIONS(602),
- [anon_sym_get] = ACTIONS(602),
- [anon_sym_set] = ACTIONS(602),
- [anon_sym_declare] = ACTIONS(604),
- [anon_sym_public] = ACTIONS(602),
- [anon_sym_private] = ACTIONS(602),
- [anon_sym_protected] = ACTIONS(602),
- [anon_sym_override] = ACTIONS(602),
- [anon_sym_module] = ACTIONS(606),
- [anon_sym_any] = ACTIONS(602),
- [anon_sym_number] = ACTIONS(602),
- [anon_sym_boolean] = ACTIONS(602),
- [anon_sym_string] = ACTIONS(602),
- [anon_sym_symbol] = ACTIONS(602),
- [anon_sym_object] = ACTIONS(602),
- [anon_sym_abstract] = ACTIONS(107),
- [anon_sym_interface] = ACTIONS(109),
- [anon_sym_enum] = ACTIONS(111),
- [sym_html_comment] = ACTIONS(5),
- },
- [62] = {
- [sym_export_statement] = STATE(854),
- [sym_declaration] = STATE(854),
- [sym_import] = STATE(3306),
- [sym_import_statement] = STATE(854),
- [sym_statement] = STATE(823),
- [sym_expression_statement] = STATE(854),
- [sym_variable_declaration] = STATE(861),
- [sym_lexical_declaration] = STATE(861),
- [sym_statement_block] = STATE(854),
- [sym_if_statement] = STATE(854),
- [sym_switch_statement] = STATE(854),
- [sym_for_statement] = STATE(854),
- [sym_for_in_statement] = STATE(854),
- [sym_while_statement] = STATE(854),
- [sym_do_statement] = STATE(854),
- [sym_try_statement] = STATE(854),
- [sym_with_statement] = STATE(854),
- [sym_break_statement] = STATE(854),
- [sym_continue_statement] = STATE(854),
- [sym_debugger_statement] = STATE(854),
- [sym_return_statement] = STATE(854),
- [sym_throw_statement] = STATE(854),
- [sym_empty_statement] = STATE(854),
- [sym_labeled_statement] = STATE(854),
- [sym_parenthesized_expression] = STATE(1294),
- [sym_expression] = STATE(1705),
- [sym_primary_expression] = STATE(1946),
- [sym_yield_expression] = STATE(2234),
- [sym_object] = STATE(2310),
- [sym_object_pattern] = STATE(5667),
- [sym_array] = STATE(2310),
- [sym_array_pattern] = STATE(5667),
- [sym_glimmer_template] = STATE(2234),
- [sym_jsx_element] = STATE(2234),
- [sym_jsx_opening_element] = STATE(3051),
- [sym_jsx_self_closing_element] = STATE(2234),
- [sym_class] = STATE(2310),
- [sym_class_declaration] = STATE(861),
- [sym_function_expression] = STATE(2310),
- [sym_function_declaration] = STATE(861),
- [sym_generator_function] = STATE(2310),
- [sym_generator_function_declaration] = STATE(861),
- [sym_arrow_function] = STATE(2310),
- [sym__call_signature] = STATE(5809),
- [sym_call_expression] = STATE(2310),
- [sym_new_expression] = STATE(2234),
- [sym_await_expression] = STATE(2234),
- [sym_member_expression] = STATE(1294),
- [sym_subscript_expression] = STATE(1294),
- [sym_assignment_expression] = STATE(2234),
- [sym__augmented_assignment_lhs] = STATE(2875),
- [sym_augmented_assignment_expression] = STATE(2234),
- [sym__destructuring_pattern] = STATE(5667),
- [sym_ternary_expression] = STATE(2234),
- [sym_binary_expression] = STATE(2234),
- [sym_unary_expression] = STATE(2234),
- [sym_update_expression] = STATE(2234),
- [sym_sequence_expression] = STATE(5482),
- [sym_string] = STATE(2310),
- [sym_template_string] = STATE(2310),
- [sym_regex] = STATE(2310),
- [sym_meta_property] = STATE(2310),
- [sym_decorator] = STATE(1244),
- [sym_formal_parameters] = STATE(3742),
- [sym_non_null_expression] = STATE(1294),
- [sym_function_signature] = STATE(861),
- [sym_as_expression] = STATE(2234),
- [sym_satisfies_expression] = STATE(2234),
- [sym_instantiation_expression] = STATE(2234),
- [sym_ambient_declaration] = STATE(861),
- [sym_abstract_class_declaration] = STATE(861),
- [sym_module] = STATE(861),
- [sym_internal_module] = STATE(2332),
- [sym_import_alias] = STATE(861),
- [sym_interface_declaration] = STATE(861),
- [sym_enum_declaration] = STATE(861),
- [sym_type_alias_declaration] = STATE(861),
- [sym_type_parameters] = STATE(5349),
- [aux_sym_export_statement_repeat1] = STATE(3863),
- [sym_identifier] = ACTIONS(580),
- [anon_sym_export] = ACTIONS(582),
- [anon_sym_type] = ACTIONS(584),
- [anon_sym_namespace] = ACTIONS(586),
- [anon_sym_LBRACE] = ACTIONS(554),
- [anon_sym_typeof] = ACTIONS(21),
- [anon_sym_import] = ACTIONS(23),
- [anon_sym_with] = ACTIONS(588),
- [anon_sym_var] = ACTIONS(27),
- [anon_sym_let] = ACTIONS(590),
- [anon_sym_const] = ACTIONS(31),
- [anon_sym_BANG] = ACTIONS(33),
- [anon_sym_if] = ACTIONS(592),
- [anon_sym_switch] = ACTIONS(37),
- [anon_sym_for] = ACTIONS(594),
- [anon_sym_LPAREN] = ACTIONS(41),
- [anon_sym_await] = ACTIONS(43),
- [anon_sym_while] = ACTIONS(596),
- [anon_sym_do] = ACTIONS(47),
- [anon_sym_try] = ACTIONS(49),
- [anon_sym_break] = ACTIONS(51),
- [anon_sym_continue] = ACTIONS(53),
- [anon_sym_debugger] = ACTIONS(55),
- [anon_sym_return] = ACTIONS(57),
- [anon_sym_throw] = ACTIONS(59),
- [anon_sym_SEMI] = ACTIONS(61),
- [anon_sym_yield] = ACTIONS(63),
- [anon_sym_LBRACK] = ACTIONS(65),
- [sym_glimmer_opening_tag] = ACTIONS(67),
- [anon_sym_DQUOTE] = ACTIONS(69),
- [anon_sym_SQUOTE] = ACTIONS(71),
- [anon_sym_class] = ACTIONS(566),
- [anon_sym_async] = ACTIONS(598),
- [anon_sym_function] = ACTIONS(570),
- [anon_sym_new] = ACTIONS(600),
- [anon_sym_using] = ACTIONS(81),
- [anon_sym_PLUS] = ACTIONS(21),
- [anon_sym_DASH] = ACTIONS(21),
- [anon_sym_SLASH] = ACTIONS(83),
- [anon_sym_LT] = ACTIONS(85),
- [anon_sym_TILDE] = ACTIONS(33),
- [anon_sym_void] = ACTIONS(21),
- [anon_sym_delete] = ACTIONS(21),
- [anon_sym_PLUS_PLUS] = ACTIONS(87),
- [anon_sym_DASH_DASH] = ACTIONS(87),
- [sym_comment] = ACTIONS(5),
- [anon_sym_BQUOTE] = ACTIONS(89),
- [sym_number] = ACTIONS(91),
- [sym_private_property_identifier] = ACTIONS(93),
- [sym_this] = ACTIONS(95),
- [sym_super] = ACTIONS(95),
- [sym_true] = ACTIONS(95),
- [sym_false] = ACTIONS(95),
- [sym_null] = ACTIONS(95),
- [sym_undefined] = ACTIONS(97),
- [anon_sym_AT] = ACTIONS(99),
- [anon_sym_static] = ACTIONS(602),
- [anon_sym_readonly] = ACTIONS(602),
- [anon_sym_get] = ACTIONS(602),
- [anon_sym_set] = ACTIONS(602),
- [anon_sym_declare] = ACTIONS(604),
- [anon_sym_public] = ACTIONS(602),
- [anon_sym_private] = ACTIONS(602),
- [anon_sym_protected] = ACTIONS(602),
- [anon_sym_override] = ACTIONS(602),
- [anon_sym_module] = ACTIONS(606),
- [anon_sym_any] = ACTIONS(602),
- [anon_sym_number] = ACTIONS(602),
- [anon_sym_boolean] = ACTIONS(602),
- [anon_sym_string] = ACTIONS(602),
- [anon_sym_symbol] = ACTIONS(602),
- [anon_sym_object] = ACTIONS(602),
- [anon_sym_abstract] = ACTIONS(107),
- [anon_sym_interface] = ACTIONS(109),
- [anon_sym_enum] = ACTIONS(111),
- [sym_html_comment] = ACTIONS(5),
- },
- [63] = {
- [sym_export_statement] = STATE(854),
- [sym_declaration] = STATE(854),
- [sym_import] = STATE(3306),
- [sym_import_statement] = STATE(854),
- [sym_statement] = STATE(768),
- [sym_expression_statement] = STATE(854),
- [sym_variable_declaration] = STATE(861),
- [sym_lexical_declaration] = STATE(861),
- [sym_statement_block] = STATE(854),
- [sym_if_statement] = STATE(854),
- [sym_switch_statement] = STATE(854),
- [sym_for_statement] = STATE(854),
- [sym_for_in_statement] = STATE(854),
- [sym_while_statement] = STATE(854),
- [sym_do_statement] = STATE(854),
- [sym_try_statement] = STATE(854),
- [sym_with_statement] = STATE(854),
- [sym_break_statement] = STATE(854),
- [sym_continue_statement] = STATE(854),
- [sym_debugger_statement] = STATE(854),
- [sym_return_statement] = STATE(854),
- [sym_throw_statement] = STATE(854),
- [sym_empty_statement] = STATE(854),
- [sym_labeled_statement] = STATE(854),
- [sym_parenthesized_expression] = STATE(1294),
- [sym_expression] = STATE(1705),
- [sym_primary_expression] = STATE(1946),
- [sym_yield_expression] = STATE(2234),
- [sym_object] = STATE(2310),
- [sym_object_pattern] = STATE(5667),
- [sym_array] = STATE(2310),
- [sym_array_pattern] = STATE(5667),
- [sym_glimmer_template] = STATE(2234),
- [sym_jsx_element] = STATE(2234),
- [sym_jsx_opening_element] = STATE(3051),
- [sym_jsx_self_closing_element] = STATE(2234),
- [sym_class] = STATE(2310),
- [sym_class_declaration] = STATE(861),
- [sym_function_expression] = STATE(2310),
- [sym_function_declaration] = STATE(861),
- [sym_generator_function] = STATE(2310),
- [sym_generator_function_declaration] = STATE(861),
- [sym_arrow_function] = STATE(2310),
- [sym__call_signature] = STATE(5809),
- [sym_call_expression] = STATE(2310),
- [sym_new_expression] = STATE(2234),
- [sym_await_expression] = STATE(2234),
- [sym_member_expression] = STATE(1294),
- [sym_subscript_expression] = STATE(1294),
- [sym_assignment_expression] = STATE(2234),
- [sym__augmented_assignment_lhs] = STATE(2875),
- [sym_augmented_assignment_expression] = STATE(2234),
- [sym__destructuring_pattern] = STATE(5667),
- [sym_ternary_expression] = STATE(2234),
- [sym_binary_expression] = STATE(2234),
- [sym_unary_expression] = STATE(2234),
- [sym_update_expression] = STATE(2234),
- [sym_sequence_expression] = STATE(5482),
- [sym_string] = STATE(2310),
- [sym_template_string] = STATE(2310),
- [sym_regex] = STATE(2310),
- [sym_meta_property] = STATE(2310),
- [sym_decorator] = STATE(1244),
- [sym_formal_parameters] = STATE(3742),
- [sym_non_null_expression] = STATE(1294),
- [sym_function_signature] = STATE(861),
- [sym_as_expression] = STATE(2234),
- [sym_satisfies_expression] = STATE(2234),
- [sym_instantiation_expression] = STATE(2234),
- [sym_ambient_declaration] = STATE(861),
- [sym_abstract_class_declaration] = STATE(861),
- [sym_module] = STATE(861),
- [sym_internal_module] = STATE(2332),
- [sym_import_alias] = STATE(861),
- [sym_interface_declaration] = STATE(861),
- [sym_enum_declaration] = STATE(861),
- [sym_type_alias_declaration] = STATE(861),
- [sym_type_parameters] = STATE(5349),
- [aux_sym_export_statement_repeat1] = STATE(3863),
- [sym_identifier] = ACTIONS(580),
- [anon_sym_export] = ACTIONS(582),
- [anon_sym_type] = ACTIONS(584),
- [anon_sym_namespace] = ACTIONS(586),
- [anon_sym_LBRACE] = ACTIONS(554),
- [anon_sym_typeof] = ACTIONS(21),
- [anon_sym_import] = ACTIONS(23),
- [anon_sym_with] = ACTIONS(588),
- [anon_sym_var] = ACTIONS(27),
- [anon_sym_let] = ACTIONS(590),
- [anon_sym_const] = ACTIONS(31),
- [anon_sym_BANG] = ACTIONS(33),
- [anon_sym_if] = ACTIONS(592),
- [anon_sym_switch] = ACTIONS(37),
- [anon_sym_for] = ACTIONS(594),
- [anon_sym_LPAREN] = ACTIONS(41),
- [anon_sym_await] = ACTIONS(43),
- [anon_sym_while] = ACTIONS(596),
- [anon_sym_do] = ACTIONS(47),
- [anon_sym_try] = ACTIONS(49),
- [anon_sym_break] = ACTIONS(51),
- [anon_sym_continue] = ACTIONS(53),
- [anon_sym_debugger] = ACTIONS(55),
- [anon_sym_return] = ACTIONS(57),
- [anon_sym_throw] = ACTIONS(59),
- [anon_sym_SEMI] = ACTIONS(61),
- [anon_sym_yield] = ACTIONS(63),
- [anon_sym_LBRACK] = ACTIONS(65),
- [sym_glimmer_opening_tag] = ACTIONS(67),
- [anon_sym_DQUOTE] = ACTIONS(69),
- [anon_sym_SQUOTE] = ACTIONS(71),
- [anon_sym_class] = ACTIONS(566),
- [anon_sym_async] = ACTIONS(598),
- [anon_sym_function] = ACTIONS(570),
- [anon_sym_new] = ACTIONS(600),
- [anon_sym_using] = ACTIONS(81),
- [anon_sym_PLUS] = ACTIONS(21),
- [anon_sym_DASH] = ACTIONS(21),
- [anon_sym_SLASH] = ACTIONS(83),
- [anon_sym_LT] = ACTIONS(85),
- [anon_sym_TILDE] = ACTIONS(33),
- [anon_sym_void] = ACTIONS(21),
- [anon_sym_delete] = ACTIONS(21),
- [anon_sym_PLUS_PLUS] = ACTIONS(87),
- [anon_sym_DASH_DASH] = ACTIONS(87),
- [sym_comment] = ACTIONS(5),
- [anon_sym_BQUOTE] = ACTIONS(89),
- [sym_number] = ACTIONS(91),
- [sym_private_property_identifier] = ACTIONS(93),
- [sym_this] = ACTIONS(95),
- [sym_super] = ACTIONS(95),
- [sym_true] = ACTIONS(95),
- [sym_false] = ACTIONS(95),
- [sym_null] = ACTIONS(95),
- [sym_undefined] = ACTIONS(97),
- [anon_sym_AT] = ACTIONS(99),
- [anon_sym_static] = ACTIONS(602),
- [anon_sym_readonly] = ACTIONS(602),
- [anon_sym_get] = ACTIONS(602),
- [anon_sym_set] = ACTIONS(602),
- [anon_sym_declare] = ACTIONS(604),
- [anon_sym_public] = ACTIONS(602),
- [anon_sym_private] = ACTIONS(602),
- [anon_sym_protected] = ACTIONS(602),
- [anon_sym_override] = ACTIONS(602),
- [anon_sym_module] = ACTIONS(606),
- [anon_sym_any] = ACTIONS(602),
- [anon_sym_number] = ACTIONS(602),
- [anon_sym_boolean] = ACTIONS(602),
- [anon_sym_string] = ACTIONS(602),
- [anon_sym_symbol] = ACTIONS(602),
- [anon_sym_object] = ACTIONS(602),
- [anon_sym_abstract] = ACTIONS(107),
- [anon_sym_interface] = ACTIONS(109),
- [anon_sym_enum] = ACTIONS(111),
- [sym_html_comment] = ACTIONS(5),
- },
- [64] = {
- [sym_export_statement] = STATE(854),
- [sym_declaration] = STATE(854),
- [sym_import] = STATE(3306),
- [sym_import_statement] = STATE(854),
- [sym_statement] = STATE(804),
- [sym_expression_statement] = STATE(854),
- [sym_variable_declaration] = STATE(861),
- [sym_lexical_declaration] = STATE(861),
- [sym_statement_block] = STATE(854),
- [sym_if_statement] = STATE(854),
- [sym_switch_statement] = STATE(854),
- [sym_for_statement] = STATE(854),
- [sym_for_in_statement] = STATE(854),
- [sym_while_statement] = STATE(854),
- [sym_do_statement] = STATE(854),
- [sym_try_statement] = STATE(854),
- [sym_with_statement] = STATE(854),
- [sym_break_statement] = STATE(854),
- [sym_continue_statement] = STATE(854),
- [sym_debugger_statement] = STATE(854),
- [sym_return_statement] = STATE(854),
- [sym_throw_statement] = STATE(854),
- [sym_empty_statement] = STATE(854),
- [sym_labeled_statement] = STATE(854),
- [sym_parenthesized_expression] = STATE(1294),
- [sym_expression] = STATE(1705),
- [sym_primary_expression] = STATE(1946),
- [sym_yield_expression] = STATE(2234),
- [sym_object] = STATE(2310),
- [sym_object_pattern] = STATE(5667),
- [sym_array] = STATE(2310),
- [sym_array_pattern] = STATE(5667),
- [sym_glimmer_template] = STATE(2234),
- [sym_jsx_element] = STATE(2234),
- [sym_jsx_opening_element] = STATE(3051),
- [sym_jsx_self_closing_element] = STATE(2234),
- [sym_class] = STATE(2310),
- [sym_class_declaration] = STATE(861),
- [sym_function_expression] = STATE(2310),
- [sym_function_declaration] = STATE(861),
- [sym_generator_function] = STATE(2310),
- [sym_generator_function_declaration] = STATE(861),
- [sym_arrow_function] = STATE(2310),
- [sym__call_signature] = STATE(5809),
- [sym_call_expression] = STATE(2310),
- [sym_new_expression] = STATE(2234),
- [sym_await_expression] = STATE(2234),
- [sym_member_expression] = STATE(1294),
- [sym_subscript_expression] = STATE(1294),
- [sym_assignment_expression] = STATE(2234),
- [sym__augmented_assignment_lhs] = STATE(2875),
- [sym_augmented_assignment_expression] = STATE(2234),
- [sym__destructuring_pattern] = STATE(5667),
- [sym_ternary_expression] = STATE(2234),
- [sym_binary_expression] = STATE(2234),
- [sym_unary_expression] = STATE(2234),
- [sym_update_expression] = STATE(2234),
- [sym_sequence_expression] = STATE(5482),
- [sym_string] = STATE(2310),
- [sym_template_string] = STATE(2310),
- [sym_regex] = STATE(2310),
- [sym_meta_property] = STATE(2310),
- [sym_decorator] = STATE(1244),
- [sym_formal_parameters] = STATE(3742),
- [sym_non_null_expression] = STATE(1294),
- [sym_function_signature] = STATE(861),
- [sym_as_expression] = STATE(2234),
- [sym_satisfies_expression] = STATE(2234),
- [sym_instantiation_expression] = STATE(2234),
- [sym_ambient_declaration] = STATE(861),
- [sym_abstract_class_declaration] = STATE(861),
- [sym_module] = STATE(861),
- [sym_internal_module] = STATE(2332),
- [sym_import_alias] = STATE(861),
- [sym_interface_declaration] = STATE(861),
- [sym_enum_declaration] = STATE(861),
- [sym_type_alias_declaration] = STATE(861),
- [sym_type_parameters] = STATE(5349),
- [aux_sym_export_statement_repeat1] = STATE(3863),
- [sym_identifier] = ACTIONS(580),
- [anon_sym_export] = ACTIONS(582),
- [anon_sym_type] = ACTIONS(584),
- [anon_sym_namespace] = ACTIONS(586),
- [anon_sym_LBRACE] = ACTIONS(554),
- [anon_sym_typeof] = ACTIONS(21),
- [anon_sym_import] = ACTIONS(23),
- [anon_sym_with] = ACTIONS(588),
- [anon_sym_var] = ACTIONS(27),
- [anon_sym_let] = ACTIONS(590),
- [anon_sym_const] = ACTIONS(31),
- [anon_sym_BANG] = ACTIONS(33),
- [anon_sym_if] = ACTIONS(592),
- [anon_sym_switch] = ACTIONS(37),
- [anon_sym_for] = ACTIONS(594),
- [anon_sym_LPAREN] = ACTIONS(41),
- [anon_sym_await] = ACTIONS(43),
- [anon_sym_while] = ACTIONS(596),
- [anon_sym_do] = ACTIONS(47),
- [anon_sym_try] = ACTIONS(49),
- [anon_sym_break] = ACTIONS(51),
- [anon_sym_continue] = ACTIONS(53),
- [anon_sym_debugger] = ACTIONS(55),
- [anon_sym_return] = ACTIONS(57),
- [anon_sym_throw] = ACTIONS(59),
- [anon_sym_SEMI] = ACTIONS(61),
- [anon_sym_yield] = ACTIONS(63),
- [anon_sym_LBRACK] = ACTIONS(65),
- [sym_glimmer_opening_tag] = ACTIONS(67),
- [anon_sym_DQUOTE] = ACTIONS(69),
- [anon_sym_SQUOTE] = ACTIONS(71),
- [anon_sym_class] = ACTIONS(566),
- [anon_sym_async] = ACTIONS(598),
- [anon_sym_function] = ACTIONS(570),
- [anon_sym_new] = ACTIONS(600),
- [anon_sym_using] = ACTIONS(81),
- [anon_sym_PLUS] = ACTIONS(21),
- [anon_sym_DASH] = ACTIONS(21),
- [anon_sym_SLASH] = ACTIONS(83),
- [anon_sym_LT] = ACTIONS(85),
- [anon_sym_TILDE] = ACTIONS(33),
- [anon_sym_void] = ACTIONS(21),
- [anon_sym_delete] = ACTIONS(21),
- [anon_sym_PLUS_PLUS] = ACTIONS(87),
- [anon_sym_DASH_DASH] = ACTIONS(87),
- [sym_comment] = ACTIONS(5),
- [anon_sym_BQUOTE] = ACTIONS(89),
- [sym_number] = ACTIONS(91),
- [sym_private_property_identifier] = ACTIONS(93),
- [sym_this] = ACTIONS(95),
- [sym_super] = ACTIONS(95),
- [sym_true] = ACTIONS(95),
- [sym_false] = ACTIONS(95),
- [sym_null] = ACTIONS(95),
- [sym_undefined] = ACTIONS(97),
- [anon_sym_AT] = ACTIONS(99),
- [anon_sym_static] = ACTIONS(602),
- [anon_sym_readonly] = ACTIONS(602),
- [anon_sym_get] = ACTIONS(602),
- [anon_sym_set] = ACTIONS(602),
- [anon_sym_declare] = ACTIONS(604),
- [anon_sym_public] = ACTIONS(602),
- [anon_sym_private] = ACTIONS(602),
- [anon_sym_protected] = ACTIONS(602),
- [anon_sym_override] = ACTIONS(602),
- [anon_sym_module] = ACTIONS(606),
- [anon_sym_any] = ACTIONS(602),
- [anon_sym_number] = ACTIONS(602),
- [anon_sym_boolean] = ACTIONS(602),
- [anon_sym_string] = ACTIONS(602),
- [anon_sym_symbol] = ACTIONS(602),
- [anon_sym_object] = ACTIONS(602),
- [anon_sym_abstract] = ACTIONS(107),
- [anon_sym_interface] = ACTIONS(109),
- [anon_sym_enum] = ACTIONS(111),
- [sym_html_comment] = ACTIONS(5),
- },
- [65] = {
- [sym_export_statement] = STATE(854),
- [sym_declaration] = STATE(854),
- [sym_import] = STATE(3306),
- [sym_import_statement] = STATE(854),
- [sym_statement] = STATE(833),
- [sym_expression_statement] = STATE(854),
- [sym_variable_declaration] = STATE(861),
- [sym_lexical_declaration] = STATE(861),
- [sym_statement_block] = STATE(854),
- [sym_if_statement] = STATE(854),
- [sym_switch_statement] = STATE(854),
- [sym_for_statement] = STATE(854),
- [sym_for_in_statement] = STATE(854),
- [sym_while_statement] = STATE(854),
- [sym_do_statement] = STATE(854),
- [sym_try_statement] = STATE(854),
- [sym_with_statement] = STATE(854),
- [sym_break_statement] = STATE(854),
- [sym_continue_statement] = STATE(854),
- [sym_debugger_statement] = STATE(854),
- [sym_return_statement] = STATE(854),
- [sym_throw_statement] = STATE(854),
- [sym_empty_statement] = STATE(854),
- [sym_labeled_statement] = STATE(854),
- [sym_parenthesized_expression] = STATE(1294),
- [sym_expression] = STATE(1705),
- [sym_primary_expression] = STATE(1946),
- [sym_yield_expression] = STATE(2234),
- [sym_object] = STATE(2310),
- [sym_object_pattern] = STATE(5667),
- [sym_array] = STATE(2310),
- [sym_array_pattern] = STATE(5667),
- [sym_glimmer_template] = STATE(2234),
- [sym_jsx_element] = STATE(2234),
- [sym_jsx_opening_element] = STATE(3051),
- [sym_jsx_self_closing_element] = STATE(2234),
- [sym_class] = STATE(2310),
- [sym_class_declaration] = STATE(861),
- [sym_function_expression] = STATE(2310),
- [sym_function_declaration] = STATE(861),
- [sym_generator_function] = STATE(2310),
- [sym_generator_function_declaration] = STATE(861),
- [sym_arrow_function] = STATE(2310),
- [sym__call_signature] = STATE(5809),
- [sym_call_expression] = STATE(2310),
- [sym_new_expression] = STATE(2234),
- [sym_await_expression] = STATE(2234),
- [sym_member_expression] = STATE(1294),
- [sym_subscript_expression] = STATE(1294),
- [sym_assignment_expression] = STATE(2234),
- [sym__augmented_assignment_lhs] = STATE(2875),
- [sym_augmented_assignment_expression] = STATE(2234),
- [sym__destructuring_pattern] = STATE(5667),
- [sym_ternary_expression] = STATE(2234),
- [sym_binary_expression] = STATE(2234),
- [sym_unary_expression] = STATE(2234),
- [sym_update_expression] = STATE(2234),
- [sym_sequence_expression] = STATE(5482),
- [sym_string] = STATE(2310),
- [sym_template_string] = STATE(2310),
- [sym_regex] = STATE(2310),
- [sym_meta_property] = STATE(2310),
- [sym_decorator] = STATE(1244),
- [sym_formal_parameters] = STATE(3742),
- [sym_non_null_expression] = STATE(1294),
- [sym_function_signature] = STATE(861),
- [sym_as_expression] = STATE(2234),
- [sym_satisfies_expression] = STATE(2234),
- [sym_instantiation_expression] = STATE(2234),
- [sym_ambient_declaration] = STATE(861),
- [sym_abstract_class_declaration] = STATE(861),
- [sym_module] = STATE(861),
- [sym_internal_module] = STATE(2332),
- [sym_import_alias] = STATE(861),
- [sym_interface_declaration] = STATE(861),
- [sym_enum_declaration] = STATE(861),
- [sym_type_alias_declaration] = STATE(861),
- [sym_type_parameters] = STATE(5349),
- [aux_sym_export_statement_repeat1] = STATE(3863),
- [sym_identifier] = ACTIONS(580),
- [anon_sym_export] = ACTIONS(582),
- [anon_sym_type] = ACTIONS(584),
- [anon_sym_namespace] = ACTIONS(586),
- [anon_sym_LBRACE] = ACTIONS(554),
- [anon_sym_typeof] = ACTIONS(21),
- [anon_sym_import] = ACTIONS(23),
- [anon_sym_with] = ACTIONS(588),
- [anon_sym_var] = ACTIONS(27),
- [anon_sym_let] = ACTIONS(590),
- [anon_sym_const] = ACTIONS(31),
- [anon_sym_BANG] = ACTIONS(33),
- [anon_sym_if] = ACTIONS(592),
- [anon_sym_switch] = ACTIONS(37),
- [anon_sym_for] = ACTIONS(594),
- [anon_sym_LPAREN] = ACTIONS(41),
- [anon_sym_await] = ACTIONS(43),
- [anon_sym_while] = ACTIONS(596),
- [anon_sym_do] = ACTIONS(47),
- [anon_sym_try] = ACTIONS(49),
- [anon_sym_break] = ACTIONS(51),
- [anon_sym_continue] = ACTIONS(53),
- [anon_sym_debugger] = ACTIONS(55),
- [anon_sym_return] = ACTIONS(57),
- [anon_sym_throw] = ACTIONS(59),
- [anon_sym_SEMI] = ACTIONS(61),
- [anon_sym_yield] = ACTIONS(63),
- [anon_sym_LBRACK] = ACTIONS(65),
- [sym_glimmer_opening_tag] = ACTIONS(67),
- [anon_sym_DQUOTE] = ACTIONS(69),
- [anon_sym_SQUOTE] = ACTIONS(71),
- [anon_sym_class] = ACTIONS(566),
- [anon_sym_async] = ACTIONS(598),
- [anon_sym_function] = ACTIONS(570),
- [anon_sym_new] = ACTIONS(600),
- [anon_sym_using] = ACTIONS(81),
- [anon_sym_PLUS] = ACTIONS(21),
- [anon_sym_DASH] = ACTIONS(21),
- [anon_sym_SLASH] = ACTIONS(83),
- [anon_sym_LT] = ACTIONS(85),
- [anon_sym_TILDE] = ACTIONS(33),
- [anon_sym_void] = ACTIONS(21),
- [anon_sym_delete] = ACTIONS(21),
- [anon_sym_PLUS_PLUS] = ACTIONS(87),
- [anon_sym_DASH_DASH] = ACTIONS(87),
- [sym_comment] = ACTIONS(5),
- [anon_sym_BQUOTE] = ACTIONS(89),
- [sym_number] = ACTIONS(91),
- [sym_private_property_identifier] = ACTIONS(93),
- [sym_this] = ACTIONS(95),
- [sym_super] = ACTIONS(95),
- [sym_true] = ACTIONS(95),
- [sym_false] = ACTIONS(95),
- [sym_null] = ACTIONS(95),
- [sym_undefined] = ACTIONS(97),
- [anon_sym_AT] = ACTIONS(99),
- [anon_sym_static] = ACTIONS(602),
- [anon_sym_readonly] = ACTIONS(602),
- [anon_sym_get] = ACTIONS(602),
- [anon_sym_set] = ACTIONS(602),
- [anon_sym_declare] = ACTIONS(604),
- [anon_sym_public] = ACTIONS(602),
- [anon_sym_private] = ACTIONS(602),
- [anon_sym_protected] = ACTIONS(602),
- [anon_sym_override] = ACTIONS(602),
- [anon_sym_module] = ACTIONS(606),
- [anon_sym_any] = ACTIONS(602),
- [anon_sym_number] = ACTIONS(602),
- [anon_sym_boolean] = ACTIONS(602),
- [anon_sym_string] = ACTIONS(602),
- [anon_sym_symbol] = ACTIONS(602),
- [anon_sym_object] = ACTIONS(602),
- [anon_sym_abstract] = ACTIONS(107),
- [anon_sym_interface] = ACTIONS(109),
- [anon_sym_enum] = ACTIONS(111),
- [sym_html_comment] = ACTIONS(5),
- },
- [66] = {
- [sym_export_statement] = STATE(854),
- [sym_declaration] = STATE(854),
- [sym_import] = STATE(3306),
- [sym_import_statement] = STATE(854),
- [sym_statement] = STATE(846),
- [sym_expression_statement] = STATE(854),
- [sym_variable_declaration] = STATE(861),
- [sym_lexical_declaration] = STATE(861),
- [sym_statement_block] = STATE(854),
- [sym_if_statement] = STATE(854),
- [sym_switch_statement] = STATE(854),
- [sym_for_statement] = STATE(854),
- [sym_for_in_statement] = STATE(854),
- [sym_while_statement] = STATE(854),
- [sym_do_statement] = STATE(854),
- [sym_try_statement] = STATE(854),
- [sym_with_statement] = STATE(854),
- [sym_break_statement] = STATE(854),
- [sym_continue_statement] = STATE(854),
- [sym_debugger_statement] = STATE(854),
- [sym_return_statement] = STATE(854),
- [sym_throw_statement] = STATE(854),
- [sym_empty_statement] = STATE(854),
- [sym_labeled_statement] = STATE(854),
- [sym_parenthesized_expression] = STATE(1294),
- [sym_expression] = STATE(1705),
- [sym_primary_expression] = STATE(1946),
- [sym_yield_expression] = STATE(2234),
- [sym_object] = STATE(2310),
- [sym_object_pattern] = STATE(5667),
- [sym_array] = STATE(2310),
- [sym_array_pattern] = STATE(5667),
- [sym_glimmer_template] = STATE(2234),
- [sym_jsx_element] = STATE(2234),
- [sym_jsx_opening_element] = STATE(3051),
- [sym_jsx_self_closing_element] = STATE(2234),
- [sym_class] = STATE(2310),
- [sym_class_declaration] = STATE(861),
- [sym_function_expression] = STATE(2310),
- [sym_function_declaration] = STATE(861),
- [sym_generator_function] = STATE(2310),
- [sym_generator_function_declaration] = STATE(861),
- [sym_arrow_function] = STATE(2310),
- [sym__call_signature] = STATE(5809),
- [sym_call_expression] = STATE(2310),
- [sym_new_expression] = STATE(2234),
- [sym_await_expression] = STATE(2234),
- [sym_member_expression] = STATE(1294),
- [sym_subscript_expression] = STATE(1294),
- [sym_assignment_expression] = STATE(2234),
- [sym__augmented_assignment_lhs] = STATE(2875),
- [sym_augmented_assignment_expression] = STATE(2234),
- [sym__destructuring_pattern] = STATE(5667),
- [sym_ternary_expression] = STATE(2234),
- [sym_binary_expression] = STATE(2234),
- [sym_unary_expression] = STATE(2234),
- [sym_update_expression] = STATE(2234),
- [sym_sequence_expression] = STATE(5482),
- [sym_string] = STATE(2310),
- [sym_template_string] = STATE(2310),
- [sym_regex] = STATE(2310),
- [sym_meta_property] = STATE(2310),
- [sym_decorator] = STATE(1244),
- [sym_formal_parameters] = STATE(3742),
- [sym_non_null_expression] = STATE(1294),
- [sym_function_signature] = STATE(861),
- [sym_as_expression] = STATE(2234),
- [sym_satisfies_expression] = STATE(2234),
- [sym_instantiation_expression] = STATE(2234),
- [sym_ambient_declaration] = STATE(861),
- [sym_abstract_class_declaration] = STATE(861),
- [sym_module] = STATE(861),
- [sym_internal_module] = STATE(2332),
- [sym_import_alias] = STATE(861),
- [sym_interface_declaration] = STATE(861),
- [sym_enum_declaration] = STATE(861),
- [sym_type_alias_declaration] = STATE(861),
- [sym_type_parameters] = STATE(5349),
- [aux_sym_export_statement_repeat1] = STATE(3863),
- [sym_identifier] = ACTIONS(580),
- [anon_sym_export] = ACTIONS(582),
- [anon_sym_type] = ACTIONS(584),
- [anon_sym_namespace] = ACTIONS(586),
- [anon_sym_LBRACE] = ACTIONS(554),
- [anon_sym_typeof] = ACTIONS(21),
- [anon_sym_import] = ACTIONS(23),
- [anon_sym_with] = ACTIONS(588),
- [anon_sym_var] = ACTIONS(27),
- [anon_sym_let] = ACTIONS(590),
- [anon_sym_const] = ACTIONS(31),
- [anon_sym_BANG] = ACTIONS(33),
- [anon_sym_if] = ACTIONS(592),
- [anon_sym_switch] = ACTIONS(37),
- [anon_sym_for] = ACTIONS(594),
- [anon_sym_LPAREN] = ACTIONS(41),
- [anon_sym_await] = ACTIONS(43),
- [anon_sym_while] = ACTIONS(596),
- [anon_sym_do] = ACTIONS(47),
- [anon_sym_try] = ACTIONS(49),
- [anon_sym_break] = ACTIONS(51),
- [anon_sym_continue] = ACTIONS(53),
- [anon_sym_debugger] = ACTIONS(55),
- [anon_sym_return] = ACTIONS(57),
- [anon_sym_throw] = ACTIONS(59),
- [anon_sym_SEMI] = ACTIONS(61),
- [anon_sym_yield] = ACTIONS(63),
- [anon_sym_LBRACK] = ACTIONS(65),
- [sym_glimmer_opening_tag] = ACTIONS(67),
- [anon_sym_DQUOTE] = ACTIONS(69),
- [anon_sym_SQUOTE] = ACTIONS(71),
- [anon_sym_class] = ACTIONS(566),
- [anon_sym_async] = ACTIONS(598),
- [anon_sym_function] = ACTIONS(570),
- [anon_sym_new] = ACTIONS(600),
- [anon_sym_using] = ACTIONS(81),
- [anon_sym_PLUS] = ACTIONS(21),
- [anon_sym_DASH] = ACTIONS(21),
- [anon_sym_SLASH] = ACTIONS(83),
- [anon_sym_LT] = ACTIONS(85),
- [anon_sym_TILDE] = ACTIONS(33),
- [anon_sym_void] = ACTIONS(21),
- [anon_sym_delete] = ACTIONS(21),
- [anon_sym_PLUS_PLUS] = ACTIONS(87),
- [anon_sym_DASH_DASH] = ACTIONS(87),
- [sym_comment] = ACTIONS(5),
- [anon_sym_BQUOTE] = ACTIONS(89),
- [sym_number] = ACTIONS(91),
- [sym_private_property_identifier] = ACTIONS(93),
- [sym_this] = ACTIONS(95),
- [sym_super] = ACTIONS(95),
- [sym_true] = ACTIONS(95),
- [sym_false] = ACTIONS(95),
- [sym_null] = ACTIONS(95),
- [sym_undefined] = ACTIONS(97),
- [anon_sym_AT] = ACTIONS(99),
- [anon_sym_static] = ACTIONS(602),
- [anon_sym_readonly] = ACTIONS(602),
- [anon_sym_get] = ACTIONS(602),
- [anon_sym_set] = ACTIONS(602),
- [anon_sym_declare] = ACTIONS(604),
- [anon_sym_public] = ACTIONS(602),
- [anon_sym_private] = ACTIONS(602),
- [anon_sym_protected] = ACTIONS(602),
- [anon_sym_override] = ACTIONS(602),
- [anon_sym_module] = ACTIONS(606),
- [anon_sym_any] = ACTIONS(602),
- [anon_sym_number] = ACTIONS(602),
- [anon_sym_boolean] = ACTIONS(602),
- [anon_sym_string] = ACTIONS(602),
- [anon_sym_symbol] = ACTIONS(602),
- [anon_sym_object] = ACTIONS(602),
- [anon_sym_abstract] = ACTIONS(107),
- [anon_sym_interface] = ACTIONS(109),
- [anon_sym_enum] = ACTIONS(111),
- [sym_html_comment] = ACTIONS(5),
- },
- [67] = {
- [sym_export_statement] = STATE(854),
- [sym_declaration] = STATE(854),
- [sym_import] = STATE(3306),
- [sym_import_statement] = STATE(854),
- [sym_statement] = STATE(5134),
- [sym_expression_statement] = STATE(854),
- [sym_variable_declaration] = STATE(861),
- [sym_lexical_declaration] = STATE(861),
- [sym_statement_block] = STATE(854),
- [sym_if_statement] = STATE(854),
- [sym_switch_statement] = STATE(854),
- [sym_for_statement] = STATE(854),
- [sym_for_in_statement] = STATE(854),
- [sym_while_statement] = STATE(854),
- [sym_do_statement] = STATE(854),
- [sym_try_statement] = STATE(854),
- [sym_with_statement] = STATE(854),
- [sym_break_statement] = STATE(854),
- [sym_continue_statement] = STATE(854),
- [sym_debugger_statement] = STATE(854),
- [sym_return_statement] = STATE(854),
- [sym_throw_statement] = STATE(854),
- [sym_empty_statement] = STATE(854),
- [sym_labeled_statement] = STATE(854),
- [sym_parenthesized_expression] = STATE(1294),
- [sym_expression] = STATE(1705),
- [sym_primary_expression] = STATE(1946),
- [sym_yield_expression] = STATE(2234),
- [sym_object] = STATE(2310),
- [sym_object_pattern] = STATE(5667),
- [sym_array] = STATE(2310),
- [sym_array_pattern] = STATE(5667),
- [sym_glimmer_template] = STATE(2234),
- [sym_jsx_element] = STATE(2234),
- [sym_jsx_opening_element] = STATE(3051),
- [sym_jsx_self_closing_element] = STATE(2234),
- [sym_class] = STATE(2310),
- [sym_class_declaration] = STATE(861),
- [sym_function_expression] = STATE(2310),
- [sym_function_declaration] = STATE(861),
- [sym_generator_function] = STATE(2310),
- [sym_generator_function_declaration] = STATE(861),
- [sym_arrow_function] = STATE(2310),
- [sym__call_signature] = STATE(5809),
- [sym_call_expression] = STATE(2310),
- [sym_new_expression] = STATE(2234),
- [sym_await_expression] = STATE(2234),
- [sym_member_expression] = STATE(1294),
- [sym_subscript_expression] = STATE(1294),
- [sym_assignment_expression] = STATE(2234),
- [sym__augmented_assignment_lhs] = STATE(2875),
- [sym_augmented_assignment_expression] = STATE(2234),
- [sym__destructuring_pattern] = STATE(5667),
- [sym_ternary_expression] = STATE(2234),
- [sym_binary_expression] = STATE(2234),
- [sym_unary_expression] = STATE(2234),
- [sym_update_expression] = STATE(2234),
- [sym_sequence_expression] = STATE(5482),
- [sym_string] = STATE(2310),
- [sym_template_string] = STATE(2310),
- [sym_regex] = STATE(2310),
- [sym_meta_property] = STATE(2310),
- [sym_decorator] = STATE(1244),
- [sym_formal_parameters] = STATE(3742),
- [sym_non_null_expression] = STATE(1294),
- [sym_function_signature] = STATE(861),
- [sym_as_expression] = STATE(2234),
- [sym_satisfies_expression] = STATE(2234),
- [sym_instantiation_expression] = STATE(2234),
- [sym_ambient_declaration] = STATE(861),
- [sym_abstract_class_declaration] = STATE(861),
- [sym_module] = STATE(861),
- [sym_internal_module] = STATE(2332),
- [sym_import_alias] = STATE(861),
- [sym_interface_declaration] = STATE(861),
- [sym_enum_declaration] = STATE(861),
- [sym_type_alias_declaration] = STATE(861),
- [sym_type_parameters] = STATE(5349),
- [aux_sym_export_statement_repeat1] = STATE(3863),
- [sym_identifier] = ACTIONS(580),
- [anon_sym_export] = ACTIONS(582),
- [anon_sym_type] = ACTIONS(584),
- [anon_sym_namespace] = ACTIONS(586),
- [anon_sym_LBRACE] = ACTIONS(554),
- [anon_sym_typeof] = ACTIONS(21),
- [anon_sym_import] = ACTIONS(23),
- [anon_sym_with] = ACTIONS(588),
- [anon_sym_var] = ACTIONS(27),
- [anon_sym_let] = ACTIONS(590),
- [anon_sym_const] = ACTIONS(31),
- [anon_sym_BANG] = ACTIONS(33),
- [anon_sym_if] = ACTIONS(592),
- [anon_sym_switch] = ACTIONS(37),
- [anon_sym_for] = ACTIONS(594),
- [anon_sym_LPAREN] = ACTIONS(41),
- [anon_sym_await] = ACTIONS(43),
- [anon_sym_while] = ACTIONS(596),
- [anon_sym_do] = ACTIONS(47),
- [anon_sym_try] = ACTIONS(49),
- [anon_sym_break] = ACTIONS(51),
- [anon_sym_continue] = ACTIONS(53),
- [anon_sym_debugger] = ACTIONS(55),
- [anon_sym_return] = ACTIONS(57),
- [anon_sym_throw] = ACTIONS(59),
- [anon_sym_SEMI] = ACTIONS(61),
- [anon_sym_yield] = ACTIONS(63),
- [anon_sym_LBRACK] = ACTIONS(65),
- [sym_glimmer_opening_tag] = ACTIONS(67),
- [anon_sym_DQUOTE] = ACTIONS(69),
- [anon_sym_SQUOTE] = ACTIONS(71),
- [anon_sym_class] = ACTIONS(566),
- [anon_sym_async] = ACTIONS(598),
- [anon_sym_function] = ACTIONS(570),
- [anon_sym_new] = ACTIONS(600),
- [anon_sym_using] = ACTIONS(81),
- [anon_sym_PLUS] = ACTIONS(21),
- [anon_sym_DASH] = ACTIONS(21),
- [anon_sym_SLASH] = ACTIONS(83),
- [anon_sym_LT] = ACTIONS(85),
- [anon_sym_TILDE] = ACTIONS(33),
- [anon_sym_void] = ACTIONS(21),
- [anon_sym_delete] = ACTIONS(21),
- [anon_sym_PLUS_PLUS] = ACTIONS(87),
- [anon_sym_DASH_DASH] = ACTIONS(87),
- [sym_comment] = ACTIONS(5),
- [anon_sym_BQUOTE] = ACTIONS(89),
- [sym_number] = ACTIONS(91),
- [sym_private_property_identifier] = ACTIONS(93),
- [sym_this] = ACTIONS(95),
- [sym_super] = ACTIONS(95),
- [sym_true] = ACTIONS(95),
- [sym_false] = ACTIONS(95),
- [sym_null] = ACTIONS(95),
- [sym_undefined] = ACTIONS(97),
- [anon_sym_AT] = ACTIONS(99),
- [anon_sym_static] = ACTIONS(602),
- [anon_sym_readonly] = ACTIONS(602),
- [anon_sym_get] = ACTIONS(602),
- [anon_sym_set] = ACTIONS(602),
- [anon_sym_declare] = ACTIONS(604),
- [anon_sym_public] = ACTIONS(602),
- [anon_sym_private] = ACTIONS(602),
- [anon_sym_protected] = ACTIONS(602),
- [anon_sym_override] = ACTIONS(602),
- [anon_sym_module] = ACTIONS(606),
- [anon_sym_any] = ACTIONS(602),
- [anon_sym_number] = ACTIONS(602),
- [anon_sym_boolean] = ACTIONS(602),
- [anon_sym_string] = ACTIONS(602),
- [anon_sym_symbol] = ACTIONS(602),
- [anon_sym_object] = ACTIONS(602),
- [anon_sym_abstract] = ACTIONS(107),
- [anon_sym_interface] = ACTIONS(109),
- [anon_sym_enum] = ACTIONS(111),
- [sym_html_comment] = ACTIONS(5),
- },
- [68] = {
- [sym_export_statement] = STATE(854),
- [sym_declaration] = STATE(854),
- [sym_import] = STATE(3306),
- [sym_import_statement] = STATE(854),
- [sym_statement] = STATE(5574),
- [sym_expression_statement] = STATE(854),
- [sym_variable_declaration] = STATE(861),
- [sym_lexical_declaration] = STATE(861),
- [sym_statement_block] = STATE(854),
- [sym_if_statement] = STATE(854),
- [sym_switch_statement] = STATE(854),
- [sym_for_statement] = STATE(854),
- [sym_for_in_statement] = STATE(854),
- [sym_while_statement] = STATE(854),
- [sym_do_statement] = STATE(854),
- [sym_try_statement] = STATE(854),
- [sym_with_statement] = STATE(854),
- [sym_break_statement] = STATE(854),
- [sym_continue_statement] = STATE(854),
- [sym_debugger_statement] = STATE(854),
- [sym_return_statement] = STATE(854),
- [sym_throw_statement] = STATE(854),
- [sym_empty_statement] = STATE(854),
- [sym_labeled_statement] = STATE(854),
- [sym_parenthesized_expression] = STATE(1294),
- [sym_expression] = STATE(1705),
- [sym_primary_expression] = STATE(1946),
- [sym_yield_expression] = STATE(2234),
- [sym_object] = STATE(2310),
- [sym_object_pattern] = STATE(5667),
- [sym_array] = STATE(2310),
- [sym_array_pattern] = STATE(5667),
- [sym_glimmer_template] = STATE(2234),
- [sym_jsx_element] = STATE(2234),
- [sym_jsx_opening_element] = STATE(3051),
- [sym_jsx_self_closing_element] = STATE(2234),
- [sym_class] = STATE(2310),
- [sym_class_declaration] = STATE(861),
- [sym_function_expression] = STATE(2310),
- [sym_function_declaration] = STATE(861),
- [sym_generator_function] = STATE(2310),
- [sym_generator_function_declaration] = STATE(861),
- [sym_arrow_function] = STATE(2310),
- [sym__call_signature] = STATE(5809),
- [sym_call_expression] = STATE(2310),
- [sym_new_expression] = STATE(2234),
- [sym_await_expression] = STATE(2234),
- [sym_member_expression] = STATE(1294),
- [sym_subscript_expression] = STATE(1294),
- [sym_assignment_expression] = STATE(2234),
- [sym__augmented_assignment_lhs] = STATE(2875),
- [sym_augmented_assignment_expression] = STATE(2234),
- [sym__destructuring_pattern] = STATE(5667),
- [sym_ternary_expression] = STATE(2234),
- [sym_binary_expression] = STATE(2234),
- [sym_unary_expression] = STATE(2234),
- [sym_update_expression] = STATE(2234),
- [sym_sequence_expression] = STATE(5482),
- [sym_string] = STATE(2310),
- [sym_template_string] = STATE(2310),
- [sym_regex] = STATE(2310),
- [sym_meta_property] = STATE(2310),
- [sym_decorator] = STATE(1244),
- [sym_formal_parameters] = STATE(3742),
- [sym_non_null_expression] = STATE(1294),
- [sym_function_signature] = STATE(861),
- [sym_as_expression] = STATE(2234),
- [sym_satisfies_expression] = STATE(2234),
- [sym_instantiation_expression] = STATE(2234),
- [sym_ambient_declaration] = STATE(861),
- [sym_abstract_class_declaration] = STATE(861),
- [sym_module] = STATE(861),
- [sym_internal_module] = STATE(2332),
- [sym_import_alias] = STATE(861),
- [sym_interface_declaration] = STATE(861),
- [sym_enum_declaration] = STATE(861),
- [sym_type_alias_declaration] = STATE(861),
- [sym_type_parameters] = STATE(5349),
- [aux_sym_export_statement_repeat1] = STATE(3860),
- [sym_identifier] = ACTIONS(546),
- [anon_sym_export] = ACTIONS(548),
- [anon_sym_type] = ACTIONS(550),
- [anon_sym_namespace] = ACTIONS(552),
- [anon_sym_LBRACE] = ACTIONS(554),
- [anon_sym_typeof] = ACTIONS(21),
- [anon_sym_import] = ACTIONS(23),
- [anon_sym_with] = ACTIONS(556),
- [anon_sym_var] = ACTIONS(27),
- [anon_sym_let] = ACTIONS(558),
- [anon_sym_const] = ACTIONS(31),
- [anon_sym_BANG] = ACTIONS(33),
- [anon_sym_if] = ACTIONS(560),
- [anon_sym_switch] = ACTIONS(37),
- [anon_sym_for] = ACTIONS(562),
- [anon_sym_LPAREN] = ACTIONS(41),
- [anon_sym_await] = ACTIONS(43),
- [anon_sym_while] = ACTIONS(564),
- [anon_sym_do] = ACTIONS(47),
- [anon_sym_try] = ACTIONS(49),
- [anon_sym_break] = ACTIONS(51),
- [anon_sym_continue] = ACTIONS(53),
- [anon_sym_debugger] = ACTIONS(55),
- [anon_sym_return] = ACTIONS(57),
- [anon_sym_throw] = ACTIONS(59),
- [anon_sym_SEMI] = ACTIONS(61),
- [anon_sym_yield] = ACTIONS(63),
- [anon_sym_LBRACK] = ACTIONS(65),
- [sym_glimmer_opening_tag] = ACTIONS(67),
- [anon_sym_DQUOTE] = ACTIONS(69),
- [anon_sym_SQUOTE] = ACTIONS(71),
- [anon_sym_class] = ACTIONS(566),
- [anon_sym_async] = ACTIONS(568),
- [anon_sym_function] = ACTIONS(570),
- [anon_sym_new] = ACTIONS(572),
- [anon_sym_using] = ACTIONS(81),
- [anon_sym_PLUS] = ACTIONS(21),
- [anon_sym_DASH] = ACTIONS(21),
- [anon_sym_SLASH] = ACTIONS(83),
- [anon_sym_LT] = ACTIONS(85),
- [anon_sym_TILDE] = ACTIONS(33),
- [anon_sym_void] = ACTIONS(21),
- [anon_sym_delete] = ACTIONS(21),
- [anon_sym_PLUS_PLUS] = ACTIONS(87),
- [anon_sym_DASH_DASH] = ACTIONS(87),
- [sym_comment] = ACTIONS(5),
- [anon_sym_BQUOTE] = ACTIONS(89),
- [sym_number] = ACTIONS(91),
- [sym_private_property_identifier] = ACTIONS(93),
- [sym_this] = ACTIONS(95),
- [sym_super] = ACTIONS(95),
- [sym_true] = ACTIONS(95),
- [sym_false] = ACTIONS(95),
- [sym_null] = ACTIONS(95),
- [sym_undefined] = ACTIONS(97),
- [anon_sym_AT] = ACTIONS(99),
- [anon_sym_static] = ACTIONS(574),
- [anon_sym_readonly] = ACTIONS(574),
- [anon_sym_get] = ACTIONS(574),
- [anon_sym_set] = ACTIONS(574),
- [anon_sym_declare] = ACTIONS(576),
- [anon_sym_public] = ACTIONS(574),
- [anon_sym_private] = ACTIONS(574),
- [anon_sym_protected] = ACTIONS(574),
- [anon_sym_override] = ACTIONS(574),
- [anon_sym_module] = ACTIONS(578),
- [anon_sym_any] = ACTIONS(574),
- [anon_sym_number] = ACTIONS(574),
- [anon_sym_boolean] = ACTIONS(574),
- [anon_sym_string] = ACTIONS(574),
- [anon_sym_symbol] = ACTIONS(574),
- [anon_sym_object] = ACTIONS(574),
- [anon_sym_abstract] = ACTIONS(107),
- [anon_sym_interface] = ACTIONS(109),
- [anon_sym_enum] = ACTIONS(111),
- [sym_html_comment] = ACTIONS(5),
- },
- [69] = {
- [sym_import] = STATE(3306),
- [sym_parenthesized_expression] = STATE(1269),
- [sym_expression] = STATE(2411),
- [sym_primary_expression] = STATE(1719),
- [sym_yield_expression] = STATE(1634),
- [sym_object] = STATE(2310),
- [sym_object_pattern] = STATE(5854),
- [sym_array] = STATE(2310),
- [sym_array_pattern] = STATE(5854),
- [sym_glimmer_template] = STATE(1634),
- [sym_jsx_element] = STATE(1634),
- [sym_jsx_opening_element] = STATE(3026),
- [sym_jsx_self_closing_element] = STATE(1634),
- [sym_class] = STATE(2310),
- [sym_function_expression] = STATE(2310),
- [sym_generator_function] = STATE(2310),
- [sym_arrow_function] = STATE(2310),
- [sym__call_signature] = STATE(5809),
- [sym_call_expression] = STATE(2310),
- [sym_new_expression] = STATE(1634),
- [sym_await_expression] = STATE(1634),
- [sym_member_expression] = STATE(1269),
- [sym_subscript_expression] = STATE(1269),
- [sym_assignment_expression] = STATE(1634),
- [sym__augmented_assignment_lhs] = STATE(2878),
- [sym_augmented_assignment_expression] = STATE(1634),
- [sym__destructuring_pattern] = STATE(5854),
- [sym_ternary_expression] = STATE(1634),
- [sym_binary_expression] = STATE(1634),
- [sym_unary_expression] = STATE(1634),
- [sym_update_expression] = STATE(1634),
- [sym_string] = STATE(2310),
- [sym_template_string] = STATE(2310),
- [sym_regex] = STATE(2310),
- [sym_meta_property] = STATE(2310),
- [sym_decorator] = STATE(1244),
- [sym_formal_parameters] = STATE(3742),
- [sym_non_null_expression] = STATE(1269),
- [sym_as_expression] = STATE(1634),
- [sym_satisfies_expression] = STATE(1634),
- [sym_instantiation_expression] = STATE(1634),
- [sym_internal_module] = STATE(1634),
- [sym_type_parameters] = STATE(5349),
- [aux_sym_export_statement_repeat1] = STATE(4499),
- [aux_sym_object_repeat1] = STATE(5156),
- [aux_sym_object_pattern_repeat1] = STATE(4672),
- [sym_identifier] = ACTIONS(692),
- [anon_sym_export] = ACTIONS(694),
- [anon_sym_STAR] = ACTIONS(122),
- [anon_sym_type] = ACTIONS(694),
- [anon_sym_EQ] = ACTIONS(696),
- [anon_sym_as] = ACTIONS(122),
- [anon_sym_namespace] = ACTIONS(698),
- [anon_sym_LBRACE] = ACTIONS(700),
- [anon_sym_COMMA] = ACTIONS(162),
- [anon_sym_RBRACE] = ACTIONS(702),
- [anon_sym_typeof] = ACTIONS(187),
- [anon_sym_import] = ACTIONS(133),
- [anon_sym_let] = ACTIONS(694),
- [anon_sym_BANG] = ACTIONS(187),
- [anon_sym_LPAREN] = ACTIONS(41),
- [anon_sym_await] = ACTIONS(142),
- [anon_sym_in] = ACTIONS(122),
- [anon_sym_SEMI] = ACTIONS(162),
- [anon_sym_COLON] = ACTIONS(704),
- [anon_sym_yield] = ACTIONS(144),
- [anon_sym_LBRACK] = ACTIONS(65),
- [sym_glimmer_opening_tag] = ACTIONS(148),
- [anon_sym_GT] = ACTIONS(122),
- [anon_sym_DOT] = ACTIONS(707),
- [anon_sym_DQUOTE] = ACTIONS(69),
- [anon_sym_SQUOTE] = ACTIONS(71),
- [anon_sym_class] = ACTIONS(709),
- [anon_sym_async] = ACTIONS(711),
- [anon_sym_function] = ACTIONS(713),
- [anon_sym_EQ_GT] = ACTIONS(715),
- [anon_sym_QMARK_DOT] = ACTIONS(162),
- [anon_sym_new] = ACTIONS(717),
- [anon_sym_using] = ACTIONS(166),
- [anon_sym_PLUS_EQ] = ACTIONS(168),
- [anon_sym_DASH_EQ] = ACTIONS(168),
- [anon_sym_STAR_EQ] = ACTIONS(168),
- [anon_sym_SLASH_EQ] = ACTIONS(168),
- [anon_sym_PERCENT_EQ] = ACTIONS(168),
- [anon_sym_CARET_EQ] = ACTIONS(168),
- [anon_sym_AMP_EQ] = ACTIONS(168),
- [anon_sym_PIPE_EQ] = ACTIONS(168),
- [anon_sym_GT_GT_EQ] = ACTIONS(168),
- [anon_sym_GT_GT_GT_EQ] = ACTIONS(168),
- [anon_sym_LT_LT_EQ] = ACTIONS(168),
- [anon_sym_STAR_STAR_EQ] = ACTIONS(168),
- [anon_sym_AMP_AMP_EQ] = ACTIONS(168),
- [anon_sym_PIPE_PIPE_EQ] = ACTIONS(168),
- [anon_sym_QMARK_QMARK_EQ] = ACTIONS(168),
- [anon_sym_AMP_AMP] = ACTIONS(122),
- [anon_sym_PIPE_PIPE] = ACTIONS(122),
- [anon_sym_GT_GT] = ACTIONS(122),
- [anon_sym_GT_GT_GT] = ACTIONS(122),
- [anon_sym_LT_LT] = ACTIONS(122),
- [anon_sym_AMP] = ACTIONS(122),
- [anon_sym_CARET] = ACTIONS(122),
- [anon_sym_PIPE] = ACTIONS(122),
- [anon_sym_PLUS] = ACTIONS(187),
- [anon_sym_DASH] = ACTIONS(187),
- [anon_sym_SLASH] = ACTIONS(83),
- [anon_sym_PERCENT] = ACTIONS(122),
- [anon_sym_STAR_STAR] = ACTIONS(122),
- [anon_sym_LT] = ACTIONS(181),
- [anon_sym_LT_EQ] = ACTIONS(162),
- [anon_sym_EQ_EQ] = ACTIONS(122),
- [anon_sym_EQ_EQ_EQ] = ACTIONS(162),
- [anon_sym_BANG_EQ] = ACTIONS(122),
- [anon_sym_BANG_EQ_EQ] = ACTIONS(162),
- [anon_sym_GT_EQ] = ACTIONS(162),
- [anon_sym_QMARK_QMARK] = ACTIONS(122),
- [anon_sym_instanceof] = ACTIONS(122),
- [anon_sym_TILDE] = ACTIONS(183),
- [anon_sym_void] = ACTIONS(187),
- [anon_sym_delete] = ACTIONS(187),
- [anon_sym_PLUS_PLUS] = ACTIONS(719),
- [anon_sym_DASH_DASH] = ACTIONS(719),
- [sym_comment] = ACTIONS(5),
- [anon_sym_BQUOTE] = ACTIONS(89),
- [sym_number] = ACTIONS(91),
- [sym_private_property_identifier] = ACTIONS(196),
- [sym_this] = ACTIONS(95),
- [sym_super] = ACTIONS(95),
- [sym_true] = ACTIONS(95),
- [sym_false] = ACTIONS(95),
- [sym_null] = ACTIONS(95),
- [sym_undefined] = ACTIONS(721),
- [anon_sym_AT] = ACTIONS(99),
- [anon_sym_static] = ACTIONS(694),
- [anon_sym_readonly] = ACTIONS(694),
- [anon_sym_get] = ACTIONS(694),
- [anon_sym_set] = ACTIONS(694),
- [anon_sym_QMARK] = ACTIONS(723),
- [anon_sym_declare] = ACTIONS(694),
- [anon_sym_public] = ACTIONS(694),
- [anon_sym_private] = ACTIONS(694),
- [anon_sym_protected] = ACTIONS(694),
- [anon_sym_override] = ACTIONS(694),
- [anon_sym_module] = ACTIONS(694),
- [anon_sym_any] = ACTIONS(694),
- [anon_sym_number] = ACTIONS(694),
- [anon_sym_boolean] = ACTIONS(694),
- [anon_sym_string] = ACTIONS(694),
- [anon_sym_symbol] = ACTIONS(694),
- [anon_sym_object] = ACTIONS(694),
- [anon_sym_satisfies] = ACTIONS(122),
- [sym__automatic_semicolon] = ACTIONS(162),
- [sym__ternary_qmark] = ACTIONS(162),
- [sym_html_comment] = ACTIONS(5),
- },
- [70] = {
- [sym_import] = STATE(3306),
- [sym_parenthesized_expression] = STATE(1269),
- [sym_expression] = STATE(2411),
- [sym_primary_expression] = STATE(1719),
- [sym_yield_expression] = STATE(1634),
- [sym_object] = STATE(2310),
- [sym_object_pattern] = STATE(5854),
- [sym_array] = STATE(2310),
- [sym_array_pattern] = STATE(5854),
- [sym_glimmer_template] = STATE(1634),
- [sym_jsx_element] = STATE(1634),
- [sym_jsx_opening_element] = STATE(3026),
- [sym_jsx_self_closing_element] = STATE(1634),
- [sym_class] = STATE(2310),
- [sym_function_expression] = STATE(2310),
- [sym_generator_function] = STATE(2310),
- [sym_arrow_function] = STATE(2310),
- [sym__call_signature] = STATE(5809),
- [sym_call_expression] = STATE(2310),
- [sym_new_expression] = STATE(1634),
- [sym_await_expression] = STATE(1634),
- [sym_member_expression] = STATE(1269),
- [sym_subscript_expression] = STATE(1269),
- [sym_assignment_expression] = STATE(1634),
- [sym__augmented_assignment_lhs] = STATE(2878),
- [sym_augmented_assignment_expression] = STATE(1634),
- [sym__destructuring_pattern] = STATE(5854),
- [sym_ternary_expression] = STATE(1634),
- [sym_binary_expression] = STATE(1634),
- [sym_unary_expression] = STATE(1634),
- [sym_update_expression] = STATE(1634),
- [sym_string] = STATE(2310),
- [sym_template_string] = STATE(2310),
- [sym_regex] = STATE(2310),
- [sym_meta_property] = STATE(2310),
- [sym_decorator] = STATE(1244),
- [sym_formal_parameters] = STATE(3742),
- [sym_non_null_expression] = STATE(1269),
- [sym_as_expression] = STATE(1634),
- [sym_satisfies_expression] = STATE(1634),
- [sym_instantiation_expression] = STATE(1634),
- [sym_internal_module] = STATE(1634),
- [sym_type_parameters] = STATE(5349),
- [aux_sym_export_statement_repeat1] = STATE(4499),
- [aux_sym_object_repeat1] = STATE(5156),
- [aux_sym_object_pattern_repeat1] = STATE(4672),
- [sym_identifier] = ACTIONS(692),
- [anon_sym_export] = ACTIONS(694),
- [anon_sym_STAR] = ACTIONS(122),
- [anon_sym_type] = ACTIONS(694),
- [anon_sym_EQ] = ACTIONS(696),
- [anon_sym_as] = ACTIONS(122),
- [anon_sym_namespace] = ACTIONS(698),
- [anon_sym_LBRACE] = ACTIONS(700),
- [anon_sym_COMMA] = ACTIONS(162),
- [anon_sym_RBRACE] = ACTIONS(725),
- [anon_sym_typeof] = ACTIONS(187),
- [anon_sym_import] = ACTIONS(133),
- [anon_sym_let] = ACTIONS(694),
- [anon_sym_BANG] = ACTIONS(187),
- [anon_sym_LPAREN] = ACTIONS(41),
- [anon_sym_await] = ACTIONS(142),
- [anon_sym_in] = ACTIONS(122),
- [anon_sym_SEMI] = ACTIONS(162),
- [anon_sym_COLON] = ACTIONS(704),
- [anon_sym_yield] = ACTIONS(144),
- [anon_sym_LBRACK] = ACTIONS(65),
- [sym_glimmer_opening_tag] = ACTIONS(148),
- [anon_sym_GT] = ACTIONS(122),
- [anon_sym_DOT] = ACTIONS(707),
- [anon_sym_DQUOTE] = ACTIONS(69),
- [anon_sym_SQUOTE] = ACTIONS(71),
- [anon_sym_class] = ACTIONS(709),
- [anon_sym_async] = ACTIONS(711),
- [anon_sym_function] = ACTIONS(713),
- [anon_sym_EQ_GT] = ACTIONS(715),
- [anon_sym_QMARK_DOT] = ACTIONS(162),
- [anon_sym_new] = ACTIONS(717),
- [anon_sym_using] = ACTIONS(166),
- [anon_sym_PLUS_EQ] = ACTIONS(168),
- [anon_sym_DASH_EQ] = ACTIONS(168),
- [anon_sym_STAR_EQ] = ACTIONS(168),
- [anon_sym_SLASH_EQ] = ACTIONS(168),
- [anon_sym_PERCENT_EQ] = ACTIONS(168),
- [anon_sym_CARET_EQ] = ACTIONS(168),
- [anon_sym_AMP_EQ] = ACTIONS(168),
- [anon_sym_PIPE_EQ] = ACTIONS(168),
- [anon_sym_GT_GT_EQ] = ACTIONS(168),
- [anon_sym_GT_GT_GT_EQ] = ACTIONS(168),
- [anon_sym_LT_LT_EQ] = ACTIONS(168),
- [anon_sym_STAR_STAR_EQ] = ACTIONS(168),
- [anon_sym_AMP_AMP_EQ] = ACTIONS(168),
- [anon_sym_PIPE_PIPE_EQ] = ACTIONS(168),
- [anon_sym_QMARK_QMARK_EQ] = ACTIONS(168),
- [anon_sym_AMP_AMP] = ACTIONS(122),
- [anon_sym_PIPE_PIPE] = ACTIONS(122),
- [anon_sym_GT_GT] = ACTIONS(122),
- [anon_sym_GT_GT_GT] = ACTIONS(122),
- [anon_sym_LT_LT] = ACTIONS(122),
- [anon_sym_AMP] = ACTIONS(122),
- [anon_sym_CARET] = ACTIONS(122),
- [anon_sym_PIPE] = ACTIONS(122),
- [anon_sym_PLUS] = ACTIONS(187),
- [anon_sym_DASH] = ACTIONS(187),
- [anon_sym_SLASH] = ACTIONS(83),
- [anon_sym_PERCENT] = ACTIONS(122),
- [anon_sym_STAR_STAR] = ACTIONS(122),
- [anon_sym_LT] = ACTIONS(181),
- [anon_sym_LT_EQ] = ACTIONS(162),
- [anon_sym_EQ_EQ] = ACTIONS(122),
- [anon_sym_EQ_EQ_EQ] = ACTIONS(162),
- [anon_sym_BANG_EQ] = ACTIONS(122),
- [anon_sym_BANG_EQ_EQ] = ACTIONS(162),
- [anon_sym_GT_EQ] = ACTIONS(162),
- [anon_sym_QMARK_QMARK] = ACTIONS(122),
- [anon_sym_instanceof] = ACTIONS(122),
- [anon_sym_TILDE] = ACTIONS(183),
- [anon_sym_void] = ACTIONS(187),
- [anon_sym_delete] = ACTIONS(187),
- [anon_sym_PLUS_PLUS] = ACTIONS(719),
- [anon_sym_DASH_DASH] = ACTIONS(719),
- [sym_comment] = ACTIONS(5),
- [anon_sym_BQUOTE] = ACTIONS(89),
- [sym_number] = ACTIONS(91),
- [sym_private_property_identifier] = ACTIONS(196),
- [sym_this] = ACTIONS(95),
- [sym_super] = ACTIONS(95),
- [sym_true] = ACTIONS(95),
- [sym_false] = ACTIONS(95),
- [sym_null] = ACTIONS(95),
- [sym_undefined] = ACTIONS(721),
- [anon_sym_AT] = ACTIONS(99),
- [anon_sym_static] = ACTIONS(694),
- [anon_sym_readonly] = ACTIONS(694),
- [anon_sym_get] = ACTIONS(694),
- [anon_sym_set] = ACTIONS(694),
- [anon_sym_QMARK] = ACTIONS(723),
- [anon_sym_declare] = ACTIONS(694),
- [anon_sym_public] = ACTIONS(694),
- [anon_sym_private] = ACTIONS(694),
- [anon_sym_protected] = ACTIONS(694),
- [anon_sym_override] = ACTIONS(694),
- [anon_sym_module] = ACTIONS(694),
- [anon_sym_any] = ACTIONS(694),
- [anon_sym_number] = ACTIONS(694),
- [anon_sym_boolean] = ACTIONS(694),
- [anon_sym_string] = ACTIONS(694),
- [anon_sym_symbol] = ACTIONS(694),
- [anon_sym_object] = ACTIONS(694),
- [anon_sym_satisfies] = ACTIONS(122),
- [sym__automatic_semicolon] = ACTIONS(162),
- [sym__ternary_qmark] = ACTIONS(162),
- [sym_html_comment] = ACTIONS(5),
- },
- [71] = {
- [sym_import] = STATE(3306),
- [sym_parenthesized_expression] = STATE(1269),
- [sym_expression] = STATE(2411),
- [sym_primary_expression] = STATE(1719),
- [sym_yield_expression] = STATE(1634),
- [sym_object] = STATE(2310),
- [sym_object_pattern] = STATE(5854),
- [sym_array] = STATE(2310),
- [sym_array_pattern] = STATE(5854),
- [sym_glimmer_template] = STATE(1634),
- [sym_jsx_element] = STATE(1634),
- [sym_jsx_opening_element] = STATE(3026),
- [sym_jsx_self_closing_element] = STATE(1634),
- [sym_class] = STATE(2310),
- [sym_function_expression] = STATE(2310),
- [sym_generator_function] = STATE(2310),
- [sym_arrow_function] = STATE(2310),
- [sym__call_signature] = STATE(5809),
- [sym_call_expression] = STATE(2310),
- [sym_new_expression] = STATE(1634),
- [sym_await_expression] = STATE(1634),
- [sym_member_expression] = STATE(1269),
- [sym_subscript_expression] = STATE(1269),
- [sym_assignment_expression] = STATE(1634),
- [sym__augmented_assignment_lhs] = STATE(2878),
- [sym_augmented_assignment_expression] = STATE(1634),
- [sym__destructuring_pattern] = STATE(5854),
- [sym_ternary_expression] = STATE(1634),
- [sym_binary_expression] = STATE(1634),
- [sym_unary_expression] = STATE(1634),
- [sym_update_expression] = STATE(1634),
- [sym_string] = STATE(2310),
- [sym_template_string] = STATE(2310),
- [sym_regex] = STATE(2310),
- [sym_meta_property] = STATE(2310),
- [sym_decorator] = STATE(1244),
- [sym_formal_parameters] = STATE(3742),
- [sym_non_null_expression] = STATE(1269),
- [sym_as_expression] = STATE(1634),
- [sym_satisfies_expression] = STATE(1634),
- [sym_instantiation_expression] = STATE(1634),
- [sym_internal_module] = STATE(1634),
- [sym_type_parameters] = STATE(5349),
- [aux_sym_export_statement_repeat1] = STATE(4499),
- [aux_sym_object_repeat1] = STATE(4671),
- [aux_sym_object_pattern_repeat1] = STATE(4672),
- [sym_identifier] = ACTIONS(692),
- [anon_sym_export] = ACTIONS(694),
- [anon_sym_STAR] = ACTIONS(122),
- [anon_sym_type] = ACTIONS(694),
- [anon_sym_EQ] = ACTIONS(696),
- [anon_sym_as] = ACTIONS(122),
- [anon_sym_namespace] = ACTIONS(698),
- [anon_sym_LBRACE] = ACTIONS(700),
- [anon_sym_COMMA] = ACTIONS(162),
- [anon_sym_RBRACE] = ACTIONS(727),
- [anon_sym_typeof] = ACTIONS(187),
- [anon_sym_import] = ACTIONS(133),
- [anon_sym_let] = ACTIONS(694),
- [anon_sym_BANG] = ACTIONS(187),
- [anon_sym_LPAREN] = ACTIONS(41),
- [anon_sym_await] = ACTIONS(142),
- [anon_sym_in] = ACTIONS(122),
- [anon_sym_SEMI] = ACTIONS(162),
- [anon_sym_COLON] = ACTIONS(704),
- [anon_sym_yield] = ACTIONS(144),
- [anon_sym_LBRACK] = ACTIONS(65),
- [sym_glimmer_opening_tag] = ACTIONS(148),
- [anon_sym_GT] = ACTIONS(122),
- [anon_sym_DOT] = ACTIONS(707),
- [anon_sym_DQUOTE] = ACTIONS(69),
- [anon_sym_SQUOTE] = ACTIONS(71),
- [anon_sym_class] = ACTIONS(709),
- [anon_sym_async] = ACTIONS(711),
- [anon_sym_function] = ACTIONS(713),
- [anon_sym_EQ_GT] = ACTIONS(715),
- [anon_sym_QMARK_DOT] = ACTIONS(162),
- [anon_sym_new] = ACTIONS(717),
- [anon_sym_using] = ACTIONS(166),
- [anon_sym_PLUS_EQ] = ACTIONS(168),
- [anon_sym_DASH_EQ] = ACTIONS(168),
- [anon_sym_STAR_EQ] = ACTIONS(168),
- [anon_sym_SLASH_EQ] = ACTIONS(168),
- [anon_sym_PERCENT_EQ] = ACTIONS(168),
- [anon_sym_CARET_EQ] = ACTIONS(168),
- [anon_sym_AMP_EQ] = ACTIONS(168),
- [anon_sym_PIPE_EQ] = ACTIONS(168),
- [anon_sym_GT_GT_EQ] = ACTIONS(168),
- [anon_sym_GT_GT_GT_EQ] = ACTIONS(168),
- [anon_sym_LT_LT_EQ] = ACTIONS(168),
- [anon_sym_STAR_STAR_EQ] = ACTIONS(168),
- [anon_sym_AMP_AMP_EQ] = ACTIONS(168),
- [anon_sym_PIPE_PIPE_EQ] = ACTIONS(168),
- [anon_sym_QMARK_QMARK_EQ] = ACTIONS(168),
- [anon_sym_AMP_AMP] = ACTIONS(122),
- [anon_sym_PIPE_PIPE] = ACTIONS(122),
- [anon_sym_GT_GT] = ACTIONS(122),
- [anon_sym_GT_GT_GT] = ACTIONS(122),
- [anon_sym_LT_LT] = ACTIONS(122),
- [anon_sym_AMP] = ACTIONS(122),
- [anon_sym_CARET] = ACTIONS(122),
- [anon_sym_PIPE] = ACTIONS(122),
- [anon_sym_PLUS] = ACTIONS(187),
- [anon_sym_DASH] = ACTIONS(187),
- [anon_sym_SLASH] = ACTIONS(83),
- [anon_sym_PERCENT] = ACTIONS(122),
- [anon_sym_STAR_STAR] = ACTIONS(122),
- [anon_sym_LT] = ACTIONS(181),
- [anon_sym_LT_EQ] = ACTIONS(162),
- [anon_sym_EQ_EQ] = ACTIONS(122),
- [anon_sym_EQ_EQ_EQ] = ACTIONS(162),
- [anon_sym_BANG_EQ] = ACTIONS(122),
- [anon_sym_BANG_EQ_EQ] = ACTIONS(162),
- [anon_sym_GT_EQ] = ACTIONS(162),
- [anon_sym_QMARK_QMARK] = ACTIONS(122),
- [anon_sym_instanceof] = ACTIONS(122),
- [anon_sym_TILDE] = ACTIONS(183),
- [anon_sym_void] = ACTIONS(187),
- [anon_sym_delete] = ACTIONS(187),
- [anon_sym_PLUS_PLUS] = ACTIONS(719),
- [anon_sym_DASH_DASH] = ACTIONS(719),
- [sym_comment] = ACTIONS(5),
- [anon_sym_BQUOTE] = ACTIONS(89),
- [sym_number] = ACTIONS(91),
- [sym_private_property_identifier] = ACTIONS(196),
- [sym_this] = ACTIONS(95),
- [sym_super] = ACTIONS(95),
- [sym_true] = ACTIONS(95),
- [sym_false] = ACTIONS(95),
- [sym_null] = ACTIONS(95),
- [sym_undefined] = ACTIONS(721),
- [anon_sym_AT] = ACTIONS(99),
- [anon_sym_static] = ACTIONS(694),
- [anon_sym_readonly] = ACTIONS(694),
- [anon_sym_get] = ACTIONS(694),
- [anon_sym_set] = ACTIONS(694),
- [anon_sym_QMARK] = ACTIONS(723),
- [anon_sym_declare] = ACTIONS(694),
- [anon_sym_public] = ACTIONS(694),
- [anon_sym_private] = ACTIONS(694),
- [anon_sym_protected] = ACTIONS(694),
- [anon_sym_override] = ACTIONS(694),
- [anon_sym_module] = ACTIONS(694),
- [anon_sym_any] = ACTIONS(694),
- [anon_sym_number] = ACTIONS(694),
- [anon_sym_boolean] = ACTIONS(694),
- [anon_sym_string] = ACTIONS(694),
- [anon_sym_symbol] = ACTIONS(694),
- [anon_sym_object] = ACTIONS(694),
- [anon_sym_satisfies] = ACTIONS(122),
- [sym__automatic_semicolon] = ACTIONS(162),
- [sym__ternary_qmark] = ACTIONS(162),
- [sym_html_comment] = ACTIONS(5),
- },
- [72] = {
- [sym_import] = STATE(3395),
- [sym_parenthesized_expression] = STATE(1251),
- [sym_expression] = STATE(1532),
- [sym_primary_expression] = STATE(1468),
- [sym_yield_expression] = STATE(1634),
- [sym_object] = STATE(1650),
- [sym_object_pattern] = STATE(3610),
- [sym_array] = STATE(1650),
- [sym_array_pattern] = STATE(3610),
- [sym_glimmer_template] = STATE(1634),
- [sym_jsx_element] = STATE(1634),
- [sym_jsx_opening_element] = STATE(3026),
- [sym_nested_identifier] = STATE(5707),
- [sym_jsx_self_closing_element] = STATE(1634),
- [sym_class] = STATE(1650),
- [sym_function_expression] = STATE(1650),
- [sym_generator_function] = STATE(1650),
- [sym_arrow_function] = STATE(1650),
- [sym__call_signature] = STATE(5828),
- [sym__formal_parameter] = STATE(4890),
- [sym_call_expression] = STATE(1650),
- [sym_new_expression] = STATE(1634),
- [sym_await_expression] = STATE(1634),
- [sym_member_expression] = STATE(1230),
- [sym_subscript_expression] = STATE(1230),
- [sym_assignment_expression] = STATE(1634),
- [sym__augmented_assignment_lhs] = STATE(2900),
- [sym_augmented_assignment_expression] = STATE(1634),
- [sym__destructuring_pattern] = STATE(3610),
- [sym_ternary_expression] = STATE(1634),
- [sym_binary_expression] = STATE(1634),
- [sym_unary_expression] = STATE(1634),
- [sym_update_expression] = STATE(1634),
- [sym_sequence_expression] = STATE(5725),
- [sym_string] = STATE(2155),
- [sym_template_string] = STATE(1650),
- [sym_regex] = STATE(1650),
- [sym_meta_property] = STATE(1650),
- [sym_decorator] = STATE(1244),
- [sym_formal_parameters] = STATE(3952),
- [sym_pattern] = STATE(4262),
- [sym_rest_pattern] = STATE(3700),
- [sym_non_null_expression] = STATE(1230),
- [sym_as_expression] = STATE(1634),
- [sym_satisfies_expression] = STATE(1634),
- [sym_instantiation_expression] = STATE(1634),
- [sym_internal_module] = STATE(1634),
- [sym_nested_type_identifier] = STATE(2828),
- [sym_accessibility_modifier] = STATE(268),
- [sym_override_modifier] = STATE(296),
- [sym_required_parameter] = STATE(4890),
- [sym_optional_parameter] = STATE(4890),
- [sym__parameter_name] = STATE(3493),
- [sym__type_query_member_expression_in_type_annotation] = STATE(2846),
- [sym__type_query_call_expression_in_type_annotation] = STATE(2850),
- [sym_type] = STATE(4557),
- [sym_constructor_type] = STATE(2896),
- [sym_primary_type] = STATE(2897),
- [sym_template_literal_type] = STATE(2885),
- [sym_infer_type] = STATE(2896),
- [sym_conditional_type] = STATE(2885),
- [sym_generic_type] = STATE(2885),
- [sym_type_query] = STATE(2885),
- [sym_index_type_query] = STATE(2885),
- [sym_lookup_type] = STATE(2885),
- [sym_literal_type] = STATE(2885),
- [sym__number] = STATE(2903),
- [sym_existential_type] = STATE(2885),
- [sym_flow_maybe_type] = STATE(2885),
- [sym_parenthesized_type] = STATE(2885),
- [sym_predefined_type] = STATE(2885),
- [sym_object_type] = STATE(2885),
- [sym_type_parameters] = STATE(5276),
- [sym_array_type] = STATE(2885),
- [sym_tuple_type] = STATE(2885),
- [sym_readonly_type] = STATE(2896),
- [sym_union_type] = STATE(2885),
- [sym_intersection_type] = STATE(2885),
- [sym_function_type] = STATE(2896),
- [aux_sym_export_statement_repeat1] = STATE(253),
- [sym_identifier] = ACTIONS(729),
- [anon_sym_export] = ACTIONS(610),
- [anon_sym_STAR] = ACTIONS(612),
- [anon_sym_type] = ACTIONS(610),
- [anon_sym_namespace] = ACTIONS(614),
- [anon_sym_LBRACE] = ACTIONS(731),
- [anon_sym_typeof] = ACTIONS(733),
- [anon_sym_import] = ACTIONS(133),
- [anon_sym_let] = ACTIONS(610),
- [anon_sym_const] = ACTIONS(135),
- [anon_sym_BANG] = ACTIONS(622),
- [anon_sym_LPAREN] = ACTIONS(140),
- [anon_sym_RPAREN] = ACTIONS(735),
- [anon_sym_await] = ACTIONS(624),
- [anon_sym_yield] = ACTIONS(626),
- [anon_sym_LBRACK] = ACTIONS(737),
- [sym_glimmer_opening_tag] = ACTIONS(148),
- [anon_sym_DQUOTE] = ACTIONS(150),
- [anon_sym_SQUOTE] = ACTIONS(152),
- [anon_sym_class] = ACTIONS(154),
- [anon_sym_async] = ACTIONS(632),
- [anon_sym_function] = ACTIONS(158),
- [anon_sym_new] = ACTIONS(739),
- [anon_sym_using] = ACTIONS(636),
- [anon_sym_DOT_DOT_DOT] = ACTIONS(170),
- [anon_sym_AMP] = ACTIONS(741),
- [anon_sym_PIPE] = ACTIONS(743),
- [anon_sym_PLUS] = ACTIONS(745),
- [anon_sym_DASH] = ACTIONS(745),
- [anon_sym_SLASH] = ACTIONS(646),
- [anon_sym_LT] = ACTIONS(181),
- [anon_sym_TILDE] = ACTIONS(622),
- [anon_sym_void] = ACTIONS(648),
- [anon_sym_delete] = ACTIONS(650),
- [anon_sym_PLUS_PLUS] = ACTIONS(652),
- [anon_sym_DASH_DASH] = ACTIONS(652),
- [sym_comment] = ACTIONS(5),
- [anon_sym_BQUOTE] = ACTIONS(747),
- [sym_number] = ACTIONS(749),
- [sym_private_property_identifier] = ACTIONS(654),
- [sym_this] = ACTIONS(751),
- [sym_super] = ACTIONS(200),
- [sym_true] = ACTIONS(753),
- [sym_false] = ACTIONS(753),
- [sym_null] = ACTIONS(753),
- [sym_undefined] = ACTIONS(755),
- [anon_sym_AT] = ACTIONS(757),
- [anon_sym_static] = ACTIONS(610),
- [anon_sym_readonly] = ACTIONS(759),
- [anon_sym_get] = ACTIONS(610),
- [anon_sym_set] = ACTIONS(610),
- [anon_sym_QMARK] = ACTIONS(761),
- [anon_sym_declare] = ACTIONS(610),
- [anon_sym_public] = ACTIONS(763),
- [anon_sym_private] = ACTIONS(763),
- [anon_sym_protected] = ACTIONS(763),
- [anon_sym_override] = ACTIONS(765),
- [anon_sym_module] = ACTIONS(610),
- [anon_sym_any] = ACTIONS(767),
- [anon_sym_number] = ACTIONS(767),
- [anon_sym_boolean] = ACTIONS(767),
- [anon_sym_string] = ACTIONS(767),
- [anon_sym_symbol] = ACTIONS(767),
- [anon_sym_object] = ACTIONS(767),
- [anon_sym_abstract] = ACTIONS(212),
- [anon_sym_infer] = ACTIONS(214),
- [anon_sym_keyof] = ACTIONS(216),
- [anon_sym_unique] = ACTIONS(218),
- [anon_sym_unknown] = ACTIONS(220),
- [anon_sym_never] = ACTIONS(220),
- [anon_sym_LBRACE_PIPE] = ACTIONS(222),
- [sym_html_comment] = ACTIONS(5),
- },
- [73] = {
- [sym_import] = STATE(3334),
- [sym_parenthesized_expression] = STATE(1179),
- [sym_expression] = STATE(2415),
- [sym_primary_expression] = STATE(1468),
- [sym_yield_expression] = STATE(1634),
- [sym_object] = STATE(1650),
- [sym_object_pattern] = STATE(3588),
- [sym_array] = STATE(1650),
- [sym_array_pattern] = STATE(3588),
- [sym_glimmer_template] = STATE(1634),
- [sym_jsx_element] = STATE(1634),
- [sym_jsx_opening_element] = STATE(3026),
- [sym_jsx_self_closing_element] = STATE(1634),
- [sym_class] = STATE(1650),
- [sym_function_expression] = STATE(1650),
- [sym_generator_function] = STATE(1650),
- [sym_arrow_function] = STATE(1650),
- [sym__call_signature] = STATE(5619),
- [sym_call_expression] = STATE(1650),
- [sym_new_expression] = STATE(1634),
- [sym_await_expression] = STATE(1634),
- [sym_member_expression] = STATE(1221),
- [sym_subscript_expression] = STATE(1221),
- [sym_assignment_expression] = STATE(1634),
- [sym__augmented_assignment_lhs] = STATE(2878),
- [sym_augmented_assignment_expression] = STATE(1634),
- [sym__destructuring_pattern] = STATE(3588),
- [sym_ternary_expression] = STATE(1634),
- [sym_binary_expression] = STATE(1634),
- [sym_unary_expression] = STATE(1634),
- [sym_update_expression] = STATE(1634),
- [sym_string] = STATE(1650),
- [sym_template_string] = STATE(1650),
- [sym_regex] = STATE(1650),
- [sym_meta_property] = STATE(1650),
- [sym_decorator] = STATE(1244),
- [sym_formal_parameters] = STATE(3742),
- [sym_pattern] = STATE(4273),
- [sym_rest_pattern] = STATE(3700),
- [sym_non_null_expression] = STATE(1221),
- [sym_as_expression] = STATE(1634),
- [sym_satisfies_expression] = STATE(1634),
- [sym_instantiation_expression] = STATE(1634),
- [sym_internal_module] = STATE(1634),
- [sym_type_parameters] = STATE(5349),
- [aux_sym_export_statement_repeat1] = STATE(4458),
- [sym_identifier] = ACTIONS(769),
- [anon_sym_export] = ACTIONS(115),
- [anon_sym_STAR] = ACTIONS(122),
- [anon_sym_type] = ACTIONS(115),
- [anon_sym_EQ] = ACTIONS(224),
- [anon_sym_as] = ACTIONS(122),
- [anon_sym_namespace] = ACTIONS(124),
- [anon_sym_LBRACE] = ACTIONS(771),
- [anon_sym_COMMA] = ACTIONS(227),
- [anon_sym_typeof] = ACTIONS(187),
- [anon_sym_import] = ACTIONS(133),
- [anon_sym_let] = ACTIONS(115),
- [anon_sym_BANG] = ACTIONS(137),
- [anon_sym_LPAREN] = ACTIONS(773),
- [anon_sym_RPAREN] = ACTIONS(227),
- [anon_sym_await] = ACTIONS(142),
- [anon_sym_in] = ACTIONS(122),
- [anon_sym_COLON] = ACTIONS(227),
- [anon_sym_yield] = ACTIONS(144),
- [anon_sym_LBRACK] = ACTIONS(776),
- [sym_glimmer_opening_tag] = ACTIONS(148),
- [anon_sym_GT] = ACTIONS(122),
- [anon_sym_DOT] = ACTIONS(122),
- [anon_sym_DQUOTE] = ACTIONS(150),
- [anon_sym_SQUOTE] = ACTIONS(152),
- [anon_sym_class] = ACTIONS(154),
- [anon_sym_async] = ACTIONS(156),
- [anon_sym_function] = ACTIONS(158),
- [anon_sym_EQ_GT] = ACTIONS(229),
- [anon_sym_QMARK_DOT] = ACTIONS(162),
- [anon_sym_new] = ACTIONS(779),
- [anon_sym_using] = ACTIONS(166),
- [anon_sym_PLUS_EQ] = ACTIONS(168),
- [anon_sym_DASH_EQ] = ACTIONS(168),
- [anon_sym_STAR_EQ] = ACTIONS(168),
- [anon_sym_SLASH_EQ] = ACTIONS(168),
- [anon_sym_PERCENT_EQ] = ACTIONS(168),
- [anon_sym_CARET_EQ] = ACTIONS(168),
- [anon_sym_AMP_EQ] = ACTIONS(168),
- [anon_sym_PIPE_EQ] = ACTIONS(168),
- [anon_sym_GT_GT_EQ] = ACTIONS(168),
- [anon_sym_GT_GT_GT_EQ] = ACTIONS(168),
- [anon_sym_LT_LT_EQ] = ACTIONS(168),
- [anon_sym_STAR_STAR_EQ] = ACTIONS(168),
- [anon_sym_AMP_AMP_EQ] = ACTIONS(168),
- [anon_sym_PIPE_PIPE_EQ] = ACTIONS(168),
- [anon_sym_QMARK_QMARK_EQ] = ACTIONS(168),
- [anon_sym_DOT_DOT_DOT] = ACTIONS(170),
- [anon_sym_AMP_AMP] = ACTIONS(122),
- [anon_sym_PIPE_PIPE] = ACTIONS(122),
- [anon_sym_GT_GT] = ACTIONS(122),
- [anon_sym_GT_GT_GT] = ACTIONS(122),
- [anon_sym_LT_LT] = ACTIONS(122),
- [anon_sym_AMP] = ACTIONS(122),
- [anon_sym_CARET] = ACTIONS(122),
- [anon_sym_PIPE] = ACTIONS(122),
- [anon_sym_PLUS] = ACTIONS(137),
- [anon_sym_DASH] = ACTIONS(137),
- [anon_sym_SLASH] = ACTIONS(178),
- [anon_sym_PERCENT] = ACTIONS(122),
- [anon_sym_STAR_STAR] = ACTIONS(122),
- [anon_sym_LT] = ACTIONS(781),
- [anon_sym_LT_EQ] = ACTIONS(162),
- [anon_sym_EQ_EQ] = ACTIONS(122),
- [anon_sym_EQ_EQ_EQ] = ACTIONS(162),
- [anon_sym_BANG_EQ] = ACTIONS(122),
- [anon_sym_BANG_EQ_EQ] = ACTIONS(162),
- [anon_sym_GT_EQ] = ACTIONS(162),
- [anon_sym_QMARK_QMARK] = ACTIONS(122),
- [anon_sym_instanceof] = ACTIONS(122),
- [anon_sym_TILDE] = ACTIONS(183),
- [anon_sym_void] = ACTIONS(187),
- [anon_sym_delete] = ACTIONS(187),
- [anon_sym_PLUS_PLUS] = ACTIONS(189),
- [anon_sym_DASH_DASH] = ACTIONS(189),
- [sym_comment] = ACTIONS(5),
- [anon_sym_BQUOTE] = ACTIONS(784),
- [sym_number] = ACTIONS(787),
- [sym_private_property_identifier] = ACTIONS(196),
- [sym_this] = ACTIONS(789),
- [sym_super] = ACTIONS(200),
- [sym_true] = ACTIONS(200),
- [sym_false] = ACTIONS(200),
- [sym_null] = ACTIONS(200),
- [sym_undefined] = ACTIONS(791),
- [anon_sym_AT] = ACTIONS(99),
- [anon_sym_static] = ACTIONS(115),
- [anon_sym_readonly] = ACTIONS(115),
- [anon_sym_get] = ACTIONS(115),
- [anon_sym_set] = ACTIONS(115),
- [anon_sym_QMARK] = ACTIONS(793),
- [anon_sym_declare] = ACTIONS(115),
- [anon_sym_public] = ACTIONS(115),
- [anon_sym_private] = ACTIONS(115),
- [anon_sym_protected] = ACTIONS(115),
- [anon_sym_override] = ACTIONS(115),
- [anon_sym_module] = ACTIONS(115),
- [anon_sym_any] = ACTIONS(115),
- [anon_sym_number] = ACTIONS(115),
- [anon_sym_boolean] = ACTIONS(115),
- [anon_sym_string] = ACTIONS(115),
- [anon_sym_symbol] = ACTIONS(115),
- [anon_sym_object] = ACTIONS(115),
- [anon_sym_satisfies] = ACTIONS(122),
- [sym__ternary_qmark] = ACTIONS(162),
- [sym_html_comment] = ACTIONS(5),
- },
- [74] = {
- [sym_import] = STATE(3334),
- [sym_parenthesized_expression] = STATE(1179),
- [sym_expression] = STATE(2415),
- [sym_primary_expression] = STATE(1468),
- [sym_yield_expression] = STATE(1634),
- [sym_object] = STATE(1650),
- [sym_object_pattern] = STATE(3588),
- [sym_array] = STATE(1650),
- [sym_array_pattern] = STATE(3588),
- [sym_glimmer_template] = STATE(1634),
- [sym_jsx_element] = STATE(1634),
- [sym_jsx_opening_element] = STATE(3026),
- [sym_jsx_self_closing_element] = STATE(1634),
- [sym_class] = STATE(1650),
- [sym_function_expression] = STATE(1650),
- [sym_generator_function] = STATE(1650),
- [sym_arrow_function] = STATE(1650),
- [sym__call_signature] = STATE(5619),
- [sym_call_expression] = STATE(1650),
- [sym_new_expression] = STATE(1634),
- [sym_await_expression] = STATE(1634),
- [sym_member_expression] = STATE(1221),
- [sym_subscript_expression] = STATE(1221),
- [sym_assignment_expression] = STATE(1634),
- [sym__augmented_assignment_lhs] = STATE(2878),
- [sym_augmented_assignment_expression] = STATE(1634),
- [sym__destructuring_pattern] = STATE(3588),
- [sym_ternary_expression] = STATE(1634),
- [sym_binary_expression] = STATE(1634),
- [sym_unary_expression] = STATE(1634),
- [sym_update_expression] = STATE(1634),
- [sym_string] = STATE(1650),
- [sym_template_string] = STATE(1650),
- [sym_regex] = STATE(1650),
- [sym_meta_property] = STATE(1650),
- [sym_decorator] = STATE(1244),
- [sym_formal_parameters] = STATE(3742),
- [sym_pattern] = STATE(4147),
- [sym_rest_pattern] = STATE(3700),
- [sym_non_null_expression] = STATE(1221),
- [sym_as_expression] = STATE(1634),
- [sym_satisfies_expression] = STATE(1634),
- [sym_instantiation_expression] = STATE(1634),
- [sym_internal_module] = STATE(1634),
- [sym_type_parameters] = STATE(5349),
- [aux_sym_export_statement_repeat1] = STATE(4458),
- [sym_identifier] = ACTIONS(769),
- [anon_sym_export] = ACTIONS(115),
- [anon_sym_STAR] = ACTIONS(122),
- [anon_sym_type] = ACTIONS(115),
- [anon_sym_EQ] = ACTIONS(224),
- [anon_sym_as] = ACTIONS(122),
- [anon_sym_namespace] = ACTIONS(124),
- [anon_sym_LBRACE] = ACTIONS(771),
- [anon_sym_COMMA] = ACTIONS(227),
- [anon_sym_typeof] = ACTIONS(187),
- [anon_sym_import] = ACTIONS(133),
- [anon_sym_let] = ACTIONS(115),
- [anon_sym_BANG] = ACTIONS(137),
- [anon_sym_LPAREN] = ACTIONS(773),
- [anon_sym_RPAREN] = ACTIONS(227),
- [anon_sym_await] = ACTIONS(142),
- [anon_sym_in] = ACTIONS(122),
- [anon_sym_COLON] = ACTIONS(227),
- [anon_sym_yield] = ACTIONS(144),
- [anon_sym_LBRACK] = ACTIONS(776),
- [sym_glimmer_opening_tag] = ACTIONS(148),
- [anon_sym_GT] = ACTIONS(122),
- [anon_sym_DOT] = ACTIONS(122),
- [anon_sym_DQUOTE] = ACTIONS(150),
- [anon_sym_SQUOTE] = ACTIONS(152),
- [anon_sym_class] = ACTIONS(154),
- [anon_sym_async] = ACTIONS(156),
- [anon_sym_function] = ACTIONS(158),
- [anon_sym_EQ_GT] = ACTIONS(229),
- [anon_sym_QMARK_DOT] = ACTIONS(162),
- [anon_sym_new] = ACTIONS(779),
- [anon_sym_using] = ACTIONS(166),
- [anon_sym_PLUS_EQ] = ACTIONS(168),
- [anon_sym_DASH_EQ] = ACTIONS(168),
- [anon_sym_STAR_EQ] = ACTIONS(168),
- [anon_sym_SLASH_EQ] = ACTIONS(168),
- [anon_sym_PERCENT_EQ] = ACTIONS(168),
- [anon_sym_CARET_EQ] = ACTIONS(168),
- [anon_sym_AMP_EQ] = ACTIONS(168),
- [anon_sym_PIPE_EQ] = ACTIONS(168),
- [anon_sym_GT_GT_EQ] = ACTIONS(168),
- [anon_sym_GT_GT_GT_EQ] = ACTIONS(168),
- [anon_sym_LT_LT_EQ] = ACTIONS(168),
- [anon_sym_STAR_STAR_EQ] = ACTIONS(168),
- [anon_sym_AMP_AMP_EQ] = ACTIONS(168),
- [anon_sym_PIPE_PIPE_EQ] = ACTIONS(168),
- [anon_sym_QMARK_QMARK_EQ] = ACTIONS(168),
- [anon_sym_DOT_DOT_DOT] = ACTIONS(170),
- [anon_sym_AMP_AMP] = ACTIONS(122),
- [anon_sym_PIPE_PIPE] = ACTIONS(122),
- [anon_sym_GT_GT] = ACTIONS(122),
- [anon_sym_GT_GT_GT] = ACTIONS(122),
- [anon_sym_LT_LT] = ACTIONS(122),
- [anon_sym_AMP] = ACTIONS(122),
- [anon_sym_CARET] = ACTIONS(122),
- [anon_sym_PIPE] = ACTIONS(122),
- [anon_sym_PLUS] = ACTIONS(137),
- [anon_sym_DASH] = ACTIONS(137),
- [anon_sym_SLASH] = ACTIONS(178),
- [anon_sym_PERCENT] = ACTIONS(122),
- [anon_sym_STAR_STAR] = ACTIONS(122),
- [anon_sym_LT] = ACTIONS(781),
- [anon_sym_LT_EQ] = ACTIONS(162),
- [anon_sym_EQ_EQ] = ACTIONS(122),
- [anon_sym_EQ_EQ_EQ] = ACTIONS(162),
- [anon_sym_BANG_EQ] = ACTIONS(122),
- [anon_sym_BANG_EQ_EQ] = ACTIONS(162),
- [anon_sym_GT_EQ] = ACTIONS(162),
- [anon_sym_QMARK_QMARK] = ACTIONS(122),
- [anon_sym_instanceof] = ACTIONS(122),
- [anon_sym_TILDE] = ACTIONS(183),
- [anon_sym_void] = ACTIONS(187),
- [anon_sym_delete] = ACTIONS(187),
- [anon_sym_PLUS_PLUS] = ACTIONS(189),
- [anon_sym_DASH_DASH] = ACTIONS(189),
- [sym_comment] = ACTIONS(5),
- [anon_sym_BQUOTE] = ACTIONS(784),
- [sym_number] = ACTIONS(787),
- [sym_private_property_identifier] = ACTIONS(196),
- [sym_this] = ACTIONS(795),
- [sym_super] = ACTIONS(200),
- [sym_true] = ACTIONS(200),
- [sym_false] = ACTIONS(200),
- [sym_null] = ACTIONS(200),
- [sym_undefined] = ACTIONS(791),
- [anon_sym_AT] = ACTIONS(99),
- [anon_sym_static] = ACTIONS(115),
- [anon_sym_readonly] = ACTIONS(115),
- [anon_sym_get] = ACTIONS(115),
- [anon_sym_set] = ACTIONS(115),
- [anon_sym_QMARK] = ACTIONS(793),
- [anon_sym_declare] = ACTIONS(115),
- [anon_sym_public] = ACTIONS(115),
- [anon_sym_private] = ACTIONS(115),
- [anon_sym_protected] = ACTIONS(115),
- [anon_sym_override] = ACTIONS(115),
- [anon_sym_module] = ACTIONS(115),
- [anon_sym_any] = ACTIONS(115),
- [anon_sym_number] = ACTIONS(115),
- [anon_sym_boolean] = ACTIONS(115),
- [anon_sym_string] = ACTIONS(115),
- [anon_sym_symbol] = ACTIONS(115),
- [anon_sym_object] = ACTIONS(115),
- [anon_sym_satisfies] = ACTIONS(122),
- [sym__ternary_qmark] = ACTIONS(162),
- [sym_html_comment] = ACTIONS(5),
- },
- [75] = {
- [sym_import] = STATE(3334),
- [sym_parenthesized_expression] = STATE(1179),
- [sym_expression] = STATE(2415),
- [sym_primary_expression] = STATE(1468),
- [sym_yield_expression] = STATE(1634),
- [sym_object] = STATE(1650),
- [sym_object_pattern] = STATE(3588),
- [sym_array] = STATE(1650),
- [sym_array_pattern] = STATE(3588),
- [sym_glimmer_template] = STATE(1634),
- [sym_jsx_element] = STATE(1634),
- [sym_jsx_opening_element] = STATE(3026),
- [sym_jsx_self_closing_element] = STATE(1634),
- [sym_class] = STATE(1650),
- [sym_function_expression] = STATE(1650),
- [sym_generator_function] = STATE(1650),
- [sym_arrow_function] = STATE(1650),
- [sym__call_signature] = STATE(5619),
- [sym_call_expression] = STATE(1650),
- [sym_new_expression] = STATE(1634),
- [sym_await_expression] = STATE(1634),
- [sym_member_expression] = STATE(1221),
- [sym_subscript_expression] = STATE(1221),
- [sym_assignment_expression] = STATE(1634),
- [sym__augmented_assignment_lhs] = STATE(2878),
- [sym_augmented_assignment_expression] = STATE(1634),
- [sym__destructuring_pattern] = STATE(3588),
- [sym_ternary_expression] = STATE(1634),
- [sym_binary_expression] = STATE(1634),
- [sym_unary_expression] = STATE(1634),
- [sym_update_expression] = STATE(1634),
- [sym_string] = STATE(1650),
- [sym_template_string] = STATE(1650),
- [sym_regex] = STATE(1650),
- [sym_meta_property] = STATE(1650),
- [sym_decorator] = STATE(1244),
- [sym_formal_parameters] = STATE(3742),
- [sym_pattern] = STATE(4151),
- [sym_rest_pattern] = STATE(3700),
- [sym_non_null_expression] = STATE(1221),
- [sym_as_expression] = STATE(1634),
- [sym_satisfies_expression] = STATE(1634),
- [sym_instantiation_expression] = STATE(1634),
- [sym_internal_module] = STATE(1634),
- [sym_type_parameters] = STATE(5349),
- [aux_sym_export_statement_repeat1] = STATE(4458),
- [sym_identifier] = ACTIONS(769),
- [anon_sym_export] = ACTIONS(115),
- [anon_sym_STAR] = ACTIONS(122),
- [anon_sym_type] = ACTIONS(115),
- [anon_sym_EQ] = ACTIONS(224),
- [anon_sym_as] = ACTIONS(122),
- [anon_sym_namespace] = ACTIONS(124),
- [anon_sym_LBRACE] = ACTIONS(771),
- [anon_sym_COMMA] = ACTIONS(227),
- [anon_sym_typeof] = ACTIONS(187),
- [anon_sym_import] = ACTIONS(133),
- [anon_sym_let] = ACTIONS(115),
- [anon_sym_BANG] = ACTIONS(137),
- [anon_sym_LPAREN] = ACTIONS(773),
- [anon_sym_RPAREN] = ACTIONS(227),
- [anon_sym_await] = ACTIONS(142),
- [anon_sym_in] = ACTIONS(122),
- [anon_sym_COLON] = ACTIONS(227),
- [anon_sym_yield] = ACTIONS(144),
- [anon_sym_LBRACK] = ACTIONS(776),
- [sym_glimmer_opening_tag] = ACTIONS(148),
- [anon_sym_GT] = ACTIONS(122),
- [anon_sym_DOT] = ACTIONS(122),
- [anon_sym_DQUOTE] = ACTIONS(150),
- [anon_sym_SQUOTE] = ACTIONS(152),
- [anon_sym_class] = ACTIONS(154),
- [anon_sym_async] = ACTIONS(156),
- [anon_sym_function] = ACTIONS(158),
- [anon_sym_EQ_GT] = ACTIONS(229),
- [anon_sym_QMARK_DOT] = ACTIONS(162),
- [anon_sym_new] = ACTIONS(779),
- [anon_sym_using] = ACTIONS(166),
- [anon_sym_PLUS_EQ] = ACTIONS(168),
- [anon_sym_DASH_EQ] = ACTIONS(168),
- [anon_sym_STAR_EQ] = ACTIONS(168),
- [anon_sym_SLASH_EQ] = ACTIONS(168),
- [anon_sym_PERCENT_EQ] = ACTIONS(168),
- [anon_sym_CARET_EQ] = ACTIONS(168),
- [anon_sym_AMP_EQ] = ACTIONS(168),
- [anon_sym_PIPE_EQ] = ACTIONS(168),
- [anon_sym_GT_GT_EQ] = ACTIONS(168),
- [anon_sym_GT_GT_GT_EQ] = ACTIONS(168),
- [anon_sym_LT_LT_EQ] = ACTIONS(168),
- [anon_sym_STAR_STAR_EQ] = ACTIONS(168),
- [anon_sym_AMP_AMP_EQ] = ACTIONS(168),
- [anon_sym_PIPE_PIPE_EQ] = ACTIONS(168),
- [anon_sym_QMARK_QMARK_EQ] = ACTIONS(168),
- [anon_sym_DOT_DOT_DOT] = ACTIONS(170),
- [anon_sym_AMP_AMP] = ACTIONS(122),
- [anon_sym_PIPE_PIPE] = ACTIONS(122),
- [anon_sym_GT_GT] = ACTIONS(122),
- [anon_sym_GT_GT_GT] = ACTIONS(122),
- [anon_sym_LT_LT] = ACTIONS(122),
- [anon_sym_AMP] = ACTIONS(122),
- [anon_sym_CARET] = ACTIONS(122),
- [anon_sym_PIPE] = ACTIONS(122),
- [anon_sym_PLUS] = ACTIONS(137),
- [anon_sym_DASH] = ACTIONS(137),
- [anon_sym_SLASH] = ACTIONS(178),
- [anon_sym_PERCENT] = ACTIONS(122),
- [anon_sym_STAR_STAR] = ACTIONS(122),
- [anon_sym_LT] = ACTIONS(781),
- [anon_sym_LT_EQ] = ACTIONS(162),
- [anon_sym_EQ_EQ] = ACTIONS(122),
- [anon_sym_EQ_EQ_EQ] = ACTIONS(162),
- [anon_sym_BANG_EQ] = ACTIONS(122),
- [anon_sym_BANG_EQ_EQ] = ACTIONS(162),
- [anon_sym_GT_EQ] = ACTIONS(162),
- [anon_sym_QMARK_QMARK] = ACTIONS(122),
- [anon_sym_instanceof] = ACTIONS(122),
- [anon_sym_TILDE] = ACTIONS(183),
- [anon_sym_void] = ACTIONS(187),
- [anon_sym_delete] = ACTIONS(187),
- [anon_sym_PLUS_PLUS] = ACTIONS(189),
- [anon_sym_DASH_DASH] = ACTIONS(189),
- [sym_comment] = ACTIONS(5),
- [anon_sym_BQUOTE] = ACTIONS(784),
- [sym_number] = ACTIONS(787),
- [sym_private_property_identifier] = ACTIONS(196),
- [sym_this] = ACTIONS(797),
- [sym_super] = ACTIONS(200),
- [sym_true] = ACTIONS(200),
- [sym_false] = ACTIONS(200),
- [sym_null] = ACTIONS(200),
- [sym_undefined] = ACTIONS(791),
- [anon_sym_AT] = ACTIONS(99),
- [anon_sym_static] = ACTIONS(115),
- [anon_sym_readonly] = ACTIONS(115),
- [anon_sym_get] = ACTIONS(115),
- [anon_sym_set] = ACTIONS(115),
- [anon_sym_QMARK] = ACTIONS(793),
- [anon_sym_declare] = ACTIONS(115),
- [anon_sym_public] = ACTIONS(115),
- [anon_sym_private] = ACTIONS(115),
- [anon_sym_protected] = ACTIONS(115),
- [anon_sym_override] = ACTIONS(115),
- [anon_sym_module] = ACTIONS(115),
- [anon_sym_any] = ACTIONS(115),
- [anon_sym_number] = ACTIONS(115),
- [anon_sym_boolean] = ACTIONS(115),
- [anon_sym_string] = ACTIONS(115),
- [anon_sym_symbol] = ACTIONS(115),
- [anon_sym_object] = ACTIONS(115),
- [anon_sym_satisfies] = ACTIONS(122),
- [sym__ternary_qmark] = ACTIONS(162),
- [sym_html_comment] = ACTIONS(5),
- },
- [76] = {
- [sym_import] = STATE(3334),
- [sym_parenthesized_expression] = STATE(1179),
- [sym_expression] = STATE(2415),
- [sym_primary_expression] = STATE(1468),
- [sym_yield_expression] = STATE(1634),
- [sym_object] = STATE(1650),
- [sym_object_pattern] = STATE(3588),
- [sym_array] = STATE(1650),
- [sym_array_pattern] = STATE(3588),
- [sym_glimmer_template] = STATE(1634),
- [sym_jsx_element] = STATE(1634),
- [sym_jsx_opening_element] = STATE(3026),
- [sym_jsx_self_closing_element] = STATE(1634),
- [sym_class] = STATE(1650),
- [sym_function_expression] = STATE(1650),
- [sym_generator_function] = STATE(1650),
- [sym_arrow_function] = STATE(1650),
- [sym__call_signature] = STATE(5619),
- [sym_call_expression] = STATE(1650),
- [sym_new_expression] = STATE(1634),
- [sym_await_expression] = STATE(1634),
- [sym_member_expression] = STATE(1221),
- [sym_subscript_expression] = STATE(1221),
- [sym_assignment_expression] = STATE(1634),
- [sym__augmented_assignment_lhs] = STATE(2878),
- [sym_augmented_assignment_expression] = STATE(1634),
- [sym__destructuring_pattern] = STATE(3588),
- [sym_ternary_expression] = STATE(1634),
- [sym_binary_expression] = STATE(1634),
- [sym_unary_expression] = STATE(1634),
- [sym_update_expression] = STATE(1634),
- [sym_string] = STATE(1650),
- [sym_template_string] = STATE(1650),
- [sym_regex] = STATE(1650),
- [sym_meta_property] = STATE(1650),
- [sym_decorator] = STATE(1244),
- [sym_formal_parameters] = STATE(3742),
- [sym_pattern] = STATE(4154),
- [sym_rest_pattern] = STATE(3700),
- [sym_non_null_expression] = STATE(1221),
- [sym_as_expression] = STATE(1634),
- [sym_satisfies_expression] = STATE(1634),
- [sym_instantiation_expression] = STATE(1634),
- [sym_internal_module] = STATE(1634),
- [sym_type_parameters] = STATE(5349),
- [aux_sym_export_statement_repeat1] = STATE(4458),
- [sym_identifier] = ACTIONS(769),
- [anon_sym_export] = ACTIONS(115),
- [anon_sym_STAR] = ACTIONS(122),
- [anon_sym_type] = ACTIONS(115),
- [anon_sym_EQ] = ACTIONS(224),
- [anon_sym_as] = ACTIONS(122),
- [anon_sym_namespace] = ACTIONS(124),
- [anon_sym_LBRACE] = ACTIONS(771),
- [anon_sym_COMMA] = ACTIONS(227),
- [anon_sym_typeof] = ACTIONS(187),
- [anon_sym_import] = ACTIONS(133),
- [anon_sym_let] = ACTIONS(115),
- [anon_sym_BANG] = ACTIONS(137),
- [anon_sym_LPAREN] = ACTIONS(773),
- [anon_sym_RPAREN] = ACTIONS(227),
- [anon_sym_await] = ACTIONS(142),
- [anon_sym_in] = ACTIONS(122),
- [anon_sym_COLON] = ACTIONS(227),
- [anon_sym_yield] = ACTIONS(144),
- [anon_sym_LBRACK] = ACTIONS(776),
- [sym_glimmer_opening_tag] = ACTIONS(148),
- [anon_sym_GT] = ACTIONS(122),
- [anon_sym_DOT] = ACTIONS(122),
- [anon_sym_DQUOTE] = ACTIONS(150),
- [anon_sym_SQUOTE] = ACTIONS(152),
- [anon_sym_class] = ACTIONS(154),
- [anon_sym_async] = ACTIONS(156),
- [anon_sym_function] = ACTIONS(158),
- [anon_sym_EQ_GT] = ACTIONS(229),
- [anon_sym_QMARK_DOT] = ACTIONS(162),
- [anon_sym_new] = ACTIONS(779),
- [anon_sym_using] = ACTIONS(166),
- [anon_sym_PLUS_EQ] = ACTIONS(168),
- [anon_sym_DASH_EQ] = ACTIONS(168),
- [anon_sym_STAR_EQ] = ACTIONS(168),
- [anon_sym_SLASH_EQ] = ACTIONS(168),
- [anon_sym_PERCENT_EQ] = ACTIONS(168),
- [anon_sym_CARET_EQ] = ACTIONS(168),
- [anon_sym_AMP_EQ] = ACTIONS(168),
- [anon_sym_PIPE_EQ] = ACTIONS(168),
- [anon_sym_GT_GT_EQ] = ACTIONS(168),
- [anon_sym_GT_GT_GT_EQ] = ACTIONS(168),
- [anon_sym_LT_LT_EQ] = ACTIONS(168),
- [anon_sym_STAR_STAR_EQ] = ACTIONS(168),
- [anon_sym_AMP_AMP_EQ] = ACTIONS(168),
- [anon_sym_PIPE_PIPE_EQ] = ACTIONS(168),
- [anon_sym_QMARK_QMARK_EQ] = ACTIONS(168),
- [anon_sym_DOT_DOT_DOT] = ACTIONS(170),
- [anon_sym_AMP_AMP] = ACTIONS(122),
- [anon_sym_PIPE_PIPE] = ACTIONS(122),
- [anon_sym_GT_GT] = ACTIONS(122),
- [anon_sym_GT_GT_GT] = ACTIONS(122),
- [anon_sym_LT_LT] = ACTIONS(122),
- [anon_sym_AMP] = ACTIONS(122),
- [anon_sym_CARET] = ACTIONS(122),
- [anon_sym_PIPE] = ACTIONS(122),
- [anon_sym_PLUS] = ACTIONS(137),
- [anon_sym_DASH] = ACTIONS(137),
- [anon_sym_SLASH] = ACTIONS(178),
- [anon_sym_PERCENT] = ACTIONS(122),
- [anon_sym_STAR_STAR] = ACTIONS(122),
- [anon_sym_LT] = ACTIONS(781),
- [anon_sym_LT_EQ] = ACTIONS(162),
- [anon_sym_EQ_EQ] = ACTIONS(122),
- [anon_sym_EQ_EQ_EQ] = ACTIONS(162),
- [anon_sym_BANG_EQ] = ACTIONS(122),
- [anon_sym_BANG_EQ_EQ] = ACTIONS(162),
- [anon_sym_GT_EQ] = ACTIONS(162),
- [anon_sym_QMARK_QMARK] = ACTIONS(122),
- [anon_sym_instanceof] = ACTIONS(122),
- [anon_sym_TILDE] = ACTIONS(183),
- [anon_sym_void] = ACTIONS(187),
- [anon_sym_delete] = ACTIONS(187),
- [anon_sym_PLUS_PLUS] = ACTIONS(189),
- [anon_sym_DASH_DASH] = ACTIONS(189),
- [sym_comment] = ACTIONS(5),
- [anon_sym_BQUOTE] = ACTIONS(784),
- [sym_number] = ACTIONS(787),
- [sym_private_property_identifier] = ACTIONS(196),
- [sym_this] = ACTIONS(799),
- [sym_super] = ACTIONS(200),
- [sym_true] = ACTIONS(200),
- [sym_false] = ACTIONS(200),
- [sym_null] = ACTIONS(200),
- [sym_undefined] = ACTIONS(791),
- [anon_sym_AT] = ACTIONS(99),
- [anon_sym_static] = ACTIONS(115),
- [anon_sym_readonly] = ACTIONS(115),
- [anon_sym_get] = ACTIONS(115),
- [anon_sym_set] = ACTIONS(115),
- [anon_sym_QMARK] = ACTIONS(793),
- [anon_sym_declare] = ACTIONS(115),
- [anon_sym_public] = ACTIONS(115),
- [anon_sym_private] = ACTIONS(115),
- [anon_sym_protected] = ACTIONS(115),
- [anon_sym_override] = ACTIONS(115),
- [anon_sym_module] = ACTIONS(115),
- [anon_sym_any] = ACTIONS(115),
- [anon_sym_number] = ACTIONS(115),
- [anon_sym_boolean] = ACTIONS(115),
- [anon_sym_string] = ACTIONS(115),
- [anon_sym_symbol] = ACTIONS(115),
- [anon_sym_object] = ACTIONS(115),
- [anon_sym_satisfies] = ACTIONS(122),
- [sym__ternary_qmark] = ACTIONS(162),
- [sym_html_comment] = ACTIONS(5),
- },
- [77] = {
- [sym_import] = STATE(3334),
- [sym_parenthesized_expression] = STATE(1179),
- [sym_expression] = STATE(2415),
- [sym_primary_expression] = STATE(1468),
- [sym_yield_expression] = STATE(1634),
- [sym_object] = STATE(1650),
- [sym_object_pattern] = STATE(3588),
- [sym_array] = STATE(1650),
- [sym_array_pattern] = STATE(3588),
- [sym_glimmer_template] = STATE(1634),
- [sym_jsx_element] = STATE(1634),
- [sym_jsx_opening_element] = STATE(3026),
- [sym_jsx_self_closing_element] = STATE(1634),
- [sym_class] = STATE(1650),
- [sym_function_expression] = STATE(1650),
- [sym_generator_function] = STATE(1650),
- [sym_arrow_function] = STATE(1650),
- [sym__call_signature] = STATE(5619),
- [sym_call_expression] = STATE(1650),
- [sym_new_expression] = STATE(1634),
- [sym_await_expression] = STATE(1634),
- [sym_member_expression] = STATE(1221),
- [sym_subscript_expression] = STATE(1221),
- [sym_assignment_expression] = STATE(1634),
- [sym__augmented_assignment_lhs] = STATE(2878),
- [sym_augmented_assignment_expression] = STATE(1634),
- [sym__destructuring_pattern] = STATE(3588),
- [sym_ternary_expression] = STATE(1634),
- [sym_binary_expression] = STATE(1634),
- [sym_unary_expression] = STATE(1634),
- [sym_update_expression] = STATE(1634),
- [sym_string] = STATE(1650),
- [sym_template_string] = STATE(1650),
- [sym_regex] = STATE(1650),
- [sym_meta_property] = STATE(1650),
- [sym_decorator] = STATE(1244),
- [sym_formal_parameters] = STATE(3742),
- [sym_pattern] = STATE(4300),
- [sym_rest_pattern] = STATE(3700),
- [sym_non_null_expression] = STATE(1221),
- [sym_as_expression] = STATE(1634),
- [sym_satisfies_expression] = STATE(1634),
- [sym_instantiation_expression] = STATE(1634),
- [sym_internal_module] = STATE(1634),
- [sym_type_parameters] = STATE(5349),
- [aux_sym_export_statement_repeat1] = STATE(4458),
- [sym_identifier] = ACTIONS(769),
- [anon_sym_export] = ACTIONS(115),
- [anon_sym_STAR] = ACTIONS(122),
- [anon_sym_type] = ACTIONS(115),
- [anon_sym_EQ] = ACTIONS(224),
- [anon_sym_as] = ACTIONS(122),
- [anon_sym_namespace] = ACTIONS(124),
- [anon_sym_LBRACE] = ACTIONS(771),
- [anon_sym_COMMA] = ACTIONS(227),
- [anon_sym_typeof] = ACTIONS(187),
- [anon_sym_import] = ACTIONS(133),
- [anon_sym_let] = ACTIONS(115),
- [anon_sym_BANG] = ACTIONS(137),
- [anon_sym_LPAREN] = ACTIONS(773),
- [anon_sym_RPAREN] = ACTIONS(227),
- [anon_sym_await] = ACTIONS(142),
- [anon_sym_in] = ACTIONS(122),
- [anon_sym_COLON] = ACTIONS(227),
- [anon_sym_yield] = ACTIONS(144),
- [anon_sym_LBRACK] = ACTIONS(776),
- [sym_glimmer_opening_tag] = ACTIONS(148),
- [anon_sym_GT] = ACTIONS(122),
- [anon_sym_DOT] = ACTIONS(122),
- [anon_sym_DQUOTE] = ACTIONS(150),
- [anon_sym_SQUOTE] = ACTIONS(152),
- [anon_sym_class] = ACTIONS(154),
- [anon_sym_async] = ACTIONS(156),
- [anon_sym_function] = ACTIONS(158),
- [anon_sym_EQ_GT] = ACTIONS(229),
- [anon_sym_QMARK_DOT] = ACTIONS(162),
- [anon_sym_new] = ACTIONS(779),
- [anon_sym_using] = ACTIONS(166),
- [anon_sym_PLUS_EQ] = ACTIONS(168),
- [anon_sym_DASH_EQ] = ACTIONS(168),
- [anon_sym_STAR_EQ] = ACTIONS(168),
- [anon_sym_SLASH_EQ] = ACTIONS(168),
- [anon_sym_PERCENT_EQ] = ACTIONS(168),
- [anon_sym_CARET_EQ] = ACTIONS(168),
- [anon_sym_AMP_EQ] = ACTIONS(168),
- [anon_sym_PIPE_EQ] = ACTIONS(168),
- [anon_sym_GT_GT_EQ] = ACTIONS(168),
- [anon_sym_GT_GT_GT_EQ] = ACTIONS(168),
- [anon_sym_LT_LT_EQ] = ACTIONS(168),
- [anon_sym_STAR_STAR_EQ] = ACTIONS(168),
- [anon_sym_AMP_AMP_EQ] = ACTIONS(168),
- [anon_sym_PIPE_PIPE_EQ] = ACTIONS(168),
- [anon_sym_QMARK_QMARK_EQ] = ACTIONS(168),
- [anon_sym_DOT_DOT_DOT] = ACTIONS(170),
- [anon_sym_AMP_AMP] = ACTIONS(122),
- [anon_sym_PIPE_PIPE] = ACTIONS(122),
- [anon_sym_GT_GT] = ACTIONS(122),
- [anon_sym_GT_GT_GT] = ACTIONS(122),
- [anon_sym_LT_LT] = ACTIONS(122),
- [anon_sym_AMP] = ACTIONS(122),
- [anon_sym_CARET] = ACTIONS(122),
- [anon_sym_PIPE] = ACTIONS(122),
- [anon_sym_PLUS] = ACTIONS(137),
- [anon_sym_DASH] = ACTIONS(137),
- [anon_sym_SLASH] = ACTIONS(178),
- [anon_sym_PERCENT] = ACTIONS(122),
- [anon_sym_STAR_STAR] = ACTIONS(122),
- [anon_sym_LT] = ACTIONS(781),
- [anon_sym_LT_EQ] = ACTIONS(162),
- [anon_sym_EQ_EQ] = ACTIONS(122),
- [anon_sym_EQ_EQ_EQ] = ACTIONS(162),
- [anon_sym_BANG_EQ] = ACTIONS(122),
- [anon_sym_BANG_EQ_EQ] = ACTIONS(162),
- [anon_sym_GT_EQ] = ACTIONS(162),
- [anon_sym_QMARK_QMARK] = ACTIONS(122),
- [anon_sym_instanceof] = ACTIONS(122),
- [anon_sym_TILDE] = ACTIONS(183),
- [anon_sym_void] = ACTIONS(187),
- [anon_sym_delete] = ACTIONS(187),
- [anon_sym_PLUS_PLUS] = ACTIONS(189),
- [anon_sym_DASH_DASH] = ACTIONS(189),
- [sym_comment] = ACTIONS(5),
- [anon_sym_BQUOTE] = ACTIONS(784),
- [sym_number] = ACTIONS(787),
- [sym_private_property_identifier] = ACTIONS(196),
- [sym_this] = ACTIONS(801),
- [sym_super] = ACTIONS(200),
- [sym_true] = ACTIONS(200),
- [sym_false] = ACTIONS(200),
- [sym_null] = ACTIONS(200),
- [sym_undefined] = ACTIONS(791),
- [anon_sym_AT] = ACTIONS(99),
- [anon_sym_static] = ACTIONS(115),
- [anon_sym_readonly] = ACTIONS(115),
- [anon_sym_get] = ACTIONS(115),
- [anon_sym_set] = ACTIONS(115),
- [anon_sym_QMARK] = ACTIONS(793),
- [anon_sym_declare] = ACTIONS(115),
- [anon_sym_public] = ACTIONS(115),
- [anon_sym_private] = ACTIONS(115),
- [anon_sym_protected] = ACTIONS(115),
- [anon_sym_override] = ACTIONS(115),
- [anon_sym_module] = ACTIONS(115),
- [anon_sym_any] = ACTIONS(115),
- [anon_sym_number] = ACTIONS(115),
- [anon_sym_boolean] = ACTIONS(115),
- [anon_sym_string] = ACTIONS(115),
- [anon_sym_symbol] = ACTIONS(115),
- [anon_sym_object] = ACTIONS(115),
- [anon_sym_satisfies] = ACTIONS(122),
- [sym__ternary_qmark] = ACTIONS(162),
- [sym_html_comment] = ACTIONS(5),
- },
- [78] = {
- [sym_import] = STATE(3395),
- [sym_parenthesized_expression] = STATE(1251),
- [sym_expression] = STATE(1532),
- [sym_primary_expression] = STATE(1468),
- [sym_yield_expression] = STATE(1634),
- [sym_object] = STATE(1650),
- [sym_object_pattern] = STATE(3610),
- [sym_array] = STATE(1650),
- [sym_array_pattern] = STATE(3610),
- [sym_glimmer_template] = STATE(1634),
- [sym_jsx_element] = STATE(1634),
- [sym_jsx_opening_element] = STATE(3026),
- [sym_nested_identifier] = STATE(5707),
- [sym_jsx_self_closing_element] = STATE(1634),
- [sym_class] = STATE(1650),
- [sym_function_expression] = STATE(1650),
- [sym_generator_function] = STATE(1650),
- [sym_arrow_function] = STATE(1650),
- [sym__call_signature] = STATE(5828),
- [sym__formal_parameter] = STATE(4890),
- [sym_call_expression] = STATE(1650),
- [sym_new_expression] = STATE(1634),
- [sym_await_expression] = STATE(1634),
- [sym_member_expression] = STATE(1230),
- [sym_subscript_expression] = STATE(1230),
- [sym_assignment_expression] = STATE(1634),
- [sym__augmented_assignment_lhs] = STATE(2900),
- [sym_augmented_assignment_expression] = STATE(1634),
- [sym__destructuring_pattern] = STATE(3610),
- [sym_ternary_expression] = STATE(1634),
- [sym_binary_expression] = STATE(1634),
- [sym_unary_expression] = STATE(1634),
- [sym_update_expression] = STATE(1634),
- [sym_sequence_expression] = STATE(5725),
- [sym_string] = STATE(2155),
- [sym_template_string] = STATE(1650),
- [sym_regex] = STATE(1650),
- [sym_meta_property] = STATE(1650),
- [sym_decorator] = STATE(1244),
- [sym_formal_parameters] = STATE(3952),
- [sym_pattern] = STATE(4262),
- [sym_rest_pattern] = STATE(3700),
- [sym_non_null_expression] = STATE(1230),
- [sym_as_expression] = STATE(1634),
- [sym_satisfies_expression] = STATE(1634),
- [sym_instantiation_expression] = STATE(1634),
- [sym_internal_module] = STATE(1634),
- [sym_nested_type_identifier] = STATE(2828),
- [sym_accessibility_modifier] = STATE(268),
- [sym_override_modifier] = STATE(296),
- [sym_required_parameter] = STATE(4890),
- [sym_optional_parameter] = STATE(4890),
- [sym__parameter_name] = STATE(3493),
- [sym__type_query_member_expression_in_type_annotation] = STATE(2846),
- [sym__type_query_call_expression_in_type_annotation] = STATE(2850),
- [sym_type] = STATE(4455),
- [sym_constructor_type] = STATE(2896),
- [sym_primary_type] = STATE(2897),
- [sym_template_literal_type] = STATE(2885),
- [sym_infer_type] = STATE(2896),
- [sym_conditional_type] = STATE(2885),
- [sym_generic_type] = STATE(2885),
- [sym_type_query] = STATE(2885),
- [sym_index_type_query] = STATE(2885),
- [sym_lookup_type] = STATE(2885),
- [sym_literal_type] = STATE(2885),
- [sym__number] = STATE(2903),
- [sym_existential_type] = STATE(2885),
- [sym_flow_maybe_type] = STATE(2885),
- [sym_parenthesized_type] = STATE(2885),
- [sym_predefined_type] = STATE(2885),
- [sym_object_type] = STATE(2885),
- [sym_type_parameters] = STATE(5276),
- [sym_array_type] = STATE(2885),
- [sym_tuple_type] = STATE(2885),
- [sym_readonly_type] = STATE(2896),
- [sym_union_type] = STATE(2885),
- [sym_intersection_type] = STATE(2885),
- [sym_function_type] = STATE(2896),
- [aux_sym_export_statement_repeat1] = STATE(253),
- [sym_identifier] = ACTIONS(729),
- [anon_sym_export] = ACTIONS(610),
- [anon_sym_STAR] = ACTIONS(612),
- [anon_sym_type] = ACTIONS(610),
- [anon_sym_namespace] = ACTIONS(614),
- [anon_sym_LBRACE] = ACTIONS(731),
- [anon_sym_typeof] = ACTIONS(733),
- [anon_sym_import] = ACTIONS(133),
- [anon_sym_let] = ACTIONS(610),
- [anon_sym_const] = ACTIONS(135),
- [anon_sym_BANG] = ACTIONS(622),
- [anon_sym_LPAREN] = ACTIONS(140),
- [anon_sym_RPAREN] = ACTIONS(735),
- [anon_sym_await] = ACTIONS(624),
- [anon_sym_yield] = ACTIONS(626),
- [anon_sym_LBRACK] = ACTIONS(737),
- [sym_glimmer_opening_tag] = ACTIONS(148),
- [anon_sym_DQUOTE] = ACTIONS(150),
- [anon_sym_SQUOTE] = ACTIONS(152),
- [anon_sym_class] = ACTIONS(154),
- [anon_sym_async] = ACTIONS(632),
- [anon_sym_function] = ACTIONS(158),
- [anon_sym_new] = ACTIONS(739),
- [anon_sym_using] = ACTIONS(636),
- [anon_sym_DOT_DOT_DOT] = ACTIONS(170),
- [anon_sym_AMP] = ACTIONS(741),
- [anon_sym_PIPE] = ACTIONS(743),
- [anon_sym_PLUS] = ACTIONS(745),
- [anon_sym_DASH] = ACTIONS(745),
- [anon_sym_SLASH] = ACTIONS(646),
- [anon_sym_LT] = ACTIONS(181),
- [anon_sym_TILDE] = ACTIONS(622),
- [anon_sym_void] = ACTIONS(648),
- [anon_sym_delete] = ACTIONS(650),
- [anon_sym_PLUS_PLUS] = ACTIONS(652),
- [anon_sym_DASH_DASH] = ACTIONS(652),
- [sym_comment] = ACTIONS(5),
- [anon_sym_BQUOTE] = ACTIONS(747),
- [sym_number] = ACTIONS(749),
- [sym_private_property_identifier] = ACTIONS(654),
- [sym_this] = ACTIONS(751),
- [sym_super] = ACTIONS(200),
- [sym_true] = ACTIONS(753),
- [sym_false] = ACTIONS(753),
- [sym_null] = ACTIONS(753),
- [sym_undefined] = ACTIONS(755),
- [anon_sym_AT] = ACTIONS(757),
- [anon_sym_static] = ACTIONS(610),
- [anon_sym_readonly] = ACTIONS(759),
- [anon_sym_get] = ACTIONS(610),
- [anon_sym_set] = ACTIONS(610),
- [anon_sym_QMARK] = ACTIONS(761),
- [anon_sym_declare] = ACTIONS(610),
- [anon_sym_public] = ACTIONS(763),
- [anon_sym_private] = ACTIONS(763),
- [anon_sym_protected] = ACTIONS(763),
- [anon_sym_override] = ACTIONS(765),
- [anon_sym_module] = ACTIONS(610),
- [anon_sym_any] = ACTIONS(767),
- [anon_sym_number] = ACTIONS(767),
- [anon_sym_boolean] = ACTIONS(767),
- [anon_sym_string] = ACTIONS(767),
- [anon_sym_symbol] = ACTIONS(767),
- [anon_sym_object] = ACTIONS(767),
- [anon_sym_abstract] = ACTIONS(212),
- [anon_sym_infer] = ACTIONS(214),
- [anon_sym_keyof] = ACTIONS(216),
- [anon_sym_unique] = ACTIONS(218),
- [anon_sym_unknown] = ACTIONS(220),
- [anon_sym_never] = ACTIONS(220),
- [anon_sym_LBRACE_PIPE] = ACTIONS(222),
- [sym_html_comment] = ACTIONS(5),
- },
- [79] = {
- [sym_import] = STATE(3334),
- [sym_parenthesized_expression] = STATE(1179),
- [sym_expression] = STATE(2415),
- [sym_primary_expression] = STATE(1468),
- [sym_yield_expression] = STATE(1634),
- [sym_object] = STATE(1650),
- [sym_object_pattern] = STATE(3588),
- [sym_array] = STATE(1650),
- [sym_array_pattern] = STATE(3588),
- [sym_glimmer_template] = STATE(1634),
- [sym_jsx_element] = STATE(1634),
- [sym_jsx_opening_element] = STATE(3026),
- [sym_jsx_self_closing_element] = STATE(1634),
- [sym_class] = STATE(1650),
- [sym_function_expression] = STATE(1650),
- [sym_generator_function] = STATE(1650),
- [sym_arrow_function] = STATE(1650),
- [sym__call_signature] = STATE(5619),
- [sym_call_expression] = STATE(1650),
- [sym_new_expression] = STATE(1634),
- [sym_await_expression] = STATE(1634),
- [sym_member_expression] = STATE(1221),
- [sym_subscript_expression] = STATE(1221),
- [sym_assignment_expression] = STATE(1634),
- [sym__augmented_assignment_lhs] = STATE(2878),
- [sym_augmented_assignment_expression] = STATE(1634),
- [sym__destructuring_pattern] = STATE(3588),
- [sym_ternary_expression] = STATE(1634),
- [sym_binary_expression] = STATE(1634),
- [sym_unary_expression] = STATE(1634),
- [sym_update_expression] = STATE(1634),
- [sym_string] = STATE(1650),
- [sym_template_string] = STATE(1650),
- [sym_regex] = STATE(1650),
- [sym_meta_property] = STATE(1650),
- [sym_decorator] = STATE(1244),
- [sym_formal_parameters] = STATE(3742),
- [sym_pattern] = STATE(4300),
- [sym_rest_pattern] = STATE(3700),
- [sym_non_null_expression] = STATE(1221),
- [sym_as_expression] = STATE(1634),
- [sym_satisfies_expression] = STATE(1634),
- [sym_instantiation_expression] = STATE(1634),
- [sym_internal_module] = STATE(1634),
- [sym_type_parameters] = STATE(5349),
- [aux_sym_export_statement_repeat1] = STATE(4458),
- [sym_identifier] = ACTIONS(769),
- [anon_sym_export] = ACTIONS(115),
- [anon_sym_STAR] = ACTIONS(122),
- [anon_sym_type] = ACTIONS(115),
- [anon_sym_EQ] = ACTIONS(119),
- [anon_sym_as] = ACTIONS(122),
- [anon_sym_namespace] = ACTIONS(124),
- [anon_sym_LBRACE] = ACTIONS(771),
- [anon_sym_COMMA] = ACTIONS(128),
- [anon_sym_typeof] = ACTIONS(187),
- [anon_sym_import] = ACTIONS(133),
- [anon_sym_let] = ACTIONS(115),
- [anon_sym_BANG] = ACTIONS(137),
- [anon_sym_LPAREN] = ACTIONS(773),
- [anon_sym_RPAREN] = ACTIONS(128),
- [anon_sym_await] = ACTIONS(142),
- [anon_sym_in] = ACTIONS(122),
- [anon_sym_COLON] = ACTIONS(128),
- [anon_sym_yield] = ACTIONS(144),
- [anon_sym_LBRACK] = ACTIONS(776),
- [sym_glimmer_opening_tag] = ACTIONS(148),
- [anon_sym_GT] = ACTIONS(122),
- [anon_sym_DOT] = ACTIONS(122),
- [anon_sym_DQUOTE] = ACTIONS(150),
- [anon_sym_SQUOTE] = ACTIONS(152),
- [anon_sym_class] = ACTIONS(154),
- [anon_sym_async] = ACTIONS(156),
- [anon_sym_function] = ACTIONS(158),
- [anon_sym_EQ_GT] = ACTIONS(160),
- [anon_sym_QMARK_DOT] = ACTIONS(162),
- [anon_sym_new] = ACTIONS(779),
- [anon_sym_using] = ACTIONS(166),
- [anon_sym_PLUS_EQ] = ACTIONS(168),
- [anon_sym_DASH_EQ] = ACTIONS(168),
- [anon_sym_STAR_EQ] = ACTIONS(168),
- [anon_sym_SLASH_EQ] = ACTIONS(168),
- [anon_sym_PERCENT_EQ] = ACTIONS(168),
- [anon_sym_CARET_EQ] = ACTIONS(168),
- [anon_sym_AMP_EQ] = ACTIONS(168),
- [anon_sym_PIPE_EQ] = ACTIONS(168),
- [anon_sym_GT_GT_EQ] = ACTIONS(168),
- [anon_sym_GT_GT_GT_EQ] = ACTIONS(168),
- [anon_sym_LT_LT_EQ] = ACTIONS(168),
- [anon_sym_STAR_STAR_EQ] = ACTIONS(168),
- [anon_sym_AMP_AMP_EQ] = ACTIONS(168),
- [anon_sym_PIPE_PIPE_EQ] = ACTIONS(168),
- [anon_sym_QMARK_QMARK_EQ] = ACTIONS(168),
- [anon_sym_DOT_DOT_DOT] = ACTIONS(170),
- [anon_sym_AMP_AMP] = ACTIONS(122),
- [anon_sym_PIPE_PIPE] = ACTIONS(122),
- [anon_sym_GT_GT] = ACTIONS(122),
- [anon_sym_GT_GT_GT] = ACTIONS(122),
- [anon_sym_LT_LT] = ACTIONS(122),
- [anon_sym_AMP] = ACTIONS(122),
- [anon_sym_CARET] = ACTIONS(122),
- [anon_sym_PIPE] = ACTIONS(122),
- [anon_sym_PLUS] = ACTIONS(137),
- [anon_sym_DASH] = ACTIONS(137),
- [anon_sym_SLASH] = ACTIONS(178),
- [anon_sym_PERCENT] = ACTIONS(122),
- [anon_sym_STAR_STAR] = ACTIONS(122),
- [anon_sym_LT] = ACTIONS(781),
- [anon_sym_LT_EQ] = ACTIONS(162),
- [anon_sym_EQ_EQ] = ACTIONS(122),
- [anon_sym_EQ_EQ_EQ] = ACTIONS(162),
- [anon_sym_BANG_EQ] = ACTIONS(122),
- [anon_sym_BANG_EQ_EQ] = ACTIONS(162),
- [anon_sym_GT_EQ] = ACTIONS(162),
- [anon_sym_QMARK_QMARK] = ACTIONS(122),
- [anon_sym_instanceof] = ACTIONS(122),
- [anon_sym_TILDE] = ACTIONS(183),
- [anon_sym_void] = ACTIONS(187),
- [anon_sym_delete] = ACTIONS(187),
- [anon_sym_PLUS_PLUS] = ACTIONS(189),
- [anon_sym_DASH_DASH] = ACTIONS(189),
- [sym_comment] = ACTIONS(5),
- [anon_sym_BQUOTE] = ACTIONS(784),
- [sym_number] = ACTIONS(787),
- [sym_private_property_identifier] = ACTIONS(196),
- [sym_this] = ACTIONS(801),
- [sym_super] = ACTIONS(200),
- [sym_true] = ACTIONS(200),
- [sym_false] = ACTIONS(200),
- [sym_null] = ACTIONS(200),
- [sym_undefined] = ACTIONS(791),
- [anon_sym_AT] = ACTIONS(99),
- [anon_sym_static] = ACTIONS(115),
- [anon_sym_readonly] = ACTIONS(115),
- [anon_sym_get] = ACTIONS(115),
- [anon_sym_set] = ACTIONS(115),
- [anon_sym_QMARK] = ACTIONS(793),
- [anon_sym_declare] = ACTIONS(115),
- [anon_sym_public] = ACTIONS(115),
- [anon_sym_private] = ACTIONS(115),
- [anon_sym_protected] = ACTIONS(115),
- [anon_sym_override] = ACTIONS(115),
- [anon_sym_module] = ACTIONS(115),
- [anon_sym_any] = ACTIONS(115),
- [anon_sym_number] = ACTIONS(115),
- [anon_sym_boolean] = ACTIONS(115),
- [anon_sym_string] = ACTIONS(115),
- [anon_sym_symbol] = ACTIONS(115),
- [anon_sym_object] = ACTIONS(115),
- [anon_sym_satisfies] = ACTIONS(122),
- [sym__ternary_qmark] = ACTIONS(162),
- [sym_html_comment] = ACTIONS(5),
- },
- [80] = {
- [sym_import] = STATE(3395),
- [sym_parenthesized_expression] = STATE(1251),
- [sym_expression] = STATE(1511),
- [sym_primary_expression] = STATE(1468),
- [sym_yield_expression] = STATE(1634),
- [sym_object] = STATE(1650),
- [sym_object_pattern] = STATE(3610),
- [sym_array] = STATE(1650),
- [sym_array_pattern] = STATE(3610),
- [sym_glimmer_template] = STATE(1634),
- [sym_jsx_element] = STATE(1634),
- [sym_jsx_opening_element] = STATE(3026),
- [sym_nested_identifier] = STATE(5707),
- [sym_jsx_self_closing_element] = STATE(1634),
- [sym_class] = STATE(1650),
- [sym_function_expression] = STATE(1650),
- [sym_generator_function] = STATE(1650),
- [sym_arrow_function] = STATE(1650),
- [sym__call_signature] = STATE(5828),
- [sym__formal_parameter] = STATE(4890),
- [sym_call_expression] = STATE(1650),
- [sym_new_expression] = STATE(1634),
- [sym_await_expression] = STATE(1634),
- [sym_member_expression] = STATE(1230),
- [sym_subscript_expression] = STATE(1230),
- [sym_assignment_expression] = STATE(1634),
- [sym__augmented_assignment_lhs] = STATE(2900),
- [sym_augmented_assignment_expression] = STATE(1634),
- [sym__destructuring_pattern] = STATE(3610),
- [sym_ternary_expression] = STATE(1634),
- [sym_binary_expression] = STATE(1634),
- [sym_unary_expression] = STATE(1634),
- [sym_update_expression] = STATE(1634),
- [sym_sequence_expression] = STATE(5635),
- [sym_string] = STATE(2155),
- [sym_template_string] = STATE(1650),
- [sym_regex] = STATE(1650),
- [sym_meta_property] = STATE(1650),
- [sym_decorator] = STATE(1244),
- [sym_formal_parameters] = STATE(3952),
- [sym_pattern] = STATE(4262),
- [sym_rest_pattern] = STATE(3700),
- [sym_non_null_expression] = STATE(1230),
- [sym_as_expression] = STATE(1634),
- [sym_satisfies_expression] = STATE(1634),
- [sym_instantiation_expression] = STATE(1634),
- [sym_internal_module] = STATE(1634),
- [sym_nested_type_identifier] = STATE(2828),
- [sym_accessibility_modifier] = STATE(268),
- [sym_override_modifier] = STATE(296),
- [sym_required_parameter] = STATE(4890),
- [sym_optional_parameter] = STATE(4890),
- [sym__parameter_name] = STATE(3493),
- [sym__type_query_member_expression_in_type_annotation] = STATE(2846),
- [sym__type_query_call_expression_in_type_annotation] = STATE(2850),
- [sym_type] = STATE(4455),
- [sym_constructor_type] = STATE(2896),
- [sym_primary_type] = STATE(2897),
- [sym_template_literal_type] = STATE(2885),
- [sym_infer_type] = STATE(2896),
- [sym_conditional_type] = STATE(2885),
- [sym_generic_type] = STATE(2885),
- [sym_type_query] = STATE(2885),
- [sym_index_type_query] = STATE(2885),
- [sym_lookup_type] = STATE(2885),
- [sym_literal_type] = STATE(2885),
- [sym__number] = STATE(2903),
- [sym_existential_type] = STATE(2885),
- [sym_flow_maybe_type] = STATE(2885),
- [sym_parenthesized_type] = STATE(2885),
- [sym_predefined_type] = STATE(2885),
- [sym_object_type] = STATE(2885),
- [sym_type_parameters] = STATE(5276),
- [sym_array_type] = STATE(2885),
- [sym_tuple_type] = STATE(2885),
- [sym_readonly_type] = STATE(2896),
- [sym_union_type] = STATE(2885),
- [sym_intersection_type] = STATE(2885),
- [sym_function_type] = STATE(2896),
- [aux_sym_export_statement_repeat1] = STATE(253),
- [sym_identifier] = ACTIONS(729),
- [anon_sym_export] = ACTIONS(610),
- [anon_sym_STAR] = ACTIONS(612),
- [anon_sym_type] = ACTIONS(610),
- [anon_sym_namespace] = ACTIONS(614),
- [anon_sym_LBRACE] = ACTIONS(731),
- [anon_sym_typeof] = ACTIONS(733),
- [anon_sym_import] = ACTIONS(133),
- [anon_sym_let] = ACTIONS(610),
- [anon_sym_const] = ACTIONS(135),
- [anon_sym_BANG] = ACTIONS(622),
- [anon_sym_LPAREN] = ACTIONS(140),
- [anon_sym_RPAREN] = ACTIONS(735),
- [anon_sym_await] = ACTIONS(624),
- [anon_sym_yield] = ACTIONS(626),
- [anon_sym_LBRACK] = ACTIONS(737),
- [sym_glimmer_opening_tag] = ACTIONS(148),
- [anon_sym_DQUOTE] = ACTIONS(150),
- [anon_sym_SQUOTE] = ACTIONS(152),
- [anon_sym_class] = ACTIONS(154),
- [anon_sym_async] = ACTIONS(632),
- [anon_sym_function] = ACTIONS(158),
- [anon_sym_new] = ACTIONS(739),
- [anon_sym_using] = ACTIONS(636),
- [anon_sym_DOT_DOT_DOT] = ACTIONS(170),
- [anon_sym_AMP] = ACTIONS(741),
- [anon_sym_PIPE] = ACTIONS(743),
- [anon_sym_PLUS] = ACTIONS(745),
- [anon_sym_DASH] = ACTIONS(745),
- [anon_sym_SLASH] = ACTIONS(646),
- [anon_sym_LT] = ACTIONS(181),
- [anon_sym_TILDE] = ACTIONS(622),
- [anon_sym_void] = ACTIONS(648),
- [anon_sym_delete] = ACTIONS(650),
- [anon_sym_PLUS_PLUS] = ACTIONS(652),
- [anon_sym_DASH_DASH] = ACTIONS(652),
- [sym_comment] = ACTIONS(5),
- [anon_sym_BQUOTE] = ACTIONS(747),
- [sym_number] = ACTIONS(749),
- [sym_private_property_identifier] = ACTIONS(654),
- [sym_this] = ACTIONS(751),
- [sym_super] = ACTIONS(200),
- [sym_true] = ACTIONS(753),
- [sym_false] = ACTIONS(753),
- [sym_null] = ACTIONS(753),
- [sym_undefined] = ACTIONS(755),
- [anon_sym_AT] = ACTIONS(757),
- [anon_sym_static] = ACTIONS(610),
- [anon_sym_readonly] = ACTIONS(759),
- [anon_sym_get] = ACTIONS(610),
- [anon_sym_set] = ACTIONS(610),
- [anon_sym_QMARK] = ACTIONS(761),
- [anon_sym_declare] = ACTIONS(610),
- [anon_sym_public] = ACTIONS(763),
- [anon_sym_private] = ACTIONS(763),
- [anon_sym_protected] = ACTIONS(763),
- [anon_sym_override] = ACTIONS(765),
- [anon_sym_module] = ACTIONS(610),
- [anon_sym_any] = ACTIONS(767),
- [anon_sym_number] = ACTIONS(767),
- [anon_sym_boolean] = ACTIONS(767),
- [anon_sym_string] = ACTIONS(767),
- [anon_sym_symbol] = ACTIONS(767),
- [anon_sym_object] = ACTIONS(767),
- [anon_sym_abstract] = ACTIONS(212),
- [anon_sym_infer] = ACTIONS(214),
- [anon_sym_keyof] = ACTIONS(216),
- [anon_sym_unique] = ACTIONS(218),
- [anon_sym_unknown] = ACTIONS(220),
- [anon_sym_never] = ACTIONS(220),
- [anon_sym_LBRACE_PIPE] = ACTIONS(222),
- [sym_html_comment] = ACTIONS(5),
- },
- [81] = {
- [sym_import] = STATE(3334),
- [sym_parenthesized_expression] = STATE(1179),
- [sym_expression] = STATE(2415),
- [sym_primary_expression] = STATE(1468),
- [sym_yield_expression] = STATE(1634),
- [sym_object] = STATE(1650),
- [sym_object_pattern] = STATE(3588),
- [sym_array] = STATE(1650),
- [sym_array_pattern] = STATE(3588),
- [sym_glimmer_template] = STATE(1634),
- [sym_jsx_element] = STATE(1634),
- [sym_jsx_opening_element] = STATE(3026),
- [sym_jsx_self_closing_element] = STATE(1634),
- [sym_class] = STATE(1650),
- [sym_function_expression] = STATE(1650),
- [sym_generator_function] = STATE(1650),
- [sym_arrow_function] = STATE(1650),
- [sym__call_signature] = STATE(5619),
- [sym_call_expression] = STATE(1650),
- [sym_new_expression] = STATE(1634),
- [sym_await_expression] = STATE(1634),
- [sym_member_expression] = STATE(1221),
- [sym_subscript_expression] = STATE(1221),
- [sym_assignment_expression] = STATE(1634),
- [sym__augmented_assignment_lhs] = STATE(2878),
- [sym_augmented_assignment_expression] = STATE(1634),
- [sym__destructuring_pattern] = STATE(3588),
- [sym_ternary_expression] = STATE(1634),
- [sym_binary_expression] = STATE(1634),
- [sym_unary_expression] = STATE(1634),
- [sym_update_expression] = STATE(1634),
- [sym_string] = STATE(1650),
- [sym_template_string] = STATE(1650),
- [sym_regex] = STATE(1650),
- [sym_meta_property] = STATE(1650),
- [sym_decorator] = STATE(1244),
- [sym_formal_parameters] = STATE(3742),
- [sym_pattern] = STATE(4268),
- [sym_rest_pattern] = STATE(3700),
- [sym_non_null_expression] = STATE(1221),
- [sym_as_expression] = STATE(1634),
- [sym_satisfies_expression] = STATE(1634),
- [sym_instantiation_expression] = STATE(1634),
- [sym_internal_module] = STATE(1634),
- [sym_type_parameters] = STATE(5349),
- [aux_sym_export_statement_repeat1] = STATE(4458),
- [sym_identifier] = ACTIONS(769),
- [anon_sym_export] = ACTIONS(115),
- [anon_sym_STAR] = ACTIONS(122),
- [anon_sym_type] = ACTIONS(115),
- [anon_sym_EQ] = ACTIONS(224),
- [anon_sym_as] = ACTIONS(122),
- [anon_sym_namespace] = ACTIONS(124),
- [anon_sym_LBRACE] = ACTIONS(771),
- [anon_sym_COMMA] = ACTIONS(227),
- [anon_sym_typeof] = ACTIONS(187),
- [anon_sym_import] = ACTIONS(133),
- [anon_sym_let] = ACTIONS(115),
- [anon_sym_BANG] = ACTIONS(137),
- [anon_sym_LPAREN] = ACTIONS(773),
- [anon_sym_RPAREN] = ACTIONS(227),
- [anon_sym_await] = ACTIONS(142),
- [anon_sym_in] = ACTIONS(122),
- [anon_sym_COLON] = ACTIONS(227),
- [anon_sym_yield] = ACTIONS(144),
- [anon_sym_LBRACK] = ACTIONS(776),
- [sym_glimmer_opening_tag] = ACTIONS(148),
- [anon_sym_GT] = ACTIONS(122),
- [anon_sym_DOT] = ACTIONS(122),
- [anon_sym_DQUOTE] = ACTIONS(150),
- [anon_sym_SQUOTE] = ACTIONS(152),
- [anon_sym_class] = ACTIONS(154),
- [anon_sym_async] = ACTIONS(156),
- [anon_sym_function] = ACTIONS(158),
- [anon_sym_EQ_GT] = ACTIONS(229),
- [anon_sym_QMARK_DOT] = ACTIONS(162),
- [anon_sym_new] = ACTIONS(779),
- [anon_sym_using] = ACTIONS(166),
- [anon_sym_PLUS_EQ] = ACTIONS(168),
- [anon_sym_DASH_EQ] = ACTIONS(168),
- [anon_sym_STAR_EQ] = ACTIONS(168),
- [anon_sym_SLASH_EQ] = ACTIONS(168),
- [anon_sym_PERCENT_EQ] = ACTIONS(168),
- [anon_sym_CARET_EQ] = ACTIONS(168),
- [anon_sym_AMP_EQ] = ACTIONS(168),
- [anon_sym_PIPE_EQ] = ACTIONS(168),
- [anon_sym_GT_GT_EQ] = ACTIONS(168),
- [anon_sym_GT_GT_GT_EQ] = ACTIONS(168),
- [anon_sym_LT_LT_EQ] = ACTIONS(168),
- [anon_sym_STAR_STAR_EQ] = ACTIONS(168),
- [anon_sym_AMP_AMP_EQ] = ACTIONS(168),
- [anon_sym_PIPE_PIPE_EQ] = ACTIONS(168),
- [anon_sym_QMARK_QMARK_EQ] = ACTIONS(168),
- [anon_sym_DOT_DOT_DOT] = ACTIONS(170),
- [anon_sym_AMP_AMP] = ACTIONS(122),
- [anon_sym_PIPE_PIPE] = ACTIONS(122),
- [anon_sym_GT_GT] = ACTIONS(122),
- [anon_sym_GT_GT_GT] = ACTIONS(122),
- [anon_sym_LT_LT] = ACTIONS(122),
- [anon_sym_AMP] = ACTIONS(122),
- [anon_sym_CARET] = ACTIONS(122),
- [anon_sym_PIPE] = ACTIONS(122),
- [anon_sym_PLUS] = ACTIONS(137),
- [anon_sym_DASH] = ACTIONS(137),
- [anon_sym_SLASH] = ACTIONS(178),
- [anon_sym_PERCENT] = ACTIONS(122),
- [anon_sym_STAR_STAR] = ACTIONS(122),
- [anon_sym_LT] = ACTIONS(781),
- [anon_sym_LT_EQ] = ACTIONS(162),
- [anon_sym_EQ_EQ] = ACTIONS(122),
- [anon_sym_EQ_EQ_EQ] = ACTIONS(162),
- [anon_sym_BANG_EQ] = ACTIONS(122),
- [anon_sym_BANG_EQ_EQ] = ACTIONS(162),
- [anon_sym_GT_EQ] = ACTIONS(162),
- [anon_sym_QMARK_QMARK] = ACTIONS(122),
- [anon_sym_instanceof] = ACTIONS(122),
- [anon_sym_TILDE] = ACTIONS(183),
- [anon_sym_void] = ACTIONS(187),
- [anon_sym_delete] = ACTIONS(187),
- [anon_sym_PLUS_PLUS] = ACTIONS(189),
- [anon_sym_DASH_DASH] = ACTIONS(189),
- [sym_comment] = ACTIONS(5),
- [anon_sym_BQUOTE] = ACTIONS(784),
- [sym_number] = ACTIONS(787),
- [sym_private_property_identifier] = ACTIONS(196),
- [sym_this] = ACTIONS(803),
- [sym_super] = ACTIONS(200),
- [sym_true] = ACTIONS(200),
- [sym_false] = ACTIONS(200),
- [sym_null] = ACTIONS(200),
- [sym_undefined] = ACTIONS(791),
- [anon_sym_AT] = ACTIONS(99),
- [anon_sym_static] = ACTIONS(115),
- [anon_sym_readonly] = ACTIONS(115),
- [anon_sym_get] = ACTIONS(115),
- [anon_sym_set] = ACTIONS(115),
- [anon_sym_QMARK] = ACTIONS(793),
- [anon_sym_declare] = ACTIONS(115),
- [anon_sym_public] = ACTIONS(115),
- [anon_sym_private] = ACTIONS(115),
- [anon_sym_protected] = ACTIONS(115),
- [anon_sym_override] = ACTIONS(115),
- [anon_sym_module] = ACTIONS(115),
- [anon_sym_any] = ACTIONS(115),
- [anon_sym_number] = ACTIONS(115),
- [anon_sym_boolean] = ACTIONS(115),
- [anon_sym_string] = ACTIONS(115),
- [anon_sym_symbol] = ACTIONS(115),
- [anon_sym_object] = ACTIONS(115),
- [anon_sym_satisfies] = ACTIONS(122),
- [sym__ternary_qmark] = ACTIONS(162),
- [sym_html_comment] = ACTIONS(5),
- },
- [82] = {
- [sym_import] = STATE(3334),
- [sym_parenthesized_expression] = STATE(1179),
- [sym_expression] = STATE(2415),
- [sym_primary_expression] = STATE(1468),
- [sym_yield_expression] = STATE(1634),
- [sym_object] = STATE(1650),
- [sym_object_pattern] = STATE(3588),
- [sym_array] = STATE(1650),
- [sym_array_pattern] = STATE(3588),
- [sym_glimmer_template] = STATE(1634),
- [sym_jsx_element] = STATE(1634),
- [sym_jsx_opening_element] = STATE(3026),
- [sym_jsx_self_closing_element] = STATE(1634),
- [sym_class] = STATE(1650),
- [sym_function_expression] = STATE(1650),
- [sym_generator_function] = STATE(1650),
- [sym_arrow_function] = STATE(1650),
- [sym__call_signature] = STATE(5619),
- [sym_call_expression] = STATE(1650),
- [sym_new_expression] = STATE(1634),
- [sym_await_expression] = STATE(1634),
- [sym_member_expression] = STATE(1221),
- [sym_subscript_expression] = STATE(1221),
- [sym_assignment_expression] = STATE(1634),
- [sym__augmented_assignment_lhs] = STATE(2878),
- [sym_augmented_assignment_expression] = STATE(1634),
- [sym__destructuring_pattern] = STATE(3588),
- [sym_ternary_expression] = STATE(1634),
- [sym_binary_expression] = STATE(1634),
- [sym_unary_expression] = STATE(1634),
- [sym_update_expression] = STATE(1634),
- [sym_string] = STATE(1650),
- [sym_template_string] = STATE(1650),
- [sym_regex] = STATE(1650),
- [sym_meta_property] = STATE(1650),
- [sym_decorator] = STATE(1244),
- [sym_formal_parameters] = STATE(3742),
- [sym_pattern] = STATE(4296),
- [sym_rest_pattern] = STATE(3700),
- [sym_non_null_expression] = STATE(1221),
- [sym_as_expression] = STATE(1634),
- [sym_satisfies_expression] = STATE(1634),
- [sym_instantiation_expression] = STATE(1634),
- [sym_internal_module] = STATE(1634),
- [sym_type_parameters] = STATE(5349),
- [aux_sym_export_statement_repeat1] = STATE(4458),
- [sym_identifier] = ACTIONS(769),
- [anon_sym_export] = ACTIONS(115),
- [anon_sym_STAR] = ACTIONS(122),
- [anon_sym_type] = ACTIONS(115),
- [anon_sym_EQ] = ACTIONS(224),
- [anon_sym_as] = ACTIONS(122),
- [anon_sym_namespace] = ACTIONS(124),
- [anon_sym_LBRACE] = ACTIONS(771),
- [anon_sym_COMMA] = ACTIONS(227),
- [anon_sym_typeof] = ACTIONS(187),
- [anon_sym_import] = ACTIONS(133),
- [anon_sym_let] = ACTIONS(115),
- [anon_sym_BANG] = ACTIONS(137),
- [anon_sym_LPAREN] = ACTIONS(773),
- [anon_sym_RPAREN] = ACTIONS(227),
- [anon_sym_await] = ACTIONS(142),
- [anon_sym_in] = ACTIONS(122),
- [anon_sym_COLON] = ACTIONS(227),
- [anon_sym_yield] = ACTIONS(144),
- [anon_sym_LBRACK] = ACTIONS(776),
- [sym_glimmer_opening_tag] = ACTIONS(148),
- [anon_sym_GT] = ACTIONS(122),
- [anon_sym_DOT] = ACTIONS(122),
- [anon_sym_DQUOTE] = ACTIONS(150),
- [anon_sym_SQUOTE] = ACTIONS(152),
- [anon_sym_class] = ACTIONS(154),
- [anon_sym_async] = ACTIONS(156),
- [anon_sym_function] = ACTIONS(158),
- [anon_sym_EQ_GT] = ACTIONS(229),
- [anon_sym_QMARK_DOT] = ACTIONS(162),
- [anon_sym_new] = ACTIONS(779),
- [anon_sym_using] = ACTIONS(166),
- [anon_sym_PLUS_EQ] = ACTIONS(168),
- [anon_sym_DASH_EQ] = ACTIONS(168),
- [anon_sym_STAR_EQ] = ACTIONS(168),
- [anon_sym_SLASH_EQ] = ACTIONS(168),
- [anon_sym_PERCENT_EQ] = ACTIONS(168),
- [anon_sym_CARET_EQ] = ACTIONS(168),
- [anon_sym_AMP_EQ] = ACTIONS(168),
- [anon_sym_PIPE_EQ] = ACTIONS(168),
- [anon_sym_GT_GT_EQ] = ACTIONS(168),
- [anon_sym_GT_GT_GT_EQ] = ACTIONS(168),
- [anon_sym_LT_LT_EQ] = ACTIONS(168),
- [anon_sym_STAR_STAR_EQ] = ACTIONS(168),
- [anon_sym_AMP_AMP_EQ] = ACTIONS(168),
- [anon_sym_PIPE_PIPE_EQ] = ACTIONS(168),
- [anon_sym_QMARK_QMARK_EQ] = ACTIONS(168),
- [anon_sym_DOT_DOT_DOT] = ACTIONS(170),
- [anon_sym_AMP_AMP] = ACTIONS(122),
- [anon_sym_PIPE_PIPE] = ACTIONS(122),
- [anon_sym_GT_GT] = ACTIONS(122),
- [anon_sym_GT_GT_GT] = ACTIONS(122),
- [anon_sym_LT_LT] = ACTIONS(122),
- [anon_sym_AMP] = ACTIONS(122),
- [anon_sym_CARET] = ACTIONS(122),
- [anon_sym_PIPE] = ACTIONS(122),
- [anon_sym_PLUS] = ACTIONS(137),
- [anon_sym_DASH] = ACTIONS(137),
- [anon_sym_SLASH] = ACTIONS(178),
- [anon_sym_PERCENT] = ACTIONS(122),
- [anon_sym_STAR_STAR] = ACTIONS(122),
- [anon_sym_LT] = ACTIONS(781),
- [anon_sym_LT_EQ] = ACTIONS(162),
- [anon_sym_EQ_EQ] = ACTIONS(122),
- [anon_sym_EQ_EQ_EQ] = ACTIONS(162),
- [anon_sym_BANG_EQ] = ACTIONS(122),
- [anon_sym_BANG_EQ_EQ] = ACTIONS(162),
- [anon_sym_GT_EQ] = ACTIONS(162),
- [anon_sym_QMARK_QMARK] = ACTIONS(122),
- [anon_sym_instanceof] = ACTIONS(122),
- [anon_sym_TILDE] = ACTIONS(183),
- [anon_sym_void] = ACTIONS(187),
- [anon_sym_delete] = ACTIONS(187),
- [anon_sym_PLUS_PLUS] = ACTIONS(189),
- [anon_sym_DASH_DASH] = ACTIONS(189),
- [sym_comment] = ACTIONS(5),
- [anon_sym_BQUOTE] = ACTIONS(784),
- [sym_number] = ACTIONS(787),
- [sym_private_property_identifier] = ACTIONS(196),
- [sym_this] = ACTIONS(805),
- [sym_super] = ACTIONS(200),
- [sym_true] = ACTIONS(200),
- [sym_false] = ACTIONS(200),
- [sym_null] = ACTIONS(200),
- [sym_undefined] = ACTIONS(791),
- [anon_sym_AT] = ACTIONS(99),
- [anon_sym_static] = ACTIONS(115),
- [anon_sym_readonly] = ACTIONS(115),
- [anon_sym_get] = ACTIONS(115),
- [anon_sym_set] = ACTIONS(115),
- [anon_sym_QMARK] = ACTIONS(793),
- [anon_sym_declare] = ACTIONS(115),
- [anon_sym_public] = ACTIONS(115),
- [anon_sym_private] = ACTIONS(115),
- [anon_sym_protected] = ACTIONS(115),
- [anon_sym_override] = ACTIONS(115),
- [anon_sym_module] = ACTIONS(115),
- [anon_sym_any] = ACTIONS(115),
- [anon_sym_number] = ACTIONS(115),
- [anon_sym_boolean] = ACTIONS(115),
- [anon_sym_string] = ACTIONS(115),
- [anon_sym_symbol] = ACTIONS(115),
- [anon_sym_object] = ACTIONS(115),
- [anon_sym_satisfies] = ACTIONS(122),
- [sym__ternary_qmark] = ACTIONS(162),
- [sym_html_comment] = ACTIONS(5),
- },
- [83] = {
- [sym_import] = STATE(3334),
- [sym_parenthesized_expression] = STATE(1179),
- [sym_expression] = STATE(2415),
- [sym_primary_expression] = STATE(1430),
- [sym_yield_expression] = STATE(1634),
- [sym_object] = STATE(1650),
- [sym_object_pattern] = STATE(5854),
- [sym_array] = STATE(1650),
- [sym_array_pattern] = STATE(5854),
- [sym_glimmer_template] = STATE(1634),
- [sym_jsx_element] = STATE(1634),
- [sym_jsx_opening_element] = STATE(3026),
- [sym_jsx_self_closing_element] = STATE(1634),
- [sym_class] = STATE(1650),
- [sym_function_expression] = STATE(1650),
- [sym_generator_function] = STATE(1650),
- [sym_arrow_function] = STATE(1650),
- [sym__call_signature] = STATE(5828),
- [sym_call_expression] = STATE(1650),
- [sym_new_expression] = STATE(1634),
- [sym_await_expression] = STATE(1634),
- [sym_member_expression] = STATE(1179),
- [sym_subscript_expression] = STATE(1179),
- [sym_assignment_expression] = STATE(1634),
- [sym__augmented_assignment_lhs] = STATE(2878),
- [sym_augmented_assignment_expression] = STATE(1634),
- [sym__destructuring_pattern] = STATE(5854),
- [sym_ternary_expression] = STATE(1634),
- [sym_binary_expression] = STATE(1634),
- [sym_unary_expression] = STATE(1634),
- [sym_update_expression] = STATE(1634),
- [sym_string] = STATE(1650),
- [sym_template_string] = STATE(1650),
- [sym_regex] = STATE(1650),
- [sym_meta_property] = STATE(1650),
- [sym_decorator] = STATE(1244),
- [sym_formal_parameters] = STATE(3742),
- [sym_non_null_expression] = STATE(1179),
- [sym_as_expression] = STATE(1634),
- [sym_satisfies_expression] = STATE(1634),
- [sym_instantiation_expression] = STATE(1634),
- [sym_internal_module] = STATE(1634),
- [sym_type_parameters] = STATE(5349),
- [aux_sym_export_statement_repeat1] = STATE(4458),
- [sym_identifier] = ACTIONS(807),
- [anon_sym_export] = ACTIONS(809),
- [anon_sym_STAR] = ACTIONS(122),
- [anon_sym_type] = ACTIONS(809),
- [anon_sym_EQ] = ACTIONS(119),
- [anon_sym_as] = ACTIONS(122),
- [anon_sym_namespace] = ACTIONS(811),
- [anon_sym_LBRACE] = ACTIONS(813),
- [anon_sym_COMMA] = ACTIONS(128),
- [anon_sym_RBRACE] = ACTIONS(128),
- [anon_sym_typeof] = ACTIONS(187),
- [anon_sym_import] = ACTIONS(133),
- [anon_sym_let] = ACTIONS(809),
- [anon_sym_BANG] = ACTIONS(187),
- [anon_sym_LPAREN] = ACTIONS(815),
- [anon_sym_RPAREN] = ACTIONS(128),
- [anon_sym_await] = ACTIONS(142),
- [anon_sym_in] = ACTIONS(122),
- [anon_sym_COLON] = ACTIONS(128),
- [anon_sym_yield] = ACTIONS(144),
- [anon_sym_LBRACK] = ACTIONS(817),
- [anon_sym_RBRACK] = ACTIONS(128),
- [sym_glimmer_opening_tag] = ACTIONS(148),
- [anon_sym_GT] = ACTIONS(122),
- [anon_sym_DOT] = ACTIONS(819),
- [anon_sym_DQUOTE] = ACTIONS(150),
- [anon_sym_SQUOTE] = ACTIONS(152),
- [anon_sym_class] = ACTIONS(154),
- [anon_sym_async] = ACTIONS(821),
- [anon_sym_function] = ACTIONS(158),
- [anon_sym_EQ_GT] = ACTIONS(160),
- [anon_sym_QMARK_DOT] = ACTIONS(162),
- [anon_sym_new] = ACTIONS(823),
- [anon_sym_using] = ACTIONS(166),
- [anon_sym_PLUS_EQ] = ACTIONS(168),
- [anon_sym_DASH_EQ] = ACTIONS(168),
- [anon_sym_STAR_EQ] = ACTIONS(168),
- [anon_sym_SLASH_EQ] = ACTIONS(168),
- [anon_sym_PERCENT_EQ] = ACTIONS(168),
- [anon_sym_CARET_EQ] = ACTIONS(168),
- [anon_sym_AMP_EQ] = ACTIONS(168),
- [anon_sym_PIPE_EQ] = ACTIONS(168),
- [anon_sym_GT_GT_EQ] = ACTIONS(168),
- [anon_sym_GT_GT_GT_EQ] = ACTIONS(168),
- [anon_sym_LT_LT_EQ] = ACTIONS(168),
- [anon_sym_STAR_STAR_EQ] = ACTIONS(168),
- [anon_sym_AMP_AMP_EQ] = ACTIONS(168),
- [anon_sym_PIPE_PIPE_EQ] = ACTIONS(168),
- [anon_sym_QMARK_QMARK_EQ] = ACTIONS(168),
- [anon_sym_AMP_AMP] = ACTIONS(122),
- [anon_sym_PIPE_PIPE] = ACTIONS(122),
- [anon_sym_GT_GT] = ACTIONS(122),
- [anon_sym_GT_GT_GT] = ACTIONS(122),
- [anon_sym_LT_LT] = ACTIONS(122),
- [anon_sym_AMP] = ACTIONS(122),
- [anon_sym_CARET] = ACTIONS(122),
- [anon_sym_PIPE] = ACTIONS(122),
- [anon_sym_PLUS] = ACTIONS(187),
- [anon_sym_DASH] = ACTIONS(187),
- [anon_sym_SLASH] = ACTIONS(646),
- [anon_sym_PERCENT] = ACTIONS(122),
- [anon_sym_STAR_STAR] = ACTIONS(122),
- [anon_sym_LT] = ACTIONS(181),
- [anon_sym_LT_EQ] = ACTIONS(162),
- [anon_sym_EQ_EQ] = ACTIONS(122),
- [anon_sym_EQ_EQ_EQ] = ACTIONS(162),
- [anon_sym_BANG_EQ] = ACTIONS(122),
- [anon_sym_BANG_EQ_EQ] = ACTIONS(162),
- [anon_sym_GT_EQ] = ACTIONS(162),
- [anon_sym_QMARK_QMARK] = ACTIONS(122),
- [anon_sym_instanceof] = ACTIONS(122),
- [anon_sym_TILDE] = ACTIONS(183),
- [anon_sym_void] = ACTIONS(187),
- [anon_sym_delete] = ACTIONS(187),
- [anon_sym_PLUS_PLUS] = ACTIONS(719),
- [anon_sym_DASH_DASH] = ACTIONS(719),
- [sym_comment] = ACTIONS(5),
- [anon_sym_BQUOTE] = ACTIONS(825),
- [sym_number] = ACTIONS(787),
- [sym_private_property_identifier] = ACTIONS(196),
- [sym_this] = ACTIONS(200),
- [sym_super] = ACTIONS(200),
- [sym_true] = ACTIONS(200),
- [sym_false] = ACTIONS(200),
- [sym_null] = ACTIONS(200),
- [sym_undefined] = ACTIONS(827),
- [anon_sym_AT] = ACTIONS(99),
- [anon_sym_static] = ACTIONS(809),
- [anon_sym_readonly] = ACTIONS(809),
- [anon_sym_get] = ACTIONS(809),
- [anon_sym_set] = ACTIONS(809),
- [anon_sym_QMARK] = ACTIONS(793),
- [anon_sym_declare] = ACTIONS(809),
- [anon_sym_public] = ACTIONS(809),
- [anon_sym_private] = ACTIONS(809),
- [anon_sym_protected] = ACTIONS(809),
- [anon_sym_override] = ACTIONS(809),
- [anon_sym_module] = ACTIONS(809),
- [anon_sym_any] = ACTIONS(809),
- [anon_sym_number] = ACTIONS(809),
- [anon_sym_boolean] = ACTIONS(809),
- [anon_sym_string] = ACTIONS(809),
- [anon_sym_symbol] = ACTIONS(809),
- [anon_sym_object] = ACTIONS(809),
- [anon_sym_satisfies] = ACTIONS(122),
- [sym__ternary_qmark] = ACTIONS(162),
- [sym_html_comment] = ACTIONS(5),
- },
- [84] = {
- [sym_import] = STATE(3290),
- [sym_parenthesized_expression] = STATE(1179),
- [sym_expression] = STATE(2415),
- [sym_primary_expression] = STATE(1468),
- [sym_yield_expression] = STATE(1634),
- [sym_object] = STATE(1650),
- [sym_object_pattern] = STATE(3588),
- [sym_array] = STATE(1650),
- [sym_array_pattern] = STATE(3588),
- [sym_glimmer_template] = STATE(1634),
- [sym_jsx_element] = STATE(1634),
- [sym_jsx_opening_element] = STATE(3026),
- [sym_nested_identifier] = STATE(5707),
- [sym_jsx_self_closing_element] = STATE(1634),
- [sym_class] = STATE(1650),
- [sym_function_expression] = STATE(1650),
- [sym_generator_function] = STATE(1650),
- [sym_arrow_function] = STATE(1650),
- [sym__call_signature] = STATE(5619),
- [sym__formal_parameter] = STATE(4890),
- [sym_call_expression] = STATE(1650),
- [sym_new_expression] = STATE(1634),
- [sym_await_expression] = STATE(1634),
- [sym_member_expression] = STATE(1221),
- [sym_subscript_expression] = STATE(1221),
- [sym_assignment_expression] = STATE(1634),
- [sym__augmented_assignment_lhs] = STATE(2878),
- [sym_augmented_assignment_expression] = STATE(1634),
- [sym__destructuring_pattern] = STATE(3588),
- [sym_ternary_expression] = STATE(1634),
- [sym_binary_expression] = STATE(1634),
- [sym_unary_expression] = STATE(1634),
- [sym_update_expression] = STATE(1634),
- [sym_string] = STATE(2271),
- [sym_template_string] = STATE(1650),
- [sym_regex] = STATE(1650),
- [sym_meta_property] = STATE(1650),
- [sym_decorator] = STATE(1244),
- [sym_formal_parameters] = STATE(3952),
- [sym_pattern] = STATE(4262),
- [sym_rest_pattern] = STATE(3700),
- [sym_non_null_expression] = STATE(1221),
- [sym_as_expression] = STATE(1634),
- [sym_satisfies_expression] = STATE(1634),
- [sym_instantiation_expression] = STATE(1634),
- [sym_internal_module] = STATE(1634),
- [sym_nested_type_identifier] = STATE(2828),
- [sym_accessibility_modifier] = STATE(268),
- [sym_override_modifier] = STATE(296),
- [sym_required_parameter] = STATE(4890),
- [sym_optional_parameter] = STATE(4890),
- [sym__parameter_name] = STATE(3493),
- [sym__type_query_member_expression_in_type_annotation] = STATE(2846),
- [sym__type_query_call_expression_in_type_annotation] = STATE(2850),
- [sym_type] = STATE(4557),
- [sym_constructor_type] = STATE(2896),
- [sym_primary_type] = STATE(2897),
- [sym_template_literal_type] = STATE(2885),
- [sym_infer_type] = STATE(2896),
- [sym_conditional_type] = STATE(2885),
- [sym_generic_type] = STATE(2885),
- [sym_type_query] = STATE(2885),
- [sym_index_type_query] = STATE(2885),
- [sym_lookup_type] = STATE(2885),
- [sym_literal_type] = STATE(2885),
- [sym__number] = STATE(2903),
- [sym_existential_type] = STATE(2885),
- [sym_flow_maybe_type] = STATE(2885),
- [sym_parenthesized_type] = STATE(2885),
- [sym_predefined_type] = STATE(2885),
- [sym_object_type] = STATE(2885),
- [sym_type_parameters] = STATE(5276),
- [sym_array_type] = STATE(2885),
- [sym_tuple_type] = STATE(2885),
- [sym_readonly_type] = STATE(2896),
- [sym_union_type] = STATE(2885),
- [sym_intersection_type] = STATE(2885),
- [sym_function_type] = STATE(2896),
- [aux_sym_export_statement_repeat1] = STATE(253),
- [sym_identifier] = ACTIONS(113),
- [anon_sym_export] = ACTIONS(115),
- [anon_sym_STAR] = ACTIONS(612),
- [anon_sym_type] = ACTIONS(115),
- [anon_sym_namespace] = ACTIONS(124),
- [anon_sym_LBRACE] = ACTIONS(126),
- [anon_sym_typeof] = ACTIONS(131),
- [anon_sym_import] = ACTIONS(133),
- [anon_sym_let] = ACTIONS(115),
- [anon_sym_const] = ACTIONS(135),
- [anon_sym_BANG] = ACTIONS(183),
- [anon_sym_LPAREN] = ACTIONS(140),
- [anon_sym_RPAREN] = ACTIONS(735),
- [anon_sym_await] = ACTIONS(142),
- [anon_sym_yield] = ACTIONS(144),
- [anon_sym_LBRACK] = ACTIONS(146),
- [sym_glimmer_opening_tag] = ACTIONS(148),
- [anon_sym_DQUOTE] = ACTIONS(150),
- [anon_sym_SQUOTE] = ACTIONS(152),
- [anon_sym_class] = ACTIONS(154),
- [anon_sym_async] = ACTIONS(156),
- [anon_sym_function] = ACTIONS(158),
- [anon_sym_new] = ACTIONS(164),
- [anon_sym_using] = ACTIONS(166),
- [anon_sym_DOT_DOT_DOT] = ACTIONS(170),
- [anon_sym_AMP] = ACTIONS(741),
- [anon_sym_PIPE] = ACTIONS(743),
- [anon_sym_PLUS] = ACTIONS(176),
- [anon_sym_DASH] = ACTIONS(176),
- [anon_sym_SLASH] = ACTIONS(646),
- [anon_sym_LT] = ACTIONS(181),
- [anon_sym_TILDE] = ACTIONS(183),
- [anon_sym_void] = ACTIONS(185),
- [anon_sym_delete] = ACTIONS(187),
- [anon_sym_PLUS_PLUS] = ACTIONS(719),
- [anon_sym_DASH_DASH] = ACTIONS(719),
- [sym_comment] = ACTIONS(5),
- [anon_sym_BQUOTE] = ACTIONS(192),
- [sym_number] = ACTIONS(194),
- [sym_private_property_identifier] = ACTIONS(196),
- [sym_this] = ACTIONS(829),
- [sym_super] = ACTIONS(200),
- [sym_true] = ACTIONS(202),
- [sym_false] = ACTIONS(202),
- [sym_null] = ACTIONS(202),
- [sym_undefined] = ACTIONS(204),
- [anon_sym_AT] = ACTIONS(757),
- [anon_sym_static] = ACTIONS(115),
- [anon_sym_readonly] = ACTIONS(831),
- [anon_sym_get] = ACTIONS(115),
- [anon_sym_set] = ACTIONS(115),
- [anon_sym_QMARK] = ACTIONS(761),
- [anon_sym_declare] = ACTIONS(115),
- [anon_sym_public] = ACTIONS(833),
- [anon_sym_private] = ACTIONS(833),
- [anon_sym_protected] = ACTIONS(833),
- [anon_sym_override] = ACTIONS(835),
- [anon_sym_module] = ACTIONS(115),
- [anon_sym_any] = ACTIONS(210),
- [anon_sym_number] = ACTIONS(210),
- [anon_sym_boolean] = ACTIONS(210),
- [anon_sym_string] = ACTIONS(210),
- [anon_sym_symbol] = ACTIONS(210),
- [anon_sym_object] = ACTIONS(210),
- [anon_sym_abstract] = ACTIONS(212),
- [anon_sym_infer] = ACTIONS(214),
- [anon_sym_keyof] = ACTIONS(216),
- [anon_sym_unique] = ACTIONS(218),
- [anon_sym_unknown] = ACTIONS(220),
- [anon_sym_never] = ACTIONS(220),
- [anon_sym_LBRACE_PIPE] = ACTIONS(222),
- [sym_html_comment] = ACTIONS(5),
- },
- [85] = {
- [sym_import] = STATE(3334),
- [sym_parenthesized_expression] = STATE(1179),
- [sym_expression] = STATE(2415),
- [sym_primary_expression] = STATE(1430),
- [sym_yield_expression] = STATE(1634),
- [sym_object] = STATE(1650),
- [sym_object_pattern] = STATE(5854),
- [sym_array] = STATE(1650),
- [sym_array_pattern] = STATE(5854),
- [sym_glimmer_template] = STATE(1634),
- [sym_jsx_element] = STATE(1634),
- [sym_jsx_opening_element] = STATE(3026),
- [sym_jsx_self_closing_element] = STATE(1634),
- [sym_class] = STATE(1650),
- [sym_function_expression] = STATE(1650),
- [sym_generator_function] = STATE(1650),
- [sym_arrow_function] = STATE(1650),
- [sym__call_signature] = STATE(5619),
- [sym_call_expression] = STATE(1650),
- [sym_new_expression] = STATE(1634),
- [sym_await_expression] = STATE(1634),
- [sym_member_expression] = STATE(1179),
- [sym_subscript_expression] = STATE(1179),
- [sym_assignment_expression] = STATE(1634),
- [sym__augmented_assignment_lhs] = STATE(2878),
- [sym_augmented_assignment_expression] = STATE(1634),
- [sym__destructuring_pattern] = STATE(5854),
- [sym_ternary_expression] = STATE(1634),
- [sym_binary_expression] = STATE(1634),
- [sym_unary_expression] = STATE(1634),
- [sym_update_expression] = STATE(1634),
- [sym_string] = STATE(1650),
- [sym_template_string] = STATE(1650),
- [sym_regex] = STATE(1650),
- [sym_meta_property] = STATE(1650),
- [sym_decorator] = STATE(1244),
- [sym_formal_parameters] = STATE(3742),
- [sym_non_null_expression] = STATE(1179),
- [sym_as_expression] = STATE(1634),
- [sym_satisfies_expression] = STATE(1634),
- [sym_instantiation_expression] = STATE(1634),
- [sym_internal_module] = STATE(1634),
- [sym_type_parameters] = STATE(5349),
- [aux_sym_export_statement_repeat1] = STATE(4458),
- [sym_identifier] = ACTIONS(837),
- [anon_sym_export] = ACTIONS(839),
- [anon_sym_STAR] = ACTIONS(122),
- [anon_sym_type] = ACTIONS(839),
- [anon_sym_EQ] = ACTIONS(841),
- [anon_sym_as] = ACTIONS(122),
- [anon_sym_namespace] = ACTIONS(843),
- [anon_sym_LBRACE] = ACTIONS(845),
- [anon_sym_COMMA] = ACTIONS(847),
- [anon_sym_RBRACE] = ACTIONS(847),
- [anon_sym_typeof] = ACTIONS(187),
- [anon_sym_import] = ACTIONS(133),
- [anon_sym_let] = ACTIONS(839),
- [anon_sym_BANG] = ACTIONS(187),
- [anon_sym_LPAREN] = ACTIONS(815),
- [anon_sym_RPAREN] = ACTIONS(847),
- [anon_sym_await] = ACTIONS(142),
- [anon_sym_in] = ACTIONS(122),
- [anon_sym_COLON] = ACTIONS(847),
- [anon_sym_yield] = ACTIONS(144),
- [anon_sym_LBRACK] = ACTIONS(849),
- [anon_sym_RBRACK] = ACTIONS(847),
- [sym_glimmer_opening_tag] = ACTIONS(148),
- [anon_sym_GT] = ACTIONS(122),
- [anon_sym_DOT] = ACTIONS(819),
- [anon_sym_DQUOTE] = ACTIONS(150),
- [anon_sym_SQUOTE] = ACTIONS(152),
- [anon_sym_class] = ACTIONS(154),
- [anon_sym_async] = ACTIONS(851),
- [anon_sym_function] = ACTIONS(158),
- [anon_sym_EQ_GT] = ACTIONS(229),
- [anon_sym_QMARK_DOT] = ACTIONS(162),
- [anon_sym_new] = ACTIONS(853),
- [anon_sym_using] = ACTIONS(166),
- [anon_sym_PLUS_EQ] = ACTIONS(168),
- [anon_sym_DASH_EQ] = ACTIONS(168),
- [anon_sym_STAR_EQ] = ACTIONS(168),
- [anon_sym_SLASH_EQ] = ACTIONS(168),
- [anon_sym_PERCENT_EQ] = ACTIONS(168),
- [anon_sym_CARET_EQ] = ACTIONS(168),
- [anon_sym_AMP_EQ] = ACTIONS(168),
- [anon_sym_PIPE_EQ] = ACTIONS(168),
- [anon_sym_GT_GT_EQ] = ACTIONS(168),
- [anon_sym_GT_GT_GT_EQ] = ACTIONS(168),
- [anon_sym_LT_LT_EQ] = ACTIONS(168),
- [anon_sym_STAR_STAR_EQ] = ACTIONS(168),
- [anon_sym_AMP_AMP_EQ] = ACTIONS(168),
- [anon_sym_PIPE_PIPE_EQ] = ACTIONS(168),
- [anon_sym_QMARK_QMARK_EQ] = ACTIONS(168),
- [anon_sym_AMP_AMP] = ACTIONS(122),
- [anon_sym_PIPE_PIPE] = ACTIONS(122),
- [anon_sym_GT_GT] = ACTIONS(122),
- [anon_sym_GT_GT_GT] = ACTIONS(122),
- [anon_sym_LT_LT] = ACTIONS(122),
- [anon_sym_AMP] = ACTIONS(122),
- [anon_sym_CARET] = ACTIONS(122),
- [anon_sym_PIPE] = ACTIONS(122),
- [anon_sym_PLUS] = ACTIONS(187),
- [anon_sym_DASH] = ACTIONS(187),
- [anon_sym_SLASH] = ACTIONS(646),
- [anon_sym_PERCENT] = ACTIONS(122),
- [anon_sym_STAR_STAR] = ACTIONS(122),
- [anon_sym_LT] = ACTIONS(181),
- [anon_sym_LT_EQ] = ACTIONS(162),
- [anon_sym_EQ_EQ] = ACTIONS(122),
- [anon_sym_EQ_EQ_EQ] = ACTIONS(162),
- [anon_sym_BANG_EQ] = ACTIONS(122),
- [anon_sym_BANG_EQ_EQ] = ACTIONS(162),
- [anon_sym_GT_EQ] = ACTIONS(162),
- [anon_sym_QMARK_QMARK] = ACTIONS(122),
- [anon_sym_instanceof] = ACTIONS(122),
- [anon_sym_TILDE] = ACTIONS(183),
- [anon_sym_void] = ACTIONS(187),
- [anon_sym_delete] = ACTIONS(187),
- [anon_sym_PLUS_PLUS] = ACTIONS(719),
- [anon_sym_DASH_DASH] = ACTIONS(719),
- [sym_comment] = ACTIONS(5),
- [anon_sym_BQUOTE] = ACTIONS(825),
- [sym_number] = ACTIONS(787),
- [sym_private_property_identifier] = ACTIONS(196),
- [sym_this] = ACTIONS(200),
- [sym_super] = ACTIONS(200),
- [sym_true] = ACTIONS(200),
- [sym_false] = ACTIONS(200),
- [sym_null] = ACTIONS(200),
- [sym_undefined] = ACTIONS(827),
- [anon_sym_AT] = ACTIONS(99),
- [anon_sym_static] = ACTIONS(839),
- [anon_sym_readonly] = ACTIONS(839),
- [anon_sym_get] = ACTIONS(839),
- [anon_sym_set] = ACTIONS(839),
- [anon_sym_QMARK] = ACTIONS(855),
- [anon_sym_declare] = ACTIONS(839),
- [anon_sym_public] = ACTIONS(839),
- [anon_sym_private] = ACTIONS(839),
- [anon_sym_protected] = ACTIONS(839),
- [anon_sym_override] = ACTIONS(839),
- [anon_sym_module] = ACTIONS(839),
- [anon_sym_any] = ACTIONS(839),
- [anon_sym_number] = ACTIONS(839),
- [anon_sym_boolean] = ACTIONS(839),
- [anon_sym_string] = ACTIONS(839),
- [anon_sym_symbol] = ACTIONS(839),
- [anon_sym_object] = ACTIONS(839),
- [anon_sym_satisfies] = ACTIONS(122),
- [sym__ternary_qmark] = ACTIONS(162),
- [sym_html_comment] = ACTIONS(5),
- },
- [86] = {
- [sym_import] = STATE(3290),
- [sym_parenthesized_expression] = STATE(1179),
- [sym_expression] = STATE(2415),
- [sym_primary_expression] = STATE(1468),
- [sym_yield_expression] = STATE(1634),
- [sym_object] = STATE(1650),
- [sym_object_pattern] = STATE(3588),
- [sym_array] = STATE(1650),
- [sym_array_pattern] = STATE(3588),
- [sym_glimmer_template] = STATE(1634),
- [sym_jsx_element] = STATE(1634),
- [sym_jsx_opening_element] = STATE(3026),
- [sym_nested_identifier] = STATE(5707),
- [sym_jsx_self_closing_element] = STATE(1634),
- [sym_class] = STATE(1650),
- [sym_function_expression] = STATE(1650),
- [sym_generator_function] = STATE(1650),
- [sym_arrow_function] = STATE(1650),
- [sym__call_signature] = STATE(5619),
- [sym__formal_parameter] = STATE(4890),
- [sym_call_expression] = STATE(1650),
- [sym_new_expression] = STATE(1634),
- [sym_await_expression] = STATE(1634),
- [sym_member_expression] = STATE(1221),
- [sym_subscript_expression] = STATE(1221),
- [sym_assignment_expression] = STATE(1634),
- [sym__augmented_assignment_lhs] = STATE(2878),
- [sym_augmented_assignment_expression] = STATE(1634),
- [sym__destructuring_pattern] = STATE(3588),
- [sym_ternary_expression] = STATE(1634),
- [sym_binary_expression] = STATE(1634),
- [sym_unary_expression] = STATE(1634),
- [sym_update_expression] = STATE(1634),
- [sym_string] = STATE(2271),
- [sym_template_string] = STATE(1650),
- [sym_regex] = STATE(1650),
- [sym_meta_property] = STATE(1650),
- [sym_decorator] = STATE(1244),
- [sym_formal_parameters] = STATE(3952),
- [sym_pattern] = STATE(4262),
- [sym_rest_pattern] = STATE(3700),
- [sym_non_null_expression] = STATE(1221),
- [sym_as_expression] = STATE(1634),
- [sym_satisfies_expression] = STATE(1634),
- [sym_instantiation_expression] = STATE(1634),
- [sym_internal_module] = STATE(1634),
- [sym_nested_type_identifier] = STATE(2828),
- [sym_accessibility_modifier] = STATE(268),
- [sym_override_modifier] = STATE(296),
- [sym_required_parameter] = STATE(4890),
- [sym_optional_parameter] = STATE(4890),
- [sym__parameter_name] = STATE(3493),
- [sym__type_query_member_expression_in_type_annotation] = STATE(2846),
- [sym__type_query_call_expression_in_type_annotation] = STATE(2850),
- [sym_type] = STATE(4497),
- [sym_constructor_type] = STATE(2896),
- [sym_primary_type] = STATE(2897),
- [sym_template_literal_type] = STATE(2885),
- [sym_infer_type] = STATE(2896),
- [sym_conditional_type] = STATE(2885),
- [sym_generic_type] = STATE(2885),
- [sym_type_query] = STATE(2885),
- [sym_index_type_query] = STATE(2885),
- [sym_lookup_type] = STATE(2885),
- [sym_literal_type] = STATE(2885),
- [sym__number] = STATE(2903),
- [sym_existential_type] = STATE(2885),
- [sym_flow_maybe_type] = STATE(2885),
- [sym_parenthesized_type] = STATE(2885),
- [sym_predefined_type] = STATE(2885),
- [sym_object_type] = STATE(2885),
- [sym_type_parameters] = STATE(5276),
- [sym_array_type] = STATE(2885),
- [sym_tuple_type] = STATE(2885),
- [sym_readonly_type] = STATE(2896),
- [sym_union_type] = STATE(2885),
- [sym_intersection_type] = STATE(2885),
- [sym_function_type] = STATE(2896),
- [aux_sym_export_statement_repeat1] = STATE(253),
- [sym_identifier] = ACTIONS(113),
- [anon_sym_export] = ACTIONS(115),
- [anon_sym_STAR] = ACTIONS(612),
- [anon_sym_type] = ACTIONS(115),
- [anon_sym_namespace] = ACTIONS(124),
- [anon_sym_LBRACE] = ACTIONS(126),
- [anon_sym_typeof] = ACTIONS(131),
- [anon_sym_import] = ACTIONS(133),
- [anon_sym_let] = ACTIONS(115),
- [anon_sym_const] = ACTIONS(135),
- [anon_sym_BANG] = ACTIONS(183),
- [anon_sym_LPAREN] = ACTIONS(140),
- [anon_sym_RPAREN] = ACTIONS(735),
- [anon_sym_await] = ACTIONS(142),
- [anon_sym_yield] = ACTIONS(144),
- [anon_sym_LBRACK] = ACTIONS(146),
- [sym_glimmer_opening_tag] = ACTIONS(148),
- [anon_sym_DQUOTE] = ACTIONS(150),
- [anon_sym_SQUOTE] = ACTIONS(152),
- [anon_sym_class] = ACTIONS(154),
- [anon_sym_async] = ACTIONS(156),
- [anon_sym_function] = ACTIONS(158),
- [anon_sym_new] = ACTIONS(164),
- [anon_sym_using] = ACTIONS(166),
- [anon_sym_DOT_DOT_DOT] = ACTIONS(170),
- [anon_sym_AMP] = ACTIONS(741),
- [anon_sym_PIPE] = ACTIONS(743),
- [anon_sym_PLUS] = ACTIONS(176),
- [anon_sym_DASH] = ACTIONS(176),
- [anon_sym_SLASH] = ACTIONS(646),
- [anon_sym_LT] = ACTIONS(181),
- [anon_sym_TILDE] = ACTIONS(183),
- [anon_sym_void] = ACTIONS(185),
- [anon_sym_delete] = ACTIONS(187),
- [anon_sym_PLUS_PLUS] = ACTIONS(719),
- [anon_sym_DASH_DASH] = ACTIONS(719),
- [sym_comment] = ACTIONS(5),
- [anon_sym_BQUOTE] = ACTIONS(192),
- [sym_number] = ACTIONS(194),
- [sym_private_property_identifier] = ACTIONS(196),
- [sym_this] = ACTIONS(829),
- [sym_super] = ACTIONS(200),
- [sym_true] = ACTIONS(202),
- [sym_false] = ACTIONS(202),
- [sym_null] = ACTIONS(202),
- [sym_undefined] = ACTIONS(204),
- [anon_sym_AT] = ACTIONS(757),
- [anon_sym_static] = ACTIONS(115),
- [anon_sym_readonly] = ACTIONS(831),
- [anon_sym_get] = ACTIONS(115),
- [anon_sym_set] = ACTIONS(115),
- [anon_sym_QMARK] = ACTIONS(761),
- [anon_sym_declare] = ACTIONS(115),
- [anon_sym_public] = ACTIONS(833),
- [anon_sym_private] = ACTIONS(833),
- [anon_sym_protected] = ACTIONS(833),
- [anon_sym_override] = ACTIONS(835),
- [anon_sym_module] = ACTIONS(115),
- [anon_sym_any] = ACTIONS(210),
- [anon_sym_number] = ACTIONS(210),
- [anon_sym_boolean] = ACTIONS(210),
- [anon_sym_string] = ACTIONS(210),
- [anon_sym_symbol] = ACTIONS(210),
- [anon_sym_object] = ACTIONS(210),
- [anon_sym_abstract] = ACTIONS(212),
- [anon_sym_infer] = ACTIONS(214),
- [anon_sym_keyof] = ACTIONS(216),
- [anon_sym_unique] = ACTIONS(218),
- [anon_sym_unknown] = ACTIONS(220),
- [anon_sym_never] = ACTIONS(220),
- [anon_sym_LBRACE_PIPE] = ACTIONS(222),
- [sym_html_comment] = ACTIONS(5),
- },
- [87] = {
- [sym_import] = STATE(3290),
- [sym_parenthesized_expression] = STATE(1179),
- [sym_expression] = STATE(2415),
- [sym_primary_expression] = STATE(1468),
- [sym_yield_expression] = STATE(1634),
- [sym_object] = STATE(1650),
- [sym_object_pattern] = STATE(3588),
- [sym_array] = STATE(1650),
- [sym_array_pattern] = STATE(3588),
- [sym_glimmer_template] = STATE(1634),
- [sym_jsx_element] = STATE(1634),
- [sym_jsx_opening_element] = STATE(3026),
- [sym_nested_identifier] = STATE(5707),
- [sym_jsx_self_closing_element] = STATE(1634),
- [sym_class] = STATE(1650),
- [sym_function_expression] = STATE(1650),
- [sym_generator_function] = STATE(1650),
- [sym_arrow_function] = STATE(1650),
- [sym__call_signature] = STATE(5619),
- [sym__formal_parameter] = STATE(4890),
- [sym_call_expression] = STATE(1650),
- [sym_new_expression] = STATE(1634),
- [sym_await_expression] = STATE(1634),
- [sym_member_expression] = STATE(1221),
- [sym_subscript_expression] = STATE(1221),
- [sym_assignment_expression] = STATE(1634),
- [sym__augmented_assignment_lhs] = STATE(2878),
- [sym_augmented_assignment_expression] = STATE(1634),
- [sym__destructuring_pattern] = STATE(3588),
- [sym_ternary_expression] = STATE(1634),
- [sym_binary_expression] = STATE(1634),
- [sym_unary_expression] = STATE(1634),
- [sym_update_expression] = STATE(1634),
- [sym_string] = STATE(2271),
- [sym_template_string] = STATE(1650),
- [sym_regex] = STATE(1650),
- [sym_meta_property] = STATE(1650),
- [sym_decorator] = STATE(1244),
- [sym_formal_parameters] = STATE(3952),
- [sym_pattern] = STATE(4262),
- [sym_rest_pattern] = STATE(3700),
- [sym_non_null_expression] = STATE(1221),
- [sym_as_expression] = STATE(1634),
- [sym_satisfies_expression] = STATE(1634),
- [sym_instantiation_expression] = STATE(1634),
- [sym_internal_module] = STATE(1634),
- [sym_nested_type_identifier] = STATE(2828),
- [sym_accessibility_modifier] = STATE(268),
- [sym_override_modifier] = STATE(296),
- [sym_required_parameter] = STATE(4890),
- [sym_optional_parameter] = STATE(4890),
- [sym__parameter_name] = STATE(3493),
- [sym__type_query_member_expression_in_type_annotation] = STATE(2846),
- [sym__type_query_call_expression_in_type_annotation] = STATE(2850),
- [sym_type] = STATE(4483),
- [sym_constructor_type] = STATE(2896),
- [sym_primary_type] = STATE(2897),
- [sym_template_literal_type] = STATE(2885),
- [sym_infer_type] = STATE(2896),
- [sym_conditional_type] = STATE(2885),
- [sym_generic_type] = STATE(2885),
- [sym_type_query] = STATE(2885),
- [sym_index_type_query] = STATE(2885),
- [sym_lookup_type] = STATE(2885),
- [sym_literal_type] = STATE(2885),
- [sym__number] = STATE(2903),
- [sym_existential_type] = STATE(2885),
- [sym_flow_maybe_type] = STATE(2885),
- [sym_parenthesized_type] = STATE(2885),
- [sym_predefined_type] = STATE(2885),
- [sym_object_type] = STATE(2885),
- [sym_type_parameters] = STATE(5276),
- [sym_array_type] = STATE(2885),
- [sym_tuple_type] = STATE(2885),
- [sym_readonly_type] = STATE(2896),
- [sym_union_type] = STATE(2885),
- [sym_intersection_type] = STATE(2885),
- [sym_function_type] = STATE(2896),
- [aux_sym_export_statement_repeat1] = STATE(253),
- [sym_identifier] = ACTIONS(113),
- [anon_sym_export] = ACTIONS(115),
- [anon_sym_STAR] = ACTIONS(612),
- [anon_sym_type] = ACTIONS(115),
- [anon_sym_namespace] = ACTIONS(124),
- [anon_sym_LBRACE] = ACTIONS(126),
- [anon_sym_typeof] = ACTIONS(131),
- [anon_sym_import] = ACTIONS(133),
- [anon_sym_let] = ACTIONS(115),
- [anon_sym_const] = ACTIONS(135),
- [anon_sym_BANG] = ACTIONS(183),
- [anon_sym_LPAREN] = ACTIONS(140),
- [anon_sym_RPAREN] = ACTIONS(735),
- [anon_sym_await] = ACTIONS(142),
- [anon_sym_yield] = ACTIONS(144),
- [anon_sym_LBRACK] = ACTIONS(146),
- [sym_glimmer_opening_tag] = ACTIONS(148),
- [anon_sym_DQUOTE] = ACTIONS(150),
- [anon_sym_SQUOTE] = ACTIONS(152),
- [anon_sym_class] = ACTIONS(154),
- [anon_sym_async] = ACTIONS(156),
- [anon_sym_function] = ACTIONS(158),
- [anon_sym_new] = ACTIONS(164),
- [anon_sym_using] = ACTIONS(166),
- [anon_sym_DOT_DOT_DOT] = ACTIONS(170),
- [anon_sym_AMP] = ACTIONS(741),
- [anon_sym_PIPE] = ACTIONS(743),
- [anon_sym_PLUS] = ACTIONS(176),
- [anon_sym_DASH] = ACTIONS(176),
- [anon_sym_SLASH] = ACTIONS(646),
- [anon_sym_LT] = ACTIONS(181),
- [anon_sym_TILDE] = ACTIONS(183),
- [anon_sym_void] = ACTIONS(185),
- [anon_sym_delete] = ACTIONS(187),
- [anon_sym_PLUS_PLUS] = ACTIONS(719),
- [anon_sym_DASH_DASH] = ACTIONS(719),
- [sym_comment] = ACTIONS(5),
- [anon_sym_BQUOTE] = ACTIONS(192),
- [sym_number] = ACTIONS(194),
- [sym_private_property_identifier] = ACTIONS(196),
- [sym_this] = ACTIONS(829),
- [sym_super] = ACTIONS(200),
- [sym_true] = ACTIONS(202),
- [sym_false] = ACTIONS(202),
- [sym_null] = ACTIONS(202),
- [sym_undefined] = ACTIONS(204),
- [anon_sym_AT] = ACTIONS(757),
- [anon_sym_static] = ACTIONS(115),
- [anon_sym_readonly] = ACTIONS(831),
- [anon_sym_get] = ACTIONS(115),
- [anon_sym_set] = ACTIONS(115),
- [anon_sym_QMARK] = ACTIONS(761),
- [anon_sym_declare] = ACTIONS(115),
- [anon_sym_public] = ACTIONS(833),
- [anon_sym_private] = ACTIONS(833),
- [anon_sym_protected] = ACTIONS(833),
- [anon_sym_override] = ACTIONS(835),
- [anon_sym_module] = ACTIONS(115),
- [anon_sym_any] = ACTIONS(210),
- [anon_sym_number] = ACTIONS(210),
- [anon_sym_boolean] = ACTIONS(210),
- [anon_sym_string] = ACTIONS(210),
- [anon_sym_symbol] = ACTIONS(210),
- [anon_sym_object] = ACTIONS(210),
- [anon_sym_abstract] = ACTIONS(212),
- [anon_sym_infer] = ACTIONS(214),
- [anon_sym_keyof] = ACTIONS(216),
- [anon_sym_unique] = ACTIONS(218),
- [anon_sym_unknown] = ACTIONS(220),
- [anon_sym_never] = ACTIONS(220),
- [anon_sym_LBRACE_PIPE] = ACTIONS(222),
- [sym_html_comment] = ACTIONS(5),
- },
- [88] = {
- [sym_import] = STATE(3290),
- [sym_parenthesized_expression] = STATE(1179),
- [sym_expression] = STATE(2415),
- [sym_primary_expression] = STATE(1468),
- [sym_yield_expression] = STATE(1634),
- [sym_object] = STATE(1650),
- [sym_object_pattern] = STATE(3588),
- [sym_array] = STATE(1650),
- [sym_array_pattern] = STATE(3588),
- [sym_glimmer_template] = STATE(1634),
- [sym_jsx_element] = STATE(1634),
- [sym_jsx_opening_element] = STATE(3026),
- [sym_nested_identifier] = STATE(5707),
- [sym_jsx_self_closing_element] = STATE(1634),
- [sym_class] = STATE(1650),
- [sym_function_expression] = STATE(1650),
- [sym_generator_function] = STATE(1650),
- [sym_arrow_function] = STATE(1650),
- [sym__call_signature] = STATE(5619),
- [sym__formal_parameter] = STATE(4890),
- [sym_call_expression] = STATE(1650),
- [sym_new_expression] = STATE(1634),
- [sym_await_expression] = STATE(1634),
- [sym_member_expression] = STATE(1221),
- [sym_subscript_expression] = STATE(1221),
- [sym_assignment_expression] = STATE(1634),
- [sym__augmented_assignment_lhs] = STATE(2878),
- [sym_augmented_assignment_expression] = STATE(1634),
- [sym__destructuring_pattern] = STATE(3588),
- [sym_ternary_expression] = STATE(1634),
- [sym_binary_expression] = STATE(1634),
- [sym_unary_expression] = STATE(1634),
- [sym_update_expression] = STATE(1634),
- [sym_string] = STATE(2271),
- [sym_template_string] = STATE(1650),
- [sym_regex] = STATE(1650),
- [sym_meta_property] = STATE(1650),
- [sym_decorator] = STATE(1244),
- [sym_formal_parameters] = STATE(3952),
- [sym_pattern] = STATE(4262),
- [sym_rest_pattern] = STATE(3700),
- [sym_non_null_expression] = STATE(1221),
- [sym_as_expression] = STATE(1634),
- [sym_satisfies_expression] = STATE(1634),
- [sym_instantiation_expression] = STATE(1634),
- [sym_internal_module] = STATE(1634),
- [sym_nested_type_identifier] = STATE(2828),
- [sym_accessibility_modifier] = STATE(268),
- [sym_override_modifier] = STATE(296),
- [sym_required_parameter] = STATE(4890),
- [sym_optional_parameter] = STATE(4890),
- [sym__parameter_name] = STATE(3493),
- [sym__type_query_member_expression_in_type_annotation] = STATE(2846),
- [sym__type_query_call_expression_in_type_annotation] = STATE(2850),
- [sym_type] = STATE(4525),
- [sym_constructor_type] = STATE(2896),
- [sym_primary_type] = STATE(2897),
- [sym_template_literal_type] = STATE(2885),
- [sym_infer_type] = STATE(2896),
- [sym_conditional_type] = STATE(2885),
- [sym_generic_type] = STATE(2885),
- [sym_type_query] = STATE(2885),
- [sym_index_type_query] = STATE(2885),
- [sym_lookup_type] = STATE(2885),
- [sym_literal_type] = STATE(2885),
- [sym__number] = STATE(2903),
- [sym_existential_type] = STATE(2885),
- [sym_flow_maybe_type] = STATE(2885),
- [sym_parenthesized_type] = STATE(2885),
- [sym_predefined_type] = STATE(2885),
- [sym_object_type] = STATE(2885),
- [sym_type_parameters] = STATE(5276),
- [sym_array_type] = STATE(2885),
- [sym_tuple_type] = STATE(2885),
- [sym_readonly_type] = STATE(2896),
- [sym_union_type] = STATE(2885),
- [sym_intersection_type] = STATE(2885),
- [sym_function_type] = STATE(2896),
- [aux_sym_export_statement_repeat1] = STATE(253),
- [sym_identifier] = ACTIONS(113),
- [anon_sym_export] = ACTIONS(115),
- [anon_sym_STAR] = ACTIONS(612),
- [anon_sym_type] = ACTIONS(115),
- [anon_sym_namespace] = ACTIONS(124),
- [anon_sym_LBRACE] = ACTIONS(126),
- [anon_sym_typeof] = ACTIONS(131),
- [anon_sym_import] = ACTIONS(133),
- [anon_sym_let] = ACTIONS(115),
- [anon_sym_const] = ACTIONS(135),
- [anon_sym_BANG] = ACTIONS(183),
- [anon_sym_LPAREN] = ACTIONS(140),
- [anon_sym_RPAREN] = ACTIONS(735),
- [anon_sym_await] = ACTIONS(142),
- [anon_sym_yield] = ACTIONS(144),
- [anon_sym_LBRACK] = ACTIONS(146),
- [sym_glimmer_opening_tag] = ACTIONS(148),
- [anon_sym_DQUOTE] = ACTIONS(150),
- [anon_sym_SQUOTE] = ACTIONS(152),
- [anon_sym_class] = ACTIONS(154),
- [anon_sym_async] = ACTIONS(156),
- [anon_sym_function] = ACTIONS(158),
- [anon_sym_new] = ACTIONS(164),
- [anon_sym_using] = ACTIONS(166),
- [anon_sym_DOT_DOT_DOT] = ACTIONS(170),
- [anon_sym_AMP] = ACTIONS(741),
- [anon_sym_PIPE] = ACTIONS(743),
- [anon_sym_PLUS] = ACTIONS(176),
- [anon_sym_DASH] = ACTIONS(176),
- [anon_sym_SLASH] = ACTIONS(646),
- [anon_sym_LT] = ACTIONS(181),
- [anon_sym_TILDE] = ACTIONS(183),
- [anon_sym_void] = ACTIONS(185),
- [anon_sym_delete] = ACTIONS(187),
- [anon_sym_PLUS_PLUS] = ACTIONS(719),
- [anon_sym_DASH_DASH] = ACTIONS(719),
- [sym_comment] = ACTIONS(5),
- [anon_sym_BQUOTE] = ACTIONS(192),
- [sym_number] = ACTIONS(194),
- [sym_private_property_identifier] = ACTIONS(196),
- [sym_this] = ACTIONS(829),
- [sym_super] = ACTIONS(200),
- [sym_true] = ACTIONS(202),
- [sym_false] = ACTIONS(202),
- [sym_null] = ACTIONS(202),
- [sym_undefined] = ACTIONS(204),
- [anon_sym_AT] = ACTIONS(757),
- [anon_sym_static] = ACTIONS(115),
- [anon_sym_readonly] = ACTIONS(831),
- [anon_sym_get] = ACTIONS(115),
- [anon_sym_set] = ACTIONS(115),
- [anon_sym_QMARK] = ACTIONS(761),
- [anon_sym_declare] = ACTIONS(115),
- [anon_sym_public] = ACTIONS(833),
- [anon_sym_private] = ACTIONS(833),
- [anon_sym_protected] = ACTIONS(833),
- [anon_sym_override] = ACTIONS(835),
- [anon_sym_module] = ACTIONS(115),
- [anon_sym_any] = ACTIONS(210),
- [anon_sym_number] = ACTIONS(210),
- [anon_sym_boolean] = ACTIONS(210),
- [anon_sym_string] = ACTIONS(210),
- [anon_sym_symbol] = ACTIONS(210),
- [anon_sym_object] = ACTIONS(210),
- [anon_sym_abstract] = ACTIONS(212),
- [anon_sym_infer] = ACTIONS(214),
- [anon_sym_keyof] = ACTIONS(216),
- [anon_sym_unique] = ACTIONS(218),
- [anon_sym_unknown] = ACTIONS(220),
- [anon_sym_never] = ACTIONS(220),
- [anon_sym_LBRACE_PIPE] = ACTIONS(222),
- [sym_html_comment] = ACTIONS(5),
- },
- [89] = {
- [sym_import] = STATE(3290),
- [sym_parenthesized_expression] = STATE(1179),
- [sym_expression] = STATE(2415),
- [sym_primary_expression] = STATE(1468),
- [sym_yield_expression] = STATE(1634),
- [sym_object] = STATE(1650),
- [sym_object_pattern] = STATE(3588),
- [sym_array] = STATE(1650),
- [sym_array_pattern] = STATE(3588),
- [sym_glimmer_template] = STATE(1634),
- [sym_jsx_element] = STATE(1634),
- [sym_jsx_opening_element] = STATE(3026),
- [sym_nested_identifier] = STATE(5707),
- [sym_jsx_self_closing_element] = STATE(1634),
- [sym_class] = STATE(1650),
- [sym_function_expression] = STATE(1650),
- [sym_generator_function] = STATE(1650),
- [sym_arrow_function] = STATE(1650),
- [sym__call_signature] = STATE(5619),
- [sym__formal_parameter] = STATE(4890),
- [sym_call_expression] = STATE(1650),
- [sym_new_expression] = STATE(1634),
- [sym_await_expression] = STATE(1634),
- [sym_member_expression] = STATE(1221),
- [sym_subscript_expression] = STATE(1221),
- [sym_assignment_expression] = STATE(1634),
- [sym__augmented_assignment_lhs] = STATE(2878),
- [sym_augmented_assignment_expression] = STATE(1634),
- [sym__destructuring_pattern] = STATE(3588),
- [sym_ternary_expression] = STATE(1634),
- [sym_binary_expression] = STATE(1634),
- [sym_unary_expression] = STATE(1634),
- [sym_update_expression] = STATE(1634),
- [sym_string] = STATE(2271),
- [sym_template_string] = STATE(1650),
- [sym_regex] = STATE(1650),
- [sym_meta_property] = STATE(1650),
- [sym_decorator] = STATE(1244),
- [sym_formal_parameters] = STATE(3952),
- [sym_pattern] = STATE(4262),
- [sym_rest_pattern] = STATE(3700),
- [sym_non_null_expression] = STATE(1221),
- [sym_as_expression] = STATE(1634),
- [sym_satisfies_expression] = STATE(1634),
- [sym_instantiation_expression] = STATE(1634),
- [sym_internal_module] = STATE(1634),
- [sym_nested_type_identifier] = STATE(2828),
- [sym_accessibility_modifier] = STATE(268),
- [sym_override_modifier] = STATE(296),
- [sym_required_parameter] = STATE(4890),
- [sym_optional_parameter] = STATE(4890),
- [sym__parameter_name] = STATE(3493),
- [sym__type_query_member_expression_in_type_annotation] = STATE(2846),
- [sym__type_query_call_expression_in_type_annotation] = STATE(2850),
- [sym_type] = STATE(4455),
- [sym_constructor_type] = STATE(2896),
- [sym_primary_type] = STATE(2897),
- [sym_template_literal_type] = STATE(2885),
- [sym_infer_type] = STATE(2896),
- [sym_conditional_type] = STATE(2885),
- [sym_generic_type] = STATE(2885),
- [sym_type_query] = STATE(2885),
- [sym_index_type_query] = STATE(2885),
- [sym_lookup_type] = STATE(2885),
- [sym_literal_type] = STATE(2885),
- [sym__number] = STATE(2903),
- [sym_existential_type] = STATE(2885),
- [sym_flow_maybe_type] = STATE(2885),
- [sym_parenthesized_type] = STATE(2885),
- [sym_predefined_type] = STATE(2885),
- [sym_object_type] = STATE(2885),
- [sym_type_parameters] = STATE(5276),
- [sym_array_type] = STATE(2885),
- [sym_tuple_type] = STATE(2885),
- [sym_readonly_type] = STATE(2896),
- [sym_union_type] = STATE(2885),
- [sym_intersection_type] = STATE(2885),
- [sym_function_type] = STATE(2896),
- [aux_sym_export_statement_repeat1] = STATE(253),
- [sym_identifier] = ACTIONS(113),
- [anon_sym_export] = ACTIONS(115),
- [anon_sym_STAR] = ACTIONS(612),
- [anon_sym_type] = ACTIONS(115),
- [anon_sym_namespace] = ACTIONS(124),
- [anon_sym_LBRACE] = ACTIONS(126),
- [anon_sym_typeof] = ACTIONS(131),
- [anon_sym_import] = ACTIONS(133),
- [anon_sym_let] = ACTIONS(115),
- [anon_sym_const] = ACTIONS(135),
- [anon_sym_BANG] = ACTIONS(183),
- [anon_sym_LPAREN] = ACTIONS(140),
- [anon_sym_RPAREN] = ACTIONS(735),
- [anon_sym_await] = ACTIONS(142),
- [anon_sym_yield] = ACTIONS(144),
- [anon_sym_LBRACK] = ACTIONS(146),
- [sym_glimmer_opening_tag] = ACTIONS(148),
- [anon_sym_DQUOTE] = ACTIONS(150),
- [anon_sym_SQUOTE] = ACTIONS(152),
- [anon_sym_class] = ACTIONS(154),
- [anon_sym_async] = ACTIONS(156),
- [anon_sym_function] = ACTIONS(158),
- [anon_sym_new] = ACTIONS(164),
- [anon_sym_using] = ACTIONS(166),
- [anon_sym_DOT_DOT_DOT] = ACTIONS(170),
- [anon_sym_AMP] = ACTIONS(741),
- [anon_sym_PIPE] = ACTIONS(743),
- [anon_sym_PLUS] = ACTIONS(176),
- [anon_sym_DASH] = ACTIONS(176),
- [anon_sym_SLASH] = ACTIONS(646),
- [anon_sym_LT] = ACTIONS(181),
- [anon_sym_TILDE] = ACTIONS(183),
- [anon_sym_void] = ACTIONS(185),
- [anon_sym_delete] = ACTIONS(187),
- [anon_sym_PLUS_PLUS] = ACTIONS(719),
- [anon_sym_DASH_DASH] = ACTIONS(719),
- [sym_comment] = ACTIONS(5),
- [anon_sym_BQUOTE] = ACTIONS(192),
- [sym_number] = ACTIONS(194),
- [sym_private_property_identifier] = ACTIONS(196),
- [sym_this] = ACTIONS(829),
- [sym_super] = ACTIONS(200),
- [sym_true] = ACTIONS(202),
- [sym_false] = ACTIONS(202),
- [sym_null] = ACTIONS(202),
- [sym_undefined] = ACTIONS(204),
- [anon_sym_AT] = ACTIONS(757),
- [anon_sym_static] = ACTIONS(115),
- [anon_sym_readonly] = ACTIONS(831),
- [anon_sym_get] = ACTIONS(115),
- [anon_sym_set] = ACTIONS(115),
- [anon_sym_QMARK] = ACTIONS(761),
- [anon_sym_declare] = ACTIONS(115),
- [anon_sym_public] = ACTIONS(833),
- [anon_sym_private] = ACTIONS(833),
- [anon_sym_protected] = ACTIONS(833),
- [anon_sym_override] = ACTIONS(835),
- [anon_sym_module] = ACTIONS(115),
- [anon_sym_any] = ACTIONS(210),
- [anon_sym_number] = ACTIONS(210),
- [anon_sym_boolean] = ACTIONS(210),
- [anon_sym_string] = ACTIONS(210),
- [anon_sym_symbol] = ACTIONS(210),
- [anon_sym_object] = ACTIONS(210),
- [anon_sym_abstract] = ACTIONS(212),
- [anon_sym_infer] = ACTIONS(214),
- [anon_sym_keyof] = ACTIONS(216),
- [anon_sym_unique] = ACTIONS(218),
- [anon_sym_unknown] = ACTIONS(220),
- [anon_sym_never] = ACTIONS(220),
- [anon_sym_LBRACE_PIPE] = ACTIONS(222),
- [sym_html_comment] = ACTIONS(5),
- },
- [90] = {
- [sym_import] = STATE(3334),
- [sym_parenthesized_expression] = STATE(1179),
- [sym_expression] = STATE(2415),
- [sym_primary_expression] = STATE(1430),
- [sym_yield_expression] = STATE(1634),
- [sym_object] = STATE(1650),
- [sym_object_pattern] = STATE(5854),
- [sym_array] = STATE(1650),
- [sym_array_pattern] = STATE(5854),
- [sym_glimmer_template] = STATE(1634),
- [sym_jsx_element] = STATE(1634),
- [sym_jsx_opening_element] = STATE(3026),
- [sym_jsx_self_closing_element] = STATE(1634),
- [sym_class] = STATE(1650),
- [sym_function_expression] = STATE(1650),
- [sym_generator_function] = STATE(1650),
- [sym_arrow_function] = STATE(1650),
- [sym__call_signature] = STATE(5619),
- [sym_call_expression] = STATE(1650),
- [sym_new_expression] = STATE(1634),
- [sym_await_expression] = STATE(1634),
- [sym_member_expression] = STATE(1179),
- [sym_subscript_expression] = STATE(1179),
- [sym_assignment_expression] = STATE(1634),
- [sym__augmented_assignment_lhs] = STATE(2878),
- [sym_augmented_assignment_expression] = STATE(1634),
- [sym__destructuring_pattern] = STATE(5854),
- [sym_ternary_expression] = STATE(1634),
- [sym_binary_expression] = STATE(1634),
- [sym_unary_expression] = STATE(1634),
- [sym_update_expression] = STATE(1634),
- [sym_string] = STATE(1650),
- [sym_template_string] = STATE(1650),
- [sym_regex] = STATE(1650),
- [sym_meta_property] = STATE(1650),
- [sym_decorator] = STATE(1244),
- [sym_formal_parameters] = STATE(3742),
- [sym_non_null_expression] = STATE(1179),
- [sym_as_expression] = STATE(1634),
- [sym_satisfies_expression] = STATE(1634),
- [sym_instantiation_expression] = STATE(1634),
- [sym_internal_module] = STATE(1634),
- [sym_type_parameters] = STATE(5349),
- [aux_sym_export_statement_repeat1] = STATE(4458),
- [sym_identifier] = ACTIONS(837),
- [anon_sym_export] = ACTIONS(839),
- [anon_sym_STAR] = ACTIONS(122),
- [anon_sym_type] = ACTIONS(839),
- [anon_sym_EQ] = ACTIONS(224),
- [anon_sym_as] = ACTIONS(122),
- [anon_sym_namespace] = ACTIONS(843),
- [anon_sym_LBRACE] = ACTIONS(845),
- [anon_sym_COMMA] = ACTIONS(227),
- [anon_sym_RBRACE] = ACTIONS(227),
- [anon_sym_typeof] = ACTIONS(187),
- [anon_sym_import] = ACTIONS(133),
- [anon_sym_let] = ACTIONS(839),
- [anon_sym_BANG] = ACTIONS(187),
- [anon_sym_LPAREN] = ACTIONS(815),
- [anon_sym_RPAREN] = ACTIONS(227),
- [anon_sym_await] = ACTIONS(142),
- [anon_sym_in] = ACTIONS(122),
- [anon_sym_COLON] = ACTIONS(227),
- [anon_sym_yield] = ACTIONS(144),
- [anon_sym_LBRACK] = ACTIONS(849),
- [anon_sym_RBRACK] = ACTIONS(227),
- [sym_glimmer_opening_tag] = ACTIONS(148),
- [anon_sym_GT] = ACTIONS(122),
- [anon_sym_DOT] = ACTIONS(819),
- [anon_sym_DQUOTE] = ACTIONS(150),
- [anon_sym_SQUOTE] = ACTIONS(152),
- [anon_sym_class] = ACTIONS(154),
- [anon_sym_async] = ACTIONS(851),
- [anon_sym_function] = ACTIONS(158),
- [anon_sym_EQ_GT] = ACTIONS(229),
- [anon_sym_QMARK_DOT] = ACTIONS(162),
- [anon_sym_new] = ACTIONS(853),
- [anon_sym_using] = ACTIONS(166),
- [anon_sym_PLUS_EQ] = ACTIONS(168),
- [anon_sym_DASH_EQ] = ACTIONS(168),
- [anon_sym_STAR_EQ] = ACTIONS(168),
- [anon_sym_SLASH_EQ] = ACTIONS(168),
- [anon_sym_PERCENT_EQ] = ACTIONS(168),
- [anon_sym_CARET_EQ] = ACTIONS(168),
- [anon_sym_AMP_EQ] = ACTIONS(168),
- [anon_sym_PIPE_EQ] = ACTIONS(168),
- [anon_sym_GT_GT_EQ] = ACTIONS(168),
- [anon_sym_GT_GT_GT_EQ] = ACTIONS(168),
- [anon_sym_LT_LT_EQ] = ACTIONS(168),
- [anon_sym_STAR_STAR_EQ] = ACTIONS(168),
- [anon_sym_AMP_AMP_EQ] = ACTIONS(168),
- [anon_sym_PIPE_PIPE_EQ] = ACTIONS(168),
- [anon_sym_QMARK_QMARK_EQ] = ACTIONS(168),
- [anon_sym_AMP_AMP] = ACTIONS(122),
- [anon_sym_PIPE_PIPE] = ACTIONS(122),
- [anon_sym_GT_GT] = ACTIONS(122),
- [anon_sym_GT_GT_GT] = ACTIONS(122),
- [anon_sym_LT_LT] = ACTIONS(122),
- [anon_sym_AMP] = ACTIONS(122),
- [anon_sym_CARET] = ACTIONS(122),
- [anon_sym_PIPE] = ACTIONS(122),
- [anon_sym_PLUS] = ACTIONS(187),
- [anon_sym_DASH] = ACTIONS(187),
- [anon_sym_SLASH] = ACTIONS(646),
- [anon_sym_PERCENT] = ACTIONS(122),
- [anon_sym_STAR_STAR] = ACTIONS(122),
- [anon_sym_LT] = ACTIONS(181),
- [anon_sym_LT_EQ] = ACTIONS(162),
- [anon_sym_EQ_EQ] = ACTIONS(122),
- [anon_sym_EQ_EQ_EQ] = ACTIONS(162),
- [anon_sym_BANG_EQ] = ACTIONS(122),
- [anon_sym_BANG_EQ_EQ] = ACTIONS(162),
- [anon_sym_GT_EQ] = ACTIONS(162),
- [anon_sym_QMARK_QMARK] = ACTIONS(122),
- [anon_sym_instanceof] = ACTIONS(122),
- [anon_sym_TILDE] = ACTIONS(183),
- [anon_sym_void] = ACTIONS(187),
- [anon_sym_delete] = ACTIONS(187),
- [anon_sym_PLUS_PLUS] = ACTIONS(719),
- [anon_sym_DASH_DASH] = ACTIONS(719),
- [sym_comment] = ACTIONS(5),
- [anon_sym_BQUOTE] = ACTIONS(825),
- [sym_number] = ACTIONS(787),
- [sym_private_property_identifier] = ACTIONS(196),
- [sym_this] = ACTIONS(200),
- [sym_super] = ACTIONS(200),
- [sym_true] = ACTIONS(200),
- [sym_false] = ACTIONS(200),
- [sym_null] = ACTIONS(200),
- [sym_undefined] = ACTIONS(827),
- [anon_sym_AT] = ACTIONS(99),
- [anon_sym_static] = ACTIONS(839),
- [anon_sym_readonly] = ACTIONS(839),
- [anon_sym_get] = ACTIONS(839),
- [anon_sym_set] = ACTIONS(839),
- [anon_sym_QMARK] = ACTIONS(793),
- [anon_sym_declare] = ACTIONS(839),
- [anon_sym_public] = ACTIONS(839),
- [anon_sym_private] = ACTIONS(839),
- [anon_sym_protected] = ACTIONS(839),
- [anon_sym_override] = ACTIONS(839),
- [anon_sym_module] = ACTIONS(839),
- [anon_sym_any] = ACTIONS(839),
- [anon_sym_number] = ACTIONS(839),
- [anon_sym_boolean] = ACTIONS(839),
- [anon_sym_string] = ACTIONS(839),
- [anon_sym_symbol] = ACTIONS(839),
- [anon_sym_object] = ACTIONS(839),
- [anon_sym_satisfies] = ACTIONS(122),
- [sym__ternary_qmark] = ACTIONS(162),
- [sym_html_comment] = ACTIONS(5),
- },
- [91] = {
- [sym_import] = STATE(3334),
- [sym_parenthesized_expression] = STATE(1179),
- [sym_expression] = STATE(2415),
- [sym_primary_expression] = STATE(1430),
- [sym_yield_expression] = STATE(1634),
- [sym_object] = STATE(1650),
- [sym_object_pattern] = STATE(5854),
- [sym_array] = STATE(1650),
- [sym_array_pattern] = STATE(5854),
- [sym_glimmer_template] = STATE(1634),
- [sym_jsx_element] = STATE(1634),
- [sym_jsx_opening_element] = STATE(3026),
- [sym_jsx_self_closing_element] = STATE(1634),
- [sym_class] = STATE(1650),
- [sym_function_expression] = STATE(1650),
- [sym_generator_function] = STATE(1650),
- [sym_arrow_function] = STATE(1650),
- [sym__call_signature] = STATE(5619),
- [sym_call_expression] = STATE(1650),
- [sym_new_expression] = STATE(1634),
- [sym_await_expression] = STATE(1634),
- [sym_member_expression] = STATE(1179),
- [sym_subscript_expression] = STATE(1179),
- [sym_assignment_expression] = STATE(1634),
- [sym__augmented_assignment_lhs] = STATE(2878),
- [sym_augmented_assignment_expression] = STATE(1634),
- [sym__destructuring_pattern] = STATE(5854),
- [sym_ternary_expression] = STATE(1634),
- [sym_binary_expression] = STATE(1634),
- [sym_unary_expression] = STATE(1634),
- [sym_update_expression] = STATE(1634),
- [sym_string] = STATE(1650),
- [sym_template_string] = STATE(1650),
- [sym_regex] = STATE(1650),
- [sym_meta_property] = STATE(1650),
- [sym_decorator] = STATE(1244),
- [sym_formal_parameters] = STATE(3742),
- [sym_non_null_expression] = STATE(1179),
- [sym_as_expression] = STATE(1634),
- [sym_satisfies_expression] = STATE(1634),
- [sym_instantiation_expression] = STATE(1634),
- [sym_internal_module] = STATE(1634),
- [sym_type_parameters] = STATE(5349),
- [aux_sym_export_statement_repeat1] = STATE(4458),
- [sym_identifier] = ACTIONS(837),
- [anon_sym_export] = ACTIONS(839),
- [anon_sym_STAR] = ACTIONS(122),
- [anon_sym_type] = ACTIONS(839),
- [anon_sym_EQ] = ACTIONS(841),
- [anon_sym_as] = ACTIONS(122),
- [anon_sym_namespace] = ACTIONS(843),
- [anon_sym_LBRACE] = ACTIONS(845),
- [anon_sym_COMMA] = ACTIONS(162),
- [anon_sym_RBRACE] = ACTIONS(162),
- [anon_sym_typeof] = ACTIONS(187),
- [anon_sym_import] = ACTIONS(133),
- [anon_sym_let] = ACTIONS(839),
- [anon_sym_BANG] = ACTIONS(187),
- [anon_sym_LPAREN] = ACTIONS(815),
- [anon_sym_RPAREN] = ACTIONS(162),
- [anon_sym_await] = ACTIONS(142),
- [anon_sym_in] = ACTIONS(122),
- [anon_sym_COLON] = ACTIONS(162),
- [anon_sym_yield] = ACTIONS(144),
- [anon_sym_LBRACK] = ACTIONS(849),
- [anon_sym_RBRACK] = ACTIONS(162),
- [sym_glimmer_opening_tag] = ACTIONS(148),
- [anon_sym_GT] = ACTIONS(122),
- [anon_sym_DOT] = ACTIONS(819),
- [anon_sym_DQUOTE] = ACTIONS(150),
- [anon_sym_SQUOTE] = ACTIONS(152),
- [anon_sym_class] = ACTIONS(154),
- [anon_sym_async] = ACTIONS(851),
- [anon_sym_function] = ACTIONS(158),
- [anon_sym_EQ_GT] = ACTIONS(160),
- [anon_sym_QMARK_DOT] = ACTIONS(162),
- [anon_sym_new] = ACTIONS(853),
- [anon_sym_using] = ACTIONS(166),
- [anon_sym_PLUS_EQ] = ACTIONS(168),
- [anon_sym_DASH_EQ] = ACTIONS(168),
- [anon_sym_STAR_EQ] = ACTIONS(168),
- [anon_sym_SLASH_EQ] = ACTIONS(168),
- [anon_sym_PERCENT_EQ] = ACTIONS(168),
- [anon_sym_CARET_EQ] = ACTIONS(168),
- [anon_sym_AMP_EQ] = ACTIONS(168),
- [anon_sym_PIPE_EQ] = ACTIONS(168),
- [anon_sym_GT_GT_EQ] = ACTIONS(168),
- [anon_sym_GT_GT_GT_EQ] = ACTIONS(168),
- [anon_sym_LT_LT_EQ] = ACTIONS(168),
- [anon_sym_STAR_STAR_EQ] = ACTIONS(168),
- [anon_sym_AMP_AMP_EQ] = ACTIONS(168),
- [anon_sym_PIPE_PIPE_EQ] = ACTIONS(168),
- [anon_sym_QMARK_QMARK_EQ] = ACTIONS(168),
- [anon_sym_AMP_AMP] = ACTIONS(122),
- [anon_sym_PIPE_PIPE] = ACTIONS(122),
- [anon_sym_GT_GT] = ACTIONS(122),
- [anon_sym_GT_GT_GT] = ACTIONS(122),
- [anon_sym_LT_LT] = ACTIONS(122),
- [anon_sym_AMP] = ACTIONS(122),
- [anon_sym_CARET] = ACTIONS(122),
- [anon_sym_PIPE] = ACTIONS(122),
- [anon_sym_PLUS] = ACTIONS(187),
- [anon_sym_DASH] = ACTIONS(187),
- [anon_sym_SLASH] = ACTIONS(646),
- [anon_sym_PERCENT] = ACTIONS(122),
- [anon_sym_STAR_STAR] = ACTIONS(122),
- [anon_sym_LT] = ACTIONS(181),
- [anon_sym_LT_EQ] = ACTIONS(162),
- [anon_sym_EQ_EQ] = ACTIONS(122),
- [anon_sym_EQ_EQ_EQ] = ACTIONS(162),
- [anon_sym_BANG_EQ] = ACTIONS(122),
- [anon_sym_BANG_EQ_EQ] = ACTIONS(162),
- [anon_sym_GT_EQ] = ACTIONS(162),
- [anon_sym_QMARK_QMARK] = ACTIONS(122),
- [anon_sym_instanceof] = ACTIONS(122),
- [anon_sym_TILDE] = ACTIONS(183),
- [anon_sym_void] = ACTIONS(187),
- [anon_sym_delete] = ACTIONS(187),
- [anon_sym_PLUS_PLUS] = ACTIONS(719),
- [anon_sym_DASH_DASH] = ACTIONS(719),
- [sym_comment] = ACTIONS(5),
- [anon_sym_BQUOTE] = ACTIONS(825),
- [sym_number] = ACTIONS(787),
- [sym_private_property_identifier] = ACTIONS(196),
- [sym_this] = ACTIONS(200),
- [sym_super] = ACTIONS(200),
- [sym_true] = ACTIONS(200),
- [sym_false] = ACTIONS(200),
- [sym_null] = ACTIONS(200),
- [sym_undefined] = ACTIONS(827),
- [anon_sym_AT] = ACTIONS(99),
- [anon_sym_static] = ACTIONS(839),
- [anon_sym_readonly] = ACTIONS(839),
- [anon_sym_get] = ACTIONS(839),
- [anon_sym_set] = ACTIONS(839),
- [anon_sym_declare] = ACTIONS(839),
- [anon_sym_public] = ACTIONS(839),
- [anon_sym_private] = ACTIONS(839),
- [anon_sym_protected] = ACTIONS(839),
- [anon_sym_override] = ACTIONS(839),
- [anon_sym_module] = ACTIONS(839),
- [anon_sym_any] = ACTIONS(839),
- [anon_sym_number] = ACTIONS(839),
- [anon_sym_boolean] = ACTIONS(839),
- [anon_sym_string] = ACTIONS(839),
- [anon_sym_symbol] = ACTIONS(839),
- [anon_sym_object] = ACTIONS(839),
- [anon_sym_satisfies] = ACTIONS(122),
- [sym__ternary_qmark] = ACTIONS(162),
- [sym_html_comment] = ACTIONS(5),
- },
- [92] = {
- [sym_import] = STATE(3334),
- [sym_parenthesized_expression] = STATE(1179),
- [sym_expression] = STATE(2415),
- [sym_primary_expression] = STATE(1430),
- [sym_yield_expression] = STATE(1634),
- [sym_object] = STATE(1650),
- [sym_object_pattern] = STATE(5854),
- [sym_array] = STATE(1650),
- [sym_array_pattern] = STATE(5854),
- [sym_glimmer_template] = STATE(1634),
- [sym_jsx_element] = STATE(1634),
- [sym_jsx_opening_element] = STATE(3026),
- [sym_jsx_self_closing_element] = STATE(1634),
- [sym_class] = STATE(1650),
- [sym_function_expression] = STATE(1650),
- [sym_generator_function] = STATE(1650),
- [sym_arrow_function] = STATE(1650),
- [sym__call_signature] = STATE(5828),
- [sym_call_expression] = STATE(1650),
- [sym_new_expression] = STATE(1634),
- [sym_await_expression] = STATE(1634),
- [sym_member_expression] = STATE(1179),
- [sym_subscript_expression] = STATE(1179),
- [sym_assignment_expression] = STATE(1634),
- [sym__augmented_assignment_lhs] = STATE(2878),
- [sym_augmented_assignment_expression] = STATE(1634),
- [sym__destructuring_pattern] = STATE(5854),
- [sym_ternary_expression] = STATE(1634),
- [sym_binary_expression] = STATE(1634),
- [sym_unary_expression] = STATE(1634),
- [sym_update_expression] = STATE(1634),
- [sym_string] = STATE(1650),
- [sym_template_string] = STATE(1650),
- [sym_regex] = STATE(1650),
- [sym_meta_property] = STATE(1650),
- [sym_decorator] = STATE(1244),
- [sym_formal_parameters] = STATE(3915),
- [sym_non_null_expression] = STATE(1179),
- [sym_as_expression] = STATE(1634),
- [sym_satisfies_expression] = STATE(1634),
- [sym_instantiation_expression] = STATE(1634),
- [sym_internal_module] = STATE(1634),
- [sym_type_parameters] = STATE(5206),
- [aux_sym_export_statement_repeat1] = STATE(4458),
- [sym_identifier] = ACTIONS(807),
- [anon_sym_export] = ACTIONS(809),
- [anon_sym_STAR] = ACTIONS(122),
- [anon_sym_type] = ACTIONS(809),
- [anon_sym_EQ] = ACTIONS(857),
- [anon_sym_as] = ACTIONS(122),
- [anon_sym_namespace] = ACTIONS(811),
- [anon_sym_LBRACE] = ACTIONS(813),
- [anon_sym_COMMA] = ACTIONS(162),
- [anon_sym_RBRACE] = ACTIONS(162),
- [anon_sym_typeof] = ACTIONS(187),
- [anon_sym_import] = ACTIONS(133),
- [anon_sym_let] = ACTIONS(809),
- [anon_sym_BANG] = ACTIONS(187),
- [anon_sym_LPAREN] = ACTIONS(815),
- [anon_sym_RPAREN] = ACTIONS(162),
- [anon_sym_await] = ACTIONS(142),
- [anon_sym_in] = ACTIONS(122),
- [anon_sym_COLON] = ACTIONS(162),
- [anon_sym_yield] = ACTIONS(144),
- [anon_sym_LBRACK] = ACTIONS(817),
- [anon_sym_RBRACK] = ACTIONS(162),
- [sym_glimmer_opening_tag] = ACTIONS(148),
- [anon_sym_GT] = ACTIONS(122),
- [anon_sym_DOT] = ACTIONS(819),
- [anon_sym_DQUOTE] = ACTIONS(150),
- [anon_sym_SQUOTE] = ACTIONS(152),
- [anon_sym_class] = ACTIONS(154),
- [anon_sym_async] = ACTIONS(821),
- [anon_sym_function] = ACTIONS(158),
- [anon_sym_EQ_GT] = ACTIONS(160),
- [anon_sym_QMARK_DOT] = ACTIONS(162),
- [anon_sym_new] = ACTIONS(823),
- [anon_sym_using] = ACTIONS(166),
- [anon_sym_PLUS_EQ] = ACTIONS(168),
- [anon_sym_DASH_EQ] = ACTIONS(168),
- [anon_sym_STAR_EQ] = ACTIONS(168),
- [anon_sym_SLASH_EQ] = ACTIONS(168),
- [anon_sym_PERCENT_EQ] = ACTIONS(168),
- [anon_sym_CARET_EQ] = ACTIONS(168),
- [anon_sym_AMP_EQ] = ACTIONS(168),
- [anon_sym_PIPE_EQ] = ACTIONS(168),
- [anon_sym_GT_GT_EQ] = ACTIONS(168),
- [anon_sym_GT_GT_GT_EQ] = ACTIONS(168),
- [anon_sym_LT_LT_EQ] = ACTIONS(168),
- [anon_sym_STAR_STAR_EQ] = ACTIONS(168),
- [anon_sym_AMP_AMP_EQ] = ACTIONS(168),
- [anon_sym_PIPE_PIPE_EQ] = ACTIONS(168),
- [anon_sym_QMARK_QMARK_EQ] = ACTIONS(168),
- [anon_sym_AMP_AMP] = ACTIONS(122),
- [anon_sym_PIPE_PIPE] = ACTIONS(122),
- [anon_sym_GT_GT] = ACTIONS(122),
- [anon_sym_GT_GT_GT] = ACTIONS(122),
- [anon_sym_LT_LT] = ACTIONS(122),
- [anon_sym_AMP] = ACTIONS(122),
- [anon_sym_CARET] = ACTIONS(122),
- [anon_sym_PIPE] = ACTIONS(122),
- [anon_sym_PLUS] = ACTIONS(187),
- [anon_sym_DASH] = ACTIONS(187),
- [anon_sym_SLASH] = ACTIONS(646),
- [anon_sym_PERCENT] = ACTIONS(122),
- [anon_sym_STAR_STAR] = ACTIONS(122),
- [anon_sym_LT] = ACTIONS(181),
- [anon_sym_LT_EQ] = ACTIONS(162),
- [anon_sym_EQ_EQ] = ACTIONS(122),
- [anon_sym_EQ_EQ_EQ] = ACTIONS(162),
- [anon_sym_BANG_EQ] = ACTIONS(122),
- [anon_sym_BANG_EQ_EQ] = ACTIONS(162),
- [anon_sym_GT_EQ] = ACTIONS(162),
- [anon_sym_QMARK_QMARK] = ACTIONS(122),
- [anon_sym_instanceof] = ACTIONS(122),
- [anon_sym_TILDE] = ACTIONS(183),
- [anon_sym_void] = ACTIONS(187),
- [anon_sym_delete] = ACTIONS(187),
- [anon_sym_PLUS_PLUS] = ACTIONS(719),
- [anon_sym_DASH_DASH] = ACTIONS(719),
- [sym_comment] = ACTIONS(5),
- [anon_sym_BQUOTE] = ACTIONS(825),
- [sym_number] = ACTIONS(787),
- [sym_private_property_identifier] = ACTIONS(196),
- [sym_this] = ACTIONS(200),
- [sym_super] = ACTIONS(200),
- [sym_true] = ACTIONS(200),
- [sym_false] = ACTIONS(200),
- [sym_null] = ACTIONS(200),
- [sym_undefined] = ACTIONS(827),
- [anon_sym_AT] = ACTIONS(99),
- [anon_sym_static] = ACTIONS(809),
- [anon_sym_readonly] = ACTIONS(809),
- [anon_sym_get] = ACTIONS(809),
- [anon_sym_set] = ACTIONS(809),
- [anon_sym_declare] = ACTIONS(809),
- [anon_sym_public] = ACTIONS(809),
- [anon_sym_private] = ACTIONS(809),
- [anon_sym_protected] = ACTIONS(809),
- [anon_sym_override] = ACTIONS(809),
- [anon_sym_module] = ACTIONS(809),
- [anon_sym_any] = ACTIONS(809),
- [anon_sym_number] = ACTIONS(809),
- [anon_sym_boolean] = ACTIONS(809),
- [anon_sym_string] = ACTIONS(809),
- [anon_sym_symbol] = ACTIONS(809),
- [anon_sym_object] = ACTIONS(809),
- [anon_sym_satisfies] = ACTIONS(122),
- [sym__ternary_qmark] = ACTIONS(162),
- [sym_html_comment] = ACTIONS(5),
- },
- [93] = {
- [sym_import] = STATE(3334),
- [sym_parenthesized_expression] = STATE(1179),
- [sym_expression] = STATE(2415),
- [sym_primary_expression] = STATE(1430),
- [sym_yield_expression] = STATE(1634),
- [sym_object] = STATE(1650),
- [sym_object_pattern] = STATE(5854),
- [sym_array] = STATE(1650),
- [sym_array_pattern] = STATE(5854),
- [sym_glimmer_template] = STATE(1634),
- [sym_jsx_element] = STATE(1634),
- [sym_jsx_opening_element] = STATE(3026),
- [sym_jsx_self_closing_element] = STATE(1634),
- [sym_class] = STATE(1650),
- [sym_function_expression] = STATE(1650),
- [sym_generator_function] = STATE(1650),
- [sym_arrow_function] = STATE(1650),
- [sym__call_signature] = STATE(5828),
- [sym_call_expression] = STATE(1650),
- [sym_new_expression] = STATE(1634),
- [sym_await_expression] = STATE(1634),
- [sym_member_expression] = STATE(1179),
- [sym_subscript_expression] = STATE(1179),
- [sym_assignment_expression] = STATE(1634),
- [sym__augmented_assignment_lhs] = STATE(2878),
- [sym_augmented_assignment_expression] = STATE(1634),
- [sym__destructuring_pattern] = STATE(5854),
- [sym_ternary_expression] = STATE(1634),
- [sym_binary_expression] = STATE(1634),
- [sym_unary_expression] = STATE(1634),
- [sym_update_expression] = STATE(1634),
- [sym_string] = STATE(1650),
- [sym_template_string] = STATE(1650),
- [sym_regex] = STATE(1650),
- [sym_meta_property] = STATE(1650),
- [sym_decorator] = STATE(1244),
- [sym_formal_parameters] = STATE(3742),
- [sym_non_null_expression] = STATE(1179),
- [sym_as_expression] = STATE(1634),
- [sym_satisfies_expression] = STATE(1634),
- [sym_instantiation_expression] = STATE(1634),
- [sym_internal_module] = STATE(1634),
- [sym_type_parameters] = STATE(5349),
- [aux_sym_export_statement_repeat1] = STATE(4458),
- [sym_identifier] = ACTIONS(807),
- [anon_sym_export] = ACTIONS(809),
- [anon_sym_STAR] = ACTIONS(122),
- [anon_sym_type] = ACTIONS(809),
- [anon_sym_EQ] = ACTIONS(857),
- [anon_sym_as] = ACTIONS(122),
- [anon_sym_namespace] = ACTIONS(811),
- [anon_sym_LBRACE] = ACTIONS(813),
- [anon_sym_COMMA] = ACTIONS(162),
- [anon_sym_RBRACE] = ACTIONS(162),
- [anon_sym_typeof] = ACTIONS(187),
- [anon_sym_import] = ACTIONS(133),
- [anon_sym_let] = ACTIONS(809),
- [anon_sym_BANG] = ACTIONS(187),
- [anon_sym_LPAREN] = ACTIONS(815),
- [anon_sym_RPAREN] = ACTIONS(162),
- [anon_sym_await] = ACTIONS(142),
- [anon_sym_in] = ACTIONS(122),
- [anon_sym_COLON] = ACTIONS(162),
- [anon_sym_yield] = ACTIONS(144),
- [anon_sym_LBRACK] = ACTIONS(817),
- [anon_sym_RBRACK] = ACTIONS(162),
- [sym_glimmer_opening_tag] = ACTIONS(148),
- [anon_sym_GT] = ACTIONS(122),
- [anon_sym_DOT] = ACTIONS(819),
- [anon_sym_DQUOTE] = ACTIONS(150),
- [anon_sym_SQUOTE] = ACTIONS(152),
- [anon_sym_class] = ACTIONS(154),
- [anon_sym_async] = ACTIONS(821),
- [anon_sym_function] = ACTIONS(158),
- [anon_sym_EQ_GT] = ACTIONS(160),
- [anon_sym_QMARK_DOT] = ACTIONS(162),
- [anon_sym_new] = ACTIONS(823),
- [anon_sym_using] = ACTIONS(166),
- [anon_sym_PLUS_EQ] = ACTIONS(168),
- [anon_sym_DASH_EQ] = ACTIONS(168),
- [anon_sym_STAR_EQ] = ACTIONS(168),
- [anon_sym_SLASH_EQ] = ACTIONS(168),
- [anon_sym_PERCENT_EQ] = ACTIONS(168),
- [anon_sym_CARET_EQ] = ACTIONS(168),
- [anon_sym_AMP_EQ] = ACTIONS(168),
- [anon_sym_PIPE_EQ] = ACTIONS(168),
- [anon_sym_GT_GT_EQ] = ACTIONS(168),
- [anon_sym_GT_GT_GT_EQ] = ACTIONS(168),
- [anon_sym_LT_LT_EQ] = ACTIONS(168),
- [anon_sym_STAR_STAR_EQ] = ACTIONS(168),
- [anon_sym_AMP_AMP_EQ] = ACTIONS(168),
- [anon_sym_PIPE_PIPE_EQ] = ACTIONS(168),
- [anon_sym_QMARK_QMARK_EQ] = ACTIONS(168),
- [anon_sym_AMP_AMP] = ACTIONS(122),
- [anon_sym_PIPE_PIPE] = ACTIONS(122),
- [anon_sym_GT_GT] = ACTIONS(122),
- [anon_sym_GT_GT_GT] = ACTIONS(122),
- [anon_sym_LT_LT] = ACTIONS(122),
- [anon_sym_AMP] = ACTIONS(122),
- [anon_sym_CARET] = ACTIONS(122),
- [anon_sym_PIPE] = ACTIONS(122),
- [anon_sym_PLUS] = ACTIONS(187),
- [anon_sym_DASH] = ACTIONS(187),
- [anon_sym_SLASH] = ACTIONS(646),
- [anon_sym_PERCENT] = ACTIONS(122),
- [anon_sym_STAR_STAR] = ACTIONS(122),
- [anon_sym_LT] = ACTIONS(181),
- [anon_sym_LT_EQ] = ACTIONS(162),
- [anon_sym_EQ_EQ] = ACTIONS(122),
- [anon_sym_EQ_EQ_EQ] = ACTIONS(162),
- [anon_sym_BANG_EQ] = ACTIONS(122),
- [anon_sym_BANG_EQ_EQ] = ACTIONS(162),
- [anon_sym_GT_EQ] = ACTIONS(162),
- [anon_sym_QMARK_QMARK] = ACTIONS(122),
- [anon_sym_instanceof] = ACTIONS(122),
- [anon_sym_TILDE] = ACTIONS(183),
- [anon_sym_void] = ACTIONS(187),
- [anon_sym_delete] = ACTIONS(187),
- [anon_sym_PLUS_PLUS] = ACTIONS(719),
- [anon_sym_DASH_DASH] = ACTIONS(719),
- [sym_comment] = ACTIONS(5),
- [anon_sym_BQUOTE] = ACTIONS(825),
- [sym_number] = ACTIONS(787),
- [sym_private_property_identifier] = ACTIONS(196),
- [sym_this] = ACTIONS(200),
- [sym_super] = ACTIONS(200),
- [sym_true] = ACTIONS(200),
- [sym_false] = ACTIONS(200),
- [sym_null] = ACTIONS(200),
- [sym_undefined] = ACTIONS(827),
- [anon_sym_AT] = ACTIONS(99),
- [anon_sym_static] = ACTIONS(809),
- [anon_sym_readonly] = ACTIONS(809),
- [anon_sym_get] = ACTIONS(809),
- [anon_sym_set] = ACTIONS(809),
- [anon_sym_declare] = ACTIONS(809),
- [anon_sym_public] = ACTIONS(809),
- [anon_sym_private] = ACTIONS(809),
- [anon_sym_protected] = ACTIONS(809),
- [anon_sym_override] = ACTIONS(809),
- [anon_sym_module] = ACTIONS(809),
- [anon_sym_any] = ACTIONS(809),
- [anon_sym_number] = ACTIONS(809),
- [anon_sym_boolean] = ACTIONS(809),
- [anon_sym_string] = ACTIONS(809),
- [anon_sym_symbol] = ACTIONS(809),
- [anon_sym_object] = ACTIONS(809),
- [anon_sym_satisfies] = ACTIONS(122),
- [sym__ternary_qmark] = ACTIONS(162),
- [sym_html_comment] = ACTIONS(5),
- },
- [94] = {
- [sym_import] = STATE(3334),
- [sym_parenthesized_expression] = STATE(1179),
- [sym_expression] = STATE(2415),
- [sym_primary_expression] = STATE(1430),
- [sym_yield_expression] = STATE(1634),
- [sym_object] = STATE(1650),
- [sym_object_pattern] = STATE(5854),
- [sym_array] = STATE(1650),
- [sym_array_pattern] = STATE(5854),
- [sym_glimmer_template] = STATE(1634),
- [sym_jsx_element] = STATE(1634),
- [sym_jsx_opening_element] = STATE(3026),
- [sym_jsx_self_closing_element] = STATE(1634),
- [sym_class] = STATE(1650),
- [sym_function_expression] = STATE(1650),
- [sym_generator_function] = STATE(1650),
- [sym_arrow_function] = STATE(1650),
- [sym__call_signature] = STATE(5619),
- [sym_call_expression] = STATE(1650),
- [sym_new_expression] = STATE(1634),
- [sym_await_expression] = STATE(1634),
- [sym_member_expression] = STATE(1179),
- [sym_subscript_expression] = STATE(1179),
- [sym_assignment_expression] = STATE(1634),
- [sym__augmented_assignment_lhs] = STATE(2878),
- [sym_augmented_assignment_expression] = STATE(1634),
- [sym__destructuring_pattern] = STATE(5854),
- [sym_ternary_expression] = STATE(1634),
- [sym_binary_expression] = STATE(1634),
- [sym_unary_expression] = STATE(1634),
- [sym_update_expression] = STATE(1634),
- [sym_string] = STATE(1650),
- [sym_template_string] = STATE(1650),
- [sym_regex] = STATE(1650),
- [sym_meta_property] = STATE(1650),
- [sym_decorator] = STATE(1244),
- [sym_formal_parameters] = STATE(3915),
- [sym_non_null_expression] = STATE(1179),
- [sym_as_expression] = STATE(1634),
- [sym_satisfies_expression] = STATE(1634),
- [sym_instantiation_expression] = STATE(1634),
- [sym_internal_module] = STATE(1634),
- [sym_type_parameters] = STATE(5206),
- [aux_sym_export_statement_repeat1] = STATE(4458),
- [sym_identifier] = ACTIONS(837),
- [anon_sym_export] = ACTIONS(839),
- [anon_sym_STAR] = ACTIONS(122),
- [anon_sym_type] = ACTIONS(839),
- [anon_sym_EQ] = ACTIONS(224),
- [anon_sym_as] = ACTIONS(122),
- [anon_sym_namespace] = ACTIONS(843),
- [anon_sym_LBRACE] = ACTIONS(845),
- [anon_sym_COMMA] = ACTIONS(227),
- [anon_sym_typeof] = ACTIONS(187),
- [anon_sym_import] = ACTIONS(133),
- [anon_sym_let] = ACTIONS(839),
- [anon_sym_BANG] = ACTIONS(187),
- [anon_sym_LPAREN] = ACTIONS(815),
- [anon_sym_RPAREN] = ACTIONS(227),
- [anon_sym_await] = ACTIONS(142),
- [anon_sym_in] = ACTIONS(122),
- [anon_sym_COLON] = ACTIONS(227),
- [anon_sym_yield] = ACTIONS(144),
- [anon_sym_LBRACK] = ACTIONS(849),
- [sym_glimmer_opening_tag] = ACTIONS(148),
- [anon_sym_GT] = ACTIONS(122),
- [anon_sym_DOT] = ACTIONS(819),
- [anon_sym_DQUOTE] = ACTIONS(150),
- [anon_sym_SQUOTE] = ACTIONS(152),
- [anon_sym_class] = ACTIONS(154),
- [anon_sym_async] = ACTIONS(851),
- [anon_sym_function] = ACTIONS(158),
- [anon_sym_EQ_GT] = ACTIONS(229),
- [anon_sym_QMARK_DOT] = ACTIONS(162),
- [anon_sym_new] = ACTIONS(853),
- [anon_sym_using] = ACTIONS(166),
- [anon_sym_PLUS_EQ] = ACTIONS(168),
- [anon_sym_DASH_EQ] = ACTIONS(168),
- [anon_sym_STAR_EQ] = ACTIONS(168),
- [anon_sym_SLASH_EQ] = ACTIONS(168),
- [anon_sym_PERCENT_EQ] = ACTIONS(168),
- [anon_sym_CARET_EQ] = ACTIONS(168),
- [anon_sym_AMP_EQ] = ACTIONS(168),
- [anon_sym_PIPE_EQ] = ACTIONS(168),
- [anon_sym_GT_GT_EQ] = ACTIONS(168),
- [anon_sym_GT_GT_GT_EQ] = ACTIONS(168),
- [anon_sym_LT_LT_EQ] = ACTIONS(168),
- [anon_sym_STAR_STAR_EQ] = ACTIONS(168),
- [anon_sym_AMP_AMP_EQ] = ACTIONS(168),
- [anon_sym_PIPE_PIPE_EQ] = ACTIONS(168),
- [anon_sym_QMARK_QMARK_EQ] = ACTIONS(168),
- [anon_sym_AMP_AMP] = ACTIONS(122),
- [anon_sym_PIPE_PIPE] = ACTIONS(122),
- [anon_sym_GT_GT] = ACTIONS(122),
- [anon_sym_GT_GT_GT] = ACTIONS(122),
- [anon_sym_LT_LT] = ACTIONS(122),
- [anon_sym_AMP] = ACTIONS(122),
- [anon_sym_CARET] = ACTIONS(122),
- [anon_sym_PIPE] = ACTIONS(122),
- [anon_sym_PLUS] = ACTIONS(187),
- [anon_sym_DASH] = ACTIONS(187),
- [anon_sym_SLASH] = ACTIONS(646),
- [anon_sym_PERCENT] = ACTIONS(122),
- [anon_sym_STAR_STAR] = ACTIONS(122),
- [anon_sym_LT] = ACTIONS(181),
- [anon_sym_LT_EQ] = ACTIONS(162),
- [anon_sym_EQ_EQ] = ACTIONS(122),
- [anon_sym_EQ_EQ_EQ] = ACTIONS(162),
- [anon_sym_BANG_EQ] = ACTIONS(122),
- [anon_sym_BANG_EQ_EQ] = ACTIONS(162),
- [anon_sym_GT_EQ] = ACTIONS(162),
- [anon_sym_QMARK_QMARK] = ACTIONS(122),
- [anon_sym_instanceof] = ACTIONS(122),
- [anon_sym_TILDE] = ACTIONS(183),
- [anon_sym_void] = ACTIONS(187),
- [anon_sym_delete] = ACTIONS(187),
- [anon_sym_PLUS_PLUS] = ACTIONS(719),
- [anon_sym_DASH_DASH] = ACTIONS(719),
- [sym_comment] = ACTIONS(5),
- [anon_sym_BQUOTE] = ACTIONS(825),
- [sym_number] = ACTIONS(787),
- [sym_private_property_identifier] = ACTIONS(196),
- [sym_this] = ACTIONS(200),
- [sym_super] = ACTIONS(200),
- [sym_true] = ACTIONS(200),
- [sym_false] = ACTIONS(200),
- [sym_null] = ACTIONS(200),
- [sym_undefined] = ACTIONS(827),
- [anon_sym_AT] = ACTIONS(99),
- [anon_sym_static] = ACTIONS(839),
- [anon_sym_readonly] = ACTIONS(839),
- [anon_sym_get] = ACTIONS(839),
- [anon_sym_set] = ACTIONS(839),
- [anon_sym_QMARK] = ACTIONS(793),
- [anon_sym_declare] = ACTIONS(839),
- [anon_sym_public] = ACTIONS(839),
- [anon_sym_private] = ACTIONS(839),
- [anon_sym_protected] = ACTIONS(839),
- [anon_sym_override] = ACTIONS(839),
- [anon_sym_module] = ACTIONS(839),
- [anon_sym_any] = ACTIONS(839),
- [anon_sym_number] = ACTIONS(839),
- [anon_sym_boolean] = ACTIONS(839),
- [anon_sym_string] = ACTIONS(839),
- [anon_sym_symbol] = ACTIONS(839),
- [anon_sym_object] = ACTIONS(839),
- [anon_sym_satisfies] = ACTIONS(122),
- [sym__ternary_qmark] = ACTIONS(162),
- [sym_html_comment] = ACTIONS(5),
- },
- [95] = {
- [sym_import] = STATE(3306),
- [sym_parenthesized_expression] = STATE(1269),
- [sym_expression] = STATE(2411),
- [sym_primary_expression] = STATE(1719),
- [sym_yield_expression] = STATE(1634),
- [sym_object] = STATE(2310),
- [sym_object_pattern] = STATE(5854),
- [sym_array] = STATE(2310),
- [sym_array_pattern] = STATE(5854),
- [sym_glimmer_template] = STATE(1634),
- [sym_jsx_element] = STATE(1634),
- [sym_jsx_opening_element] = STATE(3026),
- [sym_jsx_self_closing_element] = STATE(1634),
- [sym_class] = STATE(2310),
- [sym_function_expression] = STATE(2310),
- [sym_generator_function] = STATE(2310),
- [sym_arrow_function] = STATE(2310),
- [sym__call_signature] = STATE(5809),
- [sym_call_expression] = STATE(2310),
- [sym_new_expression] = STATE(1634),
- [sym_await_expression] = STATE(1634),
- [sym_member_expression] = STATE(1269),
- [sym_subscript_expression] = STATE(1269),
- [sym_assignment_expression] = STATE(1634),
- [sym__augmented_assignment_lhs] = STATE(2878),
- [sym_augmented_assignment_expression] = STATE(1634),
- [sym__destructuring_pattern] = STATE(5854),
- [sym_ternary_expression] = STATE(1634),
- [sym_binary_expression] = STATE(1634),
- [sym_unary_expression] = STATE(1634),
- [sym_update_expression] = STATE(1634),
- [sym_string] = STATE(2310),
- [sym_template_string] = STATE(2310),
- [sym_regex] = STATE(2310),
- [sym_meta_property] = STATE(2310),
- [sym_decorator] = STATE(1244),
- [sym_formal_parameters] = STATE(3742),
- [sym_non_null_expression] = STATE(1269),
- [sym_as_expression] = STATE(1634),
- [sym_satisfies_expression] = STATE(1634),
- [sym_instantiation_expression] = STATE(1634),
- [sym_internal_module] = STATE(1634),
- [sym_type_parameters] = STATE(5349),
- [aux_sym_export_statement_repeat1] = STATE(4499),
- [sym_identifier] = ACTIONS(692),
- [anon_sym_export] = ACTIONS(694),
- [anon_sym_STAR] = ACTIONS(122),
- [anon_sym_type] = ACTIONS(694),
- [anon_sym_EQ] = ACTIONS(859),
- [anon_sym_as] = ACTIONS(122),
- [anon_sym_namespace] = ACTIONS(698),
- [anon_sym_LBRACE] = ACTIONS(700),
- [anon_sym_COMMA] = ACTIONS(162),
- [anon_sym_typeof] = ACTIONS(187),
- [anon_sym_import] = ACTIONS(133),
- [anon_sym_let] = ACTIONS(694),
- [anon_sym_BANG] = ACTIONS(187),
- [anon_sym_LPAREN] = ACTIONS(41),
- [anon_sym_await] = ACTIONS(142),
- [anon_sym_in] = ACTIONS(861),
- [anon_sym_of] = ACTIONS(864),
- [anon_sym_SEMI] = ACTIONS(162),
- [anon_sym_yield] = ACTIONS(144),
- [anon_sym_LBRACK] = ACTIONS(65),
- [sym_glimmer_opening_tag] = ACTIONS(148),
- [anon_sym_GT] = ACTIONS(122),
- [anon_sym_DOT] = ACTIONS(707),
- [anon_sym_DQUOTE] = ACTIONS(69),
- [anon_sym_SQUOTE] = ACTIONS(71),
- [anon_sym_class] = ACTIONS(709),
- [anon_sym_async] = ACTIONS(711),
- [anon_sym_function] = ACTIONS(713),
- [anon_sym_EQ_GT] = ACTIONS(715),
- [anon_sym_QMARK_DOT] = ACTIONS(162),
- [anon_sym_new] = ACTIONS(717),
- [anon_sym_using] = ACTIONS(166),
- [anon_sym_PLUS_EQ] = ACTIONS(168),
- [anon_sym_DASH_EQ] = ACTIONS(168),
- [anon_sym_STAR_EQ] = ACTIONS(168),
- [anon_sym_SLASH_EQ] = ACTIONS(168),
- [anon_sym_PERCENT_EQ] = ACTIONS(168),
- [anon_sym_CARET_EQ] = ACTIONS(168),
- [anon_sym_AMP_EQ] = ACTIONS(168),
- [anon_sym_PIPE_EQ] = ACTIONS(168),
- [anon_sym_GT_GT_EQ] = ACTIONS(168),
- [anon_sym_GT_GT_GT_EQ] = ACTIONS(168),
- [anon_sym_LT_LT_EQ] = ACTIONS(168),
- [anon_sym_STAR_STAR_EQ] = ACTIONS(168),
- [anon_sym_AMP_AMP_EQ] = ACTIONS(168),
- [anon_sym_PIPE_PIPE_EQ] = ACTIONS(168),
- [anon_sym_QMARK_QMARK_EQ] = ACTIONS(168),
- [anon_sym_AMP_AMP] = ACTIONS(122),
- [anon_sym_PIPE_PIPE] = ACTIONS(122),
- [anon_sym_GT_GT] = ACTIONS(122),
- [anon_sym_GT_GT_GT] = ACTIONS(122),
- [anon_sym_LT_LT] = ACTIONS(122),
- [anon_sym_AMP] = ACTIONS(122),
- [anon_sym_CARET] = ACTIONS(122),
- [anon_sym_PIPE] = ACTIONS(122),
- [anon_sym_PLUS] = ACTIONS(187),
- [anon_sym_DASH] = ACTIONS(187),
- [anon_sym_SLASH] = ACTIONS(83),
- [anon_sym_PERCENT] = ACTIONS(122),
- [anon_sym_STAR_STAR] = ACTIONS(122),
- [anon_sym_LT] = ACTIONS(181),
- [anon_sym_LT_EQ] = ACTIONS(162),
- [anon_sym_EQ_EQ] = ACTIONS(122),
- [anon_sym_EQ_EQ_EQ] = ACTIONS(162),
- [anon_sym_BANG_EQ] = ACTIONS(122),
- [anon_sym_BANG_EQ_EQ] = ACTIONS(162),
- [anon_sym_GT_EQ] = ACTIONS(162),
- [anon_sym_QMARK_QMARK] = ACTIONS(122),
- [anon_sym_instanceof] = ACTIONS(122),
- [anon_sym_TILDE] = ACTIONS(183),
- [anon_sym_void] = ACTIONS(187),
- [anon_sym_delete] = ACTIONS(187),
- [anon_sym_PLUS_PLUS] = ACTIONS(719),
- [anon_sym_DASH_DASH] = ACTIONS(719),
- [sym_comment] = ACTIONS(5),
- [anon_sym_BQUOTE] = ACTIONS(89),
- [sym_number] = ACTIONS(91),
- [sym_private_property_identifier] = ACTIONS(196),
- [sym_this] = ACTIONS(95),
- [sym_super] = ACTIONS(95),
- [sym_true] = ACTIONS(95),
- [sym_false] = ACTIONS(95),
- [sym_null] = ACTIONS(95),
- [sym_undefined] = ACTIONS(721),
- [anon_sym_AT] = ACTIONS(99),
- [anon_sym_static] = ACTIONS(694),
- [anon_sym_readonly] = ACTIONS(694),
- [anon_sym_get] = ACTIONS(694),
- [anon_sym_set] = ACTIONS(694),
- [anon_sym_declare] = ACTIONS(694),
- [anon_sym_public] = ACTIONS(694),
- [anon_sym_private] = ACTIONS(694),
- [anon_sym_protected] = ACTIONS(694),
- [anon_sym_override] = ACTIONS(694),
- [anon_sym_module] = ACTIONS(694),
- [anon_sym_any] = ACTIONS(694),
- [anon_sym_number] = ACTIONS(694),
- [anon_sym_boolean] = ACTIONS(694),
- [anon_sym_string] = ACTIONS(694),
- [anon_sym_symbol] = ACTIONS(694),
- [anon_sym_object] = ACTIONS(694),
- [anon_sym_satisfies] = ACTIONS(122),
- [sym__automatic_semicolon] = ACTIONS(162),
- [sym__ternary_qmark] = ACTIONS(162),
- [sym_html_comment] = ACTIONS(5),
- },
- [96] = {
- [sym_import] = STATE(3306),
- [sym_parenthesized_expression] = STATE(1269),
- [sym_expression] = STATE(2411),
- [sym_primary_expression] = STATE(1719),
- [sym_yield_expression] = STATE(1634),
- [sym_object] = STATE(2310),
- [sym_object_pattern] = STATE(5854),
- [sym_array] = STATE(2310),
- [sym_array_pattern] = STATE(5854),
- [sym_glimmer_template] = STATE(1634),
- [sym_jsx_element] = STATE(1634),
- [sym_jsx_opening_element] = STATE(3026),
- [sym_jsx_self_closing_element] = STATE(1634),
- [sym_class] = STATE(2310),
- [sym_function_expression] = STATE(2310),
- [sym_generator_function] = STATE(2310),
- [sym_arrow_function] = STATE(2310),
- [sym__call_signature] = STATE(5809),
- [sym_call_expression] = STATE(2310),
- [sym_new_expression] = STATE(1634),
- [sym_await_expression] = STATE(1634),
- [sym_member_expression] = STATE(1269),
- [sym_subscript_expression] = STATE(1269),
- [sym_assignment_expression] = STATE(1634),
- [sym__augmented_assignment_lhs] = STATE(2878),
- [sym_augmented_assignment_expression] = STATE(1634),
- [sym__destructuring_pattern] = STATE(5854),
- [sym_ternary_expression] = STATE(1634),
- [sym_binary_expression] = STATE(1634),
- [sym_unary_expression] = STATE(1634),
- [sym_update_expression] = STATE(1634),
- [sym_string] = STATE(2310),
- [sym_template_string] = STATE(2310),
- [sym_regex] = STATE(2310),
- [sym_meta_property] = STATE(2310),
- [sym_decorator] = STATE(1244),
- [sym_formal_parameters] = STATE(3742),
- [sym_non_null_expression] = STATE(1269),
- [sym_as_expression] = STATE(1634),
- [sym_satisfies_expression] = STATE(1634),
- [sym_instantiation_expression] = STATE(1634),
- [sym_internal_module] = STATE(1634),
- [sym_type_parameters] = STATE(5349),
- [aux_sym_export_statement_repeat1] = STATE(4499),
- [sym_identifier] = ACTIONS(692),
- [anon_sym_export] = ACTIONS(694),
- [anon_sym_STAR] = ACTIONS(122),
- [anon_sym_type] = ACTIONS(694),
- [anon_sym_EQ] = ACTIONS(859),
- [anon_sym_as] = ACTIONS(122),
- [anon_sym_namespace] = ACTIONS(698),
- [anon_sym_LBRACE] = ACTIONS(700),
- [anon_sym_COMMA] = ACTIONS(162),
- [anon_sym_typeof] = ACTIONS(187),
- [anon_sym_import] = ACTIONS(133),
- [anon_sym_let] = ACTIONS(694),
- [anon_sym_BANG] = ACTIONS(187),
- [anon_sym_LPAREN] = ACTIONS(41),
- [anon_sym_await] = ACTIONS(142),
- [anon_sym_in] = ACTIONS(122),
- [anon_sym_SEMI] = ACTIONS(162),
- [anon_sym_COLON] = ACTIONS(866),
- [anon_sym_yield] = ACTIONS(144),
- [anon_sym_LBRACK] = ACTIONS(65),
- [sym_glimmer_opening_tag] = ACTIONS(148),
- [anon_sym_GT] = ACTIONS(122),
- [anon_sym_DOT] = ACTIONS(707),
- [anon_sym_DQUOTE] = ACTIONS(69),
- [anon_sym_SQUOTE] = ACTIONS(71),
- [anon_sym_class] = ACTIONS(709),
- [anon_sym_async] = ACTIONS(711),
- [anon_sym_function] = ACTIONS(713),
- [anon_sym_EQ_GT] = ACTIONS(715),
- [anon_sym_QMARK_DOT] = ACTIONS(162),
- [anon_sym_new] = ACTIONS(717),
- [anon_sym_using] = ACTIONS(166),
- [anon_sym_PLUS_EQ] = ACTIONS(168),
- [anon_sym_DASH_EQ] = ACTIONS(168),
- [anon_sym_STAR_EQ] = ACTIONS(168),
- [anon_sym_SLASH_EQ] = ACTIONS(168),
- [anon_sym_PERCENT_EQ] = ACTIONS(168),
- [anon_sym_CARET_EQ] = ACTIONS(168),
- [anon_sym_AMP_EQ] = ACTIONS(168),
- [anon_sym_PIPE_EQ] = ACTIONS(168),
- [anon_sym_GT_GT_EQ] = ACTIONS(168),
- [anon_sym_GT_GT_GT_EQ] = ACTIONS(168),
- [anon_sym_LT_LT_EQ] = ACTIONS(168),
- [anon_sym_STAR_STAR_EQ] = ACTIONS(168),
- [anon_sym_AMP_AMP_EQ] = ACTIONS(168),
- [anon_sym_PIPE_PIPE_EQ] = ACTIONS(168),
- [anon_sym_QMARK_QMARK_EQ] = ACTIONS(168),
- [anon_sym_AMP_AMP] = ACTIONS(122),
- [anon_sym_PIPE_PIPE] = ACTIONS(122),
- [anon_sym_GT_GT] = ACTIONS(122),
- [anon_sym_GT_GT_GT] = ACTIONS(122),
- [anon_sym_LT_LT] = ACTIONS(122),
- [anon_sym_AMP] = ACTIONS(122),
- [anon_sym_CARET] = ACTIONS(122),
- [anon_sym_PIPE] = ACTIONS(122),
- [anon_sym_PLUS] = ACTIONS(187),
- [anon_sym_DASH] = ACTIONS(187),
- [anon_sym_SLASH] = ACTIONS(83),
- [anon_sym_PERCENT] = ACTIONS(122),
- [anon_sym_STAR_STAR] = ACTIONS(122),
- [anon_sym_LT] = ACTIONS(181),
- [anon_sym_LT_EQ] = ACTIONS(162),
- [anon_sym_EQ_EQ] = ACTIONS(122),
- [anon_sym_EQ_EQ_EQ] = ACTIONS(162),
- [anon_sym_BANG_EQ] = ACTIONS(122),
- [anon_sym_BANG_EQ_EQ] = ACTIONS(162),
- [anon_sym_GT_EQ] = ACTIONS(162),
- [anon_sym_QMARK_QMARK] = ACTIONS(122),
- [anon_sym_instanceof] = ACTIONS(122),
- [anon_sym_TILDE] = ACTIONS(183),
- [anon_sym_void] = ACTIONS(187),
- [anon_sym_delete] = ACTIONS(187),
- [anon_sym_PLUS_PLUS] = ACTIONS(719),
- [anon_sym_DASH_DASH] = ACTIONS(719),
- [sym_comment] = ACTIONS(5),
- [anon_sym_BQUOTE] = ACTIONS(89),
- [sym_number] = ACTIONS(91),
- [sym_private_property_identifier] = ACTIONS(196),
- [sym_this] = ACTIONS(95),
- [sym_super] = ACTIONS(95),
- [sym_true] = ACTIONS(95),
- [sym_false] = ACTIONS(95),
- [sym_null] = ACTIONS(95),
- [sym_undefined] = ACTIONS(721),
- [anon_sym_AT] = ACTIONS(99),
- [anon_sym_static] = ACTIONS(694),
- [anon_sym_readonly] = ACTIONS(694),
- [anon_sym_get] = ACTIONS(694),
- [anon_sym_set] = ACTIONS(694),
- [anon_sym_declare] = ACTIONS(694),
- [anon_sym_public] = ACTIONS(694),
- [anon_sym_private] = ACTIONS(694),
- [anon_sym_protected] = ACTIONS(694),
- [anon_sym_override] = ACTIONS(694),
- [anon_sym_module] = ACTIONS(694),
- [anon_sym_any] = ACTIONS(694),
- [anon_sym_number] = ACTIONS(694),
- [anon_sym_boolean] = ACTIONS(694),
- [anon_sym_string] = ACTIONS(694),
- [anon_sym_symbol] = ACTIONS(694),
- [anon_sym_object] = ACTIONS(694),
- [anon_sym_satisfies] = ACTIONS(122),
- [sym__automatic_semicolon] = ACTIONS(162),
- [sym__ternary_qmark] = ACTIONS(162),
- [sym_html_comment] = ACTIONS(5),
- },
- [97] = {
- [sym_import] = STATE(3306),
- [sym_parenthesized_expression] = STATE(1269),
- [sym_expression] = STATE(2411),
- [sym_primary_expression] = STATE(1719),
- [sym_yield_expression] = STATE(1634),
- [sym_object] = STATE(2310),
- [sym_object_pattern] = STATE(5854),
- [sym_array] = STATE(2310),
- [sym_array_pattern] = STATE(5854),
- [sym_glimmer_template] = STATE(1634),
- [sym_jsx_element] = STATE(1634),
- [sym_jsx_opening_element] = STATE(3026),
- [sym_jsx_self_closing_element] = STATE(1634),
- [sym_class] = STATE(2310),
- [sym_function_expression] = STATE(2310),
- [sym_generator_function] = STATE(2310),
- [sym_arrow_function] = STATE(2310),
- [sym__call_signature] = STATE(5829),
- [sym_call_expression] = STATE(2310),
- [sym_new_expression] = STATE(1634),
- [sym_await_expression] = STATE(1634),
- [sym_member_expression] = STATE(1269),
- [sym_subscript_expression] = STATE(1269),
- [sym_assignment_expression] = STATE(1634),
- [sym__augmented_assignment_lhs] = STATE(2878),
- [sym_augmented_assignment_expression] = STATE(1634),
- [sym__destructuring_pattern] = STATE(5854),
- [sym_ternary_expression] = STATE(1634),
- [sym_binary_expression] = STATE(1634),
- [sym_unary_expression] = STATE(1634),
- [sym_update_expression] = STATE(1634),
- [sym_string] = STATE(2310),
- [sym_template_string] = STATE(2310),
- [sym_regex] = STATE(2310),
- [sym_meta_property] = STATE(2310),
- [sym_decorator] = STATE(1244),
- [sym_formal_parameters] = STATE(3742),
- [sym_non_null_expression] = STATE(1269),
- [sym_as_expression] = STATE(1634),
- [sym_satisfies_expression] = STATE(1634),
- [sym_instantiation_expression] = STATE(1634),
- [sym_internal_module] = STATE(1634),
- [sym_type_parameters] = STATE(5349),
- [aux_sym_export_statement_repeat1] = STATE(4499),
- [sym_identifier] = ACTIONS(868),
- [anon_sym_export] = ACTIONS(870),
- [anon_sym_STAR] = ACTIONS(122),
- [anon_sym_type] = ACTIONS(870),
- [anon_sym_EQ] = ACTIONS(872),
- [anon_sym_as] = ACTIONS(122),
- [anon_sym_namespace] = ACTIONS(874),
- [anon_sym_LBRACE] = ACTIONS(700),
- [anon_sym_COMMA] = ACTIONS(162),
- [anon_sym_typeof] = ACTIONS(187),
- [anon_sym_import] = ACTIONS(133),
- [anon_sym_let] = ACTIONS(870),
- [anon_sym_BANG] = ACTIONS(187),
- [anon_sym_LPAREN] = ACTIONS(41),
- [anon_sym_await] = ACTIONS(142),
- [anon_sym_in] = ACTIONS(122),
- [anon_sym_of] = ACTIONS(122),
- [anon_sym_SEMI] = ACTIONS(162),
- [anon_sym_yield] = ACTIONS(144),
- [anon_sym_LBRACK] = ACTIONS(65),
- [sym_glimmer_opening_tag] = ACTIONS(148),
- [anon_sym_GT] = ACTIONS(122),
- [anon_sym_DOT] = ACTIONS(707),
- [anon_sym_DQUOTE] = ACTIONS(69),
- [anon_sym_SQUOTE] = ACTIONS(71),
- [anon_sym_class] = ACTIONS(709),
- [anon_sym_async] = ACTIONS(876),
- [anon_sym_function] = ACTIONS(713),
- [anon_sym_EQ_GT] = ACTIONS(878),
- [anon_sym_QMARK_DOT] = ACTIONS(162),
- [anon_sym_new] = ACTIONS(880),
- [anon_sym_using] = ACTIONS(166),
- [anon_sym_PLUS_EQ] = ACTIONS(168),
- [anon_sym_DASH_EQ] = ACTIONS(168),
- [anon_sym_STAR_EQ] = ACTIONS(168),
- [anon_sym_SLASH_EQ] = ACTIONS(168),
- [anon_sym_PERCENT_EQ] = ACTIONS(168),
- [anon_sym_CARET_EQ] = ACTIONS(168),
- [anon_sym_AMP_EQ] = ACTIONS(168),
- [anon_sym_PIPE_EQ] = ACTIONS(168),
- [anon_sym_GT_GT_EQ] = ACTIONS(168),
- [anon_sym_GT_GT_GT_EQ] = ACTIONS(168),
- [anon_sym_LT_LT_EQ] = ACTIONS(168),
- [anon_sym_STAR_STAR_EQ] = ACTIONS(168),
- [anon_sym_AMP_AMP_EQ] = ACTIONS(168),
- [anon_sym_PIPE_PIPE_EQ] = ACTIONS(168),
- [anon_sym_QMARK_QMARK_EQ] = ACTIONS(168),
- [anon_sym_AMP_AMP] = ACTIONS(122),
- [anon_sym_PIPE_PIPE] = ACTIONS(122),
- [anon_sym_GT_GT] = ACTIONS(122),
- [anon_sym_GT_GT_GT] = ACTIONS(122),
- [anon_sym_LT_LT] = ACTIONS(122),
- [anon_sym_AMP] = ACTIONS(122),
- [anon_sym_CARET] = ACTIONS(122),
- [anon_sym_PIPE] = ACTIONS(122),
- [anon_sym_PLUS] = ACTIONS(187),
- [anon_sym_DASH] = ACTIONS(187),
- [anon_sym_SLASH] = ACTIONS(882),
- [anon_sym_PERCENT] = ACTIONS(122),
- [anon_sym_STAR_STAR] = ACTIONS(122),
- [anon_sym_LT] = ACTIONS(181),
- [anon_sym_LT_EQ] = ACTIONS(162),
- [anon_sym_EQ_EQ] = ACTIONS(122),
- [anon_sym_EQ_EQ_EQ] = ACTIONS(162),
- [anon_sym_BANG_EQ] = ACTIONS(122),
- [anon_sym_BANG_EQ_EQ] = ACTIONS(162),
- [anon_sym_GT_EQ] = ACTIONS(162),
- [anon_sym_QMARK_QMARK] = ACTIONS(122),
- [anon_sym_instanceof] = ACTIONS(122),
- [anon_sym_TILDE] = ACTIONS(183),
- [anon_sym_void] = ACTIONS(187),
- [anon_sym_delete] = ACTIONS(187),
- [anon_sym_PLUS_PLUS] = ACTIONS(719),
- [anon_sym_DASH_DASH] = ACTIONS(719),
- [sym_comment] = ACTIONS(5),
- [anon_sym_BQUOTE] = ACTIONS(89),
- [sym_number] = ACTIONS(91),
- [sym_private_property_identifier] = ACTIONS(196),
- [sym_this] = ACTIONS(95),
- [sym_super] = ACTIONS(95),
- [sym_true] = ACTIONS(95),
- [sym_false] = ACTIONS(95),
- [sym_null] = ACTIONS(95),
- [sym_undefined] = ACTIONS(721),
- [anon_sym_AT] = ACTIONS(99),
- [anon_sym_static] = ACTIONS(870),
- [anon_sym_readonly] = ACTIONS(870),
- [anon_sym_get] = ACTIONS(870),
- [anon_sym_set] = ACTIONS(870),
- [anon_sym_declare] = ACTIONS(870),
- [anon_sym_public] = ACTIONS(870),
- [anon_sym_private] = ACTIONS(870),
- [anon_sym_protected] = ACTIONS(870),
- [anon_sym_override] = ACTIONS(870),
- [anon_sym_module] = ACTIONS(870),
- [anon_sym_any] = ACTIONS(870),
- [anon_sym_number] = ACTIONS(870),
- [anon_sym_boolean] = ACTIONS(870),
- [anon_sym_string] = ACTIONS(870),
- [anon_sym_symbol] = ACTIONS(870),
- [anon_sym_object] = ACTIONS(870),
- [anon_sym_satisfies] = ACTIONS(122),
- [sym__automatic_semicolon] = ACTIONS(162),
- [sym__ternary_qmark] = ACTIONS(162),
- [sym_html_comment] = ACTIONS(5),
- },
- [98] = {
- [sym_import] = STATE(3334),
- [sym_parenthesized_expression] = STATE(1179),
- [sym_expression] = STATE(2415),
- [sym_primary_expression] = STATE(1430),
- [sym_yield_expression] = STATE(1634),
- [sym_object] = STATE(1650),
- [sym_object_pattern] = STATE(5854),
- [sym_array] = STATE(1650),
- [sym_array_pattern] = STATE(5854),
- [sym_glimmer_template] = STATE(1634),
- [sym_jsx_element] = STATE(1634),
- [sym_jsx_opening_element] = STATE(3026),
- [sym_jsx_self_closing_element] = STATE(1634),
- [sym_class] = STATE(1650),
- [sym_function_expression] = STATE(1650),
- [sym_generator_function] = STATE(1650),
- [sym_arrow_function] = STATE(1650),
- [sym__call_signature] = STATE(5619),
- [sym_call_expression] = STATE(1650),
- [sym_new_expression] = STATE(1634),
- [sym_await_expression] = STATE(1634),
- [sym_member_expression] = STATE(1179),
- [sym_subscript_expression] = STATE(1179),
- [sym_assignment_expression] = STATE(1634),
- [sym__augmented_assignment_lhs] = STATE(2878),
- [sym_augmented_assignment_expression] = STATE(1634),
- [sym__destructuring_pattern] = STATE(5854),
- [sym_ternary_expression] = STATE(1634),
- [sym_binary_expression] = STATE(1634),
- [sym_unary_expression] = STATE(1634),
- [sym_update_expression] = STATE(1634),
- [sym_string] = STATE(1650),
- [sym_template_string] = STATE(1650),
- [sym_regex] = STATE(1650),
- [sym_meta_property] = STATE(1650),
- [sym_decorator] = STATE(1244),
- [sym_formal_parameters] = STATE(3742),
- [sym_non_null_expression] = STATE(1179),
- [sym_as_expression] = STATE(1634),
- [sym_satisfies_expression] = STATE(1634),
- [sym_instantiation_expression] = STATE(1634),
- [sym_internal_module] = STATE(1634),
- [sym_type_parameters] = STATE(5349),
- [aux_sym_export_statement_repeat1] = STATE(4458),
- [sym_identifier] = ACTIONS(837),
- [anon_sym_export] = ACTIONS(839),
- [anon_sym_STAR] = ACTIONS(122),
- [anon_sym_type] = ACTIONS(839),
- [anon_sym_EQ] = ACTIONS(841),
- [anon_sym_as] = ACTIONS(122),
- [anon_sym_namespace] = ACTIONS(843),
- [anon_sym_LBRACE] = ACTIONS(845),
- [anon_sym_COMMA] = ACTIONS(162),
- [anon_sym_RBRACE] = ACTIONS(162),
- [anon_sym_typeof] = ACTIONS(187),
- [anon_sym_import] = ACTIONS(133),
- [anon_sym_let] = ACTIONS(839),
- [anon_sym_BANG] = ACTIONS(187),
- [anon_sym_LPAREN] = ACTIONS(815),
- [anon_sym_await] = ACTIONS(142),
- [anon_sym_in] = ACTIONS(122),
- [anon_sym_SEMI] = ACTIONS(162),
- [anon_sym_yield] = ACTIONS(144),
- [anon_sym_LBRACK] = ACTIONS(849),
- [sym_glimmer_opening_tag] = ACTIONS(148),
- [anon_sym_GT] = ACTIONS(122),
- [anon_sym_DOT] = ACTIONS(707),
- [anon_sym_DQUOTE] = ACTIONS(150),
- [anon_sym_SQUOTE] = ACTIONS(152),
- [anon_sym_class] = ACTIONS(154),
- [anon_sym_async] = ACTIONS(851),
- [anon_sym_function] = ACTIONS(158),
- [anon_sym_EQ_GT] = ACTIONS(715),
- [anon_sym_QMARK_DOT] = ACTIONS(162),
- [anon_sym_new] = ACTIONS(853),
- [anon_sym_using] = ACTIONS(166),
- [anon_sym_PLUS_EQ] = ACTIONS(168),
- [anon_sym_DASH_EQ] = ACTIONS(168),
- [anon_sym_STAR_EQ] = ACTIONS(168),
- [anon_sym_SLASH_EQ] = ACTIONS(168),
- [anon_sym_PERCENT_EQ] = ACTIONS(168),
- [anon_sym_CARET_EQ] = ACTIONS(168),
- [anon_sym_AMP_EQ] = ACTIONS(168),
- [anon_sym_PIPE_EQ] = ACTIONS(168),
- [anon_sym_GT_GT_EQ] = ACTIONS(168),
- [anon_sym_GT_GT_GT_EQ] = ACTIONS(168),
- [anon_sym_LT_LT_EQ] = ACTIONS(168),
- [anon_sym_STAR_STAR_EQ] = ACTIONS(168),
- [anon_sym_AMP_AMP_EQ] = ACTIONS(168),
- [anon_sym_PIPE_PIPE_EQ] = ACTIONS(168),
- [anon_sym_QMARK_QMARK_EQ] = ACTIONS(168),
- [anon_sym_AMP_AMP] = ACTIONS(122),
- [anon_sym_PIPE_PIPE] = ACTIONS(122),
- [anon_sym_GT_GT] = ACTIONS(122),
- [anon_sym_GT_GT_GT] = ACTIONS(122),
- [anon_sym_LT_LT] = ACTIONS(122),
- [anon_sym_AMP] = ACTIONS(122),
- [anon_sym_CARET] = ACTIONS(122),
- [anon_sym_PIPE] = ACTIONS(122),
- [anon_sym_PLUS] = ACTIONS(187),
- [anon_sym_DASH] = ACTIONS(187),
- [anon_sym_SLASH] = ACTIONS(646),
- [anon_sym_PERCENT] = ACTIONS(122),
- [anon_sym_STAR_STAR] = ACTIONS(122),
- [anon_sym_LT] = ACTIONS(181),
- [anon_sym_LT_EQ] = ACTIONS(162),
- [anon_sym_EQ_EQ] = ACTIONS(122),
- [anon_sym_EQ_EQ_EQ] = ACTIONS(162),
- [anon_sym_BANG_EQ] = ACTIONS(122),
- [anon_sym_BANG_EQ_EQ] = ACTIONS(162),
- [anon_sym_GT_EQ] = ACTIONS(162),
- [anon_sym_QMARK_QMARK] = ACTIONS(122),
- [anon_sym_instanceof] = ACTIONS(122),
- [anon_sym_TILDE] = ACTIONS(183),
- [anon_sym_void] = ACTIONS(187),
- [anon_sym_delete] = ACTIONS(187),
- [anon_sym_PLUS_PLUS] = ACTIONS(719),
- [anon_sym_DASH_DASH] = ACTIONS(719),
- [sym_comment] = ACTIONS(5),
- [anon_sym_BQUOTE] = ACTIONS(825),
- [sym_number] = ACTIONS(787),
- [sym_private_property_identifier] = ACTIONS(196),
- [sym_this] = ACTIONS(200),
- [sym_super] = ACTIONS(200),
- [sym_true] = ACTIONS(200),
- [sym_false] = ACTIONS(200),
- [sym_null] = ACTIONS(200),
- [sym_undefined] = ACTIONS(827),
- [anon_sym_AT] = ACTIONS(99),
- [anon_sym_static] = ACTIONS(839),
- [anon_sym_readonly] = ACTIONS(839),
- [anon_sym_get] = ACTIONS(839),
- [anon_sym_set] = ACTIONS(839),
- [anon_sym_declare] = ACTIONS(839),
- [anon_sym_public] = ACTIONS(839),
- [anon_sym_private] = ACTIONS(839),
- [anon_sym_protected] = ACTIONS(839),
- [anon_sym_override] = ACTIONS(839),
- [anon_sym_module] = ACTIONS(839),
- [anon_sym_any] = ACTIONS(839),
- [anon_sym_number] = ACTIONS(839),
- [anon_sym_boolean] = ACTIONS(839),
- [anon_sym_string] = ACTIONS(839),
- [anon_sym_symbol] = ACTIONS(839),
- [anon_sym_object] = ACTIONS(839),
- [anon_sym_satisfies] = ACTIONS(122),
- [sym__automatic_semicolon] = ACTIONS(162),
- [sym__ternary_qmark] = ACTIONS(162),
- [sym_html_comment] = ACTIONS(5),
- },
- [99] = {
- [sym_import] = STATE(3334),
- [sym_parenthesized_expression] = STATE(1179),
- [sym_expression] = STATE(2415),
- [sym_primary_expression] = STATE(1430),
- [sym_yield_expression] = STATE(1634),
- [sym_object] = STATE(1650),
- [sym_object_pattern] = STATE(5854),
- [sym_array] = STATE(1650),
- [sym_array_pattern] = STATE(5854),
- [sym_glimmer_template] = STATE(1634),
- [sym_jsx_element] = STATE(1634),
- [sym_jsx_opening_element] = STATE(3026),
- [sym_jsx_self_closing_element] = STATE(1634),
- [sym_class] = STATE(1650),
- [sym_function_expression] = STATE(1650),
- [sym_generator_function] = STATE(1650),
- [sym_arrow_function] = STATE(1650),
- [sym__call_signature] = STATE(5619),
- [sym_call_expression] = STATE(1650),
- [sym_new_expression] = STATE(1634),
- [sym_await_expression] = STATE(1634),
- [sym_member_expression] = STATE(1179),
- [sym_subscript_expression] = STATE(1179),
- [sym_assignment_expression] = STATE(1634),
- [sym__augmented_assignment_lhs] = STATE(2878),
- [sym_augmented_assignment_expression] = STATE(1634),
- [sym__destructuring_pattern] = STATE(5854),
- [sym_ternary_expression] = STATE(1634),
- [sym_binary_expression] = STATE(1634),
- [sym_unary_expression] = STATE(1634),
- [sym_update_expression] = STATE(1634),
- [sym_string] = STATE(1650),
- [sym_template_string] = STATE(1650),
- [sym_regex] = STATE(1650),
- [sym_meta_property] = STATE(1650),
- [sym_decorator] = STATE(1244),
- [sym_formal_parameters] = STATE(3742),
- [sym_non_null_expression] = STATE(1179),
- [sym_as_expression] = STATE(1634),
- [sym_satisfies_expression] = STATE(1634),
- [sym_instantiation_expression] = STATE(1634),
- [sym_internal_module] = STATE(1634),
- [sym_type_parameters] = STATE(5349),
- [aux_sym_export_statement_repeat1] = STATE(4458),
- [sym_identifier] = ACTIONS(837),
- [anon_sym_export] = ACTIONS(839),
- [anon_sym_STAR] = ACTIONS(122),
- [anon_sym_type] = ACTIONS(839),
- [anon_sym_EQ] = ACTIONS(841),
- [anon_sym_as] = ACTIONS(122),
- [anon_sym_namespace] = ACTIONS(843),
- [anon_sym_LBRACE] = ACTIONS(845),
- [anon_sym_COMMA] = ACTIONS(162),
- [anon_sym_typeof] = ACTIONS(187),
- [anon_sym_import] = ACTIONS(133),
- [anon_sym_let] = ACTIONS(839),
- [anon_sym_BANG] = ACTIONS(187),
- [anon_sym_LPAREN] = ACTIONS(815),
- [anon_sym_await] = ACTIONS(142),
- [anon_sym_in] = ACTIONS(122),
- [anon_sym_of] = ACTIONS(122),
- [anon_sym_SEMI] = ACTIONS(162),
- [anon_sym_yield] = ACTIONS(144),
- [anon_sym_LBRACK] = ACTIONS(849),
- [sym_glimmer_opening_tag] = ACTIONS(148),
- [anon_sym_GT] = ACTIONS(122),
- [anon_sym_DOT] = ACTIONS(707),
- [anon_sym_DQUOTE] = ACTIONS(150),
- [anon_sym_SQUOTE] = ACTIONS(152),
- [anon_sym_class] = ACTIONS(154),
- [anon_sym_async] = ACTIONS(851),
- [anon_sym_function] = ACTIONS(158),
- [anon_sym_EQ_GT] = ACTIONS(878),
- [anon_sym_QMARK_DOT] = ACTIONS(162),
- [anon_sym_new] = ACTIONS(853),
- [anon_sym_using] = ACTIONS(166),
- [anon_sym_PLUS_EQ] = ACTIONS(168),
- [anon_sym_DASH_EQ] = ACTIONS(168),
- [anon_sym_STAR_EQ] = ACTIONS(168),
- [anon_sym_SLASH_EQ] = ACTIONS(168),
- [anon_sym_PERCENT_EQ] = ACTIONS(168),
- [anon_sym_CARET_EQ] = ACTIONS(168),
- [anon_sym_AMP_EQ] = ACTIONS(168),
- [anon_sym_PIPE_EQ] = ACTIONS(168),
- [anon_sym_GT_GT_EQ] = ACTIONS(168),
- [anon_sym_GT_GT_GT_EQ] = ACTIONS(168),
- [anon_sym_LT_LT_EQ] = ACTIONS(168),
- [anon_sym_STAR_STAR_EQ] = ACTIONS(168),
- [anon_sym_AMP_AMP_EQ] = ACTIONS(168),
- [anon_sym_PIPE_PIPE_EQ] = ACTIONS(168),
- [anon_sym_QMARK_QMARK_EQ] = ACTIONS(168),
- [anon_sym_AMP_AMP] = ACTIONS(122),
- [anon_sym_PIPE_PIPE] = ACTIONS(122),
- [anon_sym_GT_GT] = ACTIONS(122),
- [anon_sym_GT_GT_GT] = ACTIONS(122),
- [anon_sym_LT_LT] = ACTIONS(122),
- [anon_sym_AMP] = ACTIONS(122),
- [anon_sym_CARET] = ACTIONS(122),
- [anon_sym_PIPE] = ACTIONS(122),
- [anon_sym_PLUS] = ACTIONS(187),
- [anon_sym_DASH] = ACTIONS(187),
- [anon_sym_SLASH] = ACTIONS(646),
- [anon_sym_PERCENT] = ACTIONS(122),
- [anon_sym_STAR_STAR] = ACTIONS(122),
- [anon_sym_LT] = ACTIONS(181),
- [anon_sym_LT_EQ] = ACTIONS(162),
- [anon_sym_EQ_EQ] = ACTIONS(122),
- [anon_sym_EQ_EQ_EQ] = ACTIONS(162),
- [anon_sym_BANG_EQ] = ACTIONS(122),
- [anon_sym_BANG_EQ_EQ] = ACTIONS(162),
- [anon_sym_GT_EQ] = ACTIONS(162),
- [anon_sym_QMARK_QMARK] = ACTIONS(122),
- [anon_sym_instanceof] = ACTIONS(122),
- [anon_sym_TILDE] = ACTIONS(183),
- [anon_sym_void] = ACTIONS(187),
- [anon_sym_delete] = ACTIONS(187),
- [anon_sym_PLUS_PLUS] = ACTIONS(719),
- [anon_sym_DASH_DASH] = ACTIONS(719),
- [sym_comment] = ACTIONS(5),
- [anon_sym_BQUOTE] = ACTIONS(825),
- [sym_number] = ACTIONS(787),
- [sym_private_property_identifier] = ACTIONS(196),
- [sym_this] = ACTIONS(200),
- [sym_super] = ACTIONS(200),
- [sym_true] = ACTIONS(200),
- [sym_false] = ACTIONS(200),
- [sym_null] = ACTIONS(200),
- [sym_undefined] = ACTIONS(827),
- [anon_sym_AT] = ACTIONS(99),
- [anon_sym_static] = ACTIONS(839),
- [anon_sym_readonly] = ACTIONS(839),
- [anon_sym_get] = ACTIONS(839),
- [anon_sym_set] = ACTIONS(839),
- [anon_sym_declare] = ACTIONS(839),
- [anon_sym_public] = ACTIONS(839),
- [anon_sym_private] = ACTIONS(839),
- [anon_sym_protected] = ACTIONS(839),
- [anon_sym_override] = ACTIONS(839),
- [anon_sym_module] = ACTIONS(839),
- [anon_sym_any] = ACTIONS(839),
- [anon_sym_number] = ACTIONS(839),
- [anon_sym_boolean] = ACTIONS(839),
- [anon_sym_string] = ACTIONS(839),
- [anon_sym_symbol] = ACTIONS(839),
- [anon_sym_object] = ACTIONS(839),
- [anon_sym_satisfies] = ACTIONS(122),
- [sym__automatic_semicolon] = ACTIONS(162),
- [sym__ternary_qmark] = ACTIONS(162),
- [sym_html_comment] = ACTIONS(5),
- },
- [100] = {
- [sym_import] = STATE(3306),
- [sym_parenthesized_expression] = STATE(1269),
- [sym_expression] = STATE(2411),
- [sym_primary_expression] = STATE(1719),
- [sym_yield_expression] = STATE(1634),
- [sym_object] = STATE(2310),
- [sym_object_pattern] = STATE(5854),
- [sym_array] = STATE(2310),
- [sym_array_pattern] = STATE(5854),
- [sym_glimmer_template] = STATE(1634),
- [sym_jsx_element] = STATE(1634),
- [sym_jsx_opening_element] = STATE(3026),
- [sym_jsx_self_closing_element] = STATE(1634),
- [sym_class] = STATE(2310),
- [sym_function_expression] = STATE(2310),
- [sym_generator_function] = STATE(2310),
- [sym_arrow_function] = STATE(2310),
- [sym__call_signature] = STATE(5829),
- [sym_call_expression] = STATE(2310),
- [sym_new_expression] = STATE(1634),
- [sym_await_expression] = STATE(1634),
- [sym_member_expression] = STATE(1269),
- [sym_subscript_expression] = STATE(1269),
- [sym_assignment_expression] = STATE(1634),
- [sym__augmented_assignment_lhs] = STATE(2878),
- [sym_augmented_assignment_expression] = STATE(1634),
- [sym__destructuring_pattern] = STATE(5854),
- [sym_ternary_expression] = STATE(1634),
- [sym_binary_expression] = STATE(1634),
- [sym_unary_expression] = STATE(1634),
- [sym_update_expression] = STATE(1634),
- [sym_string] = STATE(2310),
- [sym_template_string] = STATE(2310),
- [sym_regex] = STATE(2310),
- [sym_meta_property] = STATE(2310),
- [sym_decorator] = STATE(1244),
- [sym_formal_parameters] = STATE(3915),
- [sym_non_null_expression] = STATE(1269),
- [sym_as_expression] = STATE(1634),
- [sym_satisfies_expression] = STATE(1634),
- [sym_instantiation_expression] = STATE(1634),
- [sym_internal_module] = STATE(1634),
- [sym_type_parameters] = STATE(5206),
- [aux_sym_export_statement_repeat1] = STATE(4499),
- [sym_identifier] = ACTIONS(868),
- [anon_sym_export] = ACTIONS(870),
- [anon_sym_STAR] = ACTIONS(122),
- [anon_sym_type] = ACTIONS(870),
- [anon_sym_EQ] = ACTIONS(872),
- [anon_sym_as] = ACTIONS(122),
- [anon_sym_namespace] = ACTIONS(874),
- [anon_sym_LBRACE] = ACTIONS(700),
- [anon_sym_COMMA] = ACTIONS(162),
- [anon_sym_typeof] = ACTIONS(187),
- [anon_sym_import] = ACTIONS(133),
- [anon_sym_let] = ACTIONS(870),
- [anon_sym_BANG] = ACTIONS(187),
- [anon_sym_LPAREN] = ACTIONS(41),
- [anon_sym_await] = ACTIONS(142),
- [anon_sym_in] = ACTIONS(122),
- [anon_sym_of] = ACTIONS(122),
- [anon_sym_SEMI] = ACTIONS(162),
- [anon_sym_yield] = ACTIONS(144),
- [anon_sym_LBRACK] = ACTIONS(65),
- [sym_glimmer_opening_tag] = ACTIONS(148),
- [anon_sym_GT] = ACTIONS(122),
- [anon_sym_DOT] = ACTIONS(707),
- [anon_sym_DQUOTE] = ACTIONS(69),
- [anon_sym_SQUOTE] = ACTIONS(71),
- [anon_sym_class] = ACTIONS(709),
- [anon_sym_async] = ACTIONS(876),
- [anon_sym_function] = ACTIONS(713),
- [anon_sym_EQ_GT] = ACTIONS(878),
- [anon_sym_QMARK_DOT] = ACTIONS(162),
- [anon_sym_new] = ACTIONS(880),
- [anon_sym_using] = ACTIONS(166),
- [anon_sym_PLUS_EQ] = ACTIONS(168),
- [anon_sym_DASH_EQ] = ACTIONS(168),
- [anon_sym_STAR_EQ] = ACTIONS(168),
- [anon_sym_SLASH_EQ] = ACTIONS(168),
- [anon_sym_PERCENT_EQ] = ACTIONS(168),
- [anon_sym_CARET_EQ] = ACTIONS(168),
- [anon_sym_AMP_EQ] = ACTIONS(168),
- [anon_sym_PIPE_EQ] = ACTIONS(168),
- [anon_sym_GT_GT_EQ] = ACTIONS(168),
- [anon_sym_GT_GT_GT_EQ] = ACTIONS(168),
- [anon_sym_LT_LT_EQ] = ACTIONS(168),
- [anon_sym_STAR_STAR_EQ] = ACTIONS(168),
- [anon_sym_AMP_AMP_EQ] = ACTIONS(168),
- [anon_sym_PIPE_PIPE_EQ] = ACTIONS(168),
- [anon_sym_QMARK_QMARK_EQ] = ACTIONS(168),
- [anon_sym_AMP_AMP] = ACTIONS(122),
- [anon_sym_PIPE_PIPE] = ACTIONS(122),
- [anon_sym_GT_GT] = ACTIONS(122),
- [anon_sym_GT_GT_GT] = ACTIONS(122),
- [anon_sym_LT_LT] = ACTIONS(122),
- [anon_sym_AMP] = ACTIONS(122),
- [anon_sym_CARET] = ACTIONS(122),
- [anon_sym_PIPE] = ACTIONS(122),
- [anon_sym_PLUS] = ACTIONS(187),
- [anon_sym_DASH] = ACTIONS(187),
- [anon_sym_SLASH] = ACTIONS(882),
- [anon_sym_PERCENT] = ACTIONS(122),
- [anon_sym_STAR_STAR] = ACTIONS(122),
- [anon_sym_LT] = ACTIONS(181),
- [anon_sym_LT_EQ] = ACTIONS(162),
- [anon_sym_EQ_EQ] = ACTIONS(122),
- [anon_sym_EQ_EQ_EQ] = ACTIONS(162),
- [anon_sym_BANG_EQ] = ACTIONS(122),
- [anon_sym_BANG_EQ_EQ] = ACTIONS(162),
- [anon_sym_GT_EQ] = ACTIONS(162),
- [anon_sym_QMARK_QMARK] = ACTIONS(122),
- [anon_sym_instanceof] = ACTIONS(122),
- [anon_sym_TILDE] = ACTIONS(183),
- [anon_sym_void] = ACTIONS(187),
- [anon_sym_delete] = ACTIONS(187),
- [anon_sym_PLUS_PLUS] = ACTIONS(719),
- [anon_sym_DASH_DASH] = ACTIONS(719),
- [sym_comment] = ACTIONS(5),
- [anon_sym_BQUOTE] = ACTIONS(89),
- [sym_number] = ACTIONS(91),
- [sym_private_property_identifier] = ACTIONS(196),
- [sym_this] = ACTIONS(95),
- [sym_super] = ACTIONS(95),
- [sym_true] = ACTIONS(95),
- [sym_false] = ACTIONS(95),
- [sym_null] = ACTIONS(95),
- [sym_undefined] = ACTIONS(721),
- [anon_sym_AT] = ACTIONS(99),
- [anon_sym_static] = ACTIONS(870),
- [anon_sym_readonly] = ACTIONS(870),
- [anon_sym_get] = ACTIONS(870),
- [anon_sym_set] = ACTIONS(870),
- [anon_sym_declare] = ACTIONS(870),
- [anon_sym_public] = ACTIONS(870),
- [anon_sym_private] = ACTIONS(870),
- [anon_sym_protected] = ACTIONS(870),
- [anon_sym_override] = ACTIONS(870),
- [anon_sym_module] = ACTIONS(870),
- [anon_sym_any] = ACTIONS(870),
- [anon_sym_number] = ACTIONS(870),
- [anon_sym_boolean] = ACTIONS(870),
- [anon_sym_string] = ACTIONS(870),
- [anon_sym_symbol] = ACTIONS(870),
- [anon_sym_object] = ACTIONS(870),
- [anon_sym_satisfies] = ACTIONS(122),
- [sym__automatic_semicolon] = ACTIONS(162),
- [sym__ternary_qmark] = ACTIONS(162),
- [sym_html_comment] = ACTIONS(5),
- },
- [101] = {
- [sym_import] = STATE(3334),
- [sym_parenthesized_expression] = STATE(1179),
- [sym_expression] = STATE(2415),
- [sym_primary_expression] = STATE(1430),
- [sym_yield_expression] = STATE(1634),
- [sym_object] = STATE(1650),
- [sym_object_pattern] = STATE(5854),
- [sym_array] = STATE(1650),
- [sym_array_pattern] = STATE(5854),
- [sym_glimmer_template] = STATE(1634),
- [sym_jsx_element] = STATE(1634),
- [sym_jsx_opening_element] = STATE(3026),
- [sym_jsx_self_closing_element] = STATE(1634),
- [sym_class] = STATE(1650),
- [sym_function_expression] = STATE(1650),
- [sym_generator_function] = STATE(1650),
- [sym_arrow_function] = STATE(1650),
- [sym__call_signature] = STATE(5828),
- [sym_call_expression] = STATE(1650),
- [sym_new_expression] = STATE(1634),
- [sym_await_expression] = STATE(1634),
- [sym_member_expression] = STATE(1179),
- [sym_subscript_expression] = STATE(1179),
- [sym_assignment_expression] = STATE(1634),
- [sym__augmented_assignment_lhs] = STATE(2878),
- [sym_augmented_assignment_expression] = STATE(1634),
- [sym__destructuring_pattern] = STATE(5854),
- [sym_ternary_expression] = STATE(1634),
- [sym_binary_expression] = STATE(1634),
- [sym_unary_expression] = STATE(1634),
- [sym_update_expression] = STATE(1634),
- [sym_string] = STATE(1650),
- [sym_template_string] = STATE(1650),
- [sym_regex] = STATE(1650),
- [sym_meta_property] = STATE(1650),
- [sym_decorator] = STATE(1244),
- [sym_formal_parameters] = STATE(3915),
- [sym_non_null_expression] = STATE(1179),
- [sym_as_expression] = STATE(1634),
- [sym_satisfies_expression] = STATE(1634),
- [sym_instantiation_expression] = STATE(1634),
- [sym_internal_module] = STATE(1634),
- [sym_type_parameters] = STATE(5206),
- [aux_sym_export_statement_repeat1] = STATE(4458),
- [sym_identifier] = ACTIONS(807),
- [anon_sym_export] = ACTIONS(809),
- [anon_sym_STAR] = ACTIONS(122),
- [anon_sym_type] = ACTIONS(809),
- [anon_sym_EQ] = ACTIONS(119),
- [anon_sym_as] = ACTIONS(122),
- [anon_sym_namespace] = ACTIONS(811),
- [anon_sym_LBRACE] = ACTIONS(813),
- [anon_sym_COMMA] = ACTIONS(128),
- [anon_sym_typeof] = ACTIONS(187),
- [anon_sym_import] = ACTIONS(133),
- [anon_sym_let] = ACTIONS(809),
- [anon_sym_BANG] = ACTIONS(187),
- [anon_sym_LPAREN] = ACTIONS(815),
- [anon_sym_RPAREN] = ACTIONS(128),
- [anon_sym_await] = ACTIONS(142),
- [anon_sym_in] = ACTIONS(122),
- [anon_sym_COLON] = ACTIONS(128),
- [anon_sym_yield] = ACTIONS(144),
- [anon_sym_LBRACK] = ACTIONS(817),
- [sym_glimmer_opening_tag] = ACTIONS(148),
- [anon_sym_GT] = ACTIONS(122),
- [anon_sym_DOT] = ACTIONS(819),
- [anon_sym_DQUOTE] = ACTIONS(150),
- [anon_sym_SQUOTE] = ACTIONS(152),
- [anon_sym_class] = ACTIONS(154),
- [anon_sym_async] = ACTIONS(821),
- [anon_sym_function] = ACTIONS(158),
- [anon_sym_EQ_GT] = ACTIONS(160),
- [anon_sym_QMARK_DOT] = ACTIONS(162),
- [anon_sym_new] = ACTIONS(823),
- [anon_sym_using] = ACTIONS(166),
- [anon_sym_PLUS_EQ] = ACTIONS(168),
- [anon_sym_DASH_EQ] = ACTIONS(168),
- [anon_sym_STAR_EQ] = ACTIONS(168),
- [anon_sym_SLASH_EQ] = ACTIONS(168),
- [anon_sym_PERCENT_EQ] = ACTIONS(168),
- [anon_sym_CARET_EQ] = ACTIONS(168),
- [anon_sym_AMP_EQ] = ACTIONS(168),
- [anon_sym_PIPE_EQ] = ACTIONS(168),
- [anon_sym_GT_GT_EQ] = ACTIONS(168),
- [anon_sym_GT_GT_GT_EQ] = ACTIONS(168),
- [anon_sym_LT_LT_EQ] = ACTIONS(168),
- [anon_sym_STAR_STAR_EQ] = ACTIONS(168),
- [anon_sym_AMP_AMP_EQ] = ACTIONS(168),
- [anon_sym_PIPE_PIPE_EQ] = ACTIONS(168),
- [anon_sym_QMARK_QMARK_EQ] = ACTIONS(168),
- [anon_sym_AMP_AMP] = ACTIONS(122),
- [anon_sym_PIPE_PIPE] = ACTIONS(122),
- [anon_sym_GT_GT] = ACTIONS(122),
- [anon_sym_GT_GT_GT] = ACTIONS(122),
- [anon_sym_LT_LT] = ACTIONS(122),
- [anon_sym_AMP] = ACTIONS(122),
- [anon_sym_CARET] = ACTIONS(122),
- [anon_sym_PIPE] = ACTIONS(122),
- [anon_sym_PLUS] = ACTIONS(187),
- [anon_sym_DASH] = ACTIONS(187),
- [anon_sym_SLASH] = ACTIONS(646),
- [anon_sym_PERCENT] = ACTIONS(122),
- [anon_sym_STAR_STAR] = ACTIONS(122),
- [anon_sym_LT] = ACTIONS(181),
- [anon_sym_LT_EQ] = ACTIONS(162),
- [anon_sym_EQ_EQ] = ACTIONS(122),
- [anon_sym_EQ_EQ_EQ] = ACTIONS(162),
- [anon_sym_BANG_EQ] = ACTIONS(122),
- [anon_sym_BANG_EQ_EQ] = ACTIONS(162),
- [anon_sym_GT_EQ] = ACTIONS(162),
- [anon_sym_QMARK_QMARK] = ACTIONS(122),
- [anon_sym_instanceof] = ACTIONS(122),
- [anon_sym_TILDE] = ACTIONS(183),
- [anon_sym_void] = ACTIONS(187),
- [anon_sym_delete] = ACTIONS(187),
- [anon_sym_PLUS_PLUS] = ACTIONS(719),
- [anon_sym_DASH_DASH] = ACTIONS(719),
- [sym_comment] = ACTIONS(5),
- [anon_sym_BQUOTE] = ACTIONS(825),
- [sym_number] = ACTIONS(787),
- [sym_private_property_identifier] = ACTIONS(196),
- [sym_this] = ACTIONS(200),
- [sym_super] = ACTIONS(200),
- [sym_true] = ACTIONS(200),
- [sym_false] = ACTIONS(200),
- [sym_null] = ACTIONS(200),
- [sym_undefined] = ACTIONS(827),
- [anon_sym_AT] = ACTIONS(99),
- [anon_sym_static] = ACTIONS(809),
- [anon_sym_readonly] = ACTIONS(809),
- [anon_sym_get] = ACTIONS(809),
- [anon_sym_set] = ACTIONS(809),
- [anon_sym_QMARK] = ACTIONS(793),
- [anon_sym_declare] = ACTIONS(809),
- [anon_sym_public] = ACTIONS(809),
- [anon_sym_private] = ACTIONS(809),
- [anon_sym_protected] = ACTIONS(809),
- [anon_sym_override] = ACTIONS(809),
- [anon_sym_module] = ACTIONS(809),
- [anon_sym_any] = ACTIONS(809),
- [anon_sym_number] = ACTIONS(809),
- [anon_sym_boolean] = ACTIONS(809),
- [anon_sym_string] = ACTIONS(809),
- [anon_sym_symbol] = ACTIONS(809),
- [anon_sym_object] = ACTIONS(809),
- [anon_sym_satisfies] = ACTIONS(122),
- [sym__ternary_qmark] = ACTIONS(162),
- [sym_html_comment] = ACTIONS(5),
- },
- [102] = {
- [sym_import] = STATE(3306),
- [sym_parenthesized_expression] = STATE(1269),
- [sym_expression] = STATE(2411),
- [sym_primary_expression] = STATE(1719),
- [sym_yield_expression] = STATE(1634),
- [sym_object] = STATE(2310),
- [sym_object_pattern] = STATE(5854),
- [sym_array] = STATE(2310),
- [sym_array_pattern] = STATE(5854),
- [sym_glimmer_template] = STATE(1634),
- [sym_jsx_element] = STATE(1634),
- [sym_jsx_opening_element] = STATE(3026),
- [sym_jsx_self_closing_element] = STATE(1634),
- [sym_class] = STATE(2310),
- [sym_function_expression] = STATE(2310),
- [sym_generator_function] = STATE(2310),
- [sym_arrow_function] = STATE(2310),
- [sym__call_signature] = STATE(5809),
- [sym_call_expression] = STATE(2310),
- [sym_new_expression] = STATE(1634),
- [sym_await_expression] = STATE(1634),
- [sym_member_expression] = STATE(1269),
- [sym_subscript_expression] = STATE(1269),
- [sym_assignment_expression] = STATE(1634),
- [sym__augmented_assignment_lhs] = STATE(2878),
- [sym_augmented_assignment_expression] = STATE(1634),
- [sym__destructuring_pattern] = STATE(5854),
- [sym_ternary_expression] = STATE(1634),
- [sym_binary_expression] = STATE(1634),
- [sym_unary_expression] = STATE(1634),
- [sym_update_expression] = STATE(1634),
- [sym_string] = STATE(2310),
- [sym_template_string] = STATE(2310),
- [sym_regex] = STATE(2310),
- [sym_meta_property] = STATE(2310),
- [sym_decorator] = STATE(1244),
- [sym_formal_parameters] = STATE(3915),
- [sym_non_null_expression] = STATE(1269),
- [sym_as_expression] = STATE(1634),
- [sym_satisfies_expression] = STATE(1634),
- [sym_instantiation_expression] = STATE(1634),
- [sym_internal_module] = STATE(1634),
- [sym_type_parameters] = STATE(5206),
- [aux_sym_export_statement_repeat1] = STATE(4499),
- [sym_identifier] = ACTIONS(692),
- [anon_sym_export] = ACTIONS(694),
- [anon_sym_STAR] = ACTIONS(122),
- [anon_sym_type] = ACTIONS(694),
- [anon_sym_EQ] = ACTIONS(859),
- [anon_sym_as] = ACTIONS(122),
- [anon_sym_namespace] = ACTIONS(698),
- [anon_sym_LBRACE] = ACTIONS(700),
- [anon_sym_COMMA] = ACTIONS(162),
- [anon_sym_RBRACE] = ACTIONS(162),
- [anon_sym_typeof] = ACTIONS(187),
- [anon_sym_import] = ACTIONS(133),
- [anon_sym_let] = ACTIONS(694),
- [anon_sym_BANG] = ACTIONS(187),
- [anon_sym_LPAREN] = ACTIONS(41),
- [anon_sym_await] = ACTIONS(142),
- [anon_sym_in] = ACTIONS(122),
- [anon_sym_SEMI] = ACTIONS(162),
- [anon_sym_yield] = ACTIONS(144),
- [anon_sym_LBRACK] = ACTIONS(65),
- [sym_glimmer_opening_tag] = ACTIONS(148),
- [anon_sym_GT] = ACTIONS(122),
- [anon_sym_DOT] = ACTIONS(707),
- [anon_sym_DQUOTE] = ACTIONS(69),
- [anon_sym_SQUOTE] = ACTIONS(71),
- [anon_sym_class] = ACTIONS(709),
- [anon_sym_async] = ACTIONS(711),
- [anon_sym_function] = ACTIONS(713),
- [anon_sym_EQ_GT] = ACTIONS(715),
- [anon_sym_QMARK_DOT] = ACTIONS(162),
- [anon_sym_new] = ACTIONS(717),
- [anon_sym_using] = ACTIONS(166),
- [anon_sym_PLUS_EQ] = ACTIONS(168),
- [anon_sym_DASH_EQ] = ACTIONS(168),
- [anon_sym_STAR_EQ] = ACTIONS(168),
- [anon_sym_SLASH_EQ] = ACTIONS(168),
- [anon_sym_PERCENT_EQ] = ACTIONS(168),
- [anon_sym_CARET_EQ] = ACTIONS(168),
- [anon_sym_AMP_EQ] = ACTIONS(168),
- [anon_sym_PIPE_EQ] = ACTIONS(168),
- [anon_sym_GT_GT_EQ] = ACTIONS(168),
- [anon_sym_GT_GT_GT_EQ] = ACTIONS(168),
- [anon_sym_LT_LT_EQ] = ACTIONS(168),
- [anon_sym_STAR_STAR_EQ] = ACTIONS(168),
- [anon_sym_AMP_AMP_EQ] = ACTIONS(168),
- [anon_sym_PIPE_PIPE_EQ] = ACTIONS(168),
- [anon_sym_QMARK_QMARK_EQ] = ACTIONS(168),
- [anon_sym_AMP_AMP] = ACTIONS(122),
- [anon_sym_PIPE_PIPE] = ACTIONS(122),
- [anon_sym_GT_GT] = ACTIONS(122),
- [anon_sym_GT_GT_GT] = ACTIONS(122),
- [anon_sym_LT_LT] = ACTIONS(122),
- [anon_sym_AMP] = ACTIONS(122),
- [anon_sym_CARET] = ACTIONS(122),
- [anon_sym_PIPE] = ACTIONS(122),
- [anon_sym_PLUS] = ACTIONS(187),
- [anon_sym_DASH] = ACTIONS(187),
- [anon_sym_SLASH] = ACTIONS(83),
- [anon_sym_PERCENT] = ACTIONS(122),
- [anon_sym_STAR_STAR] = ACTIONS(122),
- [anon_sym_LT] = ACTIONS(181),
- [anon_sym_LT_EQ] = ACTIONS(162),
- [anon_sym_EQ_EQ] = ACTIONS(122),
- [anon_sym_EQ_EQ_EQ] = ACTIONS(162),
- [anon_sym_BANG_EQ] = ACTIONS(122),
- [anon_sym_BANG_EQ_EQ] = ACTIONS(162),
- [anon_sym_GT_EQ] = ACTIONS(162),
- [anon_sym_QMARK_QMARK] = ACTIONS(122),
- [anon_sym_instanceof] = ACTIONS(122),
- [anon_sym_TILDE] = ACTIONS(183),
- [anon_sym_void] = ACTIONS(187),
- [anon_sym_delete] = ACTIONS(187),
- [anon_sym_PLUS_PLUS] = ACTIONS(719),
- [anon_sym_DASH_DASH] = ACTIONS(719),
- [sym_comment] = ACTIONS(5),
- [anon_sym_BQUOTE] = ACTIONS(89),
- [sym_number] = ACTIONS(91),
- [sym_private_property_identifier] = ACTIONS(196),
- [sym_this] = ACTIONS(95),
- [sym_super] = ACTIONS(95),
- [sym_true] = ACTIONS(95),
- [sym_false] = ACTIONS(95),
- [sym_null] = ACTIONS(95),
- [sym_undefined] = ACTIONS(721),
- [anon_sym_AT] = ACTIONS(99),
- [anon_sym_static] = ACTIONS(694),
- [anon_sym_readonly] = ACTIONS(694),
- [anon_sym_get] = ACTIONS(694),
- [anon_sym_set] = ACTIONS(694),
- [anon_sym_declare] = ACTIONS(694),
- [anon_sym_public] = ACTIONS(694),
- [anon_sym_private] = ACTIONS(694),
- [anon_sym_protected] = ACTIONS(694),
- [anon_sym_override] = ACTIONS(694),
- [anon_sym_module] = ACTIONS(694),
- [anon_sym_any] = ACTIONS(694),
- [anon_sym_number] = ACTIONS(694),
- [anon_sym_boolean] = ACTIONS(694),
- [anon_sym_string] = ACTIONS(694),
- [anon_sym_symbol] = ACTIONS(694),
- [anon_sym_object] = ACTIONS(694),
- [anon_sym_satisfies] = ACTIONS(122),
- [sym__automatic_semicolon] = ACTIONS(162),
- [sym__ternary_qmark] = ACTIONS(162),
- [sym_html_comment] = ACTIONS(5),
- },
- [103] = {
- [sym_import] = STATE(3306),
- [sym_parenthesized_expression] = STATE(1269),
- [sym_expression] = STATE(2411),
- [sym_primary_expression] = STATE(1719),
- [sym_yield_expression] = STATE(1634),
- [sym_object] = STATE(2310),
- [sym_object_pattern] = STATE(5854),
- [sym_array] = STATE(2310),
- [sym_array_pattern] = STATE(5854),
- [sym_glimmer_template] = STATE(1634),
- [sym_jsx_element] = STATE(1634),
- [sym_jsx_opening_element] = STATE(3026),
- [sym_jsx_self_closing_element] = STATE(1634),
- [sym_class] = STATE(2310),
- [sym_function_expression] = STATE(2310),
- [sym_generator_function] = STATE(2310),
- [sym_arrow_function] = STATE(2310),
- [sym__call_signature] = STATE(5809),
- [sym_call_expression] = STATE(2310),
- [sym_new_expression] = STATE(1634),
- [sym_await_expression] = STATE(1634),
- [sym_member_expression] = STATE(1269),
- [sym_subscript_expression] = STATE(1269),
- [sym_assignment_expression] = STATE(1634),
- [sym__augmented_assignment_lhs] = STATE(2878),
- [sym_augmented_assignment_expression] = STATE(1634),
- [sym__destructuring_pattern] = STATE(5854),
- [sym_ternary_expression] = STATE(1634),
- [sym_binary_expression] = STATE(1634),
- [sym_unary_expression] = STATE(1634),
- [sym_update_expression] = STATE(1634),
- [sym_string] = STATE(2310),
- [sym_template_string] = STATE(2310),
- [sym_regex] = STATE(2310),
- [sym_meta_property] = STATE(2310),
- [sym_decorator] = STATE(1244),
- [sym_formal_parameters] = STATE(3742),
- [sym_non_null_expression] = STATE(1269),
- [sym_as_expression] = STATE(1634),
- [sym_satisfies_expression] = STATE(1634),
- [sym_instantiation_expression] = STATE(1634),
- [sym_internal_module] = STATE(1634),
- [sym_type_parameters] = STATE(5349),
- [aux_sym_export_statement_repeat1] = STATE(4499),
- [sym_identifier] = ACTIONS(692),
- [anon_sym_export] = ACTIONS(694),
- [anon_sym_STAR] = ACTIONS(122),
- [anon_sym_type] = ACTIONS(694),
- [anon_sym_EQ] = ACTIONS(859),
- [anon_sym_as] = ACTIONS(122),
- [anon_sym_namespace] = ACTIONS(698),
- [anon_sym_LBRACE] = ACTIONS(700),
- [anon_sym_COMMA] = ACTIONS(162),
- [anon_sym_typeof] = ACTIONS(187),
- [anon_sym_import] = ACTIONS(133),
- [anon_sym_let] = ACTIONS(694),
- [anon_sym_BANG] = ACTIONS(187),
- [anon_sym_LPAREN] = ACTIONS(41),
- [anon_sym_await] = ACTIONS(142),
- [anon_sym_in] = ACTIONS(122),
- [anon_sym_SEMI] = ACTIONS(162),
- [anon_sym_COLON] = ACTIONS(884),
- [anon_sym_yield] = ACTIONS(144),
- [anon_sym_LBRACK] = ACTIONS(65),
- [sym_glimmer_opening_tag] = ACTIONS(148),
- [anon_sym_GT] = ACTIONS(122),
- [anon_sym_DOT] = ACTIONS(707),
- [anon_sym_DQUOTE] = ACTIONS(69),
- [anon_sym_SQUOTE] = ACTIONS(71),
- [anon_sym_class] = ACTIONS(709),
- [anon_sym_async] = ACTIONS(711),
- [anon_sym_function] = ACTIONS(713),
- [anon_sym_EQ_GT] = ACTIONS(715),
- [anon_sym_QMARK_DOT] = ACTIONS(162),
- [anon_sym_new] = ACTIONS(717),
- [anon_sym_using] = ACTIONS(166),
- [anon_sym_PLUS_EQ] = ACTIONS(168),
- [anon_sym_DASH_EQ] = ACTIONS(168),
- [anon_sym_STAR_EQ] = ACTIONS(168),
- [anon_sym_SLASH_EQ] = ACTIONS(168),
- [anon_sym_PERCENT_EQ] = ACTIONS(168),
- [anon_sym_CARET_EQ] = ACTIONS(168),
- [anon_sym_AMP_EQ] = ACTIONS(168),
- [anon_sym_PIPE_EQ] = ACTIONS(168),
- [anon_sym_GT_GT_EQ] = ACTIONS(168),
- [anon_sym_GT_GT_GT_EQ] = ACTIONS(168),
- [anon_sym_LT_LT_EQ] = ACTIONS(168),
- [anon_sym_STAR_STAR_EQ] = ACTIONS(168),
- [anon_sym_AMP_AMP_EQ] = ACTIONS(168),
- [anon_sym_PIPE_PIPE_EQ] = ACTIONS(168),
- [anon_sym_QMARK_QMARK_EQ] = ACTIONS(168),
- [anon_sym_AMP_AMP] = ACTIONS(122),
- [anon_sym_PIPE_PIPE] = ACTIONS(122),
- [anon_sym_GT_GT] = ACTIONS(122),
- [anon_sym_GT_GT_GT] = ACTIONS(122),
- [anon_sym_LT_LT] = ACTIONS(122),
- [anon_sym_AMP] = ACTIONS(122),
- [anon_sym_CARET] = ACTIONS(122),
- [anon_sym_PIPE] = ACTIONS(122),
- [anon_sym_PLUS] = ACTIONS(187),
- [anon_sym_DASH] = ACTIONS(187),
- [anon_sym_SLASH] = ACTIONS(83),
- [anon_sym_PERCENT] = ACTIONS(122),
- [anon_sym_STAR_STAR] = ACTIONS(122),
- [anon_sym_LT] = ACTIONS(181),
- [anon_sym_LT_EQ] = ACTIONS(162),
- [anon_sym_EQ_EQ] = ACTIONS(122),
- [anon_sym_EQ_EQ_EQ] = ACTIONS(162),
- [anon_sym_BANG_EQ] = ACTIONS(122),
- [anon_sym_BANG_EQ_EQ] = ACTIONS(162),
- [anon_sym_GT_EQ] = ACTIONS(162),
- [anon_sym_QMARK_QMARK] = ACTIONS(122),
- [anon_sym_instanceof] = ACTIONS(122),
- [anon_sym_TILDE] = ACTIONS(183),
- [anon_sym_void] = ACTIONS(187),
- [anon_sym_delete] = ACTIONS(187),
- [anon_sym_PLUS_PLUS] = ACTIONS(719),
- [anon_sym_DASH_DASH] = ACTIONS(719),
- [sym_comment] = ACTIONS(5),
- [anon_sym_BQUOTE] = ACTIONS(89),
- [sym_number] = ACTIONS(91),
- [sym_private_property_identifier] = ACTIONS(196),
- [sym_this] = ACTIONS(95),
- [sym_super] = ACTIONS(95),
- [sym_true] = ACTIONS(95),
- [sym_false] = ACTIONS(95),
- [sym_null] = ACTIONS(95),
- [sym_undefined] = ACTIONS(721),
- [anon_sym_AT] = ACTIONS(99),
- [anon_sym_static] = ACTIONS(694),
- [anon_sym_readonly] = ACTIONS(694),
- [anon_sym_get] = ACTIONS(694),
- [anon_sym_set] = ACTIONS(694),
- [anon_sym_declare] = ACTIONS(694),
- [anon_sym_public] = ACTIONS(694),
- [anon_sym_private] = ACTIONS(694),
- [anon_sym_protected] = ACTIONS(694),
- [anon_sym_override] = ACTIONS(694),
- [anon_sym_module] = ACTIONS(694),
- [anon_sym_any] = ACTIONS(694),
- [anon_sym_number] = ACTIONS(694),
- [anon_sym_boolean] = ACTIONS(694),
- [anon_sym_string] = ACTIONS(694),
- [anon_sym_symbol] = ACTIONS(694),
- [anon_sym_object] = ACTIONS(694),
- [anon_sym_satisfies] = ACTIONS(122),
- [sym__automatic_semicolon] = ACTIONS(162),
- [sym__ternary_qmark] = ACTIONS(162),
- [sym_html_comment] = ACTIONS(5),
- },
- [104] = {
- [sym_import] = STATE(3306),
- [sym_parenthesized_expression] = STATE(1269),
- [sym_expression] = STATE(2411),
- [sym_primary_expression] = STATE(1719),
- [sym_yield_expression] = STATE(1634),
- [sym_object] = STATE(2310),
- [sym_object_pattern] = STATE(5854),
- [sym_array] = STATE(2310),
- [sym_array_pattern] = STATE(5854),
- [sym_glimmer_template] = STATE(1634),
- [sym_jsx_element] = STATE(1634),
- [sym_jsx_opening_element] = STATE(3026),
- [sym_jsx_self_closing_element] = STATE(1634),
- [sym_class] = STATE(2310),
- [sym_function_expression] = STATE(2310),
- [sym_generator_function] = STATE(2310),
- [sym_arrow_function] = STATE(2310),
- [sym__call_signature] = STATE(5809),
- [sym_call_expression] = STATE(2310),
- [sym_new_expression] = STATE(1634),
- [sym_await_expression] = STATE(1634),
- [sym_member_expression] = STATE(1269),
- [sym_subscript_expression] = STATE(1269),
- [sym_assignment_expression] = STATE(1634),
- [sym__augmented_assignment_lhs] = STATE(2878),
- [sym_augmented_assignment_expression] = STATE(1634),
- [sym__destructuring_pattern] = STATE(5854),
- [sym_ternary_expression] = STATE(1634),
- [sym_binary_expression] = STATE(1634),
- [sym_unary_expression] = STATE(1634),
- [sym_update_expression] = STATE(1634),
- [sym_string] = STATE(2310),
- [sym_template_string] = STATE(2310),
- [sym_regex] = STATE(2310),
- [sym_meta_property] = STATE(2310),
- [sym_decorator] = STATE(1244),
- [sym_formal_parameters] = STATE(3742),
- [sym_non_null_expression] = STATE(1269),
- [sym_as_expression] = STATE(1634),
- [sym_satisfies_expression] = STATE(1634),
- [sym_instantiation_expression] = STATE(1634),
- [sym_internal_module] = STATE(1634),
- [sym_type_parameters] = STATE(5349),
- [aux_sym_export_statement_repeat1] = STATE(4499),
- [sym_identifier] = ACTIONS(692),
- [anon_sym_export] = ACTIONS(694),
- [anon_sym_STAR] = ACTIONS(122),
- [anon_sym_type] = ACTIONS(694),
- [anon_sym_EQ] = ACTIONS(859),
- [anon_sym_as] = ACTIONS(122),
- [anon_sym_namespace] = ACTIONS(698),
- [anon_sym_LBRACE] = ACTIONS(700),
- [anon_sym_COMMA] = ACTIONS(162),
- [anon_sym_typeof] = ACTIONS(187),
- [anon_sym_import] = ACTIONS(133),
- [anon_sym_let] = ACTIONS(694),
- [anon_sym_BANG] = ACTIONS(187),
- [anon_sym_LPAREN] = ACTIONS(41),
- [anon_sym_await] = ACTIONS(142),
- [anon_sym_in] = ACTIONS(122),
- [anon_sym_SEMI] = ACTIONS(162),
- [anon_sym_COLON] = ACTIONS(886),
- [anon_sym_yield] = ACTIONS(144),
- [anon_sym_LBRACK] = ACTIONS(65),
- [sym_glimmer_opening_tag] = ACTIONS(148),
- [anon_sym_GT] = ACTIONS(122),
- [anon_sym_DOT] = ACTIONS(707),
- [anon_sym_DQUOTE] = ACTIONS(69),
- [anon_sym_SQUOTE] = ACTIONS(71),
- [anon_sym_class] = ACTIONS(709),
- [anon_sym_async] = ACTIONS(711),
- [anon_sym_function] = ACTIONS(713),
- [anon_sym_EQ_GT] = ACTIONS(715),
- [anon_sym_QMARK_DOT] = ACTIONS(162),
- [anon_sym_new] = ACTIONS(717),
- [anon_sym_using] = ACTIONS(166),
- [anon_sym_PLUS_EQ] = ACTIONS(168),
- [anon_sym_DASH_EQ] = ACTIONS(168),
- [anon_sym_STAR_EQ] = ACTIONS(168),
- [anon_sym_SLASH_EQ] = ACTIONS(168),
- [anon_sym_PERCENT_EQ] = ACTIONS(168),
- [anon_sym_CARET_EQ] = ACTIONS(168),
- [anon_sym_AMP_EQ] = ACTIONS(168),
- [anon_sym_PIPE_EQ] = ACTIONS(168),
- [anon_sym_GT_GT_EQ] = ACTIONS(168),
- [anon_sym_GT_GT_GT_EQ] = ACTIONS(168),
- [anon_sym_LT_LT_EQ] = ACTIONS(168),
- [anon_sym_STAR_STAR_EQ] = ACTIONS(168),
- [anon_sym_AMP_AMP_EQ] = ACTIONS(168),
- [anon_sym_PIPE_PIPE_EQ] = ACTIONS(168),
- [anon_sym_QMARK_QMARK_EQ] = ACTIONS(168),
- [anon_sym_AMP_AMP] = ACTIONS(122),
- [anon_sym_PIPE_PIPE] = ACTIONS(122),
- [anon_sym_GT_GT] = ACTIONS(122),
- [anon_sym_GT_GT_GT] = ACTIONS(122),
- [anon_sym_LT_LT] = ACTIONS(122),
- [anon_sym_AMP] = ACTIONS(122),
- [anon_sym_CARET] = ACTIONS(122),
- [anon_sym_PIPE] = ACTIONS(122),
- [anon_sym_PLUS] = ACTIONS(187),
- [anon_sym_DASH] = ACTIONS(187),
- [anon_sym_SLASH] = ACTIONS(83),
- [anon_sym_PERCENT] = ACTIONS(122),
- [anon_sym_STAR_STAR] = ACTIONS(122),
- [anon_sym_LT] = ACTIONS(181),
- [anon_sym_LT_EQ] = ACTIONS(162),
- [anon_sym_EQ_EQ] = ACTIONS(122),
- [anon_sym_EQ_EQ_EQ] = ACTIONS(162),
- [anon_sym_BANG_EQ] = ACTIONS(122),
- [anon_sym_BANG_EQ_EQ] = ACTIONS(162),
- [anon_sym_GT_EQ] = ACTIONS(162),
- [anon_sym_QMARK_QMARK] = ACTIONS(122),
- [anon_sym_instanceof] = ACTIONS(122),
- [anon_sym_TILDE] = ACTIONS(183),
- [anon_sym_void] = ACTIONS(187),
- [anon_sym_delete] = ACTIONS(187),
- [anon_sym_PLUS_PLUS] = ACTIONS(719),
- [anon_sym_DASH_DASH] = ACTIONS(719),
- [sym_comment] = ACTIONS(5),
- [anon_sym_BQUOTE] = ACTIONS(89),
- [sym_number] = ACTIONS(91),
- [sym_private_property_identifier] = ACTIONS(196),
- [sym_this] = ACTIONS(95),
- [sym_super] = ACTIONS(95),
- [sym_true] = ACTIONS(95),
- [sym_false] = ACTIONS(95),
- [sym_null] = ACTIONS(95),
- [sym_undefined] = ACTIONS(721),
- [anon_sym_AT] = ACTIONS(99),
- [anon_sym_static] = ACTIONS(694),
- [anon_sym_readonly] = ACTIONS(694),
- [anon_sym_get] = ACTIONS(694),
- [anon_sym_set] = ACTIONS(694),
- [anon_sym_declare] = ACTIONS(694),
- [anon_sym_public] = ACTIONS(694),
- [anon_sym_private] = ACTIONS(694),
- [anon_sym_protected] = ACTIONS(694),
- [anon_sym_override] = ACTIONS(694),
- [anon_sym_module] = ACTIONS(694),
- [anon_sym_any] = ACTIONS(694),
- [anon_sym_number] = ACTIONS(694),
- [anon_sym_boolean] = ACTIONS(694),
- [anon_sym_string] = ACTIONS(694),
- [anon_sym_symbol] = ACTIONS(694),
- [anon_sym_object] = ACTIONS(694),
- [anon_sym_satisfies] = ACTIONS(122),
- [sym__automatic_semicolon] = ACTIONS(162),
- [sym__ternary_qmark] = ACTIONS(162),
- [sym_html_comment] = ACTIONS(5),
- },
- [105] = {
- [sym_import] = STATE(3306),
- [sym_parenthesized_expression] = STATE(1269),
- [sym_expression] = STATE(2411),
- [sym_primary_expression] = STATE(1719),
- [sym_yield_expression] = STATE(1634),
- [sym_object] = STATE(2310),
- [sym_object_pattern] = STATE(5854),
- [sym_array] = STATE(2310),
- [sym_array_pattern] = STATE(5854),
- [sym_glimmer_template] = STATE(1634),
- [sym_jsx_element] = STATE(1634),
- [sym_jsx_opening_element] = STATE(3026),
- [sym_jsx_self_closing_element] = STATE(1634),
- [sym_class] = STATE(2310),
- [sym_function_expression] = STATE(2310),
- [sym_generator_function] = STATE(2310),
- [sym_arrow_function] = STATE(2310),
- [sym__call_signature] = STATE(5809),
- [sym_call_expression] = STATE(2310),
- [sym_new_expression] = STATE(1634),
- [sym_await_expression] = STATE(1634),
- [sym_member_expression] = STATE(1269),
- [sym_subscript_expression] = STATE(1269),
- [sym_assignment_expression] = STATE(1634),
- [sym__augmented_assignment_lhs] = STATE(2878),
- [sym_augmented_assignment_expression] = STATE(1634),
- [sym__destructuring_pattern] = STATE(5854),
- [sym_ternary_expression] = STATE(1634),
- [sym_binary_expression] = STATE(1634),
- [sym_unary_expression] = STATE(1634),
- [sym_update_expression] = STATE(1634),
- [sym_string] = STATE(2310),
- [sym_template_string] = STATE(2310),
- [sym_regex] = STATE(2310),
- [sym_meta_property] = STATE(2310),
- [sym_decorator] = STATE(1244),
- [sym_formal_parameters] = STATE(3742),
- [sym_non_null_expression] = STATE(1269),
- [sym_as_expression] = STATE(1634),
- [sym_satisfies_expression] = STATE(1634),
- [sym_instantiation_expression] = STATE(1634),
- [sym_internal_module] = STATE(1634),
- [sym_type_parameters] = STATE(5349),
- [aux_sym_export_statement_repeat1] = STATE(4499),
- [sym_identifier] = ACTIONS(692),
- [anon_sym_export] = ACTIONS(694),
- [anon_sym_STAR] = ACTIONS(122),
- [anon_sym_type] = ACTIONS(694),
- [anon_sym_EQ] = ACTIONS(859),
- [anon_sym_as] = ACTIONS(122),
- [anon_sym_namespace] = ACTIONS(698),
- [anon_sym_LBRACE] = ACTIONS(700),
- [anon_sym_COMMA] = ACTIONS(162),
- [anon_sym_RBRACE] = ACTIONS(162),
- [anon_sym_typeof] = ACTIONS(187),
- [anon_sym_import] = ACTIONS(133),
- [anon_sym_let] = ACTIONS(694),
- [anon_sym_BANG] = ACTIONS(187),
- [anon_sym_LPAREN] = ACTIONS(41),
- [anon_sym_await] = ACTIONS(142),
- [anon_sym_in] = ACTIONS(122),
- [anon_sym_SEMI] = ACTIONS(162),
- [anon_sym_yield] = ACTIONS(144),
- [anon_sym_LBRACK] = ACTIONS(65),
- [sym_glimmer_opening_tag] = ACTIONS(148),
- [anon_sym_GT] = ACTIONS(122),
- [anon_sym_DOT] = ACTIONS(707),
- [anon_sym_DQUOTE] = ACTIONS(69),
- [anon_sym_SQUOTE] = ACTIONS(71),
- [anon_sym_class] = ACTIONS(709),
- [anon_sym_async] = ACTIONS(711),
- [anon_sym_function] = ACTIONS(713),
- [anon_sym_EQ_GT] = ACTIONS(715),
- [anon_sym_QMARK_DOT] = ACTIONS(162),
- [anon_sym_new] = ACTIONS(717),
- [anon_sym_using] = ACTIONS(166),
- [anon_sym_PLUS_EQ] = ACTIONS(168),
- [anon_sym_DASH_EQ] = ACTIONS(168),
- [anon_sym_STAR_EQ] = ACTIONS(168),
- [anon_sym_SLASH_EQ] = ACTIONS(168),
- [anon_sym_PERCENT_EQ] = ACTIONS(168),
- [anon_sym_CARET_EQ] = ACTIONS(168),
- [anon_sym_AMP_EQ] = ACTIONS(168),
- [anon_sym_PIPE_EQ] = ACTIONS(168),
- [anon_sym_GT_GT_EQ] = ACTIONS(168),
- [anon_sym_GT_GT_GT_EQ] = ACTIONS(168),
- [anon_sym_LT_LT_EQ] = ACTIONS(168),
- [anon_sym_STAR_STAR_EQ] = ACTIONS(168),
- [anon_sym_AMP_AMP_EQ] = ACTIONS(168),
- [anon_sym_PIPE_PIPE_EQ] = ACTIONS(168),
- [anon_sym_QMARK_QMARK_EQ] = ACTIONS(168),
- [anon_sym_AMP_AMP] = ACTIONS(122),
- [anon_sym_PIPE_PIPE] = ACTIONS(122),
- [anon_sym_GT_GT] = ACTIONS(122),
- [anon_sym_GT_GT_GT] = ACTIONS(122),
- [anon_sym_LT_LT] = ACTIONS(122),
- [anon_sym_AMP] = ACTIONS(122),
- [anon_sym_CARET] = ACTIONS(122),
- [anon_sym_PIPE] = ACTIONS(122),
- [anon_sym_PLUS] = ACTIONS(187),
- [anon_sym_DASH] = ACTIONS(187),
- [anon_sym_SLASH] = ACTIONS(83),
- [anon_sym_PERCENT] = ACTIONS(122),
- [anon_sym_STAR_STAR] = ACTIONS(122),
- [anon_sym_LT] = ACTIONS(181),
- [anon_sym_LT_EQ] = ACTIONS(162),
- [anon_sym_EQ_EQ] = ACTIONS(122),
- [anon_sym_EQ_EQ_EQ] = ACTIONS(162),
- [anon_sym_BANG_EQ] = ACTIONS(122),
- [anon_sym_BANG_EQ_EQ] = ACTIONS(162),
- [anon_sym_GT_EQ] = ACTIONS(162),
- [anon_sym_QMARK_QMARK] = ACTIONS(122),
- [anon_sym_instanceof] = ACTIONS(122),
- [anon_sym_TILDE] = ACTIONS(183),
- [anon_sym_void] = ACTIONS(187),
- [anon_sym_delete] = ACTIONS(187),
- [anon_sym_PLUS_PLUS] = ACTIONS(719),
- [anon_sym_DASH_DASH] = ACTIONS(719),
- [sym_comment] = ACTIONS(5),
- [anon_sym_BQUOTE] = ACTIONS(89),
- [sym_number] = ACTIONS(91),
- [sym_private_property_identifier] = ACTIONS(196),
- [sym_this] = ACTIONS(95),
- [sym_super] = ACTIONS(95),
- [sym_true] = ACTIONS(95),
- [sym_false] = ACTIONS(95),
- [sym_null] = ACTIONS(95),
- [sym_undefined] = ACTIONS(721),
- [anon_sym_AT] = ACTIONS(99),
- [anon_sym_static] = ACTIONS(694),
- [anon_sym_readonly] = ACTIONS(694),
- [anon_sym_get] = ACTIONS(694),
- [anon_sym_set] = ACTIONS(694),
- [anon_sym_declare] = ACTIONS(694),
- [anon_sym_public] = ACTIONS(694),
- [anon_sym_private] = ACTIONS(694),
- [anon_sym_protected] = ACTIONS(694),
- [anon_sym_override] = ACTIONS(694),
- [anon_sym_module] = ACTIONS(694),
- [anon_sym_any] = ACTIONS(694),
- [anon_sym_number] = ACTIONS(694),
- [anon_sym_boolean] = ACTIONS(694),
- [anon_sym_string] = ACTIONS(694),
- [anon_sym_symbol] = ACTIONS(694),
- [anon_sym_object] = ACTIONS(694),
- [anon_sym_satisfies] = ACTIONS(122),
- [sym__automatic_semicolon] = ACTIONS(162),
- [sym__ternary_qmark] = ACTIONS(162),
- [sym_html_comment] = ACTIONS(5),
- },
- [106] = {
- [sym_import] = STATE(3334),
- [sym_parenthesized_expression] = STATE(1179),
- [sym_expression] = STATE(2415),
- [sym_primary_expression] = STATE(1430),
- [sym_yield_expression] = STATE(1634),
- [sym_object] = STATE(1650),
- [sym_object_pattern] = STATE(5854),
- [sym_array] = STATE(1650),
- [sym_array_pattern] = STATE(5854),
- [sym_glimmer_template] = STATE(1634),
- [sym_jsx_element] = STATE(1634),
- [sym_jsx_opening_element] = STATE(3026),
- [sym_jsx_self_closing_element] = STATE(1634),
- [sym_class] = STATE(1650),
- [sym_function_expression] = STATE(1650),
- [sym_generator_function] = STATE(1650),
- [sym_arrow_function] = STATE(1650),
- [sym__call_signature] = STATE(5828),
- [sym_call_expression] = STATE(1650),
- [sym_new_expression] = STATE(1634),
- [sym_await_expression] = STATE(1634),
- [sym_member_expression] = STATE(1179),
- [sym_subscript_expression] = STATE(1179),
- [sym_assignment_expression] = STATE(1634),
- [sym__augmented_assignment_lhs] = STATE(2878),
- [sym_augmented_assignment_expression] = STATE(1634),
- [sym__destructuring_pattern] = STATE(5854),
- [sym_ternary_expression] = STATE(1634),
- [sym_binary_expression] = STATE(1634),
- [sym_unary_expression] = STATE(1634),
- [sym_update_expression] = STATE(1634),
- [sym_string] = STATE(1650),
- [sym_template_string] = STATE(1650),
- [sym_regex] = STATE(1650),
- [sym_meta_property] = STATE(1650),
- [sym_decorator] = STATE(1244),
- [sym_formal_parameters] = STATE(3915),
- [sym_non_null_expression] = STATE(1179),
- [sym_as_expression] = STATE(1634),
- [sym_satisfies_expression] = STATE(1634),
- [sym_instantiation_expression] = STATE(1634),
- [sym_internal_module] = STATE(1634),
- [sym_type_parameters] = STATE(5206),
- [aux_sym_export_statement_repeat1] = STATE(4458),
- [sym_identifier] = ACTIONS(807),
- [anon_sym_export] = ACTIONS(809),
- [anon_sym_STAR] = ACTIONS(122),
- [anon_sym_type] = ACTIONS(809),
- [anon_sym_EQ] = ACTIONS(857),
- [anon_sym_as] = ACTIONS(122),
- [anon_sym_namespace] = ACTIONS(811),
- [anon_sym_LBRACE] = ACTIONS(813),
- [anon_sym_COMMA] = ACTIONS(888),
- [anon_sym_typeof] = ACTIONS(187),
- [anon_sym_import] = ACTIONS(133),
- [anon_sym_let] = ACTIONS(809),
- [anon_sym_BANG] = ACTIONS(187),
- [anon_sym_LPAREN] = ACTIONS(815),
- [anon_sym_await] = ACTIONS(142),
- [anon_sym_in] = ACTIONS(122),
- [anon_sym_COLON] = ACTIONS(847),
- [anon_sym_yield] = ACTIONS(144),
- [anon_sym_LBRACK] = ACTIONS(817),
- [anon_sym_RBRACK] = ACTIONS(888),
- [sym_glimmer_opening_tag] = ACTIONS(148),
- [anon_sym_GT] = ACTIONS(122),
- [anon_sym_DOT] = ACTIONS(819),
- [anon_sym_DQUOTE] = ACTIONS(150),
- [anon_sym_SQUOTE] = ACTIONS(152),
- [anon_sym_class] = ACTIONS(154),
- [anon_sym_async] = ACTIONS(821),
- [anon_sym_function] = ACTIONS(158),
- [anon_sym_EQ_GT] = ACTIONS(160),
- [anon_sym_QMARK_DOT] = ACTIONS(162),
- [anon_sym_new] = ACTIONS(823),
- [anon_sym_using] = ACTIONS(166),
- [anon_sym_PLUS_EQ] = ACTIONS(168),
- [anon_sym_DASH_EQ] = ACTIONS(168),
- [anon_sym_STAR_EQ] = ACTIONS(168),
- [anon_sym_SLASH_EQ] = ACTIONS(168),
- [anon_sym_PERCENT_EQ] = ACTIONS(168),
- [anon_sym_CARET_EQ] = ACTIONS(168),
- [anon_sym_AMP_EQ] = ACTIONS(168),
- [anon_sym_PIPE_EQ] = ACTIONS(168),
- [anon_sym_GT_GT_EQ] = ACTIONS(168),
- [anon_sym_GT_GT_GT_EQ] = ACTIONS(168),
- [anon_sym_LT_LT_EQ] = ACTIONS(168),
- [anon_sym_STAR_STAR_EQ] = ACTIONS(168),
- [anon_sym_AMP_AMP_EQ] = ACTIONS(168),
- [anon_sym_PIPE_PIPE_EQ] = ACTIONS(168),
- [anon_sym_QMARK_QMARK_EQ] = ACTIONS(168),
- [anon_sym_AMP_AMP] = ACTIONS(122),
- [anon_sym_PIPE_PIPE] = ACTIONS(122),
- [anon_sym_GT_GT] = ACTIONS(122),
- [anon_sym_GT_GT_GT] = ACTIONS(122),
- [anon_sym_LT_LT] = ACTIONS(122),
- [anon_sym_AMP] = ACTIONS(122),
- [anon_sym_CARET] = ACTIONS(122),
- [anon_sym_PIPE] = ACTIONS(122),
- [anon_sym_PLUS] = ACTIONS(187),
- [anon_sym_DASH] = ACTIONS(187),
- [anon_sym_SLASH] = ACTIONS(646),
- [anon_sym_PERCENT] = ACTIONS(122),
- [anon_sym_STAR_STAR] = ACTIONS(122),
- [anon_sym_LT] = ACTIONS(181),
- [anon_sym_LT_EQ] = ACTIONS(162),
- [anon_sym_EQ_EQ] = ACTIONS(122),
- [anon_sym_EQ_EQ_EQ] = ACTIONS(162),
- [anon_sym_BANG_EQ] = ACTIONS(122),
- [anon_sym_BANG_EQ_EQ] = ACTIONS(162),
- [anon_sym_GT_EQ] = ACTIONS(162),
- [anon_sym_QMARK_QMARK] = ACTIONS(122),
- [anon_sym_instanceof] = ACTIONS(122),
- [anon_sym_TILDE] = ACTIONS(183),
- [anon_sym_void] = ACTIONS(187),
- [anon_sym_delete] = ACTIONS(187),
- [anon_sym_PLUS_PLUS] = ACTIONS(719),
- [anon_sym_DASH_DASH] = ACTIONS(719),
- [sym_comment] = ACTIONS(5),
- [anon_sym_BQUOTE] = ACTIONS(825),
- [sym_number] = ACTIONS(787),
- [sym_private_property_identifier] = ACTIONS(196),
- [sym_this] = ACTIONS(200),
- [sym_super] = ACTIONS(200),
- [sym_true] = ACTIONS(200),
- [sym_false] = ACTIONS(200),
- [sym_null] = ACTIONS(200),
- [sym_undefined] = ACTIONS(827),
- [anon_sym_AT] = ACTIONS(99),
- [anon_sym_static] = ACTIONS(809),
- [anon_sym_readonly] = ACTIONS(809),
- [anon_sym_get] = ACTIONS(809),
- [anon_sym_set] = ACTIONS(809),
- [anon_sym_declare] = ACTIONS(809),
- [anon_sym_public] = ACTIONS(809),
- [anon_sym_private] = ACTIONS(809),
- [anon_sym_protected] = ACTIONS(809),
- [anon_sym_override] = ACTIONS(809),
- [anon_sym_module] = ACTIONS(809),
- [anon_sym_any] = ACTIONS(809),
- [anon_sym_number] = ACTIONS(809),
- [anon_sym_boolean] = ACTIONS(809),
- [anon_sym_string] = ACTIONS(809),
- [anon_sym_symbol] = ACTIONS(809),
- [anon_sym_object] = ACTIONS(809),
- [anon_sym_satisfies] = ACTIONS(122),
- [sym__ternary_qmark] = ACTIONS(162),
- [sym_html_comment] = ACTIONS(5),
- },
- [107] = {
- [sym_import] = STATE(3334),
- [sym_parenthesized_expression] = STATE(1179),
- [sym_expression] = STATE(2415),
- [sym_primary_expression] = STATE(1430),
- [sym_yield_expression] = STATE(1634),
- [sym_object] = STATE(1650),
- [sym_object_pattern] = STATE(5854),
- [sym_array] = STATE(1650),
- [sym_array_pattern] = STATE(5854),
- [sym_glimmer_template] = STATE(1634),
- [sym_jsx_element] = STATE(1634),
- [sym_jsx_opening_element] = STATE(3026),
- [sym_jsx_self_closing_element] = STATE(1634),
- [sym_class] = STATE(1650),
- [sym_function_expression] = STATE(1650),
- [sym_generator_function] = STATE(1650),
- [sym_arrow_function] = STATE(1650),
- [sym__call_signature] = STATE(5765),
- [sym_call_expression] = STATE(1650),
- [sym_new_expression] = STATE(1634),
- [sym_await_expression] = STATE(1634),
- [sym_member_expression] = STATE(1179),
- [sym_subscript_expression] = STATE(1179),
- [sym_assignment_expression] = STATE(1634),
- [sym__augmented_assignment_lhs] = STATE(2878),
- [sym_augmented_assignment_expression] = STATE(1634),
- [sym__destructuring_pattern] = STATE(5854),
- [sym_ternary_expression] = STATE(1634),
- [sym_binary_expression] = STATE(1634),
- [sym_unary_expression] = STATE(1634),
- [sym_update_expression] = STATE(1634),
- [sym_string] = STATE(1650),
- [sym_template_string] = STATE(1650),
- [sym_regex] = STATE(1650),
- [sym_meta_property] = STATE(1650),
- [sym_decorator] = STATE(1244),
- [sym_formal_parameters] = STATE(3742),
- [sym_non_null_expression] = STATE(1179),
- [sym_as_expression] = STATE(1634),
- [sym_satisfies_expression] = STATE(1634),
- [sym_instantiation_expression] = STATE(1634),
- [sym_internal_module] = STATE(1634),
- [sym_type_parameters] = STATE(5349),
- [aux_sym_export_statement_repeat1] = STATE(4458),
- [sym_identifier] = ACTIONS(891),
- [anon_sym_export] = ACTIONS(893),
- [anon_sym_STAR] = ACTIONS(122),
- [anon_sym_type] = ACTIONS(893),
- [anon_sym_EQ] = ACTIONS(895),
- [anon_sym_as] = ACTIONS(122),
- [anon_sym_namespace] = ACTIONS(898),
- [anon_sym_LBRACE] = ACTIONS(813),
- [anon_sym_COMMA] = ACTIONS(227),
- [anon_sym_typeof] = ACTIONS(187),
- [anon_sym_import] = ACTIONS(133),
- [anon_sym_let] = ACTIONS(893),
- [anon_sym_BANG] = ACTIONS(187),
- [anon_sym_LPAREN] = ACTIONS(815),
- [anon_sym_await] = ACTIONS(142),
- [anon_sym_in] = ACTIONS(122),
- [anon_sym_COLON] = ACTIONS(900),
- [anon_sym_yield] = ACTIONS(144),
- [anon_sym_LBRACK] = ACTIONS(817),
- [anon_sym_RBRACK] = ACTIONS(128),
- [sym_glimmer_opening_tag] = ACTIONS(148),
- [anon_sym_GT] = ACTIONS(122),
- [anon_sym_DOT] = ACTIONS(819),
- [anon_sym_DQUOTE] = ACTIONS(150),
- [anon_sym_SQUOTE] = ACTIONS(152),
- [anon_sym_class] = ACTIONS(154),
- [anon_sym_async] = ACTIONS(902),
- [anon_sym_function] = ACTIONS(158),
- [anon_sym_EQ_GT] = ACTIONS(904),
- [anon_sym_QMARK_DOT] = ACTIONS(162),
- [anon_sym_new] = ACTIONS(906),
- [anon_sym_using] = ACTIONS(166),
- [anon_sym_PLUS_EQ] = ACTIONS(168),
- [anon_sym_DASH_EQ] = ACTIONS(168),
- [anon_sym_STAR_EQ] = ACTIONS(168),
- [anon_sym_SLASH_EQ] = ACTIONS(168),
- [anon_sym_PERCENT_EQ] = ACTIONS(168),
- [anon_sym_CARET_EQ] = ACTIONS(168),
- [anon_sym_AMP_EQ] = ACTIONS(168),
- [anon_sym_PIPE_EQ] = ACTIONS(168),
- [anon_sym_GT_GT_EQ] = ACTIONS(168),
- [anon_sym_GT_GT_GT_EQ] = ACTIONS(168),
- [anon_sym_LT_LT_EQ] = ACTIONS(168),
- [anon_sym_STAR_STAR_EQ] = ACTIONS(168),
- [anon_sym_AMP_AMP_EQ] = ACTIONS(168),
- [anon_sym_PIPE_PIPE_EQ] = ACTIONS(168),
- [anon_sym_QMARK_QMARK_EQ] = ACTIONS(168),
- [anon_sym_AMP_AMP] = ACTIONS(122),
- [anon_sym_PIPE_PIPE] = ACTIONS(122),
- [anon_sym_GT_GT] = ACTIONS(122),
- [anon_sym_GT_GT_GT] = ACTIONS(122),
- [anon_sym_LT_LT] = ACTIONS(122),
- [anon_sym_AMP] = ACTIONS(122),
- [anon_sym_CARET] = ACTIONS(122),
- [anon_sym_PIPE] = ACTIONS(122),
- [anon_sym_PLUS] = ACTIONS(187),
- [anon_sym_DASH] = ACTIONS(187),
- [anon_sym_SLASH] = ACTIONS(646),
- [anon_sym_PERCENT] = ACTIONS(122),
- [anon_sym_STAR_STAR] = ACTIONS(122),
- [anon_sym_LT] = ACTIONS(181),
- [anon_sym_LT_EQ] = ACTIONS(162),
- [anon_sym_EQ_EQ] = ACTIONS(122),
- [anon_sym_EQ_EQ_EQ] = ACTIONS(162),
- [anon_sym_BANG_EQ] = ACTIONS(122),
- [anon_sym_BANG_EQ_EQ] = ACTIONS(162),
- [anon_sym_GT_EQ] = ACTIONS(162),
- [anon_sym_QMARK_QMARK] = ACTIONS(122),
- [anon_sym_instanceof] = ACTIONS(122),
- [anon_sym_TILDE] = ACTIONS(183),
- [anon_sym_void] = ACTIONS(187),
- [anon_sym_delete] = ACTIONS(187),
- [anon_sym_PLUS_PLUS] = ACTIONS(719),
- [anon_sym_DASH_DASH] = ACTIONS(719),
- [sym_comment] = ACTIONS(5),
- [anon_sym_BQUOTE] = ACTIONS(825),
- [sym_number] = ACTIONS(787),
- [sym_private_property_identifier] = ACTIONS(196),
- [sym_this] = ACTIONS(200),
- [sym_super] = ACTIONS(200),
- [sym_true] = ACTIONS(200),
- [sym_false] = ACTIONS(200),
- [sym_null] = ACTIONS(200),
- [sym_undefined] = ACTIONS(827),
- [anon_sym_AT] = ACTIONS(99),
- [anon_sym_static] = ACTIONS(893),
- [anon_sym_readonly] = ACTIONS(893),
- [anon_sym_get] = ACTIONS(893),
- [anon_sym_set] = ACTIONS(893),
- [anon_sym_declare] = ACTIONS(893),
- [anon_sym_public] = ACTIONS(893),
- [anon_sym_private] = ACTIONS(893),
- [anon_sym_protected] = ACTIONS(893),
- [anon_sym_override] = ACTIONS(893),
- [anon_sym_module] = ACTIONS(893),
- [anon_sym_any] = ACTIONS(893),
- [anon_sym_number] = ACTIONS(893),
- [anon_sym_boolean] = ACTIONS(893),
- [anon_sym_string] = ACTIONS(893),
- [anon_sym_symbol] = ACTIONS(893),
- [anon_sym_object] = ACTIONS(893),
- [anon_sym_satisfies] = ACTIONS(122),
- [sym__ternary_qmark] = ACTIONS(162),
- [sym_html_comment] = ACTIONS(5),
- },
- [108] = {
- [sym_import] = STATE(3334),
- [sym_parenthesized_expression] = STATE(1179),
- [sym_expression] = STATE(2415),
- [sym_primary_expression] = STATE(1430),
- [sym_yield_expression] = STATE(1634),
- [sym_object] = STATE(1650),
- [sym_object_pattern] = STATE(5854),
- [sym_array] = STATE(1650),
- [sym_array_pattern] = STATE(5854),
- [sym_glimmer_template] = STATE(1634),
- [sym_jsx_element] = STATE(1634),
- [sym_jsx_opening_element] = STATE(3026),
- [sym_jsx_self_closing_element] = STATE(1634),
- [sym_class] = STATE(1650),
- [sym_function_expression] = STATE(1650),
- [sym_generator_function] = STATE(1650),
- [sym_arrow_function] = STATE(1650),
- [sym__call_signature] = STATE(5828),
- [sym_call_expression] = STATE(1650),
- [sym_new_expression] = STATE(1634),
- [sym_await_expression] = STATE(1634),
- [sym_member_expression] = STATE(1179),
- [sym_subscript_expression] = STATE(1179),
- [sym_assignment_expression] = STATE(1634),
- [sym__augmented_assignment_lhs] = STATE(2878),
- [sym_augmented_assignment_expression] = STATE(1634),
- [sym__destructuring_pattern] = STATE(5854),
- [sym_ternary_expression] = STATE(1634),
- [sym_binary_expression] = STATE(1634),
- [sym_unary_expression] = STATE(1634),
- [sym_update_expression] = STATE(1634),
- [sym_string] = STATE(1650),
- [sym_template_string] = STATE(1650),
- [sym_regex] = STATE(1650),
- [sym_meta_property] = STATE(1650),
- [sym_decorator] = STATE(1244),
- [sym_formal_parameters] = STATE(3742),
- [sym_non_null_expression] = STATE(1179),
- [sym_as_expression] = STATE(1634),
- [sym_satisfies_expression] = STATE(1634),
- [sym_instantiation_expression] = STATE(1634),
- [sym_internal_module] = STATE(1634),
- [sym_type_parameters] = STATE(5349),
- [aux_sym_export_statement_repeat1] = STATE(4458),
- [sym_identifier] = ACTIONS(807),
- [anon_sym_export] = ACTIONS(809),
- [anon_sym_STAR] = ACTIONS(122),
- [anon_sym_type] = ACTIONS(809),
- [anon_sym_EQ] = ACTIONS(857),
- [anon_sym_as] = ACTIONS(122),
- [anon_sym_namespace] = ACTIONS(811),
- [anon_sym_LBRACE] = ACTIONS(813),
- [anon_sym_COMMA] = ACTIONS(888),
- [anon_sym_RBRACE] = ACTIONS(888),
- [anon_sym_typeof] = ACTIONS(187),
- [anon_sym_import] = ACTIONS(133),
- [anon_sym_let] = ACTIONS(809),
- [anon_sym_BANG] = ACTIONS(187),
- [anon_sym_LPAREN] = ACTIONS(815),
- [anon_sym_await] = ACTIONS(142),
- [anon_sym_in] = ACTIONS(122),
- [anon_sym_yield] = ACTIONS(144),
- [anon_sym_LBRACK] = ACTIONS(817),
- [anon_sym_RBRACK] = ACTIONS(888),
- [sym_glimmer_opening_tag] = ACTIONS(148),
- [anon_sym_GT] = ACTIONS(122),
- [anon_sym_DOT] = ACTIONS(819),
- [anon_sym_DQUOTE] = ACTIONS(150),
- [anon_sym_SQUOTE] = ACTIONS(152),
- [anon_sym_class] = ACTIONS(154),
- [anon_sym_async] = ACTIONS(821),
- [anon_sym_function] = ACTIONS(158),
- [anon_sym_EQ_GT] = ACTIONS(160),
- [anon_sym_QMARK_DOT] = ACTIONS(162),
- [anon_sym_new] = ACTIONS(823),
- [anon_sym_using] = ACTIONS(166),
- [anon_sym_PLUS_EQ] = ACTIONS(168),
- [anon_sym_DASH_EQ] = ACTIONS(168),
- [anon_sym_STAR_EQ] = ACTIONS(168),
- [anon_sym_SLASH_EQ] = ACTIONS(168),
- [anon_sym_PERCENT_EQ] = ACTIONS(168),
- [anon_sym_CARET_EQ] = ACTIONS(168),
- [anon_sym_AMP_EQ] = ACTIONS(168),
- [anon_sym_PIPE_EQ] = ACTIONS(168),
- [anon_sym_GT_GT_EQ] = ACTIONS(168),
- [anon_sym_GT_GT_GT_EQ] = ACTIONS(168),
- [anon_sym_LT_LT_EQ] = ACTIONS(168),
- [anon_sym_STAR_STAR_EQ] = ACTIONS(168),
- [anon_sym_AMP_AMP_EQ] = ACTIONS(168),
- [anon_sym_PIPE_PIPE_EQ] = ACTIONS(168),
- [anon_sym_QMARK_QMARK_EQ] = ACTIONS(168),
- [anon_sym_AMP_AMP] = ACTIONS(122),
- [anon_sym_PIPE_PIPE] = ACTIONS(122),
- [anon_sym_GT_GT] = ACTIONS(122),
- [anon_sym_GT_GT_GT] = ACTIONS(122),
- [anon_sym_LT_LT] = ACTIONS(122),
- [anon_sym_AMP] = ACTIONS(122),
- [anon_sym_CARET] = ACTIONS(122),
- [anon_sym_PIPE] = ACTIONS(122),
- [anon_sym_PLUS] = ACTIONS(187),
- [anon_sym_DASH] = ACTIONS(187),
- [anon_sym_SLASH] = ACTIONS(646),
- [anon_sym_PERCENT] = ACTIONS(122),
- [anon_sym_STAR_STAR] = ACTIONS(122),
- [anon_sym_LT] = ACTIONS(181),
- [anon_sym_LT_EQ] = ACTIONS(162),
- [anon_sym_EQ_EQ] = ACTIONS(122),
- [anon_sym_EQ_EQ_EQ] = ACTIONS(162),
- [anon_sym_BANG_EQ] = ACTIONS(122),
- [anon_sym_BANG_EQ_EQ] = ACTIONS(162),
- [anon_sym_GT_EQ] = ACTIONS(162),
- [anon_sym_QMARK_QMARK] = ACTIONS(122),
- [anon_sym_instanceof] = ACTIONS(122),
- [anon_sym_TILDE] = ACTIONS(183),
- [anon_sym_void] = ACTIONS(187),
- [anon_sym_delete] = ACTIONS(187),
- [anon_sym_PLUS_PLUS] = ACTIONS(719),
- [anon_sym_DASH_DASH] = ACTIONS(719),
- [sym_comment] = ACTIONS(5),
- [anon_sym_BQUOTE] = ACTIONS(825),
- [sym_number] = ACTIONS(787),
- [sym_private_property_identifier] = ACTIONS(196),
- [sym_this] = ACTIONS(200),
- [sym_super] = ACTIONS(200),
- [sym_true] = ACTIONS(200),
- [sym_false] = ACTIONS(200),
- [sym_null] = ACTIONS(200),
- [sym_undefined] = ACTIONS(827),
- [anon_sym_AT] = ACTIONS(99),
- [anon_sym_static] = ACTIONS(809),
- [anon_sym_readonly] = ACTIONS(809),
- [anon_sym_get] = ACTIONS(809),
- [anon_sym_set] = ACTIONS(809),
- [anon_sym_declare] = ACTIONS(809),
- [anon_sym_public] = ACTIONS(809),
- [anon_sym_private] = ACTIONS(809),
- [anon_sym_protected] = ACTIONS(809),
- [anon_sym_override] = ACTIONS(809),
- [anon_sym_module] = ACTIONS(809),
- [anon_sym_any] = ACTIONS(809),
- [anon_sym_number] = ACTIONS(809),
- [anon_sym_boolean] = ACTIONS(809),
- [anon_sym_string] = ACTIONS(809),
- [anon_sym_symbol] = ACTIONS(809),
- [anon_sym_object] = ACTIONS(809),
- [anon_sym_satisfies] = ACTIONS(122),
- [sym__ternary_qmark] = ACTIONS(162),
- [sym_html_comment] = ACTIONS(5),
- },
- [109] = {
- [sym_import] = STATE(3334),
- [sym_parenthesized_expression] = STATE(1179),
- [sym_expression] = STATE(2415),
- [sym_primary_expression] = STATE(1430),
- [sym_yield_expression] = STATE(1634),
- [sym_object] = STATE(1650),
- [sym_object_pattern] = STATE(5854),
- [sym_array] = STATE(1650),
- [sym_array_pattern] = STATE(5854),
- [sym_glimmer_template] = STATE(1634),
- [sym_jsx_element] = STATE(1634),
- [sym_jsx_opening_element] = STATE(3026),
- [sym_jsx_self_closing_element] = STATE(1634),
- [sym_class] = STATE(1650),
- [sym_function_expression] = STATE(1650),
- [sym_generator_function] = STATE(1650),
- [sym_arrow_function] = STATE(1650),
- [sym__call_signature] = STATE(5743),
- [sym_call_expression] = STATE(1650),
- [sym_new_expression] = STATE(1634),
- [sym_await_expression] = STATE(1634),
- [sym_member_expression] = STATE(1179),
- [sym_subscript_expression] = STATE(1179),
- [sym_assignment_expression] = STATE(1634),
- [sym__augmented_assignment_lhs] = STATE(2878),
- [sym_augmented_assignment_expression] = STATE(1634),
- [sym__destructuring_pattern] = STATE(5854),
- [sym_ternary_expression] = STATE(1634),
- [sym_binary_expression] = STATE(1634),
- [sym_unary_expression] = STATE(1634),
- [sym_update_expression] = STATE(1634),
- [sym_string] = STATE(1650),
- [sym_template_string] = STATE(1650),
- [sym_regex] = STATE(1650),
- [sym_meta_property] = STATE(1650),
- [sym_decorator] = STATE(1244),
- [sym_formal_parameters] = STATE(3742),
- [sym_non_null_expression] = STATE(1179),
- [sym_as_expression] = STATE(1634),
- [sym_satisfies_expression] = STATE(1634),
- [sym_instantiation_expression] = STATE(1634),
- [sym_internal_module] = STATE(1634),
- [sym_type_parameters] = STATE(5349),
- [aux_sym_export_statement_repeat1] = STATE(4458),
- [sym_identifier] = ACTIONS(908),
- [anon_sym_export] = ACTIONS(910),
- [anon_sym_STAR] = ACTIONS(122),
- [anon_sym_type] = ACTIONS(910),
- [anon_sym_EQ] = ACTIONS(912),
- [anon_sym_as] = ACTIONS(122),
- [anon_sym_namespace] = ACTIONS(914),
- [anon_sym_LBRACE] = ACTIONS(813),
- [anon_sym_COMMA] = ACTIONS(162),
- [anon_sym_typeof] = ACTIONS(187),
- [anon_sym_import] = ACTIONS(133),
- [anon_sym_let] = ACTIONS(910),
- [anon_sym_BANG] = ACTIONS(187),
- [anon_sym_LPAREN] = ACTIONS(815),
- [anon_sym_await] = ACTIONS(142),
- [anon_sym_in] = ACTIONS(122),
- [anon_sym_yield] = ACTIONS(144),
- [anon_sym_LBRACK] = ACTIONS(817),
- [sym_glimmer_opening_tag] = ACTIONS(148),
- [anon_sym_GT] = ACTIONS(122),
- [anon_sym_DOT] = ACTIONS(819),
- [anon_sym_DQUOTE] = ACTIONS(150),
- [anon_sym_SQUOTE] = ACTIONS(152),
- [anon_sym_class] = ACTIONS(154),
- [anon_sym_async] = ACTIONS(916),
- [anon_sym_function] = ACTIONS(158),
- [anon_sym_EQ_GT] = ACTIONS(918),
- [anon_sym_QMARK_DOT] = ACTIONS(162),
- [anon_sym_new] = ACTIONS(920),
- [anon_sym_using] = ACTIONS(166),
- [anon_sym_PLUS_EQ] = ACTIONS(168),
- [anon_sym_DASH_EQ] = ACTIONS(168),
- [anon_sym_STAR_EQ] = ACTIONS(168),
- [anon_sym_SLASH_EQ] = ACTIONS(168),
- [anon_sym_PERCENT_EQ] = ACTIONS(168),
- [anon_sym_CARET_EQ] = ACTIONS(168),
- [anon_sym_AMP_EQ] = ACTIONS(168),
- [anon_sym_PIPE_EQ] = ACTIONS(168),
- [anon_sym_GT_GT_EQ] = ACTIONS(168),
- [anon_sym_GT_GT_GT_EQ] = ACTIONS(168),
- [anon_sym_LT_LT_EQ] = ACTIONS(168),
- [anon_sym_STAR_STAR_EQ] = ACTIONS(168),
- [anon_sym_AMP_AMP_EQ] = ACTIONS(168),
- [anon_sym_PIPE_PIPE_EQ] = ACTIONS(168),
- [anon_sym_QMARK_QMARK_EQ] = ACTIONS(168),
- [anon_sym_AMP_AMP] = ACTIONS(122),
- [anon_sym_PIPE_PIPE] = ACTIONS(122),
- [anon_sym_GT_GT] = ACTIONS(122),
- [anon_sym_GT_GT_GT] = ACTIONS(122),
- [anon_sym_LT_LT] = ACTIONS(122),
- [anon_sym_AMP] = ACTIONS(122),
- [anon_sym_CARET] = ACTIONS(122),
- [anon_sym_PIPE] = ACTIONS(122),
- [anon_sym_PLUS] = ACTIONS(187),
- [anon_sym_DASH] = ACTIONS(187),
- [anon_sym_SLASH] = ACTIONS(922),
- [anon_sym_PERCENT] = ACTIONS(122),
- [anon_sym_STAR_STAR] = ACTIONS(122),
- [anon_sym_LT] = ACTIONS(181),
- [anon_sym_LT_EQ] = ACTIONS(162),
- [anon_sym_EQ_EQ] = ACTIONS(122),
- [anon_sym_EQ_EQ_EQ] = ACTIONS(162),
- [anon_sym_BANG_EQ] = ACTIONS(122),
- [anon_sym_BANG_EQ_EQ] = ACTIONS(162),
- [anon_sym_GT_EQ] = ACTIONS(162),
- [anon_sym_QMARK_QMARK] = ACTIONS(122),
- [anon_sym_instanceof] = ACTIONS(122),
- [anon_sym_TILDE] = ACTIONS(183),
- [anon_sym_void] = ACTIONS(187),
- [anon_sym_delete] = ACTIONS(187),
- [anon_sym_PLUS_PLUS] = ACTIONS(719),
- [anon_sym_DASH_DASH] = ACTIONS(719),
- [sym_comment] = ACTIONS(5),
- [anon_sym_BQUOTE] = ACTIONS(825),
- [sym_number] = ACTIONS(787),
- [sym_private_property_identifier] = ACTIONS(196),
- [sym_this] = ACTIONS(200),
- [sym_super] = ACTIONS(200),
- [sym_true] = ACTIONS(200),
- [sym_false] = ACTIONS(200),
- [sym_null] = ACTIONS(200),
- [sym_undefined] = ACTIONS(827),
- [anon_sym_AT] = ACTIONS(99),
- [anon_sym_static] = ACTIONS(910),
- [anon_sym_readonly] = ACTIONS(910),
- [anon_sym_get] = ACTIONS(910),
- [anon_sym_set] = ACTIONS(910),
- [anon_sym_declare] = ACTIONS(910),
- [anon_sym_public] = ACTIONS(910),
- [anon_sym_private] = ACTIONS(910),
- [anon_sym_protected] = ACTIONS(910),
- [anon_sym_override] = ACTIONS(910),
- [anon_sym_module] = ACTIONS(910),
- [anon_sym_any] = ACTIONS(910),
- [anon_sym_number] = ACTIONS(910),
- [anon_sym_boolean] = ACTIONS(910),
- [anon_sym_string] = ACTIONS(910),
- [anon_sym_symbol] = ACTIONS(910),
- [anon_sym_object] = ACTIONS(910),
- [anon_sym_satisfies] = ACTIONS(122),
- [anon_sym_implements] = ACTIONS(122),
- [sym__ternary_qmark] = ACTIONS(162),
- [sym_html_comment] = ACTIONS(5),
- },
- [110] = {
- [sym_import] = STATE(3334),
- [sym_parenthesized_expression] = STATE(1179),
- [sym_expression] = STATE(2415),
- [sym_primary_expression] = STATE(1430),
- [sym_yield_expression] = STATE(1634),
- [sym_object] = STATE(1650),
- [sym_object_pattern] = STATE(5854),
- [sym_array] = STATE(1650),
- [sym_array_pattern] = STATE(5854),
- [sym_glimmer_template] = STATE(1634),
- [sym_jsx_element] = STATE(1634),
- [sym_jsx_opening_element] = STATE(3026),
- [sym_jsx_self_closing_element] = STATE(1634),
- [sym_class] = STATE(1650),
- [sym_function_expression] = STATE(1650),
- [sym_generator_function] = STATE(1650),
- [sym_arrow_function] = STATE(1650),
- [sym__call_signature] = STATE(5619),
- [sym_call_expression] = STATE(1650),
- [sym_new_expression] = STATE(1634),
- [sym_await_expression] = STATE(1634),
- [sym_member_expression] = STATE(1179),
- [sym_subscript_expression] = STATE(1179),
- [sym_assignment_expression] = STATE(1634),
- [sym__augmented_assignment_lhs] = STATE(2878),
- [sym_augmented_assignment_expression] = STATE(1634),
- [sym__destructuring_pattern] = STATE(5854),
- [sym_ternary_expression] = STATE(1634),
- [sym_binary_expression] = STATE(1634),
- [sym_unary_expression] = STATE(1634),
- [sym_update_expression] = STATE(1634),
- [sym_string] = STATE(1650),
- [sym_template_string] = STATE(1650),
- [sym_regex] = STATE(1650),
- [sym_meta_property] = STATE(1650),
- [sym_decorator] = STATE(1244),
- [sym_formal_parameters] = STATE(3742),
- [sym_non_null_expression] = STATE(1179),
- [sym_as_expression] = STATE(1634),
- [sym_satisfies_expression] = STATE(1634),
- [sym_instantiation_expression] = STATE(1634),
- [sym_internal_module] = STATE(1634),
- [sym_type_parameters] = STATE(5349),
- [aux_sym_export_statement_repeat1] = STATE(4458),
- [sym_identifier] = ACTIONS(837),
- [anon_sym_export] = ACTIONS(839),
- [anon_sym_STAR] = ACTIONS(122),
- [anon_sym_type] = ACTIONS(839),
- [anon_sym_EQ] = ACTIONS(841),
- [anon_sym_as] = ACTIONS(122),
- [anon_sym_namespace] = ACTIONS(843),
- [anon_sym_LBRACE] = ACTIONS(845),
- [anon_sym_COMMA] = ACTIONS(162),
- [anon_sym_typeof] = ACTIONS(187),
- [anon_sym_import] = ACTIONS(133),
- [anon_sym_let] = ACTIONS(839),
- [anon_sym_BANG] = ACTIONS(187),
- [anon_sym_LPAREN] = ACTIONS(815),
- [anon_sym_await] = ACTIONS(142),
- [anon_sym_in] = ACTIONS(122),
- [anon_sym_yield] = ACTIONS(144),
- [anon_sym_LBRACK] = ACTIONS(849),
- [sym_glimmer_opening_tag] = ACTIONS(148),
- [anon_sym_GT] = ACTIONS(122),
- [anon_sym_DOT] = ACTIONS(819),
- [anon_sym_DQUOTE] = ACTIONS(150),
- [anon_sym_SQUOTE] = ACTIONS(152),
- [anon_sym_class] = ACTIONS(154),
- [anon_sym_async] = ACTIONS(851),
- [anon_sym_function] = ACTIONS(158),
- [anon_sym_EQ_GT] = ACTIONS(918),
- [anon_sym_QMARK_DOT] = ACTIONS(162),
- [anon_sym_new] = ACTIONS(853),
- [anon_sym_using] = ACTIONS(166),
- [anon_sym_PLUS_EQ] = ACTIONS(168),
- [anon_sym_DASH_EQ] = ACTIONS(168),
- [anon_sym_STAR_EQ] = ACTIONS(168),
- [anon_sym_SLASH_EQ] = ACTIONS(168),
- [anon_sym_PERCENT_EQ] = ACTIONS(168),
- [anon_sym_CARET_EQ] = ACTIONS(168),
- [anon_sym_AMP_EQ] = ACTIONS(168),
- [anon_sym_PIPE_EQ] = ACTIONS(168),
- [anon_sym_GT_GT_EQ] = ACTIONS(168),
- [anon_sym_GT_GT_GT_EQ] = ACTIONS(168),
- [anon_sym_LT_LT_EQ] = ACTIONS(168),
- [anon_sym_STAR_STAR_EQ] = ACTIONS(168),
- [anon_sym_AMP_AMP_EQ] = ACTIONS(168),
- [anon_sym_PIPE_PIPE_EQ] = ACTIONS(168),
- [anon_sym_QMARK_QMARK_EQ] = ACTIONS(168),
- [anon_sym_AMP_AMP] = ACTIONS(122),
- [anon_sym_PIPE_PIPE] = ACTIONS(122),
- [anon_sym_GT_GT] = ACTIONS(122),
- [anon_sym_GT_GT_GT] = ACTIONS(122),
- [anon_sym_LT_LT] = ACTIONS(122),
- [anon_sym_AMP] = ACTIONS(122),
- [anon_sym_CARET] = ACTIONS(122),
- [anon_sym_PIPE] = ACTIONS(122),
- [anon_sym_PLUS] = ACTIONS(187),
- [anon_sym_DASH] = ACTIONS(187),
- [anon_sym_SLASH] = ACTIONS(646),
- [anon_sym_PERCENT] = ACTIONS(122),
- [anon_sym_STAR_STAR] = ACTIONS(122),
- [anon_sym_LT] = ACTIONS(181),
- [anon_sym_LT_EQ] = ACTIONS(162),
- [anon_sym_EQ_EQ] = ACTIONS(122),
- [anon_sym_EQ_EQ_EQ] = ACTIONS(162),
- [anon_sym_BANG_EQ] = ACTIONS(122),
- [anon_sym_BANG_EQ_EQ] = ACTIONS(162),
- [anon_sym_GT_EQ] = ACTIONS(162),
- [anon_sym_QMARK_QMARK] = ACTIONS(122),
- [anon_sym_instanceof] = ACTIONS(122),
- [anon_sym_TILDE] = ACTIONS(183),
- [anon_sym_void] = ACTIONS(187),
- [anon_sym_delete] = ACTIONS(187),
- [anon_sym_PLUS_PLUS] = ACTIONS(719),
- [anon_sym_DASH_DASH] = ACTIONS(719),
- [sym_comment] = ACTIONS(5),
- [anon_sym_BQUOTE] = ACTIONS(825),
- [sym_number] = ACTIONS(787),
- [sym_private_property_identifier] = ACTIONS(196),
- [sym_this] = ACTIONS(200),
- [sym_super] = ACTIONS(200),
- [sym_true] = ACTIONS(200),
- [sym_false] = ACTIONS(200),
- [sym_null] = ACTIONS(200),
- [sym_undefined] = ACTIONS(827),
- [anon_sym_AT] = ACTIONS(99),
- [anon_sym_static] = ACTIONS(839),
- [anon_sym_readonly] = ACTIONS(839),
- [anon_sym_get] = ACTIONS(839),
- [anon_sym_set] = ACTIONS(839),
- [anon_sym_declare] = ACTIONS(839),
- [anon_sym_public] = ACTIONS(839),
- [anon_sym_private] = ACTIONS(839),
- [anon_sym_protected] = ACTIONS(839),
- [anon_sym_override] = ACTIONS(839),
- [anon_sym_module] = ACTIONS(839),
- [anon_sym_any] = ACTIONS(839),
- [anon_sym_number] = ACTIONS(839),
- [anon_sym_boolean] = ACTIONS(839),
- [anon_sym_string] = ACTIONS(839),
- [anon_sym_symbol] = ACTIONS(839),
- [anon_sym_object] = ACTIONS(839),
- [anon_sym_satisfies] = ACTIONS(122),
- [anon_sym_implements] = ACTIONS(122),
- [sym__ternary_qmark] = ACTIONS(162),
- [sym_html_comment] = ACTIONS(5),
- },
- [111] = {
- [sym_import] = STATE(3334),
- [sym_parenthesized_expression] = STATE(1179),
- [sym_expression] = STATE(2415),
- [sym_primary_expression] = STATE(1430),
- [sym_yield_expression] = STATE(1634),
- [sym_object] = STATE(1650),
- [sym_object_pattern] = STATE(5854),
- [sym_array] = STATE(1650),
- [sym_array_pattern] = STATE(5854),
- [sym_glimmer_template] = STATE(1634),
- [sym_jsx_element] = STATE(1634),
- [sym_jsx_opening_element] = STATE(3026),
- [sym_jsx_self_closing_element] = STATE(1634),
- [sym_class] = STATE(1650),
- [sym_function_expression] = STATE(1650),
- [sym_generator_function] = STATE(1650),
- [sym_arrow_function] = STATE(1650),
- [sym__call_signature] = STATE(5619),
- [sym_call_expression] = STATE(1650),
- [sym_new_expression] = STATE(1634),
- [sym_await_expression] = STATE(1634),
- [sym_member_expression] = STATE(1179),
- [sym_subscript_expression] = STATE(1179),
- [sym_assignment_expression] = STATE(1634),
- [sym__augmented_assignment_lhs] = STATE(2878),
- [sym_augmented_assignment_expression] = STATE(1634),
- [sym__destructuring_pattern] = STATE(5854),
- [sym_ternary_expression] = STATE(1634),
- [sym_binary_expression] = STATE(1634),
- [sym_unary_expression] = STATE(1634),
- [sym_update_expression] = STATE(1634),
- [sym_string] = STATE(1650),
- [sym_template_string] = STATE(1650),
- [sym_regex] = STATE(1650),
- [sym_meta_property] = STATE(1650),
- [sym_decorator] = STATE(1244),
- [sym_formal_parameters] = STATE(3742),
- [sym_non_null_expression] = STATE(1179),
- [sym_as_expression] = STATE(1634),
- [sym_satisfies_expression] = STATE(1634),
- [sym_instantiation_expression] = STATE(1634),
- [sym_internal_module] = STATE(1634),
- [sym_type_parameters] = STATE(5349),
- [aux_sym_export_statement_repeat1] = STATE(4458),
- [sym_identifier] = ACTIONS(837),
- [anon_sym_export] = ACTIONS(839),
- [anon_sym_STAR] = ACTIONS(122),
- [anon_sym_type] = ACTIONS(839),
- [anon_sym_EQ] = ACTIONS(841),
- [anon_sym_as] = ACTIONS(122),
- [anon_sym_namespace] = ACTIONS(843),
- [anon_sym_LBRACE] = ACTIONS(845),
- [anon_sym_typeof] = ACTIONS(187),
- [anon_sym_import] = ACTIONS(133),
- [anon_sym_let] = ACTIONS(839),
- [anon_sym_BANG] = ACTIONS(187),
- [anon_sym_LPAREN] = ACTIONS(815),
- [anon_sym_await] = ACTIONS(142),
- [anon_sym_in] = ACTIONS(122),
- [anon_sym_SEMI] = ACTIONS(162),
- [anon_sym_yield] = ACTIONS(144),
- [anon_sym_LBRACK] = ACTIONS(849),
- [sym_glimmer_opening_tag] = ACTIONS(148),
- [anon_sym_GT] = ACTIONS(122),
- [anon_sym_DOT] = ACTIONS(707),
- [anon_sym_DQUOTE] = ACTIONS(150),
- [anon_sym_SQUOTE] = ACTIONS(152),
- [anon_sym_class] = ACTIONS(154),
- [anon_sym_async] = ACTIONS(851),
- [anon_sym_function] = ACTIONS(158),
- [anon_sym_EQ_GT] = ACTIONS(924),
- [anon_sym_QMARK_DOT] = ACTIONS(162),
- [anon_sym_new] = ACTIONS(853),
- [anon_sym_using] = ACTIONS(166),
- [anon_sym_PLUS_EQ] = ACTIONS(168),
- [anon_sym_DASH_EQ] = ACTIONS(168),
- [anon_sym_STAR_EQ] = ACTIONS(168),
- [anon_sym_SLASH_EQ] = ACTIONS(168),
- [anon_sym_PERCENT_EQ] = ACTIONS(168),
- [anon_sym_CARET_EQ] = ACTIONS(168),
- [anon_sym_AMP_EQ] = ACTIONS(168),
- [anon_sym_PIPE_EQ] = ACTIONS(168),
- [anon_sym_GT_GT_EQ] = ACTIONS(168),
- [anon_sym_GT_GT_GT_EQ] = ACTIONS(168),
- [anon_sym_LT_LT_EQ] = ACTIONS(168),
- [anon_sym_STAR_STAR_EQ] = ACTIONS(168),
- [anon_sym_AMP_AMP_EQ] = ACTIONS(168),
- [anon_sym_PIPE_PIPE_EQ] = ACTIONS(168),
- [anon_sym_QMARK_QMARK_EQ] = ACTIONS(168),
- [anon_sym_AMP_AMP] = ACTIONS(122),
- [anon_sym_PIPE_PIPE] = ACTIONS(122),
- [anon_sym_GT_GT] = ACTIONS(122),
- [anon_sym_GT_GT_GT] = ACTIONS(122),
- [anon_sym_LT_LT] = ACTIONS(122),
- [anon_sym_AMP] = ACTIONS(122),
- [anon_sym_CARET] = ACTIONS(122),
- [anon_sym_PIPE] = ACTIONS(122),
- [anon_sym_PLUS] = ACTIONS(187),
- [anon_sym_DASH] = ACTIONS(187),
- [anon_sym_SLASH] = ACTIONS(646),
- [anon_sym_PERCENT] = ACTIONS(122),
- [anon_sym_STAR_STAR] = ACTIONS(122),
- [anon_sym_LT] = ACTIONS(181),
- [anon_sym_LT_EQ] = ACTIONS(162),
- [anon_sym_EQ_EQ] = ACTIONS(122),
- [anon_sym_EQ_EQ_EQ] = ACTIONS(162),
- [anon_sym_BANG_EQ] = ACTIONS(122),
- [anon_sym_BANG_EQ_EQ] = ACTIONS(162),
- [anon_sym_GT_EQ] = ACTIONS(162),
- [anon_sym_QMARK_QMARK] = ACTIONS(122),
- [anon_sym_instanceof] = ACTIONS(122),
- [anon_sym_TILDE] = ACTIONS(183),
- [anon_sym_void] = ACTIONS(187),
- [anon_sym_delete] = ACTIONS(187),
- [anon_sym_PLUS_PLUS] = ACTIONS(719),
- [anon_sym_DASH_DASH] = ACTIONS(719),
- [sym_comment] = ACTIONS(5),
- [anon_sym_BQUOTE] = ACTIONS(825),
- [sym_number] = ACTIONS(787),
- [sym_private_property_identifier] = ACTIONS(196),
- [sym_this] = ACTIONS(200),
- [sym_super] = ACTIONS(200),
- [sym_true] = ACTIONS(200),
- [sym_false] = ACTIONS(200),
- [sym_null] = ACTIONS(200),
- [sym_undefined] = ACTIONS(827),
- [anon_sym_AT] = ACTIONS(99),
- [anon_sym_static] = ACTIONS(839),
- [anon_sym_readonly] = ACTIONS(839),
- [anon_sym_get] = ACTIONS(839),
- [anon_sym_set] = ACTIONS(839),
- [anon_sym_declare] = ACTIONS(839),
- [anon_sym_public] = ACTIONS(839),
- [anon_sym_private] = ACTIONS(839),
- [anon_sym_protected] = ACTIONS(839),
- [anon_sym_override] = ACTIONS(839),
- [anon_sym_module] = ACTIONS(839),
- [anon_sym_any] = ACTIONS(839),
- [anon_sym_number] = ACTIONS(839),
- [anon_sym_boolean] = ACTIONS(839),
- [anon_sym_string] = ACTIONS(839),
- [anon_sym_symbol] = ACTIONS(839),
- [anon_sym_object] = ACTIONS(839),
- [anon_sym_satisfies] = ACTIONS(122),
- [sym__automatic_semicolon] = ACTIONS(162),
- [sym__ternary_qmark] = ACTIONS(162),
- [sym_html_comment] = ACTIONS(5),
- },
- [112] = {
- [sym_import] = STATE(3334),
- [sym_parenthesized_expression] = STATE(1179),
- [sym_expression] = STATE(2415),
- [sym_primary_expression] = STATE(1430),
- [sym_yield_expression] = STATE(1634),
- [sym_object] = STATE(1650),
- [sym_object_pattern] = STATE(5854),
- [sym_array] = STATE(1650),
- [sym_array_pattern] = STATE(5854),
- [sym_glimmer_template] = STATE(1634),
- [sym_jsx_element] = STATE(1634),
- [sym_jsx_opening_element] = STATE(3026),
- [sym_jsx_self_closing_element] = STATE(1634),
- [sym_class] = STATE(1650),
- [sym_function_expression] = STATE(1650),
- [sym_generator_function] = STATE(1650),
- [sym_arrow_function] = STATE(1650),
- [sym__call_signature] = STATE(5765),
- [sym_call_expression] = STATE(1650),
- [sym_new_expression] = STATE(1634),
- [sym_await_expression] = STATE(1634),
- [sym_member_expression] = STATE(1179),
- [sym_subscript_expression] = STATE(1179),
- [sym_assignment_expression] = STATE(1634),
- [sym__augmented_assignment_lhs] = STATE(2878),
- [sym_augmented_assignment_expression] = STATE(1634),
- [sym__destructuring_pattern] = STATE(5854),
- [sym_ternary_expression] = STATE(1634),
- [sym_binary_expression] = STATE(1634),
- [sym_unary_expression] = STATE(1634),
- [sym_update_expression] = STATE(1634),
- [sym_string] = STATE(1650),
- [sym_template_string] = STATE(1650),
- [sym_regex] = STATE(1650),
- [sym_meta_property] = STATE(1650),
- [sym_decorator] = STATE(1244),
- [sym_formal_parameters] = STATE(3742),
- [sym_non_null_expression] = STATE(1179),
- [sym_as_expression] = STATE(1634),
- [sym_satisfies_expression] = STATE(1634),
- [sym_instantiation_expression] = STATE(1634),
- [sym_internal_module] = STATE(1634),
- [sym_type_parameters] = STATE(5349),
- [aux_sym_export_statement_repeat1] = STATE(4458),
- [sym_identifier] = ACTIONS(891),
- [anon_sym_export] = ACTIONS(893),
- [anon_sym_STAR] = ACTIONS(122),
- [anon_sym_type] = ACTIONS(893),
- [anon_sym_EQ] = ACTIONS(895),
- [anon_sym_as] = ACTIONS(122),
- [anon_sym_namespace] = ACTIONS(898),
- [anon_sym_LBRACE] = ACTIONS(813),
- [anon_sym_COMMA] = ACTIONS(227),
- [anon_sym_typeof] = ACTIONS(187),
- [anon_sym_import] = ACTIONS(133),
- [anon_sym_let] = ACTIONS(893),
- [anon_sym_BANG] = ACTIONS(187),
- [anon_sym_LPAREN] = ACTIONS(815),
- [anon_sym_await] = ACTIONS(142),
- [anon_sym_in] = ACTIONS(122),
- [anon_sym_yield] = ACTIONS(144),
- [anon_sym_LBRACK] = ACTIONS(817),
- [anon_sym_RBRACK] = ACTIONS(128),
- [sym_glimmer_opening_tag] = ACTIONS(148),
- [anon_sym_GT] = ACTIONS(122),
- [anon_sym_DOT] = ACTIONS(819),
- [anon_sym_DQUOTE] = ACTIONS(150),
- [anon_sym_SQUOTE] = ACTIONS(152),
- [anon_sym_class] = ACTIONS(154),
- [anon_sym_async] = ACTIONS(902),
- [anon_sym_function] = ACTIONS(158),
- [anon_sym_EQ_GT] = ACTIONS(904),
- [anon_sym_QMARK_DOT] = ACTIONS(162),
- [anon_sym_new] = ACTIONS(906),
- [anon_sym_using] = ACTIONS(166),
- [anon_sym_PLUS_EQ] = ACTIONS(168),
- [anon_sym_DASH_EQ] = ACTIONS(168),
- [anon_sym_STAR_EQ] = ACTIONS(168),
- [anon_sym_SLASH_EQ] = ACTIONS(168),
- [anon_sym_PERCENT_EQ] = ACTIONS(168),
- [anon_sym_CARET_EQ] = ACTIONS(168),
- [anon_sym_AMP_EQ] = ACTIONS(168),
- [anon_sym_PIPE_EQ] = ACTIONS(168),
- [anon_sym_GT_GT_EQ] = ACTIONS(168),
- [anon_sym_GT_GT_GT_EQ] = ACTIONS(168),
- [anon_sym_LT_LT_EQ] = ACTIONS(168),
- [anon_sym_STAR_STAR_EQ] = ACTIONS(168),
- [anon_sym_AMP_AMP_EQ] = ACTIONS(168),
- [anon_sym_PIPE_PIPE_EQ] = ACTIONS(168),
- [anon_sym_QMARK_QMARK_EQ] = ACTIONS(168),
- [anon_sym_AMP_AMP] = ACTIONS(122),
- [anon_sym_PIPE_PIPE] = ACTIONS(122),
- [anon_sym_GT_GT] = ACTIONS(122),
- [anon_sym_GT_GT_GT] = ACTIONS(122),
- [anon_sym_LT_LT] = ACTIONS(122),
- [anon_sym_AMP] = ACTIONS(122),
- [anon_sym_CARET] = ACTIONS(122),
- [anon_sym_PIPE] = ACTIONS(122),
- [anon_sym_PLUS] = ACTIONS(187),
- [anon_sym_DASH] = ACTIONS(187),
- [anon_sym_SLASH] = ACTIONS(646),
- [anon_sym_PERCENT] = ACTIONS(122),
- [anon_sym_STAR_STAR] = ACTIONS(122),
- [anon_sym_LT] = ACTIONS(181),
- [anon_sym_LT_EQ] = ACTIONS(162),
- [anon_sym_EQ_EQ] = ACTIONS(122),
- [anon_sym_EQ_EQ_EQ] = ACTIONS(162),
- [anon_sym_BANG_EQ] = ACTIONS(122),
- [anon_sym_BANG_EQ_EQ] = ACTIONS(162),
- [anon_sym_GT_EQ] = ACTIONS(162),
- [anon_sym_QMARK_QMARK] = ACTIONS(122),
- [anon_sym_instanceof] = ACTIONS(122),
- [anon_sym_TILDE] = ACTIONS(183),
- [anon_sym_void] = ACTIONS(187),
- [anon_sym_delete] = ACTIONS(187),
- [anon_sym_PLUS_PLUS] = ACTIONS(719),
- [anon_sym_DASH_DASH] = ACTIONS(719),
- [sym_comment] = ACTIONS(5),
- [anon_sym_BQUOTE] = ACTIONS(825),
- [sym_number] = ACTIONS(787),
- [sym_private_property_identifier] = ACTIONS(196),
- [sym_this] = ACTIONS(200),
- [sym_super] = ACTIONS(200),
- [sym_true] = ACTIONS(200),
- [sym_false] = ACTIONS(200),
- [sym_null] = ACTIONS(200),
- [sym_undefined] = ACTIONS(827),
- [anon_sym_AT] = ACTIONS(99),
- [anon_sym_static] = ACTIONS(893),
- [anon_sym_readonly] = ACTIONS(893),
- [anon_sym_get] = ACTIONS(893),
- [anon_sym_set] = ACTIONS(893),
- [anon_sym_declare] = ACTIONS(893),
- [anon_sym_public] = ACTIONS(893),
- [anon_sym_private] = ACTIONS(893),
- [anon_sym_protected] = ACTIONS(893),
- [anon_sym_override] = ACTIONS(893),
- [anon_sym_module] = ACTIONS(893),
- [anon_sym_any] = ACTIONS(893),
- [anon_sym_number] = ACTIONS(893),
- [anon_sym_boolean] = ACTIONS(893),
- [anon_sym_string] = ACTIONS(893),
- [anon_sym_symbol] = ACTIONS(893),
- [anon_sym_object] = ACTIONS(893),
- [anon_sym_satisfies] = ACTIONS(122),
- [sym__ternary_qmark] = ACTIONS(162),
- [sym_html_comment] = ACTIONS(5),
- },
- [113] = {
- [sym_import] = STATE(3334),
- [sym_parenthesized_expression] = STATE(1179),
- [sym_expression] = STATE(2415),
- [sym_primary_expression] = STATE(1430),
- [sym_yield_expression] = STATE(1634),
- [sym_object] = STATE(1650),
- [sym_object_pattern] = STATE(5854),
- [sym_array] = STATE(1650),
- [sym_array_pattern] = STATE(5854),
- [sym_glimmer_template] = STATE(1634),
- [sym_jsx_element] = STATE(1634),
- [sym_jsx_opening_element] = STATE(3026),
- [sym_jsx_self_closing_element] = STATE(1634),
- [sym_class] = STATE(1650),
- [sym_function_expression] = STATE(1650),
- [sym_generator_function] = STATE(1650),
- [sym_arrow_function] = STATE(1650),
- [sym__call_signature] = STATE(5828),
- [sym_call_expression] = STATE(1650),
- [sym_new_expression] = STATE(1634),
- [sym_await_expression] = STATE(1634),
- [sym_member_expression] = STATE(1179),
- [sym_subscript_expression] = STATE(1179),
- [sym_assignment_expression] = STATE(1634),
- [sym__augmented_assignment_lhs] = STATE(2878),
- [sym_augmented_assignment_expression] = STATE(1634),
- [sym__destructuring_pattern] = STATE(5854),
- [sym_ternary_expression] = STATE(1634),
- [sym_binary_expression] = STATE(1634),
- [sym_unary_expression] = STATE(1634),
- [sym_update_expression] = STATE(1634),
- [sym_string] = STATE(1650),
- [sym_template_string] = STATE(1650),
- [sym_regex] = STATE(1650),
- [sym_meta_property] = STATE(1650),
- [sym_decorator] = STATE(1244),
- [sym_formal_parameters] = STATE(4024),
- [sym_non_null_expression] = STATE(1179),
- [sym_as_expression] = STATE(1634),
- [sym_satisfies_expression] = STATE(1634),
- [sym_instantiation_expression] = STATE(1634),
- [sym_internal_module] = STATE(1634),
- [sym_type_parameters] = STATE(5434),
- [aux_sym_export_statement_repeat1] = STATE(4458),
- [sym_identifier] = ACTIONS(807),
- [anon_sym_export] = ACTIONS(809),
- [anon_sym_STAR] = ACTIONS(122),
- [anon_sym_type] = ACTIONS(809),
- [anon_sym_EQ] = ACTIONS(119),
- [anon_sym_as] = ACTIONS(122),
- [anon_sym_namespace] = ACTIONS(811),
- [anon_sym_LBRACE] = ACTIONS(813),
- [anon_sym_COMMA] = ACTIONS(128),
- [anon_sym_RBRACE] = ACTIONS(128),
- [anon_sym_typeof] = ACTIONS(187),
- [anon_sym_import] = ACTIONS(133),
- [anon_sym_let] = ACTIONS(809),
- [anon_sym_BANG] = ACTIONS(187),
- [anon_sym_LPAREN] = ACTIONS(815),
- [anon_sym_await] = ACTIONS(142),
- [anon_sym_in] = ACTIONS(122),
- [anon_sym_yield] = ACTIONS(144),
- [anon_sym_LBRACK] = ACTIONS(817),
- [sym_glimmer_opening_tag] = ACTIONS(148),
- [anon_sym_GT] = ACTIONS(122),
- [anon_sym_DOT] = ACTIONS(819),
- [anon_sym_DQUOTE] = ACTIONS(150),
- [anon_sym_SQUOTE] = ACTIONS(152),
- [anon_sym_class] = ACTIONS(154),
- [anon_sym_async] = ACTIONS(821),
- [anon_sym_function] = ACTIONS(158),
- [anon_sym_EQ_GT] = ACTIONS(160),
- [anon_sym_QMARK_DOT] = ACTIONS(162),
- [anon_sym_new] = ACTIONS(823),
- [anon_sym_using] = ACTIONS(166),
- [anon_sym_PLUS_EQ] = ACTIONS(168),
- [anon_sym_DASH_EQ] = ACTIONS(168),
- [anon_sym_STAR_EQ] = ACTIONS(168),
- [anon_sym_SLASH_EQ] = ACTIONS(168),
- [anon_sym_PERCENT_EQ] = ACTIONS(168),
- [anon_sym_CARET_EQ] = ACTIONS(168),
- [anon_sym_AMP_EQ] = ACTIONS(168),
- [anon_sym_PIPE_EQ] = ACTIONS(168),
- [anon_sym_GT_GT_EQ] = ACTIONS(168),
- [anon_sym_GT_GT_GT_EQ] = ACTIONS(168),
- [anon_sym_LT_LT_EQ] = ACTIONS(168),
- [anon_sym_STAR_STAR_EQ] = ACTIONS(168),
- [anon_sym_AMP_AMP_EQ] = ACTIONS(168),
- [anon_sym_PIPE_PIPE_EQ] = ACTIONS(168),
- [anon_sym_QMARK_QMARK_EQ] = ACTIONS(168),
- [anon_sym_AMP_AMP] = ACTIONS(122),
- [anon_sym_PIPE_PIPE] = ACTIONS(122),
- [anon_sym_GT_GT] = ACTIONS(122),
- [anon_sym_GT_GT_GT] = ACTIONS(122),
- [anon_sym_LT_LT] = ACTIONS(122),
- [anon_sym_AMP] = ACTIONS(122),
- [anon_sym_CARET] = ACTIONS(122),
- [anon_sym_PIPE] = ACTIONS(122),
- [anon_sym_PLUS] = ACTIONS(187),
- [anon_sym_DASH] = ACTIONS(187),
- [anon_sym_SLASH] = ACTIONS(646),
- [anon_sym_PERCENT] = ACTIONS(122),
- [anon_sym_STAR_STAR] = ACTIONS(122),
- [anon_sym_LT] = ACTIONS(181),
- [anon_sym_LT_EQ] = ACTIONS(162),
- [anon_sym_EQ_EQ] = ACTIONS(122),
- [anon_sym_EQ_EQ_EQ] = ACTIONS(162),
- [anon_sym_BANG_EQ] = ACTIONS(122),
- [anon_sym_BANG_EQ_EQ] = ACTIONS(162),
- [anon_sym_GT_EQ] = ACTIONS(162),
- [anon_sym_QMARK_QMARK] = ACTIONS(122),
- [anon_sym_instanceof] = ACTIONS(122),
- [anon_sym_TILDE] = ACTIONS(183),
- [anon_sym_void] = ACTIONS(187),
- [anon_sym_delete] = ACTIONS(187),
- [anon_sym_PLUS_PLUS] = ACTIONS(719),
- [anon_sym_DASH_DASH] = ACTIONS(719),
- [sym_comment] = ACTIONS(5),
- [anon_sym_BQUOTE] = ACTIONS(825),
- [sym_number] = ACTIONS(787),
- [sym_private_property_identifier] = ACTIONS(196),
- [sym_this] = ACTIONS(200),
- [sym_super] = ACTIONS(200),
- [sym_true] = ACTIONS(200),
- [sym_false] = ACTIONS(200),
- [sym_null] = ACTIONS(200),
- [sym_undefined] = ACTIONS(827),
- [anon_sym_AT] = ACTIONS(99),
- [anon_sym_static] = ACTIONS(809),
- [anon_sym_readonly] = ACTIONS(809),
- [anon_sym_get] = ACTIONS(809),
- [anon_sym_set] = ACTIONS(809),
- [anon_sym_declare] = ACTIONS(809),
- [anon_sym_public] = ACTIONS(809),
- [anon_sym_private] = ACTIONS(809),
- [anon_sym_protected] = ACTIONS(809),
- [anon_sym_override] = ACTIONS(809),
- [anon_sym_module] = ACTIONS(809),
- [anon_sym_any] = ACTIONS(809),
- [anon_sym_number] = ACTIONS(809),
- [anon_sym_boolean] = ACTIONS(809),
- [anon_sym_string] = ACTIONS(809),
- [anon_sym_symbol] = ACTIONS(809),
- [anon_sym_object] = ACTIONS(809),
- [anon_sym_satisfies] = ACTIONS(122),
- [sym__ternary_qmark] = ACTIONS(162),
- [sym_html_comment] = ACTIONS(5),
- },
- [114] = {
- [sym_import] = STATE(3334),
- [sym_parenthesized_expression] = STATE(1179),
- [sym_expression] = STATE(2415),
- [sym_primary_expression] = STATE(1430),
- [sym_yield_expression] = STATE(1634),
- [sym_object] = STATE(1650),
- [sym_object_pattern] = STATE(5854),
- [sym_array] = STATE(1650),
- [sym_array_pattern] = STATE(5854),
- [sym_glimmer_template] = STATE(1634),
- [sym_jsx_element] = STATE(1634),
- [sym_jsx_opening_element] = STATE(3026),
- [sym_jsx_self_closing_element] = STATE(1634),
- [sym_class] = STATE(1650),
- [sym_function_expression] = STATE(1650),
- [sym_generator_function] = STATE(1650),
- [sym_arrow_function] = STATE(1650),
- [sym__call_signature] = STATE(5765),
- [sym_call_expression] = STATE(1650),
- [sym_new_expression] = STATE(1634),
- [sym_await_expression] = STATE(1634),
- [sym_member_expression] = STATE(1179),
- [sym_subscript_expression] = STATE(1179),
- [sym_assignment_expression] = STATE(1634),
- [sym__augmented_assignment_lhs] = STATE(2878),
- [sym_augmented_assignment_expression] = STATE(1634),
- [sym__destructuring_pattern] = STATE(5854),
- [sym_ternary_expression] = STATE(1634),
- [sym_binary_expression] = STATE(1634),
- [sym_unary_expression] = STATE(1634),
- [sym_update_expression] = STATE(1634),
- [sym_string] = STATE(1650),
- [sym_template_string] = STATE(1650),
- [sym_regex] = STATE(1650),
- [sym_meta_property] = STATE(1650),
- [sym_decorator] = STATE(1244),
- [sym_formal_parameters] = STATE(3742),
- [sym_non_null_expression] = STATE(1179),
- [sym_as_expression] = STATE(1634),
- [sym_satisfies_expression] = STATE(1634),
- [sym_instantiation_expression] = STATE(1634),
- [sym_internal_module] = STATE(1634),
- [sym_type_parameters] = STATE(5349),
- [aux_sym_export_statement_repeat1] = STATE(4458),
- [sym_identifier] = ACTIONS(891),
- [anon_sym_export] = ACTIONS(893),
- [anon_sym_STAR] = ACTIONS(122),
- [anon_sym_type] = ACTIONS(893),
- [anon_sym_EQ] = ACTIONS(926),
- [anon_sym_as] = ACTIONS(122),
- [anon_sym_namespace] = ACTIONS(898),
- [anon_sym_LBRACE] = ACTIONS(813),
- [anon_sym_typeof] = ACTIONS(187),
- [anon_sym_import] = ACTIONS(133),
- [anon_sym_let] = ACTIONS(893),
- [anon_sym_BANG] = ACTIONS(187),
- [anon_sym_LPAREN] = ACTIONS(815),
- [anon_sym_await] = ACTIONS(142),
- [anon_sym_in] = ACTIONS(122),
- [anon_sym_COLON] = ACTIONS(900),
- [anon_sym_yield] = ACTIONS(144),
- [anon_sym_LBRACK] = ACTIONS(817),
- [anon_sym_RBRACK] = ACTIONS(162),
- [sym_glimmer_opening_tag] = ACTIONS(148),
- [anon_sym_GT] = ACTIONS(122),
- [anon_sym_DOT] = ACTIONS(819),
- [anon_sym_DQUOTE] = ACTIONS(150),
- [anon_sym_SQUOTE] = ACTIONS(152),
- [anon_sym_class] = ACTIONS(154),
- [anon_sym_async] = ACTIONS(902),
- [anon_sym_function] = ACTIONS(158),
- [anon_sym_EQ_GT] = ACTIONS(904),
- [anon_sym_QMARK_DOT] = ACTIONS(162),
- [anon_sym_new] = ACTIONS(906),
- [anon_sym_using] = ACTIONS(166),
- [anon_sym_PLUS_EQ] = ACTIONS(168),
- [anon_sym_DASH_EQ] = ACTIONS(168),
- [anon_sym_STAR_EQ] = ACTIONS(168),
- [anon_sym_SLASH_EQ] = ACTIONS(168),
- [anon_sym_PERCENT_EQ] = ACTIONS(168),
- [anon_sym_CARET_EQ] = ACTIONS(168),
- [anon_sym_AMP_EQ] = ACTIONS(168),
- [anon_sym_PIPE_EQ] = ACTIONS(168),
- [anon_sym_GT_GT_EQ] = ACTIONS(168),
- [anon_sym_GT_GT_GT_EQ] = ACTIONS(168),
- [anon_sym_LT_LT_EQ] = ACTIONS(168),
- [anon_sym_STAR_STAR_EQ] = ACTIONS(168),
- [anon_sym_AMP_AMP_EQ] = ACTIONS(168),
- [anon_sym_PIPE_PIPE_EQ] = ACTIONS(168),
- [anon_sym_QMARK_QMARK_EQ] = ACTIONS(168),
- [anon_sym_AMP_AMP] = ACTIONS(122),
- [anon_sym_PIPE_PIPE] = ACTIONS(122),
- [anon_sym_GT_GT] = ACTIONS(122),
- [anon_sym_GT_GT_GT] = ACTIONS(122),
- [anon_sym_LT_LT] = ACTIONS(122),
- [anon_sym_AMP] = ACTIONS(122),
- [anon_sym_CARET] = ACTIONS(122),
- [anon_sym_PIPE] = ACTIONS(122),
- [anon_sym_PLUS] = ACTIONS(187),
- [anon_sym_DASH] = ACTIONS(187),
- [anon_sym_SLASH] = ACTIONS(646),
- [anon_sym_PERCENT] = ACTIONS(122),
- [anon_sym_STAR_STAR] = ACTIONS(122),
- [anon_sym_LT] = ACTIONS(181),
- [anon_sym_LT_EQ] = ACTIONS(162),
- [anon_sym_EQ_EQ] = ACTIONS(122),
- [anon_sym_EQ_EQ_EQ] = ACTIONS(162),
- [anon_sym_BANG_EQ] = ACTIONS(122),
- [anon_sym_BANG_EQ_EQ] = ACTIONS(162),
- [anon_sym_GT_EQ] = ACTIONS(162),
- [anon_sym_QMARK_QMARK] = ACTIONS(122),
- [anon_sym_instanceof] = ACTIONS(122),
- [anon_sym_TILDE] = ACTIONS(183),
- [anon_sym_void] = ACTIONS(187),
- [anon_sym_delete] = ACTIONS(187),
- [anon_sym_PLUS_PLUS] = ACTIONS(719),
- [anon_sym_DASH_DASH] = ACTIONS(719),
- [sym_comment] = ACTIONS(5),
- [anon_sym_BQUOTE] = ACTIONS(825),
- [sym_number] = ACTIONS(787),
- [sym_private_property_identifier] = ACTIONS(196),
- [sym_this] = ACTIONS(200),
- [sym_super] = ACTIONS(200),
- [sym_true] = ACTIONS(200),
- [sym_false] = ACTIONS(200),
- [sym_null] = ACTIONS(200),
- [sym_undefined] = ACTIONS(827),
- [anon_sym_AT] = ACTIONS(99),
- [anon_sym_static] = ACTIONS(893),
- [anon_sym_readonly] = ACTIONS(893),
- [anon_sym_get] = ACTIONS(893),
- [anon_sym_set] = ACTIONS(893),
- [anon_sym_declare] = ACTIONS(893),
- [anon_sym_public] = ACTIONS(893),
- [anon_sym_private] = ACTIONS(893),
- [anon_sym_protected] = ACTIONS(893),
- [anon_sym_override] = ACTIONS(893),
- [anon_sym_module] = ACTIONS(893),
- [anon_sym_any] = ACTIONS(893),
- [anon_sym_number] = ACTIONS(893),
- [anon_sym_boolean] = ACTIONS(893),
- [anon_sym_string] = ACTIONS(893),
- [anon_sym_symbol] = ACTIONS(893),
- [anon_sym_object] = ACTIONS(893),
- [anon_sym_satisfies] = ACTIONS(122),
- [sym__ternary_qmark] = ACTIONS(162),
- [sym_html_comment] = ACTIONS(5),
- },
- [115] = {
- [sym_import] = STATE(3306),
- [sym_parenthesized_expression] = STATE(1269),
- [sym_expression] = STATE(2411),
- [sym_primary_expression] = STATE(1719),
- [sym_yield_expression] = STATE(1634),
- [sym_object] = STATE(2310),
- [sym_object_pattern] = STATE(5854),
- [sym_array] = STATE(2310),
- [sym_array_pattern] = STATE(5854),
- [sym_glimmer_template] = STATE(1634),
- [sym_jsx_element] = STATE(1634),
- [sym_jsx_opening_element] = STATE(3026),
- [sym_jsx_self_closing_element] = STATE(1634),
- [sym_class] = STATE(2310),
- [sym_function_expression] = STATE(2310),
- [sym_generator_function] = STATE(2310),
- [sym_arrow_function] = STATE(2310),
- [sym__call_signature] = STATE(5569),
- [sym_call_expression] = STATE(2310),
- [sym_new_expression] = STATE(1634),
- [sym_await_expression] = STATE(1634),
- [sym_member_expression] = STATE(1269),
- [sym_subscript_expression] = STATE(1269),
- [sym_assignment_expression] = STATE(1634),
- [sym__augmented_assignment_lhs] = STATE(2878),
- [sym_augmented_assignment_expression] = STATE(1634),
- [sym__destructuring_pattern] = STATE(5854),
- [sym_ternary_expression] = STATE(1634),
- [sym_binary_expression] = STATE(1634),
- [sym_unary_expression] = STATE(1634),
- [sym_update_expression] = STATE(1634),
- [sym_string] = STATE(2310),
- [sym_template_string] = STATE(2310),
- [sym_regex] = STATE(2310),
- [sym_meta_property] = STATE(2310),
- [sym_decorator] = STATE(1244),
- [sym_formal_parameters] = STATE(3742),
- [sym_non_null_expression] = STATE(1269),
- [sym_as_expression] = STATE(1634),
- [sym_satisfies_expression] = STATE(1634),
- [sym_instantiation_expression] = STATE(1634),
- [sym_internal_module] = STATE(1634),
- [sym_type_parameters] = STATE(5349),
- [aux_sym_export_statement_repeat1] = STATE(4499),
- [sym_identifier] = ACTIONS(928),
- [anon_sym_export] = ACTIONS(930),
- [anon_sym_STAR] = ACTIONS(122),
- [anon_sym_type] = ACTIONS(930),
- [anon_sym_EQ] = ACTIONS(932),
- [anon_sym_as] = ACTIONS(122),
- [anon_sym_namespace] = ACTIONS(934),
- [anon_sym_LBRACE] = ACTIONS(700),
- [anon_sym_typeof] = ACTIONS(187),
- [anon_sym_import] = ACTIONS(133),
- [anon_sym_let] = ACTIONS(930),
- [anon_sym_BANG] = ACTIONS(187),
- [anon_sym_LPAREN] = ACTIONS(41),
- [anon_sym_await] = ACTIONS(142),
- [anon_sym_in] = ACTIONS(122),
- [anon_sym_SEMI] = ACTIONS(162),
- [anon_sym_yield] = ACTIONS(144),
- [anon_sym_LBRACK] = ACTIONS(65),
- [sym_glimmer_opening_tag] = ACTIONS(148),
- [anon_sym_GT] = ACTIONS(122),
- [anon_sym_DOT] = ACTIONS(707),
- [anon_sym_DQUOTE] = ACTIONS(69),
- [anon_sym_SQUOTE] = ACTIONS(71),
- [anon_sym_class] = ACTIONS(709),
- [anon_sym_async] = ACTIONS(936),
- [anon_sym_function] = ACTIONS(713),
- [anon_sym_EQ_GT] = ACTIONS(924),
- [anon_sym_QMARK_DOT] = ACTIONS(162),
- [anon_sym_new] = ACTIONS(938),
- [anon_sym_using] = ACTIONS(166),
- [anon_sym_PLUS_EQ] = ACTIONS(168),
- [anon_sym_DASH_EQ] = ACTIONS(168),
- [anon_sym_STAR_EQ] = ACTIONS(168),
- [anon_sym_SLASH_EQ] = ACTIONS(168),
- [anon_sym_PERCENT_EQ] = ACTIONS(168),
- [anon_sym_CARET_EQ] = ACTIONS(168),
- [anon_sym_AMP_EQ] = ACTIONS(168),
- [anon_sym_PIPE_EQ] = ACTIONS(168),
- [anon_sym_GT_GT_EQ] = ACTIONS(168),
- [anon_sym_GT_GT_GT_EQ] = ACTIONS(168),
- [anon_sym_LT_LT_EQ] = ACTIONS(168),
- [anon_sym_STAR_STAR_EQ] = ACTIONS(168),
- [anon_sym_AMP_AMP_EQ] = ACTIONS(168),
- [anon_sym_PIPE_PIPE_EQ] = ACTIONS(168),
- [anon_sym_QMARK_QMARK_EQ] = ACTIONS(168),
- [anon_sym_AMP_AMP] = ACTIONS(122),
- [anon_sym_PIPE_PIPE] = ACTIONS(122),
- [anon_sym_GT_GT] = ACTIONS(122),
- [anon_sym_GT_GT_GT] = ACTIONS(122),
- [anon_sym_LT_LT] = ACTIONS(122),
- [anon_sym_AMP] = ACTIONS(122),
- [anon_sym_CARET] = ACTIONS(122),
- [anon_sym_PIPE] = ACTIONS(122),
- [anon_sym_PLUS] = ACTIONS(187),
- [anon_sym_DASH] = ACTIONS(187),
- [anon_sym_SLASH] = ACTIONS(83),
- [anon_sym_PERCENT] = ACTIONS(122),
- [anon_sym_STAR_STAR] = ACTIONS(122),
- [anon_sym_LT] = ACTIONS(181),
- [anon_sym_LT_EQ] = ACTIONS(162),
- [anon_sym_EQ_EQ] = ACTIONS(122),
- [anon_sym_EQ_EQ_EQ] = ACTIONS(162),
- [anon_sym_BANG_EQ] = ACTIONS(122),
- [anon_sym_BANG_EQ_EQ] = ACTIONS(162),
- [anon_sym_GT_EQ] = ACTIONS(162),
- [anon_sym_QMARK_QMARK] = ACTIONS(122),
- [anon_sym_instanceof] = ACTIONS(122),
- [anon_sym_TILDE] = ACTIONS(183),
- [anon_sym_void] = ACTIONS(187),
- [anon_sym_delete] = ACTIONS(187),
- [anon_sym_PLUS_PLUS] = ACTIONS(719),
- [anon_sym_DASH_DASH] = ACTIONS(719),
- [sym_comment] = ACTIONS(5),
- [anon_sym_BQUOTE] = ACTIONS(89),
- [sym_number] = ACTIONS(91),
- [sym_private_property_identifier] = ACTIONS(196),
- [sym_this] = ACTIONS(95),
- [sym_super] = ACTIONS(95),
- [sym_true] = ACTIONS(95),
- [sym_false] = ACTIONS(95),
- [sym_null] = ACTIONS(95),
- [sym_undefined] = ACTIONS(721),
- [anon_sym_AT] = ACTIONS(99),
- [anon_sym_static] = ACTIONS(930),
- [anon_sym_readonly] = ACTIONS(930),
- [anon_sym_get] = ACTIONS(930),
- [anon_sym_set] = ACTIONS(930),
- [anon_sym_declare] = ACTIONS(930),
- [anon_sym_public] = ACTIONS(930),
- [anon_sym_private] = ACTIONS(930),
- [anon_sym_protected] = ACTIONS(930),
- [anon_sym_override] = ACTIONS(930),
- [anon_sym_module] = ACTIONS(930),
- [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_object] = ACTIONS(930),
- [anon_sym_satisfies] = ACTIONS(122),
- [sym__automatic_semicolon] = ACTIONS(162),
- [sym__ternary_qmark] = ACTIONS(162),
- [sym_html_comment] = ACTIONS(5),
- },
- [116] = {
- [sym_import] = STATE(3306),
- [sym_parenthesized_expression] = STATE(1269),
- [sym_expression] = STATE(2411),
- [sym_primary_expression] = STATE(1719),
- [sym_yield_expression] = STATE(1634),
- [sym_object] = STATE(2310),
- [sym_object_pattern] = STATE(5854),
- [sym_array] = STATE(2310),
- [sym_array_pattern] = STATE(5854),
- [sym_glimmer_template] = STATE(1634),
- [sym_jsx_element] = STATE(1634),
- [sym_jsx_opening_element] = STATE(3026),
- [sym_jsx_self_closing_element] = STATE(1634),
- [sym_class] = STATE(2310),
- [sym_function_expression] = STATE(2310),
- [sym_generator_function] = STATE(2310),
- [sym_arrow_function] = STATE(2310),
- [sym__call_signature] = STATE(5569),
- [sym_call_expression] = STATE(2310),
- [sym_new_expression] = STATE(1634),
- [sym_await_expression] = STATE(1634),
- [sym_member_expression] = STATE(1269),
- [sym_subscript_expression] = STATE(1269),
- [sym_assignment_expression] = STATE(1634),
- [sym__augmented_assignment_lhs] = STATE(2878),
- [sym_augmented_assignment_expression] = STATE(1634),
- [sym__destructuring_pattern] = STATE(5854),
- [sym_ternary_expression] = STATE(1634),
- [sym_binary_expression] = STATE(1634),
- [sym_unary_expression] = STATE(1634),
- [sym_update_expression] = STATE(1634),
- [sym_string] = STATE(2310),
- [sym_template_string] = STATE(2310),
- [sym_regex] = STATE(2310),
- [sym_meta_property] = STATE(2310),
- [sym_decorator] = STATE(1244),
- [sym_formal_parameters] = STATE(3915),
- [sym_non_null_expression] = STATE(1269),
- [sym_as_expression] = STATE(1634),
- [sym_satisfies_expression] = STATE(1634),
- [sym_instantiation_expression] = STATE(1634),
- [sym_internal_module] = STATE(1634),
- [sym_type_parameters] = STATE(5206),
- [aux_sym_export_statement_repeat1] = STATE(4499),
- [sym_identifier] = ACTIONS(928),
- [anon_sym_export] = ACTIONS(930),
- [anon_sym_STAR] = ACTIONS(122),
- [anon_sym_type] = ACTIONS(930),
- [anon_sym_EQ] = ACTIONS(932),
- [anon_sym_as] = ACTIONS(122),
- [anon_sym_namespace] = ACTIONS(934),
- [anon_sym_LBRACE] = ACTIONS(700),
- [anon_sym_typeof] = ACTIONS(187),
- [anon_sym_import] = ACTIONS(133),
- [anon_sym_let] = ACTIONS(930),
- [anon_sym_BANG] = ACTIONS(187),
- [anon_sym_LPAREN] = ACTIONS(41),
- [anon_sym_await] = ACTIONS(142),
- [anon_sym_in] = ACTIONS(122),
- [anon_sym_SEMI] = ACTIONS(162),
- [anon_sym_yield] = ACTIONS(144),
- [anon_sym_LBRACK] = ACTIONS(65),
- [sym_glimmer_opening_tag] = ACTIONS(148),
- [anon_sym_GT] = ACTIONS(122),
- [anon_sym_DOT] = ACTIONS(707),
- [anon_sym_DQUOTE] = ACTIONS(69),
- [anon_sym_SQUOTE] = ACTIONS(71),
- [anon_sym_class] = ACTIONS(709),
- [anon_sym_async] = ACTIONS(936),
- [anon_sym_function] = ACTIONS(713),
- [anon_sym_EQ_GT] = ACTIONS(924),
- [anon_sym_QMARK_DOT] = ACTIONS(162),
- [anon_sym_new] = ACTIONS(938),
- [anon_sym_using] = ACTIONS(166),
- [anon_sym_PLUS_EQ] = ACTIONS(168),
- [anon_sym_DASH_EQ] = ACTIONS(168),
- [anon_sym_STAR_EQ] = ACTIONS(168),
- [anon_sym_SLASH_EQ] = ACTIONS(168),
- [anon_sym_PERCENT_EQ] = ACTIONS(168),
- [anon_sym_CARET_EQ] = ACTIONS(168),
- [anon_sym_AMP_EQ] = ACTIONS(168),
- [anon_sym_PIPE_EQ] = ACTIONS(168),
- [anon_sym_GT_GT_EQ] = ACTIONS(168),
- [anon_sym_GT_GT_GT_EQ] = ACTIONS(168),
- [anon_sym_LT_LT_EQ] = ACTIONS(168),
- [anon_sym_STAR_STAR_EQ] = ACTIONS(168),
- [anon_sym_AMP_AMP_EQ] = ACTIONS(168),
- [anon_sym_PIPE_PIPE_EQ] = ACTIONS(168),
- [anon_sym_QMARK_QMARK_EQ] = ACTIONS(168),
- [anon_sym_AMP_AMP] = ACTIONS(122),
- [anon_sym_PIPE_PIPE] = ACTIONS(122),
- [anon_sym_GT_GT] = ACTIONS(122),
- [anon_sym_GT_GT_GT] = ACTIONS(122),
- [anon_sym_LT_LT] = ACTIONS(122),
- [anon_sym_AMP] = ACTIONS(122),
- [anon_sym_CARET] = ACTIONS(122),
- [anon_sym_PIPE] = ACTIONS(122),
- [anon_sym_PLUS] = ACTIONS(187),
- [anon_sym_DASH] = ACTIONS(187),
- [anon_sym_SLASH] = ACTIONS(83),
- [anon_sym_PERCENT] = ACTIONS(122),
- [anon_sym_STAR_STAR] = ACTIONS(122),
- [anon_sym_LT] = ACTIONS(181),
- [anon_sym_LT_EQ] = ACTIONS(162),
- [anon_sym_EQ_EQ] = ACTIONS(122),
- [anon_sym_EQ_EQ_EQ] = ACTIONS(162),
- [anon_sym_BANG_EQ] = ACTIONS(122),
- [anon_sym_BANG_EQ_EQ] = ACTIONS(162),
- [anon_sym_GT_EQ] = ACTIONS(162),
- [anon_sym_QMARK_QMARK] = ACTIONS(122),
- [anon_sym_instanceof] = ACTIONS(122),
- [anon_sym_TILDE] = ACTIONS(183),
- [anon_sym_void] = ACTIONS(187),
- [anon_sym_delete] = ACTIONS(187),
- [anon_sym_PLUS_PLUS] = ACTIONS(719),
- [anon_sym_DASH_DASH] = ACTIONS(719),
- [sym_comment] = ACTIONS(5),
- [anon_sym_BQUOTE] = ACTIONS(89),
- [sym_number] = ACTIONS(91),
- [sym_private_property_identifier] = ACTIONS(196),
- [sym_this] = ACTIONS(95),
- [sym_super] = ACTIONS(95),
- [sym_true] = ACTIONS(95),
- [sym_false] = ACTIONS(95),
- [sym_null] = ACTIONS(95),
- [sym_undefined] = ACTIONS(721),
- [anon_sym_AT] = ACTIONS(99),
- [anon_sym_static] = ACTIONS(930),
- [anon_sym_readonly] = ACTIONS(930),
- [anon_sym_get] = ACTIONS(930),
- [anon_sym_set] = ACTIONS(930),
- [anon_sym_declare] = ACTIONS(930),
- [anon_sym_public] = ACTIONS(930),
- [anon_sym_private] = ACTIONS(930),
- [anon_sym_protected] = ACTIONS(930),
- [anon_sym_override] = ACTIONS(930),
- [anon_sym_module] = ACTIONS(930),
- [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_object] = ACTIONS(930),
- [anon_sym_satisfies] = ACTIONS(122),
- [sym__automatic_semicolon] = ACTIONS(162),
- [sym__ternary_qmark] = ACTIONS(162),
- [sym_html_comment] = ACTIONS(5),
- },
- [117] = {
- [sym_import] = STATE(3334),
- [sym_parenthesized_expression] = STATE(1179),
- [sym_expression] = STATE(2415),
- [sym_primary_expression] = STATE(1430),
- [sym_yield_expression] = STATE(1634),
- [sym_object] = STATE(1650),
- [sym_object_pattern] = STATE(5854),
- [sym_array] = STATE(1650),
- [sym_array_pattern] = STATE(5854),
- [sym_glimmer_template] = STATE(1634),
- [sym_jsx_element] = STATE(1634),
- [sym_jsx_opening_element] = STATE(3026),
- [sym_jsx_self_closing_element] = STATE(1634),
- [sym_class] = STATE(1650),
- [sym_function_expression] = STATE(1650),
- [sym_generator_function] = STATE(1650),
- [sym_arrow_function] = STATE(1650),
- [sym__call_signature] = STATE(5765),
- [sym_call_expression] = STATE(1650),
- [sym_new_expression] = STATE(1634),
- [sym_await_expression] = STATE(1634),
- [sym_member_expression] = STATE(1179),
- [sym_subscript_expression] = STATE(1179),
- [sym_assignment_expression] = STATE(1634),
- [sym__augmented_assignment_lhs] = STATE(2878),
- [sym_augmented_assignment_expression] = STATE(1634),
- [sym__destructuring_pattern] = STATE(5854),
- [sym_ternary_expression] = STATE(1634),
- [sym_binary_expression] = STATE(1634),
- [sym_unary_expression] = STATE(1634),
- [sym_update_expression] = STATE(1634),
- [sym_string] = STATE(1650),
- [sym_template_string] = STATE(1650),
- [sym_regex] = STATE(1650),
- [sym_meta_property] = STATE(1650),
- [sym_decorator] = STATE(1244),
- [sym_formal_parameters] = STATE(3742),
- [sym_non_null_expression] = STATE(1179),
- [sym_as_expression] = STATE(1634),
- [sym_satisfies_expression] = STATE(1634),
- [sym_instantiation_expression] = STATE(1634),
- [sym_internal_module] = STATE(1634),
- [sym_type_parameters] = STATE(5349),
- [aux_sym_export_statement_repeat1] = STATE(4458),
- [sym_identifier] = ACTIONS(891),
- [anon_sym_export] = ACTIONS(893),
- [anon_sym_STAR] = ACTIONS(122),
- [anon_sym_type] = ACTIONS(893),
- [anon_sym_EQ] = ACTIONS(926),
- [anon_sym_as] = ACTIONS(122),
- [anon_sym_namespace] = ACTIONS(898),
- [anon_sym_LBRACE] = ACTIONS(813),
- [anon_sym_typeof] = ACTIONS(187),
- [anon_sym_import] = ACTIONS(133),
- [anon_sym_let] = ACTIONS(893),
- [anon_sym_BANG] = ACTIONS(187),
- [anon_sym_LPAREN] = ACTIONS(815),
- [anon_sym_await] = ACTIONS(142),
- [anon_sym_in] = ACTIONS(122),
- [anon_sym_COLON] = ACTIONS(940),
- [anon_sym_yield] = ACTIONS(144),
- [anon_sym_LBRACK] = ACTIONS(817),
- [anon_sym_RBRACK] = ACTIONS(162),
- [sym_glimmer_opening_tag] = ACTIONS(148),
- [anon_sym_GT] = ACTIONS(122),
- [anon_sym_DOT] = ACTIONS(819),
- [anon_sym_DQUOTE] = ACTIONS(150),
- [anon_sym_SQUOTE] = ACTIONS(152),
- [anon_sym_class] = ACTIONS(154),
- [anon_sym_async] = ACTIONS(902),
- [anon_sym_function] = ACTIONS(158),
- [anon_sym_EQ_GT] = ACTIONS(904),
- [anon_sym_QMARK_DOT] = ACTIONS(162),
- [anon_sym_new] = ACTIONS(906),
- [anon_sym_using] = ACTIONS(166),
- [anon_sym_PLUS_EQ] = ACTIONS(168),
- [anon_sym_DASH_EQ] = ACTIONS(168),
- [anon_sym_STAR_EQ] = ACTIONS(168),
- [anon_sym_SLASH_EQ] = ACTIONS(168),
- [anon_sym_PERCENT_EQ] = ACTIONS(168),
- [anon_sym_CARET_EQ] = ACTIONS(168),
- [anon_sym_AMP_EQ] = ACTIONS(168),
- [anon_sym_PIPE_EQ] = ACTIONS(168),
- [anon_sym_GT_GT_EQ] = ACTIONS(168),
- [anon_sym_GT_GT_GT_EQ] = ACTIONS(168),
- [anon_sym_LT_LT_EQ] = ACTIONS(168),
- [anon_sym_STAR_STAR_EQ] = ACTIONS(168),
- [anon_sym_AMP_AMP_EQ] = ACTIONS(168),
- [anon_sym_PIPE_PIPE_EQ] = ACTIONS(168),
- [anon_sym_QMARK_QMARK_EQ] = ACTIONS(168),
- [anon_sym_AMP_AMP] = ACTIONS(122),
- [anon_sym_PIPE_PIPE] = ACTIONS(122),
- [anon_sym_GT_GT] = ACTIONS(122),
- [anon_sym_GT_GT_GT] = ACTIONS(122),
- [anon_sym_LT_LT] = ACTIONS(122),
- [anon_sym_AMP] = ACTIONS(122),
- [anon_sym_CARET] = ACTIONS(122),
- [anon_sym_PIPE] = ACTIONS(122),
- [anon_sym_PLUS] = ACTIONS(187),
- [anon_sym_DASH] = ACTIONS(187),
- [anon_sym_SLASH] = ACTIONS(646),
- [anon_sym_PERCENT] = ACTIONS(122),
- [anon_sym_STAR_STAR] = ACTIONS(122),
- [anon_sym_LT] = ACTIONS(181),
- [anon_sym_LT_EQ] = ACTIONS(162),
- [anon_sym_EQ_EQ] = ACTIONS(122),
- [anon_sym_EQ_EQ_EQ] = ACTIONS(162),
- [anon_sym_BANG_EQ] = ACTIONS(122),
- [anon_sym_BANG_EQ_EQ] = ACTIONS(162),
- [anon_sym_GT_EQ] = ACTIONS(162),
- [anon_sym_QMARK_QMARK] = ACTIONS(122),
- [anon_sym_instanceof] = ACTIONS(122),
- [anon_sym_TILDE] = ACTIONS(183),
- [anon_sym_void] = ACTIONS(187),
- [anon_sym_delete] = ACTIONS(187),
- [anon_sym_PLUS_PLUS] = ACTIONS(719),
- [anon_sym_DASH_DASH] = ACTIONS(719),
- [sym_comment] = ACTIONS(5),
- [anon_sym_BQUOTE] = ACTIONS(825),
- [sym_number] = ACTIONS(787),
- [sym_private_property_identifier] = ACTIONS(196),
- [sym_this] = ACTIONS(200),
- [sym_super] = ACTIONS(200),
- [sym_true] = ACTIONS(200),
- [sym_false] = ACTIONS(200),
- [sym_null] = ACTIONS(200),
- [sym_undefined] = ACTIONS(827),
- [anon_sym_AT] = ACTIONS(99),
- [anon_sym_static] = ACTIONS(893),
- [anon_sym_readonly] = ACTIONS(893),
- [anon_sym_get] = ACTIONS(893),
- [anon_sym_set] = ACTIONS(893),
- [anon_sym_declare] = ACTIONS(893),
- [anon_sym_public] = ACTIONS(893),
- [anon_sym_private] = ACTIONS(893),
- [anon_sym_protected] = ACTIONS(893),
- [anon_sym_override] = ACTIONS(893),
- [anon_sym_module] = ACTIONS(893),
- [anon_sym_any] = ACTIONS(893),
- [anon_sym_number] = ACTIONS(893),
- [anon_sym_boolean] = ACTIONS(893),
- [anon_sym_string] = ACTIONS(893),
- [anon_sym_symbol] = ACTIONS(893),
- [anon_sym_object] = ACTIONS(893),
- [anon_sym_satisfies] = ACTIONS(122),
- [sym__ternary_qmark] = ACTIONS(162),
- [sym_html_comment] = ACTIONS(5),
- },
- [118] = {
- [sym_import] = STATE(3334),
- [sym_parenthesized_expression] = STATE(1179),
- [sym_expression] = STATE(2415),
- [sym_primary_expression] = STATE(1430),
- [sym_yield_expression] = STATE(1634),
- [sym_object] = STATE(1650),
- [sym_object_pattern] = STATE(5854),
- [sym_array] = STATE(1650),
- [sym_array_pattern] = STATE(5854),
- [sym_glimmer_template] = STATE(1634),
- [sym_jsx_element] = STATE(1634),
- [sym_jsx_opening_element] = STATE(3026),
- [sym_jsx_self_closing_element] = STATE(1634),
- [sym_class] = STATE(1650),
- [sym_function_expression] = STATE(1650),
- [sym_generator_function] = STATE(1650),
- [sym_arrow_function] = STATE(1650),
- [sym__call_signature] = STATE(5553),
- [sym_call_expression] = STATE(1650),
- [sym_new_expression] = STATE(1634),
- [sym_await_expression] = STATE(1634),
- [sym_member_expression] = STATE(1179),
- [sym_subscript_expression] = STATE(1179),
- [sym_assignment_expression] = STATE(1634),
- [sym__augmented_assignment_lhs] = STATE(2878),
- [sym_augmented_assignment_expression] = STATE(1634),
- [sym__destructuring_pattern] = STATE(5854),
- [sym_ternary_expression] = STATE(1634),
- [sym_binary_expression] = STATE(1634),
- [sym_unary_expression] = STATE(1634),
- [sym_update_expression] = STATE(1634),
- [sym_string] = STATE(1650),
- [sym_template_string] = STATE(1650),
- [sym_regex] = STATE(1650),
- [sym_meta_property] = STATE(1650),
- [sym_decorator] = STATE(1244),
- [sym_formal_parameters] = STATE(3915),
- [sym_non_null_expression] = STATE(1179),
- [sym_as_expression] = STATE(1634),
- [sym_satisfies_expression] = STATE(1634),
- [sym_instantiation_expression] = STATE(1634),
- [sym_internal_module] = STATE(1634),
- [sym_type_parameters] = STATE(5206),
- [aux_sym_export_statement_repeat1] = STATE(4458),
- [sym_identifier] = ACTIONS(942),
- [anon_sym_export] = ACTIONS(944),
- [anon_sym_STAR] = ACTIONS(122),
- [anon_sym_type] = ACTIONS(944),
- [anon_sym_EQ] = ACTIONS(946),
- [anon_sym_as] = ACTIONS(122),
- [anon_sym_namespace] = ACTIONS(948),
- [anon_sym_LBRACE] = ACTIONS(813),
- [anon_sym_RBRACE] = ACTIONS(162),
- [anon_sym_typeof] = ACTIONS(187),
- [anon_sym_import] = ACTIONS(133),
- [anon_sym_let] = ACTIONS(944),
- [anon_sym_BANG] = ACTIONS(187),
- [anon_sym_LPAREN] = ACTIONS(815),
- [anon_sym_await] = ACTIONS(142),
- [anon_sym_in] = ACTIONS(122),
- [anon_sym_COLON] = ACTIONS(162),
- [anon_sym_yield] = ACTIONS(144),
- [anon_sym_LBRACK] = ACTIONS(817),
- [sym_glimmer_opening_tag] = ACTIONS(148),
- [anon_sym_GT] = ACTIONS(122),
- [anon_sym_DOT] = ACTIONS(819),
- [anon_sym_DQUOTE] = ACTIONS(150),
- [anon_sym_SQUOTE] = ACTIONS(152),
- [anon_sym_class] = ACTIONS(154),
- [anon_sym_async] = ACTIONS(950),
- [anon_sym_function] = ACTIONS(158),
- [anon_sym_EQ_GT] = ACTIONS(952),
- [anon_sym_QMARK_DOT] = ACTIONS(162),
- [anon_sym_new] = ACTIONS(954),
- [anon_sym_using] = ACTIONS(166),
- [anon_sym_PLUS_EQ] = ACTIONS(168),
- [anon_sym_DASH_EQ] = ACTIONS(168),
- [anon_sym_STAR_EQ] = ACTIONS(168),
- [anon_sym_SLASH_EQ] = ACTIONS(168),
- [anon_sym_PERCENT_EQ] = ACTIONS(168),
- [anon_sym_CARET_EQ] = ACTIONS(168),
- [anon_sym_AMP_EQ] = ACTIONS(168),
- [anon_sym_PIPE_EQ] = ACTIONS(168),
- [anon_sym_GT_GT_EQ] = ACTIONS(168),
- [anon_sym_GT_GT_GT_EQ] = ACTIONS(168),
- [anon_sym_LT_LT_EQ] = ACTIONS(168),
- [anon_sym_STAR_STAR_EQ] = ACTIONS(168),
- [anon_sym_AMP_AMP_EQ] = ACTIONS(168),
- [anon_sym_PIPE_PIPE_EQ] = ACTIONS(168),
- [anon_sym_QMARK_QMARK_EQ] = ACTIONS(168),
- [anon_sym_AMP_AMP] = ACTIONS(122),
- [anon_sym_PIPE_PIPE] = ACTIONS(122),
- [anon_sym_GT_GT] = ACTIONS(122),
- [anon_sym_GT_GT_GT] = ACTIONS(122),
- [anon_sym_LT_LT] = ACTIONS(122),
- [anon_sym_AMP] = ACTIONS(122),
- [anon_sym_CARET] = ACTIONS(122),
- [anon_sym_PIPE] = ACTIONS(122),
- [anon_sym_PLUS] = ACTIONS(187),
- [anon_sym_DASH] = ACTIONS(187),
- [anon_sym_SLASH] = ACTIONS(646),
- [anon_sym_PERCENT] = ACTIONS(122),
- [anon_sym_STAR_STAR] = ACTIONS(122),
- [anon_sym_LT] = ACTIONS(181),
- [anon_sym_LT_EQ] = ACTIONS(162),
- [anon_sym_EQ_EQ] = ACTIONS(122),
- [anon_sym_EQ_EQ_EQ] = ACTIONS(162),
- [anon_sym_BANG_EQ] = ACTIONS(122),
- [anon_sym_BANG_EQ_EQ] = ACTIONS(162),
- [anon_sym_GT_EQ] = ACTIONS(162),
- [anon_sym_QMARK_QMARK] = ACTIONS(122),
- [anon_sym_instanceof] = ACTIONS(122),
- [anon_sym_TILDE] = ACTIONS(183),
- [anon_sym_void] = ACTIONS(187),
- [anon_sym_delete] = ACTIONS(187),
- [anon_sym_PLUS_PLUS] = ACTIONS(719),
- [anon_sym_DASH_DASH] = ACTIONS(719),
- [sym_comment] = ACTIONS(5),
- [anon_sym_BQUOTE] = ACTIONS(825),
- [sym_number] = ACTIONS(787),
- [sym_private_property_identifier] = ACTIONS(196),
- [sym_this] = ACTIONS(200),
- [sym_super] = ACTIONS(200),
- [sym_true] = ACTIONS(200),
- [sym_false] = ACTIONS(200),
- [sym_null] = ACTIONS(200),
- [sym_undefined] = ACTIONS(827),
- [anon_sym_AT] = ACTIONS(99),
- [anon_sym_static] = ACTIONS(944),
- [anon_sym_readonly] = ACTIONS(944),
- [anon_sym_get] = ACTIONS(944),
- [anon_sym_set] = ACTIONS(944),
- [anon_sym_declare] = ACTIONS(944),
- [anon_sym_public] = ACTIONS(944),
- [anon_sym_private] = ACTIONS(944),
- [anon_sym_protected] = ACTIONS(944),
- [anon_sym_override] = ACTIONS(944),
- [anon_sym_module] = ACTIONS(944),
- [anon_sym_any] = ACTIONS(944),
- [anon_sym_number] = ACTIONS(944),
- [anon_sym_boolean] = ACTIONS(944),
- [anon_sym_string] = ACTIONS(944),
- [anon_sym_symbol] = ACTIONS(944),
- [anon_sym_object] = ACTIONS(944),
- [anon_sym_satisfies] = ACTIONS(122),
- [sym__ternary_qmark] = ACTIONS(162),
- [sym_html_comment] = ACTIONS(5),
- },
- [119] = {
- [sym_import] = STATE(3334),
- [sym_parenthesized_expression] = STATE(1179),
- [sym_expression] = STATE(2415),
- [sym_primary_expression] = STATE(1430),
- [sym_yield_expression] = STATE(1634),
- [sym_object] = STATE(1650),
- [sym_object_pattern] = STATE(5854),
- [sym_array] = STATE(1650),
- [sym_array_pattern] = STATE(5854),
- [sym_glimmer_template] = STATE(1634),
- [sym_jsx_element] = STATE(1634),
- [sym_jsx_opening_element] = STATE(3026),
- [sym_jsx_self_closing_element] = STATE(1634),
- [sym_class] = STATE(1650),
- [sym_function_expression] = STATE(1650),
- [sym_generator_function] = STATE(1650),
- [sym_arrow_function] = STATE(1650),
- [sym__call_signature] = STATE(5619),
- [sym_call_expression] = STATE(1650),
- [sym_new_expression] = STATE(1634),
- [sym_await_expression] = STATE(1634),
- [sym_member_expression] = STATE(1179),
- [sym_subscript_expression] = STATE(1179),
- [sym_assignment_expression] = STATE(1634),
- [sym__augmented_assignment_lhs] = STATE(2878),
- [sym_augmented_assignment_expression] = STATE(1634),
- [sym__destructuring_pattern] = STATE(5854),
- [sym_ternary_expression] = STATE(1634),
- [sym_binary_expression] = STATE(1634),
- [sym_unary_expression] = STATE(1634),
- [sym_update_expression] = STATE(1634),
- [sym_string] = STATE(1650),
- [sym_template_string] = STATE(1650),
- [sym_regex] = STATE(1650),
- [sym_meta_property] = STATE(1650),
- [sym_decorator] = STATE(1244),
- [sym_formal_parameters] = STATE(3742),
- [sym_non_null_expression] = STATE(1179),
- [sym_as_expression] = STATE(1634),
- [sym_satisfies_expression] = STATE(1634),
- [sym_instantiation_expression] = STATE(1634),
- [sym_internal_module] = STATE(1634),
- [sym_type_parameters] = STATE(5349),
- [aux_sym_export_statement_repeat1] = STATE(4458),
- [sym_identifier] = ACTIONS(837),
- [anon_sym_export] = ACTIONS(839),
- [anon_sym_STAR] = ACTIONS(122),
- [anon_sym_type] = ACTIONS(839),
- [anon_sym_EQ] = ACTIONS(841),
- [anon_sym_as] = ACTIONS(122),
- [anon_sym_namespace] = ACTIONS(843),
- [anon_sym_LBRACE] = ACTIONS(845),
- [anon_sym_RBRACE] = ACTIONS(162),
- [anon_sym_typeof] = ACTIONS(187),
- [anon_sym_import] = ACTIONS(133),
- [anon_sym_let] = ACTIONS(839),
- [anon_sym_BANG] = ACTIONS(187),
- [anon_sym_LPAREN] = ACTIONS(815),
- [anon_sym_await] = ACTIONS(142),
- [anon_sym_in] = ACTIONS(122),
- [anon_sym_COLON] = ACTIONS(162),
- [anon_sym_yield] = ACTIONS(144),
- [anon_sym_LBRACK] = ACTIONS(849),
- [sym_glimmer_opening_tag] = ACTIONS(148),
- [anon_sym_GT] = ACTIONS(122),
- [anon_sym_DOT] = ACTIONS(819),
- [anon_sym_DQUOTE] = ACTIONS(150),
- [anon_sym_SQUOTE] = ACTIONS(152),
- [anon_sym_class] = ACTIONS(154),
- [anon_sym_async] = ACTIONS(851),
- [anon_sym_function] = ACTIONS(158),
- [anon_sym_EQ_GT] = ACTIONS(952),
- [anon_sym_QMARK_DOT] = ACTIONS(162),
- [anon_sym_new] = ACTIONS(853),
- [anon_sym_using] = ACTIONS(166),
- [anon_sym_PLUS_EQ] = ACTIONS(168),
- [anon_sym_DASH_EQ] = ACTIONS(168),
- [anon_sym_STAR_EQ] = ACTIONS(168),
- [anon_sym_SLASH_EQ] = ACTIONS(168),
- [anon_sym_PERCENT_EQ] = ACTIONS(168),
- [anon_sym_CARET_EQ] = ACTIONS(168),
- [anon_sym_AMP_EQ] = ACTIONS(168),
- [anon_sym_PIPE_EQ] = ACTIONS(168),
- [anon_sym_GT_GT_EQ] = ACTIONS(168),
- [anon_sym_GT_GT_GT_EQ] = ACTIONS(168),
- [anon_sym_LT_LT_EQ] = ACTIONS(168),
- [anon_sym_STAR_STAR_EQ] = ACTIONS(168),
- [anon_sym_AMP_AMP_EQ] = ACTIONS(168),
- [anon_sym_PIPE_PIPE_EQ] = ACTIONS(168),
- [anon_sym_QMARK_QMARK_EQ] = ACTIONS(168),
- [anon_sym_AMP_AMP] = ACTIONS(122),
- [anon_sym_PIPE_PIPE] = ACTIONS(122),
- [anon_sym_GT_GT] = ACTIONS(122),
- [anon_sym_GT_GT_GT] = ACTIONS(122),
- [anon_sym_LT_LT] = ACTIONS(122),
- [anon_sym_AMP] = ACTIONS(122),
- [anon_sym_CARET] = ACTIONS(122),
- [anon_sym_PIPE] = ACTIONS(122),
- [anon_sym_PLUS] = ACTIONS(187),
- [anon_sym_DASH] = ACTIONS(187),
- [anon_sym_SLASH] = ACTIONS(646),
- [anon_sym_PERCENT] = ACTIONS(122),
- [anon_sym_STAR_STAR] = ACTIONS(122),
- [anon_sym_LT] = ACTIONS(181),
- [anon_sym_LT_EQ] = ACTIONS(162),
- [anon_sym_EQ_EQ] = ACTIONS(122),
- [anon_sym_EQ_EQ_EQ] = ACTIONS(162),
- [anon_sym_BANG_EQ] = ACTIONS(122),
- [anon_sym_BANG_EQ_EQ] = ACTIONS(162),
- [anon_sym_GT_EQ] = ACTIONS(162),
- [anon_sym_QMARK_QMARK] = ACTIONS(122),
- [anon_sym_instanceof] = ACTIONS(122),
- [anon_sym_TILDE] = ACTIONS(183),
- [anon_sym_void] = ACTIONS(187),
- [anon_sym_delete] = ACTIONS(187),
- [anon_sym_PLUS_PLUS] = ACTIONS(719),
- [anon_sym_DASH_DASH] = ACTIONS(719),
- [sym_comment] = ACTIONS(5),
- [anon_sym_BQUOTE] = ACTIONS(825),
- [sym_number] = ACTIONS(787),
- [sym_private_property_identifier] = ACTIONS(196),
- [sym_this] = ACTIONS(200),
- [sym_super] = ACTIONS(200),
- [sym_true] = ACTIONS(200),
- [sym_false] = ACTIONS(200),
- [sym_null] = ACTIONS(200),
- [sym_undefined] = ACTIONS(827),
- [anon_sym_AT] = ACTIONS(99),
- [anon_sym_static] = ACTIONS(839),
- [anon_sym_readonly] = ACTIONS(839),
- [anon_sym_get] = ACTIONS(839),
- [anon_sym_set] = ACTIONS(839),
- [anon_sym_declare] = ACTIONS(839),
- [anon_sym_public] = ACTIONS(839),
- [anon_sym_private] = ACTIONS(839),
- [anon_sym_protected] = ACTIONS(839),
- [anon_sym_override] = ACTIONS(839),
- [anon_sym_module] = ACTIONS(839),
- [anon_sym_any] = ACTIONS(839),
- [anon_sym_number] = ACTIONS(839),
- [anon_sym_boolean] = ACTIONS(839),
- [anon_sym_string] = ACTIONS(839),
- [anon_sym_symbol] = ACTIONS(839),
- [anon_sym_object] = ACTIONS(839),
- [anon_sym_satisfies] = ACTIONS(122),
- [sym__ternary_qmark] = ACTIONS(162),
- [sym_html_comment] = ACTIONS(5),
- },
- [120] = {
- [sym_import] = STATE(3334),
- [sym_parenthesized_expression] = STATE(1179),
- [sym_expression] = STATE(2415),
- [sym_primary_expression] = STATE(1430),
- [sym_yield_expression] = STATE(1634),
- [sym_object] = STATE(1650),
- [sym_object_pattern] = STATE(5854),
- [sym_array] = STATE(1650),
- [sym_array_pattern] = STATE(5854),
- [sym_glimmer_template] = STATE(1634),
- [sym_jsx_element] = STATE(1634),
- [sym_jsx_opening_element] = STATE(3026),
- [sym_jsx_self_closing_element] = STATE(1634),
- [sym_class] = STATE(1650),
- [sym_function_expression] = STATE(1650),
- [sym_generator_function] = STATE(1650),
- [sym_arrow_function] = STATE(1650),
- [sym__call_signature] = STATE(5553),
- [sym_call_expression] = STATE(1650),
- [sym_new_expression] = STATE(1634),
- [sym_await_expression] = STATE(1634),
- [sym_member_expression] = STATE(1179),
- [sym_subscript_expression] = STATE(1179),
- [sym_assignment_expression] = STATE(1634),
- [sym__augmented_assignment_lhs] = STATE(2878),
- [sym_augmented_assignment_expression] = STATE(1634),
- [sym__destructuring_pattern] = STATE(5854),
- [sym_ternary_expression] = STATE(1634),
- [sym_binary_expression] = STATE(1634),
- [sym_unary_expression] = STATE(1634),
- [sym_update_expression] = STATE(1634),
- [sym_string] = STATE(1650),
- [sym_template_string] = STATE(1650),
- [sym_regex] = STATE(1650),
- [sym_meta_property] = STATE(1650),
- [sym_decorator] = STATE(1244),
- [sym_formal_parameters] = STATE(3742),
- [sym_non_null_expression] = STATE(1179),
- [sym_as_expression] = STATE(1634),
- [sym_satisfies_expression] = STATE(1634),
- [sym_instantiation_expression] = STATE(1634),
- [sym_internal_module] = STATE(1634),
- [sym_type_parameters] = STATE(5349),
- [aux_sym_export_statement_repeat1] = STATE(4458),
- [sym_identifier] = ACTIONS(942),
- [anon_sym_export] = ACTIONS(944),
- [anon_sym_STAR] = ACTIONS(122),
- [anon_sym_type] = ACTIONS(944),
- [anon_sym_EQ] = ACTIONS(946),
- [anon_sym_as] = ACTIONS(122),
- [anon_sym_namespace] = ACTIONS(948),
- [anon_sym_LBRACE] = ACTIONS(813),
- [anon_sym_RBRACE] = ACTIONS(162),
- [anon_sym_typeof] = ACTIONS(187),
- [anon_sym_import] = ACTIONS(133),
- [anon_sym_let] = ACTIONS(944),
- [anon_sym_BANG] = ACTIONS(187),
- [anon_sym_LPAREN] = ACTIONS(815),
- [anon_sym_await] = ACTIONS(142),
- [anon_sym_in] = ACTIONS(122),
- [anon_sym_COLON] = ACTIONS(162),
- [anon_sym_yield] = ACTIONS(144),
- [anon_sym_LBRACK] = ACTIONS(817),
- [sym_glimmer_opening_tag] = ACTIONS(148),
- [anon_sym_GT] = ACTIONS(122),
- [anon_sym_DOT] = ACTIONS(819),
- [anon_sym_DQUOTE] = ACTIONS(150),
- [anon_sym_SQUOTE] = ACTIONS(152),
- [anon_sym_class] = ACTIONS(154),
- [anon_sym_async] = ACTIONS(950),
- [anon_sym_function] = ACTIONS(158),
- [anon_sym_EQ_GT] = ACTIONS(952),
- [anon_sym_QMARK_DOT] = ACTIONS(162),
- [anon_sym_new] = ACTIONS(954),
- [anon_sym_using] = ACTIONS(166),
- [anon_sym_PLUS_EQ] = ACTIONS(168),
- [anon_sym_DASH_EQ] = ACTIONS(168),
- [anon_sym_STAR_EQ] = ACTIONS(168),
- [anon_sym_SLASH_EQ] = ACTIONS(168),
- [anon_sym_PERCENT_EQ] = ACTIONS(168),
- [anon_sym_CARET_EQ] = ACTIONS(168),
- [anon_sym_AMP_EQ] = ACTIONS(168),
- [anon_sym_PIPE_EQ] = ACTIONS(168),
- [anon_sym_GT_GT_EQ] = ACTIONS(168),
- [anon_sym_GT_GT_GT_EQ] = ACTIONS(168),
- [anon_sym_LT_LT_EQ] = ACTIONS(168),
- [anon_sym_STAR_STAR_EQ] = ACTIONS(168),
- [anon_sym_AMP_AMP_EQ] = ACTIONS(168),
- [anon_sym_PIPE_PIPE_EQ] = ACTIONS(168),
- [anon_sym_QMARK_QMARK_EQ] = ACTIONS(168),
- [anon_sym_AMP_AMP] = ACTIONS(122),
- [anon_sym_PIPE_PIPE] = ACTIONS(122),
- [anon_sym_GT_GT] = ACTIONS(122),
- [anon_sym_GT_GT_GT] = ACTIONS(122),
- [anon_sym_LT_LT] = ACTIONS(122),
- [anon_sym_AMP] = ACTIONS(122),
- [anon_sym_CARET] = ACTIONS(122),
- [anon_sym_PIPE] = ACTIONS(122),
- [anon_sym_PLUS] = ACTIONS(187),
- [anon_sym_DASH] = ACTIONS(187),
- [anon_sym_SLASH] = ACTIONS(646),
- [anon_sym_PERCENT] = ACTIONS(122),
- [anon_sym_STAR_STAR] = ACTIONS(122),
- [anon_sym_LT] = ACTIONS(181),
- [anon_sym_LT_EQ] = ACTIONS(162),
- [anon_sym_EQ_EQ] = ACTIONS(122),
- [anon_sym_EQ_EQ_EQ] = ACTIONS(162),
- [anon_sym_BANG_EQ] = ACTIONS(122),
- [anon_sym_BANG_EQ_EQ] = ACTIONS(162),
- [anon_sym_GT_EQ] = ACTIONS(162),
- [anon_sym_QMARK_QMARK] = ACTIONS(122),
- [anon_sym_instanceof] = ACTIONS(122),
- [anon_sym_TILDE] = ACTIONS(183),
- [anon_sym_void] = ACTIONS(187),
- [anon_sym_delete] = ACTIONS(187),
- [anon_sym_PLUS_PLUS] = ACTIONS(719),
- [anon_sym_DASH_DASH] = ACTIONS(719),
- [sym_comment] = ACTIONS(5),
- [anon_sym_BQUOTE] = ACTIONS(825),
- [sym_number] = ACTIONS(787),
- [sym_private_property_identifier] = ACTIONS(196),
- [sym_this] = ACTIONS(200),
- [sym_super] = ACTIONS(200),
- [sym_true] = ACTIONS(200),
- [sym_false] = ACTIONS(200),
- [sym_null] = ACTIONS(200),
- [sym_undefined] = ACTIONS(827),
- [anon_sym_AT] = ACTIONS(99),
- [anon_sym_static] = ACTIONS(944),
- [anon_sym_readonly] = ACTIONS(944),
- [anon_sym_get] = ACTIONS(944),
- [anon_sym_set] = ACTIONS(944),
- [anon_sym_declare] = ACTIONS(944),
- [anon_sym_public] = ACTIONS(944),
- [anon_sym_private] = ACTIONS(944),
- [anon_sym_protected] = ACTIONS(944),
- [anon_sym_override] = ACTIONS(944),
- [anon_sym_module] = ACTIONS(944),
- [anon_sym_any] = ACTIONS(944),
- [anon_sym_number] = ACTIONS(944),
- [anon_sym_boolean] = ACTIONS(944),
- [anon_sym_string] = ACTIONS(944),
- [anon_sym_symbol] = ACTIONS(944),
- [anon_sym_object] = ACTIONS(944),
- [anon_sym_satisfies] = ACTIONS(122),
- [sym__ternary_qmark] = ACTIONS(162),
- [sym_html_comment] = ACTIONS(5),
- },
- [121] = {
- [sym_import] = STATE(3334),
- [sym_parenthesized_expression] = STATE(1179),
- [sym_expression] = STATE(2415),
- [sym_primary_expression] = STATE(1430),
- [sym_yield_expression] = STATE(1634),
- [sym_object] = STATE(1650),
- [sym_object_pattern] = STATE(5854),
- [sym_array] = STATE(1650),
- [sym_array_pattern] = STATE(5854),
- [sym_glimmer_template] = STATE(1634),
- [sym_jsx_element] = STATE(1634),
- [sym_jsx_opening_element] = STATE(3026),
- [sym_jsx_self_closing_element] = STATE(1634),
- [sym_class] = STATE(1650),
- [sym_function_expression] = STATE(1650),
- [sym_generator_function] = STATE(1650),
- [sym_arrow_function] = STATE(1650),
- [sym__call_signature] = STATE(5743),
- [sym_call_expression] = STATE(1650),
- [sym_new_expression] = STATE(1634),
- [sym_await_expression] = STATE(1634),
- [sym_member_expression] = STATE(1179),
- [sym_subscript_expression] = STATE(1179),
- [sym_assignment_expression] = STATE(1634),
- [sym__augmented_assignment_lhs] = STATE(2878),
- [sym_augmented_assignment_expression] = STATE(1634),
- [sym__destructuring_pattern] = STATE(5854),
- [sym_ternary_expression] = STATE(1634),
- [sym_binary_expression] = STATE(1634),
- [sym_unary_expression] = STATE(1634),
- [sym_update_expression] = STATE(1634),
- [sym_string] = STATE(1650),
- [sym_template_string] = STATE(1650),
- [sym_regex] = STATE(1650),
- [sym_meta_property] = STATE(1650),
- [sym_decorator] = STATE(1244),
- [sym_formal_parameters] = STATE(3915),
- [sym_non_null_expression] = STATE(1179),
- [sym_as_expression] = STATE(1634),
- [sym_satisfies_expression] = STATE(1634),
- [sym_instantiation_expression] = STATE(1634),
- [sym_internal_module] = STATE(1634),
- [sym_type_parameters] = STATE(5206),
- [aux_sym_export_statement_repeat1] = STATE(4458),
- [sym_identifier] = ACTIONS(908),
- [anon_sym_export] = ACTIONS(910),
- [anon_sym_STAR] = ACTIONS(122),
- [anon_sym_type] = ACTIONS(910),
- [anon_sym_EQ] = ACTIONS(912),
- [anon_sym_as] = ACTIONS(122),
- [anon_sym_namespace] = ACTIONS(914),
- [anon_sym_LBRACE] = ACTIONS(813),
- [anon_sym_COMMA] = ACTIONS(162),
- [anon_sym_typeof] = ACTIONS(187),
- [anon_sym_import] = ACTIONS(133),
- [anon_sym_let] = ACTIONS(910),
- [anon_sym_BANG] = ACTIONS(187),
- [anon_sym_LPAREN] = ACTIONS(815),
- [anon_sym_await] = ACTIONS(142),
- [anon_sym_in] = ACTIONS(122),
- [anon_sym_yield] = ACTIONS(144),
- [anon_sym_LBRACK] = ACTIONS(817),
- [sym_glimmer_opening_tag] = ACTIONS(148),
- [anon_sym_GT] = ACTIONS(122),
- [anon_sym_DOT] = ACTIONS(819),
- [anon_sym_DQUOTE] = ACTIONS(150),
- [anon_sym_SQUOTE] = ACTIONS(152),
- [anon_sym_class] = ACTIONS(154),
- [anon_sym_async] = ACTIONS(916),
- [anon_sym_function] = ACTIONS(158),
- [anon_sym_EQ_GT] = ACTIONS(918),
- [anon_sym_QMARK_DOT] = ACTIONS(162),
- [anon_sym_new] = ACTIONS(920),
- [anon_sym_using] = ACTIONS(166),
- [anon_sym_PLUS_EQ] = ACTIONS(168),
- [anon_sym_DASH_EQ] = ACTIONS(168),
- [anon_sym_STAR_EQ] = ACTIONS(168),
- [anon_sym_SLASH_EQ] = ACTIONS(168),
- [anon_sym_PERCENT_EQ] = ACTIONS(168),
- [anon_sym_CARET_EQ] = ACTIONS(168),
- [anon_sym_AMP_EQ] = ACTIONS(168),
- [anon_sym_PIPE_EQ] = ACTIONS(168),
- [anon_sym_GT_GT_EQ] = ACTIONS(168),
- [anon_sym_GT_GT_GT_EQ] = ACTIONS(168),
- [anon_sym_LT_LT_EQ] = ACTIONS(168),
- [anon_sym_STAR_STAR_EQ] = ACTIONS(168),
- [anon_sym_AMP_AMP_EQ] = ACTIONS(168),
- [anon_sym_PIPE_PIPE_EQ] = ACTIONS(168),
- [anon_sym_QMARK_QMARK_EQ] = ACTIONS(168),
- [anon_sym_AMP_AMP] = ACTIONS(122),
- [anon_sym_PIPE_PIPE] = ACTIONS(122),
- [anon_sym_GT_GT] = ACTIONS(122),
- [anon_sym_GT_GT_GT] = ACTIONS(122),
- [anon_sym_LT_LT] = ACTIONS(122),
- [anon_sym_AMP] = ACTIONS(122),
- [anon_sym_CARET] = ACTIONS(122),
- [anon_sym_PIPE] = ACTIONS(122),
- [anon_sym_PLUS] = ACTIONS(187),
- [anon_sym_DASH] = ACTIONS(187),
- [anon_sym_SLASH] = ACTIONS(922),
- [anon_sym_PERCENT] = ACTIONS(122),
- [anon_sym_STAR_STAR] = ACTIONS(122),
- [anon_sym_LT] = ACTIONS(181),
- [anon_sym_LT_EQ] = ACTIONS(162),
- [anon_sym_EQ_EQ] = ACTIONS(122),
- [anon_sym_EQ_EQ_EQ] = ACTIONS(162),
- [anon_sym_BANG_EQ] = ACTIONS(122),
- [anon_sym_BANG_EQ_EQ] = ACTIONS(162),
- [anon_sym_GT_EQ] = ACTIONS(162),
- [anon_sym_QMARK_QMARK] = ACTIONS(122),
- [anon_sym_instanceof] = ACTIONS(122),
- [anon_sym_TILDE] = ACTIONS(183),
- [anon_sym_void] = ACTIONS(187),
- [anon_sym_delete] = ACTIONS(187),
- [anon_sym_PLUS_PLUS] = ACTIONS(719),
- [anon_sym_DASH_DASH] = ACTIONS(719),
- [sym_comment] = ACTIONS(5),
- [anon_sym_BQUOTE] = ACTIONS(825),
- [sym_number] = ACTIONS(787),
- [sym_private_property_identifier] = ACTIONS(196),
- [sym_this] = ACTIONS(200),
- [sym_super] = ACTIONS(200),
- [sym_true] = ACTIONS(200),
- [sym_false] = ACTIONS(200),
- [sym_null] = ACTIONS(200),
- [sym_undefined] = ACTIONS(827),
- [anon_sym_AT] = ACTIONS(99),
- [anon_sym_static] = ACTIONS(910),
- [anon_sym_readonly] = ACTIONS(910),
- [anon_sym_get] = ACTIONS(910),
- [anon_sym_set] = ACTIONS(910),
- [anon_sym_declare] = ACTIONS(910),
- [anon_sym_public] = ACTIONS(910),
- [anon_sym_private] = ACTIONS(910),
- [anon_sym_protected] = ACTIONS(910),
- [anon_sym_override] = ACTIONS(910),
- [anon_sym_module] = ACTIONS(910),
- [anon_sym_any] = ACTIONS(910),
- [anon_sym_number] = ACTIONS(910),
- [anon_sym_boolean] = ACTIONS(910),
- [anon_sym_string] = ACTIONS(910),
- [anon_sym_symbol] = ACTIONS(910),
- [anon_sym_object] = ACTIONS(910),
- [anon_sym_satisfies] = ACTIONS(122),
- [anon_sym_implements] = ACTIONS(122),
- [sym__ternary_qmark] = ACTIONS(162),
- [sym_html_comment] = ACTIONS(5),
- },
- [122] = {
- [sym_import] = STATE(3334),
- [sym_parenthesized_expression] = STATE(1179),
- [sym_expression] = STATE(2415),
- [sym_primary_expression] = STATE(1430),
- [sym_yield_expression] = STATE(1634),
- [sym_object] = STATE(1650),
- [sym_object_pattern] = STATE(5854),
- [sym_array] = STATE(1650),
- [sym_array_pattern] = STATE(5854),
- [sym_glimmer_template] = STATE(1634),
- [sym_jsx_element] = STATE(1634),
- [sym_jsx_opening_element] = STATE(3026),
- [sym_jsx_self_closing_element] = STATE(1634),
- [sym_class] = STATE(1650),
- [sym_function_expression] = STATE(1650),
- [sym_generator_function] = STATE(1650),
- [sym_arrow_function] = STATE(1650),
- [sym__call_signature] = STATE(5828),
- [sym_call_expression] = STATE(1650),
- [sym_new_expression] = STATE(1634),
- [sym_await_expression] = STATE(1634),
- [sym_member_expression] = STATE(1179),
- [sym_subscript_expression] = STATE(1179),
- [sym_assignment_expression] = STATE(1634),
- [sym__augmented_assignment_lhs] = STATE(2878),
- [sym_augmented_assignment_expression] = STATE(1634),
- [sym__destructuring_pattern] = STATE(5854),
- [sym_ternary_expression] = STATE(1634),
- [sym_binary_expression] = STATE(1634),
- [sym_unary_expression] = STATE(1634),
- [sym_update_expression] = STATE(1634),
- [sym_string] = STATE(1650),
- [sym_template_string] = STATE(1650),
- [sym_regex] = STATE(1650),
- [sym_meta_property] = STATE(1650),
- [sym_decorator] = STATE(1244),
- [sym_formal_parameters] = STATE(4351),
- [sym_non_null_expression] = STATE(1179),
- [sym_as_expression] = STATE(1634),
- [sym_satisfies_expression] = STATE(1634),
- [sym_instantiation_expression] = STATE(1634),
- [sym_internal_module] = STATE(1634),
- [sym_type_parameters] = STATE(5521),
- [aux_sym_export_statement_repeat1] = STATE(4458),
- [sym_identifier] = ACTIONS(807),
- [anon_sym_export] = ACTIONS(809),
- [anon_sym_STAR] = ACTIONS(122),
- [anon_sym_type] = ACTIONS(809),
- [anon_sym_EQ] = ACTIONS(119),
- [anon_sym_as] = ACTIONS(122),
- [anon_sym_namespace] = ACTIONS(811),
- [anon_sym_LBRACE] = ACTIONS(813),
- [anon_sym_COMMA] = ACTIONS(128),
- [anon_sym_typeof] = ACTIONS(187),
- [anon_sym_import] = ACTIONS(133),
- [anon_sym_let] = ACTIONS(809),
- [anon_sym_BANG] = ACTIONS(187),
- [anon_sym_LPAREN] = ACTIONS(815),
- [anon_sym_await] = ACTIONS(142),
- [anon_sym_in] = ACTIONS(122),
- [anon_sym_yield] = ACTIONS(144),
- [anon_sym_LBRACK] = ACTIONS(817),
- [anon_sym_RBRACK] = ACTIONS(128),
- [sym_glimmer_opening_tag] = ACTIONS(148),
- [anon_sym_GT] = ACTIONS(122),
- [anon_sym_DOT] = ACTIONS(819),
- [anon_sym_DQUOTE] = ACTIONS(150),
- [anon_sym_SQUOTE] = ACTIONS(152),
- [anon_sym_class] = ACTIONS(154),
- [anon_sym_async] = ACTIONS(821),
- [anon_sym_function] = ACTIONS(158),
- [anon_sym_EQ_GT] = ACTIONS(160),
- [anon_sym_QMARK_DOT] = ACTIONS(162),
- [anon_sym_new] = ACTIONS(823),
- [anon_sym_using] = ACTIONS(166),
- [anon_sym_PLUS_EQ] = ACTIONS(168),
- [anon_sym_DASH_EQ] = ACTIONS(168),
- [anon_sym_STAR_EQ] = ACTIONS(168),
- [anon_sym_SLASH_EQ] = ACTIONS(168),
- [anon_sym_PERCENT_EQ] = ACTIONS(168),
- [anon_sym_CARET_EQ] = ACTIONS(168),
- [anon_sym_AMP_EQ] = ACTIONS(168),
- [anon_sym_PIPE_EQ] = ACTIONS(168),
- [anon_sym_GT_GT_EQ] = ACTIONS(168),
- [anon_sym_GT_GT_GT_EQ] = ACTIONS(168),
- [anon_sym_LT_LT_EQ] = ACTIONS(168),
- [anon_sym_STAR_STAR_EQ] = ACTIONS(168),
- [anon_sym_AMP_AMP_EQ] = ACTIONS(168),
- [anon_sym_PIPE_PIPE_EQ] = ACTIONS(168),
- [anon_sym_QMARK_QMARK_EQ] = ACTIONS(168),
- [anon_sym_AMP_AMP] = ACTIONS(122),
- [anon_sym_PIPE_PIPE] = ACTIONS(122),
- [anon_sym_GT_GT] = ACTIONS(122),
- [anon_sym_GT_GT_GT] = ACTIONS(122),
- [anon_sym_LT_LT] = ACTIONS(122),
- [anon_sym_AMP] = ACTIONS(122),
- [anon_sym_CARET] = ACTIONS(122),
- [anon_sym_PIPE] = ACTIONS(122),
- [anon_sym_PLUS] = ACTIONS(187),
- [anon_sym_DASH] = ACTIONS(187),
- [anon_sym_SLASH] = ACTIONS(646),
- [anon_sym_PERCENT] = ACTIONS(122),
- [anon_sym_STAR_STAR] = ACTIONS(122),
- [anon_sym_LT] = ACTIONS(181),
- [anon_sym_LT_EQ] = ACTIONS(162),
- [anon_sym_EQ_EQ] = ACTIONS(122),
- [anon_sym_EQ_EQ_EQ] = ACTIONS(162),
- [anon_sym_BANG_EQ] = ACTIONS(122),
- [anon_sym_BANG_EQ_EQ] = ACTIONS(162),
- [anon_sym_GT_EQ] = ACTIONS(162),
- [anon_sym_QMARK_QMARK] = ACTIONS(122),
- [anon_sym_instanceof] = ACTIONS(122),
- [anon_sym_TILDE] = ACTIONS(183),
- [anon_sym_void] = ACTIONS(187),
- [anon_sym_delete] = ACTIONS(187),
- [anon_sym_PLUS_PLUS] = ACTIONS(719),
- [anon_sym_DASH_DASH] = ACTIONS(719),
- [sym_comment] = ACTIONS(5),
- [anon_sym_BQUOTE] = ACTIONS(825),
- [sym_number] = ACTIONS(787),
- [sym_private_property_identifier] = ACTIONS(196),
- [sym_this] = ACTIONS(200),
- [sym_super] = ACTIONS(200),
- [sym_true] = ACTIONS(200),
- [sym_false] = ACTIONS(200),
- [sym_null] = ACTIONS(200),
- [sym_undefined] = ACTIONS(827),
- [anon_sym_AT] = ACTIONS(99),
- [anon_sym_static] = ACTIONS(809),
- [anon_sym_readonly] = ACTIONS(809),
- [anon_sym_get] = ACTIONS(809),
- [anon_sym_set] = ACTIONS(809),
- [anon_sym_declare] = ACTIONS(809),
- [anon_sym_public] = ACTIONS(809),
- [anon_sym_private] = ACTIONS(809),
- [anon_sym_protected] = ACTIONS(809),
- [anon_sym_override] = ACTIONS(809),
- [anon_sym_module] = ACTIONS(809),
- [anon_sym_any] = ACTIONS(809),
- [anon_sym_number] = ACTIONS(809),
- [anon_sym_boolean] = ACTIONS(809),
- [anon_sym_string] = ACTIONS(809),
- [anon_sym_symbol] = ACTIONS(809),
- [anon_sym_object] = ACTIONS(809),
- [anon_sym_satisfies] = ACTIONS(122),
- [sym__ternary_qmark] = ACTIONS(162),
- [sym_html_comment] = ACTIONS(5),
- },
- [123] = {
- [sym_import] = STATE(3334),
- [sym_parenthesized_expression] = STATE(1179),
- [sym_expression] = STATE(2415),
- [sym_primary_expression] = STATE(1430),
- [sym_yield_expression] = STATE(1634),
- [sym_object] = STATE(1650),
- [sym_object_pattern] = STATE(5854),
- [sym_array] = STATE(1650),
- [sym_array_pattern] = STATE(5854),
- [sym_glimmer_template] = STATE(1634),
- [sym_jsx_element] = STATE(1634),
- [sym_jsx_opening_element] = STATE(3026),
- [sym_jsx_self_closing_element] = STATE(1634),
- [sym_class] = STATE(1650),
- [sym_function_expression] = STATE(1650),
- [sym_generator_function] = STATE(1650),
- [sym_arrow_function] = STATE(1650),
- [sym__call_signature] = STATE(5619),
- [sym_call_expression] = STATE(1650),
- [sym_new_expression] = STATE(1634),
- [sym_await_expression] = STATE(1634),
- [sym_member_expression] = STATE(1179),
- [sym_subscript_expression] = STATE(1179),
- [sym_assignment_expression] = STATE(1634),
- [sym__augmented_assignment_lhs] = STATE(2878),
- [sym_augmented_assignment_expression] = STATE(1634),
- [sym__destructuring_pattern] = STATE(5854),
- [sym_ternary_expression] = STATE(1634),
- [sym_binary_expression] = STATE(1634),
- [sym_unary_expression] = STATE(1634),
- [sym_update_expression] = STATE(1634),
- [sym_string] = STATE(1650),
- [sym_template_string] = STATE(1650),
- [sym_regex] = STATE(1650),
- [sym_meta_property] = STATE(1650),
- [sym_decorator] = STATE(1244),
- [sym_formal_parameters] = STATE(3742),
- [sym_non_null_expression] = STATE(1179),
- [sym_as_expression] = STATE(1634),
- [sym_satisfies_expression] = STATE(1634),
- [sym_instantiation_expression] = STATE(1634),
- [sym_internal_module] = STATE(1634),
- [sym_type_parameters] = STATE(5349),
- [aux_sym_export_statement_repeat1] = STATE(4458),
- [sym_identifier] = ACTIONS(837),
- [anon_sym_export] = ACTIONS(839),
- [anon_sym_STAR] = ACTIONS(122),
- [anon_sym_type] = ACTIONS(839),
- [anon_sym_EQ] = ACTIONS(841),
- [anon_sym_as] = ACTIONS(122),
- [anon_sym_namespace] = ACTIONS(843),
- [anon_sym_LBRACE] = ACTIONS(845),
- [anon_sym_typeof] = ACTIONS(187),
- [anon_sym_import] = ACTIONS(133),
- [anon_sym_let] = ACTIONS(839),
- [anon_sym_BANG] = ACTIONS(187),
- [anon_sym_LPAREN] = ACTIONS(815),
- [anon_sym_await] = ACTIONS(142),
- [anon_sym_in] = ACTIONS(861),
- [anon_sym_of] = ACTIONS(864),
- [anon_sym_yield] = ACTIONS(144),
- [anon_sym_LBRACK] = ACTIONS(849),
- [sym_glimmer_opening_tag] = ACTIONS(148),
- [anon_sym_GT] = ACTIONS(122),
- [anon_sym_DOT] = ACTIONS(819),
- [anon_sym_DQUOTE] = ACTIONS(150),
- [anon_sym_SQUOTE] = ACTIONS(152),
- [anon_sym_class] = ACTIONS(154),
- [anon_sym_async] = ACTIONS(851),
- [anon_sym_function] = ACTIONS(158),
- [anon_sym_EQ_GT] = ACTIONS(229),
- [anon_sym_QMARK_DOT] = ACTIONS(162),
- [anon_sym_new] = ACTIONS(853),
- [anon_sym_using] = ACTIONS(166),
- [anon_sym_PLUS_EQ] = ACTIONS(168),
- [anon_sym_DASH_EQ] = ACTIONS(168),
- [anon_sym_STAR_EQ] = ACTIONS(168),
- [anon_sym_SLASH_EQ] = ACTIONS(168),
- [anon_sym_PERCENT_EQ] = ACTIONS(168),
- [anon_sym_CARET_EQ] = ACTIONS(168),
- [anon_sym_AMP_EQ] = ACTIONS(168),
- [anon_sym_PIPE_EQ] = ACTIONS(168),
- [anon_sym_GT_GT_EQ] = ACTIONS(168),
- [anon_sym_GT_GT_GT_EQ] = ACTIONS(168),
- [anon_sym_LT_LT_EQ] = ACTIONS(168),
- [anon_sym_STAR_STAR_EQ] = ACTIONS(168),
- [anon_sym_AMP_AMP_EQ] = ACTIONS(168),
- [anon_sym_PIPE_PIPE_EQ] = ACTIONS(168),
- [anon_sym_QMARK_QMARK_EQ] = ACTIONS(168),
- [anon_sym_AMP_AMP] = ACTIONS(122),
- [anon_sym_PIPE_PIPE] = ACTIONS(122),
- [anon_sym_GT_GT] = ACTIONS(122),
- [anon_sym_GT_GT_GT] = ACTIONS(122),
- [anon_sym_LT_LT] = ACTIONS(122),
- [anon_sym_AMP] = ACTIONS(122),
- [anon_sym_CARET] = ACTIONS(122),
- [anon_sym_PIPE] = ACTIONS(122),
- [anon_sym_PLUS] = ACTIONS(187),
- [anon_sym_DASH] = ACTIONS(187),
- [anon_sym_SLASH] = ACTIONS(646),
- [anon_sym_PERCENT] = ACTIONS(122),
- [anon_sym_STAR_STAR] = ACTIONS(122),
- [anon_sym_LT] = ACTIONS(181),
- [anon_sym_LT_EQ] = ACTIONS(162),
- [anon_sym_EQ_EQ] = ACTIONS(122),
- [anon_sym_EQ_EQ_EQ] = ACTIONS(162),
- [anon_sym_BANG_EQ] = ACTIONS(122),
- [anon_sym_BANG_EQ_EQ] = ACTIONS(162),
- [anon_sym_GT_EQ] = ACTIONS(162),
- [anon_sym_QMARK_QMARK] = ACTIONS(122),
- [anon_sym_instanceof] = ACTIONS(122),
- [anon_sym_TILDE] = ACTIONS(183),
- [anon_sym_void] = ACTIONS(187),
- [anon_sym_delete] = ACTIONS(187),
- [anon_sym_PLUS_PLUS] = ACTIONS(719),
- [anon_sym_DASH_DASH] = ACTIONS(719),
- [sym_comment] = ACTIONS(5),
- [anon_sym_BQUOTE] = ACTIONS(825),
- [sym_number] = ACTIONS(787),
- [sym_private_property_identifier] = ACTIONS(196),
- [sym_this] = ACTIONS(200),
- [sym_super] = ACTIONS(200),
- [sym_true] = ACTIONS(200),
- [sym_false] = ACTIONS(200),
- [sym_null] = ACTIONS(200),
- [sym_undefined] = ACTIONS(827),
- [anon_sym_AT] = ACTIONS(99),
- [anon_sym_static] = ACTIONS(839),
- [anon_sym_readonly] = ACTIONS(839),
- [anon_sym_get] = ACTIONS(839),
- [anon_sym_set] = ACTIONS(839),
- [anon_sym_declare] = ACTIONS(839),
- [anon_sym_public] = ACTIONS(839),
- [anon_sym_private] = ACTIONS(839),
- [anon_sym_protected] = ACTIONS(839),
- [anon_sym_override] = ACTIONS(839),
- [anon_sym_module] = ACTIONS(839),
- [anon_sym_any] = ACTIONS(839),
- [anon_sym_number] = ACTIONS(839),
- [anon_sym_boolean] = ACTIONS(839),
- [anon_sym_string] = ACTIONS(839),
- [anon_sym_symbol] = ACTIONS(839),
- [anon_sym_object] = ACTIONS(839),
- [anon_sym_satisfies] = ACTIONS(122),
- [sym__ternary_qmark] = ACTIONS(162),
- [sym_html_comment] = ACTIONS(5),
- },
- [124] = {
- [sym_import] = STATE(3334),
- [sym_parenthesized_expression] = STATE(1179),
- [sym_expression] = STATE(2415),
- [sym_primary_expression] = STATE(1430),
- [sym_yield_expression] = STATE(1634),
- [sym_object] = STATE(1650),
- [sym_object_pattern] = STATE(5854),
- [sym_array] = STATE(1650),
- [sym_array_pattern] = STATE(5854),
- [sym_glimmer_template] = STATE(1634),
- [sym_jsx_element] = STATE(1634),
- [sym_jsx_opening_element] = STATE(3026),
- [sym_jsx_self_closing_element] = STATE(1634),
- [sym_class] = STATE(1650),
- [sym_function_expression] = STATE(1650),
- [sym_generator_function] = STATE(1650),
- [sym_arrow_function] = STATE(1650),
- [sym__call_signature] = STATE(5619),
- [sym_call_expression] = STATE(1650),
- [sym_new_expression] = STATE(1634),
- [sym_await_expression] = STATE(1634),
- [sym_member_expression] = STATE(1179),
- [sym_subscript_expression] = STATE(1179),
- [sym_assignment_expression] = STATE(1634),
- [sym__augmented_assignment_lhs] = STATE(2878),
- [sym_augmented_assignment_expression] = STATE(1634),
- [sym__destructuring_pattern] = STATE(5854),
- [sym_ternary_expression] = STATE(1634),
- [sym_binary_expression] = STATE(1634),
- [sym_unary_expression] = STATE(1634),
- [sym_update_expression] = STATE(1634),
- [sym_string] = STATE(1650),
- [sym_template_string] = STATE(1650),
- [sym_regex] = STATE(1650),
- [sym_meta_property] = STATE(1650),
- [sym_decorator] = STATE(1244),
- [sym_formal_parameters] = STATE(3915),
- [sym_non_null_expression] = STATE(1179),
- [sym_as_expression] = STATE(1634),
- [sym_satisfies_expression] = STATE(1634),
- [sym_instantiation_expression] = STATE(1634),
- [sym_internal_module] = STATE(1634),
- [sym_type_parameters] = STATE(5206),
- [aux_sym_export_statement_repeat1] = STATE(4458),
- [sym_identifier] = ACTIONS(837),
- [anon_sym_export] = ACTIONS(839),
- [anon_sym_STAR] = ACTIONS(122),
- [anon_sym_type] = ACTIONS(839),
- [anon_sym_EQ] = ACTIONS(841),
- [anon_sym_as] = ACTIONS(122),
- [anon_sym_namespace] = ACTIONS(843),
- [anon_sym_LBRACE] = ACTIONS(845),
- [anon_sym_typeof] = ACTIONS(187),
- [anon_sym_import] = ACTIONS(133),
- [anon_sym_let] = ACTIONS(839),
- [anon_sym_BANG] = ACTIONS(187),
- [anon_sym_LPAREN] = ACTIONS(815),
- [anon_sym_await] = ACTIONS(142),
- [anon_sym_in] = ACTIONS(122),
- [anon_sym_COLON] = ACTIONS(847),
- [anon_sym_yield] = ACTIONS(144),
- [anon_sym_LBRACK] = ACTIONS(849),
- [sym_glimmer_opening_tag] = ACTIONS(148),
- [anon_sym_GT] = ACTIONS(122),
- [anon_sym_DOT] = ACTIONS(819),
- [anon_sym_DQUOTE] = ACTIONS(150),
- [anon_sym_SQUOTE] = ACTIONS(152),
- [anon_sym_class] = ACTIONS(154),
- [anon_sym_async] = ACTIONS(851),
- [anon_sym_function] = ACTIONS(158),
- [anon_sym_EQ_GT] = ACTIONS(229),
- [anon_sym_QMARK_DOT] = ACTIONS(162),
- [anon_sym_new] = ACTIONS(853),
- [anon_sym_using] = ACTIONS(166),
- [anon_sym_PLUS_EQ] = ACTIONS(168),
- [anon_sym_DASH_EQ] = ACTIONS(168),
- [anon_sym_STAR_EQ] = ACTIONS(168),
- [anon_sym_SLASH_EQ] = ACTIONS(168),
- [anon_sym_PERCENT_EQ] = ACTIONS(168),
- [anon_sym_CARET_EQ] = ACTIONS(168),
- [anon_sym_AMP_EQ] = ACTIONS(168),
- [anon_sym_PIPE_EQ] = ACTIONS(168),
- [anon_sym_GT_GT_EQ] = ACTIONS(168),
- [anon_sym_GT_GT_GT_EQ] = ACTIONS(168),
- [anon_sym_LT_LT_EQ] = ACTIONS(168),
- [anon_sym_STAR_STAR_EQ] = ACTIONS(168),
- [anon_sym_AMP_AMP_EQ] = ACTIONS(168),
- [anon_sym_PIPE_PIPE_EQ] = ACTIONS(168),
- [anon_sym_QMARK_QMARK_EQ] = ACTIONS(168),
- [anon_sym_AMP_AMP] = ACTIONS(122),
- [anon_sym_PIPE_PIPE] = ACTIONS(122),
- [anon_sym_GT_GT] = ACTIONS(122),
- [anon_sym_GT_GT_GT] = ACTIONS(122),
- [anon_sym_LT_LT] = ACTIONS(122),
- [anon_sym_AMP] = ACTIONS(122),
- [anon_sym_CARET] = ACTIONS(122),
- [anon_sym_PIPE] = ACTIONS(122),
- [anon_sym_PLUS] = ACTIONS(187),
- [anon_sym_DASH] = ACTIONS(187),
- [anon_sym_SLASH] = ACTIONS(646),
- [anon_sym_PERCENT] = ACTIONS(122),
- [anon_sym_STAR_STAR] = ACTIONS(122),
- [anon_sym_LT] = ACTIONS(181),
- [anon_sym_LT_EQ] = ACTIONS(162),
- [anon_sym_EQ_EQ] = ACTIONS(122),
- [anon_sym_EQ_EQ_EQ] = ACTIONS(162),
- [anon_sym_BANG_EQ] = ACTIONS(122),
- [anon_sym_BANG_EQ_EQ] = ACTIONS(162),
- [anon_sym_GT_EQ] = ACTIONS(162),
- [anon_sym_QMARK_QMARK] = ACTIONS(122),
- [anon_sym_instanceof] = ACTIONS(122),
- [anon_sym_TILDE] = ACTIONS(183),
- [anon_sym_void] = ACTIONS(187),
- [anon_sym_delete] = ACTIONS(187),
- [anon_sym_PLUS_PLUS] = ACTIONS(719),
- [anon_sym_DASH_DASH] = ACTIONS(719),
- [sym_comment] = ACTIONS(5),
- [anon_sym_BQUOTE] = ACTIONS(825),
- [sym_number] = ACTIONS(787),
- [sym_private_property_identifier] = ACTIONS(196),
- [sym_this] = ACTIONS(200),
- [sym_super] = ACTIONS(200),
- [sym_true] = ACTIONS(200),
- [sym_false] = ACTIONS(200),
- [sym_null] = ACTIONS(200),
- [sym_undefined] = ACTIONS(827),
- [anon_sym_AT] = ACTIONS(99),
- [anon_sym_static] = ACTIONS(839),
- [anon_sym_readonly] = ACTIONS(839),
- [anon_sym_get] = ACTIONS(839),
- [anon_sym_set] = ACTIONS(839),
- [anon_sym_declare] = ACTIONS(839),
- [anon_sym_public] = ACTIONS(839),
- [anon_sym_private] = ACTIONS(839),
- [anon_sym_protected] = ACTIONS(839),
- [anon_sym_override] = ACTIONS(839),
- [anon_sym_module] = ACTIONS(839),
- [anon_sym_any] = ACTIONS(839),
- [anon_sym_number] = ACTIONS(839),
- [anon_sym_boolean] = ACTIONS(839),
- [anon_sym_string] = ACTIONS(839),
- [anon_sym_symbol] = ACTIONS(839),
- [anon_sym_object] = ACTIONS(839),
- [anon_sym_satisfies] = ACTIONS(122),
- [sym__ternary_qmark] = ACTIONS(162),
- [sym_html_comment] = ACTIONS(5),
- },
- [125] = {
- [sym_import] = STATE(3334),
- [sym_parenthesized_expression] = STATE(1179),
- [sym_expression] = STATE(2415),
- [sym_primary_expression] = STATE(1430),
- [sym_yield_expression] = STATE(1634),
- [sym_object] = STATE(1650),
- [sym_object_pattern] = STATE(5854),
- [sym_array] = STATE(1650),
- [sym_array_pattern] = STATE(5854),
- [sym_glimmer_template] = STATE(1634),
- [sym_jsx_element] = STATE(1634),
- [sym_jsx_opening_element] = STATE(3026),
- [sym_jsx_self_closing_element] = STATE(1634),
- [sym_class] = STATE(1650),
- [sym_function_expression] = STATE(1650),
- [sym_generator_function] = STATE(1650),
- [sym_arrow_function] = STATE(1650),
- [sym__call_signature] = STATE(5904),
- [sym_call_expression] = STATE(1650),
- [sym_new_expression] = STATE(1634),
- [sym_await_expression] = STATE(1634),
- [sym_member_expression] = STATE(1179),
- [sym_subscript_expression] = STATE(1179),
- [sym_assignment_expression] = STATE(1634),
- [sym__augmented_assignment_lhs] = STATE(2878),
- [sym_augmented_assignment_expression] = STATE(1634),
- [sym__destructuring_pattern] = STATE(5854),
- [sym_ternary_expression] = STATE(1634),
- [sym_binary_expression] = STATE(1634),
- [sym_unary_expression] = STATE(1634),
- [sym_update_expression] = STATE(1634),
- [sym_string] = STATE(1650),
- [sym_template_string] = STATE(1650),
- [sym_regex] = STATE(1650),
- [sym_meta_property] = STATE(1650),
- [sym_decorator] = STATE(1244),
- [sym_formal_parameters] = STATE(3915),
- [sym_non_null_expression] = STATE(1179),
- [sym_as_expression] = STATE(1634),
- [sym_satisfies_expression] = STATE(1634),
- [sym_instantiation_expression] = STATE(1634),
- [sym_internal_module] = STATE(1634),
- [sym_type_parameters] = STATE(5206),
- [aux_sym_export_statement_repeat1] = STATE(4458),
- [sym_identifier] = ACTIONS(956),
- [anon_sym_export] = ACTIONS(958),
- [anon_sym_STAR] = ACTIONS(122),
- [anon_sym_type] = ACTIONS(958),
- [anon_sym_EQ] = ACTIONS(960),
- [anon_sym_as] = ACTIONS(122),
- [anon_sym_namespace] = ACTIONS(962),
- [anon_sym_LBRACE] = ACTIONS(845),
- [anon_sym_typeof] = ACTIONS(187),
- [anon_sym_import] = ACTIONS(133),
- [anon_sym_let] = ACTIONS(958),
- [anon_sym_BANG] = ACTIONS(187),
- [anon_sym_LPAREN] = ACTIONS(815),
- [anon_sym_await] = ACTIONS(142),
- [anon_sym_in] = ACTIONS(122),
- [anon_sym_of] = ACTIONS(122),
- [anon_sym_yield] = ACTIONS(144),
- [anon_sym_LBRACK] = ACTIONS(849),
- [sym_glimmer_opening_tag] = ACTIONS(148),
- [anon_sym_GT] = ACTIONS(122),
- [anon_sym_DOT] = ACTIONS(819),
- [anon_sym_DQUOTE] = ACTIONS(150),
- [anon_sym_SQUOTE] = ACTIONS(152),
- [anon_sym_class] = ACTIONS(154),
- [anon_sym_async] = ACTIONS(964),
- [anon_sym_function] = ACTIONS(158),
- [anon_sym_EQ_GT] = ACTIONS(966),
- [anon_sym_QMARK_DOT] = ACTIONS(162),
- [anon_sym_new] = ACTIONS(968),
- [anon_sym_using] = ACTIONS(166),
- [anon_sym_PLUS_EQ] = ACTIONS(168),
- [anon_sym_DASH_EQ] = ACTIONS(168),
- [anon_sym_STAR_EQ] = ACTIONS(168),
- [anon_sym_SLASH_EQ] = ACTIONS(168),
- [anon_sym_PERCENT_EQ] = ACTIONS(168),
- [anon_sym_CARET_EQ] = ACTIONS(168),
- [anon_sym_AMP_EQ] = ACTIONS(168),
- [anon_sym_PIPE_EQ] = ACTIONS(168),
- [anon_sym_GT_GT_EQ] = ACTIONS(168),
- [anon_sym_GT_GT_GT_EQ] = ACTIONS(168),
- [anon_sym_LT_LT_EQ] = ACTIONS(168),
- [anon_sym_STAR_STAR_EQ] = ACTIONS(168),
- [anon_sym_AMP_AMP_EQ] = ACTIONS(168),
- [anon_sym_PIPE_PIPE_EQ] = ACTIONS(168),
- [anon_sym_QMARK_QMARK_EQ] = ACTIONS(168),
- [anon_sym_AMP_AMP] = ACTIONS(122),
- [anon_sym_PIPE_PIPE] = ACTIONS(122),
- [anon_sym_GT_GT] = ACTIONS(122),
- [anon_sym_GT_GT_GT] = ACTIONS(122),
- [anon_sym_LT_LT] = ACTIONS(122),
- [anon_sym_AMP] = ACTIONS(122),
- [anon_sym_CARET] = ACTIONS(122),
- [anon_sym_PIPE] = ACTIONS(122),
- [anon_sym_PLUS] = ACTIONS(187),
- [anon_sym_DASH] = ACTIONS(187),
- [anon_sym_SLASH] = ACTIONS(970),
- [anon_sym_PERCENT] = ACTIONS(122),
- [anon_sym_STAR_STAR] = ACTIONS(122),
- [anon_sym_LT] = ACTIONS(181),
- [anon_sym_LT_EQ] = ACTIONS(162),
- [anon_sym_EQ_EQ] = ACTIONS(122),
- [anon_sym_EQ_EQ_EQ] = ACTIONS(162),
- [anon_sym_BANG_EQ] = ACTIONS(122),
- [anon_sym_BANG_EQ_EQ] = ACTIONS(162),
- [anon_sym_GT_EQ] = ACTIONS(162),
- [anon_sym_QMARK_QMARK] = ACTIONS(122),
- [anon_sym_instanceof] = ACTIONS(122),
- [anon_sym_TILDE] = ACTIONS(183),
- [anon_sym_void] = ACTIONS(187),
- [anon_sym_delete] = ACTIONS(187),
- [anon_sym_PLUS_PLUS] = ACTIONS(719),
- [anon_sym_DASH_DASH] = ACTIONS(719),
- [sym_comment] = ACTIONS(5),
- [anon_sym_BQUOTE] = ACTIONS(825),
- [sym_number] = ACTIONS(787),
- [sym_private_property_identifier] = ACTIONS(196),
- [sym_this] = ACTIONS(200),
- [sym_super] = ACTIONS(200),
- [sym_true] = ACTIONS(200),
- [sym_false] = ACTIONS(200),
- [sym_null] = ACTIONS(200),
- [sym_undefined] = ACTIONS(827),
- [anon_sym_AT] = ACTIONS(99),
- [anon_sym_static] = ACTIONS(958),
- [anon_sym_readonly] = ACTIONS(958),
- [anon_sym_get] = ACTIONS(958),
- [anon_sym_set] = ACTIONS(958),
- [anon_sym_declare] = ACTIONS(958),
- [anon_sym_public] = ACTIONS(958),
- [anon_sym_private] = ACTIONS(958),
- [anon_sym_protected] = ACTIONS(958),
- [anon_sym_override] = ACTIONS(958),
- [anon_sym_module] = ACTIONS(958),
- [anon_sym_any] = ACTIONS(958),
- [anon_sym_number] = ACTIONS(958),
- [anon_sym_boolean] = ACTIONS(958),
- [anon_sym_string] = ACTIONS(958),
- [anon_sym_symbol] = ACTIONS(958),
- [anon_sym_object] = ACTIONS(958),
- [anon_sym_satisfies] = ACTIONS(122),
- [sym__ternary_qmark] = ACTIONS(162),
- [sym_html_comment] = ACTIONS(5),
- },
- [126] = {
- [sym_import] = STATE(3334),
- [sym_parenthesized_expression] = STATE(1179),
- [sym_expression] = STATE(2415),
- [sym_primary_expression] = STATE(1430),
- [sym_yield_expression] = STATE(1634),
- [sym_object] = STATE(1650),
- [sym_object_pattern] = STATE(5854),
- [sym_array] = STATE(1650),
- [sym_array_pattern] = STATE(5854),
- [sym_glimmer_template] = STATE(1634),
- [sym_jsx_element] = STATE(1634),
- [sym_jsx_opening_element] = STATE(3026),
- [sym_jsx_self_closing_element] = STATE(1634),
- [sym_class] = STATE(1650),
- [sym_function_expression] = STATE(1650),
- [sym_generator_function] = STATE(1650),
- [sym_arrow_function] = STATE(1650),
- [sym__call_signature] = STATE(5765),
- [sym_call_expression] = STATE(1650),
- [sym_new_expression] = STATE(1634),
- [sym_await_expression] = STATE(1634),
- [sym_member_expression] = STATE(1179),
- [sym_subscript_expression] = STATE(1179),
- [sym_assignment_expression] = STATE(1634),
- [sym__augmented_assignment_lhs] = STATE(2878),
- [sym_augmented_assignment_expression] = STATE(1634),
- [sym__destructuring_pattern] = STATE(5854),
- [sym_ternary_expression] = STATE(1634),
- [sym_binary_expression] = STATE(1634),
- [sym_unary_expression] = STATE(1634),
- [sym_update_expression] = STATE(1634),
- [sym_string] = STATE(1650),
- [sym_template_string] = STATE(1650),
- [sym_regex] = STATE(1650),
- [sym_meta_property] = STATE(1650),
- [sym_decorator] = STATE(1244),
- [sym_formal_parameters] = STATE(3915),
- [sym_non_null_expression] = STATE(1179),
- [sym_as_expression] = STATE(1634),
- [sym_satisfies_expression] = STATE(1634),
- [sym_instantiation_expression] = STATE(1634),
- [sym_internal_module] = STATE(1634),
- [sym_type_parameters] = STATE(5206),
- [aux_sym_export_statement_repeat1] = STATE(4458),
- [sym_identifier] = ACTIONS(891),
- [anon_sym_export] = ACTIONS(893),
- [anon_sym_STAR] = ACTIONS(122),
- [anon_sym_type] = ACTIONS(893),
- [anon_sym_EQ] = ACTIONS(926),
- [anon_sym_as] = ACTIONS(122),
- [anon_sym_namespace] = ACTIONS(898),
- [anon_sym_LBRACE] = ACTIONS(813),
- [anon_sym_typeof] = ACTIONS(187),
- [anon_sym_import] = ACTIONS(133),
- [anon_sym_let] = ACTIONS(893),
- [anon_sym_BANG] = ACTIONS(187),
- [anon_sym_LPAREN] = ACTIONS(815),
- [anon_sym_await] = ACTIONS(142),
- [anon_sym_in] = ACTIONS(122),
- [anon_sym_yield] = ACTIONS(144),
- [anon_sym_LBRACK] = ACTIONS(817),
- [anon_sym_RBRACK] = ACTIONS(162),
- [sym_glimmer_opening_tag] = ACTIONS(148),
- [anon_sym_GT] = ACTIONS(122),
- [anon_sym_DOT] = ACTIONS(819),
- [anon_sym_DQUOTE] = ACTIONS(150),
- [anon_sym_SQUOTE] = ACTIONS(152),
- [anon_sym_class] = ACTIONS(154),
- [anon_sym_async] = ACTIONS(902),
- [anon_sym_function] = ACTIONS(158),
- [anon_sym_EQ_GT] = ACTIONS(904),
- [anon_sym_QMARK_DOT] = ACTIONS(162),
- [anon_sym_new] = ACTIONS(906),
- [anon_sym_using] = ACTIONS(166),
- [anon_sym_PLUS_EQ] = ACTIONS(168),
- [anon_sym_DASH_EQ] = ACTIONS(168),
- [anon_sym_STAR_EQ] = ACTIONS(168),
- [anon_sym_SLASH_EQ] = ACTIONS(168),
- [anon_sym_PERCENT_EQ] = ACTIONS(168),
- [anon_sym_CARET_EQ] = ACTIONS(168),
- [anon_sym_AMP_EQ] = ACTIONS(168),
- [anon_sym_PIPE_EQ] = ACTIONS(168),
- [anon_sym_GT_GT_EQ] = ACTIONS(168),
- [anon_sym_GT_GT_GT_EQ] = ACTIONS(168),
- [anon_sym_LT_LT_EQ] = ACTIONS(168),
- [anon_sym_STAR_STAR_EQ] = ACTIONS(168),
- [anon_sym_AMP_AMP_EQ] = ACTIONS(168),
- [anon_sym_PIPE_PIPE_EQ] = ACTIONS(168),
- [anon_sym_QMARK_QMARK_EQ] = ACTIONS(168),
- [anon_sym_AMP_AMP] = ACTIONS(122),
- [anon_sym_PIPE_PIPE] = ACTIONS(122),
- [anon_sym_GT_GT] = ACTIONS(122),
- [anon_sym_GT_GT_GT] = ACTIONS(122),
- [anon_sym_LT_LT] = ACTIONS(122),
- [anon_sym_AMP] = ACTIONS(122),
- [anon_sym_CARET] = ACTIONS(122),
- [anon_sym_PIPE] = ACTIONS(122),
- [anon_sym_PLUS] = ACTIONS(187),
- [anon_sym_DASH] = ACTIONS(187),
- [anon_sym_SLASH] = ACTIONS(646),
- [anon_sym_PERCENT] = ACTIONS(122),
- [anon_sym_STAR_STAR] = ACTIONS(122),
- [anon_sym_LT] = ACTIONS(181),
- [anon_sym_LT_EQ] = ACTIONS(162),
- [anon_sym_EQ_EQ] = ACTIONS(122),
- [anon_sym_EQ_EQ_EQ] = ACTIONS(162),
- [anon_sym_BANG_EQ] = ACTIONS(122),
- [anon_sym_BANG_EQ_EQ] = ACTIONS(162),
- [anon_sym_GT_EQ] = ACTIONS(162),
- [anon_sym_QMARK_QMARK] = ACTIONS(122),
- [anon_sym_instanceof] = ACTIONS(122),
- [anon_sym_TILDE] = ACTIONS(183),
- [anon_sym_void] = ACTIONS(187),
- [anon_sym_delete] = ACTIONS(187),
- [anon_sym_PLUS_PLUS] = ACTIONS(719),
- [anon_sym_DASH_DASH] = ACTIONS(719),
- [sym_comment] = ACTIONS(5),
- [anon_sym_BQUOTE] = ACTIONS(825),
- [sym_number] = ACTIONS(787),
- [sym_private_property_identifier] = ACTIONS(196),
- [sym_this] = ACTIONS(200),
- [sym_super] = ACTIONS(200),
- [sym_true] = ACTIONS(200),
- [sym_false] = ACTIONS(200),
- [sym_null] = ACTIONS(200),
- [sym_undefined] = ACTIONS(827),
- [anon_sym_AT] = ACTIONS(99),
- [anon_sym_static] = ACTIONS(893),
- [anon_sym_readonly] = ACTIONS(893),
- [anon_sym_get] = ACTIONS(893),
- [anon_sym_set] = ACTIONS(893),
- [anon_sym_declare] = ACTIONS(893),
- [anon_sym_public] = ACTIONS(893),
- [anon_sym_private] = ACTIONS(893),
- [anon_sym_protected] = ACTIONS(893),
- [anon_sym_override] = ACTIONS(893),
- [anon_sym_module] = ACTIONS(893),
- [anon_sym_any] = ACTIONS(893),
- [anon_sym_number] = ACTIONS(893),
- [anon_sym_boolean] = ACTIONS(893),
- [anon_sym_string] = ACTIONS(893),
- [anon_sym_symbol] = ACTIONS(893),
- [anon_sym_object] = ACTIONS(893),
- [anon_sym_satisfies] = ACTIONS(122),
- [sym__ternary_qmark] = ACTIONS(162),
- [sym_html_comment] = ACTIONS(5),
- },
- [127] = {
- [sym_import] = STATE(3334),
- [sym_parenthesized_expression] = STATE(1179),
- [sym_expression] = STATE(2415),
- [sym_primary_expression] = STATE(1430),
- [sym_yield_expression] = STATE(1634),
- [sym_object] = STATE(1650),
- [sym_object_pattern] = STATE(5854),
- [sym_array] = STATE(1650),
- [sym_array_pattern] = STATE(5854),
- [sym_glimmer_template] = STATE(1634),
- [sym_jsx_element] = STATE(1634),
- [sym_jsx_opening_element] = STATE(3026),
- [sym_jsx_self_closing_element] = STATE(1634),
- [sym_class] = STATE(1650),
- [sym_function_expression] = STATE(1650),
- [sym_generator_function] = STATE(1650),
- [sym_arrow_function] = STATE(1650),
- [sym__call_signature] = STATE(5765),
- [sym_call_expression] = STATE(1650),
- [sym_new_expression] = STATE(1634),
- [sym_await_expression] = STATE(1634),
- [sym_member_expression] = STATE(1179),
- [sym_subscript_expression] = STATE(1179),
- [sym_assignment_expression] = STATE(1634),
- [sym__augmented_assignment_lhs] = STATE(2878),
- [sym_augmented_assignment_expression] = STATE(1634),
- [sym__destructuring_pattern] = STATE(5854),
- [sym_ternary_expression] = STATE(1634),
- [sym_binary_expression] = STATE(1634),
- [sym_unary_expression] = STATE(1634),
- [sym_update_expression] = STATE(1634),
- [sym_string] = STATE(1650),
- [sym_template_string] = STATE(1650),
- [sym_regex] = STATE(1650),
- [sym_meta_property] = STATE(1650),
- [sym_decorator] = STATE(1244),
- [sym_formal_parameters] = STATE(3742),
- [sym_non_null_expression] = STATE(1179),
- [sym_as_expression] = STATE(1634),
- [sym_satisfies_expression] = STATE(1634),
- [sym_instantiation_expression] = STATE(1634),
- [sym_internal_module] = STATE(1634),
- [sym_type_parameters] = STATE(5349),
- [aux_sym_export_statement_repeat1] = STATE(4458),
- [sym_identifier] = ACTIONS(891),
- [anon_sym_export] = ACTIONS(893),
- [anon_sym_STAR] = ACTIONS(122),
- [anon_sym_type] = ACTIONS(893),
- [anon_sym_EQ] = ACTIONS(926),
- [anon_sym_as] = ACTIONS(122),
- [anon_sym_namespace] = ACTIONS(898),
- [anon_sym_LBRACE] = ACTIONS(813),
- [anon_sym_typeof] = ACTIONS(187),
- [anon_sym_import] = ACTIONS(133),
- [anon_sym_let] = ACTIONS(893),
- [anon_sym_BANG] = ACTIONS(187),
- [anon_sym_LPAREN] = ACTIONS(815),
- [anon_sym_await] = ACTIONS(142),
- [anon_sym_in] = ACTIONS(122),
- [anon_sym_yield] = ACTIONS(144),
- [anon_sym_LBRACK] = ACTIONS(817),
- [anon_sym_RBRACK] = ACTIONS(162),
- [sym_glimmer_opening_tag] = ACTIONS(148),
- [anon_sym_GT] = ACTIONS(122),
- [anon_sym_DOT] = ACTIONS(819),
- [anon_sym_DQUOTE] = ACTIONS(150),
- [anon_sym_SQUOTE] = ACTIONS(152),
- [anon_sym_class] = ACTIONS(154),
- [anon_sym_async] = ACTIONS(902),
- [anon_sym_function] = ACTIONS(158),
- [anon_sym_EQ_GT] = ACTIONS(904),
- [anon_sym_QMARK_DOT] = ACTIONS(162),
- [anon_sym_new] = ACTIONS(906),
- [anon_sym_using] = ACTIONS(166),
- [anon_sym_PLUS_EQ] = ACTIONS(168),
- [anon_sym_DASH_EQ] = ACTIONS(168),
- [anon_sym_STAR_EQ] = ACTIONS(168),
- [anon_sym_SLASH_EQ] = ACTIONS(168),
- [anon_sym_PERCENT_EQ] = ACTIONS(168),
- [anon_sym_CARET_EQ] = ACTIONS(168),
- [anon_sym_AMP_EQ] = ACTIONS(168),
- [anon_sym_PIPE_EQ] = ACTIONS(168),
- [anon_sym_GT_GT_EQ] = ACTIONS(168),
- [anon_sym_GT_GT_GT_EQ] = ACTIONS(168),
- [anon_sym_LT_LT_EQ] = ACTIONS(168),
- [anon_sym_STAR_STAR_EQ] = ACTIONS(168),
- [anon_sym_AMP_AMP_EQ] = ACTIONS(168),
- [anon_sym_PIPE_PIPE_EQ] = ACTIONS(168),
- [anon_sym_QMARK_QMARK_EQ] = ACTIONS(168),
- [anon_sym_AMP_AMP] = ACTIONS(122),
- [anon_sym_PIPE_PIPE] = ACTIONS(122),
- [anon_sym_GT_GT] = ACTIONS(122),
- [anon_sym_GT_GT_GT] = ACTIONS(122),
- [anon_sym_LT_LT] = ACTIONS(122),
- [anon_sym_AMP] = ACTIONS(122),
- [anon_sym_CARET] = ACTIONS(122),
- [anon_sym_PIPE] = ACTIONS(122),
- [anon_sym_PLUS] = ACTIONS(187),
- [anon_sym_DASH] = ACTIONS(187),
- [anon_sym_SLASH] = ACTIONS(646),
- [anon_sym_PERCENT] = ACTIONS(122),
- [anon_sym_STAR_STAR] = ACTIONS(122),
- [anon_sym_LT] = ACTIONS(181),
- [anon_sym_LT_EQ] = ACTIONS(162),
- [anon_sym_EQ_EQ] = ACTIONS(122),
- [anon_sym_EQ_EQ_EQ] = ACTIONS(162),
- [anon_sym_BANG_EQ] = ACTIONS(122),
- [anon_sym_BANG_EQ_EQ] = ACTIONS(162),
- [anon_sym_GT_EQ] = ACTIONS(162),
- [anon_sym_QMARK_QMARK] = ACTIONS(122),
- [anon_sym_instanceof] = ACTIONS(122),
- [anon_sym_TILDE] = ACTIONS(183),
- [anon_sym_void] = ACTIONS(187),
- [anon_sym_delete] = ACTIONS(187),
- [anon_sym_PLUS_PLUS] = ACTIONS(719),
- [anon_sym_DASH_DASH] = ACTIONS(719),
- [sym_comment] = ACTIONS(5),
- [anon_sym_BQUOTE] = ACTIONS(825),
- [sym_number] = ACTIONS(787),
- [sym_private_property_identifier] = ACTIONS(196),
- [sym_this] = ACTIONS(200),
- [sym_super] = ACTIONS(200),
- [sym_true] = ACTIONS(200),
- [sym_false] = ACTIONS(200),
- [sym_null] = ACTIONS(200),
- [sym_undefined] = ACTIONS(827),
- [anon_sym_AT] = ACTIONS(99),
- [anon_sym_static] = ACTIONS(893),
- [anon_sym_readonly] = ACTIONS(893),
- [anon_sym_get] = ACTIONS(893),
- [anon_sym_set] = ACTIONS(893),
- [anon_sym_declare] = ACTIONS(893),
- [anon_sym_public] = ACTIONS(893),
- [anon_sym_private] = ACTIONS(893),
- [anon_sym_protected] = ACTIONS(893),
- [anon_sym_override] = ACTIONS(893),
- [anon_sym_module] = ACTIONS(893),
- [anon_sym_any] = ACTIONS(893),
- [anon_sym_number] = ACTIONS(893),
- [anon_sym_boolean] = ACTIONS(893),
- [anon_sym_string] = ACTIONS(893),
- [anon_sym_symbol] = ACTIONS(893),
- [anon_sym_object] = ACTIONS(893),
- [anon_sym_satisfies] = ACTIONS(122),
- [sym__ternary_qmark] = ACTIONS(162),
- [sym_html_comment] = ACTIONS(5),
- },
- [128] = {
- [sym_import] = STATE(3334),
- [sym_parenthesized_expression] = STATE(1179),
- [sym_expression] = STATE(2415),
- [sym_primary_expression] = STATE(1430),
- [sym_yield_expression] = STATE(1634),
- [sym_object] = STATE(1650),
- [sym_object_pattern] = STATE(5854),
- [sym_array] = STATE(1650),
- [sym_array_pattern] = STATE(5854),
- [sym_glimmer_template] = STATE(1634),
- [sym_jsx_element] = STATE(1634),
- [sym_jsx_opening_element] = STATE(3026),
- [sym_jsx_self_closing_element] = STATE(1634),
- [sym_class] = STATE(1650),
- [sym_function_expression] = STATE(1650),
- [sym_generator_function] = STATE(1650),
- [sym_arrow_function] = STATE(1650),
- [sym__call_signature] = STATE(5619),
- [sym_call_expression] = STATE(1650),
- [sym_new_expression] = STATE(1634),
- [sym_await_expression] = STATE(1634),
- [sym_member_expression] = STATE(1179),
- [sym_subscript_expression] = STATE(1179),
- [sym_assignment_expression] = STATE(1634),
- [sym__augmented_assignment_lhs] = STATE(2878),
- [sym_augmented_assignment_expression] = STATE(1634),
- [sym__destructuring_pattern] = STATE(5854),
- [sym_ternary_expression] = STATE(1634),
- [sym_binary_expression] = STATE(1634),
- [sym_unary_expression] = STATE(1634),
- [sym_update_expression] = STATE(1634),
- [sym_string] = STATE(1650),
- [sym_template_string] = STATE(1650),
- [sym_regex] = STATE(1650),
- [sym_meta_property] = STATE(1650),
- [sym_decorator] = STATE(1244),
- [sym_formal_parameters] = STATE(3742),
- [sym_non_null_expression] = STATE(1179),
- [sym_as_expression] = STATE(1634),
- [sym_satisfies_expression] = STATE(1634),
- [sym_instantiation_expression] = STATE(1634),
- [sym_internal_module] = STATE(1634),
- [sym_type_parameters] = STATE(5349),
- [aux_sym_export_statement_repeat1] = STATE(4458),
- [sym_identifier] = ACTIONS(837),
- [anon_sym_export] = ACTIONS(839),
- [anon_sym_STAR] = ACTIONS(122),
- [anon_sym_type] = ACTIONS(839),
- [anon_sym_EQ] = ACTIONS(841),
- [anon_sym_as] = ACTIONS(122),
- [anon_sym_namespace] = ACTIONS(843),
- [anon_sym_LBRACE] = ACTIONS(845),
- [anon_sym_typeof] = ACTIONS(187),
- [anon_sym_import] = ACTIONS(133),
- [anon_sym_let] = ACTIONS(839),
- [anon_sym_BANG] = ACTIONS(187),
- [anon_sym_LPAREN] = ACTIONS(815),
- [anon_sym_await] = ACTIONS(142),
- [anon_sym_in] = ACTIONS(122),
- [anon_sym_yield] = ACTIONS(144),
- [anon_sym_LBRACK] = ACTIONS(849),
- [anon_sym_RBRACK] = ACTIONS(162),
- [sym_glimmer_opening_tag] = ACTIONS(148),
- [anon_sym_GT] = ACTIONS(122),
- [anon_sym_DOT] = ACTIONS(819),
- [anon_sym_DQUOTE] = ACTIONS(150),
- [anon_sym_SQUOTE] = ACTIONS(152),
- [anon_sym_class] = ACTIONS(154),
- [anon_sym_async] = ACTIONS(851),
- [anon_sym_function] = ACTIONS(158),
- [anon_sym_EQ_GT] = ACTIONS(904),
- [anon_sym_QMARK_DOT] = ACTIONS(162),
- [anon_sym_new] = ACTIONS(853),
- [anon_sym_using] = ACTIONS(166),
- [anon_sym_PLUS_EQ] = ACTIONS(168),
- [anon_sym_DASH_EQ] = ACTIONS(168),
- [anon_sym_STAR_EQ] = ACTIONS(168),
- [anon_sym_SLASH_EQ] = ACTIONS(168),
- [anon_sym_PERCENT_EQ] = ACTIONS(168),
- [anon_sym_CARET_EQ] = ACTIONS(168),
- [anon_sym_AMP_EQ] = ACTIONS(168),
- [anon_sym_PIPE_EQ] = ACTIONS(168),
- [anon_sym_GT_GT_EQ] = ACTIONS(168),
- [anon_sym_GT_GT_GT_EQ] = ACTIONS(168),
- [anon_sym_LT_LT_EQ] = ACTIONS(168),
- [anon_sym_STAR_STAR_EQ] = ACTIONS(168),
- [anon_sym_AMP_AMP_EQ] = ACTIONS(168),
- [anon_sym_PIPE_PIPE_EQ] = ACTIONS(168),
- [anon_sym_QMARK_QMARK_EQ] = ACTIONS(168),
- [anon_sym_AMP_AMP] = ACTIONS(122),
- [anon_sym_PIPE_PIPE] = ACTIONS(122),
- [anon_sym_GT_GT] = ACTIONS(122),
- [anon_sym_GT_GT_GT] = ACTIONS(122),
- [anon_sym_LT_LT] = ACTIONS(122),
- [anon_sym_AMP] = ACTIONS(122),
- [anon_sym_CARET] = ACTIONS(122),
- [anon_sym_PIPE] = ACTIONS(122),
- [anon_sym_PLUS] = ACTIONS(187),
- [anon_sym_DASH] = ACTIONS(187),
- [anon_sym_SLASH] = ACTIONS(646),
- [anon_sym_PERCENT] = ACTIONS(122),
- [anon_sym_STAR_STAR] = ACTIONS(122),
- [anon_sym_LT] = ACTIONS(181),
- [anon_sym_LT_EQ] = ACTIONS(162),
- [anon_sym_EQ_EQ] = ACTIONS(122),
- [anon_sym_EQ_EQ_EQ] = ACTIONS(162),
- [anon_sym_BANG_EQ] = ACTIONS(122),
- [anon_sym_BANG_EQ_EQ] = ACTIONS(162),
- [anon_sym_GT_EQ] = ACTIONS(162),
- [anon_sym_QMARK_QMARK] = ACTIONS(122),
- [anon_sym_instanceof] = ACTIONS(122),
- [anon_sym_TILDE] = ACTIONS(183),
- [anon_sym_void] = ACTIONS(187),
- [anon_sym_delete] = ACTIONS(187),
- [anon_sym_PLUS_PLUS] = ACTIONS(719),
- [anon_sym_DASH_DASH] = ACTIONS(719),
- [sym_comment] = ACTIONS(5),
- [anon_sym_BQUOTE] = ACTIONS(825),
- [sym_number] = ACTIONS(787),
- [sym_private_property_identifier] = ACTIONS(196),
- [sym_this] = ACTIONS(200),
- [sym_super] = ACTIONS(200),
- [sym_true] = ACTIONS(200),
- [sym_false] = ACTIONS(200),
- [sym_null] = ACTIONS(200),
- [sym_undefined] = ACTIONS(827),
- [anon_sym_AT] = ACTIONS(99),
- [anon_sym_static] = ACTIONS(839),
- [anon_sym_readonly] = ACTIONS(839),
- [anon_sym_get] = ACTIONS(839),
- [anon_sym_set] = ACTIONS(839),
- [anon_sym_declare] = ACTIONS(839),
- [anon_sym_public] = ACTIONS(839),
- [anon_sym_private] = ACTIONS(839),
- [anon_sym_protected] = ACTIONS(839),
- [anon_sym_override] = ACTIONS(839),
- [anon_sym_module] = ACTIONS(839),
- [anon_sym_any] = ACTIONS(839),
- [anon_sym_number] = ACTIONS(839),
- [anon_sym_boolean] = ACTIONS(839),
- [anon_sym_string] = ACTIONS(839),
- [anon_sym_symbol] = ACTIONS(839),
- [anon_sym_object] = ACTIONS(839),
- [anon_sym_satisfies] = ACTIONS(122),
- [sym__ternary_qmark] = ACTIONS(162),
- [sym_html_comment] = ACTIONS(5),
- },
- [129] = {
- [sym_import] = STATE(3334),
- [sym_parenthesized_expression] = STATE(1179),
- [sym_expression] = STATE(2415),
- [sym_primary_expression] = STATE(1430),
- [sym_yield_expression] = STATE(1634),
- [sym_object] = STATE(1650),
- [sym_object_pattern] = STATE(5854),
- [sym_array] = STATE(1650),
- [sym_array_pattern] = STATE(5854),
- [sym_glimmer_template] = STATE(1634),
- [sym_jsx_element] = STATE(1634),
- [sym_jsx_opening_element] = STATE(3026),
- [sym_jsx_self_closing_element] = STATE(1634),
- [sym_class] = STATE(1650),
- [sym_function_expression] = STATE(1650),
- [sym_generator_function] = STATE(1650),
- [sym_arrow_function] = STATE(1650),
- [sym__call_signature] = STATE(5904),
- [sym_call_expression] = STATE(1650),
- [sym_new_expression] = STATE(1634),
- [sym_await_expression] = STATE(1634),
- [sym_member_expression] = STATE(1179),
- [sym_subscript_expression] = STATE(1179),
- [sym_assignment_expression] = STATE(1634),
- [sym__augmented_assignment_lhs] = STATE(2878),
- [sym_augmented_assignment_expression] = STATE(1634),
- [sym__destructuring_pattern] = STATE(5854),
- [sym_ternary_expression] = STATE(1634),
- [sym_binary_expression] = STATE(1634),
- [sym_unary_expression] = STATE(1634),
- [sym_update_expression] = STATE(1634),
- [sym_string] = STATE(1650),
- [sym_template_string] = STATE(1650),
- [sym_regex] = STATE(1650),
- [sym_meta_property] = STATE(1650),
- [sym_decorator] = STATE(1244),
- [sym_formal_parameters] = STATE(3742),
- [sym_non_null_expression] = STATE(1179),
- [sym_as_expression] = STATE(1634),
- [sym_satisfies_expression] = STATE(1634),
- [sym_instantiation_expression] = STATE(1634),
- [sym_internal_module] = STATE(1634),
- [sym_type_parameters] = STATE(5349),
- [aux_sym_export_statement_repeat1] = STATE(4458),
- [sym_identifier] = ACTIONS(956),
- [anon_sym_export] = ACTIONS(958),
- [anon_sym_STAR] = ACTIONS(122),
- [anon_sym_type] = ACTIONS(958),
- [anon_sym_EQ] = ACTIONS(960),
- [anon_sym_as] = ACTIONS(122),
- [anon_sym_namespace] = ACTIONS(962),
- [anon_sym_LBRACE] = ACTIONS(845),
- [anon_sym_typeof] = ACTIONS(187),
- [anon_sym_import] = ACTIONS(133),
- [anon_sym_let] = ACTIONS(958),
- [anon_sym_BANG] = ACTIONS(187),
- [anon_sym_LPAREN] = ACTIONS(815),
- [anon_sym_await] = ACTIONS(142),
- [anon_sym_in] = ACTIONS(122),
- [anon_sym_of] = ACTIONS(122),
- [anon_sym_yield] = ACTIONS(144),
- [anon_sym_LBRACK] = ACTIONS(849),
- [sym_glimmer_opening_tag] = ACTIONS(148),
- [anon_sym_GT] = ACTIONS(122),
- [anon_sym_DOT] = ACTIONS(819),
- [anon_sym_DQUOTE] = ACTIONS(150),
- [anon_sym_SQUOTE] = ACTIONS(152),
- [anon_sym_class] = ACTIONS(154),
- [anon_sym_async] = ACTIONS(964),
- [anon_sym_function] = ACTIONS(158),
- [anon_sym_EQ_GT] = ACTIONS(966),
- [anon_sym_QMARK_DOT] = ACTIONS(162),
- [anon_sym_new] = ACTIONS(968),
- [anon_sym_using] = ACTIONS(166),
- [anon_sym_PLUS_EQ] = ACTIONS(168),
- [anon_sym_DASH_EQ] = ACTIONS(168),
- [anon_sym_STAR_EQ] = ACTIONS(168),
- [anon_sym_SLASH_EQ] = ACTIONS(168),
- [anon_sym_PERCENT_EQ] = ACTIONS(168),
- [anon_sym_CARET_EQ] = ACTIONS(168),
- [anon_sym_AMP_EQ] = ACTIONS(168),
- [anon_sym_PIPE_EQ] = ACTIONS(168),
- [anon_sym_GT_GT_EQ] = ACTIONS(168),
- [anon_sym_GT_GT_GT_EQ] = ACTIONS(168),
- [anon_sym_LT_LT_EQ] = ACTIONS(168),
- [anon_sym_STAR_STAR_EQ] = ACTIONS(168),
- [anon_sym_AMP_AMP_EQ] = ACTIONS(168),
- [anon_sym_PIPE_PIPE_EQ] = ACTIONS(168),
- [anon_sym_QMARK_QMARK_EQ] = ACTIONS(168),
- [anon_sym_AMP_AMP] = ACTIONS(122),
- [anon_sym_PIPE_PIPE] = ACTIONS(122),
- [anon_sym_GT_GT] = ACTIONS(122),
- [anon_sym_GT_GT_GT] = ACTIONS(122),
- [anon_sym_LT_LT] = ACTIONS(122),
- [anon_sym_AMP] = ACTIONS(122),
- [anon_sym_CARET] = ACTIONS(122),
- [anon_sym_PIPE] = ACTIONS(122),
- [anon_sym_PLUS] = ACTIONS(187),
- [anon_sym_DASH] = ACTIONS(187),
- [anon_sym_SLASH] = ACTIONS(970),
- [anon_sym_PERCENT] = ACTIONS(122),
- [anon_sym_STAR_STAR] = ACTIONS(122),
- [anon_sym_LT] = ACTIONS(181),
- [anon_sym_LT_EQ] = ACTIONS(162),
- [anon_sym_EQ_EQ] = ACTIONS(122),
- [anon_sym_EQ_EQ_EQ] = ACTIONS(162),
- [anon_sym_BANG_EQ] = ACTIONS(122),
- [anon_sym_BANG_EQ_EQ] = ACTIONS(162),
- [anon_sym_GT_EQ] = ACTIONS(162),
- [anon_sym_QMARK_QMARK] = ACTIONS(122),
- [anon_sym_instanceof] = ACTIONS(122),
- [anon_sym_TILDE] = ACTIONS(183),
- [anon_sym_void] = ACTIONS(187),
- [anon_sym_delete] = ACTIONS(187),
- [anon_sym_PLUS_PLUS] = ACTIONS(719),
- [anon_sym_DASH_DASH] = ACTIONS(719),
- [sym_comment] = ACTIONS(5),
- [anon_sym_BQUOTE] = ACTIONS(825),
- [sym_number] = ACTIONS(787),
- [sym_private_property_identifier] = ACTIONS(196),
- [sym_this] = ACTIONS(200),
- [sym_super] = ACTIONS(200),
- [sym_true] = ACTIONS(200),
- [sym_false] = ACTIONS(200),
- [sym_null] = ACTIONS(200),
- [sym_undefined] = ACTIONS(827),
- [anon_sym_AT] = ACTIONS(99),
- [anon_sym_static] = ACTIONS(958),
- [anon_sym_readonly] = ACTIONS(958),
- [anon_sym_get] = ACTIONS(958),
- [anon_sym_set] = ACTIONS(958),
- [anon_sym_declare] = ACTIONS(958),
- [anon_sym_public] = ACTIONS(958),
- [anon_sym_private] = ACTIONS(958),
- [anon_sym_protected] = ACTIONS(958),
- [anon_sym_override] = ACTIONS(958),
- [anon_sym_module] = ACTIONS(958),
- [anon_sym_any] = ACTIONS(958),
- [anon_sym_number] = ACTIONS(958),
- [anon_sym_boolean] = ACTIONS(958),
- [anon_sym_string] = ACTIONS(958),
- [anon_sym_symbol] = ACTIONS(958),
- [anon_sym_object] = ACTIONS(958),
- [anon_sym_satisfies] = ACTIONS(122),
- [sym__ternary_qmark] = ACTIONS(162),
- [sym_html_comment] = ACTIONS(5),
- },
- [130] = {
- [sym_import] = STATE(3334),
- [sym_parenthesized_expression] = STATE(1179),
- [sym_expression] = STATE(2415),
- [sym_primary_expression] = STATE(1430),
- [sym_yield_expression] = STATE(1634),
- [sym_object] = STATE(1650),
- [sym_object_pattern] = STATE(5854),
- [sym_array] = STATE(1650),
- [sym_array_pattern] = STATE(5854),
- [sym_glimmer_template] = STATE(1634),
- [sym_jsx_element] = STATE(1634),
- [sym_jsx_opening_element] = STATE(3026),
- [sym_jsx_self_closing_element] = STATE(1634),
- [sym_class] = STATE(1650),
- [sym_function_expression] = STATE(1650),
- [sym_generator_function] = STATE(1650),
- [sym_arrow_function] = STATE(1650),
- [sym__call_signature] = STATE(5619),
- [sym_call_expression] = STATE(1650),
- [sym_new_expression] = STATE(1634),
- [sym_await_expression] = STATE(1634),
- [sym_member_expression] = STATE(1179),
- [sym_subscript_expression] = STATE(1179),
- [sym_assignment_expression] = STATE(1634),
- [sym__augmented_assignment_lhs] = STATE(2878),
- [sym_augmented_assignment_expression] = STATE(1634),
- [sym__destructuring_pattern] = STATE(5854),
- [sym_ternary_expression] = STATE(1634),
- [sym_binary_expression] = STATE(1634),
- [sym_unary_expression] = STATE(1634),
- [sym_update_expression] = STATE(1634),
- [sym_string] = STATE(1650),
- [sym_template_string] = STATE(1650),
- [sym_regex] = STATE(1650),
- [sym_meta_property] = STATE(1650),
- [sym_decorator] = STATE(1244),
- [sym_formal_parameters] = STATE(3742),
- [sym_non_null_expression] = STATE(1179),
- [sym_as_expression] = STATE(1634),
- [sym_satisfies_expression] = STATE(1634),
- [sym_instantiation_expression] = STATE(1634),
- [sym_internal_module] = STATE(1634),
- [sym_type_parameters] = STATE(5349),
- [aux_sym_export_statement_repeat1] = STATE(4458),
- [sym_identifier] = ACTIONS(837),
- [anon_sym_export] = ACTIONS(839),
- [anon_sym_STAR] = ACTIONS(122),
- [anon_sym_type] = ACTIONS(839),
- [anon_sym_EQ] = ACTIONS(841),
- [anon_sym_as] = ACTIONS(122),
- [anon_sym_namespace] = ACTIONS(843),
- [anon_sym_LBRACE] = ACTIONS(845),
- [anon_sym_typeof] = ACTIONS(187),
- [anon_sym_import] = ACTIONS(133),
- [anon_sym_let] = ACTIONS(839),
- [anon_sym_BANG] = ACTIONS(187),
- [anon_sym_LPAREN] = ACTIONS(815),
- [anon_sym_await] = ACTIONS(142),
- [anon_sym_in] = ACTIONS(122),
- [anon_sym_of] = ACTIONS(122),
- [anon_sym_yield] = ACTIONS(144),
- [anon_sym_LBRACK] = ACTIONS(849),
- [sym_glimmer_opening_tag] = ACTIONS(148),
- [anon_sym_GT] = ACTIONS(122),
- [anon_sym_DOT] = ACTIONS(819),
- [anon_sym_DQUOTE] = ACTIONS(150),
- [anon_sym_SQUOTE] = ACTIONS(152),
- [anon_sym_class] = ACTIONS(154),
- [anon_sym_async] = ACTIONS(851),
- [anon_sym_function] = ACTIONS(158),
- [anon_sym_EQ_GT] = ACTIONS(966),
- [anon_sym_QMARK_DOT] = ACTIONS(162),
- [anon_sym_new] = ACTIONS(853),
- [anon_sym_using] = ACTIONS(166),
- [anon_sym_PLUS_EQ] = ACTIONS(168),
- [anon_sym_DASH_EQ] = ACTIONS(168),
- [anon_sym_STAR_EQ] = ACTIONS(168),
- [anon_sym_SLASH_EQ] = ACTIONS(168),
- [anon_sym_PERCENT_EQ] = ACTIONS(168),
- [anon_sym_CARET_EQ] = ACTIONS(168),
- [anon_sym_AMP_EQ] = ACTIONS(168),
- [anon_sym_PIPE_EQ] = ACTIONS(168),
- [anon_sym_GT_GT_EQ] = ACTIONS(168),
- [anon_sym_GT_GT_GT_EQ] = ACTIONS(168),
- [anon_sym_LT_LT_EQ] = ACTIONS(168),
- [anon_sym_STAR_STAR_EQ] = ACTIONS(168),
- [anon_sym_AMP_AMP_EQ] = ACTIONS(168),
- [anon_sym_PIPE_PIPE_EQ] = ACTIONS(168),
- [anon_sym_QMARK_QMARK_EQ] = ACTIONS(168),
- [anon_sym_AMP_AMP] = ACTIONS(122),
- [anon_sym_PIPE_PIPE] = ACTIONS(122),
- [anon_sym_GT_GT] = ACTIONS(122),
- [anon_sym_GT_GT_GT] = ACTIONS(122),
- [anon_sym_LT_LT] = ACTIONS(122),
- [anon_sym_AMP] = ACTIONS(122),
- [anon_sym_CARET] = ACTIONS(122),
- [anon_sym_PIPE] = ACTIONS(122),
- [anon_sym_PLUS] = ACTIONS(187),
- [anon_sym_DASH] = ACTIONS(187),
- [anon_sym_SLASH] = ACTIONS(646),
- [anon_sym_PERCENT] = ACTIONS(122),
- [anon_sym_STAR_STAR] = ACTIONS(122),
- [anon_sym_LT] = ACTIONS(181),
- [anon_sym_LT_EQ] = ACTIONS(162),
- [anon_sym_EQ_EQ] = ACTIONS(122),
- [anon_sym_EQ_EQ_EQ] = ACTIONS(162),
- [anon_sym_BANG_EQ] = ACTIONS(122),
- [anon_sym_BANG_EQ_EQ] = ACTIONS(162),
- [anon_sym_GT_EQ] = ACTIONS(162),
- [anon_sym_QMARK_QMARK] = ACTIONS(122),
- [anon_sym_instanceof] = ACTIONS(122),
- [anon_sym_TILDE] = ACTIONS(183),
- [anon_sym_void] = ACTIONS(187),
- [anon_sym_delete] = ACTIONS(187),
- [anon_sym_PLUS_PLUS] = ACTIONS(719),
- [anon_sym_DASH_DASH] = ACTIONS(719),
- [sym_comment] = ACTIONS(5),
- [anon_sym_BQUOTE] = ACTIONS(825),
- [sym_number] = ACTIONS(787),
- [sym_private_property_identifier] = ACTIONS(196),
- [sym_this] = ACTIONS(200),
- [sym_super] = ACTIONS(200),
- [sym_true] = ACTIONS(200),
- [sym_false] = ACTIONS(200),
- [sym_null] = ACTIONS(200),
- [sym_undefined] = ACTIONS(827),
- [anon_sym_AT] = ACTIONS(99),
- [anon_sym_static] = ACTIONS(839),
- [anon_sym_readonly] = ACTIONS(839),
- [anon_sym_get] = ACTIONS(839),
- [anon_sym_set] = ACTIONS(839),
- [anon_sym_declare] = ACTIONS(839),
- [anon_sym_public] = ACTIONS(839),
- [anon_sym_private] = ACTIONS(839),
- [anon_sym_protected] = ACTIONS(839),
- [anon_sym_override] = ACTIONS(839),
- [anon_sym_module] = ACTIONS(839),
- [anon_sym_any] = ACTIONS(839),
- [anon_sym_number] = ACTIONS(839),
- [anon_sym_boolean] = ACTIONS(839),
- [anon_sym_string] = ACTIONS(839),
- [anon_sym_symbol] = ACTIONS(839),
- [anon_sym_object] = ACTIONS(839),
- [anon_sym_satisfies] = ACTIONS(122),
- [sym__ternary_qmark] = ACTIONS(162),
- [sym_html_comment] = ACTIONS(5),
- },
- [131] = {
- [sym_import] = STATE(3334),
- [sym_parenthesized_expression] = STATE(1179),
- [sym_expression] = STATE(2415),
- [sym_primary_expression] = STATE(1430),
- [sym_yield_expression] = STATE(1634),
- [sym_object] = STATE(1650),
- [sym_object_pattern] = STATE(5854),
- [sym_array] = STATE(1650),
- [sym_array_pattern] = STATE(5854),
- [sym_glimmer_template] = STATE(1634),
- [sym_jsx_element] = STATE(1634),
- [sym_jsx_opening_element] = STATE(3026),
- [sym_jsx_self_closing_element] = STATE(1634),
- [sym_class] = STATE(1650),
- [sym_function_expression] = STATE(1650),
- [sym_generator_function] = STATE(1650),
- [sym_arrow_function] = STATE(1650),
- [sym__call_signature] = STATE(5619),
- [sym_call_expression] = STATE(1650),
- [sym_new_expression] = STATE(1634),
- [sym_await_expression] = STATE(1634),
- [sym_member_expression] = STATE(1179),
- [sym_subscript_expression] = STATE(1179),
- [sym_assignment_expression] = STATE(1634),
- [sym__augmented_assignment_lhs] = STATE(2878),
- [sym_augmented_assignment_expression] = STATE(1634),
- [sym__destructuring_pattern] = STATE(5854),
- [sym_ternary_expression] = STATE(1634),
- [sym_binary_expression] = STATE(1634),
- [sym_unary_expression] = STATE(1634),
- [sym_update_expression] = STATE(1634),
- [sym_string] = STATE(1650),
- [sym_template_string] = STATE(1650),
- [sym_regex] = STATE(1650),
- [sym_meta_property] = STATE(1650),
- [sym_decorator] = STATE(1244),
- [sym_formal_parameters] = STATE(3742),
- [sym_non_null_expression] = STATE(1179),
- [sym_as_expression] = STATE(1634),
- [sym_satisfies_expression] = STATE(1634),
- [sym_instantiation_expression] = STATE(1634),
- [sym_internal_module] = STATE(1634),
- [sym_type_parameters] = STATE(5349),
- [aux_sym_export_statement_repeat1] = STATE(4458),
- [sym_identifier] = ACTIONS(837),
- [anon_sym_export] = ACTIONS(839),
- [anon_sym_STAR] = ACTIONS(122),
- [anon_sym_type] = ACTIONS(839),
- [anon_sym_EQ] = ACTIONS(972),
- [anon_sym_as] = ACTIONS(122),
- [anon_sym_namespace] = ACTIONS(843),
- [anon_sym_LBRACE] = ACTIONS(845),
- [anon_sym_typeof] = ACTIONS(187),
- [anon_sym_import] = ACTIONS(133),
- [anon_sym_let] = ACTIONS(839),
- [anon_sym_BANG] = ACTIONS(187),
- [anon_sym_LPAREN] = ACTIONS(815),
- [anon_sym_await] = ACTIONS(142),
- [anon_sym_in] = ACTIONS(122),
- [anon_sym_yield] = ACTIONS(144),
- [anon_sym_LBRACK] = ACTIONS(849),
- [sym_glimmer_opening_tag] = ACTIONS(148),
- [anon_sym_GT] = ACTIONS(122),
- [anon_sym_DOT] = ACTIONS(819),
- [anon_sym_DQUOTE] = ACTIONS(150),
- [anon_sym_SQUOTE] = ACTIONS(152),
- [anon_sym_class] = ACTIONS(154),
- [anon_sym_async] = ACTIONS(851),
- [anon_sym_function] = ACTIONS(158),
- [anon_sym_EQ_GT] = ACTIONS(229),
- [anon_sym_QMARK_DOT] = ACTIONS(162),
- [anon_sym_new] = ACTIONS(853),
- [anon_sym_using] = ACTIONS(166),
- [anon_sym_PLUS_EQ] = ACTIONS(168),
- [anon_sym_DASH_EQ] = ACTIONS(168),
- [anon_sym_STAR_EQ] = ACTIONS(168),
- [anon_sym_SLASH_EQ] = ACTIONS(168),
- [anon_sym_PERCENT_EQ] = ACTIONS(168),
- [anon_sym_CARET_EQ] = ACTIONS(168),
- [anon_sym_AMP_EQ] = ACTIONS(168),
- [anon_sym_PIPE_EQ] = ACTIONS(168),
- [anon_sym_GT_GT_EQ] = ACTIONS(168),
- [anon_sym_GT_GT_GT_EQ] = ACTIONS(168),
- [anon_sym_LT_LT_EQ] = ACTIONS(168),
- [anon_sym_STAR_STAR_EQ] = ACTIONS(168),
- [anon_sym_AMP_AMP_EQ] = ACTIONS(168),
- [anon_sym_PIPE_PIPE_EQ] = ACTIONS(168),
- [anon_sym_QMARK_QMARK_EQ] = ACTIONS(168),
- [anon_sym_AMP_AMP] = ACTIONS(122),
- [anon_sym_PIPE_PIPE] = ACTIONS(122),
- [anon_sym_GT_GT] = ACTIONS(122),
- [anon_sym_GT_GT_GT] = ACTIONS(122),
- [anon_sym_LT_LT] = ACTIONS(122),
- [anon_sym_AMP] = ACTIONS(122),
- [anon_sym_CARET] = ACTIONS(122),
- [anon_sym_PIPE] = ACTIONS(122),
- [anon_sym_PLUS] = ACTIONS(187),
- [anon_sym_DASH] = ACTIONS(187),
- [anon_sym_SLASH] = ACTIONS(646),
- [anon_sym_PERCENT] = ACTIONS(122),
- [anon_sym_STAR_STAR] = ACTIONS(122),
- [anon_sym_LT] = ACTIONS(181),
- [anon_sym_LT_EQ] = ACTIONS(162),
- [anon_sym_EQ_EQ] = ACTIONS(122),
- [anon_sym_EQ_EQ_EQ] = ACTIONS(162),
- [anon_sym_BANG_EQ] = ACTIONS(122),
- [anon_sym_BANG_EQ_EQ] = ACTIONS(162),
- [anon_sym_GT_EQ] = ACTIONS(162),
- [anon_sym_QMARK_QMARK] = ACTIONS(122),
- [anon_sym_instanceof] = ACTIONS(122),
- [anon_sym_TILDE] = ACTIONS(183),
- [anon_sym_void] = ACTIONS(187),
- [anon_sym_delete] = ACTIONS(187),
- [anon_sym_PLUS_PLUS] = ACTIONS(719),
- [anon_sym_DASH_DASH] = ACTIONS(719),
- [sym_comment] = ACTIONS(5),
- [anon_sym_BQUOTE] = ACTIONS(825),
- [sym_number] = ACTIONS(787),
- [sym_private_property_identifier] = ACTIONS(196),
- [sym_this] = ACTIONS(200),
- [sym_super] = ACTIONS(200),
- [sym_true] = ACTIONS(200),
- [sym_false] = ACTIONS(200),
- [sym_null] = ACTIONS(200),
- [sym_undefined] = ACTIONS(827),
- [anon_sym_AT] = ACTIONS(99),
- [anon_sym_static] = ACTIONS(839),
- [anon_sym_readonly] = ACTIONS(839),
- [anon_sym_get] = ACTIONS(839),
- [anon_sym_set] = ACTIONS(839),
- [anon_sym_declare] = ACTIONS(839),
- [anon_sym_public] = ACTIONS(839),
- [anon_sym_private] = ACTIONS(839),
- [anon_sym_protected] = ACTIONS(839),
- [anon_sym_override] = ACTIONS(839),
- [anon_sym_module] = ACTIONS(839),
- [anon_sym_any] = ACTIONS(839),
- [anon_sym_number] = ACTIONS(839),
- [anon_sym_boolean] = ACTIONS(839),
- [anon_sym_string] = ACTIONS(839),
- [anon_sym_symbol] = ACTIONS(839),
- [anon_sym_object] = ACTIONS(839),
- [anon_sym_satisfies] = ACTIONS(122),
- [sym__ternary_qmark] = ACTIONS(162),
- [sym_html_comment] = ACTIONS(5),
- },
- [132] = {
- [sym_import] = STATE(3334),
- [sym_parenthesized_expression] = STATE(1179),
- [sym_expression] = STATE(2415),
- [sym_primary_expression] = STATE(1430),
- [sym_yield_expression] = STATE(1634),
- [sym_object] = STATE(1650),
- [sym_object_pattern] = STATE(5854),
- [sym_array] = STATE(1650),
- [sym_array_pattern] = STATE(5854),
- [sym_glimmer_template] = STATE(1634),
- [sym_jsx_element] = STATE(1634),
- [sym_jsx_opening_element] = STATE(3026),
- [sym_jsx_self_closing_element] = STATE(1634),
- [sym_class] = STATE(1650),
- [sym_function_expression] = STATE(1650),
- [sym_generator_function] = STATE(1650),
- [sym_arrow_function] = STATE(1650),
- [sym__call_signature] = STATE(5619),
- [sym_call_expression] = STATE(1650),
- [sym_new_expression] = STATE(1634),
- [sym_await_expression] = STATE(1634),
- [sym_member_expression] = STATE(1179),
- [sym_subscript_expression] = STATE(1179),
- [sym_assignment_expression] = STATE(1634),
- [sym__augmented_assignment_lhs] = STATE(2878),
- [sym_augmented_assignment_expression] = STATE(1634),
- [sym__destructuring_pattern] = STATE(5854),
- [sym_ternary_expression] = STATE(1634),
- [sym_binary_expression] = STATE(1634),
- [sym_unary_expression] = STATE(1634),
- [sym_update_expression] = STATE(1634),
- [sym_string] = STATE(1650),
- [sym_template_string] = STATE(1650),
- [sym_regex] = STATE(1650),
- [sym_meta_property] = STATE(1650),
- [sym_decorator] = STATE(1244),
- [sym_formal_parameters] = STATE(3742),
- [sym_non_null_expression] = STATE(1179),
- [sym_as_expression] = STATE(1634),
- [sym_satisfies_expression] = STATE(1634),
- [sym_instantiation_expression] = STATE(1634),
- [sym_internal_module] = STATE(1634),
- [sym_type_parameters] = STATE(5349),
- [aux_sym_export_statement_repeat1] = STATE(4458),
- [sym_identifier] = ACTIONS(837),
- [anon_sym_export] = ACTIONS(839),
- [anon_sym_STAR] = ACTIONS(122),
- [anon_sym_type] = ACTIONS(839),
- [anon_sym_EQ] = ACTIONS(974),
- [anon_sym_as] = ACTIONS(122),
- [anon_sym_namespace] = ACTIONS(843),
- [anon_sym_LBRACE] = ACTIONS(845),
- [anon_sym_typeof] = ACTIONS(187),
- [anon_sym_import] = ACTIONS(133),
- [anon_sym_let] = ACTIONS(839),
- [anon_sym_BANG] = ACTIONS(187),
- [anon_sym_LPAREN] = ACTIONS(815),
- [anon_sym_await] = ACTIONS(142),
- [anon_sym_in] = ACTIONS(122),
- [anon_sym_yield] = ACTIONS(144),
- [anon_sym_LBRACK] = ACTIONS(849),
- [sym_glimmer_opening_tag] = ACTIONS(148),
- [anon_sym_GT] = ACTIONS(122),
- [anon_sym_DOT] = ACTIONS(819),
- [anon_sym_DQUOTE] = ACTIONS(150),
- [anon_sym_SQUOTE] = ACTIONS(152),
- [anon_sym_class] = ACTIONS(154),
- [anon_sym_async] = ACTIONS(851),
- [anon_sym_function] = ACTIONS(158),
- [anon_sym_EQ_GT] = ACTIONS(229),
- [anon_sym_QMARK_DOT] = ACTIONS(162),
- [anon_sym_new] = ACTIONS(853),
- [anon_sym_using] = ACTIONS(166),
- [anon_sym_PLUS_EQ] = ACTIONS(168),
- [anon_sym_DASH_EQ] = ACTIONS(168),
- [anon_sym_STAR_EQ] = ACTIONS(168),
- [anon_sym_SLASH_EQ] = ACTIONS(168),
- [anon_sym_PERCENT_EQ] = ACTIONS(168),
- [anon_sym_CARET_EQ] = ACTIONS(168),
- [anon_sym_AMP_EQ] = ACTIONS(168),
- [anon_sym_PIPE_EQ] = ACTIONS(168),
- [anon_sym_GT_GT_EQ] = ACTIONS(168),
- [anon_sym_GT_GT_GT_EQ] = ACTIONS(168),
- [anon_sym_LT_LT_EQ] = ACTIONS(168),
- [anon_sym_STAR_STAR_EQ] = ACTIONS(168),
- [anon_sym_AMP_AMP_EQ] = ACTIONS(168),
- [anon_sym_PIPE_PIPE_EQ] = ACTIONS(168),
- [anon_sym_QMARK_QMARK_EQ] = ACTIONS(168),
- [anon_sym_AMP_AMP] = ACTIONS(122),
- [anon_sym_PIPE_PIPE] = ACTIONS(122),
- [anon_sym_GT_GT] = ACTIONS(122),
- [anon_sym_GT_GT_GT] = ACTIONS(122),
- [anon_sym_LT_LT] = ACTIONS(122),
- [anon_sym_AMP] = ACTIONS(122),
- [anon_sym_CARET] = ACTIONS(122),
- [anon_sym_PIPE] = ACTIONS(122),
- [anon_sym_PLUS] = ACTIONS(187),
- [anon_sym_DASH] = ACTIONS(187),
- [anon_sym_SLASH] = ACTIONS(646),
- [anon_sym_PERCENT] = ACTIONS(122),
- [anon_sym_STAR_STAR] = ACTIONS(122),
- [anon_sym_LT] = ACTIONS(181),
- [anon_sym_LT_EQ] = ACTIONS(162),
- [anon_sym_EQ_EQ] = ACTIONS(122),
- [anon_sym_EQ_EQ_EQ] = ACTIONS(162),
- [anon_sym_BANG_EQ] = ACTIONS(122),
- [anon_sym_BANG_EQ_EQ] = ACTIONS(162),
- [anon_sym_GT_EQ] = ACTIONS(162),
- [anon_sym_QMARK_QMARK] = ACTIONS(122),
- [anon_sym_instanceof] = ACTIONS(122),
- [anon_sym_TILDE] = ACTIONS(183),
- [anon_sym_void] = ACTIONS(187),
- [anon_sym_delete] = ACTIONS(187),
- [anon_sym_PLUS_PLUS] = ACTIONS(719),
- [anon_sym_DASH_DASH] = ACTIONS(719),
- [sym_comment] = ACTIONS(5),
- [anon_sym_BQUOTE] = ACTIONS(825),
- [sym_number] = ACTIONS(787),
- [sym_private_property_identifier] = ACTIONS(196),
- [sym_this] = ACTIONS(200),
- [sym_super] = ACTIONS(200),
- [sym_true] = ACTIONS(200),
- [sym_false] = ACTIONS(200),
- [sym_null] = ACTIONS(200),
- [sym_undefined] = ACTIONS(827),
- [anon_sym_AT] = ACTIONS(99),
- [anon_sym_static] = ACTIONS(839),
- [anon_sym_readonly] = ACTIONS(839),
- [anon_sym_get] = ACTIONS(839),
- [anon_sym_set] = ACTIONS(839),
- [anon_sym_declare] = ACTIONS(839),
- [anon_sym_public] = ACTIONS(839),
- [anon_sym_private] = ACTIONS(839),
- [anon_sym_protected] = ACTIONS(839),
- [anon_sym_override] = ACTIONS(839),
- [anon_sym_module] = ACTIONS(839),
- [anon_sym_any] = ACTIONS(839),
- [anon_sym_number] = ACTIONS(839),
- [anon_sym_boolean] = ACTIONS(839),
- [anon_sym_string] = ACTIONS(839),
- [anon_sym_symbol] = ACTIONS(839),
- [anon_sym_object] = ACTIONS(839),
- [anon_sym_satisfies] = ACTIONS(122),
- [sym__ternary_qmark] = ACTIONS(162),
- [sym_html_comment] = ACTIONS(5),
- },
- [133] = {
- [sym_import] = STATE(3334),
- [sym_parenthesized_expression] = STATE(1179),
- [sym_expression] = STATE(2415),
- [sym_primary_expression] = STATE(1430),
- [sym_yield_expression] = STATE(1634),
- [sym_object] = STATE(1650),
- [sym_object_pattern] = STATE(5854),
- [sym_array] = STATE(1650),
- [sym_array_pattern] = STATE(5854),
- [sym_glimmer_template] = STATE(1634),
- [sym_jsx_element] = STATE(1634),
- [sym_jsx_opening_element] = STATE(3026),
- [sym_jsx_self_closing_element] = STATE(1634),
- [sym_class] = STATE(1650),
- [sym_function_expression] = STATE(1650),
- [sym_generator_function] = STATE(1650),
- [sym_arrow_function] = STATE(1650),
- [sym__call_signature] = STATE(5619),
- [sym_call_expression] = STATE(1650),
- [sym_new_expression] = STATE(1634),
- [sym_await_expression] = STATE(1634),
- [sym_member_expression] = STATE(1179),
- [sym_subscript_expression] = STATE(1179),
- [sym_assignment_expression] = STATE(1634),
- [sym__augmented_assignment_lhs] = STATE(2878),
- [sym_augmented_assignment_expression] = STATE(1634),
- [sym__destructuring_pattern] = STATE(5854),
- [sym_ternary_expression] = STATE(1634),
- [sym_binary_expression] = STATE(1634),
- [sym_unary_expression] = STATE(1634),
- [sym_update_expression] = STATE(1634),
- [sym_string] = STATE(1650),
- [sym_template_string] = STATE(1650),
- [sym_regex] = STATE(1650),
- [sym_meta_property] = STATE(1650),
- [sym_decorator] = STATE(1244),
- [sym_formal_parameters] = STATE(3742),
- [sym_non_null_expression] = STATE(1179),
- [sym_as_expression] = STATE(1634),
- [sym_satisfies_expression] = STATE(1634),
- [sym_instantiation_expression] = STATE(1634),
- [sym_internal_module] = STATE(1634),
- [sym_type_parameters] = STATE(5349),
- [aux_sym_export_statement_repeat1] = STATE(4458),
- [sym_identifier] = ACTIONS(837),
- [anon_sym_export] = ACTIONS(839),
- [anon_sym_STAR] = ACTIONS(122),
- [anon_sym_type] = ACTIONS(839),
- [anon_sym_EQ] = ACTIONS(976),
- [anon_sym_as] = ACTIONS(122),
- [anon_sym_namespace] = ACTIONS(843),
- [anon_sym_LBRACE] = ACTIONS(845),
- [anon_sym_typeof] = ACTIONS(187),
- [anon_sym_import] = ACTIONS(133),
- [anon_sym_let] = ACTIONS(839),
- [anon_sym_BANG] = ACTIONS(187),
- [anon_sym_LPAREN] = ACTIONS(815),
- [anon_sym_await] = ACTIONS(142),
- [anon_sym_in] = ACTIONS(122),
- [anon_sym_yield] = ACTIONS(144),
- [anon_sym_LBRACK] = ACTIONS(849),
- [sym_glimmer_opening_tag] = ACTIONS(148),
- [anon_sym_GT] = ACTIONS(122),
- [anon_sym_DOT] = ACTIONS(819),
- [anon_sym_DQUOTE] = ACTIONS(150),
- [anon_sym_SQUOTE] = ACTIONS(152),
- [anon_sym_class] = ACTIONS(154),
- [anon_sym_async] = ACTIONS(851),
- [anon_sym_function] = ACTIONS(158),
- [anon_sym_EQ_GT] = ACTIONS(229),
- [anon_sym_QMARK_DOT] = ACTIONS(162),
- [anon_sym_new] = ACTIONS(853),
- [anon_sym_using] = ACTIONS(166),
- [anon_sym_PLUS_EQ] = ACTIONS(168),
- [anon_sym_DASH_EQ] = ACTIONS(168),
- [anon_sym_STAR_EQ] = ACTIONS(168),
- [anon_sym_SLASH_EQ] = ACTIONS(168),
- [anon_sym_PERCENT_EQ] = ACTIONS(168),
- [anon_sym_CARET_EQ] = ACTIONS(168),
- [anon_sym_AMP_EQ] = ACTIONS(168),
- [anon_sym_PIPE_EQ] = ACTIONS(168),
- [anon_sym_GT_GT_EQ] = ACTIONS(168),
- [anon_sym_GT_GT_GT_EQ] = ACTIONS(168),
- [anon_sym_LT_LT_EQ] = ACTIONS(168),
- [anon_sym_STAR_STAR_EQ] = ACTIONS(168),
- [anon_sym_AMP_AMP_EQ] = ACTIONS(168),
- [anon_sym_PIPE_PIPE_EQ] = ACTIONS(168),
- [anon_sym_QMARK_QMARK_EQ] = ACTIONS(168),
- [anon_sym_AMP_AMP] = ACTIONS(122),
- [anon_sym_PIPE_PIPE] = ACTIONS(122),
- [anon_sym_GT_GT] = ACTIONS(122),
- [anon_sym_GT_GT_GT] = ACTIONS(122),
- [anon_sym_LT_LT] = ACTIONS(122),
- [anon_sym_AMP] = ACTIONS(122),
- [anon_sym_CARET] = ACTIONS(122),
- [anon_sym_PIPE] = ACTIONS(122),
- [anon_sym_PLUS] = ACTIONS(187),
- [anon_sym_DASH] = ACTIONS(187),
- [anon_sym_SLASH] = ACTIONS(646),
- [anon_sym_PERCENT] = ACTIONS(122),
- [anon_sym_STAR_STAR] = ACTIONS(122),
- [anon_sym_LT] = ACTIONS(181),
- [anon_sym_LT_EQ] = ACTIONS(162),
- [anon_sym_EQ_EQ] = ACTIONS(122),
- [anon_sym_EQ_EQ_EQ] = ACTIONS(162),
- [anon_sym_BANG_EQ] = ACTIONS(122),
- [anon_sym_BANG_EQ_EQ] = ACTIONS(162),
- [anon_sym_GT_EQ] = ACTIONS(162),
- [anon_sym_QMARK_QMARK] = ACTIONS(122),
- [anon_sym_instanceof] = ACTIONS(122),
- [anon_sym_TILDE] = ACTIONS(183),
- [anon_sym_void] = ACTIONS(187),
- [anon_sym_delete] = ACTIONS(187),
- [anon_sym_PLUS_PLUS] = ACTIONS(719),
- [anon_sym_DASH_DASH] = ACTIONS(719),
- [sym_comment] = ACTIONS(5),
- [anon_sym_BQUOTE] = ACTIONS(825),
- [sym_number] = ACTIONS(787),
- [sym_private_property_identifier] = ACTIONS(196),
- [sym_this] = ACTIONS(200),
- [sym_super] = ACTIONS(200),
- [sym_true] = ACTIONS(200),
- [sym_false] = ACTIONS(200),
- [sym_null] = ACTIONS(200),
- [sym_undefined] = ACTIONS(827),
- [anon_sym_AT] = ACTIONS(99),
- [anon_sym_static] = ACTIONS(839),
- [anon_sym_readonly] = ACTIONS(839),
- [anon_sym_get] = ACTIONS(839),
- [anon_sym_set] = ACTIONS(839),
- [anon_sym_declare] = ACTIONS(839),
- [anon_sym_public] = ACTIONS(839),
- [anon_sym_private] = ACTIONS(839),
- [anon_sym_protected] = ACTIONS(839),
- [anon_sym_override] = ACTIONS(839),
- [anon_sym_module] = ACTIONS(839),
- [anon_sym_any] = ACTIONS(839),
- [anon_sym_number] = ACTIONS(839),
- [anon_sym_boolean] = ACTIONS(839),
- [anon_sym_string] = ACTIONS(839),
- [anon_sym_symbol] = ACTIONS(839),
- [anon_sym_object] = ACTIONS(839),
- [anon_sym_satisfies] = ACTIONS(122),
- [sym__ternary_qmark] = ACTIONS(162),
- [sym_html_comment] = ACTIONS(5),
- },
- [134] = {
- [sym_import] = STATE(3334),
- [sym_parenthesized_expression] = STATE(1179),
- [sym_expression] = STATE(2415),
- [sym_primary_expression] = STATE(1430),
- [sym_yield_expression] = STATE(1634),
- [sym_object] = STATE(1650),
- [sym_object_pattern] = STATE(5854),
- [sym_array] = STATE(1650),
- [sym_array_pattern] = STATE(5854),
- [sym_glimmer_template] = STATE(1634),
- [sym_jsx_element] = STATE(1634),
- [sym_jsx_opening_element] = STATE(3026),
- [sym_jsx_self_closing_element] = STATE(1634),
- [sym_class] = STATE(1650),
- [sym_function_expression] = STATE(1650),
- [sym_generator_function] = STATE(1650),
- [sym_arrow_function] = STATE(1650),
- [sym__call_signature] = STATE(5619),
- [sym_call_expression] = STATE(1650),
- [sym_new_expression] = STATE(1634),
- [sym_await_expression] = STATE(1634),
- [sym_member_expression] = STATE(1179),
- [sym_subscript_expression] = STATE(1179),
- [sym_assignment_expression] = STATE(1634),
- [sym__augmented_assignment_lhs] = STATE(2878),
- [sym_augmented_assignment_expression] = STATE(1634),
- [sym__destructuring_pattern] = STATE(5854),
- [sym_ternary_expression] = STATE(1634),
- [sym_binary_expression] = STATE(1634),
- [sym_unary_expression] = STATE(1634),
- [sym_update_expression] = STATE(1634),
- [sym_string] = STATE(1650),
- [sym_template_string] = STATE(1650),
- [sym_regex] = STATE(1650),
- [sym_meta_property] = STATE(1650),
- [sym_decorator] = STATE(1244),
- [sym_formal_parameters] = STATE(3742),
- [sym_non_null_expression] = STATE(1179),
- [sym_as_expression] = STATE(1634),
- [sym_satisfies_expression] = STATE(1634),
- [sym_instantiation_expression] = STATE(1634),
- [sym_internal_module] = STATE(1634),
- [sym_type_parameters] = STATE(5349),
- [aux_sym_export_statement_repeat1] = STATE(4458),
- [sym_identifier] = ACTIONS(837),
- [anon_sym_export] = ACTIONS(839),
- [anon_sym_STAR] = ACTIONS(122),
- [anon_sym_type] = ACTIONS(839),
- [anon_sym_EQ] = ACTIONS(978),
- [anon_sym_as] = ACTIONS(122),
- [anon_sym_namespace] = ACTIONS(843),
- [anon_sym_LBRACE] = ACTIONS(845),
- [anon_sym_typeof] = ACTIONS(187),
- [anon_sym_import] = ACTIONS(133),
- [anon_sym_let] = ACTIONS(839),
- [anon_sym_BANG] = ACTIONS(187),
- [anon_sym_LPAREN] = ACTIONS(815),
- [anon_sym_await] = ACTIONS(142),
- [anon_sym_in] = ACTIONS(122),
- [anon_sym_yield] = ACTIONS(144),
- [anon_sym_LBRACK] = ACTIONS(849),
- [sym_glimmer_opening_tag] = ACTIONS(148),
- [anon_sym_GT] = ACTIONS(122),
- [anon_sym_DOT] = ACTIONS(819),
- [anon_sym_DQUOTE] = ACTIONS(150),
- [anon_sym_SQUOTE] = ACTIONS(152),
- [anon_sym_class] = ACTIONS(154),
- [anon_sym_async] = ACTIONS(851),
- [anon_sym_function] = ACTIONS(158),
- [anon_sym_EQ_GT] = ACTIONS(229),
- [anon_sym_QMARK_DOT] = ACTIONS(162),
- [anon_sym_new] = ACTIONS(853),
- [anon_sym_using] = ACTIONS(166),
- [anon_sym_PLUS_EQ] = ACTIONS(168),
- [anon_sym_DASH_EQ] = ACTIONS(168),
- [anon_sym_STAR_EQ] = ACTIONS(168),
- [anon_sym_SLASH_EQ] = ACTIONS(168),
- [anon_sym_PERCENT_EQ] = ACTIONS(168),
- [anon_sym_CARET_EQ] = ACTIONS(168),
- [anon_sym_AMP_EQ] = ACTIONS(168),
- [anon_sym_PIPE_EQ] = ACTIONS(168),
- [anon_sym_GT_GT_EQ] = ACTIONS(168),
- [anon_sym_GT_GT_GT_EQ] = ACTIONS(168),
- [anon_sym_LT_LT_EQ] = ACTIONS(168),
- [anon_sym_STAR_STAR_EQ] = ACTIONS(168),
- [anon_sym_AMP_AMP_EQ] = ACTIONS(168),
- [anon_sym_PIPE_PIPE_EQ] = ACTIONS(168),
- [anon_sym_QMARK_QMARK_EQ] = ACTIONS(168),
- [anon_sym_AMP_AMP] = ACTIONS(122),
- [anon_sym_PIPE_PIPE] = ACTIONS(122),
- [anon_sym_GT_GT] = ACTIONS(122),
- [anon_sym_GT_GT_GT] = ACTIONS(122),
- [anon_sym_LT_LT] = ACTIONS(122),
- [anon_sym_AMP] = ACTIONS(122),
- [anon_sym_CARET] = ACTIONS(122),
- [anon_sym_PIPE] = ACTIONS(122),
- [anon_sym_PLUS] = ACTIONS(187),
- [anon_sym_DASH] = ACTIONS(187),
- [anon_sym_SLASH] = ACTIONS(646),
- [anon_sym_PERCENT] = ACTIONS(122),
- [anon_sym_STAR_STAR] = ACTIONS(122),
- [anon_sym_LT] = ACTIONS(181),
- [anon_sym_LT_EQ] = ACTIONS(162),
- [anon_sym_EQ_EQ] = ACTIONS(122),
- [anon_sym_EQ_EQ_EQ] = ACTIONS(162),
- [anon_sym_BANG_EQ] = ACTIONS(122),
- [anon_sym_BANG_EQ_EQ] = ACTIONS(162),
- [anon_sym_GT_EQ] = ACTIONS(162),
- [anon_sym_QMARK_QMARK] = ACTIONS(122),
- [anon_sym_instanceof] = ACTIONS(122),
- [anon_sym_TILDE] = ACTIONS(183),
- [anon_sym_void] = ACTIONS(187),
- [anon_sym_delete] = ACTIONS(187),
- [anon_sym_PLUS_PLUS] = ACTIONS(719),
- [anon_sym_DASH_DASH] = ACTIONS(719),
- [sym_comment] = ACTIONS(5),
- [anon_sym_BQUOTE] = ACTIONS(825),
- [sym_number] = ACTIONS(787),
- [sym_private_property_identifier] = ACTIONS(196),
- [sym_this] = ACTIONS(200),
- [sym_super] = ACTIONS(200),
- [sym_true] = ACTIONS(200),
- [sym_false] = ACTIONS(200),
- [sym_null] = ACTIONS(200),
- [sym_undefined] = ACTIONS(827),
- [anon_sym_AT] = ACTIONS(99),
- [anon_sym_static] = ACTIONS(839),
- [anon_sym_readonly] = ACTIONS(839),
- [anon_sym_get] = ACTIONS(839),
- [anon_sym_set] = ACTIONS(839),
- [anon_sym_declare] = ACTIONS(839),
- [anon_sym_public] = ACTIONS(839),
- [anon_sym_private] = ACTIONS(839),
- [anon_sym_protected] = ACTIONS(839),
- [anon_sym_override] = ACTIONS(839),
- [anon_sym_module] = ACTIONS(839),
- [anon_sym_any] = ACTIONS(839),
- [anon_sym_number] = ACTIONS(839),
- [anon_sym_boolean] = ACTIONS(839),
- [anon_sym_string] = ACTIONS(839),
- [anon_sym_symbol] = ACTIONS(839),
- [anon_sym_object] = ACTIONS(839),
- [anon_sym_satisfies] = ACTIONS(122),
- [sym__ternary_qmark] = ACTIONS(162),
- [sym_html_comment] = ACTIONS(5),
- },
- [135] = {
- [sym_import] = STATE(3334),
- [sym_parenthesized_expression] = STATE(1179),
- [sym_expression] = STATE(2415),
- [sym_primary_expression] = STATE(1430),
- [sym_yield_expression] = STATE(1634),
- [sym_object] = STATE(1650),
- [sym_object_pattern] = STATE(5854),
- [sym_array] = STATE(1650),
- [sym_array_pattern] = STATE(5854),
- [sym_glimmer_template] = STATE(1634),
- [sym_jsx_element] = STATE(1634),
- [sym_jsx_opening_element] = STATE(3026),
- [sym_jsx_self_closing_element] = STATE(1634),
- [sym_class] = STATE(1650),
- [sym_function_expression] = STATE(1650),
- [sym_generator_function] = STATE(1650),
- [sym_arrow_function] = STATE(1650),
- [sym__call_signature] = STATE(5619),
- [sym_call_expression] = STATE(1650),
- [sym_new_expression] = STATE(1634),
- [sym_await_expression] = STATE(1634),
- [sym_member_expression] = STATE(1179),
- [sym_subscript_expression] = STATE(1179),
- [sym_assignment_expression] = STATE(1634),
- [sym__augmented_assignment_lhs] = STATE(2878),
- [sym_augmented_assignment_expression] = STATE(1634),
- [sym__destructuring_pattern] = STATE(5854),
- [sym_ternary_expression] = STATE(1634),
- [sym_binary_expression] = STATE(1634),
- [sym_unary_expression] = STATE(1634),
- [sym_update_expression] = STATE(1634),
- [sym_string] = STATE(1650),
- [sym_template_string] = STATE(1650),
- [sym_regex] = STATE(1650),
- [sym_meta_property] = STATE(1650),
- [sym_decorator] = STATE(1244),
- [sym_formal_parameters] = STATE(3742),
- [sym_non_null_expression] = STATE(1179),
- [sym_as_expression] = STATE(1634),
- [sym_satisfies_expression] = STATE(1634),
- [sym_instantiation_expression] = STATE(1634),
- [sym_internal_module] = STATE(1634),
- [sym_type_parameters] = STATE(5349),
- [aux_sym_export_statement_repeat1] = STATE(4458),
- [sym_identifier] = ACTIONS(837),
- [anon_sym_export] = ACTIONS(839),
- [anon_sym_STAR] = ACTIONS(122),
- [anon_sym_type] = ACTIONS(839),
- [anon_sym_EQ] = ACTIONS(980),
- [anon_sym_as] = ACTIONS(122),
- [anon_sym_namespace] = ACTIONS(843),
- [anon_sym_LBRACE] = ACTIONS(845),
- [anon_sym_typeof] = ACTIONS(187),
- [anon_sym_import] = ACTIONS(133),
- [anon_sym_let] = ACTIONS(839),
- [anon_sym_BANG] = ACTIONS(187),
- [anon_sym_LPAREN] = ACTIONS(815),
- [anon_sym_await] = ACTIONS(142),
- [anon_sym_in] = ACTIONS(122),
- [anon_sym_yield] = ACTIONS(144),
- [anon_sym_LBRACK] = ACTIONS(849),
- [sym_glimmer_opening_tag] = ACTIONS(148),
- [anon_sym_GT] = ACTIONS(122),
- [anon_sym_DOT] = ACTIONS(819),
- [anon_sym_DQUOTE] = ACTIONS(150),
- [anon_sym_SQUOTE] = ACTIONS(152),
- [anon_sym_class] = ACTIONS(154),
- [anon_sym_async] = ACTIONS(851),
- [anon_sym_function] = ACTIONS(158),
- [anon_sym_EQ_GT] = ACTIONS(229),
- [anon_sym_QMARK_DOT] = ACTIONS(162),
- [anon_sym_new] = ACTIONS(853),
- [anon_sym_using] = ACTIONS(166),
- [anon_sym_PLUS_EQ] = ACTIONS(168),
- [anon_sym_DASH_EQ] = ACTIONS(168),
- [anon_sym_STAR_EQ] = ACTIONS(168),
- [anon_sym_SLASH_EQ] = ACTIONS(168),
- [anon_sym_PERCENT_EQ] = ACTIONS(168),
- [anon_sym_CARET_EQ] = ACTIONS(168),
- [anon_sym_AMP_EQ] = ACTIONS(168),
- [anon_sym_PIPE_EQ] = ACTIONS(168),
- [anon_sym_GT_GT_EQ] = ACTIONS(168),
- [anon_sym_GT_GT_GT_EQ] = ACTIONS(168),
- [anon_sym_LT_LT_EQ] = ACTIONS(168),
- [anon_sym_STAR_STAR_EQ] = ACTIONS(168),
- [anon_sym_AMP_AMP_EQ] = ACTIONS(168),
- [anon_sym_PIPE_PIPE_EQ] = ACTIONS(168),
- [anon_sym_QMARK_QMARK_EQ] = ACTIONS(168),
- [anon_sym_AMP_AMP] = ACTIONS(122),
- [anon_sym_PIPE_PIPE] = ACTIONS(122),
- [anon_sym_GT_GT] = ACTIONS(122),
- [anon_sym_GT_GT_GT] = ACTIONS(122),
- [anon_sym_LT_LT] = ACTIONS(122),
- [anon_sym_AMP] = ACTIONS(122),
- [anon_sym_CARET] = ACTIONS(122),
- [anon_sym_PIPE] = ACTIONS(122),
- [anon_sym_PLUS] = ACTIONS(187),
- [anon_sym_DASH] = ACTIONS(187),
- [anon_sym_SLASH] = ACTIONS(646),
- [anon_sym_PERCENT] = ACTIONS(122),
- [anon_sym_STAR_STAR] = ACTIONS(122),
- [anon_sym_LT] = ACTIONS(181),
- [anon_sym_LT_EQ] = ACTIONS(162),
- [anon_sym_EQ_EQ] = ACTIONS(122),
- [anon_sym_EQ_EQ_EQ] = ACTIONS(162),
- [anon_sym_BANG_EQ] = ACTIONS(122),
- [anon_sym_BANG_EQ_EQ] = ACTIONS(162),
- [anon_sym_GT_EQ] = ACTIONS(162),
- [anon_sym_QMARK_QMARK] = ACTIONS(122),
- [anon_sym_instanceof] = ACTIONS(122),
- [anon_sym_TILDE] = ACTIONS(183),
- [anon_sym_void] = ACTIONS(187),
- [anon_sym_delete] = ACTIONS(187),
- [anon_sym_PLUS_PLUS] = ACTIONS(719),
- [anon_sym_DASH_DASH] = ACTIONS(719),
- [sym_comment] = ACTIONS(5),
- [anon_sym_BQUOTE] = ACTIONS(825),
- [sym_number] = ACTIONS(787),
- [sym_private_property_identifier] = ACTIONS(196),
- [sym_this] = ACTIONS(200),
- [sym_super] = ACTIONS(200),
- [sym_true] = ACTIONS(200),
- [sym_false] = ACTIONS(200),
- [sym_null] = ACTIONS(200),
- [sym_undefined] = ACTIONS(827),
- [anon_sym_AT] = ACTIONS(99),
- [anon_sym_static] = ACTIONS(839),
- [anon_sym_readonly] = ACTIONS(839),
- [anon_sym_get] = ACTIONS(839),
- [anon_sym_set] = ACTIONS(839),
- [anon_sym_declare] = ACTIONS(839),
- [anon_sym_public] = ACTIONS(839),
- [anon_sym_private] = ACTIONS(839),
- [anon_sym_protected] = ACTIONS(839),
- [anon_sym_override] = ACTIONS(839),
- [anon_sym_module] = ACTIONS(839),
- [anon_sym_any] = ACTIONS(839),
- [anon_sym_number] = ACTIONS(839),
- [anon_sym_boolean] = ACTIONS(839),
- [anon_sym_string] = ACTIONS(839),
- [anon_sym_symbol] = ACTIONS(839),
- [anon_sym_object] = ACTIONS(839),
- [anon_sym_satisfies] = ACTIONS(122),
- [sym__ternary_qmark] = ACTIONS(162),
- [sym_html_comment] = ACTIONS(5),
- },
- [136] = {
- [sym_import] = STATE(3334),
- [sym_parenthesized_expression] = STATE(1179),
- [sym_expression] = STATE(2415),
- [sym_primary_expression] = STATE(1430),
- [sym_yield_expression] = STATE(1634),
- [sym_object] = STATE(1650),
- [sym_object_pattern] = STATE(5854),
- [sym_array] = STATE(1650),
- [sym_array_pattern] = STATE(5854),
- [sym_glimmer_template] = STATE(1634),
- [sym_jsx_element] = STATE(1634),
- [sym_jsx_opening_element] = STATE(3026),
- [sym_jsx_self_closing_element] = STATE(1634),
- [sym_class] = STATE(1650),
- [sym_function_expression] = STATE(1650),
- [sym_generator_function] = STATE(1650),
- [sym_arrow_function] = STATE(1650),
- [sym__call_signature] = STATE(5619),
- [sym_call_expression] = STATE(1650),
- [sym_new_expression] = STATE(1634),
- [sym_await_expression] = STATE(1634),
- [sym_member_expression] = STATE(1179),
- [sym_subscript_expression] = STATE(1179),
- [sym_assignment_expression] = STATE(1634),
- [sym__augmented_assignment_lhs] = STATE(2878),
- [sym_augmented_assignment_expression] = STATE(1634),
- [sym__destructuring_pattern] = STATE(5854),
- [sym_ternary_expression] = STATE(1634),
- [sym_binary_expression] = STATE(1634),
- [sym_unary_expression] = STATE(1634),
- [sym_update_expression] = STATE(1634),
- [sym_string] = STATE(1650),
- [sym_template_string] = STATE(1650),
- [sym_regex] = STATE(1650),
- [sym_meta_property] = STATE(1650),
- [sym_decorator] = STATE(1244),
- [sym_formal_parameters] = STATE(3915),
- [sym_non_null_expression] = STATE(1179),
- [sym_as_expression] = STATE(1634),
- [sym_satisfies_expression] = STATE(1634),
- [sym_instantiation_expression] = STATE(1634),
- [sym_internal_module] = STATE(1634),
- [sym_type_parameters] = STATE(5206),
- [aux_sym_export_statement_repeat1] = STATE(4458),
- [sym_identifier] = ACTIONS(837),
- [anon_sym_export] = ACTIONS(839),
- [anon_sym_STAR] = ACTIONS(122),
- [anon_sym_type] = ACTIONS(839),
- [anon_sym_EQ] = ACTIONS(841),
- [anon_sym_as] = ACTIONS(122),
- [anon_sym_namespace] = ACTIONS(843),
- [anon_sym_LBRACE] = ACTIONS(845),
- [anon_sym_typeof] = ACTIONS(187),
- [anon_sym_import] = ACTIONS(133),
- [anon_sym_let] = ACTIONS(839),
- [anon_sym_BANG] = ACTIONS(187),
- [anon_sym_LPAREN] = ACTIONS(815),
- [anon_sym_await] = ACTIONS(142),
- [anon_sym_in] = ACTIONS(122),
- [anon_sym_yield] = ACTIONS(144),
- [anon_sym_LBRACK] = ACTIONS(849),
- [sym_glimmer_opening_tag] = ACTIONS(148),
- [anon_sym_GT] = ACTIONS(122),
- [anon_sym_DOT] = ACTIONS(819),
- [anon_sym_DQUOTE] = ACTIONS(150),
- [anon_sym_SQUOTE] = ACTIONS(152),
- [anon_sym_class] = ACTIONS(154),
- [anon_sym_async] = ACTIONS(851),
- [anon_sym_function] = ACTIONS(158),
- [anon_sym_EQ_GT] = ACTIONS(229),
- [anon_sym_QMARK_DOT] = ACTIONS(162),
- [anon_sym_new] = ACTIONS(853),
- [anon_sym_using] = ACTIONS(166),
- [anon_sym_PLUS_EQ] = ACTIONS(168),
- [anon_sym_DASH_EQ] = ACTIONS(168),
- [anon_sym_STAR_EQ] = ACTIONS(168),
- [anon_sym_SLASH_EQ] = ACTIONS(168),
- [anon_sym_PERCENT_EQ] = ACTIONS(168),
- [anon_sym_CARET_EQ] = ACTIONS(168),
- [anon_sym_AMP_EQ] = ACTIONS(168),
- [anon_sym_PIPE_EQ] = ACTIONS(168),
- [anon_sym_GT_GT_EQ] = ACTIONS(168),
- [anon_sym_GT_GT_GT_EQ] = ACTIONS(168),
- [anon_sym_LT_LT_EQ] = ACTIONS(168),
- [anon_sym_STAR_STAR_EQ] = ACTIONS(168),
- [anon_sym_AMP_AMP_EQ] = ACTIONS(168),
- [anon_sym_PIPE_PIPE_EQ] = ACTIONS(168),
- [anon_sym_QMARK_QMARK_EQ] = ACTIONS(168),
- [anon_sym_AMP_AMP] = ACTIONS(122),
- [anon_sym_PIPE_PIPE] = ACTIONS(122),
- [anon_sym_GT_GT] = ACTIONS(122),
- [anon_sym_GT_GT_GT] = ACTIONS(122),
- [anon_sym_LT_LT] = ACTIONS(122),
- [anon_sym_AMP] = ACTIONS(122),
- [anon_sym_CARET] = ACTIONS(122),
- [anon_sym_PIPE] = ACTIONS(122),
- [anon_sym_PLUS] = ACTIONS(187),
- [anon_sym_DASH] = ACTIONS(187),
- [anon_sym_SLASH] = ACTIONS(646),
- [anon_sym_PERCENT] = ACTIONS(122),
- [anon_sym_STAR_STAR] = ACTIONS(122),
- [anon_sym_LT] = ACTIONS(181),
- [anon_sym_LT_EQ] = ACTIONS(162),
- [anon_sym_EQ_EQ] = ACTIONS(122),
- [anon_sym_EQ_EQ_EQ] = ACTIONS(162),
- [anon_sym_BANG_EQ] = ACTIONS(122),
- [anon_sym_BANG_EQ_EQ] = ACTIONS(162),
- [anon_sym_GT_EQ] = ACTIONS(162),
- [anon_sym_QMARK_QMARK] = ACTIONS(122),
- [anon_sym_instanceof] = ACTIONS(122),
- [anon_sym_TILDE] = ACTIONS(183),
- [anon_sym_void] = ACTIONS(187),
- [anon_sym_delete] = ACTIONS(187),
- [anon_sym_PLUS_PLUS] = ACTIONS(719),
- [anon_sym_DASH_DASH] = ACTIONS(719),
- [sym_comment] = ACTIONS(5),
- [anon_sym_BQUOTE] = ACTIONS(825),
- [sym_number] = ACTIONS(787),
- [sym_private_property_identifier] = ACTIONS(196),
- [sym_this] = ACTIONS(200),
- [sym_super] = ACTIONS(200),
- [sym_true] = ACTIONS(200),
- [sym_false] = ACTIONS(200),
- [sym_null] = ACTIONS(200),
- [sym_undefined] = ACTIONS(827),
- [anon_sym_AT] = ACTIONS(99),
- [anon_sym_static] = ACTIONS(839),
- [anon_sym_readonly] = ACTIONS(839),
- [anon_sym_get] = ACTIONS(839),
- [anon_sym_set] = ACTIONS(839),
- [anon_sym_declare] = ACTIONS(839),
- [anon_sym_public] = ACTIONS(839),
- [anon_sym_private] = ACTIONS(839),
- [anon_sym_protected] = ACTIONS(839),
- [anon_sym_override] = ACTIONS(839),
- [anon_sym_module] = ACTIONS(839),
- [anon_sym_any] = ACTIONS(839),
- [anon_sym_number] = ACTIONS(839),
- [anon_sym_boolean] = ACTIONS(839),
- [anon_sym_string] = ACTIONS(839),
- [anon_sym_symbol] = ACTIONS(839),
- [anon_sym_object] = ACTIONS(839),
- [anon_sym_satisfies] = ACTIONS(122),
- [sym__ternary_qmark] = ACTIONS(162),
- [sym_html_comment] = ACTIONS(5),
- },
- [137] = {
- [sym_import] = STATE(3334),
- [sym_parenthesized_expression] = STATE(1179),
- [sym_expression] = STATE(2415),
- [sym_primary_expression] = STATE(1430),
- [sym_yield_expression] = STATE(1634),
- [sym_object] = STATE(1650),
- [sym_object_pattern] = STATE(5854),
- [sym_array] = STATE(1650),
- [sym_array_pattern] = STATE(5854),
- [sym_glimmer_template] = STATE(1634),
- [sym_jsx_element] = STATE(1634),
- [sym_jsx_opening_element] = STATE(3026),
- [sym_jsx_self_closing_element] = STATE(1634),
- [sym_class] = STATE(1650),
- [sym_function_expression] = STATE(1650),
- [sym_generator_function] = STATE(1650),
- [sym_arrow_function] = STATE(1650),
- [sym__call_signature] = STATE(5619),
- [sym_call_expression] = STATE(1650),
- [sym_new_expression] = STATE(1634),
- [sym_await_expression] = STATE(1634),
- [sym_member_expression] = STATE(1179),
- [sym_subscript_expression] = STATE(1179),
- [sym_assignment_expression] = STATE(1634),
- [sym__augmented_assignment_lhs] = STATE(2878),
- [sym_augmented_assignment_expression] = STATE(1634),
- [sym__destructuring_pattern] = STATE(5854),
- [sym_ternary_expression] = STATE(1634),
- [sym_binary_expression] = STATE(1634),
- [sym_unary_expression] = STATE(1634),
- [sym_update_expression] = STATE(1634),
- [sym_string] = STATE(1650),
- [sym_template_string] = STATE(1650),
- [sym_regex] = STATE(1650),
- [sym_meta_property] = STATE(1650),
- [sym_decorator] = STATE(1244),
- [sym_formal_parameters] = STATE(3742),
- [sym_non_null_expression] = STATE(1179),
- [sym_as_expression] = STATE(1634),
- [sym_satisfies_expression] = STATE(1634),
- [sym_instantiation_expression] = STATE(1634),
- [sym_internal_module] = STATE(1634),
- [sym_type_parameters] = STATE(5349),
- [aux_sym_export_statement_repeat1] = STATE(4458),
- [sym_identifier] = ACTIONS(837),
- [anon_sym_export] = ACTIONS(839),
- [anon_sym_STAR] = ACTIONS(122),
- [anon_sym_type] = ACTIONS(839),
- [anon_sym_EQ] = ACTIONS(982),
- [anon_sym_as] = ACTIONS(122),
- [anon_sym_namespace] = ACTIONS(843),
- [anon_sym_LBRACE] = ACTIONS(845),
- [anon_sym_typeof] = ACTIONS(187),
- [anon_sym_import] = ACTIONS(133),
- [anon_sym_let] = ACTIONS(839),
- [anon_sym_BANG] = ACTIONS(187),
- [anon_sym_LPAREN] = ACTIONS(815),
- [anon_sym_await] = ACTIONS(142),
- [anon_sym_in] = ACTIONS(122),
- [anon_sym_yield] = ACTIONS(144),
- [anon_sym_LBRACK] = ACTIONS(849),
- [sym_glimmer_opening_tag] = ACTIONS(148),
- [anon_sym_GT] = ACTIONS(122),
- [anon_sym_DOT] = ACTIONS(819),
- [anon_sym_DQUOTE] = ACTIONS(150),
- [anon_sym_SQUOTE] = ACTIONS(152),
- [anon_sym_class] = ACTIONS(154),
- [anon_sym_async] = ACTIONS(851),
- [anon_sym_function] = ACTIONS(158),
- [anon_sym_EQ_GT] = ACTIONS(229),
- [anon_sym_QMARK_DOT] = ACTIONS(162),
- [anon_sym_new] = ACTIONS(853),
- [anon_sym_using] = ACTIONS(166),
- [anon_sym_PLUS_EQ] = ACTIONS(168),
- [anon_sym_DASH_EQ] = ACTIONS(168),
- [anon_sym_STAR_EQ] = ACTIONS(168),
- [anon_sym_SLASH_EQ] = ACTIONS(168),
- [anon_sym_PERCENT_EQ] = ACTIONS(168),
- [anon_sym_CARET_EQ] = ACTIONS(168),
- [anon_sym_AMP_EQ] = ACTIONS(168),
- [anon_sym_PIPE_EQ] = ACTIONS(168),
- [anon_sym_GT_GT_EQ] = ACTIONS(168),
- [anon_sym_GT_GT_GT_EQ] = ACTIONS(168),
- [anon_sym_LT_LT_EQ] = ACTIONS(168),
- [anon_sym_STAR_STAR_EQ] = ACTIONS(168),
- [anon_sym_AMP_AMP_EQ] = ACTIONS(168),
- [anon_sym_PIPE_PIPE_EQ] = ACTIONS(168),
- [anon_sym_QMARK_QMARK_EQ] = ACTIONS(168),
- [anon_sym_AMP_AMP] = ACTIONS(122),
- [anon_sym_PIPE_PIPE] = ACTIONS(122),
- [anon_sym_GT_GT] = ACTIONS(122),
- [anon_sym_GT_GT_GT] = ACTIONS(122),
- [anon_sym_LT_LT] = ACTIONS(122),
- [anon_sym_AMP] = ACTIONS(122),
- [anon_sym_CARET] = ACTIONS(122),
- [anon_sym_PIPE] = ACTIONS(122),
- [anon_sym_PLUS] = ACTIONS(187),
- [anon_sym_DASH] = ACTIONS(187),
- [anon_sym_SLASH] = ACTIONS(646),
- [anon_sym_PERCENT] = ACTIONS(122),
- [anon_sym_STAR_STAR] = ACTIONS(122),
- [anon_sym_LT] = ACTIONS(181),
- [anon_sym_LT_EQ] = ACTIONS(162),
- [anon_sym_EQ_EQ] = ACTIONS(122),
- [anon_sym_EQ_EQ_EQ] = ACTIONS(162),
- [anon_sym_BANG_EQ] = ACTIONS(122),
- [anon_sym_BANG_EQ_EQ] = ACTIONS(162),
- [anon_sym_GT_EQ] = ACTIONS(162),
- [anon_sym_QMARK_QMARK] = ACTIONS(122),
- [anon_sym_instanceof] = ACTIONS(122),
- [anon_sym_TILDE] = ACTIONS(183),
- [anon_sym_void] = ACTIONS(187),
- [anon_sym_delete] = ACTIONS(187),
- [anon_sym_PLUS_PLUS] = ACTIONS(719),
- [anon_sym_DASH_DASH] = ACTIONS(719),
- [sym_comment] = ACTIONS(5),
- [anon_sym_BQUOTE] = ACTIONS(825),
- [sym_number] = ACTIONS(787),
- [sym_private_property_identifier] = ACTIONS(196),
- [sym_this] = ACTIONS(200),
- [sym_super] = ACTIONS(200),
- [sym_true] = ACTIONS(200),
- [sym_false] = ACTIONS(200),
- [sym_null] = ACTIONS(200),
- [sym_undefined] = ACTIONS(827),
- [anon_sym_AT] = ACTIONS(99),
- [anon_sym_static] = ACTIONS(839),
- [anon_sym_readonly] = ACTIONS(839),
- [anon_sym_get] = ACTIONS(839),
- [anon_sym_set] = ACTIONS(839),
- [anon_sym_declare] = ACTIONS(839),
- [anon_sym_public] = ACTIONS(839),
- [anon_sym_private] = ACTIONS(839),
- [anon_sym_protected] = ACTIONS(839),
- [anon_sym_override] = ACTIONS(839),
- [anon_sym_module] = ACTIONS(839),
- [anon_sym_any] = ACTIONS(839),
- [anon_sym_number] = ACTIONS(839),
- [anon_sym_boolean] = ACTIONS(839),
- [anon_sym_string] = ACTIONS(839),
- [anon_sym_symbol] = ACTIONS(839),
- [anon_sym_object] = ACTIONS(839),
- [anon_sym_satisfies] = ACTIONS(122),
- [sym__ternary_qmark] = ACTIONS(162),
- [sym_html_comment] = ACTIONS(5),
- },
- [138] = {
- [sym_import] = STATE(3334),
- [sym_parenthesized_expression] = STATE(1179),
- [sym_expression] = STATE(2415),
- [sym_primary_expression] = STATE(1430),
- [sym_yield_expression] = STATE(1634),
- [sym_object] = STATE(1650),
- [sym_object_pattern] = STATE(5854),
- [sym_array] = STATE(1650),
- [sym_array_pattern] = STATE(5854),
- [sym_glimmer_template] = STATE(1634),
- [sym_jsx_element] = STATE(1634),
- [sym_jsx_opening_element] = STATE(3026),
- [sym_jsx_self_closing_element] = STATE(1634),
- [sym_class] = STATE(1650),
- [sym_function_expression] = STATE(1650),
- [sym_generator_function] = STATE(1650),
- [sym_arrow_function] = STATE(1650),
- [sym__call_signature] = STATE(5619),
- [sym_call_expression] = STATE(1650),
- [sym_new_expression] = STATE(1634),
- [sym_await_expression] = STATE(1634),
- [sym_member_expression] = STATE(1179),
- [sym_subscript_expression] = STATE(1179),
- [sym_assignment_expression] = STATE(1634),
- [sym__augmented_assignment_lhs] = STATE(2878),
- [sym_augmented_assignment_expression] = STATE(1634),
- [sym__destructuring_pattern] = STATE(5854),
- [sym_ternary_expression] = STATE(1634),
- [sym_binary_expression] = STATE(1634),
- [sym_unary_expression] = STATE(1634),
- [sym_update_expression] = STATE(1634),
- [sym_string] = STATE(1650),
- [sym_template_string] = STATE(1650),
- [sym_regex] = STATE(1650),
- [sym_meta_property] = STATE(1650),
- [sym_decorator] = STATE(1244),
- [sym_formal_parameters] = STATE(3742),
- [sym_non_null_expression] = STATE(1179),
- [sym_as_expression] = STATE(1634),
- [sym_satisfies_expression] = STATE(1634),
- [sym_instantiation_expression] = STATE(1634),
- [sym_internal_module] = STATE(1634),
- [sym_type_parameters] = STATE(5349),
- [aux_sym_export_statement_repeat1] = STATE(4458),
- [sym_identifier] = ACTIONS(837),
- [anon_sym_export] = ACTIONS(839),
- [anon_sym_STAR] = ACTIONS(122),
- [anon_sym_type] = ACTIONS(839),
- [anon_sym_EQ] = ACTIONS(984),
- [anon_sym_as] = ACTIONS(122),
- [anon_sym_namespace] = ACTIONS(843),
- [anon_sym_LBRACE] = ACTIONS(845),
- [anon_sym_typeof] = ACTIONS(187),
- [anon_sym_import] = ACTIONS(133),
- [anon_sym_let] = ACTIONS(839),
- [anon_sym_BANG] = ACTIONS(187),
- [anon_sym_LPAREN] = ACTIONS(815),
- [anon_sym_await] = ACTIONS(142),
- [anon_sym_in] = ACTIONS(122),
- [anon_sym_yield] = ACTIONS(144),
- [anon_sym_LBRACK] = ACTIONS(849),
- [sym_glimmer_opening_tag] = ACTIONS(148),
- [anon_sym_GT] = ACTIONS(122),
- [anon_sym_DOT] = ACTIONS(819),
- [anon_sym_DQUOTE] = ACTIONS(150),
- [anon_sym_SQUOTE] = ACTIONS(152),
- [anon_sym_class] = ACTIONS(154),
- [anon_sym_async] = ACTIONS(851),
- [anon_sym_function] = ACTIONS(158),
- [anon_sym_EQ_GT] = ACTIONS(229),
- [anon_sym_QMARK_DOT] = ACTIONS(162),
- [anon_sym_new] = ACTIONS(853),
- [anon_sym_using] = ACTIONS(166),
- [anon_sym_PLUS_EQ] = ACTIONS(168),
- [anon_sym_DASH_EQ] = ACTIONS(168),
- [anon_sym_STAR_EQ] = ACTIONS(168),
- [anon_sym_SLASH_EQ] = ACTIONS(168),
- [anon_sym_PERCENT_EQ] = ACTIONS(168),
- [anon_sym_CARET_EQ] = ACTIONS(168),
- [anon_sym_AMP_EQ] = ACTIONS(168),
- [anon_sym_PIPE_EQ] = ACTIONS(168),
- [anon_sym_GT_GT_EQ] = ACTIONS(168),
- [anon_sym_GT_GT_GT_EQ] = ACTIONS(168),
- [anon_sym_LT_LT_EQ] = ACTIONS(168),
- [anon_sym_STAR_STAR_EQ] = ACTIONS(168),
- [anon_sym_AMP_AMP_EQ] = ACTIONS(168),
- [anon_sym_PIPE_PIPE_EQ] = ACTIONS(168),
- [anon_sym_QMARK_QMARK_EQ] = ACTIONS(168),
- [anon_sym_AMP_AMP] = ACTIONS(122),
- [anon_sym_PIPE_PIPE] = ACTIONS(122),
- [anon_sym_GT_GT] = ACTIONS(122),
- [anon_sym_GT_GT_GT] = ACTIONS(122),
- [anon_sym_LT_LT] = ACTIONS(122),
- [anon_sym_AMP] = ACTIONS(122),
- [anon_sym_CARET] = ACTIONS(122),
- [anon_sym_PIPE] = ACTIONS(122),
- [anon_sym_PLUS] = ACTIONS(187),
- [anon_sym_DASH] = ACTIONS(187),
- [anon_sym_SLASH] = ACTIONS(646),
- [anon_sym_PERCENT] = ACTIONS(122),
- [anon_sym_STAR_STAR] = ACTIONS(122),
- [anon_sym_LT] = ACTIONS(181),
- [anon_sym_LT_EQ] = ACTIONS(162),
- [anon_sym_EQ_EQ] = ACTIONS(122),
- [anon_sym_EQ_EQ_EQ] = ACTIONS(162),
- [anon_sym_BANG_EQ] = ACTIONS(122),
- [anon_sym_BANG_EQ_EQ] = ACTIONS(162),
- [anon_sym_GT_EQ] = ACTIONS(162),
- [anon_sym_QMARK_QMARK] = ACTIONS(122),
- [anon_sym_instanceof] = ACTIONS(122),
- [anon_sym_TILDE] = ACTIONS(183),
- [anon_sym_void] = ACTIONS(187),
- [anon_sym_delete] = ACTIONS(187),
- [anon_sym_PLUS_PLUS] = ACTIONS(719),
- [anon_sym_DASH_DASH] = ACTIONS(719),
- [sym_comment] = ACTIONS(5),
- [anon_sym_BQUOTE] = ACTIONS(825),
- [sym_number] = ACTIONS(787),
- [sym_private_property_identifier] = ACTIONS(196),
- [sym_this] = ACTIONS(200),
- [sym_super] = ACTIONS(200),
- [sym_true] = ACTIONS(200),
- [sym_false] = ACTIONS(200),
- [sym_null] = ACTIONS(200),
- [sym_undefined] = ACTIONS(827),
- [anon_sym_AT] = ACTIONS(99),
- [anon_sym_static] = ACTIONS(839),
- [anon_sym_readonly] = ACTIONS(839),
- [anon_sym_get] = ACTIONS(839),
- [anon_sym_set] = ACTIONS(839),
- [anon_sym_declare] = ACTIONS(839),
- [anon_sym_public] = ACTIONS(839),
- [anon_sym_private] = ACTIONS(839),
- [anon_sym_protected] = ACTIONS(839),
- [anon_sym_override] = ACTIONS(839),
- [anon_sym_module] = ACTIONS(839),
- [anon_sym_any] = ACTIONS(839),
- [anon_sym_number] = ACTIONS(839),
- [anon_sym_boolean] = ACTIONS(839),
- [anon_sym_string] = ACTIONS(839),
- [anon_sym_symbol] = ACTIONS(839),
- [anon_sym_object] = ACTIONS(839),
- [anon_sym_satisfies] = ACTIONS(122),
- [sym__ternary_qmark] = ACTIONS(162),
- [sym_html_comment] = ACTIONS(5),
- },
- [139] = {
- [sym_import] = STATE(3334),
- [sym_parenthesized_expression] = STATE(1179),
- [sym_expression] = STATE(2415),
- [sym_primary_expression] = STATE(1430),
- [sym_yield_expression] = STATE(1634),
- [sym_object] = STATE(1650),
- [sym_object_pattern] = STATE(5854),
- [sym_array] = STATE(1650),
- [sym_array_pattern] = STATE(5854),
- [sym_glimmer_template] = STATE(1634),
- [sym_jsx_element] = STATE(1634),
- [sym_jsx_opening_element] = STATE(3026),
- [sym_jsx_self_closing_element] = STATE(1634),
- [sym_class] = STATE(1650),
- [sym_function_expression] = STATE(1650),
- [sym_generator_function] = STATE(1650),
- [sym_arrow_function] = STATE(1650),
- [sym__call_signature] = STATE(5619),
- [sym_call_expression] = STATE(1650),
- [sym_new_expression] = STATE(1634),
- [sym_await_expression] = STATE(1634),
- [sym_member_expression] = STATE(1179),
- [sym_subscript_expression] = STATE(1179),
- [sym_assignment_expression] = STATE(1634),
- [sym__augmented_assignment_lhs] = STATE(2878),
- [sym_augmented_assignment_expression] = STATE(1634),
- [sym__destructuring_pattern] = STATE(5854),
- [sym_ternary_expression] = STATE(1634),
- [sym_binary_expression] = STATE(1634),
- [sym_unary_expression] = STATE(1634),
- [sym_update_expression] = STATE(1634),
- [sym_string] = STATE(1650),
- [sym_template_string] = STATE(1650),
- [sym_regex] = STATE(1650),
- [sym_meta_property] = STATE(1650),
- [sym_decorator] = STATE(1244),
- [sym_formal_parameters] = STATE(3742),
- [sym_non_null_expression] = STATE(1179),
- [sym_as_expression] = STATE(1634),
- [sym_satisfies_expression] = STATE(1634),
- [sym_instantiation_expression] = STATE(1634),
- [sym_internal_module] = STATE(1634),
- [sym_type_parameters] = STATE(5349),
- [aux_sym_export_statement_repeat1] = STATE(4458),
- [sym_identifier] = ACTIONS(837),
- [anon_sym_export] = ACTIONS(839),
- [anon_sym_STAR] = ACTIONS(122),
- [anon_sym_type] = ACTIONS(839),
- [anon_sym_EQ] = ACTIONS(986),
- [anon_sym_as] = ACTIONS(122),
- [anon_sym_namespace] = ACTIONS(843),
- [anon_sym_LBRACE] = ACTIONS(845),
- [anon_sym_typeof] = ACTIONS(187),
- [anon_sym_import] = ACTIONS(133),
- [anon_sym_let] = ACTIONS(839),
- [anon_sym_BANG] = ACTIONS(187),
- [anon_sym_LPAREN] = ACTIONS(815),
- [anon_sym_await] = ACTIONS(142),
- [anon_sym_in] = ACTIONS(122),
- [anon_sym_yield] = ACTIONS(144),
- [anon_sym_LBRACK] = ACTIONS(849),
- [sym_glimmer_opening_tag] = ACTIONS(148),
- [anon_sym_GT] = ACTIONS(122),
- [anon_sym_DOT] = ACTIONS(819),
- [anon_sym_DQUOTE] = ACTIONS(150),
- [anon_sym_SQUOTE] = ACTIONS(152),
- [anon_sym_class] = ACTIONS(154),
- [anon_sym_async] = ACTIONS(851),
- [anon_sym_function] = ACTIONS(158),
- [anon_sym_EQ_GT] = ACTIONS(229),
- [anon_sym_QMARK_DOT] = ACTIONS(162),
- [anon_sym_new] = ACTIONS(853),
- [anon_sym_using] = ACTIONS(166),
- [anon_sym_PLUS_EQ] = ACTIONS(168),
- [anon_sym_DASH_EQ] = ACTIONS(168),
- [anon_sym_STAR_EQ] = ACTIONS(168),
- [anon_sym_SLASH_EQ] = ACTIONS(168),
- [anon_sym_PERCENT_EQ] = ACTIONS(168),
- [anon_sym_CARET_EQ] = ACTIONS(168),
- [anon_sym_AMP_EQ] = ACTIONS(168),
- [anon_sym_PIPE_EQ] = ACTIONS(168),
- [anon_sym_GT_GT_EQ] = ACTIONS(168),
- [anon_sym_GT_GT_GT_EQ] = ACTIONS(168),
- [anon_sym_LT_LT_EQ] = ACTIONS(168),
- [anon_sym_STAR_STAR_EQ] = ACTIONS(168),
- [anon_sym_AMP_AMP_EQ] = ACTIONS(168),
- [anon_sym_PIPE_PIPE_EQ] = ACTIONS(168),
- [anon_sym_QMARK_QMARK_EQ] = ACTIONS(168),
- [anon_sym_AMP_AMP] = ACTIONS(122),
- [anon_sym_PIPE_PIPE] = ACTIONS(122),
- [anon_sym_GT_GT] = ACTIONS(122),
- [anon_sym_GT_GT_GT] = ACTIONS(122),
- [anon_sym_LT_LT] = ACTIONS(122),
- [anon_sym_AMP] = ACTIONS(122),
- [anon_sym_CARET] = ACTIONS(122),
- [anon_sym_PIPE] = ACTIONS(122),
- [anon_sym_PLUS] = ACTIONS(187),
- [anon_sym_DASH] = ACTIONS(187),
- [anon_sym_SLASH] = ACTIONS(646),
- [anon_sym_PERCENT] = ACTIONS(122),
- [anon_sym_STAR_STAR] = ACTIONS(122),
- [anon_sym_LT] = ACTIONS(181),
- [anon_sym_LT_EQ] = ACTIONS(162),
- [anon_sym_EQ_EQ] = ACTIONS(122),
- [anon_sym_EQ_EQ_EQ] = ACTIONS(162),
- [anon_sym_BANG_EQ] = ACTIONS(122),
- [anon_sym_BANG_EQ_EQ] = ACTIONS(162),
- [anon_sym_GT_EQ] = ACTIONS(162),
- [anon_sym_QMARK_QMARK] = ACTIONS(122),
- [anon_sym_instanceof] = ACTIONS(122),
- [anon_sym_TILDE] = ACTIONS(183),
- [anon_sym_void] = ACTIONS(187),
- [anon_sym_delete] = ACTIONS(187),
- [anon_sym_PLUS_PLUS] = ACTIONS(719),
- [anon_sym_DASH_DASH] = ACTIONS(719),
- [sym_comment] = ACTIONS(5),
- [anon_sym_BQUOTE] = ACTIONS(825),
- [sym_number] = ACTIONS(787),
- [sym_private_property_identifier] = ACTIONS(196),
- [sym_this] = ACTIONS(200),
- [sym_super] = ACTIONS(200),
- [sym_true] = ACTIONS(200),
- [sym_false] = ACTIONS(200),
- [sym_null] = ACTIONS(200),
- [sym_undefined] = ACTIONS(827),
- [anon_sym_AT] = ACTIONS(99),
- [anon_sym_static] = ACTIONS(839),
- [anon_sym_readonly] = ACTIONS(839),
- [anon_sym_get] = ACTIONS(839),
- [anon_sym_set] = ACTIONS(839),
- [anon_sym_declare] = ACTIONS(839),
- [anon_sym_public] = ACTIONS(839),
- [anon_sym_private] = ACTIONS(839),
- [anon_sym_protected] = ACTIONS(839),
- [anon_sym_override] = ACTIONS(839),
- [anon_sym_module] = ACTIONS(839),
- [anon_sym_any] = ACTIONS(839),
- [anon_sym_number] = ACTIONS(839),
- [anon_sym_boolean] = ACTIONS(839),
- [anon_sym_string] = ACTIONS(839),
- [anon_sym_symbol] = ACTIONS(839),
- [anon_sym_object] = ACTIONS(839),
- [anon_sym_satisfies] = ACTIONS(122),
- [sym__ternary_qmark] = ACTIONS(162),
- [sym_html_comment] = ACTIONS(5),
- },
- [140] = {
- [sym_import] = STATE(3334),
- [sym_parenthesized_expression] = STATE(1179),
- [sym_expression] = STATE(2415),
- [sym_primary_expression] = STATE(1430),
- [sym_yield_expression] = STATE(1634),
- [sym_object] = STATE(1650),
- [sym_object_pattern] = STATE(5854),
- [sym_array] = STATE(1650),
- [sym_array_pattern] = STATE(5854),
- [sym_glimmer_template] = STATE(1634),
- [sym_jsx_element] = STATE(1634),
- [sym_jsx_opening_element] = STATE(3026),
- [sym_jsx_self_closing_element] = STATE(1634),
- [sym_class] = STATE(1650),
- [sym_function_expression] = STATE(1650),
- [sym_generator_function] = STATE(1650),
- [sym_arrow_function] = STATE(1650),
- [sym__call_signature] = STATE(5619),
- [sym_call_expression] = STATE(1650),
- [sym_new_expression] = STATE(1634),
- [sym_await_expression] = STATE(1634),
- [sym_member_expression] = STATE(1179),
- [sym_subscript_expression] = STATE(1179),
- [sym_assignment_expression] = STATE(1634),
- [sym__augmented_assignment_lhs] = STATE(2878),
- [sym_augmented_assignment_expression] = STATE(1634),
- [sym__destructuring_pattern] = STATE(5854),
- [sym_ternary_expression] = STATE(1634),
- [sym_binary_expression] = STATE(1634),
- [sym_unary_expression] = STATE(1634),
- [sym_update_expression] = STATE(1634),
- [sym_string] = STATE(1650),
- [sym_template_string] = STATE(1650),
- [sym_regex] = STATE(1650),
- [sym_meta_property] = STATE(1650),
- [sym_decorator] = STATE(1244),
- [sym_formal_parameters] = STATE(3742),
- [sym_non_null_expression] = STATE(1179),
- [sym_as_expression] = STATE(1634),
- [sym_satisfies_expression] = STATE(1634),
- [sym_instantiation_expression] = STATE(1634),
- [sym_internal_module] = STATE(1634),
- [sym_type_parameters] = STATE(5349),
- [aux_sym_export_statement_repeat1] = STATE(4458),
- [sym_identifier] = ACTIONS(837),
- [anon_sym_export] = ACTIONS(839),
- [anon_sym_STAR] = ACTIONS(122),
- [anon_sym_type] = ACTIONS(839),
- [anon_sym_EQ] = ACTIONS(988),
- [anon_sym_as] = ACTIONS(122),
- [anon_sym_namespace] = ACTIONS(843),
- [anon_sym_LBRACE] = ACTIONS(845),
- [anon_sym_typeof] = ACTIONS(187),
- [anon_sym_import] = ACTIONS(133),
- [anon_sym_let] = ACTIONS(839),
- [anon_sym_BANG] = ACTIONS(187),
- [anon_sym_LPAREN] = ACTIONS(815),
- [anon_sym_await] = ACTIONS(142),
- [anon_sym_in] = ACTIONS(122),
- [anon_sym_yield] = ACTIONS(144),
- [anon_sym_LBRACK] = ACTIONS(849),
- [sym_glimmer_opening_tag] = ACTIONS(148),
- [anon_sym_GT] = ACTIONS(122),
- [anon_sym_DOT] = ACTIONS(819),
- [anon_sym_DQUOTE] = ACTIONS(150),
- [anon_sym_SQUOTE] = ACTIONS(152),
- [anon_sym_class] = ACTIONS(154),
- [anon_sym_async] = ACTIONS(851),
- [anon_sym_function] = ACTIONS(158),
- [anon_sym_EQ_GT] = ACTIONS(229),
- [anon_sym_QMARK_DOT] = ACTIONS(162),
- [anon_sym_new] = ACTIONS(853),
- [anon_sym_using] = ACTIONS(166),
- [anon_sym_PLUS_EQ] = ACTIONS(168),
- [anon_sym_DASH_EQ] = ACTIONS(168),
- [anon_sym_STAR_EQ] = ACTIONS(168),
- [anon_sym_SLASH_EQ] = ACTIONS(168),
- [anon_sym_PERCENT_EQ] = ACTIONS(168),
- [anon_sym_CARET_EQ] = ACTIONS(168),
- [anon_sym_AMP_EQ] = ACTIONS(168),
- [anon_sym_PIPE_EQ] = ACTIONS(168),
- [anon_sym_GT_GT_EQ] = ACTIONS(168),
- [anon_sym_GT_GT_GT_EQ] = ACTIONS(168),
- [anon_sym_LT_LT_EQ] = ACTIONS(168),
- [anon_sym_STAR_STAR_EQ] = ACTIONS(168),
- [anon_sym_AMP_AMP_EQ] = ACTIONS(168),
- [anon_sym_PIPE_PIPE_EQ] = ACTIONS(168),
- [anon_sym_QMARK_QMARK_EQ] = ACTIONS(168),
- [anon_sym_AMP_AMP] = ACTIONS(122),
- [anon_sym_PIPE_PIPE] = ACTIONS(122),
- [anon_sym_GT_GT] = ACTIONS(122),
- [anon_sym_GT_GT_GT] = ACTIONS(122),
- [anon_sym_LT_LT] = ACTIONS(122),
- [anon_sym_AMP] = ACTIONS(122),
- [anon_sym_CARET] = ACTIONS(122),
- [anon_sym_PIPE] = ACTIONS(122),
- [anon_sym_PLUS] = ACTIONS(187),
- [anon_sym_DASH] = ACTIONS(187),
- [anon_sym_SLASH] = ACTIONS(646),
- [anon_sym_PERCENT] = ACTIONS(122),
- [anon_sym_STAR_STAR] = ACTIONS(122),
- [anon_sym_LT] = ACTIONS(181),
- [anon_sym_LT_EQ] = ACTIONS(162),
- [anon_sym_EQ_EQ] = ACTIONS(122),
- [anon_sym_EQ_EQ_EQ] = ACTIONS(162),
- [anon_sym_BANG_EQ] = ACTIONS(122),
- [anon_sym_BANG_EQ_EQ] = ACTIONS(162),
- [anon_sym_GT_EQ] = ACTIONS(162),
- [anon_sym_QMARK_QMARK] = ACTIONS(122),
- [anon_sym_instanceof] = ACTIONS(122),
- [anon_sym_TILDE] = ACTIONS(183),
- [anon_sym_void] = ACTIONS(187),
- [anon_sym_delete] = ACTIONS(187),
- [anon_sym_PLUS_PLUS] = ACTIONS(719),
- [anon_sym_DASH_DASH] = ACTIONS(719),
- [sym_comment] = ACTIONS(5),
- [anon_sym_BQUOTE] = ACTIONS(825),
- [sym_number] = ACTIONS(787),
- [sym_private_property_identifier] = ACTIONS(196),
- [sym_this] = ACTIONS(200),
- [sym_super] = ACTIONS(200),
- [sym_true] = ACTIONS(200),
- [sym_false] = ACTIONS(200),
- [sym_null] = ACTIONS(200),
- [sym_undefined] = ACTIONS(827),
- [anon_sym_AT] = ACTIONS(99),
- [anon_sym_static] = ACTIONS(839),
- [anon_sym_readonly] = ACTIONS(839),
- [anon_sym_get] = ACTIONS(839),
- [anon_sym_set] = ACTIONS(839),
- [anon_sym_declare] = ACTIONS(839),
- [anon_sym_public] = ACTIONS(839),
- [anon_sym_private] = ACTIONS(839),
- [anon_sym_protected] = ACTIONS(839),
- [anon_sym_override] = ACTIONS(839),
- [anon_sym_module] = ACTIONS(839),
- [anon_sym_any] = ACTIONS(839),
- [anon_sym_number] = ACTIONS(839),
- [anon_sym_boolean] = ACTIONS(839),
- [anon_sym_string] = ACTIONS(839),
- [anon_sym_symbol] = ACTIONS(839),
- [anon_sym_object] = ACTIONS(839),
- [anon_sym_satisfies] = ACTIONS(122),
- [sym__ternary_qmark] = ACTIONS(162),
- [sym_html_comment] = ACTIONS(5),
- },
- [141] = {
- [sym_import] = STATE(3266),
- [sym_parenthesized_expression] = STATE(1251),
- [sym_expression] = STATE(1925),
- [sym_primary_expression] = STATE(1468),
- [sym_yield_expression] = STATE(1634),
- [sym_object] = STATE(1650),
- [sym_object_pattern] = STATE(3610),
- [sym_assignment_pattern] = STATE(5197),
- [sym_array] = STATE(1650),
- [sym_array_pattern] = STATE(3610),
- [sym_glimmer_template] = STATE(1634),
- [sym_jsx_element] = STATE(1634),
- [sym_jsx_opening_element] = STATE(3026),
- [sym_nested_identifier] = STATE(5610),
- [sym_jsx_self_closing_element] = STATE(1634),
- [sym_class] = STATE(1650),
- [sym_function_expression] = STATE(1650),
- [sym_generator_function] = STATE(1650),
- [sym_arrow_function] = STATE(1650),
- [sym__call_signature] = STATE(5828),
- [sym_call_expression] = STATE(1650),
- [sym_new_expression] = STATE(1634),
- [sym_await_expression] = STATE(1634),
- [sym_member_expression] = STATE(1230),
- [sym_subscript_expression] = STATE(1230),
- [sym_assignment_expression] = STATE(1634),
- [sym__augmented_assignment_lhs] = STATE(2900),
- [sym_augmented_assignment_expression] = STATE(1634),
- [sym__destructuring_pattern] = STATE(3610),
- [sym_ternary_expression] = STATE(1634),
- [sym_binary_expression] = STATE(1634),
- [sym_unary_expression] = STATE(1634),
- [sym_update_expression] = STATE(1634),
- [sym_string] = STATE(1972),
- [sym_template_string] = STATE(1650),
- [sym_regex] = STATE(1650),
- [sym_meta_property] = STATE(1650),
- [sym_decorator] = STATE(1244),
- [sym_formal_parameters] = STATE(4001),
- [sym_pattern] = STATE(4675),
- [sym_rest_pattern] = STATE(3700),
- [sym_non_null_expression] = STATE(1230),
- [sym_as_expression] = STATE(1634),
- [sym_satisfies_expression] = STATE(1634),
- [sym_instantiation_expression] = STATE(1634),
- [sym_internal_module] = STATE(1634),
- [sym_nested_type_identifier] = STATE(3047),
- [sym__type_query_member_expression_in_type_annotation] = STATE(2958),
- [sym__type_query_call_expression_in_type_annotation] = STATE(3113),
- [sym_type] = STATE(3226),
- [sym_constructor_type] = STATE(3205),
- [sym_primary_type] = STATE(3150),
- [sym_template_literal_type] = STATE(3195),
- [sym_infer_type] = STATE(3205),
- [sym_conditional_type] = STATE(3195),
- [sym_generic_type] = STATE(3195),
- [sym_type_query] = STATE(3195),
- [sym_index_type_query] = STATE(3195),
- [sym_lookup_type] = STATE(3195),
- [sym_literal_type] = STATE(3195),
- [sym__number] = STATE(3154),
- [sym_existential_type] = STATE(3195),
- [sym_flow_maybe_type] = STATE(3195),
- [sym_parenthesized_type] = STATE(3195),
- [sym_predefined_type] = STATE(3195),
- [sym_object_type] = STATE(3195),
- [sym_type_parameters] = STATE(5368),
- [sym_array_type] = STATE(3195),
- [sym_tuple_type] = STATE(3195),
- [sym_readonly_type] = STATE(3205),
- [sym_union_type] = STATE(3195),
- [sym_intersection_type] = STATE(3195),
- [sym_function_type] = STATE(3205),
- [aux_sym_export_statement_repeat1] = STATE(4458),
- [sym_identifier] = ACTIONS(990),
- [anon_sym_export] = ACTIONS(610),
- [anon_sym_STAR] = ACTIONS(992),
- [anon_sym_type] = ACTIONS(610),
- [anon_sym_namespace] = ACTIONS(614),
- [anon_sym_LBRACE] = ACTIONS(994),
- [anon_sym_typeof] = ACTIONS(996),
- [anon_sym_import] = ACTIONS(133),
- [anon_sym_let] = ACTIONS(610),
- [anon_sym_const] = ACTIONS(998),
- [anon_sym_BANG] = ACTIONS(622),
- [anon_sym_LPAREN] = ACTIONS(1000),
- [anon_sym_await] = ACTIONS(624),
- [anon_sym_yield] = ACTIONS(626),
- [anon_sym_LBRACK] = ACTIONS(1002),
- [sym_glimmer_opening_tag] = ACTIONS(148),
- [anon_sym_DQUOTE] = ACTIONS(69),
- [anon_sym_SQUOTE] = ACTIONS(71),
- [anon_sym_class] = ACTIONS(154),
- [anon_sym_async] = ACTIONS(632),
- [anon_sym_function] = ACTIONS(158),
- [anon_sym_new] = ACTIONS(1004),
- [anon_sym_using] = ACTIONS(636),
- [anon_sym_DOT_DOT_DOT] = ACTIONS(170),
- [anon_sym_AMP] = ACTIONS(1006),
- [anon_sym_PIPE] = ACTIONS(1008),
- [anon_sym_PLUS] = ACTIONS(1010),
- [anon_sym_DASH] = ACTIONS(1010),
- [anon_sym_SLASH] = ACTIONS(646),
- [anon_sym_LT] = ACTIONS(181),
- [anon_sym_TILDE] = ACTIONS(622),
- [anon_sym_void] = ACTIONS(1012),
- [anon_sym_delete] = ACTIONS(650),
- [anon_sym_PLUS_PLUS] = ACTIONS(652),
- [anon_sym_DASH_DASH] = ACTIONS(652),
- [sym_comment] = ACTIONS(5),
- [anon_sym_BQUOTE] = ACTIONS(1014),
- [sym_number] = ACTIONS(1016),
- [sym_private_property_identifier] = ACTIONS(654),
- [sym_this] = ACTIONS(1018),
- [sym_super] = ACTIONS(200),
- [sym_true] = ACTIONS(1020),
- [sym_false] = ACTIONS(1020),
- [sym_null] = ACTIONS(1020),
- [sym_undefined] = ACTIONS(1022),
- [anon_sym_AT] = ACTIONS(99),
- [anon_sym_static] = ACTIONS(610),
- [anon_sym_readonly] = ACTIONS(1024),
- [anon_sym_get] = ACTIONS(610),
- [anon_sym_set] = ACTIONS(610),
- [anon_sym_QMARK] = ACTIONS(1026),
- [anon_sym_declare] = ACTIONS(610),
- [anon_sym_public] = ACTIONS(610),
- [anon_sym_private] = ACTIONS(610),
- [anon_sym_protected] = ACTIONS(610),
- [anon_sym_override] = ACTIONS(610),
- [anon_sym_module] = ACTIONS(610),
- [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_object] = ACTIONS(1028),
- [anon_sym_abstract] = ACTIONS(1030),
- [anon_sym_infer] = ACTIONS(1032),
- [anon_sym_keyof] = ACTIONS(1034),
- [anon_sym_unique] = ACTIONS(1036),
- [anon_sym_unknown] = ACTIONS(1038),
- [anon_sym_never] = ACTIONS(1038),
- [anon_sym_LBRACE_PIPE] = ACTIONS(1040),
- [sym_html_comment] = ACTIONS(5),
- },
- [142] = {
- [sym_import] = STATE(3334),
- [sym_parenthesized_expression] = STATE(1179),
- [sym_expression] = STATE(2415),
- [sym_primary_expression] = STATE(1430),
- [sym_yield_expression] = STATE(1634),
- [sym_object] = STATE(1650),
- [sym_object_pattern] = STATE(5854),
- [sym_array] = STATE(1650),
- [sym_array_pattern] = STATE(5854),
- [sym_glimmer_template] = STATE(1634),
- [sym_jsx_element] = STATE(1634),
- [sym_jsx_opening_element] = STATE(3026),
- [sym_jsx_self_closing_element] = STATE(1634),
- [sym_class] = STATE(1650),
- [sym_function_expression] = STATE(1650),
- [sym_generator_function] = STATE(1650),
- [sym_arrow_function] = STATE(1650),
- [sym__call_signature] = STATE(5619),
- [sym_call_expression] = STATE(1650),
- [sym_new_expression] = STATE(1634),
- [sym_await_expression] = STATE(1634),
- [sym_member_expression] = STATE(1179),
- [sym_subscript_expression] = STATE(1179),
- [sym_assignment_expression] = STATE(1634),
- [sym__augmented_assignment_lhs] = STATE(2878),
- [sym_augmented_assignment_expression] = STATE(1634),
- [sym__destructuring_pattern] = STATE(5854),
- [sym_ternary_expression] = STATE(1634),
- [sym_binary_expression] = STATE(1634),
- [sym_unary_expression] = STATE(1634),
- [sym_update_expression] = STATE(1634),
- [sym_string] = STATE(1650),
- [sym_template_string] = STATE(1650),
- [sym_regex] = STATE(1650),
- [sym_meta_property] = STATE(1650),
- [sym_decorator] = STATE(1244),
- [sym_formal_parameters] = STATE(3742),
- [sym_non_null_expression] = STATE(1179),
- [sym_as_expression] = STATE(1634),
- [sym_satisfies_expression] = STATE(1634),
- [sym_instantiation_expression] = STATE(1634),
- [sym_internal_module] = STATE(1634),
- [sym_type_parameters] = STATE(5349),
- [aux_sym_export_statement_repeat1] = STATE(4458),
- [sym_identifier] = ACTIONS(837),
- [anon_sym_export] = ACTIONS(839),
- [anon_sym_STAR] = ACTIONS(122),
- [anon_sym_type] = ACTIONS(839),
- [anon_sym_EQ] = ACTIONS(841),
- [anon_sym_as] = ACTIONS(122),
- [anon_sym_namespace] = ACTIONS(843),
- [anon_sym_LBRACE] = ACTIONS(845),
- [anon_sym_typeof] = ACTIONS(187),
- [anon_sym_import] = ACTIONS(133),
- [anon_sym_let] = ACTIONS(839),
- [anon_sym_BANG] = ACTIONS(187),
- [anon_sym_LPAREN] = ACTIONS(815),
- [anon_sym_await] = ACTIONS(142),
- [anon_sym_in] = ACTIONS(122),
- [anon_sym_yield] = ACTIONS(144),
- [anon_sym_LBRACK] = ACTIONS(849),
- [sym_glimmer_opening_tag] = ACTIONS(148),
- [anon_sym_GT] = ACTIONS(122),
- [anon_sym_DOT] = ACTIONS(819),
- [anon_sym_DQUOTE] = ACTIONS(150),
- [anon_sym_SQUOTE] = ACTIONS(152),
- [anon_sym_class] = ACTIONS(154),
- [anon_sym_async] = ACTIONS(851),
- [anon_sym_function] = ACTIONS(158),
- [anon_sym_EQ_GT] = ACTIONS(229),
- [anon_sym_QMARK_DOT] = ACTIONS(162),
- [anon_sym_new] = ACTIONS(853),
- [anon_sym_using] = ACTIONS(166),
- [anon_sym_PLUS_EQ] = ACTIONS(168),
- [anon_sym_DASH_EQ] = ACTIONS(168),
- [anon_sym_STAR_EQ] = ACTIONS(168),
- [anon_sym_SLASH_EQ] = ACTIONS(168),
- [anon_sym_PERCENT_EQ] = ACTIONS(168),
- [anon_sym_CARET_EQ] = ACTIONS(168),
- [anon_sym_AMP_EQ] = ACTIONS(168),
- [anon_sym_PIPE_EQ] = ACTIONS(168),
- [anon_sym_GT_GT_EQ] = ACTIONS(168),
- [anon_sym_GT_GT_GT_EQ] = ACTIONS(168),
- [anon_sym_LT_LT_EQ] = ACTIONS(168),
- [anon_sym_STAR_STAR_EQ] = ACTIONS(168),
- [anon_sym_AMP_AMP_EQ] = ACTIONS(168),
- [anon_sym_PIPE_PIPE_EQ] = ACTIONS(168),
- [anon_sym_QMARK_QMARK_EQ] = ACTIONS(168),
- [anon_sym_AMP_AMP] = ACTIONS(122),
- [anon_sym_PIPE_PIPE] = ACTIONS(122),
- [anon_sym_GT_GT] = ACTIONS(122),
- [anon_sym_GT_GT_GT] = ACTIONS(122),
- [anon_sym_LT_LT] = ACTIONS(122),
- [anon_sym_AMP] = ACTIONS(122),
- [anon_sym_CARET] = ACTIONS(122),
- [anon_sym_PIPE] = ACTIONS(122),
- [anon_sym_PLUS] = ACTIONS(187),
- [anon_sym_DASH] = ACTIONS(187),
- [anon_sym_SLASH] = ACTIONS(646),
- [anon_sym_PERCENT] = ACTIONS(122),
- [anon_sym_STAR_STAR] = ACTIONS(122),
- [anon_sym_LT] = ACTIONS(181),
- [anon_sym_LT_EQ] = ACTIONS(162),
- [anon_sym_EQ_EQ] = ACTIONS(122),
- [anon_sym_EQ_EQ_EQ] = ACTIONS(162),
- [anon_sym_BANG_EQ] = ACTIONS(122),
- [anon_sym_BANG_EQ_EQ] = ACTIONS(162),
- [anon_sym_GT_EQ] = ACTIONS(162),
- [anon_sym_QMARK_QMARK] = ACTIONS(122),
- [anon_sym_instanceof] = ACTIONS(122),
- [anon_sym_TILDE] = ACTIONS(183),
- [anon_sym_void] = ACTIONS(187),
- [anon_sym_delete] = ACTIONS(187),
- [anon_sym_PLUS_PLUS] = ACTIONS(719),
- [anon_sym_DASH_DASH] = ACTIONS(719),
- [sym_comment] = ACTIONS(5),
- [anon_sym_BQUOTE] = ACTIONS(825),
- [sym_number] = ACTIONS(787),
- [sym_private_property_identifier] = ACTIONS(196),
- [sym_this] = ACTIONS(200),
- [sym_super] = ACTIONS(200),
- [sym_true] = ACTIONS(200),
- [sym_false] = ACTIONS(200),
- [sym_null] = ACTIONS(200),
- [sym_undefined] = ACTIONS(827),
- [anon_sym_AT] = ACTIONS(99),
- [anon_sym_static] = ACTIONS(839),
- [anon_sym_readonly] = ACTIONS(839),
- [anon_sym_get] = ACTIONS(839),
- [anon_sym_set] = ACTIONS(839),
- [anon_sym_declare] = ACTIONS(839),
- [anon_sym_public] = ACTIONS(839),
- [anon_sym_private] = ACTIONS(839),
- [anon_sym_protected] = ACTIONS(839),
- [anon_sym_override] = ACTIONS(839),
- [anon_sym_module] = ACTIONS(839),
- [anon_sym_any] = ACTIONS(839),
- [anon_sym_number] = ACTIONS(839),
- [anon_sym_boolean] = ACTIONS(839),
- [anon_sym_string] = ACTIONS(839),
- [anon_sym_symbol] = ACTIONS(839),
- [anon_sym_object] = ACTIONS(839),
- [anon_sym_satisfies] = ACTIONS(122),
- [sym__ternary_qmark] = ACTIONS(162),
- [sym_html_comment] = ACTIONS(5),
- },
- [143] = {
- [sym_import] = STATE(3395),
- [sym_parenthesized_expression] = STATE(1251),
- [sym_expression] = STATE(1796),
- [sym_primary_expression] = STATE(1468),
- [sym_yield_expression] = STATE(1634),
- [sym_object] = STATE(1650),
- [sym_object_pattern] = STATE(5633),
- [sym_array] = STATE(1650),
- [sym_array_pattern] = STATE(5633),
- [sym_glimmer_template] = STATE(1634),
- [sym_jsx_element] = STATE(1634),
- [sym_jsx_opening_element] = STATE(3026),
- [sym_nested_identifier] = STATE(5707),
- [sym_jsx_self_closing_element] = STATE(1634),
- [sym_class] = STATE(1650),
- [sym_function_expression] = STATE(1650),
- [sym_generator_function] = STATE(1650),
- [sym_arrow_function] = STATE(1650),
- [sym__call_signature] = STATE(5828),
- [sym_call_expression] = STATE(1650),
- [sym_new_expression] = STATE(1634),
- [sym_await_expression] = STATE(1634),
- [sym_member_expression] = STATE(1251),
- [sym_subscript_expression] = STATE(1251),
- [sym_assignment_expression] = STATE(1634),
- [sym__augmented_assignment_lhs] = STATE(2900),
- [sym_augmented_assignment_expression] = STATE(1634),
- [sym__destructuring_pattern] = STATE(5633),
- [sym_ternary_expression] = STATE(1634),
- [sym_binary_expression] = STATE(1634),
- [sym_unary_expression] = STATE(1634),
- [sym_update_expression] = STATE(1634),
- [sym_sequence_expression] = STATE(5910),
- [sym_string] = STATE(2155),
- [sym_template_string] = STATE(1650),
- [sym_regex] = STATE(1650),
- [sym_meta_property] = STATE(1650),
- [sym_decorator] = STATE(1244),
- [sym_formal_parameters] = STATE(3952),
- [sym_non_null_expression] = STATE(1251),
- [sym_as_expression] = STATE(1634),
- [sym_satisfies_expression] = STATE(1634),
- [sym_instantiation_expression] = STATE(1634),
- [sym_internal_module] = STATE(1634),
- [sym_nested_type_identifier] = STATE(2828),
- [sym__type_query_member_expression_in_type_annotation] = STATE(2846),
- [sym__type_query_call_expression_in_type_annotation] = STATE(2850),
- [sym_type] = STATE(5076),
- [sym_constructor_type] = STATE(2896),
- [sym_primary_type] = STATE(4232),
- [sym_template_literal_type] = STATE(2885),
- [sym_infer_type] = STATE(4437),
- [sym_conditional_type] = STATE(2885),
- [sym_generic_type] = STATE(2885),
- [sym_type_query] = STATE(2885),
- [sym_index_type_query] = STATE(2885),
- [sym_lookup_type] = STATE(2885),
- [sym_literal_type] = STATE(2885),
- [sym__number] = STATE(2903),
- [sym_existential_type] = STATE(2885),
- [sym_flow_maybe_type] = STATE(2885),
- [sym_parenthesized_type] = STATE(2885),
- [sym_predefined_type] = STATE(2885),
- [sym_object_type] = STATE(2885),
- [sym_type_parameters] = STATE(5276),
- [sym_array_type] = STATE(2885),
- [sym_tuple_type] = STATE(2885),
- [sym_readonly_type] = STATE(2896),
- [sym_union_type] = STATE(2885),
- [sym_intersection_type] = STATE(2885),
- [sym_function_type] = STATE(2896),
- [aux_sym_export_statement_repeat1] = STATE(4458),
- [sym_identifier] = ACTIONS(1042),
- [anon_sym_export] = ACTIONS(1044),
- [anon_sym_STAR] = ACTIONS(612),
- [anon_sym_type] = ACTIONS(1044),
- [anon_sym_namespace] = ACTIONS(1046),
- [anon_sym_LBRACE] = ACTIONS(1048),
- [anon_sym_typeof] = ACTIONS(733),
- [anon_sym_import] = ACTIONS(133),
- [anon_sym_let] = ACTIONS(1044),
- [anon_sym_const] = ACTIONS(135),
- [anon_sym_BANG] = ACTIONS(622),
- [anon_sym_LPAREN] = ACTIONS(140),
- [anon_sym_await] = ACTIONS(624),
- [anon_sym_yield] = ACTIONS(626),
- [anon_sym_LBRACK] = ACTIONS(1050),
- [sym_glimmer_opening_tag] = ACTIONS(148),
- [anon_sym_DQUOTE] = ACTIONS(150),
- [anon_sym_SQUOTE] = ACTIONS(152),
- [anon_sym_class] = ACTIONS(154),
- [anon_sym_async] = ACTIONS(1052),
- [anon_sym_function] = ACTIONS(158),
- [anon_sym_new] = ACTIONS(1054),
- [anon_sym_using] = ACTIONS(636),
- [anon_sym_AMP] = ACTIONS(741),
- [anon_sym_PIPE] = ACTIONS(743),
- [anon_sym_PLUS] = ACTIONS(745),
- [anon_sym_DASH] = ACTIONS(745),
- [anon_sym_SLASH] = ACTIONS(646),
- [anon_sym_LT] = ACTIONS(181),
- [anon_sym_TILDE] = ACTIONS(622),
- [anon_sym_void] = ACTIONS(648),
- [anon_sym_delete] = ACTIONS(650),
- [anon_sym_PLUS_PLUS] = ACTIONS(652),
- [anon_sym_DASH_DASH] = ACTIONS(652),
- [sym_comment] = ACTIONS(5),
- [anon_sym_BQUOTE] = ACTIONS(747),
- [sym_number] = ACTIONS(749),
- [sym_private_property_identifier] = ACTIONS(654),
- [sym_this] = ACTIONS(1056),
- [sym_super] = ACTIONS(200),
- [sym_true] = ACTIONS(753),
- [sym_false] = ACTIONS(753),
- [sym_null] = ACTIONS(753),
- [sym_undefined] = ACTIONS(1058),
- [anon_sym_AT] = ACTIONS(99),
- [anon_sym_static] = ACTIONS(1044),
- [anon_sym_readonly] = ACTIONS(1060),
- [anon_sym_get] = ACTIONS(1044),
- [anon_sym_set] = ACTIONS(1044),
- [anon_sym_QMARK] = ACTIONS(761),
- [anon_sym_declare] = ACTIONS(1044),
- [anon_sym_public] = ACTIONS(1044),
- [anon_sym_private] = ACTIONS(1044),
- [anon_sym_protected] = ACTIONS(1044),
- [anon_sym_override] = ACTIONS(1044),
- [anon_sym_module] = ACTIONS(1044),
- [anon_sym_any] = ACTIONS(1062),
- [anon_sym_number] = ACTIONS(1062),
- [anon_sym_boolean] = ACTIONS(1062),
- [anon_sym_string] = ACTIONS(1062),
- [anon_sym_symbol] = ACTIONS(1062),
- [anon_sym_object] = ACTIONS(1062),
- [anon_sym_abstract] = ACTIONS(212),
- [anon_sym_infer] = ACTIONS(214),
- [anon_sym_keyof] = ACTIONS(216),
- [anon_sym_unique] = ACTIONS(218),
- [anon_sym_unknown] = ACTIONS(220),
- [anon_sym_never] = ACTIONS(220),
- [anon_sym_LBRACE_PIPE] = ACTIONS(222),
- [sym_html_comment] = ACTIONS(5),
- },
- [144] = {
- [sym_import] = STATE(3395),
- [sym_parenthesized_expression] = STATE(1251),
- [sym_expression] = STATE(1530),
- [sym_primary_expression] = STATE(1468),
- [sym_yield_expression] = STATE(1634),
- [sym_object] = STATE(1650),
- [sym_object_pattern] = STATE(5633),
- [sym_array] = STATE(1650),
- [sym_array_pattern] = STATE(5633),
- [sym_glimmer_template] = STATE(1634),
- [sym_jsx_element] = STATE(1634),
- [sym_jsx_opening_element] = STATE(3026),
- [sym_nested_identifier] = STATE(5707),
- [sym_jsx_self_closing_element] = STATE(1634),
- [sym_class] = STATE(1650),
- [sym_function_expression] = STATE(1650),
- [sym_generator_function] = STATE(1650),
- [sym_arrow_function] = STATE(1650),
- [sym__call_signature] = STATE(5828),
- [sym_call_expression] = STATE(1650),
- [sym_new_expression] = STATE(1634),
- [sym_await_expression] = STATE(1634),
- [sym_member_expression] = STATE(1251),
- [sym_subscript_expression] = STATE(1251),
- [sym_assignment_expression] = STATE(1634),
- [sym__augmented_assignment_lhs] = STATE(2900),
- [sym_augmented_assignment_expression] = STATE(1634),
- [sym__destructuring_pattern] = STATE(5633),
- [sym_ternary_expression] = STATE(1634),
- [sym_binary_expression] = STATE(1634),
- [sym_unary_expression] = STATE(1634),
- [sym_update_expression] = STATE(1634),
- [sym_string] = STATE(1668),
- [sym_template_string] = STATE(1650),
- [sym_regex] = STATE(1650),
- [sym_meta_property] = STATE(1650),
- [sym_decorator] = STATE(1244),
- [sym_formal_parameters] = STATE(3952),
- [sym_non_null_expression] = STATE(1251),
- [sym_as_expression] = STATE(1634),
- [sym_satisfies_expression] = STATE(1634),
- [sym_instantiation_expression] = STATE(1634),
- [sym_internal_module] = STATE(1634),
- [sym_nested_type_identifier] = STATE(2828),
- [sym__type_query_member_expression_in_type_annotation] = STATE(2846),
- [sym__type_query_call_expression_in_type_annotation] = STATE(2850),
- [sym_type] = STATE(3737),
- [sym_constructor_type] = STATE(2896),
- [sym_primary_type] = STATE(2897),
- [sym_template_literal_type] = STATE(2885),
- [sym_infer_type] = STATE(2896),
- [sym_conditional_type] = STATE(2885),
- [sym_generic_type] = STATE(2885),
- [sym_type_query] = STATE(2885),
- [sym_index_type_query] = STATE(2885),
- [sym_lookup_type] = STATE(2885),
- [sym_literal_type] = STATE(2885),
- [sym__number] = STATE(2903),
- [sym_existential_type] = STATE(2885),
- [sym_flow_maybe_type] = STATE(2885),
- [sym_parenthesized_type] = STATE(2885),
- [sym_predefined_type] = STATE(2885),
- [sym_object_type] = STATE(2885),
- [sym_type_parameters] = STATE(5276),
- [sym_array_type] = STATE(2885),
- [sym_tuple_type] = STATE(2885),
- [sym_readonly_type] = STATE(2896),
- [sym_union_type] = STATE(2885),
- [sym_intersection_type] = STATE(2885),
- [sym_function_type] = STATE(2896),
- [aux_sym_export_statement_repeat1] = STATE(4458),
- [sym_identifier] = ACTIONS(1064),
- [anon_sym_export] = ACTIONS(1044),
- [anon_sym_STAR] = ACTIONS(612),
- [anon_sym_type] = ACTIONS(1044),
- [anon_sym_namespace] = ACTIONS(1046),
- [anon_sym_LBRACE] = ACTIONS(1066),
- [anon_sym_typeof] = ACTIONS(1068),
- [anon_sym_import] = ACTIONS(133),
- [anon_sym_let] = ACTIONS(1044),
- [anon_sym_const] = ACTIONS(135),
- [anon_sym_BANG] = ACTIONS(622),
- [anon_sym_LPAREN] = ACTIONS(140),
- [anon_sym_await] = ACTIONS(624),
- [anon_sym_yield] = ACTIONS(626),
- [anon_sym_LBRACK] = ACTIONS(1070),
- [sym_glimmer_opening_tag] = ACTIONS(148),
- [anon_sym_DQUOTE] = ACTIONS(150),
- [anon_sym_SQUOTE] = ACTIONS(152),
- [anon_sym_class] = ACTIONS(154),
- [anon_sym_async] = ACTIONS(1052),
- [anon_sym_function] = ACTIONS(158),
- [anon_sym_new] = ACTIONS(1054),
- [anon_sym_using] = ACTIONS(636),
- [anon_sym_AMP] = ACTIONS(741),
- [anon_sym_PIPE] = ACTIONS(743),
- [anon_sym_PLUS] = ACTIONS(1072),
- [anon_sym_DASH] = ACTIONS(1072),
- [anon_sym_SLASH] = ACTIONS(646),
- [anon_sym_LT] = ACTIONS(181),
- [anon_sym_TILDE] = ACTIONS(622),
- [anon_sym_void] = ACTIONS(648),
- [anon_sym_delete] = ACTIONS(650),
- [anon_sym_PLUS_PLUS] = ACTIONS(652),
- [anon_sym_DASH_DASH] = ACTIONS(652),
- [sym_comment] = ACTIONS(5),
- [anon_sym_BQUOTE] = ACTIONS(1074),
- [sym_number] = ACTIONS(1076),
- [sym_private_property_identifier] = ACTIONS(654),
- [sym_this] = ACTIONS(1078),
- [sym_super] = ACTIONS(200),
- [sym_true] = ACTIONS(1080),
- [sym_false] = ACTIONS(1080),
- [sym_null] = ACTIONS(1080),
- [sym_undefined] = ACTIONS(1082),
- [anon_sym_AT] = ACTIONS(99),
- [anon_sym_static] = ACTIONS(1044),
- [anon_sym_readonly] = ACTIONS(1060),
- [anon_sym_get] = ACTIONS(1044),
- [anon_sym_set] = ACTIONS(1044),
- [anon_sym_QMARK] = ACTIONS(761),
- [anon_sym_declare] = ACTIONS(1044),
- [anon_sym_public] = ACTIONS(1044),
- [anon_sym_private] = ACTIONS(1044),
- [anon_sym_protected] = ACTIONS(1044),
- [anon_sym_override] = ACTIONS(1044),
- [anon_sym_module] = ACTIONS(1044),
- [anon_sym_any] = ACTIONS(1084),
- [anon_sym_number] = ACTIONS(1084),
- [anon_sym_boolean] = ACTIONS(1084),
- [anon_sym_string] = ACTIONS(1084),
- [anon_sym_symbol] = ACTIONS(1084),
- [anon_sym_object] = ACTIONS(1084),
- [anon_sym_abstract] = ACTIONS(212),
- [anon_sym_infer] = ACTIONS(214),
- [anon_sym_keyof] = ACTIONS(216),
- [anon_sym_unique] = ACTIONS(218),
- [anon_sym_unknown] = ACTIONS(220),
- [anon_sym_never] = ACTIONS(220),
- [anon_sym_LBRACE_PIPE] = ACTIONS(222),
- [sym_html_comment] = ACTIONS(5),
- },
- [145] = {
- [sym_import] = STATE(3445),
- [sym_parenthesized_expression] = STATE(1179),
- [sym_expression] = STATE(2434),
- [sym_primary_expression] = STATE(1468),
- [sym_yield_expression] = STATE(1634),
- [sym_object] = STATE(1650),
- [sym_object_pattern] = STATE(5854),
- [sym_array] = STATE(1650),
- [sym_array_pattern] = STATE(5854),
- [sym_glimmer_template] = STATE(1634),
- [sym_jsx_element] = STATE(1634),
- [sym_jsx_opening_element] = STATE(3026),
- [sym_nested_identifier] = STATE(5707),
- [sym_jsx_self_closing_element] = STATE(1634),
- [sym_class] = STATE(1650),
- [sym_function_expression] = STATE(1650),
- [sym_generator_function] = STATE(1650),
- [sym_arrow_function] = STATE(1650),
- [sym__call_signature] = STATE(5619),
- [sym_call_expression] = STATE(1650),
- [sym_new_expression] = STATE(1634),
- [sym_await_expression] = STATE(1634),
- [sym_member_expression] = STATE(1179),
- [sym_subscript_expression] = STATE(1179),
- [sym_assignment_expression] = STATE(1634),
- [sym__augmented_assignment_lhs] = STATE(2878),
- [sym_augmented_assignment_expression] = STATE(1634),
- [sym__destructuring_pattern] = STATE(5854),
- [sym_ternary_expression] = STATE(1634),
- [sym_binary_expression] = STATE(1634),
- [sym_unary_expression] = STATE(1634),
- [sym_update_expression] = STATE(1634),
- [sym_string] = STATE(1945),
- [sym_template_string] = STATE(1650),
- [sym_regex] = STATE(1650),
- [sym_meta_property] = STATE(1650),
- [sym_decorator] = STATE(1244),
- [sym_formal_parameters] = STATE(3952),
- [sym_non_null_expression] = STATE(1179),
- [sym_as_expression] = STATE(1634),
- [sym_satisfies_expression] = STATE(1634),
- [sym_instantiation_expression] = STATE(1634),
- [sym_internal_module] = STATE(1634),
- [sym_nested_type_identifier] = STATE(2828),
- [sym__type_query_member_expression_in_type_annotation] = STATE(2846),
- [sym__type_query_call_expression_in_type_annotation] = STATE(2850),
- [sym_type] = STATE(3737),
- [sym_constructor_type] = STATE(2896),
- [sym_primary_type] = STATE(2897),
- [sym_template_literal_type] = STATE(2885),
- [sym_infer_type] = STATE(2896),
- [sym_conditional_type] = STATE(2885),
- [sym_generic_type] = STATE(2885),
- [sym_type_query] = STATE(2885),
- [sym_index_type_query] = STATE(2885),
- [sym_lookup_type] = STATE(2885),
- [sym_literal_type] = STATE(2885),
- [sym__number] = STATE(2903),
- [sym_existential_type] = STATE(2885),
- [sym_flow_maybe_type] = STATE(2885),
- [sym_parenthesized_type] = STATE(2885),
- [sym_predefined_type] = STATE(2885),
- [sym_object_type] = STATE(2885),
- [sym_type_parameters] = STATE(5276),
- [sym_array_type] = STATE(2885),
- [sym_tuple_type] = STATE(2885),
- [sym_readonly_type] = STATE(2896),
- [sym_union_type] = STATE(2885),
- [sym_intersection_type] = STATE(2885),
- [sym_function_type] = STATE(2896),
- [aux_sym_export_statement_repeat1] = STATE(4458),
- [sym_identifier] = ACTIONS(1086),
- [anon_sym_export] = ACTIONS(839),
- [anon_sym_STAR] = ACTIONS(612),
- [anon_sym_type] = ACTIONS(839),
- [anon_sym_namespace] = ACTIONS(843),
- [anon_sym_LBRACE] = ACTIONS(1088),
- [anon_sym_typeof] = ACTIONS(1090),
- [anon_sym_import] = ACTIONS(133),
- [anon_sym_let] = ACTIONS(839),
- [anon_sym_const] = ACTIONS(135),
- [anon_sym_BANG] = ACTIONS(183),
- [anon_sym_LPAREN] = ACTIONS(140),
- [anon_sym_await] = ACTIONS(142),
- [anon_sym_yield] = ACTIONS(144),
- [anon_sym_LBRACK] = ACTIONS(1092),
- [sym_glimmer_opening_tag] = ACTIONS(148),
- [anon_sym_DQUOTE] = ACTIONS(150),
- [anon_sym_SQUOTE] = ACTIONS(152),
- [anon_sym_class] = ACTIONS(154),
- [anon_sym_async] = ACTIONS(851),
- [anon_sym_function] = ACTIONS(158),
- [anon_sym_new] = ACTIONS(1094),
- [anon_sym_using] = ACTIONS(166),
- [anon_sym_AMP] = ACTIONS(741),
- [anon_sym_PIPE] = ACTIONS(743),
- [anon_sym_PLUS] = ACTIONS(1096),
- [anon_sym_DASH] = ACTIONS(1096),
- [anon_sym_SLASH] = ACTIONS(646),
- [anon_sym_LT] = ACTIONS(181),
- [anon_sym_TILDE] = ACTIONS(183),
- [anon_sym_void] = ACTIONS(185),
- [anon_sym_delete] = ACTIONS(187),
- [anon_sym_PLUS_PLUS] = ACTIONS(719),
- [anon_sym_DASH_DASH] = ACTIONS(719),
- [sym_comment] = ACTIONS(5),
- [anon_sym_BQUOTE] = ACTIONS(1098),
- [sym_number] = ACTIONS(1100),
- [sym_private_property_identifier] = ACTIONS(196),
- [sym_this] = ACTIONS(1102),
- [sym_super] = ACTIONS(200),
- [sym_true] = ACTIONS(1104),
- [sym_false] = ACTIONS(1104),
- [sym_null] = ACTIONS(1104),
- [sym_undefined] = ACTIONS(1106),
- [anon_sym_AT] = ACTIONS(99),
- [anon_sym_static] = ACTIONS(839),
- [anon_sym_readonly] = ACTIONS(1108),
- [anon_sym_get] = ACTIONS(839),
- [anon_sym_set] = ACTIONS(839),
- [anon_sym_QMARK] = ACTIONS(761),
- [anon_sym_declare] = ACTIONS(839),
- [anon_sym_public] = ACTIONS(839),
- [anon_sym_private] = ACTIONS(839),
- [anon_sym_protected] = ACTIONS(839),
- [anon_sym_override] = ACTIONS(839),
- [anon_sym_module] = ACTIONS(839),
- [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_object] = ACTIONS(1110),
- [anon_sym_abstract] = ACTIONS(212),
- [anon_sym_infer] = ACTIONS(214),
- [anon_sym_keyof] = ACTIONS(216),
- [anon_sym_unique] = ACTIONS(218),
- [anon_sym_unknown] = ACTIONS(220),
- [anon_sym_never] = ACTIONS(220),
- [anon_sym_LBRACE_PIPE] = ACTIONS(222),
- [sym_html_comment] = ACTIONS(5),
- },
- [146] = {
- [sym_import] = STATE(3263),
- [sym_parenthesized_expression] = STATE(1369),
- [sym_expression] = STATE(2284),
- [sym_primary_expression] = STATE(1468),
- [sym_yield_expression] = STATE(1634),
- [sym_object] = STATE(1650),
- [sym_object_pattern] = STATE(5861),
- [sym_array] = STATE(1650),
- [sym_array_pattern] = STATE(5861),
- [sym_glimmer_template] = STATE(1634),
- [sym_jsx_element] = STATE(1634),
- [sym_jsx_opening_element] = STATE(3026),
- [sym_nested_identifier] = STATE(5707),
- [sym_jsx_self_closing_element] = STATE(1634),
- [sym_class] = STATE(1650),
- [sym_function_expression] = STATE(1650),
- [sym_generator_function] = STATE(1650),
- [sym_arrow_function] = STATE(1650),
- [sym__call_signature] = STATE(5765),
- [sym_call_expression] = STATE(1650),
- [sym_new_expression] = STATE(1634),
- [sym_await_expression] = STATE(1634),
- [sym_member_expression] = STATE(1369),
- [sym_subscript_expression] = STATE(1369),
- [sym_assignment_expression] = STATE(1634),
- [sym__augmented_assignment_lhs] = STATE(2891),
- [sym_augmented_assignment_expression] = STATE(1634),
- [sym__destructuring_pattern] = STATE(5861),
- [sym_ternary_expression] = STATE(1634),
- [sym_binary_expression] = STATE(1634),
- [sym_unary_expression] = STATE(1634),
- [sym_update_expression] = STATE(1634),
- [sym_string] = STATE(1945),
- [sym_template_string] = STATE(1650),
- [sym_regex] = STATE(1650),
- [sym_meta_property] = STATE(1650),
- [sym_decorator] = STATE(1244),
- [sym_formal_parameters] = STATE(3952),
- [sym_non_null_expression] = STATE(1369),
- [sym_as_expression] = STATE(1634),
- [sym_satisfies_expression] = STATE(1634),
- [sym_instantiation_expression] = STATE(1634),
- [sym_internal_module] = STATE(1634),
- [sym_nested_type_identifier] = STATE(2828),
- [sym__type_query_member_expression_in_type_annotation] = STATE(2846),
- [sym__type_query_call_expression_in_type_annotation] = STATE(2850),
- [sym_type] = STATE(3737),
- [sym_constructor_type] = STATE(2896),
- [sym_primary_type] = STATE(2897),
- [sym_template_literal_type] = STATE(2885),
- [sym_infer_type] = STATE(2896),
- [sym_conditional_type] = STATE(2885),
- [sym_generic_type] = STATE(2885),
- [sym_type_query] = STATE(2885),
- [sym_index_type_query] = STATE(2885),
- [sym_lookup_type] = STATE(2885),
- [sym_literal_type] = STATE(2885),
- [sym__number] = STATE(2903),
- [sym_existential_type] = STATE(2885),
- [sym_flow_maybe_type] = STATE(2885),
- [sym_parenthesized_type] = STATE(2885),
- [sym_predefined_type] = STATE(2885),
- [sym_object_type] = STATE(2885),
- [sym_type_parameters] = STATE(5276),
- [sym_array_type] = STATE(2885),
- [sym_tuple_type] = STATE(2885),
- [sym_readonly_type] = STATE(2896),
- [sym_union_type] = STATE(2885),
- [sym_intersection_type] = STATE(2885),
- [sym_function_type] = STATE(2896),
- [aux_sym_export_statement_repeat1] = STATE(4458),
- [sym_identifier] = ACTIONS(1112),
- [anon_sym_export] = ACTIONS(1114),
- [anon_sym_STAR] = ACTIONS(612),
- [anon_sym_type] = ACTIONS(1114),
- [anon_sym_namespace] = ACTIONS(1116),
- [anon_sym_LBRACE] = ACTIONS(1118),
- [anon_sym_typeof] = ACTIONS(1120),
- [anon_sym_import] = ACTIONS(133),
- [anon_sym_let] = ACTIONS(1114),
- [anon_sym_const] = ACTIONS(135),
- [anon_sym_BANG] = ACTIONS(1122),
- [anon_sym_LPAREN] = ACTIONS(140),
- [anon_sym_await] = ACTIONS(1124),
- [anon_sym_yield] = ACTIONS(1126),
- [anon_sym_LBRACK] = ACTIONS(1092),
- [sym_glimmer_opening_tag] = ACTIONS(148),
- [anon_sym_DQUOTE] = ACTIONS(150),
- [anon_sym_SQUOTE] = ACTIONS(152),
- [anon_sym_class] = ACTIONS(154),
- [anon_sym_async] = ACTIONS(1128),
- [anon_sym_function] = ACTIONS(158),
- [anon_sym_new] = ACTIONS(1130),
- [anon_sym_using] = ACTIONS(1132),
- [anon_sym_AMP] = ACTIONS(741),
- [anon_sym_PIPE] = ACTIONS(743),
- [anon_sym_PLUS] = ACTIONS(1134),
- [anon_sym_DASH] = ACTIONS(1134),
- [anon_sym_SLASH] = ACTIONS(646),
- [anon_sym_LT] = ACTIONS(181),
- [anon_sym_TILDE] = ACTIONS(1122),
- [anon_sym_void] = ACTIONS(1136),
- [anon_sym_delete] = ACTIONS(1138),
- [anon_sym_PLUS_PLUS] = ACTIONS(1140),
- [anon_sym_DASH_DASH] = ACTIONS(1140),
- [sym_comment] = ACTIONS(5),
- [anon_sym_BQUOTE] = ACTIONS(1098),
- [sym_number] = ACTIONS(1100),
- [sym_private_property_identifier] = ACTIONS(1142),
- [sym_this] = ACTIONS(1102),
- [sym_super] = ACTIONS(200),
- [sym_true] = ACTIONS(1104),
- [sym_false] = ACTIONS(1104),
- [sym_null] = ACTIONS(1104),
- [sym_undefined] = ACTIONS(1144),
- [anon_sym_AT] = ACTIONS(99),
- [anon_sym_static] = ACTIONS(1114),
- [anon_sym_readonly] = ACTIONS(1146),
- [anon_sym_get] = ACTIONS(1114),
- [anon_sym_set] = ACTIONS(1114),
- [anon_sym_QMARK] = ACTIONS(761),
- [anon_sym_declare] = ACTIONS(1114),
- [anon_sym_public] = ACTIONS(1114),
- [anon_sym_private] = ACTIONS(1114),
- [anon_sym_protected] = ACTIONS(1114),
- [anon_sym_override] = ACTIONS(1114),
- [anon_sym_module] = ACTIONS(1114),
- [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_object] = ACTIONS(1148),
- [anon_sym_abstract] = ACTIONS(212),
- [anon_sym_infer] = ACTIONS(214),
- [anon_sym_keyof] = ACTIONS(216),
- [anon_sym_unique] = ACTIONS(218),
- [anon_sym_unknown] = ACTIONS(220),
- [anon_sym_never] = ACTIONS(220),
- [anon_sym_LBRACE_PIPE] = ACTIONS(222),
- [sym_html_comment] = ACTIONS(5),
- },
- [147] = {
- [sym_import] = STATE(3259),
- [sym_parenthesized_expression] = STATE(1338),
- [sym_expression] = STATE(1990),
- [sym_primary_expression] = STATE(1946),
- [sym_yield_expression] = STATE(2234),
- [sym_object] = STATE(2310),
- [sym_object_pattern] = STATE(5571),
- [sym_array] = STATE(2310),
- [sym_array_pattern] = STATE(5571),
- [sym_glimmer_template] = STATE(2234),
- [sym_jsx_element] = STATE(2234),
- [sym_jsx_opening_element] = STATE(3051),
- [sym_nested_identifier] = STATE(5707),
- [sym_jsx_self_closing_element] = STATE(2234),
- [sym_class] = STATE(2310),
- [sym_function_expression] = STATE(2310),
- [sym_generator_function] = STATE(2310),
- [sym_arrow_function] = STATE(2310),
- [sym__call_signature] = STATE(5569),
- [sym_call_expression] = STATE(2310),
- [sym_new_expression] = STATE(2234),
- [sym_await_expression] = STATE(2234),
- [sym_member_expression] = STATE(1338),
- [sym_subscript_expression] = STATE(1338),
- [sym_assignment_expression] = STATE(2234),
- [sym__augmented_assignment_lhs] = STATE(2899),
- [sym_augmented_assignment_expression] = STATE(2234),
- [sym__destructuring_pattern] = STATE(5571),
- [sym_ternary_expression] = STATE(2234),
- [sym_binary_expression] = STATE(2234),
- [sym_unary_expression] = STATE(2234),
- [sym_update_expression] = STATE(2234),
- [sym_string] = STATE(2425),
- [sym_template_string] = STATE(2310),
- [sym_regex] = STATE(2310),
- [sym_meta_property] = STATE(2310),
- [sym_decorator] = STATE(1244),
- [sym_formal_parameters] = STATE(3952),
- [sym_non_null_expression] = STATE(1338),
- [sym_as_expression] = STATE(2234),
- [sym_satisfies_expression] = STATE(2234),
- [sym_instantiation_expression] = STATE(2234),
- [sym_internal_module] = STATE(2234),
- [sym_nested_type_identifier] = STATE(2828),
- [sym__type_query_member_expression_in_type_annotation] = STATE(2846),
- [sym__type_query_call_expression_in_type_annotation] = STATE(2850),
- [sym_type] = STATE(3906),
- [sym_constructor_type] = STATE(2896),
- [sym_primary_type] = STATE(2897),
- [sym_template_literal_type] = STATE(2885),
- [sym_infer_type] = STATE(2896),
- [sym_conditional_type] = STATE(2885),
- [sym_generic_type] = STATE(2885),
- [sym_type_query] = STATE(2885),
- [sym_index_type_query] = STATE(2885),
- [sym_lookup_type] = STATE(2885),
- [sym_literal_type] = STATE(2885),
- [sym__number] = STATE(2903),
- [sym_existential_type] = STATE(2885),
- [sym_flow_maybe_type] = STATE(2885),
- [sym_parenthesized_type] = STATE(2885),
- [sym_predefined_type] = STATE(2885),
- [sym_object_type] = STATE(2885),
- [sym_type_parameters] = STATE(5276),
- [sym_array_type] = STATE(2885),
- [sym_tuple_type] = STATE(2885),
- [sym_readonly_type] = STATE(2896),
- [sym_union_type] = STATE(2885),
- [sym_intersection_type] = STATE(2885),
- [sym_function_type] = STATE(2896),
- [aux_sym_export_statement_repeat1] = STATE(4499),
- [sym_identifier] = ACTIONS(1150),
- [anon_sym_export] = ACTIONS(1152),
- [anon_sym_STAR] = ACTIONS(612),
- [anon_sym_type] = ACTIONS(1152),
- [anon_sym_namespace] = ACTIONS(1154),
- [anon_sym_LBRACE] = ACTIONS(1156),
- [anon_sym_typeof] = ACTIONS(1158),
- [anon_sym_import] = ACTIONS(133),
- [anon_sym_let] = ACTIONS(1152),
- [anon_sym_const] = ACTIONS(135),
- [anon_sym_BANG] = ACTIONS(1160),
- [anon_sym_LPAREN] = ACTIONS(1162),
- [anon_sym_await] = ACTIONS(1164),
- [anon_sym_yield] = ACTIONS(1166),
- [anon_sym_LBRACK] = ACTIONS(1168),
- [sym_glimmer_opening_tag] = ACTIONS(67),
- [anon_sym_DQUOTE] = ACTIONS(69),
- [anon_sym_SQUOTE] = ACTIONS(71),
- [anon_sym_class] = ACTIONS(709),
- [anon_sym_async] = ACTIONS(1170),
- [anon_sym_function] = ACTIONS(713),
- [anon_sym_new] = ACTIONS(1172),
- [anon_sym_using] = ACTIONS(1174),
- [anon_sym_AMP] = ACTIONS(741),
- [anon_sym_PIPE] = ACTIONS(743),
- [anon_sym_PLUS] = ACTIONS(1176),
- [anon_sym_DASH] = ACTIONS(1176),
- [anon_sym_SLASH] = ACTIONS(83),
- [anon_sym_LT] = ACTIONS(85),
- [anon_sym_TILDE] = ACTIONS(1160),
- [anon_sym_void] = ACTIONS(1178),
- [anon_sym_delete] = ACTIONS(1180),
- [anon_sym_PLUS_PLUS] = ACTIONS(1182),
- [anon_sym_DASH_DASH] = ACTIONS(1182),
- [sym_comment] = ACTIONS(5),
- [anon_sym_BQUOTE] = ACTIONS(1184),
- [sym_number] = ACTIONS(1186),
- [sym_private_property_identifier] = ACTIONS(1188),
- [sym_this] = ACTIONS(1190),
- [sym_super] = ACTIONS(95),
- [sym_true] = ACTIONS(1192),
- [sym_false] = ACTIONS(1192),
- [sym_null] = ACTIONS(1192),
- [sym_undefined] = ACTIONS(1194),
- [anon_sym_AT] = ACTIONS(99),
- [anon_sym_static] = ACTIONS(1152),
- [anon_sym_readonly] = ACTIONS(1196),
- [anon_sym_get] = ACTIONS(1152),
- [anon_sym_set] = ACTIONS(1152),
- [anon_sym_QMARK] = ACTIONS(761),
- [anon_sym_declare] = ACTIONS(1152),
- [anon_sym_public] = ACTIONS(1152),
- [anon_sym_private] = ACTIONS(1152),
- [anon_sym_protected] = ACTIONS(1152),
- [anon_sym_override] = ACTIONS(1152),
- [anon_sym_module] = ACTIONS(1152),
- [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_object] = ACTIONS(1198),
- [anon_sym_abstract] = ACTIONS(212),
- [anon_sym_infer] = ACTIONS(214),
- [anon_sym_keyof] = ACTIONS(216),
- [anon_sym_unique] = ACTIONS(218),
- [anon_sym_unknown] = ACTIONS(220),
- [anon_sym_never] = ACTIONS(220),
- [anon_sym_LBRACE_PIPE] = ACTIONS(222),
- [sym_html_comment] = ACTIONS(5),
- },
- [148] = {
- [sym_import] = STATE(3303),
- [sym_parenthesized_expression] = STATE(1300),
- [sym_expression] = STATE(1659),
- [sym_primary_expression] = STATE(1946),
- [sym_yield_expression] = STATE(2234),
- [sym_object] = STATE(2310),
- [sym_object_pattern] = STATE(5831),
- [sym_array] = STATE(2310),
- [sym_array_pattern] = STATE(5831),
- [sym_glimmer_template] = STATE(2234),
- [sym_jsx_element] = STATE(2234),
- [sym_jsx_opening_element] = STATE(3051),
- [sym_nested_identifier] = STATE(5707),
- [sym_jsx_self_closing_element] = STATE(2234),
- [sym_class] = STATE(2310),
- [sym_function_expression] = STATE(2310),
- [sym_generator_function] = STATE(2310),
- [sym_arrow_function] = STATE(2310),
- [sym__call_signature] = STATE(5829),
- [sym_call_expression] = STATE(2310),
- [sym_new_expression] = STATE(2234),
- [sym_await_expression] = STATE(2234),
- [sym_member_expression] = STATE(1300),
- [sym_subscript_expression] = STATE(1300),
- [sym_assignment_expression] = STATE(2234),
- [sym__augmented_assignment_lhs] = STATE(2943),
- [sym_augmented_assignment_expression] = STATE(2234),
- [sym__destructuring_pattern] = STATE(5831),
- [sym_ternary_expression] = STATE(2234),
- [sym_binary_expression] = STATE(2234),
- [sym_unary_expression] = STATE(2234),
- [sym_update_expression] = STATE(2234),
- [sym_string] = STATE(1951),
- [sym_template_string] = STATE(2310),
- [sym_regex] = STATE(2310),
- [sym_meta_property] = STATE(2310),
- [sym_decorator] = STATE(1244),
- [sym_formal_parameters] = STATE(3952),
- [sym_non_null_expression] = STATE(1300),
- [sym_as_expression] = STATE(2234),
- [sym_satisfies_expression] = STATE(2234),
- [sym_instantiation_expression] = STATE(2234),
- [sym_internal_module] = STATE(2234),
- [sym_nested_type_identifier] = STATE(2828),
- [sym__type_query_member_expression_in_type_annotation] = STATE(2846),
- [sym__type_query_call_expression_in_type_annotation] = STATE(2850),
- [sym_type] = STATE(3906),
- [sym_constructor_type] = STATE(2896),
- [sym_primary_type] = STATE(2897),
- [sym_template_literal_type] = STATE(2885),
- [sym_infer_type] = STATE(2896),
- [sym_conditional_type] = STATE(2885),
- [sym_generic_type] = STATE(2885),
- [sym_type_query] = STATE(2885),
- [sym_index_type_query] = STATE(2885),
- [sym_lookup_type] = STATE(2885),
- [sym_literal_type] = STATE(2885),
- [sym__number] = STATE(2903),
- [sym_existential_type] = STATE(2885),
- [sym_flow_maybe_type] = STATE(2885),
- [sym_parenthesized_type] = STATE(2885),
- [sym_predefined_type] = STATE(2885),
- [sym_object_type] = STATE(2885),
- [sym_type_parameters] = STATE(5276),
- [sym_array_type] = STATE(2885),
- [sym_tuple_type] = STATE(2885),
- [sym_readonly_type] = STATE(2896),
- [sym_union_type] = STATE(2885),
- [sym_intersection_type] = STATE(2885),
- [sym_function_type] = STATE(2896),
- [aux_sym_export_statement_repeat1] = STATE(4499),
- [sym_identifier] = ACTIONS(1200),
- [anon_sym_export] = ACTIONS(1202),
- [anon_sym_STAR] = ACTIONS(612),
- [anon_sym_type] = ACTIONS(1202),
- [anon_sym_namespace] = ACTIONS(1204),
- [anon_sym_LBRACE] = ACTIONS(1206),
- [anon_sym_typeof] = ACTIONS(1208),
- [anon_sym_import] = ACTIONS(133),
- [anon_sym_let] = ACTIONS(1202),
- [anon_sym_const] = ACTIONS(135),
- [anon_sym_BANG] = ACTIONS(1210),
- [anon_sym_LPAREN] = ACTIONS(1162),
- [anon_sym_await] = ACTIONS(1212),
- [anon_sym_yield] = ACTIONS(1214),
- [anon_sym_LBRACK] = ACTIONS(1216),
- [sym_glimmer_opening_tag] = ACTIONS(67),
- [anon_sym_DQUOTE] = ACTIONS(69),
- [anon_sym_SQUOTE] = ACTIONS(71),
- [anon_sym_class] = ACTIONS(709),
- [anon_sym_async] = ACTIONS(1218),
- [anon_sym_function] = ACTIONS(713),
- [anon_sym_new] = ACTIONS(1220),
- [anon_sym_using] = ACTIONS(1222),
- [anon_sym_AMP] = ACTIONS(741),
- [anon_sym_PIPE] = ACTIONS(743),
- [anon_sym_PLUS] = ACTIONS(1224),
- [anon_sym_DASH] = ACTIONS(1224),
- [anon_sym_SLASH] = ACTIONS(882),
- [anon_sym_LT] = ACTIONS(85),
- [anon_sym_TILDE] = ACTIONS(1210),
- [anon_sym_void] = ACTIONS(1226),
- [anon_sym_delete] = ACTIONS(1228),
- [anon_sym_PLUS_PLUS] = ACTIONS(1230),
- [anon_sym_DASH_DASH] = ACTIONS(1230),
- [sym_comment] = ACTIONS(5),
- [anon_sym_BQUOTE] = ACTIONS(1232),
- [sym_number] = ACTIONS(1234),
- [sym_private_property_identifier] = ACTIONS(1236),
- [sym_this] = ACTIONS(1238),
- [sym_super] = ACTIONS(95),
- [sym_true] = ACTIONS(1240),
- [sym_false] = ACTIONS(1240),
- [sym_null] = ACTIONS(1240),
- [sym_undefined] = ACTIONS(1242),
- [anon_sym_AT] = ACTIONS(99),
- [anon_sym_static] = ACTIONS(1202),
- [anon_sym_readonly] = ACTIONS(1244),
- [anon_sym_get] = ACTIONS(1202),
- [anon_sym_set] = ACTIONS(1202),
- [anon_sym_QMARK] = ACTIONS(761),
- [anon_sym_declare] = ACTIONS(1202),
- [anon_sym_public] = ACTIONS(1202),
- [anon_sym_private] = ACTIONS(1202),
- [anon_sym_protected] = ACTIONS(1202),
- [anon_sym_override] = ACTIONS(1202),
- [anon_sym_module] = ACTIONS(1202),
- [anon_sym_any] = ACTIONS(1246),
- [anon_sym_number] = ACTIONS(1246),
- [anon_sym_boolean] = ACTIONS(1246),
- [anon_sym_string] = ACTIONS(1246),
- [anon_sym_symbol] = ACTIONS(1246),
- [anon_sym_object] = ACTIONS(1246),
- [anon_sym_abstract] = ACTIONS(212),
- [anon_sym_infer] = ACTIONS(214),
- [anon_sym_keyof] = ACTIONS(216),
- [anon_sym_unique] = ACTIONS(218),
- [anon_sym_unknown] = ACTIONS(220),
- [anon_sym_never] = ACTIONS(220),
- [anon_sym_LBRACE_PIPE] = ACTIONS(222),
- [sym_html_comment] = ACTIONS(5),
- },
- [149] = {
- [sym_import] = STATE(3445),
- [sym_parenthesized_expression] = STATE(1336),
- [sym_expression] = STATE(2056),
- [sym_primary_expression] = STATE(1468),
- [sym_yield_expression] = STATE(1634),
- [sym_object] = STATE(1650),
- [sym_object_pattern] = STATE(5745),
- [sym_array] = STATE(1650),
- [sym_array_pattern] = STATE(5745),
- [sym_glimmer_template] = STATE(1634),
- [sym_jsx_element] = STATE(1634),
- [sym_jsx_opening_element] = STATE(3026),
- [sym_nested_identifier] = STATE(5707),
- [sym_jsx_self_closing_element] = STATE(1634),
- [sym_class] = STATE(1650),
- [sym_function_expression] = STATE(1650),
- [sym_generator_function] = STATE(1650),
- [sym_arrow_function] = STATE(1650),
- [sym__call_signature] = STATE(5553),
- [sym_call_expression] = STATE(1650),
- [sym_new_expression] = STATE(1634),
- [sym_await_expression] = STATE(1634),
- [sym_member_expression] = STATE(1336),
- [sym_subscript_expression] = STATE(1336),
- [sym_assignment_expression] = STATE(1634),
- [sym__augmented_assignment_lhs] = STATE(2884),
- [sym_augmented_assignment_expression] = STATE(1634),
- [sym__destructuring_pattern] = STATE(5745),
- [sym_ternary_expression] = STATE(1634),
- [sym_binary_expression] = STATE(1634),
- [sym_unary_expression] = STATE(1634),
- [sym_update_expression] = STATE(1634),
- [sym_string] = STATE(1945),
- [sym_template_string] = STATE(1650),
- [sym_regex] = STATE(1650),
- [sym_meta_property] = STATE(1650),
- [sym_decorator] = STATE(1244),
- [sym_formal_parameters] = STATE(3952),
- [sym_non_null_expression] = STATE(1336),
- [sym_as_expression] = STATE(1634),
- [sym_satisfies_expression] = STATE(1634),
- [sym_instantiation_expression] = STATE(1634),
- [sym_internal_module] = STATE(1634),
- [sym_nested_type_identifier] = STATE(2828),
- [sym__type_query_member_expression_in_type_annotation] = STATE(2846),
- [sym__type_query_call_expression_in_type_annotation] = STATE(2850),
- [sym_type] = STATE(3737),
- [sym_constructor_type] = STATE(2896),
- [sym_primary_type] = STATE(2897),
- [sym_template_literal_type] = STATE(2885),
- [sym_infer_type] = STATE(2896),
- [sym_conditional_type] = STATE(2885),
- [sym_generic_type] = STATE(2885),
- [sym_type_query] = STATE(2885),
- [sym_index_type_query] = STATE(2885),
- [sym_lookup_type] = STATE(2885),
- [sym_literal_type] = STATE(2885),
- [sym__number] = STATE(2903),
- [sym_existential_type] = STATE(2885),
- [sym_flow_maybe_type] = STATE(2885),
- [sym_parenthesized_type] = STATE(2885),
- [sym_predefined_type] = STATE(2885),
- [sym_object_type] = STATE(2885),
- [sym_type_parameters] = STATE(5276),
- [sym_array_type] = STATE(2885),
- [sym_tuple_type] = STATE(2885),
- [sym_readonly_type] = STATE(2896),
- [sym_union_type] = STATE(2885),
- [sym_intersection_type] = STATE(2885),
- [sym_function_type] = STATE(2896),
- [aux_sym_export_statement_repeat1] = STATE(4458),
- [sym_identifier] = ACTIONS(1248),
- [anon_sym_export] = ACTIONS(1250),
- [anon_sym_STAR] = ACTIONS(612),
- [anon_sym_type] = ACTIONS(1250),
- [anon_sym_namespace] = ACTIONS(1252),
- [anon_sym_LBRACE] = ACTIONS(1118),
- [anon_sym_typeof] = ACTIONS(1254),
- [anon_sym_import] = ACTIONS(133),
- [anon_sym_let] = ACTIONS(1250),
- [anon_sym_const] = ACTIONS(135),
- [anon_sym_BANG] = ACTIONS(1256),
- [anon_sym_LPAREN] = ACTIONS(140),
- [anon_sym_await] = ACTIONS(1258),
- [anon_sym_yield] = ACTIONS(1260),
- [anon_sym_LBRACK] = ACTIONS(1092),
- [sym_glimmer_opening_tag] = ACTIONS(148),
- [anon_sym_DQUOTE] = ACTIONS(150),
- [anon_sym_SQUOTE] = ACTIONS(152),
- [anon_sym_class] = ACTIONS(154),
- [anon_sym_async] = ACTIONS(1262),
- [anon_sym_function] = ACTIONS(158),
- [anon_sym_new] = ACTIONS(1264),
- [anon_sym_using] = ACTIONS(1266),
- [anon_sym_AMP] = ACTIONS(741),
- [anon_sym_PIPE] = ACTIONS(743),
- [anon_sym_PLUS] = ACTIONS(1268),
- [anon_sym_DASH] = ACTIONS(1268),
- [anon_sym_SLASH] = ACTIONS(646),
- [anon_sym_LT] = ACTIONS(181),
- [anon_sym_TILDE] = ACTIONS(1256),
- [anon_sym_void] = ACTIONS(1270),
- [anon_sym_delete] = ACTIONS(1272),
- [anon_sym_PLUS_PLUS] = ACTIONS(1274),
- [anon_sym_DASH_DASH] = ACTIONS(1274),
- [sym_comment] = ACTIONS(5),
- [anon_sym_BQUOTE] = ACTIONS(1098),
- [sym_number] = ACTIONS(1100),
- [sym_private_property_identifier] = ACTIONS(1276),
- [sym_this] = ACTIONS(1102),
- [sym_super] = ACTIONS(200),
- [sym_true] = ACTIONS(1104),
- [sym_false] = ACTIONS(1104),
- [sym_null] = ACTIONS(1104),
- [sym_undefined] = ACTIONS(1278),
- [anon_sym_AT] = ACTIONS(99),
- [anon_sym_static] = ACTIONS(1250),
- [anon_sym_readonly] = ACTIONS(1280),
- [anon_sym_get] = ACTIONS(1250),
- [anon_sym_set] = ACTIONS(1250),
- [anon_sym_QMARK] = ACTIONS(761),
- [anon_sym_declare] = ACTIONS(1250),
- [anon_sym_public] = ACTIONS(1250),
- [anon_sym_private] = ACTIONS(1250),
- [anon_sym_protected] = ACTIONS(1250),
- [anon_sym_override] = ACTIONS(1250),
- [anon_sym_module] = ACTIONS(1250),
- [anon_sym_any] = ACTIONS(1282),
- [anon_sym_number] = ACTIONS(1282),
- [anon_sym_boolean] = ACTIONS(1282),
- [anon_sym_string] = ACTIONS(1282),
- [anon_sym_symbol] = ACTIONS(1282),
- [anon_sym_object] = ACTIONS(1282),
- [anon_sym_abstract] = ACTIONS(212),
- [anon_sym_infer] = ACTIONS(214),
- [anon_sym_keyof] = ACTIONS(216),
- [anon_sym_unique] = ACTIONS(218),
- [anon_sym_unknown] = ACTIONS(220),
- [anon_sym_never] = ACTIONS(220),
- [anon_sym_LBRACE_PIPE] = ACTIONS(222),
- [sym_html_comment] = ACTIONS(5),
- },
- [150] = {
- [sym_import] = STATE(3395),
- [sym_parenthesized_expression] = STATE(1327),
- [sym_expression] = STATE(1862),
- [sym_primary_expression] = STATE(1468),
- [sym_yield_expression] = STATE(1634),
- [sym_object] = STATE(1650),
- [sym_object_pattern] = STATE(5821),
- [sym_array] = STATE(1650),
- [sym_array_pattern] = STATE(5821),
- [sym_glimmer_template] = STATE(1634),
- [sym_jsx_element] = STATE(1634),
- [sym_jsx_opening_element] = STATE(3026),
- [sym_nested_identifier] = STATE(5707),
- [sym_jsx_self_closing_element] = STATE(1634),
- [sym_class] = STATE(1650),
- [sym_function_expression] = STATE(1650),
- [sym_generator_function] = STATE(1650),
- [sym_arrow_function] = STATE(1650),
- [sym__call_signature] = STATE(5743),
- [sym_call_expression] = STATE(1650),
- [sym_new_expression] = STATE(1634),
- [sym_await_expression] = STATE(1634),
- [sym_member_expression] = STATE(1327),
- [sym_subscript_expression] = STATE(1327),
- [sym_assignment_expression] = STATE(1634),
- [sym__augmented_assignment_lhs] = STATE(2919),
- [sym_augmented_assignment_expression] = STATE(1634),
- [sym__destructuring_pattern] = STATE(5821),
- [sym_ternary_expression] = STATE(1634),
- [sym_binary_expression] = STATE(1634),
- [sym_unary_expression] = STATE(1634),
- [sym_update_expression] = STATE(1634),
- [sym_string] = STATE(1668),
- [sym_template_string] = STATE(1650),
- [sym_regex] = STATE(1650),
- [sym_meta_property] = STATE(1650),
- [sym_decorator] = STATE(1244),
- [sym_formal_parameters] = STATE(3952),
- [sym_non_null_expression] = STATE(1327),
- [sym_as_expression] = STATE(1634),
- [sym_satisfies_expression] = STATE(1634),
- [sym_instantiation_expression] = STATE(1634),
- [sym_internal_module] = STATE(1634),
- [sym_nested_type_identifier] = STATE(2828),
- [sym__type_query_member_expression_in_type_annotation] = STATE(2846),
- [sym__type_query_call_expression_in_type_annotation] = STATE(2850),
- [sym_type] = STATE(3737),
- [sym_constructor_type] = STATE(2896),
- [sym_primary_type] = STATE(2897),
- [sym_template_literal_type] = STATE(2885),
- [sym_infer_type] = STATE(2896),
- [sym_conditional_type] = STATE(2885),
- [sym_generic_type] = STATE(2885),
- [sym_type_query] = STATE(2885),
- [sym_index_type_query] = STATE(2885),
- [sym_lookup_type] = STATE(2885),
- [sym_literal_type] = STATE(2885),
- [sym__number] = STATE(2903),
- [sym_existential_type] = STATE(2885),
- [sym_flow_maybe_type] = STATE(2885),
- [sym_parenthesized_type] = STATE(2885),
- [sym_predefined_type] = STATE(2885),
- [sym_object_type] = STATE(2885),
- [sym_type_parameters] = STATE(5276),
- [sym_array_type] = STATE(2885),
- [sym_tuple_type] = STATE(2885),
- [sym_readonly_type] = STATE(2896),
- [sym_union_type] = STATE(2885),
- [sym_intersection_type] = STATE(2885),
- [sym_function_type] = STATE(2896),
- [aux_sym_export_statement_repeat1] = STATE(4458),
- [sym_identifier] = ACTIONS(1284),
- [anon_sym_export] = ACTIONS(1286),
- [anon_sym_STAR] = ACTIONS(612),
- [anon_sym_type] = ACTIONS(1286),
- [anon_sym_namespace] = ACTIONS(1288),
- [anon_sym_LBRACE] = ACTIONS(1066),
- [anon_sym_typeof] = ACTIONS(1290),
- [anon_sym_import] = ACTIONS(133),
- [anon_sym_let] = ACTIONS(1286),
- [anon_sym_const] = ACTIONS(135),
- [anon_sym_BANG] = ACTIONS(1292),
- [anon_sym_LPAREN] = ACTIONS(140),
- [anon_sym_await] = ACTIONS(1294),
- [anon_sym_yield] = ACTIONS(1296),
- [anon_sym_LBRACK] = ACTIONS(1070),
- [sym_glimmer_opening_tag] = ACTIONS(148),
- [anon_sym_DQUOTE] = ACTIONS(150),
- [anon_sym_SQUOTE] = ACTIONS(152),
- [anon_sym_class] = ACTIONS(154),
- [anon_sym_async] = ACTIONS(1298),
- [anon_sym_function] = ACTIONS(158),
- [anon_sym_new] = ACTIONS(1300),
- [anon_sym_using] = ACTIONS(1302),
- [anon_sym_AMP] = ACTIONS(741),
- [anon_sym_PIPE] = ACTIONS(743),
- [anon_sym_PLUS] = ACTIONS(1304),
- [anon_sym_DASH] = ACTIONS(1304),
- [anon_sym_SLASH] = ACTIONS(922),
- [anon_sym_LT] = ACTIONS(181),
- [anon_sym_TILDE] = ACTIONS(1292),
- [anon_sym_void] = ACTIONS(1306),
- [anon_sym_delete] = ACTIONS(1308),
- [anon_sym_PLUS_PLUS] = ACTIONS(1310),
- [anon_sym_DASH_DASH] = ACTIONS(1310),
- [sym_comment] = ACTIONS(5),
- [anon_sym_BQUOTE] = ACTIONS(1074),
- [sym_number] = ACTIONS(1076),
- [sym_private_property_identifier] = ACTIONS(1312),
- [sym_this] = ACTIONS(1078),
- [sym_super] = ACTIONS(200),
- [sym_true] = ACTIONS(1080),
- [sym_false] = ACTIONS(1080),
- [sym_null] = ACTIONS(1080),
- [sym_undefined] = ACTIONS(1314),
- [anon_sym_AT] = ACTIONS(99),
- [anon_sym_static] = ACTIONS(1286),
- [anon_sym_readonly] = ACTIONS(1316),
- [anon_sym_get] = ACTIONS(1286),
- [anon_sym_set] = ACTIONS(1286),
- [anon_sym_QMARK] = ACTIONS(761),
- [anon_sym_declare] = ACTIONS(1286),
- [anon_sym_public] = ACTIONS(1286),
- [anon_sym_private] = ACTIONS(1286),
- [anon_sym_protected] = ACTIONS(1286),
- [anon_sym_override] = ACTIONS(1286),
- [anon_sym_module] = ACTIONS(1286),
- [anon_sym_any] = ACTIONS(1318),
- [anon_sym_number] = ACTIONS(1318),
- [anon_sym_boolean] = ACTIONS(1318),
- [anon_sym_string] = ACTIONS(1318),
- [anon_sym_symbol] = ACTIONS(1318),
- [anon_sym_object] = ACTIONS(1318),
- [anon_sym_abstract] = ACTIONS(212),
- [anon_sym_infer] = ACTIONS(214),
- [anon_sym_keyof] = ACTIONS(216),
- [anon_sym_unique] = ACTIONS(218),
- [anon_sym_unknown] = ACTIONS(220),
- [anon_sym_never] = ACTIONS(220),
- [anon_sym_LBRACE_PIPE] = ACTIONS(222),
- [sym_html_comment] = ACTIONS(5),
- },
- [151] = {
- [sym_import] = STATE(3445),
- [sym_parenthesized_expression] = STATE(1179),
- [sym_expression] = STATE(2415),
- [sym_primary_expression] = STATE(1468),
- [sym_yield_expression] = STATE(1634),
- [sym_object] = STATE(1650),
- [sym_object_pattern] = STATE(3606),
- [sym_array] = STATE(1650),
- [sym_array_pattern] = STATE(3606),
- [sym_glimmer_template] = STATE(1634),
- [sym_jsx_element] = STATE(1634),
- [sym_jsx_opening_element] = STATE(3026),
- [sym_nested_identifier] = STATE(5707),
- [sym_jsx_self_closing_element] = STATE(1634),
- [sym_class] = STATE(1650),
- [sym_function_expression] = STATE(1650),
- [sym_generator_function] = STATE(1650),
- [sym_arrow_function] = STATE(1650),
- [sym__call_signature] = STATE(5619),
- [sym_call_expression] = STATE(1650),
- [sym_new_expression] = STATE(1634),
- [sym_await_expression] = STATE(1634),
- [sym_member_expression] = STATE(1383),
- [sym_subscript_expression] = STATE(1383),
- [sym_assignment_expression] = STATE(1634),
- [sym__augmented_assignment_lhs] = STATE(2878),
- [sym_augmented_assignment_expression] = STATE(1634),
- [sym__destructuring_pattern] = STATE(3606),
- [sym_ternary_expression] = STATE(1634),
- [sym_binary_expression] = STATE(1634),
- [sym_unary_expression] = STATE(1634),
- [sym_update_expression] = STATE(1634),
- [sym_string] = STATE(2485),
- [sym_template_string] = STATE(1650),
- [sym_regex] = STATE(1650),
- [sym_meta_property] = STATE(1650),
- [sym_decorator] = STATE(1244),
- [sym_formal_parameters] = STATE(3952),
- [sym_non_null_expression] = STATE(1383),
- [sym_as_expression] = STATE(1634),
- [sym_satisfies_expression] = STATE(1634),
- [sym_instantiation_expression] = STATE(1634),
- [sym_internal_module] = STATE(1634),
- [sym_nested_type_identifier] = STATE(2828),
- [sym__type_query_member_expression_in_type_annotation] = STATE(2846),
- [sym__type_query_call_expression_in_type_annotation] = STATE(2850),
- [sym_type] = STATE(4227),
- [sym_constructor_type] = STATE(2896),
- [sym_primary_type] = STATE(2897),
- [sym_template_literal_type] = STATE(2885),
- [sym_infer_type] = STATE(2896),
- [sym_conditional_type] = STATE(2885),
- [sym_generic_type] = STATE(2885),
- [sym_type_query] = STATE(2885),
- [sym_index_type_query] = STATE(2885),
- [sym_lookup_type] = STATE(2885),
- [sym_literal_type] = STATE(2885),
- [sym__number] = STATE(2903),
- [sym_existential_type] = STATE(2885),
- [sym_flow_maybe_type] = STATE(2885),
- [sym_parenthesized_type] = STATE(2885),
- [sym_predefined_type] = STATE(2885),
- [sym_object_type] = STATE(2885),
- [sym_type_parameters] = STATE(5276),
- [sym_array_type] = STATE(2885),
- [sym_tuple_type] = STATE(2885),
- [sym_readonly_type] = STATE(2896),
- [sym_union_type] = STATE(2885),
- [sym_intersection_type] = STATE(2885),
- [sym_function_type] = STATE(2896),
- [aux_sym_export_statement_repeat1] = STATE(4458),
- [sym_identifier] = ACTIONS(1320),
- [anon_sym_export] = ACTIONS(1322),
- [anon_sym_STAR] = ACTIONS(612),
- [anon_sym_type] = ACTIONS(1322),
- [anon_sym_namespace] = ACTIONS(1324),
- [anon_sym_LBRACE] = ACTIONS(1326),
- [anon_sym_typeof] = ACTIONS(1328),
- [anon_sym_import] = ACTIONS(133),
- [anon_sym_let] = ACTIONS(1322),
- [anon_sym_const] = ACTIONS(135),
- [anon_sym_BANG] = ACTIONS(183),
- [anon_sym_LPAREN] = ACTIONS(140),
- [anon_sym_await] = ACTIONS(142),
- [anon_sym_yield] = ACTIONS(144),
- [anon_sym_LBRACK] = ACTIONS(1330),
- [sym_glimmer_opening_tag] = ACTIONS(148),
- [anon_sym_DQUOTE] = ACTIONS(150),
- [anon_sym_SQUOTE] = ACTIONS(152),
- [anon_sym_class] = ACTIONS(154),
- [anon_sym_async] = ACTIONS(1332),
- [anon_sym_function] = ACTIONS(158),
- [anon_sym_new] = ACTIONS(1334),
- [anon_sym_using] = ACTIONS(166),
- [anon_sym_AMP] = ACTIONS(741),
- [anon_sym_PIPE] = ACTIONS(743),
- [anon_sym_PLUS] = ACTIONS(1336),
- [anon_sym_DASH] = ACTIONS(1336),
- [anon_sym_SLASH] = ACTIONS(646),
- [anon_sym_LT] = ACTIONS(181),
- [anon_sym_TILDE] = ACTIONS(183),
- [anon_sym_void] = ACTIONS(185),
- [anon_sym_delete] = ACTIONS(187),
- [anon_sym_PLUS_PLUS] = ACTIONS(719),
- [anon_sym_DASH_DASH] = ACTIONS(719),
- [sym_comment] = ACTIONS(5),
- [anon_sym_BQUOTE] = ACTIONS(1338),
- [sym_number] = ACTIONS(1340),
- [sym_private_property_identifier] = ACTIONS(196),
- [sym_this] = ACTIONS(1342),
- [sym_super] = ACTIONS(200),
- [sym_true] = ACTIONS(1344),
- [sym_false] = ACTIONS(1344),
- [sym_null] = ACTIONS(1344),
- [sym_undefined] = ACTIONS(1346),
- [anon_sym_AT] = ACTIONS(99),
- [anon_sym_static] = ACTIONS(1322),
- [anon_sym_readonly] = ACTIONS(1348),
- [anon_sym_get] = ACTIONS(1322),
- [anon_sym_set] = ACTIONS(1322),
- [anon_sym_QMARK] = ACTIONS(761),
- [anon_sym_declare] = ACTIONS(1322),
- [anon_sym_public] = ACTIONS(1322),
- [anon_sym_private] = ACTIONS(1322),
- [anon_sym_protected] = ACTIONS(1322),
- [anon_sym_override] = ACTIONS(1322),
- [anon_sym_module] = ACTIONS(1322),
- [anon_sym_any] = ACTIONS(1350),
- [anon_sym_number] = ACTIONS(1350),
- [anon_sym_boolean] = ACTIONS(1350),
- [anon_sym_string] = ACTIONS(1350),
- [anon_sym_symbol] = ACTIONS(1350),
- [anon_sym_object] = ACTIONS(1350),
- [anon_sym_abstract] = ACTIONS(212),
- [anon_sym_infer] = ACTIONS(214),
- [anon_sym_keyof] = ACTIONS(216),
- [anon_sym_unique] = ACTIONS(218),
- [anon_sym_unknown] = ACTIONS(220),
- [anon_sym_never] = ACTIONS(220),
- [anon_sym_LBRACE_PIPE] = ACTIONS(222),
- [sym_html_comment] = ACTIONS(5),
- },
- [152] = {
- [sym_import] = STATE(3395),
- [sym_parenthesized_expression] = STATE(1251),
- [sym_expression] = STATE(1671),
- [sym_primary_expression] = STATE(1468),
- [sym_yield_expression] = STATE(1634),
- [sym_object] = STATE(1650),
- [sym_object_pattern] = STATE(4088),
- [sym_array] = STATE(1650),
- [sym_array_pattern] = STATE(4088),
- [sym_glimmer_template] = STATE(1634),
- [sym_jsx_element] = STATE(1634),
- [sym_jsx_opening_element] = STATE(3026),
- [sym_nested_identifier] = STATE(5707),
- [sym_jsx_self_closing_element] = STATE(1634),
- [sym_class] = STATE(1650),
- [sym_function_expression] = STATE(1650),
- [sym_generator_function] = STATE(1650),
- [sym_arrow_function] = STATE(1650),
- [sym__call_signature] = STATE(5828),
- [sym_call_expression] = STATE(1650),
- [sym_new_expression] = STATE(1634),
- [sym_await_expression] = STATE(1634),
- [sym_member_expression] = STATE(1301),
- [sym_subscript_expression] = STATE(1301),
- [sym_assignment_expression] = STATE(1634),
- [sym__augmented_assignment_lhs] = STATE(2900),
- [sym_augmented_assignment_expression] = STATE(1634),
- [sym__destructuring_pattern] = STATE(4088),
- [sym_ternary_expression] = STATE(1634),
- [sym_binary_expression] = STATE(1634),
- [sym_unary_expression] = STATE(1634),
- [sym_update_expression] = STATE(1634),
- [sym_string] = STATE(2271),
- [sym_template_string] = STATE(1650),
- [sym_regex] = STATE(1650),
- [sym_meta_property] = STATE(1650),
- [sym_decorator] = STATE(1244),
- [sym_formal_parameters] = STATE(3952),
- [sym_non_null_expression] = STATE(1301),
- [sym_as_expression] = STATE(1634),
- [sym_satisfies_expression] = STATE(1634),
- [sym_instantiation_expression] = STATE(1634),
- [sym_internal_module] = STATE(1634),
- [sym_nested_type_identifier] = STATE(2828),
- [sym__type_query_member_expression_in_type_annotation] = STATE(2846),
- [sym__type_query_call_expression_in_type_annotation] = STATE(2850),
- [sym_type] = STATE(4227),
- [sym_constructor_type] = STATE(2896),
- [sym_primary_type] = STATE(2897),
- [sym_template_literal_type] = STATE(2885),
- [sym_infer_type] = STATE(2896),
- [sym_conditional_type] = STATE(2885),
- [sym_generic_type] = STATE(2885),
- [sym_type_query] = STATE(2885),
- [sym_index_type_query] = STATE(2885),
- [sym_lookup_type] = STATE(2885),
- [sym_literal_type] = STATE(2885),
- [sym__number] = STATE(2903),
- [sym_existential_type] = STATE(2885),
- [sym_flow_maybe_type] = STATE(2885),
- [sym_parenthesized_type] = STATE(2885),
- [sym_predefined_type] = STATE(2885),
- [sym_object_type] = STATE(2885),
- [sym_type_parameters] = STATE(5276),
- [sym_array_type] = STATE(2885),
- [sym_tuple_type] = STATE(2885),
- [sym_readonly_type] = STATE(2896),
- [sym_union_type] = STATE(2885),
- [sym_intersection_type] = STATE(2885),
- [sym_function_type] = STATE(2896),
- [aux_sym_export_statement_repeat1] = STATE(4458),
- [sym_identifier] = ACTIONS(1352),
- [anon_sym_export] = ACTIONS(1354),
- [anon_sym_STAR] = ACTIONS(612),
- [anon_sym_type] = ACTIONS(1354),
- [anon_sym_namespace] = ACTIONS(1356),
- [anon_sym_LBRACE] = ACTIONS(1358),
- [anon_sym_typeof] = ACTIONS(620),
- [anon_sym_import] = ACTIONS(133),
- [anon_sym_let] = ACTIONS(1354),
- [anon_sym_const] = ACTIONS(135),
- [anon_sym_BANG] = ACTIONS(622),
- [anon_sym_LPAREN] = ACTIONS(140),
- [anon_sym_await] = ACTIONS(624),
- [anon_sym_yield] = ACTIONS(626),
- [anon_sym_LBRACK] = ACTIONS(628),
- [sym_glimmer_opening_tag] = ACTIONS(148),
- [anon_sym_DQUOTE] = ACTIONS(150),
- [anon_sym_SQUOTE] = ACTIONS(152),
- [anon_sym_class] = ACTIONS(154),
- [anon_sym_async] = ACTIONS(1360),
- [anon_sym_function] = ACTIONS(158),
- [anon_sym_new] = ACTIONS(1362),
- [anon_sym_using] = ACTIONS(636),
- [anon_sym_AMP] = ACTIONS(741),
- [anon_sym_PIPE] = ACTIONS(743),
- [anon_sym_PLUS] = ACTIONS(644),
- [anon_sym_DASH] = ACTIONS(644),
- [anon_sym_SLASH] = ACTIONS(646),
- [anon_sym_LT] = ACTIONS(181),
- [anon_sym_TILDE] = ACTIONS(622),
- [anon_sym_void] = ACTIONS(648),
- [anon_sym_delete] = ACTIONS(650),
- [anon_sym_PLUS_PLUS] = ACTIONS(652),
- [anon_sym_DASH_DASH] = ACTIONS(652),
- [sym_comment] = ACTIONS(5),
- [anon_sym_BQUOTE] = ACTIONS(192),
- [sym_number] = ACTIONS(194),
- [sym_private_property_identifier] = ACTIONS(654),
- [sym_this] = ACTIONS(656),
- [sym_super] = ACTIONS(200),
- [sym_true] = ACTIONS(202),
- [sym_false] = ACTIONS(202),
- [sym_null] = ACTIONS(202),
- [sym_undefined] = ACTIONS(1364),
- [anon_sym_AT] = ACTIONS(99),
- [anon_sym_static] = ACTIONS(1354),
- [anon_sym_readonly] = ACTIONS(1366),
- [anon_sym_get] = ACTIONS(1354),
- [anon_sym_set] = ACTIONS(1354),
- [anon_sym_QMARK] = ACTIONS(761),
- [anon_sym_declare] = ACTIONS(1354),
- [anon_sym_public] = ACTIONS(1354),
- [anon_sym_private] = ACTIONS(1354),
- [anon_sym_protected] = ACTIONS(1354),
- [anon_sym_override] = ACTIONS(1354),
- [anon_sym_module] = ACTIONS(1354),
- [anon_sym_any] = ACTIONS(1368),
- [anon_sym_number] = ACTIONS(1368),
- [anon_sym_boolean] = ACTIONS(1368),
- [anon_sym_string] = ACTIONS(1368),
- [anon_sym_symbol] = ACTIONS(1368),
- [anon_sym_object] = ACTIONS(1368),
- [anon_sym_abstract] = ACTIONS(212),
- [anon_sym_infer] = ACTIONS(214),
- [anon_sym_keyof] = ACTIONS(216),
- [anon_sym_unique] = ACTIONS(218),
- [anon_sym_unknown] = ACTIONS(220),
- [anon_sym_never] = ACTIONS(220),
- [anon_sym_LBRACE_PIPE] = ACTIONS(222),
- [sym_html_comment] = ACTIONS(5),
- },
- [153] = {
- [sym_import] = STATE(3303),
- [sym_parenthesized_expression] = STATE(1294),
- [sym_expression] = STATE(1741),
- [sym_primary_expression] = STATE(1946),
- [sym_yield_expression] = STATE(2234),
- [sym_object] = STATE(2310),
- [sym_object_pattern] = STATE(5667),
- [sym_array] = STATE(2310),
- [sym_array_pattern] = STATE(5667),
- [sym_glimmer_template] = STATE(2234),
- [sym_jsx_element] = STATE(2234),
- [sym_jsx_opening_element] = STATE(3051),
- [sym_nested_identifier] = STATE(5707),
- [sym_jsx_self_closing_element] = STATE(2234),
- [sym_class] = STATE(2310),
- [sym_function_expression] = STATE(2310),
- [sym_generator_function] = STATE(2310),
- [sym_arrow_function] = STATE(2310),
- [sym__call_signature] = STATE(5809),
- [sym_call_expression] = STATE(2310),
- [sym_new_expression] = STATE(2234),
- [sym_await_expression] = STATE(2234),
- [sym_member_expression] = STATE(1294),
- [sym_subscript_expression] = STATE(1294),
- [sym_assignment_expression] = STATE(2234),
- [sym__augmented_assignment_lhs] = STATE(2875),
- [sym_augmented_assignment_expression] = STATE(2234),
- [sym__destructuring_pattern] = STATE(5667),
- [sym_ternary_expression] = STATE(2234),
- [sym_binary_expression] = STATE(2234),
- [sym_unary_expression] = STATE(2234),
- [sym_update_expression] = STATE(2234),
- [sym_string] = STATE(1951),
- [sym_template_string] = STATE(2310),
- [sym_regex] = STATE(2310),
- [sym_meta_property] = STATE(2310),
- [sym_decorator] = STATE(1244),
- [sym_formal_parameters] = STATE(3952),
- [sym_non_null_expression] = STATE(1294),
- [sym_as_expression] = STATE(2234),
- [sym_satisfies_expression] = STATE(2234),
- [sym_instantiation_expression] = STATE(2234),
- [sym_internal_module] = STATE(2234),
- [sym_nested_type_identifier] = STATE(2828),
- [sym__type_query_member_expression_in_type_annotation] = STATE(2846),
- [sym__type_query_call_expression_in_type_annotation] = STATE(2850),
- [sym_type] = STATE(3906),
- [sym_constructor_type] = STATE(2896),
- [sym_primary_type] = STATE(2897),
- [sym_template_literal_type] = STATE(2885),
- [sym_infer_type] = STATE(2896),
- [sym_conditional_type] = STATE(2885),
- [sym_generic_type] = STATE(2885),
- [sym_type_query] = STATE(2885),
- [sym_index_type_query] = STATE(2885),
- [sym_lookup_type] = STATE(2885),
- [sym_literal_type] = STATE(2885),
- [sym__number] = STATE(2903),
- [sym_existential_type] = STATE(2885),
- [sym_flow_maybe_type] = STATE(2885),
- [sym_parenthesized_type] = STATE(2885),
- [sym_predefined_type] = STATE(2885),
- [sym_object_type] = STATE(2885),
- [sym_type_parameters] = STATE(5276),
- [sym_array_type] = STATE(2885),
- [sym_tuple_type] = STATE(2885),
- [sym_readonly_type] = STATE(2896),
- [sym_union_type] = STATE(2885),
- [sym_intersection_type] = STATE(2885),
- [sym_function_type] = STATE(2896),
- [aux_sym_export_statement_repeat1] = STATE(4499),
- [sym_identifier] = ACTIONS(1370),
- [anon_sym_export] = ACTIONS(1372),
- [anon_sym_STAR] = ACTIONS(612),
- [anon_sym_type] = ACTIONS(1372),
- [anon_sym_namespace] = ACTIONS(1374),
- [anon_sym_LBRACE] = ACTIONS(1206),
- [anon_sym_typeof] = ACTIONS(1376),
- [anon_sym_import] = ACTIONS(133),
- [anon_sym_let] = ACTIONS(1372),
- [anon_sym_const] = ACTIONS(135),
- [anon_sym_BANG] = ACTIONS(33),
- [anon_sym_LPAREN] = ACTIONS(1162),
- [anon_sym_await] = ACTIONS(43),
- [anon_sym_yield] = ACTIONS(63),
- [anon_sym_LBRACK] = ACTIONS(1216),
- [sym_glimmer_opening_tag] = ACTIONS(67),
- [anon_sym_DQUOTE] = ACTIONS(69),
- [anon_sym_SQUOTE] = ACTIONS(71),
- [anon_sym_class] = ACTIONS(709),
- [anon_sym_async] = ACTIONS(1378),
- [anon_sym_function] = ACTIONS(713),
- [anon_sym_new] = ACTIONS(1380),
- [anon_sym_using] = ACTIONS(81),
- [anon_sym_AMP] = ACTIONS(741),
- [anon_sym_PIPE] = ACTIONS(743),
- [anon_sym_PLUS] = ACTIONS(1382),
- [anon_sym_DASH] = ACTIONS(1382),
- [anon_sym_SLASH] = ACTIONS(83),
- [anon_sym_LT] = ACTIONS(85),
- [anon_sym_TILDE] = ACTIONS(33),
- [anon_sym_void] = ACTIONS(1384),
- [anon_sym_delete] = ACTIONS(21),
- [anon_sym_PLUS_PLUS] = ACTIONS(87),
- [anon_sym_DASH_DASH] = ACTIONS(87),
- [sym_comment] = ACTIONS(5),
- [anon_sym_BQUOTE] = ACTIONS(1232),
- [sym_number] = ACTIONS(1234),
- [sym_private_property_identifier] = ACTIONS(93),
- [sym_this] = ACTIONS(1238),
- [sym_super] = ACTIONS(95),
- [sym_true] = ACTIONS(1240),
- [sym_false] = ACTIONS(1240),
- [sym_null] = ACTIONS(1240),
- [sym_undefined] = ACTIONS(1386),
- [anon_sym_AT] = ACTIONS(99),
- [anon_sym_static] = ACTIONS(1372),
- [anon_sym_readonly] = ACTIONS(1388),
- [anon_sym_get] = ACTIONS(1372),
- [anon_sym_set] = ACTIONS(1372),
- [anon_sym_QMARK] = ACTIONS(761),
- [anon_sym_declare] = ACTIONS(1372),
- [anon_sym_public] = ACTIONS(1372),
- [anon_sym_private] = ACTIONS(1372),
- [anon_sym_protected] = ACTIONS(1372),
- [anon_sym_override] = ACTIONS(1372),
- [anon_sym_module] = ACTIONS(1372),
- [anon_sym_any] = ACTIONS(1390),
- [anon_sym_number] = ACTIONS(1390),
- [anon_sym_boolean] = ACTIONS(1390),
- [anon_sym_string] = ACTIONS(1390),
- [anon_sym_symbol] = ACTIONS(1390),
- [anon_sym_object] = ACTIONS(1390),
- [anon_sym_abstract] = ACTIONS(212),
- [anon_sym_infer] = ACTIONS(214),
- [anon_sym_keyof] = ACTIONS(216),
- [anon_sym_unique] = ACTIONS(218),
- [anon_sym_unknown] = ACTIONS(220),
- [anon_sym_never] = ACTIONS(220),
- [anon_sym_LBRACE_PIPE] = ACTIONS(222),
- [sym_html_comment] = ACTIONS(5),
- },
- [154] = {
- [sym_import] = STATE(3445),
- [sym_parenthesized_expression] = STATE(1345),
- [sym_expression] = STATE(2351),
- [sym_primary_expression] = STATE(1468),
- [sym_yield_expression] = STATE(1634),
- [sym_object] = STATE(1650),
- [sym_object_pattern] = STATE(5872),
- [sym_array] = STATE(1650),
- [sym_array_pattern] = STATE(5872),
- [sym_glimmer_template] = STATE(1634),
- [sym_jsx_element] = STATE(1634),
- [sym_jsx_opening_element] = STATE(3026),
- [sym_nested_identifier] = STATE(5707),
- [sym_jsx_self_closing_element] = STATE(1634),
- [sym_class] = STATE(1650),
- [sym_function_expression] = STATE(1650),
- [sym_generator_function] = STATE(1650),
- [sym_arrow_function] = STATE(1650),
- [sym__call_signature] = STATE(5904),
- [sym_call_expression] = STATE(1650),
- [sym_new_expression] = STATE(1634),
- [sym_await_expression] = STATE(1634),
- [sym_member_expression] = STATE(1345),
- [sym_subscript_expression] = STATE(1345),
- [sym_assignment_expression] = STATE(1634),
- [sym__augmented_assignment_lhs] = STATE(2898),
- [sym_augmented_assignment_expression] = STATE(1634),
- [sym__destructuring_pattern] = STATE(5872),
- [sym_ternary_expression] = STATE(1634),
- [sym_binary_expression] = STATE(1634),
- [sym_unary_expression] = STATE(1634),
- [sym_update_expression] = STATE(1634),
- [sym_string] = STATE(1945),
- [sym_template_string] = STATE(1650),
- [sym_regex] = STATE(1650),
- [sym_meta_property] = STATE(1650),
- [sym_decorator] = STATE(1244),
- [sym_formal_parameters] = STATE(3952),
- [sym_non_null_expression] = STATE(1345),
- [sym_as_expression] = STATE(1634),
- [sym_satisfies_expression] = STATE(1634),
- [sym_instantiation_expression] = STATE(1634),
- [sym_internal_module] = STATE(1634),
- [sym_nested_type_identifier] = STATE(2828),
- [sym__type_query_member_expression_in_type_annotation] = STATE(2846),
- [sym__type_query_call_expression_in_type_annotation] = STATE(2850),
- [sym_type] = STATE(3737),
- [sym_constructor_type] = STATE(2896),
- [sym_primary_type] = STATE(2897),
- [sym_template_literal_type] = STATE(2885),
- [sym_infer_type] = STATE(2896),
- [sym_conditional_type] = STATE(2885),
- [sym_generic_type] = STATE(2885),
- [sym_type_query] = STATE(2885),
- [sym_index_type_query] = STATE(2885),
- [sym_lookup_type] = STATE(2885),
- [sym_literal_type] = STATE(2885),
- [sym__number] = STATE(2903),
- [sym_existential_type] = STATE(2885),
- [sym_flow_maybe_type] = STATE(2885),
- [sym_parenthesized_type] = STATE(2885),
- [sym_predefined_type] = STATE(2885),
- [sym_object_type] = STATE(2885),
- [sym_type_parameters] = STATE(5276),
- [sym_array_type] = STATE(2885),
- [sym_tuple_type] = STATE(2885),
- [sym_readonly_type] = STATE(2896),
- [sym_union_type] = STATE(2885),
- [sym_intersection_type] = STATE(2885),
- [sym_function_type] = STATE(2896),
- [aux_sym_export_statement_repeat1] = STATE(4458),
- [sym_identifier] = ACTIONS(1392),
- [anon_sym_export] = ACTIONS(1394),
- [anon_sym_STAR] = ACTIONS(612),
- [anon_sym_type] = ACTIONS(1394),
- [anon_sym_namespace] = ACTIONS(1396),
- [anon_sym_LBRACE] = ACTIONS(1088),
- [anon_sym_typeof] = ACTIONS(1398),
- [anon_sym_import] = ACTIONS(133),
- [anon_sym_let] = ACTIONS(1394),
- [anon_sym_const] = ACTIONS(135),
- [anon_sym_BANG] = ACTIONS(1400),
- [anon_sym_LPAREN] = ACTIONS(140),
- [anon_sym_await] = ACTIONS(1402),
- [anon_sym_yield] = ACTIONS(1404),
- [anon_sym_LBRACK] = ACTIONS(1092),
- [sym_glimmer_opening_tag] = ACTIONS(148),
- [anon_sym_DQUOTE] = ACTIONS(150),
- [anon_sym_SQUOTE] = ACTIONS(152),
- [anon_sym_class] = ACTIONS(154),
- [anon_sym_async] = ACTIONS(1406),
- [anon_sym_function] = ACTIONS(158),
- [anon_sym_new] = ACTIONS(1408),
- [anon_sym_using] = ACTIONS(1410),
- [anon_sym_AMP] = ACTIONS(741),
- [anon_sym_PIPE] = ACTIONS(743),
- [anon_sym_PLUS] = ACTIONS(1412),
- [anon_sym_DASH] = ACTIONS(1412),
- [anon_sym_SLASH] = ACTIONS(970),
- [anon_sym_LT] = ACTIONS(181),
- [anon_sym_TILDE] = ACTIONS(1400),
- [anon_sym_void] = ACTIONS(1414),
- [anon_sym_delete] = ACTIONS(1416),
- [anon_sym_PLUS_PLUS] = ACTIONS(1418),
- [anon_sym_DASH_DASH] = ACTIONS(1418),
- [sym_comment] = ACTIONS(5),
- [anon_sym_BQUOTE] = ACTIONS(1098),
- [sym_number] = ACTIONS(1100),
- [sym_private_property_identifier] = ACTIONS(1420),
- [sym_this] = ACTIONS(1102),
- [sym_super] = ACTIONS(200),
- [sym_true] = ACTIONS(1104),
- [sym_false] = ACTIONS(1104),
- [sym_null] = ACTIONS(1104),
- [sym_undefined] = ACTIONS(1422),
- [anon_sym_AT] = ACTIONS(99),
- [anon_sym_static] = ACTIONS(1394),
- [anon_sym_readonly] = ACTIONS(1424),
- [anon_sym_get] = ACTIONS(1394),
- [anon_sym_set] = ACTIONS(1394),
- [anon_sym_QMARK] = ACTIONS(761),
- [anon_sym_declare] = ACTIONS(1394),
- [anon_sym_public] = ACTIONS(1394),
- [anon_sym_private] = ACTIONS(1394),
- [anon_sym_protected] = ACTIONS(1394),
- [anon_sym_override] = ACTIONS(1394),
- [anon_sym_module] = ACTIONS(1394),
- [anon_sym_any] = ACTIONS(1426),
- [anon_sym_number] = ACTIONS(1426),
- [anon_sym_boolean] = ACTIONS(1426),
- [anon_sym_string] = ACTIONS(1426),
- [anon_sym_symbol] = ACTIONS(1426),
- [anon_sym_object] = ACTIONS(1426),
- [anon_sym_abstract] = ACTIONS(212),
- [anon_sym_infer] = ACTIONS(214),
- [anon_sym_keyof] = ACTIONS(216),
- [anon_sym_unique] = ACTIONS(218),
- [anon_sym_unknown] = ACTIONS(220),
- [anon_sym_never] = ACTIONS(220),
- [anon_sym_LBRACE_PIPE] = ACTIONS(222),
- [sym_html_comment] = ACTIONS(5),
- },
- [155] = {
- [sym_import] = STATE(3334),
- [sym_parenthesized_expression] = STATE(1251),
- [sym_expression] = STATE(1490),
- [sym_primary_expression] = STATE(1468),
- [sym_yield_expression] = STATE(1634),
- [sym_object] = STATE(1650),
- [sym_object_pattern] = STATE(5633),
- [sym_array] = STATE(1650),
- [sym_array_pattern] = STATE(5633),
- [sym_glimmer_template] = STATE(1634),
- [sym_jsx_element] = STATE(1634),
- [sym_jsx_opening_element] = STATE(3026),
- [sym_jsx_self_closing_element] = STATE(1634),
- [sym_class] = STATE(1650),
- [sym_function_expression] = STATE(1650),
- [sym_generator_function] = STATE(1650),
- [sym_arrow_function] = STATE(1650),
- [sym__call_signature] = STATE(5828),
- [sym_call_expression] = STATE(1650),
- [sym_new_expression] = STATE(1634),
- [sym_await_expression] = STATE(1634),
- [sym_member_expression] = STATE(1251),
- [sym_subscript_expression] = STATE(1251),
- [sym_assignment_expression] = STATE(1634),
- [sym__augmented_assignment_lhs] = STATE(2900),
- [sym_augmented_assignment_expression] = STATE(1634),
- [sym__destructuring_pattern] = STATE(5633),
- [sym_ternary_expression] = STATE(1634),
- [sym_binary_expression] = STATE(1634),
- [sym_unary_expression] = STATE(1634),
- [sym_update_expression] = STATE(1634),
- [sym_string] = STATE(1650),
- [sym_template_string] = STATE(1650),
- [sym_regex] = STATE(1650),
- [sym_meta_property] = STATE(1650),
- [sym_decorator] = STATE(1244),
- [sym_formal_parameters] = STATE(3742),
- [sym_non_null_expression] = STATE(1251),
- [sym_as_expression] = STATE(1634),
- [sym_satisfies_expression] = STATE(1634),
- [sym_instantiation_expression] = STATE(1634),
- [sym_internal_module] = STATE(1634),
- [sym_type_parameters] = STATE(5349),
- [aux_sym_export_statement_repeat1] = STATE(4458),
- [sym_identifier] = ACTIONS(1428),
- [anon_sym_export] = ACTIONS(1044),
- [anon_sym_STAR] = ACTIONS(1430),
- [anon_sym_type] = ACTIONS(1044),
- [anon_sym_as] = ACTIONS(1432),
- [anon_sym_namespace] = ACTIONS(1046),
- [anon_sym_LBRACE] = ACTIONS(813),
- [anon_sym_COMMA] = ACTIONS(1434),
- [anon_sym_RBRACE] = ACTIONS(1434),
- [anon_sym_typeof] = ACTIONS(650),
- [anon_sym_import] = ACTIONS(133),
- [anon_sym_let] = ACTIONS(1044),
- [anon_sym_BANG] = ACTIONS(650),
- [anon_sym_LPAREN] = ACTIONS(815),
- [anon_sym_RPAREN] = ACTIONS(1434),
- [anon_sym_await] = ACTIONS(624),
- [anon_sym_in] = ACTIONS(1432),
- [anon_sym_COLON] = ACTIONS(1434),
- [anon_sym_yield] = ACTIONS(626),
- [anon_sym_LBRACK] = ACTIONS(817),
- [anon_sym_RBRACK] = ACTIONS(1434),
- [sym_glimmer_opening_tag] = ACTIONS(148),
- [anon_sym_GT] = ACTIONS(1432),
- [anon_sym_DOT] = ACTIONS(1432),
- [anon_sym_DQUOTE] = ACTIONS(150),
- [anon_sym_SQUOTE] = ACTIONS(152),
- [anon_sym_class] = ACTIONS(154),
- [anon_sym_async] = ACTIONS(1052),
- [anon_sym_function] = ACTIONS(158),
- [anon_sym_QMARK_DOT] = ACTIONS(1434),
- [anon_sym_new] = ACTIONS(1436),
- [anon_sym_using] = ACTIONS(636),
- [anon_sym_AMP_AMP] = ACTIONS(1434),
- [anon_sym_PIPE_PIPE] = ACTIONS(1434),
- [anon_sym_GT_GT] = ACTIONS(1432),
- [anon_sym_GT_GT_GT] = ACTIONS(1434),
- [anon_sym_LT_LT] = ACTIONS(1434),
- [anon_sym_AMP] = ACTIONS(1432),
- [anon_sym_CARET] = ACTIONS(1434),
- [anon_sym_PIPE] = ACTIONS(1432),
- [anon_sym_PLUS] = ACTIONS(650),
- [anon_sym_DASH] = ACTIONS(650),
- [anon_sym_SLASH] = ACTIONS(646),
- [anon_sym_PERCENT] = ACTIONS(1434),
- [anon_sym_STAR_STAR] = ACTIONS(1434),
- [anon_sym_LT] = ACTIONS(181),
- [anon_sym_LT_EQ] = ACTIONS(1434),
- [anon_sym_EQ_EQ] = ACTIONS(1432),
- [anon_sym_EQ_EQ_EQ] = ACTIONS(1434),
- [anon_sym_BANG_EQ] = ACTIONS(1432),
- [anon_sym_BANG_EQ_EQ] = ACTIONS(1434),
- [anon_sym_GT_EQ] = ACTIONS(1434),
- [anon_sym_QMARK_QMARK] = ACTIONS(1434),
- [anon_sym_instanceof] = ACTIONS(1432),
- [anon_sym_TILDE] = ACTIONS(622),
- [anon_sym_void] = ACTIONS(650),
- [anon_sym_delete] = ACTIONS(650),
- [anon_sym_PLUS_PLUS] = ACTIONS(652),
- [anon_sym_DASH_DASH] = ACTIONS(652),
- [sym_comment] = ACTIONS(5),
- [anon_sym_BQUOTE] = ACTIONS(825),
- [sym_number] = ACTIONS(787),
- [sym_private_property_identifier] = ACTIONS(654),
- [sym_this] = ACTIONS(200),
- [sym_super] = ACTIONS(200),
- [sym_true] = ACTIONS(200),
- [sym_false] = ACTIONS(200),
- [sym_null] = ACTIONS(200),
- [sym_undefined] = ACTIONS(1438),
- [anon_sym_AT] = ACTIONS(99),
- [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_override] = 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_object] = ACTIONS(1044),
- [anon_sym_satisfies] = ACTIONS(1432),
- [sym__ternary_qmark] = ACTIONS(1434),
- [sym_html_comment] = ACTIONS(5),
- },
- [156] = {
- [sym_import] = STATE(3306),
- [sym_parenthesized_expression] = STATE(1294),
- [sym_expression] = STATE(1766),
- [sym_primary_expression] = STATE(1946),
- [sym_yield_expression] = STATE(2234),
- [sym_object] = STATE(2310),
- [sym_object_pattern] = STATE(5667),
- [sym_array] = STATE(2310),
- [sym_array_pattern] = STATE(5667),
- [sym_glimmer_template] = STATE(2234),
- [sym_jsx_element] = STATE(2234),
- [sym_jsx_opening_element] = STATE(3051),
- [sym_jsx_self_closing_element] = STATE(2234),
- [sym_class] = STATE(2310),
- [sym_function_expression] = STATE(2310),
- [sym_generator_function] = STATE(2310),
- [sym_arrow_function] = STATE(2310),
- [sym__call_signature] = STATE(5809),
- [sym_call_expression] = STATE(2310),
- [sym_new_expression] = STATE(2234),
- [sym_await_expression] = STATE(2234),
- [sym_member_expression] = STATE(1294),
- [sym_subscript_expression] = STATE(1294),
- [sym_assignment_expression] = STATE(2234),
- [sym__augmented_assignment_lhs] = STATE(2875),
- [sym_augmented_assignment_expression] = STATE(2234),
- [sym__destructuring_pattern] = STATE(5667),
- [sym_ternary_expression] = STATE(2234),
- [sym_binary_expression] = STATE(2234),
- [sym_unary_expression] = STATE(2234),
- [sym_update_expression] = STATE(2234),
- [sym_string] = STATE(2310),
- [sym_template_string] = STATE(2310),
- [sym_regex] = STATE(2310),
- [sym_meta_property] = STATE(2310),
- [sym_decorator] = STATE(1244),
- [sym_formal_parameters] = STATE(3742),
- [sym_non_null_expression] = STATE(1294),
- [sym_as_expression] = STATE(2234),
- [sym_satisfies_expression] = STATE(2234),
- [sym_instantiation_expression] = STATE(2234),
- [sym_internal_module] = STATE(2234),
- [sym_type_parameters] = STATE(5349),
- [aux_sym_export_statement_repeat1] = STATE(4499),
- [sym_identifier] = ACTIONS(1440),
- [anon_sym_export] = ACTIONS(1372),
- [anon_sym_STAR] = ACTIONS(1442),
- [anon_sym_type] = ACTIONS(1372),
- [anon_sym_as] = ACTIONS(1432),
- [anon_sym_namespace] = ACTIONS(1374),
- [anon_sym_LBRACE] = ACTIONS(700),
- [anon_sym_COMMA] = ACTIONS(1434),
- [anon_sym_RBRACE] = ACTIONS(1434),
- [anon_sym_typeof] = ACTIONS(21),
- [anon_sym_import] = ACTIONS(133),
- [anon_sym_let] = ACTIONS(1372),
- [anon_sym_BANG] = ACTIONS(21),
- [anon_sym_LPAREN] = ACTIONS(41),
- [anon_sym_await] = ACTIONS(43),
- [anon_sym_in] = ACTIONS(1432),
- [anon_sym_SEMI] = ACTIONS(1434),
- [anon_sym_yield] = ACTIONS(63),
- [anon_sym_LBRACK] = ACTIONS(65),
- [sym_glimmer_opening_tag] = ACTIONS(67),
- [anon_sym_GT] = ACTIONS(1432),
- [anon_sym_DOT] = ACTIONS(1432),
- [anon_sym_DQUOTE] = ACTIONS(69),
- [anon_sym_SQUOTE] = ACTIONS(71),
- [anon_sym_class] = ACTIONS(709),
- [anon_sym_async] = ACTIONS(1378),
- [anon_sym_function] = ACTIONS(713),
- [anon_sym_QMARK_DOT] = ACTIONS(1434),
- [anon_sym_new] = ACTIONS(1444),
- [anon_sym_using] = ACTIONS(81),
- [anon_sym_AMP_AMP] = ACTIONS(1434),
- [anon_sym_PIPE_PIPE] = ACTIONS(1434),
- [anon_sym_GT_GT] = ACTIONS(1432),
- [anon_sym_GT_GT_GT] = ACTIONS(1434),
- [anon_sym_LT_LT] = ACTIONS(1434),
- [anon_sym_AMP] = ACTIONS(1432),
- [anon_sym_CARET] = ACTIONS(1434),
- [anon_sym_PIPE] = ACTIONS(1432),
- [anon_sym_PLUS] = ACTIONS(21),
- [anon_sym_DASH] = ACTIONS(21),
- [anon_sym_SLASH] = ACTIONS(83),
- [anon_sym_PERCENT] = ACTIONS(1434),
- [anon_sym_STAR_STAR] = ACTIONS(1434),
- [anon_sym_LT] = ACTIONS(85),
- [anon_sym_LT_EQ] = ACTIONS(1434),
- [anon_sym_EQ_EQ] = ACTIONS(1432),
- [anon_sym_EQ_EQ_EQ] = ACTIONS(1434),
- [anon_sym_BANG_EQ] = ACTIONS(1432),
- [anon_sym_BANG_EQ_EQ] = ACTIONS(1434),
- [anon_sym_GT_EQ] = ACTIONS(1434),
- [anon_sym_QMARK_QMARK] = ACTIONS(1434),
- [anon_sym_instanceof] = ACTIONS(1432),
- [anon_sym_TILDE] = ACTIONS(33),
- [anon_sym_void] = ACTIONS(21),
- [anon_sym_delete] = ACTIONS(21),
- [anon_sym_PLUS_PLUS] = ACTIONS(87),
- [anon_sym_DASH_DASH] = ACTIONS(87),
- [sym_comment] = ACTIONS(5),
- [anon_sym_BQUOTE] = ACTIONS(89),
- [sym_number] = ACTIONS(91),
- [sym_private_property_identifier] = ACTIONS(93),
- [sym_this] = ACTIONS(95),
- [sym_super] = ACTIONS(95),
- [sym_true] = ACTIONS(95),
- [sym_false] = ACTIONS(95),
- [sym_null] = ACTIONS(95),
- [sym_undefined] = ACTIONS(97),
- [anon_sym_AT] = ACTIONS(99),
- [anon_sym_static] = ACTIONS(1372),
- [anon_sym_readonly] = ACTIONS(1372),
- [anon_sym_get] = ACTIONS(1372),
- [anon_sym_set] = ACTIONS(1372),
- [anon_sym_declare] = ACTIONS(1372),
- [anon_sym_public] = ACTIONS(1372),
- [anon_sym_private] = ACTIONS(1372),
- [anon_sym_protected] = ACTIONS(1372),
- [anon_sym_override] = ACTIONS(1372),
- [anon_sym_module] = ACTIONS(1372),
- [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_object] = ACTIONS(1372),
- [anon_sym_satisfies] = ACTIONS(1432),
- [sym__automatic_semicolon] = ACTIONS(1434),
- [sym__ternary_qmark] = ACTIONS(1434),
- [sym_html_comment] = ACTIONS(5),
- },
- [157] = {
- [sym_import] = STATE(3306),
- [sym_parenthesized_expression] = STATE(1300),
- [sym_expression] = STATE(1637),
- [sym_primary_expression] = STATE(1946),
- [sym_yield_expression] = STATE(2234),
- [sym_object] = STATE(2310),
- [sym_object_pattern] = STATE(5831),
- [sym_array] = STATE(2310),
- [sym_array_pattern] = STATE(5831),
- [sym_glimmer_template] = STATE(2234),
- [sym_jsx_element] = STATE(2234),
- [sym_jsx_opening_element] = STATE(3051),
- [sym_jsx_self_closing_element] = STATE(2234),
- [sym_class] = STATE(2310),
- [sym_function_expression] = STATE(2310),
- [sym_generator_function] = STATE(2310),
- [sym_arrow_function] = STATE(2310),
- [sym__call_signature] = STATE(5829),
- [sym_call_expression] = STATE(2310),
- [sym_new_expression] = STATE(2234),
- [sym_await_expression] = STATE(2234),
- [sym_member_expression] = STATE(1300),
- [sym_subscript_expression] = STATE(1300),
- [sym_assignment_expression] = STATE(2234),
- [sym__augmented_assignment_lhs] = STATE(2943),
- [sym_augmented_assignment_expression] = STATE(2234),
- [sym__destructuring_pattern] = STATE(5831),
- [sym_ternary_expression] = STATE(2234),
- [sym_binary_expression] = STATE(2234),
- [sym_unary_expression] = STATE(2234),
- [sym_update_expression] = STATE(2234),
- [sym_string] = STATE(2310),
- [sym_template_string] = STATE(2310),
- [sym_regex] = STATE(2310),
- [sym_meta_property] = STATE(2310),
- [sym_decorator] = STATE(1244),
- [sym_formal_parameters] = STATE(3742),
- [sym_non_null_expression] = STATE(1300),
- [sym_as_expression] = STATE(2234),
- [sym_satisfies_expression] = STATE(2234),
- [sym_instantiation_expression] = STATE(2234),
- [sym_internal_module] = STATE(2234),
- [sym_type_parameters] = STATE(5349),
- [aux_sym_export_statement_repeat1] = STATE(4499),
- [sym_identifier] = ACTIONS(1446),
- [anon_sym_export] = ACTIONS(1202),
- [anon_sym_STAR] = ACTIONS(1448),
- [anon_sym_type] = ACTIONS(1202),
- [anon_sym_as] = ACTIONS(1432),
- [anon_sym_namespace] = ACTIONS(1204),
- [anon_sym_LBRACE] = ACTIONS(700),
- [anon_sym_COMMA] = ACTIONS(1434),
- [anon_sym_typeof] = ACTIONS(1228),
- [anon_sym_import] = ACTIONS(133),
- [anon_sym_let] = ACTIONS(1202),
- [anon_sym_BANG] = ACTIONS(1228),
- [anon_sym_LPAREN] = ACTIONS(41),
- [anon_sym_await] = ACTIONS(1212),
- [anon_sym_in] = ACTIONS(1432),
- [anon_sym_of] = ACTIONS(1432),
- [anon_sym_SEMI] = ACTIONS(1434),
- [anon_sym_yield] = ACTIONS(1214),
- [anon_sym_LBRACK] = ACTIONS(65),
- [sym_glimmer_opening_tag] = ACTIONS(67),
- [anon_sym_GT] = ACTIONS(1432),
- [anon_sym_DOT] = ACTIONS(1432),
- [anon_sym_DQUOTE] = ACTIONS(69),
- [anon_sym_SQUOTE] = ACTIONS(71),
- [anon_sym_class] = ACTIONS(709),
- [anon_sym_async] = ACTIONS(1218),
- [anon_sym_function] = ACTIONS(713),
- [anon_sym_QMARK_DOT] = ACTIONS(1434),
- [anon_sym_new] = ACTIONS(1450),
- [anon_sym_using] = ACTIONS(1222),
- [anon_sym_AMP_AMP] = ACTIONS(1434),
- [anon_sym_PIPE_PIPE] = ACTIONS(1434),
- [anon_sym_GT_GT] = ACTIONS(1432),
- [anon_sym_GT_GT_GT] = ACTIONS(1434),
- [anon_sym_LT_LT] = ACTIONS(1434),
- [anon_sym_AMP] = ACTIONS(1432),
- [anon_sym_CARET] = ACTIONS(1434),
- [anon_sym_PIPE] = ACTIONS(1432),
- [anon_sym_PLUS] = ACTIONS(1228),
- [anon_sym_DASH] = ACTIONS(1228),
- [anon_sym_SLASH] = ACTIONS(882),
- [anon_sym_PERCENT] = ACTIONS(1434),
- [anon_sym_STAR_STAR] = ACTIONS(1434),
- [anon_sym_LT] = ACTIONS(85),
- [anon_sym_LT_EQ] = ACTIONS(1434),
- [anon_sym_EQ_EQ] = ACTIONS(1432),
- [anon_sym_EQ_EQ_EQ] = ACTIONS(1434),
- [anon_sym_BANG_EQ] = ACTIONS(1432),
- [anon_sym_BANG_EQ_EQ] = ACTIONS(1434),
- [anon_sym_GT_EQ] = ACTIONS(1434),
- [anon_sym_QMARK_QMARK] = ACTIONS(1434),
- [anon_sym_instanceof] = ACTIONS(1432),
- [anon_sym_TILDE] = ACTIONS(1210),
- [anon_sym_void] = ACTIONS(1228),
- [anon_sym_delete] = ACTIONS(1228),
- [anon_sym_PLUS_PLUS] = ACTIONS(1230),
- [anon_sym_DASH_DASH] = ACTIONS(1230),
- [sym_comment] = ACTIONS(5),
- [anon_sym_BQUOTE] = ACTIONS(89),
- [sym_number] = ACTIONS(91),
- [sym_private_property_identifier] = ACTIONS(1236),
- [sym_this] = ACTIONS(95),
- [sym_super] = ACTIONS(95),
- [sym_true] = ACTIONS(95),
- [sym_false] = ACTIONS(95),
- [sym_null] = ACTIONS(95),
- [sym_undefined] = ACTIONS(1452),
- [anon_sym_AT] = ACTIONS(99),
- [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_override] = 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_object] = ACTIONS(1202),
- [anon_sym_satisfies] = ACTIONS(1432),
- [sym__automatic_semicolon] = ACTIONS(1434),
- [sym__ternary_qmark] = ACTIONS(1434),
- [sym_html_comment] = ACTIONS(5),
- },
- [158] = {
- [sym_import] = STATE(3306),
- [sym_parenthesized_expression] = STATE(1338),
- [sym_expression] = STATE(2042),
- [sym_primary_expression] = STATE(1946),
- [sym_yield_expression] = STATE(2234),
- [sym_object] = STATE(2310),
- [sym_object_pattern] = STATE(5571),
- [sym_array] = STATE(2310),
- [sym_array_pattern] = STATE(5571),
- [sym_glimmer_template] = STATE(2234),
- [sym_jsx_element] = STATE(2234),
- [sym_jsx_opening_element] = STATE(3051),
- [sym_jsx_self_closing_element] = STATE(2234),
- [sym_class] = STATE(2310),
- [sym_function_expression] = STATE(2310),
- [sym_generator_function] = STATE(2310),
- [sym_arrow_function] = STATE(2310),
- [sym__call_signature] = STATE(5569),
- [sym_call_expression] = STATE(2310),
- [sym_new_expression] = STATE(2234),
- [sym_await_expression] = STATE(2234),
- [sym_member_expression] = STATE(1338),
- [sym_subscript_expression] = STATE(1338),
- [sym_assignment_expression] = STATE(2234),
- [sym__augmented_assignment_lhs] = STATE(2899),
- [sym_augmented_assignment_expression] = STATE(2234),
- [sym__destructuring_pattern] = STATE(5571),
- [sym_ternary_expression] = STATE(2234),
- [sym_binary_expression] = STATE(2234),
- [sym_unary_expression] = STATE(2234),
- [sym_update_expression] = STATE(2234),
- [sym_string] = STATE(2310),
- [sym_template_string] = STATE(2310),
- [sym_regex] = STATE(2310),
- [sym_meta_property] = STATE(2310),
- [sym_decorator] = STATE(1244),
- [sym_formal_parameters] = STATE(3742),
- [sym_non_null_expression] = STATE(1338),
- [sym_as_expression] = STATE(2234),
- [sym_satisfies_expression] = STATE(2234),
- [sym_instantiation_expression] = STATE(2234),
- [sym_internal_module] = STATE(2234),
- [sym_type_parameters] = STATE(5349),
- [aux_sym_export_statement_repeat1] = STATE(4499),
- [sym_identifier] = ACTIONS(1454),
- [anon_sym_export] = ACTIONS(1152),
- [anon_sym_STAR] = ACTIONS(1456),
- [anon_sym_type] = ACTIONS(1152),
- [anon_sym_as] = ACTIONS(1432),
- [anon_sym_namespace] = ACTIONS(1154),
- [anon_sym_LBRACE] = ACTIONS(700),
- [anon_sym_typeof] = ACTIONS(1180),
- [anon_sym_import] = ACTIONS(133),
- [anon_sym_let] = ACTIONS(1152),
- [anon_sym_BANG] = ACTIONS(1180),
- [anon_sym_LPAREN] = ACTIONS(41),
- [anon_sym_await] = ACTIONS(1164),
- [anon_sym_in] = ACTIONS(1432),
- [anon_sym_SEMI] = ACTIONS(1434),
- [anon_sym_yield] = ACTIONS(1166),
- [anon_sym_LBRACK] = ACTIONS(65),
- [sym_glimmer_opening_tag] = ACTIONS(67),
- [anon_sym_GT] = ACTIONS(1432),
- [anon_sym_DOT] = ACTIONS(1432),
- [anon_sym_DQUOTE] = ACTIONS(69),
- [anon_sym_SQUOTE] = ACTIONS(71),
- [anon_sym_class] = ACTIONS(709),
- [anon_sym_async] = ACTIONS(1170),
- [anon_sym_function] = ACTIONS(713),
- [anon_sym_QMARK_DOT] = ACTIONS(1434),
- [anon_sym_new] = ACTIONS(1458),
- [anon_sym_using] = ACTIONS(1174),
- [anon_sym_AMP_AMP] = ACTIONS(1434),
- [anon_sym_PIPE_PIPE] = ACTIONS(1434),
- [anon_sym_GT_GT] = ACTIONS(1432),
- [anon_sym_GT_GT_GT] = ACTIONS(1434),
- [anon_sym_LT_LT] = ACTIONS(1434),
- [anon_sym_AMP] = ACTIONS(1432),
- [anon_sym_CARET] = ACTIONS(1434),
- [anon_sym_PIPE] = ACTIONS(1432),
- [anon_sym_PLUS] = ACTIONS(1180),
- [anon_sym_DASH] = ACTIONS(1180),
- [anon_sym_SLASH] = ACTIONS(83),
- [anon_sym_PERCENT] = ACTIONS(1434),
- [anon_sym_STAR_STAR] = ACTIONS(1434),
- [anon_sym_LT] = ACTIONS(85),
- [anon_sym_LT_EQ] = ACTIONS(1434),
- [anon_sym_EQ_EQ] = ACTIONS(1432),
- [anon_sym_EQ_EQ_EQ] = ACTIONS(1434),
- [anon_sym_BANG_EQ] = ACTIONS(1432),
- [anon_sym_BANG_EQ_EQ] = ACTIONS(1434),
- [anon_sym_GT_EQ] = ACTIONS(1434),
- [anon_sym_QMARK_QMARK] = ACTIONS(1434),
- [anon_sym_instanceof] = ACTIONS(1432),
- [anon_sym_TILDE] = ACTIONS(1160),
- [anon_sym_void] = ACTIONS(1180),
- [anon_sym_delete] = ACTIONS(1180),
- [anon_sym_PLUS_PLUS] = ACTIONS(1182),
- [anon_sym_DASH_DASH] = ACTIONS(1182),
- [sym_comment] = ACTIONS(5),
- [anon_sym_BQUOTE] = ACTIONS(89),
- [sym_number] = ACTIONS(91),
- [sym_private_property_identifier] = ACTIONS(1188),
- [sym_this] = ACTIONS(95),
- [sym_super] = ACTIONS(95),
- [sym_true] = ACTIONS(95),
- [sym_false] = ACTIONS(95),
- [sym_null] = ACTIONS(95),
- [sym_undefined] = ACTIONS(1460),
- [anon_sym_AT] = ACTIONS(99),
- [anon_sym_static] = ACTIONS(1152),
- [anon_sym_readonly] = ACTIONS(1152),
- [anon_sym_get] = ACTIONS(1152),
- [anon_sym_set] = ACTIONS(1152),
- [anon_sym_declare] = ACTIONS(1152),
- [anon_sym_public] = ACTIONS(1152),
- [anon_sym_private] = ACTIONS(1152),
- [anon_sym_protected] = ACTIONS(1152),
- [anon_sym_override] = ACTIONS(1152),
- [anon_sym_module] = ACTIONS(1152),
- [anon_sym_any] = ACTIONS(1152),
- [anon_sym_number] = ACTIONS(1152),
- [anon_sym_boolean] = ACTIONS(1152),
- [anon_sym_string] = ACTIONS(1152),
- [anon_sym_symbol] = ACTIONS(1152),
- [anon_sym_object] = ACTIONS(1152),
- [anon_sym_satisfies] = ACTIONS(1432),
- [sym__automatic_semicolon] = ACTIONS(1434),
- [sym__ternary_qmark] = ACTIONS(1434),
- [sym_html_comment] = ACTIONS(5),
- },
- [159] = {
- [sym_import] = STATE(3334),
- [sym_parenthesized_expression] = STATE(1327),
- [sym_expression] = STATE(1792),
- [sym_primary_expression] = STATE(1468),
- [sym_yield_expression] = STATE(1634),
- [sym_object] = STATE(1650),
- [sym_object_pattern] = STATE(5821),
- [sym_array] = STATE(1650),
- [sym_array_pattern] = STATE(5821),
- [sym_glimmer_template] = STATE(1634),
- [sym_jsx_element] = STATE(1634),
- [sym_jsx_opening_element] = STATE(3026),
- [sym_jsx_self_closing_element] = STATE(1634),
- [sym_class] = STATE(1650),
- [sym_function_expression] = STATE(1650),
- [sym_generator_function] = STATE(1650),
- [sym_arrow_function] = STATE(1650),
- [sym__call_signature] = STATE(5743),
- [sym_call_expression] = STATE(1650),
- [sym_new_expression] = STATE(1634),
- [sym_await_expression] = STATE(1634),
- [sym_member_expression] = STATE(1327),
- [sym_subscript_expression] = STATE(1327),
- [sym_assignment_expression] = STATE(1634),
- [sym__augmented_assignment_lhs] = STATE(2919),
- [sym_augmented_assignment_expression] = STATE(1634),
- [sym__destructuring_pattern] = STATE(5821),
- [sym_ternary_expression] = STATE(1634),
- [sym_binary_expression] = STATE(1634),
- [sym_unary_expression] = STATE(1634),
- [sym_update_expression] = STATE(1634),
- [sym_string] = STATE(1650),
- [sym_template_string] = STATE(1650),
- [sym_regex] = STATE(1650),
- [sym_meta_property] = STATE(1650),
- [sym_decorator] = STATE(1244),
- [sym_formal_parameters] = STATE(3742),
- [sym_non_null_expression] = STATE(1327),
- [sym_as_expression] = STATE(1634),
- [sym_satisfies_expression] = STATE(1634),
- [sym_instantiation_expression] = STATE(1634),
- [sym_internal_module] = STATE(1634),
- [sym_type_parameters] = STATE(5349),
- [aux_sym_export_statement_repeat1] = STATE(4458),
- [sym_identifier] = ACTIONS(1462),
- [anon_sym_export] = ACTIONS(1286),
- [anon_sym_STAR] = ACTIONS(1464),
- [anon_sym_type] = ACTIONS(1286),
- [anon_sym_as] = ACTIONS(1432),
- [anon_sym_namespace] = ACTIONS(1288),
- [anon_sym_LBRACE] = ACTIONS(813),
- [anon_sym_COMMA] = ACTIONS(1434),
- [anon_sym_typeof] = ACTIONS(1308),
- [anon_sym_import] = ACTIONS(133),
- [anon_sym_let] = ACTIONS(1286),
- [anon_sym_BANG] = ACTIONS(1308),
- [anon_sym_LPAREN] = ACTIONS(815),
- [anon_sym_await] = ACTIONS(1294),
- [anon_sym_in] = ACTIONS(1432),
- [anon_sym_yield] = ACTIONS(1296),
- [anon_sym_LBRACK] = ACTIONS(817),
- [sym_glimmer_opening_tag] = ACTIONS(148),
- [anon_sym_GT] = ACTIONS(1432),
- [anon_sym_DOT] = ACTIONS(1432),
- [anon_sym_DQUOTE] = ACTIONS(150),
- [anon_sym_SQUOTE] = ACTIONS(152),
- [anon_sym_class] = ACTIONS(154),
- [anon_sym_async] = ACTIONS(1298),
- [anon_sym_function] = ACTIONS(158),
- [anon_sym_QMARK_DOT] = ACTIONS(1434),
- [anon_sym_new] = ACTIONS(1466),
- [anon_sym_using] = ACTIONS(1302),
- [anon_sym_AMP_AMP] = ACTIONS(1434),
- [anon_sym_PIPE_PIPE] = ACTIONS(1434),
- [anon_sym_GT_GT] = ACTIONS(1432),
- [anon_sym_GT_GT_GT] = ACTIONS(1434),
- [anon_sym_LT_LT] = ACTIONS(1434),
- [anon_sym_AMP] = ACTIONS(1432),
- [anon_sym_CARET] = ACTIONS(1434),
- [anon_sym_PIPE] = ACTIONS(1432),
- [anon_sym_PLUS] = ACTIONS(1308),
- [anon_sym_DASH] = ACTIONS(1308),
- [anon_sym_SLASH] = ACTIONS(922),
- [anon_sym_PERCENT] = ACTIONS(1434),
- [anon_sym_STAR_STAR] = ACTIONS(1434),
- [anon_sym_LT] = ACTIONS(181),
- [anon_sym_LT_EQ] = ACTIONS(1434),
- [anon_sym_EQ_EQ] = ACTIONS(1432),
- [anon_sym_EQ_EQ_EQ] = ACTIONS(1434),
- [anon_sym_BANG_EQ] = ACTIONS(1432),
- [anon_sym_BANG_EQ_EQ] = ACTIONS(1434),
- [anon_sym_GT_EQ] = ACTIONS(1434),
- [anon_sym_QMARK_QMARK] = ACTIONS(1434),
- [anon_sym_instanceof] = ACTIONS(1432),
- [anon_sym_TILDE] = ACTIONS(1292),
- [anon_sym_void] = ACTIONS(1308),
- [anon_sym_delete] = ACTIONS(1308),
- [anon_sym_PLUS_PLUS] = ACTIONS(1310),
- [anon_sym_DASH_DASH] = ACTIONS(1310),
- [sym_comment] = ACTIONS(5),
- [anon_sym_BQUOTE] = ACTIONS(825),
- [sym_number] = ACTIONS(787),
- [sym_private_property_identifier] = ACTIONS(1312),
- [sym_this] = ACTIONS(200),
- [sym_super] = ACTIONS(200),
- [sym_true] = ACTIONS(200),
- [sym_false] = ACTIONS(200),
- [sym_null] = ACTIONS(200),
- [sym_undefined] = ACTIONS(1468),
- [anon_sym_AT] = ACTIONS(99),
- [anon_sym_static] = ACTIONS(1286),
- [anon_sym_readonly] = ACTIONS(1286),
- [anon_sym_get] = ACTIONS(1286),
- [anon_sym_set] = ACTIONS(1286),
- [anon_sym_declare] = ACTIONS(1286),
- [anon_sym_public] = ACTIONS(1286),
- [anon_sym_private] = ACTIONS(1286),
- [anon_sym_protected] = ACTIONS(1286),
- [anon_sym_override] = ACTIONS(1286),
- [anon_sym_module] = ACTIONS(1286),
- [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_object] = ACTIONS(1286),
- [anon_sym_satisfies] = ACTIONS(1432),
- [anon_sym_implements] = ACTIONS(1432),
- [sym__ternary_qmark] = ACTIONS(1434),
- [sym_html_comment] = ACTIONS(5),
- },
- [160] = {
- [sym_import] = STATE(3334),
- [sym_parenthesized_expression] = STATE(1336),
- [sym_expression] = STATE(2084),
- [sym_primary_expression] = STATE(1468),
- [sym_yield_expression] = STATE(1634),
- [sym_object] = STATE(1650),
- [sym_object_pattern] = STATE(5745),
- [sym_array] = STATE(1650),
- [sym_array_pattern] = STATE(5745),
- [sym_glimmer_template] = STATE(1634),
- [sym_jsx_element] = STATE(1634),
- [sym_jsx_opening_element] = STATE(3026),
- [sym_jsx_self_closing_element] = STATE(1634),
- [sym_class] = STATE(1650),
- [sym_function_expression] = STATE(1650),
- [sym_generator_function] = STATE(1650),
- [sym_arrow_function] = STATE(1650),
- [sym__call_signature] = STATE(5553),
- [sym_call_expression] = STATE(1650),
- [sym_new_expression] = STATE(1634),
- [sym_await_expression] = STATE(1634),
- [sym_member_expression] = STATE(1336),
- [sym_subscript_expression] = STATE(1336),
- [sym_assignment_expression] = STATE(1634),
- [sym__augmented_assignment_lhs] = STATE(2884),
- [sym_augmented_assignment_expression] = STATE(1634),
- [sym__destructuring_pattern] = STATE(5745),
- [sym_ternary_expression] = STATE(1634),
- [sym_binary_expression] = STATE(1634),
- [sym_unary_expression] = STATE(1634),
- [sym_update_expression] = STATE(1634),
- [sym_string] = STATE(1650),
- [sym_template_string] = STATE(1650),
- [sym_regex] = STATE(1650),
- [sym_meta_property] = STATE(1650),
- [sym_decorator] = STATE(1244),
- [sym_formal_parameters] = STATE(3742),
- [sym_non_null_expression] = STATE(1336),
- [sym_as_expression] = STATE(1634),
- [sym_satisfies_expression] = STATE(1634),
- [sym_instantiation_expression] = STATE(1634),
- [sym_internal_module] = STATE(1634),
- [sym_type_parameters] = STATE(5349),
- [aux_sym_export_statement_repeat1] = STATE(4458),
- [sym_identifier] = ACTIONS(1470),
- [anon_sym_export] = ACTIONS(1250),
- [anon_sym_STAR] = ACTIONS(1472),
- [anon_sym_type] = ACTIONS(1250),
- [anon_sym_as] = ACTIONS(1432),
- [anon_sym_namespace] = ACTIONS(1252),
- [anon_sym_LBRACE] = ACTIONS(813),
- [anon_sym_RBRACE] = ACTIONS(1434),
- [anon_sym_typeof] = ACTIONS(1272),
- [anon_sym_import] = ACTIONS(133),
- [anon_sym_let] = ACTIONS(1250),
- [anon_sym_BANG] = ACTIONS(1272),
- [anon_sym_LPAREN] = ACTIONS(815),
- [anon_sym_await] = ACTIONS(1258),
- [anon_sym_in] = ACTIONS(1432),
- [anon_sym_COLON] = ACTIONS(1434),
- [anon_sym_yield] = ACTIONS(1260),
- [anon_sym_LBRACK] = ACTIONS(817),
- [sym_glimmer_opening_tag] = ACTIONS(148),
- [anon_sym_GT] = ACTIONS(1432),
- [anon_sym_DOT] = ACTIONS(1432),
- [anon_sym_DQUOTE] = ACTIONS(150),
- [anon_sym_SQUOTE] = ACTIONS(152),
- [anon_sym_class] = ACTIONS(154),
- [anon_sym_async] = ACTIONS(1262),
- [anon_sym_function] = ACTIONS(158),
- [anon_sym_QMARK_DOT] = ACTIONS(1434),
- [anon_sym_new] = ACTIONS(1474),
- [anon_sym_using] = ACTIONS(1266),
- [anon_sym_AMP_AMP] = ACTIONS(1434),
- [anon_sym_PIPE_PIPE] = ACTIONS(1434),
- [anon_sym_GT_GT] = ACTIONS(1432),
- [anon_sym_GT_GT_GT] = ACTIONS(1434),
- [anon_sym_LT_LT] = ACTIONS(1434),
- [anon_sym_AMP] = ACTIONS(1432),
- [anon_sym_CARET] = ACTIONS(1434),
- [anon_sym_PIPE] = ACTIONS(1432),
- [anon_sym_PLUS] = ACTIONS(1272),
- [anon_sym_DASH] = ACTIONS(1272),
- [anon_sym_SLASH] = ACTIONS(646),
- [anon_sym_PERCENT] = ACTIONS(1434),
- [anon_sym_STAR_STAR] = ACTIONS(1434),
- [anon_sym_LT] = ACTIONS(181),
- [anon_sym_LT_EQ] = ACTIONS(1434),
- [anon_sym_EQ_EQ] = ACTIONS(1432),
- [anon_sym_EQ_EQ_EQ] = ACTIONS(1434),
- [anon_sym_BANG_EQ] = ACTIONS(1432),
- [anon_sym_BANG_EQ_EQ] = ACTIONS(1434),
- [anon_sym_GT_EQ] = ACTIONS(1434),
- [anon_sym_QMARK_QMARK] = ACTIONS(1434),
- [anon_sym_instanceof] = ACTIONS(1432),
- [anon_sym_TILDE] = ACTIONS(1256),
- [anon_sym_void] = ACTIONS(1272),
- [anon_sym_delete] = ACTIONS(1272),
- [anon_sym_PLUS_PLUS] = ACTIONS(1274),
- [anon_sym_DASH_DASH] = ACTIONS(1274),
- [sym_comment] = ACTIONS(5),
- [anon_sym_BQUOTE] = ACTIONS(825),
- [sym_number] = ACTIONS(787),
- [sym_private_property_identifier] = ACTIONS(1276),
- [sym_this] = ACTIONS(200),
- [sym_super] = ACTIONS(200),
- [sym_true] = ACTIONS(200),
- [sym_false] = ACTIONS(200),
- [sym_null] = ACTIONS(200),
- [sym_undefined] = ACTIONS(1476),
- [anon_sym_AT] = ACTIONS(99),
- [anon_sym_static] = ACTIONS(1250),
- [anon_sym_readonly] = ACTIONS(1250),
- [anon_sym_get] = ACTIONS(1250),
- [anon_sym_set] = ACTIONS(1250),
- [anon_sym_declare] = ACTIONS(1250),
- [anon_sym_public] = ACTIONS(1250),
- [anon_sym_private] = ACTIONS(1250),
- [anon_sym_protected] = ACTIONS(1250),
- [anon_sym_override] = ACTIONS(1250),
- [anon_sym_module] = ACTIONS(1250),
- [anon_sym_any] = ACTIONS(1250),
- [anon_sym_number] = ACTIONS(1250),
- [anon_sym_boolean] = ACTIONS(1250),
- [anon_sym_string] = ACTIONS(1250),
- [anon_sym_symbol] = ACTIONS(1250),
- [anon_sym_object] = ACTIONS(1250),
- [anon_sym_satisfies] = ACTIONS(1432),
- [sym__ternary_qmark] = ACTIONS(1434),
- [sym_html_comment] = ACTIONS(5),
- },
- [161] = {
- [sym_import] = STATE(3334),
- [sym_parenthesized_expression] = STATE(1369),
- [sym_expression] = STATE(2308),
- [sym_primary_expression] = STATE(1468),
- [sym_yield_expression] = STATE(1634),
- [sym_object] = STATE(1650),
- [sym_object_pattern] = STATE(5861),
- [sym_array] = STATE(1650),
- [sym_array_pattern] = STATE(5861),
- [sym_glimmer_template] = STATE(1634),
- [sym_jsx_element] = STATE(1634),
- [sym_jsx_opening_element] = STATE(3026),
- [sym_jsx_self_closing_element] = STATE(1634),
- [sym_class] = STATE(1650),
- [sym_function_expression] = STATE(1650),
- [sym_generator_function] = STATE(1650),
- [sym_arrow_function] = STATE(1650),
- [sym__call_signature] = STATE(5765),
- [sym_call_expression] = STATE(1650),
- [sym_new_expression] = STATE(1634),
- [sym_await_expression] = STATE(1634),
- [sym_member_expression] = STATE(1369),
- [sym_subscript_expression] = STATE(1369),
- [sym_assignment_expression] = STATE(1634),
- [sym__augmented_assignment_lhs] = STATE(2891),
- [sym_augmented_assignment_expression] = STATE(1634),
- [sym__destructuring_pattern] = STATE(5861),
- [sym_ternary_expression] = STATE(1634),
- [sym_binary_expression] = STATE(1634),
- [sym_unary_expression] = STATE(1634),
- [sym_update_expression] = STATE(1634),
- [sym_string] = STATE(1650),
- [sym_template_string] = STATE(1650),
- [sym_regex] = STATE(1650),
- [sym_meta_property] = STATE(1650),
- [sym_decorator] = STATE(1244),
- [sym_formal_parameters] = STATE(3742),
- [sym_non_null_expression] = STATE(1369),
- [sym_as_expression] = STATE(1634),
- [sym_satisfies_expression] = STATE(1634),
- [sym_instantiation_expression] = STATE(1634),
- [sym_internal_module] = STATE(1634),
- [sym_type_parameters] = STATE(5349),
- [aux_sym_export_statement_repeat1] = STATE(4458),
- [sym_identifier] = ACTIONS(1478),
- [anon_sym_export] = ACTIONS(1114),
- [anon_sym_STAR] = ACTIONS(1480),
- [anon_sym_type] = ACTIONS(1114),
- [anon_sym_as] = ACTIONS(1432),
- [anon_sym_namespace] = ACTIONS(1116),
- [anon_sym_LBRACE] = ACTIONS(813),
- [anon_sym_typeof] = ACTIONS(1138),
- [anon_sym_import] = ACTIONS(133),
- [anon_sym_let] = ACTIONS(1114),
- [anon_sym_BANG] = ACTIONS(1138),
- [anon_sym_LPAREN] = ACTIONS(815),
- [anon_sym_await] = ACTIONS(1124),
- [anon_sym_in] = ACTIONS(1432),
- [anon_sym_yield] = ACTIONS(1126),
- [anon_sym_LBRACK] = ACTIONS(817),
- [anon_sym_RBRACK] = ACTIONS(1434),
- [sym_glimmer_opening_tag] = ACTIONS(148),
- [anon_sym_GT] = ACTIONS(1432),
- [anon_sym_DOT] = ACTIONS(1432),
- [anon_sym_DQUOTE] = ACTIONS(150),
- [anon_sym_SQUOTE] = ACTIONS(152),
- [anon_sym_class] = ACTIONS(154),
- [anon_sym_async] = ACTIONS(1128),
- [anon_sym_function] = ACTIONS(158),
- [anon_sym_QMARK_DOT] = ACTIONS(1434),
- [anon_sym_new] = ACTIONS(1482),
- [anon_sym_using] = ACTIONS(1132),
- [anon_sym_AMP_AMP] = ACTIONS(1434),
- [anon_sym_PIPE_PIPE] = ACTIONS(1434),
- [anon_sym_GT_GT] = ACTIONS(1432),
- [anon_sym_GT_GT_GT] = ACTIONS(1434),
- [anon_sym_LT_LT] = ACTIONS(1434),
- [anon_sym_AMP] = ACTIONS(1432),
- [anon_sym_CARET] = ACTIONS(1434),
- [anon_sym_PIPE] = ACTIONS(1432),
- [anon_sym_PLUS] = ACTIONS(1138),
- [anon_sym_DASH] = ACTIONS(1138),
- [anon_sym_SLASH] = ACTIONS(646),
- [anon_sym_PERCENT] = ACTIONS(1434),
- [anon_sym_STAR_STAR] = ACTIONS(1434),
- [anon_sym_LT] = ACTIONS(181),
- [anon_sym_LT_EQ] = ACTIONS(1434),
- [anon_sym_EQ_EQ] = ACTIONS(1432),
- [anon_sym_EQ_EQ_EQ] = ACTIONS(1434),
- [anon_sym_BANG_EQ] = ACTIONS(1432),
- [anon_sym_BANG_EQ_EQ] = ACTIONS(1434),
- [anon_sym_GT_EQ] = ACTIONS(1434),
- [anon_sym_QMARK_QMARK] = ACTIONS(1434),
- [anon_sym_instanceof] = ACTIONS(1432),
- [anon_sym_TILDE] = ACTIONS(1122),
- [anon_sym_void] = ACTIONS(1138),
- [anon_sym_delete] = ACTIONS(1138),
- [anon_sym_PLUS_PLUS] = ACTIONS(1140),
- [anon_sym_DASH_DASH] = ACTIONS(1140),
- [sym_comment] = ACTIONS(5),
- [anon_sym_BQUOTE] = ACTIONS(825),
- [sym_number] = ACTIONS(787),
- [sym_private_property_identifier] = ACTIONS(1142),
- [sym_this] = ACTIONS(200),
- [sym_super] = ACTIONS(200),
- [sym_true] = ACTIONS(200),
- [sym_false] = ACTIONS(200),
- [sym_null] = ACTIONS(200),
- [sym_undefined] = ACTIONS(1484),
- [anon_sym_AT] = ACTIONS(99),
- [anon_sym_static] = ACTIONS(1114),
- [anon_sym_readonly] = ACTIONS(1114),
- [anon_sym_get] = ACTIONS(1114),
- [anon_sym_set] = ACTIONS(1114),
- [anon_sym_declare] = ACTIONS(1114),
- [anon_sym_public] = ACTIONS(1114),
- [anon_sym_private] = ACTIONS(1114),
- [anon_sym_protected] = ACTIONS(1114),
- [anon_sym_override] = ACTIONS(1114),
- [anon_sym_module] = ACTIONS(1114),
- [anon_sym_any] = ACTIONS(1114),
- [anon_sym_number] = ACTIONS(1114),
- [anon_sym_boolean] = ACTIONS(1114),
- [anon_sym_string] = ACTIONS(1114),
- [anon_sym_symbol] = ACTIONS(1114),
- [anon_sym_object] = ACTIONS(1114),
- [anon_sym_satisfies] = ACTIONS(1432),
- [sym__ternary_qmark] = ACTIONS(1434),
- [sym_html_comment] = ACTIONS(5),
- },
- [162] = {
- [sym_import] = STATE(3334),
- [sym_parenthesized_expression] = STATE(1345),
- [sym_expression] = STATE(2375),
- [sym_primary_expression] = STATE(1468),
- [sym_yield_expression] = STATE(1634),
- [sym_object] = STATE(1650),
- [sym_object_pattern] = STATE(5872),
- [sym_array] = STATE(1650),
- [sym_array_pattern] = STATE(5872),
- [sym_glimmer_template] = STATE(1634),
- [sym_jsx_element] = STATE(1634),
- [sym_jsx_opening_element] = STATE(3026),
- [sym_jsx_self_closing_element] = STATE(1634),
- [sym_class] = STATE(1650),
- [sym_function_expression] = STATE(1650),
- [sym_generator_function] = STATE(1650),
- [sym_arrow_function] = STATE(1650),
- [sym__call_signature] = STATE(5904),
- [sym_call_expression] = STATE(1650),
- [sym_new_expression] = STATE(1634),
- [sym_await_expression] = STATE(1634),
- [sym_member_expression] = STATE(1345),
- [sym_subscript_expression] = STATE(1345),
- [sym_assignment_expression] = STATE(1634),
- [sym__augmented_assignment_lhs] = STATE(2898),
- [sym_augmented_assignment_expression] = STATE(1634),
- [sym__destructuring_pattern] = STATE(5872),
- [sym_ternary_expression] = STATE(1634),
- [sym_binary_expression] = STATE(1634),
- [sym_unary_expression] = STATE(1634),
- [sym_update_expression] = STATE(1634),
- [sym_string] = STATE(1650),
- [sym_template_string] = STATE(1650),
- [sym_regex] = STATE(1650),
- [sym_meta_property] = STATE(1650),
- [sym_decorator] = STATE(1244),
- [sym_formal_parameters] = STATE(3742),
- [sym_non_null_expression] = STATE(1345),
- [sym_as_expression] = STATE(1634),
- [sym_satisfies_expression] = STATE(1634),
- [sym_instantiation_expression] = STATE(1634),
- [sym_internal_module] = STATE(1634),
- [sym_type_parameters] = STATE(5349),
- [aux_sym_export_statement_repeat1] = STATE(4458),
- [sym_identifier] = ACTIONS(1486),
- [anon_sym_export] = ACTIONS(1394),
- [anon_sym_STAR] = ACTIONS(1488),
- [anon_sym_type] = ACTIONS(1394),
- [anon_sym_as] = ACTIONS(1432),
- [anon_sym_namespace] = ACTIONS(1396),
- [anon_sym_LBRACE] = ACTIONS(845),
- [anon_sym_typeof] = ACTIONS(1416),
- [anon_sym_import] = ACTIONS(133),
- [anon_sym_let] = ACTIONS(1394),
- [anon_sym_BANG] = ACTIONS(1416),
- [anon_sym_LPAREN] = ACTIONS(815),
- [anon_sym_await] = ACTIONS(1402),
- [anon_sym_in] = ACTIONS(1432),
- [anon_sym_of] = ACTIONS(1432),
- [anon_sym_yield] = ACTIONS(1404),
- [anon_sym_LBRACK] = ACTIONS(849),
- [sym_glimmer_opening_tag] = ACTIONS(148),
- [anon_sym_GT] = ACTIONS(1432),
- [anon_sym_DOT] = ACTIONS(1432),
- [anon_sym_DQUOTE] = ACTIONS(150),
- [anon_sym_SQUOTE] = ACTIONS(152),
- [anon_sym_class] = ACTIONS(154),
- [anon_sym_async] = ACTIONS(1406),
- [anon_sym_function] = ACTIONS(158),
- [anon_sym_QMARK_DOT] = ACTIONS(1434),
- [anon_sym_new] = ACTIONS(1490),
- [anon_sym_using] = ACTIONS(1410),
- [anon_sym_AMP_AMP] = ACTIONS(1434),
- [anon_sym_PIPE_PIPE] = ACTIONS(1434),
- [anon_sym_GT_GT] = ACTIONS(1432),
- [anon_sym_GT_GT_GT] = ACTIONS(1434),
- [anon_sym_LT_LT] = ACTIONS(1434),
- [anon_sym_AMP] = ACTIONS(1432),
- [anon_sym_CARET] = ACTIONS(1434),
- [anon_sym_PIPE] = ACTIONS(1432),
- [anon_sym_PLUS] = ACTIONS(1416),
- [anon_sym_DASH] = ACTIONS(1416),
- [anon_sym_SLASH] = ACTIONS(970),
- [anon_sym_PERCENT] = ACTIONS(1434),
- [anon_sym_STAR_STAR] = ACTIONS(1434),
- [anon_sym_LT] = ACTIONS(181),
- [anon_sym_LT_EQ] = ACTIONS(1434),
- [anon_sym_EQ_EQ] = ACTIONS(1432),
- [anon_sym_EQ_EQ_EQ] = ACTIONS(1434),
- [anon_sym_BANG_EQ] = ACTIONS(1432),
- [anon_sym_BANG_EQ_EQ] = ACTIONS(1434),
- [anon_sym_GT_EQ] = ACTIONS(1434),
- [anon_sym_QMARK_QMARK] = ACTIONS(1434),
- [anon_sym_instanceof] = ACTIONS(1432),
- [anon_sym_TILDE] = ACTIONS(1400),
- [anon_sym_void] = ACTIONS(1416),
- [anon_sym_delete] = ACTIONS(1416),
- [anon_sym_PLUS_PLUS] = ACTIONS(1418),
- [anon_sym_DASH_DASH] = ACTIONS(1418),
- [sym_comment] = ACTIONS(5),
- [anon_sym_BQUOTE] = ACTIONS(825),
- [sym_number] = ACTIONS(787),
- [sym_private_property_identifier] = ACTIONS(1420),
- [sym_this] = ACTIONS(200),
- [sym_super] = ACTIONS(200),
- [sym_true] = ACTIONS(200),
- [sym_false] = ACTIONS(200),
- [sym_null] = ACTIONS(200),
- [sym_undefined] = ACTIONS(1492),
- [anon_sym_AT] = ACTIONS(99),
- [anon_sym_static] = ACTIONS(1394),
- [anon_sym_readonly] = ACTIONS(1394),
- [anon_sym_get] = ACTIONS(1394),
- [anon_sym_set] = ACTIONS(1394),
- [anon_sym_declare] = ACTIONS(1394),
- [anon_sym_public] = ACTIONS(1394),
- [anon_sym_private] = ACTIONS(1394),
- [anon_sym_protected] = ACTIONS(1394),
- [anon_sym_override] = ACTIONS(1394),
- [anon_sym_module] = ACTIONS(1394),
- [anon_sym_any] = ACTIONS(1394),
- [anon_sym_number] = ACTIONS(1394),
- [anon_sym_boolean] = ACTIONS(1394),
- [anon_sym_string] = ACTIONS(1394),
- [anon_sym_symbol] = ACTIONS(1394),
- [anon_sym_object] = ACTIONS(1394),
- [anon_sym_satisfies] = ACTIONS(1432),
- [sym__ternary_qmark] = ACTIONS(1434),
- [sym_html_comment] = ACTIONS(5),
- },
- [163] = {
- [sym_import] = STATE(3334),
- [sym_parenthesized_expression] = STATE(1179),
- [sym_expression] = STATE(2407),
- [sym_primary_expression] = STATE(1468),
- [sym_yield_expression] = STATE(1634),
- [sym_object] = STATE(1650),
- [sym_object_pattern] = STATE(5854),
- [sym_array] = STATE(1650),
- [sym_array_pattern] = STATE(5854),
- [sym_glimmer_template] = STATE(1634),
- [sym_jsx_element] = STATE(1634),
- [sym_jsx_opening_element] = STATE(3026),
- [sym_jsx_self_closing_element] = STATE(1634),
- [sym_class] = STATE(1650),
- [sym_function_expression] = STATE(1650),
- [sym_generator_function] = STATE(1650),
- [sym_arrow_function] = STATE(1650),
- [sym__call_signature] = STATE(5619),
- [sym_call_expression] = STATE(1650),
- [sym_new_expression] = STATE(1634),
- [sym_await_expression] = STATE(1634),
- [sym_member_expression] = STATE(1179),
- [sym_subscript_expression] = STATE(1179),
- [sym_assignment_expression] = STATE(1634),
- [sym__augmented_assignment_lhs] = STATE(2878),
- [sym_augmented_assignment_expression] = STATE(1634),
- [sym__destructuring_pattern] = STATE(5854),
- [sym_ternary_expression] = STATE(1634),
- [sym_binary_expression] = STATE(1634),
- [sym_unary_expression] = STATE(1634),
- [sym_update_expression] = STATE(1634),
- [sym_string] = STATE(1650),
- [sym_template_string] = STATE(1650),
- [sym_regex] = STATE(1650),
- [sym_meta_property] = STATE(1650),
- [sym_decorator] = STATE(1244),
- [sym_formal_parameters] = STATE(3742),
- [sym_non_null_expression] = STATE(1179),
- [sym_as_expression] = STATE(1634),
- [sym_satisfies_expression] = STATE(1634),
- [sym_instantiation_expression] = STATE(1634),
- [sym_internal_module] = STATE(1634),
- [sym_type_parameters] = STATE(5349),
- [aux_sym_export_statement_repeat1] = STATE(4458),
- [sym_identifier] = ACTIONS(837),
- [anon_sym_export] = ACTIONS(839),
- [anon_sym_STAR] = ACTIONS(1494),
- [anon_sym_type] = ACTIONS(839),
- [anon_sym_as] = ACTIONS(1432),
- [anon_sym_namespace] = ACTIONS(843),
- [anon_sym_LBRACE] = ACTIONS(845),
- [anon_sym_typeof] = ACTIONS(187),
- [anon_sym_import] = ACTIONS(133),
- [anon_sym_let] = ACTIONS(839),
- [anon_sym_BANG] = ACTIONS(187),
- [anon_sym_LPAREN] = ACTIONS(815),
- [anon_sym_await] = ACTIONS(142),
- [anon_sym_in] = ACTIONS(1432),
- [anon_sym_yield] = ACTIONS(144),
- [anon_sym_LBRACK] = ACTIONS(849),
- [sym_glimmer_opening_tag] = ACTIONS(148),
- [anon_sym_GT] = ACTIONS(1432),
- [anon_sym_DOT] = ACTIONS(1432),
- [anon_sym_DQUOTE] = ACTIONS(150),
- [anon_sym_SQUOTE] = ACTIONS(152),
- [anon_sym_class] = ACTIONS(154),
- [anon_sym_async] = ACTIONS(851),
- [anon_sym_function] = ACTIONS(158),
- [anon_sym_QMARK_DOT] = ACTIONS(1434),
- [anon_sym_new] = ACTIONS(853),
- [anon_sym_using] = ACTIONS(166),
- [anon_sym_AMP_AMP] = ACTIONS(1434),
- [anon_sym_PIPE_PIPE] = ACTIONS(1434),
- [anon_sym_GT_GT] = ACTIONS(1432),
- [anon_sym_GT_GT_GT] = ACTIONS(1434),
- [anon_sym_LT_LT] = ACTIONS(1434),
- [anon_sym_AMP] = ACTIONS(1432),
- [anon_sym_CARET] = ACTIONS(1434),
- [anon_sym_PIPE] = ACTIONS(1432),
- [anon_sym_PLUS] = ACTIONS(187),
- [anon_sym_DASH] = ACTIONS(187),
- [anon_sym_SLASH] = ACTIONS(646),
- [anon_sym_PERCENT] = ACTIONS(1434),
- [anon_sym_STAR_STAR] = ACTIONS(1434),
- [anon_sym_LT] = ACTIONS(181),
- [anon_sym_LT_EQ] = ACTIONS(1434),
- [anon_sym_EQ_EQ] = ACTIONS(1432),
- [anon_sym_EQ_EQ_EQ] = ACTIONS(1434),
- [anon_sym_BANG_EQ] = ACTIONS(1432),
- [anon_sym_BANG_EQ_EQ] = ACTIONS(1434),
- [anon_sym_GT_EQ] = ACTIONS(1434),
- [anon_sym_QMARK_QMARK] = ACTIONS(1434),
- [anon_sym_instanceof] = ACTIONS(1432),
- [anon_sym_TILDE] = ACTIONS(183),
- [anon_sym_void] = ACTIONS(187),
- [anon_sym_delete] = ACTIONS(187),
- [anon_sym_PLUS_PLUS] = ACTIONS(719),
- [anon_sym_DASH_DASH] = ACTIONS(719),
- [sym_comment] = ACTIONS(5),
- [anon_sym_BQUOTE] = ACTIONS(825),
- [sym_number] = ACTIONS(787),
- [sym_private_property_identifier] = ACTIONS(196),
- [sym_this] = ACTIONS(200),
- [sym_super] = ACTIONS(200),
- [sym_true] = ACTIONS(200),
- [sym_false] = ACTIONS(200),
- [sym_null] = ACTIONS(200),
- [sym_undefined] = ACTIONS(827),
- [anon_sym_AT] = ACTIONS(99),
- [anon_sym_static] = ACTIONS(839),
- [anon_sym_readonly] = ACTIONS(839),
- [anon_sym_get] = ACTIONS(839),
- [anon_sym_set] = ACTIONS(839),
- [anon_sym_declare] = ACTIONS(839),
- [anon_sym_public] = ACTIONS(839),
- [anon_sym_private] = ACTIONS(839),
- [anon_sym_protected] = ACTIONS(839),
- [anon_sym_override] = ACTIONS(839),
- [anon_sym_module] = ACTIONS(839),
- [anon_sym_any] = ACTIONS(839),
- [anon_sym_number] = ACTIONS(839),
- [anon_sym_boolean] = ACTIONS(839),
- [anon_sym_string] = ACTIONS(839),
- [anon_sym_symbol] = ACTIONS(839),
- [anon_sym_object] = ACTIONS(839),
- [anon_sym_satisfies] = ACTIONS(1432),
- [sym__ternary_qmark] = ACTIONS(1434),
- [sym_html_comment] = ACTIONS(5),
- },
- [164] = {
- [sym_import] = STATE(5087),
- [sym_nested_identifier] = STATE(5707),
- [sym_string] = STATE(2889),
- [sym_formal_parameters] = STATE(5709),
- [sym_nested_type_identifier] = STATE(2828),
- [sym__type_query_member_expression_in_type_annotation] = STATE(2846),
- [sym__type_query_call_expression_in_type_annotation] = STATE(2850),
- [sym_type] = STATE(3014),
- [sym_constructor_type] = STATE(2896),
- [sym_primary_type] = STATE(2897),
- [sym_template_literal_type] = STATE(2885),
- [sym_infer_type] = STATE(2896),
- [sym_conditional_type] = STATE(2885),
- [sym_generic_type] = STATE(2885),
- [sym_type_query] = STATE(2885),
- [sym_index_type_query] = STATE(2885),
- [sym_lookup_type] = STATE(2885),
- [sym_literal_type] = STATE(2885),
- [sym__number] = STATE(2903),
- [sym_existential_type] = STATE(2885),
- [sym_flow_maybe_type] = STATE(2885),
- [sym_parenthesized_type] = STATE(2885),
- [sym_predefined_type] = STATE(2885),
- [sym_object_type] = STATE(2885),
- [sym_type_parameters] = STATE(5435),
- [sym_array_type] = STATE(2885),
- [sym_tuple_type] = STATE(2885),
- [sym_readonly_type] = STATE(2896),
- [sym_union_type] = STATE(2885),
- [sym_intersection_type] = STATE(2885),
- [sym_function_type] = STATE(2896),
- [sym_identifier] = ACTIONS(1496),
- [anon_sym_STAR] = ACTIONS(117),
- [anon_sym_EQ] = ACTIONS(857),
- [anon_sym_as] = ACTIONS(122),
- [anon_sym_LBRACE] = ACTIONS(1498),
- [anon_sym_COMMA] = ACTIONS(162),
- [anon_sym_RBRACE] = ACTIONS(162),
- [anon_sym_typeof] = ACTIONS(1500),
- [anon_sym_import] = ACTIONS(133),
- [anon_sym_const] = ACTIONS(135),
- [anon_sym_BANG] = ACTIONS(122),
- [anon_sym_LPAREN] = ACTIONS(1502),
- [anon_sym_RPAREN] = ACTIONS(162),
- [anon_sym_in] = ACTIONS(122),
- [anon_sym_COLON] = ACTIONS(162),
- [anon_sym_LBRACK] = ACTIONS(1504),
- [anon_sym_RBRACK] = ACTIONS(162),
- [anon_sym_GT] = ACTIONS(122),
- [anon_sym_DOT] = ACTIONS(122),
- [anon_sym_DQUOTE] = ACTIONS(1506),
- [anon_sym_SQUOTE] = ACTIONS(1508),
- [anon_sym_EQ_GT] = ACTIONS(160),
- [anon_sym_QMARK_DOT] = ACTIONS(162),
- [anon_sym_new] = ACTIONS(1510),
- [anon_sym_PLUS_EQ] = ACTIONS(168),
- [anon_sym_DASH_EQ] = ACTIONS(168),
- [anon_sym_STAR_EQ] = ACTIONS(168),
- [anon_sym_SLASH_EQ] = ACTIONS(168),
- [anon_sym_PERCENT_EQ] = ACTIONS(168),
- [anon_sym_CARET_EQ] = ACTIONS(168),
- [anon_sym_AMP_EQ] = ACTIONS(168),
- [anon_sym_PIPE_EQ] = ACTIONS(168),
- [anon_sym_GT_GT_EQ] = ACTIONS(168),
- [anon_sym_GT_GT_GT_EQ] = ACTIONS(168),
- [anon_sym_LT_LT_EQ] = ACTIONS(168),
- [anon_sym_STAR_STAR_EQ] = ACTIONS(168),
- [anon_sym_AMP_AMP_EQ] = ACTIONS(168),
- [anon_sym_PIPE_PIPE_EQ] = ACTIONS(168),
- [anon_sym_QMARK_QMARK_EQ] = ACTIONS(168),
- [anon_sym_AMP_AMP] = ACTIONS(122),
- [anon_sym_PIPE_PIPE] = ACTIONS(122),
- [anon_sym_GT_GT] = ACTIONS(122),
- [anon_sym_GT_GT_GT] = ACTIONS(122),
- [anon_sym_LT_LT] = ACTIONS(122),
- [anon_sym_AMP] = ACTIONS(172),
- [anon_sym_CARET] = ACTIONS(122),
- [anon_sym_PIPE] = ACTIONS(174),
- [anon_sym_PLUS] = ACTIONS(1512),
- [anon_sym_DASH] = ACTIONS(1512),
- [anon_sym_SLASH] = ACTIONS(122),
- [anon_sym_PERCENT] = ACTIONS(122),
- [anon_sym_STAR_STAR] = ACTIONS(122),
- [anon_sym_LT] = ACTIONS(1514),
- [anon_sym_LT_EQ] = ACTIONS(162),
- [anon_sym_EQ_EQ] = ACTIONS(122),
- [anon_sym_EQ_EQ_EQ] = ACTIONS(162),
- [anon_sym_BANG_EQ] = ACTIONS(122),
- [anon_sym_BANG_EQ_EQ] = ACTIONS(162),
- [anon_sym_GT_EQ] = ACTIONS(162),
- [anon_sym_QMARK_QMARK] = ACTIONS(122),
- [anon_sym_instanceof] = ACTIONS(122),
- [anon_sym_void] = ACTIONS(220),
- [anon_sym_PLUS_PLUS] = ACTIONS(162),
- [anon_sym_DASH_DASH] = ACTIONS(162),
- [sym_comment] = ACTIONS(5),
- [anon_sym_BQUOTE] = ACTIONS(1516),
- [sym_number] = ACTIONS(1518),
- [sym_this] = ACTIONS(1520),
- [sym_true] = ACTIONS(1522),
- [sym_false] = ACTIONS(1522),
- [sym_null] = ACTIONS(1522),
- [sym_undefined] = ACTIONS(1522),
- [anon_sym_readonly] = ACTIONS(1524),
- [anon_sym_QMARK] = ACTIONS(208),
- [anon_sym_any] = ACTIONS(220),
- [anon_sym_number] = ACTIONS(220),
- [anon_sym_boolean] = ACTIONS(220),
- [anon_sym_string] = ACTIONS(220),
- [anon_sym_symbol] = ACTIONS(220),
- [anon_sym_object] = ACTIONS(220),
- [anon_sym_abstract] = ACTIONS(212),
- [anon_sym_satisfies] = ACTIONS(122),
- [anon_sym_infer] = ACTIONS(214),
- [anon_sym_keyof] = ACTIONS(216),
- [anon_sym_unique] = ACTIONS(218),
- [anon_sym_unknown] = ACTIONS(220),
- [anon_sym_never] = ACTIONS(220),
- [anon_sym_LBRACE_PIPE] = ACTIONS(222),
- [sym__ternary_qmark] = ACTIONS(162),
- [sym_html_comment] = ACTIONS(5),
- },
- [165] = {
- [sym_declaration] = STATE(4381),
- [sym_import] = STATE(3306),
- [sym_variable_declaration] = STATE(4336),
- [sym_lexical_declaration] = STATE(4336),
- [sym_parenthesized_expression] = STATE(1338),
- [sym_expression] = STATE(1982),
- [sym_primary_expression] = STATE(1946),
- [sym_yield_expression] = STATE(2234),
- [sym_object] = STATE(2310),
- [sym_object_pattern] = STATE(5571),
- [sym_array] = STATE(2310),
- [sym_array_pattern] = STATE(5571),
- [sym_glimmer_template] = STATE(2234),
- [sym_jsx_element] = STATE(2234),
- [sym_jsx_opening_element] = STATE(3051),
- [sym_jsx_self_closing_element] = STATE(2234),
- [sym_class] = STATE(2310),
- [sym_class_declaration] = STATE(4336),
- [sym_function_expression] = STATE(2310),
- [sym_function_declaration] = STATE(4336),
- [sym_generator_function] = STATE(2310),
- [sym_generator_function_declaration] = STATE(4336),
- [sym_arrow_function] = STATE(2310),
- [sym__call_signature] = STATE(5569),
- [sym_call_expression] = STATE(2310),
- [sym_new_expression] = STATE(2234),
- [sym_await_expression] = STATE(2234),
- [sym_member_expression] = STATE(1338),
- [sym_subscript_expression] = STATE(1338),
- [sym_assignment_expression] = STATE(2234),
- [sym__augmented_assignment_lhs] = STATE(2899),
- [sym_augmented_assignment_expression] = STATE(2234),
- [sym__destructuring_pattern] = STATE(5571),
- [sym_ternary_expression] = STATE(2234),
- [sym_binary_expression] = STATE(2234),
- [sym_unary_expression] = STATE(2234),
- [sym_update_expression] = STATE(2234),
- [sym_string] = STATE(2310),
- [sym_template_string] = STATE(2310),
- [sym_regex] = STATE(2310),
- [sym_meta_property] = STATE(2310),
- [sym_decorator] = STATE(1244),
- [sym_formal_parameters] = STATE(3742),
- [sym_non_null_expression] = STATE(1338),
- [sym_function_signature] = STATE(4336),
- [sym_as_expression] = STATE(2234),
- [sym_satisfies_expression] = STATE(2234),
- [sym_instantiation_expression] = STATE(2234),
- [sym_ambient_declaration] = STATE(4336),
- [sym_abstract_class_declaration] = STATE(4336),
- [sym_module] = STATE(4336),
- [sym_internal_module] = STATE(2261),
- [sym_import_alias] = STATE(4336),
- [sym_interface_declaration] = STATE(4336),
- [sym_enum_declaration] = STATE(4336),
- [sym_type_alias_declaration] = STATE(4336),
- [sym_type_parameters] = STATE(5349),
- [aux_sym_export_statement_repeat1] = STATE(4256),
- [sym_identifier] = ACTIONS(1454),
- [anon_sym_export] = ACTIONS(1152),
- [anon_sym_type] = ACTIONS(1526),
- [anon_sym_namespace] = ACTIONS(1154),
- [anon_sym_LBRACE] = ACTIONS(700),
- [anon_sym_typeof] = ACTIONS(1180),
- [anon_sym_import] = ACTIONS(1528),
- [anon_sym_var] = ACTIONS(1530),
- [anon_sym_let] = ACTIONS(1532),
- [anon_sym_const] = ACTIONS(1534),
- [anon_sym_BANG] = ACTIONS(1160),
- [anon_sym_LPAREN] = ACTIONS(41),
- [anon_sym_await] = ACTIONS(1164),
- [anon_sym_yield] = ACTIONS(1166),
- [anon_sym_LBRACK] = ACTIONS(65),
- [sym_glimmer_opening_tag] = ACTIONS(67),
- [anon_sym_DQUOTE] = ACTIONS(69),
- [anon_sym_SQUOTE] = ACTIONS(71),
- [anon_sym_class] = ACTIONS(1536),
- [anon_sym_async] = ACTIONS(1538),
- [anon_sym_function] = ACTIONS(1540),
- [anon_sym_new] = ACTIONS(1458),
- [anon_sym_using] = ACTIONS(1174),
- [anon_sym_PLUS] = ACTIONS(1180),
- [anon_sym_DASH] = ACTIONS(1180),
- [anon_sym_SLASH] = ACTIONS(83),
- [anon_sym_LT] = ACTIONS(85),
- [anon_sym_TILDE] = ACTIONS(1160),
- [anon_sym_void] = ACTIONS(1180),
- [anon_sym_delete] = ACTIONS(1180),
- [anon_sym_PLUS_PLUS] = ACTIONS(1182),
- [anon_sym_DASH_DASH] = ACTIONS(1182),
- [sym_comment] = ACTIONS(5),
- [anon_sym_BQUOTE] = ACTIONS(89),
- [sym_number] = ACTIONS(91),
- [sym_private_property_identifier] = ACTIONS(1188),
- [sym_this] = ACTIONS(95),
- [sym_super] = ACTIONS(95),
- [sym_true] = ACTIONS(95),
- [sym_false] = ACTIONS(95),
- [sym_null] = ACTIONS(95),
- [sym_undefined] = ACTIONS(1460),
- [anon_sym_AT] = ACTIONS(99),
- [anon_sym_static] = ACTIONS(1152),
- [anon_sym_readonly] = ACTIONS(1152),
- [anon_sym_get] = ACTIONS(1152),
- [anon_sym_set] = ACTIONS(1152),
- [anon_sym_declare] = ACTIONS(1542),
- [anon_sym_public] = ACTIONS(1152),
- [anon_sym_private] = ACTIONS(1152),
- [anon_sym_protected] = ACTIONS(1152),
- [anon_sym_override] = ACTIONS(1152),
- [anon_sym_module] = ACTIONS(1544),
- [anon_sym_any] = ACTIONS(1152),
- [anon_sym_number] = ACTIONS(1152),
- [anon_sym_boolean] = ACTIONS(1152),
- [anon_sym_string] = ACTIONS(1152),
- [anon_sym_symbol] = ACTIONS(1152),
- [anon_sym_object] = ACTIONS(1152),
- [anon_sym_abstract] = ACTIONS(1546),
- [anon_sym_interface] = ACTIONS(1548),
- [anon_sym_enum] = ACTIONS(1550),
- [sym_html_comment] = ACTIONS(5),
- },
- [166] = {
- [sym_declaration] = STATE(788),
- [sym_import] = STATE(3306),
- [sym_variable_declaration] = STATE(861),
- [sym_lexical_declaration] = STATE(861),
- [sym_parenthesized_expression] = STATE(1338),
- [sym_expression] = STATE(2023),
- [sym_primary_expression] = STATE(1946),
- [sym_yield_expression] = STATE(2234),
- [sym_object] = STATE(2310),
- [sym_object_pattern] = STATE(5571),
- [sym_array] = STATE(2310),
- [sym_array_pattern] = STATE(5571),
- [sym_glimmer_template] = STATE(2234),
- [sym_jsx_element] = STATE(2234),
- [sym_jsx_opening_element] = STATE(3051),
- [sym_jsx_self_closing_element] = STATE(2234),
- [sym_class] = STATE(2310),
- [sym_class_declaration] = STATE(861),
- [sym_function_expression] = STATE(2310),
- [sym_function_declaration] = STATE(861),
- [sym_generator_function] = STATE(2310),
- [sym_generator_function_declaration] = STATE(861),
- [sym_arrow_function] = STATE(2310),
- [sym__call_signature] = STATE(5569),
- [sym_call_expression] = STATE(2310),
- [sym_new_expression] = STATE(2234),
- [sym_await_expression] = STATE(2234),
- [sym_member_expression] = STATE(1338),
- [sym_subscript_expression] = STATE(1338),
- [sym_assignment_expression] = STATE(2234),
- [sym__augmented_assignment_lhs] = STATE(2899),
- [sym_augmented_assignment_expression] = STATE(2234),
- [sym__destructuring_pattern] = STATE(5571),
- [sym_ternary_expression] = STATE(2234),
- [sym_binary_expression] = STATE(2234),
- [sym_unary_expression] = STATE(2234),
- [sym_update_expression] = STATE(2234),
- [sym_string] = STATE(2310),
- [sym_template_string] = STATE(2310),
- [sym_regex] = STATE(2310),
- [sym_meta_property] = STATE(2310),
- [sym_decorator] = STATE(1244),
- [sym_formal_parameters] = STATE(3742),
- [sym_non_null_expression] = STATE(1338),
- [sym_function_signature] = STATE(861),
- [sym_as_expression] = STATE(2234),
- [sym_satisfies_expression] = STATE(2234),
- [sym_instantiation_expression] = STATE(2234),
- [sym_ambient_declaration] = STATE(861),
- [sym_abstract_class_declaration] = STATE(861),
- [sym_module] = STATE(861),
- [sym_internal_module] = STATE(223),
- [sym_import_alias] = STATE(861),
- [sym_interface_declaration] = STATE(861),
- [sym_enum_declaration] = STATE(861),
- [sym_type_alias_declaration] = STATE(861),
- [sym_type_parameters] = STATE(5349),
- [aux_sym_export_statement_repeat1] = STATE(4317),
- [sym_identifier] = ACTIONS(1454),
- [anon_sym_export] = ACTIONS(1152),
- [anon_sym_type] = ACTIONS(1552),
- [anon_sym_namespace] = ACTIONS(1554),
- [anon_sym_LBRACE] = ACTIONS(700),
- [anon_sym_typeof] = ACTIONS(1180),
- [anon_sym_import] = ACTIONS(1556),
- [anon_sym_var] = ACTIONS(27),
- [anon_sym_let] = ACTIONS(1558),
- [anon_sym_const] = ACTIONS(31),
- [anon_sym_BANG] = ACTIONS(1160),
- [anon_sym_LPAREN] = ACTIONS(41),
- [anon_sym_await] = ACTIONS(1164),
- [anon_sym_yield] = ACTIONS(1166),
- [anon_sym_LBRACK] = ACTIONS(65),
- [sym_glimmer_opening_tag] = ACTIONS(67),
- [anon_sym_DQUOTE] = ACTIONS(69),
- [anon_sym_SQUOTE] = ACTIONS(71),
- [anon_sym_class] = ACTIONS(73),
- [anon_sym_async] = ACTIONS(1560),
- [anon_sym_function] = ACTIONS(77),
- [anon_sym_new] = ACTIONS(1458),
- [anon_sym_using] = ACTIONS(1174),
- [anon_sym_PLUS] = ACTIONS(1180),
- [anon_sym_DASH] = ACTIONS(1180),
- [anon_sym_SLASH] = ACTIONS(83),
- [anon_sym_LT] = ACTIONS(85),
- [anon_sym_TILDE] = ACTIONS(1160),
- [anon_sym_void] = ACTIONS(1180),
- [anon_sym_delete] = ACTIONS(1180),
- [anon_sym_PLUS_PLUS] = ACTIONS(1182),
- [anon_sym_DASH_DASH] = ACTIONS(1182),
- [sym_comment] = ACTIONS(5),
- [anon_sym_BQUOTE] = ACTIONS(89),
- [sym_number] = ACTIONS(91),
- [sym_private_property_identifier] = ACTIONS(1188),
- [sym_this] = ACTIONS(95),
- [sym_super] = ACTIONS(95),
- [sym_true] = ACTIONS(95),
- [sym_false] = ACTIONS(95),
- [sym_null] = ACTIONS(95),
- [sym_undefined] = ACTIONS(1460),
- [anon_sym_AT] = ACTIONS(99),
- [anon_sym_static] = ACTIONS(1152),
- [anon_sym_readonly] = ACTIONS(1152),
- [anon_sym_get] = ACTIONS(1152),
- [anon_sym_set] = ACTIONS(1152),
- [anon_sym_declare] = ACTIONS(1562),
- [anon_sym_public] = ACTIONS(1152),
- [anon_sym_private] = ACTIONS(1152),
- [anon_sym_protected] = ACTIONS(1152),
- [anon_sym_override] = ACTIONS(1152),
- [anon_sym_module] = ACTIONS(1564),
- [anon_sym_any] = ACTIONS(1152),
- [anon_sym_number] = ACTIONS(1152),
- [anon_sym_boolean] = ACTIONS(1152),
- [anon_sym_string] = ACTIONS(1152),
- [anon_sym_symbol] = ACTIONS(1152),
- [anon_sym_object] = ACTIONS(1152),
- [anon_sym_abstract] = ACTIONS(107),
- [anon_sym_interface] = ACTIONS(109),
- [anon_sym_enum] = ACTIONS(111),
- [sym_html_comment] = ACTIONS(5),
- },
- [167] = {
- [sym_declaration] = STATE(766),
- [sym_import] = STATE(3306),
- [sym_variable_declaration] = STATE(861),
- [sym_lexical_declaration] = STATE(861),
- [sym_parenthesized_expression] = STATE(1338),
- [sym_expression] = STATE(1949),
- [sym_primary_expression] = STATE(1946),
- [sym_yield_expression] = STATE(2234),
- [sym_object] = STATE(2310),
- [sym_object_pattern] = STATE(5571),
- [sym_array] = STATE(2310),
- [sym_array_pattern] = STATE(5571),
- [sym_glimmer_template] = STATE(2234),
- [sym_jsx_element] = STATE(2234),
- [sym_jsx_opening_element] = STATE(3051),
- [sym_jsx_self_closing_element] = STATE(2234),
- [sym_class] = STATE(2310),
- [sym_class_declaration] = STATE(861),
- [sym_function_expression] = STATE(2310),
- [sym_function_declaration] = STATE(861),
- [sym_generator_function] = STATE(2310),
- [sym_generator_function_declaration] = STATE(861),
- [sym_arrow_function] = STATE(2310),
- [sym__call_signature] = STATE(5569),
- [sym_call_expression] = STATE(2310),
- [sym_new_expression] = STATE(2234),
- [sym_await_expression] = STATE(2234),
- [sym_member_expression] = STATE(1338),
- [sym_subscript_expression] = STATE(1338),
- [sym_assignment_expression] = STATE(2234),
- [sym__augmented_assignment_lhs] = STATE(2899),
- [sym_augmented_assignment_expression] = STATE(2234),
- [sym__destructuring_pattern] = STATE(5571),
- [sym_ternary_expression] = STATE(2234),
- [sym_binary_expression] = STATE(2234),
- [sym_unary_expression] = STATE(2234),
- [sym_update_expression] = STATE(2234),
- [sym_string] = STATE(2310),
- [sym_template_string] = STATE(2310),
- [sym_regex] = STATE(2310),
- [sym_meta_property] = STATE(2310),
- [sym_decorator] = STATE(1244),
- [sym_formal_parameters] = STATE(3742),
- [sym_non_null_expression] = STATE(1338),
- [sym_function_signature] = STATE(861),
- [sym_as_expression] = STATE(2234),
- [sym_satisfies_expression] = STATE(2234),
- [sym_instantiation_expression] = STATE(2234),
- [sym_ambient_declaration] = STATE(861),
- [sym_abstract_class_declaration] = STATE(861),
- [sym_module] = STATE(861),
- [sym_internal_module] = STATE(223),
- [sym_import_alias] = STATE(861),
- [sym_interface_declaration] = STATE(861),
- [sym_enum_declaration] = STATE(861),
- [sym_type_alias_declaration] = STATE(861),
- [sym_type_parameters] = STATE(5349),
- [aux_sym_export_statement_repeat1] = STATE(4317),
- [sym_identifier] = ACTIONS(1454),
- [anon_sym_export] = ACTIONS(1152),
- [anon_sym_type] = ACTIONS(1552),
- [anon_sym_namespace] = ACTIONS(1554),
- [anon_sym_LBRACE] = ACTIONS(700),
- [anon_sym_typeof] = ACTIONS(1180),
- [anon_sym_import] = ACTIONS(1556),
- [anon_sym_var] = ACTIONS(27),
- [anon_sym_let] = ACTIONS(1558),
- [anon_sym_const] = ACTIONS(31),
- [anon_sym_BANG] = ACTIONS(1160),
- [anon_sym_LPAREN] = ACTIONS(41),
- [anon_sym_await] = ACTIONS(1164),
- [anon_sym_yield] = ACTIONS(1166),
- [anon_sym_LBRACK] = ACTIONS(65),
- [sym_glimmer_opening_tag] = ACTIONS(67),
- [anon_sym_DQUOTE] = ACTIONS(69),
- [anon_sym_SQUOTE] = ACTIONS(71),
- [anon_sym_class] = ACTIONS(73),
- [anon_sym_async] = ACTIONS(1560),
- [anon_sym_function] = ACTIONS(77),
- [anon_sym_new] = ACTIONS(1458),
- [anon_sym_using] = ACTIONS(1174),
- [anon_sym_PLUS] = ACTIONS(1180),
- [anon_sym_DASH] = ACTIONS(1180),
- [anon_sym_SLASH] = ACTIONS(83),
- [anon_sym_LT] = ACTIONS(85),
- [anon_sym_TILDE] = ACTIONS(1160),
- [anon_sym_void] = ACTIONS(1180),
- [anon_sym_delete] = ACTIONS(1180),
- [anon_sym_PLUS_PLUS] = ACTIONS(1182),
- [anon_sym_DASH_DASH] = ACTIONS(1182),
- [sym_comment] = ACTIONS(5),
- [anon_sym_BQUOTE] = ACTIONS(89),
- [sym_number] = ACTIONS(91),
- [sym_private_property_identifier] = ACTIONS(1188),
- [sym_this] = ACTIONS(95),
- [sym_super] = ACTIONS(95),
- [sym_true] = ACTIONS(95),
- [sym_false] = ACTIONS(95),
- [sym_null] = ACTIONS(95),
- [sym_undefined] = ACTIONS(1460),
- [anon_sym_AT] = ACTIONS(99),
- [anon_sym_static] = ACTIONS(1152),
- [anon_sym_readonly] = ACTIONS(1152),
- [anon_sym_get] = ACTIONS(1152),
- [anon_sym_set] = ACTIONS(1152),
- [anon_sym_declare] = ACTIONS(1562),
- [anon_sym_public] = ACTIONS(1152),
- [anon_sym_private] = ACTIONS(1152),
- [anon_sym_protected] = ACTIONS(1152),
- [anon_sym_override] = ACTIONS(1152),
- [anon_sym_module] = ACTIONS(1564),
- [anon_sym_any] = ACTIONS(1152),
- [anon_sym_number] = ACTIONS(1152),
- [anon_sym_boolean] = ACTIONS(1152),
- [anon_sym_string] = ACTIONS(1152),
- [anon_sym_symbol] = ACTIONS(1152),
- [anon_sym_object] = ACTIONS(1152),
- [anon_sym_abstract] = ACTIONS(107),
- [anon_sym_interface] = ACTIONS(109),
- [anon_sym_enum] = ACTIONS(111),
- [sym_html_comment] = ACTIONS(5),
- },
- [168] = {
- [sym_declaration] = STATE(788),
- [sym_import] = STATE(3306),
- [sym_variable_declaration] = STATE(861),
- [sym_lexical_declaration] = STATE(861),
- [sym_parenthesized_expression] = STATE(1338),
- [sym_expression] = STATE(2023),
- [sym_primary_expression] = STATE(1946),
- [sym_yield_expression] = STATE(2234),
- [sym_object] = STATE(2310),
- [sym_object_pattern] = STATE(5571),
- [sym_array] = STATE(2310),
- [sym_array_pattern] = STATE(5571),
- [sym_glimmer_template] = STATE(2234),
- [sym_jsx_element] = STATE(2234),
- [sym_jsx_opening_element] = STATE(3051),
- [sym_jsx_self_closing_element] = STATE(2234),
- [sym_class] = STATE(2310),
- [sym_class_declaration] = STATE(861),
- [sym_function_expression] = STATE(2310),
- [sym_function_declaration] = STATE(861),
- [sym_generator_function] = STATE(2310),
- [sym_generator_function_declaration] = STATE(861),
- [sym_arrow_function] = STATE(2310),
- [sym__call_signature] = STATE(5569),
- [sym_call_expression] = STATE(2310),
- [sym_new_expression] = STATE(2234),
- [sym_await_expression] = STATE(2234),
- [sym_member_expression] = STATE(1338),
- [sym_subscript_expression] = STATE(1338),
- [sym_assignment_expression] = STATE(2234),
- [sym__augmented_assignment_lhs] = STATE(2899),
- [sym_augmented_assignment_expression] = STATE(2234),
- [sym__destructuring_pattern] = STATE(5571),
- [sym_ternary_expression] = STATE(2234),
- [sym_binary_expression] = STATE(2234),
- [sym_unary_expression] = STATE(2234),
- [sym_update_expression] = STATE(2234),
- [sym_string] = STATE(2310),
- [sym_template_string] = STATE(2310),
- [sym_regex] = STATE(2310),
- [sym_meta_property] = STATE(2310),
- [sym_decorator] = STATE(1244),
- [sym_formal_parameters] = STATE(3742),
- [sym_non_null_expression] = STATE(1338),
- [sym_function_signature] = STATE(861),
- [sym_as_expression] = STATE(2234),
- [sym_satisfies_expression] = STATE(2234),
- [sym_instantiation_expression] = STATE(2234),
- [sym_ambient_declaration] = STATE(861),
- [sym_abstract_class_declaration] = STATE(861),
- [sym_module] = STATE(861),
- [sym_internal_module] = STATE(2332),
- [sym_import_alias] = STATE(861),
- [sym_interface_declaration] = STATE(861),
- [sym_enum_declaration] = STATE(861),
- [sym_type_alias_declaration] = STATE(861),
- [sym_type_parameters] = STATE(5349),
- [aux_sym_export_statement_repeat1] = STATE(4174),
- [sym_identifier] = ACTIONS(1454),
- [anon_sym_export] = ACTIONS(1152),
- [anon_sym_type] = ACTIONS(1552),
- [anon_sym_namespace] = ACTIONS(1154),
- [anon_sym_LBRACE] = ACTIONS(700),
- [anon_sym_typeof] = ACTIONS(1180),
- [anon_sym_import] = ACTIONS(1556),
- [anon_sym_var] = ACTIONS(27),
- [anon_sym_let] = ACTIONS(1558),
- [anon_sym_const] = ACTIONS(31),
- [anon_sym_BANG] = ACTIONS(1160),
- [anon_sym_LPAREN] = ACTIONS(41),
- [anon_sym_await] = ACTIONS(1164),
- [anon_sym_yield] = ACTIONS(1166),
- [anon_sym_LBRACK] = ACTIONS(65),
- [sym_glimmer_opening_tag] = ACTIONS(67),
- [anon_sym_DQUOTE] = ACTIONS(69),
- [anon_sym_SQUOTE] = ACTIONS(71),
- [anon_sym_class] = ACTIONS(566),
- [anon_sym_async] = ACTIONS(1566),
- [anon_sym_function] = ACTIONS(570),
- [anon_sym_new] = ACTIONS(1458),
- [anon_sym_using] = ACTIONS(1174),
- [anon_sym_PLUS] = ACTIONS(1180),
- [anon_sym_DASH] = ACTIONS(1180),
- [anon_sym_SLASH] = ACTIONS(83),
- [anon_sym_LT] = ACTIONS(85),
- [anon_sym_TILDE] = ACTIONS(1160),
- [anon_sym_void] = ACTIONS(1180),
- [anon_sym_delete] = ACTIONS(1180),
- [anon_sym_PLUS_PLUS] = ACTIONS(1182),
- [anon_sym_DASH_DASH] = ACTIONS(1182),
- [sym_comment] = ACTIONS(5),
- [anon_sym_BQUOTE] = ACTIONS(89),
- [sym_number] = ACTIONS(91),
- [sym_private_property_identifier] = ACTIONS(1188),
- [sym_this] = ACTIONS(95),
- [sym_super] = ACTIONS(95),
- [sym_true] = ACTIONS(95),
- [sym_false] = ACTIONS(95),
- [sym_null] = ACTIONS(95),
- [sym_undefined] = ACTIONS(1460),
- [anon_sym_AT] = ACTIONS(99),
- [anon_sym_static] = ACTIONS(1152),
- [anon_sym_readonly] = ACTIONS(1152),
- [anon_sym_get] = ACTIONS(1152),
- [anon_sym_set] = ACTIONS(1152),
- [anon_sym_declare] = ACTIONS(1568),
- [anon_sym_public] = ACTIONS(1152),
- [anon_sym_private] = ACTIONS(1152),
- [anon_sym_protected] = ACTIONS(1152),
- [anon_sym_override] = ACTIONS(1152),
- [anon_sym_module] = ACTIONS(1570),
- [anon_sym_any] = ACTIONS(1152),
- [anon_sym_number] = ACTIONS(1152),
- [anon_sym_boolean] = ACTIONS(1152),
- [anon_sym_string] = ACTIONS(1152),
- [anon_sym_symbol] = ACTIONS(1152),
- [anon_sym_object] = ACTIONS(1152),
- [anon_sym_abstract] = ACTIONS(107),
- [anon_sym_interface] = ACTIONS(109),
- [anon_sym_enum] = ACTIONS(111),
- [sym_html_comment] = ACTIONS(5),
- },
- [169] = {
- [sym_declaration] = STATE(3999),
- [sym_import] = STATE(3306),
- [sym_variable_declaration] = STATE(4336),
- [sym_lexical_declaration] = STATE(4336),
- [sym_parenthesized_expression] = STATE(1338),
- [sym_expression] = STATE(2017),
- [sym_primary_expression] = STATE(1946),
- [sym_yield_expression] = STATE(2234),
- [sym_object] = STATE(2310),
- [sym_object_pattern] = STATE(5571),
- [sym_array] = STATE(2310),
- [sym_array_pattern] = STATE(5571),
- [sym_glimmer_template] = STATE(2234),
- [sym_jsx_element] = STATE(2234),
- [sym_jsx_opening_element] = STATE(3051),
- [sym_jsx_self_closing_element] = STATE(2234),
- [sym_class] = STATE(2310),
- [sym_class_declaration] = STATE(4336),
- [sym_function_expression] = STATE(2310),
- [sym_function_declaration] = STATE(4336),
- [sym_generator_function] = STATE(2310),
- [sym_generator_function_declaration] = STATE(4336),
- [sym_arrow_function] = STATE(2310),
- [sym__call_signature] = STATE(5569),
- [sym_call_expression] = STATE(2310),
- [sym_new_expression] = STATE(2234),
- [sym_await_expression] = STATE(2234),
- [sym_member_expression] = STATE(1338),
- [sym_subscript_expression] = STATE(1338),
- [sym_assignment_expression] = STATE(2234),
- [sym__augmented_assignment_lhs] = STATE(2899),
- [sym_augmented_assignment_expression] = STATE(2234),
- [sym__destructuring_pattern] = STATE(5571),
- [sym_ternary_expression] = STATE(2234),
- [sym_binary_expression] = STATE(2234),
- [sym_unary_expression] = STATE(2234),
- [sym_update_expression] = STATE(2234),
- [sym_string] = STATE(2310),
- [sym_template_string] = STATE(2310),
- [sym_regex] = STATE(2310),
- [sym_meta_property] = STATE(2310),
- [sym_decorator] = STATE(1244),
- [sym_formal_parameters] = STATE(3742),
- [sym_non_null_expression] = STATE(1338),
- [sym_function_signature] = STATE(4336),
- [sym_as_expression] = STATE(2234),
- [sym_satisfies_expression] = STATE(2234),
- [sym_instantiation_expression] = STATE(2234),
- [sym_ambient_declaration] = STATE(4336),
- [sym_abstract_class_declaration] = STATE(4336),
- [sym_module] = STATE(4336),
- [sym_internal_module] = STATE(2261),
- [sym_import_alias] = STATE(4336),
- [sym_interface_declaration] = STATE(4336),
- [sym_enum_declaration] = STATE(4336),
- [sym_type_alias_declaration] = STATE(4336),
- [sym_type_parameters] = STATE(5349),
- [aux_sym_export_statement_repeat1] = STATE(4256),
- [sym_identifier] = ACTIONS(1454),
- [anon_sym_export] = ACTIONS(1152),
- [anon_sym_type] = ACTIONS(1526),
- [anon_sym_namespace] = ACTIONS(1154),
- [anon_sym_LBRACE] = ACTIONS(700),
- [anon_sym_typeof] = ACTIONS(1180),
- [anon_sym_import] = ACTIONS(1528),
- [anon_sym_var] = ACTIONS(1530),
- [anon_sym_let] = ACTIONS(1532),
- [anon_sym_const] = ACTIONS(1534),
- [anon_sym_BANG] = ACTIONS(1160),
- [anon_sym_LPAREN] = ACTIONS(41),
- [anon_sym_await] = ACTIONS(1164),
- [anon_sym_yield] = ACTIONS(1166),
- [anon_sym_LBRACK] = ACTIONS(65),
- [sym_glimmer_opening_tag] = ACTIONS(67),
- [anon_sym_DQUOTE] = ACTIONS(69),
- [anon_sym_SQUOTE] = ACTIONS(71),
- [anon_sym_class] = ACTIONS(1536),
- [anon_sym_async] = ACTIONS(1538),
- [anon_sym_function] = ACTIONS(1540),
- [anon_sym_new] = ACTIONS(1458),
- [anon_sym_using] = ACTIONS(1174),
- [anon_sym_PLUS] = ACTIONS(1180),
- [anon_sym_DASH] = ACTIONS(1180),
- [anon_sym_SLASH] = ACTIONS(83),
- [anon_sym_LT] = ACTIONS(85),
- [anon_sym_TILDE] = ACTIONS(1160),
- [anon_sym_void] = ACTIONS(1180),
- [anon_sym_delete] = ACTIONS(1180),
- [anon_sym_PLUS_PLUS] = ACTIONS(1182),
- [anon_sym_DASH_DASH] = ACTIONS(1182),
- [sym_comment] = ACTIONS(5),
- [anon_sym_BQUOTE] = ACTIONS(89),
- [sym_number] = ACTIONS(91),
- [sym_private_property_identifier] = ACTIONS(1188),
- [sym_this] = ACTIONS(95),
- [sym_super] = ACTIONS(95),
- [sym_true] = ACTIONS(95),
- [sym_false] = ACTIONS(95),
- [sym_null] = ACTIONS(95),
- [sym_undefined] = ACTIONS(1460),
- [anon_sym_AT] = ACTIONS(99),
- [anon_sym_static] = ACTIONS(1152),
- [anon_sym_readonly] = ACTIONS(1152),
- [anon_sym_get] = ACTIONS(1152),
- [anon_sym_set] = ACTIONS(1152),
- [anon_sym_declare] = ACTIONS(1542),
- [anon_sym_public] = ACTIONS(1152),
- [anon_sym_private] = ACTIONS(1152),
- [anon_sym_protected] = ACTIONS(1152),
- [anon_sym_override] = ACTIONS(1152),
- [anon_sym_module] = ACTIONS(1544),
- [anon_sym_any] = ACTIONS(1152),
- [anon_sym_number] = ACTIONS(1152),
- [anon_sym_boolean] = ACTIONS(1152),
- [anon_sym_string] = ACTIONS(1152),
- [anon_sym_symbol] = ACTIONS(1152),
- [anon_sym_object] = ACTIONS(1152),
- [anon_sym_abstract] = ACTIONS(1546),
- [anon_sym_interface] = ACTIONS(1548),
- [anon_sym_enum] = ACTIONS(1550),
- [sym_html_comment] = ACTIONS(5),
- },
- [170] = {
- [sym_declaration] = STATE(766),
- [sym_import] = STATE(3306),
- [sym_variable_declaration] = STATE(861),
- [sym_lexical_declaration] = STATE(861),
- [sym_parenthesized_expression] = STATE(1338),
- [sym_expression] = STATE(1949),
- [sym_primary_expression] = STATE(1946),
- [sym_yield_expression] = STATE(2234),
- [sym_object] = STATE(2310),
- [sym_object_pattern] = STATE(5571),
- [sym_array] = STATE(2310),
- [sym_array_pattern] = STATE(5571),
- [sym_glimmer_template] = STATE(2234),
- [sym_jsx_element] = STATE(2234),
- [sym_jsx_opening_element] = STATE(3051),
- [sym_jsx_self_closing_element] = STATE(2234),
- [sym_class] = STATE(2310),
- [sym_class_declaration] = STATE(861),
- [sym_function_expression] = STATE(2310),
- [sym_function_declaration] = STATE(861),
- [sym_generator_function] = STATE(2310),
- [sym_generator_function_declaration] = STATE(861),
- [sym_arrow_function] = STATE(2310),
- [sym__call_signature] = STATE(5569),
- [sym_call_expression] = STATE(2310),
- [sym_new_expression] = STATE(2234),
- [sym_await_expression] = STATE(2234),
- [sym_member_expression] = STATE(1338),
- [sym_subscript_expression] = STATE(1338),
- [sym_assignment_expression] = STATE(2234),
- [sym__augmented_assignment_lhs] = STATE(2899),
- [sym_augmented_assignment_expression] = STATE(2234),
- [sym__destructuring_pattern] = STATE(5571),
- [sym_ternary_expression] = STATE(2234),
- [sym_binary_expression] = STATE(2234),
- [sym_unary_expression] = STATE(2234),
- [sym_update_expression] = STATE(2234),
- [sym_string] = STATE(2310),
- [sym_template_string] = STATE(2310),
- [sym_regex] = STATE(2310),
- [sym_meta_property] = STATE(2310),
- [sym_decorator] = STATE(1244),
- [sym_formal_parameters] = STATE(3742),
- [sym_non_null_expression] = STATE(1338),
- [sym_function_signature] = STATE(861),
- [sym_as_expression] = STATE(2234),
- [sym_satisfies_expression] = STATE(2234),
- [sym_instantiation_expression] = STATE(2234),
- [sym_ambient_declaration] = STATE(861),
- [sym_abstract_class_declaration] = STATE(861),
- [sym_module] = STATE(861),
- [sym_internal_module] = STATE(2332),
- [sym_import_alias] = STATE(861),
- [sym_interface_declaration] = STATE(861),
- [sym_enum_declaration] = STATE(861),
- [sym_type_alias_declaration] = STATE(861),
- [sym_type_parameters] = STATE(5349),
- [aux_sym_export_statement_repeat1] = STATE(4174),
- [sym_identifier] = ACTIONS(1454),
- [anon_sym_export] = ACTIONS(1152),
- [anon_sym_type] = ACTIONS(1552),
- [anon_sym_namespace] = ACTIONS(1154),
- [anon_sym_LBRACE] = ACTIONS(700),
- [anon_sym_typeof] = ACTIONS(1180),
- [anon_sym_import] = ACTIONS(1556),
- [anon_sym_var] = ACTIONS(27),
- [anon_sym_let] = ACTIONS(1558),
- [anon_sym_const] = ACTIONS(31),
- [anon_sym_BANG] = ACTIONS(1160),
- [anon_sym_LPAREN] = ACTIONS(41),
- [anon_sym_await] = ACTIONS(1164),
- [anon_sym_yield] = ACTIONS(1166),
- [anon_sym_LBRACK] = ACTIONS(65),
- [sym_glimmer_opening_tag] = ACTIONS(67),
- [anon_sym_DQUOTE] = ACTIONS(69),
- [anon_sym_SQUOTE] = ACTIONS(71),
- [anon_sym_class] = ACTIONS(566),
- [anon_sym_async] = ACTIONS(1566),
- [anon_sym_function] = ACTIONS(570),
- [anon_sym_new] = ACTIONS(1458),
- [anon_sym_using] = ACTIONS(1174),
- [anon_sym_PLUS] = ACTIONS(1180),
- [anon_sym_DASH] = ACTIONS(1180),
- [anon_sym_SLASH] = ACTIONS(83),
- [anon_sym_LT] = ACTIONS(85),
- [anon_sym_TILDE] = ACTIONS(1160),
- [anon_sym_void] = ACTIONS(1180),
- [anon_sym_delete] = ACTIONS(1180),
- [anon_sym_PLUS_PLUS] = ACTIONS(1182),
- [anon_sym_DASH_DASH] = ACTIONS(1182),
- [sym_comment] = ACTIONS(5),
- [anon_sym_BQUOTE] = ACTIONS(89),
- [sym_number] = ACTIONS(91),
- [sym_private_property_identifier] = ACTIONS(1188),
- [sym_this] = ACTIONS(95),
- [sym_super] = ACTIONS(95),
- [sym_true] = ACTIONS(95),
- [sym_false] = ACTIONS(95),
- [sym_null] = ACTIONS(95),
- [sym_undefined] = ACTIONS(1460),
- [anon_sym_AT] = ACTIONS(99),
- [anon_sym_static] = ACTIONS(1152),
- [anon_sym_readonly] = ACTIONS(1152),
- [anon_sym_get] = ACTIONS(1152),
- [anon_sym_set] = ACTIONS(1152),
- [anon_sym_declare] = ACTIONS(1568),
- [anon_sym_public] = ACTIONS(1152),
- [anon_sym_private] = ACTIONS(1152),
- [anon_sym_protected] = ACTIONS(1152),
- [anon_sym_override] = ACTIONS(1152),
- [anon_sym_module] = ACTIONS(1570),
- [anon_sym_any] = ACTIONS(1152),
- [anon_sym_number] = ACTIONS(1152),
- [anon_sym_boolean] = ACTIONS(1152),
- [anon_sym_string] = ACTIONS(1152),
- [anon_sym_symbol] = ACTIONS(1152),
- [anon_sym_object] = ACTIONS(1152),
- [anon_sym_abstract] = ACTIONS(107),
- [anon_sym_interface] = ACTIONS(109),
- [anon_sym_enum] = ACTIONS(111),
- [sym_html_comment] = ACTIONS(5),
- },
- [171] = {
- [sym_declaration] = STATE(788),
- [sym_import] = STATE(3306),
- [sym_variable_declaration] = STATE(861),
- [sym_lexical_declaration] = STATE(861),
- [sym_parenthesized_expression] = STATE(1338),
- [sym_expression] = STATE(2023),
- [sym_primary_expression] = STATE(1946),
- [sym_yield_expression] = STATE(2234),
- [sym_object] = STATE(2310),
- [sym_object_pattern] = STATE(5571),
- [sym_array] = STATE(2310),
- [sym_array_pattern] = STATE(5571),
- [sym_glimmer_template] = STATE(2234),
- [sym_jsx_element] = STATE(2234),
- [sym_jsx_opening_element] = STATE(3051),
- [sym_jsx_self_closing_element] = STATE(2234),
- [sym_class] = STATE(2310),
- [sym_class_declaration] = STATE(861),
- [sym_function_expression] = STATE(2310),
- [sym_function_declaration] = STATE(861),
- [sym_generator_function] = STATE(2310),
- [sym_generator_function_declaration] = STATE(861),
- [sym_arrow_function] = STATE(2310),
- [sym__call_signature] = STATE(5569),
- [sym_call_expression] = STATE(2310),
- [sym_new_expression] = STATE(2234),
- [sym_await_expression] = STATE(2234),
- [sym_member_expression] = STATE(1338),
- [sym_subscript_expression] = STATE(1338),
- [sym_assignment_expression] = STATE(2234),
- [sym__augmented_assignment_lhs] = STATE(2899),
- [sym_augmented_assignment_expression] = STATE(2234),
- [sym__destructuring_pattern] = STATE(5571),
- [sym_ternary_expression] = STATE(2234),
- [sym_binary_expression] = STATE(2234),
- [sym_unary_expression] = STATE(2234),
- [sym_update_expression] = STATE(2234),
- [sym_string] = STATE(2310),
- [sym_template_string] = STATE(2310),
- [sym_regex] = STATE(2310),
- [sym_meta_property] = STATE(2310),
- [sym_decorator] = STATE(1244),
- [sym_formal_parameters] = STATE(3742),
- [sym_non_null_expression] = STATE(1338),
- [sym_function_signature] = STATE(861),
- [sym_as_expression] = STATE(2234),
- [sym_satisfies_expression] = STATE(2234),
- [sym_instantiation_expression] = STATE(2234),
- [sym_ambient_declaration] = STATE(861),
- [sym_abstract_class_declaration] = STATE(861),
- [sym_module] = STATE(861),
- [sym_internal_module] = STATE(2332),
- [sym_import_alias] = STATE(861),
- [sym_interface_declaration] = STATE(861),
- [sym_enum_declaration] = STATE(861),
- [sym_type_alias_declaration] = STATE(861),
- [sym_type_parameters] = STATE(5349),
- [aux_sym_export_statement_repeat1] = STATE(4174),
- [sym_identifier] = ACTIONS(1454),
- [anon_sym_export] = ACTIONS(1152),
- [anon_sym_type] = ACTIONS(1552),
- [anon_sym_namespace] = ACTIONS(1154),
- [anon_sym_LBRACE] = ACTIONS(700),
- [anon_sym_typeof] = ACTIONS(1180),
- [anon_sym_import] = ACTIONS(1556),
- [anon_sym_var] = ACTIONS(27),
- [anon_sym_let] = ACTIONS(1558),
- [anon_sym_const] = ACTIONS(31),
- [anon_sym_BANG] = ACTIONS(1160),
- [anon_sym_LPAREN] = ACTIONS(41),
- [anon_sym_await] = ACTIONS(1164),
- [anon_sym_yield] = ACTIONS(1166),
- [anon_sym_LBRACK] = ACTIONS(65),
- [sym_glimmer_opening_tag] = ACTIONS(67),
- [anon_sym_DQUOTE] = ACTIONS(69),
- [anon_sym_SQUOTE] = ACTIONS(71),
- [anon_sym_class] = ACTIONS(566),
- [anon_sym_async] = ACTIONS(1566),
- [anon_sym_function] = ACTIONS(570),
- [anon_sym_new] = ACTIONS(1458),
- [anon_sym_using] = ACTIONS(1174),
- [anon_sym_PLUS] = ACTIONS(1180),
- [anon_sym_DASH] = ACTIONS(1180),
- [anon_sym_SLASH] = ACTIONS(83),
- [anon_sym_LT] = ACTIONS(85),
- [anon_sym_TILDE] = ACTIONS(1160),
- [anon_sym_void] = ACTIONS(1180),
- [anon_sym_delete] = ACTIONS(1180),
- [anon_sym_PLUS_PLUS] = ACTIONS(1182),
- [anon_sym_DASH_DASH] = ACTIONS(1182),
- [sym_comment] = ACTIONS(5),
- [anon_sym_BQUOTE] = ACTIONS(89),
- [sym_number] = ACTIONS(91),
- [sym_private_property_identifier] = ACTIONS(1188),
- [sym_this] = ACTIONS(95),
- [sym_super] = ACTIONS(95),
- [sym_true] = ACTIONS(95),
- [sym_false] = ACTIONS(95),
- [sym_null] = ACTIONS(95),
- [sym_undefined] = ACTIONS(1460),
- [anon_sym_AT] = ACTIONS(99),
- [anon_sym_static] = ACTIONS(1152),
- [anon_sym_readonly] = ACTIONS(1152),
- [anon_sym_get] = ACTIONS(1152),
- [anon_sym_set] = ACTIONS(1152),
- [anon_sym_declare] = ACTIONS(1562),
- [anon_sym_public] = ACTIONS(1152),
- [anon_sym_private] = ACTIONS(1152),
- [anon_sym_protected] = ACTIONS(1152),
- [anon_sym_override] = ACTIONS(1152),
- [anon_sym_module] = ACTIONS(1564),
- [anon_sym_any] = ACTIONS(1152),
- [anon_sym_number] = ACTIONS(1152),
- [anon_sym_boolean] = ACTIONS(1152),
- [anon_sym_string] = ACTIONS(1152),
- [anon_sym_symbol] = ACTIONS(1152),
- [anon_sym_object] = ACTIONS(1152),
- [anon_sym_abstract] = ACTIONS(107),
- [anon_sym_interface] = ACTIONS(109),
- [anon_sym_enum] = ACTIONS(111),
- [sym_html_comment] = ACTIONS(5),
- },
- [172] = {
- [sym_declaration] = STATE(766),
- [sym_import] = STATE(3306),
- [sym_variable_declaration] = STATE(861),
- [sym_lexical_declaration] = STATE(861),
- [sym_parenthesized_expression] = STATE(1338),
- [sym_expression] = STATE(1949),
- [sym_primary_expression] = STATE(1946),
- [sym_yield_expression] = STATE(2234),
- [sym_object] = STATE(2310),
- [sym_object_pattern] = STATE(5571),
- [sym_array] = STATE(2310),
- [sym_array_pattern] = STATE(5571),
- [sym_glimmer_template] = STATE(2234),
- [sym_jsx_element] = STATE(2234),
- [sym_jsx_opening_element] = STATE(3051),
- [sym_jsx_self_closing_element] = STATE(2234),
- [sym_class] = STATE(2310),
- [sym_class_declaration] = STATE(861),
- [sym_function_expression] = STATE(2310),
- [sym_function_declaration] = STATE(861),
- [sym_generator_function] = STATE(2310),
- [sym_generator_function_declaration] = STATE(861),
- [sym_arrow_function] = STATE(2310),
- [sym__call_signature] = STATE(5569),
- [sym_call_expression] = STATE(2310),
- [sym_new_expression] = STATE(2234),
- [sym_await_expression] = STATE(2234),
- [sym_member_expression] = STATE(1338),
- [sym_subscript_expression] = STATE(1338),
- [sym_assignment_expression] = STATE(2234),
- [sym__augmented_assignment_lhs] = STATE(2899),
- [sym_augmented_assignment_expression] = STATE(2234),
- [sym__destructuring_pattern] = STATE(5571),
- [sym_ternary_expression] = STATE(2234),
- [sym_binary_expression] = STATE(2234),
- [sym_unary_expression] = STATE(2234),
- [sym_update_expression] = STATE(2234),
- [sym_string] = STATE(2310),
- [sym_template_string] = STATE(2310),
- [sym_regex] = STATE(2310),
- [sym_meta_property] = STATE(2310),
- [sym_decorator] = STATE(1244),
- [sym_formal_parameters] = STATE(3742),
- [sym_non_null_expression] = STATE(1338),
- [sym_function_signature] = STATE(861),
- [sym_as_expression] = STATE(2234),
- [sym_satisfies_expression] = STATE(2234),
- [sym_instantiation_expression] = STATE(2234),
- [sym_ambient_declaration] = STATE(861),
- [sym_abstract_class_declaration] = STATE(861),
- [sym_module] = STATE(861),
- [sym_internal_module] = STATE(2332),
- [sym_import_alias] = STATE(861),
- [sym_interface_declaration] = STATE(861),
- [sym_enum_declaration] = STATE(861),
- [sym_type_alias_declaration] = STATE(861),
- [sym_type_parameters] = STATE(5349),
- [aux_sym_export_statement_repeat1] = STATE(4174),
- [sym_identifier] = ACTIONS(1454),
- [anon_sym_export] = ACTIONS(1152),
- [anon_sym_type] = ACTIONS(1552),
- [anon_sym_namespace] = ACTIONS(1154),
- [anon_sym_LBRACE] = ACTIONS(700),
- [anon_sym_typeof] = ACTIONS(1180),
- [anon_sym_import] = ACTIONS(1556),
- [anon_sym_var] = ACTIONS(27),
- [anon_sym_let] = ACTIONS(1558),
- [anon_sym_const] = ACTIONS(31),
- [anon_sym_BANG] = ACTIONS(1160),
- [anon_sym_LPAREN] = ACTIONS(41),
- [anon_sym_await] = ACTIONS(1164),
- [anon_sym_yield] = ACTIONS(1166),
- [anon_sym_LBRACK] = ACTIONS(65),
- [sym_glimmer_opening_tag] = ACTIONS(67),
- [anon_sym_DQUOTE] = ACTIONS(69),
- [anon_sym_SQUOTE] = ACTIONS(71),
- [anon_sym_class] = ACTIONS(566),
- [anon_sym_async] = ACTIONS(1566),
- [anon_sym_function] = ACTIONS(570),
- [anon_sym_new] = ACTIONS(1458),
- [anon_sym_using] = ACTIONS(1174),
- [anon_sym_PLUS] = ACTIONS(1180),
- [anon_sym_DASH] = ACTIONS(1180),
- [anon_sym_SLASH] = ACTIONS(83),
- [anon_sym_LT] = ACTIONS(85),
- [anon_sym_TILDE] = ACTIONS(1160),
- [anon_sym_void] = ACTIONS(1180),
- [anon_sym_delete] = ACTIONS(1180),
- [anon_sym_PLUS_PLUS] = ACTIONS(1182),
- [anon_sym_DASH_DASH] = ACTIONS(1182),
- [sym_comment] = ACTIONS(5),
- [anon_sym_BQUOTE] = ACTIONS(89),
- [sym_number] = ACTIONS(91),
- [sym_private_property_identifier] = ACTIONS(1188),
- [sym_this] = ACTIONS(95),
- [sym_super] = ACTIONS(95),
- [sym_true] = ACTIONS(95),
- [sym_false] = ACTIONS(95),
- [sym_null] = ACTIONS(95),
- [sym_undefined] = ACTIONS(1460),
- [anon_sym_AT] = ACTIONS(99),
- [anon_sym_static] = ACTIONS(1152),
- [anon_sym_readonly] = ACTIONS(1152),
- [anon_sym_get] = ACTIONS(1152),
- [anon_sym_set] = ACTIONS(1152),
- [anon_sym_declare] = ACTIONS(1562),
- [anon_sym_public] = ACTIONS(1152),
- [anon_sym_private] = ACTIONS(1152),
- [anon_sym_protected] = ACTIONS(1152),
- [anon_sym_override] = ACTIONS(1152),
- [anon_sym_module] = ACTIONS(1564),
- [anon_sym_any] = ACTIONS(1152),
- [anon_sym_number] = ACTIONS(1152),
- [anon_sym_boolean] = ACTIONS(1152),
- [anon_sym_string] = ACTIONS(1152),
- [anon_sym_symbol] = ACTIONS(1152),
- [anon_sym_object] = ACTIONS(1152),
- [anon_sym_abstract] = ACTIONS(107),
- [anon_sym_interface] = ACTIONS(109),
- [anon_sym_enum] = ACTIONS(111),
- [sym_html_comment] = ACTIONS(5),
- },
- [173] = {
- [sym_import] = STATE(5087),
- [sym_nested_identifier] = STATE(5707),
- [sym_string] = STATE(2889),
- [sym_formal_parameters] = STATE(5709),
- [sym_nested_type_identifier] = STATE(2828),
- [sym__type_query_member_expression_in_type_annotation] = STATE(2846),
- [sym__type_query_call_expression_in_type_annotation] = STATE(2850),
- [sym_type] = STATE(3014),
- [sym_constructor_type] = STATE(2896),
- [sym_primary_type] = STATE(2897),
- [sym_template_literal_type] = STATE(2885),
- [sym_infer_type] = STATE(2896),
- [sym_conditional_type] = STATE(2885),
- [sym_generic_type] = STATE(2885),
- [sym_type_query] = STATE(2885),
- [sym_index_type_query] = STATE(2885),
- [sym_lookup_type] = STATE(2885),
- [sym_literal_type] = STATE(2885),
- [sym__number] = STATE(2903),
- [sym_existential_type] = STATE(2885),
- [sym_flow_maybe_type] = STATE(2885),
- [sym_parenthesized_type] = STATE(2885),
- [sym_predefined_type] = STATE(2885),
- [sym_object_type] = STATE(2885),
- [sym_type_parameters] = STATE(5435),
- [sym_array_type] = STATE(2885),
- [sym_tuple_type] = STATE(2885),
- [sym_readonly_type] = STATE(2896),
- [sym_union_type] = STATE(2885),
- [sym_intersection_type] = STATE(2885),
- [sym_function_type] = STATE(2896),
- [sym_identifier] = ACTIONS(1496),
- [anon_sym_STAR] = ACTIONS(117),
- [anon_sym_EQ] = ACTIONS(872),
- [anon_sym_as] = ACTIONS(122),
- [anon_sym_LBRACE] = ACTIONS(1498),
- [anon_sym_COMMA] = ACTIONS(162),
- [anon_sym_typeof] = ACTIONS(1500),
- [anon_sym_import] = ACTIONS(133),
- [anon_sym_const] = ACTIONS(135),
- [anon_sym_BANG] = ACTIONS(122),
- [anon_sym_LPAREN] = ACTIONS(1502),
- [anon_sym_in] = ACTIONS(122),
- [anon_sym_of] = ACTIONS(122),
- [anon_sym_SEMI] = ACTIONS(162),
- [anon_sym_LBRACK] = ACTIONS(1504),
- [anon_sym_GT] = ACTIONS(122),
- [anon_sym_DOT] = ACTIONS(122),
- [anon_sym_DQUOTE] = ACTIONS(1506),
- [anon_sym_SQUOTE] = ACTIONS(1508),
- [anon_sym_EQ_GT] = ACTIONS(878),
- [anon_sym_QMARK_DOT] = ACTIONS(162),
- [anon_sym_new] = ACTIONS(1510),
- [anon_sym_PLUS_EQ] = ACTIONS(168),
- [anon_sym_DASH_EQ] = ACTIONS(168),
- [anon_sym_STAR_EQ] = ACTIONS(168),
- [anon_sym_SLASH_EQ] = ACTIONS(168),
- [anon_sym_PERCENT_EQ] = ACTIONS(168),
- [anon_sym_CARET_EQ] = ACTIONS(168),
- [anon_sym_AMP_EQ] = ACTIONS(168),
- [anon_sym_PIPE_EQ] = ACTIONS(168),
- [anon_sym_GT_GT_EQ] = ACTIONS(168),
- [anon_sym_GT_GT_GT_EQ] = ACTIONS(168),
- [anon_sym_LT_LT_EQ] = ACTIONS(168),
- [anon_sym_STAR_STAR_EQ] = ACTIONS(168),
- [anon_sym_AMP_AMP_EQ] = ACTIONS(168),
- [anon_sym_PIPE_PIPE_EQ] = ACTIONS(168),
- [anon_sym_QMARK_QMARK_EQ] = ACTIONS(168),
- [anon_sym_AMP_AMP] = ACTIONS(122),
- [anon_sym_PIPE_PIPE] = ACTIONS(122),
- [anon_sym_GT_GT] = ACTIONS(122),
- [anon_sym_GT_GT_GT] = ACTIONS(122),
- [anon_sym_LT_LT] = ACTIONS(122),
- [anon_sym_AMP] = ACTIONS(172),
- [anon_sym_CARET] = ACTIONS(122),
- [anon_sym_PIPE] = ACTIONS(174),
- [anon_sym_PLUS] = ACTIONS(1512),
- [anon_sym_DASH] = ACTIONS(1512),
- [anon_sym_SLASH] = ACTIONS(122),
- [anon_sym_PERCENT] = ACTIONS(122),
- [anon_sym_STAR_STAR] = ACTIONS(122),
- [anon_sym_LT] = ACTIONS(1514),
- [anon_sym_LT_EQ] = ACTIONS(162),
- [anon_sym_EQ_EQ] = ACTIONS(122),
- [anon_sym_EQ_EQ_EQ] = ACTIONS(162),
- [anon_sym_BANG_EQ] = ACTIONS(122),
- [anon_sym_BANG_EQ_EQ] = ACTIONS(162),
- [anon_sym_GT_EQ] = ACTIONS(162),
- [anon_sym_QMARK_QMARK] = ACTIONS(122),
- [anon_sym_instanceof] = ACTIONS(122),
- [anon_sym_void] = ACTIONS(220),
- [anon_sym_PLUS_PLUS] = ACTIONS(162),
- [anon_sym_DASH_DASH] = ACTIONS(162),
- [sym_comment] = ACTIONS(5),
- [anon_sym_BQUOTE] = ACTIONS(1516),
- [sym_number] = ACTIONS(1518),
- [sym_this] = ACTIONS(1520),
- [sym_true] = ACTIONS(1522),
- [sym_false] = ACTIONS(1522),
- [sym_null] = ACTIONS(1522),
- [sym_undefined] = ACTIONS(1522),
- [anon_sym_readonly] = ACTIONS(1524),
- [anon_sym_QMARK] = ACTIONS(208),
- [anon_sym_any] = ACTIONS(220),
- [anon_sym_number] = ACTIONS(220),
- [anon_sym_boolean] = ACTIONS(220),
- [anon_sym_string] = ACTIONS(220),
- [anon_sym_symbol] = ACTIONS(220),
- [anon_sym_object] = ACTIONS(220),
- [anon_sym_abstract] = ACTIONS(212),
- [anon_sym_satisfies] = ACTIONS(122),
- [anon_sym_infer] = ACTIONS(214),
- [anon_sym_keyof] = ACTIONS(216),
- [anon_sym_unique] = ACTIONS(218),
- [anon_sym_unknown] = ACTIONS(220),
- [anon_sym_never] = ACTIONS(220),
- [anon_sym_LBRACE_PIPE] = ACTIONS(222),
- [sym__automatic_semicolon] = ACTIONS(162),
- [sym__ternary_qmark] = ACTIONS(162),
- [sym_html_comment] = ACTIONS(5),
- },
- [174] = {
- [sym_import] = STATE(5087),
- [sym_nested_identifier] = STATE(5707),
- [sym_string] = STATE(2889),
- [sym_formal_parameters] = STATE(5709),
- [sym_nested_type_identifier] = STATE(2828),
- [sym__type_query_member_expression_in_type_annotation] = STATE(2846),
- [sym__type_query_call_expression_in_type_annotation] = STATE(2850),
- [sym_type] = STATE(3014),
- [sym_constructor_type] = STATE(2896),
- [sym_primary_type] = STATE(2897),
- [sym_template_literal_type] = STATE(2885),
- [sym_infer_type] = STATE(2896),
- [sym_conditional_type] = STATE(2885),
- [sym_generic_type] = STATE(2885),
- [sym_type_query] = STATE(2885),
- [sym_index_type_query] = STATE(2885),
- [sym_lookup_type] = STATE(2885),
- [sym_literal_type] = STATE(2885),
- [sym__number] = STATE(2903),
- [sym_existential_type] = STATE(2885),
- [sym_flow_maybe_type] = STATE(2885),
- [sym_parenthesized_type] = STATE(2885),
- [sym_predefined_type] = STATE(2885),
- [sym_object_type] = STATE(2885),
- [sym_type_parameters] = STATE(5435),
- [sym_array_type] = STATE(2885),
- [sym_tuple_type] = STATE(2885),
- [sym_readonly_type] = STATE(2896),
- [sym_union_type] = STATE(2885),
- [sym_intersection_type] = STATE(2885),
- [sym_function_type] = STATE(2896),
- [sym_identifier] = ACTIONS(1496),
- [anon_sym_STAR] = ACTIONS(117),
- [anon_sym_EQ] = ACTIONS(859),
- [anon_sym_as] = ACTIONS(122),
- [anon_sym_LBRACE] = ACTIONS(1498),
- [anon_sym_COMMA] = ACTIONS(162),
- [anon_sym_RBRACE] = ACTIONS(162),
- [anon_sym_typeof] = ACTIONS(1500),
- [anon_sym_import] = ACTIONS(133),
- [anon_sym_const] = ACTIONS(135),
- [anon_sym_BANG] = ACTIONS(122),
- [anon_sym_LPAREN] = ACTIONS(1502),
- [anon_sym_in] = ACTIONS(122),
- [anon_sym_SEMI] = ACTIONS(162),
- [anon_sym_LBRACK] = ACTIONS(1504),
- [anon_sym_GT] = ACTIONS(122),
- [anon_sym_DOT] = ACTIONS(122),
- [anon_sym_DQUOTE] = ACTIONS(1506),
- [anon_sym_SQUOTE] = ACTIONS(1508),
- [anon_sym_EQ_GT] = ACTIONS(715),
- [anon_sym_QMARK_DOT] = ACTIONS(162),
- [anon_sym_new] = ACTIONS(1510),
- [anon_sym_PLUS_EQ] = ACTIONS(168),
- [anon_sym_DASH_EQ] = ACTIONS(168),
- [anon_sym_STAR_EQ] = ACTIONS(168),
- [anon_sym_SLASH_EQ] = ACTIONS(168),
- [anon_sym_PERCENT_EQ] = ACTIONS(168),
- [anon_sym_CARET_EQ] = ACTIONS(168),
- [anon_sym_AMP_EQ] = ACTIONS(168),
- [anon_sym_PIPE_EQ] = ACTIONS(168),
- [anon_sym_GT_GT_EQ] = ACTIONS(168),
- [anon_sym_GT_GT_GT_EQ] = ACTIONS(168),
- [anon_sym_LT_LT_EQ] = ACTIONS(168),
- [anon_sym_STAR_STAR_EQ] = ACTIONS(168),
- [anon_sym_AMP_AMP_EQ] = ACTIONS(168),
- [anon_sym_PIPE_PIPE_EQ] = ACTIONS(168),
- [anon_sym_QMARK_QMARK_EQ] = ACTIONS(168),
- [anon_sym_AMP_AMP] = ACTIONS(122),
- [anon_sym_PIPE_PIPE] = ACTIONS(122),
- [anon_sym_GT_GT] = ACTIONS(122),
- [anon_sym_GT_GT_GT] = ACTIONS(122),
- [anon_sym_LT_LT] = ACTIONS(122),
- [anon_sym_AMP] = ACTIONS(172),
- [anon_sym_CARET] = ACTIONS(122),
- [anon_sym_PIPE] = ACTIONS(174),
- [anon_sym_PLUS] = ACTIONS(1512),
- [anon_sym_DASH] = ACTIONS(1512),
- [anon_sym_SLASH] = ACTIONS(122),
- [anon_sym_PERCENT] = ACTIONS(122),
- [anon_sym_STAR_STAR] = ACTIONS(122),
- [anon_sym_LT] = ACTIONS(1514),
- [anon_sym_LT_EQ] = ACTIONS(162),
- [anon_sym_EQ_EQ] = ACTIONS(122),
- [anon_sym_EQ_EQ_EQ] = ACTIONS(162),
- [anon_sym_BANG_EQ] = ACTIONS(122),
- [anon_sym_BANG_EQ_EQ] = ACTIONS(162),
- [anon_sym_GT_EQ] = ACTIONS(162),
- [anon_sym_QMARK_QMARK] = ACTIONS(122),
- [anon_sym_instanceof] = ACTIONS(122),
- [anon_sym_void] = ACTIONS(220),
- [anon_sym_PLUS_PLUS] = ACTIONS(162),
- [anon_sym_DASH_DASH] = ACTIONS(162),
- [sym_comment] = ACTIONS(5),
- [anon_sym_BQUOTE] = ACTIONS(1516),
- [sym_number] = ACTIONS(1518),
- [sym_this] = ACTIONS(1520),
- [sym_true] = ACTIONS(1522),
- [sym_false] = ACTIONS(1522),
- [sym_null] = ACTIONS(1522),
- [sym_undefined] = ACTIONS(1522),
- [anon_sym_readonly] = ACTIONS(1524),
- [anon_sym_QMARK] = ACTIONS(208),
- [anon_sym_any] = ACTIONS(220),
- [anon_sym_number] = ACTIONS(220),
- [anon_sym_boolean] = ACTIONS(220),
- [anon_sym_string] = ACTIONS(220),
- [anon_sym_symbol] = ACTIONS(220),
- [anon_sym_object] = ACTIONS(220),
- [anon_sym_abstract] = ACTIONS(212),
- [anon_sym_satisfies] = ACTIONS(122),
- [anon_sym_infer] = ACTIONS(214),
- [anon_sym_keyof] = ACTIONS(216),
- [anon_sym_unique] = ACTIONS(218),
- [anon_sym_unknown] = ACTIONS(220),
- [anon_sym_never] = ACTIONS(220),
- [anon_sym_LBRACE_PIPE] = ACTIONS(222),
- [sym__automatic_semicolon] = ACTIONS(162),
- [sym__ternary_qmark] = ACTIONS(162),
- [sym_html_comment] = ACTIONS(5),
- },
- [175] = {
- [sym_import] = STATE(5087),
- [sym_nested_identifier] = STATE(5707),
- [sym_string] = STATE(2889),
- [sym_formal_parameters] = STATE(5709),
- [sym_nested_type_identifier] = STATE(2828),
- [sym__type_query_member_expression_in_type_annotation] = STATE(2846),
- [sym__type_query_call_expression_in_type_annotation] = STATE(2850),
- [sym_type] = STATE(3014),
- [sym_constructor_type] = STATE(2896),
- [sym_primary_type] = STATE(2897),
- [sym_template_literal_type] = STATE(2885),
- [sym_infer_type] = STATE(2896),
- [sym_conditional_type] = STATE(2885),
- [sym_generic_type] = STATE(2885),
- [sym_type_query] = STATE(2885),
- [sym_index_type_query] = STATE(2885),
- [sym_lookup_type] = STATE(2885),
- [sym_literal_type] = STATE(2885),
- [sym__number] = STATE(2903),
- [sym_existential_type] = STATE(2885),
- [sym_flow_maybe_type] = STATE(2885),
- [sym_parenthesized_type] = STATE(2885),
- [sym_predefined_type] = STATE(2885),
- [sym_object_type] = STATE(2885),
- [sym_type_parameters] = STATE(5435),
- [sym_array_type] = STATE(2885),
- [sym_tuple_type] = STATE(2885),
- [sym_readonly_type] = STATE(2896),
- [sym_union_type] = STATE(2885),
- [sym_intersection_type] = STATE(2885),
- [sym_function_type] = STATE(2896),
- [sym_identifier] = ACTIONS(1496),
- [anon_sym_STAR] = ACTIONS(117),
- [anon_sym_EQ] = ACTIONS(224),
- [anon_sym_as] = ACTIONS(122),
- [anon_sym_LBRACE] = ACTIONS(1498),
- [anon_sym_COMMA] = ACTIONS(227),
- [anon_sym_typeof] = ACTIONS(1500),
- [anon_sym_import] = ACTIONS(133),
- [anon_sym_const] = ACTIONS(135),
- [anon_sym_BANG] = ACTIONS(122),
- [anon_sym_LPAREN] = ACTIONS(1502),
- [anon_sym_RPAREN] = ACTIONS(227),
- [anon_sym_in] = ACTIONS(122),
- [anon_sym_COLON] = ACTIONS(227),
- [anon_sym_LBRACK] = ACTIONS(1504),
- [anon_sym_GT] = ACTIONS(122),
- [anon_sym_DOT] = ACTIONS(122),
- [anon_sym_DQUOTE] = ACTIONS(1506),
- [anon_sym_SQUOTE] = ACTIONS(1508),
- [anon_sym_EQ_GT] = ACTIONS(229),
- [anon_sym_QMARK_DOT] = ACTIONS(162),
- [anon_sym_new] = ACTIONS(1510),
- [anon_sym_PLUS_EQ] = ACTIONS(168),
- [anon_sym_DASH_EQ] = ACTIONS(168),
- [anon_sym_STAR_EQ] = ACTIONS(168),
- [anon_sym_SLASH_EQ] = ACTIONS(168),
- [anon_sym_PERCENT_EQ] = ACTIONS(168),
- [anon_sym_CARET_EQ] = ACTIONS(168),
- [anon_sym_AMP_EQ] = ACTIONS(168),
- [anon_sym_PIPE_EQ] = ACTIONS(168),
- [anon_sym_GT_GT_EQ] = ACTIONS(168),
- [anon_sym_GT_GT_GT_EQ] = ACTIONS(168),
- [anon_sym_LT_LT_EQ] = ACTIONS(168),
- [anon_sym_STAR_STAR_EQ] = ACTIONS(168),
- [anon_sym_AMP_AMP_EQ] = ACTIONS(168),
- [anon_sym_PIPE_PIPE_EQ] = ACTIONS(168),
- [anon_sym_QMARK_QMARK_EQ] = ACTIONS(168),
- [anon_sym_AMP_AMP] = ACTIONS(122),
- [anon_sym_PIPE_PIPE] = ACTIONS(122),
- [anon_sym_GT_GT] = ACTIONS(122),
- [anon_sym_GT_GT_GT] = ACTIONS(122),
- [anon_sym_LT_LT] = ACTIONS(122),
- [anon_sym_AMP] = ACTIONS(172),
- [anon_sym_CARET] = ACTIONS(122),
- [anon_sym_PIPE] = ACTIONS(174),
- [anon_sym_PLUS] = ACTIONS(1512),
- [anon_sym_DASH] = ACTIONS(1512),
- [anon_sym_SLASH] = ACTIONS(122),
- [anon_sym_PERCENT] = ACTIONS(122),
- [anon_sym_STAR_STAR] = ACTIONS(122),
- [anon_sym_LT] = ACTIONS(1514),
- [anon_sym_LT_EQ] = ACTIONS(162),
- [anon_sym_EQ_EQ] = ACTIONS(122),
- [anon_sym_EQ_EQ_EQ] = ACTIONS(162),
- [anon_sym_BANG_EQ] = ACTIONS(122),
- [anon_sym_BANG_EQ_EQ] = ACTIONS(162),
- [anon_sym_GT_EQ] = ACTIONS(162),
- [anon_sym_QMARK_QMARK] = ACTIONS(122),
- [anon_sym_instanceof] = ACTIONS(122),
- [anon_sym_void] = ACTIONS(220),
- [anon_sym_PLUS_PLUS] = ACTIONS(162),
- [anon_sym_DASH_DASH] = ACTIONS(162),
- [sym_comment] = ACTIONS(5),
- [anon_sym_BQUOTE] = ACTIONS(1516),
- [sym_number] = ACTIONS(1518),
- [sym_this] = ACTIONS(1520),
- [sym_true] = ACTIONS(1522),
- [sym_false] = ACTIONS(1522),
- [sym_null] = ACTIONS(1522),
- [sym_undefined] = ACTIONS(1522),
- [anon_sym_readonly] = ACTIONS(1524),
- [anon_sym_QMARK] = ACTIONS(208),
- [anon_sym_any] = ACTIONS(220),
- [anon_sym_number] = ACTIONS(220),
- [anon_sym_boolean] = ACTIONS(220),
- [anon_sym_string] = ACTIONS(220),
- [anon_sym_symbol] = ACTIONS(220),
- [anon_sym_object] = ACTIONS(220),
- [anon_sym_abstract] = ACTIONS(212),
- [anon_sym_satisfies] = ACTIONS(122),
- [anon_sym_infer] = ACTIONS(214),
- [anon_sym_keyof] = ACTIONS(216),
- [anon_sym_unique] = ACTIONS(218),
- [anon_sym_unknown] = ACTIONS(220),
- [anon_sym_never] = ACTIONS(220),
- [anon_sym_LBRACE_PIPE] = ACTIONS(222),
- [sym__ternary_qmark] = ACTIONS(162),
- [sym_html_comment] = ACTIONS(5),
- },
- [176] = {
- [sym_import] = STATE(5087),
- [sym_nested_identifier] = STATE(5707),
- [sym_string] = STATE(2889),
- [sym_formal_parameters] = STATE(5709),
- [sym_nested_type_identifier] = STATE(2828),
- [sym__type_query_member_expression_in_type_annotation] = STATE(2846),
- [sym__type_query_call_expression_in_type_annotation] = STATE(2850),
- [sym_type] = STATE(3014),
- [sym_constructor_type] = STATE(2896),
- [sym_primary_type] = STATE(2897),
- [sym_template_literal_type] = STATE(2885),
- [sym_infer_type] = STATE(2896),
- [sym_conditional_type] = STATE(2885),
- [sym_generic_type] = STATE(2885),
- [sym_type_query] = STATE(2885),
- [sym_index_type_query] = STATE(2885),
- [sym_lookup_type] = STATE(2885),
- [sym_literal_type] = STATE(2885),
- [sym__number] = STATE(2903),
- [sym_existential_type] = STATE(2885),
- [sym_flow_maybe_type] = STATE(2885),
- [sym_parenthesized_type] = STATE(2885),
- [sym_predefined_type] = STATE(2885),
- [sym_object_type] = STATE(2885),
- [sym_type_parameters] = STATE(5435),
- [sym_array_type] = STATE(2885),
- [sym_tuple_type] = STATE(2885),
- [sym_readonly_type] = STATE(2896),
- [sym_union_type] = STATE(2885),
- [sym_intersection_type] = STATE(2885),
- [sym_function_type] = STATE(2896),
- [sym_identifier] = ACTIONS(1496),
- [anon_sym_STAR] = ACTIONS(117),
- [anon_sym_EQ] = ACTIONS(857),
- [anon_sym_as] = ACTIONS(122),
- [anon_sym_LBRACE] = ACTIONS(1498),
- [anon_sym_COMMA] = ACTIONS(888),
- [anon_sym_typeof] = ACTIONS(1500),
- [anon_sym_import] = ACTIONS(133),
- [anon_sym_const] = ACTIONS(135),
- [anon_sym_BANG] = ACTIONS(122),
- [anon_sym_LPAREN] = ACTIONS(1502),
- [anon_sym_in] = ACTIONS(122),
- [anon_sym_COLON] = ACTIONS(847),
- [anon_sym_LBRACK] = ACTIONS(1504),
- [anon_sym_RBRACK] = ACTIONS(888),
- [anon_sym_GT] = ACTIONS(122),
- [anon_sym_DOT] = ACTIONS(122),
- [anon_sym_DQUOTE] = ACTIONS(1506),
- [anon_sym_SQUOTE] = ACTIONS(1508),
- [anon_sym_EQ_GT] = ACTIONS(160),
- [anon_sym_QMARK_DOT] = ACTIONS(162),
- [anon_sym_new] = ACTIONS(1510),
- [anon_sym_PLUS_EQ] = ACTIONS(168),
- [anon_sym_DASH_EQ] = ACTIONS(168),
- [anon_sym_STAR_EQ] = ACTIONS(168),
- [anon_sym_SLASH_EQ] = ACTIONS(168),
- [anon_sym_PERCENT_EQ] = ACTIONS(168),
- [anon_sym_CARET_EQ] = ACTIONS(168),
- [anon_sym_AMP_EQ] = ACTIONS(168),
- [anon_sym_PIPE_EQ] = ACTIONS(168),
- [anon_sym_GT_GT_EQ] = ACTIONS(168),
- [anon_sym_GT_GT_GT_EQ] = ACTIONS(168),
- [anon_sym_LT_LT_EQ] = ACTIONS(168),
- [anon_sym_STAR_STAR_EQ] = ACTIONS(168),
- [anon_sym_AMP_AMP_EQ] = ACTIONS(168),
- [anon_sym_PIPE_PIPE_EQ] = ACTIONS(168),
- [anon_sym_QMARK_QMARK_EQ] = ACTIONS(168),
- [anon_sym_AMP_AMP] = ACTIONS(122),
- [anon_sym_PIPE_PIPE] = ACTIONS(122),
- [anon_sym_GT_GT] = ACTIONS(122),
- [anon_sym_GT_GT_GT] = ACTIONS(122),
- [anon_sym_LT_LT] = ACTIONS(122),
- [anon_sym_AMP] = ACTIONS(172),
- [anon_sym_CARET] = ACTIONS(122),
- [anon_sym_PIPE] = ACTIONS(174),
- [anon_sym_PLUS] = ACTIONS(1512),
- [anon_sym_DASH] = ACTIONS(1512),
- [anon_sym_SLASH] = ACTIONS(122),
- [anon_sym_PERCENT] = ACTIONS(122),
- [anon_sym_STAR_STAR] = ACTIONS(122),
- [anon_sym_LT] = ACTIONS(1514),
- [anon_sym_LT_EQ] = ACTIONS(162),
- [anon_sym_EQ_EQ] = ACTIONS(122),
- [anon_sym_EQ_EQ_EQ] = ACTIONS(162),
- [anon_sym_BANG_EQ] = ACTIONS(122),
- [anon_sym_BANG_EQ_EQ] = ACTIONS(162),
- [anon_sym_GT_EQ] = ACTIONS(162),
- [anon_sym_QMARK_QMARK] = ACTIONS(122),
- [anon_sym_instanceof] = ACTIONS(122),
- [anon_sym_void] = ACTIONS(220),
- [anon_sym_PLUS_PLUS] = ACTIONS(162),
- [anon_sym_DASH_DASH] = ACTIONS(162),
- [sym_comment] = ACTIONS(5),
- [anon_sym_BQUOTE] = ACTIONS(1516),
- [sym_number] = ACTIONS(1518),
- [sym_this] = ACTIONS(1520),
- [sym_true] = ACTIONS(1522),
- [sym_false] = ACTIONS(1522),
- [sym_null] = ACTIONS(1522),
- [sym_undefined] = ACTIONS(1522),
- [anon_sym_readonly] = ACTIONS(1524),
- [anon_sym_QMARK] = ACTIONS(208),
- [anon_sym_any] = ACTIONS(220),
- [anon_sym_number] = ACTIONS(220),
- [anon_sym_boolean] = ACTIONS(220),
- [anon_sym_string] = ACTIONS(220),
- [anon_sym_symbol] = ACTIONS(220),
- [anon_sym_object] = ACTIONS(220),
- [anon_sym_abstract] = ACTIONS(212),
- [anon_sym_satisfies] = ACTIONS(122),
- [anon_sym_infer] = ACTIONS(214),
- [anon_sym_keyof] = ACTIONS(216),
- [anon_sym_unique] = ACTIONS(218),
- [anon_sym_unknown] = ACTIONS(220),
- [anon_sym_never] = ACTIONS(220),
- [anon_sym_LBRACE_PIPE] = ACTIONS(222),
- [sym__ternary_qmark] = ACTIONS(162),
- [sym_html_comment] = ACTIONS(5),
- },
- [177] = {
- [sym_import] = STATE(5087),
- [sym_nested_identifier] = STATE(5707),
- [sym_string] = STATE(2889),
- [sym_formal_parameters] = STATE(5709),
- [sym_nested_type_identifier] = STATE(2828),
- [sym__type_query_member_expression_in_type_annotation] = STATE(2846),
- [sym__type_query_call_expression_in_type_annotation] = STATE(2850),
- [sym_type] = STATE(3014),
- [sym_constructor_type] = STATE(2896),
- [sym_primary_type] = STATE(2897),
- [sym_template_literal_type] = STATE(2885),
- [sym_infer_type] = STATE(2896),
- [sym_conditional_type] = STATE(2885),
- [sym_generic_type] = STATE(2885),
- [sym_type_query] = STATE(2885),
- [sym_index_type_query] = STATE(2885),
- [sym_lookup_type] = STATE(2885),
- [sym_literal_type] = STATE(2885),
- [sym__number] = STATE(2903),
- [sym_existential_type] = STATE(2885),
- [sym_flow_maybe_type] = STATE(2885),
- [sym_parenthesized_type] = STATE(2885),
- [sym_predefined_type] = STATE(2885),
- [sym_object_type] = STATE(2885),
- [sym_type_parameters] = STATE(5435),
- [sym_array_type] = STATE(2885),
- [sym_tuple_type] = STATE(2885),
- [sym_readonly_type] = STATE(2896),
- [sym_union_type] = STATE(2885),
- [sym_intersection_type] = STATE(2885),
- [sym_function_type] = STATE(2896),
- [sym_identifier] = ACTIONS(1496),
- [anon_sym_STAR] = ACTIONS(117),
- [anon_sym_EQ] = ACTIONS(946),
- [anon_sym_as] = ACTIONS(122),
- [anon_sym_LBRACE] = ACTIONS(1498),
- [anon_sym_RBRACE] = ACTIONS(162),
- [anon_sym_typeof] = ACTIONS(1500),
- [anon_sym_import] = ACTIONS(133),
- [anon_sym_const] = ACTIONS(135),
- [anon_sym_BANG] = ACTIONS(122),
- [anon_sym_LPAREN] = ACTIONS(1502),
- [anon_sym_in] = ACTIONS(122),
- [anon_sym_COLON] = ACTIONS(162),
- [anon_sym_LBRACK] = ACTIONS(1504),
- [anon_sym_GT] = ACTIONS(122),
- [anon_sym_DOT] = ACTIONS(122),
- [anon_sym_DQUOTE] = ACTIONS(1506),
- [anon_sym_SQUOTE] = ACTIONS(1508),
- [anon_sym_EQ_GT] = ACTIONS(952),
- [anon_sym_QMARK_DOT] = ACTIONS(162),
- [anon_sym_new] = ACTIONS(1510),
- [anon_sym_PLUS_EQ] = ACTIONS(168),
- [anon_sym_DASH_EQ] = ACTIONS(168),
- [anon_sym_STAR_EQ] = ACTIONS(168),
- [anon_sym_SLASH_EQ] = ACTIONS(168),
- [anon_sym_PERCENT_EQ] = ACTIONS(168),
- [anon_sym_CARET_EQ] = ACTIONS(168),
- [anon_sym_AMP_EQ] = ACTIONS(168),
- [anon_sym_PIPE_EQ] = ACTIONS(168),
- [anon_sym_GT_GT_EQ] = ACTIONS(168),
- [anon_sym_GT_GT_GT_EQ] = ACTIONS(168),
- [anon_sym_LT_LT_EQ] = ACTIONS(168),
- [anon_sym_STAR_STAR_EQ] = ACTIONS(168),
- [anon_sym_AMP_AMP_EQ] = ACTIONS(168),
- [anon_sym_PIPE_PIPE_EQ] = ACTIONS(168),
- [anon_sym_QMARK_QMARK_EQ] = ACTIONS(168),
- [anon_sym_AMP_AMP] = ACTIONS(122),
- [anon_sym_PIPE_PIPE] = ACTIONS(122),
- [anon_sym_GT_GT] = ACTIONS(122),
- [anon_sym_GT_GT_GT] = ACTIONS(122),
- [anon_sym_LT_LT] = ACTIONS(122),
- [anon_sym_AMP] = ACTIONS(172),
- [anon_sym_CARET] = ACTIONS(122),
- [anon_sym_PIPE] = ACTIONS(174),
- [anon_sym_PLUS] = ACTIONS(1512),
- [anon_sym_DASH] = ACTIONS(1512),
- [anon_sym_SLASH] = ACTIONS(122),
- [anon_sym_PERCENT] = ACTIONS(122),
- [anon_sym_STAR_STAR] = ACTIONS(122),
- [anon_sym_LT] = ACTIONS(1514),
- [anon_sym_LT_EQ] = ACTIONS(162),
- [anon_sym_EQ_EQ] = ACTIONS(122),
- [anon_sym_EQ_EQ_EQ] = ACTIONS(162),
- [anon_sym_BANG_EQ] = ACTIONS(122),
- [anon_sym_BANG_EQ_EQ] = ACTIONS(162),
- [anon_sym_GT_EQ] = ACTIONS(162),
- [anon_sym_QMARK_QMARK] = ACTIONS(122),
- [anon_sym_instanceof] = ACTIONS(122),
- [anon_sym_void] = ACTIONS(220),
- [anon_sym_PLUS_PLUS] = ACTIONS(162),
- [anon_sym_DASH_DASH] = ACTIONS(162),
- [sym_comment] = ACTIONS(5),
- [anon_sym_BQUOTE] = ACTIONS(1516),
- [sym_number] = ACTIONS(1518),
- [sym_this] = ACTIONS(1520),
- [sym_true] = ACTIONS(1522),
- [sym_false] = ACTIONS(1522),
- [sym_null] = ACTIONS(1522),
- [sym_undefined] = ACTIONS(1522),
- [anon_sym_readonly] = ACTIONS(1524),
- [anon_sym_QMARK] = ACTIONS(208),
- [anon_sym_any] = ACTIONS(220),
- [anon_sym_number] = ACTIONS(220),
- [anon_sym_boolean] = ACTIONS(220),
- [anon_sym_string] = ACTIONS(220),
- [anon_sym_symbol] = ACTIONS(220),
- [anon_sym_object] = ACTIONS(220),
- [anon_sym_abstract] = ACTIONS(212),
- [anon_sym_satisfies] = ACTIONS(122),
- [anon_sym_infer] = ACTIONS(214),
- [anon_sym_keyof] = ACTIONS(216),
- [anon_sym_unique] = ACTIONS(218),
- [anon_sym_unknown] = ACTIONS(220),
- [anon_sym_never] = ACTIONS(220),
- [anon_sym_LBRACE_PIPE] = ACTIONS(222),
- [sym__ternary_qmark] = ACTIONS(162),
- [sym_html_comment] = ACTIONS(5),
- },
- [178] = {
- [sym_import] = STATE(4753),
- [sym_nested_identifier] = STATE(5707),
- [sym_string] = STATE(2889),
- [sym_formal_parameters] = STATE(5626),
- [sym_nested_type_identifier] = STATE(2828),
- [sym__type_query_member_expression_in_type_annotation] = STATE(3228),
- [sym__type_query_call_expression_in_type_annotation] = STATE(2850),
- [sym_type] = STATE(3619),
- [sym_constructor_type] = STATE(2896),
- [sym_primary_type] = STATE(2897),
- [sym_template_literal_type] = STATE(2885),
- [sym_infer_type] = STATE(2896),
- [sym_conditional_type] = STATE(2885),
- [sym_generic_type] = STATE(2885),
- [sym_type_query] = STATE(2885),
- [sym_index_type_query] = STATE(2885),
- [sym_lookup_type] = STATE(2885),
- [sym_literal_type] = STATE(2885),
- [sym__number] = STATE(2903),
- [sym_existential_type] = STATE(2885),
- [sym_flow_maybe_type] = STATE(2885),
- [sym_parenthesized_type] = STATE(2885),
- [sym_predefined_type] = STATE(2885),
- [sym_object_type] = STATE(2885),
- [sym_type_parameters] = STATE(5517),
- [sym_array_type] = STATE(2885),
- [sym_tuple_type] = STATE(2885),
- [sym_readonly_type] = STATE(2896),
- [sym_union_type] = STATE(2885),
- [sym_intersection_type] = STATE(2885),
- [sym_function_type] = STATE(2896),
- [sym_identifier] = ACTIONS(1496),
- [anon_sym_STAR] = ACTIONS(117),
- [anon_sym_EQ] = ACTIONS(119),
- [anon_sym_as] = ACTIONS(122),
- [anon_sym_LBRACE] = ACTIONS(1498),
- [anon_sym_COMMA] = ACTIONS(128),
- [anon_sym_typeof] = ACTIONS(1500),
- [anon_sym_import] = ACTIONS(133),
- [anon_sym_const] = ACTIONS(135),
- [anon_sym_BANG] = ACTIONS(122),
- [anon_sym_LPAREN] = ACTIONS(1502),
- [anon_sym_in] = ACTIONS(122),
- [anon_sym_LBRACK] = ACTIONS(1504),
- [anon_sym_RBRACK] = ACTIONS(128),
- [anon_sym_GT] = ACTIONS(122),
- [anon_sym_DOT] = ACTIONS(122),
- [anon_sym_DQUOTE] = ACTIONS(1506),
- [anon_sym_SQUOTE] = ACTIONS(1508),
- [anon_sym_EQ_GT] = ACTIONS(160),
- [anon_sym_QMARK_DOT] = ACTIONS(162),
- [anon_sym_new] = ACTIONS(1572),
- [anon_sym_PLUS_EQ] = ACTIONS(168),
- [anon_sym_DASH_EQ] = ACTIONS(168),
- [anon_sym_STAR_EQ] = ACTIONS(168),
- [anon_sym_SLASH_EQ] = ACTIONS(168),
- [anon_sym_PERCENT_EQ] = ACTIONS(168),
- [anon_sym_CARET_EQ] = ACTIONS(168),
- [anon_sym_AMP_EQ] = ACTIONS(168),
- [anon_sym_PIPE_EQ] = ACTIONS(168),
- [anon_sym_GT_GT_EQ] = ACTIONS(168),
- [anon_sym_GT_GT_GT_EQ] = ACTIONS(168),
- [anon_sym_LT_LT_EQ] = ACTIONS(168),
- [anon_sym_STAR_STAR_EQ] = ACTIONS(168),
- [anon_sym_AMP_AMP_EQ] = ACTIONS(168),
- [anon_sym_PIPE_PIPE_EQ] = ACTIONS(168),
- [anon_sym_QMARK_QMARK_EQ] = ACTIONS(168),
- [anon_sym_AMP_AMP] = ACTIONS(122),
- [anon_sym_PIPE_PIPE] = ACTIONS(122),
- [anon_sym_GT_GT] = ACTIONS(122),
- [anon_sym_GT_GT_GT] = ACTIONS(122),
- [anon_sym_LT_LT] = ACTIONS(122),
- [anon_sym_AMP] = ACTIONS(1574),
- [anon_sym_CARET] = ACTIONS(122),
- [anon_sym_PIPE] = ACTIONS(1576),
- [anon_sym_PLUS] = ACTIONS(1512),
- [anon_sym_DASH] = ACTIONS(1512),
- [anon_sym_SLASH] = ACTIONS(122),
- [anon_sym_PERCENT] = ACTIONS(122),
- [anon_sym_STAR_STAR] = ACTIONS(122),
- [anon_sym_LT] = ACTIONS(1514),
- [anon_sym_LT_EQ] = ACTIONS(162),
- [anon_sym_EQ_EQ] = ACTIONS(122),
- [anon_sym_EQ_EQ_EQ] = ACTIONS(162),
- [anon_sym_BANG_EQ] = ACTIONS(122),
- [anon_sym_BANG_EQ_EQ] = ACTIONS(162),
- [anon_sym_GT_EQ] = ACTIONS(162),
- [anon_sym_QMARK_QMARK] = ACTIONS(122),
- [anon_sym_instanceof] = ACTIONS(122),
- [anon_sym_void] = ACTIONS(220),
- [anon_sym_PLUS_PLUS] = ACTIONS(162),
- [anon_sym_DASH_DASH] = ACTIONS(162),
- [sym_comment] = ACTIONS(5),
- [anon_sym_BQUOTE] = ACTIONS(1516),
- [sym_number] = ACTIONS(1518),
- [sym_this] = ACTIONS(1520),
- [sym_true] = ACTIONS(1522),
- [sym_false] = ACTIONS(1522),
- [sym_null] = ACTIONS(1522),
- [sym_undefined] = ACTIONS(1522),
- [anon_sym_readonly] = ACTIONS(1578),
- [anon_sym_QMARK] = ACTIONS(1580),
- [anon_sym_any] = ACTIONS(220),
- [anon_sym_number] = ACTIONS(220),
- [anon_sym_boolean] = ACTIONS(220),
- [anon_sym_string] = ACTIONS(220),
- [anon_sym_symbol] = ACTIONS(220),
- [anon_sym_object] = ACTIONS(220),
- [anon_sym_abstract] = ACTIONS(666),
- [anon_sym_satisfies] = ACTIONS(122),
- [anon_sym_infer] = ACTIONS(668),
- [anon_sym_keyof] = ACTIONS(670),
- [anon_sym_unique] = ACTIONS(218),
- [anon_sym_unknown] = ACTIONS(220),
- [anon_sym_never] = ACTIONS(220),
- [anon_sym_LBRACE_PIPE] = ACTIONS(222),
- [sym__ternary_qmark] = ACTIONS(162),
- [sym_html_comment] = ACTIONS(5),
- },
- [179] = {
- [sym_import] = STATE(5087),
- [sym_nested_identifier] = STATE(5707),
- [sym_string] = STATE(2889),
- [sym_formal_parameters] = STATE(5709),
- [sym_nested_type_identifier] = STATE(2828),
- [sym__type_query_member_expression_in_type_annotation] = STATE(2846),
- [sym__type_query_call_expression_in_type_annotation] = STATE(2850),
- [sym_type] = STATE(3014),
- [sym_constructor_type] = STATE(2896),
- [sym_primary_type] = STATE(2897),
- [sym_template_literal_type] = STATE(2885),
- [sym_infer_type] = STATE(2896),
- [sym_conditional_type] = STATE(2885),
- [sym_generic_type] = STATE(2885),
- [sym_type_query] = STATE(2885),
- [sym_index_type_query] = STATE(2885),
- [sym_lookup_type] = STATE(2885),
- [sym_literal_type] = STATE(2885),
- [sym__number] = STATE(2903),
- [sym_existential_type] = STATE(2885),
- [sym_flow_maybe_type] = STATE(2885),
- [sym_parenthesized_type] = STATE(2885),
- [sym_predefined_type] = STATE(2885),
- [sym_object_type] = STATE(2885),
- [sym_type_parameters] = STATE(5435),
- [sym_array_type] = STATE(2885),
- [sym_tuple_type] = STATE(2885),
- [sym_readonly_type] = STATE(2896),
- [sym_union_type] = STATE(2885),
- [sym_intersection_type] = STATE(2885),
- [sym_function_type] = STATE(2896),
- [sym_identifier] = ACTIONS(1496),
- [anon_sym_STAR] = ACTIONS(117),
- [anon_sym_EQ] = ACTIONS(932),
- [anon_sym_as] = ACTIONS(122),
- [anon_sym_LBRACE] = ACTIONS(1498),
- [anon_sym_typeof] = ACTIONS(1500),
- [anon_sym_import] = ACTIONS(133),
- [anon_sym_const] = ACTIONS(135),
- [anon_sym_BANG] = ACTIONS(122),
- [anon_sym_LPAREN] = ACTIONS(1502),
- [anon_sym_in] = ACTIONS(122),
- [anon_sym_SEMI] = ACTIONS(162),
- [anon_sym_LBRACK] = ACTIONS(1504),
- [anon_sym_GT] = ACTIONS(122),
- [anon_sym_DOT] = ACTIONS(122),
- [anon_sym_DQUOTE] = ACTIONS(1506),
- [anon_sym_SQUOTE] = ACTIONS(1508),
- [anon_sym_EQ_GT] = ACTIONS(924),
- [anon_sym_QMARK_DOT] = ACTIONS(162),
- [anon_sym_new] = ACTIONS(1510),
- [anon_sym_PLUS_EQ] = ACTIONS(168),
- [anon_sym_DASH_EQ] = ACTIONS(168),
- [anon_sym_STAR_EQ] = ACTIONS(168),
- [anon_sym_SLASH_EQ] = ACTIONS(168),
- [anon_sym_PERCENT_EQ] = ACTIONS(168),
- [anon_sym_CARET_EQ] = ACTIONS(168),
- [anon_sym_AMP_EQ] = ACTIONS(168),
- [anon_sym_PIPE_EQ] = ACTIONS(168),
- [anon_sym_GT_GT_EQ] = ACTIONS(168),
- [anon_sym_GT_GT_GT_EQ] = ACTIONS(168),
- [anon_sym_LT_LT_EQ] = ACTIONS(168),
- [anon_sym_STAR_STAR_EQ] = ACTIONS(168),
- [anon_sym_AMP_AMP_EQ] = ACTIONS(168),
- [anon_sym_PIPE_PIPE_EQ] = ACTIONS(168),
- [anon_sym_QMARK_QMARK_EQ] = ACTIONS(168),
- [anon_sym_AMP_AMP] = ACTIONS(122),
- [anon_sym_PIPE_PIPE] = ACTIONS(122),
- [anon_sym_GT_GT] = ACTIONS(122),
- [anon_sym_GT_GT_GT] = ACTIONS(122),
- [anon_sym_LT_LT] = ACTIONS(122),
- [anon_sym_AMP] = ACTIONS(172),
- [anon_sym_CARET] = ACTIONS(122),
- [anon_sym_PIPE] = ACTIONS(174),
- [anon_sym_PLUS] = ACTIONS(1512),
- [anon_sym_DASH] = ACTIONS(1512),
- [anon_sym_SLASH] = ACTIONS(122),
- [anon_sym_PERCENT] = ACTIONS(122),
- [anon_sym_STAR_STAR] = ACTIONS(122),
- [anon_sym_LT] = ACTIONS(1514),
- [anon_sym_LT_EQ] = ACTIONS(162),
- [anon_sym_EQ_EQ] = ACTIONS(122),
- [anon_sym_EQ_EQ_EQ] = ACTIONS(162),
- [anon_sym_BANG_EQ] = ACTIONS(122),
- [anon_sym_BANG_EQ_EQ] = ACTIONS(162),
- [anon_sym_GT_EQ] = ACTIONS(162),
- [anon_sym_QMARK_QMARK] = ACTIONS(122),
- [anon_sym_instanceof] = ACTIONS(122),
- [anon_sym_void] = ACTIONS(220),
- [anon_sym_PLUS_PLUS] = ACTIONS(162),
- [anon_sym_DASH_DASH] = ACTIONS(162),
- [sym_comment] = ACTIONS(5),
- [anon_sym_BQUOTE] = ACTIONS(1516),
- [sym_number] = ACTIONS(1518),
- [sym_this] = ACTIONS(1520),
- [sym_true] = ACTIONS(1522),
- [sym_false] = ACTIONS(1522),
- [sym_null] = ACTIONS(1522),
- [sym_undefined] = ACTIONS(1522),
- [anon_sym_readonly] = ACTIONS(1524),
- [anon_sym_QMARK] = ACTIONS(208),
- [anon_sym_any] = ACTIONS(220),
- [anon_sym_number] = ACTIONS(220),
- [anon_sym_boolean] = ACTIONS(220),
- [anon_sym_string] = ACTIONS(220),
- [anon_sym_symbol] = ACTIONS(220),
- [anon_sym_object] = ACTIONS(220),
- [anon_sym_abstract] = ACTIONS(212),
- [anon_sym_satisfies] = ACTIONS(122),
- [anon_sym_infer] = ACTIONS(214),
- [anon_sym_keyof] = ACTIONS(216),
- [anon_sym_unique] = ACTIONS(218),
- [anon_sym_unknown] = ACTIONS(220),
- [anon_sym_never] = ACTIONS(220),
- [anon_sym_LBRACE_PIPE] = ACTIONS(222),
- [sym__automatic_semicolon] = ACTIONS(162),
- [sym__ternary_qmark] = ACTIONS(162),
- [sym_html_comment] = ACTIONS(5),
- },
- [180] = {
- [sym_import] = STATE(5139),
- [sym_nested_identifier] = STATE(5610),
- [sym_string] = STATE(3160),
- [sym_formal_parameters] = STATE(5827),
- [sym_nested_type_identifier] = STATE(3047),
- [sym__type_query_member_expression_in_type_annotation] = STATE(2958),
- [sym__type_query_call_expression_in_type_annotation] = STATE(3113),
- [sym_type] = STATE(3203),
- [sym_constructor_type] = STATE(3205),
- [sym_primary_type] = STATE(3150),
- [sym_template_literal_type] = STATE(3195),
- [sym_infer_type] = STATE(3205),
- [sym_conditional_type] = STATE(3195),
- [sym_generic_type] = STATE(3195),
- [sym_type_query] = STATE(3195),
- [sym_index_type_query] = STATE(3195),
- [sym_lookup_type] = STATE(3195),
- [sym_literal_type] = STATE(3195),
- [sym__number] = STATE(3154),
- [sym_existential_type] = STATE(3195),
- [sym_flow_maybe_type] = STATE(3195),
- [sym_parenthesized_type] = STATE(3195),
- [sym_predefined_type] = STATE(3195),
- [sym_object_type] = STATE(3195),
- [sym_type_parameters] = STATE(5228),
- [sym_array_type] = STATE(3195),
- [sym_tuple_type] = STATE(3195),
- [sym_readonly_type] = STATE(3205),
- [sym_union_type] = STATE(3195),
- [sym_intersection_type] = STATE(3195),
- [sym_function_type] = STATE(3205),
- [sym_identifier] = ACTIONS(1582),
- [anon_sym_STAR] = ACTIONS(1584),
- [anon_sym_EQ] = ACTIONS(119),
- [anon_sym_as] = ACTIONS(122),
- [anon_sym_LBRACE] = ACTIONS(1586),
- [anon_sym_COMMA] = ACTIONS(128),
- [anon_sym_RBRACE] = ACTIONS(128),
- [anon_sym_typeof] = ACTIONS(1588),
- [anon_sym_import] = ACTIONS(133),
- [anon_sym_const] = ACTIONS(998),
- [anon_sym_BANG] = ACTIONS(122),
- [anon_sym_LPAREN] = ACTIONS(1590),
- [anon_sym_in] = ACTIONS(122),
- [anon_sym_LBRACK] = ACTIONS(1592),
- [anon_sym_GT] = ACTIONS(122),
- [anon_sym_DOT] = ACTIONS(122),
- [anon_sym_DQUOTE] = ACTIONS(1594),
- [anon_sym_SQUOTE] = ACTIONS(1596),
- [anon_sym_EQ_GT] = ACTIONS(160),
- [anon_sym_QMARK_DOT] = ACTIONS(162),
- [anon_sym_new] = ACTIONS(1598),
- [anon_sym_PLUS_EQ] = ACTIONS(168),
- [anon_sym_DASH_EQ] = ACTIONS(168),
- [anon_sym_STAR_EQ] = ACTIONS(168),
- [anon_sym_SLASH_EQ] = ACTIONS(168),
- [anon_sym_PERCENT_EQ] = ACTIONS(168),
- [anon_sym_CARET_EQ] = ACTIONS(168),
- [anon_sym_AMP_EQ] = ACTIONS(168),
- [anon_sym_PIPE_EQ] = ACTIONS(168),
- [anon_sym_GT_GT_EQ] = ACTIONS(168),
- [anon_sym_GT_GT_GT_EQ] = ACTIONS(168),
- [anon_sym_LT_LT_EQ] = ACTIONS(168),
- [anon_sym_STAR_STAR_EQ] = ACTIONS(168),
- [anon_sym_AMP_AMP_EQ] = ACTIONS(168),
- [anon_sym_PIPE_PIPE_EQ] = ACTIONS(168),
- [anon_sym_QMARK_QMARK_EQ] = ACTIONS(168),
- [anon_sym_AMP_AMP] = ACTIONS(122),
- [anon_sym_PIPE_PIPE] = ACTIONS(122),
- [anon_sym_GT_GT] = ACTIONS(122),
- [anon_sym_GT_GT_GT] = ACTIONS(122),
- [anon_sym_LT_LT] = ACTIONS(122),
- [anon_sym_AMP] = ACTIONS(1600),
- [anon_sym_CARET] = ACTIONS(122),
- [anon_sym_PIPE] = ACTIONS(1602),
- [anon_sym_PLUS] = ACTIONS(1604),
- [anon_sym_DASH] = ACTIONS(1604),
- [anon_sym_SLASH] = ACTIONS(122),
- [anon_sym_PERCENT] = ACTIONS(122),
- [anon_sym_STAR_STAR] = ACTIONS(122),
- [anon_sym_LT] = ACTIONS(1514),
- [anon_sym_LT_EQ] = ACTIONS(162),
- [anon_sym_EQ_EQ] = ACTIONS(122),
- [anon_sym_EQ_EQ_EQ] = ACTIONS(162),
- [anon_sym_BANG_EQ] = ACTIONS(122),
- [anon_sym_BANG_EQ_EQ] = ACTIONS(162),
- [anon_sym_GT_EQ] = ACTIONS(162),
- [anon_sym_QMARK_QMARK] = ACTIONS(122),
- [anon_sym_instanceof] = ACTIONS(122),
- [anon_sym_void] = ACTIONS(1038),
- [anon_sym_PLUS_PLUS] = ACTIONS(162),
- [anon_sym_DASH_DASH] = ACTIONS(162),
- [sym_comment] = ACTIONS(5),
- [anon_sym_BQUOTE] = ACTIONS(1606),
- [sym_number] = ACTIONS(1608),
- [sym_this] = ACTIONS(1610),
- [sym_true] = ACTIONS(1612),
- [sym_false] = ACTIONS(1612),
- [sym_null] = ACTIONS(1612),
- [sym_undefined] = ACTIONS(1612),
- [anon_sym_readonly] = ACTIONS(1614),
- [anon_sym_QMARK] = ACTIONS(1616),
- [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_object] = ACTIONS(1038),
- [anon_sym_abstract] = ACTIONS(1030),
- [anon_sym_satisfies] = ACTIONS(122),
- [anon_sym_infer] = ACTIONS(1032),
- [anon_sym_keyof] = ACTIONS(1034),
- [anon_sym_unique] = ACTIONS(1036),
- [anon_sym_unknown] = ACTIONS(1038),
- [anon_sym_never] = ACTIONS(1038),
- [anon_sym_LBRACE_PIPE] = ACTIONS(1040),
- [sym__ternary_qmark] = ACTIONS(162),
- [sym_html_comment] = ACTIONS(5),
- },
- [181] = {
- [sym_import] = STATE(5087),
- [sym_nested_identifier] = STATE(5707),
- [sym_string] = STATE(2889),
- [sym_formal_parameters] = STATE(5709),
- [sym_nested_type_identifier] = STATE(2828),
- [sym__type_query_member_expression_in_type_annotation] = STATE(2846),
- [sym__type_query_call_expression_in_type_annotation] = STATE(2850),
- [sym_type] = STATE(3014),
- [sym_constructor_type] = STATE(2896),
- [sym_primary_type] = STATE(2897),
- [sym_template_literal_type] = STATE(2885),
- [sym_infer_type] = STATE(2896),
- [sym_conditional_type] = STATE(2885),
- [sym_generic_type] = STATE(2885),
- [sym_type_query] = STATE(2885),
- [sym_index_type_query] = STATE(2885),
- [sym_lookup_type] = STATE(2885),
- [sym_literal_type] = STATE(2885),
- [sym__number] = STATE(2903),
- [sym_existential_type] = STATE(2885),
- [sym_flow_maybe_type] = STATE(2885),
- [sym_parenthesized_type] = STATE(2885),
- [sym_predefined_type] = STATE(2885),
- [sym_object_type] = STATE(2885),
- [sym_type_parameters] = STATE(5435),
- [sym_array_type] = STATE(2885),
- [sym_tuple_type] = STATE(2885),
- [sym_readonly_type] = STATE(2896),
- [sym_union_type] = STATE(2885),
- [sym_intersection_type] = STATE(2885),
- [sym_function_type] = STATE(2896),
- [sym_identifier] = ACTIONS(1496),
- [anon_sym_STAR] = ACTIONS(117),
- [anon_sym_EQ] = ACTIONS(912),
- [anon_sym_as] = ACTIONS(122),
- [anon_sym_LBRACE] = ACTIONS(1498),
- [anon_sym_COMMA] = ACTIONS(162),
- [anon_sym_typeof] = ACTIONS(1500),
- [anon_sym_import] = ACTIONS(133),
- [anon_sym_const] = ACTIONS(135),
- [anon_sym_BANG] = ACTIONS(122),
- [anon_sym_LPAREN] = ACTIONS(1502),
- [anon_sym_in] = ACTIONS(122),
- [anon_sym_LBRACK] = ACTIONS(1504),
- [anon_sym_GT] = ACTIONS(122),
- [anon_sym_DOT] = ACTIONS(122),
- [anon_sym_DQUOTE] = ACTIONS(1506),
- [anon_sym_SQUOTE] = ACTIONS(1508),
- [anon_sym_EQ_GT] = ACTIONS(918),
- [anon_sym_QMARK_DOT] = ACTIONS(162),
- [anon_sym_new] = ACTIONS(1510),
- [anon_sym_PLUS_EQ] = ACTIONS(168),
- [anon_sym_DASH_EQ] = ACTIONS(168),
- [anon_sym_STAR_EQ] = ACTIONS(168),
- [anon_sym_SLASH_EQ] = ACTIONS(168),
- [anon_sym_PERCENT_EQ] = ACTIONS(168),
- [anon_sym_CARET_EQ] = ACTIONS(168),
- [anon_sym_AMP_EQ] = ACTIONS(168),
- [anon_sym_PIPE_EQ] = ACTIONS(168),
- [anon_sym_GT_GT_EQ] = ACTIONS(168),
- [anon_sym_GT_GT_GT_EQ] = ACTIONS(168),
- [anon_sym_LT_LT_EQ] = ACTIONS(168),
- [anon_sym_STAR_STAR_EQ] = ACTIONS(168),
- [anon_sym_AMP_AMP_EQ] = ACTIONS(168),
- [anon_sym_PIPE_PIPE_EQ] = ACTIONS(168),
- [anon_sym_QMARK_QMARK_EQ] = ACTIONS(168),
- [anon_sym_AMP_AMP] = ACTIONS(122),
- [anon_sym_PIPE_PIPE] = ACTIONS(122),
- [anon_sym_GT_GT] = ACTIONS(122),
- [anon_sym_GT_GT_GT] = ACTIONS(122),
- [anon_sym_LT_LT] = ACTIONS(122),
- [anon_sym_AMP] = ACTIONS(172),
- [anon_sym_CARET] = ACTIONS(122),
- [anon_sym_PIPE] = ACTIONS(174),
- [anon_sym_PLUS] = ACTIONS(1512),
- [anon_sym_DASH] = ACTIONS(1512),
- [anon_sym_SLASH] = ACTIONS(122),
- [anon_sym_PERCENT] = ACTIONS(122),
- [anon_sym_STAR_STAR] = ACTIONS(122),
- [anon_sym_LT] = ACTIONS(1514),
- [anon_sym_LT_EQ] = ACTIONS(162),
- [anon_sym_EQ_EQ] = ACTIONS(122),
- [anon_sym_EQ_EQ_EQ] = ACTIONS(162),
- [anon_sym_BANG_EQ] = ACTIONS(122),
- [anon_sym_BANG_EQ_EQ] = ACTIONS(162),
- [anon_sym_GT_EQ] = ACTIONS(162),
- [anon_sym_QMARK_QMARK] = ACTIONS(122),
- [anon_sym_instanceof] = ACTIONS(122),
- [anon_sym_void] = ACTIONS(220),
- [anon_sym_PLUS_PLUS] = ACTIONS(162),
- [anon_sym_DASH_DASH] = ACTIONS(162),
- [sym_comment] = ACTIONS(5),
- [anon_sym_BQUOTE] = ACTIONS(1516),
- [sym_number] = ACTIONS(1518),
- [sym_this] = ACTIONS(1520),
- [sym_true] = ACTIONS(1522),
- [sym_false] = ACTIONS(1522),
- [sym_null] = ACTIONS(1522),
- [sym_undefined] = ACTIONS(1522),
- [anon_sym_readonly] = ACTIONS(1524),
- [anon_sym_QMARK] = ACTIONS(208),
- [anon_sym_any] = ACTIONS(220),
- [anon_sym_number] = ACTIONS(220),
- [anon_sym_boolean] = ACTIONS(220),
- [anon_sym_string] = ACTIONS(220),
- [anon_sym_symbol] = ACTIONS(220),
- [anon_sym_object] = ACTIONS(220),
- [anon_sym_abstract] = ACTIONS(212),
- [anon_sym_satisfies] = ACTIONS(122),
- [anon_sym_implements] = ACTIONS(122),
- [anon_sym_infer] = ACTIONS(214),
- [anon_sym_keyof] = ACTIONS(216),
- [anon_sym_unique] = ACTIONS(218),
- [anon_sym_unknown] = ACTIONS(220),
- [anon_sym_never] = ACTIONS(220),
- [anon_sym_LBRACE_PIPE] = ACTIONS(222),
- [sym__ternary_qmark] = ACTIONS(162),
- [sym_html_comment] = ACTIONS(5),
- },
- [182] = {
- [sym_import] = STATE(5087),
- [sym_nested_identifier] = STATE(5707),
- [sym_string] = STATE(2889),
- [sym_formal_parameters] = STATE(5709),
- [sym_nested_type_identifier] = STATE(2828),
- [sym__type_query_member_expression_in_type_annotation] = STATE(2846),
- [sym__type_query_call_expression_in_type_annotation] = STATE(2850),
- [sym_type] = STATE(3014),
- [sym_constructor_type] = STATE(2896),
- [sym_primary_type] = STATE(2897),
- [sym_template_literal_type] = STATE(2885),
- [sym_infer_type] = STATE(2896),
- [sym_conditional_type] = STATE(2885),
- [sym_generic_type] = STATE(2885),
- [sym_type_query] = STATE(2885),
- [sym_index_type_query] = STATE(2885),
- [sym_lookup_type] = STATE(2885),
- [sym_literal_type] = STATE(2885),
- [sym__number] = STATE(2903),
- [sym_existential_type] = STATE(2885),
- [sym_flow_maybe_type] = STATE(2885),
- [sym_parenthesized_type] = STATE(2885),
- [sym_predefined_type] = STATE(2885),
- [sym_object_type] = STATE(2885),
- [sym_type_parameters] = STATE(5435),
- [sym_array_type] = STATE(2885),
- [sym_tuple_type] = STATE(2885),
- [sym_readonly_type] = STATE(2896),
- [sym_union_type] = STATE(2885),
- [sym_intersection_type] = STATE(2885),
- [sym_function_type] = STATE(2896),
- [sym_identifier] = ACTIONS(1496),
- [anon_sym_STAR] = ACTIONS(117),
- [anon_sym_EQ] = ACTIONS(841),
- [anon_sym_as] = ACTIONS(122),
- [anon_sym_LBRACE] = ACTIONS(1498),
- [anon_sym_typeof] = ACTIONS(1500),
- [anon_sym_import] = ACTIONS(133),
- [anon_sym_const] = ACTIONS(135),
- [anon_sym_BANG] = ACTIONS(122),
- [anon_sym_LPAREN] = ACTIONS(1502),
- [anon_sym_in] = ACTIONS(122),
- [anon_sym_COLON] = ACTIONS(847),
- [anon_sym_LBRACK] = ACTIONS(1504),
- [anon_sym_GT] = ACTIONS(122),
- [anon_sym_DOT] = ACTIONS(122),
- [anon_sym_DQUOTE] = ACTIONS(1506),
- [anon_sym_SQUOTE] = ACTIONS(1508),
- [anon_sym_EQ_GT] = ACTIONS(229),
- [anon_sym_QMARK_DOT] = ACTIONS(162),
- [anon_sym_new] = ACTIONS(1510),
- [anon_sym_PLUS_EQ] = ACTIONS(168),
- [anon_sym_DASH_EQ] = ACTIONS(168),
- [anon_sym_STAR_EQ] = ACTIONS(168),
- [anon_sym_SLASH_EQ] = ACTIONS(168),
- [anon_sym_PERCENT_EQ] = ACTIONS(168),
- [anon_sym_CARET_EQ] = ACTIONS(168),
- [anon_sym_AMP_EQ] = ACTIONS(168),
- [anon_sym_PIPE_EQ] = ACTIONS(168),
- [anon_sym_GT_GT_EQ] = ACTIONS(168),
- [anon_sym_GT_GT_GT_EQ] = ACTIONS(168),
- [anon_sym_LT_LT_EQ] = ACTIONS(168),
- [anon_sym_STAR_STAR_EQ] = ACTIONS(168),
- [anon_sym_AMP_AMP_EQ] = ACTIONS(168),
- [anon_sym_PIPE_PIPE_EQ] = ACTIONS(168),
- [anon_sym_QMARK_QMARK_EQ] = ACTIONS(168),
- [anon_sym_AMP_AMP] = ACTIONS(122),
- [anon_sym_PIPE_PIPE] = ACTIONS(122),
- [anon_sym_GT_GT] = ACTIONS(122),
- [anon_sym_GT_GT_GT] = ACTIONS(122),
- [anon_sym_LT_LT] = ACTIONS(122),
- [anon_sym_AMP] = ACTIONS(172),
- [anon_sym_CARET] = ACTIONS(122),
- [anon_sym_PIPE] = ACTIONS(174),
- [anon_sym_PLUS] = ACTIONS(1512),
- [anon_sym_DASH] = ACTIONS(1512),
- [anon_sym_SLASH] = ACTIONS(122),
- [anon_sym_PERCENT] = ACTIONS(122),
- [anon_sym_STAR_STAR] = ACTIONS(122),
- [anon_sym_LT] = ACTIONS(1514),
- [anon_sym_LT_EQ] = ACTIONS(162),
- [anon_sym_EQ_EQ] = ACTIONS(122),
- [anon_sym_EQ_EQ_EQ] = ACTIONS(162),
- [anon_sym_BANG_EQ] = ACTIONS(122),
- [anon_sym_BANG_EQ_EQ] = ACTIONS(162),
- [anon_sym_GT_EQ] = ACTIONS(162),
- [anon_sym_QMARK_QMARK] = ACTIONS(122),
- [anon_sym_instanceof] = ACTIONS(122),
- [anon_sym_void] = ACTIONS(220),
- [anon_sym_PLUS_PLUS] = ACTIONS(162),
- [anon_sym_DASH_DASH] = ACTIONS(162),
- [sym_comment] = ACTIONS(5),
- [anon_sym_BQUOTE] = ACTIONS(1516),
- [sym_number] = ACTIONS(1518),
- [sym_this] = ACTIONS(1520),
- [sym_true] = ACTIONS(1522),
- [sym_false] = ACTIONS(1522),
- [sym_null] = ACTIONS(1522),
- [sym_undefined] = ACTIONS(1522),
- [anon_sym_readonly] = ACTIONS(1524),
- [anon_sym_QMARK] = ACTIONS(208),
- [anon_sym_any] = ACTIONS(220),
- [anon_sym_number] = ACTIONS(220),
- [anon_sym_boolean] = ACTIONS(220),
- [anon_sym_string] = ACTIONS(220),
- [anon_sym_symbol] = ACTIONS(220),
- [anon_sym_object] = ACTIONS(220),
- [anon_sym_abstract] = ACTIONS(212),
- [anon_sym_satisfies] = ACTIONS(122),
- [anon_sym_infer] = ACTIONS(214),
- [anon_sym_keyof] = ACTIONS(216),
- [anon_sym_unique] = ACTIONS(218),
- [anon_sym_unknown] = ACTIONS(220),
- [anon_sym_never] = ACTIONS(220),
- [anon_sym_LBRACE_PIPE] = ACTIONS(222),
- [sym__ternary_qmark] = ACTIONS(162),
- [sym_html_comment] = ACTIONS(5),
- },
- [183] = {
- [sym_import] = STATE(5087),
- [sym_nested_identifier] = STATE(5707),
- [sym_string] = STATE(2889),
- [sym_formal_parameters] = STATE(5709),
- [sym_nested_type_identifier] = STATE(2828),
- [sym__type_query_member_expression_in_type_annotation] = STATE(2846),
- [sym__type_query_call_expression_in_type_annotation] = STATE(2850),
- [sym_type] = STATE(3014),
- [sym_constructor_type] = STATE(2896),
- [sym_primary_type] = STATE(2897),
- [sym_template_literal_type] = STATE(2885),
- [sym_infer_type] = STATE(2896),
- [sym_conditional_type] = STATE(2885),
- [sym_generic_type] = STATE(2885),
- [sym_type_query] = STATE(2885),
- [sym_index_type_query] = STATE(2885),
- [sym_lookup_type] = STATE(2885),
- [sym_literal_type] = STATE(2885),
- [sym__number] = STATE(2903),
- [sym_existential_type] = STATE(2885),
- [sym_flow_maybe_type] = STATE(2885),
- [sym_parenthesized_type] = STATE(2885),
- [sym_predefined_type] = STATE(2885),
- [sym_object_type] = STATE(2885),
- [sym_type_parameters] = STATE(5435),
- [sym_array_type] = STATE(2885),
- [sym_tuple_type] = STATE(2885),
- [sym_readonly_type] = STATE(2896),
- [sym_union_type] = STATE(2885),
- [sym_intersection_type] = STATE(2885),
- [sym_function_type] = STATE(2896),
- [sym_identifier] = ACTIONS(1496),
- [anon_sym_STAR] = ACTIONS(117),
- [anon_sym_EQ] = ACTIONS(926),
- [anon_sym_as] = ACTIONS(122),
- [anon_sym_LBRACE] = ACTIONS(1498),
- [anon_sym_typeof] = ACTIONS(1500),
- [anon_sym_import] = ACTIONS(133),
- [anon_sym_const] = ACTIONS(135),
- [anon_sym_BANG] = ACTIONS(122),
- [anon_sym_LPAREN] = ACTIONS(1502),
- [anon_sym_in] = ACTIONS(122),
- [anon_sym_LBRACK] = ACTIONS(1504),
- [anon_sym_RBRACK] = ACTIONS(162),
- [anon_sym_GT] = ACTIONS(122),
- [anon_sym_DOT] = ACTIONS(122),
- [anon_sym_DQUOTE] = ACTIONS(1506),
- [anon_sym_SQUOTE] = ACTIONS(1508),
- [anon_sym_EQ_GT] = ACTIONS(904),
- [anon_sym_QMARK_DOT] = ACTIONS(162),
- [anon_sym_new] = ACTIONS(1510),
- [anon_sym_PLUS_EQ] = ACTIONS(168),
- [anon_sym_DASH_EQ] = ACTIONS(168),
- [anon_sym_STAR_EQ] = ACTIONS(168),
- [anon_sym_SLASH_EQ] = ACTIONS(168),
- [anon_sym_PERCENT_EQ] = ACTIONS(168),
- [anon_sym_CARET_EQ] = ACTIONS(168),
- [anon_sym_AMP_EQ] = ACTIONS(168),
- [anon_sym_PIPE_EQ] = ACTIONS(168),
- [anon_sym_GT_GT_EQ] = ACTIONS(168),
- [anon_sym_GT_GT_GT_EQ] = ACTIONS(168),
- [anon_sym_LT_LT_EQ] = ACTIONS(168),
- [anon_sym_STAR_STAR_EQ] = ACTIONS(168),
- [anon_sym_AMP_AMP_EQ] = ACTIONS(168),
- [anon_sym_PIPE_PIPE_EQ] = ACTIONS(168),
- [anon_sym_QMARK_QMARK_EQ] = ACTIONS(168),
- [anon_sym_AMP_AMP] = ACTIONS(122),
- [anon_sym_PIPE_PIPE] = ACTIONS(122),
- [anon_sym_GT_GT] = ACTIONS(122),
- [anon_sym_GT_GT_GT] = ACTIONS(122),
- [anon_sym_LT_LT] = ACTIONS(122),
- [anon_sym_AMP] = ACTIONS(172),
- [anon_sym_CARET] = ACTIONS(122),
- [anon_sym_PIPE] = ACTIONS(174),
- [anon_sym_PLUS] = ACTIONS(1512),
- [anon_sym_DASH] = ACTIONS(1512),
- [anon_sym_SLASH] = ACTIONS(122),
- [anon_sym_PERCENT] = ACTIONS(122),
- [anon_sym_STAR_STAR] = ACTIONS(122),
- [anon_sym_LT] = ACTIONS(1514),
- [anon_sym_LT_EQ] = ACTIONS(162),
- [anon_sym_EQ_EQ] = ACTIONS(122),
- [anon_sym_EQ_EQ_EQ] = ACTIONS(162),
- [anon_sym_BANG_EQ] = ACTIONS(122),
- [anon_sym_BANG_EQ_EQ] = ACTIONS(162),
- [anon_sym_GT_EQ] = ACTIONS(162),
- [anon_sym_QMARK_QMARK] = ACTIONS(122),
- [anon_sym_instanceof] = ACTIONS(122),
- [anon_sym_void] = ACTIONS(220),
- [anon_sym_PLUS_PLUS] = ACTIONS(162),
- [anon_sym_DASH_DASH] = ACTIONS(162),
- [sym_comment] = ACTIONS(5),
- [anon_sym_BQUOTE] = ACTIONS(1516),
- [sym_number] = ACTIONS(1518),
- [sym_this] = ACTIONS(1520),
- [sym_true] = ACTIONS(1522),
- [sym_false] = ACTIONS(1522),
- [sym_null] = ACTIONS(1522),
- [sym_undefined] = ACTIONS(1522),
- [anon_sym_readonly] = ACTIONS(1524),
- [anon_sym_QMARK] = ACTIONS(208),
- [anon_sym_any] = ACTIONS(220),
- [anon_sym_number] = ACTIONS(220),
- [anon_sym_boolean] = ACTIONS(220),
- [anon_sym_string] = ACTIONS(220),
- [anon_sym_symbol] = ACTIONS(220),
- [anon_sym_object] = ACTIONS(220),
- [anon_sym_abstract] = ACTIONS(212),
- [anon_sym_satisfies] = ACTIONS(122),
- [anon_sym_infer] = ACTIONS(214),
- [anon_sym_keyof] = ACTIONS(216),
- [anon_sym_unique] = ACTIONS(218),
- [anon_sym_unknown] = ACTIONS(220),
- [anon_sym_never] = ACTIONS(220),
- [anon_sym_LBRACE_PIPE] = ACTIONS(222),
- [sym__ternary_qmark] = ACTIONS(162),
- [sym_html_comment] = ACTIONS(5),
- },
- [184] = {
- [sym_import] = STATE(5087),
- [sym_nested_identifier] = STATE(5707),
- [sym_string] = STATE(2889),
- [sym_formal_parameters] = STATE(5709),
- [sym_nested_type_identifier] = STATE(2828),
- [sym__type_query_member_expression_in_type_annotation] = STATE(2846),
- [sym__type_query_call_expression_in_type_annotation] = STATE(2850),
- [sym_type] = STATE(3014),
- [sym_constructor_type] = STATE(2896),
- [sym_primary_type] = STATE(2897),
- [sym_template_literal_type] = STATE(2885),
- [sym_infer_type] = STATE(2896),
- [sym_conditional_type] = STATE(2885),
- [sym_generic_type] = STATE(2885),
- [sym_type_query] = STATE(2885),
- [sym_index_type_query] = STATE(2885),
- [sym_lookup_type] = STATE(2885),
- [sym_literal_type] = STATE(2885),
- [sym__number] = STATE(2903),
- [sym_existential_type] = STATE(2885),
- [sym_flow_maybe_type] = STATE(2885),
- [sym_parenthesized_type] = STATE(2885),
- [sym_predefined_type] = STATE(2885),
- [sym_object_type] = STATE(2885),
- [sym_type_parameters] = STATE(5435),
- [sym_array_type] = STATE(2885),
- [sym_tuple_type] = STATE(2885),
- [sym_readonly_type] = STATE(2896),
- [sym_union_type] = STATE(2885),
- [sym_intersection_type] = STATE(2885),
- [sym_function_type] = STATE(2896),
- [sym_identifier] = ACTIONS(1496),
- [anon_sym_STAR] = ACTIONS(117),
- [anon_sym_EQ] = ACTIONS(960),
- [anon_sym_as] = ACTIONS(122),
- [anon_sym_LBRACE] = ACTIONS(1498),
- [anon_sym_typeof] = ACTIONS(1500),
- [anon_sym_import] = ACTIONS(133),
- [anon_sym_const] = ACTIONS(135),
- [anon_sym_BANG] = ACTIONS(122),
- [anon_sym_LPAREN] = ACTIONS(1502),
- [anon_sym_in] = ACTIONS(122),
- [anon_sym_of] = ACTIONS(122),
- [anon_sym_LBRACK] = ACTIONS(1504),
- [anon_sym_GT] = ACTIONS(122),
- [anon_sym_DOT] = ACTIONS(122),
- [anon_sym_DQUOTE] = ACTIONS(1506),
- [anon_sym_SQUOTE] = ACTIONS(1508),
- [anon_sym_EQ_GT] = ACTIONS(966),
- [anon_sym_QMARK_DOT] = ACTIONS(162),
- [anon_sym_new] = ACTIONS(1510),
- [anon_sym_PLUS_EQ] = ACTIONS(168),
- [anon_sym_DASH_EQ] = ACTIONS(168),
- [anon_sym_STAR_EQ] = ACTIONS(168),
- [anon_sym_SLASH_EQ] = ACTIONS(168),
- [anon_sym_PERCENT_EQ] = ACTIONS(168),
- [anon_sym_CARET_EQ] = ACTIONS(168),
- [anon_sym_AMP_EQ] = ACTIONS(168),
- [anon_sym_PIPE_EQ] = ACTIONS(168),
- [anon_sym_GT_GT_EQ] = ACTIONS(168),
- [anon_sym_GT_GT_GT_EQ] = ACTIONS(168),
- [anon_sym_LT_LT_EQ] = ACTIONS(168),
- [anon_sym_STAR_STAR_EQ] = ACTIONS(168),
- [anon_sym_AMP_AMP_EQ] = ACTIONS(168),
- [anon_sym_PIPE_PIPE_EQ] = ACTIONS(168),
- [anon_sym_QMARK_QMARK_EQ] = ACTIONS(168),
- [anon_sym_AMP_AMP] = ACTIONS(122),
- [anon_sym_PIPE_PIPE] = ACTIONS(122),
- [anon_sym_GT_GT] = ACTIONS(122),
- [anon_sym_GT_GT_GT] = ACTIONS(122),
- [anon_sym_LT_LT] = ACTIONS(122),
- [anon_sym_AMP] = ACTIONS(172),
- [anon_sym_CARET] = ACTIONS(122),
- [anon_sym_PIPE] = ACTIONS(174),
- [anon_sym_PLUS] = ACTIONS(1512),
- [anon_sym_DASH] = ACTIONS(1512),
- [anon_sym_SLASH] = ACTIONS(122),
- [anon_sym_PERCENT] = ACTIONS(122),
- [anon_sym_STAR_STAR] = ACTIONS(122),
- [anon_sym_LT] = ACTIONS(1514),
- [anon_sym_LT_EQ] = ACTIONS(162),
- [anon_sym_EQ_EQ] = ACTIONS(122),
- [anon_sym_EQ_EQ_EQ] = ACTIONS(162),
- [anon_sym_BANG_EQ] = ACTIONS(122),
- [anon_sym_BANG_EQ_EQ] = ACTIONS(162),
- [anon_sym_GT_EQ] = ACTIONS(162),
- [anon_sym_QMARK_QMARK] = ACTIONS(122),
- [anon_sym_instanceof] = ACTIONS(122),
- [anon_sym_void] = ACTIONS(220),
- [anon_sym_PLUS_PLUS] = ACTIONS(162),
- [anon_sym_DASH_DASH] = ACTIONS(162),
- [sym_comment] = ACTIONS(5),
- [anon_sym_BQUOTE] = ACTIONS(1516),
- [sym_number] = ACTIONS(1518),
- [sym_this] = ACTIONS(1520),
- [sym_true] = ACTIONS(1522),
- [sym_false] = ACTIONS(1522),
- [sym_null] = ACTIONS(1522),
- [sym_undefined] = ACTIONS(1522),
- [anon_sym_readonly] = ACTIONS(1524),
- [anon_sym_QMARK] = ACTIONS(208),
- [anon_sym_any] = ACTIONS(220),
- [anon_sym_number] = ACTIONS(220),
- [anon_sym_boolean] = ACTIONS(220),
- [anon_sym_string] = ACTIONS(220),
- [anon_sym_symbol] = ACTIONS(220),
- [anon_sym_object] = ACTIONS(220),
- [anon_sym_abstract] = ACTIONS(212),
- [anon_sym_satisfies] = ACTIONS(122),
- [anon_sym_infer] = ACTIONS(214),
- [anon_sym_keyof] = ACTIONS(216),
- [anon_sym_unique] = ACTIONS(218),
- [anon_sym_unknown] = ACTIONS(220),
- [anon_sym_never] = ACTIONS(220),
- [anon_sym_LBRACE_PIPE] = ACTIONS(222),
- [sym__ternary_qmark] = ACTIONS(162),
- [sym_html_comment] = ACTIONS(5),
- },
- [185] = {
- [sym_import] = STATE(5087),
- [sym_nested_identifier] = STATE(5707),
- [sym_string] = STATE(2889),
- [sym_formal_parameters] = STATE(5709),
- [sym_nested_type_identifier] = STATE(2828),
- [sym__type_query_member_expression_in_type_annotation] = STATE(2846),
- [sym__type_query_call_expression_in_type_annotation] = STATE(2850),
- [sym_type] = STATE(3014),
- [sym_constructor_type] = STATE(2896),
- [sym_primary_type] = STATE(2897),
- [sym_template_literal_type] = STATE(2885),
- [sym_infer_type] = STATE(2896),
- [sym_conditional_type] = STATE(2885),
- [sym_generic_type] = STATE(2885),
- [sym_type_query] = STATE(2885),
- [sym_index_type_query] = STATE(2885),
- [sym_lookup_type] = STATE(2885),
- [sym_literal_type] = STATE(2885),
- [sym__number] = STATE(2903),
- [sym_existential_type] = STATE(2885),
- [sym_flow_maybe_type] = STATE(2885),
- [sym_parenthesized_type] = STATE(2885),
- [sym_predefined_type] = STATE(2885),
- [sym_object_type] = STATE(2885),
- [sym_type_parameters] = STATE(5435),
- [sym_array_type] = STATE(2885),
- [sym_tuple_type] = STATE(2885),
- [sym_readonly_type] = STATE(2896),
- [sym_union_type] = STATE(2885),
- [sym_intersection_type] = STATE(2885),
- [sym_function_type] = STATE(2896),
- [sym_identifier] = ACTIONS(1496),
- [anon_sym_STAR] = ACTIONS(117),
- [anon_sym_EQ] = ACTIONS(841),
- [anon_sym_as] = ACTIONS(122),
- [anon_sym_LBRACE] = ACTIONS(1498),
- [anon_sym_typeof] = ACTIONS(1500),
- [anon_sym_import] = ACTIONS(133),
- [anon_sym_const] = ACTIONS(135),
- [anon_sym_BANG] = ACTIONS(122),
- [anon_sym_LPAREN] = ACTIONS(1502),
- [anon_sym_in] = ACTIONS(122),
- [anon_sym_LBRACK] = ACTIONS(1504),
- [anon_sym_GT] = ACTIONS(122),
- [anon_sym_DOT] = ACTIONS(122),
- [anon_sym_DQUOTE] = ACTIONS(1506),
- [anon_sym_SQUOTE] = ACTIONS(1508),
- [anon_sym_EQ_GT] = ACTIONS(229),
- [anon_sym_QMARK_DOT] = ACTIONS(162),
- [anon_sym_new] = ACTIONS(1510),
- [anon_sym_PLUS_EQ] = ACTIONS(168),
- [anon_sym_DASH_EQ] = ACTIONS(168),
- [anon_sym_STAR_EQ] = ACTIONS(168),
- [anon_sym_SLASH_EQ] = ACTIONS(168),
- [anon_sym_PERCENT_EQ] = ACTIONS(168),
- [anon_sym_CARET_EQ] = ACTIONS(168),
- [anon_sym_AMP_EQ] = ACTIONS(168),
- [anon_sym_PIPE_EQ] = ACTIONS(168),
- [anon_sym_GT_GT_EQ] = ACTIONS(168),
- [anon_sym_GT_GT_GT_EQ] = ACTIONS(168),
- [anon_sym_LT_LT_EQ] = ACTIONS(168),
- [anon_sym_STAR_STAR_EQ] = ACTIONS(168),
- [anon_sym_AMP_AMP_EQ] = ACTIONS(168),
- [anon_sym_PIPE_PIPE_EQ] = ACTIONS(168),
- [anon_sym_QMARK_QMARK_EQ] = ACTIONS(168),
- [anon_sym_AMP_AMP] = ACTIONS(122),
- [anon_sym_PIPE_PIPE] = ACTIONS(122),
- [anon_sym_GT_GT] = ACTIONS(122),
- [anon_sym_GT_GT_GT] = ACTIONS(122),
- [anon_sym_LT_LT] = ACTIONS(122),
- [anon_sym_AMP] = ACTIONS(172),
- [anon_sym_CARET] = ACTIONS(122),
- [anon_sym_PIPE] = ACTIONS(174),
- [anon_sym_PLUS] = ACTIONS(1512),
- [anon_sym_DASH] = ACTIONS(1512),
- [anon_sym_SLASH] = ACTIONS(122),
- [anon_sym_PERCENT] = ACTIONS(122),
- [anon_sym_STAR_STAR] = ACTIONS(122),
- [anon_sym_LT] = ACTIONS(1514),
- [anon_sym_LT_EQ] = ACTIONS(162),
- [anon_sym_EQ_EQ] = ACTIONS(122),
- [anon_sym_EQ_EQ_EQ] = ACTIONS(162),
- [anon_sym_BANG_EQ] = ACTIONS(122),
- [anon_sym_BANG_EQ_EQ] = ACTIONS(162),
- [anon_sym_GT_EQ] = ACTIONS(162),
- [anon_sym_QMARK_QMARK] = ACTIONS(122),
- [anon_sym_instanceof] = ACTIONS(122),
- [anon_sym_void] = ACTIONS(220),
- [anon_sym_PLUS_PLUS] = ACTIONS(162),
- [anon_sym_DASH_DASH] = ACTIONS(162),
- [sym_comment] = ACTIONS(5),
- [anon_sym_BQUOTE] = ACTIONS(1516),
- [sym_number] = ACTIONS(1518),
- [sym_this] = ACTIONS(1520),
- [sym_true] = ACTIONS(1522),
- [sym_false] = ACTIONS(1522),
- [sym_null] = ACTIONS(1522),
- [sym_undefined] = ACTIONS(1522),
- [anon_sym_readonly] = ACTIONS(1524),
- [anon_sym_QMARK] = ACTIONS(208),
- [anon_sym_any] = ACTIONS(220),
- [anon_sym_number] = ACTIONS(220),
- [anon_sym_boolean] = ACTIONS(220),
- [anon_sym_string] = ACTIONS(220),
- [anon_sym_symbol] = ACTIONS(220),
- [anon_sym_object] = ACTIONS(220),
- [anon_sym_abstract] = ACTIONS(212),
- [anon_sym_satisfies] = ACTIONS(122),
- [anon_sym_infer] = ACTIONS(214),
- [anon_sym_keyof] = ACTIONS(216),
- [anon_sym_unique] = ACTIONS(218),
- [anon_sym_unknown] = ACTIONS(220),
- [anon_sym_never] = ACTIONS(220),
- [anon_sym_LBRACE_PIPE] = ACTIONS(222),
- [sym__ternary_qmark] = ACTIONS(162),
- [sym_html_comment] = ACTIONS(5),
- },
- [186] = {
- [sym_import] = STATE(3334),
- [sym_parenthesized_expression] = STATE(1251),
- [sym_expression] = STATE(1532),
- [sym_primary_expression] = STATE(1468),
- [sym_yield_expression] = STATE(1634),
- [sym_object] = STATE(1650),
- [sym_object_pattern] = STATE(3610),
- [sym_array] = STATE(1650),
- [sym_array_pattern] = STATE(3610),
- [sym_glimmer_template] = STATE(1634),
- [sym_jsx_element] = STATE(1634),
- [sym_jsx_opening_element] = STATE(3026),
- [sym_jsx_self_closing_element] = STATE(1634),
- [sym_class] = STATE(1650),
- [sym_function_expression] = STATE(1650),
- [sym_generator_function] = STATE(1650),
- [sym_arrow_function] = STATE(1650),
- [sym__call_signature] = STATE(5828),
- [sym__formal_parameter] = STATE(4890),
- [sym_call_expression] = STATE(1650),
- [sym_new_expression] = STATE(1634),
- [sym_await_expression] = STATE(1634),
- [sym_member_expression] = STATE(1230),
- [sym_subscript_expression] = STATE(1230),
- [sym_assignment_expression] = STATE(1634),
- [sym__augmented_assignment_lhs] = STATE(2900),
- [sym_augmented_assignment_expression] = STATE(1634),
- [sym__destructuring_pattern] = STATE(3610),
- [sym_ternary_expression] = STATE(1634),
- [sym_binary_expression] = STATE(1634),
- [sym_unary_expression] = STATE(1634),
- [sym_update_expression] = STATE(1634),
- [sym_sequence_expression] = STATE(5725),
- [sym_string] = STATE(1650),
- [sym_template_string] = STATE(1650),
- [sym_regex] = STATE(1650),
- [sym_meta_property] = STATE(1650),
- [sym_decorator] = STATE(1244),
- [sym_formal_parameters] = STATE(3742),
- [sym_pattern] = STATE(4262),
- [sym_rest_pattern] = STATE(3700),
- [sym_non_null_expression] = STATE(1230),
- [sym_as_expression] = STATE(1634),
- [sym_satisfies_expression] = STATE(1634),
- [sym_instantiation_expression] = STATE(1634),
- [sym_internal_module] = STATE(1634),
- [sym_accessibility_modifier] = STATE(268),
- [sym_override_modifier] = STATE(296),
- [sym_required_parameter] = STATE(4890),
- [sym_optional_parameter] = STATE(4890),
- [sym__parameter_name] = STATE(3493),
- [sym_type_parameters] = STATE(5349),
- [aux_sym_export_statement_repeat1] = STATE(253),
- [sym_identifier] = ACTIONS(1618),
- [anon_sym_export] = ACTIONS(610),
- [anon_sym_type] = ACTIONS(610),
- [anon_sym_namespace] = ACTIONS(614),
- [anon_sym_LBRACE] = ACTIONS(845),
- [anon_sym_typeof] = ACTIONS(650),
- [anon_sym_import] = ACTIONS(133),
- [anon_sym_let] = ACTIONS(610),
- [anon_sym_BANG] = ACTIONS(622),
- [anon_sym_LPAREN] = ACTIONS(815),
- [anon_sym_RPAREN] = ACTIONS(735),
- [anon_sym_await] = ACTIONS(624),
- [anon_sym_yield] = ACTIONS(626),
- [anon_sym_LBRACK] = ACTIONS(849),
- [sym_glimmer_opening_tag] = ACTIONS(148),
- [anon_sym_DQUOTE] = ACTIONS(150),
- [anon_sym_SQUOTE] = ACTIONS(152),
- [anon_sym_class] = ACTIONS(154),
- [anon_sym_async] = ACTIONS(632),
- [anon_sym_function] = ACTIONS(158),
- [anon_sym_new] = ACTIONS(1620),
- [anon_sym_using] = ACTIONS(636),
- [anon_sym_DOT_DOT_DOT] = ACTIONS(170),
- [anon_sym_PLUS] = ACTIONS(650),
- [anon_sym_DASH] = ACTIONS(650),
- [anon_sym_SLASH] = ACTIONS(646),
- [anon_sym_LT] = ACTIONS(181),
- [anon_sym_TILDE] = ACTIONS(622),
- [anon_sym_void] = ACTIONS(650),
- [anon_sym_delete] = ACTIONS(650),
- [anon_sym_PLUS_PLUS] = ACTIONS(652),
- [anon_sym_DASH_DASH] = ACTIONS(652),
- [sym_comment] = ACTIONS(5),
- [anon_sym_BQUOTE] = ACTIONS(825),
- [sym_number] = ACTIONS(787),
- [sym_private_property_identifier] = ACTIONS(654),
- [sym_this] = ACTIONS(1622),
- [sym_super] = ACTIONS(200),
- [sym_true] = ACTIONS(200),
- [sym_false] = ACTIONS(200),
- [sym_null] = ACTIONS(200),
- [sym_undefined] = ACTIONS(1624),
- [anon_sym_AT] = ACTIONS(757),
- [anon_sym_static] = ACTIONS(610),
- [anon_sym_readonly] = ACTIONS(1626),
- [anon_sym_get] = ACTIONS(610),
- [anon_sym_set] = ACTIONS(610),
- [anon_sym_declare] = ACTIONS(610),
- [anon_sym_public] = ACTIONS(763),
- [anon_sym_private] = ACTIONS(763),
- [anon_sym_protected] = ACTIONS(763),
- [anon_sym_override] = ACTIONS(765),
- [anon_sym_module] = ACTIONS(610),
- [anon_sym_any] = ACTIONS(610),
- [anon_sym_number] = ACTIONS(610),
- [anon_sym_boolean] = ACTIONS(610),
- [anon_sym_string] = ACTIONS(610),
- [anon_sym_symbol] = ACTIONS(610),
- [anon_sym_object] = ACTIONS(610),
- [sym_html_comment] = ACTIONS(5),
- },
- [187] = {
- [sym_import] = STATE(3334),
- [sym_parenthesized_expression] = STATE(1251),
- [sym_expression] = STATE(1511),
- [sym_primary_expression] = STATE(1468),
- [sym_yield_expression] = STATE(1634),
- [sym_object] = STATE(1650),
- [sym_object_pattern] = STATE(3610),
- [sym_array] = STATE(1650),
- [sym_array_pattern] = STATE(3610),
- [sym_glimmer_template] = STATE(1634),
- [sym_jsx_element] = STATE(1634),
- [sym_jsx_opening_element] = STATE(3026),
- [sym_jsx_self_closing_element] = STATE(1634),
- [sym_class] = STATE(1650),
- [sym_function_expression] = STATE(1650),
- [sym_generator_function] = STATE(1650),
- [sym_arrow_function] = STATE(1650),
- [sym__call_signature] = STATE(5828),
- [sym__formal_parameter] = STATE(4890),
- [sym_call_expression] = STATE(1650),
- [sym_new_expression] = STATE(1634),
- [sym_await_expression] = STATE(1634),
- [sym_member_expression] = STATE(1230),
- [sym_subscript_expression] = STATE(1230),
- [sym_assignment_expression] = STATE(1634),
- [sym__augmented_assignment_lhs] = STATE(2900),
- [sym_augmented_assignment_expression] = STATE(1634),
- [sym__destructuring_pattern] = STATE(3610),
- [sym_ternary_expression] = STATE(1634),
- [sym_binary_expression] = STATE(1634),
- [sym_unary_expression] = STATE(1634),
- [sym_update_expression] = STATE(1634),
- [sym_sequence_expression] = STATE(5635),
- [sym_string] = STATE(1650),
- [sym_template_string] = STATE(1650),
- [sym_regex] = STATE(1650),
- [sym_meta_property] = STATE(1650),
- [sym_decorator] = STATE(1244),
- [sym_formal_parameters] = STATE(3742),
- [sym_pattern] = STATE(4262),
- [sym_rest_pattern] = STATE(3700),
- [sym_non_null_expression] = STATE(1230),
- [sym_as_expression] = STATE(1634),
- [sym_satisfies_expression] = STATE(1634),
- [sym_instantiation_expression] = STATE(1634),
- [sym_internal_module] = STATE(1634),
- [sym_accessibility_modifier] = STATE(268),
- [sym_override_modifier] = STATE(296),
- [sym_required_parameter] = STATE(4890),
- [sym_optional_parameter] = STATE(4890),
- [sym__parameter_name] = STATE(3493),
- [sym_type_parameters] = STATE(5349),
- [aux_sym_export_statement_repeat1] = STATE(253),
- [sym_identifier] = ACTIONS(1618),
- [anon_sym_export] = ACTIONS(610),
- [anon_sym_type] = ACTIONS(610),
- [anon_sym_namespace] = ACTIONS(614),
- [anon_sym_LBRACE] = ACTIONS(845),
- [anon_sym_typeof] = ACTIONS(650),
- [anon_sym_import] = ACTIONS(133),
- [anon_sym_let] = ACTIONS(610),
- [anon_sym_BANG] = ACTIONS(622),
- [anon_sym_LPAREN] = ACTIONS(815),
- [anon_sym_RPAREN] = ACTIONS(735),
- [anon_sym_await] = ACTIONS(624),
- [anon_sym_yield] = ACTIONS(626),
- [anon_sym_LBRACK] = ACTIONS(849),
- [sym_glimmer_opening_tag] = ACTIONS(148),
- [anon_sym_DQUOTE] = ACTIONS(150),
- [anon_sym_SQUOTE] = ACTIONS(152),
- [anon_sym_class] = ACTIONS(154),
- [anon_sym_async] = ACTIONS(632),
- [anon_sym_function] = ACTIONS(158),
- [anon_sym_new] = ACTIONS(1620),
- [anon_sym_using] = ACTIONS(636),
- [anon_sym_DOT_DOT_DOT] = ACTIONS(170),
- [anon_sym_PLUS] = ACTIONS(650),
- [anon_sym_DASH] = ACTIONS(650),
- [anon_sym_SLASH] = ACTIONS(646),
- [anon_sym_LT] = ACTIONS(181),
- [anon_sym_TILDE] = ACTIONS(622),
- [anon_sym_void] = ACTIONS(650),
- [anon_sym_delete] = ACTIONS(650),
- [anon_sym_PLUS_PLUS] = ACTIONS(652),
- [anon_sym_DASH_DASH] = ACTIONS(652),
- [sym_comment] = ACTIONS(5),
- [anon_sym_BQUOTE] = ACTIONS(825),
- [sym_number] = ACTIONS(787),
- [sym_private_property_identifier] = ACTIONS(654),
- [sym_this] = ACTIONS(1622),
- [sym_super] = ACTIONS(200),
- [sym_true] = ACTIONS(200),
- [sym_false] = ACTIONS(200),
- [sym_null] = ACTIONS(200),
- [sym_undefined] = ACTIONS(1624),
- [anon_sym_AT] = ACTIONS(757),
- [anon_sym_static] = ACTIONS(610),
- [anon_sym_readonly] = ACTIONS(1626),
- [anon_sym_get] = ACTIONS(610),
- [anon_sym_set] = ACTIONS(610),
- [anon_sym_declare] = ACTIONS(610),
- [anon_sym_public] = ACTIONS(763),
- [anon_sym_private] = ACTIONS(763),
- [anon_sym_protected] = ACTIONS(763),
- [anon_sym_override] = ACTIONS(765),
- [anon_sym_module] = ACTIONS(610),
- [anon_sym_any] = ACTIONS(610),
- [anon_sym_number] = ACTIONS(610),
- [anon_sym_boolean] = ACTIONS(610),
- [anon_sym_string] = ACTIONS(610),
- [anon_sym_symbol] = ACTIONS(610),
- [anon_sym_object] = ACTIONS(610),
- [sym_html_comment] = ACTIONS(5),
- },
- [188] = {
- [sym_import] = STATE(3334),
- [sym_parenthesized_expression] = STATE(1179),
- [sym_expression] = STATE(2415),
- [sym_primary_expression] = STATE(1468),
- [sym_yield_expression] = STATE(1634),
- [sym_object] = STATE(1650),
- [sym_object_pattern] = STATE(3588),
- [sym_array] = STATE(1650),
- [sym_array_pattern] = STATE(3588),
- [sym_glimmer_template] = STATE(1634),
- [sym_jsx_element] = STATE(1634),
- [sym_jsx_opening_element] = STATE(3026),
- [sym_jsx_self_closing_element] = STATE(1634),
- [sym_class] = STATE(1650),
- [sym_function_expression] = STATE(1650),
- [sym_generator_function] = STATE(1650),
- [sym_arrow_function] = STATE(1650),
- [sym__call_signature] = STATE(5619),
- [sym__formal_parameter] = STATE(5251),
- [sym_call_expression] = STATE(1650),
- [sym_new_expression] = STATE(1634),
- [sym_await_expression] = STATE(1634),
- [sym_member_expression] = STATE(1221),
- [sym_subscript_expression] = STATE(1221),
- [sym_assignment_expression] = STATE(1634),
- [sym__augmented_assignment_lhs] = STATE(2878),
- [sym_augmented_assignment_expression] = STATE(1634),
- [sym__destructuring_pattern] = STATE(3588),
- [sym_ternary_expression] = STATE(1634),
- [sym_binary_expression] = STATE(1634),
- [sym_unary_expression] = STATE(1634),
- [sym_update_expression] = STATE(1634),
- [sym_string] = STATE(1650),
- [sym_template_string] = STATE(1650),
- [sym_regex] = STATE(1650),
- [sym_meta_property] = STATE(1650),
- [sym_decorator] = STATE(1244),
- [sym_formal_parameters] = STATE(3742),
- [sym_pattern] = STATE(4262),
- [sym_rest_pattern] = STATE(3700),
- [sym_non_null_expression] = STATE(1221),
- [sym_as_expression] = STATE(1634),
- [sym_satisfies_expression] = STATE(1634),
- [sym_instantiation_expression] = STATE(1634),
- [sym_internal_module] = STATE(1634),
- [sym_accessibility_modifier] = STATE(268),
- [sym_override_modifier] = STATE(296),
- [sym_required_parameter] = STATE(5251),
- [sym_optional_parameter] = STATE(5251),
- [sym__parameter_name] = STATE(3493),
- [sym_type_parameters] = STATE(5349),
- [aux_sym_export_statement_repeat1] = STATE(253),
- [sym_identifier] = ACTIONS(769),
- [anon_sym_export] = ACTIONS(115),
- [anon_sym_type] = ACTIONS(115),
- [anon_sym_namespace] = ACTIONS(124),
- [anon_sym_LBRACE] = ACTIONS(771),
- [anon_sym_typeof] = ACTIONS(187),
- [anon_sym_import] = ACTIONS(133),
- [anon_sym_let] = ACTIONS(115),
- [anon_sym_BANG] = ACTIONS(183),
- [anon_sym_LPAREN] = ACTIONS(815),
- [anon_sym_RPAREN] = ACTIONS(1628),
- [anon_sym_await] = ACTIONS(142),
- [anon_sym_yield] = ACTIONS(144),
- [anon_sym_LBRACK] = ACTIONS(1630),
- [sym_glimmer_opening_tag] = ACTIONS(148),
- [anon_sym_DQUOTE] = ACTIONS(150),
- [anon_sym_SQUOTE] = ACTIONS(152),
- [anon_sym_class] = ACTIONS(154),
- [anon_sym_async] = ACTIONS(156),
- [anon_sym_function] = ACTIONS(158),
- [anon_sym_new] = ACTIONS(779),
- [anon_sym_using] = ACTIONS(166),
- [anon_sym_DOT_DOT_DOT] = ACTIONS(170),
- [anon_sym_PLUS] = ACTIONS(187),
- [anon_sym_DASH] = ACTIONS(187),
- [anon_sym_SLASH] = ACTIONS(646),
- [anon_sym_LT] = ACTIONS(181),
- [anon_sym_TILDE] = ACTIONS(183),
- [anon_sym_void] = ACTIONS(187),
- [anon_sym_delete] = ACTIONS(187),
- [anon_sym_PLUS_PLUS] = ACTIONS(719),
- [anon_sym_DASH_DASH] = ACTIONS(719),
- [sym_comment] = ACTIONS(5),
- [anon_sym_BQUOTE] = ACTIONS(825),
- [sym_number] = ACTIONS(787),
- [sym_private_property_identifier] = ACTIONS(196),
- [sym_this] = ACTIONS(1632),
- [sym_super] = ACTIONS(200),
- [sym_true] = ACTIONS(200),
- [sym_false] = ACTIONS(200),
- [sym_null] = ACTIONS(200),
- [sym_undefined] = ACTIONS(791),
- [anon_sym_AT] = ACTIONS(757),
- [anon_sym_static] = ACTIONS(115),
- [anon_sym_readonly] = ACTIONS(1634),
- [anon_sym_get] = ACTIONS(115),
- [anon_sym_set] = ACTIONS(115),
- [anon_sym_declare] = ACTIONS(115),
- [anon_sym_public] = ACTIONS(833),
- [anon_sym_private] = ACTIONS(833),
- [anon_sym_protected] = ACTIONS(833),
- [anon_sym_override] = ACTIONS(835),
- [anon_sym_module] = ACTIONS(115),
- [anon_sym_any] = ACTIONS(115),
- [anon_sym_number] = ACTIONS(115),
- [anon_sym_boolean] = ACTIONS(115),
- [anon_sym_string] = ACTIONS(115),
- [anon_sym_symbol] = ACTIONS(115),
- [anon_sym_object] = ACTIONS(115),
- [sym_html_comment] = ACTIONS(5),
- },
- [189] = {
- [sym_import] = STATE(3334),
- [sym_parenthesized_expression] = STATE(1179),
- [sym_expression] = STATE(2415),
- [sym_primary_expression] = STATE(1468),
- [sym_yield_expression] = STATE(1634),
- [sym_object] = STATE(1650),
- [sym_object_pattern] = STATE(3588),
- [sym_array] = STATE(1650),
- [sym_array_pattern] = STATE(3588),
- [sym_glimmer_template] = STATE(1634),
- [sym_jsx_element] = STATE(1634),
- [sym_jsx_opening_element] = STATE(3026),
- [sym_jsx_self_closing_element] = STATE(1634),
- [sym_class] = STATE(1650),
- [sym_function_expression] = STATE(1650),
- [sym_generator_function] = STATE(1650),
- [sym_arrow_function] = STATE(1650),
- [sym__call_signature] = STATE(5619),
- [sym__formal_parameter] = STATE(5251),
- [sym_call_expression] = STATE(1650),
- [sym_new_expression] = STATE(1634),
- [sym_await_expression] = STATE(1634),
- [sym_member_expression] = STATE(1221),
- [sym_subscript_expression] = STATE(1221),
- [sym_assignment_expression] = STATE(1634),
- [sym__augmented_assignment_lhs] = STATE(2878),
- [sym_augmented_assignment_expression] = STATE(1634),
- [sym__destructuring_pattern] = STATE(3588),
- [sym_ternary_expression] = STATE(1634),
- [sym_binary_expression] = STATE(1634),
- [sym_unary_expression] = STATE(1634),
- [sym_update_expression] = STATE(1634),
- [sym_string] = STATE(1650),
- [sym_template_string] = STATE(1650),
- [sym_regex] = STATE(1650),
- [sym_meta_property] = STATE(1650),
- [sym_decorator] = STATE(1244),
- [sym_formal_parameters] = STATE(3742),
- [sym_pattern] = STATE(4262),
- [sym_rest_pattern] = STATE(3700),
- [sym_non_null_expression] = STATE(1221),
- [sym_as_expression] = STATE(1634),
- [sym_satisfies_expression] = STATE(1634),
- [sym_instantiation_expression] = STATE(1634),
- [sym_internal_module] = STATE(1634),
- [sym_accessibility_modifier] = STATE(268),
- [sym_override_modifier] = STATE(296),
- [sym_required_parameter] = STATE(5251),
- [sym_optional_parameter] = STATE(5251),
- [sym__parameter_name] = STATE(3493),
- [sym_type_parameters] = STATE(5349),
- [aux_sym_export_statement_repeat1] = STATE(253),
- [sym_identifier] = ACTIONS(769),
- [anon_sym_export] = ACTIONS(115),
- [anon_sym_type] = ACTIONS(115),
- [anon_sym_namespace] = ACTIONS(124),
- [anon_sym_LBRACE] = ACTIONS(771),
- [anon_sym_typeof] = ACTIONS(187),
- [anon_sym_import] = ACTIONS(133),
- [anon_sym_let] = ACTIONS(115),
- [anon_sym_BANG] = ACTIONS(183),
- [anon_sym_LPAREN] = ACTIONS(815),
- [anon_sym_RPAREN] = ACTIONS(1636),
- [anon_sym_await] = ACTIONS(142),
- [anon_sym_yield] = ACTIONS(144),
- [anon_sym_LBRACK] = ACTIONS(1630),
- [sym_glimmer_opening_tag] = ACTIONS(148),
- [anon_sym_DQUOTE] = ACTIONS(150),
- [anon_sym_SQUOTE] = ACTIONS(152),
- [anon_sym_class] = ACTIONS(154),
- [anon_sym_async] = ACTIONS(156),
- [anon_sym_function] = ACTIONS(158),
- [anon_sym_new] = ACTIONS(779),
- [anon_sym_using] = ACTIONS(166),
- [anon_sym_DOT_DOT_DOT] = ACTIONS(170),
- [anon_sym_PLUS] = ACTIONS(187),
- [anon_sym_DASH] = ACTIONS(187),
- [anon_sym_SLASH] = ACTIONS(646),
- [anon_sym_LT] = ACTIONS(181),
- [anon_sym_TILDE] = ACTIONS(183),
- [anon_sym_void] = ACTIONS(187),
- [anon_sym_delete] = ACTIONS(187),
- [anon_sym_PLUS_PLUS] = ACTIONS(719),
- [anon_sym_DASH_DASH] = ACTIONS(719),
- [sym_comment] = ACTIONS(5),
- [anon_sym_BQUOTE] = ACTIONS(825),
- [sym_number] = ACTIONS(787),
- [sym_private_property_identifier] = ACTIONS(196),
- [sym_this] = ACTIONS(1632),
- [sym_super] = ACTIONS(200),
- [sym_true] = ACTIONS(200),
- [sym_false] = ACTIONS(200),
- [sym_null] = ACTIONS(200),
- [sym_undefined] = ACTIONS(791),
- [anon_sym_AT] = ACTIONS(757),
- [anon_sym_static] = ACTIONS(115),
- [anon_sym_readonly] = ACTIONS(1634),
- [anon_sym_get] = ACTIONS(115),
- [anon_sym_set] = ACTIONS(115),
- [anon_sym_declare] = ACTIONS(115),
- [anon_sym_public] = ACTIONS(833),
- [anon_sym_private] = ACTIONS(833),
- [anon_sym_protected] = ACTIONS(833),
- [anon_sym_override] = ACTIONS(835),
- [anon_sym_module] = ACTIONS(115),
- [anon_sym_any] = ACTIONS(115),
- [anon_sym_number] = ACTIONS(115),
- [anon_sym_boolean] = ACTIONS(115),
- [anon_sym_string] = ACTIONS(115),
- [anon_sym_symbol] = ACTIONS(115),
- [anon_sym_object] = ACTIONS(115),
- [sym_html_comment] = ACTIONS(5),
- },
- [190] = {
- [sym_import] = STATE(3334),
- [sym_parenthesized_expression] = STATE(1179),
- [sym_expression] = STATE(2415),
- [sym_primary_expression] = STATE(1468),
- [sym_yield_expression] = STATE(1634),
- [sym_object] = STATE(1650),
- [sym_object_pattern] = STATE(3588),
- [sym_array] = STATE(1650),
- [sym_array_pattern] = STATE(3588),
- [sym_glimmer_template] = STATE(1634),
- [sym_jsx_element] = STATE(1634),
- [sym_jsx_opening_element] = STATE(3026),
- [sym_jsx_self_closing_element] = STATE(1634),
- [sym_class] = STATE(1650),
- [sym_function_expression] = STATE(1650),
- [sym_generator_function] = STATE(1650),
- [sym_arrow_function] = STATE(1650),
- [sym__call_signature] = STATE(5619),
- [sym__formal_parameter] = STATE(5251),
- [sym_call_expression] = STATE(1650),
- [sym_new_expression] = STATE(1634),
- [sym_await_expression] = STATE(1634),
- [sym_member_expression] = STATE(1221),
- [sym_subscript_expression] = STATE(1221),
- [sym_assignment_expression] = STATE(1634),
- [sym__augmented_assignment_lhs] = STATE(2878),
- [sym_augmented_assignment_expression] = STATE(1634),
- [sym__destructuring_pattern] = STATE(3588),
- [sym_ternary_expression] = STATE(1634),
- [sym_binary_expression] = STATE(1634),
- [sym_unary_expression] = STATE(1634),
- [sym_update_expression] = STATE(1634),
- [sym_string] = STATE(1650),
- [sym_template_string] = STATE(1650),
- [sym_regex] = STATE(1650),
- [sym_meta_property] = STATE(1650),
- [sym_decorator] = STATE(1244),
- [sym_formal_parameters] = STATE(3742),
- [sym_pattern] = STATE(4262),
- [sym_rest_pattern] = STATE(3700),
- [sym_non_null_expression] = STATE(1221),
- [sym_as_expression] = STATE(1634),
- [sym_satisfies_expression] = STATE(1634),
- [sym_instantiation_expression] = STATE(1634),
- [sym_internal_module] = STATE(1634),
- [sym_accessibility_modifier] = STATE(268),
- [sym_override_modifier] = STATE(296),
- [sym_required_parameter] = STATE(5251),
- [sym_optional_parameter] = STATE(5251),
- [sym__parameter_name] = STATE(3493),
- [sym_type_parameters] = STATE(5349),
- [aux_sym_export_statement_repeat1] = STATE(253),
- [sym_identifier] = ACTIONS(769),
- [anon_sym_export] = ACTIONS(115),
- [anon_sym_type] = ACTIONS(115),
- [anon_sym_namespace] = ACTIONS(124),
- [anon_sym_LBRACE] = ACTIONS(771),
- [anon_sym_typeof] = ACTIONS(187),
- [anon_sym_import] = ACTIONS(133),
- [anon_sym_let] = ACTIONS(115),
- [anon_sym_BANG] = ACTIONS(183),
- [anon_sym_LPAREN] = ACTIONS(815),
- [anon_sym_RPAREN] = ACTIONS(1638),
- [anon_sym_await] = ACTIONS(142),
- [anon_sym_yield] = ACTIONS(144),
- [anon_sym_LBRACK] = ACTIONS(1630),
- [sym_glimmer_opening_tag] = ACTIONS(148),
- [anon_sym_DQUOTE] = ACTIONS(150),
- [anon_sym_SQUOTE] = ACTIONS(152),
- [anon_sym_class] = ACTIONS(154),
- [anon_sym_async] = ACTIONS(156),
- [anon_sym_function] = ACTIONS(158),
- [anon_sym_new] = ACTIONS(779),
- [anon_sym_using] = ACTIONS(166),
- [anon_sym_DOT_DOT_DOT] = ACTIONS(170),
- [anon_sym_PLUS] = ACTIONS(187),
- [anon_sym_DASH] = ACTIONS(187),
- [anon_sym_SLASH] = ACTIONS(646),
- [anon_sym_LT] = ACTIONS(181),
- [anon_sym_TILDE] = ACTIONS(183),
- [anon_sym_void] = ACTIONS(187),
- [anon_sym_delete] = ACTIONS(187),
- [anon_sym_PLUS_PLUS] = ACTIONS(719),
- [anon_sym_DASH_DASH] = ACTIONS(719),
- [sym_comment] = ACTIONS(5),
- [anon_sym_BQUOTE] = ACTIONS(825),
- [sym_number] = ACTIONS(787),
- [sym_private_property_identifier] = ACTIONS(196),
- [sym_this] = ACTIONS(1632),
- [sym_super] = ACTIONS(200),
- [sym_true] = ACTIONS(200),
- [sym_false] = ACTIONS(200),
- [sym_null] = ACTIONS(200),
- [sym_undefined] = ACTIONS(791),
- [anon_sym_AT] = ACTIONS(757),
- [anon_sym_static] = ACTIONS(115),
- [anon_sym_readonly] = ACTIONS(1634),
- [anon_sym_get] = ACTIONS(115),
- [anon_sym_set] = ACTIONS(115),
- [anon_sym_declare] = ACTIONS(115),
- [anon_sym_public] = ACTIONS(833),
- [anon_sym_private] = ACTIONS(833),
- [anon_sym_protected] = ACTIONS(833),
- [anon_sym_override] = ACTIONS(835),
- [anon_sym_module] = ACTIONS(115),
- [anon_sym_any] = ACTIONS(115),
- [anon_sym_number] = ACTIONS(115),
- [anon_sym_boolean] = ACTIONS(115),
- [anon_sym_string] = ACTIONS(115),
- [anon_sym_symbol] = ACTIONS(115),
- [anon_sym_object] = ACTIONS(115),
- [sym_html_comment] = ACTIONS(5),
- },
- [191] = {
- [sym_import] = STATE(3334),
- [sym_parenthesized_expression] = STATE(1179),
- [sym_expression] = STATE(2415),
- [sym_primary_expression] = STATE(1468),
- [sym_yield_expression] = STATE(1634),
- [sym_object] = STATE(1650),
- [sym_object_pattern] = STATE(3588),
- [sym_array] = STATE(1650),
- [sym_array_pattern] = STATE(3588),
- [sym_glimmer_template] = STATE(1634),
- [sym_jsx_element] = STATE(1634),
- [sym_jsx_opening_element] = STATE(3026),
- [sym_jsx_self_closing_element] = STATE(1634),
- [sym_class] = STATE(1650),
- [sym_function_expression] = STATE(1650),
- [sym_generator_function] = STATE(1650),
- [sym_arrow_function] = STATE(1650),
- [sym__call_signature] = STATE(5619),
- [sym__formal_parameter] = STATE(5092),
- [sym_call_expression] = STATE(1650),
- [sym_new_expression] = STATE(1634),
- [sym_await_expression] = STATE(1634),
- [sym_member_expression] = STATE(1221),
- [sym_subscript_expression] = STATE(1221),
- [sym_assignment_expression] = STATE(1634),
- [sym__augmented_assignment_lhs] = STATE(2878),
- [sym_augmented_assignment_expression] = STATE(1634),
- [sym__destructuring_pattern] = STATE(3588),
- [sym_ternary_expression] = STATE(1634),
- [sym_binary_expression] = STATE(1634),
- [sym_unary_expression] = STATE(1634),
- [sym_update_expression] = STATE(1634),
- [sym_string] = STATE(1650),
- [sym_template_string] = STATE(1650),
- [sym_regex] = STATE(1650),
- [sym_meta_property] = STATE(1650),
- [sym_decorator] = STATE(1244),
- [sym_formal_parameters] = STATE(3742),
- [sym_pattern] = STATE(4262),
- [sym_rest_pattern] = STATE(3700),
- [sym_non_null_expression] = STATE(1221),
- [sym_as_expression] = STATE(1634),
- [sym_satisfies_expression] = STATE(1634),
- [sym_instantiation_expression] = STATE(1634),
- [sym_internal_module] = STATE(1634),
- [sym_accessibility_modifier] = STATE(268),
- [sym_override_modifier] = STATE(296),
- [sym_required_parameter] = STATE(5092),
- [sym_optional_parameter] = STATE(5092),
- [sym__parameter_name] = STATE(3493),
- [sym_type_parameters] = STATE(5349),
- [aux_sym_export_statement_repeat1] = STATE(253),
- [sym_identifier] = ACTIONS(769),
- [anon_sym_export] = ACTIONS(115),
- [anon_sym_type] = ACTIONS(115),
- [anon_sym_namespace] = ACTIONS(124),
- [anon_sym_LBRACE] = ACTIONS(771),
- [anon_sym_typeof] = ACTIONS(187),
- [anon_sym_import] = ACTIONS(133),
- [anon_sym_let] = ACTIONS(115),
- [anon_sym_BANG] = ACTIONS(183),
- [anon_sym_LPAREN] = ACTIONS(815),
- [anon_sym_RPAREN] = ACTIONS(1640),
- [anon_sym_await] = ACTIONS(142),
- [anon_sym_yield] = ACTIONS(144),
- [anon_sym_LBRACK] = ACTIONS(1630),
- [sym_glimmer_opening_tag] = ACTIONS(148),
- [anon_sym_DQUOTE] = ACTIONS(150),
- [anon_sym_SQUOTE] = ACTIONS(152),
- [anon_sym_class] = ACTIONS(154),
- [anon_sym_async] = ACTIONS(156),
- [anon_sym_function] = ACTIONS(158),
- [anon_sym_new] = ACTIONS(779),
- [anon_sym_using] = ACTIONS(166),
- [anon_sym_DOT_DOT_DOT] = ACTIONS(170),
- [anon_sym_PLUS] = ACTIONS(187),
- [anon_sym_DASH] = ACTIONS(187),
- [anon_sym_SLASH] = ACTIONS(646),
- [anon_sym_LT] = ACTIONS(181),
- [anon_sym_TILDE] = ACTIONS(183),
- [anon_sym_void] = ACTIONS(187),
- [anon_sym_delete] = ACTIONS(187),
- [anon_sym_PLUS_PLUS] = ACTIONS(719),
- [anon_sym_DASH_DASH] = ACTIONS(719),
- [sym_comment] = ACTIONS(5),
- [anon_sym_BQUOTE] = ACTIONS(825),
- [sym_number] = ACTIONS(787),
- [sym_private_property_identifier] = ACTIONS(196),
- [sym_this] = ACTIONS(1632),
- [sym_super] = ACTIONS(200),
- [sym_true] = ACTIONS(200),
- [sym_false] = ACTIONS(200),
- [sym_null] = ACTIONS(200),
- [sym_undefined] = ACTIONS(791),
- [anon_sym_AT] = ACTIONS(757),
- [anon_sym_static] = ACTIONS(115),
- [anon_sym_readonly] = ACTIONS(1634),
- [anon_sym_get] = ACTIONS(115),
- [anon_sym_set] = ACTIONS(115),
- [anon_sym_declare] = ACTIONS(115),
- [anon_sym_public] = ACTIONS(833),
- [anon_sym_private] = ACTIONS(833),
- [anon_sym_protected] = ACTIONS(833),
- [anon_sym_override] = ACTIONS(835),
- [anon_sym_module] = ACTIONS(115),
- [anon_sym_any] = ACTIONS(115),
- [anon_sym_number] = ACTIONS(115),
- [anon_sym_boolean] = ACTIONS(115),
- [anon_sym_string] = ACTIONS(115),
- [anon_sym_symbol] = ACTIONS(115),
- [anon_sym_object] = ACTIONS(115),
- [sym_html_comment] = ACTIONS(5),
- },
- [192] = {
- [sym_import] = STATE(3334),
- [sym_parenthesized_expression] = STATE(1179),
- [sym_expression] = STATE(2415),
- [sym_primary_expression] = STATE(1468),
- [sym_yield_expression] = STATE(1634),
- [sym_object] = STATE(1650),
- [sym_object_pattern] = STATE(3588),
- [sym_array] = STATE(1650),
- [sym_array_pattern] = STATE(3588),
- [sym_glimmer_template] = STATE(1634),
- [sym_jsx_element] = STATE(1634),
- [sym_jsx_opening_element] = STATE(3026),
- [sym_jsx_self_closing_element] = STATE(1634),
- [sym_class] = STATE(1650),
- [sym_function_expression] = STATE(1650),
- [sym_generator_function] = STATE(1650),
- [sym_arrow_function] = STATE(1650),
- [sym__call_signature] = STATE(5619),
- [sym__formal_parameter] = STATE(5251),
- [sym_call_expression] = STATE(1650),
- [sym_new_expression] = STATE(1634),
- [sym_await_expression] = STATE(1634),
- [sym_member_expression] = STATE(1221),
- [sym_subscript_expression] = STATE(1221),
- [sym_assignment_expression] = STATE(1634),
- [sym__augmented_assignment_lhs] = STATE(2878),
- [sym_augmented_assignment_expression] = STATE(1634),
- [sym__destructuring_pattern] = STATE(3588),
- [sym_ternary_expression] = STATE(1634),
- [sym_binary_expression] = STATE(1634),
- [sym_unary_expression] = STATE(1634),
- [sym_update_expression] = STATE(1634),
- [sym_string] = STATE(1650),
- [sym_template_string] = STATE(1650),
- [sym_regex] = STATE(1650),
- [sym_meta_property] = STATE(1650),
- [sym_decorator] = STATE(1244),
- [sym_formal_parameters] = STATE(3742),
- [sym_pattern] = STATE(4262),
- [sym_rest_pattern] = STATE(3700),
- [sym_non_null_expression] = STATE(1221),
- [sym_as_expression] = STATE(1634),
- [sym_satisfies_expression] = STATE(1634),
- [sym_instantiation_expression] = STATE(1634),
- [sym_internal_module] = STATE(1634),
- [sym_accessibility_modifier] = STATE(268),
- [sym_override_modifier] = STATE(296),
- [sym_required_parameter] = STATE(5251),
- [sym_optional_parameter] = STATE(5251),
- [sym__parameter_name] = STATE(3493),
- [sym_type_parameters] = STATE(5349),
- [aux_sym_export_statement_repeat1] = STATE(253),
- [sym_identifier] = ACTIONS(769),
- [anon_sym_export] = ACTIONS(115),
- [anon_sym_type] = ACTIONS(115),
- [anon_sym_namespace] = ACTIONS(124),
- [anon_sym_LBRACE] = ACTIONS(771),
- [anon_sym_typeof] = ACTIONS(187),
- [anon_sym_import] = ACTIONS(133),
- [anon_sym_let] = ACTIONS(115),
- [anon_sym_BANG] = ACTIONS(183),
- [anon_sym_LPAREN] = ACTIONS(815),
- [anon_sym_RPAREN] = ACTIONS(1642),
- [anon_sym_await] = ACTIONS(142),
- [anon_sym_yield] = ACTIONS(144),
- [anon_sym_LBRACK] = ACTIONS(1630),
- [sym_glimmer_opening_tag] = ACTIONS(148),
- [anon_sym_DQUOTE] = ACTIONS(150),
- [anon_sym_SQUOTE] = ACTIONS(152),
- [anon_sym_class] = ACTIONS(154),
- [anon_sym_async] = ACTIONS(156),
- [anon_sym_function] = ACTIONS(158),
- [anon_sym_new] = ACTIONS(779),
- [anon_sym_using] = ACTIONS(166),
- [anon_sym_DOT_DOT_DOT] = ACTIONS(170),
- [anon_sym_PLUS] = ACTIONS(187),
- [anon_sym_DASH] = ACTIONS(187),
- [anon_sym_SLASH] = ACTIONS(646),
- [anon_sym_LT] = ACTIONS(181),
- [anon_sym_TILDE] = ACTIONS(183),
- [anon_sym_void] = ACTIONS(187),
- [anon_sym_delete] = ACTIONS(187),
- [anon_sym_PLUS_PLUS] = ACTIONS(719),
- [anon_sym_DASH_DASH] = ACTIONS(719),
- [sym_comment] = ACTIONS(5),
- [anon_sym_BQUOTE] = ACTIONS(825),
- [sym_number] = ACTIONS(787),
- [sym_private_property_identifier] = ACTIONS(196),
- [sym_this] = ACTIONS(1632),
- [sym_super] = ACTIONS(200),
- [sym_true] = ACTIONS(200),
- [sym_false] = ACTIONS(200),
- [sym_null] = ACTIONS(200),
- [sym_undefined] = ACTIONS(791),
- [anon_sym_AT] = ACTIONS(757),
- [anon_sym_static] = ACTIONS(115),
- [anon_sym_readonly] = ACTIONS(1634),
- [anon_sym_get] = ACTIONS(115),
- [anon_sym_set] = ACTIONS(115),
- [anon_sym_declare] = ACTIONS(115),
- [anon_sym_public] = ACTIONS(833),
- [anon_sym_private] = ACTIONS(833),
- [anon_sym_protected] = ACTIONS(833),
- [anon_sym_override] = ACTIONS(835),
- [anon_sym_module] = ACTIONS(115),
- [anon_sym_any] = ACTIONS(115),
- [anon_sym_number] = ACTIONS(115),
- [anon_sym_boolean] = ACTIONS(115),
- [anon_sym_string] = ACTIONS(115),
- [anon_sym_symbol] = ACTIONS(115),
- [anon_sym_object] = ACTIONS(115),
- [sym_html_comment] = ACTIONS(5),
- },
- [193] = {
- [sym_import] = STATE(3334),
- [sym_parenthesized_expression] = STATE(1179),
- [sym_expression] = STATE(2415),
- [sym_primary_expression] = STATE(1468),
- [sym_yield_expression] = STATE(1634),
- [sym_object] = STATE(1650),
- [sym_object_pattern] = STATE(3588),
- [sym_array] = STATE(1650),
- [sym_array_pattern] = STATE(3588),
- [sym_glimmer_template] = STATE(1634),
- [sym_jsx_element] = STATE(1634),
- [sym_jsx_opening_element] = STATE(3026),
- [sym_jsx_self_closing_element] = STATE(1634),
- [sym_class] = STATE(1650),
- [sym_function_expression] = STATE(1650),
- [sym_generator_function] = STATE(1650),
- [sym_arrow_function] = STATE(1650),
- [sym__call_signature] = STATE(5619),
- [sym__formal_parameter] = STATE(4890),
- [sym_call_expression] = STATE(1650),
- [sym_new_expression] = STATE(1634),
- [sym_await_expression] = STATE(1634),
- [sym_member_expression] = STATE(1221),
- [sym_subscript_expression] = STATE(1221),
- [sym_assignment_expression] = STATE(1634),
- [sym__augmented_assignment_lhs] = STATE(2878),
- [sym_augmented_assignment_expression] = STATE(1634),
- [sym__destructuring_pattern] = STATE(3588),
- [sym_ternary_expression] = STATE(1634),
- [sym_binary_expression] = STATE(1634),
- [sym_unary_expression] = STATE(1634),
- [sym_update_expression] = STATE(1634),
- [sym_string] = STATE(1650),
- [sym_template_string] = STATE(1650),
- [sym_regex] = STATE(1650),
- [sym_meta_property] = STATE(1650),
- [sym_decorator] = STATE(1244),
- [sym_formal_parameters] = STATE(3742),
- [sym_pattern] = STATE(4262),
- [sym_rest_pattern] = STATE(3700),
- [sym_non_null_expression] = STATE(1221),
- [sym_as_expression] = STATE(1634),
- [sym_satisfies_expression] = STATE(1634),
- [sym_instantiation_expression] = STATE(1634),
- [sym_internal_module] = STATE(1634),
- [sym_accessibility_modifier] = STATE(268),
- [sym_override_modifier] = STATE(296),
- [sym_required_parameter] = STATE(4890),
- [sym_optional_parameter] = STATE(4890),
- [sym__parameter_name] = STATE(3493),
- [sym_type_parameters] = STATE(5349),
- [aux_sym_export_statement_repeat1] = STATE(253),
- [sym_identifier] = ACTIONS(769),
- [anon_sym_export] = ACTIONS(115),
- [anon_sym_type] = ACTIONS(115),
- [anon_sym_namespace] = ACTIONS(124),
- [anon_sym_LBRACE] = ACTIONS(771),
- [anon_sym_typeof] = ACTIONS(187),
- [anon_sym_import] = ACTIONS(133),
- [anon_sym_let] = ACTIONS(115),
- [anon_sym_BANG] = ACTIONS(183),
- [anon_sym_LPAREN] = ACTIONS(815),
- [anon_sym_RPAREN] = ACTIONS(735),
- [anon_sym_await] = ACTIONS(142),
- [anon_sym_yield] = ACTIONS(144),
- [anon_sym_LBRACK] = ACTIONS(1630),
- [sym_glimmer_opening_tag] = ACTIONS(148),
- [anon_sym_DQUOTE] = ACTIONS(150),
- [anon_sym_SQUOTE] = ACTIONS(152),
- [anon_sym_class] = ACTIONS(154),
- [anon_sym_async] = ACTIONS(156),
- [anon_sym_function] = ACTIONS(158),
- [anon_sym_new] = ACTIONS(779),
- [anon_sym_using] = ACTIONS(166),
- [anon_sym_DOT_DOT_DOT] = ACTIONS(170),
- [anon_sym_PLUS] = ACTIONS(187),
- [anon_sym_DASH] = ACTIONS(187),
- [anon_sym_SLASH] = ACTIONS(646),
- [anon_sym_LT] = ACTIONS(181),
- [anon_sym_TILDE] = ACTIONS(183),
- [anon_sym_void] = ACTIONS(187),
- [anon_sym_delete] = ACTIONS(187),
- [anon_sym_PLUS_PLUS] = ACTIONS(719),
- [anon_sym_DASH_DASH] = ACTIONS(719),
- [sym_comment] = ACTIONS(5),
- [anon_sym_BQUOTE] = ACTIONS(825),
- [sym_number] = ACTIONS(787),
- [sym_private_property_identifier] = ACTIONS(196),
- [sym_this] = ACTIONS(1632),
- [sym_super] = ACTIONS(200),
- [sym_true] = ACTIONS(200),
- [sym_false] = ACTIONS(200),
- [sym_null] = ACTIONS(200),
- [sym_undefined] = ACTIONS(791),
- [anon_sym_AT] = ACTIONS(757),
- [anon_sym_static] = ACTIONS(115),
- [anon_sym_readonly] = ACTIONS(1634),
- [anon_sym_get] = ACTIONS(115),
- [anon_sym_set] = ACTIONS(115),
- [anon_sym_declare] = ACTIONS(115),
- [anon_sym_public] = ACTIONS(833),
- [anon_sym_private] = ACTIONS(833),
- [anon_sym_protected] = ACTIONS(833),
- [anon_sym_override] = ACTIONS(835),
- [anon_sym_module] = ACTIONS(115),
- [anon_sym_any] = ACTIONS(115),
- [anon_sym_number] = ACTIONS(115),
- [anon_sym_boolean] = ACTIONS(115),
- [anon_sym_string] = ACTIONS(115),
- [anon_sym_symbol] = ACTIONS(115),
- [anon_sym_object] = ACTIONS(115),
- [sym_html_comment] = ACTIONS(5),
- },
- [194] = {
- [sym_import] = STATE(3334),
- [sym_parenthesized_expression] = STATE(1179),
- [sym_expression] = STATE(2415),
- [sym_primary_expression] = STATE(1468),
- [sym_yield_expression] = STATE(1634),
- [sym_object] = STATE(1650),
- [sym_object_pattern] = STATE(3588),
- [sym_array] = STATE(1650),
- [sym_array_pattern] = STATE(3588),
- [sym_glimmer_template] = STATE(1634),
- [sym_jsx_element] = STATE(1634),
- [sym_jsx_opening_element] = STATE(3026),
- [sym_jsx_self_closing_element] = STATE(1634),
- [sym_class] = STATE(1650),
- [sym_function_expression] = STATE(1650),
- [sym_generator_function] = STATE(1650),
- [sym_arrow_function] = STATE(1650),
- [sym__call_signature] = STATE(5619),
- [sym__formal_parameter] = STATE(5251),
- [sym_call_expression] = STATE(1650),
- [sym_new_expression] = STATE(1634),
- [sym_await_expression] = STATE(1634),
- [sym_member_expression] = STATE(1221),
- [sym_subscript_expression] = STATE(1221),
- [sym_assignment_expression] = STATE(1634),
- [sym__augmented_assignment_lhs] = STATE(2878),
- [sym_augmented_assignment_expression] = STATE(1634),
- [sym__destructuring_pattern] = STATE(3588),
- [sym_ternary_expression] = STATE(1634),
- [sym_binary_expression] = STATE(1634),
- [sym_unary_expression] = STATE(1634),
- [sym_update_expression] = STATE(1634),
- [sym_string] = STATE(1650),
- [sym_template_string] = STATE(1650),
- [sym_regex] = STATE(1650),
- [sym_meta_property] = STATE(1650),
- [sym_decorator] = STATE(1244),
- [sym_formal_parameters] = STATE(3742),
- [sym_pattern] = STATE(4262),
- [sym_rest_pattern] = STATE(3700),
- [sym_non_null_expression] = STATE(1221),
- [sym_as_expression] = STATE(1634),
- [sym_satisfies_expression] = STATE(1634),
- [sym_instantiation_expression] = STATE(1634),
- [sym_internal_module] = STATE(1634),
- [sym_accessibility_modifier] = STATE(268),
- [sym_override_modifier] = STATE(296),
- [sym_required_parameter] = STATE(5251),
- [sym_optional_parameter] = STATE(5251),
- [sym__parameter_name] = STATE(3493),
- [sym_type_parameters] = STATE(5349),
- [aux_sym_export_statement_repeat1] = STATE(253),
- [sym_identifier] = ACTIONS(769),
- [anon_sym_export] = ACTIONS(115),
- [anon_sym_type] = ACTIONS(115),
- [anon_sym_namespace] = ACTIONS(124),
- [anon_sym_LBRACE] = ACTIONS(771),
- [anon_sym_typeof] = ACTIONS(187),
- [anon_sym_import] = ACTIONS(133),
- [anon_sym_let] = ACTIONS(115),
- [anon_sym_BANG] = ACTIONS(183),
- [anon_sym_LPAREN] = ACTIONS(815),
- [anon_sym_RPAREN] = ACTIONS(1644),
- [anon_sym_await] = ACTIONS(142),
- [anon_sym_yield] = ACTIONS(144),
- [anon_sym_LBRACK] = ACTIONS(1630),
- [sym_glimmer_opening_tag] = ACTIONS(148),
- [anon_sym_DQUOTE] = ACTIONS(150),
- [anon_sym_SQUOTE] = ACTIONS(152),
- [anon_sym_class] = ACTIONS(154),
- [anon_sym_async] = ACTIONS(156),
- [anon_sym_function] = ACTIONS(158),
- [anon_sym_new] = ACTIONS(779),
- [anon_sym_using] = ACTIONS(166),
- [anon_sym_DOT_DOT_DOT] = ACTIONS(170),
- [anon_sym_PLUS] = ACTIONS(187),
- [anon_sym_DASH] = ACTIONS(187),
- [anon_sym_SLASH] = ACTIONS(646),
- [anon_sym_LT] = ACTIONS(181),
- [anon_sym_TILDE] = ACTIONS(183),
- [anon_sym_void] = ACTIONS(187),
- [anon_sym_delete] = ACTIONS(187),
- [anon_sym_PLUS_PLUS] = ACTIONS(719),
- [anon_sym_DASH_DASH] = ACTIONS(719),
- [sym_comment] = ACTIONS(5),
- [anon_sym_BQUOTE] = ACTIONS(825),
- [sym_number] = ACTIONS(787),
- [sym_private_property_identifier] = ACTIONS(196),
- [sym_this] = ACTIONS(1632),
- [sym_super] = ACTIONS(200),
- [sym_true] = ACTIONS(200),
- [sym_false] = ACTIONS(200),
- [sym_null] = ACTIONS(200),
- [sym_undefined] = ACTIONS(791),
- [anon_sym_AT] = ACTIONS(757),
- [anon_sym_static] = ACTIONS(115),
- [anon_sym_readonly] = ACTIONS(1634),
- [anon_sym_get] = ACTIONS(115),
- [anon_sym_set] = ACTIONS(115),
- [anon_sym_declare] = ACTIONS(115),
- [anon_sym_public] = ACTIONS(833),
- [anon_sym_private] = ACTIONS(833),
- [anon_sym_protected] = ACTIONS(833),
- [anon_sym_override] = ACTIONS(835),
- [anon_sym_module] = ACTIONS(115),
- [anon_sym_any] = ACTIONS(115),
- [anon_sym_number] = ACTIONS(115),
- [anon_sym_boolean] = ACTIONS(115),
- [anon_sym_string] = ACTIONS(115),
- [anon_sym_symbol] = ACTIONS(115),
- [anon_sym_object] = ACTIONS(115),
- [sym_html_comment] = ACTIONS(5),
- },
- [195] = {
- [sym_import] = STATE(3334),
- [sym_parenthesized_expression] = STATE(1179),
- [sym_expression] = STATE(2415),
- [sym_primary_expression] = STATE(1468),
- [sym_yield_expression] = STATE(1634),
- [sym_object] = STATE(1650),
- [sym_object_pattern] = STATE(3588),
- [sym_array] = STATE(1650),
- [sym_array_pattern] = STATE(3588),
- [sym_glimmer_template] = STATE(1634),
- [sym_jsx_element] = STATE(1634),
- [sym_jsx_opening_element] = STATE(3026),
- [sym_jsx_self_closing_element] = STATE(1634),
- [sym_class] = STATE(1650),
- [sym_function_expression] = STATE(1650),
- [sym_generator_function] = STATE(1650),
- [sym_arrow_function] = STATE(1650),
- [sym__call_signature] = STATE(5619),
- [sym__formal_parameter] = STATE(4892),
- [sym_call_expression] = STATE(1650),
- [sym_new_expression] = STATE(1634),
- [sym_await_expression] = STATE(1634),
- [sym_member_expression] = STATE(1221),
- [sym_subscript_expression] = STATE(1221),
- [sym_assignment_expression] = STATE(1634),
- [sym__augmented_assignment_lhs] = STATE(2878),
- [sym_augmented_assignment_expression] = STATE(1634),
- [sym__destructuring_pattern] = STATE(3588),
- [sym_ternary_expression] = STATE(1634),
- [sym_binary_expression] = STATE(1634),
- [sym_unary_expression] = STATE(1634),
- [sym_update_expression] = STATE(1634),
- [sym_string] = STATE(1650),
- [sym_template_string] = STATE(1650),
- [sym_regex] = STATE(1650),
- [sym_meta_property] = STATE(1650),
- [sym_decorator] = STATE(1244),
- [sym_formal_parameters] = STATE(3742),
- [sym_pattern] = STATE(4262),
- [sym_rest_pattern] = STATE(3700),
- [sym_non_null_expression] = STATE(1221),
- [sym_as_expression] = STATE(1634),
- [sym_satisfies_expression] = STATE(1634),
- [sym_instantiation_expression] = STATE(1634),
- [sym_internal_module] = STATE(1634),
- [sym_accessibility_modifier] = STATE(268),
- [sym_override_modifier] = STATE(296),
- [sym_required_parameter] = STATE(4892),
- [sym_optional_parameter] = STATE(4892),
- [sym__parameter_name] = STATE(3493),
- [sym_type_parameters] = STATE(5349),
- [aux_sym_export_statement_repeat1] = STATE(253),
- [sym_identifier] = ACTIONS(769),
- [anon_sym_export] = ACTIONS(115),
- [anon_sym_type] = ACTIONS(115),
- [anon_sym_namespace] = ACTIONS(124),
- [anon_sym_LBRACE] = ACTIONS(771),
- [anon_sym_typeof] = ACTIONS(187),
- [anon_sym_import] = ACTIONS(133),
- [anon_sym_let] = ACTIONS(115),
- [anon_sym_BANG] = ACTIONS(183),
- [anon_sym_LPAREN] = ACTIONS(815),
- [anon_sym_RPAREN] = ACTIONS(1646),
- [anon_sym_await] = ACTIONS(142),
- [anon_sym_yield] = ACTIONS(144),
- [anon_sym_LBRACK] = ACTIONS(1630),
- [sym_glimmer_opening_tag] = ACTIONS(148),
- [anon_sym_DQUOTE] = ACTIONS(150),
- [anon_sym_SQUOTE] = ACTIONS(152),
- [anon_sym_class] = ACTIONS(154),
- [anon_sym_async] = ACTIONS(156),
- [anon_sym_function] = ACTIONS(158),
- [anon_sym_new] = ACTIONS(779),
- [anon_sym_using] = ACTIONS(166),
- [anon_sym_DOT_DOT_DOT] = ACTIONS(170),
- [anon_sym_PLUS] = ACTIONS(187),
- [anon_sym_DASH] = ACTIONS(187),
- [anon_sym_SLASH] = ACTIONS(646),
- [anon_sym_LT] = ACTIONS(181),
- [anon_sym_TILDE] = ACTIONS(183),
- [anon_sym_void] = ACTIONS(187),
- [anon_sym_delete] = ACTIONS(187),
- [anon_sym_PLUS_PLUS] = ACTIONS(719),
- [anon_sym_DASH_DASH] = ACTIONS(719),
- [sym_comment] = ACTIONS(5),
- [anon_sym_BQUOTE] = ACTIONS(825),
- [sym_number] = ACTIONS(787),
- [sym_private_property_identifier] = ACTIONS(196),
- [sym_this] = ACTIONS(1632),
- [sym_super] = ACTIONS(200),
- [sym_true] = ACTIONS(200),
- [sym_false] = ACTIONS(200),
- [sym_null] = ACTIONS(200),
- [sym_undefined] = ACTIONS(791),
- [anon_sym_AT] = ACTIONS(757),
- [anon_sym_static] = ACTIONS(115),
- [anon_sym_readonly] = ACTIONS(1634),
- [anon_sym_get] = ACTIONS(115),
- [anon_sym_set] = ACTIONS(115),
- [anon_sym_declare] = ACTIONS(115),
- [anon_sym_public] = ACTIONS(833),
- [anon_sym_private] = ACTIONS(833),
- [anon_sym_protected] = ACTIONS(833),
- [anon_sym_override] = ACTIONS(835),
- [anon_sym_module] = ACTIONS(115),
- [anon_sym_any] = ACTIONS(115),
- [anon_sym_number] = ACTIONS(115),
- [anon_sym_boolean] = ACTIONS(115),
- [anon_sym_string] = ACTIONS(115),
- [anon_sym_symbol] = ACTIONS(115),
- [anon_sym_object] = ACTIONS(115),
- [sym_html_comment] = ACTIONS(5),
- },
- [196] = {
- [sym_import] = STATE(3334),
- [sym_parenthesized_expression] = STATE(1179),
- [sym_expression] = STATE(2415),
- [sym_primary_expression] = STATE(1468),
- [sym_yield_expression] = STATE(1634),
- [sym_object] = STATE(1650),
- [sym_object_pattern] = STATE(3588),
- [sym_array] = STATE(1650),
- [sym_array_pattern] = STATE(3588),
- [sym_glimmer_template] = STATE(1634),
- [sym_jsx_element] = STATE(1634),
- [sym_jsx_opening_element] = STATE(3026),
- [sym_jsx_self_closing_element] = STATE(1634),
- [sym_class] = STATE(1650),
- [sym_function_expression] = STATE(1650),
- [sym_generator_function] = STATE(1650),
- [sym_arrow_function] = STATE(1650),
- [sym__call_signature] = STATE(5619),
- [sym__formal_parameter] = STATE(5251),
- [sym_call_expression] = STATE(1650),
- [sym_new_expression] = STATE(1634),
- [sym_await_expression] = STATE(1634),
- [sym_member_expression] = STATE(1221),
- [sym_subscript_expression] = STATE(1221),
- [sym_assignment_expression] = STATE(1634),
- [sym__augmented_assignment_lhs] = STATE(2878),
- [sym_augmented_assignment_expression] = STATE(1634),
- [sym__destructuring_pattern] = STATE(3588),
- [sym_ternary_expression] = STATE(1634),
- [sym_binary_expression] = STATE(1634),
- [sym_unary_expression] = STATE(1634),
- [sym_update_expression] = STATE(1634),
- [sym_string] = STATE(1650),
- [sym_template_string] = STATE(1650),
- [sym_regex] = STATE(1650),
- [sym_meta_property] = STATE(1650),
- [sym_decorator] = STATE(1244),
- [sym_formal_parameters] = STATE(3742),
- [sym_pattern] = STATE(4262),
- [sym_rest_pattern] = STATE(3700),
- [sym_non_null_expression] = STATE(1221),
- [sym_as_expression] = STATE(1634),
- [sym_satisfies_expression] = STATE(1634),
- [sym_instantiation_expression] = STATE(1634),
- [sym_internal_module] = STATE(1634),
- [sym_accessibility_modifier] = STATE(268),
- [sym_override_modifier] = STATE(296),
- [sym_required_parameter] = STATE(5251),
- [sym_optional_parameter] = STATE(5251),
- [sym__parameter_name] = STATE(3493),
- [sym_type_parameters] = STATE(5349),
- [aux_sym_export_statement_repeat1] = STATE(253),
- [sym_identifier] = ACTIONS(769),
- [anon_sym_export] = ACTIONS(115),
- [anon_sym_type] = ACTIONS(115),
- [anon_sym_namespace] = ACTIONS(124),
- [anon_sym_LBRACE] = ACTIONS(771),
- [anon_sym_typeof] = ACTIONS(187),
- [anon_sym_import] = ACTIONS(133),
- [anon_sym_let] = ACTIONS(115),
- [anon_sym_BANG] = ACTIONS(183),
- [anon_sym_LPAREN] = ACTIONS(815),
- [anon_sym_RPAREN] = ACTIONS(1648),
- [anon_sym_await] = ACTIONS(142),
- [anon_sym_yield] = ACTIONS(144),
- [anon_sym_LBRACK] = ACTIONS(1630),
- [sym_glimmer_opening_tag] = ACTIONS(148),
- [anon_sym_DQUOTE] = ACTIONS(150),
- [anon_sym_SQUOTE] = ACTIONS(152),
- [anon_sym_class] = ACTIONS(154),
- [anon_sym_async] = ACTIONS(156),
- [anon_sym_function] = ACTIONS(158),
- [anon_sym_new] = ACTIONS(779),
- [anon_sym_using] = ACTIONS(166),
- [anon_sym_DOT_DOT_DOT] = ACTIONS(170),
- [anon_sym_PLUS] = ACTIONS(187),
- [anon_sym_DASH] = ACTIONS(187),
- [anon_sym_SLASH] = ACTIONS(646),
- [anon_sym_LT] = ACTIONS(181),
- [anon_sym_TILDE] = ACTIONS(183),
- [anon_sym_void] = ACTIONS(187),
- [anon_sym_delete] = ACTIONS(187),
- [anon_sym_PLUS_PLUS] = ACTIONS(719),
- [anon_sym_DASH_DASH] = ACTIONS(719),
- [sym_comment] = ACTIONS(5),
- [anon_sym_BQUOTE] = ACTIONS(825),
- [sym_number] = ACTIONS(787),
- [sym_private_property_identifier] = ACTIONS(196),
- [sym_this] = ACTIONS(1632),
- [sym_super] = ACTIONS(200),
- [sym_true] = ACTIONS(200),
- [sym_false] = ACTIONS(200),
- [sym_null] = ACTIONS(200),
- [sym_undefined] = ACTIONS(791),
- [anon_sym_AT] = ACTIONS(757),
- [anon_sym_static] = ACTIONS(115),
- [anon_sym_readonly] = ACTIONS(1634),
- [anon_sym_get] = ACTIONS(115),
- [anon_sym_set] = ACTIONS(115),
- [anon_sym_declare] = ACTIONS(115),
- [anon_sym_public] = ACTIONS(833),
- [anon_sym_private] = ACTIONS(833),
- [anon_sym_protected] = ACTIONS(833),
- [anon_sym_override] = ACTIONS(835),
- [anon_sym_module] = ACTIONS(115),
- [anon_sym_any] = ACTIONS(115),
- [anon_sym_number] = ACTIONS(115),
- [anon_sym_boolean] = ACTIONS(115),
- [anon_sym_string] = ACTIONS(115),
- [anon_sym_symbol] = ACTIONS(115),
- [anon_sym_object] = ACTIONS(115),
- [sym_html_comment] = ACTIONS(5),
- },
- [197] = {
- [sym_import] = STATE(3334),
- [sym_parenthesized_expression] = STATE(1251),
- [sym_expression] = STATE(1479),
- [sym_primary_expression] = STATE(1468),
- [sym_yield_expression] = STATE(1634),
- [sym_object] = STATE(1650),
- [sym_object_pattern] = STATE(5633),
- [sym_array] = STATE(1650),
- [sym_array_pattern] = STATE(5633),
- [sym_glimmer_template] = STATE(1634),
- [sym_jsx_element] = STATE(1634),
- [sym_jsx_opening_element] = STATE(3026),
- [sym_jsx_self_closing_element] = STATE(1634),
- [sym_class] = STATE(1650),
- [sym_function_expression] = STATE(1650),
- [sym_generator_function] = STATE(1650),
- [sym_arrow_function] = STATE(1650),
- [sym__call_signature] = STATE(5828),
- [sym_call_expression] = STATE(1650),
- [sym_new_expression] = STATE(1634),
- [sym_await_expression] = STATE(1634),
- [sym_member_expression] = STATE(1251),
- [sym_subscript_expression] = STATE(1251),
- [sym_assignment_expression] = STATE(1634),
- [sym__augmented_assignment_lhs] = STATE(2900),
- [sym_augmented_assignment_expression] = STATE(1634),
- [sym__destructuring_pattern] = STATE(5633),
- [sym_ternary_expression] = STATE(1634),
- [sym_binary_expression] = STATE(1634),
- [sym_unary_expression] = STATE(1634),
- [sym_update_expression] = STATE(1634),
- [sym_string] = STATE(1650),
- [sym_template_string] = STATE(1650),
- [sym_regex] = STATE(1650),
- [sym_meta_property] = STATE(1650),
- [sym_decorator] = STATE(1244),
- [sym_formal_parameters] = STATE(3742),
- [sym_non_null_expression] = STATE(1251),
- [sym_as_expression] = STATE(1634),
- [sym_satisfies_expression] = STATE(1634),
- [sym_instantiation_expression] = STATE(1634),
- [sym_internal_module] = STATE(1634),
- [sym_type_parameters] = STATE(5349),
- [aux_sym_export_statement_repeat1] = STATE(4458),
- [sym_identifier] = ACTIONS(1428),
- [anon_sym_export] = ACTIONS(1044),
- [anon_sym_type] = ACTIONS(1044),
- [anon_sym_namespace] = ACTIONS(1046),
- [anon_sym_LBRACE] = ACTIONS(813),
- [anon_sym_COMMA] = ACTIONS(1650),
- [anon_sym_RBRACE] = ACTIONS(1650),
- [anon_sym_typeof] = ACTIONS(650),
- [anon_sym_import] = ACTIONS(133),
- [anon_sym_let] = ACTIONS(1044),
- [anon_sym_BANG] = ACTIONS(622),
- [anon_sym_LPAREN] = ACTIONS(815),
- [anon_sym_RPAREN] = ACTIONS(1650),
- [anon_sym_await] = ACTIONS(624),
- [anon_sym_yield] = ACTIONS(626),
- [anon_sym_LBRACK] = ACTIONS(1650),
- [anon_sym_RBRACK] = ACTIONS(1650),
- [sym_glimmer_opening_tag] = ACTIONS(148),
- [anon_sym_GT] = ACTIONS(1650),
- [anon_sym_DQUOTE] = ACTIONS(150),
- [anon_sym_SQUOTE] = ACTIONS(152),
- [anon_sym_class] = ACTIONS(154),
- [anon_sym_async] = ACTIONS(1052),
- [anon_sym_function] = ACTIONS(158),
- [anon_sym_new] = ACTIONS(1436),
- [anon_sym_using] = ACTIONS(636),
- [anon_sym_AMP] = ACTIONS(1650),
- [anon_sym_PIPE] = ACTIONS(1650),
- [anon_sym_PLUS] = ACTIONS(650),
- [anon_sym_DASH] = ACTIONS(650),
- [anon_sym_SLASH] = ACTIONS(646),
- [anon_sym_LT] = ACTIONS(181),
- [anon_sym_TILDE] = ACTIONS(622),
- [anon_sym_void] = ACTIONS(650),
- [anon_sym_delete] = ACTIONS(650),
- [anon_sym_PLUS_PLUS] = ACTIONS(652),
- [anon_sym_DASH_DASH] = ACTIONS(652),
- [sym_comment] = ACTIONS(5),
- [anon_sym_BQUOTE] = ACTIONS(825),
- [sym_number] = ACTIONS(787),
- [sym_private_property_identifier] = ACTIONS(654),
- [sym_this] = ACTIONS(200),
- [sym_super] = ACTIONS(200),
- [sym_true] = ACTIONS(200),
- [sym_false] = ACTIONS(200),
- [sym_null] = ACTIONS(200),
- [sym_undefined] = ACTIONS(1438),
- [anon_sym_AT] = ACTIONS(99),
- [anon_sym_static] = ACTIONS(1044),
- [anon_sym_readonly] = ACTIONS(1044),
- [anon_sym_get] = ACTIONS(1044),
- [anon_sym_set] = ACTIONS(1044),
- [anon_sym_QMARK] = ACTIONS(1650),
- [anon_sym_declare] = ACTIONS(1044),
- [anon_sym_public] = ACTIONS(1044),
- [anon_sym_private] = ACTIONS(1044),
- [anon_sym_protected] = ACTIONS(1044),
- [anon_sym_override] = 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_object] = ACTIONS(1044),
- [anon_sym_extends] = ACTIONS(1652),
- [sym_html_comment] = ACTIONS(5),
- },
- [198] = {
- [sym_import] = STATE(3334),
- [sym_parenthesized_expression] = STATE(1179),
- [sym_expression] = STATE(2415),
- [sym_primary_expression] = STATE(1468),
- [sym_yield_expression] = STATE(1634),
- [sym_object] = STATE(1650),
- [sym_object_pattern] = STATE(3588),
- [sym_array] = STATE(1650),
- [sym_array_pattern] = STATE(3588),
- [sym_glimmer_template] = STATE(1634),
- [sym_jsx_element] = STATE(1634),
- [sym_jsx_opening_element] = STATE(3026),
- [sym_jsx_self_closing_element] = STATE(1634),
- [sym_class] = STATE(1650),
- [sym_function_expression] = STATE(1650),
- [sym_generator_function] = STATE(1650),
- [sym_arrow_function] = STATE(1650),
- [sym__call_signature] = STATE(5619),
- [sym__formal_parameter] = STATE(5251),
- [sym_call_expression] = STATE(1650),
- [sym_new_expression] = STATE(1634),
- [sym_await_expression] = STATE(1634),
- [sym_member_expression] = STATE(1221),
- [sym_subscript_expression] = STATE(1221),
- [sym_assignment_expression] = STATE(1634),
- [sym__augmented_assignment_lhs] = STATE(2878),
- [sym_augmented_assignment_expression] = STATE(1634),
- [sym__destructuring_pattern] = STATE(3588),
- [sym_ternary_expression] = STATE(1634),
- [sym_binary_expression] = STATE(1634),
- [sym_unary_expression] = STATE(1634),
- [sym_update_expression] = STATE(1634),
- [sym_string] = STATE(1650),
- [sym_template_string] = STATE(1650),
- [sym_regex] = STATE(1650),
- [sym_meta_property] = STATE(1650),
- [sym_decorator] = STATE(1244),
- [sym_formal_parameters] = STATE(3742),
- [sym_pattern] = STATE(4262),
- [sym_rest_pattern] = STATE(3700),
- [sym_non_null_expression] = STATE(1221),
- [sym_as_expression] = STATE(1634),
- [sym_satisfies_expression] = STATE(1634),
- [sym_instantiation_expression] = STATE(1634),
- [sym_internal_module] = STATE(1634),
- [sym_accessibility_modifier] = STATE(268),
- [sym_override_modifier] = STATE(296),
- [sym_required_parameter] = STATE(5251),
- [sym_optional_parameter] = STATE(5251),
- [sym__parameter_name] = STATE(3493),
- [sym_type_parameters] = STATE(5349),
- [aux_sym_export_statement_repeat1] = STATE(253),
- [sym_identifier] = ACTIONS(769),
- [anon_sym_export] = ACTIONS(115),
- [anon_sym_type] = ACTIONS(115),
- [anon_sym_namespace] = ACTIONS(124),
- [anon_sym_LBRACE] = ACTIONS(771),
- [anon_sym_typeof] = ACTIONS(187),
- [anon_sym_import] = ACTIONS(133),
- [anon_sym_let] = ACTIONS(115),
- [anon_sym_BANG] = ACTIONS(183),
- [anon_sym_LPAREN] = ACTIONS(815),
- [anon_sym_await] = ACTIONS(142),
- [anon_sym_yield] = ACTIONS(144),
- [anon_sym_LBRACK] = ACTIONS(1630),
- [sym_glimmer_opening_tag] = ACTIONS(148),
- [anon_sym_DQUOTE] = ACTIONS(150),
- [anon_sym_SQUOTE] = ACTIONS(152),
- [anon_sym_class] = ACTIONS(154),
- [anon_sym_async] = ACTIONS(156),
- [anon_sym_function] = ACTIONS(158),
- [anon_sym_new] = ACTIONS(779),
- [anon_sym_using] = ACTIONS(166),
- [anon_sym_DOT_DOT_DOT] = ACTIONS(170),
- [anon_sym_PLUS] = ACTIONS(187),
- [anon_sym_DASH] = ACTIONS(187),
- [anon_sym_SLASH] = ACTIONS(646),
- [anon_sym_LT] = ACTIONS(181),
- [anon_sym_TILDE] = ACTIONS(183),
- [anon_sym_void] = ACTIONS(187),
- [anon_sym_delete] = ACTIONS(187),
- [anon_sym_PLUS_PLUS] = ACTIONS(719),
- [anon_sym_DASH_DASH] = ACTIONS(719),
- [sym_comment] = ACTIONS(5),
- [anon_sym_BQUOTE] = ACTIONS(825),
- [sym_number] = ACTIONS(787),
- [sym_private_property_identifier] = ACTIONS(196),
- [sym_this] = ACTIONS(1632),
- [sym_super] = ACTIONS(200),
- [sym_true] = ACTIONS(200),
- [sym_false] = ACTIONS(200),
- [sym_null] = ACTIONS(200),
- [sym_undefined] = ACTIONS(791),
- [anon_sym_AT] = ACTIONS(757),
- [anon_sym_static] = ACTIONS(115),
- [anon_sym_readonly] = ACTIONS(1634),
- [anon_sym_get] = ACTIONS(115),
- [anon_sym_set] = ACTIONS(115),
- [anon_sym_declare] = ACTIONS(115),
- [anon_sym_public] = ACTIONS(833),
- [anon_sym_private] = ACTIONS(833),
- [anon_sym_protected] = ACTIONS(833),
- [anon_sym_override] = ACTIONS(835),
- [anon_sym_module] = ACTIONS(115),
- [anon_sym_any] = ACTIONS(115),
- [anon_sym_number] = ACTIONS(115),
- [anon_sym_boolean] = ACTIONS(115),
- [anon_sym_string] = ACTIONS(115),
- [anon_sym_symbol] = ACTIONS(115),
- [anon_sym_object] = ACTIONS(115),
- [sym_html_comment] = ACTIONS(5),
- },
- [199] = {
- [sym_import] = STATE(3334),
- [sym_parenthesized_expression] = STATE(1251),
- [sym_expression] = STATE(1883),
- [sym_primary_expression] = STATE(1468),
- [sym_yield_expression] = STATE(1634),
- [sym_object] = STATE(1650),
- [sym_object_pattern] = STATE(3610),
- [sym_assignment_pattern] = STATE(5148),
- [sym_array] = STATE(1650),
- [sym_array_pattern] = STATE(3610),
- [sym_glimmer_template] = STATE(1634),
- [sym_jsx_element] = STATE(1634),
- [sym_jsx_opening_element] = STATE(3026),
- [sym_jsx_self_closing_element] = STATE(1634),
- [sym_class] = STATE(1650),
- [sym_function_expression] = STATE(1650),
- [sym_generator_function] = STATE(1650),
- [sym_arrow_function] = STATE(1650),
- [sym__call_signature] = STATE(5828),
- [sym_call_expression] = STATE(1650),
- [sym_new_expression] = STATE(1634),
- [sym_await_expression] = STATE(1634),
- [sym_member_expression] = STATE(1230),
- [sym_subscript_expression] = STATE(1230),
- [sym_assignment_expression] = STATE(1634),
- [sym__augmented_assignment_lhs] = STATE(2900),
- [sym_augmented_assignment_expression] = STATE(1634),
- [sym__destructuring_pattern] = STATE(3610),
- [sym_spread_element] = STATE(5152),
- [sym_ternary_expression] = STATE(1634),
- [sym_binary_expression] = STATE(1634),
- [sym_unary_expression] = STATE(1634),
- [sym_update_expression] = STATE(1634),
- [sym_string] = STATE(1650),
- [sym_template_string] = STATE(1650),
- [sym_regex] = STATE(1650),
- [sym_meta_property] = STATE(1650),
- [sym_decorator] = STATE(1244),
- [sym_formal_parameters] = STATE(3742),
- [sym_pattern] = STATE(4544),
- [sym_rest_pattern] = STATE(3700),
- [sym_non_null_expression] = STATE(1230),
- [sym_as_expression] = STATE(1634),
- [sym_satisfies_expression] = STATE(1634),
- [sym_instantiation_expression] = STATE(1634),
- [sym_internal_module] = STATE(1634),
- [sym_type_parameters] = STATE(5349),
- [aux_sym_export_statement_repeat1] = STATE(4458),
- [aux_sym_array_repeat1] = STATE(5155),
- [aux_sym_array_pattern_repeat1] = STATE(5165),
- [sym_identifier] = ACTIONS(1618),
- [anon_sym_export] = ACTIONS(610),
- [anon_sym_type] = ACTIONS(610),
- [anon_sym_namespace] = ACTIONS(614),
- [anon_sym_LBRACE] = ACTIONS(845),
- [anon_sym_COMMA] = ACTIONS(1654),
- [anon_sym_typeof] = ACTIONS(650),
- [anon_sym_import] = ACTIONS(133),
- [anon_sym_let] = ACTIONS(610),
- [anon_sym_BANG] = ACTIONS(622),
- [anon_sym_LPAREN] = ACTIONS(815),
- [anon_sym_await] = ACTIONS(624),
- [anon_sym_yield] = ACTIONS(626),
- [anon_sym_LBRACK] = ACTIONS(849),
- [anon_sym_RBRACK] = ACTIONS(1656),
- [sym_glimmer_opening_tag] = ACTIONS(148),
- [anon_sym_DQUOTE] = ACTIONS(150),
- [anon_sym_SQUOTE] = ACTIONS(152),
- [anon_sym_class] = ACTIONS(154),
- [anon_sym_async] = ACTIONS(632),
- [anon_sym_function] = ACTIONS(158),
- [anon_sym_new] = ACTIONS(1620),
- [anon_sym_using] = ACTIONS(636),
- [anon_sym_DOT_DOT_DOT] = ACTIONS(253),
- [anon_sym_PLUS] = ACTIONS(650),
- [anon_sym_DASH] = ACTIONS(650),
- [anon_sym_SLASH] = ACTIONS(646),
- [anon_sym_LT] = ACTIONS(181),
- [anon_sym_TILDE] = ACTIONS(622),
- [anon_sym_void] = ACTIONS(650),
- [anon_sym_delete] = ACTIONS(650),
- [anon_sym_PLUS_PLUS] = ACTIONS(652),
- [anon_sym_DASH_DASH] = ACTIONS(652),
- [sym_comment] = ACTIONS(5),
- [anon_sym_BQUOTE] = ACTIONS(825),
- [sym_number] = ACTIONS(787),
- [sym_private_property_identifier] = ACTIONS(654),
- [sym_this] = ACTIONS(200),
- [sym_super] = ACTIONS(200),
- [sym_true] = ACTIONS(200),
- [sym_false] = ACTIONS(200),
- [sym_null] = ACTIONS(200),
- [sym_undefined] = ACTIONS(1624),
- [anon_sym_AT] = ACTIONS(99),
- [anon_sym_static] = ACTIONS(610),
- [anon_sym_readonly] = ACTIONS(610),
- [anon_sym_get] = ACTIONS(610),
- [anon_sym_set] = ACTIONS(610),
- [anon_sym_declare] = ACTIONS(610),
- [anon_sym_public] = ACTIONS(610),
- [anon_sym_private] = ACTIONS(610),
- [anon_sym_protected] = ACTIONS(610),
- [anon_sym_override] = ACTIONS(610),
- [anon_sym_module] = ACTIONS(610),
- [anon_sym_any] = ACTIONS(610),
- [anon_sym_number] = ACTIONS(610),
- [anon_sym_boolean] = ACTIONS(610),
- [anon_sym_string] = ACTIONS(610),
- [anon_sym_symbol] = ACTIONS(610),
- [anon_sym_object] = ACTIONS(610),
- [sym_html_comment] = ACTIONS(5),
- },
- [200] = {
- [sym_import] = STATE(3334),
- [sym_parenthesized_expression] = STATE(1251),
- [sym_expression] = STATE(1829),
- [sym_primary_expression] = STATE(1468),
- [sym_yield_expression] = STATE(1634),
- [sym_object] = STATE(1650),
- [sym_object_pattern] = STATE(3610),
- [sym_assignment_pattern] = STATE(5148),
- [sym_array] = STATE(1650),
- [sym_array_pattern] = STATE(3610),
- [sym_glimmer_template] = STATE(1634),
- [sym_jsx_element] = STATE(1634),
- [sym_jsx_opening_element] = STATE(3026),
- [sym_jsx_self_closing_element] = STATE(1634),
- [sym_class] = STATE(1650),
- [sym_function_expression] = STATE(1650),
- [sym_generator_function] = STATE(1650),
- [sym_arrow_function] = STATE(1650),
- [sym__call_signature] = STATE(5828),
- [sym_call_expression] = STATE(1650),
- [sym_new_expression] = STATE(1634),
- [sym_await_expression] = STATE(1634),
- [sym_member_expression] = STATE(1230),
- [sym_subscript_expression] = STATE(1230),
- [sym_assignment_expression] = STATE(1634),
- [sym__augmented_assignment_lhs] = STATE(2900),
- [sym_augmented_assignment_expression] = STATE(1634),
- [sym__destructuring_pattern] = STATE(3610),
- [sym_spread_element] = STATE(4907),
- [sym_ternary_expression] = STATE(1634),
- [sym_binary_expression] = STATE(1634),
- [sym_unary_expression] = STATE(1634),
- [sym_update_expression] = STATE(1634),
- [sym_string] = STATE(1650),
- [sym_template_string] = STATE(1650),
- [sym_regex] = STATE(1650),
- [sym_meta_property] = STATE(1650),
- [sym_decorator] = STATE(1244),
- [sym_formal_parameters] = STATE(3742),
- [sym_pattern] = STATE(4544),
- [sym_rest_pattern] = STATE(3700),
- [sym_non_null_expression] = STATE(1230),
- [sym_as_expression] = STATE(1634),
- [sym_satisfies_expression] = STATE(1634),
- [sym_instantiation_expression] = STATE(1634),
- [sym_internal_module] = STATE(1634),
- [sym_type_parameters] = STATE(5349),
- [aux_sym_export_statement_repeat1] = STATE(4458),
- [aux_sym_array_repeat1] = STATE(4912),
- [aux_sym_array_pattern_repeat1] = STATE(5165),
- [sym_identifier] = ACTIONS(1618),
- [anon_sym_export] = ACTIONS(610),
- [anon_sym_type] = ACTIONS(610),
- [anon_sym_namespace] = ACTIONS(614),
- [anon_sym_LBRACE] = ACTIONS(845),
- [anon_sym_COMMA] = ACTIONS(1654),
- [anon_sym_typeof] = ACTIONS(650),
- [anon_sym_import] = ACTIONS(133),
- [anon_sym_let] = ACTIONS(610),
- [anon_sym_BANG] = ACTIONS(622),
- [anon_sym_LPAREN] = ACTIONS(815),
- [anon_sym_await] = ACTIONS(624),
- [anon_sym_yield] = ACTIONS(626),
- [anon_sym_LBRACK] = ACTIONS(849),
- [anon_sym_RBRACK] = ACTIONS(1658),
- [sym_glimmer_opening_tag] = ACTIONS(148),
- [anon_sym_DQUOTE] = ACTIONS(150),
- [anon_sym_SQUOTE] = ACTIONS(152),
- [anon_sym_class] = ACTIONS(154),
- [anon_sym_async] = ACTIONS(632),
- [anon_sym_function] = ACTIONS(158),
- [anon_sym_new] = ACTIONS(1620),
- [anon_sym_using] = ACTIONS(636),
- [anon_sym_DOT_DOT_DOT] = ACTIONS(253),
- [anon_sym_PLUS] = ACTIONS(650),
- [anon_sym_DASH] = ACTIONS(650),
- [anon_sym_SLASH] = ACTIONS(646),
- [anon_sym_LT] = ACTIONS(181),
- [anon_sym_TILDE] = ACTIONS(622),
- [anon_sym_void] = ACTIONS(650),
- [anon_sym_delete] = ACTIONS(650),
- [anon_sym_PLUS_PLUS] = ACTIONS(652),
- [anon_sym_DASH_DASH] = ACTIONS(652),
- [sym_comment] = ACTIONS(5),
- [anon_sym_BQUOTE] = ACTIONS(825),
- [sym_number] = ACTIONS(787),
- [sym_private_property_identifier] = ACTIONS(654),
- [sym_this] = ACTIONS(200),
- [sym_super] = ACTIONS(200),
- [sym_true] = ACTIONS(200),
- [sym_false] = ACTIONS(200),
- [sym_null] = ACTIONS(200),
- [sym_undefined] = ACTIONS(1624),
- [anon_sym_AT] = ACTIONS(99),
- [anon_sym_static] = ACTIONS(610),
- [anon_sym_readonly] = ACTIONS(610),
- [anon_sym_get] = ACTIONS(610),
- [anon_sym_set] = ACTIONS(610),
- [anon_sym_declare] = ACTIONS(610),
- [anon_sym_public] = ACTIONS(610),
- [anon_sym_private] = ACTIONS(610),
- [anon_sym_protected] = ACTIONS(610),
- [anon_sym_override] = ACTIONS(610),
- [anon_sym_module] = ACTIONS(610),
- [anon_sym_any] = ACTIONS(610),
- [anon_sym_number] = ACTIONS(610),
- [anon_sym_boolean] = ACTIONS(610),
- [anon_sym_string] = ACTIONS(610),
- [anon_sym_symbol] = ACTIONS(610),
- [anon_sym_object] = ACTIONS(610),
- [sym_html_comment] = ACTIONS(5),
- },
- [201] = {
- [sym_import] = STATE(3334),
- [sym_parenthesized_expression] = STATE(1251),
- [sym_expression] = STATE(1829),
- [sym_primary_expression] = STATE(1468),
- [sym_yield_expression] = STATE(1634),
- [sym_object] = STATE(1650),
- [sym_object_pattern] = STATE(3610),
- [sym_assignment_pattern] = STATE(5148),
- [sym_array] = STATE(1650),
- [sym_array_pattern] = STATE(3610),
- [sym_glimmer_template] = STATE(1634),
- [sym_jsx_element] = STATE(1634),
- [sym_jsx_opening_element] = STATE(3026),
- [sym_jsx_self_closing_element] = STATE(1634),
- [sym_class] = STATE(1650),
- [sym_function_expression] = STATE(1650),
- [sym_generator_function] = STATE(1650),
- [sym_arrow_function] = STATE(1650),
- [sym__call_signature] = STATE(5828),
- [sym_call_expression] = STATE(1650),
- [sym_new_expression] = STATE(1634),
- [sym_await_expression] = STATE(1634),
- [sym_member_expression] = STATE(1230),
- [sym_subscript_expression] = STATE(1230),
- [sym_assignment_expression] = STATE(1634),
- [sym__augmented_assignment_lhs] = STATE(2900),
- [sym_augmented_assignment_expression] = STATE(1634),
- [sym__destructuring_pattern] = STATE(3610),
- [sym_spread_element] = STATE(4907),
- [sym_ternary_expression] = STATE(1634),
- [sym_binary_expression] = STATE(1634),
- [sym_unary_expression] = STATE(1634),
- [sym_update_expression] = STATE(1634),
- [sym_string] = STATE(1650),
- [sym_template_string] = STATE(1650),
- [sym_regex] = STATE(1650),
- [sym_meta_property] = STATE(1650),
- [sym_decorator] = STATE(1244),
- [sym_formal_parameters] = STATE(3742),
- [sym_pattern] = STATE(4544),
- [sym_rest_pattern] = STATE(3700),
- [sym_non_null_expression] = STATE(1230),
- [sym_as_expression] = STATE(1634),
- [sym_satisfies_expression] = STATE(1634),
- [sym_instantiation_expression] = STATE(1634),
- [sym_internal_module] = STATE(1634),
- [sym_type_parameters] = STATE(5349),
- [aux_sym_export_statement_repeat1] = STATE(4458),
- [aux_sym_array_repeat1] = STATE(4912),
- [aux_sym_array_pattern_repeat1] = STATE(5165),
- [sym_identifier] = ACTIONS(1618),
- [anon_sym_export] = ACTIONS(610),
- [anon_sym_type] = ACTIONS(610),
- [anon_sym_namespace] = ACTIONS(614),
- [anon_sym_LBRACE] = ACTIONS(845),
- [anon_sym_COMMA] = ACTIONS(1654),
- [anon_sym_typeof] = ACTIONS(650),
- [anon_sym_import] = ACTIONS(133),
- [anon_sym_let] = ACTIONS(610),
- [anon_sym_BANG] = ACTIONS(622),
- [anon_sym_LPAREN] = ACTIONS(815),
- [anon_sym_await] = ACTIONS(624),
- [anon_sym_yield] = ACTIONS(626),
- [anon_sym_LBRACK] = ACTIONS(849),
- [anon_sym_RBRACK] = ACTIONS(1660),
- [sym_glimmer_opening_tag] = ACTIONS(148),
- [anon_sym_DQUOTE] = ACTIONS(150),
- [anon_sym_SQUOTE] = ACTIONS(152),
- [anon_sym_class] = ACTIONS(154),
- [anon_sym_async] = ACTIONS(632),
- [anon_sym_function] = ACTIONS(158),
- [anon_sym_new] = ACTIONS(1620),
- [anon_sym_using] = ACTIONS(636),
- [anon_sym_DOT_DOT_DOT] = ACTIONS(253),
- [anon_sym_PLUS] = ACTIONS(650),
- [anon_sym_DASH] = ACTIONS(650),
- [anon_sym_SLASH] = ACTIONS(646),
- [anon_sym_LT] = ACTIONS(181),
- [anon_sym_TILDE] = ACTIONS(622),
- [anon_sym_void] = ACTIONS(650),
- [anon_sym_delete] = ACTIONS(650),
- [anon_sym_PLUS_PLUS] = ACTIONS(652),
- [anon_sym_DASH_DASH] = ACTIONS(652),
- [sym_comment] = ACTIONS(5),
- [anon_sym_BQUOTE] = ACTIONS(825),
- [sym_number] = ACTIONS(787),
- [sym_private_property_identifier] = ACTIONS(654),
- [sym_this] = ACTIONS(200),
- [sym_super] = ACTIONS(200),
- [sym_true] = ACTIONS(200),
- [sym_false] = ACTIONS(200),
- [sym_null] = ACTIONS(200),
- [sym_undefined] = ACTIONS(1624),
- [anon_sym_AT] = ACTIONS(99),
- [anon_sym_static] = ACTIONS(610),
- [anon_sym_readonly] = ACTIONS(610),
- [anon_sym_get] = ACTIONS(610),
- [anon_sym_set] = ACTIONS(610),
- [anon_sym_declare] = ACTIONS(610),
- [anon_sym_public] = ACTIONS(610),
- [anon_sym_private] = ACTIONS(610),
- [anon_sym_protected] = ACTIONS(610),
- [anon_sym_override] = ACTIONS(610),
- [anon_sym_module] = ACTIONS(610),
- [anon_sym_any] = ACTIONS(610),
- [anon_sym_number] = ACTIONS(610),
- [anon_sym_boolean] = ACTIONS(610),
- [anon_sym_string] = ACTIONS(610),
- [anon_sym_symbol] = ACTIONS(610),
- [anon_sym_object] = ACTIONS(610),
- [sym_html_comment] = ACTIONS(5),
- },
- [202] = {
- [sym_import] = STATE(3334),
- [sym_parenthesized_expression] = STATE(1251),
- [sym_expression] = STATE(1829),
- [sym_primary_expression] = STATE(1468),
- [sym_yield_expression] = STATE(1634),
- [sym_object] = STATE(1650),
- [sym_object_pattern] = STATE(3610),
- [sym_assignment_pattern] = STATE(5148),
- [sym_array] = STATE(1650),
- [sym_array_pattern] = STATE(3610),
- [sym_glimmer_template] = STATE(1634),
- [sym_jsx_element] = STATE(1634),
- [sym_jsx_opening_element] = STATE(3026),
- [sym_jsx_self_closing_element] = STATE(1634),
- [sym_class] = STATE(1650),
- [sym_function_expression] = STATE(1650),
- [sym_generator_function] = STATE(1650),
- [sym_arrow_function] = STATE(1650),
- [sym__call_signature] = STATE(5828),
- [sym_call_expression] = STATE(1650),
- [sym_new_expression] = STATE(1634),
- [sym_await_expression] = STATE(1634),
- [sym_member_expression] = STATE(1230),
- [sym_subscript_expression] = STATE(1230),
- [sym_assignment_expression] = STATE(1634),
- [sym__augmented_assignment_lhs] = STATE(2900),
- [sym_augmented_assignment_expression] = STATE(1634),
- [sym__destructuring_pattern] = STATE(3610),
- [sym_spread_element] = STATE(4907),
- [sym_ternary_expression] = STATE(1634),
- [sym_binary_expression] = STATE(1634),
- [sym_unary_expression] = STATE(1634),
- [sym_update_expression] = STATE(1634),
- [sym_string] = STATE(1650),
- [sym_template_string] = STATE(1650),
- [sym_regex] = STATE(1650),
- [sym_meta_property] = STATE(1650),
- [sym_decorator] = STATE(1244),
- [sym_formal_parameters] = STATE(3742),
- [sym_pattern] = STATE(4544),
- [sym_rest_pattern] = STATE(3700),
- [sym_non_null_expression] = STATE(1230),
- [sym_as_expression] = STATE(1634),
- [sym_satisfies_expression] = STATE(1634),
- [sym_instantiation_expression] = STATE(1634),
- [sym_internal_module] = STATE(1634),
- [sym_type_parameters] = STATE(5349),
- [aux_sym_export_statement_repeat1] = STATE(4458),
- [aux_sym_array_repeat1] = STATE(4912),
- [aux_sym_array_pattern_repeat1] = STATE(5165),
- [sym_identifier] = ACTIONS(1618),
- [anon_sym_export] = ACTIONS(610),
- [anon_sym_type] = ACTIONS(610),
- [anon_sym_namespace] = ACTIONS(614),
- [anon_sym_LBRACE] = ACTIONS(845),
- [anon_sym_COMMA] = ACTIONS(1654),
- [anon_sym_typeof] = ACTIONS(650),
- [anon_sym_import] = ACTIONS(133),
- [anon_sym_let] = ACTIONS(610),
- [anon_sym_BANG] = ACTIONS(622),
- [anon_sym_LPAREN] = ACTIONS(815),
- [anon_sym_await] = ACTIONS(624),
- [anon_sym_yield] = ACTIONS(626),
- [anon_sym_LBRACK] = ACTIONS(849),
- [anon_sym_RBRACK] = ACTIONS(1662),
- [sym_glimmer_opening_tag] = ACTIONS(148),
- [anon_sym_DQUOTE] = ACTIONS(150),
- [anon_sym_SQUOTE] = ACTIONS(152),
- [anon_sym_class] = ACTIONS(154),
- [anon_sym_async] = ACTIONS(632),
- [anon_sym_function] = ACTIONS(158),
- [anon_sym_new] = ACTIONS(1620),
- [anon_sym_using] = ACTIONS(636),
- [anon_sym_DOT_DOT_DOT] = ACTIONS(253),
- [anon_sym_PLUS] = ACTIONS(650),
- [anon_sym_DASH] = ACTIONS(650),
- [anon_sym_SLASH] = ACTIONS(646),
- [anon_sym_LT] = ACTIONS(181),
- [anon_sym_TILDE] = ACTIONS(622),
- [anon_sym_void] = ACTIONS(650),
- [anon_sym_delete] = ACTIONS(650),
- [anon_sym_PLUS_PLUS] = ACTIONS(652),
- [anon_sym_DASH_DASH] = ACTIONS(652),
- [sym_comment] = ACTIONS(5),
- [anon_sym_BQUOTE] = ACTIONS(825),
- [sym_number] = ACTIONS(787),
- [sym_private_property_identifier] = ACTIONS(654),
- [sym_this] = ACTIONS(200),
- [sym_super] = ACTIONS(200),
- [sym_true] = ACTIONS(200),
- [sym_false] = ACTIONS(200),
- [sym_null] = ACTIONS(200),
- [sym_undefined] = ACTIONS(1624),
- [anon_sym_AT] = ACTIONS(99),
- [anon_sym_static] = ACTIONS(610),
- [anon_sym_readonly] = ACTIONS(610),
- [anon_sym_get] = ACTIONS(610),
- [anon_sym_set] = ACTIONS(610),
- [anon_sym_declare] = ACTIONS(610),
- [anon_sym_public] = ACTIONS(610),
- [anon_sym_private] = ACTIONS(610),
- [anon_sym_protected] = ACTIONS(610),
- [anon_sym_override] = ACTIONS(610),
- [anon_sym_module] = ACTIONS(610),
- [anon_sym_any] = ACTIONS(610),
- [anon_sym_number] = ACTIONS(610),
- [anon_sym_boolean] = ACTIONS(610),
- [anon_sym_string] = ACTIONS(610),
- [anon_sym_symbol] = ACTIONS(610),
- [anon_sym_object] = ACTIONS(610),
- [sym_html_comment] = ACTIONS(5),
- },
- [203] = {
- [sym_import] = STATE(3334),
- [sym_parenthesized_expression] = STATE(1251),
- [sym_expression] = STATE(1883),
- [sym_primary_expression] = STATE(1468),
- [sym_yield_expression] = STATE(1634),
- [sym_object] = STATE(1650),
- [sym_object_pattern] = STATE(3610),
- [sym_assignment_pattern] = STATE(5148),
- [sym_array] = STATE(1650),
- [sym_array_pattern] = STATE(3610),
- [sym_glimmer_template] = STATE(1634),
- [sym_jsx_element] = STATE(1634),
- [sym_jsx_opening_element] = STATE(3026),
- [sym_jsx_self_closing_element] = STATE(1634),
- [sym_class] = STATE(1650),
- [sym_function_expression] = STATE(1650),
- [sym_generator_function] = STATE(1650),
- [sym_arrow_function] = STATE(1650),
- [sym__call_signature] = STATE(5828),
- [sym_call_expression] = STATE(1650),
- [sym_new_expression] = STATE(1634),
- [sym_await_expression] = STATE(1634),
- [sym_member_expression] = STATE(1230),
- [sym_subscript_expression] = STATE(1230),
- [sym_assignment_expression] = STATE(1634),
- [sym__augmented_assignment_lhs] = STATE(2900),
- [sym_augmented_assignment_expression] = STATE(1634),
- [sym__destructuring_pattern] = STATE(3610),
- [sym_spread_element] = STATE(5152),
- [sym_ternary_expression] = STATE(1634),
- [sym_binary_expression] = STATE(1634),
- [sym_unary_expression] = STATE(1634),
- [sym_update_expression] = STATE(1634),
- [sym_string] = STATE(1650),
- [sym_template_string] = STATE(1650),
- [sym_regex] = STATE(1650),
- [sym_meta_property] = STATE(1650),
- [sym_decorator] = STATE(1244),
- [sym_formal_parameters] = STATE(3742),
- [sym_pattern] = STATE(4544),
- [sym_rest_pattern] = STATE(3700),
- [sym_non_null_expression] = STATE(1230),
- [sym_as_expression] = STATE(1634),
- [sym_satisfies_expression] = STATE(1634),
- [sym_instantiation_expression] = STATE(1634),
- [sym_internal_module] = STATE(1634),
- [sym_type_parameters] = STATE(5349),
- [aux_sym_export_statement_repeat1] = STATE(4458),
- [aux_sym_array_repeat1] = STATE(5155),
- [aux_sym_array_pattern_repeat1] = STATE(5165),
- [sym_identifier] = ACTIONS(1618),
- [anon_sym_export] = ACTIONS(610),
- [anon_sym_type] = ACTIONS(610),
- [anon_sym_namespace] = ACTIONS(614),
- [anon_sym_LBRACE] = ACTIONS(845),
- [anon_sym_COMMA] = ACTIONS(1654),
- [anon_sym_typeof] = ACTIONS(650),
- [anon_sym_import] = ACTIONS(133),
- [anon_sym_let] = ACTIONS(610),
- [anon_sym_BANG] = ACTIONS(622),
- [anon_sym_LPAREN] = ACTIONS(815),
- [anon_sym_await] = ACTIONS(624),
- [anon_sym_yield] = ACTIONS(626),
- [anon_sym_LBRACK] = ACTIONS(849),
- [anon_sym_RBRACK] = ACTIONS(1664),
- [sym_glimmer_opening_tag] = ACTIONS(148),
- [anon_sym_DQUOTE] = ACTIONS(150),
- [anon_sym_SQUOTE] = ACTIONS(152),
- [anon_sym_class] = ACTIONS(154),
- [anon_sym_async] = ACTIONS(632),
- [anon_sym_function] = ACTIONS(158),
- [anon_sym_new] = ACTIONS(1620),
- [anon_sym_using] = ACTIONS(636),
- [anon_sym_DOT_DOT_DOT] = ACTIONS(253),
- [anon_sym_PLUS] = ACTIONS(650),
- [anon_sym_DASH] = ACTIONS(650),
- [anon_sym_SLASH] = ACTIONS(646),
- [anon_sym_LT] = ACTIONS(181),
- [anon_sym_TILDE] = ACTIONS(622),
- [anon_sym_void] = ACTIONS(650),
- [anon_sym_delete] = ACTIONS(650),
- [anon_sym_PLUS_PLUS] = ACTIONS(652),
- [anon_sym_DASH_DASH] = ACTIONS(652),
- [sym_comment] = ACTIONS(5),
- [anon_sym_BQUOTE] = ACTIONS(825),
- [sym_number] = ACTIONS(787),
- [sym_private_property_identifier] = ACTIONS(654),
- [sym_this] = ACTIONS(200),
- [sym_super] = ACTIONS(200),
- [sym_true] = ACTIONS(200),
- [sym_false] = ACTIONS(200),
- [sym_null] = ACTIONS(200),
- [sym_undefined] = ACTIONS(1624),
- [anon_sym_AT] = ACTIONS(99),
- [anon_sym_static] = ACTIONS(610),
- [anon_sym_readonly] = ACTIONS(610),
- [anon_sym_get] = ACTIONS(610),
- [anon_sym_set] = ACTIONS(610),
- [anon_sym_declare] = ACTIONS(610),
- [anon_sym_public] = ACTIONS(610),
- [anon_sym_private] = ACTIONS(610),
- [anon_sym_protected] = ACTIONS(610),
- [anon_sym_override] = ACTIONS(610),
- [anon_sym_module] = ACTIONS(610),
- [anon_sym_any] = ACTIONS(610),
- [anon_sym_number] = ACTIONS(610),
- [anon_sym_boolean] = ACTIONS(610),
- [anon_sym_string] = ACTIONS(610),
- [anon_sym_symbol] = ACTIONS(610),
- [anon_sym_object] = ACTIONS(610),
- [sym_html_comment] = ACTIONS(5),
- },
- [204] = {
- [sym_import] = STATE(3334),
- [sym_parenthesized_expression] = STATE(1251),
- [sym_expression] = STATE(1829),
- [sym_primary_expression] = STATE(1468),
- [sym_yield_expression] = STATE(1634),
- [sym_object] = STATE(1650),
- [sym_object_pattern] = STATE(3610),
- [sym_assignment_pattern] = STATE(5148),
- [sym_array] = STATE(1650),
- [sym_array_pattern] = STATE(3610),
- [sym_glimmer_template] = STATE(1634),
- [sym_jsx_element] = STATE(1634),
- [sym_jsx_opening_element] = STATE(3026),
- [sym_jsx_self_closing_element] = STATE(1634),
- [sym_class] = STATE(1650),
- [sym_function_expression] = STATE(1650),
- [sym_generator_function] = STATE(1650),
- [sym_arrow_function] = STATE(1650),
- [sym__call_signature] = STATE(5828),
- [sym_call_expression] = STATE(1650),
- [sym_new_expression] = STATE(1634),
- [sym_await_expression] = STATE(1634),
- [sym_member_expression] = STATE(1230),
- [sym_subscript_expression] = STATE(1230),
- [sym_assignment_expression] = STATE(1634),
- [sym__augmented_assignment_lhs] = STATE(2900),
- [sym_augmented_assignment_expression] = STATE(1634),
- [sym__destructuring_pattern] = STATE(3610),
- [sym_spread_element] = STATE(4907),
- [sym_ternary_expression] = STATE(1634),
- [sym_binary_expression] = STATE(1634),
- [sym_unary_expression] = STATE(1634),
- [sym_update_expression] = STATE(1634),
- [sym_string] = STATE(1650),
- [sym_template_string] = STATE(1650),
- [sym_regex] = STATE(1650),
- [sym_meta_property] = STATE(1650),
- [sym_decorator] = STATE(1244),
- [sym_formal_parameters] = STATE(3742),
- [sym_pattern] = STATE(4544),
- [sym_rest_pattern] = STATE(3700),
- [sym_non_null_expression] = STATE(1230),
- [sym_as_expression] = STATE(1634),
- [sym_satisfies_expression] = STATE(1634),
- [sym_instantiation_expression] = STATE(1634),
- [sym_internal_module] = STATE(1634),
- [sym_type_parameters] = STATE(5349),
- [aux_sym_export_statement_repeat1] = STATE(4458),
- [aux_sym_array_repeat1] = STATE(4912),
- [aux_sym_array_pattern_repeat1] = STATE(5165),
- [sym_identifier] = ACTIONS(1618),
- [anon_sym_export] = ACTIONS(610),
- [anon_sym_type] = ACTIONS(610),
- [anon_sym_namespace] = ACTIONS(614),
- [anon_sym_LBRACE] = ACTIONS(845),
- [anon_sym_COMMA] = ACTIONS(1654),
- [anon_sym_typeof] = ACTIONS(650),
- [anon_sym_import] = ACTIONS(133),
- [anon_sym_let] = ACTIONS(610),
- [anon_sym_BANG] = ACTIONS(622),
- [anon_sym_LPAREN] = ACTIONS(815),
- [anon_sym_await] = ACTIONS(624),
- [anon_sym_yield] = ACTIONS(626),
- [anon_sym_LBRACK] = ACTIONS(849),
- [anon_sym_RBRACK] = ACTIONS(1666),
- [sym_glimmer_opening_tag] = ACTIONS(148),
- [anon_sym_DQUOTE] = ACTIONS(150),
- [anon_sym_SQUOTE] = ACTIONS(152),
- [anon_sym_class] = ACTIONS(154),
- [anon_sym_async] = ACTIONS(632),
- [anon_sym_function] = ACTIONS(158),
- [anon_sym_new] = ACTIONS(1620),
- [anon_sym_using] = ACTIONS(636),
- [anon_sym_DOT_DOT_DOT] = ACTIONS(253),
- [anon_sym_PLUS] = ACTIONS(650),
- [anon_sym_DASH] = ACTIONS(650),
- [anon_sym_SLASH] = ACTIONS(646),
- [anon_sym_LT] = ACTIONS(181),
- [anon_sym_TILDE] = ACTIONS(622),
- [anon_sym_void] = ACTIONS(650),
- [anon_sym_delete] = ACTIONS(650),
- [anon_sym_PLUS_PLUS] = ACTIONS(652),
- [anon_sym_DASH_DASH] = ACTIONS(652),
- [sym_comment] = ACTIONS(5),
- [anon_sym_BQUOTE] = ACTIONS(825),
- [sym_number] = ACTIONS(787),
- [sym_private_property_identifier] = ACTIONS(654),
- [sym_this] = ACTIONS(200),
- [sym_super] = ACTIONS(200),
- [sym_true] = ACTIONS(200),
- [sym_false] = ACTIONS(200),
- [sym_null] = ACTIONS(200),
- [sym_undefined] = ACTIONS(1624),
- [anon_sym_AT] = ACTIONS(99),
- [anon_sym_static] = ACTIONS(610),
- [anon_sym_readonly] = ACTIONS(610),
- [anon_sym_get] = ACTIONS(610),
- [anon_sym_set] = ACTIONS(610),
- [anon_sym_declare] = ACTIONS(610),
- [anon_sym_public] = ACTIONS(610),
- [anon_sym_private] = ACTIONS(610),
- [anon_sym_protected] = ACTIONS(610),
- [anon_sym_override] = ACTIONS(610),
- [anon_sym_module] = ACTIONS(610),
- [anon_sym_any] = ACTIONS(610),
- [anon_sym_number] = ACTIONS(610),
- [anon_sym_boolean] = ACTIONS(610),
- [anon_sym_string] = ACTIONS(610),
- [anon_sym_symbol] = ACTIONS(610),
- [anon_sym_object] = ACTIONS(610),
- [sym_html_comment] = ACTIONS(5),
- },
- [205] = {
- [sym_import] = STATE(3334),
- [sym_parenthesized_expression] = STATE(1251),
- [sym_expression] = STATE(1836),
- [sym_primary_expression] = STATE(1468),
- [sym_yield_expression] = STATE(1634),
- [sym_object] = STATE(1650),
- [sym_object_pattern] = STATE(3610),
- [sym_assignment_pattern] = STATE(5148),
- [sym_array] = STATE(1650),
- [sym_array_pattern] = STATE(3610),
- [sym_glimmer_template] = STATE(1634),
- [sym_jsx_element] = STATE(1634),
- [sym_jsx_opening_element] = STATE(3026),
- [sym_jsx_self_closing_element] = STATE(1634),
- [sym_class] = STATE(1650),
- [sym_function_expression] = STATE(1650),
- [sym_generator_function] = STATE(1650),
- [sym_arrow_function] = STATE(1650),
- [sym__call_signature] = STATE(5828),
- [sym_call_expression] = STATE(1650),
- [sym_new_expression] = STATE(1634),
- [sym_await_expression] = STATE(1634),
- [sym_member_expression] = STATE(1230),
- [sym_subscript_expression] = STATE(1230),
- [sym_assignment_expression] = STATE(1634),
- [sym__augmented_assignment_lhs] = STATE(2900),
- [sym_augmented_assignment_expression] = STATE(1634),
- [sym__destructuring_pattern] = STATE(3610),
- [sym_spread_element] = STATE(5152),
- [sym_ternary_expression] = STATE(1634),
- [sym_binary_expression] = STATE(1634),
- [sym_unary_expression] = STATE(1634),
- [sym_update_expression] = STATE(1634),
- [sym_string] = STATE(1650),
- [sym_template_string] = STATE(1650),
- [sym_regex] = STATE(1650),
- [sym_meta_property] = STATE(1650),
- [sym_decorator] = STATE(1244),
- [sym_formal_parameters] = STATE(3742),
- [sym_pattern] = STATE(4544),
- [sym_rest_pattern] = STATE(3700),
- [sym_non_null_expression] = STATE(1230),
- [sym_as_expression] = STATE(1634),
- [sym_satisfies_expression] = STATE(1634),
- [sym_instantiation_expression] = STATE(1634),
- [sym_internal_module] = STATE(1634),
- [sym_type_parameters] = STATE(5349),
- [aux_sym_export_statement_repeat1] = STATE(4458),
- [aux_sym_array_repeat1] = STATE(5155),
- [aux_sym_array_pattern_repeat1] = STATE(5165),
- [sym_identifier] = ACTIONS(1618),
- [anon_sym_export] = ACTIONS(610),
- [anon_sym_type] = ACTIONS(610),
- [anon_sym_namespace] = ACTIONS(614),
- [anon_sym_LBRACE] = ACTIONS(845),
- [anon_sym_COMMA] = ACTIONS(1654),
- [anon_sym_typeof] = ACTIONS(650),
- [anon_sym_import] = ACTIONS(133),
- [anon_sym_let] = ACTIONS(610),
- [anon_sym_BANG] = ACTIONS(622),
- [anon_sym_LPAREN] = ACTIONS(815),
- [anon_sym_await] = ACTIONS(624),
- [anon_sym_yield] = ACTIONS(626),
- [anon_sym_LBRACK] = ACTIONS(849),
- [anon_sym_RBRACK] = ACTIONS(1656),
- [sym_glimmer_opening_tag] = ACTIONS(148),
- [anon_sym_DQUOTE] = ACTIONS(150),
- [anon_sym_SQUOTE] = ACTIONS(152),
- [anon_sym_class] = ACTIONS(154),
- [anon_sym_async] = ACTIONS(632),
- [anon_sym_function] = ACTIONS(158),
- [anon_sym_new] = ACTIONS(1620),
- [anon_sym_using] = ACTIONS(636),
- [anon_sym_DOT_DOT_DOT] = ACTIONS(253),
- [anon_sym_PLUS] = ACTIONS(650),
- [anon_sym_DASH] = ACTIONS(650),
- [anon_sym_SLASH] = ACTIONS(646),
- [anon_sym_LT] = ACTIONS(181),
- [anon_sym_TILDE] = ACTIONS(622),
- [anon_sym_void] = ACTIONS(650),
- [anon_sym_delete] = ACTIONS(650),
- [anon_sym_PLUS_PLUS] = ACTIONS(652),
- [anon_sym_DASH_DASH] = ACTIONS(652),
- [sym_comment] = ACTIONS(5),
- [anon_sym_BQUOTE] = ACTIONS(825),
- [sym_number] = ACTIONS(787),
- [sym_private_property_identifier] = ACTIONS(654),
- [sym_this] = ACTIONS(200),
- [sym_super] = ACTIONS(200),
- [sym_true] = ACTIONS(200),
- [sym_false] = ACTIONS(200),
- [sym_null] = ACTIONS(200),
- [sym_undefined] = ACTIONS(1624),
- [anon_sym_AT] = ACTIONS(99),
- [anon_sym_static] = ACTIONS(610),
- [anon_sym_readonly] = ACTIONS(610),
- [anon_sym_get] = ACTIONS(610),
- [anon_sym_set] = ACTIONS(610),
- [anon_sym_declare] = ACTIONS(610),
- [anon_sym_public] = ACTIONS(610),
- [anon_sym_private] = ACTIONS(610),
- [anon_sym_protected] = ACTIONS(610),
- [anon_sym_override] = ACTIONS(610),
- [anon_sym_module] = ACTIONS(610),
- [anon_sym_any] = ACTIONS(610),
- [anon_sym_number] = ACTIONS(610),
- [anon_sym_boolean] = ACTIONS(610),
- [anon_sym_string] = ACTIONS(610),
- [anon_sym_symbol] = ACTIONS(610),
- [anon_sym_object] = ACTIONS(610),
- [sym_html_comment] = ACTIONS(5),
- },
- [206] = {
- [sym_import] = STATE(3334),
- [sym_parenthesized_expression] = STATE(1251),
- [sym_expression] = STATE(1829),
- [sym_primary_expression] = STATE(1468),
- [sym_yield_expression] = STATE(1634),
- [sym_object] = STATE(1650),
- [sym_object_pattern] = STATE(3610),
- [sym_assignment_pattern] = STATE(5148),
- [sym_array] = STATE(1650),
- [sym_array_pattern] = STATE(3610),
- [sym_glimmer_template] = STATE(1634),
- [sym_jsx_element] = STATE(1634),
- [sym_jsx_opening_element] = STATE(3026),
- [sym_jsx_self_closing_element] = STATE(1634),
- [sym_class] = STATE(1650),
- [sym_function_expression] = STATE(1650),
- [sym_generator_function] = STATE(1650),
- [sym_arrow_function] = STATE(1650),
- [sym__call_signature] = STATE(5828),
- [sym_call_expression] = STATE(1650),
- [sym_new_expression] = STATE(1634),
- [sym_await_expression] = STATE(1634),
- [sym_member_expression] = STATE(1230),
- [sym_subscript_expression] = STATE(1230),
- [sym_assignment_expression] = STATE(1634),
- [sym__augmented_assignment_lhs] = STATE(2900),
- [sym_augmented_assignment_expression] = STATE(1634),
- [sym__destructuring_pattern] = STATE(3610),
- [sym_spread_element] = STATE(4907),
- [sym_ternary_expression] = STATE(1634),
- [sym_binary_expression] = STATE(1634),
- [sym_unary_expression] = STATE(1634),
- [sym_update_expression] = STATE(1634),
- [sym_string] = STATE(1650),
- [sym_template_string] = STATE(1650),
- [sym_regex] = STATE(1650),
- [sym_meta_property] = STATE(1650),
- [sym_decorator] = STATE(1244),
- [sym_formal_parameters] = STATE(3742),
- [sym_pattern] = STATE(4544),
- [sym_rest_pattern] = STATE(3700),
- [sym_non_null_expression] = STATE(1230),
- [sym_as_expression] = STATE(1634),
- [sym_satisfies_expression] = STATE(1634),
- [sym_instantiation_expression] = STATE(1634),
- [sym_internal_module] = STATE(1634),
- [sym_type_parameters] = STATE(5349),
- [aux_sym_export_statement_repeat1] = STATE(4458),
- [aux_sym_array_repeat1] = STATE(4912),
- [aux_sym_array_pattern_repeat1] = STATE(5165),
- [sym_identifier] = ACTIONS(1618),
- [anon_sym_export] = ACTIONS(610),
- [anon_sym_type] = ACTIONS(610),
- [anon_sym_namespace] = ACTIONS(614),
- [anon_sym_LBRACE] = ACTIONS(845),
- [anon_sym_COMMA] = ACTIONS(1654),
- [anon_sym_typeof] = ACTIONS(650),
- [anon_sym_import] = ACTIONS(133),
- [anon_sym_let] = ACTIONS(610),
- [anon_sym_BANG] = ACTIONS(622),
- [anon_sym_LPAREN] = ACTIONS(815),
- [anon_sym_await] = ACTIONS(624),
- [anon_sym_yield] = ACTIONS(626),
- [anon_sym_LBRACK] = ACTIONS(849),
- [anon_sym_RBRACK] = ACTIONS(1668),
- [sym_glimmer_opening_tag] = ACTIONS(148),
- [anon_sym_DQUOTE] = ACTIONS(150),
- [anon_sym_SQUOTE] = ACTIONS(152),
- [anon_sym_class] = ACTIONS(154),
- [anon_sym_async] = ACTIONS(632),
- [anon_sym_function] = ACTIONS(158),
- [anon_sym_new] = ACTIONS(1620),
- [anon_sym_using] = ACTIONS(636),
- [anon_sym_DOT_DOT_DOT] = ACTIONS(253),
- [anon_sym_PLUS] = ACTIONS(650),
- [anon_sym_DASH] = ACTIONS(650),
- [anon_sym_SLASH] = ACTIONS(646),
- [anon_sym_LT] = ACTIONS(181),
- [anon_sym_TILDE] = ACTIONS(622),
- [anon_sym_void] = ACTIONS(650),
- [anon_sym_delete] = ACTIONS(650),
- [anon_sym_PLUS_PLUS] = ACTIONS(652),
- [anon_sym_DASH_DASH] = ACTIONS(652),
- [sym_comment] = ACTIONS(5),
- [anon_sym_BQUOTE] = ACTIONS(825),
- [sym_number] = ACTIONS(787),
- [sym_private_property_identifier] = ACTIONS(654),
- [sym_this] = ACTIONS(200),
- [sym_super] = ACTIONS(200),
- [sym_true] = ACTIONS(200),
- [sym_false] = ACTIONS(200),
- [sym_null] = ACTIONS(200),
- [sym_undefined] = ACTIONS(1624),
- [anon_sym_AT] = ACTIONS(99),
- [anon_sym_static] = ACTIONS(610),
- [anon_sym_readonly] = ACTIONS(610),
- [anon_sym_get] = ACTIONS(610),
- [anon_sym_set] = ACTIONS(610),
- [anon_sym_declare] = ACTIONS(610),
- [anon_sym_public] = ACTIONS(610),
- [anon_sym_private] = ACTIONS(610),
- [anon_sym_protected] = ACTIONS(610),
- [anon_sym_override] = ACTIONS(610),
- [anon_sym_module] = ACTIONS(610),
- [anon_sym_any] = ACTIONS(610),
- [anon_sym_number] = ACTIONS(610),
- [anon_sym_boolean] = ACTIONS(610),
- [anon_sym_string] = ACTIONS(610),
- [anon_sym_symbol] = ACTIONS(610),
- [anon_sym_object] = ACTIONS(610),
- [sym_html_comment] = ACTIONS(5),
- },
- [207] = {
- [sym_import] = STATE(3306),
- [sym_expression_statement] = STATE(288),
- [sym_variable_declaration] = STATE(288),
- [sym_lexical_declaration] = STATE(288),
- [sym_empty_statement] = STATE(288),
- [sym_parenthesized_expression] = STATE(1290),
- [sym_expression] = STATE(1705),
- [sym_primary_expression] = STATE(1946),
- [sym_yield_expression] = STATE(2234),
- [sym_object] = STATE(2310),
- [sym_object_pattern] = STATE(4963),
- [sym_array] = STATE(2310),
- [sym_array_pattern] = STATE(4963),
- [sym_glimmer_template] = STATE(2234),
- [sym_jsx_element] = STATE(2234),
- [sym_jsx_opening_element] = STATE(3051),
- [sym_jsx_self_closing_element] = STATE(2234),
- [sym_class] = STATE(2310),
- [sym_function_expression] = STATE(2310),
- [sym_generator_function] = STATE(2310),
- [sym_arrow_function] = STATE(2310),
- [sym__call_signature] = STATE(5809),
- [sym_call_expression] = STATE(2310),
- [sym_new_expression] = STATE(2234),
- [sym_await_expression] = STATE(2234),
- [sym_member_expression] = STATE(1290),
- [sym_subscript_expression] = STATE(1290),
- [sym_assignment_expression] = STATE(2234),
- [sym__augmented_assignment_lhs] = STATE(2875),
- [sym_augmented_assignment_expression] = STATE(2234),
- [sym__destructuring_pattern] = STATE(4963),
- [sym_ternary_expression] = STATE(2234),
- [sym_binary_expression] = STATE(2234),
- [sym_unary_expression] = STATE(2234),
- [sym_update_expression] = STATE(2234),
- [sym_sequence_expression] = STATE(5482),
- [sym_string] = STATE(2310),
- [sym_template_string] = STATE(2310),
- [sym_regex] = STATE(2310),
- [sym_meta_property] = STATE(2310),
- [sym_decorator] = STATE(1244),
- [sym_formal_parameters] = STATE(3742),
- [sym_non_null_expression] = STATE(1290),
- [sym_as_expression] = STATE(2234),
- [sym_satisfies_expression] = STATE(2234),
- [sym_instantiation_expression] = STATE(2234),
- [sym_internal_module] = STATE(2234),
- [sym_type_parameters] = STATE(5349),
- [aux_sym_export_statement_repeat1] = STATE(4499),
- [sym_identifier] = ACTIONS(1670),
- [anon_sym_export] = ACTIONS(1672),
- [anon_sym_type] = ACTIONS(1672),
- [anon_sym_namespace] = ACTIONS(1674),
- [anon_sym_LBRACE] = ACTIONS(1676),
- [anon_sym_typeof] = ACTIONS(21),
- [anon_sym_import] = ACTIONS(133),
- [anon_sym_var] = ACTIONS(1678),
- [anon_sym_let] = ACTIONS(1680),
- [anon_sym_const] = ACTIONS(1682),
- [anon_sym_BANG] = ACTIONS(33),
- [anon_sym_LPAREN] = ACTIONS(41),
- [anon_sym_await] = ACTIONS(43),
- [anon_sym_SEMI] = ACTIONS(61),
- [anon_sym_yield] = ACTIONS(63),
- [anon_sym_LBRACK] = ACTIONS(1684),
- [sym_glimmer_opening_tag] = ACTIONS(67),
- [anon_sym_DQUOTE] = ACTIONS(69),
- [anon_sym_SQUOTE] = ACTIONS(71),
- [anon_sym_class] = ACTIONS(709),
- [anon_sym_async] = ACTIONS(1686),
- [anon_sym_function] = ACTIONS(713),
- [anon_sym_new] = ACTIONS(1688),
- [anon_sym_using] = ACTIONS(81),
- [anon_sym_PLUS] = ACTIONS(21),
- [anon_sym_DASH] = ACTIONS(21),
- [anon_sym_SLASH] = ACTIONS(83),
- [anon_sym_LT] = ACTIONS(85),
- [anon_sym_TILDE] = ACTIONS(33),
- [anon_sym_void] = ACTIONS(21),
- [anon_sym_delete] = ACTIONS(21),
- [anon_sym_PLUS_PLUS] = ACTIONS(87),
- [anon_sym_DASH_DASH] = ACTIONS(87),
- [sym_comment] = ACTIONS(5),
- [anon_sym_BQUOTE] = ACTIONS(89),
- [sym_number] = ACTIONS(91),
- [sym_private_property_identifier] = ACTIONS(93),
- [sym_this] = ACTIONS(95),
- [sym_super] = ACTIONS(95),
- [sym_true] = ACTIONS(95),
- [sym_false] = ACTIONS(95),
- [sym_null] = ACTIONS(95),
- [sym_undefined] = ACTIONS(1690),
- [anon_sym_AT] = ACTIONS(99),
- [anon_sym_static] = ACTIONS(1672),
- [anon_sym_readonly] = ACTIONS(1672),
- [anon_sym_get] = ACTIONS(1672),
- [anon_sym_set] = ACTIONS(1672),
- [anon_sym_declare] = ACTIONS(1672),
- [anon_sym_public] = ACTIONS(1672),
- [anon_sym_private] = ACTIONS(1672),
- [anon_sym_protected] = ACTIONS(1672),
- [anon_sym_override] = ACTIONS(1672),
- [anon_sym_module] = ACTIONS(1672),
- [anon_sym_any] = ACTIONS(1672),
- [anon_sym_number] = ACTIONS(1672),
- [anon_sym_boolean] = ACTIONS(1672),
- [anon_sym_string] = ACTIONS(1672),
- [anon_sym_symbol] = ACTIONS(1672),
- [anon_sym_object] = ACTIONS(1672),
- [sym_html_comment] = ACTIONS(5),
- },
- [208] = {
- [sym_import] = STATE(3334),
- [sym_parenthesized_expression] = STATE(1369),
- [sym_expression] = STATE(2212),
- [sym_primary_expression] = STATE(1468),
- [sym_yield_expression] = STATE(1634),
- [sym_object] = STATE(1650),
- [sym_object_pattern] = STATE(5144),
- [sym_assignment_pattern] = STATE(5148),
- [sym_array] = STATE(1650),
- [sym_array_pattern] = STATE(5144),
- [sym_glimmer_template] = STATE(1634),
- [sym_jsx_element] = STATE(1634),
- [sym_jsx_opening_element] = STATE(3026),
- [sym_jsx_self_closing_element] = STATE(1634),
- [sym_class] = STATE(1650),
- [sym_function_expression] = STATE(1650),
- [sym_generator_function] = STATE(1650),
- [sym_arrow_function] = STATE(1650),
- [sym__call_signature] = STATE(5765),
- [sym_call_expression] = STATE(1650),
- [sym_new_expression] = STATE(1634),
- [sym_await_expression] = STATE(1634),
- [sym_member_expression] = STATE(1344),
- [sym_subscript_expression] = STATE(1344),
- [sym_assignment_expression] = STATE(1634),
- [sym__augmented_assignment_lhs] = STATE(2891),
- [sym_augmented_assignment_expression] = STATE(1634),
- [sym__destructuring_pattern] = STATE(5144),
- [sym_ternary_expression] = STATE(1634),
- [sym_binary_expression] = STATE(1634),
- [sym_unary_expression] = STATE(1634),
- [sym_update_expression] = STATE(1634),
- [sym_string] = STATE(1650),
- [sym_template_string] = STATE(1650),
- [sym_regex] = STATE(1650),
- [sym_meta_property] = STATE(1650),
- [sym_decorator] = STATE(1244),
- [sym_formal_parameters] = STATE(3742),
- [sym_pattern] = STATE(4544),
- [sym_rest_pattern] = STATE(3700),
- [sym_non_null_expression] = STATE(1344),
- [sym_as_expression] = STATE(1634),
- [sym_satisfies_expression] = STATE(1634),
- [sym_instantiation_expression] = STATE(1634),
- [sym_internal_module] = STATE(1634),
- [sym_mapped_type_clause] = STATE(5639),
- [sym_type_parameters] = STATE(5349),
- [aux_sym_export_statement_repeat1] = STATE(4458),
- [aux_sym_array_pattern_repeat1] = STATE(5165),
- [sym_identifier] = ACTIONS(1692),
- [anon_sym_export] = ACTIONS(1694),
- [anon_sym_type] = ACTIONS(1694),
- [anon_sym_namespace] = ACTIONS(1696),
- [anon_sym_LBRACE] = ACTIONS(1698),
- [anon_sym_COMMA] = ACTIONS(1700),
- [anon_sym_typeof] = ACTIONS(1138),
- [anon_sym_import] = ACTIONS(133),
- [anon_sym_let] = ACTIONS(1694),
- [anon_sym_BANG] = ACTIONS(1122),
- [anon_sym_LPAREN] = ACTIONS(815),
- [anon_sym_await] = ACTIONS(1124),
- [anon_sym_yield] = ACTIONS(1126),
- [anon_sym_LBRACK] = ACTIONS(1702),
- [anon_sym_RBRACK] = ACTIONS(1704),
- [sym_glimmer_opening_tag] = ACTIONS(148),
- [anon_sym_DQUOTE] = ACTIONS(150),
- [anon_sym_SQUOTE] = ACTIONS(152),
- [anon_sym_class] = ACTIONS(154),
- [anon_sym_async] = ACTIONS(1706),
- [anon_sym_function] = ACTIONS(158),
- [anon_sym_new] = ACTIONS(1708),
- [anon_sym_using] = ACTIONS(1132),
- [anon_sym_DOT_DOT_DOT] = ACTIONS(170),
- [anon_sym_PLUS] = ACTIONS(1138),
- [anon_sym_DASH] = ACTIONS(1138),
- [anon_sym_SLASH] = ACTIONS(646),
- [anon_sym_LT] = ACTIONS(181),
- [anon_sym_TILDE] = ACTIONS(1122),
- [anon_sym_void] = ACTIONS(1138),
- [anon_sym_delete] = ACTIONS(1138),
- [anon_sym_PLUS_PLUS] = ACTIONS(1140),
- [anon_sym_DASH_DASH] = ACTIONS(1140),
- [sym_comment] = ACTIONS(5),
- [anon_sym_BQUOTE] = ACTIONS(825),
- [sym_number] = ACTIONS(787),
- [sym_private_property_identifier] = ACTIONS(1142),
- [sym_this] = ACTIONS(200),
- [sym_super] = ACTIONS(200),
- [sym_true] = ACTIONS(200),
- [sym_false] = ACTIONS(200),
- [sym_null] = ACTIONS(200),
- [sym_undefined] = ACTIONS(1710),
- [anon_sym_AT] = ACTIONS(99),
- [anon_sym_static] = ACTIONS(1694),
- [anon_sym_readonly] = ACTIONS(1694),
- [anon_sym_get] = ACTIONS(1694),
- [anon_sym_set] = ACTIONS(1694),
- [anon_sym_declare] = ACTIONS(1694),
- [anon_sym_public] = ACTIONS(1694),
- [anon_sym_private] = ACTIONS(1694),
- [anon_sym_protected] = ACTIONS(1694),
- [anon_sym_override] = ACTIONS(1694),
- [anon_sym_module] = ACTIONS(1694),
- [anon_sym_any] = ACTIONS(1694),
- [anon_sym_number] = ACTIONS(1694),
- [anon_sym_boolean] = ACTIONS(1694),
- [anon_sym_string] = ACTIONS(1694),
- [anon_sym_symbol] = ACTIONS(1694),
- [anon_sym_object] = ACTIONS(1694),
- [sym_html_comment] = ACTIONS(5),
- },
- [209] = {
- [sym_import] = STATE(3306),
- [sym_expression_statement] = STATE(277),
- [sym_variable_declaration] = STATE(277),
- [sym_lexical_declaration] = STATE(277),
- [sym_empty_statement] = STATE(277),
- [sym_parenthesized_expression] = STATE(1290),
- [sym_expression] = STATE(1705),
- [sym_primary_expression] = STATE(1946),
- [sym_yield_expression] = STATE(2234),
- [sym_object] = STATE(2310),
- [sym_object_pattern] = STATE(4963),
- [sym_array] = STATE(2310),
- [sym_array_pattern] = STATE(4963),
- [sym_glimmer_template] = STATE(2234),
- [sym_jsx_element] = STATE(2234),
- [sym_jsx_opening_element] = STATE(3051),
- [sym_jsx_self_closing_element] = STATE(2234),
- [sym_class] = STATE(2310),
- [sym_function_expression] = STATE(2310),
- [sym_generator_function] = STATE(2310),
- [sym_arrow_function] = STATE(2310),
- [sym__call_signature] = STATE(5809),
- [sym_call_expression] = STATE(2310),
- [sym_new_expression] = STATE(2234),
- [sym_await_expression] = STATE(2234),
- [sym_member_expression] = STATE(1290),
- [sym_subscript_expression] = STATE(1290),
- [sym_assignment_expression] = STATE(2234),
- [sym__augmented_assignment_lhs] = STATE(2875),
- [sym_augmented_assignment_expression] = STATE(2234),
- [sym__destructuring_pattern] = STATE(4963),
- [sym_ternary_expression] = STATE(2234),
- [sym_binary_expression] = STATE(2234),
- [sym_unary_expression] = STATE(2234),
- [sym_update_expression] = STATE(2234),
- [sym_sequence_expression] = STATE(5482),
- [sym_string] = STATE(2310),
- [sym_template_string] = STATE(2310),
- [sym_regex] = STATE(2310),
- [sym_meta_property] = STATE(2310),
- [sym_decorator] = STATE(1244),
- [sym_formal_parameters] = STATE(3742),
- [sym_non_null_expression] = STATE(1290),
- [sym_as_expression] = STATE(2234),
- [sym_satisfies_expression] = STATE(2234),
- [sym_instantiation_expression] = STATE(2234),
- [sym_internal_module] = STATE(2234),
- [sym_type_parameters] = STATE(5349),
- [aux_sym_export_statement_repeat1] = STATE(4499),
- [sym_identifier] = ACTIONS(1670),
- [anon_sym_export] = ACTIONS(1672),
- [anon_sym_type] = ACTIONS(1672),
- [anon_sym_namespace] = ACTIONS(1674),
- [anon_sym_LBRACE] = ACTIONS(1676),
- [anon_sym_typeof] = ACTIONS(21),
- [anon_sym_import] = ACTIONS(133),
- [anon_sym_var] = ACTIONS(1678),
- [anon_sym_let] = ACTIONS(1680),
- [anon_sym_const] = ACTIONS(1682),
- [anon_sym_BANG] = ACTIONS(33),
- [anon_sym_LPAREN] = ACTIONS(41),
- [anon_sym_await] = ACTIONS(43),
- [anon_sym_SEMI] = ACTIONS(61),
- [anon_sym_yield] = ACTIONS(63),
- [anon_sym_LBRACK] = ACTIONS(1684),
- [sym_glimmer_opening_tag] = ACTIONS(67),
- [anon_sym_DQUOTE] = ACTIONS(69),
- [anon_sym_SQUOTE] = ACTIONS(71),
- [anon_sym_class] = ACTIONS(709),
- [anon_sym_async] = ACTIONS(1686),
- [anon_sym_function] = ACTIONS(713),
- [anon_sym_new] = ACTIONS(1688),
- [anon_sym_using] = ACTIONS(81),
- [anon_sym_PLUS] = ACTIONS(21),
- [anon_sym_DASH] = ACTIONS(21),
- [anon_sym_SLASH] = ACTIONS(83),
- [anon_sym_LT] = ACTIONS(85),
- [anon_sym_TILDE] = ACTIONS(33),
- [anon_sym_void] = ACTIONS(21),
- [anon_sym_delete] = ACTIONS(21),
- [anon_sym_PLUS_PLUS] = ACTIONS(87),
- [anon_sym_DASH_DASH] = ACTIONS(87),
- [sym_comment] = ACTIONS(5),
- [anon_sym_BQUOTE] = ACTIONS(89),
- [sym_number] = ACTIONS(91),
- [sym_private_property_identifier] = ACTIONS(93),
- [sym_this] = ACTIONS(95),
- [sym_super] = ACTIONS(95),
- [sym_true] = ACTIONS(95),
- [sym_false] = ACTIONS(95),
- [sym_null] = ACTIONS(95),
- [sym_undefined] = ACTIONS(1690),
- [anon_sym_AT] = ACTIONS(99),
- [anon_sym_static] = ACTIONS(1672),
- [anon_sym_readonly] = ACTIONS(1672),
- [anon_sym_get] = ACTIONS(1672),
- [anon_sym_set] = ACTIONS(1672),
- [anon_sym_declare] = ACTIONS(1672),
- [anon_sym_public] = ACTIONS(1672),
- [anon_sym_private] = ACTIONS(1672),
- [anon_sym_protected] = ACTIONS(1672),
- [anon_sym_override] = ACTIONS(1672),
- [anon_sym_module] = ACTIONS(1672),
- [anon_sym_any] = ACTIONS(1672),
- [anon_sym_number] = ACTIONS(1672),
- [anon_sym_boolean] = ACTIONS(1672),
- [anon_sym_string] = ACTIONS(1672),
- [anon_sym_symbol] = ACTIONS(1672),
- [anon_sym_object] = ACTIONS(1672),
- [sym_html_comment] = ACTIONS(5),
- },
- [210] = {
- [sym_statement_block] = STATE(222),
- [ts_builtin_sym_end] = ACTIONS(1712),
- [sym_identifier] = ACTIONS(1714),
- [anon_sym_export] = ACTIONS(1714),
- [anon_sym_STAR] = ACTIONS(1714),
- [anon_sym_default] = ACTIONS(1714),
- [anon_sym_type] = ACTIONS(1714),
- [anon_sym_as] = ACTIONS(1714),
- [anon_sym_namespace] = ACTIONS(1714),
- [anon_sym_LBRACE] = ACTIONS(1716),
- [anon_sym_COMMA] = ACTIONS(1712),
- [anon_sym_RBRACE] = ACTIONS(1712),
- [anon_sym_typeof] = ACTIONS(1714),
- [anon_sym_import] = ACTIONS(1714),
- [anon_sym_with] = ACTIONS(1714),
- [anon_sym_var] = ACTIONS(1714),
- [anon_sym_let] = ACTIONS(1714),
- [anon_sym_const] = ACTIONS(1714),
- [anon_sym_BANG] = ACTIONS(1714),
- [anon_sym_else] = ACTIONS(1714),
- [anon_sym_if] = ACTIONS(1714),
- [anon_sym_switch] = ACTIONS(1714),
- [anon_sym_for] = ACTIONS(1714),
- [anon_sym_LPAREN] = ACTIONS(1712),
- [anon_sym_await] = ACTIONS(1714),
- [anon_sym_in] = ACTIONS(1714),
- [anon_sym_while] = ACTIONS(1714),
- [anon_sym_do] = ACTIONS(1714),
- [anon_sym_try] = ACTIONS(1714),
- [anon_sym_break] = ACTIONS(1714),
- [anon_sym_continue] = ACTIONS(1714),
- [anon_sym_debugger] = ACTIONS(1714),
- [anon_sym_return] = ACTIONS(1714),
- [anon_sym_throw] = ACTIONS(1714),
- [anon_sym_SEMI] = ACTIONS(1712),
- [anon_sym_case] = ACTIONS(1714),
- [anon_sym_yield] = ACTIONS(1714),
- [anon_sym_LBRACK] = ACTIONS(1712),
- [sym_glimmer_opening_tag] = ACTIONS(1712),
- [anon_sym_GT] = ACTIONS(1714),
- [anon_sym_DOT] = ACTIONS(1718),
- [anon_sym_DQUOTE] = ACTIONS(1712),
- [anon_sym_SQUOTE] = ACTIONS(1712),
- [anon_sym_class] = ACTIONS(1714),
- [anon_sym_async] = ACTIONS(1714),
- [anon_sym_function] = ACTIONS(1714),
- [anon_sym_QMARK_DOT] = ACTIONS(1712),
- [anon_sym_new] = ACTIONS(1714),
- [anon_sym_using] = ACTIONS(1714),
- [anon_sym_AMP_AMP] = ACTIONS(1712),
- [anon_sym_PIPE_PIPE] = ACTIONS(1712),
- [anon_sym_GT_GT] = ACTIONS(1714),
- [anon_sym_GT_GT_GT] = ACTIONS(1712),
- [anon_sym_LT_LT] = ACTIONS(1712),
- [anon_sym_AMP] = ACTIONS(1714),
- [anon_sym_CARET] = ACTIONS(1712),
- [anon_sym_PIPE] = ACTIONS(1714),
- [anon_sym_PLUS] = ACTIONS(1714),
- [anon_sym_DASH] = ACTIONS(1714),
- [anon_sym_SLASH] = ACTIONS(1714),
- [anon_sym_PERCENT] = ACTIONS(1712),
- [anon_sym_STAR_STAR] = ACTIONS(1712),
- [anon_sym_LT] = ACTIONS(1714),
- [anon_sym_LT_EQ] = ACTIONS(1712),
- [anon_sym_EQ_EQ] = ACTIONS(1714),
- [anon_sym_EQ_EQ_EQ] = ACTIONS(1712),
- [anon_sym_BANG_EQ] = ACTIONS(1714),
- [anon_sym_BANG_EQ_EQ] = ACTIONS(1712),
- [anon_sym_GT_EQ] = ACTIONS(1712),
- [anon_sym_QMARK_QMARK] = ACTIONS(1712),
- [anon_sym_instanceof] = ACTIONS(1714),
- [anon_sym_TILDE] = ACTIONS(1712),
- [anon_sym_void] = ACTIONS(1714),
- [anon_sym_delete] = ACTIONS(1714),
- [anon_sym_PLUS_PLUS] = ACTIONS(1712),
- [anon_sym_DASH_DASH] = ACTIONS(1712),
- [sym_comment] = ACTIONS(5),
- [anon_sym_BQUOTE] = ACTIONS(1712),
- [sym_number] = ACTIONS(1712),
- [sym_private_property_identifier] = ACTIONS(1712),
- [sym_this] = ACTIONS(1714),
- [sym_super] = ACTIONS(1714),
- [sym_true] = ACTIONS(1714),
- [sym_false] = ACTIONS(1714),
- [sym_null] = ACTIONS(1714),
- [sym_undefined] = ACTIONS(1714),
- [anon_sym_AT] = ACTIONS(1712),
- [anon_sym_static] = ACTIONS(1714),
- [anon_sym_readonly] = ACTIONS(1714),
- [anon_sym_get] = ACTIONS(1714),
- [anon_sym_set] = ACTIONS(1714),
- [anon_sym_declare] = ACTIONS(1714),
- [anon_sym_public] = ACTIONS(1714),
- [anon_sym_private] = ACTIONS(1714),
- [anon_sym_protected] = ACTIONS(1714),
- [anon_sym_override] = ACTIONS(1714),
- [anon_sym_module] = ACTIONS(1714),
- [anon_sym_any] = ACTIONS(1714),
- [anon_sym_number] = ACTIONS(1714),
- [anon_sym_boolean] = ACTIONS(1714),
- [anon_sym_string] = ACTIONS(1714),
- [anon_sym_symbol] = ACTIONS(1714),
- [anon_sym_object] = ACTIONS(1714),
- [anon_sym_abstract] = ACTIONS(1714),
- [anon_sym_satisfies] = ACTIONS(1714),
- [anon_sym_interface] = ACTIONS(1714),
- [anon_sym_enum] = ACTIONS(1714),
- [sym__automatic_semicolon] = ACTIONS(1712),
- [sym__ternary_qmark] = ACTIONS(1712),
- [sym_html_comment] = ACTIONS(5),
- },
- [211] = {
- [sym_import] = STATE(3334),
- [sym_parenthesized_expression] = STATE(1251),
- [sym_expression] = STATE(1479),
- [sym_primary_expression] = STATE(1468),
- [sym_yield_expression] = STATE(1634),
- [sym_object] = STATE(1650),
- [sym_object_pattern] = STATE(5633),
- [sym_array] = STATE(1650),
- [sym_array_pattern] = STATE(5633),
- [sym_glimmer_template] = STATE(1634),
- [sym_jsx_element] = STATE(1634),
- [sym_jsx_opening_element] = STATE(3026),
- [sym_jsx_self_closing_element] = STATE(1634),
- [sym_class] = STATE(1650),
- [sym_function_expression] = STATE(1650),
- [sym_generator_function] = STATE(1650),
- [sym_arrow_function] = STATE(1650),
- [sym__call_signature] = STATE(5828),
- [sym_call_expression] = STATE(1650),
- [sym_new_expression] = STATE(1634),
- [sym_await_expression] = STATE(1634),
- [sym_member_expression] = STATE(1251),
- [sym_subscript_expression] = STATE(1251),
- [sym_assignment_expression] = STATE(1634),
- [sym__augmented_assignment_lhs] = STATE(2900),
- [sym_augmented_assignment_expression] = STATE(1634),
- [sym__destructuring_pattern] = STATE(5633),
- [sym_ternary_expression] = STATE(1634),
- [sym_binary_expression] = STATE(1634),
- [sym_unary_expression] = STATE(1634),
- [sym_update_expression] = STATE(1634),
- [sym_string] = STATE(1650),
- [sym_template_string] = STATE(1650),
- [sym_regex] = STATE(1650),
- [sym_meta_property] = STATE(1650),
- [sym_decorator] = STATE(1244),
- [sym_formal_parameters] = STATE(3742),
- [sym_non_null_expression] = STATE(1251),
- [sym_as_expression] = STATE(1634),
- [sym_satisfies_expression] = STATE(1634),
- [sym_instantiation_expression] = STATE(1634),
- [sym_internal_module] = STATE(1634),
- [sym_type_parameters] = STATE(5349),
- [aux_sym_export_statement_repeat1] = STATE(4458),
- [sym_identifier] = ACTIONS(1428),
- [anon_sym_export] = ACTIONS(1044),
- [anon_sym_type] = ACTIONS(1044),
- [anon_sym_namespace] = ACTIONS(1046),
- [anon_sym_LBRACE] = ACTIONS(813),
- [anon_sym_COMMA] = ACTIONS(1650),
- [anon_sym_RBRACE] = ACTIONS(1650),
- [anon_sym_typeof] = ACTIONS(650),
- [anon_sym_import] = ACTIONS(133),
- [anon_sym_let] = ACTIONS(1044),
- [anon_sym_BANG] = ACTIONS(622),
- [anon_sym_LPAREN] = ACTIONS(815),
- [anon_sym_await] = ACTIONS(624),
- [anon_sym_SEMI] = ACTIONS(1650),
- [anon_sym_yield] = ACTIONS(626),
- [anon_sym_LBRACK] = ACTIONS(1650),
- [sym_glimmer_opening_tag] = ACTIONS(148),
- [anon_sym_DQUOTE] = ACTIONS(150),
- [anon_sym_SQUOTE] = ACTIONS(152),
- [anon_sym_class] = ACTIONS(154),
- [anon_sym_async] = ACTIONS(1052),
- [anon_sym_function] = ACTIONS(158),
- [anon_sym_new] = ACTIONS(1436),
- [anon_sym_using] = ACTIONS(636),
- [anon_sym_AMP] = ACTIONS(1650),
- [anon_sym_PIPE] = ACTIONS(1652),
- [anon_sym_PLUS] = ACTIONS(650),
- [anon_sym_DASH] = ACTIONS(650),
- [anon_sym_SLASH] = ACTIONS(646),
- [anon_sym_LT] = ACTIONS(181),
- [anon_sym_TILDE] = ACTIONS(622),
- [anon_sym_void] = ACTIONS(650),
- [anon_sym_delete] = ACTIONS(650),
- [anon_sym_PLUS_PLUS] = ACTIONS(652),
- [anon_sym_DASH_DASH] = ACTIONS(652),
- [sym_comment] = ACTIONS(5),
- [anon_sym_BQUOTE] = ACTIONS(825),
- [sym_number] = ACTIONS(787),
- [sym_private_property_identifier] = ACTIONS(654),
- [sym_this] = ACTIONS(200),
- [sym_super] = ACTIONS(200),
- [sym_true] = ACTIONS(200),
- [sym_false] = ACTIONS(200),
- [sym_null] = ACTIONS(200),
- [sym_undefined] = ACTIONS(1438),
- [anon_sym_AT] = ACTIONS(99),
- [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_override] = 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_object] = ACTIONS(1044),
- [anon_sym_extends] = ACTIONS(1652),
- [anon_sym_PIPE_RBRACE] = ACTIONS(1650),
- [sym__automatic_semicolon] = ACTIONS(1650),
- [sym_html_comment] = ACTIONS(5),
- },
- [212] = {
- [ts_builtin_sym_end] = ACTIONS(1720),
- [sym_identifier] = ACTIONS(1722),
- [anon_sym_export] = ACTIONS(1722),
- [anon_sym_STAR] = ACTIONS(1724),
- [anon_sym_default] = ACTIONS(1722),
- [anon_sym_type] = ACTIONS(1722),
- [anon_sym_EQ] = ACTIONS(1726),
- [anon_sym_as] = ACTIONS(1724),
- [anon_sym_namespace] = ACTIONS(1722),
- [anon_sym_LBRACE] = ACTIONS(1720),
- [anon_sym_COMMA] = ACTIONS(1728),
- [anon_sym_RBRACE] = ACTIONS(1720),
- [anon_sym_typeof] = ACTIONS(1722),
- [anon_sym_import] = ACTIONS(1722),
- [anon_sym_with] = ACTIONS(1722),
- [anon_sym_var] = ACTIONS(1722),
- [anon_sym_let] = ACTIONS(1722),
- [anon_sym_const] = ACTIONS(1722),
- [anon_sym_BANG] = ACTIONS(1722),
- [anon_sym_else] = ACTIONS(1722),
- [anon_sym_if] = ACTIONS(1722),
- [anon_sym_switch] = ACTIONS(1722),
- [anon_sym_for] = ACTIONS(1722),
- [anon_sym_LPAREN] = ACTIONS(1720),
- [anon_sym_await] = ACTIONS(1722),
- [anon_sym_in] = ACTIONS(1724),
- [anon_sym_while] = ACTIONS(1722),
- [anon_sym_do] = ACTIONS(1722),
- [anon_sym_try] = ACTIONS(1722),
- [anon_sym_break] = ACTIONS(1722),
- [anon_sym_continue] = ACTIONS(1722),
- [anon_sym_debugger] = ACTIONS(1722),
- [anon_sym_return] = ACTIONS(1722),
- [anon_sym_throw] = ACTIONS(1722),
- [anon_sym_SEMI] = ACTIONS(1720),
- [anon_sym_case] = ACTIONS(1722),
- [anon_sym_yield] = ACTIONS(1722),
- [anon_sym_LBRACK] = ACTIONS(1720),
- [sym_glimmer_opening_tag] = ACTIONS(1720),
- [anon_sym_GT] = ACTIONS(1724),
- [anon_sym_DOT] = ACTIONS(1724),
- [anon_sym_DQUOTE] = ACTIONS(1720),
- [anon_sym_SQUOTE] = ACTIONS(1720),
- [anon_sym_class] = ACTIONS(1722),
- [anon_sym_async] = ACTIONS(1722),
- [anon_sym_function] = ACTIONS(1722),
- [anon_sym_QMARK_DOT] = ACTIONS(1728),
- [anon_sym_new] = ACTIONS(1722),
- [anon_sym_using] = ACTIONS(1722),
- [anon_sym_AMP_AMP] = ACTIONS(1728),
- [anon_sym_PIPE_PIPE] = ACTIONS(1728),
- [anon_sym_GT_GT] = ACTIONS(1724),
- [anon_sym_GT_GT_GT] = ACTIONS(1728),
- [anon_sym_LT_LT] = ACTIONS(1728),
- [anon_sym_AMP] = ACTIONS(1724),
- [anon_sym_CARET] = ACTIONS(1728),
- [anon_sym_PIPE] = ACTIONS(1724),
- [anon_sym_PLUS] = ACTIONS(1722),
- [anon_sym_DASH] = ACTIONS(1722),
- [anon_sym_SLASH] = ACTIONS(1722),
- [anon_sym_PERCENT] = ACTIONS(1728),
- [anon_sym_STAR_STAR] = ACTIONS(1728),
- [anon_sym_LT] = ACTIONS(1722),
- [anon_sym_LT_EQ] = ACTIONS(1728),
- [anon_sym_EQ_EQ] = ACTIONS(1724),
- [anon_sym_EQ_EQ_EQ] = ACTIONS(1728),
- [anon_sym_BANG_EQ] = ACTIONS(1724),
- [anon_sym_BANG_EQ_EQ] = ACTIONS(1728),
- [anon_sym_GT_EQ] = ACTIONS(1728),
- [anon_sym_QMARK_QMARK] = ACTIONS(1728),
- [anon_sym_instanceof] = ACTIONS(1724),
- [anon_sym_TILDE] = ACTIONS(1720),
- [anon_sym_void] = ACTIONS(1722),
- [anon_sym_delete] = ACTIONS(1722),
- [anon_sym_PLUS_PLUS] = ACTIONS(1720),
- [anon_sym_DASH_DASH] = ACTIONS(1720),
- [sym_comment] = ACTIONS(5),
- [anon_sym_BQUOTE] = ACTIONS(1720),
- [sym_number] = ACTIONS(1720),
- [sym_private_property_identifier] = ACTIONS(1720),
- [sym_this] = ACTIONS(1722),
- [sym_super] = ACTIONS(1722),
- [sym_true] = ACTIONS(1722),
- [sym_false] = ACTIONS(1722),
- [sym_null] = ACTIONS(1722),
- [sym_undefined] = ACTIONS(1722),
- [anon_sym_AT] = ACTIONS(1720),
- [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_override] = 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),
- [anon_sym_object] = ACTIONS(1722),
- [anon_sym_abstract] = ACTIONS(1722),
- [anon_sym_satisfies] = ACTIONS(1724),
- [anon_sym_interface] = ACTIONS(1722),
- [anon_sym_enum] = ACTIONS(1722),
- [sym__automatic_semicolon] = ACTIONS(1730),
- [sym__ternary_qmark] = ACTIONS(1728),
- [sym_html_comment] = ACTIONS(5),
- },
- [213] = {
- [sym_statement_block] = STATE(222),
- [ts_builtin_sym_end] = ACTIONS(1712),
- [sym_identifier] = ACTIONS(1714),
- [anon_sym_export] = ACTIONS(1714),
- [anon_sym_STAR] = ACTIONS(1714),
- [anon_sym_default] = ACTIONS(1714),
- [anon_sym_type] = ACTIONS(1714),
- [anon_sym_as] = ACTIONS(1714),
- [anon_sym_namespace] = ACTIONS(1714),
- [anon_sym_LBRACE] = ACTIONS(1716),
- [anon_sym_COMMA] = ACTIONS(1712),
- [anon_sym_RBRACE] = ACTIONS(1712),
- [anon_sym_typeof] = ACTIONS(1714),
- [anon_sym_import] = ACTIONS(1714),
- [anon_sym_with] = ACTIONS(1714),
- [anon_sym_var] = ACTIONS(1714),
- [anon_sym_let] = ACTIONS(1714),
- [anon_sym_const] = ACTIONS(1714),
- [anon_sym_BANG] = ACTIONS(1714),
- [anon_sym_else] = ACTIONS(1714),
- [anon_sym_if] = ACTIONS(1714),
- [anon_sym_switch] = ACTIONS(1714),
- [anon_sym_for] = ACTIONS(1714),
- [anon_sym_LPAREN] = ACTIONS(1712),
- [anon_sym_await] = ACTIONS(1714),
- [anon_sym_in] = ACTIONS(1714),
- [anon_sym_while] = ACTIONS(1714),
- [anon_sym_do] = ACTIONS(1714),
- [anon_sym_try] = ACTIONS(1714),
- [anon_sym_break] = ACTIONS(1714),
- [anon_sym_continue] = ACTIONS(1714),
- [anon_sym_debugger] = ACTIONS(1714),
- [anon_sym_return] = ACTIONS(1714),
- [anon_sym_throw] = ACTIONS(1714),
- [anon_sym_SEMI] = ACTIONS(1712),
- [anon_sym_case] = ACTIONS(1714),
- [anon_sym_yield] = ACTIONS(1714),
- [anon_sym_LBRACK] = ACTIONS(1712),
- [sym_glimmer_opening_tag] = ACTIONS(1712),
- [anon_sym_GT] = ACTIONS(1714),
- [anon_sym_DOT] = ACTIONS(1714),
- [anon_sym_DQUOTE] = ACTIONS(1712),
- [anon_sym_SQUOTE] = ACTIONS(1712),
- [anon_sym_class] = ACTIONS(1714),
- [anon_sym_async] = ACTIONS(1714),
- [anon_sym_function] = ACTIONS(1714),
- [anon_sym_QMARK_DOT] = ACTIONS(1712),
- [anon_sym_new] = ACTIONS(1714),
- [anon_sym_using] = ACTIONS(1714),
- [anon_sym_AMP_AMP] = ACTIONS(1712),
- [anon_sym_PIPE_PIPE] = ACTIONS(1712),
- [anon_sym_GT_GT] = ACTIONS(1714),
- [anon_sym_GT_GT_GT] = ACTIONS(1712),
- [anon_sym_LT_LT] = ACTIONS(1712),
- [anon_sym_AMP] = ACTIONS(1714),
- [anon_sym_CARET] = ACTIONS(1712),
- [anon_sym_PIPE] = ACTIONS(1714),
- [anon_sym_PLUS] = ACTIONS(1714),
- [anon_sym_DASH] = ACTIONS(1714),
- [anon_sym_SLASH] = ACTIONS(1714),
- [anon_sym_PERCENT] = ACTIONS(1712),
- [anon_sym_STAR_STAR] = ACTIONS(1712),
- [anon_sym_LT] = ACTIONS(1714),
- [anon_sym_LT_EQ] = ACTIONS(1712),
- [anon_sym_EQ_EQ] = ACTIONS(1714),
- [anon_sym_EQ_EQ_EQ] = ACTIONS(1712),
- [anon_sym_BANG_EQ] = ACTIONS(1714),
- [anon_sym_BANG_EQ_EQ] = ACTIONS(1712),
- [anon_sym_GT_EQ] = ACTIONS(1712),
- [anon_sym_QMARK_QMARK] = ACTIONS(1712),
- [anon_sym_instanceof] = ACTIONS(1714),
- [anon_sym_TILDE] = ACTIONS(1712),
- [anon_sym_void] = ACTIONS(1714),
- [anon_sym_delete] = ACTIONS(1714),
- [anon_sym_PLUS_PLUS] = ACTIONS(1712),
- [anon_sym_DASH_DASH] = ACTIONS(1712),
- [sym_comment] = ACTIONS(5),
- [anon_sym_BQUOTE] = ACTIONS(1712),
- [sym_number] = ACTIONS(1712),
- [sym_private_property_identifier] = ACTIONS(1712),
- [sym_this] = ACTIONS(1714),
- [sym_super] = ACTIONS(1714),
- [sym_true] = ACTIONS(1714),
- [sym_false] = ACTIONS(1714),
- [sym_null] = ACTIONS(1714),
- [sym_undefined] = ACTIONS(1714),
- [anon_sym_AT] = ACTIONS(1712),
- [anon_sym_static] = ACTIONS(1714),
- [anon_sym_readonly] = ACTIONS(1714),
- [anon_sym_get] = ACTIONS(1714),
- [anon_sym_set] = ACTIONS(1714),
- [anon_sym_declare] = ACTIONS(1714),
- [anon_sym_public] = ACTIONS(1714),
- [anon_sym_private] = ACTIONS(1714),
- [anon_sym_protected] = ACTIONS(1714),
- [anon_sym_override] = ACTIONS(1714),
- [anon_sym_module] = ACTIONS(1714),
- [anon_sym_any] = ACTIONS(1714),
- [anon_sym_number] = ACTIONS(1714),
- [anon_sym_boolean] = ACTIONS(1714),
- [anon_sym_string] = ACTIONS(1714),
- [anon_sym_symbol] = ACTIONS(1714),
- [anon_sym_object] = ACTIONS(1714),
- [anon_sym_abstract] = ACTIONS(1714),
- [anon_sym_satisfies] = ACTIONS(1714),
- [anon_sym_interface] = ACTIONS(1714),
- [anon_sym_enum] = ACTIONS(1714),
- [sym__automatic_semicolon] = ACTIONS(1712),
- [sym__ternary_qmark] = ACTIONS(1712),
- [sym_html_comment] = ACTIONS(5),
- },
- [214] = {
- [sym_statement_block] = STATE(222),
- [ts_builtin_sym_end] = ACTIONS(1712),
- [sym_identifier] = ACTIONS(1714),
- [anon_sym_export] = ACTIONS(1714),
- [anon_sym_STAR] = ACTIONS(1714),
- [anon_sym_default] = ACTIONS(1714),
- [anon_sym_type] = ACTIONS(1714),
- [anon_sym_as] = ACTIONS(1714),
- [anon_sym_namespace] = ACTIONS(1714),
- [anon_sym_LBRACE] = ACTIONS(1716),
- [anon_sym_COMMA] = ACTIONS(1712),
- [anon_sym_RBRACE] = ACTIONS(1712),
- [anon_sym_typeof] = ACTIONS(1714),
- [anon_sym_import] = ACTIONS(1714),
- [anon_sym_with] = ACTIONS(1714),
- [anon_sym_var] = ACTIONS(1714),
- [anon_sym_let] = ACTIONS(1714),
- [anon_sym_const] = ACTIONS(1714),
- [anon_sym_BANG] = ACTIONS(1714),
- [anon_sym_else] = ACTIONS(1714),
- [anon_sym_if] = ACTIONS(1714),
- [anon_sym_switch] = ACTIONS(1714),
- [anon_sym_for] = ACTIONS(1714),
- [anon_sym_LPAREN] = ACTIONS(1712),
- [anon_sym_await] = ACTIONS(1714),
- [anon_sym_in] = ACTIONS(1714),
- [anon_sym_while] = ACTIONS(1714),
- [anon_sym_do] = ACTIONS(1714),
- [anon_sym_try] = ACTIONS(1714),
- [anon_sym_break] = ACTIONS(1714),
- [anon_sym_continue] = ACTIONS(1714),
- [anon_sym_debugger] = ACTIONS(1714),
- [anon_sym_return] = ACTIONS(1714),
- [anon_sym_throw] = ACTIONS(1714),
- [anon_sym_SEMI] = ACTIONS(1712),
- [anon_sym_case] = ACTIONS(1714),
- [anon_sym_yield] = ACTIONS(1714),
- [anon_sym_LBRACK] = ACTIONS(1712),
- [sym_glimmer_opening_tag] = ACTIONS(1712),
- [anon_sym_GT] = ACTIONS(1714),
- [anon_sym_DOT] = ACTIONS(1732),
- [anon_sym_DQUOTE] = ACTIONS(1712),
- [anon_sym_SQUOTE] = ACTIONS(1712),
- [anon_sym_class] = ACTIONS(1714),
- [anon_sym_async] = ACTIONS(1714),
- [anon_sym_function] = ACTIONS(1714),
- [anon_sym_QMARK_DOT] = ACTIONS(1712),
- [anon_sym_new] = ACTIONS(1714),
- [anon_sym_using] = ACTIONS(1714),
- [anon_sym_AMP_AMP] = ACTIONS(1712),
- [anon_sym_PIPE_PIPE] = ACTIONS(1712),
- [anon_sym_GT_GT] = ACTIONS(1714),
- [anon_sym_GT_GT_GT] = ACTIONS(1712),
- [anon_sym_LT_LT] = ACTIONS(1712),
- [anon_sym_AMP] = ACTIONS(1714),
- [anon_sym_CARET] = ACTIONS(1712),
- [anon_sym_PIPE] = ACTIONS(1714),
- [anon_sym_PLUS] = ACTIONS(1714),
- [anon_sym_DASH] = ACTIONS(1714),
- [anon_sym_SLASH] = ACTIONS(1714),
- [anon_sym_PERCENT] = ACTIONS(1712),
- [anon_sym_STAR_STAR] = ACTIONS(1712),
- [anon_sym_LT] = ACTIONS(1714),
- [anon_sym_LT_EQ] = ACTIONS(1712),
- [anon_sym_EQ_EQ] = ACTIONS(1714),
- [anon_sym_EQ_EQ_EQ] = ACTIONS(1712),
- [anon_sym_BANG_EQ] = ACTIONS(1714),
- [anon_sym_BANG_EQ_EQ] = ACTIONS(1712),
- [anon_sym_GT_EQ] = ACTIONS(1712),
- [anon_sym_QMARK_QMARK] = ACTIONS(1712),
- [anon_sym_instanceof] = ACTIONS(1714),
- [anon_sym_TILDE] = ACTIONS(1712),
- [anon_sym_void] = ACTIONS(1714),
- [anon_sym_delete] = ACTIONS(1714),
- [anon_sym_PLUS_PLUS] = ACTIONS(1712),
- [anon_sym_DASH_DASH] = ACTIONS(1712),
- [sym_comment] = ACTIONS(5),
- [anon_sym_BQUOTE] = ACTIONS(1712),
- [sym_number] = ACTIONS(1712),
- [sym_private_property_identifier] = ACTIONS(1712),
- [sym_this] = ACTIONS(1714),
- [sym_super] = ACTIONS(1714),
- [sym_true] = ACTIONS(1714),
- [sym_false] = ACTIONS(1714),
- [sym_null] = ACTIONS(1714),
- [sym_undefined] = ACTIONS(1714),
- [anon_sym_AT] = ACTIONS(1712),
- [anon_sym_static] = ACTIONS(1714),
- [anon_sym_readonly] = ACTIONS(1714),
- [anon_sym_get] = ACTIONS(1714),
- [anon_sym_set] = ACTIONS(1714),
- [anon_sym_declare] = ACTIONS(1714),
- [anon_sym_public] = ACTIONS(1714),
- [anon_sym_private] = ACTIONS(1714),
- [anon_sym_protected] = ACTIONS(1714),
- [anon_sym_override] = ACTIONS(1714),
- [anon_sym_module] = ACTIONS(1714),
- [anon_sym_any] = ACTIONS(1714),
- [anon_sym_number] = ACTIONS(1714),
- [anon_sym_boolean] = ACTIONS(1714),
- [anon_sym_string] = ACTIONS(1714),
- [anon_sym_symbol] = ACTIONS(1714),
- [anon_sym_object] = ACTIONS(1714),
- [anon_sym_abstract] = ACTIONS(1714),
- [anon_sym_satisfies] = ACTIONS(1714),
- [anon_sym_interface] = ACTIONS(1714),
- [anon_sym_enum] = ACTIONS(1714),
- [sym__automatic_semicolon] = ACTIONS(1712),
- [sym__ternary_qmark] = ACTIONS(1712),
- [sym_html_comment] = ACTIONS(5),
- },
- [215] = {
- [sym_import] = STATE(3306),
- [sym_expression_statement] = STATE(289),
- [sym_variable_declaration] = STATE(289),
- [sym_lexical_declaration] = STATE(289),
- [sym_empty_statement] = STATE(289),
- [sym_parenthesized_expression] = STATE(1290),
- [sym_expression] = STATE(1705),
- [sym_primary_expression] = STATE(1946),
- [sym_yield_expression] = STATE(2234),
- [sym_object] = STATE(2310),
- [sym_object_pattern] = STATE(4963),
- [sym_array] = STATE(2310),
- [sym_array_pattern] = STATE(4963),
- [sym_glimmer_template] = STATE(2234),
- [sym_jsx_element] = STATE(2234),
- [sym_jsx_opening_element] = STATE(3051),
- [sym_jsx_self_closing_element] = STATE(2234),
- [sym_class] = STATE(2310),
- [sym_function_expression] = STATE(2310),
- [sym_generator_function] = STATE(2310),
- [sym_arrow_function] = STATE(2310),
- [sym__call_signature] = STATE(5809),
- [sym_call_expression] = STATE(2310),
- [sym_new_expression] = STATE(2234),
- [sym_await_expression] = STATE(2234),
- [sym_member_expression] = STATE(1290),
- [sym_subscript_expression] = STATE(1290),
- [sym_assignment_expression] = STATE(2234),
- [sym__augmented_assignment_lhs] = STATE(2875),
- [sym_augmented_assignment_expression] = STATE(2234),
- [sym__destructuring_pattern] = STATE(4963),
- [sym_ternary_expression] = STATE(2234),
- [sym_binary_expression] = STATE(2234),
- [sym_unary_expression] = STATE(2234),
- [sym_update_expression] = STATE(2234),
- [sym_sequence_expression] = STATE(5482),
- [sym_string] = STATE(2310),
- [sym_template_string] = STATE(2310),
- [sym_regex] = STATE(2310),
- [sym_meta_property] = STATE(2310),
- [sym_decorator] = STATE(1244),
- [sym_formal_parameters] = STATE(3742),
- [sym_non_null_expression] = STATE(1290),
- [sym_as_expression] = STATE(2234),
- [sym_satisfies_expression] = STATE(2234),
- [sym_instantiation_expression] = STATE(2234),
- [sym_internal_module] = STATE(2234),
- [sym_type_parameters] = STATE(5349),
- [aux_sym_export_statement_repeat1] = STATE(4499),
- [sym_identifier] = ACTIONS(1670),
- [anon_sym_export] = ACTIONS(1672),
- [anon_sym_type] = ACTIONS(1672),
- [anon_sym_namespace] = ACTIONS(1674),
- [anon_sym_LBRACE] = ACTIONS(1676),
- [anon_sym_typeof] = ACTIONS(21),
- [anon_sym_import] = ACTIONS(133),
- [anon_sym_var] = ACTIONS(1678),
- [anon_sym_let] = ACTIONS(1680),
- [anon_sym_const] = ACTIONS(1682),
- [anon_sym_BANG] = ACTIONS(33),
- [anon_sym_LPAREN] = ACTIONS(41),
- [anon_sym_await] = ACTIONS(43),
- [anon_sym_SEMI] = ACTIONS(61),
- [anon_sym_yield] = ACTIONS(63),
- [anon_sym_LBRACK] = ACTIONS(1684),
- [sym_glimmer_opening_tag] = ACTIONS(67),
- [anon_sym_DQUOTE] = ACTIONS(69),
- [anon_sym_SQUOTE] = ACTIONS(71),
- [anon_sym_class] = ACTIONS(709),
- [anon_sym_async] = ACTIONS(1686),
- [anon_sym_function] = ACTIONS(713),
- [anon_sym_new] = ACTIONS(1688),
- [anon_sym_using] = ACTIONS(81),
- [anon_sym_PLUS] = ACTIONS(21),
- [anon_sym_DASH] = ACTIONS(21),
- [anon_sym_SLASH] = ACTIONS(83),
- [anon_sym_LT] = ACTIONS(85),
- [anon_sym_TILDE] = ACTIONS(33),
- [anon_sym_void] = ACTIONS(21),
- [anon_sym_delete] = ACTIONS(21),
- [anon_sym_PLUS_PLUS] = ACTIONS(87),
- [anon_sym_DASH_DASH] = ACTIONS(87),
- [sym_comment] = ACTIONS(5),
- [anon_sym_BQUOTE] = ACTIONS(89),
- [sym_number] = ACTIONS(91),
- [sym_private_property_identifier] = ACTIONS(93),
- [sym_this] = ACTIONS(95),
- [sym_super] = ACTIONS(95),
- [sym_true] = ACTIONS(95),
- [sym_false] = ACTIONS(95),
- [sym_null] = ACTIONS(95),
- [sym_undefined] = ACTIONS(1690),
- [anon_sym_AT] = ACTIONS(99),
- [anon_sym_static] = ACTIONS(1672),
- [anon_sym_readonly] = ACTIONS(1672),
- [anon_sym_get] = ACTIONS(1672),
- [anon_sym_set] = ACTIONS(1672),
- [anon_sym_declare] = ACTIONS(1672),
- [anon_sym_public] = ACTIONS(1672),
- [anon_sym_private] = ACTIONS(1672),
- [anon_sym_protected] = ACTIONS(1672),
- [anon_sym_override] = ACTIONS(1672),
- [anon_sym_module] = ACTIONS(1672),
- [anon_sym_any] = ACTIONS(1672),
- [anon_sym_number] = ACTIONS(1672),
- [anon_sym_boolean] = ACTIONS(1672),
- [anon_sym_string] = ACTIONS(1672),
- [anon_sym_symbol] = ACTIONS(1672),
- [anon_sym_object] = ACTIONS(1672),
- [sym_html_comment] = ACTIONS(5),
- },
- [216] = {
- [ts_builtin_sym_end] = ACTIONS(1734),
- [sym_identifier] = ACTIONS(1736),
- [anon_sym_export] = ACTIONS(1736),
- [anon_sym_STAR] = ACTIONS(1738),
- [anon_sym_default] = ACTIONS(1736),
- [anon_sym_type] = ACTIONS(1736),
- [anon_sym_as] = ACTIONS(1738),
- [anon_sym_namespace] = ACTIONS(1736),
- [anon_sym_LBRACE] = ACTIONS(1734),
- [anon_sym_COMMA] = ACTIONS(1740),
- [anon_sym_RBRACE] = ACTIONS(1734),
- [anon_sym_typeof] = ACTIONS(1736),
- [anon_sym_import] = ACTIONS(1736),
- [anon_sym_with] = ACTIONS(1736),
- [anon_sym_var] = ACTIONS(1736),
- [anon_sym_let] = ACTIONS(1736),
- [anon_sym_const] = ACTIONS(1736),
- [anon_sym_BANG] = ACTIONS(1736),
- [anon_sym_else] = ACTIONS(1736),
- [anon_sym_if] = ACTIONS(1736),
- [anon_sym_switch] = ACTIONS(1736),
- [anon_sym_for] = ACTIONS(1736),
- [anon_sym_LPAREN] = ACTIONS(1734),
- [anon_sym_await] = ACTIONS(1736),
- [anon_sym_in] = ACTIONS(1738),
- [anon_sym_while] = ACTIONS(1736),
- [anon_sym_do] = ACTIONS(1736),
- [anon_sym_try] = ACTIONS(1736),
- [anon_sym_break] = ACTIONS(1736),
- [anon_sym_continue] = ACTIONS(1736),
- [anon_sym_debugger] = ACTIONS(1736),
- [anon_sym_return] = ACTIONS(1736),
- [anon_sym_throw] = ACTIONS(1736),
- [anon_sym_SEMI] = ACTIONS(1734),
- [anon_sym_case] = ACTIONS(1736),
- [anon_sym_yield] = ACTIONS(1736),
- [anon_sym_LBRACK] = ACTIONS(1734),
- [sym_glimmer_opening_tag] = ACTIONS(1734),
- [anon_sym_GT] = ACTIONS(1738),
- [anon_sym_DOT] = ACTIONS(1738),
- [anon_sym_DQUOTE] = ACTIONS(1734),
- [anon_sym_SQUOTE] = ACTIONS(1734),
- [anon_sym_class] = ACTIONS(1736),
- [anon_sym_async] = ACTIONS(1736),
- [anon_sym_function] = ACTIONS(1736),
- [anon_sym_QMARK_DOT] = ACTIONS(1740),
- [anon_sym_new] = ACTIONS(1736),
- [anon_sym_using] = ACTIONS(1736),
- [anon_sym_AMP_AMP] = ACTIONS(1740),
- [anon_sym_PIPE_PIPE] = ACTIONS(1740),
- [anon_sym_GT_GT] = ACTIONS(1738),
- [anon_sym_GT_GT_GT] = ACTIONS(1740),
- [anon_sym_LT_LT] = ACTIONS(1740),
- [anon_sym_AMP] = ACTIONS(1738),
- [anon_sym_CARET] = ACTIONS(1740),
- [anon_sym_PIPE] = ACTIONS(1738),
- [anon_sym_PLUS] = ACTIONS(1736),
- [anon_sym_DASH] = ACTIONS(1736),
- [anon_sym_SLASH] = ACTIONS(1736),
- [anon_sym_PERCENT] = ACTIONS(1740),
- [anon_sym_STAR_STAR] = ACTIONS(1740),
- [anon_sym_LT] = ACTIONS(1736),
- [anon_sym_LT_EQ] = ACTIONS(1740),
- [anon_sym_EQ_EQ] = ACTIONS(1738),
- [anon_sym_EQ_EQ_EQ] = ACTIONS(1740),
- [anon_sym_BANG_EQ] = ACTIONS(1738),
- [anon_sym_BANG_EQ_EQ] = ACTIONS(1740),
- [anon_sym_GT_EQ] = ACTIONS(1740),
- [anon_sym_QMARK_QMARK] = ACTIONS(1740),
- [anon_sym_instanceof] = ACTIONS(1738),
- [anon_sym_TILDE] = ACTIONS(1734),
- [anon_sym_void] = ACTIONS(1736),
- [anon_sym_delete] = ACTIONS(1736),
- [anon_sym_PLUS_PLUS] = ACTIONS(1734),
- [anon_sym_DASH_DASH] = ACTIONS(1734),
- [sym_comment] = ACTIONS(5),
- [anon_sym_BQUOTE] = ACTIONS(1734),
- [sym_number] = ACTIONS(1734),
- [sym_private_property_identifier] = ACTIONS(1734),
- [sym_this] = ACTIONS(1736),
- [sym_super] = ACTIONS(1736),
- [sym_true] = ACTIONS(1736),
- [sym_false] = ACTIONS(1736),
- [sym_null] = ACTIONS(1736),
- [sym_undefined] = ACTIONS(1736),
- [anon_sym_AT] = ACTIONS(1734),
- [anon_sym_static] = ACTIONS(1736),
- [anon_sym_readonly] = ACTIONS(1736),
- [anon_sym_get] = ACTIONS(1736),
- [anon_sym_set] = ACTIONS(1736),
- [anon_sym_declare] = ACTIONS(1736),
- [anon_sym_public] = ACTIONS(1736),
- [anon_sym_private] = ACTIONS(1736),
- [anon_sym_protected] = ACTIONS(1736),
- [anon_sym_override] = ACTIONS(1736),
- [anon_sym_module] = ACTIONS(1736),
- [anon_sym_any] = ACTIONS(1736),
- [anon_sym_number] = ACTIONS(1736),
- [anon_sym_boolean] = ACTIONS(1736),
- [anon_sym_string] = ACTIONS(1736),
- [anon_sym_symbol] = ACTIONS(1736),
- [anon_sym_object] = ACTIONS(1736),
- [anon_sym_abstract] = ACTIONS(1736),
- [anon_sym_satisfies] = ACTIONS(1738),
- [anon_sym_interface] = ACTIONS(1736),
- [anon_sym_enum] = ACTIONS(1736),
- [sym__automatic_semicolon] = ACTIONS(1742),
- [sym__ternary_qmark] = ACTIONS(1740),
- [sym_html_comment] = ACTIONS(5),
- },
- [217] = {
- [sym_import] = STATE(3334),
- [sym_parenthesized_expression] = STATE(1251),
- [sym_expression] = STATE(1828),
- [sym_primary_expression] = STATE(1468),
- [sym_yield_expression] = STATE(1634),
- [sym_object] = STATE(1650),
- [sym_object_pattern] = STATE(3610),
- [sym_assignment_pattern] = STATE(5512),
- [sym_array] = STATE(1650),
- [sym_array_pattern] = STATE(3610),
- [sym_glimmer_template] = STATE(1634),
- [sym_jsx_element] = STATE(1634),
- [sym_jsx_opening_element] = STATE(3026),
- [sym_jsx_self_closing_element] = STATE(1634),
- [sym_class] = STATE(1650),
- [sym_function_expression] = STATE(1650),
- [sym_generator_function] = STATE(1650),
- [sym_arrow_function] = STATE(1650),
- [sym__call_signature] = STATE(5828),
- [sym_call_expression] = STATE(1650),
- [sym_new_expression] = STATE(1634),
- [sym_await_expression] = STATE(1634),
- [sym_member_expression] = STATE(1230),
- [sym_subscript_expression] = STATE(1230),
- [sym_assignment_expression] = STATE(1634),
- [sym__augmented_assignment_lhs] = STATE(2900),
- [sym_augmented_assignment_expression] = STATE(1634),
- [sym__destructuring_pattern] = STATE(3610),
- [sym_spread_element] = STATE(4979),
- [sym_ternary_expression] = STATE(1634),
- [sym_binary_expression] = STATE(1634),
- [sym_unary_expression] = STATE(1634),
- [sym_update_expression] = STATE(1634),
- [sym_string] = STATE(1650),
- [sym_template_string] = STATE(1650),
- [sym_regex] = STATE(1650),
- [sym_meta_property] = STATE(1650),
- [sym_decorator] = STATE(1244),
- [sym_formal_parameters] = STATE(3742),
- [sym_pattern] = STATE(5128),
- [sym_rest_pattern] = STATE(3700),
- [sym_non_null_expression] = STATE(1230),
- [sym_as_expression] = STATE(1634),
- [sym_satisfies_expression] = STATE(1634),
- [sym_instantiation_expression] = STATE(1634),
- [sym_internal_module] = STATE(1634),
- [sym_type_parameters] = STATE(5349),
- [aux_sym_export_statement_repeat1] = STATE(4458),
- [sym_identifier] = ACTIONS(1618),
- [anon_sym_export] = ACTIONS(610),
- [anon_sym_type] = ACTIONS(610),
- [anon_sym_namespace] = ACTIONS(614),
- [anon_sym_LBRACE] = ACTIONS(845),
- [anon_sym_COMMA] = ACTIONS(1744),
- [anon_sym_typeof] = ACTIONS(650),
- [anon_sym_import] = ACTIONS(133),
- [anon_sym_let] = ACTIONS(610),
- [anon_sym_BANG] = ACTIONS(622),
- [anon_sym_LPAREN] = ACTIONS(815),
- [anon_sym_await] = ACTIONS(624),
- [anon_sym_yield] = ACTIONS(626),
- [anon_sym_LBRACK] = ACTIONS(849),
- [anon_sym_RBRACK] = ACTIONS(1747),
- [sym_glimmer_opening_tag] = ACTIONS(148),
- [anon_sym_DQUOTE] = ACTIONS(150),
- [anon_sym_SQUOTE] = ACTIONS(152),
- [anon_sym_class] = ACTIONS(154),
- [anon_sym_async] = ACTIONS(632),
- [anon_sym_function] = ACTIONS(158),
- [anon_sym_new] = ACTIONS(1620),
- [anon_sym_using] = ACTIONS(636),
- [anon_sym_DOT_DOT_DOT] = ACTIONS(253),
- [anon_sym_PLUS] = ACTIONS(650),
- [anon_sym_DASH] = ACTIONS(650),
- [anon_sym_SLASH] = ACTIONS(646),
- [anon_sym_LT] = ACTIONS(181),
- [anon_sym_TILDE] = ACTIONS(622),
- [anon_sym_void] = ACTIONS(650),
- [anon_sym_delete] = ACTIONS(650),
- [anon_sym_PLUS_PLUS] = ACTIONS(652),
- [anon_sym_DASH_DASH] = ACTIONS(652),
- [sym_comment] = ACTIONS(5),
- [anon_sym_BQUOTE] = ACTIONS(825),
- [sym_number] = ACTIONS(787),
- [sym_private_property_identifier] = ACTIONS(654),
- [sym_this] = ACTIONS(200),
- [sym_super] = ACTIONS(200),
- [sym_true] = ACTIONS(200),
- [sym_false] = ACTIONS(200),
- [sym_null] = ACTIONS(200),
- [sym_undefined] = ACTIONS(1624),
- [anon_sym_AT] = ACTIONS(99),
- [anon_sym_static] = ACTIONS(610),
- [anon_sym_readonly] = ACTIONS(610),
- [anon_sym_get] = ACTIONS(610),
- [anon_sym_set] = ACTIONS(610),
- [anon_sym_declare] = ACTIONS(610),
- [anon_sym_public] = ACTIONS(610),
- [anon_sym_private] = ACTIONS(610),
- [anon_sym_protected] = ACTIONS(610),
- [anon_sym_override] = ACTIONS(610),
- [anon_sym_module] = ACTIONS(610),
- [anon_sym_any] = ACTIONS(610),
- [anon_sym_number] = ACTIONS(610),
- [anon_sym_boolean] = ACTIONS(610),
- [anon_sym_string] = ACTIONS(610),
- [anon_sym_symbol] = ACTIONS(610),
- [anon_sym_object] = ACTIONS(610),
- [sym_html_comment] = ACTIONS(5),
- },
- [218] = {
- [ts_builtin_sym_end] = ACTIONS(1751),
- [sym_identifier] = ACTIONS(1753),
- [anon_sym_export] = ACTIONS(1753),
- [anon_sym_STAR] = ACTIONS(1753),
- [anon_sym_default] = ACTIONS(1753),
- [anon_sym_type] = ACTIONS(1753),
- [anon_sym_as] = ACTIONS(1753),
- [anon_sym_namespace] = ACTIONS(1753),
- [anon_sym_LBRACE] = ACTIONS(1751),
- [anon_sym_COMMA] = ACTIONS(1751),
- [anon_sym_RBRACE] = ACTIONS(1751),
- [anon_sym_typeof] = ACTIONS(1753),
- [anon_sym_import] = ACTIONS(1753),
- [anon_sym_with] = ACTIONS(1753),
- [anon_sym_var] = ACTIONS(1753),
- [anon_sym_let] = ACTIONS(1753),
- [anon_sym_const] = ACTIONS(1753),
- [anon_sym_BANG] = ACTIONS(1753),
- [anon_sym_else] = ACTIONS(1753),
- [anon_sym_if] = ACTIONS(1753),
- [anon_sym_switch] = ACTIONS(1753),
- [anon_sym_for] = ACTIONS(1753),
- [anon_sym_LPAREN] = ACTIONS(1751),
- [anon_sym_await] = ACTIONS(1753),
- [anon_sym_in] = ACTIONS(1753),
- [anon_sym_while] = ACTIONS(1753),
- [anon_sym_do] = ACTIONS(1753),
- [anon_sym_try] = ACTIONS(1753),
- [anon_sym_break] = ACTIONS(1753),
- [anon_sym_continue] = ACTIONS(1753),
- [anon_sym_debugger] = ACTIONS(1753),
- [anon_sym_return] = ACTIONS(1753),
- [anon_sym_throw] = ACTIONS(1753),
- [anon_sym_SEMI] = ACTIONS(1751),
- [anon_sym_case] = ACTIONS(1753),
- [anon_sym_yield] = ACTIONS(1753),
- [anon_sym_LBRACK] = ACTIONS(1751),
- [sym_glimmer_opening_tag] = ACTIONS(1751),
- [anon_sym_GT] = ACTIONS(1753),
- [anon_sym_DOT] = ACTIONS(1753),
- [anon_sym_DQUOTE] = ACTIONS(1751),
- [anon_sym_SQUOTE] = ACTIONS(1751),
- [anon_sym_class] = ACTIONS(1753),
- [anon_sym_async] = ACTIONS(1753),
- [anon_sym_function] = ACTIONS(1753),
- [anon_sym_QMARK_DOT] = ACTIONS(1751),
- [anon_sym_new] = ACTIONS(1753),
- [anon_sym_using] = ACTIONS(1753),
- [anon_sym_AMP_AMP] = ACTIONS(1751),
- [anon_sym_PIPE_PIPE] = ACTIONS(1751),
- [anon_sym_GT_GT] = ACTIONS(1753),
- [anon_sym_GT_GT_GT] = ACTIONS(1751),
- [anon_sym_LT_LT] = ACTIONS(1751),
- [anon_sym_AMP] = ACTIONS(1753),
- [anon_sym_CARET] = ACTIONS(1751),
- [anon_sym_PIPE] = ACTIONS(1753),
- [anon_sym_PLUS] = ACTIONS(1753),
- [anon_sym_DASH] = ACTIONS(1753),
- [anon_sym_SLASH] = ACTIONS(1753),
- [anon_sym_PERCENT] = ACTIONS(1751),
- [anon_sym_STAR_STAR] = ACTIONS(1751),
- [anon_sym_LT] = ACTIONS(1753),
- [anon_sym_LT_EQ] = ACTIONS(1751),
- [anon_sym_EQ_EQ] = ACTIONS(1753),
- [anon_sym_EQ_EQ_EQ] = ACTIONS(1751),
- [anon_sym_BANG_EQ] = ACTIONS(1753),
- [anon_sym_BANG_EQ_EQ] = ACTIONS(1751),
- [anon_sym_GT_EQ] = ACTIONS(1751),
- [anon_sym_QMARK_QMARK] = ACTIONS(1751),
- [anon_sym_instanceof] = ACTIONS(1753),
- [anon_sym_TILDE] = ACTIONS(1751),
- [anon_sym_void] = ACTIONS(1753),
- [anon_sym_delete] = ACTIONS(1753),
- [anon_sym_PLUS_PLUS] = ACTIONS(1751),
- [anon_sym_DASH_DASH] = ACTIONS(1751),
- [sym_comment] = ACTIONS(5),
- [anon_sym_BQUOTE] = ACTIONS(1751),
- [sym_number] = ACTIONS(1751),
- [sym_private_property_identifier] = ACTIONS(1751),
- [sym_this] = ACTIONS(1753),
- [sym_super] = ACTIONS(1753),
- [sym_true] = ACTIONS(1753),
- [sym_false] = ACTIONS(1753),
- [sym_null] = ACTIONS(1753),
- [sym_undefined] = ACTIONS(1753),
- [anon_sym_AT] = ACTIONS(1751),
- [anon_sym_static] = ACTIONS(1753),
- [anon_sym_readonly] = ACTIONS(1753),
- [anon_sym_get] = ACTIONS(1753),
- [anon_sym_set] = ACTIONS(1753),
- [anon_sym_declare] = ACTIONS(1753),
- [anon_sym_public] = ACTIONS(1753),
- [anon_sym_private] = ACTIONS(1753),
- [anon_sym_protected] = ACTIONS(1753),
- [anon_sym_override] = ACTIONS(1753),
- [anon_sym_module] = ACTIONS(1753),
- [anon_sym_any] = ACTIONS(1753),
- [anon_sym_number] = ACTIONS(1753),
- [anon_sym_boolean] = ACTIONS(1753),
- [anon_sym_string] = ACTIONS(1753),
- [anon_sym_symbol] = ACTIONS(1753),
- [anon_sym_object] = ACTIONS(1753),
- [anon_sym_abstract] = ACTIONS(1753),
- [anon_sym_satisfies] = ACTIONS(1753),
- [anon_sym_interface] = ACTIONS(1753),
- [anon_sym_enum] = ACTIONS(1753),
- [sym__automatic_semicolon] = ACTIONS(1751),
- [sym__ternary_qmark] = ACTIONS(1751),
- [sym_html_comment] = ACTIONS(5),
- },
- [219] = {
- [ts_builtin_sym_end] = ACTIONS(1755),
- [sym_identifier] = ACTIONS(1757),
- [anon_sym_export] = ACTIONS(1757),
- [anon_sym_STAR] = ACTIONS(1759),
- [anon_sym_default] = ACTIONS(1757),
- [anon_sym_type] = ACTIONS(1757),
- [anon_sym_as] = ACTIONS(1759),
- [anon_sym_namespace] = ACTIONS(1757),
- [anon_sym_LBRACE] = ACTIONS(1755),
- [anon_sym_COMMA] = ACTIONS(1761),
- [anon_sym_RBRACE] = ACTIONS(1755),
- [anon_sym_typeof] = ACTIONS(1757),
- [anon_sym_import] = ACTIONS(1757),
- [anon_sym_with] = ACTIONS(1757),
- [anon_sym_var] = ACTIONS(1757),
- [anon_sym_let] = ACTIONS(1757),
- [anon_sym_const] = ACTIONS(1757),
- [anon_sym_BANG] = ACTIONS(1757),
- [anon_sym_else] = ACTIONS(1757),
- [anon_sym_if] = ACTIONS(1757),
- [anon_sym_switch] = ACTIONS(1757),
- [anon_sym_for] = ACTIONS(1757),
- [anon_sym_LPAREN] = ACTIONS(1755),
- [anon_sym_await] = ACTIONS(1757),
- [anon_sym_in] = ACTIONS(1759),
- [anon_sym_while] = ACTIONS(1757),
- [anon_sym_do] = ACTIONS(1757),
- [anon_sym_try] = ACTIONS(1757),
- [anon_sym_break] = ACTIONS(1757),
- [anon_sym_continue] = ACTIONS(1757),
- [anon_sym_debugger] = ACTIONS(1757),
- [anon_sym_return] = ACTIONS(1757),
- [anon_sym_throw] = ACTIONS(1757),
- [anon_sym_SEMI] = ACTIONS(1755),
- [anon_sym_case] = ACTIONS(1757),
- [anon_sym_yield] = ACTIONS(1757),
- [anon_sym_LBRACK] = ACTIONS(1755),
- [sym_glimmer_opening_tag] = ACTIONS(1755),
- [anon_sym_GT] = ACTIONS(1759),
- [anon_sym_DOT] = ACTIONS(1759),
- [anon_sym_DQUOTE] = ACTIONS(1755),
- [anon_sym_SQUOTE] = ACTIONS(1755),
- [anon_sym_class] = ACTIONS(1757),
- [anon_sym_async] = ACTIONS(1757),
- [anon_sym_function] = ACTIONS(1757),
- [anon_sym_QMARK_DOT] = ACTIONS(1761),
- [anon_sym_new] = ACTIONS(1757),
- [anon_sym_using] = ACTIONS(1757),
- [anon_sym_AMP_AMP] = ACTIONS(1761),
- [anon_sym_PIPE_PIPE] = ACTIONS(1761),
- [anon_sym_GT_GT] = ACTIONS(1759),
- [anon_sym_GT_GT_GT] = ACTIONS(1761),
- [anon_sym_LT_LT] = ACTIONS(1761),
- [anon_sym_AMP] = ACTIONS(1759),
- [anon_sym_CARET] = ACTIONS(1761),
- [anon_sym_PIPE] = ACTIONS(1759),
- [anon_sym_PLUS] = ACTIONS(1757),
- [anon_sym_DASH] = ACTIONS(1757),
- [anon_sym_SLASH] = ACTIONS(1757),
- [anon_sym_PERCENT] = ACTIONS(1761),
- [anon_sym_STAR_STAR] = ACTIONS(1761),
- [anon_sym_LT] = ACTIONS(1757),
- [anon_sym_LT_EQ] = ACTIONS(1761),
- [anon_sym_EQ_EQ] = ACTIONS(1759),
- [anon_sym_EQ_EQ_EQ] = ACTIONS(1761),
- [anon_sym_BANG_EQ] = ACTIONS(1759),
- [anon_sym_BANG_EQ_EQ] = ACTIONS(1761),
- [anon_sym_GT_EQ] = ACTIONS(1761),
- [anon_sym_QMARK_QMARK] = ACTIONS(1761),
- [anon_sym_instanceof] = ACTIONS(1759),
- [anon_sym_TILDE] = ACTIONS(1755),
- [anon_sym_void] = ACTIONS(1757),
- [anon_sym_delete] = ACTIONS(1757),
- [anon_sym_PLUS_PLUS] = ACTIONS(1755),
- [anon_sym_DASH_DASH] = ACTIONS(1755),
- [sym_comment] = ACTIONS(5),
- [anon_sym_BQUOTE] = ACTIONS(1755),
- [sym_number] = ACTIONS(1755),
- [sym_private_property_identifier] = ACTIONS(1755),
- [sym_this] = ACTIONS(1757),
- [sym_super] = ACTIONS(1757),
- [sym_true] = ACTIONS(1757),
- [sym_false] = ACTIONS(1757),
- [sym_null] = ACTIONS(1757),
- [sym_undefined] = ACTIONS(1757),
- [anon_sym_AT] = ACTIONS(1755),
- [anon_sym_static] = ACTIONS(1757),
- [anon_sym_readonly] = ACTIONS(1757),
- [anon_sym_get] = ACTIONS(1757),
- [anon_sym_set] = ACTIONS(1757),
- [anon_sym_declare] = ACTIONS(1757),
- [anon_sym_public] = ACTIONS(1757),
- [anon_sym_private] = ACTIONS(1757),
- [anon_sym_protected] = ACTIONS(1757),
- [anon_sym_override] = ACTIONS(1757),
- [anon_sym_module] = ACTIONS(1757),
- [anon_sym_any] = ACTIONS(1757),
- [anon_sym_number] = ACTIONS(1757),
- [anon_sym_boolean] = ACTIONS(1757),
- [anon_sym_string] = ACTIONS(1757),
- [anon_sym_symbol] = ACTIONS(1757),
- [anon_sym_object] = ACTIONS(1757),
- [anon_sym_abstract] = ACTIONS(1757),
- [anon_sym_satisfies] = ACTIONS(1759),
- [anon_sym_interface] = ACTIONS(1757),
- [anon_sym_enum] = ACTIONS(1757),
- [sym__automatic_semicolon] = ACTIONS(1763),
- [sym__ternary_qmark] = ACTIONS(1761),
- [sym_html_comment] = ACTIONS(5),
- },
- [220] = {
- [ts_builtin_sym_end] = ACTIONS(1765),
- [sym_identifier] = ACTIONS(1767),
- [anon_sym_export] = ACTIONS(1767),
- [anon_sym_STAR] = ACTIONS(1767),
- [anon_sym_default] = ACTIONS(1767),
- [anon_sym_type] = ACTIONS(1767),
- [anon_sym_as] = ACTIONS(1767),
- [anon_sym_namespace] = ACTIONS(1767),
- [anon_sym_LBRACE] = ACTIONS(1765),
- [anon_sym_COMMA] = ACTIONS(1765),
- [anon_sym_RBRACE] = ACTIONS(1765),
- [anon_sym_typeof] = ACTIONS(1767),
- [anon_sym_import] = ACTIONS(1767),
- [anon_sym_with] = ACTIONS(1767),
- [anon_sym_var] = ACTIONS(1767),
- [anon_sym_let] = ACTIONS(1767),
- [anon_sym_const] = ACTIONS(1767),
- [anon_sym_BANG] = ACTIONS(1767),
- [anon_sym_else] = ACTIONS(1767),
- [anon_sym_if] = ACTIONS(1767),
- [anon_sym_switch] = ACTIONS(1767),
- [anon_sym_for] = ACTIONS(1767),
- [anon_sym_LPAREN] = ACTIONS(1765),
- [anon_sym_await] = ACTIONS(1767),
- [anon_sym_in] = ACTIONS(1767),
- [anon_sym_while] = ACTIONS(1767),
- [anon_sym_do] = ACTIONS(1767),
- [anon_sym_try] = ACTIONS(1767),
- [anon_sym_break] = ACTIONS(1767),
- [anon_sym_continue] = ACTIONS(1767),
- [anon_sym_debugger] = ACTIONS(1767),
- [anon_sym_return] = ACTIONS(1767),
- [anon_sym_throw] = ACTIONS(1767),
- [anon_sym_SEMI] = ACTIONS(1765),
- [anon_sym_case] = ACTIONS(1767),
- [anon_sym_yield] = ACTIONS(1767),
- [anon_sym_LBRACK] = ACTIONS(1765),
- [sym_glimmer_opening_tag] = ACTIONS(1765),
- [anon_sym_GT] = ACTIONS(1767),
- [anon_sym_DOT] = ACTIONS(1767),
- [anon_sym_DQUOTE] = ACTIONS(1765),
- [anon_sym_SQUOTE] = ACTIONS(1765),
- [anon_sym_class] = ACTIONS(1767),
- [anon_sym_async] = ACTIONS(1767),
- [anon_sym_function] = ACTIONS(1767),
- [anon_sym_QMARK_DOT] = ACTIONS(1765),
- [anon_sym_new] = ACTIONS(1767),
- [anon_sym_using] = ACTIONS(1767),
- [anon_sym_AMP_AMP] = ACTIONS(1765),
- [anon_sym_PIPE_PIPE] = ACTIONS(1765),
- [anon_sym_GT_GT] = ACTIONS(1767),
- [anon_sym_GT_GT_GT] = ACTIONS(1765),
- [anon_sym_LT_LT] = ACTIONS(1765),
- [anon_sym_AMP] = ACTIONS(1767),
- [anon_sym_CARET] = ACTIONS(1765),
- [anon_sym_PIPE] = ACTIONS(1767),
- [anon_sym_PLUS] = ACTIONS(1767),
- [anon_sym_DASH] = ACTIONS(1767),
- [anon_sym_SLASH] = ACTIONS(1767),
- [anon_sym_PERCENT] = ACTIONS(1765),
- [anon_sym_STAR_STAR] = ACTIONS(1765),
- [anon_sym_LT] = ACTIONS(1767),
- [anon_sym_LT_EQ] = ACTIONS(1765),
- [anon_sym_EQ_EQ] = ACTIONS(1767),
- [anon_sym_EQ_EQ_EQ] = ACTIONS(1765),
- [anon_sym_BANG_EQ] = ACTIONS(1767),
- [anon_sym_BANG_EQ_EQ] = ACTIONS(1765),
- [anon_sym_GT_EQ] = ACTIONS(1765),
- [anon_sym_QMARK_QMARK] = ACTIONS(1765),
- [anon_sym_instanceof] = ACTIONS(1767),
- [anon_sym_TILDE] = ACTIONS(1765),
- [anon_sym_void] = ACTIONS(1767),
- [anon_sym_delete] = ACTIONS(1767),
- [anon_sym_PLUS_PLUS] = ACTIONS(1765),
- [anon_sym_DASH_DASH] = ACTIONS(1765),
- [sym_comment] = ACTIONS(5),
- [anon_sym_BQUOTE] = ACTIONS(1765),
- [sym_number] = ACTIONS(1765),
- [sym_private_property_identifier] = ACTIONS(1765),
- [sym_this] = ACTIONS(1767),
- [sym_super] = ACTIONS(1767),
- [sym_true] = ACTIONS(1767),
- [sym_false] = ACTIONS(1767),
- [sym_null] = ACTIONS(1767),
- [sym_undefined] = ACTIONS(1767),
- [anon_sym_AT] = ACTIONS(1765),
- [anon_sym_static] = ACTIONS(1767),
- [anon_sym_readonly] = ACTIONS(1767),
- [anon_sym_get] = ACTIONS(1767),
- [anon_sym_set] = ACTIONS(1767),
- [anon_sym_declare] = ACTIONS(1767),
- [anon_sym_public] = ACTIONS(1767),
- [anon_sym_private] = ACTIONS(1767),
- [anon_sym_protected] = ACTIONS(1767),
- [anon_sym_override] = ACTIONS(1767),
- [anon_sym_module] = ACTIONS(1767),
- [anon_sym_any] = ACTIONS(1767),
- [anon_sym_number] = ACTIONS(1767),
- [anon_sym_boolean] = ACTIONS(1767),
- [anon_sym_string] = ACTIONS(1767),
- [anon_sym_symbol] = ACTIONS(1767),
- [anon_sym_object] = ACTIONS(1767),
- [anon_sym_abstract] = ACTIONS(1767),
- [anon_sym_satisfies] = ACTIONS(1767),
- [anon_sym_interface] = ACTIONS(1767),
- [anon_sym_enum] = ACTIONS(1767),
- [sym__automatic_semicolon] = ACTIONS(1765),
- [sym__ternary_qmark] = ACTIONS(1765),
- [sym_html_comment] = ACTIONS(5),
- },
- [221] = {
- [ts_builtin_sym_end] = ACTIONS(1769),
- [sym_identifier] = ACTIONS(1771),
- [anon_sym_export] = ACTIONS(1771),
- [anon_sym_STAR] = ACTIONS(1773),
- [anon_sym_default] = ACTIONS(1771),
- [anon_sym_type] = ACTIONS(1771),
- [anon_sym_as] = ACTIONS(1773),
- [anon_sym_namespace] = ACTIONS(1771),
- [anon_sym_LBRACE] = ACTIONS(1769),
- [anon_sym_COMMA] = ACTIONS(1775),
- [anon_sym_RBRACE] = ACTIONS(1769),
- [anon_sym_typeof] = ACTIONS(1771),
- [anon_sym_import] = ACTIONS(1771),
- [anon_sym_with] = ACTIONS(1771),
- [anon_sym_var] = ACTIONS(1771),
- [anon_sym_let] = ACTIONS(1771),
- [anon_sym_const] = ACTIONS(1771),
- [anon_sym_BANG] = ACTIONS(1771),
- [anon_sym_else] = ACTIONS(1771),
- [anon_sym_if] = ACTIONS(1771),
- [anon_sym_switch] = ACTIONS(1771),
- [anon_sym_for] = ACTIONS(1771),
- [anon_sym_LPAREN] = ACTIONS(1769),
- [anon_sym_await] = ACTIONS(1771),
- [anon_sym_in] = ACTIONS(1773),
- [anon_sym_while] = ACTIONS(1771),
- [anon_sym_do] = ACTIONS(1771),
- [anon_sym_try] = ACTIONS(1771),
- [anon_sym_break] = ACTIONS(1771),
- [anon_sym_continue] = ACTIONS(1771),
- [anon_sym_debugger] = ACTIONS(1771),
- [anon_sym_return] = ACTIONS(1771),
- [anon_sym_throw] = ACTIONS(1771),
- [anon_sym_SEMI] = ACTIONS(1769),
- [anon_sym_case] = ACTIONS(1771),
- [anon_sym_yield] = ACTIONS(1771),
- [anon_sym_LBRACK] = ACTIONS(1769),
- [sym_glimmer_opening_tag] = ACTIONS(1769),
- [anon_sym_GT] = ACTIONS(1773),
- [anon_sym_DOT] = ACTIONS(1773),
- [anon_sym_DQUOTE] = ACTIONS(1769),
- [anon_sym_SQUOTE] = ACTIONS(1769),
- [anon_sym_class] = ACTIONS(1771),
- [anon_sym_async] = ACTIONS(1771),
- [anon_sym_function] = ACTIONS(1771),
- [anon_sym_QMARK_DOT] = ACTIONS(1775),
- [anon_sym_new] = ACTIONS(1771),
- [anon_sym_using] = ACTIONS(1771),
- [anon_sym_AMP_AMP] = ACTIONS(1775),
- [anon_sym_PIPE_PIPE] = ACTIONS(1775),
- [anon_sym_GT_GT] = ACTIONS(1773),
- [anon_sym_GT_GT_GT] = ACTIONS(1775),
- [anon_sym_LT_LT] = ACTIONS(1775),
- [anon_sym_AMP] = ACTIONS(1773),
- [anon_sym_CARET] = ACTIONS(1775),
- [anon_sym_PIPE] = ACTIONS(1773),
- [anon_sym_PLUS] = ACTIONS(1771),
- [anon_sym_DASH] = ACTIONS(1771),
- [anon_sym_SLASH] = ACTIONS(1771),
- [anon_sym_PERCENT] = ACTIONS(1775),
- [anon_sym_STAR_STAR] = ACTIONS(1775),
- [anon_sym_LT] = ACTIONS(1771),
- [anon_sym_LT_EQ] = ACTIONS(1775),
- [anon_sym_EQ_EQ] = ACTIONS(1773),
- [anon_sym_EQ_EQ_EQ] = ACTIONS(1775),
- [anon_sym_BANG_EQ] = ACTIONS(1773),
- [anon_sym_BANG_EQ_EQ] = ACTIONS(1775),
- [anon_sym_GT_EQ] = ACTIONS(1775),
- [anon_sym_QMARK_QMARK] = ACTIONS(1775),
- [anon_sym_instanceof] = ACTIONS(1773),
- [anon_sym_TILDE] = ACTIONS(1769),
- [anon_sym_void] = ACTIONS(1771),
- [anon_sym_delete] = ACTIONS(1771),
- [anon_sym_PLUS_PLUS] = ACTIONS(1769),
- [anon_sym_DASH_DASH] = ACTIONS(1769),
- [sym_comment] = ACTIONS(5),
- [anon_sym_BQUOTE] = ACTIONS(1769),
- [sym_number] = ACTIONS(1769),
- [sym_private_property_identifier] = ACTIONS(1769),
- [sym_this] = ACTIONS(1771),
- [sym_super] = ACTIONS(1771),
- [sym_true] = ACTIONS(1771),
- [sym_false] = ACTIONS(1771),
- [sym_null] = ACTIONS(1771),
- [sym_undefined] = ACTIONS(1771),
- [anon_sym_AT] = ACTIONS(1769),
- [anon_sym_static] = ACTIONS(1771),
- [anon_sym_readonly] = ACTIONS(1771),
- [anon_sym_get] = ACTIONS(1771),
- [anon_sym_set] = ACTIONS(1771),
- [anon_sym_declare] = ACTIONS(1771),
- [anon_sym_public] = ACTIONS(1771),
- [anon_sym_private] = ACTIONS(1771),
- [anon_sym_protected] = ACTIONS(1771),
- [anon_sym_override] = ACTIONS(1771),
- [anon_sym_module] = ACTIONS(1771),
- [anon_sym_any] = ACTIONS(1771),
- [anon_sym_number] = ACTIONS(1771),
- [anon_sym_boolean] = ACTIONS(1771),
- [anon_sym_string] = ACTIONS(1771),
- [anon_sym_symbol] = ACTIONS(1771),
- [anon_sym_object] = ACTIONS(1771),
- [anon_sym_abstract] = ACTIONS(1771),
- [anon_sym_satisfies] = ACTIONS(1773),
- [anon_sym_interface] = ACTIONS(1771),
- [anon_sym_enum] = ACTIONS(1771),
- [sym__automatic_semicolon] = ACTIONS(1777),
- [sym__ternary_qmark] = ACTIONS(1775),
- [sym_html_comment] = ACTIONS(5),
- },
- [222] = {
- [ts_builtin_sym_end] = ACTIONS(1779),
- [sym_identifier] = ACTIONS(1781),
- [anon_sym_export] = ACTIONS(1781),
- [anon_sym_STAR] = ACTIONS(1781),
- [anon_sym_default] = ACTIONS(1781),
- [anon_sym_type] = ACTIONS(1781),
- [anon_sym_as] = ACTIONS(1781),
- [anon_sym_namespace] = ACTIONS(1781),
- [anon_sym_LBRACE] = ACTIONS(1779),
- [anon_sym_COMMA] = ACTIONS(1779),
- [anon_sym_RBRACE] = ACTIONS(1779),
- [anon_sym_typeof] = ACTIONS(1781),
- [anon_sym_import] = ACTIONS(1781),
- [anon_sym_with] = ACTIONS(1781),
- [anon_sym_var] = ACTIONS(1781),
- [anon_sym_let] = ACTIONS(1781),
- [anon_sym_const] = ACTIONS(1781),
- [anon_sym_BANG] = ACTIONS(1781),
- [anon_sym_else] = ACTIONS(1781),
- [anon_sym_if] = ACTIONS(1781),
- [anon_sym_switch] = ACTIONS(1781),
- [anon_sym_for] = ACTIONS(1781),
- [anon_sym_LPAREN] = ACTIONS(1779),
- [anon_sym_await] = ACTIONS(1781),
- [anon_sym_in] = ACTIONS(1781),
- [anon_sym_while] = ACTIONS(1781),
- [anon_sym_do] = ACTIONS(1781),
- [anon_sym_try] = ACTIONS(1781),
- [anon_sym_break] = ACTIONS(1781),
- [anon_sym_continue] = ACTIONS(1781),
- [anon_sym_debugger] = ACTIONS(1781),
- [anon_sym_return] = ACTIONS(1781),
- [anon_sym_throw] = ACTIONS(1781),
- [anon_sym_SEMI] = ACTIONS(1779),
- [anon_sym_case] = ACTIONS(1781),
- [anon_sym_yield] = ACTIONS(1781),
- [anon_sym_LBRACK] = ACTIONS(1779),
- [sym_glimmer_opening_tag] = ACTIONS(1779),
- [anon_sym_GT] = ACTIONS(1781),
- [anon_sym_DOT] = ACTIONS(1781),
- [anon_sym_DQUOTE] = ACTIONS(1779),
- [anon_sym_SQUOTE] = ACTIONS(1779),
- [anon_sym_class] = ACTIONS(1781),
- [anon_sym_async] = ACTIONS(1781),
- [anon_sym_function] = ACTIONS(1781),
- [anon_sym_QMARK_DOT] = ACTIONS(1779),
- [anon_sym_new] = ACTIONS(1781),
- [anon_sym_using] = ACTIONS(1781),
- [anon_sym_AMP_AMP] = ACTIONS(1779),
- [anon_sym_PIPE_PIPE] = ACTIONS(1779),
- [anon_sym_GT_GT] = ACTIONS(1781),
- [anon_sym_GT_GT_GT] = ACTIONS(1779),
- [anon_sym_LT_LT] = ACTIONS(1779),
- [anon_sym_AMP] = ACTIONS(1781),
- [anon_sym_CARET] = ACTIONS(1779),
- [anon_sym_PIPE] = ACTIONS(1781),
- [anon_sym_PLUS] = ACTIONS(1781),
- [anon_sym_DASH] = ACTIONS(1781),
- [anon_sym_SLASH] = ACTIONS(1781),
- [anon_sym_PERCENT] = ACTIONS(1779),
- [anon_sym_STAR_STAR] = ACTIONS(1779),
- [anon_sym_LT] = ACTIONS(1781),
- [anon_sym_LT_EQ] = ACTIONS(1779),
- [anon_sym_EQ_EQ] = ACTIONS(1781),
- [anon_sym_EQ_EQ_EQ] = ACTIONS(1779),
- [anon_sym_BANG_EQ] = ACTIONS(1781),
- [anon_sym_BANG_EQ_EQ] = ACTIONS(1779),
- [anon_sym_GT_EQ] = ACTIONS(1779),
- [anon_sym_QMARK_QMARK] = ACTIONS(1779),
- [anon_sym_instanceof] = ACTIONS(1781),
- [anon_sym_TILDE] = ACTIONS(1779),
- [anon_sym_void] = ACTIONS(1781),
- [anon_sym_delete] = ACTIONS(1781),
- [anon_sym_PLUS_PLUS] = ACTIONS(1779),
- [anon_sym_DASH_DASH] = ACTIONS(1779),
- [sym_comment] = ACTIONS(5),
- [anon_sym_BQUOTE] = ACTIONS(1779),
- [sym_number] = ACTIONS(1779),
- [sym_private_property_identifier] = ACTIONS(1779),
- [sym_this] = ACTIONS(1781),
- [sym_super] = ACTIONS(1781),
- [sym_true] = ACTIONS(1781),
- [sym_false] = ACTIONS(1781),
- [sym_null] = ACTIONS(1781),
- [sym_undefined] = ACTIONS(1781),
- [anon_sym_AT] = ACTIONS(1779),
- [anon_sym_static] = ACTIONS(1781),
- [anon_sym_readonly] = ACTIONS(1781),
- [anon_sym_get] = ACTIONS(1781),
- [anon_sym_set] = ACTIONS(1781),
- [anon_sym_declare] = ACTIONS(1781),
- [anon_sym_public] = ACTIONS(1781),
- [anon_sym_private] = ACTIONS(1781),
- [anon_sym_protected] = ACTIONS(1781),
- [anon_sym_override] = ACTIONS(1781),
- [anon_sym_module] = ACTIONS(1781),
- [anon_sym_any] = ACTIONS(1781),
- [anon_sym_number] = ACTIONS(1781),
- [anon_sym_boolean] = ACTIONS(1781),
- [anon_sym_string] = ACTIONS(1781),
- [anon_sym_symbol] = ACTIONS(1781),
- [anon_sym_object] = ACTIONS(1781),
- [anon_sym_abstract] = ACTIONS(1781),
- [anon_sym_satisfies] = ACTIONS(1781),
- [anon_sym_interface] = ACTIONS(1781),
- [anon_sym_enum] = ACTIONS(1781),
- [sym__automatic_semicolon] = ACTIONS(1779),
- [sym__ternary_qmark] = ACTIONS(1779),
- [sym_html_comment] = ACTIONS(5),
- },
- [223] = {
- [ts_builtin_sym_end] = ACTIONS(1783),
- [sym_identifier] = ACTIONS(1785),
- [anon_sym_export] = ACTIONS(1785),
- [anon_sym_STAR] = ACTIONS(1787),
- [anon_sym_default] = ACTIONS(1785),
- [anon_sym_type] = ACTIONS(1785),
- [anon_sym_as] = ACTIONS(1787),
- [anon_sym_namespace] = ACTIONS(1785),
- [anon_sym_LBRACE] = ACTIONS(1783),
- [anon_sym_COMMA] = ACTIONS(1789),
- [anon_sym_RBRACE] = ACTIONS(1783),
- [anon_sym_typeof] = ACTIONS(1785),
- [anon_sym_import] = ACTIONS(1785),
- [anon_sym_with] = ACTIONS(1785),
- [anon_sym_var] = ACTIONS(1785),
- [anon_sym_let] = ACTIONS(1785),
- [anon_sym_const] = ACTIONS(1785),
- [anon_sym_BANG] = ACTIONS(1785),
- [anon_sym_else] = ACTIONS(1785),
- [anon_sym_if] = ACTIONS(1785),
- [anon_sym_switch] = ACTIONS(1785),
- [anon_sym_for] = ACTIONS(1785),
- [anon_sym_LPAREN] = ACTIONS(1783),
- [anon_sym_await] = ACTIONS(1785),
- [anon_sym_in] = ACTIONS(1787),
- [anon_sym_while] = ACTIONS(1785),
- [anon_sym_do] = ACTIONS(1785),
- [anon_sym_try] = ACTIONS(1785),
- [anon_sym_break] = ACTIONS(1785),
- [anon_sym_continue] = ACTIONS(1785),
- [anon_sym_debugger] = ACTIONS(1785),
- [anon_sym_return] = ACTIONS(1785),
- [anon_sym_throw] = ACTIONS(1785),
- [anon_sym_SEMI] = ACTIONS(1783),
- [anon_sym_case] = ACTIONS(1785),
- [anon_sym_yield] = ACTIONS(1785),
- [anon_sym_LBRACK] = ACTIONS(1783),
- [sym_glimmer_opening_tag] = ACTIONS(1783),
- [anon_sym_GT] = ACTIONS(1787),
- [anon_sym_DOT] = ACTIONS(1787),
- [anon_sym_DQUOTE] = ACTIONS(1783),
- [anon_sym_SQUOTE] = ACTIONS(1783),
- [anon_sym_class] = ACTIONS(1785),
- [anon_sym_async] = ACTIONS(1785),
- [anon_sym_function] = ACTIONS(1785),
- [anon_sym_QMARK_DOT] = ACTIONS(1789),
- [anon_sym_new] = ACTIONS(1785),
- [anon_sym_using] = ACTIONS(1785),
- [anon_sym_AMP_AMP] = ACTIONS(1789),
- [anon_sym_PIPE_PIPE] = ACTIONS(1789),
- [anon_sym_GT_GT] = ACTIONS(1787),
- [anon_sym_GT_GT_GT] = ACTIONS(1789),
- [anon_sym_LT_LT] = ACTIONS(1789),
- [anon_sym_AMP] = ACTIONS(1787),
- [anon_sym_CARET] = ACTIONS(1789),
- [anon_sym_PIPE] = ACTIONS(1787),
- [anon_sym_PLUS] = ACTIONS(1785),
- [anon_sym_DASH] = ACTIONS(1785),
- [anon_sym_SLASH] = ACTIONS(1785),
- [anon_sym_PERCENT] = ACTIONS(1789),
- [anon_sym_STAR_STAR] = ACTIONS(1789),
- [anon_sym_LT] = ACTIONS(1785),
- [anon_sym_LT_EQ] = ACTIONS(1789),
- [anon_sym_EQ_EQ] = ACTIONS(1787),
- [anon_sym_EQ_EQ_EQ] = ACTIONS(1789),
- [anon_sym_BANG_EQ] = ACTIONS(1787),
- [anon_sym_BANG_EQ_EQ] = ACTIONS(1789),
- [anon_sym_GT_EQ] = ACTIONS(1789),
- [anon_sym_QMARK_QMARK] = ACTIONS(1789),
- [anon_sym_instanceof] = ACTIONS(1787),
- [anon_sym_TILDE] = ACTIONS(1783),
- [anon_sym_void] = ACTIONS(1785),
- [anon_sym_delete] = ACTIONS(1785),
- [anon_sym_PLUS_PLUS] = ACTIONS(1783),
- [anon_sym_DASH_DASH] = ACTIONS(1783),
- [sym_comment] = ACTIONS(5),
- [anon_sym_BQUOTE] = ACTIONS(1783),
- [sym_number] = ACTIONS(1783),
- [sym_private_property_identifier] = ACTIONS(1783),
- [sym_this] = ACTIONS(1785),
- [sym_super] = ACTIONS(1785),
- [sym_true] = ACTIONS(1785),
- [sym_false] = ACTIONS(1785),
- [sym_null] = ACTIONS(1785),
- [sym_undefined] = ACTIONS(1785),
- [anon_sym_AT] = ACTIONS(1783),
- [anon_sym_static] = ACTIONS(1785),
- [anon_sym_readonly] = ACTIONS(1785),
- [anon_sym_get] = ACTIONS(1785),
- [anon_sym_set] = ACTIONS(1785),
- [anon_sym_declare] = ACTIONS(1785),
- [anon_sym_public] = ACTIONS(1785),
- [anon_sym_private] = ACTIONS(1785),
- [anon_sym_protected] = ACTIONS(1785),
- [anon_sym_override] = ACTIONS(1785),
- [anon_sym_module] = ACTIONS(1785),
- [anon_sym_any] = ACTIONS(1785),
- [anon_sym_number] = ACTIONS(1785),
- [anon_sym_boolean] = ACTIONS(1785),
- [anon_sym_string] = ACTIONS(1785),
- [anon_sym_symbol] = ACTIONS(1785),
- [anon_sym_object] = ACTIONS(1785),
- [anon_sym_abstract] = ACTIONS(1785),
- [anon_sym_satisfies] = ACTIONS(1787),
- [anon_sym_interface] = ACTIONS(1785),
- [anon_sym_enum] = ACTIONS(1785),
- [sym__automatic_semicolon] = ACTIONS(1789),
- [sym__ternary_qmark] = ACTIONS(1789),
- [sym_html_comment] = ACTIONS(5),
- },
- [224] = {
- [sym_import] = STATE(3334),
- [sym_parenthesized_expression] = STATE(1179),
- [sym_expression] = STATE(2405),
- [sym_primary_expression] = STATE(1468),
- [sym_yield_expression] = STATE(1634),
- [sym_object] = STATE(1650),
- [sym_object_pattern] = STATE(5854),
- [sym_array] = STATE(1650),
- [sym_array_pattern] = STATE(5854),
- [sym_glimmer_template] = STATE(1634),
- [sym_jsx_element] = STATE(1634),
- [sym_jsx_opening_element] = STATE(3026),
- [sym_jsx_self_closing_element] = STATE(1634),
- [sym_class] = STATE(1650),
- [sym_function_expression] = STATE(1650),
- [sym_generator_function] = STATE(1650),
- [sym_arrow_function] = STATE(1650),
- [sym__call_signature] = STATE(5619),
- [sym_call_expression] = STATE(1650),
- [sym_new_expression] = STATE(1634),
- [sym_await_expression] = STATE(1634),
- [sym_member_expression] = STATE(1179),
- [sym_subscript_expression] = STATE(1179),
- [sym_assignment_expression] = STATE(1634),
- [sym__augmented_assignment_lhs] = STATE(2878),
- [sym_augmented_assignment_expression] = STATE(1634),
- [sym__destructuring_pattern] = STATE(5854),
- [sym_ternary_expression] = STATE(1634),
- [sym_binary_expression] = STATE(1634),
- [sym_unary_expression] = STATE(1634),
- [sym_update_expression] = STATE(1634),
- [sym_string] = STATE(1650),
- [sym_template_string] = STATE(1650),
- [sym_regex] = STATE(1650),
- [sym_meta_property] = STATE(1650),
- [sym_decorator] = STATE(1244),
- [sym_formal_parameters] = STATE(3742),
- [sym_non_null_expression] = STATE(1179),
- [sym_as_expression] = STATE(1634),
- [sym_satisfies_expression] = STATE(1634),
- [sym_instantiation_expression] = STATE(1634),
- [sym_internal_module] = STATE(1634),
- [sym_type_parameters] = STATE(5349),
- [aux_sym_export_statement_repeat1] = STATE(4458),
- [sym_identifier] = ACTIONS(837),
- [anon_sym_export] = ACTIONS(839),
- [anon_sym_type] = ACTIONS(839),
- [anon_sym_namespace] = ACTIONS(843),
- [anon_sym_LBRACE] = ACTIONS(845),
- [anon_sym_COMMA] = ACTIONS(1650),
- [anon_sym_typeof] = ACTIONS(187),
- [anon_sym_import] = ACTIONS(133),
- [anon_sym_let] = ACTIONS(839),
- [anon_sym_BANG] = ACTIONS(183),
- [anon_sym_LPAREN] = ACTIONS(815),
- [anon_sym_RPAREN] = ACTIONS(1650),
- [anon_sym_await] = ACTIONS(142),
- [anon_sym_yield] = ACTIONS(144),
- [anon_sym_LBRACK] = ACTIONS(1650),
- [anon_sym_RBRACK] = ACTIONS(1650),
- [sym_glimmer_opening_tag] = ACTIONS(148),
- [anon_sym_GT] = ACTIONS(1650),
- [anon_sym_DQUOTE] = ACTIONS(150),
- [anon_sym_SQUOTE] = ACTIONS(152),
- [anon_sym_class] = ACTIONS(154),
- [anon_sym_async] = ACTIONS(851),
- [anon_sym_function] = ACTIONS(158),
- [anon_sym_new] = ACTIONS(853),
- [anon_sym_using] = ACTIONS(166),
- [anon_sym_AMP] = ACTIONS(1650),
- [anon_sym_PIPE] = ACTIONS(1650),
- [anon_sym_PLUS] = ACTIONS(187),
- [anon_sym_DASH] = ACTIONS(187),
- [anon_sym_SLASH] = ACTIONS(646),
- [anon_sym_LT] = ACTIONS(181),
- [anon_sym_TILDE] = ACTIONS(183),
- [anon_sym_void] = ACTIONS(187),
- [anon_sym_delete] = ACTIONS(187),
- [anon_sym_PLUS_PLUS] = ACTIONS(719),
- [anon_sym_DASH_DASH] = ACTIONS(719),
- [sym_comment] = ACTIONS(5),
- [anon_sym_BQUOTE] = ACTIONS(825),
- [sym_number] = ACTIONS(787),
- [sym_private_property_identifier] = ACTIONS(196),
- [sym_this] = ACTIONS(200),
- [sym_super] = ACTIONS(200),
- [sym_true] = ACTIONS(200),
- [sym_false] = ACTIONS(200),
- [sym_null] = ACTIONS(200),
- [sym_undefined] = ACTIONS(827),
- [anon_sym_AT] = ACTIONS(99),
- [anon_sym_static] = ACTIONS(839),
- [anon_sym_readonly] = ACTIONS(839),
- [anon_sym_get] = ACTIONS(839),
- [anon_sym_set] = ACTIONS(839),
- [anon_sym_declare] = ACTIONS(839),
- [anon_sym_public] = ACTIONS(839),
- [anon_sym_private] = ACTIONS(839),
- [anon_sym_protected] = ACTIONS(839),
- [anon_sym_override] = ACTIONS(839),
- [anon_sym_module] = ACTIONS(839),
- [anon_sym_any] = ACTIONS(839),
- [anon_sym_number] = ACTIONS(839),
- [anon_sym_boolean] = ACTIONS(839),
- [anon_sym_string] = ACTIONS(839),
- [anon_sym_symbol] = ACTIONS(839),
- [anon_sym_object] = ACTIONS(839),
- [anon_sym_extends] = ACTIONS(1652),
- [sym_html_comment] = ACTIONS(5),
- },
- [225] = {
- [sym_import] = STATE(3334),
- [sym_parenthesized_expression] = STATE(1251),
- [sym_expression] = STATE(1828),
- [sym_primary_expression] = STATE(1468),
- [sym_yield_expression] = STATE(1634),
- [sym_object] = STATE(1650),
- [sym_object_pattern] = STATE(3610),
- [sym_assignment_pattern] = STATE(5512),
- [sym_array] = STATE(1650),
- [sym_array_pattern] = STATE(3610),
- [sym_glimmer_template] = STATE(1634),
- [sym_jsx_element] = STATE(1634),
- [sym_jsx_opening_element] = STATE(3026),
- [sym_jsx_self_closing_element] = STATE(1634),
- [sym_class] = STATE(1650),
- [sym_function_expression] = STATE(1650),
- [sym_generator_function] = STATE(1650),
- [sym_arrow_function] = STATE(1650),
- [sym__call_signature] = STATE(5828),
- [sym_call_expression] = STATE(1650),
- [sym_new_expression] = STATE(1634),
- [sym_await_expression] = STATE(1634),
- [sym_member_expression] = STATE(1230),
- [sym_subscript_expression] = STATE(1230),
- [sym_assignment_expression] = STATE(1634),
- [sym__augmented_assignment_lhs] = STATE(2900),
- [sym_augmented_assignment_expression] = STATE(1634),
- [sym__destructuring_pattern] = STATE(3610),
- [sym_spread_element] = STATE(4979),
- [sym_ternary_expression] = STATE(1634),
- [sym_binary_expression] = STATE(1634),
- [sym_unary_expression] = STATE(1634),
- [sym_update_expression] = STATE(1634),
- [sym_string] = STATE(1650),
- [sym_template_string] = STATE(1650),
- [sym_regex] = STATE(1650),
- [sym_meta_property] = STATE(1650),
- [sym_decorator] = STATE(1244),
- [sym_formal_parameters] = STATE(3742),
- [sym_pattern] = STATE(5128),
- [sym_rest_pattern] = STATE(3700),
- [sym_non_null_expression] = STATE(1230),
- [sym_as_expression] = STATE(1634),
- [sym_satisfies_expression] = STATE(1634),
- [sym_instantiation_expression] = STATE(1634),
- [sym_internal_module] = STATE(1634),
- [sym_type_parameters] = STATE(5349),
- [aux_sym_export_statement_repeat1] = STATE(4458),
- [sym_identifier] = ACTIONS(1618),
- [anon_sym_export] = ACTIONS(610),
- [anon_sym_type] = ACTIONS(610),
- [anon_sym_namespace] = ACTIONS(614),
- [anon_sym_LBRACE] = ACTIONS(845),
- [anon_sym_COMMA] = ACTIONS(1744),
- [anon_sym_typeof] = ACTIONS(650),
- [anon_sym_import] = ACTIONS(133),
- [anon_sym_let] = ACTIONS(610),
- [anon_sym_BANG] = ACTIONS(622),
- [anon_sym_LPAREN] = ACTIONS(815),
- [anon_sym_await] = ACTIONS(624),
- [anon_sym_yield] = ACTIONS(626),
- [anon_sym_LBRACK] = ACTIONS(849),
- [anon_sym_RBRACK] = ACTIONS(1791),
- [sym_glimmer_opening_tag] = ACTIONS(148),
- [anon_sym_DQUOTE] = ACTIONS(150),
- [anon_sym_SQUOTE] = ACTIONS(152),
- [anon_sym_class] = ACTIONS(154),
- [anon_sym_async] = ACTIONS(632),
- [anon_sym_function] = ACTIONS(158),
- [anon_sym_new] = ACTIONS(1620),
- [anon_sym_using] = ACTIONS(636),
- [anon_sym_DOT_DOT_DOT] = ACTIONS(253),
- [anon_sym_PLUS] = ACTIONS(650),
- [anon_sym_DASH] = ACTIONS(650),
- [anon_sym_SLASH] = ACTIONS(646),
- [anon_sym_LT] = ACTIONS(181),
- [anon_sym_TILDE] = ACTIONS(622),
- [anon_sym_void] = ACTIONS(650),
- [anon_sym_delete] = ACTIONS(650),
- [anon_sym_PLUS_PLUS] = ACTIONS(652),
- [anon_sym_DASH_DASH] = ACTIONS(652),
- [sym_comment] = ACTIONS(5),
- [anon_sym_BQUOTE] = ACTIONS(825),
- [sym_number] = ACTIONS(787),
- [sym_private_property_identifier] = ACTIONS(654),
- [sym_this] = ACTIONS(200),
- [sym_super] = ACTIONS(200),
- [sym_true] = ACTIONS(200),
- [sym_false] = ACTIONS(200),
- [sym_null] = ACTIONS(200),
- [sym_undefined] = ACTIONS(1624),
- [anon_sym_AT] = ACTIONS(99),
- [anon_sym_static] = ACTIONS(610),
- [anon_sym_readonly] = ACTIONS(610),
- [anon_sym_get] = ACTIONS(610),
- [anon_sym_set] = ACTIONS(610),
- [anon_sym_declare] = ACTIONS(610),
- [anon_sym_public] = ACTIONS(610),
- [anon_sym_private] = ACTIONS(610),
- [anon_sym_protected] = ACTIONS(610),
- [anon_sym_override] = ACTIONS(610),
- [anon_sym_module] = ACTIONS(610),
- [anon_sym_any] = ACTIONS(610),
- [anon_sym_number] = ACTIONS(610),
- [anon_sym_boolean] = ACTIONS(610),
- [anon_sym_string] = ACTIONS(610),
- [anon_sym_symbol] = ACTIONS(610),
- [anon_sym_object] = ACTIONS(610),
- [sym_html_comment] = ACTIONS(5),
- },
- [226] = {
- [ts_builtin_sym_end] = ACTIONS(1720),
- [sym_identifier] = ACTIONS(1722),
- [anon_sym_export] = ACTIONS(1722),
- [anon_sym_STAR] = ACTIONS(1722),
- [anon_sym_default] = ACTIONS(1722),
- [anon_sym_type] = ACTIONS(1722),
- [anon_sym_as] = ACTIONS(1722),
- [anon_sym_namespace] = ACTIONS(1722),
- [anon_sym_LBRACE] = ACTIONS(1720),
- [anon_sym_COMMA] = ACTIONS(1720),
- [anon_sym_RBRACE] = ACTIONS(1720),
- [anon_sym_typeof] = ACTIONS(1722),
- [anon_sym_import] = ACTIONS(1722),
- [anon_sym_with] = ACTIONS(1722),
- [anon_sym_var] = ACTIONS(1722),
- [anon_sym_let] = ACTIONS(1722),
- [anon_sym_const] = ACTIONS(1722),
- [anon_sym_BANG] = ACTIONS(1722),
- [anon_sym_else] = ACTIONS(1722),
- [anon_sym_if] = ACTIONS(1722),
- [anon_sym_switch] = ACTIONS(1722),
- [anon_sym_for] = ACTIONS(1722),
- [anon_sym_LPAREN] = ACTIONS(1720),
- [anon_sym_await] = ACTIONS(1722),
- [anon_sym_in] = ACTIONS(1722),
- [anon_sym_while] = ACTIONS(1722),
- [anon_sym_do] = ACTIONS(1722),
- [anon_sym_try] = ACTIONS(1722),
- [anon_sym_break] = ACTIONS(1722),
- [anon_sym_continue] = ACTIONS(1722),
- [anon_sym_debugger] = ACTIONS(1722),
- [anon_sym_return] = ACTIONS(1722),
- [anon_sym_throw] = ACTIONS(1722),
- [anon_sym_SEMI] = ACTIONS(1720),
- [anon_sym_case] = ACTIONS(1722),
- [anon_sym_yield] = ACTIONS(1722),
- [anon_sym_LBRACK] = ACTIONS(1720),
- [sym_glimmer_opening_tag] = ACTIONS(1720),
- [anon_sym_GT] = ACTIONS(1722),
- [anon_sym_DOT] = ACTIONS(1722),
- [anon_sym_DQUOTE] = ACTIONS(1720),
- [anon_sym_SQUOTE] = ACTIONS(1720),
- [anon_sym_class] = ACTIONS(1722),
- [anon_sym_async] = ACTIONS(1722),
- [anon_sym_function] = ACTIONS(1722),
- [anon_sym_QMARK_DOT] = ACTIONS(1720),
- [anon_sym_new] = ACTIONS(1722),
- [anon_sym_using] = ACTIONS(1722),
- [anon_sym_AMP_AMP] = ACTIONS(1720),
- [anon_sym_PIPE_PIPE] = ACTIONS(1720),
- [anon_sym_GT_GT] = ACTIONS(1722),
- [anon_sym_GT_GT_GT] = ACTIONS(1720),
- [anon_sym_LT_LT] = ACTIONS(1720),
- [anon_sym_AMP] = ACTIONS(1722),
- [anon_sym_CARET] = ACTIONS(1720),
- [anon_sym_PIPE] = ACTIONS(1722),
- [anon_sym_PLUS] = ACTIONS(1722),
- [anon_sym_DASH] = ACTIONS(1722),
- [anon_sym_SLASH] = ACTIONS(1722),
- [anon_sym_PERCENT] = ACTIONS(1720),
- [anon_sym_STAR_STAR] = ACTIONS(1720),
- [anon_sym_LT] = ACTIONS(1722),
- [anon_sym_LT_EQ] = ACTIONS(1720),
- [anon_sym_EQ_EQ] = ACTIONS(1722),
- [anon_sym_EQ_EQ_EQ] = ACTIONS(1720),
- [anon_sym_BANG_EQ] = ACTIONS(1722),
- [anon_sym_BANG_EQ_EQ] = ACTIONS(1720),
- [anon_sym_GT_EQ] = ACTIONS(1720),
- [anon_sym_QMARK_QMARK] = ACTIONS(1720),
- [anon_sym_instanceof] = ACTIONS(1722),
- [anon_sym_TILDE] = ACTIONS(1720),
- [anon_sym_void] = ACTIONS(1722),
- [anon_sym_delete] = ACTIONS(1722),
- [anon_sym_PLUS_PLUS] = ACTIONS(1720),
- [anon_sym_DASH_DASH] = ACTIONS(1720),
- [sym_comment] = ACTIONS(5),
- [anon_sym_BQUOTE] = ACTIONS(1720),
- [sym_number] = ACTIONS(1720),
- [sym_private_property_identifier] = ACTIONS(1720),
- [sym_this] = ACTIONS(1722),
- [sym_super] = ACTIONS(1722),
- [sym_true] = ACTIONS(1722),
- [sym_false] = ACTIONS(1722),
- [sym_null] = ACTIONS(1722),
- [sym_undefined] = ACTIONS(1722),
- [anon_sym_AT] = ACTIONS(1720),
- [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_override] = 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),
- [anon_sym_object] = ACTIONS(1722),
- [anon_sym_abstract] = ACTIONS(1722),
- [anon_sym_satisfies] = ACTIONS(1722),
- [anon_sym_interface] = ACTIONS(1722),
- [anon_sym_enum] = ACTIONS(1722),
- [sym__automatic_semicolon] = ACTIONS(1795),
- [sym__ternary_qmark] = ACTIONS(1720),
- [sym_html_comment] = ACTIONS(5),
- },
- [227] = {
- [sym_import] = STATE(3334),
- [sym_parenthesized_expression] = STATE(1251),
- [sym_expression] = STATE(1828),
- [sym_primary_expression] = STATE(1468),
- [sym_yield_expression] = STATE(1634),
- [sym_object] = STATE(1650),
- [sym_object_pattern] = STATE(3610),
- [sym_assignment_pattern] = STATE(5512),
- [sym_array] = STATE(1650),
- [sym_array_pattern] = STATE(3610),
- [sym_glimmer_template] = STATE(1634),
- [sym_jsx_element] = STATE(1634),
- [sym_jsx_opening_element] = STATE(3026),
- [sym_jsx_self_closing_element] = STATE(1634),
- [sym_class] = STATE(1650),
- [sym_function_expression] = STATE(1650),
- [sym_generator_function] = STATE(1650),
- [sym_arrow_function] = STATE(1650),
- [sym__call_signature] = STATE(5828),
- [sym_call_expression] = STATE(1650),
- [sym_new_expression] = STATE(1634),
- [sym_await_expression] = STATE(1634),
- [sym_member_expression] = STATE(1230),
- [sym_subscript_expression] = STATE(1230),
- [sym_assignment_expression] = STATE(1634),
- [sym__augmented_assignment_lhs] = STATE(2900),
- [sym_augmented_assignment_expression] = STATE(1634),
- [sym__destructuring_pattern] = STATE(3610),
- [sym_spread_element] = STATE(4979),
- [sym_ternary_expression] = STATE(1634),
- [sym_binary_expression] = STATE(1634),
- [sym_unary_expression] = STATE(1634),
- [sym_update_expression] = STATE(1634),
- [sym_string] = STATE(1650),
- [sym_template_string] = STATE(1650),
- [sym_regex] = STATE(1650),
- [sym_meta_property] = STATE(1650),
- [sym_decorator] = STATE(1244),
- [sym_formal_parameters] = STATE(3742),
- [sym_pattern] = STATE(5128),
- [sym_rest_pattern] = STATE(3700),
- [sym_non_null_expression] = STATE(1230),
- [sym_as_expression] = STATE(1634),
- [sym_satisfies_expression] = STATE(1634),
- [sym_instantiation_expression] = STATE(1634),
- [sym_internal_module] = STATE(1634),
- [sym_type_parameters] = STATE(5349),
- [aux_sym_export_statement_repeat1] = STATE(4458),
- [sym_identifier] = ACTIONS(1618),
- [anon_sym_export] = ACTIONS(610),
- [anon_sym_type] = ACTIONS(610),
- [anon_sym_namespace] = ACTIONS(614),
- [anon_sym_LBRACE] = ACTIONS(845),
- [anon_sym_COMMA] = ACTIONS(1744),
- [anon_sym_typeof] = ACTIONS(650),
- [anon_sym_import] = ACTIONS(133),
- [anon_sym_let] = ACTIONS(610),
- [anon_sym_BANG] = ACTIONS(622),
- [anon_sym_LPAREN] = ACTIONS(815),
- [anon_sym_await] = ACTIONS(624),
- [anon_sym_yield] = ACTIONS(626),
- [anon_sym_LBRACK] = ACTIONS(849),
- [anon_sym_RBRACK] = ACTIONS(1744),
- [sym_glimmer_opening_tag] = ACTIONS(148),
- [anon_sym_DQUOTE] = ACTIONS(150),
- [anon_sym_SQUOTE] = ACTIONS(152),
- [anon_sym_class] = ACTIONS(154),
- [anon_sym_async] = ACTIONS(632),
- [anon_sym_function] = ACTIONS(158),
- [anon_sym_new] = ACTIONS(1620),
- [anon_sym_using] = ACTIONS(636),
- [anon_sym_DOT_DOT_DOT] = ACTIONS(253),
- [anon_sym_PLUS] = ACTIONS(650),
- [anon_sym_DASH] = ACTIONS(650),
- [anon_sym_SLASH] = ACTIONS(646),
- [anon_sym_LT] = ACTIONS(181),
- [anon_sym_TILDE] = ACTIONS(622),
- [anon_sym_void] = ACTIONS(650),
- [anon_sym_delete] = ACTIONS(650),
- [anon_sym_PLUS_PLUS] = ACTIONS(652),
- [anon_sym_DASH_DASH] = ACTIONS(652),
- [sym_comment] = ACTIONS(5),
- [anon_sym_BQUOTE] = ACTIONS(825),
- [sym_number] = ACTIONS(787),
- [sym_private_property_identifier] = ACTIONS(654),
- [sym_this] = ACTIONS(200),
- [sym_super] = ACTIONS(200),
- [sym_true] = ACTIONS(200),
- [sym_false] = ACTIONS(200),
- [sym_null] = ACTIONS(200),
- [sym_undefined] = ACTIONS(1624),
- [anon_sym_AT] = ACTIONS(99),
- [anon_sym_static] = ACTIONS(610),
- [anon_sym_readonly] = ACTIONS(610),
- [anon_sym_get] = ACTIONS(610),
- [anon_sym_set] = ACTIONS(610),
- [anon_sym_declare] = ACTIONS(610),
- [anon_sym_public] = ACTIONS(610),
- [anon_sym_private] = ACTIONS(610),
- [anon_sym_protected] = ACTIONS(610),
- [anon_sym_override] = ACTIONS(610),
- [anon_sym_module] = ACTIONS(610),
- [anon_sym_any] = ACTIONS(610),
- [anon_sym_number] = ACTIONS(610),
- [anon_sym_boolean] = ACTIONS(610),
- [anon_sym_string] = ACTIONS(610),
- [anon_sym_symbol] = ACTIONS(610),
- [anon_sym_object] = ACTIONS(610),
- [sym_html_comment] = ACTIONS(5),
- },
- [228] = {
- [ts_builtin_sym_end] = ACTIONS(1797),
- [sym_identifier] = ACTIONS(1799),
- [anon_sym_export] = ACTIONS(1799),
- [anon_sym_STAR] = ACTIONS(1799),
- [anon_sym_default] = ACTIONS(1799),
- [anon_sym_type] = ACTIONS(1799),
- [anon_sym_as] = ACTIONS(1799),
- [anon_sym_namespace] = ACTIONS(1799),
- [anon_sym_LBRACE] = ACTIONS(1797),
- [anon_sym_COMMA] = ACTIONS(1797),
- [anon_sym_RBRACE] = ACTIONS(1797),
- [anon_sym_typeof] = ACTIONS(1799),
- [anon_sym_import] = ACTIONS(1799),
- [anon_sym_with] = ACTIONS(1799),
- [anon_sym_var] = ACTIONS(1799),
- [anon_sym_let] = ACTIONS(1799),
- [anon_sym_const] = ACTIONS(1799),
- [anon_sym_BANG] = ACTIONS(1799),
- [anon_sym_else] = ACTIONS(1799),
- [anon_sym_if] = ACTIONS(1799),
- [anon_sym_switch] = ACTIONS(1799),
- [anon_sym_for] = ACTIONS(1799),
- [anon_sym_LPAREN] = ACTIONS(1797),
- [anon_sym_await] = ACTIONS(1799),
- [anon_sym_in] = ACTIONS(1799),
- [anon_sym_while] = ACTIONS(1799),
- [anon_sym_do] = ACTIONS(1799),
- [anon_sym_try] = ACTIONS(1799),
- [anon_sym_break] = ACTIONS(1799),
- [anon_sym_continue] = ACTIONS(1799),
- [anon_sym_debugger] = ACTIONS(1799),
- [anon_sym_return] = ACTIONS(1799),
- [anon_sym_throw] = ACTIONS(1799),
- [anon_sym_SEMI] = ACTIONS(1797),
- [anon_sym_case] = ACTIONS(1799),
- [anon_sym_yield] = ACTIONS(1799),
- [anon_sym_LBRACK] = ACTIONS(1797),
- [sym_glimmer_opening_tag] = ACTIONS(1797),
- [anon_sym_GT] = ACTIONS(1799),
- [anon_sym_DOT] = ACTIONS(1799),
- [anon_sym_DQUOTE] = ACTIONS(1797),
- [anon_sym_SQUOTE] = ACTIONS(1797),
- [anon_sym_class] = ACTIONS(1799),
- [anon_sym_async] = ACTIONS(1799),
- [anon_sym_function] = ACTIONS(1799),
- [anon_sym_QMARK_DOT] = ACTIONS(1797),
- [anon_sym_new] = ACTIONS(1799),
- [anon_sym_using] = ACTIONS(1799),
- [anon_sym_AMP_AMP] = ACTIONS(1797),
- [anon_sym_PIPE_PIPE] = ACTIONS(1797),
- [anon_sym_GT_GT] = ACTIONS(1799),
- [anon_sym_GT_GT_GT] = ACTIONS(1797),
- [anon_sym_LT_LT] = ACTIONS(1797),
- [anon_sym_AMP] = ACTIONS(1799),
- [anon_sym_CARET] = ACTIONS(1797),
- [anon_sym_PIPE] = ACTIONS(1799),
- [anon_sym_PLUS] = ACTIONS(1799),
- [anon_sym_DASH] = ACTIONS(1799),
- [anon_sym_SLASH] = ACTIONS(1799),
- [anon_sym_PERCENT] = ACTIONS(1797),
- [anon_sym_STAR_STAR] = ACTIONS(1797),
- [anon_sym_LT] = ACTIONS(1799),
- [anon_sym_LT_EQ] = ACTIONS(1797),
- [anon_sym_EQ_EQ] = ACTIONS(1799),
- [anon_sym_EQ_EQ_EQ] = ACTIONS(1797),
- [anon_sym_BANG_EQ] = ACTIONS(1799),
- [anon_sym_BANG_EQ_EQ] = ACTIONS(1797),
- [anon_sym_GT_EQ] = ACTIONS(1797),
- [anon_sym_QMARK_QMARK] = ACTIONS(1797),
- [anon_sym_instanceof] = ACTIONS(1799),
- [anon_sym_TILDE] = ACTIONS(1797),
- [anon_sym_void] = ACTIONS(1799),
- [anon_sym_delete] = ACTIONS(1799),
- [anon_sym_PLUS_PLUS] = ACTIONS(1797),
- [anon_sym_DASH_DASH] = ACTIONS(1797),
- [sym_comment] = ACTIONS(5),
- [anon_sym_BQUOTE] = ACTIONS(1797),
- [sym_number] = ACTIONS(1797),
- [sym_private_property_identifier] = ACTIONS(1797),
- [sym_this] = ACTIONS(1799),
- [sym_super] = ACTIONS(1799),
- [sym_true] = ACTIONS(1799),
- [sym_false] = ACTIONS(1799),
- [sym_null] = ACTIONS(1799),
- [sym_undefined] = ACTIONS(1799),
- [anon_sym_AT] = ACTIONS(1797),
- [anon_sym_static] = ACTIONS(1799),
- [anon_sym_readonly] = ACTIONS(1799),
- [anon_sym_get] = ACTIONS(1799),
- [anon_sym_set] = ACTIONS(1799),
- [anon_sym_declare] = ACTIONS(1799),
- [anon_sym_public] = ACTIONS(1799),
- [anon_sym_private] = ACTIONS(1799),
- [anon_sym_protected] = ACTIONS(1799),
- [anon_sym_override] = ACTIONS(1799),
- [anon_sym_module] = ACTIONS(1799),
- [anon_sym_any] = ACTIONS(1799),
- [anon_sym_number] = ACTIONS(1799),
- [anon_sym_boolean] = ACTIONS(1799),
- [anon_sym_string] = ACTIONS(1799),
- [anon_sym_symbol] = ACTIONS(1799),
- [anon_sym_object] = ACTIONS(1799),
- [anon_sym_abstract] = ACTIONS(1799),
- [anon_sym_satisfies] = ACTIONS(1799),
- [anon_sym_interface] = ACTIONS(1799),
- [anon_sym_enum] = ACTIONS(1799),
- [sym__automatic_semicolon] = ACTIONS(1797),
- [sym__ternary_qmark] = ACTIONS(1797),
- [sym_html_comment] = ACTIONS(5),
- },
- [229] = {
- [ts_builtin_sym_end] = ACTIONS(1801),
- [sym_identifier] = ACTIONS(1803),
- [anon_sym_export] = ACTIONS(1803),
- [anon_sym_STAR] = ACTIONS(1805),
- [anon_sym_default] = ACTIONS(1803),
- [anon_sym_type] = ACTIONS(1803),
- [anon_sym_as] = ACTIONS(1805),
- [anon_sym_namespace] = ACTIONS(1803),
- [anon_sym_LBRACE] = ACTIONS(1801),
- [anon_sym_COMMA] = ACTIONS(1807),
- [anon_sym_RBRACE] = ACTIONS(1801),
- [anon_sym_typeof] = ACTIONS(1803),
- [anon_sym_import] = ACTIONS(1803),
- [anon_sym_with] = ACTIONS(1803),
- [anon_sym_var] = ACTIONS(1803),
- [anon_sym_let] = ACTIONS(1803),
- [anon_sym_const] = ACTIONS(1803),
- [anon_sym_BANG] = ACTIONS(1803),
- [anon_sym_else] = ACTIONS(1803),
- [anon_sym_if] = ACTIONS(1803),
- [anon_sym_switch] = ACTIONS(1803),
- [anon_sym_for] = ACTIONS(1803),
- [anon_sym_LPAREN] = ACTIONS(1801),
- [anon_sym_await] = ACTIONS(1803),
- [anon_sym_in] = ACTIONS(1805),
- [anon_sym_while] = ACTIONS(1803),
- [anon_sym_do] = ACTIONS(1803),
- [anon_sym_try] = ACTIONS(1803),
- [anon_sym_break] = ACTIONS(1803),
- [anon_sym_continue] = ACTIONS(1803),
- [anon_sym_debugger] = ACTIONS(1803),
- [anon_sym_return] = ACTIONS(1803),
- [anon_sym_throw] = ACTIONS(1803),
- [anon_sym_SEMI] = ACTIONS(1801),
- [anon_sym_case] = ACTIONS(1803),
- [anon_sym_yield] = ACTIONS(1803),
- [anon_sym_LBRACK] = ACTIONS(1801),
- [sym_glimmer_opening_tag] = ACTIONS(1801),
- [anon_sym_GT] = ACTIONS(1805),
- [anon_sym_DOT] = ACTIONS(1805),
- [anon_sym_DQUOTE] = ACTIONS(1801),
- [anon_sym_SQUOTE] = ACTIONS(1801),
- [anon_sym_class] = ACTIONS(1803),
- [anon_sym_async] = ACTIONS(1803),
- [anon_sym_function] = ACTIONS(1803),
- [anon_sym_QMARK_DOT] = ACTIONS(1807),
- [anon_sym_new] = ACTIONS(1803),
- [anon_sym_using] = ACTIONS(1803),
- [anon_sym_AMP_AMP] = ACTIONS(1807),
- [anon_sym_PIPE_PIPE] = ACTIONS(1807),
- [anon_sym_GT_GT] = ACTIONS(1805),
- [anon_sym_GT_GT_GT] = ACTIONS(1807),
- [anon_sym_LT_LT] = ACTIONS(1807),
- [anon_sym_AMP] = ACTIONS(1805),
- [anon_sym_CARET] = ACTIONS(1807),
- [anon_sym_PIPE] = ACTIONS(1805),
- [anon_sym_PLUS] = ACTIONS(1803),
- [anon_sym_DASH] = ACTIONS(1803),
- [anon_sym_SLASH] = ACTIONS(1803),
- [anon_sym_PERCENT] = ACTIONS(1807),
- [anon_sym_STAR_STAR] = ACTIONS(1807),
- [anon_sym_LT] = ACTIONS(1803),
- [anon_sym_LT_EQ] = ACTIONS(1807),
- [anon_sym_EQ_EQ] = ACTIONS(1805),
- [anon_sym_EQ_EQ_EQ] = ACTIONS(1807),
- [anon_sym_BANG_EQ] = ACTIONS(1805),
- [anon_sym_BANG_EQ_EQ] = ACTIONS(1807),
- [anon_sym_GT_EQ] = ACTIONS(1807),
- [anon_sym_QMARK_QMARK] = ACTIONS(1807),
- [anon_sym_instanceof] = ACTIONS(1805),
- [anon_sym_TILDE] = ACTIONS(1801),
- [anon_sym_void] = ACTIONS(1803),
- [anon_sym_delete] = ACTIONS(1803),
- [anon_sym_PLUS_PLUS] = ACTIONS(1801),
- [anon_sym_DASH_DASH] = ACTIONS(1801),
- [sym_comment] = ACTIONS(5),
- [anon_sym_BQUOTE] = ACTIONS(1801),
- [sym_number] = ACTIONS(1801),
- [sym_private_property_identifier] = ACTIONS(1801),
- [sym_this] = ACTIONS(1803),
- [sym_super] = ACTIONS(1803),
- [sym_true] = ACTIONS(1803),
- [sym_false] = ACTIONS(1803),
- [sym_null] = ACTIONS(1803),
- [sym_undefined] = ACTIONS(1803),
- [anon_sym_AT] = ACTIONS(1801),
- [anon_sym_static] = ACTIONS(1803),
- [anon_sym_readonly] = ACTIONS(1803),
- [anon_sym_get] = ACTIONS(1803),
- [anon_sym_set] = ACTIONS(1803),
- [anon_sym_declare] = ACTIONS(1803),
- [anon_sym_public] = ACTIONS(1803),
- [anon_sym_private] = ACTIONS(1803),
- [anon_sym_protected] = ACTIONS(1803),
- [anon_sym_override] = ACTIONS(1803),
- [anon_sym_module] = ACTIONS(1803),
- [anon_sym_any] = ACTIONS(1803),
- [anon_sym_number] = ACTIONS(1803),
- [anon_sym_boolean] = ACTIONS(1803),
- [anon_sym_string] = ACTIONS(1803),
- [anon_sym_symbol] = ACTIONS(1803),
- [anon_sym_object] = ACTIONS(1803),
- [anon_sym_abstract] = ACTIONS(1803),
- [anon_sym_satisfies] = ACTIONS(1805),
- [anon_sym_interface] = ACTIONS(1803),
- [anon_sym_enum] = ACTIONS(1803),
- [sym__automatic_semicolon] = ACTIONS(1809),
- [sym__ternary_qmark] = ACTIONS(1807),
- [sym_html_comment] = ACTIONS(5),
- },
- [230] = {
- [ts_builtin_sym_end] = ACTIONS(1811),
- [sym_identifier] = ACTIONS(1813),
- [anon_sym_export] = ACTIONS(1813),
- [anon_sym_STAR] = ACTIONS(1815),
- [anon_sym_default] = ACTIONS(1813),
- [anon_sym_type] = ACTIONS(1813),
- [anon_sym_as] = ACTIONS(1815),
- [anon_sym_namespace] = ACTIONS(1813),
- [anon_sym_LBRACE] = ACTIONS(1811),
- [anon_sym_COMMA] = ACTIONS(1817),
- [anon_sym_RBRACE] = ACTIONS(1811),
- [anon_sym_typeof] = ACTIONS(1813),
- [anon_sym_import] = ACTIONS(1813),
- [anon_sym_with] = ACTIONS(1813),
- [anon_sym_var] = ACTIONS(1813),
- [anon_sym_let] = ACTIONS(1813),
- [anon_sym_const] = ACTIONS(1813),
- [anon_sym_BANG] = ACTIONS(1813),
- [anon_sym_else] = ACTIONS(1813),
- [anon_sym_if] = ACTIONS(1813),
- [anon_sym_switch] = ACTIONS(1813),
- [anon_sym_for] = ACTIONS(1813),
- [anon_sym_LPAREN] = ACTIONS(1811),
- [anon_sym_await] = ACTIONS(1813),
- [anon_sym_in] = ACTIONS(1815),
- [anon_sym_while] = ACTIONS(1813),
- [anon_sym_do] = ACTIONS(1813),
- [anon_sym_try] = ACTIONS(1813),
- [anon_sym_break] = ACTIONS(1813),
- [anon_sym_continue] = ACTIONS(1813),
- [anon_sym_debugger] = ACTIONS(1813),
- [anon_sym_return] = ACTIONS(1813),
- [anon_sym_throw] = ACTIONS(1813),
- [anon_sym_SEMI] = ACTIONS(1811),
- [anon_sym_case] = ACTIONS(1813),
- [anon_sym_yield] = ACTIONS(1813),
- [anon_sym_LBRACK] = ACTIONS(1811),
- [sym_glimmer_opening_tag] = ACTIONS(1811),
- [anon_sym_GT] = ACTIONS(1815),
- [anon_sym_DOT] = ACTIONS(1815),
- [anon_sym_DQUOTE] = ACTIONS(1811),
- [anon_sym_SQUOTE] = ACTIONS(1811),
- [anon_sym_class] = ACTIONS(1813),
- [anon_sym_async] = ACTIONS(1813),
- [anon_sym_function] = ACTIONS(1813),
- [anon_sym_QMARK_DOT] = ACTIONS(1817),
- [anon_sym_new] = ACTIONS(1813),
- [anon_sym_using] = ACTIONS(1813),
- [anon_sym_AMP_AMP] = ACTIONS(1817),
- [anon_sym_PIPE_PIPE] = ACTIONS(1817),
- [anon_sym_GT_GT] = ACTIONS(1815),
- [anon_sym_GT_GT_GT] = ACTIONS(1817),
- [anon_sym_LT_LT] = ACTIONS(1817),
- [anon_sym_AMP] = ACTIONS(1815),
- [anon_sym_CARET] = ACTIONS(1817),
- [anon_sym_PIPE] = ACTIONS(1815),
- [anon_sym_PLUS] = ACTIONS(1813),
- [anon_sym_DASH] = ACTIONS(1813),
- [anon_sym_SLASH] = ACTIONS(1813),
- [anon_sym_PERCENT] = ACTIONS(1817),
- [anon_sym_STAR_STAR] = ACTIONS(1817),
- [anon_sym_LT] = ACTIONS(1813),
- [anon_sym_LT_EQ] = ACTIONS(1817),
- [anon_sym_EQ_EQ] = ACTIONS(1815),
- [anon_sym_EQ_EQ_EQ] = ACTIONS(1817),
- [anon_sym_BANG_EQ] = ACTIONS(1815),
- [anon_sym_BANG_EQ_EQ] = ACTIONS(1817),
- [anon_sym_GT_EQ] = ACTIONS(1817),
- [anon_sym_QMARK_QMARK] = ACTIONS(1817),
- [anon_sym_instanceof] = ACTIONS(1815),
- [anon_sym_TILDE] = ACTIONS(1811),
- [anon_sym_void] = ACTIONS(1813),
- [anon_sym_delete] = ACTIONS(1813),
- [anon_sym_PLUS_PLUS] = ACTIONS(1811),
- [anon_sym_DASH_DASH] = ACTIONS(1811),
- [sym_comment] = ACTIONS(5),
- [anon_sym_BQUOTE] = ACTIONS(1811),
- [sym_number] = ACTIONS(1811),
- [sym_private_property_identifier] = ACTIONS(1811),
- [sym_this] = ACTIONS(1813),
- [sym_super] = ACTIONS(1813),
- [sym_true] = ACTIONS(1813),
- [sym_false] = ACTIONS(1813),
- [sym_null] = ACTIONS(1813),
- [sym_undefined] = ACTIONS(1813),
- [anon_sym_AT] = ACTIONS(1811),
- [anon_sym_static] = ACTIONS(1813),
- [anon_sym_readonly] = ACTIONS(1813),
- [anon_sym_get] = ACTIONS(1813),
- [anon_sym_set] = ACTIONS(1813),
- [anon_sym_declare] = ACTIONS(1813),
- [anon_sym_public] = ACTIONS(1813),
- [anon_sym_private] = ACTIONS(1813),
- [anon_sym_protected] = ACTIONS(1813),
- [anon_sym_override] = ACTIONS(1813),
- [anon_sym_module] = ACTIONS(1813),
- [anon_sym_any] = ACTIONS(1813),
- [anon_sym_number] = ACTIONS(1813),
- [anon_sym_boolean] = ACTIONS(1813),
- [anon_sym_string] = ACTIONS(1813),
- [anon_sym_symbol] = ACTIONS(1813),
- [anon_sym_object] = ACTIONS(1813),
- [anon_sym_abstract] = ACTIONS(1813),
- [anon_sym_satisfies] = ACTIONS(1815),
- [anon_sym_interface] = ACTIONS(1813),
- [anon_sym_enum] = ACTIONS(1813),
- [sym__automatic_semicolon] = ACTIONS(1819),
- [sym__ternary_qmark] = ACTIONS(1817),
- [sym_html_comment] = ACTIONS(5),
- },
- [231] = {
- [ts_builtin_sym_end] = ACTIONS(1821),
- [sym_identifier] = ACTIONS(1823),
- [anon_sym_export] = ACTIONS(1823),
- [anon_sym_STAR] = ACTIONS(1823),
- [anon_sym_default] = ACTIONS(1823),
- [anon_sym_type] = ACTIONS(1823),
- [anon_sym_as] = ACTIONS(1823),
- [anon_sym_namespace] = ACTIONS(1823),
- [anon_sym_LBRACE] = ACTIONS(1821),
- [anon_sym_COMMA] = ACTIONS(1821),
- [anon_sym_RBRACE] = ACTIONS(1821),
- [anon_sym_typeof] = ACTIONS(1823),
- [anon_sym_import] = ACTIONS(1823),
- [anon_sym_with] = ACTIONS(1823),
- [anon_sym_var] = ACTIONS(1823),
- [anon_sym_let] = ACTIONS(1823),
- [anon_sym_const] = ACTIONS(1823),
- [anon_sym_BANG] = ACTIONS(1823),
- [anon_sym_else] = ACTIONS(1823),
- [anon_sym_if] = ACTIONS(1823),
- [anon_sym_switch] = ACTIONS(1823),
- [anon_sym_for] = ACTIONS(1823),
- [anon_sym_LPAREN] = ACTIONS(1821),
- [anon_sym_await] = ACTIONS(1823),
- [anon_sym_in] = ACTIONS(1823),
- [anon_sym_while] = ACTIONS(1823),
- [anon_sym_do] = ACTIONS(1823),
- [anon_sym_try] = ACTIONS(1823),
- [anon_sym_break] = ACTIONS(1823),
- [anon_sym_continue] = ACTIONS(1823),
- [anon_sym_debugger] = ACTIONS(1823),
- [anon_sym_return] = ACTIONS(1823),
- [anon_sym_throw] = ACTIONS(1823),
- [anon_sym_SEMI] = ACTIONS(1821),
- [anon_sym_case] = ACTIONS(1823),
- [anon_sym_yield] = ACTIONS(1823),
- [anon_sym_LBRACK] = ACTIONS(1821),
- [sym_glimmer_opening_tag] = ACTIONS(1821),
- [anon_sym_GT] = ACTIONS(1823),
- [anon_sym_DOT] = ACTIONS(1823),
- [anon_sym_DQUOTE] = ACTIONS(1821),
- [anon_sym_SQUOTE] = ACTIONS(1821),
- [anon_sym_class] = ACTIONS(1823),
- [anon_sym_async] = ACTIONS(1823),
- [anon_sym_function] = ACTIONS(1823),
- [anon_sym_QMARK_DOT] = ACTIONS(1821),
- [anon_sym_new] = ACTIONS(1823),
- [anon_sym_using] = ACTIONS(1823),
- [anon_sym_AMP_AMP] = ACTIONS(1821),
- [anon_sym_PIPE_PIPE] = ACTIONS(1821),
- [anon_sym_GT_GT] = ACTIONS(1823),
- [anon_sym_GT_GT_GT] = ACTIONS(1821),
- [anon_sym_LT_LT] = ACTIONS(1821),
- [anon_sym_AMP] = ACTIONS(1823),
- [anon_sym_CARET] = ACTIONS(1821),
- [anon_sym_PIPE] = ACTIONS(1823),
- [anon_sym_PLUS] = ACTIONS(1823),
- [anon_sym_DASH] = ACTIONS(1823),
- [anon_sym_SLASH] = ACTIONS(1823),
- [anon_sym_PERCENT] = ACTIONS(1821),
- [anon_sym_STAR_STAR] = ACTIONS(1821),
- [anon_sym_LT] = ACTIONS(1823),
- [anon_sym_LT_EQ] = ACTIONS(1821),
- [anon_sym_EQ_EQ] = ACTIONS(1823),
- [anon_sym_EQ_EQ_EQ] = ACTIONS(1821),
- [anon_sym_BANG_EQ] = ACTIONS(1823),
- [anon_sym_BANG_EQ_EQ] = ACTIONS(1821),
- [anon_sym_GT_EQ] = ACTIONS(1821),
- [anon_sym_QMARK_QMARK] = ACTIONS(1821),
- [anon_sym_instanceof] = ACTIONS(1823),
- [anon_sym_TILDE] = ACTIONS(1821),
- [anon_sym_void] = ACTIONS(1823),
- [anon_sym_delete] = ACTIONS(1823),
- [anon_sym_PLUS_PLUS] = ACTIONS(1821),
- [anon_sym_DASH_DASH] = ACTIONS(1821),
- [sym_comment] = ACTIONS(5),
- [anon_sym_BQUOTE] = ACTIONS(1821),
- [sym_number] = ACTIONS(1821),
- [sym_private_property_identifier] = ACTIONS(1821),
- [sym_this] = ACTIONS(1823),
- [sym_super] = ACTIONS(1823),
- [sym_true] = ACTIONS(1823),
- [sym_false] = ACTIONS(1823),
- [sym_null] = ACTIONS(1823),
- [sym_undefined] = ACTIONS(1823),
- [anon_sym_AT] = ACTIONS(1821),
- [anon_sym_static] = ACTIONS(1823),
- [anon_sym_readonly] = ACTIONS(1823),
- [anon_sym_get] = ACTIONS(1823),
- [anon_sym_set] = ACTIONS(1823),
- [anon_sym_declare] = ACTIONS(1823),
- [anon_sym_public] = ACTIONS(1823),
- [anon_sym_private] = ACTIONS(1823),
- [anon_sym_protected] = ACTIONS(1823),
- [anon_sym_override] = ACTIONS(1823),
- [anon_sym_module] = ACTIONS(1823),
- [anon_sym_any] = ACTIONS(1823),
- [anon_sym_number] = ACTIONS(1823),
- [anon_sym_boolean] = ACTIONS(1823),
- [anon_sym_string] = ACTIONS(1823),
- [anon_sym_symbol] = ACTIONS(1823),
- [anon_sym_object] = ACTIONS(1823),
- [anon_sym_abstract] = ACTIONS(1823),
- [anon_sym_satisfies] = ACTIONS(1823),
- [anon_sym_interface] = ACTIONS(1823),
- [anon_sym_enum] = ACTIONS(1823),
- [sym__automatic_semicolon] = ACTIONS(1821),
- [sym__ternary_qmark] = ACTIONS(1821),
- [sym_html_comment] = ACTIONS(5),
- },
- [232] = {
- [sym_import] = STATE(3334),
- [sym_parenthesized_expression] = STATE(1179),
- [sym_expression] = STATE(2415),
- [sym_primary_expression] = STATE(1468),
- [sym_yield_expression] = STATE(1634),
- [sym_object] = STATE(1650),
- [sym_object_pattern] = STATE(3588),
- [sym_assignment_pattern] = STATE(5148),
- [sym_array] = STATE(1650),
- [sym_array_pattern] = STATE(3588),
- [sym_glimmer_template] = STATE(1634),
- [sym_jsx_element] = STATE(1634),
- [sym_jsx_opening_element] = STATE(3026),
- [sym_jsx_self_closing_element] = STATE(1634),
- [sym_class] = STATE(1650),
- [sym_function_expression] = STATE(1650),
- [sym_generator_function] = STATE(1650),
- [sym_arrow_function] = STATE(1650),
- [sym__call_signature] = STATE(5619),
- [sym_call_expression] = STATE(1650),
- [sym_new_expression] = STATE(1634),
- [sym_await_expression] = STATE(1634),
- [sym_member_expression] = STATE(1221),
- [sym_subscript_expression] = STATE(1221),
- [sym_assignment_expression] = STATE(1634),
- [sym__augmented_assignment_lhs] = STATE(2878),
- [sym_augmented_assignment_expression] = STATE(1634),
- [sym__destructuring_pattern] = STATE(3588),
- [sym_ternary_expression] = STATE(1634),
- [sym_binary_expression] = STATE(1634),
- [sym_unary_expression] = STATE(1634),
- [sym_update_expression] = STATE(1634),
- [sym_string] = STATE(1650),
- [sym_template_string] = STATE(1650),
- [sym_regex] = STATE(1650),
- [sym_meta_property] = STATE(1650),
- [sym_decorator] = STATE(1244),
- [sym_formal_parameters] = STATE(3742),
- [sym_pattern] = STATE(4544),
- [sym_rest_pattern] = STATE(3700),
- [sym_non_null_expression] = STATE(1221),
- [sym_as_expression] = STATE(1634),
- [sym_satisfies_expression] = STATE(1634),
- [sym_instantiation_expression] = STATE(1634),
- [sym_internal_module] = STATE(1634),
- [sym_type_parameters] = STATE(5349),
- [aux_sym_export_statement_repeat1] = STATE(4458),
- [aux_sym_array_pattern_repeat1] = STATE(5165),
- [sym_identifier] = ACTIONS(769),
- [anon_sym_export] = ACTIONS(115),
- [anon_sym_type] = ACTIONS(115),
- [anon_sym_namespace] = ACTIONS(124),
- [anon_sym_LBRACE] = ACTIONS(771),
- [anon_sym_COMMA] = ACTIONS(1700),
- [anon_sym_typeof] = ACTIONS(187),
- [anon_sym_import] = ACTIONS(133),
- [anon_sym_let] = ACTIONS(115),
- [anon_sym_BANG] = ACTIONS(183),
- [anon_sym_LPAREN] = ACTIONS(815),
- [anon_sym_await] = ACTIONS(142),
- [anon_sym_yield] = ACTIONS(144),
- [anon_sym_LBRACK] = ACTIONS(1630),
- [anon_sym_RBRACK] = ACTIONS(1704),
- [sym_glimmer_opening_tag] = ACTIONS(148),
- [anon_sym_DQUOTE] = ACTIONS(150),
- [anon_sym_SQUOTE] = ACTIONS(152),
- [anon_sym_class] = ACTIONS(154),
- [anon_sym_async] = ACTIONS(156),
- [anon_sym_function] = ACTIONS(158),
- [anon_sym_new] = ACTIONS(779),
- [anon_sym_using] = ACTIONS(166),
- [anon_sym_DOT_DOT_DOT] = ACTIONS(170),
- [anon_sym_PLUS] = ACTIONS(187),
- [anon_sym_DASH] = ACTIONS(187),
- [anon_sym_SLASH] = ACTIONS(646),
- [anon_sym_LT] = ACTIONS(181),
- [anon_sym_TILDE] = ACTIONS(183),
- [anon_sym_void] = ACTIONS(187),
- [anon_sym_delete] = ACTIONS(187),
- [anon_sym_PLUS_PLUS] = ACTIONS(719),
- [anon_sym_DASH_DASH] = ACTIONS(719),
- [sym_comment] = ACTIONS(5),
- [anon_sym_BQUOTE] = ACTIONS(825),
- [sym_number] = ACTIONS(787),
- [sym_private_property_identifier] = ACTIONS(196),
- [sym_this] = ACTIONS(200),
- [sym_super] = ACTIONS(200),
- [sym_true] = ACTIONS(200),
- [sym_false] = ACTIONS(200),
- [sym_null] = ACTIONS(200),
- [sym_undefined] = ACTIONS(791),
- [anon_sym_AT] = ACTIONS(99),
- [anon_sym_static] = ACTIONS(115),
- [anon_sym_readonly] = ACTIONS(115),
- [anon_sym_get] = ACTIONS(115),
- [anon_sym_set] = ACTIONS(115),
- [anon_sym_declare] = ACTIONS(115),
- [anon_sym_public] = ACTIONS(115),
- [anon_sym_private] = ACTIONS(115),
- [anon_sym_protected] = ACTIONS(115),
- [anon_sym_override] = ACTIONS(115),
- [anon_sym_module] = ACTIONS(115),
- [anon_sym_any] = ACTIONS(115),
- [anon_sym_number] = ACTIONS(115),
- [anon_sym_boolean] = ACTIONS(115),
- [anon_sym_string] = ACTIONS(115),
- [anon_sym_symbol] = ACTIONS(115),
- [anon_sym_object] = ACTIONS(115),
- [sym_html_comment] = ACTIONS(5),
- },
- [233] = {
- [ts_builtin_sym_end] = ACTIONS(1825),
- [sym_identifier] = ACTIONS(1827),
- [anon_sym_export] = ACTIONS(1827),
- [anon_sym_STAR] = ACTIONS(1829),
- [anon_sym_default] = ACTIONS(1827),
- [anon_sym_type] = ACTIONS(1827),
- [anon_sym_as] = ACTIONS(1829),
- [anon_sym_namespace] = ACTIONS(1827),
- [anon_sym_LBRACE] = ACTIONS(1825),
- [anon_sym_COMMA] = ACTIONS(1831),
- [anon_sym_RBRACE] = ACTIONS(1825),
- [anon_sym_typeof] = ACTIONS(1827),
- [anon_sym_import] = ACTIONS(1827),
- [anon_sym_with] = ACTIONS(1827),
- [anon_sym_var] = ACTIONS(1827),
- [anon_sym_let] = ACTIONS(1827),
- [anon_sym_const] = ACTIONS(1827),
- [anon_sym_BANG] = ACTIONS(1827),
- [anon_sym_else] = ACTIONS(1827),
- [anon_sym_if] = ACTIONS(1827),
- [anon_sym_switch] = ACTIONS(1827),
- [anon_sym_for] = ACTIONS(1827),
- [anon_sym_LPAREN] = ACTIONS(1825),
- [anon_sym_await] = ACTIONS(1827),
- [anon_sym_in] = ACTIONS(1829),
- [anon_sym_while] = ACTIONS(1827),
- [anon_sym_do] = ACTIONS(1827),
- [anon_sym_try] = ACTIONS(1827),
- [anon_sym_break] = ACTIONS(1827),
- [anon_sym_continue] = ACTIONS(1827),
- [anon_sym_debugger] = ACTIONS(1827),
- [anon_sym_return] = ACTIONS(1827),
- [anon_sym_throw] = ACTIONS(1827),
- [anon_sym_SEMI] = ACTIONS(1825),
- [anon_sym_case] = ACTIONS(1827),
- [anon_sym_yield] = ACTIONS(1827),
- [anon_sym_LBRACK] = ACTIONS(1825),
- [sym_glimmer_opening_tag] = ACTIONS(1825),
- [anon_sym_GT] = ACTIONS(1829),
- [anon_sym_DOT] = ACTIONS(1829),
- [anon_sym_DQUOTE] = ACTIONS(1825),
- [anon_sym_SQUOTE] = ACTIONS(1825),
- [anon_sym_class] = ACTIONS(1827),
- [anon_sym_async] = ACTIONS(1827),
- [anon_sym_function] = ACTIONS(1827),
- [anon_sym_QMARK_DOT] = ACTIONS(1831),
- [anon_sym_new] = ACTIONS(1827),
- [anon_sym_using] = ACTIONS(1827),
- [anon_sym_AMP_AMP] = ACTIONS(1831),
- [anon_sym_PIPE_PIPE] = ACTIONS(1831),
- [anon_sym_GT_GT] = ACTIONS(1829),
- [anon_sym_GT_GT_GT] = ACTIONS(1831),
- [anon_sym_LT_LT] = ACTIONS(1831),
- [anon_sym_AMP] = ACTIONS(1829),
- [anon_sym_CARET] = ACTIONS(1831),
- [anon_sym_PIPE] = ACTIONS(1829),
- [anon_sym_PLUS] = ACTIONS(1827),
- [anon_sym_DASH] = ACTIONS(1827),
- [anon_sym_SLASH] = ACTIONS(1827),
- [anon_sym_PERCENT] = ACTIONS(1831),
- [anon_sym_STAR_STAR] = ACTIONS(1831),
- [anon_sym_LT] = ACTIONS(1827),
- [anon_sym_LT_EQ] = ACTIONS(1831),
- [anon_sym_EQ_EQ] = ACTIONS(1829),
- [anon_sym_EQ_EQ_EQ] = ACTIONS(1831),
- [anon_sym_BANG_EQ] = ACTIONS(1829),
- [anon_sym_BANG_EQ_EQ] = ACTIONS(1831),
- [anon_sym_GT_EQ] = ACTIONS(1831),
- [anon_sym_QMARK_QMARK] = ACTIONS(1831),
- [anon_sym_instanceof] = ACTIONS(1829),
- [anon_sym_TILDE] = ACTIONS(1825),
- [anon_sym_void] = ACTIONS(1827),
- [anon_sym_delete] = ACTIONS(1827),
- [anon_sym_PLUS_PLUS] = ACTIONS(1825),
- [anon_sym_DASH_DASH] = ACTIONS(1825),
- [sym_comment] = ACTIONS(5),
- [anon_sym_BQUOTE] = ACTIONS(1825),
- [sym_number] = ACTIONS(1825),
- [sym_private_property_identifier] = ACTIONS(1825),
- [sym_this] = ACTIONS(1827),
- [sym_super] = ACTIONS(1827),
- [sym_true] = ACTIONS(1827),
- [sym_false] = ACTIONS(1827),
- [sym_null] = ACTIONS(1827),
- [sym_undefined] = ACTIONS(1827),
- [anon_sym_AT] = ACTIONS(1825),
- [anon_sym_static] = ACTIONS(1827),
- [anon_sym_readonly] = ACTIONS(1827),
- [anon_sym_get] = ACTIONS(1827),
- [anon_sym_set] = ACTIONS(1827),
- [anon_sym_declare] = ACTIONS(1827),
- [anon_sym_public] = ACTIONS(1827),
- [anon_sym_private] = ACTIONS(1827),
- [anon_sym_protected] = ACTIONS(1827),
- [anon_sym_override] = ACTIONS(1827),
- [anon_sym_module] = ACTIONS(1827),
- [anon_sym_any] = ACTIONS(1827),
- [anon_sym_number] = ACTIONS(1827),
- [anon_sym_boolean] = ACTIONS(1827),
- [anon_sym_string] = ACTIONS(1827),
- [anon_sym_symbol] = ACTIONS(1827),
- [anon_sym_object] = ACTIONS(1827),
- [anon_sym_abstract] = ACTIONS(1827),
- [anon_sym_satisfies] = ACTIONS(1829),
- [anon_sym_interface] = ACTIONS(1827),
- [anon_sym_enum] = ACTIONS(1827),
- [sym__automatic_semicolon] = ACTIONS(1833),
- [sym__ternary_qmark] = ACTIONS(1831),
- [sym_html_comment] = ACTIONS(5),
- },
- [234] = {
- [ts_builtin_sym_end] = ACTIONS(1835),
- [sym_identifier] = ACTIONS(1837),
- [anon_sym_export] = ACTIONS(1837),
- [anon_sym_STAR] = ACTIONS(1839),
- [anon_sym_default] = ACTIONS(1837),
- [anon_sym_type] = ACTIONS(1837),
- [anon_sym_as] = ACTIONS(1839),
- [anon_sym_namespace] = ACTIONS(1837),
- [anon_sym_LBRACE] = ACTIONS(1835),
- [anon_sym_COMMA] = ACTIONS(1841),
- [anon_sym_RBRACE] = ACTIONS(1835),
- [anon_sym_typeof] = ACTIONS(1837),
- [anon_sym_import] = ACTIONS(1837),
- [anon_sym_with] = ACTIONS(1837),
- [anon_sym_var] = ACTIONS(1837),
- [anon_sym_let] = ACTIONS(1837),
- [anon_sym_const] = ACTIONS(1837),
- [anon_sym_BANG] = ACTIONS(1837),
- [anon_sym_else] = ACTIONS(1837),
- [anon_sym_if] = ACTIONS(1837),
- [anon_sym_switch] = ACTIONS(1837),
- [anon_sym_for] = ACTIONS(1837),
- [anon_sym_LPAREN] = ACTIONS(1835),
- [anon_sym_await] = ACTIONS(1837),
- [anon_sym_in] = ACTIONS(1839),
- [anon_sym_while] = ACTIONS(1837),
- [anon_sym_do] = ACTIONS(1837),
- [anon_sym_try] = ACTIONS(1837),
- [anon_sym_break] = ACTIONS(1837),
- [anon_sym_continue] = ACTIONS(1837),
- [anon_sym_debugger] = ACTIONS(1837),
- [anon_sym_return] = ACTIONS(1837),
- [anon_sym_throw] = ACTIONS(1837),
- [anon_sym_SEMI] = ACTIONS(1835),
- [anon_sym_case] = ACTIONS(1837),
- [anon_sym_yield] = ACTIONS(1837),
- [anon_sym_LBRACK] = ACTIONS(1835),
- [sym_glimmer_opening_tag] = ACTIONS(1835),
- [anon_sym_GT] = ACTIONS(1839),
- [anon_sym_DOT] = ACTIONS(1839),
- [anon_sym_DQUOTE] = ACTIONS(1835),
- [anon_sym_SQUOTE] = ACTIONS(1835),
- [anon_sym_class] = ACTIONS(1837),
- [anon_sym_async] = ACTIONS(1837),
- [anon_sym_function] = ACTIONS(1837),
- [anon_sym_QMARK_DOT] = ACTIONS(1841),
- [anon_sym_new] = ACTIONS(1837),
- [anon_sym_using] = ACTIONS(1837),
- [anon_sym_AMP_AMP] = ACTIONS(1841),
- [anon_sym_PIPE_PIPE] = ACTIONS(1841),
- [anon_sym_GT_GT] = ACTIONS(1839),
- [anon_sym_GT_GT_GT] = ACTIONS(1841),
- [anon_sym_LT_LT] = ACTIONS(1841),
- [anon_sym_AMP] = ACTIONS(1839),
- [anon_sym_CARET] = ACTIONS(1841),
- [anon_sym_PIPE] = ACTIONS(1839),
- [anon_sym_PLUS] = ACTIONS(1837),
- [anon_sym_DASH] = ACTIONS(1837),
- [anon_sym_SLASH] = ACTIONS(1837),
- [anon_sym_PERCENT] = ACTIONS(1841),
- [anon_sym_STAR_STAR] = ACTIONS(1841),
- [anon_sym_LT] = ACTIONS(1837),
- [anon_sym_LT_EQ] = ACTIONS(1841),
- [anon_sym_EQ_EQ] = ACTIONS(1839),
- [anon_sym_EQ_EQ_EQ] = ACTIONS(1841),
- [anon_sym_BANG_EQ] = ACTIONS(1839),
- [anon_sym_BANG_EQ_EQ] = ACTIONS(1841),
- [anon_sym_GT_EQ] = ACTIONS(1841),
- [anon_sym_QMARK_QMARK] = ACTIONS(1841),
- [anon_sym_instanceof] = ACTIONS(1839),
- [anon_sym_TILDE] = ACTIONS(1835),
- [anon_sym_void] = ACTIONS(1837),
- [anon_sym_delete] = ACTIONS(1837),
- [anon_sym_PLUS_PLUS] = ACTIONS(1835),
- [anon_sym_DASH_DASH] = ACTIONS(1835),
- [sym_comment] = ACTIONS(5),
- [anon_sym_BQUOTE] = ACTIONS(1835),
- [sym_number] = ACTIONS(1835),
- [sym_private_property_identifier] = ACTIONS(1835),
- [sym_this] = ACTIONS(1837),
- [sym_super] = ACTIONS(1837),
- [sym_true] = ACTIONS(1837),
- [sym_false] = ACTIONS(1837),
- [sym_null] = ACTIONS(1837),
- [sym_undefined] = ACTIONS(1837),
- [anon_sym_AT] = ACTIONS(1835),
- [anon_sym_static] = ACTIONS(1837),
- [anon_sym_readonly] = ACTIONS(1837),
- [anon_sym_get] = ACTIONS(1837),
- [anon_sym_set] = ACTIONS(1837),
- [anon_sym_declare] = ACTIONS(1837),
- [anon_sym_public] = ACTIONS(1837),
- [anon_sym_private] = ACTIONS(1837),
- [anon_sym_protected] = ACTIONS(1837),
- [anon_sym_override] = ACTIONS(1837),
- [anon_sym_module] = ACTIONS(1837),
- [anon_sym_any] = ACTIONS(1837),
- [anon_sym_number] = ACTIONS(1837),
- [anon_sym_boolean] = ACTIONS(1837),
- [anon_sym_string] = ACTIONS(1837),
- [anon_sym_symbol] = ACTIONS(1837),
- [anon_sym_object] = ACTIONS(1837),
- [anon_sym_abstract] = ACTIONS(1837),
- [anon_sym_satisfies] = ACTIONS(1839),
- [anon_sym_interface] = ACTIONS(1837),
- [anon_sym_enum] = ACTIONS(1837),
- [sym__automatic_semicolon] = ACTIONS(1843),
- [sym__ternary_qmark] = ACTIONS(1841),
- [sym_html_comment] = ACTIONS(5),
- },
- [235] = {
- [ts_builtin_sym_end] = ACTIONS(1845),
- [sym_identifier] = ACTIONS(1847),
- [anon_sym_export] = ACTIONS(1847),
- [anon_sym_STAR] = ACTIONS(1849),
- [anon_sym_default] = ACTIONS(1847),
- [anon_sym_type] = ACTIONS(1847),
- [anon_sym_as] = ACTIONS(1849),
- [anon_sym_namespace] = ACTIONS(1847),
- [anon_sym_LBRACE] = ACTIONS(1845),
- [anon_sym_COMMA] = ACTIONS(1851),
- [anon_sym_RBRACE] = ACTIONS(1845),
- [anon_sym_typeof] = ACTIONS(1847),
- [anon_sym_import] = ACTIONS(1847),
- [anon_sym_with] = ACTIONS(1847),
- [anon_sym_var] = ACTIONS(1847),
- [anon_sym_let] = ACTIONS(1847),
- [anon_sym_const] = ACTIONS(1847),
- [anon_sym_BANG] = ACTIONS(1847),
- [anon_sym_else] = ACTIONS(1847),
- [anon_sym_if] = ACTIONS(1847),
- [anon_sym_switch] = ACTIONS(1847),
- [anon_sym_for] = ACTIONS(1847),
- [anon_sym_LPAREN] = ACTIONS(1845),
- [anon_sym_await] = ACTIONS(1847),
- [anon_sym_in] = ACTIONS(1849),
- [anon_sym_while] = ACTIONS(1847),
- [anon_sym_do] = ACTIONS(1847),
- [anon_sym_try] = ACTIONS(1847),
- [anon_sym_break] = ACTIONS(1847),
- [anon_sym_continue] = ACTIONS(1847),
- [anon_sym_debugger] = ACTIONS(1847),
- [anon_sym_return] = ACTIONS(1847),
- [anon_sym_throw] = ACTIONS(1847),
- [anon_sym_SEMI] = ACTIONS(1845),
- [anon_sym_case] = ACTIONS(1847),
- [anon_sym_yield] = ACTIONS(1847),
- [anon_sym_LBRACK] = ACTIONS(1845),
- [sym_glimmer_opening_tag] = ACTIONS(1845),
- [anon_sym_GT] = ACTIONS(1849),
- [anon_sym_DOT] = ACTIONS(1849),
- [anon_sym_DQUOTE] = ACTIONS(1845),
- [anon_sym_SQUOTE] = ACTIONS(1845),
- [anon_sym_class] = ACTIONS(1847),
- [anon_sym_async] = ACTIONS(1847),
- [anon_sym_function] = ACTIONS(1847),
- [anon_sym_QMARK_DOT] = ACTIONS(1851),
- [anon_sym_new] = ACTIONS(1847),
- [anon_sym_using] = ACTIONS(1847),
- [anon_sym_AMP_AMP] = ACTIONS(1851),
- [anon_sym_PIPE_PIPE] = ACTIONS(1851),
- [anon_sym_GT_GT] = ACTIONS(1849),
- [anon_sym_GT_GT_GT] = ACTIONS(1851),
- [anon_sym_LT_LT] = ACTIONS(1851),
- [anon_sym_AMP] = ACTIONS(1849),
- [anon_sym_CARET] = ACTIONS(1851),
- [anon_sym_PIPE] = ACTIONS(1849),
- [anon_sym_PLUS] = ACTIONS(1847),
- [anon_sym_DASH] = ACTIONS(1847),
- [anon_sym_SLASH] = ACTIONS(1847),
- [anon_sym_PERCENT] = ACTIONS(1851),
- [anon_sym_STAR_STAR] = ACTIONS(1851),
- [anon_sym_LT] = ACTIONS(1847),
- [anon_sym_LT_EQ] = ACTIONS(1851),
- [anon_sym_EQ_EQ] = ACTIONS(1849),
- [anon_sym_EQ_EQ_EQ] = ACTIONS(1851),
- [anon_sym_BANG_EQ] = ACTIONS(1849),
- [anon_sym_BANG_EQ_EQ] = ACTIONS(1851),
- [anon_sym_GT_EQ] = ACTIONS(1851),
- [anon_sym_QMARK_QMARK] = ACTIONS(1851),
- [anon_sym_instanceof] = ACTIONS(1849),
- [anon_sym_TILDE] = ACTIONS(1845),
- [anon_sym_void] = ACTIONS(1847),
- [anon_sym_delete] = ACTIONS(1847),
- [anon_sym_PLUS_PLUS] = ACTIONS(1845),
- [anon_sym_DASH_DASH] = ACTIONS(1845),
- [sym_comment] = ACTIONS(5),
- [anon_sym_BQUOTE] = ACTIONS(1845),
- [sym_number] = ACTIONS(1845),
- [sym_private_property_identifier] = ACTIONS(1845),
- [sym_this] = ACTIONS(1847),
- [sym_super] = ACTIONS(1847),
- [sym_true] = ACTIONS(1847),
- [sym_false] = ACTIONS(1847),
- [sym_null] = ACTIONS(1847),
- [sym_undefined] = ACTIONS(1847),
- [anon_sym_AT] = ACTIONS(1845),
- [anon_sym_static] = ACTIONS(1847),
- [anon_sym_readonly] = ACTIONS(1847),
- [anon_sym_get] = ACTIONS(1847),
- [anon_sym_set] = ACTIONS(1847),
- [anon_sym_declare] = ACTIONS(1847),
- [anon_sym_public] = ACTIONS(1847),
- [anon_sym_private] = ACTIONS(1847),
- [anon_sym_protected] = ACTIONS(1847),
- [anon_sym_override] = ACTIONS(1847),
- [anon_sym_module] = ACTIONS(1847),
- [anon_sym_any] = ACTIONS(1847),
- [anon_sym_number] = ACTIONS(1847),
- [anon_sym_boolean] = ACTIONS(1847),
- [anon_sym_string] = ACTIONS(1847),
- [anon_sym_symbol] = ACTIONS(1847),
- [anon_sym_object] = ACTIONS(1847),
- [anon_sym_abstract] = ACTIONS(1847),
- [anon_sym_satisfies] = ACTIONS(1849),
- [anon_sym_interface] = ACTIONS(1847),
- [anon_sym_enum] = ACTIONS(1847),
- [sym__automatic_semicolon] = ACTIONS(1853),
- [sym__ternary_qmark] = ACTIONS(1851),
- [sym_html_comment] = ACTIONS(5),
- },
- [236] = {
- [ts_builtin_sym_end] = ACTIONS(1855),
- [sym_identifier] = ACTIONS(1857),
- [anon_sym_export] = ACTIONS(1857),
- [anon_sym_STAR] = ACTIONS(1857),
- [anon_sym_default] = ACTIONS(1857),
- [anon_sym_type] = ACTIONS(1857),
- [anon_sym_as] = ACTIONS(1857),
- [anon_sym_namespace] = ACTIONS(1857),
- [anon_sym_LBRACE] = ACTIONS(1855),
- [anon_sym_COMMA] = ACTIONS(1855),
- [anon_sym_RBRACE] = ACTIONS(1855),
- [anon_sym_typeof] = ACTIONS(1857),
- [anon_sym_import] = ACTIONS(1857),
- [anon_sym_with] = ACTIONS(1857),
- [anon_sym_var] = ACTIONS(1857),
- [anon_sym_let] = ACTIONS(1857),
- [anon_sym_const] = ACTIONS(1857),
- [anon_sym_BANG] = ACTIONS(1857),
- [anon_sym_else] = ACTIONS(1857),
- [anon_sym_if] = ACTIONS(1857),
- [anon_sym_switch] = ACTIONS(1857),
- [anon_sym_for] = ACTIONS(1857),
- [anon_sym_LPAREN] = ACTIONS(1855),
- [anon_sym_await] = ACTIONS(1857),
- [anon_sym_in] = ACTIONS(1857),
- [anon_sym_while] = ACTIONS(1857),
- [anon_sym_do] = ACTIONS(1857),
- [anon_sym_try] = ACTIONS(1857),
- [anon_sym_break] = ACTIONS(1857),
- [anon_sym_continue] = ACTIONS(1857),
- [anon_sym_debugger] = ACTIONS(1857),
- [anon_sym_return] = ACTIONS(1857),
- [anon_sym_throw] = ACTIONS(1857),
- [anon_sym_SEMI] = ACTIONS(1855),
- [anon_sym_case] = ACTIONS(1857),
- [anon_sym_yield] = ACTIONS(1857),
- [anon_sym_LBRACK] = ACTIONS(1855),
- [sym_glimmer_opening_tag] = ACTIONS(1855),
- [anon_sym_GT] = ACTIONS(1857),
- [anon_sym_DOT] = ACTIONS(1857),
- [anon_sym_DQUOTE] = ACTIONS(1855),
- [anon_sym_SQUOTE] = ACTIONS(1855),
- [anon_sym_class] = ACTIONS(1857),
- [anon_sym_async] = ACTIONS(1857),
- [anon_sym_function] = ACTIONS(1857),
- [anon_sym_QMARK_DOT] = ACTIONS(1855),
- [anon_sym_new] = ACTIONS(1857),
- [anon_sym_using] = ACTIONS(1857),
- [anon_sym_AMP_AMP] = ACTIONS(1855),
- [anon_sym_PIPE_PIPE] = ACTIONS(1855),
- [anon_sym_GT_GT] = ACTIONS(1857),
- [anon_sym_GT_GT_GT] = ACTIONS(1855),
- [anon_sym_LT_LT] = ACTIONS(1855),
- [anon_sym_AMP] = ACTIONS(1857),
- [anon_sym_CARET] = ACTIONS(1855),
- [anon_sym_PIPE] = ACTIONS(1857),
- [anon_sym_PLUS] = ACTIONS(1857),
- [anon_sym_DASH] = ACTIONS(1857),
- [anon_sym_SLASH] = ACTIONS(1857),
- [anon_sym_PERCENT] = ACTIONS(1855),
- [anon_sym_STAR_STAR] = ACTIONS(1855),
- [anon_sym_LT] = ACTIONS(1857),
- [anon_sym_LT_EQ] = ACTIONS(1855),
- [anon_sym_EQ_EQ] = ACTIONS(1857),
- [anon_sym_EQ_EQ_EQ] = ACTIONS(1855),
- [anon_sym_BANG_EQ] = ACTIONS(1857),
- [anon_sym_BANG_EQ_EQ] = ACTIONS(1855),
- [anon_sym_GT_EQ] = ACTIONS(1855),
- [anon_sym_QMARK_QMARK] = ACTIONS(1855),
- [anon_sym_instanceof] = ACTIONS(1857),
- [anon_sym_TILDE] = ACTIONS(1855),
- [anon_sym_void] = ACTIONS(1857),
- [anon_sym_delete] = ACTIONS(1857),
- [anon_sym_PLUS_PLUS] = ACTIONS(1855),
- [anon_sym_DASH_DASH] = ACTIONS(1855),
- [sym_comment] = ACTIONS(5),
- [anon_sym_BQUOTE] = ACTIONS(1855),
- [sym_number] = ACTIONS(1855),
- [sym_private_property_identifier] = ACTIONS(1855),
- [sym_this] = ACTIONS(1857),
- [sym_super] = ACTIONS(1857),
- [sym_true] = ACTIONS(1857),
- [sym_false] = ACTIONS(1857),
- [sym_null] = ACTIONS(1857),
- [sym_undefined] = ACTIONS(1857),
- [anon_sym_AT] = ACTIONS(1855),
- [anon_sym_static] = ACTIONS(1857),
- [anon_sym_readonly] = ACTIONS(1857),
- [anon_sym_get] = ACTIONS(1857),
- [anon_sym_set] = ACTIONS(1857),
- [anon_sym_declare] = ACTIONS(1857),
- [anon_sym_public] = ACTIONS(1857),
- [anon_sym_private] = ACTIONS(1857),
- [anon_sym_protected] = ACTIONS(1857),
- [anon_sym_override] = ACTIONS(1857),
- [anon_sym_module] = ACTIONS(1857),
- [anon_sym_any] = ACTIONS(1857),
- [anon_sym_number] = ACTIONS(1857),
- [anon_sym_boolean] = ACTIONS(1857),
- [anon_sym_string] = ACTIONS(1857),
- [anon_sym_symbol] = ACTIONS(1857),
- [anon_sym_object] = ACTIONS(1857),
- [anon_sym_abstract] = ACTIONS(1857),
- [anon_sym_satisfies] = ACTIONS(1857),
- [anon_sym_interface] = ACTIONS(1857),
- [anon_sym_enum] = ACTIONS(1857),
- [sym__automatic_semicolon] = ACTIONS(1855),
- [sym__ternary_qmark] = ACTIONS(1855),
- [sym_html_comment] = ACTIONS(5),
- },
- [237] = {
- [ts_builtin_sym_end] = ACTIONS(1859),
- [sym_identifier] = ACTIONS(1861),
- [anon_sym_export] = ACTIONS(1861),
- [anon_sym_STAR] = ACTIONS(1863),
- [anon_sym_default] = ACTIONS(1861),
- [anon_sym_type] = ACTIONS(1861),
- [anon_sym_as] = ACTIONS(1863),
- [anon_sym_namespace] = ACTIONS(1861),
- [anon_sym_LBRACE] = ACTIONS(1859),
- [anon_sym_COMMA] = ACTIONS(1865),
- [anon_sym_RBRACE] = ACTIONS(1859),
- [anon_sym_typeof] = ACTIONS(1861),
- [anon_sym_import] = ACTIONS(1861),
- [anon_sym_with] = ACTIONS(1861),
- [anon_sym_var] = ACTIONS(1861),
- [anon_sym_let] = ACTIONS(1861),
- [anon_sym_const] = ACTIONS(1861),
- [anon_sym_BANG] = ACTIONS(1861),
- [anon_sym_else] = ACTIONS(1861),
- [anon_sym_if] = ACTIONS(1861),
- [anon_sym_switch] = ACTIONS(1861),
- [anon_sym_for] = ACTIONS(1861),
- [anon_sym_LPAREN] = ACTIONS(1859),
- [anon_sym_await] = ACTIONS(1861),
- [anon_sym_in] = ACTIONS(1863),
- [anon_sym_while] = ACTIONS(1861),
- [anon_sym_do] = ACTIONS(1861),
- [anon_sym_try] = ACTIONS(1861),
- [anon_sym_break] = ACTIONS(1861),
- [anon_sym_continue] = ACTIONS(1861),
- [anon_sym_debugger] = ACTIONS(1861),
- [anon_sym_return] = ACTIONS(1861),
- [anon_sym_throw] = ACTIONS(1861),
- [anon_sym_SEMI] = ACTIONS(1859),
- [anon_sym_case] = ACTIONS(1861),
- [anon_sym_yield] = ACTIONS(1861),
- [anon_sym_LBRACK] = ACTIONS(1859),
- [sym_glimmer_opening_tag] = ACTIONS(1859),
- [anon_sym_GT] = ACTIONS(1863),
- [anon_sym_DOT] = ACTIONS(1863),
- [anon_sym_DQUOTE] = ACTIONS(1859),
- [anon_sym_SQUOTE] = ACTIONS(1859),
- [anon_sym_class] = ACTIONS(1861),
- [anon_sym_async] = ACTIONS(1861),
- [anon_sym_function] = ACTIONS(1861),
- [anon_sym_QMARK_DOT] = ACTIONS(1865),
- [anon_sym_new] = ACTIONS(1861),
- [anon_sym_using] = ACTIONS(1861),
- [anon_sym_AMP_AMP] = ACTIONS(1865),
- [anon_sym_PIPE_PIPE] = ACTIONS(1865),
- [anon_sym_GT_GT] = ACTIONS(1863),
- [anon_sym_GT_GT_GT] = ACTIONS(1865),
- [anon_sym_LT_LT] = ACTIONS(1865),
- [anon_sym_AMP] = ACTIONS(1863),
- [anon_sym_CARET] = ACTIONS(1865),
- [anon_sym_PIPE] = ACTIONS(1863),
- [anon_sym_PLUS] = ACTIONS(1861),
- [anon_sym_DASH] = ACTIONS(1861),
- [anon_sym_SLASH] = ACTIONS(1861),
- [anon_sym_PERCENT] = ACTIONS(1865),
- [anon_sym_STAR_STAR] = ACTIONS(1865),
- [anon_sym_LT] = ACTIONS(1861),
- [anon_sym_LT_EQ] = ACTIONS(1865),
- [anon_sym_EQ_EQ] = ACTIONS(1863),
- [anon_sym_EQ_EQ_EQ] = ACTIONS(1865),
- [anon_sym_BANG_EQ] = ACTIONS(1863),
- [anon_sym_BANG_EQ_EQ] = ACTIONS(1865),
- [anon_sym_GT_EQ] = ACTIONS(1865),
- [anon_sym_QMARK_QMARK] = ACTIONS(1865),
- [anon_sym_instanceof] = ACTIONS(1863),
- [anon_sym_TILDE] = ACTIONS(1859),
- [anon_sym_void] = ACTIONS(1861),
- [anon_sym_delete] = ACTIONS(1861),
- [anon_sym_PLUS_PLUS] = ACTIONS(1859),
- [anon_sym_DASH_DASH] = ACTIONS(1859),
- [sym_comment] = ACTIONS(5),
- [anon_sym_BQUOTE] = ACTIONS(1859),
- [sym_number] = ACTIONS(1859),
- [sym_private_property_identifier] = ACTIONS(1859),
- [sym_this] = ACTIONS(1861),
- [sym_super] = ACTIONS(1861),
- [sym_true] = ACTIONS(1861),
- [sym_false] = ACTIONS(1861),
- [sym_null] = ACTIONS(1861),
- [sym_undefined] = ACTIONS(1861),
- [anon_sym_AT] = ACTIONS(1859),
- [anon_sym_static] = ACTIONS(1861),
- [anon_sym_readonly] = ACTIONS(1861),
- [anon_sym_get] = ACTIONS(1861),
- [anon_sym_set] = ACTIONS(1861),
- [anon_sym_declare] = ACTIONS(1861),
- [anon_sym_public] = ACTIONS(1861),
- [anon_sym_private] = ACTIONS(1861),
- [anon_sym_protected] = ACTIONS(1861),
- [anon_sym_override] = ACTIONS(1861),
- [anon_sym_module] = ACTIONS(1861),
- [anon_sym_any] = ACTIONS(1861),
- [anon_sym_number] = ACTIONS(1861),
- [anon_sym_boolean] = ACTIONS(1861),
- [anon_sym_string] = ACTIONS(1861),
- [anon_sym_symbol] = ACTIONS(1861),
- [anon_sym_object] = ACTIONS(1861),
- [anon_sym_abstract] = ACTIONS(1861),
- [anon_sym_satisfies] = ACTIONS(1863),
- [anon_sym_interface] = ACTIONS(1861),
- [anon_sym_enum] = ACTIONS(1861),
- [sym__automatic_semicolon] = ACTIONS(1867),
- [sym__ternary_qmark] = ACTIONS(1865),
- [sym_html_comment] = ACTIONS(5),
- },
- [238] = {
- [sym_import] = STATE(3334),
- [sym_parenthesized_expression] = STATE(1179),
- [sym_expression] = STATE(2415),
- [sym_primary_expression] = STATE(1468),
- [sym_yield_expression] = STATE(1634),
- [sym_object] = STATE(1650),
- [sym_object_pattern] = STATE(3588),
- [sym_assignment_pattern] = STATE(4906),
- [sym_array] = STATE(1650),
- [sym_array_pattern] = STATE(3588),
- [sym_glimmer_template] = STATE(1634),
- [sym_jsx_element] = STATE(1634),
- [sym_jsx_opening_element] = STATE(3026),
- [sym_jsx_self_closing_element] = STATE(1634),
- [sym_class] = STATE(1650),
- [sym_function_expression] = STATE(1650),
- [sym_generator_function] = STATE(1650),
- [sym_arrow_function] = STATE(1650),
- [sym__call_signature] = STATE(5619),
- [sym_call_expression] = STATE(1650),
- [sym_new_expression] = STATE(1634),
- [sym_await_expression] = STATE(1634),
- [sym_member_expression] = STATE(1221),
- [sym_subscript_expression] = STATE(1221),
- [sym_assignment_expression] = STATE(1634),
- [sym__augmented_assignment_lhs] = STATE(2878),
- [sym_augmented_assignment_expression] = STATE(1634),
- [sym__destructuring_pattern] = STATE(3588),
- [sym_ternary_expression] = STATE(1634),
- [sym_binary_expression] = STATE(1634),
- [sym_unary_expression] = STATE(1634),
- [sym_update_expression] = STATE(1634),
- [sym_string] = STATE(1650),
- [sym_template_string] = STATE(1650),
- [sym_regex] = STATE(1650),
- [sym_meta_property] = STATE(1650),
- [sym_decorator] = STATE(1244),
- [sym_formal_parameters] = STATE(3742),
- [sym_pattern] = STATE(4468),
- [sym_rest_pattern] = STATE(3700),
- [sym_non_null_expression] = STATE(1221),
- [sym_as_expression] = STATE(1634),
- [sym_satisfies_expression] = STATE(1634),
- [sym_instantiation_expression] = STATE(1634),
- [sym_internal_module] = STATE(1634),
- [sym_type_parameters] = STATE(5349),
- [aux_sym_export_statement_repeat1] = STATE(4458),
- [aux_sym_array_pattern_repeat1] = STATE(4923),
- [sym_identifier] = ACTIONS(769),
- [anon_sym_export] = ACTIONS(115),
- [anon_sym_type] = ACTIONS(115),
- [anon_sym_namespace] = ACTIONS(124),
- [anon_sym_LBRACE] = ACTIONS(771),
- [anon_sym_COMMA] = ACTIONS(1700),
- [anon_sym_typeof] = ACTIONS(187),
- [anon_sym_import] = ACTIONS(133),
- [anon_sym_let] = ACTIONS(115),
- [anon_sym_BANG] = ACTIONS(183),
- [anon_sym_LPAREN] = ACTIONS(815),
- [anon_sym_await] = ACTIONS(142),
- [anon_sym_yield] = ACTIONS(144),
- [anon_sym_LBRACK] = ACTIONS(1630),
- [anon_sym_RBRACK] = ACTIONS(1869),
- [sym_glimmer_opening_tag] = ACTIONS(148),
- [anon_sym_DQUOTE] = ACTIONS(150),
- [anon_sym_SQUOTE] = ACTIONS(152),
- [anon_sym_class] = ACTIONS(154),
- [anon_sym_async] = ACTIONS(156),
- [anon_sym_function] = ACTIONS(158),
- [anon_sym_new] = ACTIONS(779),
- [anon_sym_using] = ACTIONS(166),
- [anon_sym_DOT_DOT_DOT] = ACTIONS(170),
- [anon_sym_PLUS] = ACTIONS(187),
- [anon_sym_DASH] = ACTIONS(187),
- [anon_sym_SLASH] = ACTIONS(646),
- [anon_sym_LT] = ACTIONS(181),
- [anon_sym_TILDE] = ACTIONS(183),
- [anon_sym_void] = ACTIONS(187),
- [anon_sym_delete] = ACTIONS(187),
- [anon_sym_PLUS_PLUS] = ACTIONS(719),
- [anon_sym_DASH_DASH] = ACTIONS(719),
- [sym_comment] = ACTIONS(5),
- [anon_sym_BQUOTE] = ACTIONS(825),
- [sym_number] = ACTIONS(787),
- [sym_private_property_identifier] = ACTIONS(196),
- [sym_this] = ACTIONS(200),
- [sym_super] = ACTIONS(200),
- [sym_true] = ACTIONS(200),
- [sym_false] = ACTIONS(200),
- [sym_null] = ACTIONS(200),
- [sym_undefined] = ACTIONS(791),
- [anon_sym_AT] = ACTIONS(99),
- [anon_sym_static] = ACTIONS(115),
- [anon_sym_readonly] = ACTIONS(115),
- [anon_sym_get] = ACTIONS(115),
- [anon_sym_set] = ACTIONS(115),
- [anon_sym_declare] = ACTIONS(115),
- [anon_sym_public] = ACTIONS(115),
- [anon_sym_private] = ACTIONS(115),
- [anon_sym_protected] = ACTIONS(115),
- [anon_sym_override] = ACTIONS(115),
- [anon_sym_module] = ACTIONS(115),
- [anon_sym_any] = ACTIONS(115),
- [anon_sym_number] = ACTIONS(115),
- [anon_sym_boolean] = ACTIONS(115),
- [anon_sym_string] = ACTIONS(115),
- [anon_sym_symbol] = ACTIONS(115),
- [anon_sym_object] = ACTIONS(115),
- [sym_html_comment] = ACTIONS(5),
- },
- [239] = {
- [ts_builtin_sym_end] = ACTIONS(1871),
- [sym_identifier] = ACTIONS(1873),
- [anon_sym_export] = ACTIONS(1873),
- [anon_sym_STAR] = ACTIONS(1873),
- [anon_sym_default] = ACTIONS(1873),
- [anon_sym_type] = ACTIONS(1873),
- [anon_sym_as] = ACTIONS(1873),
- [anon_sym_namespace] = ACTIONS(1873),
- [anon_sym_LBRACE] = ACTIONS(1871),
- [anon_sym_COMMA] = ACTIONS(1871),
- [anon_sym_RBRACE] = ACTIONS(1871),
- [anon_sym_typeof] = ACTIONS(1873),
- [anon_sym_import] = ACTIONS(1873),
- [anon_sym_with] = ACTIONS(1873),
- [anon_sym_var] = ACTIONS(1873),
- [anon_sym_let] = ACTIONS(1873),
- [anon_sym_const] = ACTIONS(1873),
- [anon_sym_BANG] = ACTIONS(1873),
- [anon_sym_else] = ACTIONS(1873),
- [anon_sym_if] = ACTIONS(1873),
- [anon_sym_switch] = ACTIONS(1873),
- [anon_sym_for] = ACTIONS(1873),
- [anon_sym_LPAREN] = ACTIONS(1871),
- [anon_sym_await] = ACTIONS(1873),
- [anon_sym_in] = ACTIONS(1873),
- [anon_sym_while] = ACTIONS(1873),
- [anon_sym_do] = ACTIONS(1873),
- [anon_sym_try] = ACTIONS(1873),
- [anon_sym_break] = ACTIONS(1873),
- [anon_sym_continue] = ACTIONS(1873),
- [anon_sym_debugger] = ACTIONS(1873),
- [anon_sym_return] = ACTIONS(1873),
- [anon_sym_throw] = ACTIONS(1873),
- [anon_sym_SEMI] = ACTIONS(1871),
- [anon_sym_case] = ACTIONS(1873),
- [anon_sym_yield] = ACTIONS(1873),
- [anon_sym_LBRACK] = ACTIONS(1871),
- [sym_glimmer_opening_tag] = ACTIONS(1871),
- [anon_sym_GT] = ACTIONS(1873),
- [anon_sym_DOT] = ACTIONS(1873),
- [anon_sym_DQUOTE] = ACTIONS(1871),
- [anon_sym_SQUOTE] = ACTIONS(1871),
- [anon_sym_class] = ACTIONS(1873),
- [anon_sym_async] = ACTIONS(1873),
- [anon_sym_function] = ACTIONS(1873),
- [anon_sym_QMARK_DOT] = ACTIONS(1871),
- [anon_sym_new] = ACTIONS(1873),
- [anon_sym_using] = ACTIONS(1873),
- [anon_sym_AMP_AMP] = ACTIONS(1871),
- [anon_sym_PIPE_PIPE] = ACTIONS(1871),
- [anon_sym_GT_GT] = ACTIONS(1873),
- [anon_sym_GT_GT_GT] = ACTIONS(1871),
- [anon_sym_LT_LT] = ACTIONS(1871),
- [anon_sym_AMP] = ACTIONS(1873),
- [anon_sym_CARET] = ACTIONS(1871),
- [anon_sym_PIPE] = ACTIONS(1873),
- [anon_sym_PLUS] = ACTIONS(1873),
- [anon_sym_DASH] = ACTIONS(1873),
- [anon_sym_SLASH] = ACTIONS(1873),
- [anon_sym_PERCENT] = ACTIONS(1871),
- [anon_sym_STAR_STAR] = ACTIONS(1871),
- [anon_sym_LT] = ACTIONS(1873),
- [anon_sym_LT_EQ] = ACTIONS(1871),
- [anon_sym_EQ_EQ] = ACTIONS(1873),
- [anon_sym_EQ_EQ_EQ] = ACTIONS(1871),
- [anon_sym_BANG_EQ] = ACTIONS(1873),
- [anon_sym_BANG_EQ_EQ] = ACTIONS(1871),
- [anon_sym_GT_EQ] = ACTIONS(1871),
- [anon_sym_QMARK_QMARK] = ACTIONS(1871),
- [anon_sym_instanceof] = ACTIONS(1873),
- [anon_sym_TILDE] = ACTIONS(1871),
- [anon_sym_void] = ACTIONS(1873),
- [anon_sym_delete] = ACTIONS(1873),
- [anon_sym_PLUS_PLUS] = ACTIONS(1871),
- [anon_sym_DASH_DASH] = ACTIONS(1871),
- [sym_comment] = ACTIONS(5),
- [anon_sym_BQUOTE] = ACTIONS(1871),
- [sym_number] = ACTIONS(1871),
- [sym_private_property_identifier] = ACTIONS(1871),
- [sym_this] = ACTIONS(1873),
- [sym_super] = ACTIONS(1873),
- [sym_true] = ACTIONS(1873),
- [sym_false] = ACTIONS(1873),
- [sym_null] = ACTIONS(1873),
- [sym_undefined] = ACTIONS(1873),
- [anon_sym_AT] = ACTIONS(1871),
- [anon_sym_static] = ACTIONS(1873),
- [anon_sym_readonly] = ACTIONS(1873),
- [anon_sym_get] = ACTIONS(1873),
- [anon_sym_set] = ACTIONS(1873),
- [anon_sym_declare] = ACTIONS(1873),
- [anon_sym_public] = ACTIONS(1873),
- [anon_sym_private] = ACTIONS(1873),
- [anon_sym_protected] = ACTIONS(1873),
- [anon_sym_override] = ACTIONS(1873),
- [anon_sym_module] = ACTIONS(1873),
- [anon_sym_any] = ACTIONS(1873),
- [anon_sym_number] = ACTIONS(1873),
- [anon_sym_boolean] = ACTIONS(1873),
- [anon_sym_string] = ACTIONS(1873),
- [anon_sym_symbol] = ACTIONS(1873),
- [anon_sym_object] = ACTIONS(1873),
- [anon_sym_abstract] = ACTIONS(1873),
- [anon_sym_satisfies] = ACTIONS(1873),
- [anon_sym_interface] = ACTIONS(1873),
- [anon_sym_enum] = ACTIONS(1873),
- [sym__automatic_semicolon] = ACTIONS(1871),
- [sym__ternary_qmark] = ACTIONS(1871),
- [sym_html_comment] = ACTIONS(5),
- },
- [240] = {
- [ts_builtin_sym_end] = ACTIONS(1875),
- [sym_identifier] = ACTIONS(1877),
- [anon_sym_export] = ACTIONS(1877),
- [anon_sym_STAR] = ACTIONS(1879),
- [anon_sym_default] = ACTIONS(1877),
- [anon_sym_type] = ACTIONS(1877),
- [anon_sym_as] = ACTIONS(1879),
- [anon_sym_namespace] = ACTIONS(1877),
- [anon_sym_LBRACE] = ACTIONS(1875),
- [anon_sym_COMMA] = ACTIONS(1881),
- [anon_sym_RBRACE] = ACTIONS(1875),
- [anon_sym_typeof] = ACTIONS(1877),
- [anon_sym_import] = ACTIONS(1877),
- [anon_sym_with] = ACTIONS(1877),
- [anon_sym_var] = ACTIONS(1877),
- [anon_sym_let] = ACTIONS(1877),
- [anon_sym_const] = ACTIONS(1877),
- [anon_sym_BANG] = ACTIONS(1877),
- [anon_sym_else] = ACTIONS(1877),
- [anon_sym_if] = ACTIONS(1877),
- [anon_sym_switch] = ACTIONS(1877),
- [anon_sym_for] = ACTIONS(1877),
- [anon_sym_LPAREN] = ACTIONS(1875),
- [anon_sym_await] = ACTIONS(1877),
- [anon_sym_in] = ACTIONS(1879),
- [anon_sym_while] = ACTIONS(1877),
- [anon_sym_do] = ACTIONS(1877),
- [anon_sym_try] = ACTIONS(1877),
- [anon_sym_break] = ACTIONS(1877),
- [anon_sym_continue] = ACTIONS(1877),
- [anon_sym_debugger] = ACTIONS(1877),
- [anon_sym_return] = ACTIONS(1877),
- [anon_sym_throw] = ACTIONS(1877),
- [anon_sym_SEMI] = ACTIONS(1875),
- [anon_sym_case] = ACTIONS(1877),
- [anon_sym_yield] = ACTIONS(1877),
- [anon_sym_LBRACK] = ACTIONS(1875),
- [sym_glimmer_opening_tag] = ACTIONS(1875),
- [anon_sym_GT] = ACTIONS(1879),
- [anon_sym_DOT] = ACTIONS(1879),
- [anon_sym_DQUOTE] = ACTIONS(1875),
- [anon_sym_SQUOTE] = ACTIONS(1875),
- [anon_sym_class] = ACTIONS(1877),
- [anon_sym_async] = ACTIONS(1877),
- [anon_sym_function] = ACTIONS(1877),
- [anon_sym_QMARK_DOT] = ACTIONS(1881),
- [anon_sym_new] = ACTIONS(1877),
- [anon_sym_using] = ACTIONS(1877),
- [anon_sym_AMP_AMP] = ACTIONS(1881),
- [anon_sym_PIPE_PIPE] = ACTIONS(1881),
- [anon_sym_GT_GT] = ACTIONS(1879),
- [anon_sym_GT_GT_GT] = ACTIONS(1881),
- [anon_sym_LT_LT] = ACTIONS(1881),
- [anon_sym_AMP] = ACTIONS(1879),
- [anon_sym_CARET] = ACTIONS(1881),
- [anon_sym_PIPE] = ACTIONS(1879),
- [anon_sym_PLUS] = ACTIONS(1877),
- [anon_sym_DASH] = ACTIONS(1877),
- [anon_sym_SLASH] = ACTIONS(1877),
- [anon_sym_PERCENT] = ACTIONS(1881),
- [anon_sym_STAR_STAR] = ACTIONS(1881),
- [anon_sym_LT] = ACTIONS(1877),
- [anon_sym_LT_EQ] = ACTIONS(1881),
- [anon_sym_EQ_EQ] = ACTIONS(1879),
- [anon_sym_EQ_EQ_EQ] = ACTIONS(1881),
- [anon_sym_BANG_EQ] = ACTIONS(1879),
- [anon_sym_BANG_EQ_EQ] = ACTIONS(1881),
- [anon_sym_GT_EQ] = ACTIONS(1881),
- [anon_sym_QMARK_QMARK] = ACTIONS(1881),
- [anon_sym_instanceof] = ACTIONS(1879),
- [anon_sym_TILDE] = ACTIONS(1875),
- [anon_sym_void] = ACTIONS(1877),
- [anon_sym_delete] = ACTIONS(1877),
- [anon_sym_PLUS_PLUS] = ACTIONS(1875),
- [anon_sym_DASH_DASH] = ACTIONS(1875),
- [sym_comment] = ACTIONS(5),
- [anon_sym_BQUOTE] = ACTIONS(1875),
- [sym_number] = ACTIONS(1875),
- [sym_private_property_identifier] = ACTIONS(1875),
- [sym_this] = ACTIONS(1877),
- [sym_super] = ACTIONS(1877),
- [sym_true] = ACTIONS(1877),
- [sym_false] = ACTIONS(1877),
- [sym_null] = ACTIONS(1877),
- [sym_undefined] = ACTIONS(1877),
- [anon_sym_AT] = ACTIONS(1875),
- [anon_sym_static] = ACTIONS(1877),
- [anon_sym_readonly] = ACTIONS(1877),
- [anon_sym_get] = ACTIONS(1877),
- [anon_sym_set] = ACTIONS(1877),
- [anon_sym_declare] = ACTIONS(1877),
- [anon_sym_public] = ACTIONS(1877),
- [anon_sym_private] = ACTIONS(1877),
- [anon_sym_protected] = ACTIONS(1877),
- [anon_sym_override] = ACTIONS(1877),
- [anon_sym_module] = ACTIONS(1877),
- [anon_sym_any] = ACTIONS(1877),
- [anon_sym_number] = ACTIONS(1877),
- [anon_sym_boolean] = ACTIONS(1877),
- [anon_sym_string] = ACTIONS(1877),
- [anon_sym_symbol] = ACTIONS(1877),
- [anon_sym_object] = ACTIONS(1877),
- [anon_sym_abstract] = ACTIONS(1877),
- [anon_sym_satisfies] = ACTIONS(1879),
- [anon_sym_interface] = ACTIONS(1877),
- [anon_sym_enum] = ACTIONS(1877),
- [sym__automatic_semicolon] = ACTIONS(1883),
- [sym__ternary_qmark] = ACTIONS(1881),
- [sym_html_comment] = ACTIONS(5),
- },
- [241] = {
- [ts_builtin_sym_end] = ACTIONS(1885),
- [sym_identifier] = ACTIONS(1887),
- [anon_sym_export] = ACTIONS(1887),
- [anon_sym_STAR] = ACTIONS(1889),
- [anon_sym_default] = ACTIONS(1887),
- [anon_sym_type] = ACTIONS(1887),
- [anon_sym_as] = ACTIONS(1889),
- [anon_sym_namespace] = ACTIONS(1887),
- [anon_sym_LBRACE] = ACTIONS(1885),
- [anon_sym_COMMA] = ACTIONS(1891),
- [anon_sym_RBRACE] = ACTIONS(1885),
- [anon_sym_typeof] = ACTIONS(1887),
- [anon_sym_import] = ACTIONS(1887),
- [anon_sym_with] = ACTIONS(1887),
- [anon_sym_var] = ACTIONS(1887),
- [anon_sym_let] = ACTIONS(1887),
- [anon_sym_const] = ACTIONS(1887),
- [anon_sym_BANG] = ACTIONS(1887),
- [anon_sym_else] = ACTIONS(1887),
- [anon_sym_if] = ACTIONS(1887),
- [anon_sym_switch] = ACTIONS(1887),
- [anon_sym_for] = ACTIONS(1887),
- [anon_sym_LPAREN] = ACTIONS(1885),
- [anon_sym_await] = ACTIONS(1887),
- [anon_sym_in] = ACTIONS(1889),
- [anon_sym_while] = ACTIONS(1887),
- [anon_sym_do] = ACTIONS(1887),
- [anon_sym_try] = ACTIONS(1887),
- [anon_sym_break] = ACTIONS(1887),
- [anon_sym_continue] = ACTIONS(1887),
- [anon_sym_debugger] = ACTIONS(1887),
- [anon_sym_return] = ACTIONS(1887),
- [anon_sym_throw] = ACTIONS(1887),
- [anon_sym_SEMI] = ACTIONS(1885),
- [anon_sym_case] = ACTIONS(1887),
- [anon_sym_yield] = ACTIONS(1887),
- [anon_sym_LBRACK] = ACTIONS(1885),
- [sym_glimmer_opening_tag] = ACTIONS(1885),
- [anon_sym_GT] = ACTIONS(1889),
- [anon_sym_DOT] = ACTIONS(1889),
- [anon_sym_DQUOTE] = ACTIONS(1885),
- [anon_sym_SQUOTE] = ACTIONS(1885),
- [anon_sym_class] = ACTIONS(1887),
- [anon_sym_async] = ACTIONS(1887),
- [anon_sym_function] = ACTIONS(1887),
- [anon_sym_QMARK_DOT] = ACTIONS(1891),
- [anon_sym_new] = ACTIONS(1887),
- [anon_sym_using] = ACTIONS(1887),
- [anon_sym_AMP_AMP] = ACTIONS(1891),
- [anon_sym_PIPE_PIPE] = ACTIONS(1891),
- [anon_sym_GT_GT] = ACTIONS(1889),
- [anon_sym_GT_GT_GT] = ACTIONS(1891),
- [anon_sym_LT_LT] = ACTIONS(1891),
- [anon_sym_AMP] = ACTIONS(1889),
- [anon_sym_CARET] = ACTIONS(1891),
- [anon_sym_PIPE] = ACTIONS(1889),
- [anon_sym_PLUS] = ACTIONS(1887),
- [anon_sym_DASH] = ACTIONS(1887),
- [anon_sym_SLASH] = ACTIONS(1887),
- [anon_sym_PERCENT] = ACTIONS(1891),
- [anon_sym_STAR_STAR] = ACTIONS(1891),
- [anon_sym_LT] = ACTIONS(1887),
- [anon_sym_LT_EQ] = ACTIONS(1891),
- [anon_sym_EQ_EQ] = ACTIONS(1889),
- [anon_sym_EQ_EQ_EQ] = ACTIONS(1891),
- [anon_sym_BANG_EQ] = ACTIONS(1889),
- [anon_sym_BANG_EQ_EQ] = ACTIONS(1891),
- [anon_sym_GT_EQ] = ACTIONS(1891),
- [anon_sym_QMARK_QMARK] = ACTIONS(1891),
- [anon_sym_instanceof] = ACTIONS(1889),
- [anon_sym_TILDE] = ACTIONS(1885),
- [anon_sym_void] = ACTIONS(1887),
- [anon_sym_delete] = ACTIONS(1887),
- [anon_sym_PLUS_PLUS] = ACTIONS(1885),
- [anon_sym_DASH_DASH] = ACTIONS(1885),
- [sym_comment] = ACTIONS(5),
- [anon_sym_BQUOTE] = ACTIONS(1885),
- [sym_number] = ACTIONS(1885),
- [sym_private_property_identifier] = ACTIONS(1885),
- [sym_this] = ACTIONS(1887),
- [sym_super] = ACTIONS(1887),
- [sym_true] = ACTIONS(1887),
- [sym_false] = ACTIONS(1887),
- [sym_null] = ACTIONS(1887),
- [sym_undefined] = ACTIONS(1887),
- [anon_sym_AT] = ACTIONS(1885),
- [anon_sym_static] = ACTIONS(1887),
- [anon_sym_readonly] = ACTIONS(1887),
- [anon_sym_get] = ACTIONS(1887),
- [anon_sym_set] = ACTIONS(1887),
- [anon_sym_declare] = ACTIONS(1887),
- [anon_sym_public] = ACTIONS(1887),
- [anon_sym_private] = ACTIONS(1887),
- [anon_sym_protected] = ACTIONS(1887),
- [anon_sym_override] = ACTIONS(1887),
- [anon_sym_module] = ACTIONS(1887),
- [anon_sym_any] = ACTIONS(1887),
- [anon_sym_number] = ACTIONS(1887),
- [anon_sym_boolean] = ACTIONS(1887),
- [anon_sym_string] = ACTIONS(1887),
- [anon_sym_symbol] = ACTIONS(1887),
- [anon_sym_object] = ACTIONS(1887),
- [anon_sym_abstract] = ACTIONS(1887),
- [anon_sym_satisfies] = ACTIONS(1889),
- [anon_sym_interface] = ACTIONS(1887),
- [anon_sym_enum] = ACTIONS(1887),
- [sym__automatic_semicolon] = ACTIONS(1893),
- [sym__ternary_qmark] = ACTIONS(1891),
- [sym_html_comment] = ACTIONS(5),
- },
- [242] = {
- [ts_builtin_sym_end] = ACTIONS(1895),
- [sym_identifier] = ACTIONS(1897),
- [anon_sym_export] = ACTIONS(1897),
- [anon_sym_STAR] = ACTIONS(1899),
- [anon_sym_default] = ACTIONS(1897),
- [anon_sym_type] = ACTIONS(1897),
- [anon_sym_as] = ACTIONS(1899),
- [anon_sym_namespace] = ACTIONS(1897),
- [anon_sym_LBRACE] = ACTIONS(1895),
- [anon_sym_COMMA] = ACTIONS(1901),
- [anon_sym_RBRACE] = ACTIONS(1895),
- [anon_sym_typeof] = ACTIONS(1897),
- [anon_sym_import] = ACTIONS(1897),
- [anon_sym_with] = ACTIONS(1897),
- [anon_sym_var] = ACTIONS(1897),
- [anon_sym_let] = ACTIONS(1897),
- [anon_sym_const] = ACTIONS(1897),
- [anon_sym_BANG] = ACTIONS(1897),
- [anon_sym_else] = ACTIONS(1897),
- [anon_sym_if] = ACTIONS(1897),
- [anon_sym_switch] = ACTIONS(1897),
- [anon_sym_for] = ACTIONS(1897),
- [anon_sym_LPAREN] = ACTIONS(1895),
- [anon_sym_await] = ACTIONS(1897),
- [anon_sym_in] = ACTIONS(1899),
- [anon_sym_while] = ACTIONS(1897),
- [anon_sym_do] = ACTIONS(1897),
- [anon_sym_try] = ACTIONS(1897),
- [anon_sym_break] = ACTIONS(1897),
- [anon_sym_continue] = ACTIONS(1897),
- [anon_sym_debugger] = ACTIONS(1897),
- [anon_sym_return] = ACTIONS(1897),
- [anon_sym_throw] = ACTIONS(1897),
- [anon_sym_SEMI] = ACTIONS(1895),
- [anon_sym_case] = ACTIONS(1897),
- [anon_sym_yield] = ACTIONS(1897),
- [anon_sym_LBRACK] = ACTIONS(1895),
- [sym_glimmer_opening_tag] = ACTIONS(1895),
- [anon_sym_GT] = ACTIONS(1899),
- [anon_sym_DOT] = ACTIONS(1899),
- [anon_sym_DQUOTE] = ACTIONS(1895),
- [anon_sym_SQUOTE] = ACTIONS(1895),
- [anon_sym_class] = ACTIONS(1897),
- [anon_sym_async] = ACTIONS(1897),
- [anon_sym_function] = ACTIONS(1897),
- [anon_sym_QMARK_DOT] = ACTIONS(1901),
- [anon_sym_new] = ACTIONS(1897),
- [anon_sym_using] = ACTIONS(1897),
- [anon_sym_AMP_AMP] = ACTIONS(1901),
- [anon_sym_PIPE_PIPE] = ACTIONS(1901),
- [anon_sym_GT_GT] = ACTIONS(1899),
- [anon_sym_GT_GT_GT] = ACTIONS(1901),
- [anon_sym_LT_LT] = ACTIONS(1901),
- [anon_sym_AMP] = ACTIONS(1899),
- [anon_sym_CARET] = ACTIONS(1901),
- [anon_sym_PIPE] = ACTIONS(1899),
- [anon_sym_PLUS] = ACTIONS(1897),
- [anon_sym_DASH] = ACTIONS(1897),
- [anon_sym_SLASH] = ACTIONS(1897),
- [anon_sym_PERCENT] = ACTIONS(1901),
- [anon_sym_STAR_STAR] = ACTIONS(1901),
- [anon_sym_LT] = ACTIONS(1897),
- [anon_sym_LT_EQ] = ACTIONS(1901),
- [anon_sym_EQ_EQ] = ACTIONS(1899),
- [anon_sym_EQ_EQ_EQ] = ACTIONS(1901),
- [anon_sym_BANG_EQ] = ACTIONS(1899),
- [anon_sym_BANG_EQ_EQ] = ACTIONS(1901),
- [anon_sym_GT_EQ] = ACTIONS(1901),
- [anon_sym_QMARK_QMARK] = ACTIONS(1901),
- [anon_sym_instanceof] = ACTIONS(1899),
- [anon_sym_TILDE] = ACTIONS(1895),
- [anon_sym_void] = ACTIONS(1897),
- [anon_sym_delete] = ACTIONS(1897),
- [anon_sym_PLUS_PLUS] = ACTIONS(1895),
- [anon_sym_DASH_DASH] = ACTIONS(1895),
- [sym_comment] = ACTIONS(5),
- [anon_sym_BQUOTE] = ACTIONS(1895),
- [sym_number] = ACTIONS(1895),
- [sym_private_property_identifier] = ACTIONS(1895),
- [sym_this] = ACTIONS(1897),
- [sym_super] = ACTIONS(1897),
- [sym_true] = ACTIONS(1897),
- [sym_false] = ACTIONS(1897),
- [sym_null] = ACTIONS(1897),
- [sym_undefined] = ACTIONS(1897),
- [anon_sym_AT] = ACTIONS(1895),
- [anon_sym_static] = ACTIONS(1897),
- [anon_sym_readonly] = ACTIONS(1897),
- [anon_sym_get] = ACTIONS(1897),
- [anon_sym_set] = ACTIONS(1897),
- [anon_sym_declare] = ACTIONS(1897),
- [anon_sym_public] = ACTIONS(1897),
- [anon_sym_private] = ACTIONS(1897),
- [anon_sym_protected] = ACTIONS(1897),
- [anon_sym_override] = ACTIONS(1897),
- [anon_sym_module] = ACTIONS(1897),
- [anon_sym_any] = ACTIONS(1897),
- [anon_sym_number] = ACTIONS(1897),
- [anon_sym_boolean] = ACTIONS(1897),
- [anon_sym_string] = ACTIONS(1897),
- [anon_sym_symbol] = ACTIONS(1897),
- [anon_sym_object] = ACTIONS(1897),
- [anon_sym_abstract] = ACTIONS(1897),
- [anon_sym_satisfies] = ACTIONS(1899),
- [anon_sym_interface] = ACTIONS(1897),
- [anon_sym_enum] = ACTIONS(1897),
- [sym__automatic_semicolon] = ACTIONS(1903),
- [sym__ternary_qmark] = ACTIONS(1901),
- [sym_html_comment] = ACTIONS(5),
- },
- [243] = {
- [ts_builtin_sym_end] = ACTIONS(1871),
- [sym_identifier] = ACTIONS(1873),
- [anon_sym_export] = ACTIONS(1873),
- [anon_sym_STAR] = ACTIONS(1873),
- [anon_sym_default] = ACTIONS(1873),
- [anon_sym_type] = ACTIONS(1873),
- [anon_sym_as] = ACTIONS(1873),
- [anon_sym_namespace] = ACTIONS(1873),
- [anon_sym_LBRACE] = ACTIONS(1871),
- [anon_sym_COMMA] = ACTIONS(1871),
- [anon_sym_RBRACE] = ACTIONS(1871),
- [anon_sym_typeof] = ACTIONS(1873),
- [anon_sym_import] = ACTIONS(1873),
- [anon_sym_with] = ACTIONS(1873),
- [anon_sym_var] = ACTIONS(1873),
- [anon_sym_let] = ACTIONS(1873),
- [anon_sym_const] = ACTIONS(1873),
- [anon_sym_BANG] = ACTIONS(1873),
- [anon_sym_else] = ACTIONS(1873),
- [anon_sym_if] = ACTIONS(1873),
- [anon_sym_switch] = ACTIONS(1873),
- [anon_sym_for] = ACTIONS(1873),
- [anon_sym_LPAREN] = ACTIONS(1871),
- [anon_sym_await] = ACTIONS(1873),
- [anon_sym_in] = ACTIONS(1873),
- [anon_sym_while] = ACTIONS(1873),
- [anon_sym_do] = ACTIONS(1873),
- [anon_sym_try] = ACTIONS(1873),
- [anon_sym_break] = ACTIONS(1873),
- [anon_sym_continue] = ACTIONS(1873),
- [anon_sym_debugger] = ACTIONS(1873),
- [anon_sym_return] = ACTIONS(1873),
- [anon_sym_throw] = ACTIONS(1873),
- [anon_sym_SEMI] = ACTIONS(1871),
- [anon_sym_case] = ACTIONS(1873),
- [anon_sym_yield] = ACTIONS(1873),
- [anon_sym_LBRACK] = ACTIONS(1871),
- [sym_glimmer_opening_tag] = ACTIONS(1871),
- [anon_sym_GT] = ACTIONS(1873),
- [anon_sym_DOT] = ACTIONS(1873),
- [anon_sym_DQUOTE] = ACTIONS(1871),
- [anon_sym_SQUOTE] = ACTIONS(1871),
- [anon_sym_class] = ACTIONS(1873),
- [anon_sym_async] = ACTIONS(1873),
- [anon_sym_function] = ACTIONS(1873),
- [anon_sym_QMARK_DOT] = ACTIONS(1871),
- [anon_sym_new] = ACTIONS(1873),
- [anon_sym_using] = ACTIONS(1873),
- [anon_sym_AMP_AMP] = ACTIONS(1871),
- [anon_sym_PIPE_PIPE] = ACTIONS(1871),
- [anon_sym_GT_GT] = ACTIONS(1873),
- [anon_sym_GT_GT_GT] = ACTIONS(1871),
- [anon_sym_LT_LT] = ACTIONS(1871),
- [anon_sym_AMP] = ACTIONS(1873),
- [anon_sym_CARET] = ACTIONS(1871),
- [anon_sym_PIPE] = ACTIONS(1873),
- [anon_sym_PLUS] = ACTIONS(1873),
- [anon_sym_DASH] = ACTIONS(1873),
- [anon_sym_SLASH] = ACTIONS(1873),
- [anon_sym_PERCENT] = ACTIONS(1871),
- [anon_sym_STAR_STAR] = ACTIONS(1871),
- [anon_sym_LT] = ACTIONS(1873),
- [anon_sym_LT_EQ] = ACTIONS(1871),
- [anon_sym_EQ_EQ] = ACTIONS(1873),
- [anon_sym_EQ_EQ_EQ] = ACTIONS(1871),
- [anon_sym_BANG_EQ] = ACTIONS(1873),
- [anon_sym_BANG_EQ_EQ] = ACTIONS(1871),
- [anon_sym_GT_EQ] = ACTIONS(1871),
- [anon_sym_QMARK_QMARK] = ACTIONS(1871),
- [anon_sym_instanceof] = ACTIONS(1873),
- [anon_sym_TILDE] = ACTIONS(1871),
- [anon_sym_void] = ACTIONS(1873),
- [anon_sym_delete] = ACTIONS(1873),
- [anon_sym_PLUS_PLUS] = ACTIONS(1871),
- [anon_sym_DASH_DASH] = ACTIONS(1871),
- [sym_comment] = ACTIONS(5),
- [anon_sym_BQUOTE] = ACTIONS(1871),
- [sym_number] = ACTIONS(1871),
- [sym_private_property_identifier] = ACTIONS(1871),
- [sym_this] = ACTIONS(1873),
- [sym_super] = ACTIONS(1873),
- [sym_true] = ACTIONS(1873),
- [sym_false] = ACTIONS(1873),
- [sym_null] = ACTIONS(1873),
- [sym_undefined] = ACTIONS(1873),
- [anon_sym_AT] = ACTIONS(1871),
- [anon_sym_static] = ACTIONS(1873),
- [anon_sym_readonly] = ACTIONS(1873),
- [anon_sym_get] = ACTIONS(1873),
- [anon_sym_set] = ACTIONS(1873),
- [anon_sym_declare] = ACTIONS(1873),
- [anon_sym_public] = ACTIONS(1873),
- [anon_sym_private] = ACTIONS(1873),
- [anon_sym_protected] = ACTIONS(1873),
- [anon_sym_override] = ACTIONS(1873),
- [anon_sym_module] = ACTIONS(1873),
- [anon_sym_any] = ACTIONS(1873),
- [anon_sym_number] = ACTIONS(1873),
- [anon_sym_boolean] = ACTIONS(1873),
- [anon_sym_string] = ACTIONS(1873),
- [anon_sym_symbol] = ACTIONS(1873),
- [anon_sym_object] = ACTIONS(1873),
- [anon_sym_abstract] = ACTIONS(1873),
- [anon_sym_satisfies] = ACTIONS(1873),
- [anon_sym_interface] = ACTIONS(1873),
- [anon_sym_enum] = ACTIONS(1873),
- [sym__automatic_semicolon] = ACTIONS(1905),
- [sym__ternary_qmark] = ACTIONS(1871),
- [sym_html_comment] = ACTIONS(5),
- },
- [244] = {
- [sym_import] = STATE(3334),
- [sym_parenthesized_expression] = STATE(1369),
- [sym_expression] = STATE(2199),
- [sym_primary_expression] = STATE(1468),
- [sym_yield_expression] = STATE(1634),
- [sym_object] = STATE(1650),
- [sym_object_pattern] = STATE(5144),
- [sym_assignment_pattern] = STATE(5148),
- [sym_array] = STATE(1650),
- [sym_array_pattern] = STATE(5144),
- [sym_glimmer_template] = STATE(1634),
- [sym_jsx_element] = STATE(1634),
- [sym_jsx_opening_element] = STATE(3026),
- [sym_jsx_self_closing_element] = STATE(1634),
- [sym_class] = STATE(1650),
- [sym_function_expression] = STATE(1650),
- [sym_generator_function] = STATE(1650),
- [sym_arrow_function] = STATE(1650),
- [sym__call_signature] = STATE(5765),
- [sym_call_expression] = STATE(1650),
- [sym_new_expression] = STATE(1634),
- [sym_await_expression] = STATE(1634),
- [sym_member_expression] = STATE(1344),
- [sym_subscript_expression] = STATE(1344),
- [sym_assignment_expression] = STATE(1634),
- [sym__augmented_assignment_lhs] = STATE(2891),
- [sym_augmented_assignment_expression] = STATE(1634),
- [sym__destructuring_pattern] = STATE(5144),
- [sym_ternary_expression] = STATE(1634),
- [sym_binary_expression] = STATE(1634),
- [sym_unary_expression] = STATE(1634),
- [sym_update_expression] = STATE(1634),
- [sym_string] = STATE(1650),
- [sym_template_string] = STATE(1650),
- [sym_regex] = STATE(1650),
- [sym_meta_property] = STATE(1650),
- [sym_decorator] = STATE(1244),
- [sym_formal_parameters] = STATE(3742),
- [sym_pattern] = STATE(4544),
- [sym_rest_pattern] = STATE(3700),
- [sym_non_null_expression] = STATE(1344),
- [sym_as_expression] = STATE(1634),
- [sym_satisfies_expression] = STATE(1634),
- [sym_instantiation_expression] = STATE(1634),
- [sym_internal_module] = STATE(1634),
- [sym_type_parameters] = STATE(5349),
- [aux_sym_export_statement_repeat1] = STATE(4458),
- [aux_sym_array_pattern_repeat1] = STATE(5165),
- [sym_identifier] = ACTIONS(1907),
- [anon_sym_export] = ACTIONS(1909),
- [anon_sym_type] = ACTIONS(1909),
- [anon_sym_namespace] = ACTIONS(1911),
- [anon_sym_LBRACE] = ACTIONS(1698),
- [anon_sym_COMMA] = ACTIONS(1700),
- [anon_sym_typeof] = ACTIONS(1138),
- [anon_sym_import] = ACTIONS(133),
- [anon_sym_let] = ACTIONS(1909),
- [anon_sym_BANG] = ACTIONS(1122),
- [anon_sym_LPAREN] = ACTIONS(815),
- [anon_sym_await] = ACTIONS(1124),
- [anon_sym_yield] = ACTIONS(1126),
- [anon_sym_LBRACK] = ACTIONS(1702),
- [anon_sym_RBRACK] = ACTIONS(1704),
- [sym_glimmer_opening_tag] = ACTIONS(148),
- [anon_sym_DQUOTE] = ACTIONS(150),
- [anon_sym_SQUOTE] = ACTIONS(152),
- [anon_sym_class] = ACTIONS(154),
- [anon_sym_async] = ACTIONS(1913),
- [anon_sym_function] = ACTIONS(158),
- [anon_sym_new] = ACTIONS(1915),
- [anon_sym_using] = ACTIONS(1132),
- [anon_sym_DOT_DOT_DOT] = ACTIONS(170),
- [anon_sym_PLUS] = ACTIONS(1138),
- [anon_sym_DASH] = ACTIONS(1138),
- [anon_sym_SLASH] = ACTIONS(646),
- [anon_sym_LT] = ACTIONS(181),
- [anon_sym_TILDE] = ACTIONS(1122),
- [anon_sym_void] = ACTIONS(1138),
- [anon_sym_delete] = ACTIONS(1138),
- [anon_sym_PLUS_PLUS] = ACTIONS(1140),
- [anon_sym_DASH_DASH] = ACTIONS(1140),
- [sym_comment] = ACTIONS(5),
- [anon_sym_BQUOTE] = ACTIONS(825),
- [sym_number] = ACTIONS(787),
- [sym_private_property_identifier] = ACTIONS(1142),
- [sym_this] = ACTIONS(200),
- [sym_super] = ACTIONS(200),
- [sym_true] = ACTIONS(200),
- [sym_false] = ACTIONS(200),
- [sym_null] = ACTIONS(200),
- [sym_undefined] = ACTIONS(1710),
- [anon_sym_AT] = ACTIONS(99),
- [anon_sym_static] = ACTIONS(1909),
- [anon_sym_readonly] = ACTIONS(1909),
- [anon_sym_get] = ACTIONS(1909),
- [anon_sym_set] = ACTIONS(1909),
- [anon_sym_declare] = ACTIONS(1909),
- [anon_sym_public] = ACTIONS(1909),
- [anon_sym_private] = ACTIONS(1909),
- [anon_sym_protected] = ACTIONS(1909),
- [anon_sym_override] = ACTIONS(1909),
- [anon_sym_module] = ACTIONS(1909),
- [anon_sym_any] = ACTIONS(1909),
- [anon_sym_number] = ACTIONS(1909),
- [anon_sym_boolean] = ACTIONS(1909),
- [anon_sym_string] = ACTIONS(1909),
- [anon_sym_symbol] = ACTIONS(1909),
- [anon_sym_object] = ACTIONS(1909),
- [sym_html_comment] = ACTIONS(5),
- },
- [245] = {
- [ts_builtin_sym_end] = ACTIONS(1917),
- [sym_identifier] = ACTIONS(1919),
- [anon_sym_export] = ACTIONS(1919),
- [anon_sym_STAR] = ACTIONS(1919),
- [anon_sym_default] = ACTIONS(1919),
- [anon_sym_type] = ACTIONS(1919),
- [anon_sym_as] = ACTIONS(1919),
- [anon_sym_namespace] = ACTIONS(1919),
- [anon_sym_LBRACE] = ACTIONS(1917),
- [anon_sym_COMMA] = ACTIONS(1917),
- [anon_sym_RBRACE] = ACTIONS(1917),
- [anon_sym_typeof] = ACTIONS(1919),
- [anon_sym_import] = ACTIONS(1919),
- [anon_sym_with] = ACTIONS(1919),
- [anon_sym_var] = ACTIONS(1919),
- [anon_sym_let] = ACTIONS(1919),
- [anon_sym_const] = ACTIONS(1919),
- [anon_sym_BANG] = ACTIONS(1919),
- [anon_sym_else] = ACTIONS(1919),
- [anon_sym_if] = ACTIONS(1919),
- [anon_sym_switch] = ACTIONS(1919),
- [anon_sym_for] = ACTIONS(1919),
- [anon_sym_LPAREN] = ACTIONS(1917),
- [anon_sym_await] = ACTIONS(1919),
- [anon_sym_in] = ACTIONS(1919),
- [anon_sym_while] = ACTIONS(1919),
- [anon_sym_do] = ACTIONS(1919),
- [anon_sym_try] = ACTIONS(1919),
- [anon_sym_break] = ACTIONS(1919),
- [anon_sym_continue] = ACTIONS(1919),
- [anon_sym_debugger] = ACTIONS(1919),
- [anon_sym_return] = ACTIONS(1919),
- [anon_sym_throw] = ACTIONS(1919),
- [anon_sym_SEMI] = ACTIONS(1917),
- [anon_sym_case] = ACTIONS(1919),
- [anon_sym_yield] = ACTIONS(1919),
- [anon_sym_LBRACK] = ACTIONS(1917),
- [sym_glimmer_opening_tag] = ACTIONS(1917),
- [anon_sym_GT] = ACTIONS(1919),
- [anon_sym_DOT] = ACTIONS(1919),
- [anon_sym_DQUOTE] = ACTIONS(1917),
- [anon_sym_SQUOTE] = ACTIONS(1917),
- [anon_sym_class] = ACTIONS(1919),
- [anon_sym_async] = ACTIONS(1919),
- [anon_sym_function] = ACTIONS(1919),
- [anon_sym_QMARK_DOT] = ACTIONS(1917),
- [anon_sym_new] = ACTIONS(1919),
- [anon_sym_using] = ACTIONS(1919),
- [anon_sym_AMP_AMP] = ACTIONS(1917),
- [anon_sym_PIPE_PIPE] = ACTIONS(1917),
- [anon_sym_GT_GT] = ACTIONS(1919),
- [anon_sym_GT_GT_GT] = ACTIONS(1917),
- [anon_sym_LT_LT] = ACTIONS(1917),
- [anon_sym_AMP] = ACTIONS(1919),
- [anon_sym_CARET] = ACTIONS(1917),
- [anon_sym_PIPE] = ACTIONS(1919),
- [anon_sym_PLUS] = ACTIONS(1919),
- [anon_sym_DASH] = ACTIONS(1919),
- [anon_sym_SLASH] = ACTIONS(1919),
- [anon_sym_PERCENT] = ACTIONS(1917),
- [anon_sym_STAR_STAR] = ACTIONS(1917),
- [anon_sym_LT] = ACTIONS(1919),
- [anon_sym_LT_EQ] = ACTIONS(1917),
- [anon_sym_EQ_EQ] = ACTIONS(1919),
- [anon_sym_EQ_EQ_EQ] = ACTIONS(1917),
- [anon_sym_BANG_EQ] = ACTIONS(1919),
- [anon_sym_BANG_EQ_EQ] = ACTIONS(1917),
- [anon_sym_GT_EQ] = ACTIONS(1917),
- [anon_sym_QMARK_QMARK] = ACTIONS(1917),
- [anon_sym_instanceof] = ACTIONS(1919),
- [anon_sym_TILDE] = ACTIONS(1917),
- [anon_sym_void] = ACTIONS(1919),
- [anon_sym_delete] = ACTIONS(1919),
- [anon_sym_PLUS_PLUS] = ACTIONS(1917),
- [anon_sym_DASH_DASH] = ACTIONS(1917),
- [sym_comment] = ACTIONS(5),
- [anon_sym_BQUOTE] = ACTIONS(1917),
- [sym_number] = ACTIONS(1917),
- [sym_private_property_identifier] = ACTIONS(1917),
- [sym_this] = ACTIONS(1919),
- [sym_super] = ACTIONS(1919),
- [sym_true] = ACTIONS(1919),
- [sym_false] = ACTIONS(1919),
- [sym_null] = ACTIONS(1919),
- [sym_undefined] = ACTIONS(1919),
- [anon_sym_AT] = ACTIONS(1917),
- [anon_sym_static] = ACTIONS(1919),
- [anon_sym_readonly] = ACTIONS(1919),
- [anon_sym_get] = ACTIONS(1919),
- [anon_sym_set] = ACTIONS(1919),
- [anon_sym_declare] = ACTIONS(1919),
- [anon_sym_public] = ACTIONS(1919),
- [anon_sym_private] = ACTIONS(1919),
- [anon_sym_protected] = ACTIONS(1919),
- [anon_sym_override] = ACTIONS(1919),
- [anon_sym_module] = ACTIONS(1919),
- [anon_sym_any] = ACTIONS(1919),
- [anon_sym_number] = ACTIONS(1919),
- [anon_sym_boolean] = ACTIONS(1919),
- [anon_sym_string] = ACTIONS(1919),
- [anon_sym_symbol] = ACTIONS(1919),
- [anon_sym_object] = ACTIONS(1919),
- [anon_sym_abstract] = ACTIONS(1919),
- [anon_sym_satisfies] = ACTIONS(1919),
- [anon_sym_interface] = ACTIONS(1919),
- [anon_sym_enum] = ACTIONS(1919),
- [sym__automatic_semicolon] = ACTIONS(1917),
- [sym__ternary_qmark] = ACTIONS(1917),
- [sym_html_comment] = ACTIONS(5),
- },
- [246] = {
- [ts_builtin_sym_end] = ACTIONS(1921),
- [sym_identifier] = ACTIONS(1923),
- [anon_sym_export] = ACTIONS(1923),
- [anon_sym_STAR] = ACTIONS(1923),
- [anon_sym_default] = ACTIONS(1923),
- [anon_sym_type] = ACTIONS(1923),
- [anon_sym_as] = ACTIONS(1923),
- [anon_sym_namespace] = ACTIONS(1923),
- [anon_sym_LBRACE] = ACTIONS(1921),
- [anon_sym_COMMA] = ACTIONS(1921),
- [anon_sym_RBRACE] = ACTIONS(1921),
- [anon_sym_typeof] = ACTIONS(1923),
- [anon_sym_import] = ACTIONS(1923),
- [anon_sym_with] = ACTIONS(1923),
- [anon_sym_var] = ACTIONS(1923),
- [anon_sym_let] = ACTIONS(1923),
- [anon_sym_const] = ACTIONS(1923),
- [anon_sym_BANG] = ACTIONS(1923),
- [anon_sym_else] = ACTIONS(1923),
- [anon_sym_if] = ACTIONS(1923),
- [anon_sym_switch] = ACTIONS(1923),
- [anon_sym_for] = ACTIONS(1923),
- [anon_sym_LPAREN] = ACTIONS(1921),
- [anon_sym_await] = ACTIONS(1923),
- [anon_sym_in] = ACTIONS(1923),
- [anon_sym_while] = ACTIONS(1923),
- [anon_sym_do] = ACTIONS(1923),
- [anon_sym_try] = ACTIONS(1923),
- [anon_sym_break] = ACTIONS(1923),
- [anon_sym_continue] = ACTIONS(1923),
- [anon_sym_debugger] = ACTIONS(1923),
- [anon_sym_return] = ACTIONS(1923),
- [anon_sym_throw] = ACTIONS(1923),
- [anon_sym_SEMI] = ACTIONS(1921),
- [anon_sym_case] = ACTIONS(1923),
- [anon_sym_yield] = ACTIONS(1923),
- [anon_sym_LBRACK] = ACTIONS(1921),
- [sym_glimmer_opening_tag] = ACTIONS(1921),
- [anon_sym_GT] = ACTIONS(1923),
- [anon_sym_DOT] = ACTIONS(1923),
- [anon_sym_DQUOTE] = ACTIONS(1921),
- [anon_sym_SQUOTE] = ACTIONS(1921),
- [anon_sym_class] = ACTIONS(1923),
- [anon_sym_async] = ACTIONS(1923),
- [anon_sym_function] = ACTIONS(1923),
- [anon_sym_QMARK_DOT] = ACTIONS(1921),
- [anon_sym_new] = ACTIONS(1923),
- [anon_sym_using] = ACTIONS(1923),
- [anon_sym_AMP_AMP] = ACTIONS(1921),
- [anon_sym_PIPE_PIPE] = ACTIONS(1921),
- [anon_sym_GT_GT] = ACTIONS(1923),
- [anon_sym_GT_GT_GT] = ACTIONS(1921),
- [anon_sym_LT_LT] = ACTIONS(1921),
- [anon_sym_AMP] = ACTIONS(1923),
- [anon_sym_CARET] = ACTIONS(1921),
- [anon_sym_PIPE] = ACTIONS(1923),
- [anon_sym_PLUS] = ACTIONS(1923),
- [anon_sym_DASH] = ACTIONS(1923),
- [anon_sym_SLASH] = ACTIONS(1923),
- [anon_sym_PERCENT] = ACTIONS(1921),
- [anon_sym_STAR_STAR] = ACTIONS(1921),
- [anon_sym_LT] = ACTIONS(1923),
- [anon_sym_LT_EQ] = ACTIONS(1921),
- [anon_sym_EQ_EQ] = ACTIONS(1923),
- [anon_sym_EQ_EQ_EQ] = ACTIONS(1921),
- [anon_sym_BANG_EQ] = ACTIONS(1923),
- [anon_sym_BANG_EQ_EQ] = ACTIONS(1921),
- [anon_sym_GT_EQ] = ACTIONS(1921),
- [anon_sym_QMARK_QMARK] = ACTIONS(1921),
- [anon_sym_instanceof] = ACTIONS(1923),
- [anon_sym_TILDE] = ACTIONS(1921),
- [anon_sym_void] = ACTIONS(1923),
- [anon_sym_delete] = ACTIONS(1923),
- [anon_sym_PLUS_PLUS] = ACTIONS(1921),
- [anon_sym_DASH_DASH] = ACTIONS(1921),
- [sym_comment] = ACTIONS(5),
- [anon_sym_BQUOTE] = ACTIONS(1921),
- [sym_number] = ACTIONS(1921),
- [sym_private_property_identifier] = ACTIONS(1921),
- [sym_this] = ACTIONS(1923),
- [sym_super] = ACTIONS(1923),
- [sym_true] = ACTIONS(1923),
- [sym_false] = ACTIONS(1923),
- [sym_null] = ACTIONS(1923),
- [sym_undefined] = ACTIONS(1923),
- [anon_sym_AT] = ACTIONS(1921),
- [anon_sym_static] = ACTIONS(1923),
- [anon_sym_readonly] = ACTIONS(1923),
- [anon_sym_get] = ACTIONS(1923),
- [anon_sym_set] = ACTIONS(1923),
- [anon_sym_declare] = ACTIONS(1923),
- [anon_sym_public] = ACTIONS(1923),
- [anon_sym_private] = ACTIONS(1923),
- [anon_sym_protected] = ACTIONS(1923),
- [anon_sym_override] = ACTIONS(1923),
- [anon_sym_module] = ACTIONS(1923),
- [anon_sym_any] = ACTIONS(1923),
- [anon_sym_number] = ACTIONS(1923),
- [anon_sym_boolean] = ACTIONS(1923),
- [anon_sym_string] = ACTIONS(1923),
- [anon_sym_symbol] = ACTIONS(1923),
- [anon_sym_object] = ACTIONS(1923),
- [anon_sym_abstract] = ACTIONS(1923),
- [anon_sym_satisfies] = ACTIONS(1923),
- [anon_sym_interface] = ACTIONS(1923),
- [anon_sym_enum] = ACTIONS(1923),
- [sym__automatic_semicolon] = ACTIONS(1921),
- [sym__ternary_qmark] = ACTIONS(1921),
- [sym_html_comment] = ACTIONS(5),
- },
- [247] = {
- [ts_builtin_sym_end] = ACTIONS(1925),
- [sym_identifier] = ACTIONS(1927),
- [anon_sym_export] = ACTIONS(1927),
- [anon_sym_STAR] = ACTIONS(1927),
- [anon_sym_default] = ACTIONS(1927),
- [anon_sym_type] = ACTIONS(1927),
- [anon_sym_as] = ACTIONS(1927),
- [anon_sym_namespace] = ACTIONS(1927),
- [anon_sym_LBRACE] = ACTIONS(1925),
- [anon_sym_COMMA] = ACTIONS(1925),
- [anon_sym_RBRACE] = ACTIONS(1925),
- [anon_sym_typeof] = ACTIONS(1927),
- [anon_sym_import] = ACTIONS(1927),
- [anon_sym_with] = ACTIONS(1927),
- [anon_sym_var] = ACTIONS(1927),
- [anon_sym_let] = ACTIONS(1927),
- [anon_sym_const] = ACTIONS(1927),
- [anon_sym_BANG] = ACTIONS(1927),
- [anon_sym_else] = ACTIONS(1927),
- [anon_sym_if] = ACTIONS(1927),
- [anon_sym_switch] = ACTIONS(1927),
- [anon_sym_for] = ACTIONS(1927),
- [anon_sym_LPAREN] = ACTIONS(1925),
- [anon_sym_await] = ACTIONS(1927),
- [anon_sym_in] = ACTIONS(1927),
- [anon_sym_while] = ACTIONS(1927),
- [anon_sym_do] = ACTIONS(1927),
- [anon_sym_try] = ACTIONS(1927),
- [anon_sym_break] = ACTIONS(1927),
- [anon_sym_continue] = ACTIONS(1927),
- [anon_sym_debugger] = ACTIONS(1927),
- [anon_sym_return] = ACTIONS(1927),
- [anon_sym_throw] = ACTIONS(1927),
- [anon_sym_SEMI] = ACTIONS(1925),
- [anon_sym_case] = ACTIONS(1927),
- [anon_sym_yield] = ACTIONS(1927),
- [anon_sym_LBRACK] = ACTIONS(1925),
- [sym_glimmer_opening_tag] = ACTIONS(1925),
- [anon_sym_GT] = ACTIONS(1927),
- [anon_sym_DOT] = ACTIONS(1927),
- [anon_sym_DQUOTE] = ACTIONS(1925),
- [anon_sym_SQUOTE] = ACTIONS(1925),
- [anon_sym_class] = ACTIONS(1927),
- [anon_sym_async] = ACTIONS(1927),
- [anon_sym_function] = ACTIONS(1927),
- [anon_sym_QMARK_DOT] = ACTIONS(1925),
- [anon_sym_new] = ACTIONS(1927),
- [anon_sym_using] = ACTIONS(1927),
- [anon_sym_AMP_AMP] = ACTIONS(1925),
- [anon_sym_PIPE_PIPE] = ACTIONS(1925),
- [anon_sym_GT_GT] = ACTIONS(1927),
- [anon_sym_GT_GT_GT] = ACTIONS(1925),
- [anon_sym_LT_LT] = ACTIONS(1925),
- [anon_sym_AMP] = ACTIONS(1927),
- [anon_sym_CARET] = ACTIONS(1925),
- [anon_sym_PIPE] = ACTIONS(1927),
- [anon_sym_PLUS] = ACTIONS(1927),
- [anon_sym_DASH] = ACTIONS(1927),
- [anon_sym_SLASH] = ACTIONS(1927),
- [anon_sym_PERCENT] = ACTIONS(1925),
- [anon_sym_STAR_STAR] = ACTIONS(1925),
- [anon_sym_LT] = ACTIONS(1927),
- [anon_sym_LT_EQ] = ACTIONS(1925),
- [anon_sym_EQ_EQ] = ACTIONS(1927),
- [anon_sym_EQ_EQ_EQ] = ACTIONS(1925),
- [anon_sym_BANG_EQ] = ACTIONS(1927),
- [anon_sym_BANG_EQ_EQ] = ACTIONS(1925),
- [anon_sym_GT_EQ] = ACTIONS(1925),
- [anon_sym_QMARK_QMARK] = ACTIONS(1925),
- [anon_sym_instanceof] = ACTIONS(1927),
- [anon_sym_TILDE] = ACTIONS(1925),
- [anon_sym_void] = ACTIONS(1927),
- [anon_sym_delete] = ACTIONS(1927),
- [anon_sym_PLUS_PLUS] = ACTIONS(1925),
- [anon_sym_DASH_DASH] = ACTIONS(1925),
- [sym_comment] = ACTIONS(5),
- [anon_sym_BQUOTE] = ACTIONS(1925),
- [sym_number] = ACTIONS(1925),
- [sym_private_property_identifier] = ACTIONS(1925),
- [sym_this] = ACTIONS(1927),
- [sym_super] = ACTIONS(1927),
- [sym_true] = ACTIONS(1927),
- [sym_false] = ACTIONS(1927),
- [sym_null] = ACTIONS(1927),
- [sym_undefined] = ACTIONS(1927),
- [anon_sym_AT] = ACTIONS(1925),
- [anon_sym_static] = ACTIONS(1927),
- [anon_sym_readonly] = ACTIONS(1927),
- [anon_sym_get] = ACTIONS(1927),
- [anon_sym_set] = ACTIONS(1927),
- [anon_sym_declare] = ACTIONS(1927),
- [anon_sym_public] = ACTIONS(1927),
- [anon_sym_private] = ACTIONS(1927),
- [anon_sym_protected] = ACTIONS(1927),
- [anon_sym_override] = ACTIONS(1927),
- [anon_sym_module] = ACTIONS(1927),
- [anon_sym_any] = ACTIONS(1927),
- [anon_sym_number] = ACTIONS(1927),
- [anon_sym_boolean] = ACTIONS(1927),
- [anon_sym_string] = ACTIONS(1927),
- [anon_sym_symbol] = ACTIONS(1927),
- [anon_sym_object] = ACTIONS(1927),
- [anon_sym_abstract] = ACTIONS(1927),
- [anon_sym_satisfies] = ACTIONS(1927),
- [anon_sym_interface] = ACTIONS(1927),
- [anon_sym_enum] = ACTIONS(1927),
- [sym__automatic_semicolon] = ACTIONS(1925),
- [sym__ternary_qmark] = ACTIONS(1925),
- [sym_html_comment] = ACTIONS(5),
- },
- [248] = {
- [sym_import] = STATE(3334),
- [sym_parenthesized_expression] = STATE(1179),
- [sym_expression] = STATE(2415),
- [sym_primary_expression] = STATE(1468),
- [sym_yield_expression] = STATE(1634),
- [sym_object] = STATE(1650),
- [sym_object_pattern] = STATE(3588),
- [sym_assignment_pattern] = STATE(5512),
- [sym_array] = STATE(1650),
- [sym_array_pattern] = STATE(3588),
- [sym_glimmer_template] = STATE(1634),
- [sym_jsx_element] = STATE(1634),
- [sym_jsx_opening_element] = STATE(3026),
- [sym_jsx_self_closing_element] = STATE(1634),
- [sym_class] = STATE(1650),
- [sym_function_expression] = STATE(1650),
- [sym_generator_function] = STATE(1650),
- [sym_arrow_function] = STATE(1650),
- [sym__call_signature] = STATE(5619),
- [sym_call_expression] = STATE(1650),
- [sym_new_expression] = STATE(1634),
- [sym_await_expression] = STATE(1634),
- [sym_member_expression] = STATE(1221),
- [sym_subscript_expression] = STATE(1221),
- [sym_assignment_expression] = STATE(1634),
- [sym__augmented_assignment_lhs] = STATE(2878),
- [sym_augmented_assignment_expression] = STATE(1634),
- [sym__destructuring_pattern] = STATE(3588),
- [sym_ternary_expression] = STATE(1634),
- [sym_binary_expression] = STATE(1634),
- [sym_unary_expression] = STATE(1634),
- [sym_update_expression] = STATE(1634),
- [sym_string] = STATE(1650),
- [sym_template_string] = STATE(1650),
- [sym_regex] = STATE(1650),
- [sym_meta_property] = STATE(1650),
- [sym_decorator] = STATE(1244),
- [sym_formal_parameters] = STATE(3742),
- [sym_pattern] = STATE(5128),
- [sym_rest_pattern] = STATE(3700),
- [sym_non_null_expression] = STATE(1221),
- [sym_as_expression] = STATE(1634),
- [sym_satisfies_expression] = STATE(1634),
- [sym_instantiation_expression] = STATE(1634),
- [sym_internal_module] = STATE(1634),
- [sym_type_parameters] = STATE(5349),
- [aux_sym_export_statement_repeat1] = STATE(4458),
- [sym_identifier] = ACTIONS(769),
- [anon_sym_export] = ACTIONS(115),
- [anon_sym_type] = ACTIONS(115),
- [anon_sym_namespace] = ACTIONS(124),
- [anon_sym_LBRACE] = ACTIONS(771),
- [anon_sym_COMMA] = ACTIONS(1929),
- [anon_sym_typeof] = ACTIONS(187),
- [anon_sym_import] = ACTIONS(133),
- [anon_sym_let] = ACTIONS(115),
- [anon_sym_BANG] = ACTIONS(183),
- [anon_sym_LPAREN] = ACTIONS(815),
- [anon_sym_await] = ACTIONS(142),
- [anon_sym_yield] = ACTIONS(144),
- [anon_sym_LBRACK] = ACTIONS(1630),
- [anon_sym_RBRACK] = ACTIONS(1929),
- [sym_glimmer_opening_tag] = ACTIONS(148),
- [anon_sym_DQUOTE] = ACTIONS(150),
- [anon_sym_SQUOTE] = ACTIONS(152),
- [anon_sym_class] = ACTIONS(154),
- [anon_sym_async] = ACTIONS(156),
- [anon_sym_function] = ACTIONS(158),
- [anon_sym_new] = ACTIONS(779),
- [anon_sym_using] = ACTIONS(166),
- [anon_sym_DOT_DOT_DOT] = ACTIONS(170),
- [anon_sym_PLUS] = ACTIONS(187),
- [anon_sym_DASH] = ACTIONS(187),
- [anon_sym_SLASH] = ACTIONS(646),
- [anon_sym_LT] = ACTIONS(181),
- [anon_sym_TILDE] = ACTIONS(183),
- [anon_sym_void] = ACTIONS(187),
- [anon_sym_delete] = ACTIONS(187),
- [anon_sym_PLUS_PLUS] = ACTIONS(719),
- [anon_sym_DASH_DASH] = ACTIONS(719),
- [sym_comment] = ACTIONS(5),
- [anon_sym_BQUOTE] = ACTIONS(825),
- [sym_number] = ACTIONS(787),
- [sym_private_property_identifier] = ACTIONS(196),
- [sym_this] = ACTIONS(200),
- [sym_super] = ACTIONS(200),
- [sym_true] = ACTIONS(200),
- [sym_false] = ACTIONS(200),
- [sym_null] = ACTIONS(200),
- [sym_undefined] = ACTIONS(791),
- [anon_sym_AT] = ACTIONS(99),
- [anon_sym_static] = ACTIONS(115),
- [anon_sym_readonly] = ACTIONS(115),
- [anon_sym_get] = ACTIONS(115),
- [anon_sym_set] = ACTIONS(115),
- [anon_sym_declare] = ACTIONS(115),
- [anon_sym_public] = ACTIONS(115),
- [anon_sym_private] = ACTIONS(115),
- [anon_sym_protected] = ACTIONS(115),
- [anon_sym_override] = ACTIONS(115),
- [anon_sym_module] = ACTIONS(115),
- [anon_sym_any] = ACTIONS(115),
- [anon_sym_number] = ACTIONS(115),
- [anon_sym_boolean] = ACTIONS(115),
- [anon_sym_string] = ACTIONS(115),
- [anon_sym_symbol] = ACTIONS(115),
- [anon_sym_object] = ACTIONS(115),
- [sym_html_comment] = ACTIONS(5),
- },
- [249] = {
- [sym_import] = STATE(3334),
- [sym_parenthesized_expression] = STATE(1251),
- [sym_expression] = STATE(1832),
- [sym_primary_expression] = STATE(1468),
- [sym_yield_expression] = STATE(1634),
- [sym_object] = STATE(1650),
- [sym_object_pattern] = STATE(5633),
- [sym_array] = STATE(1650),
- [sym_array_pattern] = STATE(5633),
- [sym_glimmer_template] = STATE(1634),
- [sym_jsx_element] = STATE(1634),
- [sym_jsx_opening_element] = STATE(3026),
- [sym_jsx_self_closing_element] = STATE(1634),
- [sym_class] = STATE(1650),
- [sym_function_expression] = STATE(1650),
- [sym_generator_function] = STATE(1650),
- [sym_arrow_function] = STATE(1650),
- [sym__call_signature] = STATE(5828),
- [sym_call_expression] = STATE(1650),
- [sym_new_expression] = STATE(1634),
- [sym_await_expression] = STATE(1634),
- [sym_member_expression] = STATE(1251),
- [sym_subscript_expression] = STATE(1251),
- [sym_assignment_expression] = STATE(1634),
- [sym__augmented_assignment_lhs] = STATE(2900),
- [sym_augmented_assignment_expression] = STATE(1634),
- [sym__destructuring_pattern] = STATE(5633),
- [sym_spread_element] = STATE(4652),
- [sym_ternary_expression] = STATE(1634),
- [sym_binary_expression] = STATE(1634),
- [sym_unary_expression] = STATE(1634),
- [sym_update_expression] = STATE(1634),
- [sym_string] = STATE(1650),
- [sym_template_string] = STATE(1650),
- [sym_regex] = STATE(1650),
- [sym_meta_property] = STATE(1650),
- [sym_decorator] = STATE(1244),
- [sym_formal_parameters] = STATE(3742),
- [sym_non_null_expression] = STATE(1251),
- [sym_as_expression] = STATE(1634),
- [sym_satisfies_expression] = STATE(1634),
- [sym_instantiation_expression] = STATE(1634),
- [sym_internal_module] = STATE(1634),
- [sym_type_parameters] = STATE(5349),
- [aux_sym_export_statement_repeat1] = STATE(4458),
- [aux_sym_array_repeat1] = STATE(4656),
- [sym_identifier] = ACTIONS(1428),
- [anon_sym_export] = ACTIONS(1044),
- [anon_sym_type] = ACTIONS(1044),
- [anon_sym_namespace] = ACTIONS(1046),
- [anon_sym_LBRACE] = ACTIONS(813),
- [anon_sym_COMMA] = ACTIONS(1931),
- [anon_sym_typeof] = ACTIONS(650),
- [anon_sym_import] = ACTIONS(133),
- [anon_sym_let] = ACTIONS(1044),
- [anon_sym_BANG] = ACTIONS(622),
- [anon_sym_LPAREN] = ACTIONS(815),
- [anon_sym_RPAREN] = ACTIONS(1933),
- [anon_sym_await] = ACTIONS(624),
- [anon_sym_yield] = ACTIONS(626),
- [anon_sym_LBRACK] = ACTIONS(817),
- [sym_glimmer_opening_tag] = ACTIONS(148),
- [anon_sym_DQUOTE] = ACTIONS(150),
- [anon_sym_SQUOTE] = ACTIONS(152),
- [anon_sym_class] = ACTIONS(154),
- [anon_sym_async] = ACTIONS(1052),
- [anon_sym_function] = ACTIONS(158),
- [anon_sym_new] = ACTIONS(1436),
- [anon_sym_using] = ACTIONS(636),
- [anon_sym_DOT_DOT_DOT] = ACTIONS(1935),
- [anon_sym_PLUS] = ACTIONS(650),
- [anon_sym_DASH] = ACTIONS(650),
- [anon_sym_SLASH] = ACTIONS(646),
- [anon_sym_LT] = ACTIONS(181),
- [anon_sym_TILDE] = ACTIONS(622),
- [anon_sym_void] = ACTIONS(650),
- [anon_sym_delete] = ACTIONS(650),
- [anon_sym_PLUS_PLUS] = ACTIONS(652),
- [anon_sym_DASH_DASH] = ACTIONS(652),
- [sym_comment] = ACTIONS(5),
- [anon_sym_BQUOTE] = ACTIONS(825),
- [sym_number] = ACTIONS(787),
- [sym_private_property_identifier] = ACTIONS(654),
- [sym_this] = ACTIONS(200),
- [sym_super] = ACTIONS(200),
- [sym_true] = ACTIONS(200),
- [sym_false] = ACTIONS(200),
- [sym_null] = ACTIONS(200),
- [sym_undefined] = ACTIONS(1438),
- [anon_sym_AT] = ACTIONS(99),
- [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_override] = 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_object] = ACTIONS(1044),
- [sym_html_comment] = ACTIONS(5),
- },
- [250] = {
- [sym_import] = STATE(3306),
- [sym_parenthesized_expression] = STATE(1338),
- [sym_expression] = STATE(2040),
- [sym_primary_expression] = STATE(1946),
- [sym_yield_expression] = STATE(2234),
- [sym_object] = STATE(2310),
- [sym_object_pattern] = STATE(5571),
- [sym_array] = STATE(2310),
- [sym_array_pattern] = STATE(5571),
- [sym_glimmer_template] = STATE(2234),
- [sym_jsx_element] = STATE(2234),
- [sym_jsx_opening_element] = STATE(3051),
- [sym_jsx_self_closing_element] = STATE(2234),
- [sym_class] = STATE(2310),
- [sym_function_expression] = STATE(2310),
- [sym_generator_function] = STATE(2310),
- [sym_arrow_function] = STATE(2310),
- [sym__call_signature] = STATE(5569),
- [sym_call_expression] = STATE(2310),
- [sym_new_expression] = STATE(2234),
- [sym_await_expression] = STATE(2234),
- [sym_member_expression] = STATE(1338),
- [sym_subscript_expression] = STATE(1338),
- [sym_assignment_expression] = STATE(2234),
- [sym__augmented_assignment_lhs] = STATE(2899),
- [sym_augmented_assignment_expression] = STATE(2234),
- [sym__destructuring_pattern] = STATE(5571),
- [sym_ternary_expression] = STATE(2234),
- [sym_binary_expression] = STATE(2234),
- [sym_unary_expression] = STATE(2234),
- [sym_update_expression] = STATE(2234),
- [sym_string] = STATE(2310),
- [sym_template_string] = STATE(2310),
- [sym_regex] = STATE(2310),
- [sym_meta_property] = STATE(2310),
- [sym_decorator] = STATE(1244),
- [sym_formal_parameters] = STATE(3742),
- [sym_non_null_expression] = STATE(1338),
- [sym_as_expression] = STATE(2234),
- [sym_satisfies_expression] = STATE(2234),
- [sym_instantiation_expression] = STATE(2234),
- [sym_internal_module] = STATE(2234),
- [sym_type_parameters] = STATE(5349),
- [aux_sym_export_statement_repeat1] = STATE(4499),
- [sym_identifier] = ACTIONS(1454),
- [anon_sym_export] = ACTIONS(1152),
- [anon_sym_type] = ACTIONS(1152),
- [anon_sym_namespace] = ACTIONS(1154),
- [anon_sym_LBRACE] = ACTIONS(700),
- [anon_sym_COMMA] = ACTIONS(1650),
- [anon_sym_typeof] = ACTIONS(1180),
- [anon_sym_import] = ACTIONS(133),
- [anon_sym_let] = ACTIONS(1152),
- [anon_sym_BANG] = ACTIONS(1160),
- [anon_sym_LPAREN] = ACTIONS(41),
- [anon_sym_await] = ACTIONS(1164),
- [anon_sym_yield] = ACTIONS(1166),
- [anon_sym_LBRACK] = ACTIONS(1650),
- [sym_glimmer_opening_tag] = ACTIONS(67),
- [anon_sym_GT] = ACTIONS(1650),
- [anon_sym_DQUOTE] = ACTIONS(69),
- [anon_sym_SQUOTE] = ACTIONS(71),
- [anon_sym_class] = ACTIONS(709),
- [anon_sym_async] = ACTIONS(1170),
- [anon_sym_function] = ACTIONS(713),
- [anon_sym_new] = ACTIONS(1458),
- [anon_sym_using] = ACTIONS(1174),
- [anon_sym_AMP] = ACTIONS(1650),
- [anon_sym_PIPE] = ACTIONS(1650),
- [anon_sym_PLUS] = ACTIONS(1180),
- [anon_sym_DASH] = ACTIONS(1180),
- [anon_sym_SLASH] = ACTIONS(83),
- [anon_sym_LT] = ACTIONS(85),
- [anon_sym_TILDE] = ACTIONS(1160),
- [anon_sym_void] = ACTIONS(1180),
- [anon_sym_delete] = ACTIONS(1180),
- [anon_sym_PLUS_PLUS] = ACTIONS(1182),
- [anon_sym_DASH_DASH] = ACTIONS(1182),
- [sym_comment] = ACTIONS(5),
- [anon_sym_BQUOTE] = ACTIONS(89),
- [sym_number] = ACTIONS(91),
- [sym_private_property_identifier] = ACTIONS(1188),
- [sym_this] = ACTIONS(95),
- [sym_super] = ACTIONS(95),
- [sym_true] = ACTIONS(95),
- [sym_false] = ACTIONS(95),
- [sym_null] = ACTIONS(95),
- [sym_undefined] = ACTIONS(1460),
- [anon_sym_AT] = ACTIONS(99),
- [anon_sym_static] = ACTIONS(1152),
- [anon_sym_readonly] = ACTIONS(1152),
- [anon_sym_get] = ACTIONS(1152),
- [anon_sym_set] = ACTIONS(1152),
- [anon_sym_declare] = ACTIONS(1152),
- [anon_sym_public] = ACTIONS(1152),
- [anon_sym_private] = ACTIONS(1152),
- [anon_sym_protected] = ACTIONS(1152),
- [anon_sym_override] = ACTIONS(1152),
- [anon_sym_module] = ACTIONS(1152),
- [anon_sym_any] = ACTIONS(1152),
- [anon_sym_number] = ACTIONS(1152),
- [anon_sym_boolean] = ACTIONS(1152),
- [anon_sym_string] = ACTIONS(1152),
- [anon_sym_symbol] = ACTIONS(1152),
- [anon_sym_object] = ACTIONS(1152),
- [anon_sym_extends] = ACTIONS(1652),
- [sym_html_comment] = ACTIONS(5),
- },
- [251] = {
- [sym_import] = STATE(3334),
- [sym_parenthesized_expression] = STATE(1251),
- [sym_expression] = STATE(1842),
- [sym_primary_expression] = STATE(1468),
- [sym_yield_expression] = STATE(1634),
- [sym_object] = STATE(1650),
- [sym_object_pattern] = STATE(5633),
- [sym_array] = STATE(1650),
- [sym_array_pattern] = STATE(5633),
- [sym_glimmer_template] = STATE(1634),
- [sym_jsx_element] = STATE(1634),
- [sym_jsx_opening_element] = STATE(3026),
- [sym_jsx_self_closing_element] = STATE(1634),
- [sym_class] = STATE(1650),
- [sym_function_expression] = STATE(1650),
- [sym_generator_function] = STATE(1650),
- [sym_arrow_function] = STATE(1650),
- [sym__call_signature] = STATE(5828),
- [sym_call_expression] = STATE(1650),
- [sym_new_expression] = STATE(1634),
- [sym_await_expression] = STATE(1634),
- [sym_member_expression] = STATE(1251),
- [sym_subscript_expression] = STATE(1251),
- [sym_assignment_expression] = STATE(1634),
- [sym__augmented_assignment_lhs] = STATE(2900),
- [sym_augmented_assignment_expression] = STATE(1634),
- [sym__destructuring_pattern] = STATE(5633),
- [sym_spread_element] = STATE(5151),
- [sym_ternary_expression] = STATE(1634),
- [sym_binary_expression] = STATE(1634),
- [sym_unary_expression] = STATE(1634),
- [sym_update_expression] = STATE(1634),
- [sym_string] = STATE(1650),
- [sym_template_string] = STATE(1650),
- [sym_regex] = STATE(1650),
- [sym_meta_property] = STATE(1650),
- [sym_decorator] = STATE(1244),
- [sym_formal_parameters] = STATE(3742),
- [sym_non_null_expression] = STATE(1251),
- [sym_as_expression] = STATE(1634),
- [sym_satisfies_expression] = STATE(1634),
- [sym_instantiation_expression] = STATE(1634),
- [sym_internal_module] = STATE(1634),
- [sym_type_parameters] = STATE(5349),
- [aux_sym_export_statement_repeat1] = STATE(4458),
- [aux_sym_array_repeat1] = STATE(5153),
- [sym_identifier] = ACTIONS(1428),
- [anon_sym_export] = ACTIONS(1044),
- [anon_sym_type] = ACTIONS(1044),
- [anon_sym_namespace] = ACTIONS(1046),
- [anon_sym_LBRACE] = ACTIONS(813),
- [anon_sym_COMMA] = ACTIONS(1931),
- [anon_sym_typeof] = ACTIONS(650),
- [anon_sym_import] = ACTIONS(133),
- [anon_sym_let] = ACTIONS(1044),
- [anon_sym_BANG] = ACTIONS(622),
- [anon_sym_LPAREN] = ACTIONS(815),
- [anon_sym_RPAREN] = ACTIONS(1937),
- [anon_sym_await] = ACTIONS(624),
- [anon_sym_yield] = ACTIONS(626),
- [anon_sym_LBRACK] = ACTIONS(817),
- [sym_glimmer_opening_tag] = ACTIONS(148),
- [anon_sym_DQUOTE] = ACTIONS(150),
- [anon_sym_SQUOTE] = ACTIONS(152),
- [anon_sym_class] = ACTIONS(154),
- [anon_sym_async] = ACTIONS(1052),
- [anon_sym_function] = ACTIONS(158),
- [anon_sym_new] = ACTIONS(1436),
- [anon_sym_using] = ACTIONS(636),
- [anon_sym_DOT_DOT_DOT] = ACTIONS(1935),
- [anon_sym_PLUS] = ACTIONS(650),
- [anon_sym_DASH] = ACTIONS(650),
- [anon_sym_SLASH] = ACTIONS(646),
- [anon_sym_LT] = ACTIONS(181),
- [anon_sym_TILDE] = ACTIONS(622),
- [anon_sym_void] = ACTIONS(650),
- [anon_sym_delete] = ACTIONS(650),
- [anon_sym_PLUS_PLUS] = ACTIONS(652),
- [anon_sym_DASH_DASH] = ACTIONS(652),
- [sym_comment] = ACTIONS(5),
- [anon_sym_BQUOTE] = ACTIONS(825),
- [sym_number] = ACTIONS(787),
- [sym_private_property_identifier] = ACTIONS(654),
- [sym_this] = ACTIONS(200),
- [sym_super] = ACTIONS(200),
- [sym_true] = ACTIONS(200),
- [sym_false] = ACTIONS(200),
- [sym_null] = ACTIONS(200),
- [sym_undefined] = ACTIONS(1438),
- [anon_sym_AT] = ACTIONS(99),
- [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_override] = 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_object] = ACTIONS(1044),
- [sym_html_comment] = ACTIONS(5),
- },
- [252] = {
- [sym_import] = STATE(3334),
- [sym_parenthesized_expression] = STATE(1345),
- [sym_expression] = STATE(2373),
- [sym_primary_expression] = STATE(1468),
- [sym_yield_expression] = STATE(1634),
- [sym_object] = STATE(1650),
- [sym_object_pattern] = STATE(5872),
- [sym_array] = STATE(1650),
- [sym_array_pattern] = STATE(5872),
- [sym_glimmer_template] = STATE(1634),
- [sym_jsx_element] = STATE(1634),
- [sym_jsx_opening_element] = STATE(3026),
- [sym_jsx_self_closing_element] = STATE(1634),
- [sym_class] = STATE(1650),
- [sym_function_expression] = STATE(1650),
- [sym_generator_function] = STATE(1650),
- [sym_arrow_function] = STATE(1650),
- [sym__call_signature] = STATE(5904),
- [sym_call_expression] = STATE(1650),
- [sym_new_expression] = STATE(1634),
- [sym_await_expression] = STATE(1634),
- [sym_member_expression] = STATE(1345),
- [sym_subscript_expression] = STATE(1345),
- [sym_assignment_expression] = STATE(1634),
- [sym__augmented_assignment_lhs] = STATE(2898),
- [sym_augmented_assignment_expression] = STATE(1634),
- [sym__destructuring_pattern] = STATE(5872),
- [sym_ternary_expression] = STATE(1634),
- [sym_binary_expression] = STATE(1634),
- [sym_unary_expression] = STATE(1634),
- [sym_update_expression] = STATE(1634),
- [sym_string] = STATE(1650),
- [sym_template_string] = STATE(1650),
- [sym_regex] = STATE(1650),
- [sym_meta_property] = STATE(1650),
- [sym_decorator] = STATE(1244),
- [sym_formal_parameters] = STATE(3742),
- [sym_non_null_expression] = STATE(1345),
- [sym_as_expression] = STATE(1634),
- [sym_satisfies_expression] = STATE(1634),
- [sym_instantiation_expression] = STATE(1634),
- [sym_internal_module] = STATE(1634),
- [sym_type_parameters] = STATE(5349),
- [aux_sym_export_statement_repeat1] = STATE(4458),
- [sym_identifier] = ACTIONS(1486),
- [anon_sym_export] = ACTIONS(1394),
- [anon_sym_type] = ACTIONS(1394),
- [anon_sym_namespace] = ACTIONS(1396),
- [anon_sym_LBRACE] = ACTIONS(845),
- [anon_sym_COMMA] = ACTIONS(1650),
- [anon_sym_typeof] = ACTIONS(1416),
- [anon_sym_import] = ACTIONS(133),
- [anon_sym_let] = ACTIONS(1394),
- [anon_sym_BANG] = ACTIONS(1400),
- [anon_sym_LPAREN] = ACTIONS(815),
- [anon_sym_await] = ACTIONS(1402),
- [anon_sym_yield] = ACTIONS(1404),
- [anon_sym_LBRACK] = ACTIONS(1650),
- [sym_glimmer_opening_tag] = ACTIONS(148),
- [anon_sym_GT] = ACTIONS(1650),
- [anon_sym_DQUOTE] = ACTIONS(150),
- [anon_sym_SQUOTE] = ACTIONS(152),
- [anon_sym_class] = ACTIONS(154),
- [anon_sym_async] = ACTIONS(1406),
- [anon_sym_function] = ACTIONS(158),
- [anon_sym_new] = ACTIONS(1490),
- [anon_sym_using] = ACTIONS(1410),
- [anon_sym_AMP] = ACTIONS(1650),
- [anon_sym_PIPE] = ACTIONS(1650),
- [anon_sym_PLUS] = ACTIONS(1416),
- [anon_sym_DASH] = ACTIONS(1416),
- [anon_sym_SLASH] = ACTIONS(970),
- [anon_sym_LT] = ACTIONS(181),
- [anon_sym_TILDE] = ACTIONS(1400),
- [anon_sym_void] = ACTIONS(1416),
- [anon_sym_delete] = ACTIONS(1416),
- [anon_sym_PLUS_PLUS] = ACTIONS(1418),
- [anon_sym_DASH_DASH] = ACTIONS(1418),
- [sym_comment] = ACTIONS(5),
- [anon_sym_BQUOTE] = ACTIONS(825),
- [sym_number] = ACTIONS(787),
- [sym_private_property_identifier] = ACTIONS(1420),
- [sym_this] = ACTIONS(200),
- [sym_super] = ACTIONS(200),
- [sym_true] = ACTIONS(200),
- [sym_false] = ACTIONS(200),
- [sym_null] = ACTIONS(200),
- [sym_undefined] = ACTIONS(1492),
- [anon_sym_AT] = ACTIONS(99),
- [anon_sym_static] = ACTIONS(1394),
- [anon_sym_readonly] = ACTIONS(1394),
- [anon_sym_get] = ACTIONS(1394),
- [anon_sym_set] = ACTIONS(1394),
- [anon_sym_declare] = ACTIONS(1394),
- [anon_sym_public] = ACTIONS(1394),
- [anon_sym_private] = ACTIONS(1394),
- [anon_sym_protected] = ACTIONS(1394),
- [anon_sym_override] = ACTIONS(1394),
- [anon_sym_module] = ACTIONS(1394),
- [anon_sym_any] = ACTIONS(1394),
- [anon_sym_number] = ACTIONS(1394),
- [anon_sym_boolean] = ACTIONS(1394),
- [anon_sym_string] = ACTIONS(1394),
- [anon_sym_symbol] = ACTIONS(1394),
- [anon_sym_object] = ACTIONS(1394),
- [anon_sym_extends] = ACTIONS(1652),
- [sym_html_comment] = ACTIONS(5),
- },
- [253] = {
- [sym_import] = STATE(3334),
- [sym_parenthesized_expression] = STATE(1179),
- [sym_expression] = STATE(2415),
- [sym_primary_expression] = STATE(1468),
- [sym_yield_expression] = STATE(1634),
- [sym_object] = STATE(1650),
- [sym_object_pattern] = STATE(3588),
- [sym_array] = STATE(1650),
- [sym_array_pattern] = STATE(3588),
- [sym_glimmer_template] = STATE(1634),
- [sym_jsx_element] = STATE(1634),
- [sym_jsx_opening_element] = STATE(3026),
- [sym_jsx_self_closing_element] = STATE(1634),
- [sym_class] = STATE(1650),
- [sym_function_expression] = STATE(1650),
- [sym_generator_function] = STATE(1650),
- [sym_arrow_function] = STATE(1650),
- [sym__call_signature] = STATE(5619),
- [sym_call_expression] = STATE(1650),
- [sym_new_expression] = STATE(1634),
- [sym_await_expression] = STATE(1634),
- [sym_member_expression] = STATE(1221),
- [sym_subscript_expression] = STATE(1221),
- [sym_assignment_expression] = STATE(1634),
- [sym__augmented_assignment_lhs] = STATE(2878),
- [sym_augmented_assignment_expression] = STATE(1634),
- [sym__destructuring_pattern] = STATE(3588),
- [sym_ternary_expression] = STATE(1634),
- [sym_binary_expression] = STATE(1634),
- [sym_unary_expression] = STATE(1634),
- [sym_update_expression] = STATE(1634),
- [sym_string] = STATE(1650),
- [sym_template_string] = STATE(1650),
- [sym_regex] = STATE(1650),
- [sym_meta_property] = STATE(1650),
- [sym_decorator] = STATE(1244),
- [sym_formal_parameters] = STATE(3742),
- [sym_pattern] = STATE(4399),
- [sym_rest_pattern] = STATE(3700),
- [sym_non_null_expression] = STATE(1221),
- [sym_as_expression] = STATE(1634),
- [sym_satisfies_expression] = STATE(1634),
- [sym_instantiation_expression] = STATE(1634),
- [sym_internal_module] = STATE(1634),
- [sym_accessibility_modifier] = STATE(265),
- [sym_override_modifier] = STATE(293),
- [sym_type_parameters] = STATE(5349),
- [aux_sym_export_statement_repeat1] = STATE(1212),
- [sym_identifier] = ACTIONS(769),
- [anon_sym_export] = ACTIONS(115),
- [anon_sym_type] = ACTIONS(115),
- [anon_sym_namespace] = ACTIONS(124),
- [anon_sym_LBRACE] = ACTIONS(771),
- [anon_sym_typeof] = ACTIONS(187),
- [anon_sym_import] = ACTIONS(133),
- [anon_sym_let] = ACTIONS(115),
- [anon_sym_BANG] = ACTIONS(183),
- [anon_sym_LPAREN] = ACTIONS(815),
- [anon_sym_await] = ACTIONS(142),
- [anon_sym_yield] = ACTIONS(144),
- [anon_sym_LBRACK] = ACTIONS(1630),
- [sym_glimmer_opening_tag] = ACTIONS(148),
- [anon_sym_DQUOTE] = ACTIONS(150),
- [anon_sym_SQUOTE] = ACTIONS(152),
- [anon_sym_class] = ACTIONS(1939),
- [anon_sym_async] = ACTIONS(156),
- [anon_sym_function] = ACTIONS(158),
- [anon_sym_new] = ACTIONS(779),
- [anon_sym_using] = ACTIONS(166),
- [anon_sym_DOT_DOT_DOT] = ACTIONS(170),
- [anon_sym_PLUS] = ACTIONS(187),
- [anon_sym_DASH] = ACTIONS(187),
- [anon_sym_SLASH] = ACTIONS(646),
- [anon_sym_LT] = ACTIONS(181),
- [anon_sym_TILDE] = ACTIONS(183),
- [anon_sym_void] = ACTIONS(187),
- [anon_sym_delete] = ACTIONS(187),
- [anon_sym_PLUS_PLUS] = ACTIONS(719),
- [anon_sym_DASH_DASH] = ACTIONS(719),
- [sym_comment] = ACTIONS(5),
- [anon_sym_BQUOTE] = ACTIONS(825),
- [sym_number] = ACTIONS(787),
- [sym_private_property_identifier] = ACTIONS(196),
- [sym_this] = ACTIONS(1941),
- [sym_super] = ACTIONS(200),
- [sym_true] = ACTIONS(200),
- [sym_false] = ACTIONS(200),
- [sym_null] = ACTIONS(200),
- [sym_undefined] = ACTIONS(791),
- [anon_sym_AT] = ACTIONS(757),
- [anon_sym_static] = ACTIONS(115),
- [anon_sym_readonly] = ACTIONS(1943),
- [anon_sym_get] = ACTIONS(115),
- [anon_sym_set] = ACTIONS(115),
- [anon_sym_declare] = ACTIONS(115),
- [anon_sym_public] = ACTIONS(833),
- [anon_sym_private] = ACTIONS(833),
- [anon_sym_protected] = ACTIONS(833),
- [anon_sym_override] = ACTIONS(835),
- [anon_sym_module] = ACTIONS(115),
- [anon_sym_any] = ACTIONS(115),
- [anon_sym_number] = ACTIONS(115),
- [anon_sym_boolean] = ACTIONS(115),
- [anon_sym_string] = ACTIONS(115),
- [anon_sym_symbol] = ACTIONS(115),
- [anon_sym_object] = ACTIONS(115),
- [sym_html_comment] = ACTIONS(5),
- },
- [254] = {
- [sym_import] = STATE(3334),
- [sym_parenthesized_expression] = STATE(1251),
- [sym_expression] = STATE(1850),
- [sym_primary_expression] = STATE(1468),
- [sym_yield_expression] = STATE(1634),
- [sym_object] = STATE(1650),
- [sym_object_pattern] = STATE(5633),
- [sym_array] = STATE(1650),
- [sym_array_pattern] = STATE(5633),
- [sym_glimmer_template] = STATE(1634),
- [sym_jsx_element] = STATE(1634),
- [sym_jsx_opening_element] = STATE(3026),
- [sym_jsx_self_closing_element] = STATE(1634),
- [sym_class] = STATE(1650),
- [sym_function_expression] = STATE(1650),
- [sym_generator_function] = STATE(1650),
- [sym_arrow_function] = STATE(1650),
- [sym__call_signature] = STATE(5828),
- [sym_call_expression] = STATE(1650),
- [sym_new_expression] = STATE(1634),
- [sym_await_expression] = STATE(1634),
- [sym_member_expression] = STATE(1251),
- [sym_subscript_expression] = STATE(1251),
- [sym_assignment_expression] = STATE(1634),
- [sym__augmented_assignment_lhs] = STATE(2900),
- [sym_augmented_assignment_expression] = STATE(1634),
- [sym__destructuring_pattern] = STATE(5633),
- [sym_spread_element] = STATE(4676),
- [sym_ternary_expression] = STATE(1634),
- [sym_binary_expression] = STATE(1634),
- [sym_unary_expression] = STATE(1634),
- [sym_update_expression] = STATE(1634),
- [sym_string] = STATE(1650),
- [sym_template_string] = STATE(1650),
- [sym_regex] = STATE(1650),
- [sym_meta_property] = STATE(1650),
- [sym_decorator] = STATE(1244),
- [sym_formal_parameters] = STATE(3742),
- [sym_non_null_expression] = STATE(1251),
- [sym_as_expression] = STATE(1634),
- [sym_satisfies_expression] = STATE(1634),
- [sym_instantiation_expression] = STATE(1634),
- [sym_internal_module] = STATE(1634),
- [sym_type_parameters] = STATE(5349),
- [aux_sym_export_statement_repeat1] = STATE(4458),
- [aux_sym_array_repeat1] = STATE(4677),
- [sym_identifier] = ACTIONS(1428),
- [anon_sym_export] = ACTIONS(1044),
- [anon_sym_type] = ACTIONS(1044),
- [anon_sym_namespace] = ACTIONS(1046),
- [anon_sym_LBRACE] = ACTIONS(813),
- [anon_sym_COMMA] = ACTIONS(1931),
- [anon_sym_typeof] = ACTIONS(650),
- [anon_sym_import] = ACTIONS(133),
- [anon_sym_let] = ACTIONS(1044),
- [anon_sym_BANG] = ACTIONS(622),
- [anon_sym_LPAREN] = ACTIONS(815),
- [anon_sym_RPAREN] = ACTIONS(1945),
- [anon_sym_await] = ACTIONS(624),
- [anon_sym_yield] = ACTIONS(626),
- [anon_sym_LBRACK] = ACTIONS(817),
- [sym_glimmer_opening_tag] = ACTIONS(148),
- [anon_sym_DQUOTE] = ACTIONS(150),
- [anon_sym_SQUOTE] = ACTIONS(152),
- [anon_sym_class] = ACTIONS(154),
- [anon_sym_async] = ACTIONS(1052),
- [anon_sym_function] = ACTIONS(158),
- [anon_sym_new] = ACTIONS(1436),
- [anon_sym_using] = ACTIONS(636),
- [anon_sym_DOT_DOT_DOT] = ACTIONS(1935),
- [anon_sym_PLUS] = ACTIONS(650),
- [anon_sym_DASH] = ACTIONS(650),
- [anon_sym_SLASH] = ACTIONS(646),
- [anon_sym_LT] = ACTIONS(181),
- [anon_sym_TILDE] = ACTIONS(622),
- [anon_sym_void] = ACTIONS(650),
- [anon_sym_delete] = ACTIONS(650),
- [anon_sym_PLUS_PLUS] = ACTIONS(652),
- [anon_sym_DASH_DASH] = ACTIONS(652),
- [sym_comment] = ACTIONS(5),
- [anon_sym_BQUOTE] = ACTIONS(825),
- [sym_number] = ACTIONS(787),
- [sym_private_property_identifier] = ACTIONS(654),
- [sym_this] = ACTIONS(200),
- [sym_super] = ACTIONS(200),
- [sym_true] = ACTIONS(200),
- [sym_false] = ACTIONS(200),
- [sym_null] = ACTIONS(200),
- [sym_undefined] = ACTIONS(1438),
- [anon_sym_AT] = ACTIONS(99),
- [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_override] = 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_object] = ACTIONS(1044),
- [sym_html_comment] = ACTIONS(5),
- },
- [255] = {
- [sym_import] = STATE(3334),
- [sym_parenthesized_expression] = STATE(1251),
- [sym_expression] = STATE(1851),
- [sym_primary_expression] = STATE(1468),
- [sym_yield_expression] = STATE(1634),
- [sym_object] = STATE(1650),
- [sym_object_pattern] = STATE(5633),
- [sym_array] = STATE(1650),
- [sym_array_pattern] = STATE(5633),
- [sym_glimmer_template] = STATE(1634),
- [sym_jsx_element] = STATE(1634),
- [sym_jsx_opening_element] = STATE(3026),
- [sym_jsx_self_closing_element] = STATE(1634),
- [sym_class] = STATE(1650),
- [sym_function_expression] = STATE(1650),
- [sym_generator_function] = STATE(1650),
- [sym_arrow_function] = STATE(1650),
- [sym__call_signature] = STATE(5828),
- [sym_call_expression] = STATE(1650),
- [sym_new_expression] = STATE(1634),
- [sym_await_expression] = STATE(1634),
- [sym_member_expression] = STATE(1251),
- [sym_subscript_expression] = STATE(1251),
- [sym_assignment_expression] = STATE(1634),
- [sym__augmented_assignment_lhs] = STATE(2900),
- [sym_augmented_assignment_expression] = STATE(1634),
- [sym__destructuring_pattern] = STATE(5633),
- [sym_spread_element] = STATE(4694),
- [sym_ternary_expression] = STATE(1634),
- [sym_binary_expression] = STATE(1634),
- [sym_unary_expression] = STATE(1634),
- [sym_update_expression] = STATE(1634),
- [sym_string] = STATE(1650),
- [sym_template_string] = STATE(1650),
- [sym_regex] = STATE(1650),
- [sym_meta_property] = STATE(1650),
- [sym_decorator] = STATE(1244),
- [sym_formal_parameters] = STATE(3742),
- [sym_non_null_expression] = STATE(1251),
- [sym_as_expression] = STATE(1634),
- [sym_satisfies_expression] = STATE(1634),
- [sym_instantiation_expression] = STATE(1634),
- [sym_internal_module] = STATE(1634),
- [sym_type_parameters] = STATE(5349),
- [aux_sym_export_statement_repeat1] = STATE(4458),
- [aux_sym_array_repeat1] = STATE(4695),
- [sym_identifier] = ACTIONS(1428),
- [anon_sym_export] = ACTIONS(1044),
- [anon_sym_type] = ACTIONS(1044),
- [anon_sym_namespace] = ACTIONS(1046),
- [anon_sym_LBRACE] = ACTIONS(813),
- [anon_sym_COMMA] = ACTIONS(1931),
- [anon_sym_typeof] = ACTIONS(650),
- [anon_sym_import] = ACTIONS(133),
- [anon_sym_let] = ACTIONS(1044),
- [anon_sym_BANG] = ACTIONS(622),
- [anon_sym_LPAREN] = ACTIONS(815),
- [anon_sym_RPAREN] = ACTIONS(1947),
- [anon_sym_await] = ACTIONS(624),
- [anon_sym_yield] = ACTIONS(626),
- [anon_sym_LBRACK] = ACTIONS(817),
- [sym_glimmer_opening_tag] = ACTIONS(148),
- [anon_sym_DQUOTE] = ACTIONS(150),
- [anon_sym_SQUOTE] = ACTIONS(152),
- [anon_sym_class] = ACTIONS(154),
- [anon_sym_async] = ACTIONS(1052),
- [anon_sym_function] = ACTIONS(158),
- [anon_sym_new] = ACTIONS(1436),
- [anon_sym_using] = ACTIONS(636),
- [anon_sym_DOT_DOT_DOT] = ACTIONS(1935),
- [anon_sym_PLUS] = ACTIONS(650),
- [anon_sym_DASH] = ACTIONS(650),
- [anon_sym_SLASH] = ACTIONS(646),
- [anon_sym_LT] = ACTIONS(181),
- [anon_sym_TILDE] = ACTIONS(622),
- [anon_sym_void] = ACTIONS(650),
- [anon_sym_delete] = ACTIONS(650),
- [anon_sym_PLUS_PLUS] = ACTIONS(652),
- [anon_sym_DASH_DASH] = ACTIONS(652),
- [sym_comment] = ACTIONS(5),
- [anon_sym_BQUOTE] = ACTIONS(825),
- [sym_number] = ACTIONS(787),
- [sym_private_property_identifier] = ACTIONS(654),
- [sym_this] = ACTIONS(200),
- [sym_super] = ACTIONS(200),
- [sym_true] = ACTIONS(200),
- [sym_false] = ACTIONS(200),
- [sym_null] = ACTIONS(200),
- [sym_undefined] = ACTIONS(1438),
- [anon_sym_AT] = ACTIONS(99),
- [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_override] = 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_object] = ACTIONS(1044),
- [sym_html_comment] = ACTIONS(5),
- },
- [256] = {
- [sym_import] = STATE(3334),
- [sym_parenthesized_expression] = STATE(1251),
- [sym_expression] = STATE(1844),
- [sym_primary_expression] = STATE(1468),
- [sym_yield_expression] = STATE(1634),
- [sym_object] = STATE(1650),
- [sym_object_pattern] = STATE(5633),
- [sym_array] = STATE(1650),
- [sym_array_pattern] = STATE(5633),
- [sym_glimmer_template] = STATE(1634),
- [sym_jsx_element] = STATE(1634),
- [sym_jsx_opening_element] = STATE(3026),
- [sym_jsx_self_closing_element] = STATE(1634),
- [sym_class] = STATE(1650),
- [sym_function_expression] = STATE(1650),
- [sym_generator_function] = STATE(1650),
- [sym_arrow_function] = STATE(1650),
- [sym__call_signature] = STATE(5828),
- [sym_call_expression] = STATE(1650),
- [sym_new_expression] = STATE(1634),
- [sym_await_expression] = STATE(1634),
- [sym_member_expression] = STATE(1251),
- [sym_subscript_expression] = STATE(1251),
- [sym_assignment_expression] = STATE(1634),
- [sym__augmented_assignment_lhs] = STATE(2900),
- [sym_augmented_assignment_expression] = STATE(1634),
- [sym__destructuring_pattern] = STATE(5633),
- [sym_spread_element] = STATE(4610),
- [sym_ternary_expression] = STATE(1634),
- [sym_binary_expression] = STATE(1634),
- [sym_unary_expression] = STATE(1634),
- [sym_update_expression] = STATE(1634),
- [sym_string] = STATE(1650),
- [sym_template_string] = STATE(1650),
- [sym_regex] = STATE(1650),
- [sym_meta_property] = STATE(1650),
- [sym_decorator] = STATE(1244),
- [sym_formal_parameters] = STATE(3742),
- [sym_non_null_expression] = STATE(1251),
- [sym_as_expression] = STATE(1634),
- [sym_satisfies_expression] = STATE(1634),
- [sym_instantiation_expression] = STATE(1634),
- [sym_internal_module] = STATE(1634),
- [sym_type_parameters] = STATE(5349),
- [aux_sym_export_statement_repeat1] = STATE(4458),
- [aux_sym_array_repeat1] = STATE(4611),
- [sym_identifier] = ACTIONS(1428),
- [anon_sym_export] = ACTIONS(1044),
- [anon_sym_type] = ACTIONS(1044),
- [anon_sym_namespace] = ACTIONS(1046),
- [anon_sym_LBRACE] = ACTIONS(813),
- [anon_sym_COMMA] = ACTIONS(1931),
- [anon_sym_typeof] = ACTIONS(650),
- [anon_sym_import] = ACTIONS(133),
- [anon_sym_let] = ACTIONS(1044),
- [anon_sym_BANG] = ACTIONS(622),
- [anon_sym_LPAREN] = ACTIONS(815),
- [anon_sym_RPAREN] = ACTIONS(1949),
- [anon_sym_await] = ACTIONS(624),
- [anon_sym_yield] = ACTIONS(626),
- [anon_sym_LBRACK] = ACTIONS(817),
- [sym_glimmer_opening_tag] = ACTIONS(148),
- [anon_sym_DQUOTE] = ACTIONS(150),
- [anon_sym_SQUOTE] = ACTIONS(152),
- [anon_sym_class] = ACTIONS(154),
- [anon_sym_async] = ACTIONS(1052),
- [anon_sym_function] = ACTIONS(158),
- [anon_sym_new] = ACTIONS(1436),
- [anon_sym_using] = ACTIONS(636),
- [anon_sym_DOT_DOT_DOT] = ACTIONS(1935),
- [anon_sym_PLUS] = ACTIONS(650),
- [anon_sym_DASH] = ACTIONS(650),
- [anon_sym_SLASH] = ACTIONS(646),
- [anon_sym_LT] = ACTIONS(181),
- [anon_sym_TILDE] = ACTIONS(622),
- [anon_sym_void] = ACTIONS(650),
- [anon_sym_delete] = ACTIONS(650),
- [anon_sym_PLUS_PLUS] = ACTIONS(652),
- [anon_sym_DASH_DASH] = ACTIONS(652),
- [sym_comment] = ACTIONS(5),
- [anon_sym_BQUOTE] = ACTIONS(825),
- [sym_number] = ACTIONS(787),
- [sym_private_property_identifier] = ACTIONS(654),
- [sym_this] = ACTIONS(200),
- [sym_super] = ACTIONS(200),
- [sym_true] = ACTIONS(200),
- [sym_false] = ACTIONS(200),
- [sym_null] = ACTIONS(200),
- [sym_undefined] = ACTIONS(1438),
- [anon_sym_AT] = ACTIONS(99),
- [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_override] = 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_object] = ACTIONS(1044),
- [sym_html_comment] = ACTIONS(5),
- },
- [257] = {
- [sym_import] = STATE(3334),
- [sym_parenthesized_expression] = STATE(1327),
- [sym_expression] = STATE(1888),
- [sym_primary_expression] = STATE(1468),
- [sym_yield_expression] = STATE(1634),
- [sym_object] = STATE(1650),
- [sym_object_pattern] = STATE(5821),
- [sym_array] = STATE(1650),
- [sym_array_pattern] = STATE(5821),
- [sym_glimmer_template] = STATE(1634),
- [sym_jsx_element] = STATE(1634),
- [sym_jsx_opening_element] = STATE(3026),
- [sym_jsx_self_closing_element] = STATE(1634),
- [sym_class] = STATE(1650),
- [sym_function_expression] = STATE(1650),
- [sym_generator_function] = STATE(1650),
- [sym_arrow_function] = STATE(1650),
- [sym__call_signature] = STATE(5743),
- [sym_call_expression] = STATE(1650),
- [sym_new_expression] = STATE(1634),
- [sym_await_expression] = STATE(1634),
- [sym_member_expression] = STATE(1327),
- [sym_subscript_expression] = STATE(1327),
- [sym_assignment_expression] = STATE(1634),
- [sym__augmented_assignment_lhs] = STATE(2919),
- [sym_augmented_assignment_expression] = STATE(1634),
- [sym__destructuring_pattern] = STATE(5821),
- [sym_ternary_expression] = STATE(1634),
- [sym_binary_expression] = STATE(1634),
- [sym_unary_expression] = STATE(1634),
- [sym_update_expression] = STATE(1634),
- [sym_string] = STATE(1650),
- [sym_template_string] = STATE(1650),
- [sym_regex] = STATE(1650),
- [sym_meta_property] = STATE(1650),
- [sym_decorator] = STATE(1244),
- [sym_formal_parameters] = STATE(3742),
- [sym_non_null_expression] = STATE(1327),
- [sym_as_expression] = STATE(1634),
- [sym_satisfies_expression] = STATE(1634),
- [sym_instantiation_expression] = STATE(1634),
- [sym_internal_module] = STATE(1634),
- [sym_type_parameters] = STATE(5349),
- [aux_sym_export_statement_repeat1] = STATE(4458),
- [sym_identifier] = ACTIONS(1462),
- [anon_sym_export] = ACTIONS(1286),
- [anon_sym_type] = ACTIONS(1286),
- [anon_sym_namespace] = ACTIONS(1288),
- [anon_sym_LBRACE] = ACTIONS(813),
- [anon_sym_COMMA] = ACTIONS(1650),
- [anon_sym_typeof] = ACTIONS(1308),
- [anon_sym_import] = ACTIONS(133),
- [anon_sym_let] = ACTIONS(1286),
- [anon_sym_BANG] = ACTIONS(1292),
- [anon_sym_LPAREN] = ACTIONS(815),
- [anon_sym_await] = ACTIONS(1294),
- [anon_sym_yield] = ACTIONS(1296),
- [anon_sym_LBRACK] = ACTIONS(1650),
- [sym_glimmer_opening_tag] = ACTIONS(148),
- [anon_sym_GT] = ACTIONS(1650),
- [anon_sym_DQUOTE] = ACTIONS(150),
- [anon_sym_SQUOTE] = ACTIONS(152),
- [anon_sym_class] = ACTIONS(154),
- [anon_sym_async] = ACTIONS(1298),
- [anon_sym_function] = ACTIONS(158),
- [anon_sym_new] = ACTIONS(1466),
- [anon_sym_using] = ACTIONS(1302),
- [anon_sym_AMP] = ACTIONS(1650),
- [anon_sym_PIPE] = ACTIONS(1650),
- [anon_sym_PLUS] = ACTIONS(1308),
- [anon_sym_DASH] = ACTIONS(1308),
- [anon_sym_SLASH] = ACTIONS(922),
- [anon_sym_LT] = ACTIONS(181),
- [anon_sym_TILDE] = ACTIONS(1292),
- [anon_sym_void] = ACTIONS(1308),
- [anon_sym_delete] = ACTIONS(1308),
- [anon_sym_PLUS_PLUS] = ACTIONS(1310),
- [anon_sym_DASH_DASH] = ACTIONS(1310),
- [sym_comment] = ACTIONS(5),
- [anon_sym_BQUOTE] = ACTIONS(825),
- [sym_number] = ACTIONS(787),
- [sym_private_property_identifier] = ACTIONS(1312),
- [sym_this] = ACTIONS(200),
- [sym_super] = ACTIONS(200),
- [sym_true] = ACTIONS(200),
- [sym_false] = ACTIONS(200),
- [sym_null] = ACTIONS(200),
- [sym_undefined] = ACTIONS(1468),
- [anon_sym_AT] = ACTIONS(99),
- [anon_sym_static] = ACTIONS(1286),
- [anon_sym_readonly] = ACTIONS(1286),
- [anon_sym_get] = ACTIONS(1286),
- [anon_sym_set] = ACTIONS(1286),
- [anon_sym_declare] = ACTIONS(1286),
- [anon_sym_public] = ACTIONS(1286),
- [anon_sym_private] = ACTIONS(1286),
- [anon_sym_protected] = ACTIONS(1286),
- [anon_sym_override] = ACTIONS(1286),
- [anon_sym_module] = ACTIONS(1286),
- [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_object] = ACTIONS(1286),
- [anon_sym_extends] = ACTIONS(1652),
- [sym_html_comment] = ACTIONS(5),
- },
- [258] = {
- [sym_import] = STATE(3306),
- [sym_parenthesized_expression] = STATE(1300),
- [sym_expression] = STATE(1635),
- [sym_primary_expression] = STATE(1946),
- [sym_yield_expression] = STATE(2234),
- [sym_object] = STATE(2310),
- [sym_object_pattern] = STATE(5831),
- [sym_array] = STATE(2310),
- [sym_array_pattern] = STATE(5831),
- [sym_glimmer_template] = STATE(2234),
- [sym_jsx_element] = STATE(2234),
- [sym_jsx_opening_element] = STATE(3051),
- [sym_jsx_self_closing_element] = STATE(2234),
- [sym_class] = STATE(2310),
- [sym_function_expression] = STATE(2310),
- [sym_generator_function] = STATE(2310),
- [sym_arrow_function] = STATE(2310),
- [sym__call_signature] = STATE(5829),
- [sym_call_expression] = STATE(2310),
- [sym_new_expression] = STATE(2234),
- [sym_await_expression] = STATE(2234),
- [sym_member_expression] = STATE(1300),
- [sym_subscript_expression] = STATE(1300),
- [sym_assignment_expression] = STATE(2234),
- [sym__augmented_assignment_lhs] = STATE(2943),
- [sym_augmented_assignment_expression] = STATE(2234),
- [sym__destructuring_pattern] = STATE(5831),
- [sym_ternary_expression] = STATE(2234),
- [sym_binary_expression] = STATE(2234),
- [sym_unary_expression] = STATE(2234),
- [sym_update_expression] = STATE(2234),
- [sym_string] = STATE(2310),
- [sym_template_string] = STATE(2310),
- [sym_regex] = STATE(2310),
- [sym_meta_property] = STATE(2310),
- [sym_decorator] = STATE(1244),
- [sym_formal_parameters] = STATE(3742),
- [sym_non_null_expression] = STATE(1300),
- [sym_as_expression] = STATE(2234),
- [sym_satisfies_expression] = STATE(2234),
- [sym_instantiation_expression] = STATE(2234),
- [sym_internal_module] = STATE(2234),
- [sym_type_parameters] = STATE(5349),
- [aux_sym_export_statement_repeat1] = STATE(4499),
- [sym_identifier] = ACTIONS(1446),
- [anon_sym_export] = ACTIONS(1202),
- [anon_sym_type] = ACTIONS(1202),
- [anon_sym_namespace] = ACTIONS(1204),
- [anon_sym_LBRACE] = ACTIONS(700),
- [anon_sym_COMMA] = ACTIONS(1650),
- [anon_sym_typeof] = ACTIONS(1228),
- [anon_sym_import] = ACTIONS(133),
- [anon_sym_let] = ACTIONS(1202),
- [anon_sym_BANG] = ACTIONS(1210),
- [anon_sym_LPAREN] = ACTIONS(41),
- [anon_sym_await] = ACTIONS(1212),
- [anon_sym_yield] = ACTIONS(1214),
- [anon_sym_LBRACK] = ACTIONS(1650),
- [sym_glimmer_opening_tag] = ACTIONS(67),
- [anon_sym_GT] = ACTIONS(1650),
- [anon_sym_DQUOTE] = ACTIONS(69),
- [anon_sym_SQUOTE] = ACTIONS(71),
- [anon_sym_class] = ACTIONS(709),
- [anon_sym_async] = ACTIONS(1218),
- [anon_sym_function] = ACTIONS(713),
- [anon_sym_new] = ACTIONS(1450),
- [anon_sym_using] = ACTIONS(1222),
- [anon_sym_AMP] = ACTIONS(1650),
- [anon_sym_PIPE] = ACTIONS(1650),
- [anon_sym_PLUS] = ACTIONS(1228),
- [anon_sym_DASH] = ACTIONS(1228),
- [anon_sym_SLASH] = ACTIONS(882),
- [anon_sym_LT] = ACTIONS(85),
- [anon_sym_TILDE] = ACTIONS(1210),
- [anon_sym_void] = ACTIONS(1228),
- [anon_sym_delete] = ACTIONS(1228),
- [anon_sym_PLUS_PLUS] = ACTIONS(1230),
- [anon_sym_DASH_DASH] = ACTIONS(1230),
- [sym_comment] = ACTIONS(5),
- [anon_sym_BQUOTE] = ACTIONS(89),
- [sym_number] = ACTIONS(91),
- [sym_private_property_identifier] = ACTIONS(1236),
- [sym_this] = ACTIONS(95),
- [sym_super] = ACTIONS(95),
- [sym_true] = ACTIONS(95),
- [sym_false] = ACTIONS(95),
- [sym_null] = ACTIONS(95),
- [sym_undefined] = ACTIONS(1452),
- [anon_sym_AT] = ACTIONS(99),
- [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_override] = 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_object] = ACTIONS(1202),
- [anon_sym_extends] = ACTIONS(1652),
- [sym_html_comment] = ACTIONS(5),
- },
- [259] = {
- [sym_import] = STATE(3334),
- [sym_parenthesized_expression] = STATE(1336),
- [sym_expression] = STATE(2082),
- [sym_primary_expression] = STATE(1468),
- [sym_yield_expression] = STATE(1634),
- [sym_object] = STATE(1650),
- [sym_object_pattern] = STATE(5745),
- [sym_array] = STATE(1650),
- [sym_array_pattern] = STATE(5745),
- [sym_glimmer_template] = STATE(1634),
- [sym_jsx_element] = STATE(1634),
- [sym_jsx_opening_element] = STATE(3026),
- [sym_jsx_self_closing_element] = STATE(1634),
- [sym_class] = STATE(1650),
- [sym_function_expression] = STATE(1650),
- [sym_generator_function] = STATE(1650),
- [sym_arrow_function] = STATE(1650),
- [sym__call_signature] = STATE(5553),
- [sym_call_expression] = STATE(1650),
- [sym_new_expression] = STATE(1634),
- [sym_await_expression] = STATE(1634),
- [sym_member_expression] = STATE(1336),
- [sym_subscript_expression] = STATE(1336),
- [sym_assignment_expression] = STATE(1634),
- [sym__augmented_assignment_lhs] = STATE(2884),
- [sym_augmented_assignment_expression] = STATE(1634),
- [sym__destructuring_pattern] = STATE(5745),
- [sym_ternary_expression] = STATE(1634),
- [sym_binary_expression] = STATE(1634),
- [sym_unary_expression] = STATE(1634),
- [sym_update_expression] = STATE(1634),
- [sym_string] = STATE(1650),
- [sym_template_string] = STATE(1650),
- [sym_regex] = STATE(1650),
- [sym_meta_property] = STATE(1650),
- [sym_decorator] = STATE(1244),
- [sym_formal_parameters] = STATE(3742),
- [sym_non_null_expression] = STATE(1336),
- [sym_as_expression] = STATE(1634),
- [sym_satisfies_expression] = STATE(1634),
- [sym_instantiation_expression] = STATE(1634),
- [sym_internal_module] = STATE(1634),
- [sym_type_parameters] = STATE(5349),
- [aux_sym_export_statement_repeat1] = STATE(4458),
- [sym_identifier] = ACTIONS(1470),
- [anon_sym_export] = ACTIONS(1250),
- [anon_sym_type] = ACTIONS(1250),
- [anon_sym_namespace] = ACTIONS(1252),
- [anon_sym_LBRACE] = ACTIONS(813),
- [anon_sym_COMMA] = ACTIONS(1650),
- [anon_sym_typeof] = ACTIONS(1272),
- [anon_sym_import] = ACTIONS(133),
- [anon_sym_let] = ACTIONS(1250),
- [anon_sym_BANG] = ACTIONS(1256),
- [anon_sym_LPAREN] = ACTIONS(815),
- [anon_sym_await] = ACTIONS(1258),
- [anon_sym_yield] = ACTIONS(1260),
- [anon_sym_LBRACK] = ACTIONS(1650),
- [sym_glimmer_opening_tag] = ACTIONS(148),
- [anon_sym_GT] = ACTIONS(1650),
- [anon_sym_DQUOTE] = ACTIONS(150),
- [anon_sym_SQUOTE] = ACTIONS(152),
- [anon_sym_class] = ACTIONS(154),
- [anon_sym_async] = ACTIONS(1262),
- [anon_sym_function] = ACTIONS(158),
- [anon_sym_new] = ACTIONS(1474),
- [anon_sym_using] = ACTIONS(1266),
- [anon_sym_AMP] = ACTIONS(1650),
- [anon_sym_PIPE] = ACTIONS(1650),
- [anon_sym_PLUS] = ACTIONS(1272),
- [anon_sym_DASH] = ACTIONS(1272),
- [anon_sym_SLASH] = ACTIONS(646),
- [anon_sym_LT] = ACTIONS(181),
- [anon_sym_TILDE] = ACTIONS(1256),
- [anon_sym_void] = ACTIONS(1272),
- [anon_sym_delete] = ACTIONS(1272),
- [anon_sym_PLUS_PLUS] = ACTIONS(1274),
- [anon_sym_DASH_DASH] = ACTIONS(1274),
- [sym_comment] = ACTIONS(5),
- [anon_sym_BQUOTE] = ACTIONS(825),
- [sym_number] = ACTIONS(787),
- [sym_private_property_identifier] = ACTIONS(1276),
- [sym_this] = ACTIONS(200),
- [sym_super] = ACTIONS(200),
- [sym_true] = ACTIONS(200),
- [sym_false] = ACTIONS(200),
- [sym_null] = ACTIONS(200),
- [sym_undefined] = ACTIONS(1476),
- [anon_sym_AT] = ACTIONS(99),
- [anon_sym_static] = ACTIONS(1250),
- [anon_sym_readonly] = ACTIONS(1250),
- [anon_sym_get] = ACTIONS(1250),
- [anon_sym_set] = ACTIONS(1250),
- [anon_sym_declare] = ACTIONS(1250),
- [anon_sym_public] = ACTIONS(1250),
- [anon_sym_private] = ACTIONS(1250),
- [anon_sym_protected] = ACTIONS(1250),
- [anon_sym_override] = ACTIONS(1250),
- [anon_sym_module] = ACTIONS(1250),
- [anon_sym_any] = ACTIONS(1250),
- [anon_sym_number] = ACTIONS(1250),
- [anon_sym_boolean] = ACTIONS(1250),
- [anon_sym_string] = ACTIONS(1250),
- [anon_sym_symbol] = ACTIONS(1250),
- [anon_sym_object] = ACTIONS(1250),
- [anon_sym_extends] = ACTIONS(1652),
- [sym_html_comment] = ACTIONS(5),
- },
- [260] = {
- [sym_import] = STATE(3306),
- [sym_parenthesized_expression] = STATE(1294),
- [sym_expression] = STATE(1727),
- [sym_primary_expression] = STATE(1946),
- [sym_yield_expression] = STATE(2234),
- [sym_object] = STATE(2310),
- [sym_object_pattern] = STATE(5667),
- [sym_array] = STATE(2310),
- [sym_array_pattern] = STATE(5667),
- [sym_glimmer_template] = STATE(2234),
- [sym_jsx_element] = STATE(2234),
- [sym_jsx_opening_element] = STATE(3051),
- [sym_jsx_self_closing_element] = STATE(2234),
- [sym_class] = STATE(2310),
- [sym_function_expression] = STATE(2310),
- [sym_generator_function] = STATE(2310),
- [sym_arrow_function] = STATE(2310),
- [sym__call_signature] = STATE(5809),
- [sym_call_expression] = STATE(2310),
- [sym_new_expression] = STATE(2234),
- [sym_await_expression] = STATE(2234),
- [sym_member_expression] = STATE(1294),
- [sym_subscript_expression] = STATE(1294),
- [sym_assignment_expression] = STATE(2234),
- [sym__augmented_assignment_lhs] = STATE(2875),
- [sym_augmented_assignment_expression] = STATE(2234),
- [sym__destructuring_pattern] = STATE(5667),
- [sym_ternary_expression] = STATE(2234),
- [sym_binary_expression] = STATE(2234),
- [sym_unary_expression] = STATE(2234),
- [sym_update_expression] = STATE(2234),
- [sym_string] = STATE(2310),
- [sym_template_string] = STATE(2310),
- [sym_regex] = STATE(2310),
- [sym_meta_property] = STATE(2310),
- [sym_decorator] = STATE(1244),
- [sym_formal_parameters] = STATE(3742),
- [sym_non_null_expression] = STATE(1294),
- [sym_as_expression] = STATE(2234),
- [sym_satisfies_expression] = STATE(2234),
- [sym_instantiation_expression] = STATE(2234),
- [sym_internal_module] = STATE(2234),
- [sym_type_parameters] = STATE(5349),
- [aux_sym_export_statement_repeat1] = STATE(4499),
- [sym_identifier] = ACTIONS(1440),
- [anon_sym_export] = ACTIONS(1372),
- [anon_sym_type] = ACTIONS(1372),
- [anon_sym_namespace] = ACTIONS(1374),
- [anon_sym_LBRACE] = ACTIONS(700),
- [anon_sym_COMMA] = ACTIONS(1650),
- [anon_sym_typeof] = ACTIONS(21),
- [anon_sym_import] = ACTIONS(133),
- [anon_sym_let] = ACTIONS(1372),
- [anon_sym_BANG] = ACTIONS(33),
- [anon_sym_LPAREN] = ACTIONS(41),
- [anon_sym_await] = ACTIONS(43),
- [anon_sym_yield] = ACTIONS(63),
- [anon_sym_LBRACK] = ACTIONS(1650),
- [sym_glimmer_opening_tag] = ACTIONS(67),
- [anon_sym_GT] = ACTIONS(1650),
- [anon_sym_DQUOTE] = ACTIONS(69),
- [anon_sym_SQUOTE] = ACTIONS(71),
- [anon_sym_class] = ACTIONS(709),
- [anon_sym_async] = ACTIONS(1378),
- [anon_sym_function] = ACTIONS(713),
- [anon_sym_new] = ACTIONS(1444),
- [anon_sym_using] = ACTIONS(81),
- [anon_sym_AMP] = ACTIONS(1650),
- [anon_sym_PIPE] = ACTIONS(1650),
- [anon_sym_PLUS] = ACTIONS(21),
- [anon_sym_DASH] = ACTIONS(21),
- [anon_sym_SLASH] = ACTIONS(83),
- [anon_sym_LT] = ACTIONS(85),
- [anon_sym_TILDE] = ACTIONS(33),
- [anon_sym_void] = ACTIONS(21),
- [anon_sym_delete] = ACTIONS(21),
- [anon_sym_PLUS_PLUS] = ACTIONS(87),
- [anon_sym_DASH_DASH] = ACTIONS(87),
- [sym_comment] = ACTIONS(5),
- [anon_sym_BQUOTE] = ACTIONS(89),
- [sym_number] = ACTIONS(91),
- [sym_private_property_identifier] = ACTIONS(93),
- [sym_this] = ACTIONS(95),
- [sym_super] = ACTIONS(95),
- [sym_true] = ACTIONS(95),
- [sym_false] = ACTIONS(95),
- [sym_null] = ACTIONS(95),
- [sym_undefined] = ACTIONS(97),
- [anon_sym_AT] = ACTIONS(99),
- [anon_sym_static] = ACTIONS(1372),
- [anon_sym_readonly] = ACTIONS(1372),
- [anon_sym_get] = ACTIONS(1372),
- [anon_sym_set] = ACTIONS(1372),
- [anon_sym_declare] = ACTIONS(1372),
- [anon_sym_public] = ACTIONS(1372),
- [anon_sym_private] = ACTIONS(1372),
- [anon_sym_protected] = ACTIONS(1372),
- [anon_sym_override] = ACTIONS(1372),
- [anon_sym_module] = ACTIONS(1372),
- [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_object] = ACTIONS(1372),
- [anon_sym_extends] = ACTIONS(1652),
- [sym_html_comment] = ACTIONS(5),
- },
- [261] = {
- [sym_import] = STATE(3334),
- [sym_parenthesized_expression] = STATE(1251),
- [sym_expression] = STATE(1828),
- [sym_primary_expression] = STATE(1468),
- [sym_yield_expression] = STATE(1634),
- [sym_object] = STATE(1650),
- [sym_object_pattern] = STATE(5633),
- [sym_array] = STATE(1650),
- [sym_array_pattern] = STATE(5633),
- [sym_glimmer_template] = STATE(1634),
- [sym_jsx_element] = STATE(1634),
- [sym_jsx_opening_element] = STATE(3026),
- [sym_jsx_self_closing_element] = STATE(1634),
- [sym_class] = STATE(1650),
- [sym_function_expression] = STATE(1650),
- [sym_generator_function] = STATE(1650),
- [sym_arrow_function] = STATE(1650),
- [sym__call_signature] = STATE(5828),
- [sym_call_expression] = STATE(1650),
- [sym_new_expression] = STATE(1634),
- [sym_await_expression] = STATE(1634),
- [sym_member_expression] = STATE(1251),
- [sym_subscript_expression] = STATE(1251),
- [sym_assignment_expression] = STATE(1634),
- [sym__augmented_assignment_lhs] = STATE(2900),
- [sym_augmented_assignment_expression] = STATE(1634),
- [sym__destructuring_pattern] = STATE(5633),
- [sym_spread_element] = STATE(4979),
- [sym_ternary_expression] = STATE(1634),
- [sym_binary_expression] = STATE(1634),
- [sym_unary_expression] = STATE(1634),
- [sym_update_expression] = STATE(1634),
- [sym_string] = STATE(1650),
- [sym_template_string] = STATE(1650),
- [sym_regex] = STATE(1650),
- [sym_meta_property] = STATE(1650),
- [sym_decorator] = STATE(1244),
- [sym_formal_parameters] = STATE(3742),
- [sym_non_null_expression] = STATE(1251),
- [sym_as_expression] = STATE(1634),
- [sym_satisfies_expression] = STATE(1634),
- [sym_instantiation_expression] = STATE(1634),
- [sym_internal_module] = STATE(1634),
- [sym_type_parameters] = STATE(5349),
- [aux_sym_export_statement_repeat1] = STATE(4458),
- [sym_identifier] = ACTIONS(1428),
- [anon_sym_export] = ACTIONS(1044),
- [anon_sym_type] = ACTIONS(1044),
- [anon_sym_namespace] = ACTIONS(1046),
- [anon_sym_LBRACE] = ACTIONS(813),
- [anon_sym_COMMA] = ACTIONS(1951),
- [anon_sym_typeof] = ACTIONS(650),
- [anon_sym_import] = ACTIONS(133),
- [anon_sym_let] = ACTIONS(1044),
- [anon_sym_BANG] = ACTIONS(622),
- [anon_sym_LPAREN] = ACTIONS(815),
- [anon_sym_RPAREN] = ACTIONS(1951),
- [anon_sym_await] = ACTIONS(624),
- [anon_sym_yield] = ACTIONS(626),
- [anon_sym_LBRACK] = ACTIONS(817),
- [anon_sym_RBRACK] = ACTIONS(1951),
- [sym_glimmer_opening_tag] = ACTIONS(148),
- [anon_sym_DQUOTE] = ACTIONS(150),
- [anon_sym_SQUOTE] = ACTIONS(152),
- [anon_sym_class] = ACTIONS(154),
- [anon_sym_async] = ACTIONS(1052),
- [anon_sym_function] = ACTIONS(158),
- [anon_sym_new] = ACTIONS(1436),
- [anon_sym_using] = ACTIONS(636),
- [anon_sym_DOT_DOT_DOT] = ACTIONS(1935),
- [anon_sym_PLUS] = ACTIONS(650),
- [anon_sym_DASH] = ACTIONS(650),
- [anon_sym_SLASH] = ACTIONS(646),
- [anon_sym_LT] = ACTIONS(181),
- [anon_sym_TILDE] = ACTIONS(622),
- [anon_sym_void] = ACTIONS(650),
- [anon_sym_delete] = ACTIONS(650),
- [anon_sym_PLUS_PLUS] = ACTIONS(652),
- [anon_sym_DASH_DASH] = ACTIONS(652),
- [sym_comment] = ACTIONS(5),
- [anon_sym_BQUOTE] = ACTIONS(825),
- [sym_number] = ACTIONS(787),
- [sym_private_property_identifier] = ACTIONS(654),
- [sym_this] = ACTIONS(200),
- [sym_super] = ACTIONS(200),
- [sym_true] = ACTIONS(200),
- [sym_false] = ACTIONS(200),
- [sym_null] = ACTIONS(200),
- [sym_undefined] = ACTIONS(1438),
- [anon_sym_AT] = ACTIONS(99),
- [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_override] = 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_object] = ACTIONS(1044),
- [sym_html_comment] = ACTIONS(5),
- },
- [262] = {
- [sym_import] = STATE(3334),
- [sym_parenthesized_expression] = STATE(1251),
- [sym_expression] = STATE(1802),
- [sym_primary_expression] = STATE(1468),
- [sym_yield_expression] = STATE(1634),
- [sym_object] = STATE(1650),
- [sym_object_pattern] = STATE(5633),
- [sym_array] = STATE(1650),
- [sym_array_pattern] = STATE(5633),
- [sym_glimmer_template] = STATE(1634),
- [sym_jsx_element] = STATE(1634),
- [sym_jsx_opening_element] = STATE(3026),
- [sym_jsx_self_closing_element] = STATE(1634),
- [sym_class] = STATE(1650),
- [sym_function_expression] = STATE(1650),
- [sym_generator_function] = STATE(1650),
- [sym_arrow_function] = STATE(1650),
- [sym__call_signature] = STATE(5828),
- [sym_call_expression] = STATE(1650),
- [sym_new_expression] = STATE(1634),
- [sym_await_expression] = STATE(1634),
- [sym_member_expression] = STATE(1251),
- [sym_subscript_expression] = STATE(1251),
- [sym_assignment_expression] = STATE(1634),
- [sym__augmented_assignment_lhs] = STATE(2900),
- [sym_augmented_assignment_expression] = STATE(1634),
- [sym__destructuring_pattern] = STATE(5633),
- [sym_spread_element] = STATE(4572),
- [sym_ternary_expression] = STATE(1634),
- [sym_binary_expression] = STATE(1634),
- [sym_unary_expression] = STATE(1634),
- [sym_update_expression] = STATE(1634),
- [sym_string] = STATE(1650),
- [sym_template_string] = STATE(1650),
- [sym_regex] = STATE(1650),
- [sym_meta_property] = STATE(1650),
- [sym_decorator] = STATE(1244),
- [sym_formal_parameters] = STATE(3742),
- [sym_non_null_expression] = STATE(1251),
- [sym_as_expression] = STATE(1634),
- [sym_satisfies_expression] = STATE(1634),
- [sym_instantiation_expression] = STATE(1634),
- [sym_internal_module] = STATE(1634),
- [sym_type_parameters] = STATE(5349),
- [aux_sym_export_statement_repeat1] = STATE(4458),
- [aux_sym_array_repeat1] = STATE(4583),
- [sym_identifier] = ACTIONS(1428),
- [anon_sym_export] = ACTIONS(1044),
- [anon_sym_type] = ACTIONS(1044),
- [anon_sym_namespace] = ACTIONS(1046),
- [anon_sym_LBRACE] = ACTIONS(813),
- [anon_sym_COMMA] = ACTIONS(1931),
- [anon_sym_typeof] = ACTIONS(650),
- [anon_sym_import] = ACTIONS(133),
- [anon_sym_let] = ACTIONS(1044),
- [anon_sym_BANG] = ACTIONS(622),
- [anon_sym_LPAREN] = ACTIONS(815),
- [anon_sym_RPAREN] = ACTIONS(1953),
- [anon_sym_await] = ACTIONS(624),
- [anon_sym_yield] = ACTIONS(626),
- [anon_sym_LBRACK] = ACTIONS(817),
- [sym_glimmer_opening_tag] = ACTIONS(148),
- [anon_sym_DQUOTE] = ACTIONS(150),
- [anon_sym_SQUOTE] = ACTIONS(152),
- [anon_sym_class] = ACTIONS(154),
- [anon_sym_async] = ACTIONS(1052),
- [anon_sym_function] = ACTIONS(158),
- [anon_sym_new] = ACTIONS(1436),
- [anon_sym_using] = ACTIONS(636),
- [anon_sym_DOT_DOT_DOT] = ACTIONS(1935),
- [anon_sym_PLUS] = ACTIONS(650),
- [anon_sym_DASH] = ACTIONS(650),
- [anon_sym_SLASH] = ACTIONS(646),
- [anon_sym_LT] = ACTIONS(181),
- [anon_sym_TILDE] = ACTIONS(622),
- [anon_sym_void] = ACTIONS(650),
- [anon_sym_delete] = ACTIONS(650),
- [anon_sym_PLUS_PLUS] = ACTIONS(652),
- [anon_sym_DASH_DASH] = ACTIONS(652),
- [sym_comment] = ACTIONS(5),
- [anon_sym_BQUOTE] = ACTIONS(825),
- [sym_number] = ACTIONS(787),
- [sym_private_property_identifier] = ACTIONS(654),
- [sym_this] = ACTIONS(200),
- [sym_super] = ACTIONS(200),
- [sym_true] = ACTIONS(200),
- [sym_false] = ACTIONS(200),
- [sym_null] = ACTIONS(200),
- [sym_undefined] = ACTIONS(1438),
- [anon_sym_AT] = ACTIONS(99),
- [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_override] = 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_object] = ACTIONS(1044),
- [sym_html_comment] = ACTIONS(5),
- },
- [263] = {
- [sym_import] = STATE(3334),
- [sym_parenthesized_expression] = STATE(1251),
- [sym_expression] = STATE(1847),
- [sym_primary_expression] = STATE(1468),
- [sym_yield_expression] = STATE(1634),
- [sym_object] = STATE(1650),
- [sym_object_pattern] = STATE(5633),
- [sym_array] = STATE(1650),
- [sym_array_pattern] = STATE(5633),
- [sym_glimmer_template] = STATE(1634),
- [sym_jsx_element] = STATE(1634),
- [sym_jsx_opening_element] = STATE(3026),
- [sym_jsx_self_closing_element] = STATE(1634),
- [sym_class] = STATE(1650),
- [sym_function_expression] = STATE(1650),
- [sym_generator_function] = STATE(1650),
- [sym_arrow_function] = STATE(1650),
- [sym__call_signature] = STATE(5828),
- [sym_call_expression] = STATE(1650),
- [sym_new_expression] = STATE(1634),
- [sym_await_expression] = STATE(1634),
- [sym_member_expression] = STATE(1251),
- [sym_subscript_expression] = STATE(1251),
- [sym_assignment_expression] = STATE(1634),
- [sym__augmented_assignment_lhs] = STATE(2900),
- [sym_augmented_assignment_expression] = STATE(1634),
- [sym__destructuring_pattern] = STATE(5633),
- [sym_spread_element] = STATE(4644),
- [sym_ternary_expression] = STATE(1634),
- [sym_binary_expression] = STATE(1634),
- [sym_unary_expression] = STATE(1634),
- [sym_update_expression] = STATE(1634),
- [sym_string] = STATE(1650),
- [sym_template_string] = STATE(1650),
- [sym_regex] = STATE(1650),
- [sym_meta_property] = STATE(1650),
- [sym_decorator] = STATE(1244),
- [sym_formal_parameters] = STATE(3742),
- [sym_non_null_expression] = STATE(1251),
- [sym_as_expression] = STATE(1634),
- [sym_satisfies_expression] = STATE(1634),
- [sym_instantiation_expression] = STATE(1634),
- [sym_internal_module] = STATE(1634),
- [sym_type_parameters] = STATE(5349),
- [aux_sym_export_statement_repeat1] = STATE(4458),
- [aux_sym_array_repeat1] = STATE(4645),
- [sym_identifier] = ACTIONS(1428),
- [anon_sym_export] = ACTIONS(1044),
- [anon_sym_type] = ACTIONS(1044),
- [anon_sym_namespace] = ACTIONS(1046),
- [anon_sym_LBRACE] = ACTIONS(813),
- [anon_sym_COMMA] = ACTIONS(1931),
- [anon_sym_typeof] = ACTIONS(650),
- [anon_sym_import] = ACTIONS(133),
- [anon_sym_let] = ACTIONS(1044),
- [anon_sym_BANG] = ACTIONS(622),
- [anon_sym_LPAREN] = ACTIONS(815),
- [anon_sym_RPAREN] = ACTIONS(1955),
- [anon_sym_await] = ACTIONS(624),
- [anon_sym_yield] = ACTIONS(626),
- [anon_sym_LBRACK] = ACTIONS(817),
- [sym_glimmer_opening_tag] = ACTIONS(148),
- [anon_sym_DQUOTE] = ACTIONS(150),
- [anon_sym_SQUOTE] = ACTIONS(152),
- [anon_sym_class] = ACTIONS(154),
- [anon_sym_async] = ACTIONS(1052),
- [anon_sym_function] = ACTIONS(158),
- [anon_sym_new] = ACTIONS(1436),
- [anon_sym_using] = ACTIONS(636),
- [anon_sym_DOT_DOT_DOT] = ACTIONS(1935),
- [anon_sym_PLUS] = ACTIONS(650),
- [anon_sym_DASH] = ACTIONS(650),
- [anon_sym_SLASH] = ACTIONS(646),
- [anon_sym_LT] = ACTIONS(181),
- [anon_sym_TILDE] = ACTIONS(622),
- [anon_sym_void] = ACTIONS(650),
- [anon_sym_delete] = ACTIONS(650),
- [anon_sym_PLUS_PLUS] = ACTIONS(652),
- [anon_sym_DASH_DASH] = ACTIONS(652),
- [sym_comment] = ACTIONS(5),
- [anon_sym_BQUOTE] = ACTIONS(825),
- [sym_number] = ACTIONS(787),
- [sym_private_property_identifier] = ACTIONS(654),
- [sym_this] = ACTIONS(200),
- [sym_super] = ACTIONS(200),
- [sym_true] = ACTIONS(200),
- [sym_false] = ACTIONS(200),
- [sym_null] = ACTIONS(200),
- [sym_undefined] = ACTIONS(1438),
- [anon_sym_AT] = ACTIONS(99),
- [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_override] = 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_object] = ACTIONS(1044),
- [sym_html_comment] = ACTIONS(5),
- },
- [264] = {
- [sym_import] = STATE(3334),
- [sym_parenthesized_expression] = STATE(1369),
- [sym_expression] = STATE(2305),
- [sym_primary_expression] = STATE(1468),
- [sym_yield_expression] = STATE(1634),
- [sym_object] = STATE(1650),
- [sym_object_pattern] = STATE(5861),
- [sym_array] = STATE(1650),
- [sym_array_pattern] = STATE(5861),
- [sym_glimmer_template] = STATE(1634),
- [sym_jsx_element] = STATE(1634),
- [sym_jsx_opening_element] = STATE(3026),
- [sym_jsx_self_closing_element] = STATE(1634),
- [sym_class] = STATE(1650),
- [sym_function_expression] = STATE(1650),
- [sym_generator_function] = STATE(1650),
- [sym_arrow_function] = STATE(1650),
- [sym__call_signature] = STATE(5765),
- [sym_call_expression] = STATE(1650),
- [sym_new_expression] = STATE(1634),
- [sym_await_expression] = STATE(1634),
- [sym_member_expression] = STATE(1369),
- [sym_subscript_expression] = STATE(1369),
- [sym_assignment_expression] = STATE(1634),
- [sym__augmented_assignment_lhs] = STATE(2891),
- [sym_augmented_assignment_expression] = STATE(1634),
- [sym__destructuring_pattern] = STATE(5861),
- [sym_ternary_expression] = STATE(1634),
- [sym_binary_expression] = STATE(1634),
- [sym_unary_expression] = STATE(1634),
- [sym_update_expression] = STATE(1634),
- [sym_string] = STATE(1650),
- [sym_template_string] = STATE(1650),
- [sym_regex] = STATE(1650),
- [sym_meta_property] = STATE(1650),
- [sym_decorator] = STATE(1244),
- [sym_formal_parameters] = STATE(3742),
- [sym_non_null_expression] = STATE(1369),
- [sym_as_expression] = STATE(1634),
- [sym_satisfies_expression] = STATE(1634),
- [sym_instantiation_expression] = STATE(1634),
- [sym_internal_module] = STATE(1634),
- [sym_type_parameters] = STATE(5349),
- [aux_sym_export_statement_repeat1] = STATE(4458),
- [sym_identifier] = ACTIONS(1478),
- [anon_sym_export] = ACTIONS(1114),
- [anon_sym_type] = ACTIONS(1114),
- [anon_sym_namespace] = ACTIONS(1116),
- [anon_sym_LBRACE] = ACTIONS(813),
- [anon_sym_COMMA] = ACTIONS(1650),
- [anon_sym_typeof] = ACTIONS(1138),
- [anon_sym_import] = ACTIONS(133),
- [anon_sym_let] = ACTIONS(1114),
- [anon_sym_BANG] = ACTIONS(1122),
- [anon_sym_LPAREN] = ACTIONS(815),
- [anon_sym_await] = ACTIONS(1124),
- [anon_sym_yield] = ACTIONS(1126),
- [anon_sym_LBRACK] = ACTIONS(1650),
- [sym_glimmer_opening_tag] = ACTIONS(148),
- [anon_sym_GT] = ACTIONS(1650),
- [anon_sym_DQUOTE] = ACTIONS(150),
- [anon_sym_SQUOTE] = ACTIONS(152),
- [anon_sym_class] = ACTIONS(154),
- [anon_sym_async] = ACTIONS(1128),
- [anon_sym_function] = ACTIONS(158),
- [anon_sym_new] = ACTIONS(1482),
- [anon_sym_using] = ACTIONS(1132),
- [anon_sym_AMP] = ACTIONS(1650),
- [anon_sym_PIPE] = ACTIONS(1650),
- [anon_sym_PLUS] = ACTIONS(1138),
- [anon_sym_DASH] = ACTIONS(1138),
- [anon_sym_SLASH] = ACTIONS(646),
- [anon_sym_LT] = ACTIONS(181),
- [anon_sym_TILDE] = ACTIONS(1122),
- [anon_sym_void] = ACTIONS(1138),
- [anon_sym_delete] = ACTIONS(1138),
- [anon_sym_PLUS_PLUS] = ACTIONS(1140),
- [anon_sym_DASH_DASH] = ACTIONS(1140),
- [sym_comment] = ACTIONS(5),
- [anon_sym_BQUOTE] = ACTIONS(825),
- [sym_number] = ACTIONS(787),
- [sym_private_property_identifier] = ACTIONS(1142),
- [sym_this] = ACTIONS(200),
- [sym_super] = ACTIONS(200),
- [sym_true] = ACTIONS(200),
- [sym_false] = ACTIONS(200),
- [sym_null] = ACTIONS(200),
- [sym_undefined] = ACTIONS(1484),
- [anon_sym_AT] = ACTIONS(99),
- [anon_sym_static] = ACTIONS(1114),
- [anon_sym_readonly] = ACTIONS(1114),
- [anon_sym_get] = ACTIONS(1114),
- [anon_sym_set] = ACTIONS(1114),
- [anon_sym_declare] = ACTIONS(1114),
- [anon_sym_public] = ACTIONS(1114),
- [anon_sym_private] = ACTIONS(1114),
- [anon_sym_protected] = ACTIONS(1114),
- [anon_sym_override] = ACTIONS(1114),
- [anon_sym_module] = ACTIONS(1114),
- [anon_sym_any] = ACTIONS(1114),
- [anon_sym_number] = ACTIONS(1114),
- [anon_sym_boolean] = ACTIONS(1114),
- [anon_sym_string] = ACTIONS(1114),
- [anon_sym_symbol] = ACTIONS(1114),
- [anon_sym_object] = ACTIONS(1114),
- [anon_sym_extends] = ACTIONS(1652),
- [sym_html_comment] = ACTIONS(5),
- },
- [265] = {
- [sym_import] = STATE(3334),
- [sym_parenthesized_expression] = STATE(1179),
- [sym_expression] = STATE(2415),
- [sym_primary_expression] = STATE(1468),
- [sym_yield_expression] = STATE(1634),
- [sym_object] = STATE(1650),
- [sym_object_pattern] = STATE(3588),
- [sym_array] = STATE(1650),
- [sym_array_pattern] = STATE(3588),
- [sym_glimmer_template] = STATE(1634),
- [sym_jsx_element] = STATE(1634),
- [sym_jsx_opening_element] = STATE(3026),
- [sym_jsx_self_closing_element] = STATE(1634),
- [sym_class] = STATE(1650),
- [sym_function_expression] = STATE(1650),
- [sym_generator_function] = STATE(1650),
- [sym_arrow_function] = STATE(1650),
- [sym__call_signature] = STATE(5619),
- [sym_call_expression] = STATE(1650),
- [sym_new_expression] = STATE(1634),
- [sym_await_expression] = STATE(1634),
- [sym_member_expression] = STATE(1221),
- [sym_subscript_expression] = STATE(1221),
- [sym_assignment_expression] = STATE(1634),
- [sym__augmented_assignment_lhs] = STATE(2878),
- [sym_augmented_assignment_expression] = STATE(1634),
- [sym__destructuring_pattern] = STATE(3588),
- [sym_ternary_expression] = STATE(1634),
- [sym_binary_expression] = STATE(1634),
- [sym_unary_expression] = STATE(1634),
- [sym_update_expression] = STATE(1634),
- [sym_string] = STATE(1650),
- [sym_template_string] = STATE(1650),
- [sym_regex] = STATE(1650),
- [sym_meta_property] = STATE(1650),
- [sym_decorator] = STATE(1244),
- [sym_formal_parameters] = STATE(3742),
- [sym_pattern] = STATE(4274),
- [sym_rest_pattern] = STATE(3700),
- [sym_non_null_expression] = STATE(1221),
- [sym_as_expression] = STATE(1634),
- [sym_satisfies_expression] = STATE(1634),
- [sym_instantiation_expression] = STATE(1634),
- [sym_internal_module] = STATE(1634),
- [sym_override_modifier] = STATE(292),
- [sym_type_parameters] = STATE(5349),
- [aux_sym_export_statement_repeat1] = STATE(4458),
- [sym_identifier] = ACTIONS(769),
- [anon_sym_export] = ACTIONS(115),
- [anon_sym_type] = ACTIONS(115),
- [anon_sym_namespace] = ACTIONS(124),
- [anon_sym_LBRACE] = ACTIONS(771),
- [anon_sym_typeof] = ACTIONS(187),
- [anon_sym_import] = ACTIONS(133),
- [anon_sym_let] = ACTIONS(115),
- [anon_sym_BANG] = ACTIONS(183),
- [anon_sym_LPAREN] = ACTIONS(815),
- [anon_sym_await] = ACTIONS(142),
- [anon_sym_yield] = ACTIONS(144),
- [anon_sym_LBRACK] = ACTIONS(1630),
- [sym_glimmer_opening_tag] = ACTIONS(148),
- [anon_sym_DQUOTE] = ACTIONS(150),
- [anon_sym_SQUOTE] = ACTIONS(152),
- [anon_sym_class] = ACTIONS(154),
- [anon_sym_async] = ACTIONS(156),
- [anon_sym_function] = ACTIONS(158),
- [anon_sym_new] = ACTIONS(779),
- [anon_sym_using] = ACTIONS(166),
- [anon_sym_DOT_DOT_DOT] = ACTIONS(170),
- [anon_sym_PLUS] = ACTIONS(187),
- [anon_sym_DASH] = ACTIONS(187),
- [anon_sym_SLASH] = ACTIONS(646),
- [anon_sym_LT] = ACTIONS(181),
- [anon_sym_TILDE] = ACTIONS(183),
- [anon_sym_void] = ACTIONS(187),
- [anon_sym_delete] = ACTIONS(187),
- [anon_sym_PLUS_PLUS] = ACTIONS(719),
- [anon_sym_DASH_DASH] = ACTIONS(719),
- [sym_comment] = ACTIONS(5),
- [anon_sym_BQUOTE] = ACTIONS(825),
- [sym_number] = ACTIONS(787),
- [sym_private_property_identifier] = ACTIONS(196),
- [sym_this] = ACTIONS(1957),
- [sym_super] = ACTIONS(200),
- [sym_true] = ACTIONS(200),
- [sym_false] = ACTIONS(200),
- [sym_null] = ACTIONS(200),
- [sym_undefined] = ACTIONS(791),
- [anon_sym_AT] = ACTIONS(99),
- [anon_sym_static] = ACTIONS(115),
- [anon_sym_readonly] = ACTIONS(1959),
- [anon_sym_get] = ACTIONS(115),
- [anon_sym_set] = ACTIONS(115),
- [anon_sym_declare] = ACTIONS(115),
- [anon_sym_public] = ACTIONS(115),
- [anon_sym_private] = ACTIONS(115),
- [anon_sym_protected] = ACTIONS(115),
- [anon_sym_override] = ACTIONS(835),
- [anon_sym_module] = ACTIONS(115),
- [anon_sym_any] = ACTIONS(115),
- [anon_sym_number] = ACTIONS(115),
- [anon_sym_boolean] = ACTIONS(115),
- [anon_sym_string] = ACTIONS(115),
- [anon_sym_symbol] = ACTIONS(115),
- [anon_sym_object] = ACTIONS(115),
- [sym_html_comment] = ACTIONS(5),
- },
- [266] = {
- [sym_import] = STATE(3328),
- [sym_parenthesized_expression] = STATE(1179),
- [sym_expression] = STATE(2405),
- [sym_primary_expression] = STATE(1468),
- [sym_yield_expression] = STATE(1634),
- [sym_object] = STATE(1650),
- [sym_object_pattern] = STATE(5854),
- [sym_array] = STATE(1650),
- [sym_array_pattern] = STATE(5854),
- [sym_glimmer_template] = STATE(1634),
- [sym_jsx_element] = STATE(1634),
- [sym_jsx_opening_element] = STATE(3026),
- [sym_jsx_self_closing_element] = STATE(1634),
- [sym_class] = STATE(1650),
- [sym_function_expression] = STATE(1650),
- [sym_generator_function] = STATE(1650),
- [sym_arrow_function] = STATE(1650),
- [sym__call_signature] = STATE(5619),
- [sym_call_expression] = STATE(1650),
- [sym_new_expression] = STATE(1634),
- [sym_await_expression] = STATE(1634),
- [sym_member_expression] = STATE(1179),
- [sym_subscript_expression] = STATE(1179),
- [sym_assignment_expression] = STATE(1634),
- [sym__augmented_assignment_lhs] = STATE(2878),
- [sym_augmented_assignment_expression] = STATE(1634),
- [sym__destructuring_pattern] = STATE(5854),
- [sym_ternary_expression] = STATE(1634),
- [sym_binary_expression] = STATE(1634),
- [sym_unary_expression] = STATE(1634),
- [sym_update_expression] = STATE(1634),
- [sym_string] = STATE(1650),
- [sym_template_string] = STATE(1650),
- [sym_regex] = STATE(1650),
- [sym_meta_property] = STATE(1650),
- [sym_decorator] = STATE(1244),
- [sym_formal_parameters] = STATE(3742),
- [sym_non_null_expression] = STATE(1179),
- [sym_as_expression] = STATE(1634),
- [sym_satisfies_expression] = STATE(1634),
- [sym_instantiation_expression] = STATE(1634),
- [sym_internal_module] = STATE(1634),
- [sym__type_query_member_expression] = STATE(2782),
- [sym__type_query_subscript_expression] = STATE(2783),
- [sym__type_query_call_expression] = STATE(2833),
- [sym__type_query_instantiation_expression] = STATE(2905),
- [sym_type_parameters] = STATE(5349),
- [aux_sym_export_statement_repeat1] = STATE(4458),
- [sym_identifier] = ACTIONS(1961),
- [anon_sym_export] = ACTIONS(839),
- [anon_sym_type] = ACTIONS(839),
- [anon_sym_namespace] = ACTIONS(843),
- [anon_sym_LBRACE] = ACTIONS(845),
- [anon_sym_typeof] = ACTIONS(187),
- [anon_sym_import] = ACTIONS(133),
- [anon_sym_let] = ACTIONS(839),
- [anon_sym_BANG] = ACTIONS(183),
- [anon_sym_LPAREN] = ACTIONS(815),
- [anon_sym_await] = ACTIONS(142),
- [anon_sym_yield] = ACTIONS(144),
- [anon_sym_LBRACK] = ACTIONS(849),
- [sym_glimmer_opening_tag] = ACTIONS(148),
- [anon_sym_DQUOTE] = ACTIONS(150),
- [anon_sym_SQUOTE] = ACTIONS(152),
- [anon_sym_class] = ACTIONS(154),
- [anon_sym_async] = ACTIONS(851),
- [anon_sym_function] = ACTIONS(158),
- [anon_sym_new] = ACTIONS(853),
- [anon_sym_using] = ACTIONS(166),
- [anon_sym_PLUS] = ACTIONS(187),
- [anon_sym_DASH] = ACTIONS(187),
- [anon_sym_SLASH] = ACTIONS(646),
- [anon_sym_LT] = ACTIONS(181),
- [anon_sym_TILDE] = ACTIONS(183),
- [anon_sym_void] = ACTIONS(187),
- [anon_sym_delete] = ACTIONS(187),
- [anon_sym_PLUS_PLUS] = ACTIONS(719),
- [anon_sym_DASH_DASH] = ACTIONS(719),
- [sym_comment] = ACTIONS(5),
- [anon_sym_BQUOTE] = ACTIONS(825),
- [sym_number] = ACTIONS(787),
- [sym_private_property_identifier] = ACTIONS(196),
- [sym_this] = ACTIONS(1963),
- [sym_super] = ACTIONS(200),
- [sym_true] = ACTIONS(200),
- [sym_false] = ACTIONS(200),
- [sym_null] = ACTIONS(200),
- [sym_undefined] = ACTIONS(827),
- [anon_sym_AT] = ACTIONS(99),
- [anon_sym_static] = ACTIONS(839),
- [anon_sym_readonly] = ACTIONS(839),
- [anon_sym_get] = ACTIONS(839),
- [anon_sym_set] = ACTIONS(839),
- [anon_sym_declare] = ACTIONS(839),
- [anon_sym_public] = ACTIONS(839),
- [anon_sym_private] = ACTIONS(839),
- [anon_sym_protected] = ACTIONS(839),
- [anon_sym_override] = ACTIONS(839),
- [anon_sym_module] = ACTIONS(839),
- [anon_sym_any] = ACTIONS(839),
- [anon_sym_number] = ACTIONS(839),
- [anon_sym_boolean] = ACTIONS(839),
- [anon_sym_string] = ACTIONS(839),
- [anon_sym_symbol] = ACTIONS(839),
- [anon_sym_object] = ACTIONS(839),
- [sym_html_comment] = ACTIONS(5),
- },
- [267] = {
- [sym_import] = STATE(3328),
- [sym_parenthesized_expression] = STATE(1179),
- [sym_expression] = STATE(2405),
- [sym_primary_expression] = STATE(1468),
- [sym_yield_expression] = STATE(1634),
- [sym_object] = STATE(1650),
- [sym_object_pattern] = STATE(5854),
- [sym_array] = STATE(1650),
- [sym_array_pattern] = STATE(5854),
- [sym_glimmer_template] = STATE(1634),
- [sym_jsx_element] = STATE(1634),
- [sym_jsx_opening_element] = STATE(3026),
- [sym_jsx_self_closing_element] = STATE(1634),
- [sym_class] = STATE(1650),
- [sym_function_expression] = STATE(1650),
- [sym_generator_function] = STATE(1650),
- [sym_arrow_function] = STATE(1650),
- [sym__call_signature] = STATE(5619),
- [sym_call_expression] = STATE(1650),
- [sym_new_expression] = STATE(1634),
- [sym_await_expression] = STATE(1634),
- [sym_member_expression] = STATE(1179),
- [sym_subscript_expression] = STATE(1179),
- [sym_assignment_expression] = STATE(1634),
- [sym__augmented_assignment_lhs] = STATE(2878),
- [sym_augmented_assignment_expression] = STATE(1634),
- [sym__destructuring_pattern] = STATE(5854),
- [sym_ternary_expression] = STATE(1634),
- [sym_binary_expression] = STATE(1634),
- [sym_unary_expression] = STATE(1634),
- [sym_update_expression] = STATE(1634),
- [sym_string] = STATE(1650),
- [sym_template_string] = STATE(1650),
- [sym_regex] = STATE(1650),
- [sym_meta_property] = STATE(1650),
- [sym_decorator] = STATE(1244),
- [sym_formal_parameters] = STATE(3742),
- [sym_non_null_expression] = STATE(1179),
- [sym_as_expression] = STATE(1634),
- [sym_satisfies_expression] = STATE(1634),
- [sym_instantiation_expression] = STATE(1634),
- [sym_internal_module] = STATE(1634),
- [sym__type_query_member_expression] = STATE(2782),
- [sym__type_query_subscript_expression] = STATE(2783),
- [sym__type_query_call_expression] = STATE(2833),
- [sym__type_query_instantiation_expression] = STATE(2905),
- [sym_type_parameters] = STATE(5349),
- [aux_sym_export_statement_repeat1] = STATE(4458),
- [sym_identifier] = ACTIONS(1965),
- [anon_sym_export] = ACTIONS(839),
- [anon_sym_type] = ACTIONS(839),
- [anon_sym_namespace] = ACTIONS(843),
- [anon_sym_LBRACE] = ACTIONS(845),
- [anon_sym_typeof] = ACTIONS(187),
- [anon_sym_import] = ACTIONS(133),
- [anon_sym_let] = ACTIONS(839),
- [anon_sym_BANG] = ACTIONS(183),
- [anon_sym_LPAREN] = ACTIONS(815),
- [anon_sym_await] = ACTIONS(142),
- [anon_sym_yield] = ACTIONS(144),
- [anon_sym_LBRACK] = ACTIONS(849),
- [sym_glimmer_opening_tag] = ACTIONS(148),
- [anon_sym_DQUOTE] = ACTIONS(150),
- [anon_sym_SQUOTE] = ACTIONS(152),
- [anon_sym_class] = ACTIONS(154),
- [anon_sym_async] = ACTIONS(851),
- [anon_sym_function] = ACTIONS(158),
- [anon_sym_new] = ACTIONS(853),
- [anon_sym_using] = ACTIONS(166),
- [anon_sym_PLUS] = ACTIONS(187),
- [anon_sym_DASH] = ACTIONS(187),
- [anon_sym_SLASH] = ACTIONS(646),
- [anon_sym_LT] = ACTIONS(181),
- [anon_sym_TILDE] = ACTIONS(183),
- [anon_sym_void] = ACTIONS(187),
- [anon_sym_delete] = ACTIONS(187),
- [anon_sym_PLUS_PLUS] = ACTIONS(719),
- [anon_sym_DASH_DASH] = ACTIONS(719),
- [sym_comment] = ACTIONS(5),
- [anon_sym_BQUOTE] = ACTIONS(825),
- [sym_number] = ACTIONS(787),
- [sym_private_property_identifier] = ACTIONS(196),
- [sym_this] = ACTIONS(1967),
- [sym_super] = ACTIONS(200),
- [sym_true] = ACTIONS(200),
- [sym_false] = ACTIONS(200),
- [sym_null] = ACTIONS(200),
- [sym_undefined] = ACTIONS(827),
- [anon_sym_AT] = ACTIONS(99),
- [anon_sym_static] = ACTIONS(839),
- [anon_sym_readonly] = ACTIONS(839),
- [anon_sym_get] = ACTIONS(839),
- [anon_sym_set] = ACTIONS(839),
- [anon_sym_declare] = ACTIONS(839),
- [anon_sym_public] = ACTIONS(839),
- [anon_sym_private] = ACTIONS(839),
- [anon_sym_protected] = ACTIONS(839),
- [anon_sym_override] = ACTIONS(839),
- [anon_sym_module] = ACTIONS(839),
- [anon_sym_any] = ACTIONS(839),
- [anon_sym_number] = ACTIONS(839),
- [anon_sym_boolean] = ACTIONS(839),
- [anon_sym_string] = ACTIONS(839),
- [anon_sym_symbol] = ACTIONS(839),
- [anon_sym_object] = ACTIONS(839),
- [sym_html_comment] = ACTIONS(5),
- },
- [268] = {
- [sym_import] = STATE(3334),
- [sym_parenthesized_expression] = STATE(1179),
- [sym_expression] = STATE(2415),
- [sym_primary_expression] = STATE(1468),
- [sym_yield_expression] = STATE(1634),
- [sym_object] = STATE(1650),
- [sym_object_pattern] = STATE(3588),
- [sym_array] = STATE(1650),
- [sym_array_pattern] = STATE(3588),
- [sym_glimmer_template] = STATE(1634),
- [sym_jsx_element] = STATE(1634),
- [sym_jsx_opening_element] = STATE(3026),
- [sym_jsx_self_closing_element] = STATE(1634),
- [sym_class] = STATE(1650),
- [sym_function_expression] = STATE(1650),
- [sym_generator_function] = STATE(1650),
- [sym_arrow_function] = STATE(1650),
- [sym__call_signature] = STATE(5619),
- [sym_call_expression] = STATE(1650),
- [sym_new_expression] = STATE(1634),
- [sym_await_expression] = STATE(1634),
- [sym_member_expression] = STATE(1221),
- [sym_subscript_expression] = STATE(1221),
- [sym_assignment_expression] = STATE(1634),
- [sym__augmented_assignment_lhs] = STATE(2878),
- [sym_augmented_assignment_expression] = STATE(1634),
- [sym__destructuring_pattern] = STATE(3588),
- [sym_ternary_expression] = STATE(1634),
- [sym_binary_expression] = STATE(1634),
- [sym_unary_expression] = STATE(1634),
- [sym_update_expression] = STATE(1634),
- [sym_string] = STATE(1650),
- [sym_template_string] = STATE(1650),
- [sym_regex] = STATE(1650),
- [sym_meta_property] = STATE(1650),
- [sym_decorator] = STATE(1244),
- [sym_formal_parameters] = STATE(3742),
- [sym_pattern] = STATE(4300),
- [sym_rest_pattern] = STATE(3700),
- [sym_non_null_expression] = STATE(1221),
- [sym_as_expression] = STATE(1634),
- [sym_satisfies_expression] = STATE(1634),
- [sym_instantiation_expression] = STATE(1634),
- [sym_internal_module] = STATE(1634),
- [sym_override_modifier] = STATE(295),
- [sym_type_parameters] = STATE(5349),
- [aux_sym_export_statement_repeat1] = STATE(4458),
- [sym_identifier] = ACTIONS(769),
- [anon_sym_export] = ACTIONS(115),
- [anon_sym_type] = ACTIONS(115),
- [anon_sym_namespace] = ACTIONS(124),
- [anon_sym_LBRACE] = ACTIONS(771),
- [anon_sym_typeof] = ACTIONS(187),
- [anon_sym_import] = ACTIONS(133),
- [anon_sym_let] = ACTIONS(115),
- [anon_sym_BANG] = ACTIONS(183),
- [anon_sym_LPAREN] = ACTIONS(815),
- [anon_sym_await] = ACTIONS(142),
- [anon_sym_yield] = ACTIONS(144),
- [anon_sym_LBRACK] = ACTIONS(1630),
- [sym_glimmer_opening_tag] = ACTIONS(148),
- [anon_sym_DQUOTE] = ACTIONS(150),
- [anon_sym_SQUOTE] = ACTIONS(152),
- [anon_sym_class] = ACTIONS(154),
- [anon_sym_async] = ACTIONS(156),
- [anon_sym_function] = ACTIONS(158),
- [anon_sym_new] = ACTIONS(779),
- [anon_sym_using] = ACTIONS(166),
- [anon_sym_DOT_DOT_DOT] = ACTIONS(170),
- [anon_sym_PLUS] = ACTIONS(187),
- [anon_sym_DASH] = ACTIONS(187),
- [anon_sym_SLASH] = ACTIONS(646),
- [anon_sym_LT] = ACTIONS(181),
- [anon_sym_TILDE] = ACTIONS(183),
- [anon_sym_void] = ACTIONS(187),
- [anon_sym_delete] = ACTIONS(187),
- [anon_sym_PLUS_PLUS] = ACTIONS(719),
- [anon_sym_DASH_DASH] = ACTIONS(719),
- [sym_comment] = ACTIONS(5),
- [anon_sym_BQUOTE] = ACTIONS(825),
- [sym_number] = ACTIONS(787),
- [sym_private_property_identifier] = ACTIONS(196),
- [sym_this] = ACTIONS(801),
- [sym_super] = ACTIONS(200),
- [sym_true] = ACTIONS(200),
- [sym_false] = ACTIONS(200),
- [sym_null] = ACTIONS(200),
- [sym_undefined] = ACTIONS(791),
- [anon_sym_AT] = ACTIONS(99),
- [anon_sym_static] = ACTIONS(115),
- [anon_sym_readonly] = ACTIONS(1969),
- [anon_sym_get] = ACTIONS(115),
- [anon_sym_set] = ACTIONS(115),
- [anon_sym_declare] = ACTIONS(115),
- [anon_sym_public] = ACTIONS(115),
- [anon_sym_private] = ACTIONS(115),
- [anon_sym_protected] = ACTIONS(115),
- [anon_sym_override] = ACTIONS(835),
- [anon_sym_module] = ACTIONS(115),
- [anon_sym_any] = ACTIONS(115),
- [anon_sym_number] = ACTIONS(115),
- [anon_sym_boolean] = ACTIONS(115),
- [anon_sym_string] = ACTIONS(115),
- [anon_sym_symbol] = ACTIONS(115),
- [anon_sym_object] = ACTIONS(115),
- [sym_html_comment] = ACTIONS(5),
- },
- [269] = {
- [sym_import] = STATE(3411),
- [sym_parenthesized_expression] = STATE(1327),
- [sym_expression] = STATE(1888),
- [sym_primary_expression] = STATE(1468),
- [sym_yield_expression] = STATE(1634),
- [sym_object] = STATE(1650),
- [sym_object_pattern] = STATE(5821),
- [sym_array] = STATE(1650),
- [sym_array_pattern] = STATE(5821),
- [sym_glimmer_template] = STATE(1634),
- [sym_jsx_element] = STATE(1634),
- [sym_jsx_opening_element] = STATE(3026),
- [sym_jsx_self_closing_element] = STATE(1634),
- [sym_class] = STATE(1650),
- [sym_function_expression] = STATE(1650),
- [sym_generator_function] = STATE(1650),
- [sym_arrow_function] = STATE(1650),
- [sym__call_signature] = STATE(5743),
- [sym_call_expression] = STATE(1650),
- [sym_new_expression] = STATE(1634),
- [sym_await_expression] = STATE(1634),
- [sym_member_expression] = STATE(1327),
- [sym_subscript_expression] = STATE(1327),
- [sym_assignment_expression] = STATE(1634),
- [sym__augmented_assignment_lhs] = STATE(2919),
- [sym_augmented_assignment_expression] = STATE(1634),
- [sym__destructuring_pattern] = STATE(5821),
- [sym_ternary_expression] = STATE(1634),
- [sym_binary_expression] = STATE(1634),
- [sym_unary_expression] = STATE(1634),
- [sym_update_expression] = STATE(1634),
- [sym_string] = STATE(1650),
- [sym_template_string] = STATE(1650),
- [sym_regex] = STATE(1650),
- [sym_meta_property] = STATE(1650),
- [sym_decorator] = STATE(1244),
- [sym_formal_parameters] = STATE(3742),
- [sym_non_null_expression] = STATE(1327),
- [sym_as_expression] = STATE(1634),
- [sym_satisfies_expression] = STATE(1634),
- [sym_instantiation_expression] = STATE(1634),
- [sym_internal_module] = STATE(1634),
- [sym__type_query_member_expression] = STATE(2782),
- [sym__type_query_subscript_expression] = STATE(2783),
- [sym__type_query_call_expression] = STATE(2833),
- [sym__type_query_instantiation_expression] = STATE(2905),
- [sym_type_parameters] = STATE(5349),
- [aux_sym_export_statement_repeat1] = STATE(4458),
- [sym_identifier] = ACTIONS(1971),
- [anon_sym_export] = ACTIONS(1286),
- [anon_sym_type] = ACTIONS(1286),
- [anon_sym_namespace] = ACTIONS(1288),
- [anon_sym_LBRACE] = ACTIONS(813),
- [anon_sym_typeof] = ACTIONS(1308),
- [anon_sym_import] = ACTIONS(133),
- [anon_sym_let] = ACTIONS(1286),
- [anon_sym_BANG] = ACTIONS(1292),
- [anon_sym_LPAREN] = ACTIONS(815),
- [anon_sym_await] = ACTIONS(1294),
- [anon_sym_yield] = ACTIONS(1296),
- [anon_sym_LBRACK] = ACTIONS(817),
- [sym_glimmer_opening_tag] = ACTIONS(148),
- [anon_sym_DQUOTE] = ACTIONS(150),
- [anon_sym_SQUOTE] = ACTIONS(152),
- [anon_sym_class] = ACTIONS(154),
- [anon_sym_async] = ACTIONS(1298),
- [anon_sym_function] = ACTIONS(158),
- [anon_sym_new] = ACTIONS(1466),
- [anon_sym_using] = ACTIONS(1302),
- [anon_sym_PLUS] = ACTIONS(1308),
- [anon_sym_DASH] = ACTIONS(1308),
- [anon_sym_SLASH] = ACTIONS(922),
- [anon_sym_LT] = ACTIONS(181),
- [anon_sym_TILDE] = ACTIONS(1292),
- [anon_sym_void] = ACTIONS(1308),
- [anon_sym_delete] = ACTIONS(1308),
- [anon_sym_PLUS_PLUS] = ACTIONS(1310),
- [anon_sym_DASH_DASH] = ACTIONS(1310),
- [sym_comment] = ACTIONS(5),
- [anon_sym_BQUOTE] = ACTIONS(825),
- [sym_number] = ACTIONS(787),
- [sym_private_property_identifier] = ACTIONS(1312),
- [sym_this] = ACTIONS(1967),
- [sym_super] = ACTIONS(200),
- [sym_true] = ACTIONS(200),
- [sym_false] = ACTIONS(200),
- [sym_null] = ACTIONS(200),
- [sym_undefined] = ACTIONS(1468),
- [anon_sym_AT] = ACTIONS(99),
- [anon_sym_static] = ACTIONS(1286),
- [anon_sym_readonly] = ACTIONS(1286),
- [anon_sym_get] = ACTIONS(1286),
- [anon_sym_set] = ACTIONS(1286),
- [anon_sym_declare] = ACTIONS(1286),
- [anon_sym_public] = ACTIONS(1286),
- [anon_sym_private] = ACTIONS(1286),
- [anon_sym_protected] = ACTIONS(1286),
- [anon_sym_override] = ACTIONS(1286),
- [anon_sym_module] = ACTIONS(1286),
- [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_object] = ACTIONS(1286),
- [sym_html_comment] = ACTIONS(5),
- },
- [270] = {
- [sym_import] = STATE(3334),
- [sym_parenthesized_expression] = STATE(1251),
- [sym_expression] = STATE(1834),
- [sym_primary_expression] = STATE(1468),
- [sym_yield_expression] = STATE(1634),
- [sym_object] = STATE(1650),
- [sym_object_pattern] = STATE(5633),
- [sym_array] = STATE(1650),
- [sym_array_pattern] = STATE(5633),
- [sym_glimmer_template] = STATE(1634),
- [sym_jsx_element] = STATE(1634),
- [sym_jsx_opening_element] = STATE(3026),
- [sym_jsx_self_closing_element] = STATE(1634),
- [sym_class] = STATE(1650),
- [sym_function_expression] = STATE(1650),
- [sym_generator_function] = STATE(1650),
- [sym_arrow_function] = STATE(1650),
- [sym__call_signature] = STATE(5828),
- [sym_call_expression] = STATE(1650),
- [sym_new_expression] = STATE(1634),
- [sym_await_expression] = STATE(1634),
- [sym_member_expression] = STATE(1251),
- [sym_subscript_expression] = STATE(1251),
- [sym_assignment_expression] = STATE(1634),
- [sym__augmented_assignment_lhs] = STATE(2900),
- [sym_augmented_assignment_expression] = STATE(1634),
- [sym__destructuring_pattern] = STATE(5633),
- [sym_spread_element] = STATE(5684),
- [sym_ternary_expression] = STATE(1634),
- [sym_binary_expression] = STATE(1634),
- [sym_unary_expression] = STATE(1634),
- [sym_update_expression] = STATE(1634),
- [sym_sequence_expression] = STATE(5684),
- [sym_string] = STATE(1650),
- [sym_template_string] = STATE(1650),
- [sym_regex] = STATE(1650),
- [sym_meta_property] = STATE(1650),
- [sym_decorator] = STATE(1244),
- [sym_formal_parameters] = STATE(3742),
- [sym_non_null_expression] = STATE(1251),
- [sym_as_expression] = STATE(1634),
- [sym_satisfies_expression] = STATE(1634),
- [sym_instantiation_expression] = STATE(1634),
- [sym_internal_module] = STATE(1634),
- [sym_type_parameters] = STATE(5349),
- [aux_sym_export_statement_repeat1] = STATE(4458),
- [sym_identifier] = ACTIONS(1428),
- [anon_sym_export] = ACTIONS(1044),
- [anon_sym_type] = ACTIONS(1044),
- [anon_sym_namespace] = ACTIONS(1046),
- [anon_sym_LBRACE] = ACTIONS(813),
- [anon_sym_RBRACE] = ACTIONS(1973),
- [anon_sym_typeof] = ACTIONS(650),
- [anon_sym_import] = ACTIONS(133),
- [anon_sym_let] = ACTIONS(1044),
- [anon_sym_BANG] = ACTIONS(622),
- [anon_sym_LPAREN] = ACTIONS(815),
- [anon_sym_await] = ACTIONS(624),
- [anon_sym_yield] = ACTIONS(626),
- [anon_sym_LBRACK] = ACTIONS(817),
- [sym_glimmer_opening_tag] = ACTIONS(148),
- [anon_sym_DQUOTE] = ACTIONS(150),
- [anon_sym_SQUOTE] = ACTIONS(152),
- [anon_sym_class] = ACTIONS(154),
- [anon_sym_async] = ACTIONS(1052),
- [anon_sym_function] = ACTIONS(158),
- [anon_sym_new] = ACTIONS(1436),
- [anon_sym_using] = ACTIONS(636),
- [anon_sym_DOT_DOT_DOT] = ACTIONS(1975),
- [anon_sym_PLUS] = ACTIONS(650),
- [anon_sym_DASH] = ACTIONS(650),
- [anon_sym_SLASH] = ACTIONS(646),
- [anon_sym_LT] = ACTIONS(181),
- [anon_sym_TILDE] = ACTIONS(622),
- [anon_sym_void] = ACTIONS(650),
- [anon_sym_delete] = ACTIONS(650),
- [anon_sym_PLUS_PLUS] = ACTIONS(652),
- [anon_sym_DASH_DASH] = ACTIONS(652),
- [sym_comment] = ACTIONS(5),
- [anon_sym_BQUOTE] = ACTIONS(825),
- [sym_number] = ACTIONS(787),
- [sym_private_property_identifier] = ACTIONS(654),
- [sym_this] = ACTIONS(200),
- [sym_super] = ACTIONS(200),
- [sym_true] = ACTIONS(200),
- [sym_false] = ACTIONS(200),
- [sym_null] = ACTIONS(200),
- [sym_undefined] = ACTIONS(1438),
- [anon_sym_AT] = ACTIONS(99),
- [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_override] = 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_object] = ACTIONS(1044),
- [sym_html_comment] = ACTIONS(5),
- },
- [271] = {
- [sym_import] = STATE(3328),
- [sym_parenthesized_expression] = STATE(1345),
- [sym_expression] = STATE(2373),
- [sym_primary_expression] = STATE(1468),
- [sym_yield_expression] = STATE(1634),
- [sym_object] = STATE(1650),
- [sym_object_pattern] = STATE(5872),
- [sym_array] = STATE(1650),
- [sym_array_pattern] = STATE(5872),
- [sym_glimmer_template] = STATE(1634),
- [sym_jsx_element] = STATE(1634),
- [sym_jsx_opening_element] = STATE(3026),
- [sym_jsx_self_closing_element] = STATE(1634),
- [sym_class] = STATE(1650),
- [sym_function_expression] = STATE(1650),
- [sym_generator_function] = STATE(1650),
- [sym_arrow_function] = STATE(1650),
- [sym__call_signature] = STATE(5904),
- [sym_call_expression] = STATE(1650),
- [sym_new_expression] = STATE(1634),
- [sym_await_expression] = STATE(1634),
- [sym_member_expression] = STATE(1345),
- [sym_subscript_expression] = STATE(1345),
- [sym_assignment_expression] = STATE(1634),
- [sym__augmented_assignment_lhs] = STATE(2898),
- [sym_augmented_assignment_expression] = STATE(1634),
- [sym__destructuring_pattern] = STATE(5872),
- [sym_ternary_expression] = STATE(1634),
- [sym_binary_expression] = STATE(1634),
- [sym_unary_expression] = STATE(1634),
- [sym_update_expression] = STATE(1634),
- [sym_string] = STATE(1650),
- [sym_template_string] = STATE(1650),
- [sym_regex] = STATE(1650),
- [sym_meta_property] = STATE(1650),
- [sym_decorator] = STATE(1244),
- [sym_formal_parameters] = STATE(3742),
- [sym_non_null_expression] = STATE(1345),
- [sym_as_expression] = STATE(1634),
- [sym_satisfies_expression] = STATE(1634),
- [sym_instantiation_expression] = STATE(1634),
- [sym_internal_module] = STATE(1634),
- [sym__type_query_member_expression] = STATE(2782),
- [sym__type_query_subscript_expression] = STATE(2783),
- [sym__type_query_call_expression] = STATE(2833),
- [sym__type_query_instantiation_expression] = STATE(2905),
- [sym_type_parameters] = STATE(5349),
- [aux_sym_export_statement_repeat1] = STATE(4458),
- [sym_identifier] = ACTIONS(1977),
- [anon_sym_export] = ACTIONS(1394),
- [anon_sym_type] = ACTIONS(1394),
- [anon_sym_namespace] = ACTIONS(1396),
- [anon_sym_LBRACE] = ACTIONS(845),
- [anon_sym_typeof] = ACTIONS(1416),
- [anon_sym_import] = ACTIONS(133),
- [anon_sym_let] = ACTIONS(1394),
- [anon_sym_BANG] = ACTIONS(1400),
- [anon_sym_LPAREN] = ACTIONS(815),
- [anon_sym_await] = ACTIONS(1402),
- [anon_sym_yield] = ACTIONS(1404),
- [anon_sym_LBRACK] = ACTIONS(849),
- [sym_glimmer_opening_tag] = ACTIONS(148),
- [anon_sym_DQUOTE] = ACTIONS(150),
- [anon_sym_SQUOTE] = ACTIONS(152),
- [anon_sym_class] = ACTIONS(154),
- [anon_sym_async] = ACTIONS(1406),
- [anon_sym_function] = ACTIONS(158),
- [anon_sym_new] = ACTIONS(1490),
- [anon_sym_using] = ACTIONS(1410),
- [anon_sym_PLUS] = ACTIONS(1416),
- [anon_sym_DASH] = ACTIONS(1416),
- [anon_sym_SLASH] = ACTIONS(970),
- [anon_sym_LT] = ACTIONS(181),
- [anon_sym_TILDE] = ACTIONS(1400),
- [anon_sym_void] = ACTIONS(1416),
- [anon_sym_delete] = ACTIONS(1416),
- [anon_sym_PLUS_PLUS] = ACTIONS(1418),
- [anon_sym_DASH_DASH] = ACTIONS(1418),
- [sym_comment] = ACTIONS(5),
- [anon_sym_BQUOTE] = ACTIONS(825),
- [sym_number] = ACTIONS(787),
- [sym_private_property_identifier] = ACTIONS(1420),
- [sym_this] = ACTIONS(1967),
- [sym_super] = ACTIONS(200),
- [sym_true] = ACTIONS(200),
- [sym_false] = ACTIONS(200),
- [sym_null] = ACTIONS(200),
- [sym_undefined] = ACTIONS(1492),
- [anon_sym_AT] = ACTIONS(99),
- [anon_sym_static] = ACTIONS(1394),
- [anon_sym_readonly] = ACTIONS(1394),
- [anon_sym_get] = ACTIONS(1394),
- [anon_sym_set] = ACTIONS(1394),
- [anon_sym_declare] = ACTIONS(1394),
- [anon_sym_public] = ACTIONS(1394),
- [anon_sym_private] = ACTIONS(1394),
- [anon_sym_protected] = ACTIONS(1394),
- [anon_sym_override] = ACTIONS(1394),
- [anon_sym_module] = ACTIONS(1394),
- [anon_sym_any] = ACTIONS(1394),
- [anon_sym_number] = ACTIONS(1394),
- [anon_sym_boolean] = ACTIONS(1394),
- [anon_sym_string] = ACTIONS(1394),
- [anon_sym_symbol] = ACTIONS(1394),
- [anon_sym_object] = ACTIONS(1394),
- [sym_html_comment] = ACTIONS(5),
- },
- [272] = {
- [sym_import] = STATE(3410),
- [sym_parenthesized_expression] = STATE(1300),
- [sym_expression] = STATE(1635),
- [sym_primary_expression] = STATE(1946),
- [sym_yield_expression] = STATE(2234),
- [sym_object] = STATE(2310),
- [sym_object_pattern] = STATE(5831),
- [sym_array] = STATE(2310),
- [sym_array_pattern] = STATE(5831),
- [sym_glimmer_template] = STATE(2234),
- [sym_jsx_element] = STATE(2234),
- [sym_jsx_opening_element] = STATE(3051),
- [sym_jsx_self_closing_element] = STATE(2234),
- [sym_class] = STATE(2310),
- [sym_function_expression] = STATE(2310),
- [sym_generator_function] = STATE(2310),
- [sym_arrow_function] = STATE(2310),
- [sym__call_signature] = STATE(5829),
- [sym_call_expression] = STATE(2310),
- [sym_new_expression] = STATE(2234),
- [sym_await_expression] = STATE(2234),
- [sym_member_expression] = STATE(1300),
- [sym_subscript_expression] = STATE(1300),
- [sym_assignment_expression] = STATE(2234),
- [sym__augmented_assignment_lhs] = STATE(2943),
- [sym_augmented_assignment_expression] = STATE(2234),
- [sym__destructuring_pattern] = STATE(5831),
- [sym_ternary_expression] = STATE(2234),
- [sym_binary_expression] = STATE(2234),
- [sym_unary_expression] = STATE(2234),
- [sym_update_expression] = STATE(2234),
- [sym_string] = STATE(2310),
- [sym_template_string] = STATE(2310),
- [sym_regex] = STATE(2310),
- [sym_meta_property] = STATE(2310),
- [sym_decorator] = STATE(1244),
- [sym_formal_parameters] = STATE(3742),
- [sym_non_null_expression] = STATE(1300),
- [sym_as_expression] = STATE(2234),
- [sym_satisfies_expression] = STATE(2234),
- [sym_instantiation_expression] = STATE(2234),
- [sym_internal_module] = STATE(2234),
- [sym__type_query_member_expression] = STATE(2782),
- [sym__type_query_subscript_expression] = STATE(2783),
- [sym__type_query_call_expression] = STATE(2833),
- [sym__type_query_instantiation_expression] = STATE(2905),
- [sym_type_parameters] = STATE(5349),
- [aux_sym_export_statement_repeat1] = STATE(4499),
- [sym_identifier] = ACTIONS(1979),
- [anon_sym_export] = ACTIONS(1202),
- [anon_sym_type] = ACTIONS(1202),
- [anon_sym_namespace] = ACTIONS(1204),
- [anon_sym_LBRACE] = ACTIONS(700),
- [anon_sym_typeof] = ACTIONS(1228),
- [anon_sym_import] = ACTIONS(133),
- [anon_sym_let] = ACTIONS(1202),
- [anon_sym_BANG] = ACTIONS(1210),
- [anon_sym_LPAREN] = ACTIONS(41),
- [anon_sym_await] = ACTIONS(1212),
- [anon_sym_yield] = ACTIONS(1214),
- [anon_sym_LBRACK] = ACTIONS(65),
- [sym_glimmer_opening_tag] = ACTIONS(67),
- [anon_sym_DQUOTE] = ACTIONS(69),
- [anon_sym_SQUOTE] = ACTIONS(71),
- [anon_sym_class] = ACTIONS(709),
- [anon_sym_async] = ACTIONS(1218),
- [anon_sym_function] = ACTIONS(713),
- [anon_sym_new] = ACTIONS(1450),
- [anon_sym_using] = ACTIONS(1222),
- [anon_sym_PLUS] = ACTIONS(1228),
- [anon_sym_DASH] = ACTIONS(1228),
- [anon_sym_SLASH] = ACTIONS(882),
- [anon_sym_LT] = ACTIONS(85),
- [anon_sym_TILDE] = ACTIONS(1210),
- [anon_sym_void] = ACTIONS(1228),
- [anon_sym_delete] = ACTIONS(1228),
- [anon_sym_PLUS_PLUS] = ACTIONS(1230),
- [anon_sym_DASH_DASH] = ACTIONS(1230),
- [sym_comment] = ACTIONS(5),
- [anon_sym_BQUOTE] = ACTIONS(89),
- [sym_number] = ACTIONS(91),
- [sym_private_property_identifier] = ACTIONS(1236),
- [sym_this] = ACTIONS(1981),
- [sym_super] = ACTIONS(95),
- [sym_true] = ACTIONS(95),
- [sym_false] = ACTIONS(95),
- [sym_null] = ACTIONS(95),
- [sym_undefined] = ACTIONS(1452),
- [anon_sym_AT] = ACTIONS(99),
- [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_override] = 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_object] = ACTIONS(1202),
- [sym_html_comment] = ACTIONS(5),
- },
- [273] = {
- [sym_import] = STATE(3411),
- [sym_parenthesized_expression] = STATE(1251),
- [sym_expression] = STATE(1479),
- [sym_primary_expression] = STATE(1468),
- [sym_yield_expression] = STATE(1634),
- [sym_object] = STATE(1650),
- [sym_object_pattern] = STATE(5633),
- [sym_array] = STATE(1650),
- [sym_array_pattern] = STATE(5633),
- [sym_glimmer_template] = STATE(1634),
- [sym_jsx_element] = STATE(1634),
- [sym_jsx_opening_element] = STATE(3026),
- [sym_jsx_self_closing_element] = STATE(1634),
- [sym_class] = STATE(1650),
- [sym_function_expression] = STATE(1650),
- [sym_generator_function] = STATE(1650),
- [sym_arrow_function] = STATE(1650),
- [sym__call_signature] = STATE(5828),
- [sym_call_expression] = STATE(1650),
- [sym_new_expression] = STATE(1634),
- [sym_await_expression] = STATE(1634),
- [sym_member_expression] = STATE(1251),
- [sym_subscript_expression] = STATE(1251),
- [sym_assignment_expression] = STATE(1634),
- [sym__augmented_assignment_lhs] = STATE(2900),
- [sym_augmented_assignment_expression] = STATE(1634),
- [sym__destructuring_pattern] = STATE(5633),
- [sym_ternary_expression] = STATE(1634),
- [sym_binary_expression] = STATE(1634),
- [sym_unary_expression] = STATE(1634),
- [sym_update_expression] = STATE(1634),
- [sym_string] = STATE(1650),
- [sym_template_string] = STATE(1650),
- [sym_regex] = STATE(1650),
- [sym_meta_property] = STATE(1650),
- [sym_decorator] = STATE(1244),
- [sym_formal_parameters] = STATE(3742),
- [sym_non_null_expression] = STATE(1251),
- [sym_as_expression] = STATE(1634),
- [sym_satisfies_expression] = STATE(1634),
- [sym_instantiation_expression] = STATE(1634),
- [sym_internal_module] = STATE(1634),
- [sym__type_query_member_expression] = STATE(2782),
- [sym__type_query_subscript_expression] = STATE(2783),
- [sym__type_query_call_expression] = STATE(2833),
- [sym__type_query_instantiation_expression] = STATE(2905),
- [sym_type_parameters] = STATE(5349),
- [aux_sym_export_statement_repeat1] = STATE(4458),
- [sym_identifier] = ACTIONS(1983),
- [anon_sym_export] = ACTIONS(1044),
- [anon_sym_type] = ACTIONS(1044),
- [anon_sym_namespace] = ACTIONS(1046),
- [anon_sym_LBRACE] = ACTIONS(813),
- [anon_sym_typeof] = ACTIONS(650),
- [anon_sym_import] = ACTIONS(133),
- [anon_sym_let] = ACTIONS(1044),
- [anon_sym_BANG] = ACTIONS(622),
- [anon_sym_LPAREN] = ACTIONS(815),
- [anon_sym_await] = ACTIONS(624),
- [anon_sym_yield] = ACTIONS(626),
- [anon_sym_LBRACK] = ACTIONS(817),
- [sym_glimmer_opening_tag] = ACTIONS(148),
- [anon_sym_DQUOTE] = ACTIONS(150),
- [anon_sym_SQUOTE] = ACTIONS(152),
- [anon_sym_class] = ACTIONS(154),
- [anon_sym_async] = ACTIONS(1052),
- [anon_sym_function] = ACTIONS(158),
- [anon_sym_new] = ACTIONS(1436),
- [anon_sym_using] = ACTIONS(636),
- [anon_sym_PLUS] = ACTIONS(650),
- [anon_sym_DASH] = ACTIONS(650),
- [anon_sym_SLASH] = ACTIONS(646),
- [anon_sym_LT] = ACTIONS(181),
- [anon_sym_TILDE] = ACTIONS(622),
- [anon_sym_void] = ACTIONS(650),
- [anon_sym_delete] = ACTIONS(650),
- [anon_sym_PLUS_PLUS] = ACTIONS(652),
- [anon_sym_DASH_DASH] = ACTIONS(652),
- [sym_comment] = ACTIONS(5),
- [anon_sym_BQUOTE] = ACTIONS(825),
- [sym_number] = ACTIONS(787),
- [sym_private_property_identifier] = ACTIONS(654),
- [sym_this] = ACTIONS(1963),
- [sym_super] = ACTIONS(200),
- [sym_true] = ACTIONS(200),
- [sym_false] = ACTIONS(200),
- [sym_null] = ACTIONS(200),
- [sym_undefined] = ACTIONS(1438),
- [anon_sym_AT] = ACTIONS(99),
- [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_override] = 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_object] = ACTIONS(1044),
- [sym_html_comment] = ACTIONS(5),
- },
- [274] = {
- [sym_import] = STATE(3328),
- [sym_parenthesized_expression] = STATE(1179),
- [sym_expression] = STATE(2405),
- [sym_primary_expression] = STATE(1468),
- [sym_yield_expression] = STATE(1634),
- [sym_object] = STATE(1650),
- [sym_object_pattern] = STATE(5854),
- [sym_array] = STATE(1650),
- [sym_array_pattern] = STATE(5854),
- [sym_glimmer_template] = STATE(1634),
- [sym_jsx_element] = STATE(1634),
- [sym_jsx_opening_element] = STATE(3026),
- [sym_jsx_self_closing_element] = STATE(1634),
- [sym_class] = STATE(1650),
- [sym_function_expression] = STATE(1650),
- [sym_generator_function] = STATE(1650),
- [sym_arrow_function] = STATE(1650),
- [sym__call_signature] = STATE(5619),
- [sym_call_expression] = STATE(1650),
- [sym_new_expression] = STATE(1634),
- [sym_await_expression] = STATE(1634),
- [sym_member_expression] = STATE(1179),
- [sym_subscript_expression] = STATE(1179),
- [sym_assignment_expression] = STATE(1634),
- [sym__augmented_assignment_lhs] = STATE(2878),
- [sym_augmented_assignment_expression] = STATE(1634),
- [sym__destructuring_pattern] = STATE(5854),
- [sym_ternary_expression] = STATE(1634),
- [sym_binary_expression] = STATE(1634),
- [sym_unary_expression] = STATE(1634),
- [sym_update_expression] = STATE(1634),
- [sym_string] = STATE(1650),
- [sym_template_string] = STATE(1650),
- [sym_regex] = STATE(1650),
- [sym_meta_property] = STATE(1650),
- [sym_decorator] = STATE(1244),
- [sym_formal_parameters] = STATE(3742),
- [sym_non_null_expression] = STATE(1179),
- [sym_as_expression] = STATE(1634),
- [sym_satisfies_expression] = STATE(1634),
- [sym_instantiation_expression] = STATE(1634),
- [sym_internal_module] = STATE(1634),
- [sym__type_query_member_expression] = STATE(2782),
- [sym__type_query_subscript_expression] = STATE(2783),
- [sym__type_query_call_expression] = STATE(2833),
- [sym__type_query_instantiation_expression] = STATE(2905),
- [sym_type_parameters] = STATE(5349),
- [aux_sym_export_statement_repeat1] = STATE(4458),
- [sym_identifier] = ACTIONS(1985),
- [anon_sym_export] = ACTIONS(839),
- [anon_sym_type] = ACTIONS(839),
- [anon_sym_namespace] = ACTIONS(843),
- [anon_sym_LBRACE] = ACTIONS(845),
- [anon_sym_typeof] = ACTIONS(187),
- [anon_sym_import] = ACTIONS(133),
- [anon_sym_let] = ACTIONS(839),
- [anon_sym_BANG] = ACTIONS(183),
- [anon_sym_LPAREN] = ACTIONS(815),
- [anon_sym_await] = ACTIONS(142),
- [anon_sym_yield] = ACTIONS(144),
- [anon_sym_LBRACK] = ACTIONS(849),
- [sym_glimmer_opening_tag] = ACTIONS(148),
- [anon_sym_DQUOTE] = ACTIONS(150),
- [anon_sym_SQUOTE] = ACTIONS(152),
- [anon_sym_class] = ACTIONS(154),
- [anon_sym_async] = ACTIONS(851),
- [anon_sym_function] = ACTIONS(158),
- [anon_sym_new] = ACTIONS(853),
- [anon_sym_using] = ACTIONS(166),
- [anon_sym_PLUS] = ACTIONS(187),
- [anon_sym_DASH] = ACTIONS(187),
- [anon_sym_SLASH] = ACTIONS(646),
- [anon_sym_LT] = ACTIONS(181),
- [anon_sym_TILDE] = ACTIONS(183),
- [anon_sym_void] = ACTIONS(187),
- [anon_sym_delete] = ACTIONS(187),
- [anon_sym_PLUS_PLUS] = ACTIONS(719),
- [anon_sym_DASH_DASH] = ACTIONS(719),
- [sym_comment] = ACTIONS(5),
- [anon_sym_BQUOTE] = ACTIONS(825),
- [sym_number] = ACTIONS(787),
- [sym_private_property_identifier] = ACTIONS(196),
- [sym_this] = ACTIONS(1987),
- [sym_super] = ACTIONS(200),
- [sym_true] = ACTIONS(200),
- [sym_false] = ACTIONS(200),
- [sym_null] = ACTIONS(200),
- [sym_undefined] = ACTIONS(827),
- [anon_sym_AT] = ACTIONS(99),
- [anon_sym_static] = ACTIONS(839),
- [anon_sym_readonly] = ACTIONS(839),
- [anon_sym_get] = ACTIONS(839),
- [anon_sym_set] = ACTIONS(839),
- [anon_sym_declare] = ACTIONS(839),
- [anon_sym_public] = ACTIONS(839),
- [anon_sym_private] = ACTIONS(839),
- [anon_sym_protected] = ACTIONS(839),
- [anon_sym_override] = ACTIONS(839),
- [anon_sym_module] = ACTIONS(839),
- [anon_sym_any] = ACTIONS(839),
- [anon_sym_number] = ACTIONS(839),
- [anon_sym_boolean] = ACTIONS(839),
- [anon_sym_string] = ACTIONS(839),
- [anon_sym_symbol] = ACTIONS(839),
- [anon_sym_object] = ACTIONS(839),
- [sym_html_comment] = ACTIONS(5),
- },
- [275] = {
- [sym_import] = STATE(3334),
- [sym_parenthesized_expression] = STATE(1179),
- [sym_expression] = STATE(2415),
- [sym_primary_expression] = STATE(1468),
- [sym_yield_expression] = STATE(1634),
- [sym_object] = STATE(1650),
- [sym_object_pattern] = STATE(3588),
- [sym_assignment_pattern] = STATE(5197),
- [sym_array] = STATE(1650),
- [sym_array_pattern] = STATE(3588),
- [sym_glimmer_template] = STATE(1634),
- [sym_jsx_element] = STATE(1634),
- [sym_jsx_opening_element] = STATE(3026),
- [sym_jsx_self_closing_element] = STATE(1634),
- [sym_class] = STATE(1650),
- [sym_function_expression] = STATE(1650),
- [sym_generator_function] = STATE(1650),
- [sym_arrow_function] = STATE(1650),
- [sym__call_signature] = STATE(5619),
- [sym_call_expression] = STATE(1650),
- [sym_new_expression] = STATE(1634),
- [sym_await_expression] = STATE(1634),
- [sym_member_expression] = STATE(1221),
- [sym_subscript_expression] = STATE(1221),
- [sym_assignment_expression] = STATE(1634),
- [sym__augmented_assignment_lhs] = STATE(2878),
- [sym_augmented_assignment_expression] = STATE(1634),
- [sym__destructuring_pattern] = STATE(3588),
- [sym_ternary_expression] = STATE(1634),
- [sym_binary_expression] = STATE(1634),
- [sym_unary_expression] = STATE(1634),
- [sym_update_expression] = STATE(1634),
- [sym_string] = STATE(1650),
- [sym_template_string] = STATE(1650),
- [sym_regex] = STATE(1650),
- [sym_meta_property] = STATE(1650),
- [sym_decorator] = STATE(1244),
- [sym_formal_parameters] = STATE(3742),
- [sym_pattern] = STATE(4675),
- [sym_rest_pattern] = STATE(3700),
- [sym_non_null_expression] = STATE(1221),
- [sym_as_expression] = STATE(1634),
- [sym_satisfies_expression] = STATE(1634),
- [sym_instantiation_expression] = STATE(1634),
- [sym_internal_module] = STATE(1634),
- [sym_type_parameters] = STATE(5349),
- [aux_sym_export_statement_repeat1] = STATE(4458),
- [sym_identifier] = ACTIONS(769),
- [anon_sym_export] = ACTIONS(115),
- [anon_sym_type] = ACTIONS(115),
- [anon_sym_namespace] = ACTIONS(124),
- [anon_sym_LBRACE] = ACTIONS(771),
- [anon_sym_typeof] = ACTIONS(187),
- [anon_sym_import] = ACTIONS(133),
- [anon_sym_let] = ACTIONS(115),
- [anon_sym_BANG] = ACTIONS(183),
- [anon_sym_LPAREN] = ACTIONS(815),
- [anon_sym_await] = ACTIONS(142),
- [anon_sym_yield] = ACTIONS(144),
- [anon_sym_LBRACK] = ACTIONS(1630),
- [sym_glimmer_opening_tag] = ACTIONS(148),
- [anon_sym_DQUOTE] = ACTIONS(150),
- [anon_sym_SQUOTE] = ACTIONS(152),
- [anon_sym_class] = ACTIONS(154),
- [anon_sym_async] = ACTIONS(156),
- [anon_sym_function] = ACTIONS(158),
- [anon_sym_new] = ACTIONS(779),
- [anon_sym_using] = ACTIONS(166),
- [anon_sym_DOT_DOT_DOT] = ACTIONS(170),
- [anon_sym_PLUS] = ACTIONS(187),
- [anon_sym_DASH] = ACTIONS(187),
- [anon_sym_SLASH] = ACTIONS(646),
- [anon_sym_LT] = ACTIONS(181),
- [anon_sym_TILDE] = ACTIONS(183),
- [anon_sym_void] = ACTIONS(187),
- [anon_sym_delete] = ACTIONS(187),
- [anon_sym_PLUS_PLUS] = ACTIONS(719),
- [anon_sym_DASH_DASH] = ACTIONS(719),
- [sym_comment] = ACTIONS(5),
- [anon_sym_BQUOTE] = ACTIONS(825),
- [sym_number] = ACTIONS(787),
- [sym_private_property_identifier] = ACTIONS(196),
- [sym_this] = ACTIONS(200),
- [sym_super] = ACTIONS(200),
- [sym_true] = ACTIONS(200),
- [sym_false] = ACTIONS(200),
- [sym_null] = ACTIONS(200),
- [sym_undefined] = ACTIONS(791),
- [anon_sym_AT] = ACTIONS(99),
- [anon_sym_static] = ACTIONS(115),
- [anon_sym_readonly] = ACTIONS(115),
- [anon_sym_get] = ACTIONS(115),
- [anon_sym_set] = ACTIONS(115),
- [anon_sym_declare] = ACTIONS(115),
- [anon_sym_public] = ACTIONS(115),
- [anon_sym_private] = ACTIONS(115),
- [anon_sym_protected] = ACTIONS(115),
- [anon_sym_override] = ACTIONS(115),
- [anon_sym_module] = ACTIONS(115),
- [anon_sym_any] = ACTIONS(115),
- [anon_sym_number] = ACTIONS(115),
- [anon_sym_boolean] = ACTIONS(115),
- [anon_sym_string] = ACTIONS(115),
- [anon_sym_symbol] = ACTIONS(115),
- [anon_sym_object] = ACTIONS(115),
- [sym_html_comment] = ACTIONS(5),
- },
- [276] = {
- [sym_import] = STATE(3328),
- [sym_parenthesized_expression] = STATE(1336),
- [sym_expression] = STATE(2082),
- [sym_primary_expression] = STATE(1468),
- [sym_yield_expression] = STATE(1634),
- [sym_object] = STATE(1650),
- [sym_object_pattern] = STATE(5745),
- [sym_array] = STATE(1650),
- [sym_array_pattern] = STATE(5745),
- [sym_glimmer_template] = STATE(1634),
- [sym_jsx_element] = STATE(1634),
- [sym_jsx_opening_element] = STATE(3026),
- [sym_jsx_self_closing_element] = STATE(1634),
- [sym_class] = STATE(1650),
- [sym_function_expression] = STATE(1650),
- [sym_generator_function] = STATE(1650),
- [sym_arrow_function] = STATE(1650),
- [sym__call_signature] = STATE(5553),
- [sym_call_expression] = STATE(1650),
- [sym_new_expression] = STATE(1634),
- [sym_await_expression] = STATE(1634),
- [sym_member_expression] = STATE(1336),
- [sym_subscript_expression] = STATE(1336),
- [sym_assignment_expression] = STATE(1634),
- [sym__augmented_assignment_lhs] = STATE(2884),
- [sym_augmented_assignment_expression] = STATE(1634),
- [sym__destructuring_pattern] = STATE(5745),
- [sym_ternary_expression] = STATE(1634),
- [sym_binary_expression] = STATE(1634),
- [sym_unary_expression] = STATE(1634),
- [sym_update_expression] = STATE(1634),
- [sym_string] = STATE(1650),
- [sym_template_string] = STATE(1650),
- [sym_regex] = STATE(1650),
- [sym_meta_property] = STATE(1650),
- [sym_decorator] = STATE(1244),
- [sym_formal_parameters] = STATE(3742),
- [sym_non_null_expression] = STATE(1336),
- [sym_as_expression] = STATE(1634),
- [sym_satisfies_expression] = STATE(1634),
- [sym_instantiation_expression] = STATE(1634),
- [sym_internal_module] = STATE(1634),
- [sym__type_query_member_expression] = STATE(2782),
- [sym__type_query_subscript_expression] = STATE(2783),
- [sym__type_query_call_expression] = STATE(2833),
- [sym__type_query_instantiation_expression] = STATE(2905),
- [sym_type_parameters] = STATE(5349),
- [aux_sym_export_statement_repeat1] = STATE(4458),
- [sym_identifier] = ACTIONS(1989),
- [anon_sym_export] = ACTIONS(1250),
- [anon_sym_type] = ACTIONS(1250),
- [anon_sym_namespace] = ACTIONS(1252),
- [anon_sym_LBRACE] = ACTIONS(813),
- [anon_sym_typeof] = ACTIONS(1272),
- [anon_sym_import] = ACTIONS(133),
- [anon_sym_let] = ACTIONS(1250),
- [anon_sym_BANG] = ACTIONS(1256),
- [anon_sym_LPAREN] = ACTIONS(815),
- [anon_sym_await] = ACTIONS(1258),
- [anon_sym_yield] = ACTIONS(1260),
- [anon_sym_LBRACK] = ACTIONS(817),
- [sym_glimmer_opening_tag] = ACTIONS(148),
- [anon_sym_DQUOTE] = ACTIONS(150),
- [anon_sym_SQUOTE] = ACTIONS(152),
- [anon_sym_class] = ACTIONS(154),
- [anon_sym_async] = ACTIONS(1262),
- [anon_sym_function] = ACTIONS(158),
- [anon_sym_new] = ACTIONS(1474),
- [anon_sym_using] = ACTIONS(1266),
- [anon_sym_PLUS] = ACTIONS(1272),
- [anon_sym_DASH] = ACTIONS(1272),
- [anon_sym_SLASH] = ACTIONS(646),
- [anon_sym_LT] = ACTIONS(181),
- [anon_sym_TILDE] = ACTIONS(1256),
- [anon_sym_void] = ACTIONS(1272),
- [anon_sym_delete] = ACTIONS(1272),
- [anon_sym_PLUS_PLUS] = ACTIONS(1274),
- [anon_sym_DASH_DASH] = ACTIONS(1274),
- [sym_comment] = ACTIONS(5),
- [anon_sym_BQUOTE] = ACTIONS(825),
- [sym_number] = ACTIONS(787),
- [sym_private_property_identifier] = ACTIONS(1276),
- [sym_this] = ACTIONS(1967),
- [sym_super] = ACTIONS(200),
- [sym_true] = ACTIONS(200),
- [sym_false] = ACTIONS(200),
- [sym_null] = ACTIONS(200),
- [sym_undefined] = ACTIONS(1476),
- [anon_sym_AT] = ACTIONS(99),
- [anon_sym_static] = ACTIONS(1250),
- [anon_sym_readonly] = ACTIONS(1250),
- [anon_sym_get] = ACTIONS(1250),
- [anon_sym_set] = ACTIONS(1250),
- [anon_sym_declare] = ACTIONS(1250),
- [anon_sym_public] = ACTIONS(1250),
- [anon_sym_private] = ACTIONS(1250),
- [anon_sym_protected] = ACTIONS(1250),
- [anon_sym_override] = ACTIONS(1250),
- [anon_sym_module] = ACTIONS(1250),
- [anon_sym_any] = ACTIONS(1250),
- [anon_sym_number] = ACTIONS(1250),
- [anon_sym_boolean] = ACTIONS(1250),
- [anon_sym_string] = ACTIONS(1250),
- [anon_sym_symbol] = ACTIONS(1250),
- [anon_sym_object] = ACTIONS(1250),
- [sym_html_comment] = ACTIONS(5),
- },
- [277] = {
- [sym_import] = STATE(3306),
- [sym_expression_statement] = STATE(299),
- [sym_empty_statement] = STATE(299),
- [sym_parenthesized_expression] = STATE(1294),
- [sym_expression] = STATE(1705),
- [sym_primary_expression] = STATE(1946),
- [sym_yield_expression] = STATE(2234),
- [sym_object] = STATE(2310),
- [sym_object_pattern] = STATE(5667),
- [sym_array] = STATE(2310),
- [sym_array_pattern] = STATE(5667),
- [sym_glimmer_template] = STATE(2234),
- [sym_jsx_element] = STATE(2234),
- [sym_jsx_opening_element] = STATE(3051),
- [sym_jsx_self_closing_element] = STATE(2234),
- [sym_class] = STATE(2310),
- [sym_function_expression] = STATE(2310),
- [sym_generator_function] = STATE(2310),
- [sym_arrow_function] = STATE(2310),
- [sym__call_signature] = STATE(5809),
- [sym_call_expression] = STATE(2310),
- [sym_new_expression] = STATE(2234),
- [sym_await_expression] = STATE(2234),
- [sym_member_expression] = STATE(1294),
- [sym_subscript_expression] = STATE(1294),
- [sym_assignment_expression] = STATE(2234),
- [sym__augmented_assignment_lhs] = STATE(2875),
- [sym_augmented_assignment_expression] = STATE(2234),
- [sym__destructuring_pattern] = STATE(5667),
- [sym_ternary_expression] = STATE(2234),
- [sym_binary_expression] = STATE(2234),
- [sym_unary_expression] = STATE(2234),
- [sym_update_expression] = STATE(2234),
- [sym_sequence_expression] = STATE(5482),
- [sym_string] = STATE(2310),
- [sym_template_string] = STATE(2310),
- [sym_regex] = STATE(2310),
- [sym_meta_property] = STATE(2310),
- [sym_decorator] = STATE(1244),
- [sym_formal_parameters] = STATE(3742),
- [sym_non_null_expression] = STATE(1294),
- [sym_as_expression] = STATE(2234),
- [sym_satisfies_expression] = STATE(2234),
- [sym_instantiation_expression] = STATE(2234),
- [sym_internal_module] = STATE(2234),
- [sym_type_parameters] = STATE(5349),
- [aux_sym_export_statement_repeat1] = STATE(4499),
- [sym_identifier] = ACTIONS(1440),
- [anon_sym_export] = ACTIONS(1372),
- [anon_sym_type] = ACTIONS(1372),
- [anon_sym_namespace] = ACTIONS(1374),
- [anon_sym_LBRACE] = ACTIONS(700),
- [anon_sym_typeof] = ACTIONS(21),
- [anon_sym_import] = ACTIONS(133),
- [anon_sym_let] = ACTIONS(1372),
- [anon_sym_BANG] = ACTIONS(33),
- [anon_sym_LPAREN] = ACTIONS(41),
- [anon_sym_await] = ACTIONS(43),
- [anon_sym_SEMI] = ACTIONS(61),
- [anon_sym_yield] = ACTIONS(63),
- [anon_sym_LBRACK] = ACTIONS(65),
- [sym_glimmer_opening_tag] = ACTIONS(67),
- [anon_sym_DQUOTE] = ACTIONS(69),
- [anon_sym_SQUOTE] = ACTIONS(71),
- [anon_sym_class] = ACTIONS(709),
- [anon_sym_async] = ACTIONS(1378),
- [anon_sym_function] = ACTIONS(713),
- [anon_sym_new] = ACTIONS(1444),
- [anon_sym_using] = ACTIONS(81),
- [anon_sym_PLUS] = ACTIONS(21),
- [anon_sym_DASH] = ACTIONS(21),
- [anon_sym_SLASH] = ACTIONS(83),
- [anon_sym_LT] = ACTIONS(85),
- [anon_sym_TILDE] = ACTIONS(33),
- [anon_sym_void] = ACTIONS(21),
- [anon_sym_delete] = ACTIONS(21),
- [anon_sym_PLUS_PLUS] = ACTIONS(87),
- [anon_sym_DASH_DASH] = ACTIONS(87),
- [sym_comment] = ACTIONS(5),
- [anon_sym_BQUOTE] = ACTIONS(89),
- [sym_number] = ACTIONS(91),
- [sym_private_property_identifier] = ACTIONS(93),
- [sym_this] = ACTIONS(95),
- [sym_super] = ACTIONS(95),
- [sym_true] = ACTIONS(95),
- [sym_false] = ACTIONS(95),
- [sym_null] = ACTIONS(95),
- [sym_undefined] = ACTIONS(97),
- [anon_sym_AT] = ACTIONS(99),
- [anon_sym_static] = ACTIONS(1372),
- [anon_sym_readonly] = ACTIONS(1372),
- [anon_sym_get] = ACTIONS(1372),
- [anon_sym_set] = ACTIONS(1372),
- [anon_sym_declare] = ACTIONS(1372),
- [anon_sym_public] = ACTIONS(1372),
- [anon_sym_private] = ACTIONS(1372),
- [anon_sym_protected] = ACTIONS(1372),
- [anon_sym_override] = ACTIONS(1372),
- [anon_sym_module] = ACTIONS(1372),
- [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_object] = ACTIONS(1372),
- [sym_html_comment] = ACTIONS(5),
- },
- [278] = {
- [sym_identifier] = ACTIONS(1991),
- [anon_sym_export] = ACTIONS(1991),
- [anon_sym_STAR] = ACTIONS(122),
- [anon_sym_type] = ACTIONS(1991),
- [anon_sym_EQ] = ACTIONS(224),
- [anon_sym_as] = ACTIONS(122),
- [anon_sym_namespace] = ACTIONS(1991),
- [anon_sym_LBRACE] = ACTIONS(1993),
- [anon_sym_COMMA] = ACTIONS(227),
- [anon_sym_typeof] = ACTIONS(1991),
- [anon_sym_import] = ACTIONS(1991),
- [anon_sym_let] = ACTIONS(1991),
- [anon_sym_BANG] = ACTIONS(1991),
- [anon_sym_LPAREN] = ACTIONS(1993),
- [anon_sym_RPAREN] = ACTIONS(227),
- [anon_sym_await] = ACTIONS(1991),
- [anon_sym_in] = ACTIONS(122),
- [anon_sym_COLON] = ACTIONS(227),
- [anon_sym_yield] = ACTIONS(1991),
- [anon_sym_LBRACK] = ACTIONS(1993),
- [sym_glimmer_opening_tag] = ACTIONS(1993),
- [anon_sym_GT] = ACTIONS(122),
- [anon_sym_DOT] = ACTIONS(122),
- [anon_sym_DQUOTE] = ACTIONS(1993),
- [anon_sym_SQUOTE] = ACTIONS(1993),
- [anon_sym_class] = ACTIONS(1991),
- [anon_sym_async] = ACTIONS(1991),
- [anon_sym_function] = ACTIONS(1991),
- [anon_sym_EQ_GT] = ACTIONS(229),
- [anon_sym_QMARK_DOT] = ACTIONS(162),
- [anon_sym_new] = ACTIONS(1991),
- [anon_sym_using] = ACTIONS(1991),
- [anon_sym_PLUS_EQ] = ACTIONS(168),
- [anon_sym_DASH_EQ] = ACTIONS(168),
- [anon_sym_STAR_EQ] = ACTIONS(168),
- [anon_sym_SLASH_EQ] = ACTIONS(168),
- [anon_sym_PERCENT_EQ] = ACTIONS(168),
- [anon_sym_CARET_EQ] = ACTIONS(168),
- [anon_sym_AMP_EQ] = ACTIONS(168),
- [anon_sym_PIPE_EQ] = ACTIONS(168),
- [anon_sym_GT_GT_EQ] = ACTIONS(168),
- [anon_sym_GT_GT_GT_EQ] = ACTIONS(168),
- [anon_sym_LT_LT_EQ] = ACTIONS(168),
- [anon_sym_STAR_STAR_EQ] = ACTIONS(168),
- [anon_sym_AMP_AMP_EQ] = ACTIONS(168),
- [anon_sym_PIPE_PIPE_EQ] = ACTIONS(168),
- [anon_sym_QMARK_QMARK_EQ] = ACTIONS(168),
- [anon_sym_DOT_DOT_DOT] = ACTIONS(1993),
- [anon_sym_AMP_AMP] = ACTIONS(122),
- [anon_sym_PIPE_PIPE] = ACTIONS(122),
- [anon_sym_GT_GT] = ACTIONS(122),
- [anon_sym_GT_GT_GT] = ACTIONS(122),
- [anon_sym_LT_LT] = ACTIONS(122),
- [anon_sym_AMP] = ACTIONS(122),
- [anon_sym_CARET] = ACTIONS(122),
- [anon_sym_PIPE] = ACTIONS(122),
- [anon_sym_PLUS] = ACTIONS(1991),
- [anon_sym_DASH] = ACTIONS(1991),
- [anon_sym_SLASH] = ACTIONS(1991),
- [anon_sym_PERCENT] = ACTIONS(122),
- [anon_sym_STAR_STAR] = ACTIONS(122),
- [anon_sym_LT] = ACTIONS(1991),
- [anon_sym_LT_EQ] = ACTIONS(162),
- [anon_sym_EQ_EQ] = ACTIONS(122),
- [anon_sym_EQ_EQ_EQ] = ACTIONS(162),
- [anon_sym_BANG_EQ] = ACTIONS(122),
- [anon_sym_BANG_EQ_EQ] = ACTIONS(162),
- [anon_sym_GT_EQ] = ACTIONS(162),
- [anon_sym_QMARK_QMARK] = ACTIONS(122),
- [anon_sym_instanceof] = ACTIONS(122),
- [anon_sym_TILDE] = ACTIONS(1993),
- [anon_sym_void] = ACTIONS(1991),
- [anon_sym_delete] = ACTIONS(1991),
- [anon_sym_PLUS_PLUS] = ACTIONS(1993),
- [anon_sym_DASH_DASH] = ACTIONS(1993),
- [sym_comment] = ACTIONS(5),
- [anon_sym_BQUOTE] = ACTIONS(1993),
- [sym_number] = ACTIONS(1993),
- [sym_private_property_identifier] = ACTIONS(1993),
- [sym_this] = ACTIONS(1991),
- [sym_super] = ACTIONS(1991),
- [sym_true] = ACTIONS(1991),
- [sym_false] = ACTIONS(1991),
- [sym_null] = ACTIONS(1991),
- [sym_undefined] = ACTIONS(1991),
- [anon_sym_AT] = ACTIONS(1993),
- [anon_sym_static] = ACTIONS(1991),
- [anon_sym_readonly] = ACTIONS(1991),
- [anon_sym_get] = ACTIONS(1991),
- [anon_sym_set] = ACTIONS(1991),
- [anon_sym_QMARK] = ACTIONS(793),
- [anon_sym_declare] = ACTIONS(1991),
- [anon_sym_public] = ACTIONS(1991),
- [anon_sym_private] = ACTIONS(1991),
- [anon_sym_protected] = ACTIONS(1991),
- [anon_sym_override] = ACTIONS(1991),
- [anon_sym_module] = ACTIONS(1991),
- [anon_sym_any] = ACTIONS(1991),
- [anon_sym_number] = ACTIONS(1991),
- [anon_sym_boolean] = ACTIONS(1991),
- [anon_sym_string] = ACTIONS(1991),
- [anon_sym_symbol] = ACTIONS(1991),
- [anon_sym_object] = ACTIONS(1991),
- [anon_sym_satisfies] = ACTIONS(122),
- [sym__ternary_qmark] = ACTIONS(162),
- [sym_html_comment] = ACTIONS(5),
- },
- [279] = {
- [sym_import] = STATE(3264),
- [sym_parenthesized_expression] = STATE(1251),
- [sym_expression] = STATE(1479),
- [sym_primary_expression] = STATE(1468),
- [sym_yield_expression] = STATE(1634),
- [sym_object] = STATE(1650),
- [sym_object_pattern] = STATE(5633),
- [sym_array] = STATE(1650),
- [sym_array_pattern] = STATE(5633),
- [sym_glimmer_template] = STATE(1634),
- [sym_jsx_element] = STATE(1634),
- [sym_jsx_opening_element] = STATE(3026),
- [sym_jsx_self_closing_element] = STATE(1634),
- [sym_class] = STATE(1650),
- [sym_function_expression] = STATE(1650),
- [sym_generator_function] = STATE(1650),
- [sym_arrow_function] = STATE(1650),
- [sym__call_signature] = STATE(5828),
- [sym_call_expression] = STATE(1650),
- [sym_new_expression] = STATE(1634),
- [sym_await_expression] = STATE(1634),
- [sym_member_expression] = STATE(1251),
- [sym_subscript_expression] = STATE(1251),
- [sym_assignment_expression] = STATE(1634),
- [sym__augmented_assignment_lhs] = STATE(2900),
- [sym_augmented_assignment_expression] = STATE(1634),
- [sym__destructuring_pattern] = STATE(5633),
- [sym_ternary_expression] = STATE(1634),
- [sym_binary_expression] = STATE(1634),
- [sym_unary_expression] = STATE(1634),
- [sym_update_expression] = STATE(1634),
- [sym_string] = STATE(1650),
- [sym_template_string] = STATE(1650),
- [sym_regex] = STATE(1650),
- [sym_meta_property] = STATE(1650),
- [sym_decorator] = STATE(1244),
- [sym_formal_parameters] = STATE(3742),
- [sym_non_null_expression] = STATE(1251),
- [sym_as_expression] = STATE(1634),
- [sym_satisfies_expression] = STATE(1634),
- [sym_instantiation_expression] = STATE(1634),
- [sym_internal_module] = STATE(1634),
- [sym__type_query_member_expression] = STATE(2832),
- [sym__type_query_subscript_expression] = STATE(2839),
- [sym__type_query_call_expression] = STATE(3005),
- [sym__type_query_instantiation_expression] = STATE(3155),
- [sym_type_parameters] = STATE(5349),
- [aux_sym_export_statement_repeat1] = STATE(4458),
- [sym_identifier] = ACTIONS(1995),
- [anon_sym_export] = ACTIONS(1044),
- [anon_sym_type] = ACTIONS(1044),
- [anon_sym_namespace] = ACTIONS(1046),
- [anon_sym_LBRACE] = ACTIONS(813),
- [anon_sym_typeof] = ACTIONS(650),
- [anon_sym_import] = ACTIONS(133),
- [anon_sym_let] = ACTIONS(1044),
- [anon_sym_BANG] = ACTIONS(622),
- [anon_sym_LPAREN] = ACTIONS(815),
- [anon_sym_await] = ACTIONS(624),
- [anon_sym_yield] = ACTIONS(626),
- [anon_sym_LBRACK] = ACTIONS(817),
- [sym_glimmer_opening_tag] = ACTIONS(148),
- [anon_sym_DQUOTE] = ACTIONS(150),
- [anon_sym_SQUOTE] = ACTIONS(152),
- [anon_sym_class] = ACTIONS(154),
- [anon_sym_async] = ACTIONS(1052),
- [anon_sym_function] = ACTIONS(158),
- [anon_sym_new] = ACTIONS(1436),
- [anon_sym_using] = ACTIONS(636),
- [anon_sym_PLUS] = ACTIONS(650),
- [anon_sym_DASH] = ACTIONS(650),
- [anon_sym_SLASH] = ACTIONS(646),
- [anon_sym_LT] = ACTIONS(181),
- [anon_sym_TILDE] = ACTIONS(622),
- [anon_sym_void] = ACTIONS(650),
- [anon_sym_delete] = ACTIONS(650),
- [anon_sym_PLUS_PLUS] = ACTIONS(652),
- [anon_sym_DASH_DASH] = ACTIONS(652),
- [sym_comment] = ACTIONS(5),
- [anon_sym_BQUOTE] = ACTIONS(825),
- [sym_number] = ACTIONS(787),
- [sym_private_property_identifier] = ACTIONS(654),
- [sym_this] = ACTIONS(1997),
- [sym_super] = ACTIONS(200),
- [sym_true] = ACTIONS(200),
- [sym_false] = ACTIONS(200),
- [sym_null] = ACTIONS(200),
- [sym_undefined] = ACTIONS(1438),
- [anon_sym_AT] = ACTIONS(99),
- [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_override] = 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_object] = ACTIONS(1044),
- [sym_html_comment] = ACTIONS(5),
- },
- [280] = {
- [sym_identifier] = ACTIONS(1991),
- [anon_sym_export] = ACTIONS(1991),
- [anon_sym_STAR] = ACTIONS(122),
- [anon_sym_type] = ACTIONS(1991),
- [anon_sym_EQ] = ACTIONS(119),
- [anon_sym_as] = ACTIONS(122),
- [anon_sym_namespace] = ACTIONS(1991),
- [anon_sym_LBRACE] = ACTIONS(1993),
- [anon_sym_COMMA] = ACTIONS(128),
- [anon_sym_typeof] = ACTIONS(1991),
- [anon_sym_import] = ACTIONS(1991),
- [anon_sym_let] = ACTIONS(1991),
- [anon_sym_BANG] = ACTIONS(1991),
- [anon_sym_LPAREN] = ACTIONS(1993),
- [anon_sym_RPAREN] = ACTIONS(128),
- [anon_sym_await] = ACTIONS(1991),
- [anon_sym_in] = ACTIONS(122),
- [anon_sym_COLON] = ACTIONS(128),
- [anon_sym_yield] = ACTIONS(1991),
- [anon_sym_LBRACK] = ACTIONS(1993),
- [sym_glimmer_opening_tag] = ACTIONS(1993),
- [anon_sym_GT] = ACTIONS(122),
- [anon_sym_DOT] = ACTIONS(122),
- [anon_sym_DQUOTE] = ACTIONS(1993),
- [anon_sym_SQUOTE] = ACTIONS(1993),
- [anon_sym_class] = ACTIONS(1991),
- [anon_sym_async] = ACTIONS(1991),
- [anon_sym_function] = ACTIONS(1991),
- [anon_sym_EQ_GT] = ACTIONS(160),
- [anon_sym_QMARK_DOT] = ACTIONS(162),
- [anon_sym_new] = ACTIONS(1991),
- [anon_sym_using] = ACTIONS(1991),
- [anon_sym_PLUS_EQ] = ACTIONS(168),
- [anon_sym_DASH_EQ] = ACTIONS(168),
- [anon_sym_STAR_EQ] = ACTIONS(168),
- [anon_sym_SLASH_EQ] = ACTIONS(168),
- [anon_sym_PERCENT_EQ] = ACTIONS(168),
- [anon_sym_CARET_EQ] = ACTIONS(168),
- [anon_sym_AMP_EQ] = ACTIONS(168),
- [anon_sym_PIPE_EQ] = ACTIONS(168),
- [anon_sym_GT_GT_EQ] = ACTIONS(168),
- [anon_sym_GT_GT_GT_EQ] = ACTIONS(168),
- [anon_sym_LT_LT_EQ] = ACTIONS(168),
- [anon_sym_STAR_STAR_EQ] = ACTIONS(168),
- [anon_sym_AMP_AMP_EQ] = ACTIONS(168),
- [anon_sym_PIPE_PIPE_EQ] = ACTIONS(168),
- [anon_sym_QMARK_QMARK_EQ] = ACTIONS(168),
- [anon_sym_DOT_DOT_DOT] = ACTIONS(1993),
- [anon_sym_AMP_AMP] = ACTIONS(122),
- [anon_sym_PIPE_PIPE] = ACTIONS(122),
- [anon_sym_GT_GT] = ACTIONS(122),
- [anon_sym_GT_GT_GT] = ACTIONS(122),
- [anon_sym_LT_LT] = ACTIONS(122),
- [anon_sym_AMP] = ACTIONS(122),
- [anon_sym_CARET] = ACTIONS(122),
- [anon_sym_PIPE] = ACTIONS(122),
- [anon_sym_PLUS] = ACTIONS(1991),
- [anon_sym_DASH] = ACTIONS(1991),
- [anon_sym_SLASH] = ACTIONS(1991),
- [anon_sym_PERCENT] = ACTIONS(122),
- [anon_sym_STAR_STAR] = ACTIONS(122),
- [anon_sym_LT] = ACTIONS(1991),
- [anon_sym_LT_EQ] = ACTIONS(162),
- [anon_sym_EQ_EQ] = ACTIONS(122),
- [anon_sym_EQ_EQ_EQ] = ACTIONS(162),
- [anon_sym_BANG_EQ] = ACTIONS(122),
- [anon_sym_BANG_EQ_EQ] = ACTIONS(162),
- [anon_sym_GT_EQ] = ACTIONS(162),
- [anon_sym_QMARK_QMARK] = ACTIONS(122),
- [anon_sym_instanceof] = ACTIONS(122),
- [anon_sym_TILDE] = ACTIONS(1993),
- [anon_sym_void] = ACTIONS(1991),
- [anon_sym_delete] = ACTIONS(1991),
- [anon_sym_PLUS_PLUS] = ACTIONS(1993),
- [anon_sym_DASH_DASH] = ACTIONS(1993),
- [sym_comment] = ACTIONS(5),
- [anon_sym_BQUOTE] = ACTIONS(1993),
- [sym_number] = ACTIONS(1993),
- [sym_private_property_identifier] = ACTIONS(1993),
- [sym_this] = ACTIONS(1991),
- [sym_super] = ACTIONS(1991),
- [sym_true] = ACTIONS(1991),
- [sym_false] = ACTIONS(1991),
- [sym_null] = ACTIONS(1991),
- [sym_undefined] = ACTIONS(1991),
- [anon_sym_AT] = ACTIONS(1993),
- [anon_sym_static] = ACTIONS(1991),
- [anon_sym_readonly] = ACTIONS(1991),
- [anon_sym_get] = ACTIONS(1991),
- [anon_sym_set] = ACTIONS(1991),
- [anon_sym_QMARK] = ACTIONS(793),
- [anon_sym_declare] = ACTIONS(1991),
- [anon_sym_public] = ACTIONS(1991),
- [anon_sym_private] = ACTIONS(1991),
- [anon_sym_protected] = ACTIONS(1991),
- [anon_sym_override] = ACTIONS(1991),
- [anon_sym_module] = ACTIONS(1991),
- [anon_sym_any] = ACTIONS(1991),
- [anon_sym_number] = ACTIONS(1991),
- [anon_sym_boolean] = ACTIONS(1991),
- [anon_sym_string] = ACTIONS(1991),
- [anon_sym_symbol] = ACTIONS(1991),
- [anon_sym_object] = ACTIONS(1991),
- [anon_sym_satisfies] = ACTIONS(122),
- [sym__ternary_qmark] = ACTIONS(162),
- [sym_html_comment] = ACTIONS(5),
- },
- [281] = {
- [sym_import] = STATE(3261),
- [sym_parenthesized_expression] = STATE(1369),
- [sym_expression] = STATE(2305),
- [sym_primary_expression] = STATE(1468),
- [sym_yield_expression] = STATE(1634),
- [sym_object] = STATE(1650),
- [sym_object_pattern] = STATE(5861),
- [sym_array] = STATE(1650),
- [sym_array_pattern] = STATE(5861),
- [sym_glimmer_template] = STATE(1634),
- [sym_jsx_element] = STATE(1634),
- [sym_jsx_opening_element] = STATE(3026),
- [sym_jsx_self_closing_element] = STATE(1634),
- [sym_class] = STATE(1650),
- [sym_function_expression] = STATE(1650),
- [sym_generator_function] = STATE(1650),
- [sym_arrow_function] = STATE(1650),
- [sym__call_signature] = STATE(5765),
- [sym_call_expression] = STATE(1650),
- [sym_new_expression] = STATE(1634),
- [sym_await_expression] = STATE(1634),
- [sym_member_expression] = STATE(1369),
- [sym_subscript_expression] = STATE(1369),
- [sym_assignment_expression] = STATE(1634),
- [sym__augmented_assignment_lhs] = STATE(2891),
- [sym_augmented_assignment_expression] = STATE(1634),
- [sym__destructuring_pattern] = STATE(5861),
- [sym_ternary_expression] = STATE(1634),
- [sym_binary_expression] = STATE(1634),
- [sym_unary_expression] = STATE(1634),
- [sym_update_expression] = STATE(1634),
- [sym_string] = STATE(1650),
- [sym_template_string] = STATE(1650),
- [sym_regex] = STATE(1650),
- [sym_meta_property] = STATE(1650),
- [sym_decorator] = STATE(1244),
- [sym_formal_parameters] = STATE(3742),
- [sym_non_null_expression] = STATE(1369),
- [sym_as_expression] = STATE(1634),
- [sym_satisfies_expression] = STATE(1634),
- [sym_instantiation_expression] = STATE(1634),
- [sym_internal_module] = STATE(1634),
- [sym__type_query_member_expression] = STATE(2782),
- [sym__type_query_subscript_expression] = STATE(2783),
- [sym__type_query_call_expression] = STATE(2833),
- [sym__type_query_instantiation_expression] = STATE(2905),
- [sym_type_parameters] = STATE(5349),
- [aux_sym_export_statement_repeat1] = STATE(4458),
- [sym_identifier] = ACTIONS(1999),
- [anon_sym_export] = ACTIONS(1114),
- [anon_sym_type] = ACTIONS(1114),
- [anon_sym_namespace] = ACTIONS(1116),
- [anon_sym_LBRACE] = ACTIONS(813),
- [anon_sym_typeof] = ACTIONS(1138),
- [anon_sym_import] = ACTIONS(133),
- [anon_sym_let] = ACTIONS(1114),
- [anon_sym_BANG] = ACTIONS(1122),
- [anon_sym_LPAREN] = ACTIONS(815),
- [anon_sym_await] = ACTIONS(1124),
- [anon_sym_yield] = ACTIONS(1126),
- [anon_sym_LBRACK] = ACTIONS(817),
- [sym_glimmer_opening_tag] = ACTIONS(148),
- [anon_sym_DQUOTE] = ACTIONS(150),
- [anon_sym_SQUOTE] = ACTIONS(152),
- [anon_sym_class] = ACTIONS(154),
- [anon_sym_async] = ACTIONS(1128),
- [anon_sym_function] = ACTIONS(158),
- [anon_sym_new] = ACTIONS(1482),
- [anon_sym_using] = ACTIONS(1132),
- [anon_sym_PLUS] = ACTIONS(1138),
- [anon_sym_DASH] = ACTIONS(1138),
- [anon_sym_SLASH] = ACTIONS(646),
- [anon_sym_LT] = ACTIONS(181),
- [anon_sym_TILDE] = ACTIONS(1122),
- [anon_sym_void] = ACTIONS(1138),
- [anon_sym_delete] = ACTIONS(1138),
- [anon_sym_PLUS_PLUS] = ACTIONS(1140),
- [anon_sym_DASH_DASH] = ACTIONS(1140),
- [sym_comment] = ACTIONS(5),
- [anon_sym_BQUOTE] = ACTIONS(825),
- [sym_number] = ACTIONS(787),
- [sym_private_property_identifier] = ACTIONS(1142),
- [sym_this] = ACTIONS(1967),
- [sym_super] = ACTIONS(200),
- [sym_true] = ACTIONS(200),
- [sym_false] = ACTIONS(200),
- [sym_null] = ACTIONS(200),
- [sym_undefined] = ACTIONS(1484),
- [anon_sym_AT] = ACTIONS(99),
- [anon_sym_static] = ACTIONS(1114),
- [anon_sym_readonly] = ACTIONS(1114),
- [anon_sym_get] = ACTIONS(1114),
- [anon_sym_set] = ACTIONS(1114),
- [anon_sym_declare] = ACTIONS(1114),
- [anon_sym_public] = ACTIONS(1114),
- [anon_sym_private] = ACTIONS(1114),
- [anon_sym_protected] = ACTIONS(1114),
- [anon_sym_override] = ACTIONS(1114),
- [anon_sym_module] = ACTIONS(1114),
- [anon_sym_any] = ACTIONS(1114),
- [anon_sym_number] = ACTIONS(1114),
- [anon_sym_boolean] = ACTIONS(1114),
- [anon_sym_string] = ACTIONS(1114),
- [anon_sym_symbol] = ACTIONS(1114),
- [anon_sym_object] = ACTIONS(1114),
- [sym_html_comment] = ACTIONS(5),
- },
- [282] = {
- [sym_identifier] = ACTIONS(2001),
- [anon_sym_export] = ACTIONS(2001),
- [anon_sym_STAR] = ACTIONS(122),
- [anon_sym_type] = ACTIONS(2001),
- [anon_sym_EQ] = ACTIONS(119),
- [anon_sym_as] = ACTIONS(122),
- [anon_sym_namespace] = ACTIONS(2001),
- [anon_sym_LBRACE] = ACTIONS(2003),
- [anon_sym_COMMA] = ACTIONS(128),
- [anon_sym_typeof] = ACTIONS(2001),
- [anon_sym_import] = ACTIONS(2001),
- [anon_sym_let] = ACTIONS(2001),
- [anon_sym_BANG] = ACTIONS(2001),
- [anon_sym_LPAREN] = ACTIONS(2003),
- [anon_sym_RPAREN] = ACTIONS(128),
- [anon_sym_await] = ACTIONS(2001),
- [anon_sym_in] = ACTIONS(122),
- [anon_sym_COLON] = ACTIONS(128),
- [anon_sym_yield] = ACTIONS(2001),
- [anon_sym_LBRACK] = ACTIONS(2003),
- [sym_glimmer_opening_tag] = ACTIONS(2003),
- [anon_sym_GT] = ACTIONS(122),
- [anon_sym_DOT] = ACTIONS(122),
- [anon_sym_DQUOTE] = ACTIONS(2003),
- [anon_sym_SQUOTE] = ACTIONS(2003),
- [anon_sym_class] = ACTIONS(2001),
- [anon_sym_async] = ACTIONS(2001),
- [anon_sym_function] = ACTIONS(2001),
- [anon_sym_EQ_GT] = ACTIONS(160),
- [anon_sym_QMARK_DOT] = ACTIONS(162),
- [anon_sym_new] = ACTIONS(2001),
- [anon_sym_using] = ACTIONS(2001),
- [anon_sym_PLUS_EQ] = ACTIONS(168),
- [anon_sym_DASH_EQ] = ACTIONS(168),
- [anon_sym_STAR_EQ] = ACTIONS(168),
- [anon_sym_SLASH_EQ] = ACTIONS(168),
- [anon_sym_PERCENT_EQ] = ACTIONS(168),
- [anon_sym_CARET_EQ] = ACTIONS(168),
- [anon_sym_AMP_EQ] = ACTIONS(168),
- [anon_sym_PIPE_EQ] = ACTIONS(168),
- [anon_sym_GT_GT_EQ] = ACTIONS(168),
- [anon_sym_GT_GT_GT_EQ] = ACTIONS(168),
- [anon_sym_LT_LT_EQ] = ACTIONS(168),
- [anon_sym_STAR_STAR_EQ] = ACTIONS(168),
- [anon_sym_AMP_AMP_EQ] = ACTIONS(168),
- [anon_sym_PIPE_PIPE_EQ] = ACTIONS(168),
- [anon_sym_QMARK_QMARK_EQ] = ACTIONS(168),
- [anon_sym_DOT_DOT_DOT] = ACTIONS(2003),
- [anon_sym_AMP_AMP] = ACTIONS(122),
- [anon_sym_PIPE_PIPE] = ACTIONS(122),
- [anon_sym_GT_GT] = ACTIONS(122),
- [anon_sym_GT_GT_GT] = ACTIONS(122),
- [anon_sym_LT_LT] = ACTIONS(122),
- [anon_sym_AMP] = ACTIONS(122),
- [anon_sym_CARET] = ACTIONS(122),
- [anon_sym_PIPE] = ACTIONS(122),
- [anon_sym_PLUS] = ACTIONS(2001),
- [anon_sym_DASH] = ACTIONS(2001),
- [anon_sym_SLASH] = ACTIONS(2001),
- [anon_sym_PERCENT] = ACTIONS(122),
- [anon_sym_STAR_STAR] = ACTIONS(122),
- [anon_sym_LT] = ACTIONS(2001),
- [anon_sym_LT_EQ] = ACTIONS(162),
- [anon_sym_EQ_EQ] = ACTIONS(122),
- [anon_sym_EQ_EQ_EQ] = ACTIONS(162),
- [anon_sym_BANG_EQ] = ACTIONS(122),
- [anon_sym_BANG_EQ_EQ] = ACTIONS(162),
- [anon_sym_GT_EQ] = ACTIONS(162),
- [anon_sym_QMARK_QMARK] = ACTIONS(122),
- [anon_sym_instanceof] = ACTIONS(122),
- [anon_sym_TILDE] = ACTIONS(2003),
- [anon_sym_void] = ACTIONS(2001),
- [anon_sym_delete] = ACTIONS(2001),
- [anon_sym_PLUS_PLUS] = ACTIONS(2003),
- [anon_sym_DASH_DASH] = ACTIONS(2003),
- [sym_comment] = ACTIONS(5),
- [anon_sym_BQUOTE] = ACTIONS(2003),
- [sym_number] = ACTIONS(2003),
- [sym_private_property_identifier] = ACTIONS(2003),
- [sym_this] = ACTIONS(2001),
- [sym_super] = ACTIONS(2001),
- [sym_true] = ACTIONS(2001),
- [sym_false] = ACTIONS(2001),
- [sym_null] = ACTIONS(2001),
- [sym_undefined] = ACTIONS(2001),
- [anon_sym_AT] = ACTIONS(2003),
- [anon_sym_static] = ACTIONS(2001),
- [anon_sym_readonly] = ACTIONS(2001),
- [anon_sym_get] = ACTIONS(2001),
- [anon_sym_set] = ACTIONS(2001),
- [anon_sym_QMARK] = ACTIONS(793),
- [anon_sym_declare] = ACTIONS(2001),
- [anon_sym_public] = ACTIONS(2001),
- [anon_sym_private] = ACTIONS(2001),
- [anon_sym_protected] = ACTIONS(2001),
- [anon_sym_override] = ACTIONS(2001),
- [anon_sym_module] = ACTIONS(2001),
- [anon_sym_any] = ACTIONS(2001),
- [anon_sym_number] = ACTIONS(2001),
- [anon_sym_boolean] = ACTIONS(2001),
- [anon_sym_string] = ACTIONS(2001),
- [anon_sym_symbol] = ACTIONS(2001),
- [anon_sym_object] = ACTIONS(2001),
- [anon_sym_satisfies] = ACTIONS(122),
- [sym__ternary_qmark] = ACTIONS(162),
- [sym_html_comment] = ACTIONS(5),
- },
- [283] = {
- [sym_import] = STATE(3410),
- [sym_parenthesized_expression] = STATE(1294),
- [sym_expression] = STATE(1727),
- [sym_primary_expression] = STATE(1946),
- [sym_yield_expression] = STATE(2234),
- [sym_object] = STATE(2310),
- [sym_object_pattern] = STATE(5667),
- [sym_array] = STATE(2310),
- [sym_array_pattern] = STATE(5667),
- [sym_glimmer_template] = STATE(2234),
- [sym_jsx_element] = STATE(2234),
- [sym_jsx_opening_element] = STATE(3051),
- [sym_jsx_self_closing_element] = STATE(2234),
- [sym_class] = STATE(2310),
- [sym_function_expression] = STATE(2310),
- [sym_generator_function] = STATE(2310),
- [sym_arrow_function] = STATE(2310),
- [sym__call_signature] = STATE(5809),
- [sym_call_expression] = STATE(2310),
- [sym_new_expression] = STATE(2234),
- [sym_await_expression] = STATE(2234),
- [sym_member_expression] = STATE(1294),
- [sym_subscript_expression] = STATE(1294),
- [sym_assignment_expression] = STATE(2234),
- [sym__augmented_assignment_lhs] = STATE(2875),
- [sym_augmented_assignment_expression] = STATE(2234),
- [sym__destructuring_pattern] = STATE(5667),
- [sym_ternary_expression] = STATE(2234),
- [sym_binary_expression] = STATE(2234),
- [sym_unary_expression] = STATE(2234),
- [sym_update_expression] = STATE(2234),
- [sym_string] = STATE(2310),
- [sym_template_string] = STATE(2310),
- [sym_regex] = STATE(2310),
- [sym_meta_property] = STATE(2310),
- [sym_decorator] = STATE(1244),
- [sym_formal_parameters] = STATE(3742),
- [sym_non_null_expression] = STATE(1294),
- [sym_as_expression] = STATE(2234),
- [sym_satisfies_expression] = STATE(2234),
- [sym_instantiation_expression] = STATE(2234),
- [sym_internal_module] = STATE(2234),
- [sym__type_query_member_expression] = STATE(2782),
- [sym__type_query_subscript_expression] = STATE(2783),
- [sym__type_query_call_expression] = STATE(2833),
- [sym__type_query_instantiation_expression] = STATE(2905),
- [sym_type_parameters] = STATE(5349),
- [aux_sym_export_statement_repeat1] = STATE(4499),
- [sym_identifier] = ACTIONS(2005),
- [anon_sym_export] = ACTIONS(1372),
- [anon_sym_type] = ACTIONS(1372),
- [anon_sym_namespace] = ACTIONS(1374),
- [anon_sym_LBRACE] = ACTIONS(700),
- [anon_sym_typeof] = ACTIONS(21),
- [anon_sym_import] = ACTIONS(133),
- [anon_sym_let] = ACTIONS(1372),
- [anon_sym_BANG] = ACTIONS(33),
- [anon_sym_LPAREN] = ACTIONS(41),
- [anon_sym_await] = ACTIONS(43),
- [anon_sym_yield] = ACTIONS(63),
- [anon_sym_LBRACK] = ACTIONS(65),
- [sym_glimmer_opening_tag] = ACTIONS(67),
- [anon_sym_DQUOTE] = ACTIONS(69),
- [anon_sym_SQUOTE] = ACTIONS(71),
- [anon_sym_class] = ACTIONS(709),
- [anon_sym_async] = ACTIONS(1378),
- [anon_sym_function] = ACTIONS(713),
- [anon_sym_new] = ACTIONS(1444),
- [anon_sym_using] = ACTIONS(81),
- [anon_sym_PLUS] = ACTIONS(21),
- [anon_sym_DASH] = ACTIONS(21),
- [anon_sym_SLASH] = ACTIONS(83),
- [anon_sym_LT] = ACTIONS(85),
- [anon_sym_TILDE] = ACTIONS(33),
- [anon_sym_void] = ACTIONS(21),
- [anon_sym_delete] = ACTIONS(21),
- [anon_sym_PLUS_PLUS] = ACTIONS(87),
- [anon_sym_DASH_DASH] = ACTIONS(87),
- [sym_comment] = ACTIONS(5),
- [anon_sym_BQUOTE] = ACTIONS(89),
- [sym_number] = ACTIONS(91),
- [sym_private_property_identifier] = ACTIONS(93),
- [sym_this] = ACTIONS(1981),
- [sym_super] = ACTIONS(95),
- [sym_true] = ACTIONS(95),
- [sym_false] = ACTIONS(95),
- [sym_null] = ACTIONS(95),
- [sym_undefined] = ACTIONS(97),
- [anon_sym_AT] = ACTIONS(99),
- [anon_sym_static] = ACTIONS(1372),
- [anon_sym_readonly] = ACTIONS(1372),
- [anon_sym_get] = ACTIONS(1372),
- [anon_sym_set] = ACTIONS(1372),
- [anon_sym_declare] = ACTIONS(1372),
- [anon_sym_public] = ACTIONS(1372),
- [anon_sym_private] = ACTIONS(1372),
- [anon_sym_protected] = ACTIONS(1372),
- [anon_sym_override] = ACTIONS(1372),
- [anon_sym_module] = ACTIONS(1372),
- [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_object] = ACTIONS(1372),
- [sym_html_comment] = ACTIONS(5),
- },
- [284] = {
- [sym_identifier] = ACTIONS(2001),
- [anon_sym_export] = ACTIONS(2001),
- [anon_sym_STAR] = ACTIONS(122),
- [anon_sym_type] = ACTIONS(2001),
- [anon_sym_EQ] = ACTIONS(224),
- [anon_sym_as] = ACTIONS(122),
- [anon_sym_namespace] = ACTIONS(2001),
- [anon_sym_LBRACE] = ACTIONS(2003),
- [anon_sym_COMMA] = ACTIONS(227),
- [anon_sym_typeof] = ACTIONS(2001),
- [anon_sym_import] = ACTIONS(2001),
- [anon_sym_let] = ACTIONS(2001),
- [anon_sym_BANG] = ACTIONS(2001),
- [anon_sym_LPAREN] = ACTIONS(2003),
- [anon_sym_RPAREN] = ACTIONS(227),
- [anon_sym_await] = ACTIONS(2001),
- [anon_sym_in] = ACTIONS(122),
- [anon_sym_COLON] = ACTIONS(227),
- [anon_sym_yield] = ACTIONS(2001),
- [anon_sym_LBRACK] = ACTIONS(2003),
- [sym_glimmer_opening_tag] = ACTIONS(2003),
- [anon_sym_GT] = ACTIONS(122),
- [anon_sym_DOT] = ACTIONS(122),
- [anon_sym_DQUOTE] = ACTIONS(2003),
- [anon_sym_SQUOTE] = ACTIONS(2003),
- [anon_sym_class] = ACTIONS(2001),
- [anon_sym_async] = ACTIONS(2001),
- [anon_sym_function] = ACTIONS(2001),
- [anon_sym_EQ_GT] = ACTIONS(229),
- [anon_sym_QMARK_DOT] = ACTIONS(162),
- [anon_sym_new] = ACTIONS(2001),
- [anon_sym_using] = ACTIONS(2001),
- [anon_sym_PLUS_EQ] = ACTIONS(168),
- [anon_sym_DASH_EQ] = ACTIONS(168),
- [anon_sym_STAR_EQ] = ACTIONS(168),
- [anon_sym_SLASH_EQ] = ACTIONS(168),
- [anon_sym_PERCENT_EQ] = ACTIONS(168),
- [anon_sym_CARET_EQ] = ACTIONS(168),
- [anon_sym_AMP_EQ] = ACTIONS(168),
- [anon_sym_PIPE_EQ] = ACTIONS(168),
- [anon_sym_GT_GT_EQ] = ACTIONS(168),
- [anon_sym_GT_GT_GT_EQ] = ACTIONS(168),
- [anon_sym_LT_LT_EQ] = ACTIONS(168),
- [anon_sym_STAR_STAR_EQ] = ACTIONS(168),
- [anon_sym_AMP_AMP_EQ] = ACTIONS(168),
- [anon_sym_PIPE_PIPE_EQ] = ACTIONS(168),
- [anon_sym_QMARK_QMARK_EQ] = ACTIONS(168),
- [anon_sym_DOT_DOT_DOT] = ACTIONS(2003),
- [anon_sym_AMP_AMP] = ACTIONS(122),
- [anon_sym_PIPE_PIPE] = ACTIONS(122),
- [anon_sym_GT_GT] = ACTIONS(122),
- [anon_sym_GT_GT_GT] = ACTIONS(122),
- [anon_sym_LT_LT] = ACTIONS(122),
- [anon_sym_AMP] = ACTIONS(122),
- [anon_sym_CARET] = ACTIONS(122),
- [anon_sym_PIPE] = ACTIONS(122),
- [anon_sym_PLUS] = ACTIONS(2001),
- [anon_sym_DASH] = ACTIONS(2001),
- [anon_sym_SLASH] = ACTIONS(2001),
- [anon_sym_PERCENT] = ACTIONS(122),
- [anon_sym_STAR_STAR] = ACTIONS(122),
- [anon_sym_LT] = ACTIONS(2001),
- [anon_sym_LT_EQ] = ACTIONS(162),
- [anon_sym_EQ_EQ] = ACTIONS(122),
- [anon_sym_EQ_EQ_EQ] = ACTIONS(162),
- [anon_sym_BANG_EQ] = ACTIONS(122),
- [anon_sym_BANG_EQ_EQ] = ACTIONS(162),
- [anon_sym_GT_EQ] = ACTIONS(162),
- [anon_sym_QMARK_QMARK] = ACTIONS(122),
- [anon_sym_instanceof] = ACTIONS(122),
- [anon_sym_TILDE] = ACTIONS(2003),
- [anon_sym_void] = ACTIONS(2001),
- [anon_sym_delete] = ACTIONS(2001),
- [anon_sym_PLUS_PLUS] = ACTIONS(2003),
- [anon_sym_DASH_DASH] = ACTIONS(2003),
- [sym_comment] = ACTIONS(5),
- [anon_sym_BQUOTE] = ACTIONS(2003),
- [sym_number] = ACTIONS(2003),
- [sym_private_property_identifier] = ACTIONS(2003),
- [sym_this] = ACTIONS(2001),
- [sym_super] = ACTIONS(2001),
- [sym_true] = ACTIONS(2001),
- [sym_false] = ACTIONS(2001),
- [sym_null] = ACTIONS(2001),
- [sym_undefined] = ACTIONS(2001),
- [anon_sym_AT] = ACTIONS(2003),
- [anon_sym_static] = ACTIONS(2001),
- [anon_sym_readonly] = ACTIONS(2001),
- [anon_sym_get] = ACTIONS(2001),
- [anon_sym_set] = ACTIONS(2001),
- [anon_sym_QMARK] = ACTIONS(793),
- [anon_sym_declare] = ACTIONS(2001),
- [anon_sym_public] = ACTIONS(2001),
- [anon_sym_private] = ACTIONS(2001),
- [anon_sym_protected] = ACTIONS(2001),
- [anon_sym_override] = ACTIONS(2001),
- [anon_sym_module] = ACTIONS(2001),
- [anon_sym_any] = ACTIONS(2001),
- [anon_sym_number] = ACTIONS(2001),
- [anon_sym_boolean] = ACTIONS(2001),
- [anon_sym_string] = ACTIONS(2001),
- [anon_sym_symbol] = ACTIONS(2001),
- [anon_sym_object] = ACTIONS(2001),
- [anon_sym_satisfies] = ACTIONS(122),
- [sym__ternary_qmark] = ACTIONS(162),
- [sym_html_comment] = ACTIONS(5),
- },
- [285] = {
- [sym_import] = STATE(3411),
- [sym_parenthesized_expression] = STATE(1251),
- [sym_expression] = STATE(1479),
- [sym_primary_expression] = STATE(1468),
- [sym_yield_expression] = STATE(1634),
- [sym_object] = STATE(1650),
- [sym_object_pattern] = STATE(5633),
- [sym_array] = STATE(1650),
- [sym_array_pattern] = STATE(5633),
- [sym_glimmer_template] = STATE(1634),
- [sym_jsx_element] = STATE(1634),
- [sym_jsx_opening_element] = STATE(3026),
- [sym_jsx_self_closing_element] = STATE(1634),
- [sym_class] = STATE(1650),
- [sym_function_expression] = STATE(1650),
- [sym_generator_function] = STATE(1650),
- [sym_arrow_function] = STATE(1650),
- [sym__call_signature] = STATE(5828),
- [sym_call_expression] = STATE(1650),
- [sym_new_expression] = STATE(1634),
- [sym_await_expression] = STATE(1634),
- [sym_member_expression] = STATE(1251),
- [sym_subscript_expression] = STATE(1251),
- [sym_assignment_expression] = STATE(1634),
- [sym__augmented_assignment_lhs] = STATE(2900),
- [sym_augmented_assignment_expression] = STATE(1634),
- [sym__destructuring_pattern] = STATE(5633),
- [sym_ternary_expression] = STATE(1634),
- [sym_binary_expression] = STATE(1634),
- [sym_unary_expression] = STATE(1634),
- [sym_update_expression] = STATE(1634),
- [sym_string] = STATE(1650),
- [sym_template_string] = STATE(1650),
- [sym_regex] = STATE(1650),
- [sym_meta_property] = STATE(1650),
- [sym_decorator] = STATE(1244),
- [sym_formal_parameters] = STATE(3742),
- [sym_non_null_expression] = STATE(1251),
- [sym_as_expression] = STATE(1634),
- [sym_satisfies_expression] = STATE(1634),
- [sym_instantiation_expression] = STATE(1634),
- [sym_internal_module] = STATE(1634),
- [sym__type_query_member_expression] = STATE(2782),
- [sym__type_query_subscript_expression] = STATE(2783),
- [sym__type_query_call_expression] = STATE(2833),
- [sym__type_query_instantiation_expression] = STATE(2905),
- [sym_type_parameters] = STATE(5349),
- [aux_sym_export_statement_repeat1] = STATE(4458),
- [sym_identifier] = ACTIONS(2007),
- [anon_sym_export] = ACTIONS(1044),
- [anon_sym_type] = ACTIONS(1044),
- [anon_sym_namespace] = ACTIONS(1046),
- [anon_sym_LBRACE] = ACTIONS(813),
- [anon_sym_typeof] = ACTIONS(650),
- [anon_sym_import] = ACTIONS(133),
- [anon_sym_let] = ACTIONS(1044),
- [anon_sym_BANG] = ACTIONS(622),
- [anon_sym_LPAREN] = ACTIONS(815),
- [anon_sym_await] = ACTIONS(624),
- [anon_sym_yield] = ACTIONS(626),
- [anon_sym_LBRACK] = ACTIONS(817),
- [sym_glimmer_opening_tag] = ACTIONS(148),
- [anon_sym_DQUOTE] = ACTIONS(150),
- [anon_sym_SQUOTE] = ACTIONS(152),
- [anon_sym_class] = ACTIONS(154),
- [anon_sym_async] = ACTIONS(1052),
- [anon_sym_function] = ACTIONS(158),
- [anon_sym_new] = ACTIONS(1436),
- [anon_sym_using] = ACTIONS(636),
- [anon_sym_PLUS] = ACTIONS(650),
- [anon_sym_DASH] = ACTIONS(650),
- [anon_sym_SLASH] = ACTIONS(646),
- [anon_sym_LT] = ACTIONS(181),
- [anon_sym_TILDE] = ACTIONS(622),
- [anon_sym_void] = ACTIONS(650),
- [anon_sym_delete] = ACTIONS(650),
- [anon_sym_PLUS_PLUS] = ACTIONS(652),
- [anon_sym_DASH_DASH] = ACTIONS(652),
- [sym_comment] = ACTIONS(5),
- [anon_sym_BQUOTE] = ACTIONS(825),
- [sym_number] = ACTIONS(787),
- [sym_private_property_identifier] = ACTIONS(654),
- [sym_this] = ACTIONS(1967),
- [sym_super] = ACTIONS(200),
- [sym_true] = ACTIONS(200),
- [sym_false] = ACTIONS(200),
- [sym_null] = ACTIONS(200),
- [sym_undefined] = ACTIONS(1438),
- [anon_sym_AT] = ACTIONS(99),
- [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_override] = 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_object] = ACTIONS(1044),
- [sym_html_comment] = ACTIONS(5),
- },
- [286] = {
- [sym_import] = STATE(3334),
- [sym_parenthesized_expression] = STATE(1251),
- [sym_expression] = STATE(1925),
- [sym_primary_expression] = STATE(1468),
- [sym_yield_expression] = STATE(1634),
- [sym_object] = STATE(1650),
- [sym_object_pattern] = STATE(3610),
- [sym_assignment_pattern] = STATE(5197),
- [sym_array] = STATE(1650),
- [sym_array_pattern] = STATE(3610),
- [sym_glimmer_template] = STATE(1634),
- [sym_jsx_element] = STATE(1634),
- [sym_jsx_opening_element] = STATE(3026),
- [sym_jsx_self_closing_element] = STATE(1634),
- [sym_class] = STATE(1650),
- [sym_function_expression] = STATE(1650),
- [sym_generator_function] = STATE(1650),
- [sym_arrow_function] = STATE(1650),
- [sym__call_signature] = STATE(5828),
- [sym_call_expression] = STATE(1650),
- [sym_new_expression] = STATE(1634),
- [sym_await_expression] = STATE(1634),
- [sym_member_expression] = STATE(1230),
- [sym_subscript_expression] = STATE(1230),
- [sym_assignment_expression] = STATE(1634),
- [sym__augmented_assignment_lhs] = STATE(2900),
- [sym_augmented_assignment_expression] = STATE(1634),
- [sym__destructuring_pattern] = STATE(3610),
- [sym_ternary_expression] = STATE(1634),
- [sym_binary_expression] = STATE(1634),
- [sym_unary_expression] = STATE(1634),
- [sym_update_expression] = STATE(1634),
- [sym_string] = STATE(1650),
- [sym_template_string] = STATE(1650),
- [sym_regex] = STATE(1650),
- [sym_meta_property] = STATE(1650),
- [sym_decorator] = STATE(1244),
- [sym_formal_parameters] = STATE(3742),
- [sym_pattern] = STATE(4675),
- [sym_rest_pattern] = STATE(3700),
- [sym_non_null_expression] = STATE(1230),
- [sym_as_expression] = STATE(1634),
- [sym_satisfies_expression] = STATE(1634),
- [sym_instantiation_expression] = STATE(1634),
- [sym_internal_module] = STATE(1634),
- [sym_type_parameters] = STATE(5349),
- [aux_sym_export_statement_repeat1] = STATE(4458),
- [sym_identifier] = ACTIONS(1618),
- [anon_sym_export] = ACTIONS(610),
- [anon_sym_type] = ACTIONS(610),
- [anon_sym_namespace] = ACTIONS(614),
- [anon_sym_LBRACE] = ACTIONS(845),
- [anon_sym_typeof] = ACTIONS(650),
- [anon_sym_import] = ACTIONS(133),
- [anon_sym_let] = ACTIONS(610),
- [anon_sym_BANG] = ACTIONS(622),
- [anon_sym_LPAREN] = ACTIONS(815),
- [anon_sym_await] = ACTIONS(624),
- [anon_sym_yield] = ACTIONS(626),
- [anon_sym_LBRACK] = ACTIONS(849),
- [sym_glimmer_opening_tag] = ACTIONS(148),
- [anon_sym_DQUOTE] = ACTIONS(150),
- [anon_sym_SQUOTE] = ACTIONS(152),
- [anon_sym_class] = ACTIONS(154),
- [anon_sym_async] = ACTIONS(632),
- [anon_sym_function] = ACTIONS(158),
- [anon_sym_new] = ACTIONS(1620),
- [anon_sym_using] = ACTIONS(636),
- [anon_sym_DOT_DOT_DOT] = ACTIONS(170),
- [anon_sym_PLUS] = ACTIONS(650),
- [anon_sym_DASH] = ACTIONS(650),
- [anon_sym_SLASH] = ACTIONS(646),
- [anon_sym_LT] = ACTIONS(181),
- [anon_sym_TILDE] = ACTIONS(622),
- [anon_sym_void] = ACTIONS(650),
- [anon_sym_delete] = ACTIONS(650),
- [anon_sym_PLUS_PLUS] = ACTIONS(652),
- [anon_sym_DASH_DASH] = ACTIONS(652),
- [sym_comment] = ACTIONS(5),
- [anon_sym_BQUOTE] = ACTIONS(825),
- [sym_number] = ACTIONS(787),
- [sym_private_property_identifier] = ACTIONS(654),
- [sym_this] = ACTIONS(200),
- [sym_super] = ACTIONS(200),
- [sym_true] = ACTIONS(200),
- [sym_false] = ACTIONS(200),
- [sym_null] = ACTIONS(200),
- [sym_undefined] = ACTIONS(1624),
- [anon_sym_AT] = ACTIONS(99),
- [anon_sym_static] = ACTIONS(610),
- [anon_sym_readonly] = ACTIONS(610),
- [anon_sym_get] = ACTIONS(610),
- [anon_sym_set] = ACTIONS(610),
- [anon_sym_declare] = ACTIONS(610),
- [anon_sym_public] = ACTIONS(610),
- [anon_sym_private] = ACTIONS(610),
- [anon_sym_protected] = ACTIONS(610),
- [anon_sym_override] = ACTIONS(610),
- [anon_sym_module] = ACTIONS(610),
- [anon_sym_any] = ACTIONS(610),
- [anon_sym_number] = ACTIONS(610),
- [anon_sym_boolean] = ACTIONS(610),
- [anon_sym_string] = ACTIONS(610),
- [anon_sym_symbol] = ACTIONS(610),
- [anon_sym_object] = ACTIONS(610),
- [sym_html_comment] = ACTIONS(5),
- },
- [287] = {
- [sym_import] = STATE(3254),
- [sym_parenthesized_expression] = STATE(1338),
- [sym_expression] = STATE(2040),
- [sym_primary_expression] = STATE(1946),
- [sym_yield_expression] = STATE(2234),
- [sym_object] = STATE(2310),
- [sym_object_pattern] = STATE(5571),
- [sym_array] = STATE(2310),
- [sym_array_pattern] = STATE(5571),
- [sym_glimmer_template] = STATE(2234),
- [sym_jsx_element] = STATE(2234),
- [sym_jsx_opening_element] = STATE(3051),
- [sym_jsx_self_closing_element] = STATE(2234),
- [sym_class] = STATE(2310),
- [sym_function_expression] = STATE(2310),
- [sym_generator_function] = STATE(2310),
- [sym_arrow_function] = STATE(2310),
- [sym__call_signature] = STATE(5569),
- [sym_call_expression] = STATE(2310),
- [sym_new_expression] = STATE(2234),
- [sym_await_expression] = STATE(2234),
- [sym_member_expression] = STATE(1338),
- [sym_subscript_expression] = STATE(1338),
- [sym_assignment_expression] = STATE(2234),
- [sym__augmented_assignment_lhs] = STATE(2899),
- [sym_augmented_assignment_expression] = STATE(2234),
- [sym__destructuring_pattern] = STATE(5571),
- [sym_ternary_expression] = STATE(2234),
- [sym_binary_expression] = STATE(2234),
- [sym_unary_expression] = STATE(2234),
- [sym_update_expression] = STATE(2234),
- [sym_string] = STATE(2310),
- [sym_template_string] = STATE(2310),
- [sym_regex] = STATE(2310),
- [sym_meta_property] = STATE(2310),
- [sym_decorator] = STATE(1244),
- [sym_formal_parameters] = STATE(3742),
- [sym_non_null_expression] = STATE(1338),
- [sym_as_expression] = STATE(2234),
- [sym_satisfies_expression] = STATE(2234),
- [sym_instantiation_expression] = STATE(2234),
- [sym_internal_module] = STATE(2234),
- [sym__type_query_member_expression] = STATE(2782),
- [sym__type_query_subscript_expression] = STATE(2783),
- [sym__type_query_call_expression] = STATE(2833),
- [sym__type_query_instantiation_expression] = STATE(2905),
- [sym_type_parameters] = STATE(5349),
- [aux_sym_export_statement_repeat1] = STATE(4499),
- [sym_identifier] = ACTIONS(2009),
- [anon_sym_export] = ACTIONS(1152),
- [anon_sym_type] = ACTIONS(1152),
- [anon_sym_namespace] = ACTIONS(1154),
- [anon_sym_LBRACE] = ACTIONS(700),
- [anon_sym_typeof] = ACTIONS(1180),
- [anon_sym_import] = ACTIONS(133),
- [anon_sym_let] = ACTIONS(1152),
- [anon_sym_BANG] = ACTIONS(1160),
- [anon_sym_LPAREN] = ACTIONS(41),
- [anon_sym_await] = ACTIONS(1164),
- [anon_sym_yield] = ACTIONS(1166),
- [anon_sym_LBRACK] = ACTIONS(65),
- [sym_glimmer_opening_tag] = ACTIONS(67),
- [anon_sym_DQUOTE] = ACTIONS(69),
- [anon_sym_SQUOTE] = ACTIONS(71),
- [anon_sym_class] = ACTIONS(709),
- [anon_sym_async] = ACTIONS(1170),
- [anon_sym_function] = ACTIONS(713),
- [anon_sym_new] = ACTIONS(1458),
- [anon_sym_using] = ACTIONS(1174),
- [anon_sym_PLUS] = ACTIONS(1180),
- [anon_sym_DASH] = ACTIONS(1180),
- [anon_sym_SLASH] = ACTIONS(83),
- [anon_sym_LT] = ACTIONS(85),
- [anon_sym_TILDE] = ACTIONS(1160),
- [anon_sym_void] = ACTIONS(1180),
- [anon_sym_delete] = ACTIONS(1180),
- [anon_sym_PLUS_PLUS] = ACTIONS(1182),
- [anon_sym_DASH_DASH] = ACTIONS(1182),
- [sym_comment] = ACTIONS(5),
- [anon_sym_BQUOTE] = ACTIONS(89),
- [sym_number] = ACTIONS(91),
- [sym_private_property_identifier] = ACTIONS(1188),
- [sym_this] = ACTIONS(1981),
- [sym_super] = ACTIONS(95),
- [sym_true] = ACTIONS(95),
- [sym_false] = ACTIONS(95),
- [sym_null] = ACTIONS(95),
- [sym_undefined] = ACTIONS(1460),
- [anon_sym_AT] = ACTIONS(99),
- [anon_sym_static] = ACTIONS(1152),
- [anon_sym_readonly] = ACTIONS(1152),
- [anon_sym_get] = ACTIONS(1152),
- [anon_sym_set] = ACTIONS(1152),
- [anon_sym_declare] = ACTIONS(1152),
- [anon_sym_public] = ACTIONS(1152),
- [anon_sym_private] = ACTIONS(1152),
- [anon_sym_protected] = ACTIONS(1152),
- [anon_sym_override] = ACTIONS(1152),
- [anon_sym_module] = ACTIONS(1152),
- [anon_sym_any] = ACTIONS(1152),
- [anon_sym_number] = ACTIONS(1152),
- [anon_sym_boolean] = ACTIONS(1152),
- [anon_sym_string] = ACTIONS(1152),
- [anon_sym_symbol] = ACTIONS(1152),
- [anon_sym_object] = ACTIONS(1152),
- [sym_html_comment] = ACTIONS(5),
- },
- [288] = {
- [sym_import] = STATE(3306),
- [sym_expression_statement] = STATE(300),
- [sym_empty_statement] = STATE(300),
- [sym_parenthesized_expression] = STATE(1294),
- [sym_expression] = STATE(1705),
- [sym_primary_expression] = STATE(1946),
- [sym_yield_expression] = STATE(2234),
- [sym_object] = STATE(2310),
- [sym_object_pattern] = STATE(5667),
- [sym_array] = STATE(2310),
- [sym_array_pattern] = STATE(5667),
- [sym_glimmer_template] = STATE(2234),
- [sym_jsx_element] = STATE(2234),
- [sym_jsx_opening_element] = STATE(3051),
- [sym_jsx_self_closing_element] = STATE(2234),
- [sym_class] = STATE(2310),
- [sym_function_expression] = STATE(2310),
- [sym_generator_function] = STATE(2310),
- [sym_arrow_function] = STATE(2310),
- [sym__call_signature] = STATE(5809),
- [sym_call_expression] = STATE(2310),
- [sym_new_expression] = STATE(2234),
- [sym_await_expression] = STATE(2234),
- [sym_member_expression] = STATE(1294),
- [sym_subscript_expression] = STATE(1294),
- [sym_assignment_expression] = STATE(2234),
- [sym__augmented_assignment_lhs] = STATE(2875),
- [sym_augmented_assignment_expression] = STATE(2234),
- [sym__destructuring_pattern] = STATE(5667),
- [sym_ternary_expression] = STATE(2234),
- [sym_binary_expression] = STATE(2234),
- [sym_unary_expression] = STATE(2234),
- [sym_update_expression] = STATE(2234),
- [sym_sequence_expression] = STATE(5482),
- [sym_string] = STATE(2310),
- [sym_template_string] = STATE(2310),
- [sym_regex] = STATE(2310),
- [sym_meta_property] = STATE(2310),
- [sym_decorator] = STATE(1244),
- [sym_formal_parameters] = STATE(3742),
- [sym_non_null_expression] = STATE(1294),
- [sym_as_expression] = STATE(2234),
- [sym_satisfies_expression] = STATE(2234),
- [sym_instantiation_expression] = STATE(2234),
- [sym_internal_module] = STATE(2234),
- [sym_type_parameters] = STATE(5349),
- [aux_sym_export_statement_repeat1] = STATE(4499),
- [sym_identifier] = ACTIONS(1440),
- [anon_sym_export] = ACTIONS(1372),
- [anon_sym_type] = ACTIONS(1372),
- [anon_sym_namespace] = ACTIONS(1374),
- [anon_sym_LBRACE] = ACTIONS(700),
- [anon_sym_typeof] = ACTIONS(21),
- [anon_sym_import] = ACTIONS(133),
- [anon_sym_let] = ACTIONS(1372),
- [anon_sym_BANG] = ACTIONS(33),
- [anon_sym_LPAREN] = ACTIONS(41),
- [anon_sym_await] = ACTIONS(43),
- [anon_sym_SEMI] = ACTIONS(61),
- [anon_sym_yield] = ACTIONS(63),
- [anon_sym_LBRACK] = ACTIONS(65),
- [sym_glimmer_opening_tag] = ACTIONS(67),
- [anon_sym_DQUOTE] = ACTIONS(69),
- [anon_sym_SQUOTE] = ACTIONS(71),
- [anon_sym_class] = ACTIONS(709),
- [anon_sym_async] = ACTIONS(1378),
- [anon_sym_function] = ACTIONS(713),
- [anon_sym_new] = ACTIONS(1444),
- [anon_sym_using] = ACTIONS(81),
- [anon_sym_PLUS] = ACTIONS(21),
- [anon_sym_DASH] = ACTIONS(21),
- [anon_sym_SLASH] = ACTIONS(83),
- [anon_sym_LT] = ACTIONS(85),
- [anon_sym_TILDE] = ACTIONS(33),
- [anon_sym_void] = ACTIONS(21),
- [anon_sym_delete] = ACTIONS(21),
- [anon_sym_PLUS_PLUS] = ACTIONS(87),
- [anon_sym_DASH_DASH] = ACTIONS(87),
- [sym_comment] = ACTIONS(5),
- [anon_sym_BQUOTE] = ACTIONS(89),
- [sym_number] = ACTIONS(91),
- [sym_private_property_identifier] = ACTIONS(93),
- [sym_this] = ACTIONS(95),
- [sym_super] = ACTIONS(95),
- [sym_true] = ACTIONS(95),
- [sym_false] = ACTIONS(95),
- [sym_null] = ACTIONS(95),
- [sym_undefined] = ACTIONS(97),
- [anon_sym_AT] = ACTIONS(99),
- [anon_sym_static] = ACTIONS(1372),
- [anon_sym_readonly] = ACTIONS(1372),
- [anon_sym_get] = ACTIONS(1372),
- [anon_sym_set] = ACTIONS(1372),
- [anon_sym_declare] = ACTIONS(1372),
- [anon_sym_public] = ACTIONS(1372),
- [anon_sym_private] = ACTIONS(1372),
- [anon_sym_protected] = ACTIONS(1372),
- [anon_sym_override] = ACTIONS(1372),
- [anon_sym_module] = ACTIONS(1372),
- [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_object] = ACTIONS(1372),
- [sym_html_comment] = ACTIONS(5),
- },
- [289] = {
- [sym_import] = STATE(3306),
- [sym_expression_statement] = STATE(297),
- [sym_empty_statement] = STATE(297),
- [sym_parenthesized_expression] = STATE(1294),
- [sym_expression] = STATE(1705),
- [sym_primary_expression] = STATE(1946),
- [sym_yield_expression] = STATE(2234),
- [sym_object] = STATE(2310),
- [sym_object_pattern] = STATE(5667),
- [sym_array] = STATE(2310),
- [sym_array_pattern] = STATE(5667),
- [sym_glimmer_template] = STATE(2234),
- [sym_jsx_element] = STATE(2234),
- [sym_jsx_opening_element] = STATE(3051),
- [sym_jsx_self_closing_element] = STATE(2234),
- [sym_class] = STATE(2310),
- [sym_function_expression] = STATE(2310),
- [sym_generator_function] = STATE(2310),
- [sym_arrow_function] = STATE(2310),
- [sym__call_signature] = STATE(5809),
- [sym_call_expression] = STATE(2310),
- [sym_new_expression] = STATE(2234),
- [sym_await_expression] = STATE(2234),
- [sym_member_expression] = STATE(1294),
- [sym_subscript_expression] = STATE(1294),
- [sym_assignment_expression] = STATE(2234),
- [sym__augmented_assignment_lhs] = STATE(2875),
- [sym_augmented_assignment_expression] = STATE(2234),
- [sym__destructuring_pattern] = STATE(5667),
- [sym_ternary_expression] = STATE(2234),
- [sym_binary_expression] = STATE(2234),
- [sym_unary_expression] = STATE(2234),
- [sym_update_expression] = STATE(2234),
- [sym_sequence_expression] = STATE(5482),
- [sym_string] = STATE(2310),
- [sym_template_string] = STATE(2310),
- [sym_regex] = STATE(2310),
- [sym_meta_property] = STATE(2310),
- [sym_decorator] = STATE(1244),
- [sym_formal_parameters] = STATE(3742),
- [sym_non_null_expression] = STATE(1294),
- [sym_as_expression] = STATE(2234),
- [sym_satisfies_expression] = STATE(2234),
- [sym_instantiation_expression] = STATE(2234),
- [sym_internal_module] = STATE(2234),
- [sym_type_parameters] = STATE(5349),
- [aux_sym_export_statement_repeat1] = STATE(4499),
- [sym_identifier] = ACTIONS(1440),
- [anon_sym_export] = ACTIONS(1372),
- [anon_sym_type] = ACTIONS(1372),
- [anon_sym_namespace] = ACTIONS(1374),
- [anon_sym_LBRACE] = ACTIONS(700),
- [anon_sym_typeof] = ACTIONS(21),
- [anon_sym_import] = ACTIONS(133),
- [anon_sym_let] = ACTIONS(1372),
- [anon_sym_BANG] = ACTIONS(33),
- [anon_sym_LPAREN] = ACTIONS(41),
- [anon_sym_await] = ACTIONS(43),
- [anon_sym_SEMI] = ACTIONS(61),
- [anon_sym_yield] = ACTIONS(63),
- [anon_sym_LBRACK] = ACTIONS(65),
- [sym_glimmer_opening_tag] = ACTIONS(67),
- [anon_sym_DQUOTE] = ACTIONS(69),
- [anon_sym_SQUOTE] = ACTIONS(71),
- [anon_sym_class] = ACTIONS(709),
- [anon_sym_async] = ACTIONS(1378),
- [anon_sym_function] = ACTIONS(713),
- [anon_sym_new] = ACTIONS(1444),
- [anon_sym_using] = ACTIONS(81),
- [anon_sym_PLUS] = ACTIONS(21),
- [anon_sym_DASH] = ACTIONS(21),
- [anon_sym_SLASH] = ACTIONS(83),
- [anon_sym_LT] = ACTIONS(85),
- [anon_sym_TILDE] = ACTIONS(33),
- [anon_sym_void] = ACTIONS(21),
- [anon_sym_delete] = ACTIONS(21),
- [anon_sym_PLUS_PLUS] = ACTIONS(87),
- [anon_sym_DASH_DASH] = ACTIONS(87),
- [sym_comment] = ACTIONS(5),
- [anon_sym_BQUOTE] = ACTIONS(89),
- [sym_number] = ACTIONS(91),
- [sym_private_property_identifier] = ACTIONS(93),
- [sym_this] = ACTIONS(95),
- [sym_super] = ACTIONS(95),
- [sym_true] = ACTIONS(95),
- [sym_false] = ACTIONS(95),
- [sym_null] = ACTIONS(95),
- [sym_undefined] = ACTIONS(97),
- [anon_sym_AT] = ACTIONS(99),
- [anon_sym_static] = ACTIONS(1372),
- [anon_sym_readonly] = ACTIONS(1372),
- [anon_sym_get] = ACTIONS(1372),
- [anon_sym_set] = ACTIONS(1372),
- [anon_sym_declare] = ACTIONS(1372),
- [anon_sym_public] = ACTIONS(1372),
- [anon_sym_private] = ACTIONS(1372),
- [anon_sym_protected] = ACTIONS(1372),
- [anon_sym_override] = ACTIONS(1372),
- [anon_sym_module] = ACTIONS(1372),
- [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_object] = ACTIONS(1372),
- [sym_html_comment] = ACTIONS(5),
- },
- [290] = {
- [sym_import] = STATE(3411),
- [sym_parenthesized_expression] = STATE(1251),
- [sym_expression] = STATE(1479),
- [sym_primary_expression] = STATE(1468),
- [sym_yield_expression] = STATE(1634),
- [sym_object] = STATE(1650),
- [sym_object_pattern] = STATE(5633),
- [sym_array] = STATE(1650),
- [sym_array_pattern] = STATE(5633),
- [sym_glimmer_template] = STATE(1634),
- [sym_jsx_element] = STATE(1634),
- [sym_jsx_opening_element] = STATE(3026),
- [sym_jsx_self_closing_element] = STATE(1634),
- [sym_class] = STATE(1650),
- [sym_function_expression] = STATE(1650),
- [sym_generator_function] = STATE(1650),
- [sym_arrow_function] = STATE(1650),
- [sym__call_signature] = STATE(5828),
- [sym_call_expression] = STATE(1650),
- [sym_new_expression] = STATE(1634),
- [sym_await_expression] = STATE(1634),
- [sym_member_expression] = STATE(1251),
- [sym_subscript_expression] = STATE(1251),
- [sym_assignment_expression] = STATE(1634),
- [sym__augmented_assignment_lhs] = STATE(2900),
- [sym_augmented_assignment_expression] = STATE(1634),
- [sym__destructuring_pattern] = STATE(5633),
- [sym_ternary_expression] = STATE(1634),
- [sym_binary_expression] = STATE(1634),
- [sym_unary_expression] = STATE(1634),
- [sym_update_expression] = STATE(1634),
- [sym_string] = STATE(1650),
- [sym_template_string] = STATE(1650),
- [sym_regex] = STATE(1650),
- [sym_meta_property] = STATE(1650),
- [sym_decorator] = STATE(1244),
- [sym_formal_parameters] = STATE(3742),
- [sym_non_null_expression] = STATE(1251),
- [sym_as_expression] = STATE(1634),
- [sym_satisfies_expression] = STATE(1634),
- [sym_instantiation_expression] = STATE(1634),
- [sym_internal_module] = STATE(1634),
- [sym__type_query_member_expression] = STATE(2782),
- [sym__type_query_subscript_expression] = STATE(2783),
- [sym__type_query_call_expression] = STATE(2833),
- [sym__type_query_instantiation_expression] = STATE(2905),
- [sym_type_parameters] = STATE(5349),
- [aux_sym_export_statement_repeat1] = STATE(4458),
- [sym_identifier] = ACTIONS(2011),
- [anon_sym_export] = ACTIONS(1044),
- [anon_sym_type] = ACTIONS(1044),
- [anon_sym_namespace] = ACTIONS(1046),
- [anon_sym_LBRACE] = ACTIONS(813),
- [anon_sym_typeof] = ACTIONS(650),
- [anon_sym_import] = ACTIONS(133),
- [anon_sym_let] = ACTIONS(1044),
- [anon_sym_BANG] = ACTIONS(622),
- [anon_sym_LPAREN] = ACTIONS(815),
- [anon_sym_await] = ACTIONS(624),
- [anon_sym_yield] = ACTIONS(626),
- [anon_sym_LBRACK] = ACTIONS(817),
- [sym_glimmer_opening_tag] = ACTIONS(148),
- [anon_sym_DQUOTE] = ACTIONS(150),
- [anon_sym_SQUOTE] = ACTIONS(152),
- [anon_sym_class] = ACTIONS(154),
- [anon_sym_async] = ACTIONS(1052),
- [anon_sym_function] = ACTIONS(158),
- [anon_sym_new] = ACTIONS(1436),
- [anon_sym_using] = ACTIONS(636),
- [anon_sym_PLUS] = ACTIONS(650),
- [anon_sym_DASH] = ACTIONS(650),
- [anon_sym_SLASH] = ACTIONS(646),
- [anon_sym_LT] = ACTIONS(181),
- [anon_sym_TILDE] = ACTIONS(622),
- [anon_sym_void] = ACTIONS(650),
- [anon_sym_delete] = ACTIONS(650),
- [anon_sym_PLUS_PLUS] = ACTIONS(652),
- [anon_sym_DASH_DASH] = ACTIONS(652),
- [sym_comment] = ACTIONS(5),
- [anon_sym_BQUOTE] = ACTIONS(825),
- [sym_number] = ACTIONS(787),
- [sym_private_property_identifier] = ACTIONS(654),
- [sym_this] = ACTIONS(1987),
- [sym_super] = ACTIONS(200),
- [sym_true] = ACTIONS(200),
- [sym_false] = ACTIONS(200),
- [sym_null] = ACTIONS(200),
- [sym_undefined] = ACTIONS(1438),
- [anon_sym_AT] = ACTIONS(99),
- [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_override] = 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_object] = ACTIONS(1044),
- [sym_html_comment] = ACTIONS(5),
- },
- [291] = {
- [sym_import] = STATE(3334),
- [sym_parenthesized_expression] = STATE(1251),
- [sym_expression] = STATE(1807),
- [sym_primary_expression] = STATE(1468),
- [sym_yield_expression] = STATE(1634),
- [sym_object] = STATE(1650),
- [sym_object_pattern] = STATE(5633),
- [sym_array] = STATE(1650),
- [sym_array_pattern] = STATE(5633),
- [sym_glimmer_template] = STATE(1634),
- [sym_jsx_element] = STATE(1634),
- [sym_jsx_opening_element] = STATE(3026),
- [sym_jsx_self_closing_element] = STATE(1634),
- [sym_class] = STATE(1650),
- [sym_function_expression] = STATE(1650),
- [sym_generator_function] = STATE(1650),
- [sym_arrow_function] = STATE(1650),
- [sym__call_signature] = STATE(5828),
- [sym_call_expression] = STATE(1650),
- [sym_new_expression] = STATE(1634),
- [sym_await_expression] = STATE(1634),
- [sym_member_expression] = STATE(1251),
- [sym_subscript_expression] = STATE(1251),
- [sym_assignment_expression] = STATE(1634),
- [sym__augmented_assignment_lhs] = STATE(2900),
- [sym_augmented_assignment_expression] = STATE(1634),
- [sym__destructuring_pattern] = STATE(5633),
- [sym_spread_element] = STATE(5785),
- [sym_ternary_expression] = STATE(1634),
- [sym_binary_expression] = STATE(1634),
- [sym_unary_expression] = STATE(1634),
- [sym_update_expression] = STATE(1634),
- [sym_sequence_expression] = STATE(5785),
- [sym_string] = STATE(1650),
- [sym_template_string] = STATE(1650),
- [sym_regex] = STATE(1650),
- [sym_meta_property] = STATE(1650),
- [sym_decorator] = STATE(1244),
- [sym_formal_parameters] = STATE(3742),
- [sym_non_null_expression] = STATE(1251),
- [sym_as_expression] = STATE(1634),
- [sym_satisfies_expression] = STATE(1634),
- [sym_instantiation_expression] = STATE(1634),
- [sym_internal_module] = STATE(1634),
- [sym_type_parameters] = STATE(5349),
- [aux_sym_export_statement_repeat1] = STATE(4458),
- [sym_identifier] = ACTIONS(1428),
- [anon_sym_export] = ACTIONS(1044),
- [anon_sym_type] = ACTIONS(1044),
- [anon_sym_namespace] = ACTIONS(1046),
- [anon_sym_LBRACE] = ACTIONS(813),
- [anon_sym_RBRACE] = ACTIONS(2013),
- [anon_sym_typeof] = ACTIONS(650),
- [anon_sym_import] = ACTIONS(133),
- [anon_sym_let] = ACTIONS(1044),
- [anon_sym_BANG] = ACTIONS(622),
- [anon_sym_LPAREN] = ACTIONS(815),
- [anon_sym_await] = ACTIONS(624),
- [anon_sym_yield] = ACTIONS(626),
- [anon_sym_LBRACK] = ACTIONS(817),
- [sym_glimmer_opening_tag] = ACTIONS(148),
- [anon_sym_DQUOTE] = ACTIONS(150),
- [anon_sym_SQUOTE] = ACTIONS(152),
- [anon_sym_class] = ACTIONS(154),
- [anon_sym_async] = ACTIONS(1052),
- [anon_sym_function] = ACTIONS(158),
- [anon_sym_new] = ACTIONS(1436),
- [anon_sym_using] = ACTIONS(636),
- [anon_sym_DOT_DOT_DOT] = ACTIONS(1975),
- [anon_sym_PLUS] = ACTIONS(650),
- [anon_sym_DASH] = ACTIONS(650),
- [anon_sym_SLASH] = ACTIONS(646),
- [anon_sym_LT] = ACTIONS(181),
- [anon_sym_TILDE] = ACTIONS(622),
- [anon_sym_void] = ACTIONS(650),
- [anon_sym_delete] = ACTIONS(650),
- [anon_sym_PLUS_PLUS] = ACTIONS(652),
- [anon_sym_DASH_DASH] = ACTIONS(652),
- [sym_comment] = ACTIONS(5),
- [anon_sym_BQUOTE] = ACTIONS(825),
- [sym_number] = ACTIONS(787),
- [sym_private_property_identifier] = ACTIONS(654),
- [sym_this] = ACTIONS(200),
- [sym_super] = ACTIONS(200),
- [sym_true] = ACTIONS(200),
- [sym_false] = ACTIONS(200),
- [sym_null] = ACTIONS(200),
- [sym_undefined] = ACTIONS(1438),
- [anon_sym_AT] = ACTIONS(99),
- [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_override] = 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_object] = ACTIONS(1044),
- [sym_html_comment] = ACTIONS(5),
- },
- [292] = {
- [sym_import] = STATE(3334),
- [sym_parenthesized_expression] = STATE(1179),
- [sym_expression] = STATE(2415),
- [sym_primary_expression] = STATE(1468),
- [sym_yield_expression] = STATE(1634),
- [sym_object] = STATE(1650),
- [sym_object_pattern] = STATE(3588),
- [sym_array] = STATE(1650),
- [sym_array_pattern] = STATE(3588),
- [sym_glimmer_template] = STATE(1634),
- [sym_jsx_element] = STATE(1634),
- [sym_jsx_opening_element] = STATE(3026),
- [sym_jsx_self_closing_element] = STATE(1634),
- [sym_class] = STATE(1650),
- [sym_function_expression] = STATE(1650),
- [sym_generator_function] = STATE(1650),
- [sym_arrow_function] = STATE(1650),
- [sym__call_signature] = STATE(5619),
- [sym_call_expression] = STATE(1650),
- [sym_new_expression] = STATE(1634),
- [sym_await_expression] = STATE(1634),
- [sym_member_expression] = STATE(1221),
- [sym_subscript_expression] = STATE(1221),
- [sym_assignment_expression] = STATE(1634),
- [sym__augmented_assignment_lhs] = STATE(2878),
- [sym_augmented_assignment_expression] = STATE(1634),
- [sym__destructuring_pattern] = STATE(3588),
- [sym_ternary_expression] = STATE(1634),
- [sym_binary_expression] = STATE(1634),
- [sym_unary_expression] = STATE(1634),
- [sym_update_expression] = STATE(1634),
- [sym_string] = STATE(1650),
- [sym_template_string] = STATE(1650),
- [sym_regex] = STATE(1650),
- [sym_meta_property] = STATE(1650),
- [sym_decorator] = STATE(1244),
- [sym_formal_parameters] = STATE(3742),
- [sym_pattern] = STATE(4153),
- [sym_rest_pattern] = STATE(3700),
- [sym_non_null_expression] = STATE(1221),
- [sym_as_expression] = STATE(1634),
- [sym_satisfies_expression] = STATE(1634),
- [sym_instantiation_expression] = STATE(1634),
- [sym_internal_module] = STATE(1634),
- [sym_type_parameters] = STATE(5349),
- [aux_sym_export_statement_repeat1] = STATE(4458),
- [sym_identifier] = ACTIONS(769),
- [anon_sym_export] = ACTIONS(115),
- [anon_sym_type] = ACTIONS(115),
- [anon_sym_namespace] = ACTIONS(124),
- [anon_sym_LBRACE] = ACTIONS(771),
- [anon_sym_typeof] = ACTIONS(187),
- [anon_sym_import] = ACTIONS(133),
- [anon_sym_let] = ACTIONS(115),
- [anon_sym_BANG] = ACTIONS(183),
- [anon_sym_LPAREN] = ACTIONS(815),
- [anon_sym_await] = ACTIONS(142),
- [anon_sym_yield] = ACTIONS(144),
- [anon_sym_LBRACK] = ACTIONS(1630),
- [sym_glimmer_opening_tag] = ACTIONS(148),
- [anon_sym_DQUOTE] = ACTIONS(150),
- [anon_sym_SQUOTE] = ACTIONS(152),
- [anon_sym_class] = ACTIONS(154),
- [anon_sym_async] = ACTIONS(156),
- [anon_sym_function] = ACTIONS(158),
- [anon_sym_new] = ACTIONS(779),
- [anon_sym_using] = ACTIONS(166),
- [anon_sym_DOT_DOT_DOT] = ACTIONS(170),
- [anon_sym_PLUS] = ACTIONS(187),
- [anon_sym_DASH] = ACTIONS(187),
- [anon_sym_SLASH] = ACTIONS(646),
- [anon_sym_LT] = ACTIONS(181),
- [anon_sym_TILDE] = ACTIONS(183),
- [anon_sym_void] = ACTIONS(187),
- [anon_sym_delete] = ACTIONS(187),
- [anon_sym_PLUS_PLUS] = ACTIONS(719),
- [anon_sym_DASH_DASH] = ACTIONS(719),
- [sym_comment] = ACTIONS(5),
- [anon_sym_BQUOTE] = ACTIONS(825),
- [sym_number] = ACTIONS(787),
- [sym_private_property_identifier] = ACTIONS(196),
- [sym_this] = ACTIONS(2015),
- [sym_super] = ACTIONS(200),
- [sym_true] = ACTIONS(200),
- [sym_false] = ACTIONS(200),
- [sym_null] = ACTIONS(200),
- [sym_undefined] = ACTIONS(791),
- [anon_sym_AT] = ACTIONS(99),
- [anon_sym_static] = ACTIONS(115),
- [anon_sym_readonly] = ACTIONS(2017),
- [anon_sym_get] = ACTIONS(115),
- [anon_sym_set] = ACTIONS(115),
- [anon_sym_declare] = ACTIONS(115),
- [anon_sym_public] = ACTIONS(115),
- [anon_sym_private] = ACTIONS(115),
- [anon_sym_protected] = ACTIONS(115),
- [anon_sym_override] = ACTIONS(115),
- [anon_sym_module] = ACTIONS(115),
- [anon_sym_any] = ACTIONS(115),
- [anon_sym_number] = ACTIONS(115),
- [anon_sym_boolean] = ACTIONS(115),
- [anon_sym_string] = ACTIONS(115),
- [anon_sym_symbol] = ACTIONS(115),
- [anon_sym_object] = ACTIONS(115),
- [sym_html_comment] = ACTIONS(5),
- },
- [293] = {
- [sym_import] = STATE(3334),
- [sym_parenthesized_expression] = STATE(1179),
- [sym_expression] = STATE(2415),
- [sym_primary_expression] = STATE(1468),
- [sym_yield_expression] = STATE(1634),
- [sym_object] = STATE(1650),
- [sym_object_pattern] = STATE(3588),
- [sym_array] = STATE(1650),
- [sym_array_pattern] = STATE(3588),
- [sym_glimmer_template] = STATE(1634),
- [sym_jsx_element] = STATE(1634),
- [sym_jsx_opening_element] = STATE(3026),
- [sym_jsx_self_closing_element] = STATE(1634),
- [sym_class] = STATE(1650),
- [sym_function_expression] = STATE(1650),
- [sym_generator_function] = STATE(1650),
- [sym_arrow_function] = STATE(1650),
- [sym__call_signature] = STATE(5619),
- [sym_call_expression] = STATE(1650),
- [sym_new_expression] = STATE(1634),
- [sym_await_expression] = STATE(1634),
- [sym_member_expression] = STATE(1221),
- [sym_subscript_expression] = STATE(1221),
- [sym_assignment_expression] = STATE(1634),
- [sym__augmented_assignment_lhs] = STATE(2878),
- [sym_augmented_assignment_expression] = STATE(1634),
- [sym__destructuring_pattern] = STATE(3588),
- [sym_ternary_expression] = STATE(1634),
- [sym_binary_expression] = STATE(1634),
- [sym_unary_expression] = STATE(1634),
- [sym_update_expression] = STATE(1634),
- [sym_string] = STATE(1650),
- [sym_template_string] = STATE(1650),
- [sym_regex] = STATE(1650),
- [sym_meta_property] = STATE(1650),
- [sym_decorator] = STATE(1244),
- [sym_formal_parameters] = STATE(3742),
- [sym_pattern] = STATE(4284),
- [sym_rest_pattern] = STATE(3700),
- [sym_non_null_expression] = STATE(1221),
- [sym_as_expression] = STATE(1634),
- [sym_satisfies_expression] = STATE(1634),
- [sym_instantiation_expression] = STATE(1634),
- [sym_internal_module] = STATE(1634),
- [sym_type_parameters] = STATE(5349),
- [aux_sym_export_statement_repeat1] = STATE(4458),
- [sym_identifier] = ACTIONS(769),
- [anon_sym_export] = ACTIONS(115),
- [anon_sym_type] = ACTIONS(115),
- [anon_sym_namespace] = ACTIONS(124),
- [anon_sym_LBRACE] = ACTIONS(771),
- [anon_sym_typeof] = ACTIONS(187),
- [anon_sym_import] = ACTIONS(133),
- [anon_sym_let] = ACTIONS(115),
- [anon_sym_BANG] = ACTIONS(183),
- [anon_sym_LPAREN] = ACTIONS(815),
- [anon_sym_await] = ACTIONS(142),
- [anon_sym_yield] = ACTIONS(144),
- [anon_sym_LBRACK] = ACTIONS(1630),
- [sym_glimmer_opening_tag] = ACTIONS(148),
- [anon_sym_DQUOTE] = ACTIONS(150),
- [anon_sym_SQUOTE] = ACTIONS(152),
- [anon_sym_class] = ACTIONS(154),
- [anon_sym_async] = ACTIONS(156),
- [anon_sym_function] = ACTIONS(158),
- [anon_sym_new] = ACTIONS(779),
- [anon_sym_using] = ACTIONS(166),
- [anon_sym_DOT_DOT_DOT] = ACTIONS(170),
- [anon_sym_PLUS] = ACTIONS(187),
- [anon_sym_DASH] = ACTIONS(187),
- [anon_sym_SLASH] = ACTIONS(646),
- [anon_sym_LT] = ACTIONS(181),
- [anon_sym_TILDE] = ACTIONS(183),
- [anon_sym_void] = ACTIONS(187),
- [anon_sym_delete] = ACTIONS(187),
- [anon_sym_PLUS_PLUS] = ACTIONS(719),
- [anon_sym_DASH_DASH] = ACTIONS(719),
- [sym_comment] = ACTIONS(5),
- [anon_sym_BQUOTE] = ACTIONS(825),
- [sym_number] = ACTIONS(787),
- [sym_private_property_identifier] = ACTIONS(196),
- [sym_this] = ACTIONS(2019),
- [sym_super] = ACTIONS(200),
- [sym_true] = ACTIONS(200),
- [sym_false] = ACTIONS(200),
- [sym_null] = ACTIONS(200),
- [sym_undefined] = ACTIONS(791),
- [anon_sym_AT] = ACTIONS(99),
- [anon_sym_static] = ACTIONS(115),
- [anon_sym_readonly] = ACTIONS(2021),
- [anon_sym_get] = ACTIONS(115),
- [anon_sym_set] = ACTIONS(115),
- [anon_sym_declare] = ACTIONS(115),
- [anon_sym_public] = ACTIONS(115),
- [anon_sym_private] = ACTIONS(115),
- [anon_sym_protected] = ACTIONS(115),
- [anon_sym_override] = ACTIONS(115),
- [anon_sym_module] = ACTIONS(115),
- [anon_sym_any] = ACTIONS(115),
- [anon_sym_number] = ACTIONS(115),
- [anon_sym_boolean] = ACTIONS(115),
- [anon_sym_string] = ACTIONS(115),
- [anon_sym_symbol] = ACTIONS(115),
- [anon_sym_object] = ACTIONS(115),
- [sym_html_comment] = ACTIONS(5),
- },
- [294] = {
- [sym_import] = STATE(3306),
- [sym_parenthesized_expression] = STATE(1294),
- [sym_expression] = STATE(1747),
- [sym_primary_expression] = STATE(1946),
- [sym_yield_expression] = STATE(2234),
- [sym_object] = STATE(2310),
- [sym_object_pattern] = STATE(5667),
- [sym_array] = STATE(2310),
- [sym_array_pattern] = STATE(5667),
- [sym_glimmer_template] = STATE(2234),
- [sym_jsx_element] = STATE(2234),
- [sym_jsx_opening_element] = STATE(3051),
- [sym_jsx_self_closing_element] = STATE(2234),
- [sym_class] = STATE(2310),
- [sym_function_expression] = STATE(2310),
- [sym_generator_function] = STATE(2310),
- [sym_arrow_function] = STATE(2310),
- [sym__call_signature] = STATE(5809),
- [sym_call_expression] = STATE(2310),
- [sym_new_expression] = STATE(2234),
- [sym_await_expression] = STATE(2234),
- [sym_member_expression] = STATE(1294),
- [sym_subscript_expression] = STATE(1294),
- [sym_assignment_expression] = STATE(2234),
- [sym__augmented_assignment_lhs] = STATE(2875),
- [sym_augmented_assignment_expression] = STATE(2234),
- [sym__destructuring_pattern] = STATE(5667),
- [sym_ternary_expression] = STATE(2234),
- [sym_binary_expression] = STATE(2234),
- [sym_unary_expression] = STATE(2234),
- [sym_update_expression] = STATE(2234),
- [sym_sequence_expression] = STATE(5385),
- [sym_string] = STATE(2310),
- [sym_template_string] = STATE(2310),
- [sym_regex] = STATE(2310),
- [sym_meta_property] = STATE(2310),
- [sym_decorator] = STATE(1244),
- [sym_formal_parameters] = STATE(3742),
- [sym_non_null_expression] = STATE(1294),
- [sym_as_expression] = STATE(2234),
- [sym_satisfies_expression] = STATE(2234),
- [sym_instantiation_expression] = STATE(2234),
- [sym_internal_module] = STATE(2234),
- [sym_type_parameters] = STATE(5349),
- [aux_sym_export_statement_repeat1] = STATE(4499),
- [sym_identifier] = ACTIONS(1440),
- [anon_sym_export] = ACTIONS(1372),
- [anon_sym_type] = ACTIONS(1372),
- [anon_sym_namespace] = ACTIONS(1374),
- [anon_sym_LBRACE] = ACTIONS(700),
- [anon_sym_typeof] = ACTIONS(21),
- [anon_sym_import] = ACTIONS(133),
- [anon_sym_let] = ACTIONS(1372),
- [anon_sym_BANG] = ACTIONS(33),
- [anon_sym_LPAREN] = ACTIONS(41),
- [anon_sym_await] = ACTIONS(43),
- [anon_sym_SEMI] = ACTIONS(2023),
- [anon_sym_yield] = ACTIONS(63),
- [anon_sym_LBRACK] = ACTIONS(65),
- [sym_glimmer_opening_tag] = ACTIONS(67),
- [anon_sym_DQUOTE] = ACTIONS(69),
- [anon_sym_SQUOTE] = ACTIONS(71),
- [anon_sym_class] = ACTIONS(709),
- [anon_sym_async] = ACTIONS(1378),
- [anon_sym_function] = ACTIONS(713),
- [anon_sym_new] = ACTIONS(1444),
- [anon_sym_using] = ACTIONS(81),
- [anon_sym_PLUS] = ACTIONS(21),
- [anon_sym_DASH] = ACTIONS(21),
- [anon_sym_SLASH] = ACTIONS(83),
- [anon_sym_LT] = ACTIONS(85),
- [anon_sym_TILDE] = ACTIONS(33),
- [anon_sym_void] = ACTIONS(21),
- [anon_sym_delete] = ACTIONS(21),
- [anon_sym_PLUS_PLUS] = ACTIONS(87),
- [anon_sym_DASH_DASH] = ACTIONS(87),
- [sym_comment] = ACTIONS(5),
- [anon_sym_BQUOTE] = ACTIONS(89),
- [sym_number] = ACTIONS(91),
- [sym_private_property_identifier] = ACTIONS(93),
- [sym_this] = ACTIONS(95),
- [sym_super] = ACTIONS(95),
- [sym_true] = ACTIONS(95),
- [sym_false] = ACTIONS(95),
- [sym_null] = ACTIONS(95),
- [sym_undefined] = ACTIONS(97),
- [anon_sym_AT] = ACTIONS(99),
- [anon_sym_static] = ACTIONS(1372),
- [anon_sym_readonly] = ACTIONS(1372),
- [anon_sym_get] = ACTIONS(1372),
- [anon_sym_set] = ACTIONS(1372),
- [anon_sym_declare] = ACTIONS(1372),
- [anon_sym_public] = ACTIONS(1372),
- [anon_sym_private] = ACTIONS(1372),
- [anon_sym_protected] = ACTIONS(1372),
- [anon_sym_override] = ACTIONS(1372),
- [anon_sym_module] = ACTIONS(1372),
- [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_object] = ACTIONS(1372),
- [sym__automatic_semicolon] = ACTIONS(2023),
- [sym_html_comment] = ACTIONS(5),
- },
- [295] = {
- [sym_import] = STATE(3334),
- [sym_parenthesized_expression] = STATE(1179),
- [sym_expression] = STATE(2415),
- [sym_primary_expression] = STATE(1468),
- [sym_yield_expression] = STATE(1634),
- [sym_object] = STATE(1650),
- [sym_object_pattern] = STATE(3588),
- [sym_array] = STATE(1650),
- [sym_array_pattern] = STATE(3588),
- [sym_glimmer_template] = STATE(1634),
- [sym_jsx_element] = STATE(1634),
- [sym_jsx_opening_element] = STATE(3026),
- [sym_jsx_self_closing_element] = STATE(1634),
- [sym_class] = STATE(1650),
- [sym_function_expression] = STATE(1650),
- [sym_generator_function] = STATE(1650),
- [sym_arrow_function] = STATE(1650),
- [sym__call_signature] = STATE(5619),
- [sym_call_expression] = STATE(1650),
- [sym_new_expression] = STATE(1634),
- [sym_await_expression] = STATE(1634),
- [sym_member_expression] = STATE(1221),
- [sym_subscript_expression] = STATE(1221),
- [sym_assignment_expression] = STATE(1634),
- [sym__augmented_assignment_lhs] = STATE(2878),
- [sym_augmented_assignment_expression] = STATE(1634),
- [sym__destructuring_pattern] = STATE(3588),
- [sym_ternary_expression] = STATE(1634),
- [sym_binary_expression] = STATE(1634),
- [sym_unary_expression] = STATE(1634),
- [sym_update_expression] = STATE(1634),
- [sym_string] = STATE(1650),
- [sym_template_string] = STATE(1650),
- [sym_regex] = STATE(1650),
- [sym_meta_property] = STATE(1650),
- [sym_decorator] = STATE(1244),
- [sym_formal_parameters] = STATE(3742),
- [sym_pattern] = STATE(4268),
- [sym_rest_pattern] = STATE(3700),
- [sym_non_null_expression] = STATE(1221),
- [sym_as_expression] = STATE(1634),
- [sym_satisfies_expression] = STATE(1634),
- [sym_instantiation_expression] = STATE(1634),
- [sym_internal_module] = STATE(1634),
- [sym_type_parameters] = STATE(5349),
- [aux_sym_export_statement_repeat1] = STATE(4458),
- [sym_identifier] = ACTIONS(769),
- [anon_sym_export] = ACTIONS(115),
- [anon_sym_type] = ACTIONS(115),
- [anon_sym_namespace] = ACTIONS(124),
- [anon_sym_LBRACE] = ACTIONS(771),
- [anon_sym_typeof] = ACTIONS(187),
- [anon_sym_import] = ACTIONS(133),
- [anon_sym_let] = ACTIONS(115),
- [anon_sym_BANG] = ACTIONS(183),
- [anon_sym_LPAREN] = ACTIONS(815),
- [anon_sym_await] = ACTIONS(142),
- [anon_sym_yield] = ACTIONS(144),
- [anon_sym_LBRACK] = ACTIONS(1630),
- [sym_glimmer_opening_tag] = ACTIONS(148),
- [anon_sym_DQUOTE] = ACTIONS(150),
- [anon_sym_SQUOTE] = ACTIONS(152),
- [anon_sym_class] = ACTIONS(154),
- [anon_sym_async] = ACTIONS(156),
- [anon_sym_function] = ACTIONS(158),
- [anon_sym_new] = ACTIONS(779),
- [anon_sym_using] = ACTIONS(166),
- [anon_sym_DOT_DOT_DOT] = ACTIONS(170),
- [anon_sym_PLUS] = ACTIONS(187),
- [anon_sym_DASH] = ACTIONS(187),
- [anon_sym_SLASH] = ACTIONS(646),
- [anon_sym_LT] = ACTIONS(181),
- [anon_sym_TILDE] = ACTIONS(183),
- [anon_sym_void] = ACTIONS(187),
- [anon_sym_delete] = ACTIONS(187),
- [anon_sym_PLUS_PLUS] = ACTIONS(719),
- [anon_sym_DASH_DASH] = ACTIONS(719),
- [sym_comment] = ACTIONS(5),
- [anon_sym_BQUOTE] = ACTIONS(825),
- [sym_number] = ACTIONS(787),
- [sym_private_property_identifier] = ACTIONS(196),
- [sym_this] = ACTIONS(803),
- [sym_super] = ACTIONS(200),
- [sym_true] = ACTIONS(200),
- [sym_false] = ACTIONS(200),
- [sym_null] = ACTIONS(200),
- [sym_undefined] = ACTIONS(791),
- [anon_sym_AT] = ACTIONS(99),
- [anon_sym_static] = ACTIONS(115),
- [anon_sym_readonly] = ACTIONS(2025),
- [anon_sym_get] = ACTIONS(115),
- [anon_sym_set] = ACTIONS(115),
- [anon_sym_declare] = ACTIONS(115),
- [anon_sym_public] = ACTIONS(115),
- [anon_sym_private] = ACTIONS(115),
- [anon_sym_protected] = ACTIONS(115),
- [anon_sym_override] = ACTIONS(115),
- [anon_sym_module] = ACTIONS(115),
- [anon_sym_any] = ACTIONS(115),
- [anon_sym_number] = ACTIONS(115),
- [anon_sym_boolean] = ACTIONS(115),
- [anon_sym_string] = ACTIONS(115),
- [anon_sym_symbol] = ACTIONS(115),
- [anon_sym_object] = ACTIONS(115),
- [sym_html_comment] = ACTIONS(5),
- },
- [296] = {
- [sym_import] = STATE(3334),
- [sym_parenthesized_expression] = STATE(1179),
- [sym_expression] = STATE(2415),
- [sym_primary_expression] = STATE(1468),
- [sym_yield_expression] = STATE(1634),
- [sym_object] = STATE(1650),
- [sym_object_pattern] = STATE(3588),
- [sym_array] = STATE(1650),
- [sym_array_pattern] = STATE(3588),
- [sym_glimmer_template] = STATE(1634),
- [sym_jsx_element] = STATE(1634),
- [sym_jsx_opening_element] = STATE(3026),
- [sym_jsx_self_closing_element] = STATE(1634),
- [sym_class] = STATE(1650),
- [sym_function_expression] = STATE(1650),
- [sym_generator_function] = STATE(1650),
- [sym_arrow_function] = STATE(1650),
- [sym__call_signature] = STATE(5619),
- [sym_call_expression] = STATE(1650),
- [sym_new_expression] = STATE(1634),
- [sym_await_expression] = STATE(1634),
- [sym_member_expression] = STATE(1221),
- [sym_subscript_expression] = STATE(1221),
- [sym_assignment_expression] = STATE(1634),
- [sym__augmented_assignment_lhs] = STATE(2878),
- [sym_augmented_assignment_expression] = STATE(1634),
- [sym__destructuring_pattern] = STATE(3588),
- [sym_ternary_expression] = STATE(1634),
- [sym_binary_expression] = STATE(1634),
- [sym_unary_expression] = STATE(1634),
- [sym_update_expression] = STATE(1634),
- [sym_string] = STATE(1650),
- [sym_template_string] = STATE(1650),
- [sym_regex] = STATE(1650),
- [sym_meta_property] = STATE(1650),
- [sym_decorator] = STATE(1244),
- [sym_formal_parameters] = STATE(3742),
- [sym_pattern] = STATE(4300),
- [sym_rest_pattern] = STATE(3700),
- [sym_non_null_expression] = STATE(1221),
- [sym_as_expression] = STATE(1634),
- [sym_satisfies_expression] = STATE(1634),
- [sym_instantiation_expression] = STATE(1634),
- [sym_internal_module] = STATE(1634),
- [sym_type_parameters] = STATE(5349),
- [aux_sym_export_statement_repeat1] = STATE(4458),
- [sym_identifier] = ACTIONS(769),
- [anon_sym_export] = ACTIONS(115),
- [anon_sym_type] = ACTIONS(115),
- [anon_sym_namespace] = ACTIONS(124),
- [anon_sym_LBRACE] = ACTIONS(771),
- [anon_sym_typeof] = ACTIONS(187),
- [anon_sym_import] = ACTIONS(133),
- [anon_sym_let] = ACTIONS(115),
- [anon_sym_BANG] = ACTIONS(183),
- [anon_sym_LPAREN] = ACTIONS(815),
- [anon_sym_await] = ACTIONS(142),
- [anon_sym_yield] = ACTIONS(144),
- [anon_sym_LBRACK] = ACTIONS(1630),
- [sym_glimmer_opening_tag] = ACTIONS(148),
- [anon_sym_DQUOTE] = ACTIONS(150),
- [anon_sym_SQUOTE] = ACTIONS(152),
- [anon_sym_class] = ACTIONS(154),
- [anon_sym_async] = ACTIONS(156),
- [anon_sym_function] = ACTIONS(158),
- [anon_sym_new] = ACTIONS(779),
- [anon_sym_using] = ACTIONS(166),
- [anon_sym_DOT_DOT_DOT] = ACTIONS(170),
- [anon_sym_PLUS] = ACTIONS(187),
- [anon_sym_DASH] = ACTIONS(187),
- [anon_sym_SLASH] = ACTIONS(646),
- [anon_sym_LT] = ACTIONS(181),
- [anon_sym_TILDE] = ACTIONS(183),
- [anon_sym_void] = ACTIONS(187),
- [anon_sym_delete] = ACTIONS(187),
- [anon_sym_PLUS_PLUS] = ACTIONS(719),
- [anon_sym_DASH_DASH] = ACTIONS(719),
- [sym_comment] = ACTIONS(5),
- [anon_sym_BQUOTE] = ACTIONS(825),
- [sym_number] = ACTIONS(787),
- [sym_private_property_identifier] = ACTIONS(196),
- [sym_this] = ACTIONS(801),
- [sym_super] = ACTIONS(200),
- [sym_true] = ACTIONS(200),
- [sym_false] = ACTIONS(200),
- [sym_null] = ACTIONS(200),
- [sym_undefined] = ACTIONS(791),
- [anon_sym_AT] = ACTIONS(99),
- [anon_sym_static] = ACTIONS(115),
- [anon_sym_readonly] = ACTIONS(1969),
- [anon_sym_get] = ACTIONS(115),
- [anon_sym_set] = ACTIONS(115),
- [anon_sym_declare] = ACTIONS(115),
- [anon_sym_public] = ACTIONS(115),
- [anon_sym_private] = ACTIONS(115),
- [anon_sym_protected] = ACTIONS(115),
- [anon_sym_override] = ACTIONS(115),
- [anon_sym_module] = ACTIONS(115),
- [anon_sym_any] = ACTIONS(115),
- [anon_sym_number] = ACTIONS(115),
- [anon_sym_boolean] = ACTIONS(115),
- [anon_sym_string] = ACTIONS(115),
- [anon_sym_symbol] = ACTIONS(115),
- [anon_sym_object] = ACTIONS(115),
- [sym_html_comment] = ACTIONS(5),
- },
- [297] = {
- [sym_import] = STATE(3334),
- [sym_parenthesized_expression] = STATE(1251),
- [sym_expression] = STATE(1882),
- [sym_primary_expression] = STATE(1468),
- [sym_yield_expression] = STATE(1634),
- [sym_object] = STATE(1650),
- [sym_object_pattern] = STATE(5633),
- [sym_array] = STATE(1650),
- [sym_array_pattern] = STATE(5633),
- [sym_glimmer_template] = STATE(1634),
- [sym_jsx_element] = STATE(1634),
- [sym_jsx_opening_element] = STATE(3026),
- [sym_jsx_self_closing_element] = STATE(1634),
- [sym_class] = STATE(1650),
- [sym_function_expression] = STATE(1650),
- [sym_generator_function] = STATE(1650),
- [sym_arrow_function] = STATE(1650),
- [sym__call_signature] = STATE(5828),
- [sym_call_expression] = STATE(1650),
- [sym_new_expression] = STATE(1634),
- [sym_await_expression] = STATE(1634),
- [sym_member_expression] = STATE(1251),
- [sym_subscript_expression] = STATE(1251),
- [sym_assignment_expression] = STATE(1634),
- [sym__augmented_assignment_lhs] = STATE(2900),
- [sym_augmented_assignment_expression] = STATE(1634),
- [sym__destructuring_pattern] = STATE(5633),
- [sym_ternary_expression] = STATE(1634),
- [sym_binary_expression] = STATE(1634),
- [sym_unary_expression] = STATE(1634),
- [sym_update_expression] = STATE(1634),
- [sym_sequence_expression] = STATE(5812),
- [sym_string] = STATE(1650),
- [sym_template_string] = STATE(1650),
- [sym_regex] = STATE(1650),
- [sym_meta_property] = STATE(1650),
- [sym_decorator] = STATE(1244),
- [sym_formal_parameters] = STATE(3742),
- [sym_non_null_expression] = STATE(1251),
- [sym_as_expression] = STATE(1634),
- [sym_satisfies_expression] = STATE(1634),
- [sym_instantiation_expression] = STATE(1634),
- [sym_internal_module] = STATE(1634),
- [sym_type_parameters] = STATE(5349),
- [aux_sym_export_statement_repeat1] = STATE(4458),
- [sym_identifier] = ACTIONS(1428),
- [anon_sym_export] = ACTIONS(1044),
- [anon_sym_type] = ACTIONS(1044),
- [anon_sym_namespace] = ACTIONS(1046),
- [anon_sym_LBRACE] = ACTIONS(813),
- [anon_sym_typeof] = ACTIONS(650),
- [anon_sym_import] = ACTIONS(133),
- [anon_sym_let] = ACTIONS(1044),
- [anon_sym_BANG] = ACTIONS(622),
- [anon_sym_LPAREN] = ACTIONS(815),
- [anon_sym_RPAREN] = ACTIONS(2027),
- [anon_sym_await] = ACTIONS(624),
- [anon_sym_yield] = ACTIONS(626),
- [anon_sym_LBRACK] = ACTIONS(817),
- [sym_glimmer_opening_tag] = ACTIONS(148),
- [anon_sym_DQUOTE] = ACTIONS(150),
- [anon_sym_SQUOTE] = ACTIONS(152),
- [anon_sym_class] = ACTIONS(154),
- [anon_sym_async] = ACTIONS(1052),
- [anon_sym_function] = ACTIONS(158),
- [anon_sym_new] = ACTIONS(1436),
- [anon_sym_using] = ACTIONS(636),
- [anon_sym_PLUS] = ACTIONS(650),
- [anon_sym_DASH] = ACTIONS(650),
- [anon_sym_SLASH] = ACTIONS(646),
- [anon_sym_LT] = ACTIONS(181),
- [anon_sym_TILDE] = ACTIONS(622),
- [anon_sym_void] = ACTIONS(650),
- [anon_sym_delete] = ACTIONS(650),
- [anon_sym_PLUS_PLUS] = ACTIONS(652),
- [anon_sym_DASH_DASH] = ACTIONS(652),
- [sym_comment] = ACTIONS(5),
- [anon_sym_BQUOTE] = ACTIONS(825),
- [sym_number] = ACTIONS(787),
- [sym_private_property_identifier] = ACTIONS(654),
- [sym_this] = ACTIONS(200),
- [sym_super] = ACTIONS(200),
- [sym_true] = ACTIONS(200),
- [sym_false] = ACTIONS(200),
- [sym_null] = ACTIONS(200),
- [sym_undefined] = ACTIONS(1438),
- [anon_sym_AT] = ACTIONS(99),
- [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_override] = 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_object] = ACTIONS(1044),
- [sym_html_comment] = ACTIONS(5),
- },
- [298] = {
- [sym_import] = STATE(3334),
- [sym_parenthesized_expression] = STATE(1373),
- [sym_expression] = STATE(2415),
- [sym_primary_expression] = STATE(1468),
- [sym_yield_expression] = STATE(1634),
- [sym_object] = STATE(1650),
- [sym_object_pattern] = STATE(5154),
- [sym_array] = STATE(1650),
- [sym_array_pattern] = STATE(5154),
- [sym_glimmer_template] = STATE(1634),
- [sym_jsx_element] = STATE(1634),
- [sym_jsx_opening_element] = STATE(3026),
- [sym_jsx_self_closing_element] = STATE(1634),
- [sym_class] = STATE(1650),
- [sym_function_expression] = STATE(1650),
- [sym_generator_function] = STATE(1650),
- [sym_arrow_function] = STATE(1650),
- [sym__call_signature] = STATE(5619),
- [sym_call_expression] = STATE(1650),
- [sym_new_expression] = STATE(1634),
- [sym_await_expression] = STATE(1634),
- [sym_member_expression] = STATE(1373),
- [sym_subscript_expression] = STATE(1373),
- [sym_assignment_expression] = STATE(1634),
- [sym__augmented_assignment_lhs] = STATE(2878),
- [sym_augmented_assignment_expression] = STATE(1634),
- [sym__destructuring_pattern] = STATE(5154),
- [sym_ternary_expression] = STATE(1634),
- [sym_binary_expression] = STATE(1634),
- [sym_unary_expression] = STATE(1634),
- [sym_update_expression] = STATE(1634),
- [sym_string] = STATE(1650),
- [sym_template_string] = STATE(1650),
- [sym_regex] = STATE(1650),
- [sym_meta_property] = STATE(1650),
- [sym_decorator] = STATE(1244),
- [sym_formal_parameters] = STATE(3742),
- [sym_non_null_expression] = STATE(1373),
- [sym_as_expression] = STATE(1634),
- [sym_satisfies_expression] = STATE(1634),
- [sym_instantiation_expression] = STATE(1634),
- [sym_internal_module] = STATE(1634),
- [sym_type_parameters] = STATE(5349),
- [aux_sym_export_statement_repeat1] = STATE(4458),
- [sym_identifier] = ACTIONS(2029),
- [anon_sym_export] = ACTIONS(2031),
- [anon_sym_type] = ACTIONS(2031),
- [anon_sym_namespace] = ACTIONS(2033),
- [anon_sym_LBRACE] = ACTIONS(2035),
- [anon_sym_typeof] = ACTIONS(187),
- [anon_sym_import] = ACTIONS(133),
- [anon_sym_var] = ACTIONS(2037),
- [anon_sym_let] = ACTIONS(2039),
- [anon_sym_const] = ACTIONS(2041),
- [anon_sym_BANG] = ACTIONS(183),
- [anon_sym_LPAREN] = ACTIONS(815),
- [anon_sym_await] = ACTIONS(142),
- [anon_sym_yield] = ACTIONS(144),
- [anon_sym_LBRACK] = ACTIONS(2043),
- [sym_glimmer_opening_tag] = ACTIONS(148),
- [anon_sym_DQUOTE] = ACTIONS(150),
- [anon_sym_SQUOTE] = ACTIONS(152),
- [anon_sym_class] = ACTIONS(154),
- [anon_sym_async] = ACTIONS(2045),
- [anon_sym_function] = ACTIONS(158),
- [anon_sym_new] = ACTIONS(2047),
- [anon_sym_using] = ACTIONS(166),
- [anon_sym_PLUS] = ACTIONS(187),
- [anon_sym_DASH] = ACTIONS(187),
- [anon_sym_SLASH] = ACTIONS(646),
- [anon_sym_LT] = ACTIONS(181),
- [anon_sym_TILDE] = ACTIONS(183),
- [anon_sym_void] = ACTIONS(187),
- [anon_sym_delete] = ACTIONS(187),
- [anon_sym_PLUS_PLUS] = ACTIONS(719),
- [anon_sym_DASH_DASH] = ACTIONS(719),
- [sym_comment] = ACTIONS(5),
- [anon_sym_BQUOTE] = ACTIONS(825),
- [sym_number] = ACTIONS(787),
- [sym_private_property_identifier] = ACTIONS(196),
- [sym_this] = ACTIONS(200),
- [sym_super] = ACTIONS(200),
- [sym_true] = ACTIONS(200),
- [sym_false] = ACTIONS(200),
- [sym_null] = ACTIONS(200),
- [sym_undefined] = ACTIONS(2049),
- [anon_sym_AT] = ACTIONS(99),
- [anon_sym_static] = ACTIONS(2031),
- [anon_sym_readonly] = ACTIONS(2031),
- [anon_sym_get] = ACTIONS(2031),
- [anon_sym_set] = ACTIONS(2031),
- [anon_sym_declare] = ACTIONS(2031),
- [anon_sym_public] = ACTIONS(2031),
- [anon_sym_private] = ACTIONS(2031),
- [anon_sym_protected] = ACTIONS(2031),
- [anon_sym_override] = ACTIONS(2031),
- [anon_sym_module] = ACTIONS(2031),
- [anon_sym_any] = ACTIONS(2031),
- [anon_sym_number] = ACTIONS(2031),
- [anon_sym_boolean] = ACTIONS(2031),
- [anon_sym_string] = ACTIONS(2031),
- [anon_sym_symbol] = ACTIONS(2031),
- [anon_sym_object] = ACTIONS(2031),
- [sym_html_comment] = ACTIONS(5),
- },
- [299] = {
- [sym_import] = STATE(3334),
- [sym_parenthesized_expression] = STATE(1251),
- [sym_expression] = STATE(1849),
- [sym_primary_expression] = STATE(1468),
- [sym_yield_expression] = STATE(1634),
- [sym_object] = STATE(1650),
- [sym_object_pattern] = STATE(5633),
- [sym_array] = STATE(1650),
- [sym_array_pattern] = STATE(5633),
- [sym_glimmer_template] = STATE(1634),
- [sym_jsx_element] = STATE(1634),
- [sym_jsx_opening_element] = STATE(3026),
- [sym_jsx_self_closing_element] = STATE(1634),
- [sym_class] = STATE(1650),
- [sym_function_expression] = STATE(1650),
- [sym_generator_function] = STATE(1650),
- [sym_arrow_function] = STATE(1650),
- [sym__call_signature] = STATE(5828),
- [sym_call_expression] = STATE(1650),
- [sym_new_expression] = STATE(1634),
- [sym_await_expression] = STATE(1634),
- [sym_member_expression] = STATE(1251),
- [sym_subscript_expression] = STATE(1251),
- [sym_assignment_expression] = STATE(1634),
- [sym__augmented_assignment_lhs] = STATE(2900),
- [sym_augmented_assignment_expression] = STATE(1634),
- [sym__destructuring_pattern] = STATE(5633),
- [sym_ternary_expression] = STATE(1634),
- [sym_binary_expression] = STATE(1634),
- [sym_unary_expression] = STATE(1634),
- [sym_update_expression] = STATE(1634),
- [sym_sequence_expression] = STATE(5844),
- [sym_string] = STATE(1650),
- [sym_template_string] = STATE(1650),
- [sym_regex] = STATE(1650),
- [sym_meta_property] = STATE(1650),
- [sym_decorator] = STATE(1244),
- [sym_formal_parameters] = STATE(3742),
- [sym_non_null_expression] = STATE(1251),
- [sym_as_expression] = STATE(1634),
- [sym_satisfies_expression] = STATE(1634),
- [sym_instantiation_expression] = STATE(1634),
- [sym_internal_module] = STATE(1634),
- [sym_type_parameters] = STATE(5349),
- [aux_sym_export_statement_repeat1] = STATE(4458),
- [sym_identifier] = ACTIONS(1428),
- [anon_sym_export] = ACTIONS(1044),
- [anon_sym_type] = ACTIONS(1044),
- [anon_sym_namespace] = ACTIONS(1046),
- [anon_sym_LBRACE] = ACTIONS(813),
- [anon_sym_typeof] = ACTIONS(650),
- [anon_sym_import] = ACTIONS(133),
- [anon_sym_let] = ACTIONS(1044),
- [anon_sym_BANG] = ACTIONS(622),
- [anon_sym_LPAREN] = ACTIONS(815),
- [anon_sym_RPAREN] = ACTIONS(2051),
- [anon_sym_await] = ACTIONS(624),
- [anon_sym_yield] = ACTIONS(626),
- [anon_sym_LBRACK] = ACTIONS(817),
- [sym_glimmer_opening_tag] = ACTIONS(148),
- [anon_sym_DQUOTE] = ACTIONS(150),
- [anon_sym_SQUOTE] = ACTIONS(152),
- [anon_sym_class] = ACTIONS(154),
- [anon_sym_async] = ACTIONS(1052),
- [anon_sym_function] = ACTIONS(158),
- [anon_sym_new] = ACTIONS(1436),
- [anon_sym_using] = ACTIONS(636),
- [anon_sym_PLUS] = ACTIONS(650),
- [anon_sym_DASH] = ACTIONS(650),
- [anon_sym_SLASH] = ACTIONS(646),
- [anon_sym_LT] = ACTIONS(181),
- [anon_sym_TILDE] = ACTIONS(622),
- [anon_sym_void] = ACTIONS(650),
- [anon_sym_delete] = ACTIONS(650),
- [anon_sym_PLUS_PLUS] = ACTIONS(652),
- [anon_sym_DASH_DASH] = ACTIONS(652),
- [sym_comment] = ACTIONS(5),
- [anon_sym_BQUOTE] = ACTIONS(825),
- [sym_number] = ACTIONS(787),
- [sym_private_property_identifier] = ACTIONS(654),
- [sym_this] = ACTIONS(200),
- [sym_super] = ACTIONS(200),
- [sym_true] = ACTIONS(200),
- [sym_false] = ACTIONS(200),
- [sym_null] = ACTIONS(200),
- [sym_undefined] = ACTIONS(1438),
- [anon_sym_AT] = ACTIONS(99),
- [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_override] = 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_object] = ACTIONS(1044),
- [sym_html_comment] = ACTIONS(5),
- },
- [300] = {
- [sym_import] = STATE(3334),
- [sym_parenthesized_expression] = STATE(1251),
- [sym_expression] = STATE(1853),
- [sym_primary_expression] = STATE(1468),
- [sym_yield_expression] = STATE(1634),
- [sym_object] = STATE(1650),
- [sym_object_pattern] = STATE(5633),
- [sym_array] = STATE(1650),
- [sym_array_pattern] = STATE(5633),
- [sym_glimmer_template] = STATE(1634),
- [sym_jsx_element] = STATE(1634),
- [sym_jsx_opening_element] = STATE(3026),
- [sym_jsx_self_closing_element] = STATE(1634),
- [sym_class] = STATE(1650),
- [sym_function_expression] = STATE(1650),
- [sym_generator_function] = STATE(1650),
- [sym_arrow_function] = STATE(1650),
- [sym__call_signature] = STATE(5828),
- [sym_call_expression] = STATE(1650),
- [sym_new_expression] = STATE(1634),
- [sym_await_expression] = STATE(1634),
- [sym_member_expression] = STATE(1251),
- [sym_subscript_expression] = STATE(1251),
- [sym_assignment_expression] = STATE(1634),
- [sym__augmented_assignment_lhs] = STATE(2900),
- [sym_augmented_assignment_expression] = STATE(1634),
- [sym__destructuring_pattern] = STATE(5633),
- [sym_ternary_expression] = STATE(1634),
- [sym_binary_expression] = STATE(1634),
- [sym_unary_expression] = STATE(1634),
- [sym_update_expression] = STATE(1634),
- [sym_sequence_expression] = STATE(5757),
- [sym_string] = STATE(1650),
- [sym_template_string] = STATE(1650),
- [sym_regex] = STATE(1650),
- [sym_meta_property] = STATE(1650),
- [sym_decorator] = STATE(1244),
- [sym_formal_parameters] = STATE(3742),
- [sym_non_null_expression] = STATE(1251),
- [sym_as_expression] = STATE(1634),
- [sym_satisfies_expression] = STATE(1634),
- [sym_instantiation_expression] = STATE(1634),
- [sym_internal_module] = STATE(1634),
- [sym_type_parameters] = STATE(5349),
- [aux_sym_export_statement_repeat1] = STATE(4458),
- [sym_identifier] = ACTIONS(1428),
- [anon_sym_export] = ACTIONS(1044),
- [anon_sym_type] = ACTIONS(1044),
- [anon_sym_namespace] = ACTIONS(1046),
- [anon_sym_LBRACE] = ACTIONS(813),
- [anon_sym_typeof] = ACTIONS(650),
- [anon_sym_import] = ACTIONS(133),
- [anon_sym_let] = ACTIONS(1044),
- [anon_sym_BANG] = ACTIONS(622),
- [anon_sym_LPAREN] = ACTIONS(815),
- [anon_sym_RPAREN] = ACTIONS(2053),
- [anon_sym_await] = ACTIONS(624),
- [anon_sym_yield] = ACTIONS(626),
- [anon_sym_LBRACK] = ACTIONS(817),
- [sym_glimmer_opening_tag] = ACTIONS(148),
- [anon_sym_DQUOTE] = ACTIONS(150),
- [anon_sym_SQUOTE] = ACTIONS(152),
- [anon_sym_class] = ACTIONS(154),
- [anon_sym_async] = ACTIONS(1052),
- [anon_sym_function] = ACTIONS(158),
- [anon_sym_new] = ACTIONS(1436),
- [anon_sym_using] = ACTIONS(636),
- [anon_sym_PLUS] = ACTIONS(650),
- [anon_sym_DASH] = ACTIONS(650),
- [anon_sym_SLASH] = ACTIONS(646),
- [anon_sym_LT] = ACTIONS(181),
- [anon_sym_TILDE] = ACTIONS(622),
- [anon_sym_void] = ACTIONS(650),
- [anon_sym_delete] = ACTIONS(650),
- [anon_sym_PLUS_PLUS] = ACTIONS(652),
- [anon_sym_DASH_DASH] = ACTIONS(652),
- [sym_comment] = ACTIONS(5),
- [anon_sym_BQUOTE] = ACTIONS(825),
- [sym_number] = ACTIONS(787),
- [sym_private_property_identifier] = ACTIONS(654),
- [sym_this] = ACTIONS(200),
- [sym_super] = ACTIONS(200),
- [sym_true] = ACTIONS(200),
- [sym_false] = ACTIONS(200),
- [sym_null] = ACTIONS(200),
- [sym_undefined] = ACTIONS(1438),
- [anon_sym_AT] = ACTIONS(99),
- [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_override] = 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_object] = ACTIONS(1044),
- [sym_html_comment] = ACTIONS(5),
- },
- [301] = {
- [sym_import] = STATE(3306),
- [sym_statement_block] = STATE(2159),
- [sym_parenthesized_expression] = STATE(1300),
- [sym_expression] = STATE(1768),
- [sym_primary_expression] = STATE(1946),
- [sym_yield_expression] = STATE(2234),
- [sym_object] = STATE(2310),
- [sym_object_pattern] = STATE(5831),
- [sym_array] = STATE(2310),
- [sym_array_pattern] = STATE(5831),
- [sym_glimmer_template] = STATE(2234),
- [sym_jsx_element] = STATE(2234),
- [sym_jsx_opening_element] = STATE(3051),
- [sym_jsx_self_closing_element] = STATE(2234),
- [sym_class] = STATE(2310),
- [sym_function_expression] = STATE(2310),
- [sym_generator_function] = STATE(2310),
- [sym_arrow_function] = STATE(2310),
- [sym__call_signature] = STATE(5829),
- [sym_call_expression] = STATE(2310),
- [sym_new_expression] = STATE(2234),
- [sym_await_expression] = STATE(2234),
- [sym_member_expression] = STATE(1300),
- [sym_subscript_expression] = STATE(1300),
- [sym_assignment_expression] = STATE(2234),
- [sym__augmented_assignment_lhs] = STATE(2943),
- [sym_augmented_assignment_expression] = STATE(2234),
- [sym__destructuring_pattern] = STATE(5831),
- [sym_ternary_expression] = STATE(2234),
- [sym_binary_expression] = STATE(2234),
- [sym_unary_expression] = STATE(2234),
- [sym_update_expression] = STATE(2234),
- [sym_string] = STATE(2310),
- [sym_template_string] = STATE(2310),
- [sym_regex] = STATE(2310),
- [sym_meta_property] = STATE(2310),
- [sym_decorator] = STATE(1244),
- [sym_formal_parameters] = STATE(3742),
- [sym_non_null_expression] = STATE(1300),
- [sym_as_expression] = STATE(2234),
- [sym_satisfies_expression] = STATE(2234),
- [sym_instantiation_expression] = STATE(2234),
- [sym_internal_module] = STATE(2234),
- [sym_type_parameters] = STATE(5349),
- [aux_sym_export_statement_repeat1] = STATE(4499),
- [sym_identifier] = ACTIONS(1446),
- [anon_sym_export] = ACTIONS(1202),
- [anon_sym_type] = ACTIONS(1202),
- [anon_sym_namespace] = ACTIONS(1204),
- [anon_sym_LBRACE] = ACTIONS(2055),
- [anon_sym_typeof] = ACTIONS(1228),
- [anon_sym_import] = ACTIONS(133),
- [anon_sym_let] = ACTIONS(1202),
- [anon_sym_BANG] = ACTIONS(1210),
- [anon_sym_LPAREN] = ACTIONS(41),
- [anon_sym_await] = ACTIONS(1212),
- [anon_sym_yield] = ACTIONS(1214),
- [anon_sym_LBRACK] = ACTIONS(65),
- [sym_glimmer_opening_tag] = ACTIONS(67),
- [anon_sym_DQUOTE] = ACTIONS(69),
- [anon_sym_SQUOTE] = ACTIONS(71),
- [anon_sym_class] = ACTIONS(709),
- [anon_sym_async] = ACTIONS(1218),
- [anon_sym_function] = ACTIONS(713),
- [anon_sym_new] = ACTIONS(1450),
- [anon_sym_using] = ACTIONS(1222),
- [anon_sym_PLUS] = ACTIONS(1228),
- [anon_sym_DASH] = ACTIONS(1228),
- [anon_sym_SLASH] = ACTIONS(882),
- [anon_sym_LT] = ACTIONS(85),
- [anon_sym_TILDE] = ACTIONS(1210),
- [anon_sym_void] = ACTIONS(1228),
- [anon_sym_delete] = ACTIONS(1228),
- [anon_sym_PLUS_PLUS] = ACTIONS(1230),
- [anon_sym_DASH_DASH] = ACTIONS(1230),
- [sym_comment] = ACTIONS(5),
- [anon_sym_BQUOTE] = ACTIONS(89),
- [sym_number] = ACTIONS(91),
- [sym_private_property_identifier] = ACTIONS(1236),
- [sym_this] = ACTIONS(95),
- [sym_super] = ACTIONS(95),
- [sym_true] = ACTIONS(95),
- [sym_false] = ACTIONS(95),
- [sym_null] = ACTIONS(95),
- [sym_undefined] = ACTIONS(1452),
- [anon_sym_AT] = ACTIONS(99),
- [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_override] = 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_object] = ACTIONS(1202),
- [sym_html_comment] = ACTIONS(5),
- },
- [302] = {
- [sym_import] = STATE(3334),
- [sym_parenthesized_expression] = STATE(1251),
- [sym_expression] = STATE(1846),
- [sym_primary_expression] = STATE(1468),
- [sym_yield_expression] = STATE(1634),
- [sym_object] = STATE(1650),
- [sym_object_pattern] = STATE(5633),
- [sym_array] = STATE(1650),
- [sym_array_pattern] = STATE(5633),
- [sym_glimmer_template] = STATE(1634),
- [sym_jsx_element] = STATE(1634),
- [sym_jsx_opening_element] = STATE(3026),
- [sym_jsx_self_closing_element] = STATE(1634),
- [sym_class] = STATE(1650),
- [sym_function_expression] = STATE(1650),
- [sym_generator_function] = STATE(1650),
- [sym_arrow_function] = STATE(1650),
- [sym__call_signature] = STATE(5828),
- [sym_call_expression] = STATE(1650),
- [sym_new_expression] = STATE(1634),
- [sym_await_expression] = STATE(1634),
- [sym_member_expression] = STATE(1251),
- [sym_subscript_expression] = STATE(1251),
- [sym_assignment_expression] = STATE(1634),
- [sym__augmented_assignment_lhs] = STATE(2900),
- [sym_augmented_assignment_expression] = STATE(1634),
- [sym__destructuring_pattern] = STATE(5633),
- [sym_ternary_expression] = STATE(1634),
- [sym_binary_expression] = STATE(1634),
- [sym_unary_expression] = STATE(1634),
- [sym_update_expression] = STATE(1634),
- [sym_sequence_expression] = STATE(5589),
- [sym_string] = STATE(1650),
- [sym_template_string] = STATE(1650),
- [sym_regex] = STATE(1650),
- [sym_meta_property] = STATE(1650),
- [sym_decorator] = STATE(1244),
- [sym_formal_parameters] = STATE(3742),
- [sym_non_null_expression] = STATE(1251),
- [sym_as_expression] = STATE(1634),
- [sym_satisfies_expression] = STATE(1634),
- [sym_instantiation_expression] = STATE(1634),
- [sym_internal_module] = STATE(1634),
- [sym_type_parameters] = STATE(5349),
- [aux_sym_export_statement_repeat1] = STATE(4458),
- [sym_identifier] = ACTIONS(1428),
- [anon_sym_export] = ACTIONS(1044),
- [anon_sym_type] = ACTIONS(1044),
- [anon_sym_namespace] = ACTIONS(1046),
- [anon_sym_LBRACE] = ACTIONS(813),
- [anon_sym_typeof] = ACTIONS(650),
- [anon_sym_import] = ACTIONS(133),
- [anon_sym_let] = ACTIONS(1044),
- [anon_sym_BANG] = ACTIONS(622),
- [anon_sym_LPAREN] = ACTIONS(815),
- [anon_sym_await] = ACTIONS(624),
- [anon_sym_yield] = ACTIONS(626),
- [anon_sym_LBRACK] = ACTIONS(817),
- [sym_glimmer_opening_tag] = ACTIONS(148),
- [anon_sym_DQUOTE] = ACTIONS(150),
- [anon_sym_SQUOTE] = ACTIONS(152),
- [anon_sym_class] = ACTIONS(154),
- [anon_sym_async] = ACTIONS(1052),
- [anon_sym_function] = ACTIONS(158),
- [anon_sym_new] = ACTIONS(1436),
- [anon_sym_using] = ACTIONS(636),
- [anon_sym_PLUS] = ACTIONS(650),
- [anon_sym_DASH] = ACTIONS(650),
- [anon_sym_SLASH] = ACTIONS(646),
- [anon_sym_LT] = ACTIONS(181),
- [anon_sym_TILDE] = ACTIONS(622),
- [anon_sym_void] = ACTIONS(650),
- [anon_sym_delete] = ACTIONS(650),
- [anon_sym_PLUS_PLUS] = ACTIONS(652),
- [anon_sym_DASH_DASH] = ACTIONS(652),
- [sym_comment] = ACTIONS(5),
- [anon_sym_BQUOTE] = ACTIONS(825),
- [sym_number] = ACTIONS(787),
- [sym_private_property_identifier] = ACTIONS(654),
- [sym_this] = ACTIONS(200),
- [sym_super] = ACTIONS(200),
- [sym_true] = ACTIONS(200),
- [sym_false] = ACTIONS(200),
- [sym_null] = ACTIONS(200),
- [sym_undefined] = ACTIONS(1438),
- [anon_sym_AT] = ACTIONS(99),
- [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_override] = 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_object] = ACTIONS(1044),
- [sym_html_comment] = ACTIONS(5),
- },
- [303] = {
- [sym_import] = STATE(3334),
- [sym_parenthesized_expression] = STATE(1251),
- [sym_expression] = STATE(1848),
- [sym_primary_expression] = STATE(1468),
- [sym_yield_expression] = STATE(1634),
- [sym_object] = STATE(1650),
- [sym_object_pattern] = STATE(5633),
- [sym_array] = STATE(1650),
- [sym_array_pattern] = STATE(5633),
- [sym_glimmer_template] = STATE(1634),
- [sym_jsx_element] = STATE(1634),
- [sym_jsx_opening_element] = STATE(3026),
- [sym_jsx_self_closing_element] = STATE(1634),
- [sym_class] = STATE(1650),
- [sym_function_expression] = STATE(1650),
- [sym_generator_function] = STATE(1650),
- [sym_arrow_function] = STATE(1650),
- [sym__call_signature] = STATE(5828),
- [sym_call_expression] = STATE(1650),
- [sym_new_expression] = STATE(1634),
- [sym_await_expression] = STATE(1634),
- [sym_member_expression] = STATE(1251),
- [sym_subscript_expression] = STATE(1251),
- [sym_assignment_expression] = STATE(1634),
- [sym__augmented_assignment_lhs] = STATE(2900),
- [sym_augmented_assignment_expression] = STATE(1634),
- [sym__destructuring_pattern] = STATE(5633),
- [sym_ternary_expression] = STATE(1634),
- [sym_binary_expression] = STATE(1634),
- [sym_unary_expression] = STATE(1634),
- [sym_update_expression] = STATE(1634),
- [sym_sequence_expression] = STATE(5778),
- [sym_string] = STATE(1650),
- [sym_template_string] = STATE(1650),
- [sym_regex] = STATE(1650),
- [sym_meta_property] = STATE(1650),
- [sym_decorator] = STATE(1244),
- [sym_formal_parameters] = STATE(3742),
- [sym_non_null_expression] = STATE(1251),
- [sym_as_expression] = STATE(1634),
- [sym_satisfies_expression] = STATE(1634),
- [sym_instantiation_expression] = STATE(1634),
- [sym_internal_module] = STATE(1634),
- [sym_type_parameters] = STATE(5349),
- [aux_sym_export_statement_repeat1] = STATE(4458),
- [sym_identifier] = ACTIONS(1428),
- [anon_sym_export] = ACTIONS(1044),
- [anon_sym_type] = ACTIONS(1044),
- [anon_sym_namespace] = ACTIONS(1046),
- [anon_sym_LBRACE] = ACTIONS(813),
- [anon_sym_typeof] = ACTIONS(650),
- [anon_sym_import] = ACTIONS(133),
- [anon_sym_let] = ACTIONS(1044),
- [anon_sym_BANG] = ACTIONS(622),
- [anon_sym_LPAREN] = ACTIONS(815),
- [anon_sym_await] = ACTIONS(624),
- [anon_sym_yield] = ACTIONS(626),
- [anon_sym_LBRACK] = ACTIONS(817),
- [sym_glimmer_opening_tag] = ACTIONS(148),
- [anon_sym_DQUOTE] = ACTIONS(150),
- [anon_sym_SQUOTE] = ACTIONS(152),
- [anon_sym_class] = ACTIONS(154),
- [anon_sym_async] = ACTIONS(1052),
- [anon_sym_function] = ACTIONS(158),
- [anon_sym_new] = ACTIONS(1436),
- [anon_sym_using] = ACTIONS(636),
- [anon_sym_PLUS] = ACTIONS(650),
- [anon_sym_DASH] = ACTIONS(650),
- [anon_sym_SLASH] = ACTIONS(646),
- [anon_sym_LT] = ACTIONS(181),
- [anon_sym_TILDE] = ACTIONS(622),
- [anon_sym_void] = ACTIONS(650),
- [anon_sym_delete] = ACTIONS(650),
- [anon_sym_PLUS_PLUS] = ACTIONS(652),
- [anon_sym_DASH_DASH] = ACTIONS(652),
- [sym_comment] = ACTIONS(5),
- [anon_sym_BQUOTE] = ACTIONS(825),
- [sym_number] = ACTIONS(787),
- [sym_private_property_identifier] = ACTIONS(654),
- [sym_this] = ACTIONS(200),
- [sym_super] = ACTIONS(200),
- [sym_true] = ACTIONS(200),
- [sym_false] = ACTIONS(200),
- [sym_null] = ACTIONS(200),
- [sym_undefined] = ACTIONS(1438),
- [anon_sym_AT] = ACTIONS(99),
- [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_override] = 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_object] = ACTIONS(1044),
- [sym_html_comment] = ACTIONS(5),
- },
- [304] = {
- [sym_import] = STATE(3334),
- [sym_parenthesized_expression] = STATE(1251),
- [sym_expression] = STATE(1796),
- [sym_primary_expression] = STATE(1468),
- [sym_yield_expression] = STATE(1634),
- [sym_object] = STATE(1650),
- [sym_object_pattern] = STATE(5633),
- [sym_array] = STATE(1650),
- [sym_array_pattern] = STATE(5633),
- [sym_glimmer_template] = STATE(1634),
- [sym_jsx_element] = STATE(1634),
- [sym_jsx_opening_element] = STATE(3026),
- [sym_jsx_self_closing_element] = STATE(1634),
- [sym_class] = STATE(1650),
- [sym_function_expression] = STATE(1650),
- [sym_generator_function] = STATE(1650),
- [sym_arrow_function] = STATE(1650),
- [sym__call_signature] = STATE(5828),
- [sym_call_expression] = STATE(1650),
- [sym_new_expression] = STATE(1634),
- [sym_await_expression] = STATE(1634),
- [sym_member_expression] = STATE(1251),
- [sym_subscript_expression] = STATE(1251),
- [sym_assignment_expression] = STATE(1634),
- [sym__augmented_assignment_lhs] = STATE(2900),
- [sym_augmented_assignment_expression] = STATE(1634),
- [sym__destructuring_pattern] = STATE(5633),
- [sym_ternary_expression] = STATE(1634),
- [sym_binary_expression] = STATE(1634),
- [sym_unary_expression] = STATE(1634),
- [sym_update_expression] = STATE(1634),
- [sym_sequence_expression] = STATE(5910),
- [sym_string] = STATE(1650),
- [sym_template_string] = STATE(1650),
- [sym_regex] = STATE(1650),
- [sym_meta_property] = STATE(1650),
- [sym_decorator] = STATE(1244),
- [sym_formal_parameters] = STATE(3742),
- [sym_non_null_expression] = STATE(1251),
- [sym_as_expression] = STATE(1634),
- [sym_satisfies_expression] = STATE(1634),
- [sym_instantiation_expression] = STATE(1634),
- [sym_internal_module] = STATE(1634),
- [sym_type_parameters] = STATE(5349),
- [aux_sym_export_statement_repeat1] = STATE(4458),
- [sym_identifier] = ACTIONS(1428),
- [anon_sym_export] = ACTIONS(1044),
- [anon_sym_type] = ACTIONS(1044),
- [anon_sym_namespace] = ACTIONS(1046),
- [anon_sym_LBRACE] = ACTIONS(813),
- [anon_sym_typeof] = ACTIONS(650),
- [anon_sym_import] = ACTIONS(133),
- [anon_sym_let] = ACTIONS(1044),
- [anon_sym_BANG] = ACTIONS(622),
- [anon_sym_LPAREN] = ACTIONS(815),
- [anon_sym_await] = ACTIONS(624),
- [anon_sym_yield] = ACTIONS(626),
- [anon_sym_LBRACK] = ACTIONS(817),
- [sym_glimmer_opening_tag] = ACTIONS(148),
- [anon_sym_DQUOTE] = ACTIONS(150),
- [anon_sym_SQUOTE] = ACTIONS(152),
- [anon_sym_class] = ACTIONS(154),
- [anon_sym_async] = ACTIONS(1052),
- [anon_sym_function] = ACTIONS(158),
- [anon_sym_new] = ACTIONS(1436),
- [anon_sym_using] = ACTIONS(636),
- [anon_sym_PLUS] = ACTIONS(650),
- [anon_sym_DASH] = ACTIONS(650),
- [anon_sym_SLASH] = ACTIONS(646),
- [anon_sym_LT] = ACTIONS(181),
- [anon_sym_TILDE] = ACTIONS(622),
- [anon_sym_void] = ACTIONS(650),
- [anon_sym_delete] = ACTIONS(650),
- [anon_sym_PLUS_PLUS] = ACTIONS(652),
- [anon_sym_DASH_DASH] = ACTIONS(652),
- [sym_comment] = ACTIONS(5),
- [anon_sym_BQUOTE] = ACTIONS(825),
- [sym_number] = ACTIONS(787),
- [sym_private_property_identifier] = ACTIONS(654),
- [sym_this] = ACTIONS(200),
- [sym_super] = ACTIONS(200),
- [sym_true] = ACTIONS(200),
- [sym_false] = ACTIONS(200),
- [sym_null] = ACTIONS(200),
- [sym_undefined] = ACTIONS(1438),
- [anon_sym_AT] = ACTIONS(99),
- [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_override] = 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_object] = ACTIONS(1044),
- [sym_html_comment] = ACTIONS(5),
- },
- [305] = {
- [sym_import] = STATE(3334),
- [sym_parenthesized_expression] = STATE(1251),
- [sym_expression] = STATE(1804),
- [sym_primary_expression] = STATE(1468),
- [sym_yield_expression] = STATE(1634),
- [sym_object] = STATE(1650),
- [sym_object_pattern] = STATE(5633),
- [sym_array] = STATE(1650),
- [sym_array_pattern] = STATE(5633),
- [sym_glimmer_template] = STATE(1634),
- [sym_jsx_element] = STATE(1634),
- [sym_jsx_opening_element] = STATE(3026),
- [sym_jsx_self_closing_element] = STATE(1634),
- [sym_class] = STATE(1650),
- [sym_function_expression] = STATE(1650),
- [sym_generator_function] = STATE(1650),
- [sym_arrow_function] = STATE(1650),
- [sym__call_signature] = STATE(5828),
- [sym_call_expression] = STATE(1650),
- [sym_new_expression] = STATE(1634),
- [sym_await_expression] = STATE(1634),
- [sym_member_expression] = STATE(1251),
- [sym_subscript_expression] = STATE(1251),
- [sym_assignment_expression] = STATE(1634),
- [sym__augmented_assignment_lhs] = STATE(2900),
- [sym_augmented_assignment_expression] = STATE(1634),
- [sym__destructuring_pattern] = STATE(5633),
- [sym_ternary_expression] = STATE(1634),
- [sym_binary_expression] = STATE(1634),
- [sym_unary_expression] = STATE(1634),
- [sym_update_expression] = STATE(1634),
- [sym_sequence_expression] = STATE(5602),
- [sym_string] = STATE(1650),
- [sym_template_string] = STATE(1650),
- [sym_regex] = STATE(1650),
- [sym_meta_property] = STATE(1650),
- [sym_decorator] = STATE(1244),
- [sym_formal_parameters] = STATE(3742),
- [sym_non_null_expression] = STATE(1251),
- [sym_as_expression] = STATE(1634),
- [sym_satisfies_expression] = STATE(1634),
- [sym_instantiation_expression] = STATE(1634),
- [sym_internal_module] = STATE(1634),
- [sym_type_parameters] = STATE(5349),
- [aux_sym_export_statement_repeat1] = STATE(4458),
- [sym_identifier] = ACTIONS(1428),
- [anon_sym_export] = ACTIONS(1044),
- [anon_sym_type] = ACTIONS(1044),
- [anon_sym_namespace] = ACTIONS(1046),
- [anon_sym_LBRACE] = ACTIONS(813),
- [anon_sym_typeof] = ACTIONS(650),
- [anon_sym_import] = ACTIONS(133),
- [anon_sym_let] = ACTIONS(1044),
- [anon_sym_BANG] = ACTIONS(622),
- [anon_sym_LPAREN] = ACTIONS(815),
- [anon_sym_await] = ACTIONS(624),
- [anon_sym_yield] = ACTIONS(626),
- [anon_sym_LBRACK] = ACTIONS(817),
- [sym_glimmer_opening_tag] = ACTIONS(148),
- [anon_sym_DQUOTE] = ACTIONS(150),
- [anon_sym_SQUOTE] = ACTIONS(152),
- [anon_sym_class] = ACTIONS(154),
- [anon_sym_async] = ACTIONS(1052),
- [anon_sym_function] = ACTIONS(158),
- [anon_sym_new] = ACTIONS(1436),
- [anon_sym_using] = ACTIONS(636),
- [anon_sym_PLUS] = ACTIONS(650),
- [anon_sym_DASH] = ACTIONS(650),
- [anon_sym_SLASH] = ACTIONS(646),
- [anon_sym_LT] = ACTIONS(181),
- [anon_sym_TILDE] = ACTIONS(622),
- [anon_sym_void] = ACTIONS(650),
- [anon_sym_delete] = ACTIONS(650),
- [anon_sym_PLUS_PLUS] = ACTIONS(652),
- [anon_sym_DASH_DASH] = ACTIONS(652),
- [sym_comment] = ACTIONS(5),
- [anon_sym_BQUOTE] = ACTIONS(825),
- [sym_number] = ACTIONS(787),
- [sym_private_property_identifier] = ACTIONS(654),
- [sym_this] = ACTIONS(200),
- [sym_super] = ACTIONS(200),
- [sym_true] = ACTIONS(200),
- [sym_false] = ACTIONS(200),
- [sym_null] = ACTIONS(200),
- [sym_undefined] = ACTIONS(1438),
- [anon_sym_AT] = ACTIONS(99),
- [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_override] = 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_object] = ACTIONS(1044),
- [sym_html_comment] = ACTIONS(5),
- },
- [306] = {
- [sym_import] = STATE(3334),
- [sym_parenthesized_expression] = STATE(1369),
- [sym_expression] = STATE(2212),
- [sym_primary_expression] = STATE(1468),
- [sym_yield_expression] = STATE(1634),
- [sym_object] = STATE(1650),
- [sym_object_pattern] = STATE(5861),
- [sym_array] = STATE(1650),
- [sym_array_pattern] = STATE(5861),
- [sym_glimmer_template] = STATE(1634),
- [sym_jsx_element] = STATE(1634),
- [sym_jsx_opening_element] = STATE(3026),
- [sym_jsx_self_closing_element] = STATE(1634),
- [sym_class] = STATE(1650),
- [sym_function_expression] = STATE(1650),
- [sym_generator_function] = STATE(1650),
- [sym_arrow_function] = STATE(1650),
- [sym__call_signature] = STATE(5765),
- [sym_call_expression] = STATE(1650),
- [sym_new_expression] = STATE(1634),
- [sym_await_expression] = STATE(1634),
- [sym_member_expression] = STATE(1369),
- [sym_subscript_expression] = STATE(1369),
- [sym_assignment_expression] = STATE(1634),
- [sym__augmented_assignment_lhs] = STATE(2891),
- [sym_augmented_assignment_expression] = STATE(1634),
- [sym__destructuring_pattern] = STATE(5861),
- [sym_ternary_expression] = STATE(1634),
- [sym_binary_expression] = STATE(1634),
- [sym_unary_expression] = STATE(1634),
- [sym_update_expression] = STATE(1634),
- [sym_string] = STATE(1650),
- [sym_template_string] = STATE(1650),
- [sym_regex] = STATE(1650),
- [sym_meta_property] = STATE(1650),
- [sym_decorator] = STATE(1244),
- [sym_formal_parameters] = STATE(3742),
- [sym_non_null_expression] = STATE(1369),
- [sym_as_expression] = STATE(1634),
- [sym_satisfies_expression] = STATE(1634),
- [sym_instantiation_expression] = STATE(1634),
- [sym_internal_module] = STATE(1634),
- [sym_mapped_type_clause] = STATE(5617),
- [sym_type_parameters] = STATE(5349),
- [aux_sym_export_statement_repeat1] = STATE(4458),
- [sym_identifier] = ACTIONS(2057),
- [anon_sym_export] = ACTIONS(2059),
- [anon_sym_type] = ACTIONS(2059),
- [anon_sym_namespace] = ACTIONS(2061),
- [anon_sym_LBRACE] = ACTIONS(813),
- [anon_sym_typeof] = ACTIONS(1138),
- [anon_sym_import] = ACTIONS(133),
- [anon_sym_let] = ACTIONS(2059),
- [anon_sym_BANG] = ACTIONS(1122),
- [anon_sym_LPAREN] = ACTIONS(815),
- [anon_sym_await] = ACTIONS(1124),
- [anon_sym_yield] = ACTIONS(1126),
- [anon_sym_LBRACK] = ACTIONS(817),
- [sym_glimmer_opening_tag] = ACTIONS(148),
- [anon_sym_DQUOTE] = ACTIONS(150),
- [anon_sym_SQUOTE] = ACTIONS(152),
- [anon_sym_class] = ACTIONS(154),
- [anon_sym_async] = ACTIONS(2063),
- [anon_sym_function] = ACTIONS(158),
- [anon_sym_new] = ACTIONS(2065),
- [anon_sym_using] = ACTIONS(1132),
- [anon_sym_PLUS] = ACTIONS(1138),
- [anon_sym_DASH] = ACTIONS(1138),
- [anon_sym_SLASH] = ACTIONS(646),
- [anon_sym_LT] = ACTIONS(181),
- [anon_sym_TILDE] = ACTIONS(1122),
- [anon_sym_void] = ACTIONS(1138),
- [anon_sym_delete] = ACTIONS(1138),
- [anon_sym_PLUS_PLUS] = ACTIONS(1140),
- [anon_sym_DASH_DASH] = ACTIONS(1140),
- [sym_comment] = ACTIONS(5),
- [anon_sym_BQUOTE] = ACTIONS(825),
- [sym_number] = ACTIONS(787),
- [sym_private_property_identifier] = ACTIONS(1142),
- [sym_this] = ACTIONS(200),
- [sym_super] = ACTIONS(200),
- [sym_true] = ACTIONS(200),
- [sym_false] = ACTIONS(200),
- [sym_null] = ACTIONS(200),
- [sym_undefined] = ACTIONS(1484),
- [anon_sym_AT] = ACTIONS(99),
- [anon_sym_static] = ACTIONS(2059),
- [anon_sym_readonly] = ACTIONS(2059),
- [anon_sym_get] = ACTIONS(2059),
- [anon_sym_set] = ACTIONS(2059),
- [anon_sym_declare] = ACTIONS(2059),
- [anon_sym_public] = ACTIONS(2059),
- [anon_sym_private] = ACTIONS(2059),
- [anon_sym_protected] = ACTIONS(2059),
- [anon_sym_override] = ACTIONS(2059),
- [anon_sym_module] = ACTIONS(2059),
- [anon_sym_any] = ACTIONS(2059),
- [anon_sym_number] = ACTIONS(2059),
- [anon_sym_boolean] = ACTIONS(2059),
- [anon_sym_string] = ACTIONS(2059),
- [anon_sym_symbol] = ACTIONS(2059),
- [anon_sym_object] = ACTIONS(2059),
- [sym_html_comment] = ACTIONS(5),
- },
- [307] = {
- [sym_import] = STATE(3334),
- [sym_parenthesized_expression] = STATE(1327),
- [sym_expression] = STATE(1793),
- [sym_primary_expression] = STATE(1468),
- [sym_yield_expression] = STATE(1634),
- [sym_object] = STATE(1650),
- [sym_object_pattern] = STATE(5821),
- [sym_array] = STATE(1650),
- [sym_array_pattern] = STATE(5821),
- [sym_glimmer_template] = STATE(1634),
- [sym_jsx_element] = STATE(1634),
- [sym_jsx_opening_element] = STATE(3026),
- [sym_jsx_self_closing_element] = STATE(1634),
- [sym_class] = STATE(1650),
- [sym_function_expression] = STATE(1650),
- [sym_generator_function] = STATE(1650),
- [sym_arrow_function] = STATE(1650),
- [sym__call_signature] = STATE(5743),
- [sym_call_expression] = STATE(1650),
- [sym_new_expression] = STATE(1634),
- [sym_await_expression] = STATE(1634),
- [sym_member_expression] = STATE(1327),
- [sym_subscript_expression] = STATE(1327),
- [sym_assignment_expression] = STATE(1634),
- [sym__augmented_assignment_lhs] = STATE(2919),
- [sym_augmented_assignment_expression] = STATE(1634),
- [sym__destructuring_pattern] = STATE(5821),
- [sym_ternary_expression] = STATE(1634),
- [sym_binary_expression] = STATE(1634),
- [sym_unary_expression] = STATE(1634),
- [sym_update_expression] = STATE(1634),
- [sym_string] = STATE(1650),
- [sym_template_string] = STATE(1650),
- [sym_regex] = STATE(1650),
- [sym_meta_property] = STATE(1650),
- [sym_decorator] = STATE(1244),
- [sym_formal_parameters] = STATE(3742),
- [sym_non_null_expression] = STATE(1327),
- [sym_as_expression] = STATE(1634),
- [sym_satisfies_expression] = STATE(1634),
- [sym_instantiation_expression] = STATE(1634),
- [sym__extends_clause_single] = STATE(4771),
- [sym_internal_module] = STATE(1634),
- [sym_type_parameters] = STATE(5349),
- [aux_sym_export_statement_repeat1] = STATE(4458),
- [sym_identifier] = ACTIONS(1462),
- [anon_sym_export] = ACTIONS(1286),
- [anon_sym_type] = ACTIONS(1286),
- [anon_sym_namespace] = ACTIONS(1288),
- [anon_sym_LBRACE] = ACTIONS(813),
- [anon_sym_typeof] = ACTIONS(1308),
- [anon_sym_import] = ACTIONS(133),
- [anon_sym_let] = ACTIONS(1286),
- [anon_sym_BANG] = ACTIONS(1292),
- [anon_sym_LPAREN] = ACTIONS(815),
- [anon_sym_await] = ACTIONS(1294),
- [anon_sym_yield] = ACTIONS(1296),
- [anon_sym_LBRACK] = ACTIONS(817),
- [sym_glimmer_opening_tag] = ACTIONS(148),
- [anon_sym_DQUOTE] = ACTIONS(150),
- [anon_sym_SQUOTE] = ACTIONS(152),
- [anon_sym_class] = ACTIONS(154),
- [anon_sym_async] = ACTIONS(1298),
- [anon_sym_function] = ACTIONS(158),
- [anon_sym_new] = ACTIONS(1466),
- [anon_sym_using] = ACTIONS(1302),
- [anon_sym_PLUS] = ACTIONS(1308),
- [anon_sym_DASH] = ACTIONS(1308),
- [anon_sym_SLASH] = ACTIONS(922),
- [anon_sym_LT] = ACTIONS(181),
- [anon_sym_TILDE] = ACTIONS(1292),
- [anon_sym_void] = ACTIONS(1308),
- [anon_sym_delete] = ACTIONS(1308),
- [anon_sym_PLUS_PLUS] = ACTIONS(1310),
- [anon_sym_DASH_DASH] = ACTIONS(1310),
- [sym_comment] = ACTIONS(5),
- [anon_sym_BQUOTE] = ACTIONS(825),
- [sym_number] = ACTIONS(787),
- [sym_private_property_identifier] = ACTIONS(1312),
- [sym_this] = ACTIONS(200),
- [sym_super] = ACTIONS(200),
- [sym_true] = ACTIONS(200),
- [sym_false] = ACTIONS(200),
- [sym_null] = ACTIONS(200),
- [sym_undefined] = ACTIONS(1468),
- [anon_sym_AT] = ACTIONS(99),
- [anon_sym_static] = ACTIONS(1286),
- [anon_sym_readonly] = ACTIONS(1286),
- [anon_sym_get] = ACTIONS(1286),
- [anon_sym_set] = ACTIONS(1286),
- [anon_sym_declare] = ACTIONS(1286),
- [anon_sym_public] = ACTIONS(1286),
- [anon_sym_private] = ACTIONS(1286),
- [anon_sym_protected] = ACTIONS(1286),
- [anon_sym_override] = ACTIONS(1286),
- [anon_sym_module] = ACTIONS(1286),
- [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_object] = ACTIONS(1286),
- [sym_html_comment] = ACTIONS(5),
- },
- [308] = {
- [sym_import] = STATE(3306),
- [sym_statement_block] = STATE(2379),
- [sym_parenthesized_expression] = STATE(1294),
- [sym_expression] = STATE(1762),
- [sym_primary_expression] = STATE(1946),
- [sym_yield_expression] = STATE(2234),
- [sym_object] = STATE(2310),
- [sym_object_pattern] = STATE(5667),
- [sym_array] = STATE(2310),
- [sym_array_pattern] = STATE(5667),
- [sym_glimmer_template] = STATE(2234),
- [sym_jsx_element] = STATE(2234),
- [sym_jsx_opening_element] = STATE(3051),
- [sym_jsx_self_closing_element] = STATE(2234),
- [sym_class] = STATE(2310),
- [sym_function_expression] = STATE(2310),
- [sym_generator_function] = STATE(2310),
- [sym_arrow_function] = STATE(2310),
- [sym__call_signature] = STATE(5809),
- [sym_call_expression] = STATE(2310),
- [sym_new_expression] = STATE(2234),
- [sym_await_expression] = STATE(2234),
- [sym_member_expression] = STATE(1294),
- [sym_subscript_expression] = STATE(1294),
- [sym_assignment_expression] = STATE(2234),
- [sym__augmented_assignment_lhs] = STATE(2875),
- [sym_augmented_assignment_expression] = STATE(2234),
- [sym__destructuring_pattern] = STATE(5667),
- [sym_ternary_expression] = STATE(2234),
- [sym_binary_expression] = STATE(2234),
- [sym_unary_expression] = STATE(2234),
- [sym_update_expression] = STATE(2234),
- [sym_string] = STATE(2310),
- [sym_template_string] = STATE(2310),
- [sym_regex] = STATE(2310),
- [sym_meta_property] = STATE(2310),
- [sym_decorator] = STATE(1244),
- [sym_formal_parameters] = STATE(3742),
- [sym_non_null_expression] = STATE(1294),
- [sym_as_expression] = STATE(2234),
- [sym_satisfies_expression] = STATE(2234),
- [sym_instantiation_expression] = STATE(2234),
- [sym_internal_module] = STATE(2234),
- [sym_type_parameters] = STATE(5349),
- [aux_sym_export_statement_repeat1] = STATE(4499),
- [sym_identifier] = ACTIONS(1440),
- [anon_sym_export] = ACTIONS(1372),
- [anon_sym_type] = ACTIONS(1372),
- [anon_sym_namespace] = ACTIONS(1374),
- [anon_sym_LBRACE] = ACTIONS(2055),
- [anon_sym_typeof] = ACTIONS(21),
- [anon_sym_import] = ACTIONS(133),
- [anon_sym_let] = ACTIONS(1372),
- [anon_sym_BANG] = ACTIONS(33),
- [anon_sym_LPAREN] = ACTIONS(41),
- [anon_sym_await] = ACTIONS(43),
- [anon_sym_yield] = ACTIONS(63),
- [anon_sym_LBRACK] = ACTIONS(65),
- [sym_glimmer_opening_tag] = ACTIONS(67),
- [anon_sym_DQUOTE] = ACTIONS(69),
- [anon_sym_SQUOTE] = ACTIONS(71),
- [anon_sym_class] = ACTIONS(709),
- [anon_sym_async] = ACTIONS(1378),
- [anon_sym_function] = ACTIONS(713),
- [anon_sym_new] = ACTIONS(1444),
- [anon_sym_using] = ACTIONS(81),
- [anon_sym_PLUS] = ACTIONS(21),
- [anon_sym_DASH] = ACTIONS(21),
- [anon_sym_SLASH] = ACTIONS(83),
- [anon_sym_LT] = ACTIONS(85),
- [anon_sym_TILDE] = ACTIONS(33),
- [anon_sym_void] = ACTIONS(21),
- [anon_sym_delete] = ACTIONS(21),
- [anon_sym_PLUS_PLUS] = ACTIONS(87),
- [anon_sym_DASH_DASH] = ACTIONS(87),
- [sym_comment] = ACTIONS(5),
- [anon_sym_BQUOTE] = ACTIONS(89),
- [sym_number] = ACTIONS(91),
- [sym_private_property_identifier] = ACTIONS(93),
- [sym_this] = ACTIONS(95),
- [sym_super] = ACTIONS(95),
- [sym_true] = ACTIONS(95),
- [sym_false] = ACTIONS(95),
- [sym_null] = ACTIONS(95),
- [sym_undefined] = ACTIONS(97),
- [anon_sym_AT] = ACTIONS(99),
- [anon_sym_static] = ACTIONS(1372),
- [anon_sym_readonly] = ACTIONS(1372),
- [anon_sym_get] = ACTIONS(1372),
- [anon_sym_set] = ACTIONS(1372),
- [anon_sym_declare] = ACTIONS(1372),
- [anon_sym_public] = ACTIONS(1372),
- [anon_sym_private] = ACTIONS(1372),
- [anon_sym_protected] = ACTIONS(1372),
- [anon_sym_override] = ACTIONS(1372),
- [anon_sym_module] = ACTIONS(1372),
- [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_object] = ACTIONS(1372),
- [sym_html_comment] = ACTIONS(5),
- },
- [309] = {
- [sym_import] = STATE(3334),
- [sym_parenthesized_expression] = STATE(1251),
- [sym_expression] = STATE(1856),
- [sym_primary_expression] = STATE(1468),
- [sym_yield_expression] = STATE(1634),
- [sym_object] = STATE(1650),
- [sym_object_pattern] = STATE(5633),
- [sym_array] = STATE(1650),
- [sym_array_pattern] = STATE(5633),
- [sym_glimmer_template] = STATE(1634),
- [sym_jsx_element] = STATE(1634),
- [sym_jsx_opening_element] = STATE(3026),
- [sym_jsx_self_closing_element] = STATE(1634),
- [sym_class] = STATE(1650),
- [sym_function_expression] = STATE(1650),
- [sym_generator_function] = STATE(1650),
- [sym_arrow_function] = STATE(1650),
- [sym__call_signature] = STATE(5828),
- [sym_call_expression] = STATE(1650),
- [sym_new_expression] = STATE(1634),
- [sym_await_expression] = STATE(1634),
- [sym_member_expression] = STATE(1251),
- [sym_subscript_expression] = STATE(1251),
- [sym_assignment_expression] = STATE(1634),
- [sym__augmented_assignment_lhs] = STATE(2900),
- [sym_augmented_assignment_expression] = STATE(1634),
- [sym__destructuring_pattern] = STATE(5633),
- [sym_ternary_expression] = STATE(1634),
- [sym_binary_expression] = STATE(1634),
- [sym_unary_expression] = STATE(1634),
- [sym_update_expression] = STATE(1634),
- [sym_sequence_expression] = STATE(5676),
- [sym_string] = STATE(1650),
- [sym_template_string] = STATE(1650),
- [sym_regex] = STATE(1650),
- [sym_meta_property] = STATE(1650),
- [sym_decorator] = STATE(1244),
- [sym_formal_parameters] = STATE(3742),
- [sym_non_null_expression] = STATE(1251),
- [sym_as_expression] = STATE(1634),
- [sym_satisfies_expression] = STATE(1634),
- [sym_instantiation_expression] = STATE(1634),
- [sym_internal_module] = STATE(1634),
- [sym_type_parameters] = STATE(5349),
- [aux_sym_export_statement_repeat1] = STATE(4458),
- [sym_identifier] = ACTIONS(1428),
- [anon_sym_export] = ACTIONS(1044),
- [anon_sym_type] = ACTIONS(1044),
- [anon_sym_namespace] = ACTIONS(1046),
- [anon_sym_LBRACE] = ACTIONS(813),
- [anon_sym_typeof] = ACTIONS(650),
- [anon_sym_import] = ACTIONS(133),
- [anon_sym_let] = ACTIONS(1044),
- [anon_sym_BANG] = ACTIONS(622),
- [anon_sym_LPAREN] = ACTIONS(815),
- [anon_sym_await] = ACTIONS(624),
- [anon_sym_yield] = ACTIONS(626),
- [anon_sym_LBRACK] = ACTIONS(817),
- [sym_glimmer_opening_tag] = ACTIONS(148),
- [anon_sym_DQUOTE] = ACTIONS(150),
- [anon_sym_SQUOTE] = ACTIONS(152),
- [anon_sym_class] = ACTIONS(154),
- [anon_sym_async] = ACTIONS(1052),
- [anon_sym_function] = ACTIONS(158),
- [anon_sym_new] = ACTIONS(1436),
- [anon_sym_using] = ACTIONS(636),
- [anon_sym_PLUS] = ACTIONS(650),
- [anon_sym_DASH] = ACTIONS(650),
- [anon_sym_SLASH] = ACTIONS(646),
- [anon_sym_LT] = ACTIONS(181),
- [anon_sym_TILDE] = ACTIONS(622),
- [anon_sym_void] = ACTIONS(650),
- [anon_sym_delete] = ACTIONS(650),
- [anon_sym_PLUS_PLUS] = ACTIONS(652),
- [anon_sym_DASH_DASH] = ACTIONS(652),
- [sym_comment] = ACTIONS(5),
- [anon_sym_BQUOTE] = ACTIONS(825),
- [sym_number] = ACTIONS(787),
- [sym_private_property_identifier] = ACTIONS(654),
- [sym_this] = ACTIONS(200),
- [sym_super] = ACTIONS(200),
- [sym_true] = ACTIONS(200),
- [sym_false] = ACTIONS(200),
- [sym_null] = ACTIONS(200),
- [sym_undefined] = ACTIONS(1438),
- [anon_sym_AT] = ACTIONS(99),
- [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_override] = 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_object] = ACTIONS(1044),
- [sym_html_comment] = ACTIONS(5),
- },
- [310] = {
- [sym_import] = STATE(3306),
- [sym_parenthesized_expression] = STATE(1294),
- [sym_expression] = STATE(1750),
- [sym_primary_expression] = STATE(1946),
- [sym_yield_expression] = STATE(2234),
- [sym_object] = STATE(2310),
- [sym_object_pattern] = STATE(5667),
- [sym_array] = STATE(2310),
- [sym_array_pattern] = STATE(5667),
- [sym_glimmer_template] = STATE(2234),
- [sym_jsx_element] = STATE(2234),
- [sym_jsx_opening_element] = STATE(3051),
- [sym_jsx_self_closing_element] = STATE(2234),
- [sym_class] = STATE(2310),
- [sym_function_expression] = STATE(2310),
- [sym_generator_function] = STATE(2310),
- [sym_arrow_function] = STATE(2310),
- [sym__call_signature] = STATE(5809),
- [sym_call_expression] = STATE(2310),
- [sym_new_expression] = STATE(2234),
- [sym_await_expression] = STATE(2234),
- [sym_member_expression] = STATE(1294),
- [sym_subscript_expression] = STATE(1294),
- [sym_assignment_expression] = STATE(2234),
- [sym__augmented_assignment_lhs] = STATE(2875),
- [sym_augmented_assignment_expression] = STATE(2234),
- [sym__destructuring_pattern] = STATE(5667),
- [sym_ternary_expression] = STATE(2234),
- [sym_binary_expression] = STATE(2234),
- [sym_unary_expression] = STATE(2234),
- [sym_update_expression] = STATE(2234),
- [sym_sequence_expression] = STATE(5450),
- [sym_string] = STATE(2310),
- [sym_template_string] = STATE(2310),
- [sym_regex] = STATE(2310),
- [sym_meta_property] = STATE(2310),
- [sym_decorator] = STATE(1244),
- [sym_formal_parameters] = STATE(3742),
- [sym_non_null_expression] = STATE(1294),
- [sym_as_expression] = STATE(2234),
- [sym_satisfies_expression] = STATE(2234),
- [sym_instantiation_expression] = STATE(2234),
- [sym_internal_module] = STATE(2234),
- [sym_type_parameters] = STATE(5349),
- [aux_sym_export_statement_repeat1] = STATE(4499),
- [sym_identifier] = ACTIONS(1440),
- [anon_sym_export] = ACTIONS(1372),
- [anon_sym_type] = ACTIONS(1372),
- [anon_sym_namespace] = ACTIONS(1374),
- [anon_sym_LBRACE] = ACTIONS(700),
- [anon_sym_typeof] = ACTIONS(21),
- [anon_sym_import] = ACTIONS(133),
- [anon_sym_let] = ACTIONS(1372),
- [anon_sym_BANG] = ACTIONS(33),
- [anon_sym_LPAREN] = ACTIONS(41),
- [anon_sym_await] = ACTIONS(43),
- [anon_sym_yield] = ACTIONS(63),
- [anon_sym_LBRACK] = ACTIONS(65),
- [sym_glimmer_opening_tag] = ACTIONS(67),
- [anon_sym_DQUOTE] = ACTIONS(69),
- [anon_sym_SQUOTE] = ACTIONS(71),
- [anon_sym_class] = ACTIONS(709),
- [anon_sym_async] = ACTIONS(1378),
- [anon_sym_function] = ACTIONS(713),
- [anon_sym_new] = ACTIONS(1444),
- [anon_sym_using] = ACTIONS(81),
- [anon_sym_PLUS] = ACTIONS(21),
- [anon_sym_DASH] = ACTIONS(21),
- [anon_sym_SLASH] = ACTIONS(83),
- [anon_sym_LT] = ACTIONS(85),
- [anon_sym_TILDE] = ACTIONS(33),
- [anon_sym_void] = ACTIONS(21),
- [anon_sym_delete] = ACTIONS(21),
- [anon_sym_PLUS_PLUS] = ACTIONS(87),
- [anon_sym_DASH_DASH] = ACTIONS(87),
- [sym_comment] = ACTIONS(5),
- [anon_sym_BQUOTE] = ACTIONS(89),
- [sym_number] = ACTIONS(91),
- [sym_private_property_identifier] = ACTIONS(93),
- [sym_this] = ACTIONS(95),
- [sym_super] = ACTIONS(95),
- [sym_true] = ACTIONS(95),
- [sym_false] = ACTIONS(95),
- [sym_null] = ACTIONS(95),
- [sym_undefined] = ACTIONS(97),
- [anon_sym_AT] = ACTIONS(99),
- [anon_sym_static] = ACTIONS(1372),
- [anon_sym_readonly] = ACTIONS(1372),
- [anon_sym_get] = ACTIONS(1372),
- [anon_sym_set] = ACTIONS(1372),
- [anon_sym_declare] = ACTIONS(1372),
- [anon_sym_public] = ACTIONS(1372),
- [anon_sym_private] = ACTIONS(1372),
- [anon_sym_protected] = ACTIONS(1372),
- [anon_sym_override] = ACTIONS(1372),
- [anon_sym_module] = ACTIONS(1372),
- [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_object] = ACTIONS(1372),
- [sym_html_comment] = ACTIONS(5),
- },
- [311] = {
- [sym_import] = STATE(3334),
- [sym_parenthesized_expression] = STATE(1251),
- [sym_expression] = STATE(1599),
- [sym_primary_expression] = STATE(1468),
- [sym_yield_expression] = STATE(1634),
- [sym_object] = STATE(1650),
- [sym_object_pattern] = STATE(5633),
- [sym_array] = STATE(1650),
- [sym_array_pattern] = STATE(5633),
- [sym_glimmer_template] = STATE(1634),
- [sym_jsx_element] = STATE(1634),
- [sym_jsx_opening_element] = STATE(3026),
- [sym_jsx_self_closing_element] = STATE(1634),
- [sym_class] = STATE(1650),
- [sym_function_expression] = STATE(1650),
- [sym_generator_function] = STATE(1650),
- [sym_arrow_function] = STATE(1650),
- [sym__call_signature] = STATE(5828),
- [sym_call_expression] = STATE(1650),
- [sym_new_expression] = STATE(1634),
- [sym_await_expression] = STATE(1634),
- [sym_member_expression] = STATE(1251),
- [sym_subscript_expression] = STATE(1251),
- [sym_assignment_expression] = STATE(1634),
- [sym__augmented_assignment_lhs] = STATE(2900),
- [sym_augmented_assignment_expression] = STATE(1634),
- [sym__destructuring_pattern] = STATE(5633),
- [sym_ternary_expression] = STATE(1634),
- [sym_binary_expression] = STATE(1634),
- [sym_unary_expression] = STATE(1634),
- [sym_update_expression] = STATE(1634),
- [sym_sequence_expression] = STATE(5900),
- [sym_string] = STATE(1650),
- [sym_template_string] = STATE(1650),
- [sym_regex] = STATE(1650),
- [sym_meta_property] = STATE(1650),
- [sym_decorator] = STATE(1244),
- [sym_formal_parameters] = STATE(3742),
- [sym_non_null_expression] = STATE(1251),
- [sym_as_expression] = STATE(1634),
- [sym_satisfies_expression] = STATE(1634),
- [sym_instantiation_expression] = STATE(1634),
- [sym_internal_module] = STATE(1634),
- [sym_type_parameters] = STATE(5349),
- [aux_sym_export_statement_repeat1] = STATE(4458),
- [sym_identifier] = ACTIONS(1428),
- [anon_sym_export] = ACTIONS(1044),
- [anon_sym_type] = ACTIONS(1044),
- [anon_sym_namespace] = ACTIONS(1046),
- [anon_sym_LBRACE] = ACTIONS(813),
- [anon_sym_typeof] = ACTIONS(650),
- [anon_sym_import] = ACTIONS(133),
- [anon_sym_let] = ACTIONS(1044),
- [anon_sym_BANG] = ACTIONS(622),
- [anon_sym_LPAREN] = ACTIONS(815),
- [anon_sym_await] = ACTIONS(624),
- [anon_sym_yield] = ACTIONS(626),
- [anon_sym_LBRACK] = ACTIONS(817),
- [sym_glimmer_opening_tag] = ACTIONS(148),
- [anon_sym_DQUOTE] = ACTIONS(150),
- [anon_sym_SQUOTE] = ACTIONS(152),
- [anon_sym_class] = ACTIONS(154),
- [anon_sym_async] = ACTIONS(1052),
- [anon_sym_function] = ACTIONS(158),
- [anon_sym_new] = ACTIONS(1436),
- [anon_sym_using] = ACTIONS(636),
- [anon_sym_PLUS] = ACTIONS(650),
- [anon_sym_DASH] = ACTIONS(650),
- [anon_sym_SLASH] = ACTIONS(646),
- [anon_sym_LT] = ACTIONS(181),
- [anon_sym_TILDE] = ACTIONS(622),
- [anon_sym_void] = ACTIONS(650),
- [anon_sym_delete] = ACTIONS(650),
- [anon_sym_PLUS_PLUS] = ACTIONS(652),
- [anon_sym_DASH_DASH] = ACTIONS(652),
- [sym_comment] = ACTIONS(5),
- [anon_sym_BQUOTE] = ACTIONS(825),
- [sym_number] = ACTIONS(787),
- [sym_private_property_identifier] = ACTIONS(654),
- [sym_this] = ACTIONS(200),
- [sym_super] = ACTIONS(200),
- [sym_true] = ACTIONS(200),
- [sym_false] = ACTIONS(200),
- [sym_null] = ACTIONS(200),
- [sym_undefined] = ACTIONS(1438),
- [anon_sym_AT] = ACTIONS(99),
- [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_override] = 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_object] = ACTIONS(1044),
- [sym_html_comment] = ACTIONS(5),
- },
- [312] = {
- [sym_import] = STATE(3306),
- [sym_statement_block] = STATE(2149),
- [sym_parenthesized_expression] = STATE(1294),
- [sym_expression] = STATE(1720),
- [sym_primary_expression] = STATE(1946),
- [sym_yield_expression] = STATE(2234),
- [sym_object] = STATE(2310),
- [sym_object_pattern] = STATE(5667),
- [sym_array] = STATE(2310),
- [sym_array_pattern] = STATE(5667),
- [sym_glimmer_template] = STATE(2234),
- [sym_jsx_element] = STATE(2234),
- [sym_jsx_opening_element] = STATE(3051),
- [sym_jsx_self_closing_element] = STATE(2234),
- [sym_class] = STATE(2310),
- [sym_function_expression] = STATE(2310),
- [sym_generator_function] = STATE(2310),
- [sym_arrow_function] = STATE(2310),
- [sym__call_signature] = STATE(5809),
- [sym_call_expression] = STATE(2310),
- [sym_new_expression] = STATE(2234),
- [sym_await_expression] = STATE(2234),
- [sym_member_expression] = STATE(1294),
- [sym_subscript_expression] = STATE(1294),
- [sym_assignment_expression] = STATE(2234),
- [sym__augmented_assignment_lhs] = STATE(2875),
- [sym_augmented_assignment_expression] = STATE(2234),
- [sym__destructuring_pattern] = STATE(5667),
- [sym_ternary_expression] = STATE(2234),
- [sym_binary_expression] = STATE(2234),
- [sym_unary_expression] = STATE(2234),
- [sym_update_expression] = STATE(2234),
- [sym_string] = STATE(2310),
- [sym_template_string] = STATE(2310),
- [sym_regex] = STATE(2310),
- [sym_meta_property] = STATE(2310),
- [sym_decorator] = STATE(1244),
- [sym_formal_parameters] = STATE(3742),
- [sym_non_null_expression] = STATE(1294),
- [sym_as_expression] = STATE(2234),
- [sym_satisfies_expression] = STATE(2234),
- [sym_instantiation_expression] = STATE(2234),
- [sym_internal_module] = STATE(2234),
- [sym_type_parameters] = STATE(5349),
- [aux_sym_export_statement_repeat1] = STATE(4499),
- [sym_identifier] = ACTIONS(1440),
- [anon_sym_export] = ACTIONS(1372),
- [anon_sym_type] = ACTIONS(1372),
- [anon_sym_namespace] = ACTIONS(1374),
- [anon_sym_LBRACE] = ACTIONS(2055),
- [anon_sym_typeof] = ACTIONS(21),
- [anon_sym_import] = ACTIONS(133),
- [anon_sym_let] = ACTIONS(1372),
- [anon_sym_BANG] = ACTIONS(33),
- [anon_sym_LPAREN] = ACTIONS(41),
- [anon_sym_await] = ACTIONS(43),
- [anon_sym_yield] = ACTIONS(63),
- [anon_sym_LBRACK] = ACTIONS(65),
- [sym_glimmer_opening_tag] = ACTIONS(67),
- [anon_sym_DQUOTE] = ACTIONS(69),
- [anon_sym_SQUOTE] = ACTIONS(71),
- [anon_sym_class] = ACTIONS(709),
- [anon_sym_async] = ACTIONS(1378),
- [anon_sym_function] = ACTIONS(713),
- [anon_sym_new] = ACTIONS(1444),
- [anon_sym_using] = ACTIONS(81),
- [anon_sym_PLUS] = ACTIONS(21),
- [anon_sym_DASH] = ACTIONS(21),
- [anon_sym_SLASH] = ACTIONS(83),
- [anon_sym_LT] = ACTIONS(85),
- [anon_sym_TILDE] = ACTIONS(33),
- [anon_sym_void] = ACTIONS(21),
- [anon_sym_delete] = ACTIONS(21),
- [anon_sym_PLUS_PLUS] = ACTIONS(87),
- [anon_sym_DASH_DASH] = ACTIONS(87),
- [sym_comment] = ACTIONS(5),
- [anon_sym_BQUOTE] = ACTIONS(89),
- [sym_number] = ACTIONS(91),
- [sym_private_property_identifier] = ACTIONS(93),
- [sym_this] = ACTIONS(95),
- [sym_super] = ACTIONS(95),
- [sym_true] = ACTIONS(95),
- [sym_false] = ACTIONS(95),
- [sym_null] = ACTIONS(95),
- [sym_undefined] = ACTIONS(97),
- [anon_sym_AT] = ACTIONS(99),
- [anon_sym_static] = ACTIONS(1372),
- [anon_sym_readonly] = ACTIONS(1372),
- [anon_sym_get] = ACTIONS(1372),
- [anon_sym_set] = ACTIONS(1372),
- [anon_sym_declare] = ACTIONS(1372),
- [anon_sym_public] = ACTIONS(1372),
- [anon_sym_private] = ACTIONS(1372),
- [anon_sym_protected] = ACTIONS(1372),
- [anon_sym_override] = ACTIONS(1372),
- [anon_sym_module] = ACTIONS(1372),
- [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_object] = ACTIONS(1372),
- [sym_html_comment] = ACTIONS(5),
- },
- [313] = {
- [sym_import] = STATE(3306),
- [sym_statement_block] = STATE(2149),
- [sym_parenthesized_expression] = STATE(1338),
- [sym_expression] = STATE(1983),
- [sym_primary_expression] = STATE(1946),
- [sym_yield_expression] = STATE(2234),
- [sym_object] = STATE(2310),
- [sym_object_pattern] = STATE(5571),
- [sym_array] = STATE(2310),
- [sym_array_pattern] = STATE(5571),
- [sym_glimmer_template] = STATE(2234),
- [sym_jsx_element] = STATE(2234),
- [sym_jsx_opening_element] = STATE(3051),
- [sym_jsx_self_closing_element] = STATE(2234),
- [sym_class] = STATE(2310),
- [sym_function_expression] = STATE(2310),
- [sym_generator_function] = STATE(2310),
- [sym_arrow_function] = STATE(2310),
- [sym__call_signature] = STATE(5569),
- [sym_call_expression] = STATE(2310),
- [sym_new_expression] = STATE(2234),
- [sym_await_expression] = STATE(2234),
- [sym_member_expression] = STATE(1338),
- [sym_subscript_expression] = STATE(1338),
- [sym_assignment_expression] = STATE(2234),
- [sym__augmented_assignment_lhs] = STATE(2899),
- [sym_augmented_assignment_expression] = STATE(2234),
- [sym__destructuring_pattern] = STATE(5571),
- [sym_ternary_expression] = STATE(2234),
- [sym_binary_expression] = STATE(2234),
- [sym_unary_expression] = STATE(2234),
- [sym_update_expression] = STATE(2234),
- [sym_string] = STATE(2310),
- [sym_template_string] = STATE(2310),
- [sym_regex] = STATE(2310),
- [sym_meta_property] = STATE(2310),
- [sym_decorator] = STATE(1244),
- [sym_formal_parameters] = STATE(3742),
- [sym_non_null_expression] = STATE(1338),
- [sym_as_expression] = STATE(2234),
- [sym_satisfies_expression] = STATE(2234),
- [sym_instantiation_expression] = STATE(2234),
- [sym_internal_module] = STATE(2234),
- [sym_type_parameters] = STATE(5349),
- [aux_sym_export_statement_repeat1] = STATE(4499),
- [sym_identifier] = ACTIONS(1454),
- [anon_sym_export] = ACTIONS(1152),
- [anon_sym_type] = ACTIONS(1152),
- [anon_sym_namespace] = ACTIONS(1154),
- [anon_sym_LBRACE] = ACTIONS(2055),
- [anon_sym_typeof] = ACTIONS(1180),
- [anon_sym_import] = ACTIONS(133),
- [anon_sym_let] = ACTIONS(1152),
- [anon_sym_BANG] = ACTIONS(1160),
- [anon_sym_LPAREN] = ACTIONS(41),
- [anon_sym_await] = ACTIONS(1164),
- [anon_sym_yield] = ACTIONS(1166),
- [anon_sym_LBRACK] = ACTIONS(65),
- [sym_glimmer_opening_tag] = ACTIONS(67),
- [anon_sym_DQUOTE] = ACTIONS(69),
- [anon_sym_SQUOTE] = ACTIONS(71),
- [anon_sym_class] = ACTIONS(709),
- [anon_sym_async] = ACTIONS(1170),
- [anon_sym_function] = ACTIONS(713),
- [anon_sym_new] = ACTIONS(1458),
- [anon_sym_using] = ACTIONS(1174),
- [anon_sym_PLUS] = ACTIONS(1180),
- [anon_sym_DASH] = ACTIONS(1180),
- [anon_sym_SLASH] = ACTIONS(83),
- [anon_sym_LT] = ACTIONS(85),
- [anon_sym_TILDE] = ACTIONS(1160),
- [anon_sym_void] = ACTIONS(1180),
- [anon_sym_delete] = ACTIONS(1180),
- [anon_sym_PLUS_PLUS] = ACTIONS(1182),
- [anon_sym_DASH_DASH] = ACTIONS(1182),
- [sym_comment] = ACTIONS(5),
- [anon_sym_BQUOTE] = ACTIONS(89),
- [sym_number] = ACTIONS(91),
- [sym_private_property_identifier] = ACTIONS(1188),
- [sym_this] = ACTIONS(95),
- [sym_super] = ACTIONS(95),
- [sym_true] = ACTIONS(95),
- [sym_false] = ACTIONS(95),
- [sym_null] = ACTIONS(95),
- [sym_undefined] = ACTIONS(1460),
- [anon_sym_AT] = ACTIONS(99),
- [anon_sym_static] = ACTIONS(1152),
- [anon_sym_readonly] = ACTIONS(1152),
- [anon_sym_get] = ACTIONS(1152),
- [anon_sym_set] = ACTIONS(1152),
- [anon_sym_declare] = ACTIONS(1152),
- [anon_sym_public] = ACTIONS(1152),
- [anon_sym_private] = ACTIONS(1152),
- [anon_sym_protected] = ACTIONS(1152),
- [anon_sym_override] = ACTIONS(1152),
- [anon_sym_module] = ACTIONS(1152),
- [anon_sym_any] = ACTIONS(1152),
- [anon_sym_number] = ACTIONS(1152),
- [anon_sym_boolean] = ACTIONS(1152),
- [anon_sym_string] = ACTIONS(1152),
- [anon_sym_symbol] = ACTIONS(1152),
- [anon_sym_object] = ACTIONS(1152),
- [sym_html_comment] = ACTIONS(5),
- },
- [314] = {
- [sym_import] = STATE(3334),
- [sym_parenthesized_expression] = STATE(1251),
- [sym_expression] = STATE(1884),
- [sym_primary_expression] = STATE(1468),
- [sym_yield_expression] = STATE(1634),
- [sym_object] = STATE(1650),
- [sym_object_pattern] = STATE(5633),
- [sym_array] = STATE(1650),
- [sym_array_pattern] = STATE(5633),
- [sym_glimmer_template] = STATE(1634),
- [sym_jsx_element] = STATE(1634),
- [sym_jsx_opening_element] = STATE(3026),
- [sym_jsx_self_closing_element] = STATE(1634),
- [sym_class] = STATE(1650),
- [sym_function_expression] = STATE(1650),
- [sym_generator_function] = STATE(1650),
- [sym_arrow_function] = STATE(1650),
- [sym__call_signature] = STATE(5828),
- [sym_call_expression] = STATE(1650),
- [sym_new_expression] = STATE(1634),
- [sym_await_expression] = STATE(1634),
- [sym_member_expression] = STATE(1251),
- [sym_subscript_expression] = STATE(1251),
- [sym_assignment_expression] = STATE(1634),
- [sym__augmented_assignment_lhs] = STATE(2900),
- [sym_augmented_assignment_expression] = STATE(1634),
- [sym__destructuring_pattern] = STATE(5633),
- [sym_ternary_expression] = STATE(1634),
- [sym_binary_expression] = STATE(1634),
- [sym_unary_expression] = STATE(1634),
- [sym_update_expression] = STATE(1634),
- [sym_sequence_expression] = STATE(5886),
- [sym_string] = STATE(1650),
- [sym_template_string] = STATE(1650),
- [sym_regex] = STATE(1650),
- [sym_meta_property] = STATE(1650),
- [sym_decorator] = STATE(1244),
- [sym_formal_parameters] = STATE(3742),
- [sym_non_null_expression] = STATE(1251),
- [sym_as_expression] = STATE(1634),
- [sym_satisfies_expression] = STATE(1634),
- [sym_instantiation_expression] = STATE(1634),
- [sym_internal_module] = STATE(1634),
- [sym_type_parameters] = STATE(5349),
- [aux_sym_export_statement_repeat1] = STATE(4458),
- [sym_identifier] = ACTIONS(1428),
- [anon_sym_export] = ACTIONS(1044),
- [anon_sym_type] = ACTIONS(1044),
- [anon_sym_namespace] = ACTIONS(1046),
- [anon_sym_LBRACE] = ACTIONS(813),
- [anon_sym_typeof] = ACTIONS(650),
- [anon_sym_import] = ACTIONS(133),
- [anon_sym_let] = ACTIONS(1044),
- [anon_sym_BANG] = ACTIONS(622),
- [anon_sym_LPAREN] = ACTIONS(815),
- [anon_sym_await] = ACTIONS(624),
- [anon_sym_yield] = ACTIONS(626),
- [anon_sym_LBRACK] = ACTIONS(817),
- [sym_glimmer_opening_tag] = ACTIONS(148),
- [anon_sym_DQUOTE] = ACTIONS(150),
- [anon_sym_SQUOTE] = ACTIONS(152),
- [anon_sym_class] = ACTIONS(154),
- [anon_sym_async] = ACTIONS(1052),
- [anon_sym_function] = ACTIONS(158),
- [anon_sym_new] = ACTIONS(1436),
- [anon_sym_using] = ACTIONS(636),
- [anon_sym_PLUS] = ACTIONS(650),
- [anon_sym_DASH] = ACTIONS(650),
- [anon_sym_SLASH] = ACTIONS(646),
- [anon_sym_LT] = ACTIONS(181),
- [anon_sym_TILDE] = ACTIONS(622),
- [anon_sym_void] = ACTIONS(650),
- [anon_sym_delete] = ACTIONS(650),
- [anon_sym_PLUS_PLUS] = ACTIONS(652),
- [anon_sym_DASH_DASH] = ACTIONS(652),
- [sym_comment] = ACTIONS(5),
- [anon_sym_BQUOTE] = ACTIONS(825),
- [sym_number] = ACTIONS(787),
- [sym_private_property_identifier] = ACTIONS(654),
- [sym_this] = ACTIONS(200),
- [sym_super] = ACTIONS(200),
- [sym_true] = ACTIONS(200),
- [sym_false] = ACTIONS(200),
- [sym_null] = ACTIONS(200),
- [sym_undefined] = ACTIONS(1438),
- [anon_sym_AT] = ACTIONS(99),
- [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_override] = 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_object] = ACTIONS(1044),
- [sym_html_comment] = ACTIONS(5),
- },
- [315] = {
- [sym_import] = STATE(3334),
- [sym_parenthesized_expression] = STATE(1251),
- [sym_expression] = STATE(1885),
- [sym_primary_expression] = STATE(1468),
- [sym_yield_expression] = STATE(1634),
- [sym_object] = STATE(1650),
- [sym_object_pattern] = STATE(5633),
- [sym_array] = STATE(1650),
- [sym_array_pattern] = STATE(5633),
- [sym_glimmer_template] = STATE(1634),
- [sym_jsx_element] = STATE(1634),
- [sym_jsx_opening_element] = STATE(3026),
- [sym_jsx_self_closing_element] = STATE(1634),
- [sym_class] = STATE(1650),
- [sym_function_expression] = STATE(1650),
- [sym_generator_function] = STATE(1650),
- [sym_arrow_function] = STATE(1650),
- [sym__call_signature] = STATE(5828),
- [sym_call_expression] = STATE(1650),
- [sym_new_expression] = STATE(1634),
- [sym_await_expression] = STATE(1634),
- [sym_member_expression] = STATE(1251),
- [sym_subscript_expression] = STATE(1251),
- [sym_assignment_expression] = STATE(1634),
- [sym__augmented_assignment_lhs] = STATE(2900),
- [sym_augmented_assignment_expression] = STATE(1634),
- [sym__destructuring_pattern] = STATE(5633),
- [sym_ternary_expression] = STATE(1634),
- [sym_binary_expression] = STATE(1634),
- [sym_unary_expression] = STATE(1634),
- [sym_update_expression] = STATE(1634),
- [sym_sequence_expression] = STATE(5899),
- [sym_string] = STATE(1650),
- [sym_template_string] = STATE(1650),
- [sym_regex] = STATE(1650),
- [sym_meta_property] = STATE(1650),
- [sym_decorator] = STATE(1244),
- [sym_formal_parameters] = STATE(3742),
- [sym_non_null_expression] = STATE(1251),
- [sym_as_expression] = STATE(1634),
- [sym_satisfies_expression] = STATE(1634),
- [sym_instantiation_expression] = STATE(1634),
- [sym_internal_module] = STATE(1634),
- [sym_type_parameters] = STATE(5349),
- [aux_sym_export_statement_repeat1] = STATE(4458),
- [sym_identifier] = ACTIONS(1428),
- [anon_sym_export] = ACTIONS(1044),
- [anon_sym_type] = ACTIONS(1044),
- [anon_sym_namespace] = ACTIONS(1046),
- [anon_sym_LBRACE] = ACTIONS(813),
- [anon_sym_typeof] = ACTIONS(650),
- [anon_sym_import] = ACTIONS(133),
- [anon_sym_let] = ACTIONS(1044),
- [anon_sym_BANG] = ACTIONS(622),
- [anon_sym_LPAREN] = ACTIONS(815),
- [anon_sym_await] = ACTIONS(624),
- [anon_sym_yield] = ACTIONS(626),
- [anon_sym_LBRACK] = ACTIONS(817),
- [sym_glimmer_opening_tag] = ACTIONS(148),
- [anon_sym_DQUOTE] = ACTIONS(150),
- [anon_sym_SQUOTE] = ACTIONS(152),
- [anon_sym_class] = ACTIONS(154),
- [anon_sym_async] = ACTIONS(1052),
- [anon_sym_function] = ACTIONS(158),
- [anon_sym_new] = ACTIONS(1436),
- [anon_sym_using] = ACTIONS(636),
- [anon_sym_PLUS] = ACTIONS(650),
- [anon_sym_DASH] = ACTIONS(650),
- [anon_sym_SLASH] = ACTIONS(646),
- [anon_sym_LT] = ACTIONS(181),
- [anon_sym_TILDE] = ACTIONS(622),
- [anon_sym_void] = ACTIONS(650),
- [anon_sym_delete] = ACTIONS(650),
- [anon_sym_PLUS_PLUS] = ACTIONS(652),
- [anon_sym_DASH_DASH] = ACTIONS(652),
- [sym_comment] = ACTIONS(5),
- [anon_sym_BQUOTE] = ACTIONS(825),
- [sym_number] = ACTIONS(787),
- [sym_private_property_identifier] = ACTIONS(654),
- [sym_this] = ACTIONS(200),
- [sym_super] = ACTIONS(200),
- [sym_true] = ACTIONS(200),
- [sym_false] = ACTIONS(200),
- [sym_null] = ACTIONS(200),
- [sym_undefined] = ACTIONS(1438),
- [anon_sym_AT] = ACTIONS(99),
- [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_override] = 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_object] = ACTIONS(1044),
- [sym_html_comment] = ACTIONS(5),
- },
- [316] = {
- [sym_import] = STATE(3334),
- [sym_parenthesized_expression] = STATE(1251),
- [sym_expression] = STATE(1562),
- [sym_primary_expression] = STATE(1468),
- [sym_yield_expression] = STATE(1634),
- [sym_object] = STATE(1650),
- [sym_object_pattern] = STATE(5633),
- [sym_array] = STATE(1650),
- [sym_array_pattern] = STATE(5633),
- [sym_glimmer_template] = STATE(1634),
- [sym_jsx_element] = STATE(1634),
- [sym_jsx_opening_element] = STATE(3026),
- [sym_jsx_self_closing_element] = STATE(1634),
- [sym_class] = STATE(1650),
- [sym_function_expression] = STATE(1650),
- [sym_generator_function] = STATE(1650),
- [sym_arrow_function] = STATE(1650),
- [sym__call_signature] = STATE(5828),
- [sym_call_expression] = STATE(1650),
- [sym_new_expression] = STATE(1634),
- [sym_await_expression] = STATE(1634),
- [sym_member_expression] = STATE(1251),
- [sym_subscript_expression] = STATE(1251),
- [sym_assignment_expression] = STATE(1634),
- [sym__augmented_assignment_lhs] = STATE(2900),
- [sym_augmented_assignment_expression] = STATE(1634),
- [sym__destructuring_pattern] = STATE(5633),
- [sym_ternary_expression] = STATE(1634),
- [sym_binary_expression] = STATE(1634),
- [sym_unary_expression] = STATE(1634),
- [sym_update_expression] = STATE(1634),
- [sym_sequence_expression] = STATE(5688),
- [sym_string] = STATE(1650),
- [sym_template_string] = STATE(1650),
- [sym_regex] = STATE(1650),
- [sym_meta_property] = STATE(1650),
- [sym_decorator] = STATE(1244),
- [sym_formal_parameters] = STATE(3742),
- [sym_non_null_expression] = STATE(1251),
- [sym_as_expression] = STATE(1634),
- [sym_satisfies_expression] = STATE(1634),
- [sym_instantiation_expression] = STATE(1634),
- [sym_internal_module] = STATE(1634),
- [sym_type_parameters] = STATE(5349),
- [aux_sym_export_statement_repeat1] = STATE(4458),
- [sym_identifier] = ACTIONS(1428),
- [anon_sym_export] = ACTIONS(1044),
- [anon_sym_type] = ACTIONS(1044),
- [anon_sym_namespace] = ACTIONS(1046),
- [anon_sym_LBRACE] = ACTIONS(813),
- [anon_sym_typeof] = ACTIONS(650),
- [anon_sym_import] = ACTIONS(133),
- [anon_sym_let] = ACTIONS(1044),
- [anon_sym_BANG] = ACTIONS(622),
- [anon_sym_LPAREN] = ACTIONS(815),
- [anon_sym_await] = ACTIONS(624),
- [anon_sym_yield] = ACTIONS(626),
- [anon_sym_LBRACK] = ACTIONS(817),
- [sym_glimmer_opening_tag] = ACTIONS(148),
- [anon_sym_DQUOTE] = ACTIONS(150),
- [anon_sym_SQUOTE] = ACTIONS(152),
- [anon_sym_class] = ACTIONS(154),
- [anon_sym_async] = ACTIONS(1052),
- [anon_sym_function] = ACTIONS(158),
- [anon_sym_new] = ACTIONS(1436),
- [anon_sym_using] = ACTIONS(636),
- [anon_sym_PLUS] = ACTIONS(650),
- [anon_sym_DASH] = ACTIONS(650),
- [anon_sym_SLASH] = ACTIONS(646),
- [anon_sym_LT] = ACTIONS(181),
- [anon_sym_TILDE] = ACTIONS(622),
- [anon_sym_void] = ACTIONS(650),
- [anon_sym_delete] = ACTIONS(650),
- [anon_sym_PLUS_PLUS] = ACTIONS(652),
- [anon_sym_DASH_DASH] = ACTIONS(652),
- [sym_comment] = ACTIONS(5),
- [anon_sym_BQUOTE] = ACTIONS(825),
- [sym_number] = ACTIONS(787),
- [sym_private_property_identifier] = ACTIONS(654),
- [sym_this] = ACTIONS(200),
- [sym_super] = ACTIONS(200),
- [sym_true] = ACTIONS(200),
- [sym_false] = ACTIONS(200),
- [sym_null] = ACTIONS(200),
- [sym_undefined] = ACTIONS(1438),
- [anon_sym_AT] = ACTIONS(99),
- [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_override] = 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_object] = ACTIONS(1044),
- [sym_html_comment] = ACTIONS(5),
- },
- [317] = {
- [sym_import] = STATE(3306),
- [sym_statement_block] = STATE(2215),
- [sym_parenthesized_expression] = STATE(1338),
- [sym_expression] = STATE(1989),
- [sym_primary_expression] = STATE(1946),
- [sym_yield_expression] = STATE(2234),
- [sym_object] = STATE(2310),
- [sym_object_pattern] = STATE(5571),
- [sym_array] = STATE(2310),
- [sym_array_pattern] = STATE(5571),
- [sym_glimmer_template] = STATE(2234),
- [sym_jsx_element] = STATE(2234),
- [sym_jsx_opening_element] = STATE(3051),
- [sym_jsx_self_closing_element] = STATE(2234),
- [sym_class] = STATE(2310),
- [sym_function_expression] = STATE(2310),
- [sym_generator_function] = STATE(2310),
- [sym_arrow_function] = STATE(2310),
- [sym__call_signature] = STATE(5569),
- [sym_call_expression] = STATE(2310),
- [sym_new_expression] = STATE(2234),
- [sym_await_expression] = STATE(2234),
- [sym_member_expression] = STATE(1338),
- [sym_subscript_expression] = STATE(1338),
- [sym_assignment_expression] = STATE(2234),
- [sym__augmented_assignment_lhs] = STATE(2899),
- [sym_augmented_assignment_expression] = STATE(2234),
- [sym__destructuring_pattern] = STATE(5571),
- [sym_ternary_expression] = STATE(2234),
- [sym_binary_expression] = STATE(2234),
- [sym_unary_expression] = STATE(2234),
- [sym_update_expression] = STATE(2234),
- [sym_string] = STATE(2310),
- [sym_template_string] = STATE(2310),
- [sym_regex] = STATE(2310),
- [sym_meta_property] = STATE(2310),
- [sym_decorator] = STATE(1244),
- [sym_formal_parameters] = STATE(3742),
- [sym_non_null_expression] = STATE(1338),
- [sym_as_expression] = STATE(2234),
- [sym_satisfies_expression] = STATE(2234),
- [sym_instantiation_expression] = STATE(2234),
- [sym_internal_module] = STATE(2234),
- [sym_type_parameters] = STATE(5349),
- [aux_sym_export_statement_repeat1] = STATE(4499),
- [sym_identifier] = ACTIONS(1454),
- [anon_sym_export] = ACTIONS(1152),
- [anon_sym_type] = ACTIONS(1152),
- [anon_sym_namespace] = ACTIONS(1154),
- [anon_sym_LBRACE] = ACTIONS(2055),
- [anon_sym_typeof] = ACTIONS(1180),
- [anon_sym_import] = ACTIONS(133),
- [anon_sym_let] = ACTIONS(1152),
- [anon_sym_BANG] = ACTIONS(1160),
- [anon_sym_LPAREN] = ACTIONS(41),
- [anon_sym_await] = ACTIONS(1164),
- [anon_sym_yield] = ACTIONS(1166),
- [anon_sym_LBRACK] = ACTIONS(65),
- [sym_glimmer_opening_tag] = ACTIONS(67),
- [anon_sym_DQUOTE] = ACTIONS(69),
- [anon_sym_SQUOTE] = ACTIONS(71),
- [anon_sym_class] = ACTIONS(709),
- [anon_sym_async] = ACTIONS(1170),
- [anon_sym_function] = ACTIONS(713),
- [anon_sym_new] = ACTIONS(1458),
- [anon_sym_using] = ACTIONS(1174),
- [anon_sym_PLUS] = ACTIONS(1180),
- [anon_sym_DASH] = ACTIONS(1180),
- [anon_sym_SLASH] = ACTIONS(83),
- [anon_sym_LT] = ACTIONS(85),
- [anon_sym_TILDE] = ACTIONS(1160),
- [anon_sym_void] = ACTIONS(1180),
- [anon_sym_delete] = ACTIONS(1180),
- [anon_sym_PLUS_PLUS] = ACTIONS(1182),
- [anon_sym_DASH_DASH] = ACTIONS(1182),
- [sym_comment] = ACTIONS(5),
- [anon_sym_BQUOTE] = ACTIONS(89),
- [sym_number] = ACTIONS(91),
- [sym_private_property_identifier] = ACTIONS(1188),
- [sym_this] = ACTIONS(95),
- [sym_super] = ACTIONS(95),
- [sym_true] = ACTIONS(95),
- [sym_false] = ACTIONS(95),
- [sym_null] = ACTIONS(95),
- [sym_undefined] = ACTIONS(1460),
- [anon_sym_AT] = ACTIONS(99),
- [anon_sym_static] = ACTIONS(1152),
- [anon_sym_readonly] = ACTIONS(1152),
- [anon_sym_get] = ACTIONS(1152),
- [anon_sym_set] = ACTIONS(1152),
- [anon_sym_declare] = ACTIONS(1152),
- [anon_sym_public] = ACTIONS(1152),
- [anon_sym_private] = ACTIONS(1152),
- [anon_sym_protected] = ACTIONS(1152),
- [anon_sym_override] = ACTIONS(1152),
- [anon_sym_module] = ACTIONS(1152),
- [anon_sym_any] = ACTIONS(1152),
- [anon_sym_number] = ACTIONS(1152),
- [anon_sym_boolean] = ACTIONS(1152),
- [anon_sym_string] = ACTIONS(1152),
- [anon_sym_symbol] = ACTIONS(1152),
- [anon_sym_object] = ACTIONS(1152),
- [sym_html_comment] = ACTIONS(5),
- },
- [318] = {
- [sym_import] = STATE(3334),
- [sym_parenthesized_expression] = STATE(1251),
- [sym_expression] = STATE(1833),
- [sym_primary_expression] = STATE(1468),
- [sym_yield_expression] = STATE(1634),
- [sym_object] = STATE(1650),
- [sym_object_pattern] = STATE(5633),
- [sym_array] = STATE(1650),
- [sym_array_pattern] = STATE(5633),
- [sym_glimmer_template] = STATE(1634),
- [sym_jsx_element] = STATE(1634),
- [sym_jsx_opening_element] = STATE(3026),
- [sym_jsx_self_closing_element] = STATE(1634),
- [sym_class] = STATE(1650),
- [sym_function_expression] = STATE(1650),
- [sym_generator_function] = STATE(1650),
- [sym_arrow_function] = STATE(1650),
- [sym__call_signature] = STATE(5828),
- [sym_call_expression] = STATE(1650),
- [sym_new_expression] = STATE(1634),
- [sym_await_expression] = STATE(1634),
- [sym_member_expression] = STATE(1251),
- [sym_subscript_expression] = STATE(1251),
- [sym_assignment_expression] = STATE(1634),
- [sym__augmented_assignment_lhs] = STATE(2900),
- [sym_augmented_assignment_expression] = STATE(1634),
- [sym__destructuring_pattern] = STATE(5633),
- [sym_ternary_expression] = STATE(1634),
- [sym_binary_expression] = STATE(1634),
- [sym_unary_expression] = STATE(1634),
- [sym_update_expression] = STATE(1634),
- [sym_sequence_expression] = STATE(5557),
- [sym_string] = STATE(1650),
- [sym_template_string] = STATE(1650),
- [sym_regex] = STATE(1650),
- [sym_meta_property] = STATE(1650),
- [sym_decorator] = STATE(1244),
- [sym_formal_parameters] = STATE(3742),
- [sym_non_null_expression] = STATE(1251),
- [sym_as_expression] = STATE(1634),
- [sym_satisfies_expression] = STATE(1634),
- [sym_instantiation_expression] = STATE(1634),
- [sym_internal_module] = STATE(1634),
- [sym_type_parameters] = STATE(5349),
- [aux_sym_export_statement_repeat1] = STATE(4458),
- [sym_identifier] = ACTIONS(1428),
- [anon_sym_export] = ACTIONS(1044),
- [anon_sym_type] = ACTIONS(1044),
- [anon_sym_namespace] = ACTIONS(1046),
- [anon_sym_LBRACE] = ACTIONS(813),
- [anon_sym_typeof] = ACTIONS(650),
- [anon_sym_import] = ACTIONS(133),
- [anon_sym_let] = ACTIONS(1044),
- [anon_sym_BANG] = ACTIONS(622),
- [anon_sym_LPAREN] = ACTIONS(815),
- [anon_sym_await] = ACTIONS(624),
- [anon_sym_yield] = ACTIONS(626),
- [anon_sym_LBRACK] = ACTIONS(817),
- [sym_glimmer_opening_tag] = ACTIONS(148),
- [anon_sym_DQUOTE] = ACTIONS(150),
- [anon_sym_SQUOTE] = ACTIONS(152),
- [anon_sym_class] = ACTIONS(154),
- [anon_sym_async] = ACTIONS(1052),
- [anon_sym_function] = ACTIONS(158),
- [anon_sym_new] = ACTIONS(1436),
- [anon_sym_using] = ACTIONS(636),
- [anon_sym_PLUS] = ACTIONS(650),
- [anon_sym_DASH] = ACTIONS(650),
- [anon_sym_SLASH] = ACTIONS(646),
- [anon_sym_LT] = ACTIONS(181),
- [anon_sym_TILDE] = ACTIONS(622),
- [anon_sym_void] = ACTIONS(650),
- [anon_sym_delete] = ACTIONS(650),
- [anon_sym_PLUS_PLUS] = ACTIONS(652),
- [anon_sym_DASH_DASH] = ACTIONS(652),
- [sym_comment] = ACTIONS(5),
- [anon_sym_BQUOTE] = ACTIONS(825),
- [sym_number] = ACTIONS(787),
- [sym_private_property_identifier] = ACTIONS(654),
- [sym_this] = ACTIONS(200),
- [sym_super] = ACTIONS(200),
- [sym_true] = ACTIONS(200),
- [sym_false] = ACTIONS(200),
- [sym_null] = ACTIONS(200),
- [sym_undefined] = ACTIONS(1438),
- [anon_sym_AT] = ACTIONS(99),
- [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_override] = 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_object] = ACTIONS(1044),
- [sym_html_comment] = ACTIONS(5),
- },
- [319] = {
- [sym_import] = STATE(3334),
- [sym_parenthesized_expression] = STATE(1251),
- [sym_expression] = STATE(1886),
- [sym_primary_expression] = STATE(1468),
- [sym_yield_expression] = STATE(1634),
- [sym_object] = STATE(1650),
- [sym_object_pattern] = STATE(5633),
- [sym_array] = STATE(1650),
- [sym_array_pattern] = STATE(5633),
- [sym_glimmer_template] = STATE(1634),
- [sym_jsx_element] = STATE(1634),
- [sym_jsx_opening_element] = STATE(3026),
- [sym_jsx_self_closing_element] = STATE(1634),
- [sym_class] = STATE(1650),
- [sym_function_expression] = STATE(1650),
- [sym_generator_function] = STATE(1650),
- [sym_arrow_function] = STATE(1650),
- [sym__call_signature] = STATE(5828),
- [sym_call_expression] = STATE(1650),
- [sym_new_expression] = STATE(1634),
- [sym_await_expression] = STATE(1634),
- [sym_member_expression] = STATE(1251),
- [sym_subscript_expression] = STATE(1251),
- [sym_assignment_expression] = STATE(1634),
- [sym__augmented_assignment_lhs] = STATE(2900),
- [sym_augmented_assignment_expression] = STATE(1634),
- [sym__destructuring_pattern] = STATE(5633),
- [sym_ternary_expression] = STATE(1634),
- [sym_binary_expression] = STATE(1634),
- [sym_unary_expression] = STATE(1634),
- [sym_update_expression] = STATE(1634),
- [sym_sequence_expression] = STATE(5905),
- [sym_string] = STATE(1650),
- [sym_template_string] = STATE(1650),
- [sym_regex] = STATE(1650),
- [sym_meta_property] = STATE(1650),
- [sym_decorator] = STATE(1244),
- [sym_formal_parameters] = STATE(3742),
- [sym_non_null_expression] = STATE(1251),
- [sym_as_expression] = STATE(1634),
- [sym_satisfies_expression] = STATE(1634),
- [sym_instantiation_expression] = STATE(1634),
- [sym_internal_module] = STATE(1634),
- [sym_type_parameters] = STATE(5349),
- [aux_sym_export_statement_repeat1] = STATE(4458),
- [sym_identifier] = ACTIONS(1428),
- [anon_sym_export] = ACTIONS(1044),
- [anon_sym_type] = ACTIONS(1044),
- [anon_sym_namespace] = ACTIONS(1046),
- [anon_sym_LBRACE] = ACTIONS(813),
- [anon_sym_typeof] = ACTIONS(650),
- [anon_sym_import] = ACTIONS(133),
- [anon_sym_let] = ACTIONS(1044),
- [anon_sym_BANG] = ACTIONS(622),
- [anon_sym_LPAREN] = ACTIONS(815),
- [anon_sym_await] = ACTIONS(624),
- [anon_sym_yield] = ACTIONS(626),
- [anon_sym_LBRACK] = ACTIONS(817),
- [sym_glimmer_opening_tag] = ACTIONS(148),
- [anon_sym_DQUOTE] = ACTIONS(150),
- [anon_sym_SQUOTE] = ACTIONS(152),
- [anon_sym_class] = ACTIONS(154),
- [anon_sym_async] = ACTIONS(1052),
- [anon_sym_function] = ACTIONS(158),
- [anon_sym_new] = ACTIONS(1436),
- [anon_sym_using] = ACTIONS(636),
- [anon_sym_PLUS] = ACTIONS(650),
- [anon_sym_DASH] = ACTIONS(650),
- [anon_sym_SLASH] = ACTIONS(646),
- [anon_sym_LT] = ACTIONS(181),
- [anon_sym_TILDE] = ACTIONS(622),
- [anon_sym_void] = ACTIONS(650),
- [anon_sym_delete] = ACTIONS(650),
- [anon_sym_PLUS_PLUS] = ACTIONS(652),
- [anon_sym_DASH_DASH] = ACTIONS(652),
- [sym_comment] = ACTIONS(5),
- [anon_sym_BQUOTE] = ACTIONS(825),
- [sym_number] = ACTIONS(787),
- [sym_private_property_identifier] = ACTIONS(654),
- [sym_this] = ACTIONS(200),
- [sym_super] = ACTIONS(200),
- [sym_true] = ACTIONS(200),
- [sym_false] = ACTIONS(200),
- [sym_null] = ACTIONS(200),
- [sym_undefined] = ACTIONS(1438),
- [anon_sym_AT] = ACTIONS(99),
- [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_override] = 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_object] = ACTIONS(1044),
- [sym_html_comment] = ACTIONS(5),
- },
- [320] = {
- [sym_import] = STATE(3306),
- [sym_statement_block] = STATE(2379),
- [sym_parenthesized_expression] = STATE(1338),
- [sym_expression] = STATE(2005),
- [sym_primary_expression] = STATE(1946),
- [sym_yield_expression] = STATE(2234),
- [sym_object] = STATE(2310),
- [sym_object_pattern] = STATE(5571),
- [sym_array] = STATE(2310),
- [sym_array_pattern] = STATE(5571),
- [sym_glimmer_template] = STATE(2234),
- [sym_jsx_element] = STATE(2234),
- [sym_jsx_opening_element] = STATE(3051),
- [sym_jsx_self_closing_element] = STATE(2234),
- [sym_class] = STATE(2310),
- [sym_function_expression] = STATE(2310),
- [sym_generator_function] = STATE(2310),
- [sym_arrow_function] = STATE(2310),
- [sym__call_signature] = STATE(5569),
- [sym_call_expression] = STATE(2310),
- [sym_new_expression] = STATE(2234),
- [sym_await_expression] = STATE(2234),
- [sym_member_expression] = STATE(1338),
- [sym_subscript_expression] = STATE(1338),
- [sym_assignment_expression] = STATE(2234),
- [sym__augmented_assignment_lhs] = STATE(2899),
- [sym_augmented_assignment_expression] = STATE(2234),
- [sym__destructuring_pattern] = STATE(5571),
- [sym_ternary_expression] = STATE(2234),
- [sym_binary_expression] = STATE(2234),
- [sym_unary_expression] = STATE(2234),
- [sym_update_expression] = STATE(2234),
- [sym_string] = STATE(2310),
- [sym_template_string] = STATE(2310),
- [sym_regex] = STATE(2310),
- [sym_meta_property] = STATE(2310),
- [sym_decorator] = STATE(1244),
- [sym_formal_parameters] = STATE(3742),
- [sym_non_null_expression] = STATE(1338),
- [sym_as_expression] = STATE(2234),
- [sym_satisfies_expression] = STATE(2234),
- [sym_instantiation_expression] = STATE(2234),
- [sym_internal_module] = STATE(2234),
- [sym_type_parameters] = STATE(5349),
- [aux_sym_export_statement_repeat1] = STATE(4499),
- [sym_identifier] = ACTIONS(1454),
- [anon_sym_export] = ACTIONS(1152),
- [anon_sym_type] = ACTIONS(1152),
- [anon_sym_namespace] = ACTIONS(1154),
- [anon_sym_LBRACE] = ACTIONS(2055),
- [anon_sym_typeof] = ACTIONS(1180),
- [anon_sym_import] = ACTIONS(133),
- [anon_sym_let] = ACTIONS(1152),
- [anon_sym_BANG] = ACTIONS(1160),
- [anon_sym_LPAREN] = ACTIONS(41),
- [anon_sym_await] = ACTIONS(1164),
- [anon_sym_yield] = ACTIONS(1166),
- [anon_sym_LBRACK] = ACTIONS(65),
- [sym_glimmer_opening_tag] = ACTIONS(67),
- [anon_sym_DQUOTE] = ACTIONS(69),
- [anon_sym_SQUOTE] = ACTIONS(71),
- [anon_sym_class] = ACTIONS(709),
- [anon_sym_async] = ACTIONS(1170),
- [anon_sym_function] = ACTIONS(713),
- [anon_sym_new] = ACTIONS(1458),
- [anon_sym_using] = ACTIONS(1174),
- [anon_sym_PLUS] = ACTIONS(1180),
- [anon_sym_DASH] = ACTIONS(1180),
- [anon_sym_SLASH] = ACTIONS(83),
- [anon_sym_LT] = ACTIONS(85),
- [anon_sym_TILDE] = ACTIONS(1160),
- [anon_sym_void] = ACTIONS(1180),
- [anon_sym_delete] = ACTIONS(1180),
- [anon_sym_PLUS_PLUS] = ACTIONS(1182),
- [anon_sym_DASH_DASH] = ACTIONS(1182),
- [sym_comment] = ACTIONS(5),
- [anon_sym_BQUOTE] = ACTIONS(89),
- [sym_number] = ACTIONS(91),
- [sym_private_property_identifier] = ACTIONS(1188),
- [sym_this] = ACTIONS(95),
- [sym_super] = ACTIONS(95),
- [sym_true] = ACTIONS(95),
- [sym_false] = ACTIONS(95),
- [sym_null] = ACTIONS(95),
- [sym_undefined] = ACTIONS(1460),
- [anon_sym_AT] = ACTIONS(99),
- [anon_sym_static] = ACTIONS(1152),
- [anon_sym_readonly] = ACTIONS(1152),
- [anon_sym_get] = ACTIONS(1152),
- [anon_sym_set] = ACTIONS(1152),
- [anon_sym_declare] = ACTIONS(1152),
- [anon_sym_public] = ACTIONS(1152),
- [anon_sym_private] = ACTIONS(1152),
- [anon_sym_protected] = ACTIONS(1152),
- [anon_sym_override] = ACTIONS(1152),
- [anon_sym_module] = ACTIONS(1152),
- [anon_sym_any] = ACTIONS(1152),
- [anon_sym_number] = ACTIONS(1152),
- [anon_sym_boolean] = ACTIONS(1152),
- [anon_sym_string] = ACTIONS(1152),
- [anon_sym_symbol] = ACTIONS(1152),
- [anon_sym_object] = ACTIONS(1152),
- [sym_html_comment] = ACTIONS(5),
- },
- [321] = {
- [sym_import] = STATE(3334),
- [sym_parenthesized_expression] = STATE(1251),
- [sym_expression] = STATE(1887),
- [sym_primary_expression] = STATE(1468),
- [sym_yield_expression] = STATE(1634),
- [sym_object] = STATE(1650),
- [sym_object_pattern] = STATE(5633),
- [sym_array] = STATE(1650),
- [sym_array_pattern] = STATE(5633),
- [sym_glimmer_template] = STATE(1634),
- [sym_jsx_element] = STATE(1634),
- [sym_jsx_opening_element] = STATE(3026),
- [sym_jsx_self_closing_element] = STATE(1634),
- [sym_class] = STATE(1650),
- [sym_function_expression] = STATE(1650),
- [sym_generator_function] = STATE(1650),
- [sym_arrow_function] = STATE(1650),
- [sym__call_signature] = STATE(5828),
- [sym_call_expression] = STATE(1650),
- [sym_new_expression] = STATE(1634),
- [sym_await_expression] = STATE(1634),
- [sym_member_expression] = STATE(1251),
- [sym_subscript_expression] = STATE(1251),
- [sym_assignment_expression] = STATE(1634),
- [sym__augmented_assignment_lhs] = STATE(2900),
- [sym_augmented_assignment_expression] = STATE(1634),
- [sym__destructuring_pattern] = STATE(5633),
- [sym_ternary_expression] = STATE(1634),
- [sym_binary_expression] = STATE(1634),
- [sym_unary_expression] = STATE(1634),
- [sym_update_expression] = STATE(1634),
- [sym_sequence_expression] = STATE(5911),
- [sym_string] = STATE(1650),
- [sym_template_string] = STATE(1650),
- [sym_regex] = STATE(1650),
- [sym_meta_property] = STATE(1650),
- [sym_decorator] = STATE(1244),
- [sym_formal_parameters] = STATE(3742),
- [sym_non_null_expression] = STATE(1251),
- [sym_as_expression] = STATE(1634),
- [sym_satisfies_expression] = STATE(1634),
- [sym_instantiation_expression] = STATE(1634),
- [sym_internal_module] = STATE(1634),
- [sym_type_parameters] = STATE(5349),
- [aux_sym_export_statement_repeat1] = STATE(4458),
- [sym_identifier] = ACTIONS(1428),
- [anon_sym_export] = ACTIONS(1044),
- [anon_sym_type] = ACTIONS(1044),
- [anon_sym_namespace] = ACTIONS(1046),
- [anon_sym_LBRACE] = ACTIONS(813),
- [anon_sym_typeof] = ACTIONS(650),
- [anon_sym_import] = ACTIONS(133),
- [anon_sym_let] = ACTIONS(1044),
- [anon_sym_BANG] = ACTIONS(622),
- [anon_sym_LPAREN] = ACTIONS(815),
- [anon_sym_await] = ACTIONS(624),
- [anon_sym_yield] = ACTIONS(626),
- [anon_sym_LBRACK] = ACTIONS(817),
- [sym_glimmer_opening_tag] = ACTIONS(148),
- [anon_sym_DQUOTE] = ACTIONS(150),
- [anon_sym_SQUOTE] = ACTIONS(152),
- [anon_sym_class] = ACTIONS(154),
- [anon_sym_async] = ACTIONS(1052),
- [anon_sym_function] = ACTIONS(158),
- [anon_sym_new] = ACTIONS(1436),
- [anon_sym_using] = ACTIONS(636),
- [anon_sym_PLUS] = ACTIONS(650),
- [anon_sym_DASH] = ACTIONS(650),
- [anon_sym_SLASH] = ACTIONS(646),
- [anon_sym_LT] = ACTIONS(181),
- [anon_sym_TILDE] = ACTIONS(622),
- [anon_sym_void] = ACTIONS(650),
- [anon_sym_delete] = ACTIONS(650),
- [anon_sym_PLUS_PLUS] = ACTIONS(652),
- [anon_sym_DASH_DASH] = ACTIONS(652),
- [sym_comment] = ACTIONS(5),
- [anon_sym_BQUOTE] = ACTIONS(825),
- [sym_number] = ACTIONS(787),
- [sym_private_property_identifier] = ACTIONS(654),
- [sym_this] = ACTIONS(200),
- [sym_super] = ACTIONS(200),
- [sym_true] = ACTIONS(200),
- [sym_false] = ACTIONS(200),
- [sym_null] = ACTIONS(200),
- [sym_undefined] = ACTIONS(1438),
- [anon_sym_AT] = ACTIONS(99),
- [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_override] = 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_object] = ACTIONS(1044),
- [sym_html_comment] = ACTIONS(5),
- },
- [322] = {
- [sym_import] = STATE(3306),
- [sym_statement_block] = STATE(2159),
- [sym_parenthesized_expression] = STATE(1338),
- [sym_expression] = STATE(2009),
- [sym_primary_expression] = STATE(1946),
- [sym_yield_expression] = STATE(2234),
- [sym_object] = STATE(2310),
- [sym_object_pattern] = STATE(5571),
- [sym_array] = STATE(2310),
- [sym_array_pattern] = STATE(5571),
- [sym_glimmer_template] = STATE(2234),
- [sym_jsx_element] = STATE(2234),
- [sym_jsx_opening_element] = STATE(3051),
- [sym_jsx_self_closing_element] = STATE(2234),
- [sym_class] = STATE(2310),
- [sym_function_expression] = STATE(2310),
- [sym_generator_function] = STATE(2310),
- [sym_arrow_function] = STATE(2310),
- [sym__call_signature] = STATE(5569),
- [sym_call_expression] = STATE(2310),
- [sym_new_expression] = STATE(2234),
- [sym_await_expression] = STATE(2234),
- [sym_member_expression] = STATE(1338),
- [sym_subscript_expression] = STATE(1338),
- [sym_assignment_expression] = STATE(2234),
- [sym__augmented_assignment_lhs] = STATE(2899),
- [sym_augmented_assignment_expression] = STATE(2234),
- [sym__destructuring_pattern] = STATE(5571),
- [sym_ternary_expression] = STATE(2234),
- [sym_binary_expression] = STATE(2234),
- [sym_unary_expression] = STATE(2234),
- [sym_update_expression] = STATE(2234),
- [sym_string] = STATE(2310),
- [sym_template_string] = STATE(2310),
- [sym_regex] = STATE(2310),
- [sym_meta_property] = STATE(2310),
- [sym_decorator] = STATE(1244),
- [sym_formal_parameters] = STATE(3742),
- [sym_non_null_expression] = STATE(1338),
- [sym_as_expression] = STATE(2234),
- [sym_satisfies_expression] = STATE(2234),
- [sym_instantiation_expression] = STATE(2234),
- [sym_internal_module] = STATE(2234),
- [sym_type_parameters] = STATE(5349),
- [aux_sym_export_statement_repeat1] = STATE(4499),
- [sym_identifier] = ACTIONS(1454),
- [anon_sym_export] = ACTIONS(1152),
- [anon_sym_type] = ACTIONS(1152),
- [anon_sym_namespace] = ACTIONS(1154),
- [anon_sym_LBRACE] = ACTIONS(2055),
- [anon_sym_typeof] = ACTIONS(1180),
- [anon_sym_import] = ACTIONS(133),
- [anon_sym_let] = ACTIONS(1152),
- [anon_sym_BANG] = ACTIONS(1160),
- [anon_sym_LPAREN] = ACTIONS(41),
- [anon_sym_await] = ACTIONS(1164),
- [anon_sym_yield] = ACTIONS(1166),
- [anon_sym_LBRACK] = ACTIONS(65),
- [sym_glimmer_opening_tag] = ACTIONS(67),
- [anon_sym_DQUOTE] = ACTIONS(69),
- [anon_sym_SQUOTE] = ACTIONS(71),
- [anon_sym_class] = ACTIONS(709),
- [anon_sym_async] = ACTIONS(1170),
- [anon_sym_function] = ACTIONS(713),
- [anon_sym_new] = ACTIONS(1458),
- [anon_sym_using] = ACTIONS(1174),
- [anon_sym_PLUS] = ACTIONS(1180),
- [anon_sym_DASH] = ACTIONS(1180),
- [anon_sym_SLASH] = ACTIONS(83),
- [anon_sym_LT] = ACTIONS(85),
- [anon_sym_TILDE] = ACTIONS(1160),
- [anon_sym_void] = ACTIONS(1180),
- [anon_sym_delete] = ACTIONS(1180),
- [anon_sym_PLUS_PLUS] = ACTIONS(1182),
- [anon_sym_DASH_DASH] = ACTIONS(1182),
- [sym_comment] = ACTIONS(5),
- [anon_sym_BQUOTE] = ACTIONS(89),
- [sym_number] = ACTIONS(91),
- [sym_private_property_identifier] = ACTIONS(1188),
- [sym_this] = ACTIONS(95),
- [sym_super] = ACTIONS(95),
- [sym_true] = ACTIONS(95),
- [sym_false] = ACTIONS(95),
- [sym_null] = ACTIONS(95),
- [sym_undefined] = ACTIONS(1460),
- [anon_sym_AT] = ACTIONS(99),
- [anon_sym_static] = ACTIONS(1152),
- [anon_sym_readonly] = ACTIONS(1152),
- [anon_sym_get] = ACTIONS(1152),
- [anon_sym_set] = ACTIONS(1152),
- [anon_sym_declare] = ACTIONS(1152),
- [anon_sym_public] = ACTIONS(1152),
- [anon_sym_private] = ACTIONS(1152),
- [anon_sym_protected] = ACTIONS(1152),
- [anon_sym_override] = ACTIONS(1152),
- [anon_sym_module] = ACTIONS(1152),
- [anon_sym_any] = ACTIONS(1152),
- [anon_sym_number] = ACTIONS(1152),
- [anon_sym_boolean] = ACTIONS(1152),
- [anon_sym_string] = ACTIONS(1152),
- [anon_sym_symbol] = ACTIONS(1152),
- [anon_sym_object] = ACTIONS(1152),
- [sym_html_comment] = ACTIONS(5),
- },
- [323] = {
- [sym_import] = STATE(3306),
- [sym_statement_block] = STATE(2161),
- [sym_parenthesized_expression] = STATE(1338),
- [sym_expression] = STATE(2010),
- [sym_primary_expression] = STATE(1946),
- [sym_yield_expression] = STATE(2234),
- [sym_object] = STATE(2310),
- [sym_object_pattern] = STATE(5571),
- [sym_array] = STATE(2310),
- [sym_array_pattern] = STATE(5571),
- [sym_glimmer_template] = STATE(2234),
- [sym_jsx_element] = STATE(2234),
- [sym_jsx_opening_element] = STATE(3051),
- [sym_jsx_self_closing_element] = STATE(2234),
- [sym_class] = STATE(2310),
- [sym_function_expression] = STATE(2310),
- [sym_generator_function] = STATE(2310),
- [sym_arrow_function] = STATE(2310),
- [sym__call_signature] = STATE(5569),
- [sym_call_expression] = STATE(2310),
- [sym_new_expression] = STATE(2234),
- [sym_await_expression] = STATE(2234),
- [sym_member_expression] = STATE(1338),
- [sym_subscript_expression] = STATE(1338),
- [sym_assignment_expression] = STATE(2234),
- [sym__augmented_assignment_lhs] = STATE(2899),
- [sym_augmented_assignment_expression] = STATE(2234),
- [sym__destructuring_pattern] = STATE(5571),
- [sym_ternary_expression] = STATE(2234),
- [sym_binary_expression] = STATE(2234),
- [sym_unary_expression] = STATE(2234),
- [sym_update_expression] = STATE(2234),
- [sym_string] = STATE(2310),
- [sym_template_string] = STATE(2310),
- [sym_regex] = STATE(2310),
- [sym_meta_property] = STATE(2310),
- [sym_decorator] = STATE(1244),
- [sym_formal_parameters] = STATE(3742),
- [sym_non_null_expression] = STATE(1338),
- [sym_as_expression] = STATE(2234),
- [sym_satisfies_expression] = STATE(2234),
- [sym_instantiation_expression] = STATE(2234),
- [sym_internal_module] = STATE(2234),
- [sym_type_parameters] = STATE(5349),
- [aux_sym_export_statement_repeat1] = STATE(4499),
- [sym_identifier] = ACTIONS(1454),
- [anon_sym_export] = ACTIONS(1152),
- [anon_sym_type] = ACTIONS(1152),
- [anon_sym_namespace] = ACTIONS(1154),
- [anon_sym_LBRACE] = ACTIONS(2055),
- [anon_sym_typeof] = ACTIONS(1180),
- [anon_sym_import] = ACTIONS(133),
- [anon_sym_let] = ACTIONS(1152),
- [anon_sym_BANG] = ACTIONS(1160),
- [anon_sym_LPAREN] = ACTIONS(41),
- [anon_sym_await] = ACTIONS(1164),
- [anon_sym_yield] = ACTIONS(1166),
- [anon_sym_LBRACK] = ACTIONS(65),
- [sym_glimmer_opening_tag] = ACTIONS(67),
- [anon_sym_DQUOTE] = ACTIONS(69),
- [anon_sym_SQUOTE] = ACTIONS(71),
- [anon_sym_class] = ACTIONS(709),
- [anon_sym_async] = ACTIONS(1170),
- [anon_sym_function] = ACTIONS(713),
- [anon_sym_new] = ACTIONS(1458),
- [anon_sym_using] = ACTIONS(1174),
- [anon_sym_PLUS] = ACTIONS(1180),
- [anon_sym_DASH] = ACTIONS(1180),
- [anon_sym_SLASH] = ACTIONS(83),
- [anon_sym_LT] = ACTIONS(85),
- [anon_sym_TILDE] = ACTIONS(1160),
- [anon_sym_void] = ACTIONS(1180),
- [anon_sym_delete] = ACTIONS(1180),
- [anon_sym_PLUS_PLUS] = ACTIONS(1182),
- [anon_sym_DASH_DASH] = ACTIONS(1182),
- [sym_comment] = ACTIONS(5),
- [anon_sym_BQUOTE] = ACTIONS(89),
- [sym_number] = ACTIONS(91),
- [sym_private_property_identifier] = ACTIONS(1188),
- [sym_this] = ACTIONS(95),
- [sym_super] = ACTIONS(95),
- [sym_true] = ACTIONS(95),
- [sym_false] = ACTIONS(95),
- [sym_null] = ACTIONS(95),
- [sym_undefined] = ACTIONS(1460),
- [anon_sym_AT] = ACTIONS(99),
- [anon_sym_static] = ACTIONS(1152),
- [anon_sym_readonly] = ACTIONS(1152),
- [anon_sym_get] = ACTIONS(1152),
- [anon_sym_set] = ACTIONS(1152),
- [anon_sym_declare] = ACTIONS(1152),
- [anon_sym_public] = ACTIONS(1152),
- [anon_sym_private] = ACTIONS(1152),
- [anon_sym_protected] = ACTIONS(1152),
- [anon_sym_override] = ACTIONS(1152),
- [anon_sym_module] = ACTIONS(1152),
- [anon_sym_any] = ACTIONS(1152),
- [anon_sym_number] = ACTIONS(1152),
- [anon_sym_boolean] = ACTIONS(1152),
- [anon_sym_string] = ACTIONS(1152),
- [anon_sym_symbol] = ACTIONS(1152),
- [anon_sym_object] = ACTIONS(1152),
- [sym_html_comment] = ACTIONS(5),
- },
- [324] = {
- [sym_import] = STATE(3306),
- [sym_statement_block] = STATE(2167),
- [sym_parenthesized_expression] = STATE(1338),
- [sym_expression] = STATE(2011),
- [sym_primary_expression] = STATE(1946),
- [sym_yield_expression] = STATE(2234),
- [sym_object] = STATE(2310),
- [sym_object_pattern] = STATE(5571),
- [sym_array] = STATE(2310),
- [sym_array_pattern] = STATE(5571),
- [sym_glimmer_template] = STATE(2234),
- [sym_jsx_element] = STATE(2234),
- [sym_jsx_opening_element] = STATE(3051),
- [sym_jsx_self_closing_element] = STATE(2234),
- [sym_class] = STATE(2310),
- [sym_function_expression] = STATE(2310),
- [sym_generator_function] = STATE(2310),
- [sym_arrow_function] = STATE(2310),
- [sym__call_signature] = STATE(5569),
- [sym_call_expression] = STATE(2310),
- [sym_new_expression] = STATE(2234),
- [sym_await_expression] = STATE(2234),
- [sym_member_expression] = STATE(1338),
- [sym_subscript_expression] = STATE(1338),
- [sym_assignment_expression] = STATE(2234),
- [sym__augmented_assignment_lhs] = STATE(2899),
- [sym_augmented_assignment_expression] = STATE(2234),
- [sym__destructuring_pattern] = STATE(5571),
- [sym_ternary_expression] = STATE(2234),
- [sym_binary_expression] = STATE(2234),
- [sym_unary_expression] = STATE(2234),
- [sym_update_expression] = STATE(2234),
- [sym_string] = STATE(2310),
- [sym_template_string] = STATE(2310),
- [sym_regex] = STATE(2310),
- [sym_meta_property] = STATE(2310),
- [sym_decorator] = STATE(1244),
- [sym_formal_parameters] = STATE(3742),
- [sym_non_null_expression] = STATE(1338),
- [sym_as_expression] = STATE(2234),
- [sym_satisfies_expression] = STATE(2234),
- [sym_instantiation_expression] = STATE(2234),
- [sym_internal_module] = STATE(2234),
- [sym_type_parameters] = STATE(5349),
- [aux_sym_export_statement_repeat1] = STATE(4499),
- [sym_identifier] = ACTIONS(1454),
- [anon_sym_export] = ACTIONS(1152),
- [anon_sym_type] = ACTIONS(1152),
- [anon_sym_namespace] = ACTIONS(1154),
- [anon_sym_LBRACE] = ACTIONS(2055),
- [anon_sym_typeof] = ACTIONS(1180),
- [anon_sym_import] = ACTIONS(133),
- [anon_sym_let] = ACTIONS(1152),
- [anon_sym_BANG] = ACTIONS(1160),
- [anon_sym_LPAREN] = ACTIONS(41),
- [anon_sym_await] = ACTIONS(1164),
- [anon_sym_yield] = ACTIONS(1166),
- [anon_sym_LBRACK] = ACTIONS(65),
- [sym_glimmer_opening_tag] = ACTIONS(67),
- [anon_sym_DQUOTE] = ACTIONS(69),
- [anon_sym_SQUOTE] = ACTIONS(71),
- [anon_sym_class] = ACTIONS(709),
- [anon_sym_async] = ACTIONS(1170),
- [anon_sym_function] = ACTIONS(713),
- [anon_sym_new] = ACTIONS(1458),
- [anon_sym_using] = ACTIONS(1174),
- [anon_sym_PLUS] = ACTIONS(1180),
- [anon_sym_DASH] = ACTIONS(1180),
- [anon_sym_SLASH] = ACTIONS(83),
- [anon_sym_LT] = ACTIONS(85),
- [anon_sym_TILDE] = ACTIONS(1160),
- [anon_sym_void] = ACTIONS(1180),
- [anon_sym_delete] = ACTIONS(1180),
- [anon_sym_PLUS_PLUS] = ACTIONS(1182),
- [anon_sym_DASH_DASH] = ACTIONS(1182),
- [sym_comment] = ACTIONS(5),
- [anon_sym_BQUOTE] = ACTIONS(89),
- [sym_number] = ACTIONS(91),
- [sym_private_property_identifier] = ACTIONS(1188),
- [sym_this] = ACTIONS(95),
- [sym_super] = ACTIONS(95),
- [sym_true] = ACTIONS(95),
- [sym_false] = ACTIONS(95),
- [sym_null] = ACTIONS(95),
- [sym_undefined] = ACTIONS(1460),
- [anon_sym_AT] = ACTIONS(99),
- [anon_sym_static] = ACTIONS(1152),
- [anon_sym_readonly] = ACTIONS(1152),
- [anon_sym_get] = ACTIONS(1152),
- [anon_sym_set] = ACTIONS(1152),
- [anon_sym_declare] = ACTIONS(1152),
- [anon_sym_public] = ACTIONS(1152),
- [anon_sym_private] = ACTIONS(1152),
- [anon_sym_protected] = ACTIONS(1152),
- [anon_sym_override] = ACTIONS(1152),
- [anon_sym_module] = ACTIONS(1152),
- [anon_sym_any] = ACTIONS(1152),
- [anon_sym_number] = ACTIONS(1152),
- [anon_sym_boolean] = ACTIONS(1152),
- [anon_sym_string] = ACTIONS(1152),
- [anon_sym_symbol] = ACTIONS(1152),
- [anon_sym_object] = ACTIONS(1152),
- [sym_html_comment] = ACTIONS(5),
- },
- [325] = {
- [sym_import] = STATE(3334),
- [sym_parenthesized_expression] = STATE(1251),
- [sym_expression] = STATE(1837),
- [sym_primary_expression] = STATE(1468),
- [sym_yield_expression] = STATE(1634),
- [sym_object] = STATE(1650),
- [sym_object_pattern] = STATE(5633),
- [sym_array] = STATE(1650),
- [sym_array_pattern] = STATE(5633),
- [sym_glimmer_template] = STATE(1634),
- [sym_jsx_element] = STATE(1634),
- [sym_jsx_opening_element] = STATE(3026),
- [sym_jsx_self_closing_element] = STATE(1634),
- [sym_class] = STATE(1650),
- [sym_function_expression] = STATE(1650),
- [sym_generator_function] = STATE(1650),
- [sym_arrow_function] = STATE(1650),
- [sym__call_signature] = STATE(5828),
- [sym_call_expression] = STATE(1650),
- [sym_new_expression] = STATE(1634),
- [sym_await_expression] = STATE(1634),
- [sym_member_expression] = STATE(1251),
- [sym_subscript_expression] = STATE(1251),
- [sym_assignment_expression] = STATE(1634),
- [sym__augmented_assignment_lhs] = STATE(2900),
- [sym_augmented_assignment_expression] = STATE(1634),
- [sym__destructuring_pattern] = STATE(5633),
- [sym_ternary_expression] = STATE(1634),
- [sym_binary_expression] = STATE(1634),
- [sym_unary_expression] = STATE(1634),
- [sym_update_expression] = STATE(1634),
- [sym_sequence_expression] = STATE(5816),
- [sym_string] = STATE(1650),
- [sym_template_string] = STATE(1650),
- [sym_regex] = STATE(1650),
- [sym_meta_property] = STATE(1650),
- [sym_decorator] = STATE(1244),
- [sym_formal_parameters] = STATE(3742),
- [sym_non_null_expression] = STATE(1251),
- [sym_as_expression] = STATE(1634),
- [sym_satisfies_expression] = STATE(1634),
- [sym_instantiation_expression] = STATE(1634),
- [sym_internal_module] = STATE(1634),
- [sym_type_parameters] = STATE(5349),
- [aux_sym_export_statement_repeat1] = STATE(4458),
- [sym_identifier] = ACTIONS(1428),
- [anon_sym_export] = ACTIONS(1044),
- [anon_sym_type] = ACTIONS(1044),
- [anon_sym_namespace] = ACTIONS(1046),
- [anon_sym_LBRACE] = ACTIONS(813),
- [anon_sym_typeof] = ACTIONS(650),
- [anon_sym_import] = ACTIONS(133),
- [anon_sym_let] = ACTIONS(1044),
- [anon_sym_BANG] = ACTIONS(622),
- [anon_sym_LPAREN] = ACTIONS(815),
- [anon_sym_await] = ACTIONS(624),
- [anon_sym_yield] = ACTIONS(626),
- [anon_sym_LBRACK] = ACTIONS(817),
- [sym_glimmer_opening_tag] = ACTIONS(148),
- [anon_sym_DQUOTE] = ACTIONS(150),
- [anon_sym_SQUOTE] = ACTIONS(152),
- [anon_sym_class] = ACTIONS(154),
- [anon_sym_async] = ACTIONS(1052),
- [anon_sym_function] = ACTIONS(158),
- [anon_sym_new] = ACTIONS(1436),
- [anon_sym_using] = ACTIONS(636),
- [anon_sym_PLUS] = ACTIONS(650),
- [anon_sym_DASH] = ACTIONS(650),
- [anon_sym_SLASH] = ACTIONS(646),
- [anon_sym_LT] = ACTIONS(181),
- [anon_sym_TILDE] = ACTIONS(622),
- [anon_sym_void] = ACTIONS(650),
- [anon_sym_delete] = ACTIONS(650),
- [anon_sym_PLUS_PLUS] = ACTIONS(652),
- [anon_sym_DASH_DASH] = ACTIONS(652),
- [sym_comment] = ACTIONS(5),
- [anon_sym_BQUOTE] = ACTIONS(825),
- [sym_number] = ACTIONS(787),
- [sym_private_property_identifier] = ACTIONS(654),
- [sym_this] = ACTIONS(200),
- [sym_super] = ACTIONS(200),
- [sym_true] = ACTIONS(200),
- [sym_false] = ACTIONS(200),
- [sym_null] = ACTIONS(200),
- [sym_undefined] = ACTIONS(1438),
- [anon_sym_AT] = ACTIONS(99),
- [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_override] = 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_object] = ACTIONS(1044),
- [sym_html_comment] = ACTIONS(5),
- },
- [326] = {
- [sym_import] = STATE(3306),
- [sym_statement_block] = STATE(2215),
- [sym_parenthesized_expression] = STATE(1294),
- [sym_expression] = STATE(1735),
- [sym_primary_expression] = STATE(1946),
- [sym_yield_expression] = STATE(2234),
- [sym_object] = STATE(2310),
- [sym_object_pattern] = STATE(5667),
- [sym_array] = STATE(2310),
- [sym_array_pattern] = STATE(5667),
- [sym_glimmer_template] = STATE(2234),
- [sym_jsx_element] = STATE(2234),
- [sym_jsx_opening_element] = STATE(3051),
- [sym_jsx_self_closing_element] = STATE(2234),
- [sym_class] = STATE(2310),
- [sym_function_expression] = STATE(2310),
- [sym_generator_function] = STATE(2310),
- [sym_arrow_function] = STATE(2310),
- [sym__call_signature] = STATE(5809),
- [sym_call_expression] = STATE(2310),
- [sym_new_expression] = STATE(2234),
- [sym_await_expression] = STATE(2234),
- [sym_member_expression] = STATE(1294),
- [sym_subscript_expression] = STATE(1294),
- [sym_assignment_expression] = STATE(2234),
- [sym__augmented_assignment_lhs] = STATE(2875),
- [sym_augmented_assignment_expression] = STATE(2234),
- [sym__destructuring_pattern] = STATE(5667),
- [sym_ternary_expression] = STATE(2234),
- [sym_binary_expression] = STATE(2234),
- [sym_unary_expression] = STATE(2234),
- [sym_update_expression] = STATE(2234),
- [sym_string] = STATE(2310),
- [sym_template_string] = STATE(2310),
- [sym_regex] = STATE(2310),
- [sym_meta_property] = STATE(2310),
- [sym_decorator] = STATE(1244),
- [sym_formal_parameters] = STATE(3742),
- [sym_non_null_expression] = STATE(1294),
- [sym_as_expression] = STATE(2234),
- [sym_satisfies_expression] = STATE(2234),
- [sym_instantiation_expression] = STATE(2234),
- [sym_internal_module] = STATE(2234),
- [sym_type_parameters] = STATE(5349),
- [aux_sym_export_statement_repeat1] = STATE(4499),
- [sym_identifier] = ACTIONS(1440),
- [anon_sym_export] = ACTIONS(1372),
- [anon_sym_type] = ACTIONS(1372),
- [anon_sym_namespace] = ACTIONS(1374),
- [anon_sym_LBRACE] = ACTIONS(2055),
- [anon_sym_typeof] = ACTIONS(21),
- [anon_sym_import] = ACTIONS(133),
- [anon_sym_let] = ACTIONS(1372),
- [anon_sym_BANG] = ACTIONS(33),
- [anon_sym_LPAREN] = ACTIONS(41),
- [anon_sym_await] = ACTIONS(43),
- [anon_sym_yield] = ACTIONS(63),
- [anon_sym_LBRACK] = ACTIONS(65),
- [sym_glimmer_opening_tag] = ACTIONS(67),
- [anon_sym_DQUOTE] = ACTIONS(69),
- [anon_sym_SQUOTE] = ACTIONS(71),
- [anon_sym_class] = ACTIONS(709),
- [anon_sym_async] = ACTIONS(1378),
- [anon_sym_function] = ACTIONS(713),
- [anon_sym_new] = ACTIONS(1444),
- [anon_sym_using] = ACTIONS(81),
- [anon_sym_PLUS] = ACTIONS(21),
- [anon_sym_DASH] = ACTIONS(21),
- [anon_sym_SLASH] = ACTIONS(83),
- [anon_sym_LT] = ACTIONS(85),
- [anon_sym_TILDE] = ACTIONS(33),
- [anon_sym_void] = ACTIONS(21),
- [anon_sym_delete] = ACTIONS(21),
- [anon_sym_PLUS_PLUS] = ACTIONS(87),
- [anon_sym_DASH_DASH] = ACTIONS(87),
- [sym_comment] = ACTIONS(5),
- [anon_sym_BQUOTE] = ACTIONS(89),
- [sym_number] = ACTIONS(91),
- [sym_private_property_identifier] = ACTIONS(93),
- [sym_this] = ACTIONS(95),
- [sym_super] = ACTIONS(95),
- [sym_true] = ACTIONS(95),
- [sym_false] = ACTIONS(95),
- [sym_null] = ACTIONS(95),
- [sym_undefined] = ACTIONS(97),
- [anon_sym_AT] = ACTIONS(99),
- [anon_sym_static] = ACTIONS(1372),
- [anon_sym_readonly] = ACTIONS(1372),
- [anon_sym_get] = ACTIONS(1372),
- [anon_sym_set] = ACTIONS(1372),
- [anon_sym_declare] = ACTIONS(1372),
- [anon_sym_public] = ACTIONS(1372),
- [anon_sym_private] = ACTIONS(1372),
- [anon_sym_protected] = ACTIONS(1372),
- [anon_sym_override] = ACTIONS(1372),
- [anon_sym_module] = ACTIONS(1372),
- [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_object] = ACTIONS(1372),
- [sym_html_comment] = ACTIONS(5),
- },
- [327] = {
- [sym_import] = STATE(3334),
- [sym_statement_block] = STATE(1641),
- [sym_parenthesized_expression] = STATE(1179),
- [sym_expression] = STATE(2429),
- [sym_primary_expression] = STATE(1468),
- [sym_yield_expression] = STATE(1634),
- [sym_object] = STATE(1650),
- [sym_object_pattern] = STATE(5854),
- [sym_array] = STATE(1650),
- [sym_array_pattern] = STATE(5854),
- [sym_glimmer_template] = STATE(1634),
- [sym_jsx_element] = STATE(1634),
- [sym_jsx_opening_element] = STATE(3026),
- [sym_jsx_self_closing_element] = STATE(1634),
- [sym_class] = STATE(1650),
- [sym_function_expression] = STATE(1650),
- [sym_generator_function] = STATE(1650),
- [sym_arrow_function] = STATE(1650),
- [sym__call_signature] = STATE(5619),
- [sym_call_expression] = STATE(1650),
- [sym_new_expression] = STATE(1634),
- [sym_await_expression] = STATE(1634),
- [sym_member_expression] = STATE(1179),
- [sym_subscript_expression] = STATE(1179),
- [sym_assignment_expression] = STATE(1634),
- [sym__augmented_assignment_lhs] = STATE(2878),
- [sym_augmented_assignment_expression] = STATE(1634),
- [sym__destructuring_pattern] = STATE(5854),
- [sym_ternary_expression] = STATE(1634),
- [sym_binary_expression] = STATE(1634),
- [sym_unary_expression] = STATE(1634),
- [sym_update_expression] = STATE(1634),
- [sym_string] = STATE(1650),
- [sym_template_string] = STATE(1650),
- [sym_regex] = STATE(1650),
- [sym_meta_property] = STATE(1650),
- [sym_decorator] = STATE(1244),
- [sym_formal_parameters] = STATE(3742),
- [sym_non_null_expression] = STATE(1179),
- [sym_as_expression] = STATE(1634),
- [sym_satisfies_expression] = STATE(1634),
- [sym_instantiation_expression] = STATE(1634),
- [sym_internal_module] = STATE(1634),
- [sym_type_parameters] = STATE(5349),
- [aux_sym_export_statement_repeat1] = STATE(4458),
- [sym_identifier] = ACTIONS(837),
- [anon_sym_export] = ACTIONS(839),
- [anon_sym_type] = ACTIONS(839),
- [anon_sym_namespace] = ACTIONS(843),
- [anon_sym_LBRACE] = ACTIONS(2067),
- [anon_sym_typeof] = ACTIONS(187),
- [anon_sym_import] = ACTIONS(133),
- [anon_sym_let] = ACTIONS(839),
- [anon_sym_BANG] = ACTIONS(183),
- [anon_sym_LPAREN] = ACTIONS(815),
- [anon_sym_await] = ACTIONS(142),
- [anon_sym_yield] = ACTIONS(144),
- [anon_sym_LBRACK] = ACTIONS(849),
- [sym_glimmer_opening_tag] = ACTIONS(148),
- [anon_sym_DQUOTE] = ACTIONS(150),
- [anon_sym_SQUOTE] = ACTIONS(152),
- [anon_sym_class] = ACTIONS(154),
- [anon_sym_async] = ACTIONS(851),
- [anon_sym_function] = ACTIONS(158),
- [anon_sym_new] = ACTIONS(853),
- [anon_sym_using] = ACTIONS(166),
- [anon_sym_PLUS] = ACTIONS(187),
- [anon_sym_DASH] = ACTIONS(187),
- [anon_sym_SLASH] = ACTIONS(646),
- [anon_sym_LT] = ACTIONS(181),
- [anon_sym_TILDE] = ACTIONS(183),
- [anon_sym_void] = ACTIONS(187),
- [anon_sym_delete] = ACTIONS(187),
- [anon_sym_PLUS_PLUS] = ACTIONS(719),
- [anon_sym_DASH_DASH] = ACTIONS(719),
- [sym_comment] = ACTIONS(5),
- [anon_sym_BQUOTE] = ACTIONS(825),
- [sym_number] = ACTIONS(787),
- [sym_private_property_identifier] = ACTIONS(196),
- [sym_this] = ACTIONS(200),
- [sym_super] = ACTIONS(200),
- [sym_true] = ACTIONS(200),
- [sym_false] = ACTIONS(200),
- [sym_null] = ACTIONS(200),
- [sym_undefined] = ACTIONS(827),
- [anon_sym_AT] = ACTIONS(99),
- [anon_sym_static] = ACTIONS(839),
- [anon_sym_readonly] = ACTIONS(839),
- [anon_sym_get] = ACTIONS(839),
- [anon_sym_set] = ACTIONS(839),
- [anon_sym_declare] = ACTIONS(839),
- [anon_sym_public] = ACTIONS(839),
- [anon_sym_private] = ACTIONS(839),
- [anon_sym_protected] = ACTIONS(839),
- [anon_sym_override] = ACTIONS(839),
- [anon_sym_module] = ACTIONS(839),
- [anon_sym_any] = ACTIONS(839),
- [anon_sym_number] = ACTIONS(839),
- [anon_sym_boolean] = ACTIONS(839),
- [anon_sym_string] = ACTIONS(839),
- [anon_sym_symbol] = ACTIONS(839),
- [anon_sym_object] = ACTIONS(839),
- [sym_html_comment] = ACTIONS(5),
- },
- [328] = {
- [sym_import] = STATE(3334),
- [sym_statement_block] = STATE(1782),
- [sym_parenthesized_expression] = STATE(1179),
- [sym_expression] = STATE(2433),
- [sym_primary_expression] = STATE(1468),
- [sym_yield_expression] = STATE(1634),
- [sym_object] = STATE(1650),
- [sym_object_pattern] = STATE(5854),
- [sym_array] = STATE(1650),
- [sym_array_pattern] = STATE(5854),
- [sym_glimmer_template] = STATE(1634),
- [sym_jsx_element] = STATE(1634),
- [sym_jsx_opening_element] = STATE(3026),
- [sym_jsx_self_closing_element] = STATE(1634),
- [sym_class] = STATE(1650),
- [sym_function_expression] = STATE(1650),
- [sym_generator_function] = STATE(1650),
- [sym_arrow_function] = STATE(1650),
- [sym__call_signature] = STATE(5619),
- [sym_call_expression] = STATE(1650),
- [sym_new_expression] = STATE(1634),
- [sym_await_expression] = STATE(1634),
- [sym_member_expression] = STATE(1179),
- [sym_subscript_expression] = STATE(1179),
- [sym_assignment_expression] = STATE(1634),
- [sym__augmented_assignment_lhs] = STATE(2878),
- [sym_augmented_assignment_expression] = STATE(1634),
- [sym__destructuring_pattern] = STATE(5854),
- [sym_ternary_expression] = STATE(1634),
- [sym_binary_expression] = STATE(1634),
- [sym_unary_expression] = STATE(1634),
- [sym_update_expression] = STATE(1634),
- [sym_string] = STATE(1650),
- [sym_template_string] = STATE(1650),
- [sym_regex] = STATE(1650),
- [sym_meta_property] = STATE(1650),
- [sym_decorator] = STATE(1244),
- [sym_formal_parameters] = STATE(3742),
- [sym_non_null_expression] = STATE(1179),
- [sym_as_expression] = STATE(1634),
- [sym_satisfies_expression] = STATE(1634),
- [sym_instantiation_expression] = STATE(1634),
- [sym_internal_module] = STATE(1634),
- [sym_type_parameters] = STATE(5349),
- [aux_sym_export_statement_repeat1] = STATE(4458),
- [sym_identifier] = ACTIONS(837),
- [anon_sym_export] = ACTIONS(839),
- [anon_sym_type] = ACTIONS(839),
- [anon_sym_namespace] = ACTIONS(843),
- [anon_sym_LBRACE] = ACTIONS(2067),
- [anon_sym_typeof] = ACTIONS(187),
- [anon_sym_import] = ACTIONS(133),
- [anon_sym_let] = ACTIONS(839),
- [anon_sym_BANG] = ACTIONS(183),
- [anon_sym_LPAREN] = ACTIONS(815),
- [anon_sym_await] = ACTIONS(142),
- [anon_sym_yield] = ACTIONS(144),
- [anon_sym_LBRACK] = ACTIONS(849),
- [sym_glimmer_opening_tag] = ACTIONS(148),
- [anon_sym_DQUOTE] = ACTIONS(150),
- [anon_sym_SQUOTE] = ACTIONS(152),
- [anon_sym_class] = ACTIONS(154),
- [anon_sym_async] = ACTIONS(851),
- [anon_sym_function] = ACTIONS(158),
- [anon_sym_new] = ACTIONS(853),
- [anon_sym_using] = ACTIONS(166),
- [anon_sym_PLUS] = ACTIONS(187),
- [anon_sym_DASH] = ACTIONS(187),
- [anon_sym_SLASH] = ACTIONS(646),
- [anon_sym_LT] = ACTIONS(181),
- [anon_sym_TILDE] = ACTIONS(183),
- [anon_sym_void] = ACTIONS(187),
- [anon_sym_delete] = ACTIONS(187),
- [anon_sym_PLUS_PLUS] = ACTIONS(719),
- [anon_sym_DASH_DASH] = ACTIONS(719),
- [sym_comment] = ACTIONS(5),
- [anon_sym_BQUOTE] = ACTIONS(825),
- [sym_number] = ACTIONS(787),
- [sym_private_property_identifier] = ACTIONS(196),
- [sym_this] = ACTIONS(200),
- [sym_super] = ACTIONS(200),
- [sym_true] = ACTIONS(200),
- [sym_false] = ACTIONS(200),
- [sym_null] = ACTIONS(200),
- [sym_undefined] = ACTIONS(827),
- [anon_sym_AT] = ACTIONS(99),
- [anon_sym_static] = ACTIONS(839),
- [anon_sym_readonly] = ACTIONS(839),
- [anon_sym_get] = ACTIONS(839),
- [anon_sym_set] = ACTIONS(839),
- [anon_sym_declare] = ACTIONS(839),
- [anon_sym_public] = ACTIONS(839),
- [anon_sym_private] = ACTIONS(839),
- [anon_sym_protected] = ACTIONS(839),
- [anon_sym_override] = ACTIONS(839),
- [anon_sym_module] = ACTIONS(839),
- [anon_sym_any] = ACTIONS(839),
- [anon_sym_number] = ACTIONS(839),
- [anon_sym_boolean] = ACTIONS(839),
- [anon_sym_string] = ACTIONS(839),
- [anon_sym_symbol] = ACTIONS(839),
- [anon_sym_object] = ACTIONS(839),
- [sym_html_comment] = ACTIONS(5),
- },
- [329] = {
- [sym_import] = STATE(3334),
- [sym_statement_block] = STATE(1679),
- [sym_parenthesized_expression] = STATE(1179),
- [sym_expression] = STATE(2447),
- [sym_primary_expression] = STATE(1468),
- [sym_yield_expression] = STATE(1634),
- [sym_object] = STATE(1650),
- [sym_object_pattern] = STATE(5854),
- [sym_array] = STATE(1650),
- [sym_array_pattern] = STATE(5854),
- [sym_glimmer_template] = STATE(1634),
- [sym_jsx_element] = STATE(1634),
- [sym_jsx_opening_element] = STATE(3026),
- [sym_jsx_self_closing_element] = STATE(1634),
- [sym_class] = STATE(1650),
- [sym_function_expression] = STATE(1650),
- [sym_generator_function] = STATE(1650),
- [sym_arrow_function] = STATE(1650),
- [sym__call_signature] = STATE(5619),
- [sym_call_expression] = STATE(1650),
- [sym_new_expression] = STATE(1634),
- [sym_await_expression] = STATE(1634),
- [sym_member_expression] = STATE(1179),
- [sym_subscript_expression] = STATE(1179),
- [sym_assignment_expression] = STATE(1634),
- [sym__augmented_assignment_lhs] = STATE(2878),
- [sym_augmented_assignment_expression] = STATE(1634),
- [sym__destructuring_pattern] = STATE(5854),
- [sym_ternary_expression] = STATE(1634),
- [sym_binary_expression] = STATE(1634),
- [sym_unary_expression] = STATE(1634),
- [sym_update_expression] = STATE(1634),
- [sym_string] = STATE(1650),
- [sym_template_string] = STATE(1650),
- [sym_regex] = STATE(1650),
- [sym_meta_property] = STATE(1650),
- [sym_decorator] = STATE(1244),
- [sym_formal_parameters] = STATE(3742),
- [sym_non_null_expression] = STATE(1179),
- [sym_as_expression] = STATE(1634),
- [sym_satisfies_expression] = STATE(1634),
- [sym_instantiation_expression] = STATE(1634),
- [sym_internal_module] = STATE(1634),
- [sym_type_parameters] = STATE(5349),
- [aux_sym_export_statement_repeat1] = STATE(4458),
- [sym_identifier] = ACTIONS(837),
- [anon_sym_export] = ACTIONS(839),
- [anon_sym_type] = ACTIONS(839),
- [anon_sym_namespace] = ACTIONS(843),
- [anon_sym_LBRACE] = ACTIONS(2067),
- [anon_sym_typeof] = ACTIONS(187),
- [anon_sym_import] = ACTIONS(133),
- [anon_sym_let] = ACTIONS(839),
- [anon_sym_BANG] = ACTIONS(183),
- [anon_sym_LPAREN] = ACTIONS(815),
- [anon_sym_await] = ACTIONS(142),
- [anon_sym_yield] = ACTIONS(144),
- [anon_sym_LBRACK] = ACTIONS(849),
- [sym_glimmer_opening_tag] = ACTIONS(148),
- [anon_sym_DQUOTE] = ACTIONS(150),
- [anon_sym_SQUOTE] = ACTIONS(152),
- [anon_sym_class] = ACTIONS(154),
- [anon_sym_async] = ACTIONS(851),
- [anon_sym_function] = ACTIONS(158),
- [anon_sym_new] = ACTIONS(853),
- [anon_sym_using] = ACTIONS(166),
- [anon_sym_PLUS] = ACTIONS(187),
- [anon_sym_DASH] = ACTIONS(187),
- [anon_sym_SLASH] = ACTIONS(646),
- [anon_sym_LT] = ACTIONS(181),
- [anon_sym_TILDE] = ACTIONS(183),
- [anon_sym_void] = ACTIONS(187),
- [anon_sym_delete] = ACTIONS(187),
- [anon_sym_PLUS_PLUS] = ACTIONS(719),
- [anon_sym_DASH_DASH] = ACTIONS(719),
- [sym_comment] = ACTIONS(5),
- [anon_sym_BQUOTE] = ACTIONS(825),
- [sym_number] = ACTIONS(787),
- [sym_private_property_identifier] = ACTIONS(196),
- [sym_this] = ACTIONS(200),
- [sym_super] = ACTIONS(200),
- [sym_true] = ACTIONS(200),
- [sym_false] = ACTIONS(200),
- [sym_null] = ACTIONS(200),
- [sym_undefined] = ACTIONS(827),
- [anon_sym_AT] = ACTIONS(99),
- [anon_sym_static] = ACTIONS(839),
- [anon_sym_readonly] = ACTIONS(839),
- [anon_sym_get] = ACTIONS(839),
- [anon_sym_set] = ACTIONS(839),
- [anon_sym_declare] = ACTIONS(839),
- [anon_sym_public] = ACTIONS(839),
- [anon_sym_private] = ACTIONS(839),
- [anon_sym_protected] = ACTIONS(839),
- [anon_sym_override] = ACTIONS(839),
- [anon_sym_module] = ACTIONS(839),
- [anon_sym_any] = ACTIONS(839),
- [anon_sym_number] = ACTIONS(839),
- [anon_sym_boolean] = ACTIONS(839),
- [anon_sym_string] = ACTIONS(839),
- [anon_sym_symbol] = ACTIONS(839),
- [anon_sym_object] = ACTIONS(839),
- [sym_html_comment] = ACTIONS(5),
- },
- [330] = {
- [sym_import] = STATE(3334),
- [sym_statement_block] = STATE(1614),
- [sym_parenthesized_expression] = STATE(1179),
- [sym_expression] = STATE(2450),
- [sym_primary_expression] = STATE(1468),
- [sym_yield_expression] = STATE(1634),
- [sym_object] = STATE(1650),
- [sym_object_pattern] = STATE(5854),
- [sym_array] = STATE(1650),
- [sym_array_pattern] = STATE(5854),
- [sym_glimmer_template] = STATE(1634),
- [sym_jsx_element] = STATE(1634),
- [sym_jsx_opening_element] = STATE(3026),
- [sym_jsx_self_closing_element] = STATE(1634),
- [sym_class] = STATE(1650),
- [sym_function_expression] = STATE(1650),
- [sym_generator_function] = STATE(1650),
- [sym_arrow_function] = STATE(1650),
- [sym__call_signature] = STATE(5619),
- [sym_call_expression] = STATE(1650),
- [sym_new_expression] = STATE(1634),
- [sym_await_expression] = STATE(1634),
- [sym_member_expression] = STATE(1179),
- [sym_subscript_expression] = STATE(1179),
- [sym_assignment_expression] = STATE(1634),
- [sym__augmented_assignment_lhs] = STATE(2878),
- [sym_augmented_assignment_expression] = STATE(1634),
- [sym__destructuring_pattern] = STATE(5854),
- [sym_ternary_expression] = STATE(1634),
- [sym_binary_expression] = STATE(1634),
- [sym_unary_expression] = STATE(1634),
- [sym_update_expression] = STATE(1634),
- [sym_string] = STATE(1650),
- [sym_template_string] = STATE(1650),
- [sym_regex] = STATE(1650),
- [sym_meta_property] = STATE(1650),
- [sym_decorator] = STATE(1244),
- [sym_formal_parameters] = STATE(3742),
- [sym_non_null_expression] = STATE(1179),
- [sym_as_expression] = STATE(1634),
- [sym_satisfies_expression] = STATE(1634),
- [sym_instantiation_expression] = STATE(1634),
- [sym_internal_module] = STATE(1634),
- [sym_type_parameters] = STATE(5349),
- [aux_sym_export_statement_repeat1] = STATE(4458),
- [sym_identifier] = ACTIONS(837),
- [anon_sym_export] = ACTIONS(839),
- [anon_sym_type] = ACTIONS(839),
- [anon_sym_namespace] = ACTIONS(843),
- [anon_sym_LBRACE] = ACTIONS(2067),
- [anon_sym_typeof] = ACTIONS(187),
- [anon_sym_import] = ACTIONS(133),
- [anon_sym_let] = ACTIONS(839),
- [anon_sym_BANG] = ACTIONS(183),
- [anon_sym_LPAREN] = ACTIONS(815),
- [anon_sym_await] = ACTIONS(142),
- [anon_sym_yield] = ACTIONS(144),
- [anon_sym_LBRACK] = ACTIONS(849),
- [sym_glimmer_opening_tag] = ACTIONS(148),
- [anon_sym_DQUOTE] = ACTIONS(150),
- [anon_sym_SQUOTE] = ACTIONS(152),
- [anon_sym_class] = ACTIONS(154),
- [anon_sym_async] = ACTIONS(851),
- [anon_sym_function] = ACTIONS(158),
- [anon_sym_new] = ACTIONS(853),
- [anon_sym_using] = ACTIONS(166),
- [anon_sym_PLUS] = ACTIONS(187),
- [anon_sym_DASH] = ACTIONS(187),
- [anon_sym_SLASH] = ACTIONS(646),
- [anon_sym_LT] = ACTIONS(181),
- [anon_sym_TILDE] = ACTIONS(183),
- [anon_sym_void] = ACTIONS(187),
- [anon_sym_delete] = ACTIONS(187),
- [anon_sym_PLUS_PLUS] = ACTIONS(719),
- [anon_sym_DASH_DASH] = ACTIONS(719),
- [sym_comment] = ACTIONS(5),
- [anon_sym_BQUOTE] = ACTIONS(825),
- [sym_number] = ACTIONS(787),
- [sym_private_property_identifier] = ACTIONS(196),
- [sym_this] = ACTIONS(200),
- [sym_super] = ACTIONS(200),
- [sym_true] = ACTIONS(200),
- [sym_false] = ACTIONS(200),
- [sym_null] = ACTIONS(200),
- [sym_undefined] = ACTIONS(827),
- [anon_sym_AT] = ACTIONS(99),
- [anon_sym_static] = ACTIONS(839),
- [anon_sym_readonly] = ACTIONS(839),
- [anon_sym_get] = ACTIONS(839),
- [anon_sym_set] = ACTIONS(839),
- [anon_sym_declare] = ACTIONS(839),
- [anon_sym_public] = ACTIONS(839),
- [anon_sym_private] = ACTIONS(839),
- [anon_sym_protected] = ACTIONS(839),
- [anon_sym_override] = ACTIONS(839),
- [anon_sym_module] = ACTIONS(839),
- [anon_sym_any] = ACTIONS(839),
- [anon_sym_number] = ACTIONS(839),
- [anon_sym_boolean] = ACTIONS(839),
- [anon_sym_string] = ACTIONS(839),
- [anon_sym_symbol] = ACTIONS(839),
- [anon_sym_object] = ACTIONS(839),
- [sym_html_comment] = ACTIONS(5),
- },
- [331] = {
- [sym_import] = STATE(3334),
- [sym_statement_block] = STATE(1712),
- [sym_parenthesized_expression] = STATE(1179),
- [sym_expression] = STATE(2451),
- [sym_primary_expression] = STATE(1468),
- [sym_yield_expression] = STATE(1634),
- [sym_object] = STATE(1650),
- [sym_object_pattern] = STATE(5854),
- [sym_array] = STATE(1650),
- [sym_array_pattern] = STATE(5854),
- [sym_glimmer_template] = STATE(1634),
- [sym_jsx_element] = STATE(1634),
- [sym_jsx_opening_element] = STATE(3026),
- [sym_jsx_self_closing_element] = STATE(1634),
- [sym_class] = STATE(1650),
- [sym_function_expression] = STATE(1650),
- [sym_generator_function] = STATE(1650),
- [sym_arrow_function] = STATE(1650),
- [sym__call_signature] = STATE(5619),
- [sym_call_expression] = STATE(1650),
- [sym_new_expression] = STATE(1634),
- [sym_await_expression] = STATE(1634),
- [sym_member_expression] = STATE(1179),
- [sym_subscript_expression] = STATE(1179),
- [sym_assignment_expression] = STATE(1634),
- [sym__augmented_assignment_lhs] = STATE(2878),
- [sym_augmented_assignment_expression] = STATE(1634),
- [sym__destructuring_pattern] = STATE(5854),
- [sym_ternary_expression] = STATE(1634),
- [sym_binary_expression] = STATE(1634),
- [sym_unary_expression] = STATE(1634),
- [sym_update_expression] = STATE(1634),
- [sym_string] = STATE(1650),
- [sym_template_string] = STATE(1650),
- [sym_regex] = STATE(1650),
- [sym_meta_property] = STATE(1650),
- [sym_decorator] = STATE(1244),
- [sym_formal_parameters] = STATE(3742),
- [sym_non_null_expression] = STATE(1179),
- [sym_as_expression] = STATE(1634),
- [sym_satisfies_expression] = STATE(1634),
- [sym_instantiation_expression] = STATE(1634),
- [sym_internal_module] = STATE(1634),
- [sym_type_parameters] = STATE(5349),
- [aux_sym_export_statement_repeat1] = STATE(4458),
- [sym_identifier] = ACTIONS(837),
- [anon_sym_export] = ACTIONS(839),
- [anon_sym_type] = ACTIONS(839),
- [anon_sym_namespace] = ACTIONS(843),
- [anon_sym_LBRACE] = ACTIONS(2067),
- [anon_sym_typeof] = ACTIONS(187),
- [anon_sym_import] = ACTIONS(133),
- [anon_sym_let] = ACTIONS(839),
- [anon_sym_BANG] = ACTIONS(183),
- [anon_sym_LPAREN] = ACTIONS(815),
- [anon_sym_await] = ACTIONS(142),
- [anon_sym_yield] = ACTIONS(144),
- [anon_sym_LBRACK] = ACTIONS(849),
- [sym_glimmer_opening_tag] = ACTIONS(148),
- [anon_sym_DQUOTE] = ACTIONS(150),
- [anon_sym_SQUOTE] = ACTIONS(152),
- [anon_sym_class] = ACTIONS(154),
- [anon_sym_async] = ACTIONS(851),
- [anon_sym_function] = ACTIONS(158),
- [anon_sym_new] = ACTIONS(853),
- [anon_sym_using] = ACTIONS(166),
- [anon_sym_PLUS] = ACTIONS(187),
- [anon_sym_DASH] = ACTIONS(187),
- [anon_sym_SLASH] = ACTIONS(646),
- [anon_sym_LT] = ACTIONS(181),
- [anon_sym_TILDE] = ACTIONS(183),
- [anon_sym_void] = ACTIONS(187),
- [anon_sym_delete] = ACTIONS(187),
- [anon_sym_PLUS_PLUS] = ACTIONS(719),
- [anon_sym_DASH_DASH] = ACTIONS(719),
- [sym_comment] = ACTIONS(5),
- [anon_sym_BQUOTE] = ACTIONS(825),
- [sym_number] = ACTIONS(787),
- [sym_private_property_identifier] = ACTIONS(196),
- [sym_this] = ACTIONS(200),
- [sym_super] = ACTIONS(200),
- [sym_true] = ACTIONS(200),
- [sym_false] = ACTIONS(200),
- [sym_null] = ACTIONS(200),
- [sym_undefined] = ACTIONS(827),
- [anon_sym_AT] = ACTIONS(99),
- [anon_sym_static] = ACTIONS(839),
- [anon_sym_readonly] = ACTIONS(839),
- [anon_sym_get] = ACTIONS(839),
- [anon_sym_set] = ACTIONS(839),
- [anon_sym_declare] = ACTIONS(839),
- [anon_sym_public] = ACTIONS(839),
- [anon_sym_private] = ACTIONS(839),
- [anon_sym_protected] = ACTIONS(839),
- [anon_sym_override] = ACTIONS(839),
- [anon_sym_module] = ACTIONS(839),
- [anon_sym_any] = ACTIONS(839),
- [anon_sym_number] = ACTIONS(839),
- [anon_sym_boolean] = ACTIONS(839),
- [anon_sym_string] = ACTIONS(839),
- [anon_sym_symbol] = ACTIONS(839),
- [anon_sym_object] = ACTIONS(839),
- [sym_html_comment] = ACTIONS(5),
- },
- [332] = {
- [sym_import] = STATE(3334),
- [sym_statement_block] = STATE(1714),
- [sym_parenthesized_expression] = STATE(1179),
- [sym_expression] = STATE(2452),
- [sym_primary_expression] = STATE(1468),
- [sym_yield_expression] = STATE(1634),
- [sym_object] = STATE(1650),
- [sym_object_pattern] = STATE(5854),
- [sym_array] = STATE(1650),
- [sym_array_pattern] = STATE(5854),
- [sym_glimmer_template] = STATE(1634),
- [sym_jsx_element] = STATE(1634),
- [sym_jsx_opening_element] = STATE(3026),
- [sym_jsx_self_closing_element] = STATE(1634),
- [sym_class] = STATE(1650),
- [sym_function_expression] = STATE(1650),
- [sym_generator_function] = STATE(1650),
- [sym_arrow_function] = STATE(1650),
- [sym__call_signature] = STATE(5619),
- [sym_call_expression] = STATE(1650),
- [sym_new_expression] = STATE(1634),
- [sym_await_expression] = STATE(1634),
- [sym_member_expression] = STATE(1179),
- [sym_subscript_expression] = STATE(1179),
- [sym_assignment_expression] = STATE(1634),
- [sym__augmented_assignment_lhs] = STATE(2878),
- [sym_augmented_assignment_expression] = STATE(1634),
- [sym__destructuring_pattern] = STATE(5854),
- [sym_ternary_expression] = STATE(1634),
- [sym_binary_expression] = STATE(1634),
- [sym_unary_expression] = STATE(1634),
- [sym_update_expression] = STATE(1634),
- [sym_string] = STATE(1650),
- [sym_template_string] = STATE(1650),
- [sym_regex] = STATE(1650),
- [sym_meta_property] = STATE(1650),
- [sym_decorator] = STATE(1244),
- [sym_formal_parameters] = STATE(3742),
- [sym_non_null_expression] = STATE(1179),
- [sym_as_expression] = STATE(1634),
- [sym_satisfies_expression] = STATE(1634),
- [sym_instantiation_expression] = STATE(1634),
- [sym_internal_module] = STATE(1634),
- [sym_type_parameters] = STATE(5349),
- [aux_sym_export_statement_repeat1] = STATE(4458),
- [sym_identifier] = ACTIONS(837),
- [anon_sym_export] = ACTIONS(839),
- [anon_sym_type] = ACTIONS(839),
- [anon_sym_namespace] = ACTIONS(843),
- [anon_sym_LBRACE] = ACTIONS(2067),
- [anon_sym_typeof] = ACTIONS(187),
- [anon_sym_import] = ACTIONS(133),
- [anon_sym_let] = ACTIONS(839),
- [anon_sym_BANG] = ACTIONS(183),
- [anon_sym_LPAREN] = ACTIONS(815),
- [anon_sym_await] = ACTIONS(142),
- [anon_sym_yield] = ACTIONS(144),
- [anon_sym_LBRACK] = ACTIONS(849),
- [sym_glimmer_opening_tag] = ACTIONS(148),
- [anon_sym_DQUOTE] = ACTIONS(150),
- [anon_sym_SQUOTE] = ACTIONS(152),
- [anon_sym_class] = ACTIONS(154),
- [anon_sym_async] = ACTIONS(851),
- [anon_sym_function] = ACTIONS(158),
- [anon_sym_new] = ACTIONS(853),
- [anon_sym_using] = ACTIONS(166),
- [anon_sym_PLUS] = ACTIONS(187),
- [anon_sym_DASH] = ACTIONS(187),
- [anon_sym_SLASH] = ACTIONS(646),
- [anon_sym_LT] = ACTIONS(181),
- [anon_sym_TILDE] = ACTIONS(183),
- [anon_sym_void] = ACTIONS(187),
- [anon_sym_delete] = ACTIONS(187),
- [anon_sym_PLUS_PLUS] = ACTIONS(719),
- [anon_sym_DASH_DASH] = ACTIONS(719),
- [sym_comment] = ACTIONS(5),
- [anon_sym_BQUOTE] = ACTIONS(825),
- [sym_number] = ACTIONS(787),
- [sym_private_property_identifier] = ACTIONS(196),
- [sym_this] = ACTIONS(200),
- [sym_super] = ACTIONS(200),
- [sym_true] = ACTIONS(200),
- [sym_false] = ACTIONS(200),
- [sym_null] = ACTIONS(200),
- [sym_undefined] = ACTIONS(827),
- [anon_sym_AT] = ACTIONS(99),
- [anon_sym_static] = ACTIONS(839),
- [anon_sym_readonly] = ACTIONS(839),
- [anon_sym_get] = ACTIONS(839),
- [anon_sym_set] = ACTIONS(839),
- [anon_sym_declare] = ACTIONS(839),
- [anon_sym_public] = ACTIONS(839),
- [anon_sym_private] = ACTIONS(839),
- [anon_sym_protected] = ACTIONS(839),
- [anon_sym_override] = ACTIONS(839),
- [anon_sym_module] = ACTIONS(839),
- [anon_sym_any] = ACTIONS(839),
- [anon_sym_number] = ACTIONS(839),
- [anon_sym_boolean] = ACTIONS(839),
- [anon_sym_string] = ACTIONS(839),
- [anon_sym_symbol] = ACTIONS(839),
- [anon_sym_object] = ACTIONS(839),
- [sym_html_comment] = ACTIONS(5),
- },
- [333] = {
- [sym_import] = STATE(3334),
- [sym_statement_block] = STATE(1641),
- [sym_parenthesized_expression] = STATE(1251),
- [sym_expression] = STATE(1507),
- [sym_primary_expression] = STATE(1468),
- [sym_yield_expression] = STATE(1634),
- [sym_object] = STATE(1650),
- [sym_object_pattern] = STATE(5633),
- [sym_array] = STATE(1650),
- [sym_array_pattern] = STATE(5633),
- [sym_glimmer_template] = STATE(1634),
- [sym_jsx_element] = STATE(1634),
- [sym_jsx_opening_element] = STATE(3026),
- [sym_jsx_self_closing_element] = STATE(1634),
- [sym_class] = STATE(1650),
- [sym_function_expression] = STATE(1650),
- [sym_generator_function] = STATE(1650),
- [sym_arrow_function] = STATE(1650),
- [sym__call_signature] = STATE(5828),
- [sym_call_expression] = STATE(1650),
- [sym_new_expression] = STATE(1634),
- [sym_await_expression] = STATE(1634),
- [sym_member_expression] = STATE(1251),
- [sym_subscript_expression] = STATE(1251),
- [sym_assignment_expression] = STATE(1634),
- [sym__augmented_assignment_lhs] = STATE(2900),
- [sym_augmented_assignment_expression] = STATE(1634),
- [sym__destructuring_pattern] = STATE(5633),
- [sym_ternary_expression] = STATE(1634),
- [sym_binary_expression] = STATE(1634),
- [sym_unary_expression] = STATE(1634),
- [sym_update_expression] = STATE(1634),
- [sym_string] = STATE(1650),
- [sym_template_string] = STATE(1650),
- [sym_regex] = STATE(1650),
- [sym_meta_property] = STATE(1650),
- [sym_decorator] = STATE(1244),
- [sym_formal_parameters] = STATE(3742),
- [sym_non_null_expression] = STATE(1251),
- [sym_as_expression] = STATE(1634),
- [sym_satisfies_expression] = STATE(1634),
- [sym_instantiation_expression] = STATE(1634),
- [sym_internal_module] = STATE(1634),
- [sym_type_parameters] = STATE(5349),
- [aux_sym_export_statement_repeat1] = STATE(4458),
- [sym_identifier] = ACTIONS(1428),
- [anon_sym_export] = ACTIONS(1044),
- [anon_sym_type] = ACTIONS(1044),
- [anon_sym_namespace] = ACTIONS(1046),
- [anon_sym_LBRACE] = ACTIONS(2069),
- [anon_sym_typeof] = ACTIONS(650),
- [anon_sym_import] = ACTIONS(133),
- [anon_sym_let] = ACTIONS(1044),
- [anon_sym_BANG] = ACTIONS(622),
- [anon_sym_LPAREN] = ACTIONS(815),
- [anon_sym_await] = ACTIONS(624),
- [anon_sym_yield] = ACTIONS(626),
- [anon_sym_LBRACK] = ACTIONS(817),
- [sym_glimmer_opening_tag] = ACTIONS(148),
- [anon_sym_DQUOTE] = ACTIONS(150),
- [anon_sym_SQUOTE] = ACTIONS(152),
- [anon_sym_class] = ACTIONS(154),
- [anon_sym_async] = ACTIONS(1052),
- [anon_sym_function] = ACTIONS(158),
- [anon_sym_new] = ACTIONS(1436),
- [anon_sym_using] = ACTIONS(636),
- [anon_sym_PLUS] = ACTIONS(650),
- [anon_sym_DASH] = ACTIONS(650),
- [anon_sym_SLASH] = ACTIONS(646),
- [anon_sym_LT] = ACTIONS(181),
- [anon_sym_TILDE] = ACTIONS(622),
- [anon_sym_void] = ACTIONS(650),
- [anon_sym_delete] = ACTIONS(650),
- [anon_sym_PLUS_PLUS] = ACTIONS(652),
- [anon_sym_DASH_DASH] = ACTIONS(652),
- [sym_comment] = ACTIONS(5),
- [anon_sym_BQUOTE] = ACTIONS(825),
- [sym_number] = ACTIONS(787),
- [sym_private_property_identifier] = ACTIONS(654),
- [sym_this] = ACTIONS(200),
- [sym_super] = ACTIONS(200),
- [sym_true] = ACTIONS(200),
- [sym_false] = ACTIONS(200),
- [sym_null] = ACTIONS(200),
- [sym_undefined] = ACTIONS(1438),
- [anon_sym_AT] = ACTIONS(99),
- [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_override] = 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_object] = ACTIONS(1044),
- [sym_html_comment] = ACTIONS(5),
- },
- [334] = {
- [sym_import] = STATE(3306),
- [sym_statement_block] = STATE(2149),
- [sym_parenthesized_expression] = STATE(1300),
- [sym_expression] = STATE(1752),
- [sym_primary_expression] = STATE(1946),
- [sym_yield_expression] = STATE(2234),
- [sym_object] = STATE(2310),
- [sym_object_pattern] = STATE(5831),
- [sym_array] = STATE(2310),
- [sym_array_pattern] = STATE(5831),
- [sym_glimmer_template] = STATE(2234),
- [sym_jsx_element] = STATE(2234),
- [sym_jsx_opening_element] = STATE(3051),
- [sym_jsx_self_closing_element] = STATE(2234),
- [sym_class] = STATE(2310),
- [sym_function_expression] = STATE(2310),
- [sym_generator_function] = STATE(2310),
- [sym_arrow_function] = STATE(2310),
- [sym__call_signature] = STATE(5829),
- [sym_call_expression] = STATE(2310),
- [sym_new_expression] = STATE(2234),
- [sym_await_expression] = STATE(2234),
- [sym_member_expression] = STATE(1300),
- [sym_subscript_expression] = STATE(1300),
- [sym_assignment_expression] = STATE(2234),
- [sym__augmented_assignment_lhs] = STATE(2943),
- [sym_augmented_assignment_expression] = STATE(2234),
- [sym__destructuring_pattern] = STATE(5831),
- [sym_ternary_expression] = STATE(2234),
- [sym_binary_expression] = STATE(2234),
- [sym_unary_expression] = STATE(2234),
- [sym_update_expression] = STATE(2234),
- [sym_string] = STATE(2310),
- [sym_template_string] = STATE(2310),
- [sym_regex] = STATE(2310),
- [sym_meta_property] = STATE(2310),
- [sym_decorator] = STATE(1244),
- [sym_formal_parameters] = STATE(3742),
- [sym_non_null_expression] = STATE(1300),
- [sym_as_expression] = STATE(2234),
- [sym_satisfies_expression] = STATE(2234),
- [sym_instantiation_expression] = STATE(2234),
- [sym_internal_module] = STATE(2234),
- [sym_type_parameters] = STATE(5349),
- [aux_sym_export_statement_repeat1] = STATE(4499),
- [sym_identifier] = ACTIONS(1446),
- [anon_sym_export] = ACTIONS(1202),
- [anon_sym_type] = ACTIONS(1202),
- [anon_sym_namespace] = ACTIONS(1204),
- [anon_sym_LBRACE] = ACTIONS(2055),
- [anon_sym_typeof] = ACTIONS(1228),
- [anon_sym_import] = ACTIONS(133),
- [anon_sym_let] = ACTIONS(1202),
- [anon_sym_BANG] = ACTIONS(1210),
- [anon_sym_LPAREN] = ACTIONS(41),
- [anon_sym_await] = ACTIONS(1212),
- [anon_sym_yield] = ACTIONS(1214),
- [anon_sym_LBRACK] = ACTIONS(65),
- [sym_glimmer_opening_tag] = ACTIONS(67),
- [anon_sym_DQUOTE] = ACTIONS(69),
- [anon_sym_SQUOTE] = ACTIONS(71),
- [anon_sym_class] = ACTIONS(709),
- [anon_sym_async] = ACTIONS(1218),
- [anon_sym_function] = ACTIONS(713),
- [anon_sym_new] = ACTIONS(1450),
- [anon_sym_using] = ACTIONS(1222),
- [anon_sym_PLUS] = ACTIONS(1228),
- [anon_sym_DASH] = ACTIONS(1228),
- [anon_sym_SLASH] = ACTIONS(882),
- [anon_sym_LT] = ACTIONS(85),
- [anon_sym_TILDE] = ACTIONS(1210),
- [anon_sym_void] = ACTIONS(1228),
- [anon_sym_delete] = ACTIONS(1228),
- [anon_sym_PLUS_PLUS] = ACTIONS(1230),
- [anon_sym_DASH_DASH] = ACTIONS(1230),
- [sym_comment] = ACTIONS(5),
- [anon_sym_BQUOTE] = ACTIONS(89),
- [sym_number] = ACTIONS(91),
- [sym_private_property_identifier] = ACTIONS(1236),
- [sym_this] = ACTIONS(95),
- [sym_super] = ACTIONS(95),
- [sym_true] = ACTIONS(95),
- [sym_false] = ACTIONS(95),
- [sym_null] = ACTIONS(95),
- [sym_undefined] = ACTIONS(1452),
- [anon_sym_AT] = ACTIONS(99),
- [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_override] = 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_object] = ACTIONS(1202),
- [sym_html_comment] = ACTIONS(5),
- },
- [335] = {
- [sym_import] = STATE(3306),
- [sym_statement_block] = STATE(2215),
- [sym_parenthesized_expression] = STATE(1300),
- [sym_expression] = STATE(1657),
- [sym_primary_expression] = STATE(1946),
- [sym_yield_expression] = STATE(2234),
- [sym_object] = STATE(2310),
- [sym_object_pattern] = STATE(5831),
- [sym_array] = STATE(2310),
- [sym_array_pattern] = STATE(5831),
- [sym_glimmer_template] = STATE(2234),
- [sym_jsx_element] = STATE(2234),
- [sym_jsx_opening_element] = STATE(3051),
- [sym_jsx_self_closing_element] = STATE(2234),
- [sym_class] = STATE(2310),
- [sym_function_expression] = STATE(2310),
- [sym_generator_function] = STATE(2310),
- [sym_arrow_function] = STATE(2310),
- [sym__call_signature] = STATE(5829),
- [sym_call_expression] = STATE(2310),
- [sym_new_expression] = STATE(2234),
- [sym_await_expression] = STATE(2234),
- [sym_member_expression] = STATE(1300),
- [sym_subscript_expression] = STATE(1300),
- [sym_assignment_expression] = STATE(2234),
- [sym__augmented_assignment_lhs] = STATE(2943),
- [sym_augmented_assignment_expression] = STATE(2234),
- [sym__destructuring_pattern] = STATE(5831),
- [sym_ternary_expression] = STATE(2234),
- [sym_binary_expression] = STATE(2234),
- [sym_unary_expression] = STATE(2234),
- [sym_update_expression] = STATE(2234),
- [sym_string] = STATE(2310),
- [sym_template_string] = STATE(2310),
- [sym_regex] = STATE(2310),
- [sym_meta_property] = STATE(2310),
- [sym_decorator] = STATE(1244),
- [sym_formal_parameters] = STATE(3742),
- [sym_non_null_expression] = STATE(1300),
- [sym_as_expression] = STATE(2234),
- [sym_satisfies_expression] = STATE(2234),
- [sym_instantiation_expression] = STATE(2234),
- [sym_internal_module] = STATE(2234),
- [sym_type_parameters] = STATE(5349),
- [aux_sym_export_statement_repeat1] = STATE(4499),
- [sym_identifier] = ACTIONS(1446),
- [anon_sym_export] = ACTIONS(1202),
- [anon_sym_type] = ACTIONS(1202),
- [anon_sym_namespace] = ACTIONS(1204),
- [anon_sym_LBRACE] = ACTIONS(2055),
- [anon_sym_typeof] = ACTIONS(1228),
- [anon_sym_import] = ACTIONS(133),
- [anon_sym_let] = ACTIONS(1202),
- [anon_sym_BANG] = ACTIONS(1210),
- [anon_sym_LPAREN] = ACTIONS(41),
- [anon_sym_await] = ACTIONS(1212),
- [anon_sym_yield] = ACTIONS(1214),
- [anon_sym_LBRACK] = ACTIONS(65),
- [sym_glimmer_opening_tag] = ACTIONS(67),
- [anon_sym_DQUOTE] = ACTIONS(69),
- [anon_sym_SQUOTE] = ACTIONS(71),
- [anon_sym_class] = ACTIONS(709),
- [anon_sym_async] = ACTIONS(1218),
- [anon_sym_function] = ACTIONS(713),
- [anon_sym_new] = ACTIONS(1450),
- [anon_sym_using] = ACTIONS(1222),
- [anon_sym_PLUS] = ACTIONS(1228),
- [anon_sym_DASH] = ACTIONS(1228),
- [anon_sym_SLASH] = ACTIONS(882),
- [anon_sym_LT] = ACTIONS(85),
- [anon_sym_TILDE] = ACTIONS(1210),
- [anon_sym_void] = ACTIONS(1228),
- [anon_sym_delete] = ACTIONS(1228),
- [anon_sym_PLUS_PLUS] = ACTIONS(1230),
- [anon_sym_DASH_DASH] = ACTIONS(1230),
- [sym_comment] = ACTIONS(5),
- [anon_sym_BQUOTE] = ACTIONS(89),
- [sym_number] = ACTIONS(91),
- [sym_private_property_identifier] = ACTIONS(1236),
- [sym_this] = ACTIONS(95),
- [sym_super] = ACTIONS(95),
- [sym_true] = ACTIONS(95),
- [sym_false] = ACTIONS(95),
- [sym_null] = ACTIONS(95),
- [sym_undefined] = ACTIONS(1452),
- [anon_sym_AT] = ACTIONS(99),
- [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_override] = 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_object] = ACTIONS(1202),
- [sym_html_comment] = ACTIONS(5),
- },
- [336] = {
- [sym_import] = STATE(3306),
- [sym_statement_block] = STATE(2379),
- [sym_parenthesized_expression] = STATE(1300),
- [sym_expression] = STATE(1737),
- [sym_primary_expression] = STATE(1946),
- [sym_yield_expression] = STATE(2234),
- [sym_object] = STATE(2310),
- [sym_object_pattern] = STATE(5831),
- [sym_array] = STATE(2310),
- [sym_array_pattern] = STATE(5831),
- [sym_glimmer_template] = STATE(2234),
- [sym_jsx_element] = STATE(2234),
- [sym_jsx_opening_element] = STATE(3051),
- [sym_jsx_self_closing_element] = STATE(2234),
- [sym_class] = STATE(2310),
- [sym_function_expression] = STATE(2310),
- [sym_generator_function] = STATE(2310),
- [sym_arrow_function] = STATE(2310),
- [sym__call_signature] = STATE(5829),
- [sym_call_expression] = STATE(2310),
- [sym_new_expression] = STATE(2234),
- [sym_await_expression] = STATE(2234),
- [sym_member_expression] = STATE(1300),
- [sym_subscript_expression] = STATE(1300),
- [sym_assignment_expression] = STATE(2234),
- [sym__augmented_assignment_lhs] = STATE(2943),
- [sym_augmented_assignment_expression] = STATE(2234),
- [sym__destructuring_pattern] = STATE(5831),
- [sym_ternary_expression] = STATE(2234),
- [sym_binary_expression] = STATE(2234),
- [sym_unary_expression] = STATE(2234),
- [sym_update_expression] = STATE(2234),
- [sym_string] = STATE(2310),
- [sym_template_string] = STATE(2310),
- [sym_regex] = STATE(2310),
- [sym_meta_property] = STATE(2310),
- [sym_decorator] = STATE(1244),
- [sym_formal_parameters] = STATE(3742),
- [sym_non_null_expression] = STATE(1300),
- [sym_as_expression] = STATE(2234),
- [sym_satisfies_expression] = STATE(2234),
- [sym_instantiation_expression] = STATE(2234),
- [sym_internal_module] = STATE(2234),
- [sym_type_parameters] = STATE(5349),
- [aux_sym_export_statement_repeat1] = STATE(4499),
- [sym_identifier] = ACTIONS(1446),
- [anon_sym_export] = ACTIONS(1202),
- [anon_sym_type] = ACTIONS(1202),
- [anon_sym_namespace] = ACTIONS(1204),
- [anon_sym_LBRACE] = ACTIONS(2055),
- [anon_sym_typeof] = ACTIONS(1228),
- [anon_sym_import] = ACTIONS(133),
- [anon_sym_let] = ACTIONS(1202),
- [anon_sym_BANG] = ACTIONS(1210),
- [anon_sym_LPAREN] = ACTIONS(41),
- [anon_sym_await] = ACTIONS(1212),
- [anon_sym_yield] = ACTIONS(1214),
- [anon_sym_LBRACK] = ACTIONS(65),
- [sym_glimmer_opening_tag] = ACTIONS(67),
- [anon_sym_DQUOTE] = ACTIONS(69),
- [anon_sym_SQUOTE] = ACTIONS(71),
- [anon_sym_class] = ACTIONS(709),
- [anon_sym_async] = ACTIONS(1218),
- [anon_sym_function] = ACTIONS(713),
- [anon_sym_new] = ACTIONS(1450),
- [anon_sym_using] = ACTIONS(1222),
- [anon_sym_PLUS] = ACTIONS(1228),
- [anon_sym_DASH] = ACTIONS(1228),
- [anon_sym_SLASH] = ACTIONS(882),
- [anon_sym_LT] = ACTIONS(85),
- [anon_sym_TILDE] = ACTIONS(1210),
- [anon_sym_void] = ACTIONS(1228),
- [anon_sym_delete] = ACTIONS(1228),
- [anon_sym_PLUS_PLUS] = ACTIONS(1230),
- [anon_sym_DASH_DASH] = ACTIONS(1230),
- [sym_comment] = ACTIONS(5),
- [anon_sym_BQUOTE] = ACTIONS(89),
- [sym_number] = ACTIONS(91),
- [sym_private_property_identifier] = ACTIONS(1236),
- [sym_this] = ACTIONS(95),
- [sym_super] = ACTIONS(95),
- [sym_true] = ACTIONS(95),
- [sym_false] = ACTIONS(95),
- [sym_null] = ACTIONS(95),
- [sym_undefined] = ACTIONS(1452),
- [anon_sym_AT] = ACTIONS(99),
- [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_override] = 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_object] = ACTIONS(1202),
- [sym_html_comment] = ACTIONS(5),
- },
- [337] = {
- [sym_import] = STATE(3334),
- [sym_parenthesized_expression] = STATE(1327),
- [sym_expression] = STATE(1793),
- [sym_primary_expression] = STATE(1468),
- [sym_yield_expression] = STATE(1634),
- [sym_object] = STATE(1650),
- [sym_object_pattern] = STATE(5821),
- [sym_array] = STATE(1650),
- [sym_array_pattern] = STATE(5821),
- [sym_glimmer_template] = STATE(1634),
- [sym_jsx_element] = STATE(1634),
- [sym_jsx_opening_element] = STATE(3026),
- [sym_jsx_self_closing_element] = STATE(1634),
- [sym_class] = STATE(1650),
- [sym_function_expression] = STATE(1650),
- [sym_generator_function] = STATE(1650),
- [sym_arrow_function] = STATE(1650),
- [sym__call_signature] = STATE(5743),
- [sym_call_expression] = STATE(1650),
- [sym_new_expression] = STATE(1634),
- [sym_await_expression] = STATE(1634),
- [sym_member_expression] = STATE(1327),
- [sym_subscript_expression] = STATE(1327),
- [sym_assignment_expression] = STATE(1634),
- [sym__augmented_assignment_lhs] = STATE(2919),
- [sym_augmented_assignment_expression] = STATE(1634),
- [sym__destructuring_pattern] = STATE(5821),
- [sym_ternary_expression] = STATE(1634),
- [sym_binary_expression] = STATE(1634),
- [sym_unary_expression] = STATE(1634),
- [sym_update_expression] = STATE(1634),
- [sym_string] = STATE(1650),
- [sym_template_string] = STATE(1650),
- [sym_regex] = STATE(1650),
- [sym_meta_property] = STATE(1650),
- [sym_decorator] = STATE(1244),
- [sym_formal_parameters] = STATE(3742),
- [sym_non_null_expression] = STATE(1327),
- [sym_as_expression] = STATE(1634),
- [sym_satisfies_expression] = STATE(1634),
- [sym_instantiation_expression] = STATE(1634),
- [sym__extends_clause_single] = STATE(4481),
- [sym_internal_module] = STATE(1634),
- [sym_type_parameters] = STATE(5349),
- [aux_sym_export_statement_repeat1] = STATE(4458),
- [sym_identifier] = ACTIONS(1462),
- [anon_sym_export] = ACTIONS(1286),
- [anon_sym_type] = ACTIONS(1286),
- [anon_sym_namespace] = ACTIONS(1288),
- [anon_sym_LBRACE] = ACTIONS(813),
- [anon_sym_typeof] = ACTIONS(1308),
- [anon_sym_import] = ACTIONS(133),
- [anon_sym_let] = ACTIONS(1286),
- [anon_sym_BANG] = ACTIONS(1292),
- [anon_sym_LPAREN] = ACTIONS(815),
- [anon_sym_await] = ACTIONS(1294),
- [anon_sym_yield] = ACTIONS(1296),
- [anon_sym_LBRACK] = ACTIONS(817),
- [sym_glimmer_opening_tag] = ACTIONS(148),
- [anon_sym_DQUOTE] = ACTIONS(150),
- [anon_sym_SQUOTE] = ACTIONS(152),
- [anon_sym_class] = ACTIONS(154),
- [anon_sym_async] = ACTIONS(1298),
- [anon_sym_function] = ACTIONS(158),
- [anon_sym_new] = ACTIONS(1466),
- [anon_sym_using] = ACTIONS(1302),
- [anon_sym_PLUS] = ACTIONS(1308),
- [anon_sym_DASH] = ACTIONS(1308),
- [anon_sym_SLASH] = ACTIONS(922),
- [anon_sym_LT] = ACTIONS(181),
- [anon_sym_TILDE] = ACTIONS(1292),
- [anon_sym_void] = ACTIONS(1308),
- [anon_sym_delete] = ACTIONS(1308),
- [anon_sym_PLUS_PLUS] = ACTIONS(1310),
- [anon_sym_DASH_DASH] = ACTIONS(1310),
- [sym_comment] = ACTIONS(5),
- [anon_sym_BQUOTE] = ACTIONS(825),
- [sym_number] = ACTIONS(787),
- [sym_private_property_identifier] = ACTIONS(1312),
- [sym_this] = ACTIONS(200),
- [sym_super] = ACTIONS(200),
- [sym_true] = ACTIONS(200),
- [sym_false] = ACTIONS(200),
- [sym_null] = ACTIONS(200),
- [sym_undefined] = ACTIONS(1468),
- [anon_sym_AT] = ACTIONS(99),
- [anon_sym_static] = ACTIONS(1286),
- [anon_sym_readonly] = ACTIONS(1286),
- [anon_sym_get] = ACTIONS(1286),
- [anon_sym_set] = ACTIONS(1286),
- [anon_sym_declare] = ACTIONS(1286),
- [anon_sym_public] = ACTIONS(1286),
- [anon_sym_private] = ACTIONS(1286),
- [anon_sym_protected] = ACTIONS(1286),
- [anon_sym_override] = ACTIONS(1286),
- [anon_sym_module] = ACTIONS(1286),
- [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_object] = ACTIONS(1286),
- [sym_html_comment] = ACTIONS(5),
- },
- [338] = {
- [sym_import] = STATE(3306),
- [sym_statement_block] = STATE(2161),
- [sym_parenthesized_expression] = STATE(1300),
- [sym_expression] = STATE(1772),
- [sym_primary_expression] = STATE(1946),
- [sym_yield_expression] = STATE(2234),
- [sym_object] = STATE(2310),
- [sym_object_pattern] = STATE(5831),
- [sym_array] = STATE(2310),
- [sym_array_pattern] = STATE(5831),
- [sym_glimmer_template] = STATE(2234),
- [sym_jsx_element] = STATE(2234),
- [sym_jsx_opening_element] = STATE(3051),
- [sym_jsx_self_closing_element] = STATE(2234),
- [sym_class] = STATE(2310),
- [sym_function_expression] = STATE(2310),
- [sym_generator_function] = STATE(2310),
- [sym_arrow_function] = STATE(2310),
- [sym__call_signature] = STATE(5829),
- [sym_call_expression] = STATE(2310),
- [sym_new_expression] = STATE(2234),
- [sym_await_expression] = STATE(2234),
- [sym_member_expression] = STATE(1300),
- [sym_subscript_expression] = STATE(1300),
- [sym_assignment_expression] = STATE(2234),
- [sym__augmented_assignment_lhs] = STATE(2943),
- [sym_augmented_assignment_expression] = STATE(2234),
- [sym__destructuring_pattern] = STATE(5831),
- [sym_ternary_expression] = STATE(2234),
- [sym_binary_expression] = STATE(2234),
- [sym_unary_expression] = STATE(2234),
- [sym_update_expression] = STATE(2234),
- [sym_string] = STATE(2310),
- [sym_template_string] = STATE(2310),
- [sym_regex] = STATE(2310),
- [sym_meta_property] = STATE(2310),
- [sym_decorator] = STATE(1244),
- [sym_formal_parameters] = STATE(3742),
- [sym_non_null_expression] = STATE(1300),
- [sym_as_expression] = STATE(2234),
- [sym_satisfies_expression] = STATE(2234),
- [sym_instantiation_expression] = STATE(2234),
- [sym_internal_module] = STATE(2234),
- [sym_type_parameters] = STATE(5349),
- [aux_sym_export_statement_repeat1] = STATE(4499),
- [sym_identifier] = ACTIONS(1446),
- [anon_sym_export] = ACTIONS(1202),
- [anon_sym_type] = ACTIONS(1202),
- [anon_sym_namespace] = ACTIONS(1204),
- [anon_sym_LBRACE] = ACTIONS(2055),
- [anon_sym_typeof] = ACTIONS(1228),
- [anon_sym_import] = ACTIONS(133),
- [anon_sym_let] = ACTIONS(1202),
- [anon_sym_BANG] = ACTIONS(1210),
- [anon_sym_LPAREN] = ACTIONS(41),
- [anon_sym_await] = ACTIONS(1212),
- [anon_sym_yield] = ACTIONS(1214),
- [anon_sym_LBRACK] = ACTIONS(65),
- [sym_glimmer_opening_tag] = ACTIONS(67),
- [anon_sym_DQUOTE] = ACTIONS(69),
- [anon_sym_SQUOTE] = ACTIONS(71),
- [anon_sym_class] = ACTIONS(709),
- [anon_sym_async] = ACTIONS(1218),
- [anon_sym_function] = ACTIONS(713),
- [anon_sym_new] = ACTIONS(1450),
- [anon_sym_using] = ACTIONS(1222),
- [anon_sym_PLUS] = ACTIONS(1228),
- [anon_sym_DASH] = ACTIONS(1228),
- [anon_sym_SLASH] = ACTIONS(882),
- [anon_sym_LT] = ACTIONS(85),
- [anon_sym_TILDE] = ACTIONS(1210),
- [anon_sym_void] = ACTIONS(1228),
- [anon_sym_delete] = ACTIONS(1228),
- [anon_sym_PLUS_PLUS] = ACTIONS(1230),
- [anon_sym_DASH_DASH] = ACTIONS(1230),
- [sym_comment] = ACTIONS(5),
- [anon_sym_BQUOTE] = ACTIONS(89),
- [sym_number] = ACTIONS(91),
- [sym_private_property_identifier] = ACTIONS(1236),
- [sym_this] = ACTIONS(95),
- [sym_super] = ACTIONS(95),
- [sym_true] = ACTIONS(95),
- [sym_false] = ACTIONS(95),
- [sym_null] = ACTIONS(95),
- [sym_undefined] = ACTIONS(1452),
- [anon_sym_AT] = ACTIONS(99),
- [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_override] = 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_object] = ACTIONS(1202),
- [sym_html_comment] = ACTIONS(5),
- },
- [339] = {
- [sym_import] = STATE(3306),
- [sym_statement_block] = STATE(2167),
- [sym_parenthesized_expression] = STATE(1300),
- [sym_expression] = STATE(1773),
- [sym_primary_expression] = STATE(1946),
- [sym_yield_expression] = STATE(2234),
- [sym_object] = STATE(2310),
- [sym_object_pattern] = STATE(5831),
- [sym_array] = STATE(2310),
- [sym_array_pattern] = STATE(5831),
- [sym_glimmer_template] = STATE(2234),
- [sym_jsx_element] = STATE(2234),
- [sym_jsx_opening_element] = STATE(3051),
- [sym_jsx_self_closing_element] = STATE(2234),
- [sym_class] = STATE(2310),
- [sym_function_expression] = STATE(2310),
- [sym_generator_function] = STATE(2310),
- [sym_arrow_function] = STATE(2310),
- [sym__call_signature] = STATE(5829),
- [sym_call_expression] = STATE(2310),
- [sym_new_expression] = STATE(2234),
- [sym_await_expression] = STATE(2234),
- [sym_member_expression] = STATE(1300),
- [sym_subscript_expression] = STATE(1300),
- [sym_assignment_expression] = STATE(2234),
- [sym__augmented_assignment_lhs] = STATE(2943),
- [sym_augmented_assignment_expression] = STATE(2234),
- [sym__destructuring_pattern] = STATE(5831),
- [sym_ternary_expression] = STATE(2234),
- [sym_binary_expression] = STATE(2234),
- [sym_unary_expression] = STATE(2234),
- [sym_update_expression] = STATE(2234),
- [sym_string] = STATE(2310),
- [sym_template_string] = STATE(2310),
- [sym_regex] = STATE(2310),
- [sym_meta_property] = STATE(2310),
- [sym_decorator] = STATE(1244),
- [sym_formal_parameters] = STATE(3742),
- [sym_non_null_expression] = STATE(1300),
- [sym_as_expression] = STATE(2234),
- [sym_satisfies_expression] = STATE(2234),
- [sym_instantiation_expression] = STATE(2234),
- [sym_internal_module] = STATE(2234),
- [sym_type_parameters] = STATE(5349),
- [aux_sym_export_statement_repeat1] = STATE(4499),
- [sym_identifier] = ACTIONS(1446),
- [anon_sym_export] = ACTIONS(1202),
- [anon_sym_type] = ACTIONS(1202),
- [anon_sym_namespace] = ACTIONS(1204),
- [anon_sym_LBRACE] = ACTIONS(2055),
- [anon_sym_typeof] = ACTIONS(1228),
- [anon_sym_import] = ACTIONS(133),
- [anon_sym_let] = ACTIONS(1202),
- [anon_sym_BANG] = ACTIONS(1210),
- [anon_sym_LPAREN] = ACTIONS(41),
- [anon_sym_await] = ACTIONS(1212),
- [anon_sym_yield] = ACTIONS(1214),
- [anon_sym_LBRACK] = ACTIONS(65),
- [sym_glimmer_opening_tag] = ACTIONS(67),
- [anon_sym_DQUOTE] = ACTIONS(69),
- [anon_sym_SQUOTE] = ACTIONS(71),
- [anon_sym_class] = ACTIONS(709),
- [anon_sym_async] = ACTIONS(1218),
- [anon_sym_function] = ACTIONS(713),
- [anon_sym_new] = ACTIONS(1450),
- [anon_sym_using] = ACTIONS(1222),
- [anon_sym_PLUS] = ACTIONS(1228),
- [anon_sym_DASH] = ACTIONS(1228),
- [anon_sym_SLASH] = ACTIONS(882),
- [anon_sym_LT] = ACTIONS(85),
- [anon_sym_TILDE] = ACTIONS(1210),
- [anon_sym_void] = ACTIONS(1228),
- [anon_sym_delete] = ACTIONS(1228),
- [anon_sym_PLUS_PLUS] = ACTIONS(1230),
- [anon_sym_DASH_DASH] = ACTIONS(1230),
- [sym_comment] = ACTIONS(5),
- [anon_sym_BQUOTE] = ACTIONS(89),
- [sym_number] = ACTIONS(91),
- [sym_private_property_identifier] = ACTIONS(1236),
- [sym_this] = ACTIONS(95),
- [sym_super] = ACTIONS(95),
- [sym_true] = ACTIONS(95),
- [sym_false] = ACTIONS(95),
- [sym_null] = ACTIONS(95),
- [sym_undefined] = ACTIONS(1452),
- [anon_sym_AT] = ACTIONS(99),
- [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_override] = 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_object] = ACTIONS(1202),
- [sym_html_comment] = ACTIONS(5),
- },
- [340] = {
- [sym_import] = STATE(3334),
- [sym_statement_block] = STATE(1641),
- [sym_parenthesized_expression] = STATE(1336),
- [sym_expression] = STATE(2051),
- [sym_primary_expression] = STATE(1468),
- [sym_yield_expression] = STATE(1634),
- [sym_object] = STATE(1650),
- [sym_object_pattern] = STATE(5745),
- [sym_array] = STATE(1650),
- [sym_array_pattern] = STATE(5745),
- [sym_glimmer_template] = STATE(1634),
- [sym_jsx_element] = STATE(1634),
- [sym_jsx_opening_element] = STATE(3026),
- [sym_jsx_self_closing_element] = STATE(1634),
- [sym_class] = STATE(1650),
- [sym_function_expression] = STATE(1650),
- [sym_generator_function] = STATE(1650),
- [sym_arrow_function] = STATE(1650),
- [sym__call_signature] = STATE(5553),
- [sym_call_expression] = STATE(1650),
- [sym_new_expression] = STATE(1634),
- [sym_await_expression] = STATE(1634),
- [sym_member_expression] = STATE(1336),
- [sym_subscript_expression] = STATE(1336),
- [sym_assignment_expression] = STATE(1634),
- [sym__augmented_assignment_lhs] = STATE(2884),
- [sym_augmented_assignment_expression] = STATE(1634),
- [sym__destructuring_pattern] = STATE(5745),
- [sym_ternary_expression] = STATE(1634),
- [sym_binary_expression] = STATE(1634),
- [sym_unary_expression] = STATE(1634),
- [sym_update_expression] = STATE(1634),
- [sym_string] = STATE(1650),
- [sym_template_string] = STATE(1650),
- [sym_regex] = STATE(1650),
- [sym_meta_property] = STATE(1650),
- [sym_decorator] = STATE(1244),
- [sym_formal_parameters] = STATE(3742),
- [sym_non_null_expression] = STATE(1336),
- [sym_as_expression] = STATE(1634),
- [sym_satisfies_expression] = STATE(1634),
- [sym_instantiation_expression] = STATE(1634),
- [sym_internal_module] = STATE(1634),
- [sym_type_parameters] = STATE(5349),
- [aux_sym_export_statement_repeat1] = STATE(4458),
- [sym_identifier] = ACTIONS(1470),
- [anon_sym_export] = ACTIONS(1250),
- [anon_sym_type] = ACTIONS(1250),
- [anon_sym_namespace] = ACTIONS(1252),
- [anon_sym_LBRACE] = ACTIONS(2069),
- [anon_sym_typeof] = ACTIONS(1272),
- [anon_sym_import] = ACTIONS(133),
- [anon_sym_let] = ACTIONS(1250),
- [anon_sym_BANG] = ACTIONS(1256),
- [anon_sym_LPAREN] = ACTIONS(815),
- [anon_sym_await] = ACTIONS(1258),
- [anon_sym_yield] = ACTIONS(1260),
- [anon_sym_LBRACK] = ACTIONS(817),
- [sym_glimmer_opening_tag] = ACTIONS(148),
- [anon_sym_DQUOTE] = ACTIONS(150),
- [anon_sym_SQUOTE] = ACTIONS(152),
- [anon_sym_class] = ACTIONS(154),
- [anon_sym_async] = ACTIONS(1262),
- [anon_sym_function] = ACTIONS(158),
- [anon_sym_new] = ACTIONS(1474),
- [anon_sym_using] = ACTIONS(1266),
- [anon_sym_PLUS] = ACTIONS(1272),
- [anon_sym_DASH] = ACTIONS(1272),
- [anon_sym_SLASH] = ACTIONS(646),
- [anon_sym_LT] = ACTIONS(181),
- [anon_sym_TILDE] = ACTIONS(1256),
- [anon_sym_void] = ACTIONS(1272),
- [anon_sym_delete] = ACTIONS(1272),
- [anon_sym_PLUS_PLUS] = ACTIONS(1274),
- [anon_sym_DASH_DASH] = ACTIONS(1274),
- [sym_comment] = ACTIONS(5),
- [anon_sym_BQUOTE] = ACTIONS(825),
- [sym_number] = ACTIONS(787),
- [sym_private_property_identifier] = ACTIONS(1276),
- [sym_this] = ACTIONS(200),
- [sym_super] = ACTIONS(200),
- [sym_true] = ACTIONS(200),
- [sym_false] = ACTIONS(200),
- [sym_null] = ACTIONS(200),
- [sym_undefined] = ACTIONS(1476),
- [anon_sym_AT] = ACTIONS(99),
- [anon_sym_static] = ACTIONS(1250),
- [anon_sym_readonly] = ACTIONS(1250),
- [anon_sym_get] = ACTIONS(1250),
- [anon_sym_set] = ACTIONS(1250),
- [anon_sym_declare] = ACTIONS(1250),
- [anon_sym_public] = ACTIONS(1250),
- [anon_sym_private] = ACTIONS(1250),
- [anon_sym_protected] = ACTIONS(1250),
- [anon_sym_override] = ACTIONS(1250),
- [anon_sym_module] = ACTIONS(1250),
- [anon_sym_any] = ACTIONS(1250),
- [anon_sym_number] = ACTIONS(1250),
- [anon_sym_boolean] = ACTIONS(1250),
- [anon_sym_string] = ACTIONS(1250),
- [anon_sym_symbol] = ACTIONS(1250),
- [anon_sym_object] = ACTIONS(1250),
- [sym_html_comment] = ACTIONS(5),
- },
- [341] = {
- [sym_import] = STATE(3334),
- [sym_parenthesized_expression] = STATE(1251),
- [sym_expression] = STATE(1839),
- [sym_primary_expression] = STATE(1468),
- [sym_yield_expression] = STATE(1634),
- [sym_object] = STATE(1650),
- [sym_object_pattern] = STATE(5633),
- [sym_array] = STATE(1650),
- [sym_array_pattern] = STATE(5633),
- [sym_glimmer_template] = STATE(1634),
- [sym_jsx_element] = STATE(1634),
- [sym_jsx_opening_element] = STATE(3026),
- [sym_jsx_self_closing_element] = STATE(1634),
- [sym_class] = STATE(1650),
- [sym_function_expression] = STATE(1650),
- [sym_generator_function] = STATE(1650),
- [sym_arrow_function] = STATE(1650),
- [sym__call_signature] = STATE(5828),
- [sym_call_expression] = STATE(1650),
- [sym_new_expression] = STATE(1634),
- [sym_await_expression] = STATE(1634),
- [sym_member_expression] = STATE(1251),
- [sym_subscript_expression] = STATE(1251),
- [sym_assignment_expression] = STATE(1634),
- [sym__augmented_assignment_lhs] = STATE(2900),
- [sym_augmented_assignment_expression] = STATE(1634),
- [sym__destructuring_pattern] = STATE(5633),
- [sym_ternary_expression] = STATE(1634),
- [sym_binary_expression] = STATE(1634),
- [sym_unary_expression] = STATE(1634),
- [sym_update_expression] = STATE(1634),
- [sym_sequence_expression] = STATE(5736),
- [sym_string] = STATE(1650),
- [sym_template_string] = STATE(1650),
- [sym_regex] = STATE(1650),
- [sym_meta_property] = STATE(1650),
- [sym_decorator] = STATE(1244),
- [sym_formal_parameters] = STATE(3742),
- [sym_non_null_expression] = STATE(1251),
- [sym_as_expression] = STATE(1634),
- [sym_satisfies_expression] = STATE(1634),
- [sym_instantiation_expression] = STATE(1634),
- [sym_internal_module] = STATE(1634),
- [sym_type_parameters] = STATE(5349),
- [aux_sym_export_statement_repeat1] = STATE(4458),
- [sym_identifier] = ACTIONS(1428),
- [anon_sym_export] = ACTIONS(1044),
- [anon_sym_type] = ACTIONS(1044),
- [anon_sym_namespace] = ACTIONS(1046),
- [anon_sym_LBRACE] = ACTIONS(813),
- [anon_sym_typeof] = ACTIONS(650),
- [anon_sym_import] = ACTIONS(133),
- [anon_sym_let] = ACTIONS(1044),
- [anon_sym_BANG] = ACTIONS(622),
- [anon_sym_LPAREN] = ACTIONS(815),
- [anon_sym_await] = ACTIONS(624),
- [anon_sym_yield] = ACTIONS(626),
- [anon_sym_LBRACK] = ACTIONS(817),
- [sym_glimmer_opening_tag] = ACTIONS(148),
- [anon_sym_DQUOTE] = ACTIONS(150),
- [anon_sym_SQUOTE] = ACTIONS(152),
- [anon_sym_class] = ACTIONS(154),
- [anon_sym_async] = ACTIONS(1052),
- [anon_sym_function] = ACTIONS(158),
- [anon_sym_new] = ACTIONS(1436),
- [anon_sym_using] = ACTIONS(636),
- [anon_sym_PLUS] = ACTIONS(650),
- [anon_sym_DASH] = ACTIONS(650),
- [anon_sym_SLASH] = ACTIONS(646),
- [anon_sym_LT] = ACTIONS(181),
- [anon_sym_TILDE] = ACTIONS(622),
- [anon_sym_void] = ACTIONS(650),
- [anon_sym_delete] = ACTIONS(650),
- [anon_sym_PLUS_PLUS] = ACTIONS(652),
- [anon_sym_DASH_DASH] = ACTIONS(652),
- [sym_comment] = ACTIONS(5),
- [anon_sym_BQUOTE] = ACTIONS(825),
- [sym_number] = ACTIONS(787),
- [sym_private_property_identifier] = ACTIONS(654),
- [sym_this] = ACTIONS(200),
- [sym_super] = ACTIONS(200),
- [sym_true] = ACTIONS(200),
- [sym_false] = ACTIONS(200),
- [sym_null] = ACTIONS(200),
- [sym_undefined] = ACTIONS(1438),
- [anon_sym_AT] = ACTIONS(99),
- [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_override] = 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_object] = ACTIONS(1044),
- [sym_html_comment] = ACTIONS(5),
- },
- [342] = {
- [sym_import] = STATE(3334),
- [sym_statement_block] = STATE(1782),
- [sym_parenthesized_expression] = STATE(1336),
- [sym_expression] = STATE(2055),
- [sym_primary_expression] = STATE(1468),
- [sym_yield_expression] = STATE(1634),
- [sym_object] = STATE(1650),
- [sym_object_pattern] = STATE(5745),
- [sym_array] = STATE(1650),
- [sym_array_pattern] = STATE(5745),
- [sym_glimmer_template] = STATE(1634),
- [sym_jsx_element] = STATE(1634),
- [sym_jsx_opening_element] = STATE(3026),
- [sym_jsx_self_closing_element] = STATE(1634),
- [sym_class] = STATE(1650),
- [sym_function_expression] = STATE(1650),
- [sym_generator_function] = STATE(1650),
- [sym_arrow_function] = STATE(1650),
- [sym__call_signature] = STATE(5553),
- [sym_call_expression] = STATE(1650),
- [sym_new_expression] = STATE(1634),
- [sym_await_expression] = STATE(1634),
- [sym_member_expression] = STATE(1336),
- [sym_subscript_expression] = STATE(1336),
- [sym_assignment_expression] = STATE(1634),
- [sym__augmented_assignment_lhs] = STATE(2884),
- [sym_augmented_assignment_expression] = STATE(1634),
- [sym__destructuring_pattern] = STATE(5745),
- [sym_ternary_expression] = STATE(1634),
- [sym_binary_expression] = STATE(1634),
- [sym_unary_expression] = STATE(1634),
- [sym_update_expression] = STATE(1634),
- [sym_string] = STATE(1650),
- [sym_template_string] = STATE(1650),
- [sym_regex] = STATE(1650),
- [sym_meta_property] = STATE(1650),
- [sym_decorator] = STATE(1244),
- [sym_formal_parameters] = STATE(3742),
- [sym_non_null_expression] = STATE(1336),
- [sym_as_expression] = STATE(1634),
- [sym_satisfies_expression] = STATE(1634),
- [sym_instantiation_expression] = STATE(1634),
- [sym_internal_module] = STATE(1634),
- [sym_type_parameters] = STATE(5349),
- [aux_sym_export_statement_repeat1] = STATE(4458),
- [sym_identifier] = ACTIONS(1470),
- [anon_sym_export] = ACTIONS(1250),
- [anon_sym_type] = ACTIONS(1250),
- [anon_sym_namespace] = ACTIONS(1252),
- [anon_sym_LBRACE] = ACTIONS(2069),
- [anon_sym_typeof] = ACTIONS(1272),
- [anon_sym_import] = ACTIONS(133),
- [anon_sym_let] = ACTIONS(1250),
- [anon_sym_BANG] = ACTIONS(1256),
- [anon_sym_LPAREN] = ACTIONS(815),
- [anon_sym_await] = ACTIONS(1258),
- [anon_sym_yield] = ACTIONS(1260),
- [anon_sym_LBRACK] = ACTIONS(817),
- [sym_glimmer_opening_tag] = ACTIONS(148),
- [anon_sym_DQUOTE] = ACTIONS(150),
- [anon_sym_SQUOTE] = ACTIONS(152),
- [anon_sym_class] = ACTIONS(154),
- [anon_sym_async] = ACTIONS(1262),
- [anon_sym_function] = ACTIONS(158),
- [anon_sym_new] = ACTIONS(1474),
- [anon_sym_using] = ACTIONS(1266),
- [anon_sym_PLUS] = ACTIONS(1272),
- [anon_sym_DASH] = ACTIONS(1272),
- [anon_sym_SLASH] = ACTIONS(646),
- [anon_sym_LT] = ACTIONS(181),
- [anon_sym_TILDE] = ACTIONS(1256),
- [anon_sym_void] = ACTIONS(1272),
- [anon_sym_delete] = ACTIONS(1272),
- [anon_sym_PLUS_PLUS] = ACTIONS(1274),
- [anon_sym_DASH_DASH] = ACTIONS(1274),
- [sym_comment] = ACTIONS(5),
- [anon_sym_BQUOTE] = ACTIONS(825),
- [sym_number] = ACTIONS(787),
- [sym_private_property_identifier] = ACTIONS(1276),
- [sym_this] = ACTIONS(200),
- [sym_super] = ACTIONS(200),
- [sym_true] = ACTIONS(200),
- [sym_false] = ACTIONS(200),
- [sym_null] = ACTIONS(200),
- [sym_undefined] = ACTIONS(1476),
- [anon_sym_AT] = ACTIONS(99),
- [anon_sym_static] = ACTIONS(1250),
- [anon_sym_readonly] = ACTIONS(1250),
- [anon_sym_get] = ACTIONS(1250),
- [anon_sym_set] = ACTIONS(1250),
- [anon_sym_declare] = ACTIONS(1250),
- [anon_sym_public] = ACTIONS(1250),
- [anon_sym_private] = ACTIONS(1250),
- [anon_sym_protected] = ACTIONS(1250),
- [anon_sym_override] = ACTIONS(1250),
- [anon_sym_module] = ACTIONS(1250),
- [anon_sym_any] = ACTIONS(1250),
- [anon_sym_number] = ACTIONS(1250),
- [anon_sym_boolean] = ACTIONS(1250),
- [anon_sym_string] = ACTIONS(1250),
- [anon_sym_symbol] = ACTIONS(1250),
- [anon_sym_object] = ACTIONS(1250),
- [sym_html_comment] = ACTIONS(5),
- },
- [343] = {
- [sym_import] = STATE(3334),
- [sym_statement_block] = STATE(1679),
- [sym_parenthesized_expression] = STATE(1336),
- [sym_expression] = STATE(2068),
- [sym_primary_expression] = STATE(1468),
- [sym_yield_expression] = STATE(1634),
- [sym_object] = STATE(1650),
- [sym_object_pattern] = STATE(5745),
- [sym_array] = STATE(1650),
- [sym_array_pattern] = STATE(5745),
- [sym_glimmer_template] = STATE(1634),
- [sym_jsx_element] = STATE(1634),
- [sym_jsx_opening_element] = STATE(3026),
- [sym_jsx_self_closing_element] = STATE(1634),
- [sym_class] = STATE(1650),
- [sym_function_expression] = STATE(1650),
- [sym_generator_function] = STATE(1650),
- [sym_arrow_function] = STATE(1650),
- [sym__call_signature] = STATE(5553),
- [sym_call_expression] = STATE(1650),
- [sym_new_expression] = STATE(1634),
- [sym_await_expression] = STATE(1634),
- [sym_member_expression] = STATE(1336),
- [sym_subscript_expression] = STATE(1336),
- [sym_assignment_expression] = STATE(1634),
- [sym__augmented_assignment_lhs] = STATE(2884),
- [sym_augmented_assignment_expression] = STATE(1634),
- [sym__destructuring_pattern] = STATE(5745),
- [sym_ternary_expression] = STATE(1634),
- [sym_binary_expression] = STATE(1634),
- [sym_unary_expression] = STATE(1634),
- [sym_update_expression] = STATE(1634),
- [sym_string] = STATE(1650),
- [sym_template_string] = STATE(1650),
- [sym_regex] = STATE(1650),
- [sym_meta_property] = STATE(1650),
- [sym_decorator] = STATE(1244),
- [sym_formal_parameters] = STATE(3742),
- [sym_non_null_expression] = STATE(1336),
- [sym_as_expression] = STATE(1634),
- [sym_satisfies_expression] = STATE(1634),
- [sym_instantiation_expression] = STATE(1634),
- [sym_internal_module] = STATE(1634),
- [sym_type_parameters] = STATE(5349),
- [aux_sym_export_statement_repeat1] = STATE(4458),
- [sym_identifier] = ACTIONS(1470),
- [anon_sym_export] = ACTIONS(1250),
- [anon_sym_type] = ACTIONS(1250),
- [anon_sym_namespace] = ACTIONS(1252),
- [anon_sym_LBRACE] = ACTIONS(2069),
- [anon_sym_typeof] = ACTIONS(1272),
- [anon_sym_import] = ACTIONS(133),
- [anon_sym_let] = ACTIONS(1250),
- [anon_sym_BANG] = ACTIONS(1256),
- [anon_sym_LPAREN] = ACTIONS(815),
- [anon_sym_await] = ACTIONS(1258),
- [anon_sym_yield] = ACTIONS(1260),
- [anon_sym_LBRACK] = ACTIONS(817),
- [sym_glimmer_opening_tag] = ACTIONS(148),
- [anon_sym_DQUOTE] = ACTIONS(150),
- [anon_sym_SQUOTE] = ACTIONS(152),
- [anon_sym_class] = ACTIONS(154),
- [anon_sym_async] = ACTIONS(1262),
- [anon_sym_function] = ACTIONS(158),
- [anon_sym_new] = ACTIONS(1474),
- [anon_sym_using] = ACTIONS(1266),
- [anon_sym_PLUS] = ACTIONS(1272),
- [anon_sym_DASH] = ACTIONS(1272),
- [anon_sym_SLASH] = ACTIONS(646),
- [anon_sym_LT] = ACTIONS(181),
- [anon_sym_TILDE] = ACTIONS(1256),
- [anon_sym_void] = ACTIONS(1272),
- [anon_sym_delete] = ACTIONS(1272),
- [anon_sym_PLUS_PLUS] = ACTIONS(1274),
- [anon_sym_DASH_DASH] = ACTIONS(1274),
- [sym_comment] = ACTIONS(5),
- [anon_sym_BQUOTE] = ACTIONS(825),
- [sym_number] = ACTIONS(787),
- [sym_private_property_identifier] = ACTIONS(1276),
- [sym_this] = ACTIONS(200),
- [sym_super] = ACTIONS(200),
- [sym_true] = ACTIONS(200),
- [sym_false] = ACTIONS(200),
- [sym_null] = ACTIONS(200),
- [sym_undefined] = ACTIONS(1476),
- [anon_sym_AT] = ACTIONS(99),
- [anon_sym_static] = ACTIONS(1250),
- [anon_sym_readonly] = ACTIONS(1250),
- [anon_sym_get] = ACTIONS(1250),
- [anon_sym_set] = ACTIONS(1250),
- [anon_sym_declare] = ACTIONS(1250),
- [anon_sym_public] = ACTIONS(1250),
- [anon_sym_private] = ACTIONS(1250),
- [anon_sym_protected] = ACTIONS(1250),
- [anon_sym_override] = ACTIONS(1250),
- [anon_sym_module] = ACTIONS(1250),
- [anon_sym_any] = ACTIONS(1250),
- [anon_sym_number] = ACTIONS(1250),
- [anon_sym_boolean] = ACTIONS(1250),
- [anon_sym_string] = ACTIONS(1250),
- [anon_sym_symbol] = ACTIONS(1250),
- [anon_sym_object] = ACTIONS(1250),
- [sym_html_comment] = ACTIONS(5),
- },
- [344] = {
- [sym_import] = STATE(3334),
- [sym_statement_block] = STATE(1614),
- [sym_parenthesized_expression] = STATE(1336),
- [sym_expression] = STATE(2070),
- [sym_primary_expression] = STATE(1468),
- [sym_yield_expression] = STATE(1634),
- [sym_object] = STATE(1650),
- [sym_object_pattern] = STATE(5745),
- [sym_array] = STATE(1650),
- [sym_array_pattern] = STATE(5745),
- [sym_glimmer_template] = STATE(1634),
- [sym_jsx_element] = STATE(1634),
- [sym_jsx_opening_element] = STATE(3026),
- [sym_jsx_self_closing_element] = STATE(1634),
- [sym_class] = STATE(1650),
- [sym_function_expression] = STATE(1650),
- [sym_generator_function] = STATE(1650),
- [sym_arrow_function] = STATE(1650),
- [sym__call_signature] = STATE(5553),
- [sym_call_expression] = STATE(1650),
- [sym_new_expression] = STATE(1634),
- [sym_await_expression] = STATE(1634),
- [sym_member_expression] = STATE(1336),
- [sym_subscript_expression] = STATE(1336),
- [sym_assignment_expression] = STATE(1634),
- [sym__augmented_assignment_lhs] = STATE(2884),
- [sym_augmented_assignment_expression] = STATE(1634),
- [sym__destructuring_pattern] = STATE(5745),
- [sym_ternary_expression] = STATE(1634),
- [sym_binary_expression] = STATE(1634),
- [sym_unary_expression] = STATE(1634),
- [sym_update_expression] = STATE(1634),
- [sym_string] = STATE(1650),
- [sym_template_string] = STATE(1650),
- [sym_regex] = STATE(1650),
- [sym_meta_property] = STATE(1650),
- [sym_decorator] = STATE(1244),
- [sym_formal_parameters] = STATE(3742),
- [sym_non_null_expression] = STATE(1336),
- [sym_as_expression] = STATE(1634),
- [sym_satisfies_expression] = STATE(1634),
- [sym_instantiation_expression] = STATE(1634),
- [sym_internal_module] = STATE(1634),
- [sym_type_parameters] = STATE(5349),
- [aux_sym_export_statement_repeat1] = STATE(4458),
- [sym_identifier] = ACTIONS(1470),
- [anon_sym_export] = ACTIONS(1250),
- [anon_sym_type] = ACTIONS(1250),
- [anon_sym_namespace] = ACTIONS(1252),
- [anon_sym_LBRACE] = ACTIONS(2069),
- [anon_sym_typeof] = ACTIONS(1272),
- [anon_sym_import] = ACTIONS(133),
- [anon_sym_let] = ACTIONS(1250),
- [anon_sym_BANG] = ACTIONS(1256),
- [anon_sym_LPAREN] = ACTIONS(815),
- [anon_sym_await] = ACTIONS(1258),
- [anon_sym_yield] = ACTIONS(1260),
- [anon_sym_LBRACK] = ACTIONS(817),
- [sym_glimmer_opening_tag] = ACTIONS(148),
- [anon_sym_DQUOTE] = ACTIONS(150),
- [anon_sym_SQUOTE] = ACTIONS(152),
- [anon_sym_class] = ACTIONS(154),
- [anon_sym_async] = ACTIONS(1262),
- [anon_sym_function] = ACTIONS(158),
- [anon_sym_new] = ACTIONS(1474),
- [anon_sym_using] = ACTIONS(1266),
- [anon_sym_PLUS] = ACTIONS(1272),
- [anon_sym_DASH] = ACTIONS(1272),
- [anon_sym_SLASH] = ACTIONS(646),
- [anon_sym_LT] = ACTIONS(181),
- [anon_sym_TILDE] = ACTIONS(1256),
- [anon_sym_void] = ACTIONS(1272),
- [anon_sym_delete] = ACTIONS(1272),
- [anon_sym_PLUS_PLUS] = ACTIONS(1274),
- [anon_sym_DASH_DASH] = ACTIONS(1274),
- [sym_comment] = ACTIONS(5),
- [anon_sym_BQUOTE] = ACTIONS(825),
- [sym_number] = ACTIONS(787),
- [sym_private_property_identifier] = ACTIONS(1276),
- [sym_this] = ACTIONS(200),
- [sym_super] = ACTIONS(200),
- [sym_true] = ACTIONS(200),
- [sym_false] = ACTIONS(200),
- [sym_null] = ACTIONS(200),
- [sym_undefined] = ACTIONS(1476),
- [anon_sym_AT] = ACTIONS(99),
- [anon_sym_static] = ACTIONS(1250),
- [anon_sym_readonly] = ACTIONS(1250),
- [anon_sym_get] = ACTIONS(1250),
- [anon_sym_set] = ACTIONS(1250),
- [anon_sym_declare] = ACTIONS(1250),
- [anon_sym_public] = ACTIONS(1250),
- [anon_sym_private] = ACTIONS(1250),
- [anon_sym_protected] = ACTIONS(1250),
- [anon_sym_override] = ACTIONS(1250),
- [anon_sym_module] = ACTIONS(1250),
- [anon_sym_any] = ACTIONS(1250),
- [anon_sym_number] = ACTIONS(1250),
- [anon_sym_boolean] = ACTIONS(1250),
- [anon_sym_string] = ACTIONS(1250),
- [anon_sym_symbol] = ACTIONS(1250),
- [anon_sym_object] = ACTIONS(1250),
- [sym_html_comment] = ACTIONS(5),
- },
- [345] = {
- [sym_import] = STATE(3334),
- [sym_statement_block] = STATE(1712),
- [sym_parenthesized_expression] = STATE(1336),
- [sym_expression] = STATE(2071),
- [sym_primary_expression] = STATE(1468),
- [sym_yield_expression] = STATE(1634),
- [sym_object] = STATE(1650),
- [sym_object_pattern] = STATE(5745),
- [sym_array] = STATE(1650),
- [sym_array_pattern] = STATE(5745),
- [sym_glimmer_template] = STATE(1634),
- [sym_jsx_element] = STATE(1634),
- [sym_jsx_opening_element] = STATE(3026),
- [sym_jsx_self_closing_element] = STATE(1634),
- [sym_class] = STATE(1650),
- [sym_function_expression] = STATE(1650),
- [sym_generator_function] = STATE(1650),
- [sym_arrow_function] = STATE(1650),
- [sym__call_signature] = STATE(5553),
- [sym_call_expression] = STATE(1650),
- [sym_new_expression] = STATE(1634),
- [sym_await_expression] = STATE(1634),
- [sym_member_expression] = STATE(1336),
- [sym_subscript_expression] = STATE(1336),
- [sym_assignment_expression] = STATE(1634),
- [sym__augmented_assignment_lhs] = STATE(2884),
- [sym_augmented_assignment_expression] = STATE(1634),
- [sym__destructuring_pattern] = STATE(5745),
- [sym_ternary_expression] = STATE(1634),
- [sym_binary_expression] = STATE(1634),
- [sym_unary_expression] = STATE(1634),
- [sym_update_expression] = STATE(1634),
- [sym_string] = STATE(1650),
- [sym_template_string] = STATE(1650),
- [sym_regex] = STATE(1650),
- [sym_meta_property] = STATE(1650),
- [sym_decorator] = STATE(1244),
- [sym_formal_parameters] = STATE(3742),
- [sym_non_null_expression] = STATE(1336),
- [sym_as_expression] = STATE(1634),
- [sym_satisfies_expression] = STATE(1634),
- [sym_instantiation_expression] = STATE(1634),
- [sym_internal_module] = STATE(1634),
- [sym_type_parameters] = STATE(5349),
- [aux_sym_export_statement_repeat1] = STATE(4458),
- [sym_identifier] = ACTIONS(1470),
- [anon_sym_export] = ACTIONS(1250),
- [anon_sym_type] = ACTIONS(1250),
- [anon_sym_namespace] = ACTIONS(1252),
- [anon_sym_LBRACE] = ACTIONS(2069),
- [anon_sym_typeof] = ACTIONS(1272),
- [anon_sym_import] = ACTIONS(133),
- [anon_sym_let] = ACTIONS(1250),
- [anon_sym_BANG] = ACTIONS(1256),
- [anon_sym_LPAREN] = ACTIONS(815),
- [anon_sym_await] = ACTIONS(1258),
- [anon_sym_yield] = ACTIONS(1260),
- [anon_sym_LBRACK] = ACTIONS(817),
- [sym_glimmer_opening_tag] = ACTIONS(148),
- [anon_sym_DQUOTE] = ACTIONS(150),
- [anon_sym_SQUOTE] = ACTIONS(152),
- [anon_sym_class] = ACTIONS(154),
- [anon_sym_async] = ACTIONS(1262),
- [anon_sym_function] = ACTIONS(158),
- [anon_sym_new] = ACTIONS(1474),
- [anon_sym_using] = ACTIONS(1266),
- [anon_sym_PLUS] = ACTIONS(1272),
- [anon_sym_DASH] = ACTIONS(1272),
- [anon_sym_SLASH] = ACTIONS(646),
- [anon_sym_LT] = ACTIONS(181),
- [anon_sym_TILDE] = ACTIONS(1256),
- [anon_sym_void] = ACTIONS(1272),
- [anon_sym_delete] = ACTIONS(1272),
- [anon_sym_PLUS_PLUS] = ACTIONS(1274),
- [anon_sym_DASH_DASH] = ACTIONS(1274),
- [sym_comment] = ACTIONS(5),
- [anon_sym_BQUOTE] = ACTIONS(825),
- [sym_number] = ACTIONS(787),
- [sym_private_property_identifier] = ACTIONS(1276),
- [sym_this] = ACTIONS(200),
- [sym_super] = ACTIONS(200),
- [sym_true] = ACTIONS(200),
- [sym_false] = ACTIONS(200),
- [sym_null] = ACTIONS(200),
- [sym_undefined] = ACTIONS(1476),
- [anon_sym_AT] = ACTIONS(99),
- [anon_sym_static] = ACTIONS(1250),
- [anon_sym_readonly] = ACTIONS(1250),
- [anon_sym_get] = ACTIONS(1250),
- [anon_sym_set] = ACTIONS(1250),
- [anon_sym_declare] = ACTIONS(1250),
- [anon_sym_public] = ACTIONS(1250),
- [anon_sym_private] = ACTIONS(1250),
- [anon_sym_protected] = ACTIONS(1250),
- [anon_sym_override] = ACTIONS(1250),
- [anon_sym_module] = ACTIONS(1250),
- [anon_sym_any] = ACTIONS(1250),
- [anon_sym_number] = ACTIONS(1250),
- [anon_sym_boolean] = ACTIONS(1250),
- [anon_sym_string] = ACTIONS(1250),
- [anon_sym_symbol] = ACTIONS(1250),
- [anon_sym_object] = ACTIONS(1250),
- [sym_html_comment] = ACTIONS(5),
- },
- [346] = {
- [sym_import] = STATE(3334),
- [sym_statement_block] = STATE(1714),
- [sym_parenthesized_expression] = STATE(1336),
- [sym_expression] = STATE(2072),
- [sym_primary_expression] = STATE(1468),
- [sym_yield_expression] = STATE(1634),
- [sym_object] = STATE(1650),
- [sym_object_pattern] = STATE(5745),
- [sym_array] = STATE(1650),
- [sym_array_pattern] = STATE(5745),
- [sym_glimmer_template] = STATE(1634),
- [sym_jsx_element] = STATE(1634),
- [sym_jsx_opening_element] = STATE(3026),
- [sym_jsx_self_closing_element] = STATE(1634),
- [sym_class] = STATE(1650),
- [sym_function_expression] = STATE(1650),
- [sym_generator_function] = STATE(1650),
- [sym_arrow_function] = STATE(1650),
- [sym__call_signature] = STATE(5553),
- [sym_call_expression] = STATE(1650),
- [sym_new_expression] = STATE(1634),
- [sym_await_expression] = STATE(1634),
- [sym_member_expression] = STATE(1336),
- [sym_subscript_expression] = STATE(1336),
- [sym_assignment_expression] = STATE(1634),
- [sym__augmented_assignment_lhs] = STATE(2884),
- [sym_augmented_assignment_expression] = STATE(1634),
- [sym__destructuring_pattern] = STATE(5745),
- [sym_ternary_expression] = STATE(1634),
- [sym_binary_expression] = STATE(1634),
- [sym_unary_expression] = STATE(1634),
- [sym_update_expression] = STATE(1634),
- [sym_string] = STATE(1650),
- [sym_template_string] = STATE(1650),
- [sym_regex] = STATE(1650),
- [sym_meta_property] = STATE(1650),
- [sym_decorator] = STATE(1244),
- [sym_formal_parameters] = STATE(3742),
- [sym_non_null_expression] = STATE(1336),
- [sym_as_expression] = STATE(1634),
- [sym_satisfies_expression] = STATE(1634),
- [sym_instantiation_expression] = STATE(1634),
- [sym_internal_module] = STATE(1634),
- [sym_type_parameters] = STATE(5349),
- [aux_sym_export_statement_repeat1] = STATE(4458),
- [sym_identifier] = ACTIONS(1470),
- [anon_sym_export] = ACTIONS(1250),
- [anon_sym_type] = ACTIONS(1250),
- [anon_sym_namespace] = ACTIONS(1252),
- [anon_sym_LBRACE] = ACTIONS(2069),
- [anon_sym_typeof] = ACTIONS(1272),
- [anon_sym_import] = ACTIONS(133),
- [anon_sym_let] = ACTIONS(1250),
- [anon_sym_BANG] = ACTIONS(1256),
- [anon_sym_LPAREN] = ACTIONS(815),
- [anon_sym_await] = ACTIONS(1258),
- [anon_sym_yield] = ACTIONS(1260),
- [anon_sym_LBRACK] = ACTIONS(817),
- [sym_glimmer_opening_tag] = ACTIONS(148),
- [anon_sym_DQUOTE] = ACTIONS(150),
- [anon_sym_SQUOTE] = ACTIONS(152),
- [anon_sym_class] = ACTIONS(154),
- [anon_sym_async] = ACTIONS(1262),
- [anon_sym_function] = ACTIONS(158),
- [anon_sym_new] = ACTIONS(1474),
- [anon_sym_using] = ACTIONS(1266),
- [anon_sym_PLUS] = ACTIONS(1272),
- [anon_sym_DASH] = ACTIONS(1272),
- [anon_sym_SLASH] = ACTIONS(646),
- [anon_sym_LT] = ACTIONS(181),
- [anon_sym_TILDE] = ACTIONS(1256),
- [anon_sym_void] = ACTIONS(1272),
- [anon_sym_delete] = ACTIONS(1272),
- [anon_sym_PLUS_PLUS] = ACTIONS(1274),
- [anon_sym_DASH_DASH] = ACTIONS(1274),
- [sym_comment] = ACTIONS(5),
- [anon_sym_BQUOTE] = ACTIONS(825),
- [sym_number] = ACTIONS(787),
- [sym_private_property_identifier] = ACTIONS(1276),
- [sym_this] = ACTIONS(200),
- [sym_super] = ACTIONS(200),
- [sym_true] = ACTIONS(200),
- [sym_false] = ACTIONS(200),
- [sym_null] = ACTIONS(200),
- [sym_undefined] = ACTIONS(1476),
- [anon_sym_AT] = ACTIONS(99),
- [anon_sym_static] = ACTIONS(1250),
- [anon_sym_readonly] = ACTIONS(1250),
- [anon_sym_get] = ACTIONS(1250),
- [anon_sym_set] = ACTIONS(1250),
- [anon_sym_declare] = ACTIONS(1250),
- [anon_sym_public] = ACTIONS(1250),
- [anon_sym_private] = ACTIONS(1250),
- [anon_sym_protected] = ACTIONS(1250),
- [anon_sym_override] = ACTIONS(1250),
- [anon_sym_module] = ACTIONS(1250),
- [anon_sym_any] = ACTIONS(1250),
- [anon_sym_number] = ACTIONS(1250),
- [anon_sym_boolean] = ACTIONS(1250),
- [anon_sym_string] = ACTIONS(1250),
- [anon_sym_symbol] = ACTIONS(1250),
- [anon_sym_object] = ACTIONS(1250),
- [sym_html_comment] = ACTIONS(5),
- },
- [347] = {
- [sym_import] = STATE(3334),
- [sym_statement_block] = STATE(1782),
- [sym_parenthesized_expression] = STATE(1251),
- [sym_expression] = STATE(1527),
- [sym_primary_expression] = STATE(1468),
- [sym_yield_expression] = STATE(1634),
- [sym_object] = STATE(1650),
- [sym_object_pattern] = STATE(5633),
- [sym_array] = STATE(1650),
- [sym_array_pattern] = STATE(5633),
- [sym_glimmer_template] = STATE(1634),
- [sym_jsx_element] = STATE(1634),
- [sym_jsx_opening_element] = STATE(3026),
- [sym_jsx_self_closing_element] = STATE(1634),
- [sym_class] = STATE(1650),
- [sym_function_expression] = STATE(1650),
- [sym_generator_function] = STATE(1650),
- [sym_arrow_function] = STATE(1650),
- [sym__call_signature] = STATE(5828),
- [sym_call_expression] = STATE(1650),
- [sym_new_expression] = STATE(1634),
- [sym_await_expression] = STATE(1634),
- [sym_member_expression] = STATE(1251),
- [sym_subscript_expression] = STATE(1251),
- [sym_assignment_expression] = STATE(1634),
- [sym__augmented_assignment_lhs] = STATE(2900),
- [sym_augmented_assignment_expression] = STATE(1634),
- [sym__destructuring_pattern] = STATE(5633),
- [sym_ternary_expression] = STATE(1634),
- [sym_binary_expression] = STATE(1634),
- [sym_unary_expression] = STATE(1634),
- [sym_update_expression] = STATE(1634),
- [sym_string] = STATE(1650),
- [sym_template_string] = STATE(1650),
- [sym_regex] = STATE(1650),
- [sym_meta_property] = STATE(1650),
- [sym_decorator] = STATE(1244),
- [sym_formal_parameters] = STATE(3742),
- [sym_non_null_expression] = STATE(1251),
- [sym_as_expression] = STATE(1634),
- [sym_satisfies_expression] = STATE(1634),
- [sym_instantiation_expression] = STATE(1634),
- [sym_internal_module] = STATE(1634),
- [sym_type_parameters] = STATE(5349),
- [aux_sym_export_statement_repeat1] = STATE(4458),
- [sym_identifier] = ACTIONS(1428),
- [anon_sym_export] = ACTIONS(1044),
- [anon_sym_type] = ACTIONS(1044),
- [anon_sym_namespace] = ACTIONS(1046),
- [anon_sym_LBRACE] = ACTIONS(2069),
- [anon_sym_typeof] = ACTIONS(650),
- [anon_sym_import] = ACTIONS(133),
- [anon_sym_let] = ACTIONS(1044),
- [anon_sym_BANG] = ACTIONS(622),
- [anon_sym_LPAREN] = ACTIONS(815),
- [anon_sym_await] = ACTIONS(624),
- [anon_sym_yield] = ACTIONS(626),
- [anon_sym_LBRACK] = ACTIONS(817),
- [sym_glimmer_opening_tag] = ACTIONS(148),
- [anon_sym_DQUOTE] = ACTIONS(150),
- [anon_sym_SQUOTE] = ACTIONS(152),
- [anon_sym_class] = ACTIONS(154),
- [anon_sym_async] = ACTIONS(1052),
- [anon_sym_function] = ACTIONS(158),
- [anon_sym_new] = ACTIONS(1436),
- [anon_sym_using] = ACTIONS(636),
- [anon_sym_PLUS] = ACTIONS(650),
- [anon_sym_DASH] = ACTIONS(650),
- [anon_sym_SLASH] = ACTIONS(646),
- [anon_sym_LT] = ACTIONS(181),
- [anon_sym_TILDE] = ACTIONS(622),
- [anon_sym_void] = ACTIONS(650),
- [anon_sym_delete] = ACTIONS(650),
- [anon_sym_PLUS_PLUS] = ACTIONS(652),
- [anon_sym_DASH_DASH] = ACTIONS(652),
- [sym_comment] = ACTIONS(5),
- [anon_sym_BQUOTE] = ACTIONS(825),
- [sym_number] = ACTIONS(787),
- [sym_private_property_identifier] = ACTIONS(654),
- [sym_this] = ACTIONS(200),
- [sym_super] = ACTIONS(200),
- [sym_true] = ACTIONS(200),
- [sym_false] = ACTIONS(200),
- [sym_null] = ACTIONS(200),
- [sym_undefined] = ACTIONS(1438),
- [anon_sym_AT] = ACTIONS(99),
- [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_override] = 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_object] = ACTIONS(1044),
- [sym_html_comment] = ACTIONS(5),
- },
- [348] = {
- [sym_import] = STATE(3334),
- [sym_statement_block] = STATE(1641),
- [sym_parenthesized_expression] = STATE(1369),
- [sym_expression] = STATE(2279),
- [sym_primary_expression] = STATE(1468),
- [sym_yield_expression] = STATE(1634),
- [sym_object] = STATE(1650),
- [sym_object_pattern] = STATE(5861),
- [sym_array] = STATE(1650),
- [sym_array_pattern] = STATE(5861),
- [sym_glimmer_template] = STATE(1634),
- [sym_jsx_element] = STATE(1634),
- [sym_jsx_opening_element] = STATE(3026),
- [sym_jsx_self_closing_element] = STATE(1634),
- [sym_class] = STATE(1650),
- [sym_function_expression] = STATE(1650),
- [sym_generator_function] = STATE(1650),
- [sym_arrow_function] = STATE(1650),
- [sym__call_signature] = STATE(5765),
- [sym_call_expression] = STATE(1650),
- [sym_new_expression] = STATE(1634),
- [sym_await_expression] = STATE(1634),
- [sym_member_expression] = STATE(1369),
- [sym_subscript_expression] = STATE(1369),
- [sym_assignment_expression] = STATE(1634),
- [sym__augmented_assignment_lhs] = STATE(2891),
- [sym_augmented_assignment_expression] = STATE(1634),
- [sym__destructuring_pattern] = STATE(5861),
- [sym_ternary_expression] = STATE(1634),
- [sym_binary_expression] = STATE(1634),
- [sym_unary_expression] = STATE(1634),
- [sym_update_expression] = STATE(1634),
- [sym_string] = STATE(1650),
- [sym_template_string] = STATE(1650),
- [sym_regex] = STATE(1650),
- [sym_meta_property] = STATE(1650),
- [sym_decorator] = STATE(1244),
- [sym_formal_parameters] = STATE(3742),
- [sym_non_null_expression] = STATE(1369),
- [sym_as_expression] = STATE(1634),
- [sym_satisfies_expression] = STATE(1634),
- [sym_instantiation_expression] = STATE(1634),
- [sym_internal_module] = STATE(1634),
- [sym_type_parameters] = STATE(5349),
- [aux_sym_export_statement_repeat1] = STATE(4458),
- [sym_identifier] = ACTIONS(1478),
- [anon_sym_export] = ACTIONS(1114),
- [anon_sym_type] = ACTIONS(1114),
- [anon_sym_namespace] = ACTIONS(1116),
- [anon_sym_LBRACE] = ACTIONS(2069),
- [anon_sym_typeof] = ACTIONS(1138),
- [anon_sym_import] = ACTIONS(133),
- [anon_sym_let] = ACTIONS(1114),
- [anon_sym_BANG] = ACTIONS(1122),
- [anon_sym_LPAREN] = ACTIONS(815),
- [anon_sym_await] = ACTIONS(1124),
- [anon_sym_yield] = ACTIONS(1126),
- [anon_sym_LBRACK] = ACTIONS(817),
- [sym_glimmer_opening_tag] = ACTIONS(148),
- [anon_sym_DQUOTE] = ACTIONS(150),
- [anon_sym_SQUOTE] = ACTIONS(152),
- [anon_sym_class] = ACTIONS(154),
- [anon_sym_async] = ACTIONS(1128),
- [anon_sym_function] = ACTIONS(158),
- [anon_sym_new] = ACTIONS(1482),
- [anon_sym_using] = ACTIONS(1132),
- [anon_sym_PLUS] = ACTIONS(1138),
- [anon_sym_DASH] = ACTIONS(1138),
- [anon_sym_SLASH] = ACTIONS(646),
- [anon_sym_LT] = ACTIONS(181),
- [anon_sym_TILDE] = ACTIONS(1122),
- [anon_sym_void] = ACTIONS(1138),
- [anon_sym_delete] = ACTIONS(1138),
- [anon_sym_PLUS_PLUS] = ACTIONS(1140),
- [anon_sym_DASH_DASH] = ACTIONS(1140),
- [sym_comment] = ACTIONS(5),
- [anon_sym_BQUOTE] = ACTIONS(825),
- [sym_number] = ACTIONS(787),
- [sym_private_property_identifier] = ACTIONS(1142),
- [sym_this] = ACTIONS(200),
- [sym_super] = ACTIONS(200),
- [sym_true] = ACTIONS(200),
- [sym_false] = ACTIONS(200),
- [sym_null] = ACTIONS(200),
- [sym_undefined] = ACTIONS(1484),
- [anon_sym_AT] = ACTIONS(99),
- [anon_sym_static] = ACTIONS(1114),
- [anon_sym_readonly] = ACTIONS(1114),
- [anon_sym_get] = ACTIONS(1114),
- [anon_sym_set] = ACTIONS(1114),
- [anon_sym_declare] = ACTIONS(1114),
- [anon_sym_public] = ACTIONS(1114),
- [anon_sym_private] = ACTIONS(1114),
- [anon_sym_protected] = ACTIONS(1114),
- [anon_sym_override] = ACTIONS(1114),
- [anon_sym_module] = ACTIONS(1114),
- [anon_sym_any] = ACTIONS(1114),
- [anon_sym_number] = ACTIONS(1114),
- [anon_sym_boolean] = ACTIONS(1114),
- [anon_sym_string] = ACTIONS(1114),
- [anon_sym_symbol] = ACTIONS(1114),
- [anon_sym_object] = ACTIONS(1114),
- [sym_html_comment] = ACTIONS(5),
- },
- [349] = {
- [sym_import] = STATE(3334),
- [sym_statement_block] = STATE(1782),
- [sym_parenthesized_expression] = STATE(1369),
- [sym_expression] = STATE(2283),
- [sym_primary_expression] = STATE(1468),
- [sym_yield_expression] = STATE(1634),
- [sym_object] = STATE(1650),
- [sym_object_pattern] = STATE(5861),
- [sym_array] = STATE(1650),
- [sym_array_pattern] = STATE(5861),
- [sym_glimmer_template] = STATE(1634),
- [sym_jsx_element] = STATE(1634),
- [sym_jsx_opening_element] = STATE(3026),
- [sym_jsx_self_closing_element] = STATE(1634),
- [sym_class] = STATE(1650),
- [sym_function_expression] = STATE(1650),
- [sym_generator_function] = STATE(1650),
- [sym_arrow_function] = STATE(1650),
- [sym__call_signature] = STATE(5765),
- [sym_call_expression] = STATE(1650),
- [sym_new_expression] = STATE(1634),
- [sym_await_expression] = STATE(1634),
- [sym_member_expression] = STATE(1369),
- [sym_subscript_expression] = STATE(1369),
- [sym_assignment_expression] = STATE(1634),
- [sym__augmented_assignment_lhs] = STATE(2891),
- [sym_augmented_assignment_expression] = STATE(1634),
- [sym__destructuring_pattern] = STATE(5861),
- [sym_ternary_expression] = STATE(1634),
- [sym_binary_expression] = STATE(1634),
- [sym_unary_expression] = STATE(1634),
- [sym_update_expression] = STATE(1634),
- [sym_string] = STATE(1650),
- [sym_template_string] = STATE(1650),
- [sym_regex] = STATE(1650),
- [sym_meta_property] = STATE(1650),
- [sym_decorator] = STATE(1244),
- [sym_formal_parameters] = STATE(3742),
- [sym_non_null_expression] = STATE(1369),
- [sym_as_expression] = STATE(1634),
- [sym_satisfies_expression] = STATE(1634),
- [sym_instantiation_expression] = STATE(1634),
- [sym_internal_module] = STATE(1634),
- [sym_type_parameters] = STATE(5349),
- [aux_sym_export_statement_repeat1] = STATE(4458),
- [sym_identifier] = ACTIONS(1478),
- [anon_sym_export] = ACTIONS(1114),
- [anon_sym_type] = ACTIONS(1114),
- [anon_sym_namespace] = ACTIONS(1116),
- [anon_sym_LBRACE] = ACTIONS(2069),
- [anon_sym_typeof] = ACTIONS(1138),
- [anon_sym_import] = ACTIONS(133),
- [anon_sym_let] = ACTIONS(1114),
- [anon_sym_BANG] = ACTIONS(1122),
- [anon_sym_LPAREN] = ACTIONS(815),
- [anon_sym_await] = ACTIONS(1124),
- [anon_sym_yield] = ACTIONS(1126),
- [anon_sym_LBRACK] = ACTIONS(817),
- [sym_glimmer_opening_tag] = ACTIONS(148),
- [anon_sym_DQUOTE] = ACTIONS(150),
- [anon_sym_SQUOTE] = ACTIONS(152),
- [anon_sym_class] = ACTIONS(154),
- [anon_sym_async] = ACTIONS(1128),
- [anon_sym_function] = ACTIONS(158),
- [anon_sym_new] = ACTIONS(1482),
- [anon_sym_using] = ACTIONS(1132),
- [anon_sym_PLUS] = ACTIONS(1138),
- [anon_sym_DASH] = ACTIONS(1138),
- [anon_sym_SLASH] = ACTIONS(646),
- [anon_sym_LT] = ACTIONS(181),
- [anon_sym_TILDE] = ACTIONS(1122),
- [anon_sym_void] = ACTIONS(1138),
- [anon_sym_delete] = ACTIONS(1138),
- [anon_sym_PLUS_PLUS] = ACTIONS(1140),
- [anon_sym_DASH_DASH] = ACTIONS(1140),
- [sym_comment] = ACTIONS(5),
- [anon_sym_BQUOTE] = ACTIONS(825),
- [sym_number] = ACTIONS(787),
- [sym_private_property_identifier] = ACTIONS(1142),
- [sym_this] = ACTIONS(200),
- [sym_super] = ACTIONS(200),
- [sym_true] = ACTIONS(200),
- [sym_false] = ACTIONS(200),
- [sym_null] = ACTIONS(200),
- [sym_undefined] = ACTIONS(1484),
- [anon_sym_AT] = ACTIONS(99),
- [anon_sym_static] = ACTIONS(1114),
- [anon_sym_readonly] = ACTIONS(1114),
- [anon_sym_get] = ACTIONS(1114),
- [anon_sym_set] = ACTIONS(1114),
- [anon_sym_declare] = ACTIONS(1114),
- [anon_sym_public] = ACTIONS(1114),
- [anon_sym_private] = ACTIONS(1114),
- [anon_sym_protected] = ACTIONS(1114),
- [anon_sym_override] = ACTIONS(1114),
- [anon_sym_module] = ACTIONS(1114),
- [anon_sym_any] = ACTIONS(1114),
- [anon_sym_number] = ACTIONS(1114),
- [anon_sym_boolean] = ACTIONS(1114),
- [anon_sym_string] = ACTIONS(1114),
- [anon_sym_symbol] = ACTIONS(1114),
- [anon_sym_object] = ACTIONS(1114),
- [sym_html_comment] = ACTIONS(5),
- },
- [350] = {
- [sym_import] = STATE(3334),
- [sym_statement_block] = STATE(1679),
- [sym_parenthesized_expression] = STATE(1369),
- [sym_expression] = STATE(2296),
- [sym_primary_expression] = STATE(1468),
- [sym_yield_expression] = STATE(1634),
- [sym_object] = STATE(1650),
- [sym_object_pattern] = STATE(5861),
- [sym_array] = STATE(1650),
- [sym_array_pattern] = STATE(5861),
- [sym_glimmer_template] = STATE(1634),
- [sym_jsx_element] = STATE(1634),
- [sym_jsx_opening_element] = STATE(3026),
- [sym_jsx_self_closing_element] = STATE(1634),
- [sym_class] = STATE(1650),
- [sym_function_expression] = STATE(1650),
- [sym_generator_function] = STATE(1650),
- [sym_arrow_function] = STATE(1650),
- [sym__call_signature] = STATE(5765),
- [sym_call_expression] = STATE(1650),
- [sym_new_expression] = STATE(1634),
- [sym_await_expression] = STATE(1634),
- [sym_member_expression] = STATE(1369),
- [sym_subscript_expression] = STATE(1369),
- [sym_assignment_expression] = STATE(1634),
- [sym__augmented_assignment_lhs] = STATE(2891),
- [sym_augmented_assignment_expression] = STATE(1634),
- [sym__destructuring_pattern] = STATE(5861),
- [sym_ternary_expression] = STATE(1634),
- [sym_binary_expression] = STATE(1634),
- [sym_unary_expression] = STATE(1634),
- [sym_update_expression] = STATE(1634),
- [sym_string] = STATE(1650),
- [sym_template_string] = STATE(1650),
- [sym_regex] = STATE(1650),
- [sym_meta_property] = STATE(1650),
- [sym_decorator] = STATE(1244),
- [sym_formal_parameters] = STATE(3742),
- [sym_non_null_expression] = STATE(1369),
- [sym_as_expression] = STATE(1634),
- [sym_satisfies_expression] = STATE(1634),
- [sym_instantiation_expression] = STATE(1634),
- [sym_internal_module] = STATE(1634),
- [sym_type_parameters] = STATE(5349),
- [aux_sym_export_statement_repeat1] = STATE(4458),
- [sym_identifier] = ACTIONS(1478),
- [anon_sym_export] = ACTIONS(1114),
- [anon_sym_type] = ACTIONS(1114),
- [anon_sym_namespace] = ACTIONS(1116),
- [anon_sym_LBRACE] = ACTIONS(2069),
- [anon_sym_typeof] = ACTIONS(1138),
- [anon_sym_import] = ACTIONS(133),
- [anon_sym_let] = ACTIONS(1114),
- [anon_sym_BANG] = ACTIONS(1122),
- [anon_sym_LPAREN] = ACTIONS(815),
- [anon_sym_await] = ACTIONS(1124),
- [anon_sym_yield] = ACTIONS(1126),
- [anon_sym_LBRACK] = ACTIONS(817),
- [sym_glimmer_opening_tag] = ACTIONS(148),
- [anon_sym_DQUOTE] = ACTIONS(150),
- [anon_sym_SQUOTE] = ACTIONS(152),
- [anon_sym_class] = ACTIONS(154),
- [anon_sym_async] = ACTIONS(1128),
- [anon_sym_function] = ACTIONS(158),
- [anon_sym_new] = ACTIONS(1482),
- [anon_sym_using] = ACTIONS(1132),
- [anon_sym_PLUS] = ACTIONS(1138),
- [anon_sym_DASH] = ACTIONS(1138),
- [anon_sym_SLASH] = ACTIONS(646),
- [anon_sym_LT] = ACTIONS(181),
- [anon_sym_TILDE] = ACTIONS(1122),
- [anon_sym_void] = ACTIONS(1138),
- [anon_sym_delete] = ACTIONS(1138),
- [anon_sym_PLUS_PLUS] = ACTIONS(1140),
- [anon_sym_DASH_DASH] = ACTIONS(1140),
- [sym_comment] = ACTIONS(5),
- [anon_sym_BQUOTE] = ACTIONS(825),
- [sym_number] = ACTIONS(787),
- [sym_private_property_identifier] = ACTIONS(1142),
- [sym_this] = ACTIONS(200),
- [sym_super] = ACTIONS(200),
- [sym_true] = ACTIONS(200),
- [sym_false] = ACTIONS(200),
- [sym_null] = ACTIONS(200),
- [sym_undefined] = ACTIONS(1484),
- [anon_sym_AT] = ACTIONS(99),
- [anon_sym_static] = ACTIONS(1114),
- [anon_sym_readonly] = ACTIONS(1114),
- [anon_sym_get] = ACTIONS(1114),
- [anon_sym_set] = ACTIONS(1114),
- [anon_sym_declare] = ACTIONS(1114),
- [anon_sym_public] = ACTIONS(1114),
- [anon_sym_private] = ACTIONS(1114),
- [anon_sym_protected] = ACTIONS(1114),
- [anon_sym_override] = ACTIONS(1114),
- [anon_sym_module] = ACTIONS(1114),
- [anon_sym_any] = ACTIONS(1114),
- [anon_sym_number] = ACTIONS(1114),
- [anon_sym_boolean] = ACTIONS(1114),
- [anon_sym_string] = ACTIONS(1114),
- [anon_sym_symbol] = ACTIONS(1114),
- [anon_sym_object] = ACTIONS(1114),
- [sym_html_comment] = ACTIONS(5),
- },
- [351] = {
- [sym_import] = STATE(3334),
- [sym_statement_block] = STATE(1614),
- [sym_parenthesized_expression] = STATE(1369),
- [sym_expression] = STATE(2298),
- [sym_primary_expression] = STATE(1468),
- [sym_yield_expression] = STATE(1634),
- [sym_object] = STATE(1650),
- [sym_object_pattern] = STATE(5861),
- [sym_array] = STATE(1650),
- [sym_array_pattern] = STATE(5861),
- [sym_glimmer_template] = STATE(1634),
- [sym_jsx_element] = STATE(1634),
- [sym_jsx_opening_element] = STATE(3026),
- [sym_jsx_self_closing_element] = STATE(1634),
- [sym_class] = STATE(1650),
- [sym_function_expression] = STATE(1650),
- [sym_generator_function] = STATE(1650),
- [sym_arrow_function] = STATE(1650),
- [sym__call_signature] = STATE(5765),
- [sym_call_expression] = STATE(1650),
- [sym_new_expression] = STATE(1634),
- [sym_await_expression] = STATE(1634),
- [sym_member_expression] = STATE(1369),
- [sym_subscript_expression] = STATE(1369),
- [sym_assignment_expression] = STATE(1634),
- [sym__augmented_assignment_lhs] = STATE(2891),
- [sym_augmented_assignment_expression] = STATE(1634),
- [sym__destructuring_pattern] = STATE(5861),
- [sym_ternary_expression] = STATE(1634),
- [sym_binary_expression] = STATE(1634),
- [sym_unary_expression] = STATE(1634),
- [sym_update_expression] = STATE(1634),
- [sym_string] = STATE(1650),
- [sym_template_string] = STATE(1650),
- [sym_regex] = STATE(1650),
- [sym_meta_property] = STATE(1650),
- [sym_decorator] = STATE(1244),
- [sym_formal_parameters] = STATE(3742),
- [sym_non_null_expression] = STATE(1369),
- [sym_as_expression] = STATE(1634),
- [sym_satisfies_expression] = STATE(1634),
- [sym_instantiation_expression] = STATE(1634),
- [sym_internal_module] = STATE(1634),
- [sym_type_parameters] = STATE(5349),
- [aux_sym_export_statement_repeat1] = STATE(4458),
- [sym_identifier] = ACTIONS(1478),
- [anon_sym_export] = ACTIONS(1114),
- [anon_sym_type] = ACTIONS(1114),
- [anon_sym_namespace] = ACTIONS(1116),
- [anon_sym_LBRACE] = ACTIONS(2069),
- [anon_sym_typeof] = ACTIONS(1138),
- [anon_sym_import] = ACTIONS(133),
- [anon_sym_let] = ACTIONS(1114),
- [anon_sym_BANG] = ACTIONS(1122),
- [anon_sym_LPAREN] = ACTIONS(815),
- [anon_sym_await] = ACTIONS(1124),
- [anon_sym_yield] = ACTIONS(1126),
- [anon_sym_LBRACK] = ACTIONS(817),
- [sym_glimmer_opening_tag] = ACTIONS(148),
- [anon_sym_DQUOTE] = ACTIONS(150),
- [anon_sym_SQUOTE] = ACTIONS(152),
- [anon_sym_class] = ACTIONS(154),
- [anon_sym_async] = ACTIONS(1128),
- [anon_sym_function] = ACTIONS(158),
- [anon_sym_new] = ACTIONS(1482),
- [anon_sym_using] = ACTIONS(1132),
- [anon_sym_PLUS] = ACTIONS(1138),
- [anon_sym_DASH] = ACTIONS(1138),
- [anon_sym_SLASH] = ACTIONS(646),
- [anon_sym_LT] = ACTIONS(181),
- [anon_sym_TILDE] = ACTIONS(1122),
- [anon_sym_void] = ACTIONS(1138),
- [anon_sym_delete] = ACTIONS(1138),
- [anon_sym_PLUS_PLUS] = ACTIONS(1140),
- [anon_sym_DASH_DASH] = ACTIONS(1140),
- [sym_comment] = ACTIONS(5),
- [anon_sym_BQUOTE] = ACTIONS(825),
- [sym_number] = ACTIONS(787),
- [sym_private_property_identifier] = ACTIONS(1142),
- [sym_this] = ACTIONS(200),
- [sym_super] = ACTIONS(200),
- [sym_true] = ACTIONS(200),
- [sym_false] = ACTIONS(200),
- [sym_null] = ACTIONS(200),
- [sym_undefined] = ACTIONS(1484),
- [anon_sym_AT] = ACTIONS(99),
- [anon_sym_static] = ACTIONS(1114),
- [anon_sym_readonly] = ACTIONS(1114),
- [anon_sym_get] = ACTIONS(1114),
- [anon_sym_set] = ACTIONS(1114),
- [anon_sym_declare] = ACTIONS(1114),
- [anon_sym_public] = ACTIONS(1114),
- [anon_sym_private] = ACTIONS(1114),
- [anon_sym_protected] = ACTIONS(1114),
- [anon_sym_override] = ACTIONS(1114),
- [anon_sym_module] = ACTIONS(1114),
- [anon_sym_any] = ACTIONS(1114),
- [anon_sym_number] = ACTIONS(1114),
- [anon_sym_boolean] = ACTIONS(1114),
- [anon_sym_string] = ACTIONS(1114),
- [anon_sym_symbol] = ACTIONS(1114),
- [anon_sym_object] = ACTIONS(1114),
- [sym_html_comment] = ACTIONS(5),
- },
- [352] = {
- [sym_import] = STATE(3334),
- [sym_statement_block] = STATE(1712),
- [sym_parenthesized_expression] = STATE(1369),
- [sym_expression] = STATE(2299),
- [sym_primary_expression] = STATE(1468),
- [sym_yield_expression] = STATE(1634),
- [sym_object] = STATE(1650),
- [sym_object_pattern] = STATE(5861),
- [sym_array] = STATE(1650),
- [sym_array_pattern] = STATE(5861),
- [sym_glimmer_template] = STATE(1634),
- [sym_jsx_element] = STATE(1634),
- [sym_jsx_opening_element] = STATE(3026),
- [sym_jsx_self_closing_element] = STATE(1634),
- [sym_class] = STATE(1650),
- [sym_function_expression] = STATE(1650),
- [sym_generator_function] = STATE(1650),
- [sym_arrow_function] = STATE(1650),
- [sym__call_signature] = STATE(5765),
- [sym_call_expression] = STATE(1650),
- [sym_new_expression] = STATE(1634),
- [sym_await_expression] = STATE(1634),
- [sym_member_expression] = STATE(1369),
- [sym_subscript_expression] = STATE(1369),
- [sym_assignment_expression] = STATE(1634),
- [sym__augmented_assignment_lhs] = STATE(2891),
- [sym_augmented_assignment_expression] = STATE(1634),
- [sym__destructuring_pattern] = STATE(5861),
- [sym_ternary_expression] = STATE(1634),
- [sym_binary_expression] = STATE(1634),
- [sym_unary_expression] = STATE(1634),
- [sym_update_expression] = STATE(1634),
- [sym_string] = STATE(1650),
- [sym_template_string] = STATE(1650),
- [sym_regex] = STATE(1650),
- [sym_meta_property] = STATE(1650),
- [sym_decorator] = STATE(1244),
- [sym_formal_parameters] = STATE(3742),
- [sym_non_null_expression] = STATE(1369),
- [sym_as_expression] = STATE(1634),
- [sym_satisfies_expression] = STATE(1634),
- [sym_instantiation_expression] = STATE(1634),
- [sym_internal_module] = STATE(1634),
- [sym_type_parameters] = STATE(5349),
- [aux_sym_export_statement_repeat1] = STATE(4458),
- [sym_identifier] = ACTIONS(1478),
- [anon_sym_export] = ACTIONS(1114),
- [anon_sym_type] = ACTIONS(1114),
- [anon_sym_namespace] = ACTIONS(1116),
- [anon_sym_LBRACE] = ACTIONS(2069),
- [anon_sym_typeof] = ACTIONS(1138),
- [anon_sym_import] = ACTIONS(133),
- [anon_sym_let] = ACTIONS(1114),
- [anon_sym_BANG] = ACTIONS(1122),
- [anon_sym_LPAREN] = ACTIONS(815),
- [anon_sym_await] = ACTIONS(1124),
- [anon_sym_yield] = ACTIONS(1126),
- [anon_sym_LBRACK] = ACTIONS(817),
- [sym_glimmer_opening_tag] = ACTIONS(148),
- [anon_sym_DQUOTE] = ACTIONS(150),
- [anon_sym_SQUOTE] = ACTIONS(152),
- [anon_sym_class] = ACTIONS(154),
- [anon_sym_async] = ACTIONS(1128),
- [anon_sym_function] = ACTIONS(158),
- [anon_sym_new] = ACTIONS(1482),
- [anon_sym_using] = ACTIONS(1132),
- [anon_sym_PLUS] = ACTIONS(1138),
- [anon_sym_DASH] = ACTIONS(1138),
- [anon_sym_SLASH] = ACTIONS(646),
- [anon_sym_LT] = ACTIONS(181),
- [anon_sym_TILDE] = ACTIONS(1122),
- [anon_sym_void] = ACTIONS(1138),
- [anon_sym_delete] = ACTIONS(1138),
- [anon_sym_PLUS_PLUS] = ACTIONS(1140),
- [anon_sym_DASH_DASH] = ACTIONS(1140),
- [sym_comment] = ACTIONS(5),
- [anon_sym_BQUOTE] = ACTIONS(825),
- [sym_number] = ACTIONS(787),
- [sym_private_property_identifier] = ACTIONS(1142),
- [sym_this] = ACTIONS(200),
- [sym_super] = ACTIONS(200),
- [sym_true] = ACTIONS(200),
- [sym_false] = ACTIONS(200),
- [sym_null] = ACTIONS(200),
- [sym_undefined] = ACTIONS(1484),
- [anon_sym_AT] = ACTIONS(99),
- [anon_sym_static] = ACTIONS(1114),
- [anon_sym_readonly] = ACTIONS(1114),
- [anon_sym_get] = ACTIONS(1114),
- [anon_sym_set] = ACTIONS(1114),
- [anon_sym_declare] = ACTIONS(1114),
- [anon_sym_public] = ACTIONS(1114),
- [anon_sym_private] = ACTIONS(1114),
- [anon_sym_protected] = ACTIONS(1114),
- [anon_sym_override] = ACTIONS(1114),
- [anon_sym_module] = ACTIONS(1114),
- [anon_sym_any] = ACTIONS(1114),
- [anon_sym_number] = ACTIONS(1114),
- [anon_sym_boolean] = ACTIONS(1114),
- [anon_sym_string] = ACTIONS(1114),
- [anon_sym_symbol] = ACTIONS(1114),
- [anon_sym_object] = ACTIONS(1114),
- [sym_html_comment] = ACTIONS(5),
- },
- [353] = {
- [sym_import] = STATE(3334),
- [sym_statement_block] = STATE(1714),
- [sym_parenthesized_expression] = STATE(1369),
- [sym_expression] = STATE(2300),
- [sym_primary_expression] = STATE(1468),
- [sym_yield_expression] = STATE(1634),
- [sym_object] = STATE(1650),
- [sym_object_pattern] = STATE(5861),
- [sym_array] = STATE(1650),
- [sym_array_pattern] = STATE(5861),
- [sym_glimmer_template] = STATE(1634),
- [sym_jsx_element] = STATE(1634),
- [sym_jsx_opening_element] = STATE(3026),
- [sym_jsx_self_closing_element] = STATE(1634),
- [sym_class] = STATE(1650),
- [sym_function_expression] = STATE(1650),
- [sym_generator_function] = STATE(1650),
- [sym_arrow_function] = STATE(1650),
- [sym__call_signature] = STATE(5765),
- [sym_call_expression] = STATE(1650),
- [sym_new_expression] = STATE(1634),
- [sym_await_expression] = STATE(1634),
- [sym_member_expression] = STATE(1369),
- [sym_subscript_expression] = STATE(1369),
- [sym_assignment_expression] = STATE(1634),
- [sym__augmented_assignment_lhs] = STATE(2891),
- [sym_augmented_assignment_expression] = STATE(1634),
- [sym__destructuring_pattern] = STATE(5861),
- [sym_ternary_expression] = STATE(1634),
- [sym_binary_expression] = STATE(1634),
- [sym_unary_expression] = STATE(1634),
- [sym_update_expression] = STATE(1634),
- [sym_string] = STATE(1650),
- [sym_template_string] = STATE(1650),
- [sym_regex] = STATE(1650),
- [sym_meta_property] = STATE(1650),
- [sym_decorator] = STATE(1244),
- [sym_formal_parameters] = STATE(3742),
- [sym_non_null_expression] = STATE(1369),
- [sym_as_expression] = STATE(1634),
- [sym_satisfies_expression] = STATE(1634),
- [sym_instantiation_expression] = STATE(1634),
- [sym_internal_module] = STATE(1634),
- [sym_type_parameters] = STATE(5349),
- [aux_sym_export_statement_repeat1] = STATE(4458),
- [sym_identifier] = ACTIONS(1478),
- [anon_sym_export] = ACTIONS(1114),
- [anon_sym_type] = ACTIONS(1114),
- [anon_sym_namespace] = ACTIONS(1116),
- [anon_sym_LBRACE] = ACTIONS(2069),
- [anon_sym_typeof] = ACTIONS(1138),
- [anon_sym_import] = ACTIONS(133),
- [anon_sym_let] = ACTIONS(1114),
- [anon_sym_BANG] = ACTIONS(1122),
- [anon_sym_LPAREN] = ACTIONS(815),
- [anon_sym_await] = ACTIONS(1124),
- [anon_sym_yield] = ACTIONS(1126),
- [anon_sym_LBRACK] = ACTIONS(817),
- [sym_glimmer_opening_tag] = ACTIONS(148),
- [anon_sym_DQUOTE] = ACTIONS(150),
- [anon_sym_SQUOTE] = ACTIONS(152),
- [anon_sym_class] = ACTIONS(154),
- [anon_sym_async] = ACTIONS(1128),
- [anon_sym_function] = ACTIONS(158),
- [anon_sym_new] = ACTIONS(1482),
- [anon_sym_using] = ACTIONS(1132),
- [anon_sym_PLUS] = ACTIONS(1138),
- [anon_sym_DASH] = ACTIONS(1138),
- [anon_sym_SLASH] = ACTIONS(646),
- [anon_sym_LT] = ACTIONS(181),
- [anon_sym_TILDE] = ACTIONS(1122),
- [anon_sym_void] = ACTIONS(1138),
- [anon_sym_delete] = ACTIONS(1138),
- [anon_sym_PLUS_PLUS] = ACTIONS(1140),
- [anon_sym_DASH_DASH] = ACTIONS(1140),
- [sym_comment] = ACTIONS(5),
- [anon_sym_BQUOTE] = ACTIONS(825),
- [sym_number] = ACTIONS(787),
- [sym_private_property_identifier] = ACTIONS(1142),
- [sym_this] = ACTIONS(200),
- [sym_super] = ACTIONS(200),
- [sym_true] = ACTIONS(200),
- [sym_false] = ACTIONS(200),
- [sym_null] = ACTIONS(200),
- [sym_undefined] = ACTIONS(1484),
- [anon_sym_AT] = ACTIONS(99),
- [anon_sym_static] = ACTIONS(1114),
- [anon_sym_readonly] = ACTIONS(1114),
- [anon_sym_get] = ACTIONS(1114),
- [anon_sym_set] = ACTIONS(1114),
- [anon_sym_declare] = ACTIONS(1114),
- [anon_sym_public] = ACTIONS(1114),
- [anon_sym_private] = ACTIONS(1114),
- [anon_sym_protected] = ACTIONS(1114),
- [anon_sym_override] = ACTIONS(1114),
- [anon_sym_module] = ACTIONS(1114),
- [anon_sym_any] = ACTIONS(1114),
- [anon_sym_number] = ACTIONS(1114),
- [anon_sym_boolean] = ACTIONS(1114),
- [anon_sym_string] = ACTIONS(1114),
- [anon_sym_symbol] = ACTIONS(1114),
- [anon_sym_object] = ACTIONS(1114),
- [sym_html_comment] = ACTIONS(5),
- },
- [354] = {
- [sym_import] = STATE(3334),
- [sym_statement_block] = STATE(1641),
- [sym_parenthesized_expression] = STATE(1345),
- [sym_expression] = STATE(2346),
- [sym_primary_expression] = STATE(1468),
- [sym_yield_expression] = STATE(1634),
- [sym_object] = STATE(1650),
- [sym_object_pattern] = STATE(5872),
- [sym_array] = STATE(1650),
- [sym_array_pattern] = STATE(5872),
- [sym_glimmer_template] = STATE(1634),
- [sym_jsx_element] = STATE(1634),
- [sym_jsx_opening_element] = STATE(3026),
- [sym_jsx_self_closing_element] = STATE(1634),
- [sym_class] = STATE(1650),
- [sym_function_expression] = STATE(1650),
- [sym_generator_function] = STATE(1650),
- [sym_arrow_function] = STATE(1650),
- [sym__call_signature] = STATE(5904),
- [sym_call_expression] = STATE(1650),
- [sym_new_expression] = STATE(1634),
- [sym_await_expression] = STATE(1634),
- [sym_member_expression] = STATE(1345),
- [sym_subscript_expression] = STATE(1345),
- [sym_assignment_expression] = STATE(1634),
- [sym__augmented_assignment_lhs] = STATE(2898),
- [sym_augmented_assignment_expression] = STATE(1634),
- [sym__destructuring_pattern] = STATE(5872),
- [sym_ternary_expression] = STATE(1634),
- [sym_binary_expression] = STATE(1634),
- [sym_unary_expression] = STATE(1634),
- [sym_update_expression] = STATE(1634),
- [sym_string] = STATE(1650),
- [sym_template_string] = STATE(1650),
- [sym_regex] = STATE(1650),
- [sym_meta_property] = STATE(1650),
- [sym_decorator] = STATE(1244),
- [sym_formal_parameters] = STATE(3742),
- [sym_non_null_expression] = STATE(1345),
- [sym_as_expression] = STATE(1634),
- [sym_satisfies_expression] = STATE(1634),
- [sym_instantiation_expression] = STATE(1634),
- [sym_internal_module] = STATE(1634),
- [sym_type_parameters] = STATE(5349),
- [aux_sym_export_statement_repeat1] = STATE(4458),
- [sym_identifier] = ACTIONS(1486),
- [anon_sym_export] = ACTIONS(1394),
- [anon_sym_type] = ACTIONS(1394),
- [anon_sym_namespace] = ACTIONS(1396),
- [anon_sym_LBRACE] = ACTIONS(2067),
- [anon_sym_typeof] = ACTIONS(1416),
- [anon_sym_import] = ACTIONS(133),
- [anon_sym_let] = ACTIONS(1394),
- [anon_sym_BANG] = ACTIONS(1400),
- [anon_sym_LPAREN] = ACTIONS(815),
- [anon_sym_await] = ACTIONS(1402),
- [anon_sym_yield] = ACTIONS(1404),
- [anon_sym_LBRACK] = ACTIONS(849),
- [sym_glimmer_opening_tag] = ACTIONS(148),
- [anon_sym_DQUOTE] = ACTIONS(150),
- [anon_sym_SQUOTE] = ACTIONS(152),
- [anon_sym_class] = ACTIONS(154),
- [anon_sym_async] = ACTIONS(1406),
- [anon_sym_function] = ACTIONS(158),
- [anon_sym_new] = ACTIONS(1490),
- [anon_sym_using] = ACTIONS(1410),
- [anon_sym_PLUS] = ACTIONS(1416),
- [anon_sym_DASH] = ACTIONS(1416),
- [anon_sym_SLASH] = ACTIONS(970),
- [anon_sym_LT] = ACTIONS(181),
- [anon_sym_TILDE] = ACTIONS(1400),
- [anon_sym_void] = ACTIONS(1416),
- [anon_sym_delete] = ACTIONS(1416),
- [anon_sym_PLUS_PLUS] = ACTIONS(1418),
- [anon_sym_DASH_DASH] = ACTIONS(1418),
- [sym_comment] = ACTIONS(5),
- [anon_sym_BQUOTE] = ACTIONS(825),
- [sym_number] = ACTIONS(787),
- [sym_private_property_identifier] = ACTIONS(1420),
- [sym_this] = ACTIONS(200),
- [sym_super] = ACTIONS(200),
- [sym_true] = ACTIONS(200),
- [sym_false] = ACTIONS(200),
- [sym_null] = ACTIONS(200),
- [sym_undefined] = ACTIONS(1492),
- [anon_sym_AT] = ACTIONS(99),
- [anon_sym_static] = ACTIONS(1394),
- [anon_sym_readonly] = ACTIONS(1394),
- [anon_sym_get] = ACTIONS(1394),
- [anon_sym_set] = ACTIONS(1394),
- [anon_sym_declare] = ACTIONS(1394),
- [anon_sym_public] = ACTIONS(1394),
- [anon_sym_private] = ACTIONS(1394),
- [anon_sym_protected] = ACTIONS(1394),
- [anon_sym_override] = ACTIONS(1394),
- [anon_sym_module] = ACTIONS(1394),
- [anon_sym_any] = ACTIONS(1394),
- [anon_sym_number] = ACTIONS(1394),
- [anon_sym_boolean] = ACTIONS(1394),
- [anon_sym_string] = ACTIONS(1394),
- [anon_sym_symbol] = ACTIONS(1394),
- [anon_sym_object] = ACTIONS(1394),
- [sym_html_comment] = ACTIONS(5),
- },
- [355] = {
- [sym_import] = STATE(3334),
- [sym_statement_block] = STATE(1782),
- [sym_parenthesized_expression] = STATE(1345),
- [sym_expression] = STATE(2350),
- [sym_primary_expression] = STATE(1468),
- [sym_yield_expression] = STATE(1634),
- [sym_object] = STATE(1650),
- [sym_object_pattern] = STATE(5872),
- [sym_array] = STATE(1650),
- [sym_array_pattern] = STATE(5872),
- [sym_glimmer_template] = STATE(1634),
- [sym_jsx_element] = STATE(1634),
- [sym_jsx_opening_element] = STATE(3026),
- [sym_jsx_self_closing_element] = STATE(1634),
- [sym_class] = STATE(1650),
- [sym_function_expression] = STATE(1650),
- [sym_generator_function] = STATE(1650),
- [sym_arrow_function] = STATE(1650),
- [sym__call_signature] = STATE(5904),
- [sym_call_expression] = STATE(1650),
- [sym_new_expression] = STATE(1634),
- [sym_await_expression] = STATE(1634),
- [sym_member_expression] = STATE(1345),
- [sym_subscript_expression] = STATE(1345),
- [sym_assignment_expression] = STATE(1634),
- [sym__augmented_assignment_lhs] = STATE(2898),
- [sym_augmented_assignment_expression] = STATE(1634),
- [sym__destructuring_pattern] = STATE(5872),
- [sym_ternary_expression] = STATE(1634),
- [sym_binary_expression] = STATE(1634),
- [sym_unary_expression] = STATE(1634),
- [sym_update_expression] = STATE(1634),
- [sym_string] = STATE(1650),
- [sym_template_string] = STATE(1650),
- [sym_regex] = STATE(1650),
- [sym_meta_property] = STATE(1650),
- [sym_decorator] = STATE(1244),
- [sym_formal_parameters] = STATE(3742),
- [sym_non_null_expression] = STATE(1345),
- [sym_as_expression] = STATE(1634),
- [sym_satisfies_expression] = STATE(1634),
- [sym_instantiation_expression] = STATE(1634),
- [sym_internal_module] = STATE(1634),
- [sym_type_parameters] = STATE(5349),
- [aux_sym_export_statement_repeat1] = STATE(4458),
- [sym_identifier] = ACTIONS(1486),
- [anon_sym_export] = ACTIONS(1394),
- [anon_sym_type] = ACTIONS(1394),
- [anon_sym_namespace] = ACTIONS(1396),
- [anon_sym_LBRACE] = ACTIONS(2067),
- [anon_sym_typeof] = ACTIONS(1416),
- [anon_sym_import] = ACTIONS(133),
- [anon_sym_let] = ACTIONS(1394),
- [anon_sym_BANG] = ACTIONS(1400),
- [anon_sym_LPAREN] = ACTIONS(815),
- [anon_sym_await] = ACTIONS(1402),
- [anon_sym_yield] = ACTIONS(1404),
- [anon_sym_LBRACK] = ACTIONS(849),
- [sym_glimmer_opening_tag] = ACTIONS(148),
- [anon_sym_DQUOTE] = ACTIONS(150),
- [anon_sym_SQUOTE] = ACTIONS(152),
- [anon_sym_class] = ACTIONS(154),
- [anon_sym_async] = ACTIONS(1406),
- [anon_sym_function] = ACTIONS(158),
- [anon_sym_new] = ACTIONS(1490),
- [anon_sym_using] = ACTIONS(1410),
- [anon_sym_PLUS] = ACTIONS(1416),
- [anon_sym_DASH] = ACTIONS(1416),
- [anon_sym_SLASH] = ACTIONS(970),
- [anon_sym_LT] = ACTIONS(181),
- [anon_sym_TILDE] = ACTIONS(1400),
- [anon_sym_void] = ACTIONS(1416),
- [anon_sym_delete] = ACTIONS(1416),
- [anon_sym_PLUS_PLUS] = ACTIONS(1418),
- [anon_sym_DASH_DASH] = ACTIONS(1418),
- [sym_comment] = ACTIONS(5),
- [anon_sym_BQUOTE] = ACTIONS(825),
- [sym_number] = ACTIONS(787),
- [sym_private_property_identifier] = ACTIONS(1420),
- [sym_this] = ACTIONS(200),
- [sym_super] = ACTIONS(200),
- [sym_true] = ACTIONS(200),
- [sym_false] = ACTIONS(200),
- [sym_null] = ACTIONS(200),
- [sym_undefined] = ACTIONS(1492),
- [anon_sym_AT] = ACTIONS(99),
- [anon_sym_static] = ACTIONS(1394),
- [anon_sym_readonly] = ACTIONS(1394),
- [anon_sym_get] = ACTIONS(1394),
- [anon_sym_set] = ACTIONS(1394),
- [anon_sym_declare] = ACTIONS(1394),
- [anon_sym_public] = ACTIONS(1394),
- [anon_sym_private] = ACTIONS(1394),
- [anon_sym_protected] = ACTIONS(1394),
- [anon_sym_override] = ACTIONS(1394),
- [anon_sym_module] = ACTIONS(1394),
- [anon_sym_any] = ACTIONS(1394),
- [anon_sym_number] = ACTIONS(1394),
- [anon_sym_boolean] = ACTIONS(1394),
- [anon_sym_string] = ACTIONS(1394),
- [anon_sym_symbol] = ACTIONS(1394),
- [anon_sym_object] = ACTIONS(1394),
- [sym_html_comment] = ACTIONS(5),
- },
- [356] = {
- [sym_import] = STATE(3334),
- [sym_statement_block] = STATE(1679),
- [sym_parenthesized_expression] = STATE(1345),
- [sym_expression] = STATE(2363),
- [sym_primary_expression] = STATE(1468),
- [sym_yield_expression] = STATE(1634),
- [sym_object] = STATE(1650),
- [sym_object_pattern] = STATE(5872),
- [sym_array] = STATE(1650),
- [sym_array_pattern] = STATE(5872),
- [sym_glimmer_template] = STATE(1634),
- [sym_jsx_element] = STATE(1634),
- [sym_jsx_opening_element] = STATE(3026),
- [sym_jsx_self_closing_element] = STATE(1634),
- [sym_class] = STATE(1650),
- [sym_function_expression] = STATE(1650),
- [sym_generator_function] = STATE(1650),
- [sym_arrow_function] = STATE(1650),
- [sym__call_signature] = STATE(5904),
- [sym_call_expression] = STATE(1650),
- [sym_new_expression] = STATE(1634),
- [sym_await_expression] = STATE(1634),
- [sym_member_expression] = STATE(1345),
- [sym_subscript_expression] = STATE(1345),
- [sym_assignment_expression] = STATE(1634),
- [sym__augmented_assignment_lhs] = STATE(2898),
- [sym_augmented_assignment_expression] = STATE(1634),
- [sym__destructuring_pattern] = STATE(5872),
- [sym_ternary_expression] = STATE(1634),
- [sym_binary_expression] = STATE(1634),
- [sym_unary_expression] = STATE(1634),
- [sym_update_expression] = STATE(1634),
- [sym_string] = STATE(1650),
- [sym_template_string] = STATE(1650),
- [sym_regex] = STATE(1650),
- [sym_meta_property] = STATE(1650),
- [sym_decorator] = STATE(1244),
- [sym_formal_parameters] = STATE(3742),
- [sym_non_null_expression] = STATE(1345),
- [sym_as_expression] = STATE(1634),
- [sym_satisfies_expression] = STATE(1634),
- [sym_instantiation_expression] = STATE(1634),
- [sym_internal_module] = STATE(1634),
- [sym_type_parameters] = STATE(5349),
- [aux_sym_export_statement_repeat1] = STATE(4458),
- [sym_identifier] = ACTIONS(1486),
- [anon_sym_export] = ACTIONS(1394),
- [anon_sym_type] = ACTIONS(1394),
- [anon_sym_namespace] = ACTIONS(1396),
- [anon_sym_LBRACE] = ACTIONS(2067),
- [anon_sym_typeof] = ACTIONS(1416),
- [anon_sym_import] = ACTIONS(133),
- [anon_sym_let] = ACTIONS(1394),
- [anon_sym_BANG] = ACTIONS(1400),
- [anon_sym_LPAREN] = ACTIONS(815),
- [anon_sym_await] = ACTIONS(1402),
- [anon_sym_yield] = ACTIONS(1404),
- [anon_sym_LBRACK] = ACTIONS(849),
- [sym_glimmer_opening_tag] = ACTIONS(148),
- [anon_sym_DQUOTE] = ACTIONS(150),
- [anon_sym_SQUOTE] = ACTIONS(152),
- [anon_sym_class] = ACTIONS(154),
- [anon_sym_async] = ACTIONS(1406),
- [anon_sym_function] = ACTIONS(158),
- [anon_sym_new] = ACTIONS(1490),
- [anon_sym_using] = ACTIONS(1410),
- [anon_sym_PLUS] = ACTIONS(1416),
- [anon_sym_DASH] = ACTIONS(1416),
- [anon_sym_SLASH] = ACTIONS(970),
- [anon_sym_LT] = ACTIONS(181),
- [anon_sym_TILDE] = ACTIONS(1400),
- [anon_sym_void] = ACTIONS(1416),
- [anon_sym_delete] = ACTIONS(1416),
- [anon_sym_PLUS_PLUS] = ACTIONS(1418),
- [anon_sym_DASH_DASH] = ACTIONS(1418),
- [sym_comment] = ACTIONS(5),
- [anon_sym_BQUOTE] = ACTIONS(825),
- [sym_number] = ACTIONS(787),
- [sym_private_property_identifier] = ACTIONS(1420),
- [sym_this] = ACTIONS(200),
- [sym_super] = ACTIONS(200),
- [sym_true] = ACTIONS(200),
- [sym_false] = ACTIONS(200),
- [sym_null] = ACTIONS(200),
- [sym_undefined] = ACTIONS(1492),
- [anon_sym_AT] = ACTIONS(99),
- [anon_sym_static] = ACTIONS(1394),
- [anon_sym_readonly] = ACTIONS(1394),
- [anon_sym_get] = ACTIONS(1394),
- [anon_sym_set] = ACTIONS(1394),
- [anon_sym_declare] = ACTIONS(1394),
- [anon_sym_public] = ACTIONS(1394),
- [anon_sym_private] = ACTIONS(1394),
- [anon_sym_protected] = ACTIONS(1394),
- [anon_sym_override] = ACTIONS(1394),
- [anon_sym_module] = ACTIONS(1394),
- [anon_sym_any] = ACTIONS(1394),
- [anon_sym_number] = ACTIONS(1394),
- [anon_sym_boolean] = ACTIONS(1394),
- [anon_sym_string] = ACTIONS(1394),
- [anon_sym_symbol] = ACTIONS(1394),
- [anon_sym_object] = ACTIONS(1394),
- [sym_html_comment] = ACTIONS(5),
- },
- [357] = {
- [sym_import] = STATE(3334),
- [sym_statement_block] = STATE(1614),
- [sym_parenthesized_expression] = STATE(1345),
- [sym_expression] = STATE(2365),
- [sym_primary_expression] = STATE(1468),
- [sym_yield_expression] = STATE(1634),
- [sym_object] = STATE(1650),
- [sym_object_pattern] = STATE(5872),
- [sym_array] = STATE(1650),
- [sym_array_pattern] = STATE(5872),
- [sym_glimmer_template] = STATE(1634),
- [sym_jsx_element] = STATE(1634),
- [sym_jsx_opening_element] = STATE(3026),
- [sym_jsx_self_closing_element] = STATE(1634),
- [sym_class] = STATE(1650),
- [sym_function_expression] = STATE(1650),
- [sym_generator_function] = STATE(1650),
- [sym_arrow_function] = STATE(1650),
- [sym__call_signature] = STATE(5904),
- [sym_call_expression] = STATE(1650),
- [sym_new_expression] = STATE(1634),
- [sym_await_expression] = STATE(1634),
- [sym_member_expression] = STATE(1345),
- [sym_subscript_expression] = STATE(1345),
- [sym_assignment_expression] = STATE(1634),
- [sym__augmented_assignment_lhs] = STATE(2898),
- [sym_augmented_assignment_expression] = STATE(1634),
- [sym__destructuring_pattern] = STATE(5872),
- [sym_ternary_expression] = STATE(1634),
- [sym_binary_expression] = STATE(1634),
- [sym_unary_expression] = STATE(1634),
- [sym_update_expression] = STATE(1634),
- [sym_string] = STATE(1650),
- [sym_template_string] = STATE(1650),
- [sym_regex] = STATE(1650),
- [sym_meta_property] = STATE(1650),
- [sym_decorator] = STATE(1244),
- [sym_formal_parameters] = STATE(3742),
- [sym_non_null_expression] = STATE(1345),
- [sym_as_expression] = STATE(1634),
- [sym_satisfies_expression] = STATE(1634),
- [sym_instantiation_expression] = STATE(1634),
- [sym_internal_module] = STATE(1634),
- [sym_type_parameters] = STATE(5349),
- [aux_sym_export_statement_repeat1] = STATE(4458),
- [sym_identifier] = ACTIONS(1486),
- [anon_sym_export] = ACTIONS(1394),
- [anon_sym_type] = ACTIONS(1394),
- [anon_sym_namespace] = ACTIONS(1396),
- [anon_sym_LBRACE] = ACTIONS(2067),
- [anon_sym_typeof] = ACTIONS(1416),
- [anon_sym_import] = ACTIONS(133),
- [anon_sym_let] = ACTIONS(1394),
- [anon_sym_BANG] = ACTIONS(1400),
- [anon_sym_LPAREN] = ACTIONS(815),
- [anon_sym_await] = ACTIONS(1402),
- [anon_sym_yield] = ACTIONS(1404),
- [anon_sym_LBRACK] = ACTIONS(849),
- [sym_glimmer_opening_tag] = ACTIONS(148),
- [anon_sym_DQUOTE] = ACTIONS(150),
- [anon_sym_SQUOTE] = ACTIONS(152),
- [anon_sym_class] = ACTIONS(154),
- [anon_sym_async] = ACTIONS(1406),
- [anon_sym_function] = ACTIONS(158),
- [anon_sym_new] = ACTIONS(1490),
- [anon_sym_using] = ACTIONS(1410),
- [anon_sym_PLUS] = ACTIONS(1416),
- [anon_sym_DASH] = ACTIONS(1416),
- [anon_sym_SLASH] = ACTIONS(970),
- [anon_sym_LT] = ACTIONS(181),
- [anon_sym_TILDE] = ACTIONS(1400),
- [anon_sym_void] = ACTIONS(1416),
- [anon_sym_delete] = ACTIONS(1416),
- [anon_sym_PLUS_PLUS] = ACTIONS(1418),
- [anon_sym_DASH_DASH] = ACTIONS(1418),
- [sym_comment] = ACTIONS(5),
- [anon_sym_BQUOTE] = ACTIONS(825),
- [sym_number] = ACTIONS(787),
- [sym_private_property_identifier] = ACTIONS(1420),
- [sym_this] = ACTIONS(200),
- [sym_super] = ACTIONS(200),
- [sym_true] = ACTIONS(200),
- [sym_false] = ACTIONS(200),
- [sym_null] = ACTIONS(200),
- [sym_undefined] = ACTIONS(1492),
- [anon_sym_AT] = ACTIONS(99),
- [anon_sym_static] = ACTIONS(1394),
- [anon_sym_readonly] = ACTIONS(1394),
- [anon_sym_get] = ACTIONS(1394),
- [anon_sym_set] = ACTIONS(1394),
- [anon_sym_declare] = ACTIONS(1394),
- [anon_sym_public] = ACTIONS(1394),
- [anon_sym_private] = ACTIONS(1394),
- [anon_sym_protected] = ACTIONS(1394),
- [anon_sym_override] = ACTIONS(1394),
- [anon_sym_module] = ACTIONS(1394),
- [anon_sym_any] = ACTIONS(1394),
- [anon_sym_number] = ACTIONS(1394),
- [anon_sym_boolean] = ACTIONS(1394),
- [anon_sym_string] = ACTIONS(1394),
- [anon_sym_symbol] = ACTIONS(1394),
- [anon_sym_object] = ACTIONS(1394),
- [sym_html_comment] = ACTIONS(5),
- },
- [358] = {
- [sym_import] = STATE(3334),
- [sym_statement_block] = STATE(1712),
- [sym_parenthesized_expression] = STATE(1345),
- [sym_expression] = STATE(2366),
- [sym_primary_expression] = STATE(1468),
- [sym_yield_expression] = STATE(1634),
- [sym_object] = STATE(1650),
- [sym_object_pattern] = STATE(5872),
- [sym_array] = STATE(1650),
- [sym_array_pattern] = STATE(5872),
- [sym_glimmer_template] = STATE(1634),
- [sym_jsx_element] = STATE(1634),
- [sym_jsx_opening_element] = STATE(3026),
- [sym_jsx_self_closing_element] = STATE(1634),
- [sym_class] = STATE(1650),
- [sym_function_expression] = STATE(1650),
- [sym_generator_function] = STATE(1650),
- [sym_arrow_function] = STATE(1650),
- [sym__call_signature] = STATE(5904),
- [sym_call_expression] = STATE(1650),
- [sym_new_expression] = STATE(1634),
- [sym_await_expression] = STATE(1634),
- [sym_member_expression] = STATE(1345),
- [sym_subscript_expression] = STATE(1345),
- [sym_assignment_expression] = STATE(1634),
- [sym__augmented_assignment_lhs] = STATE(2898),
- [sym_augmented_assignment_expression] = STATE(1634),
- [sym__destructuring_pattern] = STATE(5872),
- [sym_ternary_expression] = STATE(1634),
- [sym_binary_expression] = STATE(1634),
- [sym_unary_expression] = STATE(1634),
- [sym_update_expression] = STATE(1634),
- [sym_string] = STATE(1650),
- [sym_template_string] = STATE(1650),
- [sym_regex] = STATE(1650),
- [sym_meta_property] = STATE(1650),
- [sym_decorator] = STATE(1244),
- [sym_formal_parameters] = STATE(3742),
- [sym_non_null_expression] = STATE(1345),
- [sym_as_expression] = STATE(1634),
- [sym_satisfies_expression] = STATE(1634),
- [sym_instantiation_expression] = STATE(1634),
- [sym_internal_module] = STATE(1634),
- [sym_type_parameters] = STATE(5349),
- [aux_sym_export_statement_repeat1] = STATE(4458),
- [sym_identifier] = ACTIONS(1486),
- [anon_sym_export] = ACTIONS(1394),
- [anon_sym_type] = ACTIONS(1394),
- [anon_sym_namespace] = ACTIONS(1396),
- [anon_sym_LBRACE] = ACTIONS(2067),
- [anon_sym_typeof] = ACTIONS(1416),
- [anon_sym_import] = ACTIONS(133),
- [anon_sym_let] = ACTIONS(1394),
- [anon_sym_BANG] = ACTIONS(1400),
- [anon_sym_LPAREN] = ACTIONS(815),
- [anon_sym_await] = ACTIONS(1402),
- [anon_sym_yield] = ACTIONS(1404),
- [anon_sym_LBRACK] = ACTIONS(849),
- [sym_glimmer_opening_tag] = ACTIONS(148),
- [anon_sym_DQUOTE] = ACTIONS(150),
- [anon_sym_SQUOTE] = ACTIONS(152),
- [anon_sym_class] = ACTIONS(154),
- [anon_sym_async] = ACTIONS(1406),
- [anon_sym_function] = ACTIONS(158),
- [anon_sym_new] = ACTIONS(1490),
- [anon_sym_using] = ACTIONS(1410),
- [anon_sym_PLUS] = ACTIONS(1416),
- [anon_sym_DASH] = ACTIONS(1416),
- [anon_sym_SLASH] = ACTIONS(970),
- [anon_sym_LT] = ACTIONS(181),
- [anon_sym_TILDE] = ACTIONS(1400),
- [anon_sym_void] = ACTIONS(1416),
- [anon_sym_delete] = ACTIONS(1416),
- [anon_sym_PLUS_PLUS] = ACTIONS(1418),
- [anon_sym_DASH_DASH] = ACTIONS(1418),
- [sym_comment] = ACTIONS(5),
- [anon_sym_BQUOTE] = ACTIONS(825),
- [sym_number] = ACTIONS(787),
- [sym_private_property_identifier] = ACTIONS(1420),
- [sym_this] = ACTIONS(200),
- [sym_super] = ACTIONS(200),
- [sym_true] = ACTIONS(200),
- [sym_false] = ACTIONS(200),
- [sym_null] = ACTIONS(200),
- [sym_undefined] = ACTIONS(1492),
- [anon_sym_AT] = ACTIONS(99),
- [anon_sym_static] = ACTIONS(1394),
- [anon_sym_readonly] = ACTIONS(1394),
- [anon_sym_get] = ACTIONS(1394),
- [anon_sym_set] = ACTIONS(1394),
- [anon_sym_declare] = ACTIONS(1394),
- [anon_sym_public] = ACTIONS(1394),
- [anon_sym_private] = ACTIONS(1394),
- [anon_sym_protected] = ACTIONS(1394),
- [anon_sym_override] = ACTIONS(1394),
- [anon_sym_module] = ACTIONS(1394),
- [anon_sym_any] = ACTIONS(1394),
- [anon_sym_number] = ACTIONS(1394),
- [anon_sym_boolean] = ACTIONS(1394),
- [anon_sym_string] = ACTIONS(1394),
- [anon_sym_symbol] = ACTIONS(1394),
- [anon_sym_object] = ACTIONS(1394),
- [sym_html_comment] = ACTIONS(5),
- },
- [359] = {
- [sym_import] = STATE(3334),
- [sym_statement_block] = STATE(1714),
- [sym_parenthesized_expression] = STATE(1345),
- [sym_expression] = STATE(2367),
- [sym_primary_expression] = STATE(1468),
- [sym_yield_expression] = STATE(1634),
- [sym_object] = STATE(1650),
- [sym_object_pattern] = STATE(5872),
- [sym_array] = STATE(1650),
- [sym_array_pattern] = STATE(5872),
- [sym_glimmer_template] = STATE(1634),
- [sym_jsx_element] = STATE(1634),
- [sym_jsx_opening_element] = STATE(3026),
- [sym_jsx_self_closing_element] = STATE(1634),
- [sym_class] = STATE(1650),
- [sym_function_expression] = STATE(1650),
- [sym_generator_function] = STATE(1650),
- [sym_arrow_function] = STATE(1650),
- [sym__call_signature] = STATE(5904),
- [sym_call_expression] = STATE(1650),
- [sym_new_expression] = STATE(1634),
- [sym_await_expression] = STATE(1634),
- [sym_member_expression] = STATE(1345),
- [sym_subscript_expression] = STATE(1345),
- [sym_assignment_expression] = STATE(1634),
- [sym__augmented_assignment_lhs] = STATE(2898),
- [sym_augmented_assignment_expression] = STATE(1634),
- [sym__destructuring_pattern] = STATE(5872),
- [sym_ternary_expression] = STATE(1634),
- [sym_binary_expression] = STATE(1634),
- [sym_unary_expression] = STATE(1634),
- [sym_update_expression] = STATE(1634),
- [sym_string] = STATE(1650),
- [sym_template_string] = STATE(1650),
- [sym_regex] = STATE(1650),
- [sym_meta_property] = STATE(1650),
- [sym_decorator] = STATE(1244),
- [sym_formal_parameters] = STATE(3742),
- [sym_non_null_expression] = STATE(1345),
- [sym_as_expression] = STATE(1634),
- [sym_satisfies_expression] = STATE(1634),
- [sym_instantiation_expression] = STATE(1634),
- [sym_internal_module] = STATE(1634),
- [sym_type_parameters] = STATE(5349),
- [aux_sym_export_statement_repeat1] = STATE(4458),
- [sym_identifier] = ACTIONS(1486),
- [anon_sym_export] = ACTIONS(1394),
- [anon_sym_type] = ACTIONS(1394),
- [anon_sym_namespace] = ACTIONS(1396),
- [anon_sym_LBRACE] = ACTIONS(2067),
- [anon_sym_typeof] = ACTIONS(1416),
- [anon_sym_import] = ACTIONS(133),
- [anon_sym_let] = ACTIONS(1394),
- [anon_sym_BANG] = ACTIONS(1400),
- [anon_sym_LPAREN] = ACTIONS(815),
- [anon_sym_await] = ACTIONS(1402),
- [anon_sym_yield] = ACTIONS(1404),
- [anon_sym_LBRACK] = ACTIONS(849),
- [sym_glimmer_opening_tag] = ACTIONS(148),
- [anon_sym_DQUOTE] = ACTIONS(150),
- [anon_sym_SQUOTE] = ACTIONS(152),
- [anon_sym_class] = ACTIONS(154),
- [anon_sym_async] = ACTIONS(1406),
- [anon_sym_function] = ACTIONS(158),
- [anon_sym_new] = ACTIONS(1490),
- [anon_sym_using] = ACTIONS(1410),
- [anon_sym_PLUS] = ACTIONS(1416),
- [anon_sym_DASH] = ACTIONS(1416),
- [anon_sym_SLASH] = ACTIONS(970),
- [anon_sym_LT] = ACTIONS(181),
- [anon_sym_TILDE] = ACTIONS(1400),
- [anon_sym_void] = ACTIONS(1416),
- [anon_sym_delete] = ACTIONS(1416),
- [anon_sym_PLUS_PLUS] = ACTIONS(1418),
- [anon_sym_DASH_DASH] = ACTIONS(1418),
- [sym_comment] = ACTIONS(5),
- [anon_sym_BQUOTE] = ACTIONS(825),
- [sym_number] = ACTIONS(787),
- [sym_private_property_identifier] = ACTIONS(1420),
- [sym_this] = ACTIONS(200),
- [sym_super] = ACTIONS(200),
- [sym_true] = ACTIONS(200),
- [sym_false] = ACTIONS(200),
- [sym_null] = ACTIONS(200),
- [sym_undefined] = ACTIONS(1492),
- [anon_sym_AT] = ACTIONS(99),
- [anon_sym_static] = ACTIONS(1394),
- [anon_sym_readonly] = ACTIONS(1394),
- [anon_sym_get] = ACTIONS(1394),
- [anon_sym_set] = ACTIONS(1394),
- [anon_sym_declare] = ACTIONS(1394),
- [anon_sym_public] = ACTIONS(1394),
- [anon_sym_private] = ACTIONS(1394),
- [anon_sym_protected] = ACTIONS(1394),
- [anon_sym_override] = ACTIONS(1394),
- [anon_sym_module] = ACTIONS(1394),
- [anon_sym_any] = ACTIONS(1394),
- [anon_sym_number] = ACTIONS(1394),
- [anon_sym_boolean] = ACTIONS(1394),
- [anon_sym_string] = ACTIONS(1394),
- [anon_sym_symbol] = ACTIONS(1394),
- [anon_sym_object] = ACTIONS(1394),
- [sym_html_comment] = ACTIONS(5),
- },
- [360] = {
- [sym_import] = STATE(3334),
- [sym_statement_block] = STATE(1679),
- [sym_parenthesized_expression] = STATE(1251),
- [sym_expression] = STATE(1560),
- [sym_primary_expression] = STATE(1468),
- [sym_yield_expression] = STATE(1634),
- [sym_object] = STATE(1650),
- [sym_object_pattern] = STATE(5633),
- [sym_array] = STATE(1650),
- [sym_array_pattern] = STATE(5633),
- [sym_glimmer_template] = STATE(1634),
- [sym_jsx_element] = STATE(1634),
- [sym_jsx_opening_element] = STATE(3026),
- [sym_jsx_self_closing_element] = STATE(1634),
- [sym_class] = STATE(1650),
- [sym_function_expression] = STATE(1650),
- [sym_generator_function] = STATE(1650),
- [sym_arrow_function] = STATE(1650),
- [sym__call_signature] = STATE(5828),
- [sym_call_expression] = STATE(1650),
- [sym_new_expression] = STATE(1634),
- [sym_await_expression] = STATE(1634),
- [sym_member_expression] = STATE(1251),
- [sym_subscript_expression] = STATE(1251),
- [sym_assignment_expression] = STATE(1634),
- [sym__augmented_assignment_lhs] = STATE(2900),
- [sym_augmented_assignment_expression] = STATE(1634),
- [sym__destructuring_pattern] = STATE(5633),
- [sym_ternary_expression] = STATE(1634),
- [sym_binary_expression] = STATE(1634),
- [sym_unary_expression] = STATE(1634),
- [sym_update_expression] = STATE(1634),
- [sym_string] = STATE(1650),
- [sym_template_string] = STATE(1650),
- [sym_regex] = STATE(1650),
- [sym_meta_property] = STATE(1650),
- [sym_decorator] = STATE(1244),
- [sym_formal_parameters] = STATE(3742),
- [sym_non_null_expression] = STATE(1251),
- [sym_as_expression] = STATE(1634),
- [sym_satisfies_expression] = STATE(1634),
- [sym_instantiation_expression] = STATE(1634),
- [sym_internal_module] = STATE(1634),
- [sym_type_parameters] = STATE(5349),
- [aux_sym_export_statement_repeat1] = STATE(4458),
- [sym_identifier] = ACTIONS(1428),
- [anon_sym_export] = ACTIONS(1044),
- [anon_sym_type] = ACTIONS(1044),
- [anon_sym_namespace] = ACTIONS(1046),
- [anon_sym_LBRACE] = ACTIONS(2069),
- [anon_sym_typeof] = ACTIONS(650),
- [anon_sym_import] = ACTIONS(133),
- [anon_sym_let] = ACTIONS(1044),
- [anon_sym_BANG] = ACTIONS(622),
- [anon_sym_LPAREN] = ACTIONS(815),
- [anon_sym_await] = ACTIONS(624),
- [anon_sym_yield] = ACTIONS(626),
- [anon_sym_LBRACK] = ACTIONS(817),
- [sym_glimmer_opening_tag] = ACTIONS(148),
- [anon_sym_DQUOTE] = ACTIONS(150),
- [anon_sym_SQUOTE] = ACTIONS(152),
- [anon_sym_class] = ACTIONS(154),
- [anon_sym_async] = ACTIONS(1052),
- [anon_sym_function] = ACTIONS(158),
- [anon_sym_new] = ACTIONS(1436),
- [anon_sym_using] = ACTIONS(636),
- [anon_sym_PLUS] = ACTIONS(650),
- [anon_sym_DASH] = ACTIONS(650),
- [anon_sym_SLASH] = ACTIONS(646),
- [anon_sym_LT] = ACTIONS(181),
- [anon_sym_TILDE] = ACTIONS(622),
- [anon_sym_void] = ACTIONS(650),
- [anon_sym_delete] = ACTIONS(650),
- [anon_sym_PLUS_PLUS] = ACTIONS(652),
- [anon_sym_DASH_DASH] = ACTIONS(652),
- [sym_comment] = ACTIONS(5),
- [anon_sym_BQUOTE] = ACTIONS(825),
- [sym_number] = ACTIONS(787),
- [sym_private_property_identifier] = ACTIONS(654),
- [sym_this] = ACTIONS(200),
- [sym_super] = ACTIONS(200),
- [sym_true] = ACTIONS(200),
- [sym_false] = ACTIONS(200),
- [sym_null] = ACTIONS(200),
- [sym_undefined] = ACTIONS(1438),
- [anon_sym_AT] = ACTIONS(99),
- [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_override] = 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_object] = ACTIONS(1044),
- [sym_html_comment] = ACTIONS(5),
- },
- [361] = {
- [sym_import] = STATE(3334),
- [sym_statement_block] = STATE(1641),
- [sym_parenthesized_expression] = STATE(1327),
- [sym_expression] = STATE(1857),
- [sym_primary_expression] = STATE(1468),
- [sym_yield_expression] = STATE(1634),
- [sym_object] = STATE(1650),
- [sym_object_pattern] = STATE(5821),
- [sym_array] = STATE(1650),
- [sym_array_pattern] = STATE(5821),
- [sym_glimmer_template] = STATE(1634),
- [sym_jsx_element] = STATE(1634),
- [sym_jsx_opening_element] = STATE(3026),
- [sym_jsx_self_closing_element] = STATE(1634),
- [sym_class] = STATE(1650),
- [sym_function_expression] = STATE(1650),
- [sym_generator_function] = STATE(1650),
- [sym_arrow_function] = STATE(1650),
- [sym__call_signature] = STATE(5743),
- [sym_call_expression] = STATE(1650),
- [sym_new_expression] = STATE(1634),
- [sym_await_expression] = STATE(1634),
- [sym_member_expression] = STATE(1327),
- [sym_subscript_expression] = STATE(1327),
- [sym_assignment_expression] = STATE(1634),
- [sym__augmented_assignment_lhs] = STATE(2919),
- [sym_augmented_assignment_expression] = STATE(1634),
- [sym__destructuring_pattern] = STATE(5821),
- [sym_ternary_expression] = STATE(1634),
- [sym_binary_expression] = STATE(1634),
- [sym_unary_expression] = STATE(1634),
- [sym_update_expression] = STATE(1634),
- [sym_string] = STATE(1650),
- [sym_template_string] = STATE(1650),
- [sym_regex] = STATE(1650),
- [sym_meta_property] = STATE(1650),
- [sym_decorator] = STATE(1244),
- [sym_formal_parameters] = STATE(3742),
- [sym_non_null_expression] = STATE(1327),
- [sym_as_expression] = STATE(1634),
- [sym_satisfies_expression] = STATE(1634),
- [sym_instantiation_expression] = STATE(1634),
- [sym_internal_module] = STATE(1634),
- [sym_type_parameters] = STATE(5349),
- [aux_sym_export_statement_repeat1] = STATE(4458),
- [sym_identifier] = ACTIONS(1462),
- [anon_sym_export] = ACTIONS(1286),
- [anon_sym_type] = ACTIONS(1286),
- [anon_sym_namespace] = ACTIONS(1288),
- [anon_sym_LBRACE] = ACTIONS(2069),
- [anon_sym_typeof] = ACTIONS(1308),
- [anon_sym_import] = ACTIONS(133),
- [anon_sym_let] = ACTIONS(1286),
- [anon_sym_BANG] = ACTIONS(1292),
- [anon_sym_LPAREN] = ACTIONS(815),
- [anon_sym_await] = ACTIONS(1294),
- [anon_sym_yield] = ACTIONS(1296),
- [anon_sym_LBRACK] = ACTIONS(817),
- [sym_glimmer_opening_tag] = ACTIONS(148),
- [anon_sym_DQUOTE] = ACTIONS(150),
- [anon_sym_SQUOTE] = ACTIONS(152),
- [anon_sym_class] = ACTIONS(154),
- [anon_sym_async] = ACTIONS(1298),
- [anon_sym_function] = ACTIONS(158),
- [anon_sym_new] = ACTIONS(1466),
- [anon_sym_using] = ACTIONS(1302),
- [anon_sym_PLUS] = ACTIONS(1308),
- [anon_sym_DASH] = ACTIONS(1308),
- [anon_sym_SLASH] = ACTIONS(922),
- [anon_sym_LT] = ACTIONS(181),
- [anon_sym_TILDE] = ACTIONS(1292),
- [anon_sym_void] = ACTIONS(1308),
- [anon_sym_delete] = ACTIONS(1308),
- [anon_sym_PLUS_PLUS] = ACTIONS(1310),
- [anon_sym_DASH_DASH] = ACTIONS(1310),
- [sym_comment] = ACTIONS(5),
- [anon_sym_BQUOTE] = ACTIONS(825),
- [sym_number] = ACTIONS(787),
- [sym_private_property_identifier] = ACTIONS(1312),
- [sym_this] = ACTIONS(200),
- [sym_super] = ACTIONS(200),
- [sym_true] = ACTIONS(200),
- [sym_false] = ACTIONS(200),
- [sym_null] = ACTIONS(200),
- [sym_undefined] = ACTIONS(1468),
- [anon_sym_AT] = ACTIONS(99),
- [anon_sym_static] = ACTIONS(1286),
- [anon_sym_readonly] = ACTIONS(1286),
- [anon_sym_get] = ACTIONS(1286),
- [anon_sym_set] = ACTIONS(1286),
- [anon_sym_declare] = ACTIONS(1286),
- [anon_sym_public] = ACTIONS(1286),
- [anon_sym_private] = ACTIONS(1286),
- [anon_sym_protected] = ACTIONS(1286),
- [anon_sym_override] = ACTIONS(1286),
- [anon_sym_module] = ACTIONS(1286),
- [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_object] = ACTIONS(1286),
- [sym_html_comment] = ACTIONS(5),
- },
- [362] = {
- [sym_import] = STATE(3334),
- [sym_statement_block] = STATE(1782),
- [sym_parenthesized_expression] = STATE(1327),
- [sym_expression] = STATE(1861),
- [sym_primary_expression] = STATE(1468),
- [sym_yield_expression] = STATE(1634),
- [sym_object] = STATE(1650),
- [sym_object_pattern] = STATE(5821),
- [sym_array] = STATE(1650),
- [sym_array_pattern] = STATE(5821),
- [sym_glimmer_template] = STATE(1634),
- [sym_jsx_element] = STATE(1634),
- [sym_jsx_opening_element] = STATE(3026),
- [sym_jsx_self_closing_element] = STATE(1634),
- [sym_class] = STATE(1650),
- [sym_function_expression] = STATE(1650),
- [sym_generator_function] = STATE(1650),
- [sym_arrow_function] = STATE(1650),
- [sym__call_signature] = STATE(5743),
- [sym_call_expression] = STATE(1650),
- [sym_new_expression] = STATE(1634),
- [sym_await_expression] = STATE(1634),
- [sym_member_expression] = STATE(1327),
- [sym_subscript_expression] = STATE(1327),
- [sym_assignment_expression] = STATE(1634),
- [sym__augmented_assignment_lhs] = STATE(2919),
- [sym_augmented_assignment_expression] = STATE(1634),
- [sym__destructuring_pattern] = STATE(5821),
- [sym_ternary_expression] = STATE(1634),
- [sym_binary_expression] = STATE(1634),
- [sym_unary_expression] = STATE(1634),
- [sym_update_expression] = STATE(1634),
- [sym_string] = STATE(1650),
- [sym_template_string] = STATE(1650),
- [sym_regex] = STATE(1650),
- [sym_meta_property] = STATE(1650),
- [sym_decorator] = STATE(1244),
- [sym_formal_parameters] = STATE(3742),
- [sym_non_null_expression] = STATE(1327),
- [sym_as_expression] = STATE(1634),
- [sym_satisfies_expression] = STATE(1634),
- [sym_instantiation_expression] = STATE(1634),
- [sym_internal_module] = STATE(1634),
- [sym_type_parameters] = STATE(5349),
- [aux_sym_export_statement_repeat1] = STATE(4458),
- [sym_identifier] = ACTIONS(1462),
- [anon_sym_export] = ACTIONS(1286),
- [anon_sym_type] = ACTIONS(1286),
- [anon_sym_namespace] = ACTIONS(1288),
- [anon_sym_LBRACE] = ACTIONS(2069),
- [anon_sym_typeof] = ACTIONS(1308),
- [anon_sym_import] = ACTIONS(133),
- [anon_sym_let] = ACTIONS(1286),
- [anon_sym_BANG] = ACTIONS(1292),
- [anon_sym_LPAREN] = ACTIONS(815),
- [anon_sym_await] = ACTIONS(1294),
- [anon_sym_yield] = ACTIONS(1296),
- [anon_sym_LBRACK] = ACTIONS(817),
- [sym_glimmer_opening_tag] = ACTIONS(148),
- [anon_sym_DQUOTE] = ACTIONS(150),
- [anon_sym_SQUOTE] = ACTIONS(152),
- [anon_sym_class] = ACTIONS(154),
- [anon_sym_async] = ACTIONS(1298),
- [anon_sym_function] = ACTIONS(158),
- [anon_sym_new] = ACTIONS(1466),
- [anon_sym_using] = ACTIONS(1302),
- [anon_sym_PLUS] = ACTIONS(1308),
- [anon_sym_DASH] = ACTIONS(1308),
- [anon_sym_SLASH] = ACTIONS(922),
- [anon_sym_LT] = ACTIONS(181),
- [anon_sym_TILDE] = ACTIONS(1292),
- [anon_sym_void] = ACTIONS(1308),
- [anon_sym_delete] = ACTIONS(1308),
- [anon_sym_PLUS_PLUS] = ACTIONS(1310),
- [anon_sym_DASH_DASH] = ACTIONS(1310),
- [sym_comment] = ACTIONS(5),
- [anon_sym_BQUOTE] = ACTIONS(825),
- [sym_number] = ACTIONS(787),
- [sym_private_property_identifier] = ACTIONS(1312),
- [sym_this] = ACTIONS(200),
- [sym_super] = ACTIONS(200),
- [sym_true] = ACTIONS(200),
- [sym_false] = ACTIONS(200),
- [sym_null] = ACTIONS(200),
- [sym_undefined] = ACTIONS(1468),
- [anon_sym_AT] = ACTIONS(99),
- [anon_sym_static] = ACTIONS(1286),
- [anon_sym_readonly] = ACTIONS(1286),
- [anon_sym_get] = ACTIONS(1286),
- [anon_sym_set] = ACTIONS(1286),
- [anon_sym_declare] = ACTIONS(1286),
- [anon_sym_public] = ACTIONS(1286),
- [anon_sym_private] = ACTIONS(1286),
- [anon_sym_protected] = ACTIONS(1286),
- [anon_sym_override] = ACTIONS(1286),
- [anon_sym_module] = ACTIONS(1286),
- [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_object] = ACTIONS(1286),
- [sym_html_comment] = ACTIONS(5),
- },
- [363] = {
- [sym_import] = STATE(3334),
- [sym_statement_block] = STATE(1679),
- [sym_parenthesized_expression] = STATE(1327),
- [sym_expression] = STATE(1874),
- [sym_primary_expression] = STATE(1468),
- [sym_yield_expression] = STATE(1634),
- [sym_object] = STATE(1650),
- [sym_object_pattern] = STATE(5821),
- [sym_array] = STATE(1650),
- [sym_array_pattern] = STATE(5821),
- [sym_glimmer_template] = STATE(1634),
- [sym_jsx_element] = STATE(1634),
- [sym_jsx_opening_element] = STATE(3026),
- [sym_jsx_self_closing_element] = STATE(1634),
- [sym_class] = STATE(1650),
- [sym_function_expression] = STATE(1650),
- [sym_generator_function] = STATE(1650),
- [sym_arrow_function] = STATE(1650),
- [sym__call_signature] = STATE(5743),
- [sym_call_expression] = STATE(1650),
- [sym_new_expression] = STATE(1634),
- [sym_await_expression] = STATE(1634),
- [sym_member_expression] = STATE(1327),
- [sym_subscript_expression] = STATE(1327),
- [sym_assignment_expression] = STATE(1634),
- [sym__augmented_assignment_lhs] = STATE(2919),
- [sym_augmented_assignment_expression] = STATE(1634),
- [sym__destructuring_pattern] = STATE(5821),
- [sym_ternary_expression] = STATE(1634),
- [sym_binary_expression] = STATE(1634),
- [sym_unary_expression] = STATE(1634),
- [sym_update_expression] = STATE(1634),
- [sym_string] = STATE(1650),
- [sym_template_string] = STATE(1650),
- [sym_regex] = STATE(1650),
- [sym_meta_property] = STATE(1650),
- [sym_decorator] = STATE(1244),
- [sym_formal_parameters] = STATE(3742),
- [sym_non_null_expression] = STATE(1327),
- [sym_as_expression] = STATE(1634),
- [sym_satisfies_expression] = STATE(1634),
- [sym_instantiation_expression] = STATE(1634),
- [sym_internal_module] = STATE(1634),
- [sym_type_parameters] = STATE(5349),
- [aux_sym_export_statement_repeat1] = STATE(4458),
- [sym_identifier] = ACTIONS(1462),
- [anon_sym_export] = ACTIONS(1286),
- [anon_sym_type] = ACTIONS(1286),
- [anon_sym_namespace] = ACTIONS(1288),
- [anon_sym_LBRACE] = ACTIONS(2069),
- [anon_sym_typeof] = ACTIONS(1308),
- [anon_sym_import] = ACTIONS(133),
- [anon_sym_let] = ACTIONS(1286),
- [anon_sym_BANG] = ACTIONS(1292),
- [anon_sym_LPAREN] = ACTIONS(815),
- [anon_sym_await] = ACTIONS(1294),
- [anon_sym_yield] = ACTIONS(1296),
- [anon_sym_LBRACK] = ACTIONS(817),
- [sym_glimmer_opening_tag] = ACTIONS(148),
- [anon_sym_DQUOTE] = ACTIONS(150),
- [anon_sym_SQUOTE] = ACTIONS(152),
- [anon_sym_class] = ACTIONS(154),
- [anon_sym_async] = ACTIONS(1298),
- [anon_sym_function] = ACTIONS(158),
- [anon_sym_new] = ACTIONS(1466),
- [anon_sym_using] = ACTIONS(1302),
- [anon_sym_PLUS] = ACTIONS(1308),
- [anon_sym_DASH] = ACTIONS(1308),
- [anon_sym_SLASH] = ACTIONS(922),
- [anon_sym_LT] = ACTIONS(181),
- [anon_sym_TILDE] = ACTIONS(1292),
- [anon_sym_void] = ACTIONS(1308),
- [anon_sym_delete] = ACTIONS(1308),
- [anon_sym_PLUS_PLUS] = ACTIONS(1310),
- [anon_sym_DASH_DASH] = ACTIONS(1310),
- [sym_comment] = ACTIONS(5),
- [anon_sym_BQUOTE] = ACTIONS(825),
- [sym_number] = ACTIONS(787),
- [sym_private_property_identifier] = ACTIONS(1312),
- [sym_this] = ACTIONS(200),
- [sym_super] = ACTIONS(200),
- [sym_true] = ACTIONS(200),
- [sym_false] = ACTIONS(200),
- [sym_null] = ACTIONS(200),
- [sym_undefined] = ACTIONS(1468),
- [anon_sym_AT] = ACTIONS(99),
- [anon_sym_static] = ACTIONS(1286),
- [anon_sym_readonly] = ACTIONS(1286),
- [anon_sym_get] = ACTIONS(1286),
- [anon_sym_set] = ACTIONS(1286),
- [anon_sym_declare] = ACTIONS(1286),
- [anon_sym_public] = ACTIONS(1286),
- [anon_sym_private] = ACTIONS(1286),
- [anon_sym_protected] = ACTIONS(1286),
- [anon_sym_override] = ACTIONS(1286),
- [anon_sym_module] = ACTIONS(1286),
- [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_object] = ACTIONS(1286),
- [sym_html_comment] = ACTIONS(5),
- },
- [364] = {
- [sym_import] = STATE(3334),
- [sym_statement_block] = STATE(1614),
- [sym_parenthesized_expression] = STATE(1327),
- [sym_expression] = STATE(1876),
- [sym_primary_expression] = STATE(1468),
- [sym_yield_expression] = STATE(1634),
- [sym_object] = STATE(1650),
- [sym_object_pattern] = STATE(5821),
- [sym_array] = STATE(1650),
- [sym_array_pattern] = STATE(5821),
- [sym_glimmer_template] = STATE(1634),
- [sym_jsx_element] = STATE(1634),
- [sym_jsx_opening_element] = STATE(3026),
- [sym_jsx_self_closing_element] = STATE(1634),
- [sym_class] = STATE(1650),
- [sym_function_expression] = STATE(1650),
- [sym_generator_function] = STATE(1650),
- [sym_arrow_function] = STATE(1650),
- [sym__call_signature] = STATE(5743),
- [sym_call_expression] = STATE(1650),
- [sym_new_expression] = STATE(1634),
- [sym_await_expression] = STATE(1634),
- [sym_member_expression] = STATE(1327),
- [sym_subscript_expression] = STATE(1327),
- [sym_assignment_expression] = STATE(1634),
- [sym__augmented_assignment_lhs] = STATE(2919),
- [sym_augmented_assignment_expression] = STATE(1634),
- [sym__destructuring_pattern] = STATE(5821),
- [sym_ternary_expression] = STATE(1634),
- [sym_binary_expression] = STATE(1634),
- [sym_unary_expression] = STATE(1634),
- [sym_update_expression] = STATE(1634),
- [sym_string] = STATE(1650),
- [sym_template_string] = STATE(1650),
- [sym_regex] = STATE(1650),
- [sym_meta_property] = STATE(1650),
- [sym_decorator] = STATE(1244),
- [sym_formal_parameters] = STATE(3742),
- [sym_non_null_expression] = STATE(1327),
- [sym_as_expression] = STATE(1634),
- [sym_satisfies_expression] = STATE(1634),
- [sym_instantiation_expression] = STATE(1634),
- [sym_internal_module] = STATE(1634),
- [sym_type_parameters] = STATE(5349),
- [aux_sym_export_statement_repeat1] = STATE(4458),
- [sym_identifier] = ACTIONS(1462),
- [anon_sym_export] = ACTIONS(1286),
- [anon_sym_type] = ACTIONS(1286),
- [anon_sym_namespace] = ACTIONS(1288),
- [anon_sym_LBRACE] = ACTIONS(2069),
- [anon_sym_typeof] = ACTIONS(1308),
- [anon_sym_import] = ACTIONS(133),
- [anon_sym_let] = ACTIONS(1286),
- [anon_sym_BANG] = ACTIONS(1292),
- [anon_sym_LPAREN] = ACTIONS(815),
- [anon_sym_await] = ACTIONS(1294),
- [anon_sym_yield] = ACTIONS(1296),
- [anon_sym_LBRACK] = ACTIONS(817),
- [sym_glimmer_opening_tag] = ACTIONS(148),
- [anon_sym_DQUOTE] = ACTIONS(150),
- [anon_sym_SQUOTE] = ACTIONS(152),
- [anon_sym_class] = ACTIONS(154),
- [anon_sym_async] = ACTIONS(1298),
- [anon_sym_function] = ACTIONS(158),
- [anon_sym_new] = ACTIONS(1466),
- [anon_sym_using] = ACTIONS(1302),
- [anon_sym_PLUS] = ACTIONS(1308),
- [anon_sym_DASH] = ACTIONS(1308),
- [anon_sym_SLASH] = ACTIONS(922),
- [anon_sym_LT] = ACTIONS(181),
- [anon_sym_TILDE] = ACTIONS(1292),
- [anon_sym_void] = ACTIONS(1308),
- [anon_sym_delete] = ACTIONS(1308),
- [anon_sym_PLUS_PLUS] = ACTIONS(1310),
- [anon_sym_DASH_DASH] = ACTIONS(1310),
- [sym_comment] = ACTIONS(5),
- [anon_sym_BQUOTE] = ACTIONS(825),
- [sym_number] = ACTIONS(787),
- [sym_private_property_identifier] = ACTIONS(1312),
- [sym_this] = ACTIONS(200),
- [sym_super] = ACTIONS(200),
- [sym_true] = ACTIONS(200),
- [sym_false] = ACTIONS(200),
- [sym_null] = ACTIONS(200),
- [sym_undefined] = ACTIONS(1468),
- [anon_sym_AT] = ACTIONS(99),
- [anon_sym_static] = ACTIONS(1286),
- [anon_sym_readonly] = ACTIONS(1286),
- [anon_sym_get] = ACTIONS(1286),
- [anon_sym_set] = ACTIONS(1286),
- [anon_sym_declare] = ACTIONS(1286),
- [anon_sym_public] = ACTIONS(1286),
- [anon_sym_private] = ACTIONS(1286),
- [anon_sym_protected] = ACTIONS(1286),
- [anon_sym_override] = ACTIONS(1286),
- [anon_sym_module] = ACTIONS(1286),
- [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_object] = ACTIONS(1286),
- [sym_html_comment] = ACTIONS(5),
- },
- [365] = {
- [sym_import] = STATE(3334),
- [sym_statement_block] = STATE(1712),
- [sym_parenthesized_expression] = STATE(1327),
- [sym_expression] = STATE(1877),
- [sym_primary_expression] = STATE(1468),
- [sym_yield_expression] = STATE(1634),
- [sym_object] = STATE(1650),
- [sym_object_pattern] = STATE(5821),
- [sym_array] = STATE(1650),
- [sym_array_pattern] = STATE(5821),
- [sym_glimmer_template] = STATE(1634),
- [sym_jsx_element] = STATE(1634),
- [sym_jsx_opening_element] = STATE(3026),
- [sym_jsx_self_closing_element] = STATE(1634),
- [sym_class] = STATE(1650),
- [sym_function_expression] = STATE(1650),
- [sym_generator_function] = STATE(1650),
- [sym_arrow_function] = STATE(1650),
- [sym__call_signature] = STATE(5743),
- [sym_call_expression] = STATE(1650),
- [sym_new_expression] = STATE(1634),
- [sym_await_expression] = STATE(1634),
- [sym_member_expression] = STATE(1327),
- [sym_subscript_expression] = STATE(1327),
- [sym_assignment_expression] = STATE(1634),
- [sym__augmented_assignment_lhs] = STATE(2919),
- [sym_augmented_assignment_expression] = STATE(1634),
- [sym__destructuring_pattern] = STATE(5821),
- [sym_ternary_expression] = STATE(1634),
- [sym_binary_expression] = STATE(1634),
- [sym_unary_expression] = STATE(1634),
- [sym_update_expression] = STATE(1634),
- [sym_string] = STATE(1650),
- [sym_template_string] = STATE(1650),
- [sym_regex] = STATE(1650),
- [sym_meta_property] = STATE(1650),
- [sym_decorator] = STATE(1244),
- [sym_formal_parameters] = STATE(3742),
- [sym_non_null_expression] = STATE(1327),
- [sym_as_expression] = STATE(1634),
- [sym_satisfies_expression] = STATE(1634),
- [sym_instantiation_expression] = STATE(1634),
- [sym_internal_module] = STATE(1634),
- [sym_type_parameters] = STATE(5349),
- [aux_sym_export_statement_repeat1] = STATE(4458),
- [sym_identifier] = ACTIONS(1462),
- [anon_sym_export] = ACTIONS(1286),
- [anon_sym_type] = ACTIONS(1286),
- [anon_sym_namespace] = ACTIONS(1288),
- [anon_sym_LBRACE] = ACTIONS(2069),
- [anon_sym_typeof] = ACTIONS(1308),
- [anon_sym_import] = ACTIONS(133),
- [anon_sym_let] = ACTIONS(1286),
- [anon_sym_BANG] = ACTIONS(1292),
- [anon_sym_LPAREN] = ACTIONS(815),
- [anon_sym_await] = ACTIONS(1294),
- [anon_sym_yield] = ACTIONS(1296),
- [anon_sym_LBRACK] = ACTIONS(817),
- [sym_glimmer_opening_tag] = ACTIONS(148),
- [anon_sym_DQUOTE] = ACTIONS(150),
- [anon_sym_SQUOTE] = ACTIONS(152),
- [anon_sym_class] = ACTIONS(154),
- [anon_sym_async] = ACTIONS(1298),
- [anon_sym_function] = ACTIONS(158),
- [anon_sym_new] = ACTIONS(1466),
- [anon_sym_using] = ACTIONS(1302),
- [anon_sym_PLUS] = ACTIONS(1308),
- [anon_sym_DASH] = ACTIONS(1308),
- [anon_sym_SLASH] = ACTIONS(922),
- [anon_sym_LT] = ACTIONS(181),
- [anon_sym_TILDE] = ACTIONS(1292),
- [anon_sym_void] = ACTIONS(1308),
- [anon_sym_delete] = ACTIONS(1308),
- [anon_sym_PLUS_PLUS] = ACTIONS(1310),
- [anon_sym_DASH_DASH] = ACTIONS(1310),
- [sym_comment] = ACTIONS(5),
- [anon_sym_BQUOTE] = ACTIONS(825),
- [sym_number] = ACTIONS(787),
- [sym_private_property_identifier] = ACTIONS(1312),
- [sym_this] = ACTIONS(200),
- [sym_super] = ACTIONS(200),
- [sym_true] = ACTIONS(200),
- [sym_false] = ACTIONS(200),
- [sym_null] = ACTIONS(200),
- [sym_undefined] = ACTIONS(1468),
- [anon_sym_AT] = ACTIONS(99),
- [anon_sym_static] = ACTIONS(1286),
- [anon_sym_readonly] = ACTIONS(1286),
- [anon_sym_get] = ACTIONS(1286),
- [anon_sym_set] = ACTIONS(1286),
- [anon_sym_declare] = ACTIONS(1286),
- [anon_sym_public] = ACTIONS(1286),
- [anon_sym_private] = ACTIONS(1286),
- [anon_sym_protected] = ACTIONS(1286),
- [anon_sym_override] = ACTIONS(1286),
- [anon_sym_module] = ACTIONS(1286),
- [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_object] = ACTIONS(1286),
- [sym_html_comment] = ACTIONS(5),
- },
- [366] = {
- [sym_import] = STATE(3334),
- [sym_statement_block] = STATE(1714),
- [sym_parenthesized_expression] = STATE(1327),
- [sym_expression] = STATE(1878),
- [sym_primary_expression] = STATE(1468),
- [sym_yield_expression] = STATE(1634),
- [sym_object] = STATE(1650),
- [sym_object_pattern] = STATE(5821),
- [sym_array] = STATE(1650),
- [sym_array_pattern] = STATE(5821),
- [sym_glimmer_template] = STATE(1634),
- [sym_jsx_element] = STATE(1634),
- [sym_jsx_opening_element] = STATE(3026),
- [sym_jsx_self_closing_element] = STATE(1634),
- [sym_class] = STATE(1650),
- [sym_function_expression] = STATE(1650),
- [sym_generator_function] = STATE(1650),
- [sym_arrow_function] = STATE(1650),
- [sym__call_signature] = STATE(5743),
- [sym_call_expression] = STATE(1650),
- [sym_new_expression] = STATE(1634),
- [sym_await_expression] = STATE(1634),
- [sym_member_expression] = STATE(1327),
- [sym_subscript_expression] = STATE(1327),
- [sym_assignment_expression] = STATE(1634),
- [sym__augmented_assignment_lhs] = STATE(2919),
- [sym_augmented_assignment_expression] = STATE(1634),
- [sym__destructuring_pattern] = STATE(5821),
- [sym_ternary_expression] = STATE(1634),
- [sym_binary_expression] = STATE(1634),
- [sym_unary_expression] = STATE(1634),
- [sym_update_expression] = STATE(1634),
- [sym_string] = STATE(1650),
- [sym_template_string] = STATE(1650),
- [sym_regex] = STATE(1650),
- [sym_meta_property] = STATE(1650),
- [sym_decorator] = STATE(1244),
- [sym_formal_parameters] = STATE(3742),
- [sym_non_null_expression] = STATE(1327),
- [sym_as_expression] = STATE(1634),
- [sym_satisfies_expression] = STATE(1634),
- [sym_instantiation_expression] = STATE(1634),
- [sym_internal_module] = STATE(1634),
- [sym_type_parameters] = STATE(5349),
- [aux_sym_export_statement_repeat1] = STATE(4458),
- [sym_identifier] = ACTIONS(1462),
- [anon_sym_export] = ACTIONS(1286),
- [anon_sym_type] = ACTIONS(1286),
- [anon_sym_namespace] = ACTIONS(1288),
- [anon_sym_LBRACE] = ACTIONS(2069),
- [anon_sym_typeof] = ACTIONS(1308),
- [anon_sym_import] = ACTIONS(133),
- [anon_sym_let] = ACTIONS(1286),
- [anon_sym_BANG] = ACTIONS(1292),
- [anon_sym_LPAREN] = ACTIONS(815),
- [anon_sym_await] = ACTIONS(1294),
- [anon_sym_yield] = ACTIONS(1296),
- [anon_sym_LBRACK] = ACTIONS(817),
- [sym_glimmer_opening_tag] = ACTIONS(148),
- [anon_sym_DQUOTE] = ACTIONS(150),
- [anon_sym_SQUOTE] = ACTIONS(152),
- [anon_sym_class] = ACTIONS(154),
- [anon_sym_async] = ACTIONS(1298),
- [anon_sym_function] = ACTIONS(158),
- [anon_sym_new] = ACTIONS(1466),
- [anon_sym_using] = ACTIONS(1302),
- [anon_sym_PLUS] = ACTIONS(1308),
- [anon_sym_DASH] = ACTIONS(1308),
- [anon_sym_SLASH] = ACTIONS(922),
- [anon_sym_LT] = ACTIONS(181),
- [anon_sym_TILDE] = ACTIONS(1292),
- [anon_sym_void] = ACTIONS(1308),
- [anon_sym_delete] = ACTIONS(1308),
- [anon_sym_PLUS_PLUS] = ACTIONS(1310),
- [anon_sym_DASH_DASH] = ACTIONS(1310),
- [sym_comment] = ACTIONS(5),
- [anon_sym_BQUOTE] = ACTIONS(825),
- [sym_number] = ACTIONS(787),
- [sym_private_property_identifier] = ACTIONS(1312),
- [sym_this] = ACTIONS(200),
- [sym_super] = ACTIONS(200),
- [sym_true] = ACTIONS(200),
- [sym_false] = ACTIONS(200),
- [sym_null] = ACTIONS(200),
- [sym_undefined] = ACTIONS(1468),
- [anon_sym_AT] = ACTIONS(99),
- [anon_sym_static] = ACTIONS(1286),
- [anon_sym_readonly] = ACTIONS(1286),
- [anon_sym_get] = ACTIONS(1286),
- [anon_sym_set] = ACTIONS(1286),
- [anon_sym_declare] = ACTIONS(1286),
- [anon_sym_public] = ACTIONS(1286),
- [anon_sym_private] = ACTIONS(1286),
- [anon_sym_protected] = ACTIONS(1286),
- [anon_sym_override] = ACTIONS(1286),
- [anon_sym_module] = ACTIONS(1286),
- [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_object] = ACTIONS(1286),
- [sym_html_comment] = ACTIONS(5),
- },
- [367] = {
- [sym_import] = STATE(3334),
- [sym_statement_block] = STATE(1614),
- [sym_parenthesized_expression] = STATE(1251),
- [sym_expression] = STATE(1572),
- [sym_primary_expression] = STATE(1468),
- [sym_yield_expression] = STATE(1634),
- [sym_object] = STATE(1650),
- [sym_object_pattern] = STATE(5633),
- [sym_array] = STATE(1650),
- [sym_array_pattern] = STATE(5633),
- [sym_glimmer_template] = STATE(1634),
- [sym_jsx_element] = STATE(1634),
- [sym_jsx_opening_element] = STATE(3026),
- [sym_jsx_self_closing_element] = STATE(1634),
- [sym_class] = STATE(1650),
- [sym_function_expression] = STATE(1650),
- [sym_generator_function] = STATE(1650),
- [sym_arrow_function] = STATE(1650),
- [sym__call_signature] = STATE(5828),
- [sym_call_expression] = STATE(1650),
- [sym_new_expression] = STATE(1634),
- [sym_await_expression] = STATE(1634),
- [sym_member_expression] = STATE(1251),
- [sym_subscript_expression] = STATE(1251),
- [sym_assignment_expression] = STATE(1634),
- [sym__augmented_assignment_lhs] = STATE(2900),
- [sym_augmented_assignment_expression] = STATE(1634),
- [sym__destructuring_pattern] = STATE(5633),
- [sym_ternary_expression] = STATE(1634),
- [sym_binary_expression] = STATE(1634),
- [sym_unary_expression] = STATE(1634),
- [sym_update_expression] = STATE(1634),
- [sym_string] = STATE(1650),
- [sym_template_string] = STATE(1650),
- [sym_regex] = STATE(1650),
- [sym_meta_property] = STATE(1650),
- [sym_decorator] = STATE(1244),
- [sym_formal_parameters] = STATE(3742),
- [sym_non_null_expression] = STATE(1251),
- [sym_as_expression] = STATE(1634),
- [sym_satisfies_expression] = STATE(1634),
- [sym_instantiation_expression] = STATE(1634),
- [sym_internal_module] = STATE(1634),
- [sym_type_parameters] = STATE(5349),
- [aux_sym_export_statement_repeat1] = STATE(4458),
- [sym_identifier] = ACTIONS(1428),
- [anon_sym_export] = ACTIONS(1044),
- [anon_sym_type] = ACTIONS(1044),
- [anon_sym_namespace] = ACTIONS(1046),
- [anon_sym_LBRACE] = ACTIONS(2069),
- [anon_sym_typeof] = ACTIONS(650),
- [anon_sym_import] = ACTIONS(133),
- [anon_sym_let] = ACTIONS(1044),
- [anon_sym_BANG] = ACTIONS(622),
- [anon_sym_LPAREN] = ACTIONS(815),
- [anon_sym_await] = ACTIONS(624),
- [anon_sym_yield] = ACTIONS(626),
- [anon_sym_LBRACK] = ACTIONS(817),
- [sym_glimmer_opening_tag] = ACTIONS(148),
- [anon_sym_DQUOTE] = ACTIONS(150),
- [anon_sym_SQUOTE] = ACTIONS(152),
- [anon_sym_class] = ACTIONS(154),
- [anon_sym_async] = ACTIONS(1052),
- [anon_sym_function] = ACTIONS(158),
- [anon_sym_new] = ACTIONS(1436),
- [anon_sym_using] = ACTIONS(636),
- [anon_sym_PLUS] = ACTIONS(650),
- [anon_sym_DASH] = ACTIONS(650),
- [anon_sym_SLASH] = ACTIONS(646),
- [anon_sym_LT] = ACTIONS(181),
- [anon_sym_TILDE] = ACTIONS(622),
- [anon_sym_void] = ACTIONS(650),
- [anon_sym_delete] = ACTIONS(650),
- [anon_sym_PLUS_PLUS] = ACTIONS(652),
- [anon_sym_DASH_DASH] = ACTIONS(652),
- [sym_comment] = ACTIONS(5),
- [anon_sym_BQUOTE] = ACTIONS(825),
- [sym_number] = ACTIONS(787),
- [sym_private_property_identifier] = ACTIONS(654),
- [sym_this] = ACTIONS(200),
- [sym_super] = ACTIONS(200),
- [sym_true] = ACTIONS(200),
- [sym_false] = ACTIONS(200),
- [sym_null] = ACTIONS(200),
- [sym_undefined] = ACTIONS(1438),
- [anon_sym_AT] = ACTIONS(99),
- [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_override] = 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_object] = ACTIONS(1044),
- [sym_html_comment] = ACTIONS(5),
- },
- [368] = {
- [sym_import] = STATE(3334),
- [sym_statement_block] = STATE(1712),
- [sym_parenthesized_expression] = STATE(1251),
- [sym_expression] = STATE(1573),
- [sym_primary_expression] = STATE(1468),
- [sym_yield_expression] = STATE(1634),
- [sym_object] = STATE(1650),
- [sym_object_pattern] = STATE(5633),
- [sym_array] = STATE(1650),
- [sym_array_pattern] = STATE(5633),
- [sym_glimmer_template] = STATE(1634),
- [sym_jsx_element] = STATE(1634),
- [sym_jsx_opening_element] = STATE(3026),
- [sym_jsx_self_closing_element] = STATE(1634),
- [sym_class] = STATE(1650),
- [sym_function_expression] = STATE(1650),
- [sym_generator_function] = STATE(1650),
- [sym_arrow_function] = STATE(1650),
- [sym__call_signature] = STATE(5828),
- [sym_call_expression] = STATE(1650),
- [sym_new_expression] = STATE(1634),
- [sym_await_expression] = STATE(1634),
- [sym_member_expression] = STATE(1251),
- [sym_subscript_expression] = STATE(1251),
- [sym_assignment_expression] = STATE(1634),
- [sym__augmented_assignment_lhs] = STATE(2900),
- [sym_augmented_assignment_expression] = STATE(1634),
- [sym__destructuring_pattern] = STATE(5633),
- [sym_ternary_expression] = STATE(1634),
- [sym_binary_expression] = STATE(1634),
- [sym_unary_expression] = STATE(1634),
- [sym_update_expression] = STATE(1634),
- [sym_string] = STATE(1650),
- [sym_template_string] = STATE(1650),
- [sym_regex] = STATE(1650),
- [sym_meta_property] = STATE(1650),
- [sym_decorator] = STATE(1244),
- [sym_formal_parameters] = STATE(3742),
- [sym_non_null_expression] = STATE(1251),
- [sym_as_expression] = STATE(1634),
- [sym_satisfies_expression] = STATE(1634),
- [sym_instantiation_expression] = STATE(1634),
- [sym_internal_module] = STATE(1634),
- [sym_type_parameters] = STATE(5349),
- [aux_sym_export_statement_repeat1] = STATE(4458),
- [sym_identifier] = ACTIONS(1428),
- [anon_sym_export] = ACTIONS(1044),
- [anon_sym_type] = ACTIONS(1044),
- [anon_sym_namespace] = ACTIONS(1046),
- [anon_sym_LBRACE] = ACTIONS(2069),
- [anon_sym_typeof] = ACTIONS(650),
- [anon_sym_import] = ACTIONS(133),
- [anon_sym_let] = ACTIONS(1044),
- [anon_sym_BANG] = ACTIONS(622),
- [anon_sym_LPAREN] = ACTIONS(815),
- [anon_sym_await] = ACTIONS(624),
- [anon_sym_yield] = ACTIONS(626),
- [anon_sym_LBRACK] = ACTIONS(817),
- [sym_glimmer_opening_tag] = ACTIONS(148),
- [anon_sym_DQUOTE] = ACTIONS(150),
- [anon_sym_SQUOTE] = ACTIONS(152),
- [anon_sym_class] = ACTIONS(154),
- [anon_sym_async] = ACTIONS(1052),
- [anon_sym_function] = ACTIONS(158),
- [anon_sym_new] = ACTIONS(1436),
- [anon_sym_using] = ACTIONS(636),
- [anon_sym_PLUS] = ACTIONS(650),
- [anon_sym_DASH] = ACTIONS(650),
- [anon_sym_SLASH] = ACTIONS(646),
- [anon_sym_LT] = ACTIONS(181),
- [anon_sym_TILDE] = ACTIONS(622),
- [anon_sym_void] = ACTIONS(650),
- [anon_sym_delete] = ACTIONS(650),
- [anon_sym_PLUS_PLUS] = ACTIONS(652),
- [anon_sym_DASH_DASH] = ACTIONS(652),
- [sym_comment] = ACTIONS(5),
- [anon_sym_BQUOTE] = ACTIONS(825),
- [sym_number] = ACTIONS(787),
- [sym_private_property_identifier] = ACTIONS(654),
- [sym_this] = ACTIONS(200),
- [sym_super] = ACTIONS(200),
- [sym_true] = ACTIONS(200),
- [sym_false] = ACTIONS(200),
- [sym_null] = ACTIONS(200),
- [sym_undefined] = ACTIONS(1438),
- [anon_sym_AT] = ACTIONS(99),
- [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_override] = 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_object] = ACTIONS(1044),
- [sym_html_comment] = ACTIONS(5),
- },
- [369] = {
- [sym_import] = STATE(3334),
- [sym_statement_block] = STATE(1714),
- [sym_parenthesized_expression] = STATE(1251),
- [sym_expression] = STATE(1574),
- [sym_primary_expression] = STATE(1468),
- [sym_yield_expression] = STATE(1634),
- [sym_object] = STATE(1650),
- [sym_object_pattern] = STATE(5633),
- [sym_array] = STATE(1650),
- [sym_array_pattern] = STATE(5633),
- [sym_glimmer_template] = STATE(1634),
- [sym_jsx_element] = STATE(1634),
- [sym_jsx_opening_element] = STATE(3026),
- [sym_jsx_self_closing_element] = STATE(1634),
- [sym_class] = STATE(1650),
- [sym_function_expression] = STATE(1650),
- [sym_generator_function] = STATE(1650),
- [sym_arrow_function] = STATE(1650),
- [sym__call_signature] = STATE(5828),
- [sym_call_expression] = STATE(1650),
- [sym_new_expression] = STATE(1634),
- [sym_await_expression] = STATE(1634),
- [sym_member_expression] = STATE(1251),
- [sym_subscript_expression] = STATE(1251),
- [sym_assignment_expression] = STATE(1634),
- [sym__augmented_assignment_lhs] = STATE(2900),
- [sym_augmented_assignment_expression] = STATE(1634),
- [sym__destructuring_pattern] = STATE(5633),
- [sym_ternary_expression] = STATE(1634),
- [sym_binary_expression] = STATE(1634),
- [sym_unary_expression] = STATE(1634),
- [sym_update_expression] = STATE(1634),
- [sym_string] = STATE(1650),
- [sym_template_string] = STATE(1650),
- [sym_regex] = STATE(1650),
- [sym_meta_property] = STATE(1650),
- [sym_decorator] = STATE(1244),
- [sym_formal_parameters] = STATE(3742),
- [sym_non_null_expression] = STATE(1251),
- [sym_as_expression] = STATE(1634),
- [sym_satisfies_expression] = STATE(1634),
- [sym_instantiation_expression] = STATE(1634),
- [sym_internal_module] = STATE(1634),
- [sym_type_parameters] = STATE(5349),
- [aux_sym_export_statement_repeat1] = STATE(4458),
- [sym_identifier] = ACTIONS(1428),
- [anon_sym_export] = ACTIONS(1044),
- [anon_sym_type] = ACTIONS(1044),
- [anon_sym_namespace] = ACTIONS(1046),
- [anon_sym_LBRACE] = ACTIONS(2069),
- [anon_sym_typeof] = ACTIONS(650),
- [anon_sym_import] = ACTIONS(133),
- [anon_sym_let] = ACTIONS(1044),
- [anon_sym_BANG] = ACTIONS(622),
- [anon_sym_LPAREN] = ACTIONS(815),
- [anon_sym_await] = ACTIONS(624),
- [anon_sym_yield] = ACTIONS(626),
- [anon_sym_LBRACK] = ACTIONS(817),
- [sym_glimmer_opening_tag] = ACTIONS(148),
- [anon_sym_DQUOTE] = ACTIONS(150),
- [anon_sym_SQUOTE] = ACTIONS(152),
- [anon_sym_class] = ACTIONS(154),
- [anon_sym_async] = ACTIONS(1052),
- [anon_sym_function] = ACTIONS(158),
- [anon_sym_new] = ACTIONS(1436),
- [anon_sym_using] = ACTIONS(636),
- [anon_sym_PLUS] = ACTIONS(650),
- [anon_sym_DASH] = ACTIONS(650),
- [anon_sym_SLASH] = ACTIONS(646),
- [anon_sym_LT] = ACTIONS(181),
- [anon_sym_TILDE] = ACTIONS(622),
- [anon_sym_void] = ACTIONS(650),
- [anon_sym_delete] = ACTIONS(650),
- [anon_sym_PLUS_PLUS] = ACTIONS(652),
- [anon_sym_DASH_DASH] = ACTIONS(652),
- [sym_comment] = ACTIONS(5),
- [anon_sym_BQUOTE] = ACTIONS(825),
- [sym_number] = ACTIONS(787),
- [sym_private_property_identifier] = ACTIONS(654),
- [sym_this] = ACTIONS(200),
- [sym_super] = ACTIONS(200),
- [sym_true] = ACTIONS(200),
- [sym_false] = ACTIONS(200),
- [sym_null] = ACTIONS(200),
- [sym_undefined] = ACTIONS(1438),
- [anon_sym_AT] = ACTIONS(99),
- [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_override] = 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_object] = ACTIONS(1044),
- [sym_html_comment] = ACTIONS(5),
- },
- [370] = {
- [sym_import] = STATE(3334),
- [sym_parenthesized_expression] = STATE(1369),
- [sym_expression] = STATE(2212),
- [sym_primary_expression] = STATE(1468),
- [sym_yield_expression] = STATE(1634),
- [sym_object] = STATE(1650),
- [sym_object_pattern] = STATE(5861),
- [sym_array] = STATE(1650),
- [sym_array_pattern] = STATE(5861),
- [sym_glimmer_template] = STATE(1634),
- [sym_jsx_element] = STATE(1634),
- [sym_jsx_opening_element] = STATE(3026),
- [sym_jsx_self_closing_element] = STATE(1634),
- [sym_class] = STATE(1650),
- [sym_function_expression] = STATE(1650),
- [sym_generator_function] = STATE(1650),
- [sym_arrow_function] = STATE(1650),
- [sym__call_signature] = STATE(5765),
- [sym_call_expression] = STATE(1650),
- [sym_new_expression] = STATE(1634),
- [sym_await_expression] = STATE(1634),
- [sym_member_expression] = STATE(1369),
- [sym_subscript_expression] = STATE(1369),
- [sym_assignment_expression] = STATE(1634),
- [sym__augmented_assignment_lhs] = STATE(2891),
- [sym_augmented_assignment_expression] = STATE(1634),
- [sym__destructuring_pattern] = STATE(5861),
- [sym_ternary_expression] = STATE(1634),
- [sym_binary_expression] = STATE(1634),
- [sym_unary_expression] = STATE(1634),
- [sym_update_expression] = STATE(1634),
- [sym_string] = STATE(1650),
- [sym_template_string] = STATE(1650),
- [sym_regex] = STATE(1650),
- [sym_meta_property] = STATE(1650),
- [sym_decorator] = STATE(1244),
- [sym_formal_parameters] = STATE(3742),
- [sym_non_null_expression] = STATE(1369),
- [sym_as_expression] = STATE(1634),
- [sym_satisfies_expression] = STATE(1634),
- [sym_instantiation_expression] = STATE(1634),
- [sym_internal_module] = STATE(1634),
- [sym_mapped_type_clause] = STATE(5639),
- [sym_type_parameters] = STATE(5349),
- [aux_sym_export_statement_repeat1] = STATE(4458),
- [sym_identifier] = ACTIONS(2071),
- [anon_sym_export] = ACTIONS(2073),
- [anon_sym_type] = ACTIONS(2073),
- [anon_sym_namespace] = ACTIONS(2075),
- [anon_sym_LBRACE] = ACTIONS(813),
- [anon_sym_typeof] = ACTIONS(1138),
- [anon_sym_import] = ACTIONS(133),
- [anon_sym_let] = ACTIONS(2073),
- [anon_sym_BANG] = ACTIONS(1122),
- [anon_sym_LPAREN] = ACTIONS(815),
- [anon_sym_await] = ACTIONS(1124),
- [anon_sym_yield] = ACTIONS(1126),
- [anon_sym_LBRACK] = ACTIONS(817),
- [sym_glimmer_opening_tag] = ACTIONS(148),
- [anon_sym_DQUOTE] = ACTIONS(150),
- [anon_sym_SQUOTE] = ACTIONS(152),
- [anon_sym_class] = ACTIONS(154),
- [anon_sym_async] = ACTIONS(2077),
- [anon_sym_function] = ACTIONS(158),
- [anon_sym_new] = ACTIONS(2079),
- [anon_sym_using] = ACTIONS(1132),
- [anon_sym_PLUS] = ACTIONS(1138),
- [anon_sym_DASH] = ACTIONS(1138),
- [anon_sym_SLASH] = ACTIONS(646),
- [anon_sym_LT] = ACTIONS(181),
- [anon_sym_TILDE] = ACTIONS(1122),
- [anon_sym_void] = ACTIONS(1138),
- [anon_sym_delete] = ACTIONS(1138),
- [anon_sym_PLUS_PLUS] = ACTIONS(1140),
- [anon_sym_DASH_DASH] = ACTIONS(1140),
- [sym_comment] = ACTIONS(5),
- [anon_sym_BQUOTE] = ACTIONS(825),
- [sym_number] = ACTIONS(787),
- [sym_private_property_identifier] = ACTIONS(1142),
- [sym_this] = ACTIONS(200),
- [sym_super] = ACTIONS(200),
- [sym_true] = ACTIONS(200),
- [sym_false] = ACTIONS(200),
- [sym_null] = ACTIONS(200),
- [sym_undefined] = ACTIONS(1484),
- [anon_sym_AT] = ACTIONS(99),
- [anon_sym_static] = ACTIONS(2073),
- [anon_sym_readonly] = ACTIONS(2073),
- [anon_sym_get] = ACTIONS(2073),
- [anon_sym_set] = ACTIONS(2073),
- [anon_sym_declare] = ACTIONS(2073),
- [anon_sym_public] = ACTIONS(2073),
- [anon_sym_private] = ACTIONS(2073),
- [anon_sym_protected] = ACTIONS(2073),
- [anon_sym_override] = ACTIONS(2073),
- [anon_sym_module] = ACTIONS(2073),
- [anon_sym_any] = ACTIONS(2073),
- [anon_sym_number] = ACTIONS(2073),
- [anon_sym_boolean] = ACTIONS(2073),
- [anon_sym_string] = ACTIONS(2073),
- [anon_sym_symbol] = ACTIONS(2073),
- [anon_sym_object] = ACTIONS(2073),
- [sym_html_comment] = ACTIONS(5),
- },
- [371] = {
- [sym_import] = STATE(3306),
- [sym_statement_block] = STATE(2159),
- [sym_parenthesized_expression] = STATE(1294),
- [sym_expression] = STATE(1760),
- [sym_primary_expression] = STATE(1946),
- [sym_yield_expression] = STATE(2234),
- [sym_object] = STATE(2310),
- [sym_object_pattern] = STATE(5667),
- [sym_array] = STATE(2310),
- [sym_array_pattern] = STATE(5667),
- [sym_glimmer_template] = STATE(2234),
- [sym_jsx_element] = STATE(2234),
- [sym_jsx_opening_element] = STATE(3051),
- [sym_jsx_self_closing_element] = STATE(2234),
- [sym_class] = STATE(2310),
- [sym_function_expression] = STATE(2310),
- [sym_generator_function] = STATE(2310),
- [sym_arrow_function] = STATE(2310),
- [sym__call_signature] = STATE(5809),
- [sym_call_expression] = STATE(2310),
- [sym_new_expression] = STATE(2234),
- [sym_await_expression] = STATE(2234),
- [sym_member_expression] = STATE(1294),
- [sym_subscript_expression] = STATE(1294),
- [sym_assignment_expression] = STATE(2234),
- [sym__augmented_assignment_lhs] = STATE(2875),
- [sym_augmented_assignment_expression] = STATE(2234),
- [sym__destructuring_pattern] = STATE(5667),
- [sym_ternary_expression] = STATE(2234),
- [sym_binary_expression] = STATE(2234),
- [sym_unary_expression] = STATE(2234),
- [sym_update_expression] = STATE(2234),
- [sym_string] = STATE(2310),
- [sym_template_string] = STATE(2310),
- [sym_regex] = STATE(2310),
- [sym_meta_property] = STATE(2310),
- [sym_decorator] = STATE(1244),
- [sym_formal_parameters] = STATE(3742),
- [sym_non_null_expression] = STATE(1294),
- [sym_as_expression] = STATE(2234),
- [sym_satisfies_expression] = STATE(2234),
- [sym_instantiation_expression] = STATE(2234),
- [sym_internal_module] = STATE(2234),
- [sym_type_parameters] = STATE(5349),
- [aux_sym_export_statement_repeat1] = STATE(4499),
- [sym_identifier] = ACTIONS(1440),
- [anon_sym_export] = ACTIONS(1372),
- [anon_sym_type] = ACTIONS(1372),
- [anon_sym_namespace] = ACTIONS(1374),
- [anon_sym_LBRACE] = ACTIONS(2055),
- [anon_sym_typeof] = ACTIONS(21),
- [anon_sym_import] = ACTIONS(133),
- [anon_sym_let] = ACTIONS(1372),
- [anon_sym_BANG] = ACTIONS(33),
- [anon_sym_LPAREN] = ACTIONS(41),
- [anon_sym_await] = ACTIONS(43),
- [anon_sym_yield] = ACTIONS(63),
- [anon_sym_LBRACK] = ACTIONS(65),
- [sym_glimmer_opening_tag] = ACTIONS(67),
- [anon_sym_DQUOTE] = ACTIONS(69),
- [anon_sym_SQUOTE] = ACTIONS(71),
- [anon_sym_class] = ACTIONS(709),
- [anon_sym_async] = ACTIONS(1378),
- [anon_sym_function] = ACTIONS(713),
- [anon_sym_new] = ACTIONS(1444),
- [anon_sym_using] = ACTIONS(81),
- [anon_sym_PLUS] = ACTIONS(21),
- [anon_sym_DASH] = ACTIONS(21),
- [anon_sym_SLASH] = ACTIONS(83),
- [anon_sym_LT] = ACTIONS(85),
- [anon_sym_TILDE] = ACTIONS(33),
- [anon_sym_void] = ACTIONS(21),
- [anon_sym_delete] = ACTIONS(21),
- [anon_sym_PLUS_PLUS] = ACTIONS(87),
- [anon_sym_DASH_DASH] = ACTIONS(87),
- [sym_comment] = ACTIONS(5),
- [anon_sym_BQUOTE] = ACTIONS(89),
- [sym_number] = ACTIONS(91),
- [sym_private_property_identifier] = ACTIONS(93),
- [sym_this] = ACTIONS(95),
- [sym_super] = ACTIONS(95),
- [sym_true] = ACTIONS(95),
- [sym_false] = ACTIONS(95),
- [sym_null] = ACTIONS(95),
- [sym_undefined] = ACTIONS(97),
- [anon_sym_AT] = ACTIONS(99),
- [anon_sym_static] = ACTIONS(1372),
- [anon_sym_readonly] = ACTIONS(1372),
- [anon_sym_get] = ACTIONS(1372),
- [anon_sym_set] = ACTIONS(1372),
- [anon_sym_declare] = ACTIONS(1372),
- [anon_sym_public] = ACTIONS(1372),
- [anon_sym_private] = ACTIONS(1372),
- [anon_sym_protected] = ACTIONS(1372),
- [anon_sym_override] = ACTIONS(1372),
- [anon_sym_module] = ACTIONS(1372),
- [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_object] = ACTIONS(1372),
- [sym_html_comment] = ACTIONS(5),
- },
- [372] = {
- [sym_import] = STATE(3306),
- [sym_statement_block] = STATE(2161),
- [sym_parenthesized_expression] = STATE(1294),
- [sym_expression] = STATE(1778),
- [sym_primary_expression] = STATE(1946),
- [sym_yield_expression] = STATE(2234),
- [sym_object] = STATE(2310),
- [sym_object_pattern] = STATE(5667),
- [sym_array] = STATE(2310),
- [sym_array_pattern] = STATE(5667),
- [sym_glimmer_template] = STATE(2234),
- [sym_jsx_element] = STATE(2234),
- [sym_jsx_opening_element] = STATE(3051),
- [sym_jsx_self_closing_element] = STATE(2234),
- [sym_class] = STATE(2310),
- [sym_function_expression] = STATE(2310),
- [sym_generator_function] = STATE(2310),
- [sym_arrow_function] = STATE(2310),
- [sym__call_signature] = STATE(5809),
- [sym_call_expression] = STATE(2310),
- [sym_new_expression] = STATE(2234),
- [sym_await_expression] = STATE(2234),
- [sym_member_expression] = STATE(1294),
- [sym_subscript_expression] = STATE(1294),
- [sym_assignment_expression] = STATE(2234),
- [sym__augmented_assignment_lhs] = STATE(2875),
- [sym_augmented_assignment_expression] = STATE(2234),
- [sym__destructuring_pattern] = STATE(5667),
- [sym_ternary_expression] = STATE(2234),
- [sym_binary_expression] = STATE(2234),
- [sym_unary_expression] = STATE(2234),
- [sym_update_expression] = STATE(2234),
- [sym_string] = STATE(2310),
- [sym_template_string] = STATE(2310),
- [sym_regex] = STATE(2310),
- [sym_meta_property] = STATE(2310),
- [sym_decorator] = STATE(1244),
- [sym_formal_parameters] = STATE(3742),
- [sym_non_null_expression] = STATE(1294),
- [sym_as_expression] = STATE(2234),
- [sym_satisfies_expression] = STATE(2234),
- [sym_instantiation_expression] = STATE(2234),
- [sym_internal_module] = STATE(2234),
- [sym_type_parameters] = STATE(5349),
- [aux_sym_export_statement_repeat1] = STATE(4499),
- [sym_identifier] = ACTIONS(1440),
- [anon_sym_export] = ACTIONS(1372),
- [anon_sym_type] = ACTIONS(1372),
- [anon_sym_namespace] = ACTIONS(1374),
- [anon_sym_LBRACE] = ACTIONS(2055),
- [anon_sym_typeof] = ACTIONS(21),
- [anon_sym_import] = ACTIONS(133),
- [anon_sym_let] = ACTIONS(1372),
- [anon_sym_BANG] = ACTIONS(33),
- [anon_sym_LPAREN] = ACTIONS(41),
- [anon_sym_await] = ACTIONS(43),
- [anon_sym_yield] = ACTIONS(63),
- [anon_sym_LBRACK] = ACTIONS(65),
- [sym_glimmer_opening_tag] = ACTIONS(67),
- [anon_sym_DQUOTE] = ACTIONS(69),
- [anon_sym_SQUOTE] = ACTIONS(71),
- [anon_sym_class] = ACTIONS(709),
- [anon_sym_async] = ACTIONS(1378),
- [anon_sym_function] = ACTIONS(713),
- [anon_sym_new] = ACTIONS(1444),
- [anon_sym_using] = ACTIONS(81),
- [anon_sym_PLUS] = ACTIONS(21),
- [anon_sym_DASH] = ACTIONS(21),
- [anon_sym_SLASH] = ACTIONS(83),
- [anon_sym_LT] = ACTIONS(85),
- [anon_sym_TILDE] = ACTIONS(33),
- [anon_sym_void] = ACTIONS(21),
- [anon_sym_delete] = ACTIONS(21),
- [anon_sym_PLUS_PLUS] = ACTIONS(87),
- [anon_sym_DASH_DASH] = ACTIONS(87),
- [sym_comment] = ACTIONS(5),
- [anon_sym_BQUOTE] = ACTIONS(89),
- [sym_number] = ACTIONS(91),
- [sym_private_property_identifier] = ACTIONS(93),
- [sym_this] = ACTIONS(95),
- [sym_super] = ACTIONS(95),
- [sym_true] = ACTIONS(95),
- [sym_false] = ACTIONS(95),
- [sym_null] = ACTIONS(95),
- [sym_undefined] = ACTIONS(97),
- [anon_sym_AT] = ACTIONS(99),
- [anon_sym_static] = ACTIONS(1372),
- [anon_sym_readonly] = ACTIONS(1372),
- [anon_sym_get] = ACTIONS(1372),
- [anon_sym_set] = ACTIONS(1372),
- [anon_sym_declare] = ACTIONS(1372),
- [anon_sym_public] = ACTIONS(1372),
- [anon_sym_private] = ACTIONS(1372),
- [anon_sym_protected] = ACTIONS(1372),
- [anon_sym_override] = ACTIONS(1372),
- [anon_sym_module] = ACTIONS(1372),
- [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_object] = ACTIONS(1372),
- [sym_html_comment] = ACTIONS(5),
- },
- [373] = {
- [sym_import] = STATE(3306),
- [sym_statement_block] = STATE(2167),
- [sym_parenthesized_expression] = STATE(1294),
- [sym_expression] = STATE(1695),
- [sym_primary_expression] = STATE(1946),
- [sym_yield_expression] = STATE(2234),
- [sym_object] = STATE(2310),
- [sym_object_pattern] = STATE(5667),
- [sym_array] = STATE(2310),
- [sym_array_pattern] = STATE(5667),
- [sym_glimmer_template] = STATE(2234),
- [sym_jsx_element] = STATE(2234),
- [sym_jsx_opening_element] = STATE(3051),
- [sym_jsx_self_closing_element] = STATE(2234),
- [sym_class] = STATE(2310),
- [sym_function_expression] = STATE(2310),
- [sym_generator_function] = STATE(2310),
- [sym_arrow_function] = STATE(2310),
- [sym__call_signature] = STATE(5809),
- [sym_call_expression] = STATE(2310),
- [sym_new_expression] = STATE(2234),
- [sym_await_expression] = STATE(2234),
- [sym_member_expression] = STATE(1294),
- [sym_subscript_expression] = STATE(1294),
- [sym_assignment_expression] = STATE(2234),
- [sym__augmented_assignment_lhs] = STATE(2875),
- [sym_augmented_assignment_expression] = STATE(2234),
- [sym__destructuring_pattern] = STATE(5667),
- [sym_ternary_expression] = STATE(2234),
- [sym_binary_expression] = STATE(2234),
- [sym_unary_expression] = STATE(2234),
- [sym_update_expression] = STATE(2234),
- [sym_string] = STATE(2310),
- [sym_template_string] = STATE(2310),
- [sym_regex] = STATE(2310),
- [sym_meta_property] = STATE(2310),
- [sym_decorator] = STATE(1244),
- [sym_formal_parameters] = STATE(3742),
- [sym_non_null_expression] = STATE(1294),
- [sym_as_expression] = STATE(2234),
- [sym_satisfies_expression] = STATE(2234),
- [sym_instantiation_expression] = STATE(2234),
- [sym_internal_module] = STATE(2234),
- [sym_type_parameters] = STATE(5349),
- [aux_sym_export_statement_repeat1] = STATE(4499),
- [sym_identifier] = ACTIONS(1440),
- [anon_sym_export] = ACTIONS(1372),
- [anon_sym_type] = ACTIONS(1372),
- [anon_sym_namespace] = ACTIONS(1374),
- [anon_sym_LBRACE] = ACTIONS(2055),
- [anon_sym_typeof] = ACTIONS(21),
- [anon_sym_import] = ACTIONS(133),
- [anon_sym_let] = ACTIONS(1372),
- [anon_sym_BANG] = ACTIONS(33),
- [anon_sym_LPAREN] = ACTIONS(41),
- [anon_sym_await] = ACTIONS(43),
- [anon_sym_yield] = ACTIONS(63),
- [anon_sym_LBRACK] = ACTIONS(65),
- [sym_glimmer_opening_tag] = ACTIONS(67),
- [anon_sym_DQUOTE] = ACTIONS(69),
- [anon_sym_SQUOTE] = ACTIONS(71),
- [anon_sym_class] = ACTIONS(709),
- [anon_sym_async] = ACTIONS(1378),
- [anon_sym_function] = ACTIONS(713),
- [anon_sym_new] = ACTIONS(1444),
- [anon_sym_using] = ACTIONS(81),
- [anon_sym_PLUS] = ACTIONS(21),
- [anon_sym_DASH] = ACTIONS(21),
- [anon_sym_SLASH] = ACTIONS(83),
- [anon_sym_LT] = ACTIONS(85),
- [anon_sym_TILDE] = ACTIONS(33),
- [anon_sym_void] = ACTIONS(21),
- [anon_sym_delete] = ACTIONS(21),
- [anon_sym_PLUS_PLUS] = ACTIONS(87),
- [anon_sym_DASH_DASH] = ACTIONS(87),
- [sym_comment] = ACTIONS(5),
- [anon_sym_BQUOTE] = ACTIONS(89),
- [sym_number] = ACTIONS(91),
- [sym_private_property_identifier] = ACTIONS(93),
- [sym_this] = ACTIONS(95),
- [sym_super] = ACTIONS(95),
- [sym_true] = ACTIONS(95),
- [sym_false] = ACTIONS(95),
- [sym_null] = ACTIONS(95),
- [sym_undefined] = ACTIONS(97),
- [anon_sym_AT] = ACTIONS(99),
- [anon_sym_static] = ACTIONS(1372),
- [anon_sym_readonly] = ACTIONS(1372),
- [anon_sym_get] = ACTIONS(1372),
- [anon_sym_set] = ACTIONS(1372),
- [anon_sym_declare] = ACTIONS(1372),
- [anon_sym_public] = ACTIONS(1372),
- [anon_sym_private] = ACTIONS(1372),
- [anon_sym_protected] = ACTIONS(1372),
- [anon_sym_override] = ACTIONS(1372),
- [anon_sym_module] = ACTIONS(1372),
- [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_object] = ACTIONS(1372),
- [sym_html_comment] = ACTIONS(5),
- },
- [374] = {
- [sym_import] = STATE(3334),
- [sym_parenthesized_expression] = STATE(1251),
- [sym_expression] = STATE(1845),
- [sym_primary_expression] = STATE(1468),
- [sym_yield_expression] = STATE(1634),
- [sym_object] = STATE(1650),
- [sym_object_pattern] = STATE(5633),
- [sym_array] = STATE(1650),
- [sym_array_pattern] = STATE(5633),
- [sym_glimmer_template] = STATE(1634),
- [sym_jsx_element] = STATE(1634),
- [sym_jsx_opening_element] = STATE(3026),
- [sym_jsx_self_closing_element] = STATE(1634),
- [sym_class] = STATE(1650),
- [sym_function_expression] = STATE(1650),
- [sym_generator_function] = STATE(1650),
- [sym_arrow_function] = STATE(1650),
- [sym__call_signature] = STATE(5828),
- [sym_call_expression] = STATE(1650),
- [sym_new_expression] = STATE(1634),
- [sym_await_expression] = STATE(1634),
- [sym_member_expression] = STATE(1251),
- [sym_subscript_expression] = STATE(1251),
- [sym_assignment_expression] = STATE(1634),
- [sym__augmented_assignment_lhs] = STATE(2900),
- [sym_augmented_assignment_expression] = STATE(1634),
- [sym__destructuring_pattern] = STATE(5633),
- [sym_ternary_expression] = STATE(1634),
- [sym_binary_expression] = STATE(1634),
- [sym_unary_expression] = STATE(1634),
- [sym_update_expression] = STATE(1634),
- [sym_sequence_expression] = STATE(5560),
- [sym_string] = STATE(1650),
- [sym_template_string] = STATE(1650),
- [sym_regex] = STATE(1650),
- [sym_meta_property] = STATE(1650),
- [sym_decorator] = STATE(1244),
- [sym_formal_parameters] = STATE(3742),
- [sym_non_null_expression] = STATE(1251),
- [sym_as_expression] = STATE(1634),
- [sym_satisfies_expression] = STATE(1634),
- [sym_instantiation_expression] = STATE(1634),
- [sym_internal_module] = STATE(1634),
- [sym_type_parameters] = STATE(5349),
- [aux_sym_export_statement_repeat1] = STATE(4458),
- [sym_identifier] = ACTIONS(1428),
- [anon_sym_export] = ACTIONS(1044),
- [anon_sym_type] = ACTIONS(1044),
- [anon_sym_namespace] = ACTIONS(1046),
- [anon_sym_LBRACE] = ACTIONS(813),
- [anon_sym_typeof] = ACTIONS(650),
- [anon_sym_import] = ACTIONS(133),
- [anon_sym_let] = ACTIONS(1044),
- [anon_sym_BANG] = ACTIONS(622),
- [anon_sym_LPAREN] = ACTIONS(815),
- [anon_sym_await] = ACTIONS(624),
- [anon_sym_yield] = ACTIONS(626),
- [anon_sym_LBRACK] = ACTIONS(817),
- [sym_glimmer_opening_tag] = ACTIONS(148),
- [anon_sym_DQUOTE] = ACTIONS(150),
- [anon_sym_SQUOTE] = ACTIONS(152),
- [anon_sym_class] = ACTIONS(154),
- [anon_sym_async] = ACTIONS(1052),
- [anon_sym_function] = ACTIONS(158),
- [anon_sym_new] = ACTIONS(1436),
- [anon_sym_using] = ACTIONS(636),
- [anon_sym_PLUS] = ACTIONS(650),
- [anon_sym_DASH] = ACTIONS(650),
- [anon_sym_SLASH] = ACTIONS(646),
- [anon_sym_LT] = ACTIONS(181),
- [anon_sym_TILDE] = ACTIONS(622),
- [anon_sym_void] = ACTIONS(650),
- [anon_sym_delete] = ACTIONS(650),
- [anon_sym_PLUS_PLUS] = ACTIONS(652),
- [anon_sym_DASH_DASH] = ACTIONS(652),
- [sym_comment] = ACTIONS(5),
- [anon_sym_BQUOTE] = ACTIONS(825),
- [sym_number] = ACTIONS(787),
- [sym_private_property_identifier] = ACTIONS(654),
- [sym_this] = ACTIONS(200),
- [sym_super] = ACTIONS(200),
- [sym_true] = ACTIONS(200),
- [sym_false] = ACTIONS(200),
- [sym_null] = ACTIONS(200),
- [sym_undefined] = ACTIONS(1438),
- [anon_sym_AT] = ACTIONS(99),
- [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_override] = 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_object] = ACTIONS(1044),
- [sym_html_comment] = ACTIONS(5),
- },
- [375] = {
- [sym_import] = STATE(3334),
- [sym_parenthesized_expression] = STATE(1251),
- [sym_expression] = STATE(1525),
- [sym_primary_expression] = STATE(1468),
- [sym_yield_expression] = STATE(1634),
- [sym_object] = STATE(1650),
- [sym_object_pattern] = STATE(5633),
- [sym_array] = STATE(1650),
- [sym_array_pattern] = STATE(5633),
- [sym_glimmer_template] = STATE(1634),
- [sym_jsx_element] = STATE(1634),
- [sym_jsx_opening_element] = STATE(3026),
- [sym_jsx_self_closing_element] = STATE(1634),
- [sym_class] = STATE(1650),
- [sym_function_expression] = STATE(1650),
- [sym_generator_function] = STATE(1650),
- [sym_arrow_function] = STATE(1650),
- [sym__call_signature] = STATE(5828),
- [sym_call_expression] = STATE(1650),
- [sym_new_expression] = STATE(1634),
- [sym_await_expression] = STATE(1634),
- [sym_member_expression] = STATE(1251),
- [sym_subscript_expression] = STATE(1251),
- [sym_assignment_expression] = STATE(1634),
- [sym__augmented_assignment_lhs] = STATE(2900),
- [sym_augmented_assignment_expression] = STATE(1634),
- [sym__destructuring_pattern] = STATE(5633),
- [sym_ternary_expression] = STATE(1634),
- [sym_binary_expression] = STATE(1634),
- [sym_unary_expression] = STATE(1634),
- [sym_update_expression] = STATE(1634),
- [sym_string] = STATE(1650),
- [sym_template_string] = STATE(1650),
- [sym_regex] = STATE(1650),
- [sym_meta_property] = STATE(1650),
- [sym_decorator] = STATE(1244),
- [sym_formal_parameters] = STATE(3742),
- [sym_non_null_expression] = STATE(1251),
- [sym_as_expression] = STATE(1634),
- [sym_satisfies_expression] = STATE(1634),
- [sym_instantiation_expression] = STATE(1634),
- [sym_internal_module] = STATE(1634),
- [sym_type_parameters] = STATE(5349),
- [aux_sym_export_statement_repeat1] = STATE(4458),
- [sym_identifier] = ACTIONS(1428),
- [anon_sym_export] = ACTIONS(1044),
- [anon_sym_type] = ACTIONS(1044),
- [anon_sym_namespace] = ACTIONS(1046),
- [anon_sym_LBRACE] = ACTIONS(813),
- [anon_sym_typeof] = ACTIONS(650),
- [anon_sym_import] = ACTIONS(133),
- [anon_sym_let] = ACTIONS(1044),
- [anon_sym_BANG] = ACTIONS(622),
- [anon_sym_LPAREN] = ACTIONS(815),
- [anon_sym_await] = ACTIONS(624),
- [anon_sym_yield] = ACTIONS(626),
- [anon_sym_LBRACK] = ACTIONS(817),
- [sym_glimmer_opening_tag] = ACTIONS(148),
- [anon_sym_DQUOTE] = ACTIONS(150),
- [anon_sym_SQUOTE] = ACTIONS(152),
- [anon_sym_class] = ACTIONS(154),
- [anon_sym_async] = ACTIONS(1052),
- [anon_sym_function] = ACTIONS(158),
- [anon_sym_new] = ACTIONS(1436),
- [anon_sym_using] = ACTIONS(636),
- [anon_sym_PLUS] = ACTIONS(650),
- [anon_sym_DASH] = ACTIONS(650),
- [anon_sym_SLASH] = ACTIONS(646),
- [anon_sym_LT] = ACTIONS(181),
- [anon_sym_TILDE] = ACTIONS(622),
- [anon_sym_void] = ACTIONS(650),
- [anon_sym_delete] = ACTIONS(650),
- [anon_sym_PLUS_PLUS] = ACTIONS(652),
- [anon_sym_DASH_DASH] = ACTIONS(652),
- [sym_comment] = ACTIONS(5),
- [anon_sym_BQUOTE] = ACTIONS(825),
- [sym_number] = ACTIONS(787),
- [sym_private_property_identifier] = ACTIONS(654),
- [sym_this] = ACTIONS(200),
- [sym_super] = ACTIONS(200),
- [sym_true] = ACTIONS(200),
- [sym_false] = ACTIONS(200),
- [sym_null] = ACTIONS(200),
- [sym_undefined] = ACTIONS(1438),
- [anon_sym_AT] = ACTIONS(99),
- [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_override] = 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_object] = ACTIONS(1044),
- [sym_html_comment] = ACTIONS(5),
- },
- [376] = {
- [sym_import] = STATE(3334),
- [sym_parenthesized_expression] = STATE(1251),
- [sym_expression] = STATE(1488),
- [sym_primary_expression] = STATE(1468),
- [sym_yield_expression] = STATE(1634),
- [sym_object] = STATE(1650),
- [sym_object_pattern] = STATE(5633),
- [sym_array] = STATE(1650),
- [sym_array_pattern] = STATE(5633),
- [sym_glimmer_template] = STATE(1634),
- [sym_jsx_element] = STATE(1634),
- [sym_jsx_opening_element] = STATE(3026),
- [sym_jsx_self_closing_element] = STATE(1634),
- [sym_class] = STATE(1650),
- [sym_function_expression] = STATE(1650),
- [sym_generator_function] = STATE(1650),
- [sym_arrow_function] = STATE(1650),
- [sym__call_signature] = STATE(5828),
- [sym_call_expression] = STATE(1650),
- [sym_new_expression] = STATE(1634),
- [sym_await_expression] = STATE(1634),
- [sym_member_expression] = STATE(1251),
- [sym_subscript_expression] = STATE(1251),
- [sym_assignment_expression] = STATE(1634),
- [sym__augmented_assignment_lhs] = STATE(2900),
- [sym_augmented_assignment_expression] = STATE(1634),
- [sym__destructuring_pattern] = STATE(5633),
- [sym_ternary_expression] = STATE(1634),
- [sym_binary_expression] = STATE(1634),
- [sym_unary_expression] = STATE(1634),
- [sym_update_expression] = STATE(1634),
- [sym_string] = STATE(1650),
- [sym_template_string] = STATE(1650),
- [sym_regex] = STATE(1650),
- [sym_meta_property] = STATE(1650),
- [sym_decorator] = STATE(1244),
- [sym_formal_parameters] = STATE(3742),
- [sym_non_null_expression] = STATE(1251),
- [sym_as_expression] = STATE(1634),
- [sym_satisfies_expression] = STATE(1634),
- [sym_instantiation_expression] = STATE(1634),
- [sym_internal_module] = STATE(1634),
- [sym_type_parameters] = STATE(5349),
- [aux_sym_export_statement_repeat1] = STATE(4458),
- [sym_identifier] = ACTIONS(1428),
- [anon_sym_export] = ACTIONS(1044),
- [anon_sym_type] = ACTIONS(1044),
- [anon_sym_namespace] = ACTIONS(1046),
- [anon_sym_LBRACE] = ACTIONS(813),
- [anon_sym_typeof] = ACTIONS(650),
- [anon_sym_import] = ACTIONS(133),
- [anon_sym_let] = ACTIONS(1044),
- [anon_sym_BANG] = ACTIONS(622),
- [anon_sym_LPAREN] = ACTIONS(815),
- [anon_sym_await] = ACTIONS(624),
- [anon_sym_yield] = ACTIONS(626),
- [anon_sym_LBRACK] = ACTIONS(817),
- [sym_glimmer_opening_tag] = ACTIONS(148),
- [anon_sym_DQUOTE] = ACTIONS(150),
- [anon_sym_SQUOTE] = ACTIONS(152),
- [anon_sym_class] = ACTIONS(154),
- [anon_sym_async] = ACTIONS(1052),
- [anon_sym_function] = ACTIONS(158),
- [anon_sym_new] = ACTIONS(1436),
- [anon_sym_using] = ACTIONS(636),
- [anon_sym_PLUS] = ACTIONS(650),
- [anon_sym_DASH] = ACTIONS(650),
- [anon_sym_SLASH] = ACTIONS(646),
- [anon_sym_LT] = ACTIONS(181),
- [anon_sym_TILDE] = ACTIONS(622),
- [anon_sym_void] = ACTIONS(650),
- [anon_sym_delete] = ACTIONS(650),
- [anon_sym_PLUS_PLUS] = ACTIONS(652),
- [anon_sym_DASH_DASH] = ACTIONS(652),
- [sym_comment] = ACTIONS(5),
- [anon_sym_BQUOTE] = ACTIONS(825),
- [sym_number] = ACTIONS(787),
- [sym_private_property_identifier] = ACTIONS(654),
- [sym_this] = ACTIONS(200),
- [sym_super] = ACTIONS(200),
- [sym_true] = ACTIONS(200),
- [sym_false] = ACTIONS(200),
- [sym_null] = ACTIONS(200),
- [sym_undefined] = ACTIONS(1438),
- [anon_sym_AT] = ACTIONS(99),
- [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_override] = 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_object] = ACTIONS(1044),
- [sym_html_comment] = ACTIONS(5),
- },
- [377] = {
- [sym_import] = STATE(3334),
- [sym_parenthesized_expression] = STATE(1251),
- [sym_expression] = STATE(1479),
- [sym_primary_expression] = STATE(1468),
- [sym_yield_expression] = STATE(1634),
- [sym_object] = STATE(1650),
- [sym_object_pattern] = STATE(5633),
- [sym_array] = STATE(1650),
- [sym_array_pattern] = STATE(5633),
- [sym_glimmer_template] = STATE(1634),
- [sym_jsx_element] = STATE(1634),
- [sym_jsx_opening_element] = STATE(3026),
- [sym_jsx_self_closing_element] = STATE(1634),
- [sym_class] = STATE(1650),
- [sym_function_expression] = STATE(1650),
- [sym_generator_function] = STATE(1650),
- [sym_arrow_function] = STATE(1650),
- [sym__call_signature] = STATE(5828),
- [sym_call_expression] = STATE(1650),
- [sym_new_expression] = STATE(1634),
- [sym_await_expression] = STATE(1634),
- [sym_member_expression] = STATE(1251),
- [sym_subscript_expression] = STATE(1251),
- [sym_assignment_expression] = STATE(1634),
- [sym__augmented_assignment_lhs] = STATE(2900),
- [sym_augmented_assignment_expression] = STATE(1634),
- [sym__destructuring_pattern] = STATE(5633),
- [sym_ternary_expression] = STATE(1634),
- [sym_binary_expression] = STATE(1634),
- [sym_unary_expression] = STATE(1634),
- [sym_update_expression] = STATE(1634),
- [sym_string] = STATE(1650),
- [sym_template_string] = STATE(1650),
- [sym_regex] = STATE(1650),
- [sym_meta_property] = STATE(1650),
- [sym_decorator] = STATE(1244),
- [sym_formal_parameters] = STATE(3742),
- [sym_non_null_expression] = STATE(1251),
- [sym_as_expression] = STATE(1634),
- [sym_satisfies_expression] = STATE(1634),
- [sym_instantiation_expression] = STATE(1634),
- [sym_internal_module] = STATE(1634),
- [sym_type_parameters] = STATE(5349),
- [aux_sym_export_statement_repeat1] = STATE(4458),
- [sym_identifier] = ACTIONS(1428),
- [anon_sym_export] = ACTIONS(1044),
- [anon_sym_type] = ACTIONS(1044),
- [anon_sym_namespace] = ACTIONS(1046),
- [anon_sym_LBRACE] = ACTIONS(813),
- [anon_sym_typeof] = ACTIONS(650),
- [anon_sym_import] = ACTIONS(133),
- [anon_sym_let] = ACTIONS(1044),
- [anon_sym_BANG] = ACTIONS(622),
- [anon_sym_LPAREN] = ACTIONS(815),
- [anon_sym_await] = ACTIONS(624),
- [anon_sym_yield] = ACTIONS(626),
- [anon_sym_LBRACK] = ACTIONS(817),
- [sym_glimmer_opening_tag] = ACTIONS(148),
- [anon_sym_DQUOTE] = ACTIONS(150),
- [anon_sym_SQUOTE] = ACTIONS(152),
- [anon_sym_class] = ACTIONS(154),
- [anon_sym_async] = ACTIONS(1052),
- [anon_sym_function] = ACTIONS(158),
- [anon_sym_new] = ACTIONS(1436),
- [anon_sym_using] = ACTIONS(636),
- [anon_sym_PLUS] = ACTIONS(650),
- [anon_sym_DASH] = ACTIONS(650),
- [anon_sym_SLASH] = ACTIONS(646),
- [anon_sym_LT] = ACTIONS(181),
- [anon_sym_TILDE] = ACTIONS(622),
- [anon_sym_void] = ACTIONS(650),
- [anon_sym_delete] = ACTIONS(650),
- [anon_sym_PLUS_PLUS] = ACTIONS(652),
- [anon_sym_DASH_DASH] = ACTIONS(652),
- [sym_comment] = ACTIONS(5),
- [anon_sym_BQUOTE] = ACTIONS(825),
- [sym_number] = ACTIONS(2081),
- [sym_private_property_identifier] = ACTIONS(654),
- [sym_this] = ACTIONS(200),
- [sym_super] = ACTIONS(200),
- [sym_true] = ACTIONS(200),
- [sym_false] = ACTIONS(200),
- [sym_null] = ACTIONS(200),
- [sym_undefined] = ACTIONS(1438),
- [anon_sym_AT] = ACTIONS(99),
- [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_override] = 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_object] = ACTIONS(1044),
- [sym_html_comment] = ACTIONS(5),
- },
- [378] = {
- [sym_import] = STATE(3306),
- [sym_parenthesized_expression] = STATE(1294),
- [sym_expression] = STATE(1790),
- [sym_primary_expression] = STATE(1946),
- [sym_yield_expression] = STATE(2234),
- [sym_object] = STATE(2310),
- [sym_object_pattern] = STATE(5667),
- [sym_array] = STATE(2310),
- [sym_array_pattern] = STATE(5667),
- [sym_glimmer_template] = STATE(2234),
- [sym_jsx_element] = STATE(2234),
- [sym_jsx_opening_element] = STATE(3051),
- [sym_jsx_self_closing_element] = STATE(2234),
- [sym_class] = STATE(2310),
- [sym_function_expression] = STATE(2310),
- [sym_generator_function] = STATE(2310),
- [sym_arrow_function] = STATE(2310),
- [sym__call_signature] = STATE(5809),
- [sym_call_expression] = STATE(2310),
- [sym_new_expression] = STATE(2234),
- [sym_await_expression] = STATE(2234),
- [sym_member_expression] = STATE(1294),
- [sym_subscript_expression] = STATE(1294),
- [sym_assignment_expression] = STATE(2234),
- [sym__augmented_assignment_lhs] = STATE(2875),
- [sym_augmented_assignment_expression] = STATE(2234),
- [sym__destructuring_pattern] = STATE(5667),
- [sym_ternary_expression] = STATE(2234),
- [sym_binary_expression] = STATE(2234),
- [sym_unary_expression] = STATE(2234),
- [sym_update_expression] = STATE(2234),
- [sym_string] = STATE(2310),
- [sym_template_string] = STATE(2310),
- [sym_regex] = STATE(2310),
- [sym_meta_property] = STATE(2310),
- [sym_decorator] = STATE(1244),
- [sym_formal_parameters] = STATE(3742),
- [sym_non_null_expression] = STATE(1294),
- [sym_as_expression] = STATE(2234),
- [sym_satisfies_expression] = STATE(2234),
- [sym_instantiation_expression] = STATE(2234),
- [sym_internal_module] = STATE(2234),
- [sym_type_parameters] = STATE(5349),
- [aux_sym_export_statement_repeat1] = STATE(4499),
- [sym_identifier] = ACTIONS(1440),
- [anon_sym_export] = ACTIONS(1372),
- [anon_sym_type] = ACTIONS(1372),
- [anon_sym_namespace] = ACTIONS(1374),
- [anon_sym_LBRACE] = ACTIONS(700),
- [anon_sym_typeof] = ACTIONS(21),
- [anon_sym_import] = ACTIONS(133),
- [anon_sym_let] = ACTIONS(1372),
- [anon_sym_BANG] = ACTIONS(33),
- [anon_sym_LPAREN] = ACTIONS(41),
- [anon_sym_await] = ACTIONS(43),
- [anon_sym_yield] = ACTIONS(63),
- [anon_sym_LBRACK] = ACTIONS(65),
- [sym_glimmer_opening_tag] = ACTIONS(67),
- [anon_sym_DQUOTE] = ACTIONS(69),
- [anon_sym_SQUOTE] = ACTIONS(71),
- [anon_sym_class] = ACTIONS(709),
- [anon_sym_async] = ACTIONS(1378),
- [anon_sym_function] = ACTIONS(713),
- [anon_sym_new] = ACTIONS(1444),
- [anon_sym_using] = ACTIONS(81),
- [anon_sym_PLUS] = ACTIONS(21),
- [anon_sym_DASH] = ACTIONS(21),
- [anon_sym_SLASH] = ACTIONS(83),
- [anon_sym_LT] = ACTIONS(85),
- [anon_sym_TILDE] = ACTIONS(33),
- [anon_sym_void] = ACTIONS(21),
- [anon_sym_delete] = ACTIONS(21),
- [anon_sym_PLUS_PLUS] = ACTIONS(87),
- [anon_sym_DASH_DASH] = ACTIONS(87),
- [sym_comment] = ACTIONS(5),
- [anon_sym_BQUOTE] = ACTIONS(89),
- [sym_number] = ACTIONS(91),
- [sym_private_property_identifier] = ACTIONS(93),
- [sym_this] = ACTIONS(95),
- [sym_super] = ACTIONS(95),
- [sym_true] = ACTIONS(95),
- [sym_false] = ACTIONS(95),
- [sym_null] = ACTIONS(95),
- [sym_undefined] = ACTIONS(97),
- [anon_sym_AT] = ACTIONS(99),
- [anon_sym_static] = ACTIONS(1372),
- [anon_sym_readonly] = ACTIONS(1372),
- [anon_sym_get] = ACTIONS(1372),
- [anon_sym_set] = ACTIONS(1372),
- [anon_sym_declare] = ACTIONS(1372),
- [anon_sym_public] = ACTIONS(1372),
- [anon_sym_private] = ACTIONS(1372),
- [anon_sym_protected] = ACTIONS(1372),
- [anon_sym_override] = ACTIONS(1372),
- [anon_sym_module] = ACTIONS(1372),
- [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_object] = ACTIONS(1372),
- [sym_html_comment] = ACTIONS(5),
- },
- [379] = {
- [sym_import] = STATE(3306),
- [sym_parenthesized_expression] = STATE(1294),
- [sym_expression] = STATE(1652),
- [sym_primary_expression] = STATE(1946),
- [sym_yield_expression] = STATE(2234),
- [sym_object] = STATE(2310),
- [sym_object_pattern] = STATE(5667),
- [sym_array] = STATE(2310),
- [sym_array_pattern] = STATE(5667),
- [sym_glimmer_template] = STATE(2234),
- [sym_jsx_element] = STATE(2234),
- [sym_jsx_opening_element] = STATE(3051),
- [sym_jsx_self_closing_element] = STATE(2234),
- [sym_class] = STATE(2310),
- [sym_function_expression] = STATE(2310),
- [sym_generator_function] = STATE(2310),
- [sym_arrow_function] = STATE(2310),
- [sym__call_signature] = STATE(5809),
- [sym_call_expression] = STATE(2310),
- [sym_new_expression] = STATE(2234),
- [sym_await_expression] = STATE(2234),
- [sym_member_expression] = STATE(1294),
- [sym_subscript_expression] = STATE(1294),
- [sym_assignment_expression] = STATE(2234),
- [sym__augmented_assignment_lhs] = STATE(2875),
- [sym_augmented_assignment_expression] = STATE(2234),
- [sym__destructuring_pattern] = STATE(5667),
- [sym_ternary_expression] = STATE(2234),
- [sym_binary_expression] = STATE(2234),
- [sym_unary_expression] = STATE(2234),
- [sym_update_expression] = STATE(2234),
- [sym_string] = STATE(2310),
- [sym_template_string] = STATE(2310),
- [sym_regex] = STATE(2310),
- [sym_meta_property] = STATE(2310),
- [sym_decorator] = STATE(1244),
- [sym_formal_parameters] = STATE(3742),
- [sym_non_null_expression] = STATE(1294),
- [sym_as_expression] = STATE(2234),
- [sym_satisfies_expression] = STATE(2234),
- [sym_instantiation_expression] = STATE(2234),
- [sym_internal_module] = STATE(2234),
- [sym_type_parameters] = STATE(5349),
- [aux_sym_export_statement_repeat1] = STATE(4499),
- [sym_identifier] = ACTIONS(1440),
- [anon_sym_export] = ACTIONS(1372),
- [anon_sym_type] = ACTIONS(1372),
- [anon_sym_namespace] = ACTIONS(1374),
- [anon_sym_LBRACE] = ACTIONS(700),
- [anon_sym_typeof] = ACTIONS(21),
- [anon_sym_import] = ACTIONS(133),
- [anon_sym_let] = ACTIONS(1372),
- [anon_sym_BANG] = ACTIONS(33),
- [anon_sym_LPAREN] = ACTIONS(41),
- [anon_sym_await] = ACTIONS(43),
- [anon_sym_yield] = ACTIONS(63),
- [anon_sym_LBRACK] = ACTIONS(65),
- [sym_glimmer_opening_tag] = ACTIONS(67),
- [anon_sym_DQUOTE] = ACTIONS(69),
- [anon_sym_SQUOTE] = ACTIONS(71),
- [anon_sym_class] = ACTIONS(709),
- [anon_sym_async] = ACTIONS(1378),
- [anon_sym_function] = ACTIONS(713),
- [anon_sym_new] = ACTIONS(1444),
- [anon_sym_using] = ACTIONS(81),
- [anon_sym_PLUS] = ACTIONS(21),
- [anon_sym_DASH] = ACTIONS(21),
- [anon_sym_SLASH] = ACTIONS(83),
- [anon_sym_LT] = ACTIONS(85),
- [anon_sym_TILDE] = ACTIONS(33),
- [anon_sym_void] = ACTIONS(21),
- [anon_sym_delete] = ACTIONS(21),
- [anon_sym_PLUS_PLUS] = ACTIONS(87),
- [anon_sym_DASH_DASH] = ACTIONS(87),
- [sym_comment] = ACTIONS(5),
- [anon_sym_BQUOTE] = ACTIONS(89),
- [sym_number] = ACTIONS(91),
- [sym_private_property_identifier] = ACTIONS(93),
- [sym_this] = ACTIONS(95),
- [sym_super] = ACTIONS(95),
- [sym_true] = ACTIONS(95),
- [sym_false] = ACTIONS(95),
- [sym_null] = ACTIONS(95),
- [sym_undefined] = ACTIONS(97),
- [anon_sym_AT] = ACTIONS(99),
- [anon_sym_static] = ACTIONS(1372),
- [anon_sym_readonly] = ACTIONS(1372),
- [anon_sym_get] = ACTIONS(1372),
- [anon_sym_set] = ACTIONS(1372),
- [anon_sym_declare] = ACTIONS(1372),
- [anon_sym_public] = ACTIONS(1372),
- [anon_sym_private] = ACTIONS(1372),
- [anon_sym_protected] = ACTIONS(1372),
- [anon_sym_override] = ACTIONS(1372),
- [anon_sym_module] = ACTIONS(1372),
- [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_object] = ACTIONS(1372),
- [sym_html_comment] = ACTIONS(5),
- },
- [380] = {
- [sym_import] = STATE(3306),
- [sym_parenthesized_expression] = STATE(1338),
- [sym_expression] = STATE(2087),
- [sym_primary_expression] = STATE(1946),
- [sym_yield_expression] = STATE(2234),
- [sym_object] = STATE(2310),
- [sym_object_pattern] = STATE(5571),
- [sym_array] = STATE(2310),
- [sym_array_pattern] = STATE(5571),
- [sym_glimmer_template] = STATE(2234),
- [sym_jsx_element] = STATE(2234),
- [sym_jsx_opening_element] = STATE(3051),
- [sym_jsx_self_closing_element] = STATE(2234),
- [sym_class] = STATE(2310),
- [sym_function_expression] = STATE(2310),
- [sym_generator_function] = STATE(2310),
- [sym_arrow_function] = STATE(2310),
- [sym__call_signature] = STATE(5569),
- [sym_call_expression] = STATE(2310),
- [sym_new_expression] = STATE(2234),
- [sym_await_expression] = STATE(2234),
- [sym_member_expression] = STATE(1338),
- [sym_subscript_expression] = STATE(1338),
- [sym_assignment_expression] = STATE(2234),
- [sym__augmented_assignment_lhs] = STATE(2899),
- [sym_augmented_assignment_expression] = STATE(2234),
- [sym__destructuring_pattern] = STATE(5571),
- [sym_ternary_expression] = STATE(2234),
- [sym_binary_expression] = STATE(2234),
- [sym_unary_expression] = STATE(2234),
- [sym_update_expression] = STATE(2234),
- [sym_string] = STATE(2310),
- [sym_template_string] = STATE(2310),
- [sym_regex] = STATE(2310),
- [sym_meta_property] = STATE(2310),
- [sym_decorator] = STATE(1244),
- [sym_formal_parameters] = STATE(3742),
- [sym_non_null_expression] = STATE(1338),
- [sym_as_expression] = STATE(2234),
- [sym_satisfies_expression] = STATE(2234),
- [sym_instantiation_expression] = STATE(2234),
- [sym_internal_module] = STATE(2234),
- [sym_type_parameters] = STATE(5349),
- [aux_sym_export_statement_repeat1] = STATE(4499),
- [sym_identifier] = ACTIONS(1454),
- [anon_sym_export] = ACTIONS(1152),
- [anon_sym_type] = ACTIONS(1152),
- [anon_sym_namespace] = ACTIONS(1154),
- [anon_sym_LBRACE] = ACTIONS(700),
- [anon_sym_typeof] = ACTIONS(1180),
- [anon_sym_import] = ACTIONS(133),
- [anon_sym_let] = ACTIONS(1152),
- [anon_sym_BANG] = ACTIONS(1160),
- [anon_sym_LPAREN] = ACTIONS(41),
- [anon_sym_await] = ACTIONS(1164),
- [anon_sym_yield] = ACTIONS(1166),
- [anon_sym_LBRACK] = ACTIONS(65),
- [sym_glimmer_opening_tag] = ACTIONS(67),
- [anon_sym_DQUOTE] = ACTIONS(69),
- [anon_sym_SQUOTE] = ACTIONS(71),
- [anon_sym_class] = ACTIONS(709),
- [anon_sym_async] = ACTIONS(1170),
- [anon_sym_function] = ACTIONS(713),
- [anon_sym_new] = ACTIONS(1458),
- [anon_sym_using] = ACTIONS(1174),
- [anon_sym_PLUS] = ACTIONS(1180),
- [anon_sym_DASH] = ACTIONS(1180),
- [anon_sym_SLASH] = ACTIONS(83),
- [anon_sym_LT] = ACTIONS(85),
- [anon_sym_TILDE] = ACTIONS(1160),
- [anon_sym_void] = ACTIONS(1180),
- [anon_sym_delete] = ACTIONS(1180),
- [anon_sym_PLUS_PLUS] = ACTIONS(1182),
- [anon_sym_DASH_DASH] = ACTIONS(1182),
- [sym_comment] = ACTIONS(5),
- [anon_sym_BQUOTE] = ACTIONS(89),
- [sym_number] = ACTIONS(91),
- [sym_private_property_identifier] = ACTIONS(1188),
- [sym_this] = ACTIONS(95),
- [sym_super] = ACTIONS(95),
- [sym_true] = ACTIONS(95),
- [sym_false] = ACTIONS(95),
- [sym_null] = ACTIONS(95),
- [sym_undefined] = ACTIONS(1460),
- [anon_sym_AT] = ACTIONS(99),
- [anon_sym_static] = ACTIONS(1152),
- [anon_sym_readonly] = ACTIONS(1152),
- [anon_sym_get] = ACTIONS(1152),
- [anon_sym_set] = ACTIONS(1152),
- [anon_sym_declare] = ACTIONS(1152),
- [anon_sym_public] = ACTIONS(1152),
- [anon_sym_private] = ACTIONS(1152),
- [anon_sym_protected] = ACTIONS(1152),
- [anon_sym_override] = ACTIONS(1152),
- [anon_sym_module] = ACTIONS(1152),
- [anon_sym_any] = ACTIONS(1152),
- [anon_sym_number] = ACTIONS(1152),
- [anon_sym_boolean] = ACTIONS(1152),
- [anon_sym_string] = ACTIONS(1152),
- [anon_sym_symbol] = ACTIONS(1152),
- [anon_sym_object] = ACTIONS(1152),
- [sym_html_comment] = ACTIONS(5),
- },
- [381] = {
- [sym_import] = STATE(3334),
- [sym_parenthesized_expression] = STATE(1369),
- [sym_expression] = STATE(2199),
- [sym_primary_expression] = STATE(1468),
- [sym_yield_expression] = STATE(1634),
- [sym_object] = STATE(1650),
- [sym_object_pattern] = STATE(5861),
- [sym_array] = STATE(1650),
- [sym_array_pattern] = STATE(5861),
- [sym_glimmer_template] = STATE(1634),
- [sym_jsx_element] = STATE(1634),
- [sym_jsx_opening_element] = STATE(3026),
- [sym_jsx_self_closing_element] = STATE(1634),
- [sym_class] = STATE(1650),
- [sym_function_expression] = STATE(1650),
- [sym_generator_function] = STATE(1650),
- [sym_arrow_function] = STATE(1650),
- [sym__call_signature] = STATE(5765),
- [sym_call_expression] = STATE(1650),
- [sym_new_expression] = STATE(1634),
- [sym_await_expression] = STATE(1634),
- [sym_member_expression] = STATE(1369),
- [sym_subscript_expression] = STATE(1369),
- [sym_assignment_expression] = STATE(1634),
- [sym__augmented_assignment_lhs] = STATE(2891),
- [sym_augmented_assignment_expression] = STATE(1634),
- [sym__destructuring_pattern] = STATE(5861),
- [sym_ternary_expression] = STATE(1634),
- [sym_binary_expression] = STATE(1634),
- [sym_unary_expression] = STATE(1634),
- [sym_update_expression] = STATE(1634),
- [sym_string] = STATE(1650),
- [sym_template_string] = STATE(1650),
- [sym_regex] = STATE(1650),
- [sym_meta_property] = STATE(1650),
- [sym_decorator] = STATE(1244),
- [sym_formal_parameters] = STATE(3742),
- [sym_non_null_expression] = STATE(1369),
- [sym_as_expression] = STATE(1634),
- [sym_satisfies_expression] = STATE(1634),
- [sym_instantiation_expression] = STATE(1634),
- [sym_internal_module] = STATE(1634),
- [sym_type_parameters] = STATE(5349),
- [aux_sym_export_statement_repeat1] = STATE(4458),
- [sym_identifier] = ACTIONS(1478),
- [anon_sym_export] = ACTIONS(1114),
- [anon_sym_type] = ACTIONS(1114),
- [anon_sym_namespace] = ACTIONS(1116),
- [anon_sym_LBRACE] = ACTIONS(813),
- [anon_sym_typeof] = ACTIONS(1138),
- [anon_sym_import] = ACTIONS(133),
- [anon_sym_let] = ACTIONS(1114),
- [anon_sym_BANG] = ACTIONS(1122),
- [anon_sym_LPAREN] = ACTIONS(815),
- [anon_sym_await] = ACTIONS(1124),
- [anon_sym_yield] = ACTIONS(1126),
- [anon_sym_LBRACK] = ACTIONS(817),
- [sym_glimmer_opening_tag] = ACTIONS(148),
- [anon_sym_DQUOTE] = ACTIONS(150),
- [anon_sym_SQUOTE] = ACTIONS(152),
- [anon_sym_class] = ACTIONS(154),
- [anon_sym_async] = ACTIONS(1128),
- [anon_sym_function] = ACTIONS(158),
- [anon_sym_new] = ACTIONS(1482),
- [anon_sym_using] = ACTIONS(1132),
- [anon_sym_PLUS] = ACTIONS(1138),
- [anon_sym_DASH] = ACTIONS(1138),
- [anon_sym_SLASH] = ACTIONS(646),
- [anon_sym_LT] = ACTIONS(181),
- [anon_sym_TILDE] = ACTIONS(1122),
- [anon_sym_void] = ACTIONS(1138),
- [anon_sym_delete] = ACTIONS(1138),
- [anon_sym_PLUS_PLUS] = ACTIONS(1140),
- [anon_sym_DASH_DASH] = ACTIONS(1140),
- [sym_comment] = ACTIONS(5),
- [anon_sym_BQUOTE] = ACTIONS(825),
- [sym_number] = ACTIONS(787),
- [sym_private_property_identifier] = ACTIONS(1142),
- [sym_this] = ACTIONS(200),
- [sym_super] = ACTIONS(200),
- [sym_true] = ACTIONS(200),
- [sym_false] = ACTIONS(200),
- [sym_null] = ACTIONS(200),
- [sym_undefined] = ACTIONS(1484),
- [anon_sym_AT] = ACTIONS(99),
- [anon_sym_static] = ACTIONS(1114),
- [anon_sym_readonly] = ACTIONS(1114),
- [anon_sym_get] = ACTIONS(1114),
- [anon_sym_set] = ACTIONS(1114),
- [anon_sym_declare] = ACTIONS(1114),
- [anon_sym_public] = ACTIONS(1114),
- [anon_sym_private] = ACTIONS(1114),
- [anon_sym_protected] = ACTIONS(1114),
- [anon_sym_override] = ACTIONS(1114),
- [anon_sym_module] = ACTIONS(1114),
- [anon_sym_any] = ACTIONS(1114),
- [anon_sym_number] = ACTIONS(1114),
- [anon_sym_boolean] = ACTIONS(1114),
- [anon_sym_string] = ACTIONS(1114),
- [anon_sym_symbol] = ACTIONS(1114),
- [anon_sym_object] = ACTIONS(1114),
- [sym_html_comment] = ACTIONS(5),
- },
- [382] = {
- [sym_import] = STATE(3306),
- [sym_parenthesized_expression] = STATE(1294),
- [sym_expression] = STATE(1669),
- [sym_primary_expression] = STATE(1946),
- [sym_yield_expression] = STATE(2234),
- [sym_object] = STATE(2310),
- [sym_object_pattern] = STATE(5667),
- [sym_array] = STATE(2310),
- [sym_array_pattern] = STATE(5667),
- [sym_glimmer_template] = STATE(2234),
- [sym_jsx_element] = STATE(2234),
- [sym_jsx_opening_element] = STATE(3051),
- [sym_jsx_self_closing_element] = STATE(2234),
- [sym_class] = STATE(2310),
- [sym_function_expression] = STATE(2310),
- [sym_generator_function] = STATE(2310),
- [sym_arrow_function] = STATE(2310),
- [sym__call_signature] = STATE(5809),
- [sym_call_expression] = STATE(2310),
- [sym_new_expression] = STATE(2234),
- [sym_await_expression] = STATE(2234),
- [sym_member_expression] = STATE(1294),
- [sym_subscript_expression] = STATE(1294),
- [sym_assignment_expression] = STATE(2234),
- [sym__augmented_assignment_lhs] = STATE(2875),
- [sym_augmented_assignment_expression] = STATE(2234),
- [sym__destructuring_pattern] = STATE(5667),
- [sym_ternary_expression] = STATE(2234),
- [sym_binary_expression] = STATE(2234),
- [sym_unary_expression] = STATE(2234),
- [sym_update_expression] = STATE(2234),
- [sym_string] = STATE(2310),
- [sym_template_string] = STATE(2310),
- [sym_regex] = STATE(2310),
- [sym_meta_property] = STATE(2310),
- [sym_decorator] = STATE(1244),
- [sym_formal_parameters] = STATE(3742),
- [sym_non_null_expression] = STATE(1294),
- [sym_as_expression] = STATE(2234),
- [sym_satisfies_expression] = STATE(2234),
- [sym_instantiation_expression] = STATE(2234),
- [sym_internal_module] = STATE(2234),
- [sym_type_parameters] = STATE(5349),
- [aux_sym_export_statement_repeat1] = STATE(4499),
- [sym_identifier] = ACTIONS(1440),
- [anon_sym_export] = ACTIONS(1372),
- [anon_sym_type] = ACTIONS(1372),
- [anon_sym_namespace] = ACTIONS(1374),
- [anon_sym_LBRACE] = ACTIONS(700),
- [anon_sym_typeof] = ACTIONS(21),
- [anon_sym_import] = ACTIONS(133),
- [anon_sym_let] = ACTIONS(1372),
- [anon_sym_BANG] = ACTIONS(33),
- [anon_sym_LPAREN] = ACTIONS(41),
- [anon_sym_await] = ACTIONS(43),
- [anon_sym_yield] = ACTIONS(63),
- [anon_sym_LBRACK] = ACTIONS(65),
- [sym_glimmer_opening_tag] = ACTIONS(67),
- [anon_sym_DQUOTE] = ACTIONS(69),
- [anon_sym_SQUOTE] = ACTIONS(71),
- [anon_sym_class] = ACTIONS(709),
- [anon_sym_async] = ACTIONS(1378),
- [anon_sym_function] = ACTIONS(713),
- [anon_sym_new] = ACTIONS(1444),
- [anon_sym_using] = ACTIONS(81),
- [anon_sym_PLUS] = ACTIONS(21),
- [anon_sym_DASH] = ACTIONS(21),
- [anon_sym_SLASH] = ACTIONS(83),
- [anon_sym_LT] = ACTIONS(85),
- [anon_sym_TILDE] = ACTIONS(33),
- [anon_sym_void] = ACTIONS(21),
- [anon_sym_delete] = ACTIONS(21),
- [anon_sym_PLUS_PLUS] = ACTIONS(87),
- [anon_sym_DASH_DASH] = ACTIONS(87),
- [sym_comment] = ACTIONS(5),
- [anon_sym_BQUOTE] = ACTIONS(89),
- [sym_number] = ACTIONS(91),
- [sym_private_property_identifier] = ACTIONS(93),
- [sym_this] = ACTIONS(95),
- [sym_super] = ACTIONS(95),
- [sym_true] = ACTIONS(95),
- [sym_false] = ACTIONS(95),
- [sym_null] = ACTIONS(95),
- [sym_undefined] = ACTIONS(97),
- [anon_sym_AT] = ACTIONS(99),
- [anon_sym_static] = ACTIONS(1372),
- [anon_sym_readonly] = ACTIONS(1372),
- [anon_sym_get] = ACTIONS(1372),
- [anon_sym_set] = ACTIONS(1372),
- [anon_sym_declare] = ACTIONS(1372),
- [anon_sym_public] = ACTIONS(1372),
- [anon_sym_private] = ACTIONS(1372),
- [anon_sym_protected] = ACTIONS(1372),
- [anon_sym_override] = ACTIONS(1372),
- [anon_sym_module] = ACTIONS(1372),
- [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_object] = ACTIONS(1372),
- [sym_html_comment] = ACTIONS(5),
- },
- [383] = {
- [sym_import] = STATE(3334),
- [sym_parenthesized_expression] = STATE(1179),
- [sym_expression] = STATE(2405),
- [sym_primary_expression] = STATE(1468),
- [sym_yield_expression] = STATE(1634),
- [sym_object] = STATE(1650),
- [sym_object_pattern] = STATE(5854),
- [sym_array] = STATE(1650),
- [sym_array_pattern] = STATE(5854),
- [sym_glimmer_template] = STATE(1634),
- [sym_jsx_element] = STATE(1634),
- [sym_jsx_opening_element] = STATE(3026),
- [sym_jsx_self_closing_element] = STATE(1634),
- [sym_class] = STATE(1650),
- [sym_function_expression] = STATE(1650),
- [sym_generator_function] = STATE(1650),
- [sym_arrow_function] = STATE(1650),
- [sym__call_signature] = STATE(5619),
- [sym_call_expression] = STATE(1650),
- [sym_new_expression] = STATE(1634),
- [sym_await_expression] = STATE(1634),
- [sym_member_expression] = STATE(1179),
- [sym_subscript_expression] = STATE(1179),
- [sym_assignment_expression] = STATE(1634),
- [sym__augmented_assignment_lhs] = STATE(2878),
- [sym_augmented_assignment_expression] = STATE(1634),
- [sym__destructuring_pattern] = STATE(5854),
- [sym_ternary_expression] = STATE(1634),
- [sym_binary_expression] = STATE(1634),
- [sym_unary_expression] = STATE(1634),
- [sym_update_expression] = STATE(1634),
- [sym_string] = STATE(1650),
- [sym_template_string] = STATE(1650),
- [sym_regex] = STATE(1650),
- [sym_meta_property] = STATE(1650),
- [sym_decorator] = STATE(1244),
- [sym_formal_parameters] = STATE(3742),
- [sym_non_null_expression] = STATE(1179),
- [sym_as_expression] = STATE(1634),
- [sym_satisfies_expression] = STATE(1634),
- [sym_instantiation_expression] = STATE(1634),
- [sym_internal_module] = STATE(1634),
- [sym_type_parameters] = STATE(5349),
- [aux_sym_export_statement_repeat1] = STATE(4458),
- [sym_identifier] = ACTIONS(837),
- [anon_sym_export] = ACTIONS(839),
- [anon_sym_type] = ACTIONS(839),
- [anon_sym_namespace] = ACTIONS(843),
- [anon_sym_LBRACE] = ACTIONS(845),
- [anon_sym_typeof] = ACTIONS(187),
- [anon_sym_import] = ACTIONS(133),
- [anon_sym_let] = ACTIONS(839),
- [anon_sym_BANG] = ACTIONS(183),
- [anon_sym_LPAREN] = ACTIONS(815),
- [anon_sym_await] = ACTIONS(142),
- [anon_sym_yield] = ACTIONS(144),
- [anon_sym_LBRACK] = ACTIONS(849),
- [sym_glimmer_opening_tag] = ACTIONS(148),
- [anon_sym_DQUOTE] = ACTIONS(150),
- [anon_sym_SQUOTE] = ACTIONS(152),
- [anon_sym_class] = ACTIONS(154),
- [anon_sym_async] = ACTIONS(851),
- [anon_sym_function] = ACTIONS(158),
- [anon_sym_new] = ACTIONS(853),
- [anon_sym_using] = ACTIONS(166),
- [anon_sym_PLUS] = ACTIONS(187),
- [anon_sym_DASH] = ACTIONS(187),
- [anon_sym_SLASH] = ACTIONS(646),
- [anon_sym_LT] = ACTIONS(181),
- [anon_sym_TILDE] = ACTIONS(183),
- [anon_sym_void] = ACTIONS(187),
- [anon_sym_delete] = ACTIONS(187),
- [anon_sym_PLUS_PLUS] = ACTIONS(719),
- [anon_sym_DASH_DASH] = ACTIONS(719),
- [sym_comment] = ACTIONS(5),
- [anon_sym_BQUOTE] = ACTIONS(825),
- [sym_number] = ACTIONS(2081),
- [sym_private_property_identifier] = ACTIONS(196),
- [sym_this] = ACTIONS(200),
- [sym_super] = ACTIONS(200),
- [sym_true] = ACTIONS(200),
- [sym_false] = ACTIONS(200),
- [sym_null] = ACTIONS(200),
- [sym_undefined] = ACTIONS(827),
- [anon_sym_AT] = ACTIONS(99),
- [anon_sym_static] = ACTIONS(839),
- [anon_sym_readonly] = ACTIONS(839),
- [anon_sym_get] = ACTIONS(839),
- [anon_sym_set] = ACTIONS(839),
- [anon_sym_declare] = ACTIONS(839),
- [anon_sym_public] = ACTIONS(839),
- [anon_sym_private] = ACTIONS(839),
- [anon_sym_protected] = ACTIONS(839),
- [anon_sym_override] = ACTIONS(839),
- [anon_sym_module] = ACTIONS(839),
- [anon_sym_any] = ACTIONS(839),
- [anon_sym_number] = ACTIONS(839),
- [anon_sym_boolean] = ACTIONS(839),
- [anon_sym_string] = ACTIONS(839),
- [anon_sym_symbol] = ACTIONS(839),
- [anon_sym_object] = ACTIONS(839),
- [sym_html_comment] = ACTIONS(5),
- },
- [384] = {
- [sym_import] = STATE(3306),
- [sym_parenthesized_expression] = STATE(1294),
- [sym_expression] = STATE(1751),
- [sym_primary_expression] = STATE(1946),
- [sym_yield_expression] = STATE(2234),
- [sym_object] = STATE(2310),
- [sym_object_pattern] = STATE(5667),
- [sym_array] = STATE(2310),
- [sym_array_pattern] = STATE(5667),
- [sym_glimmer_template] = STATE(2234),
- [sym_jsx_element] = STATE(2234),
- [sym_jsx_opening_element] = STATE(3051),
- [sym_jsx_self_closing_element] = STATE(2234),
- [sym_class] = STATE(2310),
- [sym_function_expression] = STATE(2310),
- [sym_generator_function] = STATE(2310),
- [sym_arrow_function] = STATE(2310),
- [sym__call_signature] = STATE(5809),
- [sym_call_expression] = STATE(2310),
- [sym_new_expression] = STATE(2234),
- [sym_await_expression] = STATE(2234),
- [sym_member_expression] = STATE(1294),
- [sym_subscript_expression] = STATE(1294),
- [sym_assignment_expression] = STATE(2234),
- [sym__augmented_assignment_lhs] = STATE(2875),
- [sym_augmented_assignment_expression] = STATE(2234),
- [sym__destructuring_pattern] = STATE(5667),
- [sym_ternary_expression] = STATE(2234),
- [sym_binary_expression] = STATE(2234),
- [sym_unary_expression] = STATE(2234),
- [sym_update_expression] = STATE(2234),
- [sym_string] = STATE(2310),
- [sym_template_string] = STATE(2310),
- [sym_regex] = STATE(2310),
- [sym_meta_property] = STATE(2310),
- [sym_decorator] = STATE(1244),
- [sym_formal_parameters] = STATE(3742),
- [sym_non_null_expression] = STATE(1294),
- [sym_as_expression] = STATE(2234),
- [sym_satisfies_expression] = STATE(2234),
- [sym_instantiation_expression] = STATE(2234),
- [sym_internal_module] = STATE(2234),
- [sym_type_parameters] = STATE(5349),
- [aux_sym_export_statement_repeat1] = STATE(4499),
- [sym_identifier] = ACTIONS(1440),
- [anon_sym_export] = ACTIONS(1372),
- [anon_sym_type] = ACTIONS(1372),
- [anon_sym_namespace] = ACTIONS(1374),
- [anon_sym_LBRACE] = ACTIONS(700),
- [anon_sym_typeof] = ACTIONS(21),
- [anon_sym_import] = ACTIONS(133),
- [anon_sym_let] = ACTIONS(1372),
- [anon_sym_BANG] = ACTIONS(33),
- [anon_sym_LPAREN] = ACTIONS(41),
- [anon_sym_await] = ACTIONS(43),
- [anon_sym_yield] = ACTIONS(63),
- [anon_sym_LBRACK] = ACTIONS(65),
- [sym_glimmer_opening_tag] = ACTIONS(67),
- [anon_sym_DQUOTE] = ACTIONS(69),
- [anon_sym_SQUOTE] = ACTIONS(71),
- [anon_sym_class] = ACTIONS(709),
- [anon_sym_async] = ACTIONS(1378),
- [anon_sym_function] = ACTIONS(713),
- [anon_sym_new] = ACTIONS(1444),
- [anon_sym_using] = ACTIONS(81),
- [anon_sym_PLUS] = ACTIONS(21),
- [anon_sym_DASH] = ACTIONS(21),
- [anon_sym_SLASH] = ACTIONS(83),
- [anon_sym_LT] = ACTIONS(85),
- [anon_sym_TILDE] = ACTIONS(33),
- [anon_sym_void] = ACTIONS(21),
- [anon_sym_delete] = ACTIONS(21),
- [anon_sym_PLUS_PLUS] = ACTIONS(87),
- [anon_sym_DASH_DASH] = ACTIONS(87),
- [sym_comment] = ACTIONS(5),
- [anon_sym_BQUOTE] = ACTIONS(89),
- [sym_number] = ACTIONS(91),
- [sym_private_property_identifier] = ACTIONS(93),
- [sym_this] = ACTIONS(95),
- [sym_super] = ACTIONS(95),
- [sym_true] = ACTIONS(95),
- [sym_false] = ACTIONS(95),
- [sym_null] = ACTIONS(95),
- [sym_undefined] = ACTIONS(97),
- [anon_sym_AT] = ACTIONS(99),
- [anon_sym_static] = ACTIONS(1372),
- [anon_sym_readonly] = ACTIONS(1372),
- [anon_sym_get] = ACTIONS(1372),
- [anon_sym_set] = ACTIONS(1372),
- [anon_sym_declare] = ACTIONS(1372),
- [anon_sym_public] = ACTIONS(1372),
- [anon_sym_private] = ACTIONS(1372),
- [anon_sym_protected] = ACTIONS(1372),
- [anon_sym_override] = ACTIONS(1372),
- [anon_sym_module] = ACTIONS(1372),
- [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_object] = ACTIONS(1372),
- [sym_html_comment] = ACTIONS(5),
- },
- [385] = {
- [sym_import] = STATE(3306),
- [sym_parenthesized_expression] = STATE(1294),
- [sym_expression] = STATE(1740),
- [sym_primary_expression] = STATE(1946),
- [sym_yield_expression] = STATE(2234),
- [sym_object] = STATE(2310),
- [sym_object_pattern] = STATE(5667),
- [sym_array] = STATE(2310),
- [sym_array_pattern] = STATE(5667),
- [sym_glimmer_template] = STATE(2234),
- [sym_jsx_element] = STATE(2234),
- [sym_jsx_opening_element] = STATE(3051),
- [sym_jsx_self_closing_element] = STATE(2234),
- [sym_class] = STATE(2310),
- [sym_function_expression] = STATE(2310),
- [sym_generator_function] = STATE(2310),
- [sym_arrow_function] = STATE(2310),
- [sym__call_signature] = STATE(5809),
- [sym_call_expression] = STATE(2310),
- [sym_new_expression] = STATE(2234),
- [sym_await_expression] = STATE(2234),
- [sym_member_expression] = STATE(1294),
- [sym_subscript_expression] = STATE(1294),
- [sym_assignment_expression] = STATE(2234),
- [sym__augmented_assignment_lhs] = STATE(2875),
- [sym_augmented_assignment_expression] = STATE(2234),
- [sym__destructuring_pattern] = STATE(5667),
- [sym_ternary_expression] = STATE(2234),
- [sym_binary_expression] = STATE(2234),
- [sym_unary_expression] = STATE(2234),
- [sym_update_expression] = STATE(2234),
- [sym_string] = STATE(2310),
- [sym_template_string] = STATE(2310),
- [sym_regex] = STATE(2310),
- [sym_meta_property] = STATE(2310),
- [sym_decorator] = STATE(1244),
- [sym_formal_parameters] = STATE(3742),
- [sym_non_null_expression] = STATE(1294),
- [sym_as_expression] = STATE(2234),
- [sym_satisfies_expression] = STATE(2234),
- [sym_instantiation_expression] = STATE(2234),
- [sym_internal_module] = STATE(2234),
- [sym_type_parameters] = STATE(5349),
- [aux_sym_export_statement_repeat1] = STATE(4499),
- [sym_identifier] = ACTIONS(1440),
- [anon_sym_export] = ACTIONS(1372),
- [anon_sym_type] = ACTIONS(1372),
- [anon_sym_namespace] = ACTIONS(1374),
- [anon_sym_LBRACE] = ACTIONS(700),
- [anon_sym_typeof] = ACTIONS(21),
- [anon_sym_import] = ACTIONS(133),
- [anon_sym_let] = ACTIONS(1372),
- [anon_sym_BANG] = ACTIONS(33),
- [anon_sym_LPAREN] = ACTIONS(41),
- [anon_sym_await] = ACTIONS(43),
- [anon_sym_yield] = ACTIONS(63),
- [anon_sym_LBRACK] = ACTIONS(65),
- [sym_glimmer_opening_tag] = ACTIONS(67),
- [anon_sym_DQUOTE] = ACTIONS(69),
- [anon_sym_SQUOTE] = ACTIONS(71),
- [anon_sym_class] = ACTIONS(709),
- [anon_sym_async] = ACTIONS(1378),
- [anon_sym_function] = ACTIONS(713),
- [anon_sym_new] = ACTIONS(1444),
- [anon_sym_using] = ACTIONS(81),
- [anon_sym_PLUS] = ACTIONS(21),
- [anon_sym_DASH] = ACTIONS(21),
- [anon_sym_SLASH] = ACTIONS(83),
- [anon_sym_LT] = ACTIONS(85),
- [anon_sym_TILDE] = ACTIONS(33),
- [anon_sym_void] = ACTIONS(21),
- [anon_sym_delete] = ACTIONS(21),
- [anon_sym_PLUS_PLUS] = ACTIONS(87),
- [anon_sym_DASH_DASH] = ACTIONS(87),
- [sym_comment] = ACTIONS(5),
- [anon_sym_BQUOTE] = ACTIONS(89),
- [sym_number] = ACTIONS(91),
- [sym_private_property_identifier] = ACTIONS(93),
- [sym_this] = ACTIONS(95),
- [sym_super] = ACTIONS(95),
- [sym_true] = ACTIONS(95),
- [sym_false] = ACTIONS(95),
- [sym_null] = ACTIONS(95),
- [sym_undefined] = ACTIONS(97),
- [anon_sym_AT] = ACTIONS(99),
- [anon_sym_static] = ACTIONS(1372),
- [anon_sym_readonly] = ACTIONS(1372),
- [anon_sym_get] = ACTIONS(1372),
- [anon_sym_set] = ACTIONS(1372),
- [anon_sym_declare] = ACTIONS(1372),
- [anon_sym_public] = ACTIONS(1372),
- [anon_sym_private] = ACTIONS(1372),
- [anon_sym_protected] = ACTIONS(1372),
- [anon_sym_override] = ACTIONS(1372),
- [anon_sym_module] = ACTIONS(1372),
- [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_object] = ACTIONS(1372),
- [sym_html_comment] = ACTIONS(5),
- },
- [386] = {
- [sym_import] = STATE(3334),
- [sym_parenthesized_expression] = STATE(1251),
- [sym_expression] = STATE(1479),
- [sym_primary_expression] = STATE(1468),
- [sym_yield_expression] = STATE(1634),
- [sym_object] = STATE(1650),
- [sym_object_pattern] = STATE(5633),
- [sym_array] = STATE(1650),
- [sym_array_pattern] = STATE(5633),
- [sym_glimmer_template] = STATE(1634),
- [sym_jsx_element] = STATE(1634),
- [sym_jsx_opening_element] = STATE(3026),
- [sym_jsx_self_closing_element] = STATE(1634),
- [sym_class] = STATE(1650),
- [sym_function_expression] = STATE(1650),
- [sym_generator_function] = STATE(1650),
- [sym_arrow_function] = STATE(1650),
- [sym__call_signature] = STATE(5828),
- [sym_call_expression] = STATE(1650),
- [sym_new_expression] = STATE(1634),
- [sym_await_expression] = STATE(1634),
- [sym_member_expression] = STATE(1251),
- [sym_subscript_expression] = STATE(1251),
- [sym_assignment_expression] = STATE(1634),
- [sym__augmented_assignment_lhs] = STATE(2900),
- [sym_augmented_assignment_expression] = STATE(1634),
- [sym__destructuring_pattern] = STATE(5633),
- [sym_ternary_expression] = STATE(1634),
- [sym_binary_expression] = STATE(1634),
- [sym_unary_expression] = STATE(1634),
- [sym_update_expression] = STATE(1634),
- [sym_string] = STATE(1650),
- [sym_template_string] = STATE(1650),
- [sym_regex] = STATE(1650),
- [sym_meta_property] = STATE(1650),
- [sym_decorator] = STATE(1244),
- [sym_formal_parameters] = STATE(3742),
- [sym_non_null_expression] = STATE(1251),
- [sym_as_expression] = STATE(1634),
- [sym_satisfies_expression] = STATE(1634),
- [sym_instantiation_expression] = STATE(1634),
- [sym_internal_module] = STATE(1634),
- [sym_type_parameters] = STATE(5349),
- [aux_sym_export_statement_repeat1] = STATE(4458),
- [sym_identifier] = ACTIONS(1428),
- [anon_sym_export] = ACTIONS(1044),
- [anon_sym_type] = ACTIONS(1044),
- [anon_sym_namespace] = ACTIONS(1046),
- [anon_sym_LBRACE] = ACTIONS(813),
- [anon_sym_typeof] = ACTIONS(650),
- [anon_sym_import] = ACTIONS(133),
- [anon_sym_let] = ACTIONS(1044),
- [anon_sym_BANG] = ACTIONS(622),
- [anon_sym_LPAREN] = ACTIONS(815),
- [anon_sym_await] = ACTIONS(624),
- [anon_sym_yield] = ACTIONS(626),
- [anon_sym_LBRACK] = ACTIONS(817),
- [sym_glimmer_opening_tag] = ACTIONS(148),
- [anon_sym_DQUOTE] = ACTIONS(150),
- [anon_sym_SQUOTE] = ACTIONS(152),
- [anon_sym_class] = ACTIONS(154),
- [anon_sym_async] = ACTIONS(1052),
- [anon_sym_function] = ACTIONS(158),
- [anon_sym_new] = ACTIONS(1436),
- [anon_sym_using] = ACTIONS(636),
- [anon_sym_PLUS] = ACTIONS(650),
- [anon_sym_DASH] = ACTIONS(650),
- [anon_sym_SLASH] = ACTIONS(646),
- [anon_sym_LT] = ACTIONS(181),
- [anon_sym_TILDE] = ACTIONS(622),
- [anon_sym_void] = ACTIONS(650),
- [anon_sym_delete] = ACTIONS(650),
- [anon_sym_PLUS_PLUS] = ACTIONS(652),
- [anon_sym_DASH_DASH] = ACTIONS(652),
- [sym_comment] = ACTIONS(5),
- [anon_sym_BQUOTE] = ACTIONS(825),
- [sym_number] = ACTIONS(2083),
- [sym_private_property_identifier] = ACTIONS(654),
- [sym_this] = ACTIONS(200),
- [sym_super] = ACTIONS(200),
- [sym_true] = ACTIONS(200),
- [sym_false] = ACTIONS(200),
- [sym_null] = ACTIONS(200),
- [sym_undefined] = ACTIONS(1438),
- [anon_sym_AT] = ACTIONS(99),
- [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_override] = 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_object] = ACTIONS(1044),
- [sym_html_comment] = ACTIONS(5),
- },
- [387] = {
- [sym_import] = STATE(3306),
- [sym_parenthesized_expression] = STATE(1294),
- [sym_expression] = STATE(1788),
- [sym_primary_expression] = STATE(1946),
- [sym_yield_expression] = STATE(2234),
- [sym_object] = STATE(2310),
- [sym_object_pattern] = STATE(5667),
- [sym_array] = STATE(2310),
- [sym_array_pattern] = STATE(5667),
- [sym_glimmer_template] = STATE(2234),
- [sym_jsx_element] = STATE(2234),
- [sym_jsx_opening_element] = STATE(3051),
- [sym_jsx_self_closing_element] = STATE(2234),
- [sym_class] = STATE(2310),
- [sym_function_expression] = STATE(2310),
- [sym_generator_function] = STATE(2310),
- [sym_arrow_function] = STATE(2310),
- [sym__call_signature] = STATE(5809),
- [sym_call_expression] = STATE(2310),
- [sym_new_expression] = STATE(2234),
- [sym_await_expression] = STATE(2234),
- [sym_member_expression] = STATE(1294),
- [sym_subscript_expression] = STATE(1294),
- [sym_assignment_expression] = STATE(2234),
- [sym__augmented_assignment_lhs] = STATE(2875),
- [sym_augmented_assignment_expression] = STATE(2234),
- [sym__destructuring_pattern] = STATE(5667),
- [sym_ternary_expression] = STATE(2234),
- [sym_binary_expression] = STATE(2234),
- [sym_unary_expression] = STATE(2234),
- [sym_update_expression] = STATE(2234),
- [sym_string] = STATE(2310),
- [sym_template_string] = STATE(2310),
- [sym_regex] = STATE(2310),
- [sym_meta_property] = STATE(2310),
- [sym_decorator] = STATE(1244),
- [sym_formal_parameters] = STATE(3742),
- [sym_non_null_expression] = STATE(1294),
- [sym_as_expression] = STATE(2234),
- [sym_satisfies_expression] = STATE(2234),
- [sym_instantiation_expression] = STATE(2234),
- [sym_internal_module] = STATE(2234),
- [sym_type_parameters] = STATE(5349),
- [aux_sym_export_statement_repeat1] = STATE(4499),
- [sym_identifier] = ACTIONS(1440),
- [anon_sym_export] = ACTIONS(1372),
- [anon_sym_type] = ACTIONS(1372),
- [anon_sym_namespace] = ACTIONS(1374),
- [anon_sym_LBRACE] = ACTIONS(700),
- [anon_sym_typeof] = ACTIONS(21),
- [anon_sym_import] = ACTIONS(133),
- [anon_sym_let] = ACTIONS(1372),
- [anon_sym_BANG] = ACTIONS(33),
- [anon_sym_LPAREN] = ACTIONS(41),
- [anon_sym_await] = ACTIONS(43),
- [anon_sym_yield] = ACTIONS(63),
- [anon_sym_LBRACK] = ACTIONS(65),
- [sym_glimmer_opening_tag] = ACTIONS(67),
- [anon_sym_DQUOTE] = ACTIONS(69),
- [anon_sym_SQUOTE] = ACTIONS(71),
- [anon_sym_class] = ACTIONS(709),
- [anon_sym_async] = ACTIONS(1378),
- [anon_sym_function] = ACTIONS(713),
- [anon_sym_new] = ACTIONS(1444),
- [anon_sym_using] = ACTIONS(81),
- [anon_sym_PLUS] = ACTIONS(21),
- [anon_sym_DASH] = ACTIONS(21),
- [anon_sym_SLASH] = ACTIONS(83),
- [anon_sym_LT] = ACTIONS(85),
- [anon_sym_TILDE] = ACTIONS(33),
- [anon_sym_void] = ACTIONS(21),
- [anon_sym_delete] = ACTIONS(21),
- [anon_sym_PLUS_PLUS] = ACTIONS(87),
- [anon_sym_DASH_DASH] = ACTIONS(87),
- [sym_comment] = ACTIONS(5),
- [anon_sym_BQUOTE] = ACTIONS(89),
- [sym_number] = ACTIONS(91),
- [sym_private_property_identifier] = ACTIONS(93),
- [sym_this] = ACTIONS(95),
- [sym_super] = ACTIONS(95),
- [sym_true] = ACTIONS(95),
- [sym_false] = ACTIONS(95),
- [sym_null] = ACTIONS(95),
- [sym_undefined] = ACTIONS(97),
- [anon_sym_AT] = ACTIONS(99),
- [anon_sym_static] = ACTIONS(1372),
- [anon_sym_readonly] = ACTIONS(1372),
- [anon_sym_get] = ACTIONS(1372),
- [anon_sym_set] = ACTIONS(1372),
- [anon_sym_declare] = ACTIONS(1372),
- [anon_sym_public] = ACTIONS(1372),
- [anon_sym_private] = ACTIONS(1372),
- [anon_sym_protected] = ACTIONS(1372),
- [anon_sym_override] = ACTIONS(1372),
- [anon_sym_module] = ACTIONS(1372),
- [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_object] = ACTIONS(1372),
- [sym_html_comment] = ACTIONS(5),
- },
- [388] = {
- [sym_import] = STATE(3306),
- [sym_parenthesized_expression] = STATE(1294),
- [sym_expression] = STATE(1618),
- [sym_primary_expression] = STATE(1946),
- [sym_yield_expression] = STATE(2234),
- [sym_object] = STATE(2310),
- [sym_object_pattern] = STATE(5667),
- [sym_array] = STATE(2310),
- [sym_array_pattern] = STATE(5667),
- [sym_glimmer_template] = STATE(2234),
- [sym_jsx_element] = STATE(2234),
- [sym_jsx_opening_element] = STATE(3051),
- [sym_jsx_self_closing_element] = STATE(2234),
- [sym_class] = STATE(2310),
- [sym_function_expression] = STATE(2310),
- [sym_generator_function] = STATE(2310),
- [sym_arrow_function] = STATE(2310),
- [sym__call_signature] = STATE(5809),
- [sym_call_expression] = STATE(2310),
- [sym_new_expression] = STATE(2234),
- [sym_await_expression] = STATE(2234),
- [sym_member_expression] = STATE(1294),
- [sym_subscript_expression] = STATE(1294),
- [sym_assignment_expression] = STATE(2234),
- [sym__augmented_assignment_lhs] = STATE(2875),
- [sym_augmented_assignment_expression] = STATE(2234),
- [sym__destructuring_pattern] = STATE(5667),
- [sym_ternary_expression] = STATE(2234),
- [sym_binary_expression] = STATE(2234),
- [sym_unary_expression] = STATE(2234),
- [sym_update_expression] = STATE(2234),
- [sym_string] = STATE(2310),
- [sym_template_string] = STATE(2310),
- [sym_regex] = STATE(2310),
- [sym_meta_property] = STATE(2310),
- [sym_decorator] = STATE(1244),
- [sym_formal_parameters] = STATE(3742),
- [sym_non_null_expression] = STATE(1294),
- [sym_as_expression] = STATE(2234),
- [sym_satisfies_expression] = STATE(2234),
- [sym_instantiation_expression] = STATE(2234),
- [sym_internal_module] = STATE(2234),
- [sym_type_parameters] = STATE(5349),
- [aux_sym_export_statement_repeat1] = STATE(4499),
- [sym_identifier] = ACTIONS(1440),
- [anon_sym_export] = ACTIONS(1372),
- [anon_sym_type] = ACTIONS(1372),
- [anon_sym_namespace] = ACTIONS(1374),
- [anon_sym_LBRACE] = ACTIONS(700),
- [anon_sym_typeof] = ACTIONS(21),
- [anon_sym_import] = ACTIONS(133),
- [anon_sym_let] = ACTIONS(1372),
- [anon_sym_BANG] = ACTIONS(33),
- [anon_sym_LPAREN] = ACTIONS(41),
- [anon_sym_await] = ACTIONS(43),
- [anon_sym_yield] = ACTIONS(63),
- [anon_sym_LBRACK] = ACTIONS(65),
- [sym_glimmer_opening_tag] = ACTIONS(67),
- [anon_sym_DQUOTE] = ACTIONS(69),
- [anon_sym_SQUOTE] = ACTIONS(71),
- [anon_sym_class] = ACTIONS(709),
- [anon_sym_async] = ACTIONS(1378),
- [anon_sym_function] = ACTIONS(713),
- [anon_sym_new] = ACTIONS(1444),
- [anon_sym_using] = ACTIONS(81),
- [anon_sym_PLUS] = ACTIONS(21),
- [anon_sym_DASH] = ACTIONS(21),
- [anon_sym_SLASH] = ACTIONS(83),
- [anon_sym_LT] = ACTIONS(85),
- [anon_sym_TILDE] = ACTIONS(33),
- [anon_sym_void] = ACTIONS(21),
- [anon_sym_delete] = ACTIONS(21),
- [anon_sym_PLUS_PLUS] = ACTIONS(87),
- [anon_sym_DASH_DASH] = ACTIONS(87),
- [sym_comment] = ACTIONS(5),
- [anon_sym_BQUOTE] = ACTIONS(89),
- [sym_number] = ACTIONS(91),
- [sym_private_property_identifier] = ACTIONS(93),
- [sym_this] = ACTIONS(95),
- [sym_super] = ACTIONS(95),
- [sym_true] = ACTIONS(95),
- [sym_false] = ACTIONS(95),
- [sym_null] = ACTIONS(95),
- [sym_undefined] = ACTIONS(97),
- [anon_sym_AT] = ACTIONS(99),
- [anon_sym_static] = ACTIONS(1372),
- [anon_sym_readonly] = ACTIONS(1372),
- [anon_sym_get] = ACTIONS(1372),
- [anon_sym_set] = ACTIONS(1372),
- [anon_sym_declare] = ACTIONS(1372),
- [anon_sym_public] = ACTIONS(1372),
- [anon_sym_private] = ACTIONS(1372),
- [anon_sym_protected] = ACTIONS(1372),
- [anon_sym_override] = ACTIONS(1372),
- [anon_sym_module] = ACTIONS(1372),
- [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_object] = ACTIONS(1372),
- [sym_html_comment] = ACTIONS(5),
- },
- [389] = {
- [sym_import] = STATE(3334),
- [sym_parenthesized_expression] = STATE(1395),
- [sym_expression] = STATE(2415),
- [sym_primary_expression] = STATE(1468),
- [sym_yield_expression] = STATE(1634),
- [sym_object] = STATE(1650),
- [sym_object_pattern] = STATE(5680),
- [sym_array] = STATE(1650),
- [sym_array_pattern] = STATE(5680),
- [sym_glimmer_template] = STATE(1634),
- [sym_jsx_element] = STATE(1634),
- [sym_jsx_opening_element] = STATE(3026),
- [sym_jsx_self_closing_element] = STATE(1634),
- [sym_class] = STATE(1650),
- [sym_function_expression] = STATE(1650),
- [sym_generator_function] = STATE(1650),
- [sym_arrow_function] = STATE(1650),
- [sym__call_signature] = STATE(5619),
- [sym_call_expression] = STATE(1650),
- [sym_new_expression] = STATE(1634),
- [sym_await_expression] = STATE(1634),
- [sym_member_expression] = STATE(1395),
- [sym_subscript_expression] = STATE(1395),
- [sym_assignment_expression] = STATE(1634),
- [sym__augmented_assignment_lhs] = STATE(2878),
- [sym_augmented_assignment_expression] = STATE(1634),
- [sym__destructuring_pattern] = STATE(5680),
- [sym_ternary_expression] = STATE(1634),
- [sym_binary_expression] = STATE(1634),
- [sym_unary_expression] = STATE(1634),
- [sym_update_expression] = STATE(1634),
- [sym_string] = STATE(1650),
- [sym_template_string] = STATE(1650),
- [sym_regex] = STATE(1650),
- [sym_meta_property] = STATE(1650),
- [sym_decorator] = STATE(1244),
- [sym_formal_parameters] = STATE(3742),
- [sym_non_null_expression] = STATE(1395),
- [sym_as_expression] = STATE(1634),
- [sym_satisfies_expression] = STATE(1634),
- [sym_instantiation_expression] = STATE(1634),
- [sym_internal_module] = STATE(1634),
- [sym_type_parameters] = STATE(5349),
- [aux_sym_export_statement_repeat1] = STATE(4458),
- [sym_identifier] = ACTIONS(2085),
- [anon_sym_export] = ACTIONS(2087),
- [anon_sym_type] = ACTIONS(2087),
- [anon_sym_namespace] = ACTIONS(2089),
- [anon_sym_LBRACE] = ACTIONS(845),
- [anon_sym_typeof] = ACTIONS(187),
- [anon_sym_import] = ACTIONS(133),
- [anon_sym_let] = ACTIONS(2087),
- [anon_sym_BANG] = ACTIONS(183),
- [anon_sym_LPAREN] = ACTIONS(815),
- [anon_sym_await] = ACTIONS(142),
- [anon_sym_yield] = ACTIONS(144),
- [anon_sym_LBRACK] = ACTIONS(849),
- [sym_glimmer_opening_tag] = ACTIONS(148),
- [anon_sym_DQUOTE] = ACTIONS(150),
- [anon_sym_SQUOTE] = ACTIONS(152),
- [anon_sym_class] = ACTIONS(154),
- [anon_sym_async] = ACTIONS(2091),
- [anon_sym_function] = ACTIONS(158),
- [anon_sym_new] = ACTIONS(2093),
- [anon_sym_using] = ACTIONS(166),
- [anon_sym_PLUS] = ACTIONS(187),
- [anon_sym_DASH] = ACTIONS(187),
- [anon_sym_SLASH] = ACTIONS(646),
- [anon_sym_LT] = ACTIONS(181),
- [anon_sym_TILDE] = ACTIONS(183),
- [anon_sym_void] = ACTIONS(187),
- [anon_sym_delete] = ACTIONS(187),
- [anon_sym_PLUS_PLUS] = ACTIONS(719),
- [anon_sym_DASH_DASH] = ACTIONS(719),
- [sym_comment] = ACTIONS(5),
- [anon_sym_BQUOTE] = ACTIONS(825),
- [sym_number] = ACTIONS(787),
- [sym_private_property_identifier] = ACTIONS(196),
- [sym_this] = ACTIONS(200),
- [sym_super] = ACTIONS(200),
- [sym_true] = ACTIONS(200),
- [sym_false] = ACTIONS(200),
- [sym_null] = ACTIONS(200),
- [sym_undefined] = ACTIONS(2095),
- [anon_sym_AT] = ACTIONS(99),
- [anon_sym_static] = ACTIONS(2087),
- [anon_sym_readonly] = ACTIONS(2087),
- [anon_sym_get] = ACTIONS(2087),
- [anon_sym_set] = ACTIONS(2087),
- [anon_sym_declare] = ACTIONS(2087),
- [anon_sym_public] = ACTIONS(2087),
- [anon_sym_private] = ACTIONS(2087),
- [anon_sym_protected] = ACTIONS(2087),
- [anon_sym_override] = ACTIONS(2087),
- [anon_sym_module] = ACTIONS(2087),
- [anon_sym_any] = ACTIONS(2087),
- [anon_sym_number] = ACTIONS(2087),
- [anon_sym_boolean] = ACTIONS(2087),
- [anon_sym_string] = ACTIONS(2087),
- [anon_sym_symbol] = ACTIONS(2087),
- [anon_sym_object] = ACTIONS(2087),
- [sym_html_comment] = ACTIONS(5),
- },
- [390] = {
- [sym_import] = STATE(3334),
- [sym_parenthesized_expression] = STATE(1388),
- [sym_expression] = STATE(2415),
- [sym_primary_expression] = STATE(1468),
- [sym_yield_expression] = STATE(1634),
- [sym_object] = STATE(1650),
- [sym_object_pattern] = STATE(5913),
- [sym_array] = STATE(1650),
- [sym_array_pattern] = STATE(5913),
- [sym_glimmer_template] = STATE(1634),
- [sym_jsx_element] = STATE(1634),
- [sym_jsx_opening_element] = STATE(3026),
- [sym_jsx_self_closing_element] = STATE(1634),
- [sym_class] = STATE(1650),
- [sym_function_expression] = STATE(1650),
- [sym_generator_function] = STATE(1650),
- [sym_arrow_function] = STATE(1650),
- [sym__call_signature] = STATE(5619),
- [sym_call_expression] = STATE(1650),
- [sym_new_expression] = STATE(1634),
- [sym_await_expression] = STATE(1634),
- [sym_member_expression] = STATE(1388),
- [sym_subscript_expression] = STATE(1388),
- [sym_assignment_expression] = STATE(1634),
- [sym__augmented_assignment_lhs] = STATE(2878),
- [sym_augmented_assignment_expression] = STATE(1634),
- [sym__destructuring_pattern] = STATE(5913),
- [sym_ternary_expression] = STATE(1634),
- [sym_binary_expression] = STATE(1634),
- [sym_unary_expression] = STATE(1634),
- [sym_update_expression] = STATE(1634),
- [sym_string] = STATE(1650),
- [sym_template_string] = STATE(1650),
- [sym_regex] = STATE(1650),
- [sym_meta_property] = STATE(1650),
- [sym_decorator] = STATE(1244),
- [sym_formal_parameters] = STATE(3742),
- [sym_non_null_expression] = STATE(1388),
- [sym_as_expression] = STATE(1634),
- [sym_satisfies_expression] = STATE(1634),
- [sym_instantiation_expression] = STATE(1634),
- [sym_internal_module] = STATE(1634),
- [sym_type_parameters] = STATE(5349),
- [aux_sym_export_statement_repeat1] = STATE(4458),
- [sym_identifier] = ACTIONS(2097),
- [anon_sym_export] = ACTIONS(2099),
- [anon_sym_type] = ACTIONS(2099),
- [anon_sym_namespace] = ACTIONS(2101),
- [anon_sym_LBRACE] = ACTIONS(845),
- [anon_sym_typeof] = ACTIONS(187),
- [anon_sym_import] = ACTIONS(133),
- [anon_sym_let] = ACTIONS(2099),
- [anon_sym_BANG] = ACTIONS(183),
- [anon_sym_LPAREN] = ACTIONS(815),
- [anon_sym_await] = ACTIONS(142),
- [anon_sym_yield] = ACTIONS(144),
- [anon_sym_LBRACK] = ACTIONS(849),
- [sym_glimmer_opening_tag] = ACTIONS(148),
- [anon_sym_DQUOTE] = ACTIONS(150),
- [anon_sym_SQUOTE] = ACTIONS(152),
- [anon_sym_class] = ACTIONS(154),
- [anon_sym_async] = ACTIONS(2103),
- [anon_sym_function] = ACTIONS(158),
- [anon_sym_new] = ACTIONS(2105),
- [anon_sym_using] = ACTIONS(166),
- [anon_sym_PLUS] = ACTIONS(187),
- [anon_sym_DASH] = ACTIONS(187),
- [anon_sym_SLASH] = ACTIONS(646),
- [anon_sym_LT] = ACTIONS(181),
- [anon_sym_TILDE] = ACTIONS(183),
- [anon_sym_void] = ACTIONS(187),
- [anon_sym_delete] = ACTIONS(187),
- [anon_sym_PLUS_PLUS] = ACTIONS(719),
- [anon_sym_DASH_DASH] = ACTIONS(719),
- [sym_comment] = ACTIONS(5),
- [anon_sym_BQUOTE] = ACTIONS(825),
- [sym_number] = ACTIONS(787),
- [sym_private_property_identifier] = ACTIONS(196),
- [sym_this] = ACTIONS(200),
- [sym_super] = ACTIONS(200),
- [sym_true] = ACTIONS(200),
- [sym_false] = ACTIONS(200),
- [sym_null] = ACTIONS(200),
- [sym_undefined] = ACTIONS(2107),
- [anon_sym_AT] = ACTIONS(99),
- [anon_sym_static] = ACTIONS(2099),
- [anon_sym_readonly] = ACTIONS(2099),
- [anon_sym_get] = ACTIONS(2099),
- [anon_sym_set] = ACTIONS(2099),
- [anon_sym_declare] = ACTIONS(2099),
- [anon_sym_public] = ACTIONS(2099),
- [anon_sym_private] = ACTIONS(2099),
- [anon_sym_protected] = ACTIONS(2099),
- [anon_sym_override] = ACTIONS(2099),
- [anon_sym_module] = ACTIONS(2099),
- [anon_sym_any] = ACTIONS(2099),
- [anon_sym_number] = ACTIONS(2099),
- [anon_sym_boolean] = ACTIONS(2099),
- [anon_sym_string] = ACTIONS(2099),
- [anon_sym_symbol] = ACTIONS(2099),
- [anon_sym_object] = ACTIONS(2099),
- [sym_html_comment] = ACTIONS(5),
- },
- [391] = {
- [sym_import] = STATE(3306),
- [sym_parenthesized_expression] = STATE(1300),
- [sym_expression] = STATE(1644),
- [sym_primary_expression] = STATE(1946),
- [sym_yield_expression] = STATE(2234),
- [sym_object] = STATE(2310),
- [sym_object_pattern] = STATE(5831),
- [sym_array] = STATE(2310),
- [sym_array_pattern] = STATE(5831),
- [sym_glimmer_template] = STATE(2234),
- [sym_jsx_element] = STATE(2234),
- [sym_jsx_opening_element] = STATE(3051),
- [sym_jsx_self_closing_element] = STATE(2234),
- [sym_class] = STATE(2310),
- [sym_function_expression] = STATE(2310),
- [sym_generator_function] = STATE(2310),
- [sym_arrow_function] = STATE(2310),
- [sym__call_signature] = STATE(5829),
- [sym_call_expression] = STATE(2310),
- [sym_new_expression] = STATE(2234),
- [sym_await_expression] = STATE(2234),
- [sym_member_expression] = STATE(1300),
- [sym_subscript_expression] = STATE(1300),
- [sym_assignment_expression] = STATE(2234),
- [sym__augmented_assignment_lhs] = STATE(2943),
- [sym_augmented_assignment_expression] = STATE(2234),
- [sym__destructuring_pattern] = STATE(5831),
- [sym_ternary_expression] = STATE(2234),
- [sym_binary_expression] = STATE(2234),
- [sym_unary_expression] = STATE(2234),
- [sym_update_expression] = STATE(2234),
- [sym_string] = STATE(2310),
- [sym_template_string] = STATE(2310),
- [sym_regex] = STATE(2310),
- [sym_meta_property] = STATE(2310),
- [sym_decorator] = STATE(1244),
- [sym_formal_parameters] = STATE(3742),
- [sym_non_null_expression] = STATE(1300),
- [sym_as_expression] = STATE(2234),
- [sym_satisfies_expression] = STATE(2234),
- [sym_instantiation_expression] = STATE(2234),
- [sym_internal_module] = STATE(2234),
- [sym_type_parameters] = STATE(5349),
- [aux_sym_export_statement_repeat1] = STATE(4499),
- [sym_identifier] = ACTIONS(1446),
- [anon_sym_export] = ACTIONS(1202),
- [anon_sym_type] = ACTIONS(1202),
- [anon_sym_namespace] = ACTIONS(1204),
- [anon_sym_LBRACE] = ACTIONS(700),
- [anon_sym_typeof] = ACTIONS(1228),
- [anon_sym_import] = ACTIONS(133),
- [anon_sym_let] = ACTIONS(1202),
- [anon_sym_BANG] = ACTIONS(1210),
- [anon_sym_LPAREN] = ACTIONS(41),
- [anon_sym_await] = ACTIONS(1212),
- [anon_sym_yield] = ACTIONS(1214),
- [anon_sym_LBRACK] = ACTIONS(65),
- [sym_glimmer_opening_tag] = ACTIONS(67),
- [anon_sym_DQUOTE] = ACTIONS(69),
- [anon_sym_SQUOTE] = ACTIONS(71),
- [anon_sym_class] = ACTIONS(709),
- [anon_sym_async] = ACTIONS(1218),
- [anon_sym_function] = ACTIONS(713),
- [anon_sym_new] = ACTIONS(1450),
- [anon_sym_using] = ACTIONS(1222),
- [anon_sym_PLUS] = ACTIONS(1228),
- [anon_sym_DASH] = ACTIONS(1228),
- [anon_sym_SLASH] = ACTIONS(882),
- [anon_sym_LT] = ACTIONS(85),
- [anon_sym_TILDE] = ACTIONS(1210),
- [anon_sym_void] = ACTIONS(1228),
- [anon_sym_delete] = ACTIONS(1228),
- [anon_sym_PLUS_PLUS] = ACTIONS(1230),
- [anon_sym_DASH_DASH] = ACTIONS(1230),
- [sym_comment] = ACTIONS(5),
- [anon_sym_BQUOTE] = ACTIONS(89),
- [sym_number] = ACTIONS(91),
- [sym_private_property_identifier] = ACTIONS(1236),
- [sym_this] = ACTIONS(95),
- [sym_super] = ACTIONS(95),
- [sym_true] = ACTIONS(95),
- [sym_false] = ACTIONS(95),
- [sym_null] = ACTIONS(95),
- [sym_undefined] = ACTIONS(1452),
- [anon_sym_AT] = ACTIONS(99),
- [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_override] = 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_object] = ACTIONS(1202),
- [sym_html_comment] = ACTIONS(5),
- },
- [392] = {
- [sym_import] = STATE(3306),
- [sym_parenthesized_expression] = STATE(1338),
- [sym_expression] = STATE(1984),
- [sym_primary_expression] = STATE(1946),
- [sym_yield_expression] = STATE(2234),
- [sym_object] = STATE(2310),
- [sym_object_pattern] = STATE(5571),
- [sym_array] = STATE(2310),
- [sym_array_pattern] = STATE(5571),
- [sym_glimmer_template] = STATE(2234),
- [sym_jsx_element] = STATE(2234),
- [sym_jsx_opening_element] = STATE(3051),
- [sym_jsx_self_closing_element] = STATE(2234),
- [sym_class] = STATE(2310),
- [sym_function_expression] = STATE(2310),
- [sym_generator_function] = STATE(2310),
- [sym_arrow_function] = STATE(2310),
- [sym__call_signature] = STATE(5569),
- [sym_call_expression] = STATE(2310),
- [sym_new_expression] = STATE(2234),
- [sym_await_expression] = STATE(2234),
- [sym_member_expression] = STATE(1338),
- [sym_subscript_expression] = STATE(1338),
- [sym_assignment_expression] = STATE(2234),
- [sym__augmented_assignment_lhs] = STATE(2899),
- [sym_augmented_assignment_expression] = STATE(2234),
- [sym__destructuring_pattern] = STATE(5571),
- [sym_ternary_expression] = STATE(2234),
- [sym_binary_expression] = STATE(2234),
- [sym_unary_expression] = STATE(2234),
- [sym_update_expression] = STATE(2234),
- [sym_string] = STATE(2310),
- [sym_template_string] = STATE(2310),
- [sym_regex] = STATE(2310),
- [sym_meta_property] = STATE(2310),
- [sym_decorator] = STATE(1244),
- [sym_formal_parameters] = STATE(3742),
- [sym_non_null_expression] = STATE(1338),
- [sym_as_expression] = STATE(2234),
- [sym_satisfies_expression] = STATE(2234),
- [sym_instantiation_expression] = STATE(2234),
- [sym_internal_module] = STATE(2234),
- [sym_type_parameters] = STATE(5349),
- [aux_sym_export_statement_repeat1] = STATE(4499),
- [sym_identifier] = ACTIONS(1454),
- [anon_sym_export] = ACTIONS(1152),
- [anon_sym_type] = ACTIONS(1152),
- [anon_sym_namespace] = ACTIONS(1154),
- [anon_sym_LBRACE] = ACTIONS(700),
- [anon_sym_typeof] = ACTIONS(1180),
- [anon_sym_import] = ACTIONS(133),
- [anon_sym_let] = ACTIONS(1152),
- [anon_sym_BANG] = ACTIONS(1160),
- [anon_sym_LPAREN] = ACTIONS(41),
- [anon_sym_await] = ACTIONS(1164),
- [anon_sym_yield] = ACTIONS(1166),
- [anon_sym_LBRACK] = ACTIONS(65),
- [sym_glimmer_opening_tag] = ACTIONS(67),
- [anon_sym_DQUOTE] = ACTIONS(69),
- [anon_sym_SQUOTE] = ACTIONS(71),
- [anon_sym_class] = ACTIONS(709),
- [anon_sym_async] = ACTIONS(1170),
- [anon_sym_function] = ACTIONS(713),
- [anon_sym_new] = ACTIONS(1458),
- [anon_sym_using] = ACTIONS(1174),
- [anon_sym_PLUS] = ACTIONS(1180),
- [anon_sym_DASH] = ACTIONS(1180),
- [anon_sym_SLASH] = ACTIONS(83),
- [anon_sym_LT] = ACTIONS(85),
- [anon_sym_TILDE] = ACTIONS(1160),
- [anon_sym_void] = ACTIONS(1180),
- [anon_sym_delete] = ACTIONS(1180),
- [anon_sym_PLUS_PLUS] = ACTIONS(1182),
- [anon_sym_DASH_DASH] = ACTIONS(1182),
- [sym_comment] = ACTIONS(5),
- [anon_sym_BQUOTE] = ACTIONS(89),
- [sym_number] = ACTIONS(91),
- [sym_private_property_identifier] = ACTIONS(1188),
- [sym_this] = ACTIONS(95),
- [sym_super] = ACTIONS(95),
- [sym_true] = ACTIONS(95),
- [sym_false] = ACTIONS(95),
- [sym_null] = ACTIONS(95),
- [sym_undefined] = ACTIONS(1460),
- [anon_sym_AT] = ACTIONS(99),
- [anon_sym_static] = ACTIONS(1152),
- [anon_sym_readonly] = ACTIONS(1152),
- [anon_sym_get] = ACTIONS(1152),
- [anon_sym_set] = ACTIONS(1152),
- [anon_sym_declare] = ACTIONS(1152),
- [anon_sym_public] = ACTIONS(1152),
- [anon_sym_private] = ACTIONS(1152),
- [anon_sym_protected] = ACTIONS(1152),
- [anon_sym_override] = ACTIONS(1152),
- [anon_sym_module] = ACTIONS(1152),
- [anon_sym_any] = ACTIONS(1152),
- [anon_sym_number] = ACTIONS(1152),
- [anon_sym_boolean] = ACTIONS(1152),
- [anon_sym_string] = ACTIONS(1152),
- [anon_sym_symbol] = ACTIONS(1152),
- [anon_sym_object] = ACTIONS(1152),
- [sym_html_comment] = ACTIONS(5),
- },
- [393] = {
- [sym_import] = STATE(3334),
- [sym_parenthesized_expression] = STATE(1251),
- [sym_expression] = STATE(2026),
- [sym_primary_expression] = STATE(1468),
- [sym_yield_expression] = STATE(1634),
- [sym_object] = STATE(1650),
- [sym_object_pattern] = STATE(5633),
- [sym_array] = STATE(1650),
- [sym_array_pattern] = STATE(5633),
- [sym_glimmer_template] = STATE(1634),
- [sym_jsx_element] = STATE(1634),
- [sym_jsx_opening_element] = STATE(3026),
- [sym_jsx_self_closing_element] = STATE(1634),
- [sym_class] = STATE(1650),
- [sym_function_expression] = STATE(1650),
- [sym_generator_function] = STATE(1650),
- [sym_arrow_function] = STATE(1650),
- [sym__call_signature] = STATE(5828),
- [sym_call_expression] = STATE(1650),
- [sym_new_expression] = STATE(1634),
- [sym_await_expression] = STATE(1634),
- [sym_member_expression] = STATE(1251),
- [sym_subscript_expression] = STATE(1251),
- [sym_assignment_expression] = STATE(1634),
- [sym__augmented_assignment_lhs] = STATE(2900),
- [sym_augmented_assignment_expression] = STATE(1634),
- [sym__destructuring_pattern] = STATE(5633),
- [sym_ternary_expression] = STATE(1634),
- [sym_binary_expression] = STATE(1634),
- [sym_unary_expression] = STATE(1634),
- [sym_update_expression] = STATE(1634),
- [sym_string] = STATE(1650),
- [sym_template_string] = STATE(1650),
- [sym_regex] = STATE(1650),
- [sym_meta_property] = STATE(1650),
- [sym_decorator] = STATE(1244),
- [sym_formal_parameters] = STATE(3742),
- [sym_non_null_expression] = STATE(1251),
- [sym_as_expression] = STATE(1634),
- [sym_satisfies_expression] = STATE(1634),
- [sym_instantiation_expression] = STATE(1634),
- [sym_internal_module] = STATE(1634),
- [sym_type_parameters] = STATE(5349),
- [aux_sym_export_statement_repeat1] = STATE(4458),
- [sym_identifier] = ACTIONS(1428),
- [anon_sym_export] = ACTIONS(1044),
- [anon_sym_type] = ACTIONS(1044),
- [anon_sym_namespace] = ACTIONS(1046),
- [anon_sym_LBRACE] = ACTIONS(813),
- [anon_sym_typeof] = ACTIONS(650),
- [anon_sym_import] = ACTIONS(133),
- [anon_sym_let] = ACTIONS(1044),
- [anon_sym_BANG] = ACTIONS(622),
- [anon_sym_LPAREN] = ACTIONS(815),
- [anon_sym_await] = ACTIONS(624),
- [anon_sym_yield] = ACTIONS(626),
- [anon_sym_LBRACK] = ACTIONS(817),
- [sym_glimmer_opening_tag] = ACTIONS(148),
- [anon_sym_DQUOTE] = ACTIONS(150),
- [anon_sym_SQUOTE] = ACTIONS(152),
- [anon_sym_class] = ACTIONS(154),
- [anon_sym_async] = ACTIONS(1052),
- [anon_sym_function] = ACTIONS(158),
- [anon_sym_new] = ACTIONS(1436),
- [anon_sym_using] = ACTIONS(636),
- [anon_sym_PLUS] = ACTIONS(650),
- [anon_sym_DASH] = ACTIONS(650),
- [anon_sym_SLASH] = ACTIONS(646),
- [anon_sym_LT] = ACTIONS(181),
- [anon_sym_TILDE] = ACTIONS(622),
- [anon_sym_void] = ACTIONS(650),
- [anon_sym_delete] = ACTIONS(650),
- [anon_sym_PLUS_PLUS] = ACTIONS(652),
- [anon_sym_DASH_DASH] = ACTIONS(652),
- [sym_comment] = ACTIONS(5),
- [anon_sym_BQUOTE] = ACTIONS(825),
- [sym_number] = ACTIONS(787),
- [sym_private_property_identifier] = ACTIONS(654),
- [sym_this] = ACTIONS(200),
- [sym_super] = ACTIONS(200),
- [sym_true] = ACTIONS(200),
- [sym_false] = ACTIONS(200),
- [sym_null] = ACTIONS(200),
- [sym_undefined] = ACTIONS(1438),
- [anon_sym_AT] = ACTIONS(99),
- [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_override] = 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_object] = ACTIONS(1044),
- [sym_html_comment] = ACTIONS(5),
- },
- [394] = {
- [sym_import] = STATE(3306),
- [sym_parenthesized_expression] = STATE(1338),
- [sym_expression] = STATE(1986),
- [sym_primary_expression] = STATE(1946),
- [sym_yield_expression] = STATE(2234),
- [sym_object] = STATE(2310),
- [sym_object_pattern] = STATE(5571),
- [sym_array] = STATE(2310),
- [sym_array_pattern] = STATE(5571),
- [sym_glimmer_template] = STATE(2234),
- [sym_jsx_element] = STATE(2234),
- [sym_jsx_opening_element] = STATE(3051),
- [sym_jsx_self_closing_element] = STATE(2234),
- [sym_class] = STATE(2310),
- [sym_function_expression] = STATE(2310),
- [sym_generator_function] = STATE(2310),
- [sym_arrow_function] = STATE(2310),
- [sym__call_signature] = STATE(5569),
- [sym_call_expression] = STATE(2310),
- [sym_new_expression] = STATE(2234),
- [sym_await_expression] = STATE(2234),
- [sym_member_expression] = STATE(1338),
- [sym_subscript_expression] = STATE(1338),
- [sym_assignment_expression] = STATE(2234),
- [sym__augmented_assignment_lhs] = STATE(2899),
- [sym_augmented_assignment_expression] = STATE(2234),
- [sym__destructuring_pattern] = STATE(5571),
- [sym_ternary_expression] = STATE(2234),
- [sym_binary_expression] = STATE(2234),
- [sym_unary_expression] = STATE(2234),
- [sym_update_expression] = STATE(2234),
- [sym_string] = STATE(2310),
- [sym_template_string] = STATE(2310),
- [sym_regex] = STATE(2310),
- [sym_meta_property] = STATE(2310),
- [sym_decorator] = STATE(1244),
- [sym_formal_parameters] = STATE(3742),
- [sym_non_null_expression] = STATE(1338),
- [sym_as_expression] = STATE(2234),
- [sym_satisfies_expression] = STATE(2234),
- [sym_instantiation_expression] = STATE(2234),
- [sym_internal_module] = STATE(2234),
- [sym_type_parameters] = STATE(5349),
- [aux_sym_export_statement_repeat1] = STATE(4499),
- [sym_identifier] = ACTIONS(1454),
- [anon_sym_export] = ACTIONS(1152),
- [anon_sym_type] = ACTIONS(1152),
- [anon_sym_namespace] = ACTIONS(1154),
- [anon_sym_LBRACE] = ACTIONS(700),
- [anon_sym_typeof] = ACTIONS(1180),
- [anon_sym_import] = ACTIONS(133),
- [anon_sym_let] = ACTIONS(1152),
- [anon_sym_BANG] = ACTIONS(1160),
- [anon_sym_LPAREN] = ACTIONS(41),
- [anon_sym_await] = ACTIONS(1164),
- [anon_sym_yield] = ACTIONS(1166),
- [anon_sym_LBRACK] = ACTIONS(65),
- [sym_glimmer_opening_tag] = ACTIONS(67),
- [anon_sym_DQUOTE] = ACTIONS(69),
- [anon_sym_SQUOTE] = ACTIONS(71),
- [anon_sym_class] = ACTIONS(709),
- [anon_sym_async] = ACTIONS(1170),
- [anon_sym_function] = ACTIONS(713),
- [anon_sym_new] = ACTIONS(1458),
- [anon_sym_using] = ACTIONS(1174),
- [anon_sym_PLUS] = ACTIONS(1180),
- [anon_sym_DASH] = ACTIONS(1180),
- [anon_sym_SLASH] = ACTIONS(83),
- [anon_sym_LT] = ACTIONS(85),
- [anon_sym_TILDE] = ACTIONS(1160),
- [anon_sym_void] = ACTIONS(1180),
- [anon_sym_delete] = ACTIONS(1180),
- [anon_sym_PLUS_PLUS] = ACTIONS(1182),
- [anon_sym_DASH_DASH] = ACTIONS(1182),
- [sym_comment] = ACTIONS(5),
- [anon_sym_BQUOTE] = ACTIONS(89),
- [sym_number] = ACTIONS(91),
- [sym_private_property_identifier] = ACTIONS(1188),
- [sym_this] = ACTIONS(95),
- [sym_super] = ACTIONS(95),
- [sym_true] = ACTIONS(95),
- [sym_false] = ACTIONS(95),
- [sym_null] = ACTIONS(95),
- [sym_undefined] = ACTIONS(1460),
- [anon_sym_AT] = ACTIONS(99),
- [anon_sym_static] = ACTIONS(1152),
- [anon_sym_readonly] = ACTIONS(1152),
- [anon_sym_get] = ACTIONS(1152),
- [anon_sym_set] = ACTIONS(1152),
- [anon_sym_declare] = ACTIONS(1152),
- [anon_sym_public] = ACTIONS(1152),
- [anon_sym_private] = ACTIONS(1152),
- [anon_sym_protected] = ACTIONS(1152),
- [anon_sym_override] = ACTIONS(1152),
- [anon_sym_module] = ACTIONS(1152),
- [anon_sym_any] = ACTIONS(1152),
- [anon_sym_number] = ACTIONS(1152),
- [anon_sym_boolean] = ACTIONS(1152),
- [anon_sym_string] = ACTIONS(1152),
- [anon_sym_symbol] = ACTIONS(1152),
- [anon_sym_object] = ACTIONS(1152),
- [sym_html_comment] = ACTIONS(5),
- },
- [395] = {
- [sym_import] = STATE(3306),
- [sym_parenthesized_expression] = STATE(1338),
- [sym_expression] = STATE(1988),
- [sym_primary_expression] = STATE(1946),
- [sym_yield_expression] = STATE(2234),
- [sym_object] = STATE(2310),
- [sym_object_pattern] = STATE(5571),
- [sym_array] = STATE(2310),
- [sym_array_pattern] = STATE(5571),
- [sym_glimmer_template] = STATE(2234),
- [sym_jsx_element] = STATE(2234),
- [sym_jsx_opening_element] = STATE(3051),
- [sym_jsx_self_closing_element] = STATE(2234),
- [sym_class] = STATE(2310),
- [sym_function_expression] = STATE(2310),
- [sym_generator_function] = STATE(2310),
- [sym_arrow_function] = STATE(2310),
- [sym__call_signature] = STATE(5569),
- [sym_call_expression] = STATE(2310),
- [sym_new_expression] = STATE(2234),
- [sym_await_expression] = STATE(2234),
- [sym_member_expression] = STATE(1338),
- [sym_subscript_expression] = STATE(1338),
- [sym_assignment_expression] = STATE(2234),
- [sym__augmented_assignment_lhs] = STATE(2899),
- [sym_augmented_assignment_expression] = STATE(2234),
- [sym__destructuring_pattern] = STATE(5571),
- [sym_ternary_expression] = STATE(2234),
- [sym_binary_expression] = STATE(2234),
- [sym_unary_expression] = STATE(2234),
- [sym_update_expression] = STATE(2234),
- [sym_string] = STATE(2310),
- [sym_template_string] = STATE(2310),
- [sym_regex] = STATE(2310),
- [sym_meta_property] = STATE(2310),
- [sym_decorator] = STATE(1244),
- [sym_formal_parameters] = STATE(3742),
- [sym_non_null_expression] = STATE(1338),
- [sym_as_expression] = STATE(2234),
- [sym_satisfies_expression] = STATE(2234),
- [sym_instantiation_expression] = STATE(2234),
- [sym_internal_module] = STATE(2234),
- [sym_type_parameters] = STATE(5349),
- [aux_sym_export_statement_repeat1] = STATE(4499),
- [sym_identifier] = ACTIONS(1454),
- [anon_sym_export] = ACTIONS(1152),
- [anon_sym_type] = ACTIONS(1152),
- [anon_sym_namespace] = ACTIONS(1154),
- [anon_sym_LBRACE] = ACTIONS(700),
- [anon_sym_typeof] = ACTIONS(1180),
- [anon_sym_import] = ACTIONS(133),
- [anon_sym_let] = ACTIONS(1152),
- [anon_sym_BANG] = ACTIONS(1160),
- [anon_sym_LPAREN] = ACTIONS(41),
- [anon_sym_await] = ACTIONS(1164),
- [anon_sym_yield] = ACTIONS(1166),
- [anon_sym_LBRACK] = ACTIONS(65),
- [sym_glimmer_opening_tag] = ACTIONS(67),
- [anon_sym_DQUOTE] = ACTIONS(69),
- [anon_sym_SQUOTE] = ACTIONS(71),
- [anon_sym_class] = ACTIONS(709),
- [anon_sym_async] = ACTIONS(1170),
- [anon_sym_function] = ACTIONS(713),
- [anon_sym_new] = ACTIONS(1458),
- [anon_sym_using] = ACTIONS(1174),
- [anon_sym_PLUS] = ACTIONS(1180),
- [anon_sym_DASH] = ACTIONS(1180),
- [anon_sym_SLASH] = ACTIONS(83),
- [anon_sym_LT] = ACTIONS(85),
- [anon_sym_TILDE] = ACTIONS(1160),
- [anon_sym_void] = ACTIONS(1180),
- [anon_sym_delete] = ACTIONS(1180),
- [anon_sym_PLUS_PLUS] = ACTIONS(1182),
- [anon_sym_DASH_DASH] = ACTIONS(1182),
- [sym_comment] = ACTIONS(5),
- [anon_sym_BQUOTE] = ACTIONS(89),
- [sym_number] = ACTIONS(91),
- [sym_private_property_identifier] = ACTIONS(1188),
- [sym_this] = ACTIONS(95),
- [sym_super] = ACTIONS(95),
- [sym_true] = ACTIONS(95),
- [sym_false] = ACTIONS(95),
- [sym_null] = ACTIONS(95),
- [sym_undefined] = ACTIONS(1460),
- [anon_sym_AT] = ACTIONS(99),
- [anon_sym_static] = ACTIONS(1152),
- [anon_sym_readonly] = ACTIONS(1152),
- [anon_sym_get] = ACTIONS(1152),
- [anon_sym_set] = ACTIONS(1152),
- [anon_sym_declare] = ACTIONS(1152),
- [anon_sym_public] = ACTIONS(1152),
- [anon_sym_private] = ACTIONS(1152),
- [anon_sym_protected] = ACTIONS(1152),
- [anon_sym_override] = ACTIONS(1152),
- [anon_sym_module] = ACTIONS(1152),
- [anon_sym_any] = ACTIONS(1152),
- [anon_sym_number] = ACTIONS(1152),
- [anon_sym_boolean] = ACTIONS(1152),
- [anon_sym_string] = ACTIONS(1152),
- [anon_sym_symbol] = ACTIONS(1152),
- [anon_sym_object] = ACTIONS(1152),
- [sym_html_comment] = ACTIONS(5),
- },
- [396] = {
- [sym_import] = STATE(3306),
- [sym_parenthesized_expression] = STATE(1338),
- [sym_expression] = STATE(1990),
- [sym_primary_expression] = STATE(1946),
- [sym_yield_expression] = STATE(2234),
- [sym_object] = STATE(2310),
- [sym_object_pattern] = STATE(5571),
- [sym_array] = STATE(2310),
- [sym_array_pattern] = STATE(5571),
- [sym_glimmer_template] = STATE(2234),
- [sym_jsx_element] = STATE(2234),
- [sym_jsx_opening_element] = STATE(3051),
- [sym_jsx_self_closing_element] = STATE(2234),
- [sym_class] = STATE(2310),
- [sym_function_expression] = STATE(2310),
- [sym_generator_function] = STATE(2310),
- [sym_arrow_function] = STATE(2310),
- [sym__call_signature] = STATE(5569),
- [sym_call_expression] = STATE(2310),
- [sym_new_expression] = STATE(2234),
- [sym_await_expression] = STATE(2234),
- [sym_member_expression] = STATE(1338),
- [sym_subscript_expression] = STATE(1338),
- [sym_assignment_expression] = STATE(2234),
- [sym__augmented_assignment_lhs] = STATE(2899),
- [sym_augmented_assignment_expression] = STATE(2234),
- [sym__destructuring_pattern] = STATE(5571),
- [sym_ternary_expression] = STATE(2234),
- [sym_binary_expression] = STATE(2234),
- [sym_unary_expression] = STATE(2234),
- [sym_update_expression] = STATE(2234),
- [sym_string] = STATE(2310),
- [sym_template_string] = STATE(2310),
- [sym_regex] = STATE(2310),
- [sym_meta_property] = STATE(2310),
- [sym_decorator] = STATE(1244),
- [sym_formal_parameters] = STATE(3742),
- [sym_non_null_expression] = STATE(1338),
- [sym_as_expression] = STATE(2234),
- [sym_satisfies_expression] = STATE(2234),
- [sym_instantiation_expression] = STATE(2234),
- [sym_internal_module] = STATE(2234),
- [sym_type_parameters] = STATE(5349),
- [aux_sym_export_statement_repeat1] = STATE(4499),
- [sym_identifier] = ACTIONS(1454),
- [anon_sym_export] = ACTIONS(1152),
- [anon_sym_type] = ACTIONS(1152),
- [anon_sym_namespace] = ACTIONS(1154),
- [anon_sym_LBRACE] = ACTIONS(700),
- [anon_sym_typeof] = ACTIONS(1180),
- [anon_sym_import] = ACTIONS(133),
- [anon_sym_let] = ACTIONS(1152),
- [anon_sym_BANG] = ACTIONS(1160),
- [anon_sym_LPAREN] = ACTIONS(41),
- [anon_sym_await] = ACTIONS(1164),
- [anon_sym_yield] = ACTIONS(1166),
- [anon_sym_LBRACK] = ACTIONS(65),
- [sym_glimmer_opening_tag] = ACTIONS(67),
- [anon_sym_DQUOTE] = ACTIONS(69),
- [anon_sym_SQUOTE] = ACTIONS(71),
- [anon_sym_class] = ACTIONS(709),
- [anon_sym_async] = ACTIONS(1170),
- [anon_sym_function] = ACTIONS(713),
- [anon_sym_new] = ACTIONS(1458),
- [anon_sym_using] = ACTIONS(1174),
- [anon_sym_PLUS] = ACTIONS(1180),
- [anon_sym_DASH] = ACTIONS(1180),
- [anon_sym_SLASH] = ACTIONS(83),
- [anon_sym_LT] = ACTIONS(85),
- [anon_sym_TILDE] = ACTIONS(1160),
- [anon_sym_void] = ACTIONS(1180),
- [anon_sym_delete] = ACTIONS(1180),
- [anon_sym_PLUS_PLUS] = ACTIONS(1182),
- [anon_sym_DASH_DASH] = ACTIONS(1182),
- [sym_comment] = ACTIONS(5),
- [anon_sym_BQUOTE] = ACTIONS(89),
- [sym_number] = ACTIONS(91),
- [sym_private_property_identifier] = ACTIONS(1188),
- [sym_this] = ACTIONS(95),
- [sym_super] = ACTIONS(95),
- [sym_true] = ACTIONS(95),
- [sym_false] = ACTIONS(95),
- [sym_null] = ACTIONS(95),
- [sym_undefined] = ACTIONS(1460),
- [anon_sym_AT] = ACTIONS(99),
- [anon_sym_static] = ACTIONS(1152),
- [anon_sym_readonly] = ACTIONS(1152),
- [anon_sym_get] = ACTIONS(1152),
- [anon_sym_set] = ACTIONS(1152),
- [anon_sym_declare] = ACTIONS(1152),
- [anon_sym_public] = ACTIONS(1152),
- [anon_sym_private] = ACTIONS(1152),
- [anon_sym_protected] = ACTIONS(1152),
- [anon_sym_override] = ACTIONS(1152),
- [anon_sym_module] = ACTIONS(1152),
- [anon_sym_any] = ACTIONS(1152),
- [anon_sym_number] = ACTIONS(1152),
- [anon_sym_boolean] = ACTIONS(1152),
- [anon_sym_string] = ACTIONS(1152),
- [anon_sym_symbol] = ACTIONS(1152),
- [anon_sym_object] = ACTIONS(1152),
- [sym_html_comment] = ACTIONS(5),
- },
- [397] = {
- [sym_import] = STATE(3334),
- [sym_parenthesized_expression] = STATE(1336),
- [sym_expression] = STATE(2203),
- [sym_primary_expression] = STATE(1468),
- [sym_yield_expression] = STATE(1634),
- [sym_object] = STATE(1650),
- [sym_object_pattern] = STATE(5745),
- [sym_array] = STATE(1650),
- [sym_array_pattern] = STATE(5745),
- [sym_glimmer_template] = STATE(1634),
- [sym_jsx_element] = STATE(1634),
- [sym_jsx_opening_element] = STATE(3026),
- [sym_jsx_self_closing_element] = STATE(1634),
- [sym_class] = STATE(1650),
- [sym_function_expression] = STATE(1650),
- [sym_generator_function] = STATE(1650),
- [sym_arrow_function] = STATE(1650),
- [sym__call_signature] = STATE(5553),
- [sym_call_expression] = STATE(1650),
- [sym_new_expression] = STATE(1634),
- [sym_await_expression] = STATE(1634),
- [sym_member_expression] = STATE(1336),
- [sym_subscript_expression] = STATE(1336),
- [sym_assignment_expression] = STATE(1634),
- [sym__augmented_assignment_lhs] = STATE(2884),
- [sym_augmented_assignment_expression] = STATE(1634),
- [sym__destructuring_pattern] = STATE(5745),
- [sym_ternary_expression] = STATE(1634),
- [sym_binary_expression] = STATE(1634),
- [sym_unary_expression] = STATE(1634),
- [sym_update_expression] = STATE(1634),
- [sym_string] = STATE(1650),
- [sym_template_string] = STATE(1650),
- [sym_regex] = STATE(1650),
- [sym_meta_property] = STATE(1650),
- [sym_decorator] = STATE(1244),
- [sym_formal_parameters] = STATE(3742),
- [sym_non_null_expression] = STATE(1336),
- [sym_as_expression] = STATE(1634),
- [sym_satisfies_expression] = STATE(1634),
- [sym_instantiation_expression] = STATE(1634),
- [sym_internal_module] = STATE(1634),
- [sym_type_parameters] = STATE(5349),
- [aux_sym_export_statement_repeat1] = STATE(4458),
- [sym_identifier] = ACTIONS(1470),
- [anon_sym_export] = ACTIONS(1250),
- [anon_sym_type] = ACTIONS(1250),
- [anon_sym_namespace] = ACTIONS(1252),
- [anon_sym_LBRACE] = ACTIONS(813),
- [anon_sym_typeof] = ACTIONS(1272),
- [anon_sym_import] = ACTIONS(133),
- [anon_sym_let] = ACTIONS(1250),
- [anon_sym_BANG] = ACTIONS(1256),
- [anon_sym_LPAREN] = ACTIONS(815),
- [anon_sym_await] = ACTIONS(1258),
- [anon_sym_yield] = ACTIONS(1260),
- [anon_sym_LBRACK] = ACTIONS(817),
- [sym_glimmer_opening_tag] = ACTIONS(148),
- [anon_sym_DQUOTE] = ACTIONS(150),
- [anon_sym_SQUOTE] = ACTIONS(152),
- [anon_sym_class] = ACTIONS(154),
- [anon_sym_async] = ACTIONS(1262),
- [anon_sym_function] = ACTIONS(158),
- [anon_sym_new] = ACTIONS(1474),
- [anon_sym_using] = ACTIONS(1266),
- [anon_sym_PLUS] = ACTIONS(1272),
- [anon_sym_DASH] = ACTIONS(1272),
- [anon_sym_SLASH] = ACTIONS(646),
- [anon_sym_LT] = ACTIONS(181),
- [anon_sym_TILDE] = ACTIONS(1256),
- [anon_sym_void] = ACTIONS(1272),
- [anon_sym_delete] = ACTIONS(1272),
- [anon_sym_PLUS_PLUS] = ACTIONS(1274),
- [anon_sym_DASH_DASH] = ACTIONS(1274),
- [sym_comment] = ACTIONS(5),
- [anon_sym_BQUOTE] = ACTIONS(825),
- [sym_number] = ACTIONS(787),
- [sym_private_property_identifier] = ACTIONS(1276),
- [sym_this] = ACTIONS(200),
- [sym_super] = ACTIONS(200),
- [sym_true] = ACTIONS(200),
- [sym_false] = ACTIONS(200),
- [sym_null] = ACTIONS(200),
- [sym_undefined] = ACTIONS(1476),
- [anon_sym_AT] = ACTIONS(99),
- [anon_sym_static] = ACTIONS(1250),
- [anon_sym_readonly] = ACTIONS(1250),
- [anon_sym_get] = ACTIONS(1250),
- [anon_sym_set] = ACTIONS(1250),
- [anon_sym_declare] = ACTIONS(1250),
- [anon_sym_public] = ACTIONS(1250),
- [anon_sym_private] = ACTIONS(1250),
- [anon_sym_protected] = ACTIONS(1250),
- [anon_sym_override] = ACTIONS(1250),
- [anon_sym_module] = ACTIONS(1250),
- [anon_sym_any] = ACTIONS(1250),
- [anon_sym_number] = ACTIONS(1250),
- [anon_sym_boolean] = ACTIONS(1250),
- [anon_sym_string] = ACTIONS(1250),
- [anon_sym_symbol] = ACTIONS(1250),
- [anon_sym_object] = ACTIONS(1250),
- [sym_html_comment] = ACTIONS(5),
- },
- [398] = {
- [sym_import] = STATE(3306),
- [sym_parenthesized_expression] = STATE(1338),
- [sym_expression] = STATE(1992),
- [sym_primary_expression] = STATE(1946),
- [sym_yield_expression] = STATE(2234),
- [sym_object] = STATE(2310),
- [sym_object_pattern] = STATE(5571),
- [sym_array] = STATE(2310),
- [sym_array_pattern] = STATE(5571),
- [sym_glimmer_template] = STATE(2234),
- [sym_jsx_element] = STATE(2234),
- [sym_jsx_opening_element] = STATE(3051),
- [sym_jsx_self_closing_element] = STATE(2234),
- [sym_class] = STATE(2310),
- [sym_function_expression] = STATE(2310),
- [sym_generator_function] = STATE(2310),
- [sym_arrow_function] = STATE(2310),
- [sym__call_signature] = STATE(5569),
- [sym_call_expression] = STATE(2310),
- [sym_new_expression] = STATE(2234),
- [sym_await_expression] = STATE(2234),
- [sym_member_expression] = STATE(1338),
- [sym_subscript_expression] = STATE(1338),
- [sym_assignment_expression] = STATE(2234),
- [sym__augmented_assignment_lhs] = STATE(2899),
- [sym_augmented_assignment_expression] = STATE(2234),
- [sym__destructuring_pattern] = STATE(5571),
- [sym_ternary_expression] = STATE(2234),
- [sym_binary_expression] = STATE(2234),
- [sym_unary_expression] = STATE(2234),
- [sym_update_expression] = STATE(2234),
- [sym_string] = STATE(2310),
- [sym_template_string] = STATE(2310),
- [sym_regex] = STATE(2310),
- [sym_meta_property] = STATE(2310),
- [sym_decorator] = STATE(1244),
- [sym_formal_parameters] = STATE(3742),
- [sym_non_null_expression] = STATE(1338),
- [sym_as_expression] = STATE(2234),
- [sym_satisfies_expression] = STATE(2234),
- [sym_instantiation_expression] = STATE(2234),
- [sym_internal_module] = STATE(2234),
- [sym_type_parameters] = STATE(5349),
- [aux_sym_export_statement_repeat1] = STATE(4499),
- [sym_identifier] = ACTIONS(1454),
- [anon_sym_export] = ACTIONS(1152),
- [anon_sym_type] = ACTIONS(1152),
- [anon_sym_namespace] = ACTIONS(1154),
- [anon_sym_LBRACE] = ACTIONS(700),
- [anon_sym_typeof] = ACTIONS(1180),
- [anon_sym_import] = ACTIONS(133),
- [anon_sym_let] = ACTIONS(1152),
- [anon_sym_BANG] = ACTIONS(1160),
- [anon_sym_LPAREN] = ACTIONS(41),
- [anon_sym_await] = ACTIONS(1164),
- [anon_sym_yield] = ACTIONS(1166),
- [anon_sym_LBRACK] = ACTIONS(65),
- [sym_glimmer_opening_tag] = ACTIONS(67),
- [anon_sym_DQUOTE] = ACTIONS(69),
- [anon_sym_SQUOTE] = ACTIONS(71),
- [anon_sym_class] = ACTIONS(709),
- [anon_sym_async] = ACTIONS(1170),
- [anon_sym_function] = ACTIONS(713),
- [anon_sym_new] = ACTIONS(1458),
- [anon_sym_using] = ACTIONS(1174),
- [anon_sym_PLUS] = ACTIONS(1180),
- [anon_sym_DASH] = ACTIONS(1180),
- [anon_sym_SLASH] = ACTIONS(83),
- [anon_sym_LT] = ACTIONS(85),
- [anon_sym_TILDE] = ACTIONS(1160),
- [anon_sym_void] = ACTIONS(1180),
- [anon_sym_delete] = ACTIONS(1180),
- [anon_sym_PLUS_PLUS] = ACTIONS(1182),
- [anon_sym_DASH_DASH] = ACTIONS(1182),
- [sym_comment] = ACTIONS(5),
- [anon_sym_BQUOTE] = ACTIONS(89),
- [sym_number] = ACTIONS(91),
- [sym_private_property_identifier] = ACTIONS(1188),
- [sym_this] = ACTIONS(95),
- [sym_super] = ACTIONS(95),
- [sym_true] = ACTIONS(95),
- [sym_false] = ACTIONS(95),
- [sym_null] = ACTIONS(95),
- [sym_undefined] = ACTIONS(1460),
- [anon_sym_AT] = ACTIONS(99),
- [anon_sym_static] = ACTIONS(1152),
- [anon_sym_readonly] = ACTIONS(1152),
- [anon_sym_get] = ACTIONS(1152),
- [anon_sym_set] = ACTIONS(1152),
- [anon_sym_declare] = ACTIONS(1152),
- [anon_sym_public] = ACTIONS(1152),
- [anon_sym_private] = ACTIONS(1152),
- [anon_sym_protected] = ACTIONS(1152),
- [anon_sym_override] = ACTIONS(1152),
- [anon_sym_module] = ACTIONS(1152),
- [anon_sym_any] = ACTIONS(1152),
- [anon_sym_number] = ACTIONS(1152),
- [anon_sym_boolean] = ACTIONS(1152),
- [anon_sym_string] = ACTIONS(1152),
- [anon_sym_symbol] = ACTIONS(1152),
- [anon_sym_object] = ACTIONS(1152),
- [sym_html_comment] = ACTIONS(5),
- },
- [399] = {
- [sym_import] = STATE(3306),
- [sym_parenthesized_expression] = STATE(1338),
- [sym_expression] = STATE(1994),
- [sym_primary_expression] = STATE(1946),
- [sym_yield_expression] = STATE(2234),
- [sym_object] = STATE(2310),
- [sym_object_pattern] = STATE(5571),
- [sym_array] = STATE(2310),
- [sym_array_pattern] = STATE(5571),
- [sym_glimmer_template] = STATE(2234),
- [sym_jsx_element] = STATE(2234),
- [sym_jsx_opening_element] = STATE(3051),
- [sym_jsx_self_closing_element] = STATE(2234),
- [sym_class] = STATE(2310),
- [sym_function_expression] = STATE(2310),
- [sym_generator_function] = STATE(2310),
- [sym_arrow_function] = STATE(2310),
- [sym__call_signature] = STATE(5569),
- [sym_call_expression] = STATE(2310),
- [sym_new_expression] = STATE(2234),
- [sym_await_expression] = STATE(2234),
- [sym_member_expression] = STATE(1338),
- [sym_subscript_expression] = STATE(1338),
- [sym_assignment_expression] = STATE(2234),
- [sym__augmented_assignment_lhs] = STATE(2899),
- [sym_augmented_assignment_expression] = STATE(2234),
- [sym__destructuring_pattern] = STATE(5571),
- [sym_ternary_expression] = STATE(2234),
- [sym_binary_expression] = STATE(2234),
- [sym_unary_expression] = STATE(2234),
- [sym_update_expression] = STATE(2234),
- [sym_string] = STATE(2310),
- [sym_template_string] = STATE(2310),
- [sym_regex] = STATE(2310),
- [sym_meta_property] = STATE(2310),
- [sym_decorator] = STATE(1244),
- [sym_formal_parameters] = STATE(3742),
- [sym_non_null_expression] = STATE(1338),
- [sym_as_expression] = STATE(2234),
- [sym_satisfies_expression] = STATE(2234),
- [sym_instantiation_expression] = STATE(2234),
- [sym_internal_module] = STATE(2234),
- [sym_type_parameters] = STATE(5349),
- [aux_sym_export_statement_repeat1] = STATE(4499),
- [sym_identifier] = ACTIONS(1454),
- [anon_sym_export] = ACTIONS(1152),
- [anon_sym_type] = ACTIONS(1152),
- [anon_sym_namespace] = ACTIONS(1154),
- [anon_sym_LBRACE] = ACTIONS(700),
- [anon_sym_typeof] = ACTIONS(1180),
- [anon_sym_import] = ACTIONS(133),
- [anon_sym_let] = ACTIONS(1152),
- [anon_sym_BANG] = ACTIONS(1160),
- [anon_sym_LPAREN] = ACTIONS(41),
- [anon_sym_await] = ACTIONS(1164),
- [anon_sym_yield] = ACTIONS(1166),
- [anon_sym_LBRACK] = ACTIONS(65),
- [sym_glimmer_opening_tag] = ACTIONS(67),
- [anon_sym_DQUOTE] = ACTIONS(69),
- [anon_sym_SQUOTE] = ACTIONS(71),
- [anon_sym_class] = ACTIONS(709),
- [anon_sym_async] = ACTIONS(1170),
- [anon_sym_function] = ACTIONS(713),
- [anon_sym_new] = ACTIONS(1458),
- [anon_sym_using] = ACTIONS(1174),
- [anon_sym_PLUS] = ACTIONS(1180),
- [anon_sym_DASH] = ACTIONS(1180),
- [anon_sym_SLASH] = ACTIONS(83),
- [anon_sym_LT] = ACTIONS(85),
- [anon_sym_TILDE] = ACTIONS(1160),
- [anon_sym_void] = ACTIONS(1180),
- [anon_sym_delete] = ACTIONS(1180),
- [anon_sym_PLUS_PLUS] = ACTIONS(1182),
- [anon_sym_DASH_DASH] = ACTIONS(1182),
- [sym_comment] = ACTIONS(5),
- [anon_sym_BQUOTE] = ACTIONS(89),
- [sym_number] = ACTIONS(91),
- [sym_private_property_identifier] = ACTIONS(1188),
- [sym_this] = ACTIONS(95),
- [sym_super] = ACTIONS(95),
- [sym_true] = ACTIONS(95),
- [sym_false] = ACTIONS(95),
- [sym_null] = ACTIONS(95),
- [sym_undefined] = ACTIONS(1460),
- [anon_sym_AT] = ACTIONS(99),
- [anon_sym_static] = ACTIONS(1152),
- [anon_sym_readonly] = ACTIONS(1152),
- [anon_sym_get] = ACTIONS(1152),
- [anon_sym_set] = ACTIONS(1152),
- [anon_sym_declare] = ACTIONS(1152),
- [anon_sym_public] = ACTIONS(1152),
- [anon_sym_private] = ACTIONS(1152),
- [anon_sym_protected] = ACTIONS(1152),
- [anon_sym_override] = ACTIONS(1152),
- [anon_sym_module] = ACTIONS(1152),
- [anon_sym_any] = ACTIONS(1152),
- [anon_sym_number] = ACTIONS(1152),
- [anon_sym_boolean] = ACTIONS(1152),
- [anon_sym_string] = ACTIONS(1152),
- [anon_sym_symbol] = ACTIONS(1152),
- [anon_sym_object] = ACTIONS(1152),
- [sym_html_comment] = ACTIONS(5),
- },
- [400] = {
- [sym_import] = STATE(3306),
- [sym_parenthesized_expression] = STATE(1338),
- [sym_expression] = STATE(1995),
- [sym_primary_expression] = STATE(1946),
- [sym_yield_expression] = STATE(2234),
- [sym_object] = STATE(2310),
- [sym_object_pattern] = STATE(5571),
- [sym_array] = STATE(2310),
- [sym_array_pattern] = STATE(5571),
- [sym_glimmer_template] = STATE(2234),
- [sym_jsx_element] = STATE(2234),
- [sym_jsx_opening_element] = STATE(3051),
- [sym_jsx_self_closing_element] = STATE(2234),
- [sym_class] = STATE(2310),
- [sym_function_expression] = STATE(2310),
- [sym_generator_function] = STATE(2310),
- [sym_arrow_function] = STATE(2310),
- [sym__call_signature] = STATE(5569),
- [sym_call_expression] = STATE(2310),
- [sym_new_expression] = STATE(2234),
- [sym_await_expression] = STATE(2234),
- [sym_member_expression] = STATE(1338),
- [sym_subscript_expression] = STATE(1338),
- [sym_assignment_expression] = STATE(2234),
- [sym__augmented_assignment_lhs] = STATE(2899),
- [sym_augmented_assignment_expression] = STATE(2234),
- [sym__destructuring_pattern] = STATE(5571),
- [sym_ternary_expression] = STATE(2234),
- [sym_binary_expression] = STATE(2234),
- [sym_unary_expression] = STATE(2234),
- [sym_update_expression] = STATE(2234),
- [sym_string] = STATE(2310),
- [sym_template_string] = STATE(2310),
- [sym_regex] = STATE(2310),
- [sym_meta_property] = STATE(2310),
- [sym_decorator] = STATE(1244),
- [sym_formal_parameters] = STATE(3742),
- [sym_non_null_expression] = STATE(1338),
- [sym_as_expression] = STATE(2234),
- [sym_satisfies_expression] = STATE(2234),
- [sym_instantiation_expression] = STATE(2234),
- [sym_internal_module] = STATE(2234),
- [sym_type_parameters] = STATE(5349),
- [aux_sym_export_statement_repeat1] = STATE(4499),
- [sym_identifier] = ACTIONS(1454),
- [anon_sym_export] = ACTIONS(1152),
- [anon_sym_type] = ACTIONS(1152),
- [anon_sym_namespace] = ACTIONS(1154),
- [anon_sym_LBRACE] = ACTIONS(700),
- [anon_sym_typeof] = ACTIONS(1180),
- [anon_sym_import] = ACTIONS(133),
- [anon_sym_let] = ACTIONS(1152),
- [anon_sym_BANG] = ACTIONS(1160),
- [anon_sym_LPAREN] = ACTIONS(41),
- [anon_sym_await] = ACTIONS(1164),
- [anon_sym_yield] = ACTIONS(1166),
- [anon_sym_LBRACK] = ACTIONS(65),
- [sym_glimmer_opening_tag] = ACTIONS(67),
- [anon_sym_DQUOTE] = ACTIONS(69),
- [anon_sym_SQUOTE] = ACTIONS(71),
- [anon_sym_class] = ACTIONS(709),
- [anon_sym_async] = ACTIONS(1170),
- [anon_sym_function] = ACTIONS(713),
- [anon_sym_new] = ACTIONS(1458),
- [anon_sym_using] = ACTIONS(1174),
- [anon_sym_PLUS] = ACTIONS(1180),
- [anon_sym_DASH] = ACTIONS(1180),
- [anon_sym_SLASH] = ACTIONS(83),
- [anon_sym_LT] = ACTIONS(85),
- [anon_sym_TILDE] = ACTIONS(1160),
- [anon_sym_void] = ACTIONS(1180),
- [anon_sym_delete] = ACTIONS(1180),
- [anon_sym_PLUS_PLUS] = ACTIONS(1182),
- [anon_sym_DASH_DASH] = ACTIONS(1182),
- [sym_comment] = ACTIONS(5),
- [anon_sym_BQUOTE] = ACTIONS(89),
- [sym_number] = ACTIONS(91),
- [sym_private_property_identifier] = ACTIONS(1188),
- [sym_this] = ACTIONS(95),
- [sym_super] = ACTIONS(95),
- [sym_true] = ACTIONS(95),
- [sym_false] = ACTIONS(95),
- [sym_null] = ACTIONS(95),
- [sym_undefined] = ACTIONS(1460),
- [anon_sym_AT] = ACTIONS(99),
- [anon_sym_static] = ACTIONS(1152),
- [anon_sym_readonly] = ACTIONS(1152),
- [anon_sym_get] = ACTIONS(1152),
- [anon_sym_set] = ACTIONS(1152),
- [anon_sym_declare] = ACTIONS(1152),
- [anon_sym_public] = ACTIONS(1152),
- [anon_sym_private] = ACTIONS(1152),
- [anon_sym_protected] = ACTIONS(1152),
- [anon_sym_override] = ACTIONS(1152),
- [anon_sym_module] = ACTIONS(1152),
- [anon_sym_any] = ACTIONS(1152),
- [anon_sym_number] = ACTIONS(1152),
- [anon_sym_boolean] = ACTIONS(1152),
- [anon_sym_string] = ACTIONS(1152),
- [anon_sym_symbol] = ACTIONS(1152),
- [anon_sym_object] = ACTIONS(1152),
- [sym_html_comment] = ACTIONS(5),
- },
- [401] = {
- [sym_import] = STATE(3306),
- [sym_parenthesized_expression] = STATE(1338),
- [sym_expression] = STATE(1996),
- [sym_primary_expression] = STATE(1946),
- [sym_yield_expression] = STATE(2234),
- [sym_object] = STATE(2310),
- [sym_object_pattern] = STATE(5571),
- [sym_array] = STATE(2310),
- [sym_array_pattern] = STATE(5571),
- [sym_glimmer_template] = STATE(2234),
- [sym_jsx_element] = STATE(2234),
- [sym_jsx_opening_element] = STATE(3051),
- [sym_jsx_self_closing_element] = STATE(2234),
- [sym_class] = STATE(2310),
- [sym_function_expression] = STATE(2310),
- [sym_generator_function] = STATE(2310),
- [sym_arrow_function] = STATE(2310),
- [sym__call_signature] = STATE(5569),
- [sym_call_expression] = STATE(2310),
- [sym_new_expression] = STATE(2234),
- [sym_await_expression] = STATE(2234),
- [sym_member_expression] = STATE(1338),
- [sym_subscript_expression] = STATE(1338),
- [sym_assignment_expression] = STATE(2234),
- [sym__augmented_assignment_lhs] = STATE(2899),
- [sym_augmented_assignment_expression] = STATE(2234),
- [sym__destructuring_pattern] = STATE(5571),
- [sym_ternary_expression] = STATE(2234),
- [sym_binary_expression] = STATE(2234),
- [sym_unary_expression] = STATE(2234),
- [sym_update_expression] = STATE(2234),
- [sym_string] = STATE(2310),
- [sym_template_string] = STATE(2310),
- [sym_regex] = STATE(2310),
- [sym_meta_property] = STATE(2310),
- [sym_decorator] = STATE(1244),
- [sym_formal_parameters] = STATE(3742),
- [sym_non_null_expression] = STATE(1338),
- [sym_as_expression] = STATE(2234),
- [sym_satisfies_expression] = STATE(2234),
- [sym_instantiation_expression] = STATE(2234),
- [sym_internal_module] = STATE(2234),
- [sym_type_parameters] = STATE(5349),
- [aux_sym_export_statement_repeat1] = STATE(4499),
- [sym_identifier] = ACTIONS(1454),
- [anon_sym_export] = ACTIONS(1152),
- [anon_sym_type] = ACTIONS(1152),
- [anon_sym_namespace] = ACTIONS(1154),
- [anon_sym_LBRACE] = ACTIONS(700),
- [anon_sym_typeof] = ACTIONS(1180),
- [anon_sym_import] = ACTIONS(133),
- [anon_sym_let] = ACTIONS(1152),
- [anon_sym_BANG] = ACTIONS(1160),
- [anon_sym_LPAREN] = ACTIONS(41),
- [anon_sym_await] = ACTIONS(1164),
- [anon_sym_yield] = ACTIONS(1166),
- [anon_sym_LBRACK] = ACTIONS(65),
- [sym_glimmer_opening_tag] = ACTIONS(67),
- [anon_sym_DQUOTE] = ACTIONS(69),
- [anon_sym_SQUOTE] = ACTIONS(71),
- [anon_sym_class] = ACTIONS(709),
- [anon_sym_async] = ACTIONS(1170),
- [anon_sym_function] = ACTIONS(713),
- [anon_sym_new] = ACTIONS(1458),
- [anon_sym_using] = ACTIONS(1174),
- [anon_sym_PLUS] = ACTIONS(1180),
- [anon_sym_DASH] = ACTIONS(1180),
- [anon_sym_SLASH] = ACTIONS(83),
- [anon_sym_LT] = ACTIONS(85),
- [anon_sym_TILDE] = ACTIONS(1160),
- [anon_sym_void] = ACTIONS(1180),
- [anon_sym_delete] = ACTIONS(1180),
- [anon_sym_PLUS_PLUS] = ACTIONS(1182),
- [anon_sym_DASH_DASH] = ACTIONS(1182),
- [sym_comment] = ACTIONS(5),
- [anon_sym_BQUOTE] = ACTIONS(89),
- [sym_number] = ACTIONS(91),
- [sym_private_property_identifier] = ACTIONS(1188),
- [sym_this] = ACTIONS(95),
- [sym_super] = ACTIONS(95),
- [sym_true] = ACTIONS(95),
- [sym_false] = ACTIONS(95),
- [sym_null] = ACTIONS(95),
- [sym_undefined] = ACTIONS(1460),
- [anon_sym_AT] = ACTIONS(99),
- [anon_sym_static] = ACTIONS(1152),
- [anon_sym_readonly] = ACTIONS(1152),
- [anon_sym_get] = ACTIONS(1152),
- [anon_sym_set] = ACTIONS(1152),
- [anon_sym_declare] = ACTIONS(1152),
- [anon_sym_public] = ACTIONS(1152),
- [anon_sym_private] = ACTIONS(1152),
- [anon_sym_protected] = ACTIONS(1152),
- [anon_sym_override] = ACTIONS(1152),
- [anon_sym_module] = ACTIONS(1152),
- [anon_sym_any] = ACTIONS(1152),
- [anon_sym_number] = ACTIONS(1152),
- [anon_sym_boolean] = ACTIONS(1152),
- [anon_sym_string] = ACTIONS(1152),
- [anon_sym_symbol] = ACTIONS(1152),
- [anon_sym_object] = ACTIONS(1152),
- [sym_html_comment] = ACTIONS(5),
- },
- [402] = {
- [sym_import] = STATE(3306),
- [sym_parenthesized_expression] = STATE(1338),
- [sym_expression] = STATE(1997),
- [sym_primary_expression] = STATE(1946),
- [sym_yield_expression] = STATE(2234),
- [sym_object] = STATE(2310),
- [sym_object_pattern] = STATE(5571),
- [sym_array] = STATE(2310),
- [sym_array_pattern] = STATE(5571),
- [sym_glimmer_template] = STATE(2234),
- [sym_jsx_element] = STATE(2234),
- [sym_jsx_opening_element] = STATE(3051),
- [sym_jsx_self_closing_element] = STATE(2234),
- [sym_class] = STATE(2310),
- [sym_function_expression] = STATE(2310),
- [sym_generator_function] = STATE(2310),
- [sym_arrow_function] = STATE(2310),
- [sym__call_signature] = STATE(5569),
- [sym_call_expression] = STATE(2310),
- [sym_new_expression] = STATE(2234),
- [sym_await_expression] = STATE(2234),
- [sym_member_expression] = STATE(1338),
- [sym_subscript_expression] = STATE(1338),
- [sym_assignment_expression] = STATE(2234),
- [sym__augmented_assignment_lhs] = STATE(2899),
- [sym_augmented_assignment_expression] = STATE(2234),
- [sym__destructuring_pattern] = STATE(5571),
- [sym_ternary_expression] = STATE(2234),
- [sym_binary_expression] = STATE(2234),
- [sym_unary_expression] = STATE(2234),
- [sym_update_expression] = STATE(2234),
- [sym_string] = STATE(2310),
- [sym_template_string] = STATE(2310),
- [sym_regex] = STATE(2310),
- [sym_meta_property] = STATE(2310),
- [sym_decorator] = STATE(1244),
- [sym_formal_parameters] = STATE(3742),
- [sym_non_null_expression] = STATE(1338),
- [sym_as_expression] = STATE(2234),
- [sym_satisfies_expression] = STATE(2234),
- [sym_instantiation_expression] = STATE(2234),
- [sym_internal_module] = STATE(2234),
- [sym_type_parameters] = STATE(5349),
- [aux_sym_export_statement_repeat1] = STATE(4499),
- [sym_identifier] = ACTIONS(1454),
- [anon_sym_export] = ACTIONS(1152),
- [anon_sym_type] = ACTIONS(1152),
- [anon_sym_namespace] = ACTIONS(1154),
- [anon_sym_LBRACE] = ACTIONS(700),
- [anon_sym_typeof] = ACTIONS(1180),
- [anon_sym_import] = ACTIONS(133),
- [anon_sym_let] = ACTIONS(1152),
- [anon_sym_BANG] = ACTIONS(1160),
- [anon_sym_LPAREN] = ACTIONS(41),
- [anon_sym_await] = ACTIONS(1164),
- [anon_sym_yield] = ACTIONS(1166),
- [anon_sym_LBRACK] = ACTIONS(65),
- [sym_glimmer_opening_tag] = ACTIONS(67),
- [anon_sym_DQUOTE] = ACTIONS(69),
- [anon_sym_SQUOTE] = ACTIONS(71),
- [anon_sym_class] = ACTIONS(709),
- [anon_sym_async] = ACTIONS(1170),
- [anon_sym_function] = ACTIONS(713),
- [anon_sym_new] = ACTIONS(1458),
- [anon_sym_using] = ACTIONS(1174),
- [anon_sym_PLUS] = ACTIONS(1180),
- [anon_sym_DASH] = ACTIONS(1180),
- [anon_sym_SLASH] = ACTIONS(83),
- [anon_sym_LT] = ACTIONS(85),
- [anon_sym_TILDE] = ACTIONS(1160),
- [anon_sym_void] = ACTIONS(1180),
- [anon_sym_delete] = ACTIONS(1180),
- [anon_sym_PLUS_PLUS] = ACTIONS(1182),
- [anon_sym_DASH_DASH] = ACTIONS(1182),
- [sym_comment] = ACTIONS(5),
- [anon_sym_BQUOTE] = ACTIONS(89),
- [sym_number] = ACTIONS(91),
- [sym_private_property_identifier] = ACTIONS(1188),
- [sym_this] = ACTIONS(95),
- [sym_super] = ACTIONS(95),
- [sym_true] = ACTIONS(95),
- [sym_false] = ACTIONS(95),
- [sym_null] = ACTIONS(95),
- [sym_undefined] = ACTIONS(1460),
- [anon_sym_AT] = ACTIONS(99),
- [anon_sym_static] = ACTIONS(1152),
- [anon_sym_readonly] = ACTIONS(1152),
- [anon_sym_get] = ACTIONS(1152),
- [anon_sym_set] = ACTIONS(1152),
- [anon_sym_declare] = ACTIONS(1152),
- [anon_sym_public] = ACTIONS(1152),
- [anon_sym_private] = ACTIONS(1152),
- [anon_sym_protected] = ACTIONS(1152),
- [anon_sym_override] = ACTIONS(1152),
- [anon_sym_module] = ACTIONS(1152),
- [anon_sym_any] = ACTIONS(1152),
- [anon_sym_number] = ACTIONS(1152),
- [anon_sym_boolean] = ACTIONS(1152),
- [anon_sym_string] = ACTIONS(1152),
- [anon_sym_symbol] = ACTIONS(1152),
- [anon_sym_object] = ACTIONS(1152),
- [sym_html_comment] = ACTIONS(5),
- },
- [403] = {
- [sym_import] = STATE(3306),
- [sym_parenthesized_expression] = STATE(1338),
- [sym_expression] = STATE(1998),
- [sym_primary_expression] = STATE(1946),
- [sym_yield_expression] = STATE(2234),
- [sym_object] = STATE(2310),
- [sym_object_pattern] = STATE(5571),
- [sym_array] = STATE(2310),
- [sym_array_pattern] = STATE(5571),
- [sym_glimmer_template] = STATE(2234),
- [sym_jsx_element] = STATE(2234),
- [sym_jsx_opening_element] = STATE(3051),
- [sym_jsx_self_closing_element] = STATE(2234),
- [sym_class] = STATE(2310),
- [sym_function_expression] = STATE(2310),
- [sym_generator_function] = STATE(2310),
- [sym_arrow_function] = STATE(2310),
- [sym__call_signature] = STATE(5569),
- [sym_call_expression] = STATE(2310),
- [sym_new_expression] = STATE(2234),
- [sym_await_expression] = STATE(2234),
- [sym_member_expression] = STATE(1338),
- [sym_subscript_expression] = STATE(1338),
- [sym_assignment_expression] = STATE(2234),
- [sym__augmented_assignment_lhs] = STATE(2899),
- [sym_augmented_assignment_expression] = STATE(2234),
- [sym__destructuring_pattern] = STATE(5571),
- [sym_ternary_expression] = STATE(2234),
- [sym_binary_expression] = STATE(2234),
- [sym_unary_expression] = STATE(2234),
- [sym_update_expression] = STATE(2234),
- [sym_string] = STATE(2310),
- [sym_template_string] = STATE(2310),
- [sym_regex] = STATE(2310),
- [sym_meta_property] = STATE(2310),
- [sym_decorator] = STATE(1244),
- [sym_formal_parameters] = STATE(3742),
- [sym_non_null_expression] = STATE(1338),
- [sym_as_expression] = STATE(2234),
- [sym_satisfies_expression] = STATE(2234),
- [sym_instantiation_expression] = STATE(2234),
- [sym_internal_module] = STATE(2234),
- [sym_type_parameters] = STATE(5349),
- [aux_sym_export_statement_repeat1] = STATE(4499),
- [sym_identifier] = ACTIONS(1454),
- [anon_sym_export] = ACTIONS(1152),
- [anon_sym_type] = ACTIONS(1152),
- [anon_sym_namespace] = ACTIONS(1154),
- [anon_sym_LBRACE] = ACTIONS(700),
- [anon_sym_typeof] = ACTIONS(1180),
- [anon_sym_import] = ACTIONS(133),
- [anon_sym_let] = ACTIONS(1152),
- [anon_sym_BANG] = ACTIONS(1160),
- [anon_sym_LPAREN] = ACTIONS(41),
- [anon_sym_await] = ACTIONS(1164),
- [anon_sym_yield] = ACTIONS(1166),
- [anon_sym_LBRACK] = ACTIONS(65),
- [sym_glimmer_opening_tag] = ACTIONS(67),
- [anon_sym_DQUOTE] = ACTIONS(69),
- [anon_sym_SQUOTE] = ACTIONS(71),
- [anon_sym_class] = ACTIONS(709),
- [anon_sym_async] = ACTIONS(1170),
- [anon_sym_function] = ACTIONS(713),
- [anon_sym_new] = ACTIONS(1458),
- [anon_sym_using] = ACTIONS(1174),
- [anon_sym_PLUS] = ACTIONS(1180),
- [anon_sym_DASH] = ACTIONS(1180),
- [anon_sym_SLASH] = ACTIONS(83),
- [anon_sym_LT] = ACTIONS(85),
- [anon_sym_TILDE] = ACTIONS(1160),
- [anon_sym_void] = ACTIONS(1180),
- [anon_sym_delete] = ACTIONS(1180),
- [anon_sym_PLUS_PLUS] = ACTIONS(1182),
- [anon_sym_DASH_DASH] = ACTIONS(1182),
- [sym_comment] = ACTIONS(5),
- [anon_sym_BQUOTE] = ACTIONS(89),
- [sym_number] = ACTIONS(91),
- [sym_private_property_identifier] = ACTIONS(1188),
- [sym_this] = ACTIONS(95),
- [sym_super] = ACTIONS(95),
- [sym_true] = ACTIONS(95),
- [sym_false] = ACTIONS(95),
- [sym_null] = ACTIONS(95),
- [sym_undefined] = ACTIONS(1460),
- [anon_sym_AT] = ACTIONS(99),
- [anon_sym_static] = ACTIONS(1152),
- [anon_sym_readonly] = ACTIONS(1152),
- [anon_sym_get] = ACTIONS(1152),
- [anon_sym_set] = ACTIONS(1152),
- [anon_sym_declare] = ACTIONS(1152),
- [anon_sym_public] = ACTIONS(1152),
- [anon_sym_private] = ACTIONS(1152),
- [anon_sym_protected] = ACTIONS(1152),
- [anon_sym_override] = ACTIONS(1152),
- [anon_sym_module] = ACTIONS(1152),
- [anon_sym_any] = ACTIONS(1152),
- [anon_sym_number] = ACTIONS(1152),
- [anon_sym_boolean] = ACTIONS(1152),
- [anon_sym_string] = ACTIONS(1152),
- [anon_sym_symbol] = ACTIONS(1152),
- [anon_sym_object] = ACTIONS(1152),
- [sym_html_comment] = ACTIONS(5),
- },
- [404] = {
- [sym_import] = STATE(3306),
- [sym_parenthesized_expression] = STATE(1338),
- [sym_expression] = STATE(1999),
- [sym_primary_expression] = STATE(1946),
- [sym_yield_expression] = STATE(2234),
- [sym_object] = STATE(2310),
- [sym_object_pattern] = STATE(5571),
- [sym_array] = STATE(2310),
- [sym_array_pattern] = STATE(5571),
- [sym_glimmer_template] = STATE(2234),
- [sym_jsx_element] = STATE(2234),
- [sym_jsx_opening_element] = STATE(3051),
- [sym_jsx_self_closing_element] = STATE(2234),
- [sym_class] = STATE(2310),
- [sym_function_expression] = STATE(2310),
- [sym_generator_function] = STATE(2310),
- [sym_arrow_function] = STATE(2310),
- [sym__call_signature] = STATE(5569),
- [sym_call_expression] = STATE(2310),
- [sym_new_expression] = STATE(2234),
- [sym_await_expression] = STATE(2234),
- [sym_member_expression] = STATE(1338),
- [sym_subscript_expression] = STATE(1338),
- [sym_assignment_expression] = STATE(2234),
- [sym__augmented_assignment_lhs] = STATE(2899),
- [sym_augmented_assignment_expression] = STATE(2234),
- [sym__destructuring_pattern] = STATE(5571),
- [sym_ternary_expression] = STATE(2234),
- [sym_binary_expression] = STATE(2234),
- [sym_unary_expression] = STATE(2234),
- [sym_update_expression] = STATE(2234),
- [sym_string] = STATE(2310),
- [sym_template_string] = STATE(2310),
- [sym_regex] = STATE(2310),
- [sym_meta_property] = STATE(2310),
- [sym_decorator] = STATE(1244),
- [sym_formal_parameters] = STATE(3742),
- [sym_non_null_expression] = STATE(1338),
- [sym_as_expression] = STATE(2234),
- [sym_satisfies_expression] = STATE(2234),
- [sym_instantiation_expression] = STATE(2234),
- [sym_internal_module] = STATE(2234),
- [sym_type_parameters] = STATE(5349),
- [aux_sym_export_statement_repeat1] = STATE(4499),
- [sym_identifier] = ACTIONS(1454),
- [anon_sym_export] = ACTIONS(1152),
- [anon_sym_type] = ACTIONS(1152),
- [anon_sym_namespace] = ACTIONS(1154),
- [anon_sym_LBRACE] = ACTIONS(700),
- [anon_sym_typeof] = ACTIONS(1180),
- [anon_sym_import] = ACTIONS(133),
- [anon_sym_let] = ACTIONS(1152),
- [anon_sym_BANG] = ACTIONS(1160),
- [anon_sym_LPAREN] = ACTIONS(41),
- [anon_sym_await] = ACTIONS(1164),
- [anon_sym_yield] = ACTIONS(1166),
- [anon_sym_LBRACK] = ACTIONS(65),
- [sym_glimmer_opening_tag] = ACTIONS(67),
- [anon_sym_DQUOTE] = ACTIONS(69),
- [anon_sym_SQUOTE] = ACTIONS(71),
- [anon_sym_class] = ACTIONS(709),
- [anon_sym_async] = ACTIONS(1170),
- [anon_sym_function] = ACTIONS(713),
- [anon_sym_new] = ACTIONS(1458),
- [anon_sym_using] = ACTIONS(1174),
- [anon_sym_PLUS] = ACTIONS(1180),
- [anon_sym_DASH] = ACTIONS(1180),
- [anon_sym_SLASH] = ACTIONS(83),
- [anon_sym_LT] = ACTIONS(85),
- [anon_sym_TILDE] = ACTIONS(1160),
- [anon_sym_void] = ACTIONS(1180),
- [anon_sym_delete] = ACTIONS(1180),
- [anon_sym_PLUS_PLUS] = ACTIONS(1182),
- [anon_sym_DASH_DASH] = ACTIONS(1182),
- [sym_comment] = ACTIONS(5),
- [anon_sym_BQUOTE] = ACTIONS(89),
- [sym_number] = ACTIONS(91),
- [sym_private_property_identifier] = ACTIONS(1188),
- [sym_this] = ACTIONS(95),
- [sym_super] = ACTIONS(95),
- [sym_true] = ACTIONS(95),
- [sym_false] = ACTIONS(95),
- [sym_null] = ACTIONS(95),
- [sym_undefined] = ACTIONS(1460),
- [anon_sym_AT] = ACTIONS(99),
- [anon_sym_static] = ACTIONS(1152),
- [anon_sym_readonly] = ACTIONS(1152),
- [anon_sym_get] = ACTIONS(1152),
- [anon_sym_set] = ACTIONS(1152),
- [anon_sym_declare] = ACTIONS(1152),
- [anon_sym_public] = ACTIONS(1152),
- [anon_sym_private] = ACTIONS(1152),
- [anon_sym_protected] = ACTIONS(1152),
- [anon_sym_override] = ACTIONS(1152),
- [anon_sym_module] = ACTIONS(1152),
- [anon_sym_any] = ACTIONS(1152),
- [anon_sym_number] = ACTIONS(1152),
- [anon_sym_boolean] = ACTIONS(1152),
- [anon_sym_string] = ACTIONS(1152),
- [anon_sym_symbol] = ACTIONS(1152),
- [anon_sym_object] = ACTIONS(1152),
- [sym_html_comment] = ACTIONS(5),
- },
- [405] = {
- [sym_import] = STATE(3306),
- [sym_parenthesized_expression] = STATE(1338),
- [sym_expression] = STATE(2000),
- [sym_primary_expression] = STATE(1946),
- [sym_yield_expression] = STATE(2234),
- [sym_object] = STATE(2310),
- [sym_object_pattern] = STATE(5571),
- [sym_array] = STATE(2310),
- [sym_array_pattern] = STATE(5571),
- [sym_glimmer_template] = STATE(2234),
- [sym_jsx_element] = STATE(2234),
- [sym_jsx_opening_element] = STATE(3051),
- [sym_jsx_self_closing_element] = STATE(2234),
- [sym_class] = STATE(2310),
- [sym_function_expression] = STATE(2310),
- [sym_generator_function] = STATE(2310),
- [sym_arrow_function] = STATE(2310),
- [sym__call_signature] = STATE(5569),
- [sym_call_expression] = STATE(2310),
- [sym_new_expression] = STATE(2234),
- [sym_await_expression] = STATE(2234),
- [sym_member_expression] = STATE(1338),
- [sym_subscript_expression] = STATE(1338),
- [sym_assignment_expression] = STATE(2234),
- [sym__augmented_assignment_lhs] = STATE(2899),
- [sym_augmented_assignment_expression] = STATE(2234),
- [sym__destructuring_pattern] = STATE(5571),
- [sym_ternary_expression] = STATE(2234),
- [sym_binary_expression] = STATE(2234),
- [sym_unary_expression] = STATE(2234),
- [sym_update_expression] = STATE(2234),
- [sym_string] = STATE(2310),
- [sym_template_string] = STATE(2310),
- [sym_regex] = STATE(2310),
- [sym_meta_property] = STATE(2310),
- [sym_decorator] = STATE(1244),
- [sym_formal_parameters] = STATE(3742),
- [sym_non_null_expression] = STATE(1338),
- [sym_as_expression] = STATE(2234),
- [sym_satisfies_expression] = STATE(2234),
- [sym_instantiation_expression] = STATE(2234),
- [sym_internal_module] = STATE(2234),
- [sym_type_parameters] = STATE(5349),
- [aux_sym_export_statement_repeat1] = STATE(4499),
- [sym_identifier] = ACTIONS(1454),
- [anon_sym_export] = ACTIONS(1152),
- [anon_sym_type] = ACTIONS(1152),
- [anon_sym_namespace] = ACTIONS(1154),
- [anon_sym_LBRACE] = ACTIONS(700),
- [anon_sym_typeof] = ACTIONS(1180),
- [anon_sym_import] = ACTIONS(133),
- [anon_sym_let] = ACTIONS(1152),
- [anon_sym_BANG] = ACTIONS(1160),
- [anon_sym_LPAREN] = ACTIONS(41),
- [anon_sym_await] = ACTIONS(1164),
- [anon_sym_yield] = ACTIONS(1166),
- [anon_sym_LBRACK] = ACTIONS(65),
- [sym_glimmer_opening_tag] = ACTIONS(67),
- [anon_sym_DQUOTE] = ACTIONS(69),
- [anon_sym_SQUOTE] = ACTIONS(71),
- [anon_sym_class] = ACTIONS(709),
- [anon_sym_async] = ACTIONS(1170),
- [anon_sym_function] = ACTIONS(713),
- [anon_sym_new] = ACTIONS(1458),
- [anon_sym_using] = ACTIONS(1174),
- [anon_sym_PLUS] = ACTIONS(1180),
- [anon_sym_DASH] = ACTIONS(1180),
- [anon_sym_SLASH] = ACTIONS(83),
- [anon_sym_LT] = ACTIONS(85),
- [anon_sym_TILDE] = ACTIONS(1160),
- [anon_sym_void] = ACTIONS(1180),
- [anon_sym_delete] = ACTIONS(1180),
- [anon_sym_PLUS_PLUS] = ACTIONS(1182),
- [anon_sym_DASH_DASH] = ACTIONS(1182),
- [sym_comment] = ACTIONS(5),
- [anon_sym_BQUOTE] = ACTIONS(89),
- [sym_number] = ACTIONS(91),
- [sym_private_property_identifier] = ACTIONS(1188),
- [sym_this] = ACTIONS(95),
- [sym_super] = ACTIONS(95),
- [sym_true] = ACTIONS(95),
- [sym_false] = ACTIONS(95),
- [sym_null] = ACTIONS(95),
- [sym_undefined] = ACTIONS(1460),
- [anon_sym_AT] = ACTIONS(99),
- [anon_sym_static] = ACTIONS(1152),
- [anon_sym_readonly] = ACTIONS(1152),
- [anon_sym_get] = ACTIONS(1152),
- [anon_sym_set] = ACTIONS(1152),
- [anon_sym_declare] = ACTIONS(1152),
- [anon_sym_public] = ACTIONS(1152),
- [anon_sym_private] = ACTIONS(1152),
- [anon_sym_protected] = ACTIONS(1152),
- [anon_sym_override] = ACTIONS(1152),
- [anon_sym_module] = ACTIONS(1152),
- [anon_sym_any] = ACTIONS(1152),
- [anon_sym_number] = ACTIONS(1152),
- [anon_sym_boolean] = ACTIONS(1152),
- [anon_sym_string] = ACTIONS(1152),
- [anon_sym_symbol] = ACTIONS(1152),
- [anon_sym_object] = ACTIONS(1152),
- [sym_html_comment] = ACTIONS(5),
- },
- [406] = {
- [sym_import] = STATE(3306),
- [sym_parenthesized_expression] = STATE(1338),
- [sym_expression] = STATE(2001),
- [sym_primary_expression] = STATE(1946),
- [sym_yield_expression] = STATE(2234),
- [sym_object] = STATE(2310),
- [sym_object_pattern] = STATE(5571),
- [sym_array] = STATE(2310),
- [sym_array_pattern] = STATE(5571),
- [sym_glimmer_template] = STATE(2234),
- [sym_jsx_element] = STATE(2234),
- [sym_jsx_opening_element] = STATE(3051),
- [sym_jsx_self_closing_element] = STATE(2234),
- [sym_class] = STATE(2310),
- [sym_function_expression] = STATE(2310),
- [sym_generator_function] = STATE(2310),
- [sym_arrow_function] = STATE(2310),
- [sym__call_signature] = STATE(5569),
- [sym_call_expression] = STATE(2310),
- [sym_new_expression] = STATE(2234),
- [sym_await_expression] = STATE(2234),
- [sym_member_expression] = STATE(1338),
- [sym_subscript_expression] = STATE(1338),
- [sym_assignment_expression] = STATE(2234),
- [sym__augmented_assignment_lhs] = STATE(2899),
- [sym_augmented_assignment_expression] = STATE(2234),
- [sym__destructuring_pattern] = STATE(5571),
- [sym_ternary_expression] = STATE(2234),
- [sym_binary_expression] = STATE(2234),
- [sym_unary_expression] = STATE(2234),
- [sym_update_expression] = STATE(2234),
- [sym_string] = STATE(2310),
- [sym_template_string] = STATE(2310),
- [sym_regex] = STATE(2310),
- [sym_meta_property] = STATE(2310),
- [sym_decorator] = STATE(1244),
- [sym_formal_parameters] = STATE(3742),
- [sym_non_null_expression] = STATE(1338),
- [sym_as_expression] = STATE(2234),
- [sym_satisfies_expression] = STATE(2234),
- [sym_instantiation_expression] = STATE(2234),
- [sym_internal_module] = STATE(2234),
- [sym_type_parameters] = STATE(5349),
- [aux_sym_export_statement_repeat1] = STATE(4499),
- [sym_identifier] = ACTIONS(1454),
- [anon_sym_export] = ACTIONS(1152),
- [anon_sym_type] = ACTIONS(1152),
- [anon_sym_namespace] = ACTIONS(1154),
- [anon_sym_LBRACE] = ACTIONS(700),
- [anon_sym_typeof] = ACTIONS(1180),
- [anon_sym_import] = ACTIONS(133),
- [anon_sym_let] = ACTIONS(1152),
- [anon_sym_BANG] = ACTIONS(1160),
- [anon_sym_LPAREN] = ACTIONS(41),
- [anon_sym_await] = ACTIONS(1164),
- [anon_sym_yield] = ACTIONS(1166),
- [anon_sym_LBRACK] = ACTIONS(65),
- [sym_glimmer_opening_tag] = ACTIONS(67),
- [anon_sym_DQUOTE] = ACTIONS(69),
- [anon_sym_SQUOTE] = ACTIONS(71),
- [anon_sym_class] = ACTIONS(709),
- [anon_sym_async] = ACTIONS(1170),
- [anon_sym_function] = ACTIONS(713),
- [anon_sym_new] = ACTIONS(1458),
- [anon_sym_using] = ACTIONS(1174),
- [anon_sym_PLUS] = ACTIONS(1180),
- [anon_sym_DASH] = ACTIONS(1180),
- [anon_sym_SLASH] = ACTIONS(83),
- [anon_sym_LT] = ACTIONS(85),
- [anon_sym_TILDE] = ACTIONS(1160),
- [anon_sym_void] = ACTIONS(1180),
- [anon_sym_delete] = ACTIONS(1180),
- [anon_sym_PLUS_PLUS] = ACTIONS(1182),
- [anon_sym_DASH_DASH] = ACTIONS(1182),
- [sym_comment] = ACTIONS(5),
- [anon_sym_BQUOTE] = ACTIONS(89),
- [sym_number] = ACTIONS(91),
- [sym_private_property_identifier] = ACTIONS(1188),
- [sym_this] = ACTIONS(95),
- [sym_super] = ACTIONS(95),
- [sym_true] = ACTIONS(95),
- [sym_false] = ACTIONS(95),
- [sym_null] = ACTIONS(95),
- [sym_undefined] = ACTIONS(1460),
- [anon_sym_AT] = ACTIONS(99),
- [anon_sym_static] = ACTIONS(1152),
- [anon_sym_readonly] = ACTIONS(1152),
- [anon_sym_get] = ACTIONS(1152),
- [anon_sym_set] = ACTIONS(1152),
- [anon_sym_declare] = ACTIONS(1152),
- [anon_sym_public] = ACTIONS(1152),
- [anon_sym_private] = ACTIONS(1152),
- [anon_sym_protected] = ACTIONS(1152),
- [anon_sym_override] = ACTIONS(1152),
- [anon_sym_module] = ACTIONS(1152),
- [anon_sym_any] = ACTIONS(1152),
- [anon_sym_number] = ACTIONS(1152),
- [anon_sym_boolean] = ACTIONS(1152),
- [anon_sym_string] = ACTIONS(1152),
- [anon_sym_symbol] = ACTIONS(1152),
- [anon_sym_object] = ACTIONS(1152),
- [sym_html_comment] = ACTIONS(5),
- },
- [407] = {
- [sym_import] = STATE(3306),
- [sym_parenthesized_expression] = STATE(1338),
- [sym_expression] = STATE(2002),
- [sym_primary_expression] = STATE(1946),
- [sym_yield_expression] = STATE(2234),
- [sym_object] = STATE(2310),
- [sym_object_pattern] = STATE(5571),
- [sym_array] = STATE(2310),
- [sym_array_pattern] = STATE(5571),
- [sym_glimmer_template] = STATE(2234),
- [sym_jsx_element] = STATE(2234),
- [sym_jsx_opening_element] = STATE(3051),
- [sym_jsx_self_closing_element] = STATE(2234),
- [sym_class] = STATE(2310),
- [sym_function_expression] = STATE(2310),
- [sym_generator_function] = STATE(2310),
- [sym_arrow_function] = STATE(2310),
- [sym__call_signature] = STATE(5569),
- [sym_call_expression] = STATE(2310),
- [sym_new_expression] = STATE(2234),
- [sym_await_expression] = STATE(2234),
- [sym_member_expression] = STATE(1338),
- [sym_subscript_expression] = STATE(1338),
- [sym_assignment_expression] = STATE(2234),
- [sym__augmented_assignment_lhs] = STATE(2899),
- [sym_augmented_assignment_expression] = STATE(2234),
- [sym__destructuring_pattern] = STATE(5571),
- [sym_ternary_expression] = STATE(2234),
- [sym_binary_expression] = STATE(2234),
- [sym_unary_expression] = STATE(2234),
- [sym_update_expression] = STATE(2234),
- [sym_string] = STATE(2310),
- [sym_template_string] = STATE(2310),
- [sym_regex] = STATE(2310),
- [sym_meta_property] = STATE(2310),
- [sym_decorator] = STATE(1244),
- [sym_formal_parameters] = STATE(3742),
- [sym_non_null_expression] = STATE(1338),
- [sym_as_expression] = STATE(2234),
- [sym_satisfies_expression] = STATE(2234),
- [sym_instantiation_expression] = STATE(2234),
- [sym_internal_module] = STATE(2234),
- [sym_type_parameters] = STATE(5349),
- [aux_sym_export_statement_repeat1] = STATE(4499),
- [sym_identifier] = ACTIONS(1454),
- [anon_sym_export] = ACTIONS(1152),
- [anon_sym_type] = ACTIONS(1152),
- [anon_sym_namespace] = ACTIONS(1154),
- [anon_sym_LBRACE] = ACTIONS(700),
- [anon_sym_typeof] = ACTIONS(1180),
- [anon_sym_import] = ACTIONS(133),
- [anon_sym_let] = ACTIONS(1152),
- [anon_sym_BANG] = ACTIONS(1160),
- [anon_sym_LPAREN] = ACTIONS(41),
- [anon_sym_await] = ACTIONS(1164),
- [anon_sym_yield] = ACTIONS(1166),
- [anon_sym_LBRACK] = ACTIONS(65),
- [sym_glimmer_opening_tag] = ACTIONS(67),
- [anon_sym_DQUOTE] = ACTIONS(69),
- [anon_sym_SQUOTE] = ACTIONS(71),
- [anon_sym_class] = ACTIONS(709),
- [anon_sym_async] = ACTIONS(1170),
- [anon_sym_function] = ACTIONS(713),
- [anon_sym_new] = ACTIONS(1458),
- [anon_sym_using] = ACTIONS(1174),
- [anon_sym_PLUS] = ACTIONS(1180),
- [anon_sym_DASH] = ACTIONS(1180),
- [anon_sym_SLASH] = ACTIONS(83),
- [anon_sym_LT] = ACTIONS(85),
- [anon_sym_TILDE] = ACTIONS(1160),
- [anon_sym_void] = ACTIONS(1180),
- [anon_sym_delete] = ACTIONS(1180),
- [anon_sym_PLUS_PLUS] = ACTIONS(1182),
- [anon_sym_DASH_DASH] = ACTIONS(1182),
- [sym_comment] = ACTIONS(5),
- [anon_sym_BQUOTE] = ACTIONS(89),
- [sym_number] = ACTIONS(91),
- [sym_private_property_identifier] = ACTIONS(1188),
- [sym_this] = ACTIONS(95),
- [sym_super] = ACTIONS(95),
- [sym_true] = ACTIONS(95),
- [sym_false] = ACTIONS(95),
- [sym_null] = ACTIONS(95),
- [sym_undefined] = ACTIONS(1460),
- [anon_sym_AT] = ACTIONS(99),
- [anon_sym_static] = ACTIONS(1152),
- [anon_sym_readonly] = ACTIONS(1152),
- [anon_sym_get] = ACTIONS(1152),
- [anon_sym_set] = ACTIONS(1152),
- [anon_sym_declare] = ACTIONS(1152),
- [anon_sym_public] = ACTIONS(1152),
- [anon_sym_private] = ACTIONS(1152),
- [anon_sym_protected] = ACTIONS(1152),
- [anon_sym_override] = ACTIONS(1152),
- [anon_sym_module] = ACTIONS(1152),
- [anon_sym_any] = ACTIONS(1152),
- [anon_sym_number] = ACTIONS(1152),
- [anon_sym_boolean] = ACTIONS(1152),
- [anon_sym_string] = ACTIONS(1152),
- [anon_sym_symbol] = ACTIONS(1152),
- [anon_sym_object] = ACTIONS(1152),
- [sym_html_comment] = ACTIONS(5),
- },
- [408] = {
- [sym_import] = STATE(3306),
- [sym_parenthesized_expression] = STATE(1338),
- [sym_expression] = STATE(2003),
- [sym_primary_expression] = STATE(1946),
- [sym_yield_expression] = STATE(2234),
- [sym_object] = STATE(2310),
- [sym_object_pattern] = STATE(5571),
- [sym_array] = STATE(2310),
- [sym_array_pattern] = STATE(5571),
- [sym_glimmer_template] = STATE(2234),
- [sym_jsx_element] = STATE(2234),
- [sym_jsx_opening_element] = STATE(3051),
- [sym_jsx_self_closing_element] = STATE(2234),
- [sym_class] = STATE(2310),
- [sym_function_expression] = STATE(2310),
- [sym_generator_function] = STATE(2310),
- [sym_arrow_function] = STATE(2310),
- [sym__call_signature] = STATE(5569),
- [sym_call_expression] = STATE(2310),
- [sym_new_expression] = STATE(2234),
- [sym_await_expression] = STATE(2234),
- [sym_member_expression] = STATE(1338),
- [sym_subscript_expression] = STATE(1338),
- [sym_assignment_expression] = STATE(2234),
- [sym__augmented_assignment_lhs] = STATE(2899),
- [sym_augmented_assignment_expression] = STATE(2234),
- [sym__destructuring_pattern] = STATE(5571),
- [sym_ternary_expression] = STATE(2234),
- [sym_binary_expression] = STATE(2234),
- [sym_unary_expression] = STATE(2234),
- [sym_update_expression] = STATE(2234),
- [sym_string] = STATE(2310),
- [sym_template_string] = STATE(2310),
- [sym_regex] = STATE(2310),
- [sym_meta_property] = STATE(2310),
- [sym_decorator] = STATE(1244),
- [sym_formal_parameters] = STATE(3742),
- [sym_non_null_expression] = STATE(1338),
- [sym_as_expression] = STATE(2234),
- [sym_satisfies_expression] = STATE(2234),
- [sym_instantiation_expression] = STATE(2234),
- [sym_internal_module] = STATE(2234),
- [sym_type_parameters] = STATE(5349),
- [aux_sym_export_statement_repeat1] = STATE(4499),
- [sym_identifier] = ACTIONS(1454),
- [anon_sym_export] = ACTIONS(1152),
- [anon_sym_type] = ACTIONS(1152),
- [anon_sym_namespace] = ACTIONS(1154),
- [anon_sym_LBRACE] = ACTIONS(700),
- [anon_sym_typeof] = ACTIONS(1180),
- [anon_sym_import] = ACTIONS(133),
- [anon_sym_let] = ACTIONS(1152),
- [anon_sym_BANG] = ACTIONS(1160),
- [anon_sym_LPAREN] = ACTIONS(41),
- [anon_sym_await] = ACTIONS(1164),
- [anon_sym_yield] = ACTIONS(1166),
- [anon_sym_LBRACK] = ACTIONS(65),
- [sym_glimmer_opening_tag] = ACTIONS(67),
- [anon_sym_DQUOTE] = ACTIONS(69),
- [anon_sym_SQUOTE] = ACTIONS(71),
- [anon_sym_class] = ACTIONS(709),
- [anon_sym_async] = ACTIONS(1170),
- [anon_sym_function] = ACTIONS(713),
- [anon_sym_new] = ACTIONS(1458),
- [anon_sym_using] = ACTIONS(1174),
- [anon_sym_PLUS] = ACTIONS(1180),
- [anon_sym_DASH] = ACTIONS(1180),
- [anon_sym_SLASH] = ACTIONS(83),
- [anon_sym_LT] = ACTIONS(85),
- [anon_sym_TILDE] = ACTIONS(1160),
- [anon_sym_void] = ACTIONS(1180),
- [anon_sym_delete] = ACTIONS(1180),
- [anon_sym_PLUS_PLUS] = ACTIONS(1182),
- [anon_sym_DASH_DASH] = ACTIONS(1182),
- [sym_comment] = ACTIONS(5),
- [anon_sym_BQUOTE] = ACTIONS(89),
- [sym_number] = ACTIONS(91),
- [sym_private_property_identifier] = ACTIONS(1188),
- [sym_this] = ACTIONS(95),
- [sym_super] = ACTIONS(95),
- [sym_true] = ACTIONS(95),
- [sym_false] = ACTIONS(95),
- [sym_null] = ACTIONS(95),
- [sym_undefined] = ACTIONS(1460),
- [anon_sym_AT] = ACTIONS(99),
- [anon_sym_static] = ACTIONS(1152),
- [anon_sym_readonly] = ACTIONS(1152),
- [anon_sym_get] = ACTIONS(1152),
- [anon_sym_set] = ACTIONS(1152),
- [anon_sym_declare] = ACTIONS(1152),
- [anon_sym_public] = ACTIONS(1152),
- [anon_sym_private] = ACTIONS(1152),
- [anon_sym_protected] = ACTIONS(1152),
- [anon_sym_override] = ACTIONS(1152),
- [anon_sym_module] = ACTIONS(1152),
- [anon_sym_any] = ACTIONS(1152),
- [anon_sym_number] = ACTIONS(1152),
- [anon_sym_boolean] = ACTIONS(1152),
- [anon_sym_string] = ACTIONS(1152),
- [anon_sym_symbol] = ACTIONS(1152),
- [anon_sym_object] = ACTIONS(1152),
- [sym_html_comment] = ACTIONS(5),
- },
- [409] = {
- [sym_import] = STATE(3306),
- [sym_parenthesized_expression] = STATE(1338),
- [sym_expression] = STATE(2006),
- [sym_primary_expression] = STATE(1946),
- [sym_yield_expression] = STATE(2234),
- [sym_object] = STATE(2310),
- [sym_object_pattern] = STATE(5571),
- [sym_array] = STATE(2310),
- [sym_array_pattern] = STATE(5571),
- [sym_glimmer_template] = STATE(2234),
- [sym_jsx_element] = STATE(2234),
- [sym_jsx_opening_element] = STATE(3051),
- [sym_jsx_self_closing_element] = STATE(2234),
- [sym_class] = STATE(2310),
- [sym_function_expression] = STATE(2310),
- [sym_generator_function] = STATE(2310),
- [sym_arrow_function] = STATE(2310),
- [sym__call_signature] = STATE(5569),
- [sym_call_expression] = STATE(2310),
- [sym_new_expression] = STATE(2234),
- [sym_await_expression] = STATE(2234),
- [sym_member_expression] = STATE(1338),
- [sym_subscript_expression] = STATE(1338),
- [sym_assignment_expression] = STATE(2234),
- [sym__augmented_assignment_lhs] = STATE(2899),
- [sym_augmented_assignment_expression] = STATE(2234),
- [sym__destructuring_pattern] = STATE(5571),
- [sym_ternary_expression] = STATE(2234),
- [sym_binary_expression] = STATE(2234),
- [sym_unary_expression] = STATE(2234),
- [sym_update_expression] = STATE(2234),
- [sym_string] = STATE(2310),
- [sym_template_string] = STATE(2310),
- [sym_regex] = STATE(2310),
- [sym_meta_property] = STATE(2310),
- [sym_decorator] = STATE(1244),
- [sym_formal_parameters] = STATE(3742),
- [sym_non_null_expression] = STATE(1338),
- [sym_as_expression] = STATE(2234),
- [sym_satisfies_expression] = STATE(2234),
- [sym_instantiation_expression] = STATE(2234),
- [sym_internal_module] = STATE(2234),
- [sym_type_parameters] = STATE(5349),
- [aux_sym_export_statement_repeat1] = STATE(4499),
- [sym_identifier] = ACTIONS(1454),
- [anon_sym_export] = ACTIONS(1152),
- [anon_sym_type] = ACTIONS(1152),
- [anon_sym_namespace] = ACTIONS(1154),
- [anon_sym_LBRACE] = ACTIONS(700),
- [anon_sym_typeof] = ACTIONS(1180),
- [anon_sym_import] = ACTIONS(133),
- [anon_sym_let] = ACTIONS(1152),
- [anon_sym_BANG] = ACTIONS(1160),
- [anon_sym_LPAREN] = ACTIONS(41),
- [anon_sym_await] = ACTIONS(1164),
- [anon_sym_yield] = ACTIONS(1166),
- [anon_sym_LBRACK] = ACTIONS(65),
- [sym_glimmer_opening_tag] = ACTIONS(67),
- [anon_sym_DQUOTE] = ACTIONS(69),
- [anon_sym_SQUOTE] = ACTIONS(71),
- [anon_sym_class] = ACTIONS(709),
- [anon_sym_async] = ACTIONS(1170),
- [anon_sym_function] = ACTIONS(713),
- [anon_sym_new] = ACTIONS(1458),
- [anon_sym_using] = ACTIONS(1174),
- [anon_sym_PLUS] = ACTIONS(1180),
- [anon_sym_DASH] = ACTIONS(1180),
- [anon_sym_SLASH] = ACTIONS(83),
- [anon_sym_LT] = ACTIONS(85),
- [anon_sym_TILDE] = ACTIONS(1160),
- [anon_sym_void] = ACTIONS(1180),
- [anon_sym_delete] = ACTIONS(1180),
- [anon_sym_PLUS_PLUS] = ACTIONS(1182),
- [anon_sym_DASH_DASH] = ACTIONS(1182),
- [sym_comment] = ACTIONS(5),
- [anon_sym_BQUOTE] = ACTIONS(89),
- [sym_number] = ACTIONS(91),
- [sym_private_property_identifier] = ACTIONS(1188),
- [sym_this] = ACTIONS(95),
- [sym_super] = ACTIONS(95),
- [sym_true] = ACTIONS(95),
- [sym_false] = ACTIONS(95),
- [sym_null] = ACTIONS(95),
- [sym_undefined] = ACTIONS(1460),
- [anon_sym_AT] = ACTIONS(99),
- [anon_sym_static] = ACTIONS(1152),
- [anon_sym_readonly] = ACTIONS(1152),
- [anon_sym_get] = ACTIONS(1152),
- [anon_sym_set] = ACTIONS(1152),
- [anon_sym_declare] = ACTIONS(1152),
- [anon_sym_public] = ACTIONS(1152),
- [anon_sym_private] = ACTIONS(1152),
- [anon_sym_protected] = ACTIONS(1152),
- [anon_sym_override] = ACTIONS(1152),
- [anon_sym_module] = ACTIONS(1152),
- [anon_sym_any] = ACTIONS(1152),
- [anon_sym_number] = ACTIONS(1152),
- [anon_sym_boolean] = ACTIONS(1152),
- [anon_sym_string] = ACTIONS(1152),
- [anon_sym_symbol] = ACTIONS(1152),
- [anon_sym_object] = ACTIONS(1152),
- [sym_html_comment] = ACTIONS(5),
- },
- [410] = {
- [sym_import] = STATE(3334),
- [sym_parenthesized_expression] = STATE(1369),
- [sym_expression] = STATE(2212),
- [sym_primary_expression] = STATE(1468),
- [sym_yield_expression] = STATE(1634),
- [sym_object] = STATE(1650),
- [sym_object_pattern] = STATE(5861),
- [sym_array] = STATE(1650),
- [sym_array_pattern] = STATE(5861),
- [sym_glimmer_template] = STATE(1634),
- [sym_jsx_element] = STATE(1634),
- [sym_jsx_opening_element] = STATE(3026),
- [sym_jsx_self_closing_element] = STATE(1634),
- [sym_class] = STATE(1650),
- [sym_function_expression] = STATE(1650),
- [sym_generator_function] = STATE(1650),
- [sym_arrow_function] = STATE(1650),
- [sym__call_signature] = STATE(5765),
- [sym_call_expression] = STATE(1650),
- [sym_new_expression] = STATE(1634),
- [sym_await_expression] = STATE(1634),
- [sym_member_expression] = STATE(1369),
- [sym_subscript_expression] = STATE(1369),
- [sym_assignment_expression] = STATE(1634),
- [sym__augmented_assignment_lhs] = STATE(2891),
- [sym_augmented_assignment_expression] = STATE(1634),
- [sym__destructuring_pattern] = STATE(5861),
- [sym_ternary_expression] = STATE(1634),
- [sym_binary_expression] = STATE(1634),
- [sym_unary_expression] = STATE(1634),
- [sym_update_expression] = STATE(1634),
- [sym_string] = STATE(1650),
- [sym_template_string] = STATE(1650),
- [sym_regex] = STATE(1650),
- [sym_meta_property] = STATE(1650),
- [sym_decorator] = STATE(1244),
- [sym_formal_parameters] = STATE(3742),
- [sym_non_null_expression] = STATE(1369),
- [sym_as_expression] = STATE(1634),
- [sym_satisfies_expression] = STATE(1634),
- [sym_instantiation_expression] = STATE(1634),
- [sym_internal_module] = STATE(1634),
- [sym_type_parameters] = STATE(5349),
- [aux_sym_export_statement_repeat1] = STATE(4458),
- [sym_identifier] = ACTIONS(1478),
- [anon_sym_export] = ACTIONS(1114),
- [anon_sym_type] = ACTIONS(1114),
- [anon_sym_namespace] = ACTIONS(1116),
- [anon_sym_LBRACE] = ACTIONS(813),
- [anon_sym_typeof] = ACTIONS(1138),
- [anon_sym_import] = ACTIONS(133),
- [anon_sym_let] = ACTIONS(1114),
- [anon_sym_BANG] = ACTIONS(1122),
- [anon_sym_LPAREN] = ACTIONS(815),
- [anon_sym_await] = ACTIONS(1124),
- [anon_sym_yield] = ACTIONS(1126),
- [anon_sym_LBRACK] = ACTIONS(817),
- [sym_glimmer_opening_tag] = ACTIONS(148),
- [anon_sym_DQUOTE] = ACTIONS(150),
- [anon_sym_SQUOTE] = ACTIONS(152),
- [anon_sym_class] = ACTIONS(154),
- [anon_sym_async] = ACTIONS(1128),
- [anon_sym_function] = ACTIONS(158),
- [anon_sym_new] = ACTIONS(1482),
- [anon_sym_using] = ACTIONS(1132),
- [anon_sym_PLUS] = ACTIONS(1138),
- [anon_sym_DASH] = ACTIONS(1138),
- [anon_sym_SLASH] = ACTIONS(646),
- [anon_sym_LT] = ACTIONS(181),
- [anon_sym_TILDE] = ACTIONS(1122),
- [anon_sym_void] = ACTIONS(1138),
- [anon_sym_delete] = ACTIONS(1138),
- [anon_sym_PLUS_PLUS] = ACTIONS(1140),
- [anon_sym_DASH_DASH] = ACTIONS(1140),
- [sym_comment] = ACTIONS(5),
- [anon_sym_BQUOTE] = ACTIONS(825),
- [sym_number] = ACTIONS(787),
- [sym_private_property_identifier] = ACTIONS(1142),
- [sym_this] = ACTIONS(200),
- [sym_super] = ACTIONS(200),
- [sym_true] = ACTIONS(200),
- [sym_false] = ACTIONS(200),
- [sym_null] = ACTIONS(200),
- [sym_undefined] = ACTIONS(1484),
- [anon_sym_AT] = ACTIONS(99),
- [anon_sym_static] = ACTIONS(1114),
- [anon_sym_readonly] = ACTIONS(1114),
- [anon_sym_get] = ACTIONS(1114),
- [anon_sym_set] = ACTIONS(1114),
- [anon_sym_declare] = ACTIONS(1114),
- [anon_sym_public] = ACTIONS(1114),
- [anon_sym_private] = ACTIONS(1114),
- [anon_sym_protected] = ACTIONS(1114),
- [anon_sym_override] = ACTIONS(1114),
- [anon_sym_module] = ACTIONS(1114),
- [anon_sym_any] = ACTIONS(1114),
- [anon_sym_number] = ACTIONS(1114),
- [anon_sym_boolean] = ACTIONS(1114),
- [anon_sym_string] = ACTIONS(1114),
- [anon_sym_symbol] = ACTIONS(1114),
- [anon_sym_object] = ACTIONS(1114),
- [sym_html_comment] = ACTIONS(5),
- },
- [411] = {
- [sym_import] = STATE(3334),
- [sym_parenthesized_expression] = STATE(1251),
- [sym_expression] = STATE(2028),
- [sym_primary_expression] = STATE(1468),
- [sym_yield_expression] = STATE(1634),
- [sym_object] = STATE(1650),
- [sym_object_pattern] = STATE(5633),
- [sym_array] = STATE(1650),
- [sym_array_pattern] = STATE(5633),
- [sym_glimmer_template] = STATE(1634),
- [sym_jsx_element] = STATE(1634),
- [sym_jsx_opening_element] = STATE(3026),
- [sym_jsx_self_closing_element] = STATE(1634),
- [sym_class] = STATE(1650),
- [sym_function_expression] = STATE(1650),
- [sym_generator_function] = STATE(1650),
- [sym_arrow_function] = STATE(1650),
- [sym__call_signature] = STATE(5828),
- [sym_call_expression] = STATE(1650),
- [sym_new_expression] = STATE(1634),
- [sym_await_expression] = STATE(1634),
- [sym_member_expression] = STATE(1251),
- [sym_subscript_expression] = STATE(1251),
- [sym_assignment_expression] = STATE(1634),
- [sym__augmented_assignment_lhs] = STATE(2900),
- [sym_augmented_assignment_expression] = STATE(1634),
- [sym__destructuring_pattern] = STATE(5633),
- [sym_ternary_expression] = STATE(1634),
- [sym_binary_expression] = STATE(1634),
- [sym_unary_expression] = STATE(1634),
- [sym_update_expression] = STATE(1634),
- [sym_string] = STATE(1650),
- [sym_template_string] = STATE(1650),
- [sym_regex] = STATE(1650),
- [sym_meta_property] = STATE(1650),
- [sym_decorator] = STATE(1244),
- [sym_formal_parameters] = STATE(3742),
- [sym_non_null_expression] = STATE(1251),
- [sym_as_expression] = STATE(1634),
- [sym_satisfies_expression] = STATE(1634),
- [sym_instantiation_expression] = STATE(1634),
- [sym_internal_module] = STATE(1634),
- [sym_type_parameters] = STATE(5349),
- [aux_sym_export_statement_repeat1] = STATE(4458),
- [sym_identifier] = ACTIONS(1428),
- [anon_sym_export] = ACTIONS(1044),
- [anon_sym_type] = ACTIONS(1044),
- [anon_sym_namespace] = ACTIONS(1046),
- [anon_sym_LBRACE] = ACTIONS(813),
- [anon_sym_typeof] = ACTIONS(650),
- [anon_sym_import] = ACTIONS(133),
- [anon_sym_let] = ACTIONS(1044),
- [anon_sym_BANG] = ACTIONS(622),
- [anon_sym_LPAREN] = ACTIONS(815),
- [anon_sym_await] = ACTIONS(624),
- [anon_sym_yield] = ACTIONS(626),
- [anon_sym_LBRACK] = ACTIONS(817),
- [sym_glimmer_opening_tag] = ACTIONS(148),
- [anon_sym_DQUOTE] = ACTIONS(150),
- [anon_sym_SQUOTE] = ACTIONS(152),
- [anon_sym_class] = ACTIONS(154),
- [anon_sym_async] = ACTIONS(1052),
- [anon_sym_function] = ACTIONS(158),
- [anon_sym_new] = ACTIONS(1436),
- [anon_sym_using] = ACTIONS(636),
- [anon_sym_PLUS] = ACTIONS(650),
- [anon_sym_DASH] = ACTIONS(650),
- [anon_sym_SLASH] = ACTIONS(646),
- [anon_sym_LT] = ACTIONS(181),
- [anon_sym_TILDE] = ACTIONS(622),
- [anon_sym_void] = ACTIONS(650),
- [anon_sym_delete] = ACTIONS(650),
- [anon_sym_PLUS_PLUS] = ACTIONS(652),
- [anon_sym_DASH_DASH] = ACTIONS(652),
- [sym_comment] = ACTIONS(5),
- [anon_sym_BQUOTE] = ACTIONS(825),
- [sym_number] = ACTIONS(787),
- [sym_private_property_identifier] = ACTIONS(654),
- [sym_this] = ACTIONS(200),
- [sym_super] = ACTIONS(200),
- [sym_true] = ACTIONS(200),
- [sym_false] = ACTIONS(200),
- [sym_null] = ACTIONS(200),
- [sym_undefined] = ACTIONS(1438),
- [anon_sym_AT] = ACTIONS(99),
- [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_override] = 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_object] = ACTIONS(1044),
- [sym_html_comment] = ACTIONS(5),
- },
- [412] = {
- [sym_import] = STATE(3306),
- [sym_parenthesized_expression] = STATE(1294),
- [sym_expression] = STATE(1741),
- [sym_primary_expression] = STATE(1946),
- [sym_yield_expression] = STATE(2234),
- [sym_object] = STATE(2310),
- [sym_object_pattern] = STATE(5667),
- [sym_array] = STATE(2310),
- [sym_array_pattern] = STATE(5667),
- [sym_glimmer_template] = STATE(2234),
- [sym_jsx_element] = STATE(2234),
- [sym_jsx_opening_element] = STATE(3051),
- [sym_jsx_self_closing_element] = STATE(2234),
- [sym_class] = STATE(2310),
- [sym_function_expression] = STATE(2310),
- [sym_generator_function] = STATE(2310),
- [sym_arrow_function] = STATE(2310),
- [sym__call_signature] = STATE(5809),
- [sym_call_expression] = STATE(2310),
- [sym_new_expression] = STATE(2234),
- [sym_await_expression] = STATE(2234),
- [sym_member_expression] = STATE(1294),
- [sym_subscript_expression] = STATE(1294),
- [sym_assignment_expression] = STATE(2234),
- [sym__augmented_assignment_lhs] = STATE(2875),
- [sym_augmented_assignment_expression] = STATE(2234),
- [sym__destructuring_pattern] = STATE(5667),
- [sym_ternary_expression] = STATE(2234),
- [sym_binary_expression] = STATE(2234),
- [sym_unary_expression] = STATE(2234),
- [sym_update_expression] = STATE(2234),
- [sym_string] = STATE(2310),
- [sym_template_string] = STATE(2310),
- [sym_regex] = STATE(2310),
- [sym_meta_property] = STATE(2310),
- [sym_decorator] = STATE(1244),
- [sym_formal_parameters] = STATE(3742),
- [sym_non_null_expression] = STATE(1294),
- [sym_as_expression] = STATE(2234),
- [sym_satisfies_expression] = STATE(2234),
- [sym_instantiation_expression] = STATE(2234),
- [sym_internal_module] = STATE(2234),
- [sym_type_parameters] = STATE(5349),
- [aux_sym_export_statement_repeat1] = STATE(4499),
- [sym_identifier] = ACTIONS(1440),
- [anon_sym_export] = ACTIONS(1372),
- [anon_sym_type] = ACTIONS(1372),
- [anon_sym_namespace] = ACTIONS(1374),
- [anon_sym_LBRACE] = ACTIONS(700),
- [anon_sym_typeof] = ACTIONS(21),
- [anon_sym_import] = ACTIONS(133),
- [anon_sym_let] = ACTIONS(1372),
- [anon_sym_BANG] = ACTIONS(33),
- [anon_sym_LPAREN] = ACTIONS(41),
- [anon_sym_await] = ACTIONS(43),
- [anon_sym_yield] = ACTIONS(63),
- [anon_sym_LBRACK] = ACTIONS(65),
- [sym_glimmer_opening_tag] = ACTIONS(67),
- [anon_sym_DQUOTE] = ACTIONS(69),
- [anon_sym_SQUOTE] = ACTIONS(71),
- [anon_sym_class] = ACTIONS(709),
- [anon_sym_async] = ACTIONS(1378),
- [anon_sym_function] = ACTIONS(713),
- [anon_sym_new] = ACTIONS(1444),
- [anon_sym_using] = ACTIONS(81),
- [anon_sym_PLUS] = ACTIONS(21),
- [anon_sym_DASH] = ACTIONS(21),
- [anon_sym_SLASH] = ACTIONS(83),
- [anon_sym_LT] = ACTIONS(85),
- [anon_sym_TILDE] = ACTIONS(33),
- [anon_sym_void] = ACTIONS(21),
- [anon_sym_delete] = ACTIONS(21),
- [anon_sym_PLUS_PLUS] = ACTIONS(87),
- [anon_sym_DASH_DASH] = ACTIONS(87),
- [sym_comment] = ACTIONS(5),
- [anon_sym_BQUOTE] = ACTIONS(89),
- [sym_number] = ACTIONS(91),
- [sym_private_property_identifier] = ACTIONS(93),
- [sym_this] = ACTIONS(95),
- [sym_super] = ACTIONS(95),
- [sym_true] = ACTIONS(95),
- [sym_false] = ACTIONS(95),
- [sym_null] = ACTIONS(95),
- [sym_undefined] = ACTIONS(97),
- [anon_sym_AT] = ACTIONS(99),
- [anon_sym_static] = ACTIONS(1372),
- [anon_sym_readonly] = ACTIONS(1372),
- [anon_sym_get] = ACTIONS(1372),
- [anon_sym_set] = ACTIONS(1372),
- [anon_sym_declare] = ACTIONS(1372),
- [anon_sym_public] = ACTIONS(1372),
- [anon_sym_private] = ACTIONS(1372),
- [anon_sym_protected] = ACTIONS(1372),
- [anon_sym_override] = ACTIONS(1372),
- [anon_sym_module] = ACTIONS(1372),
- [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_object] = ACTIONS(1372),
- [sym_html_comment] = ACTIONS(5),
- },
- [413] = {
- [sym_import] = STATE(3306),
- [sym_parenthesized_expression] = STATE(1338),
- [sym_expression] = STATE(2012),
- [sym_primary_expression] = STATE(1946),
- [sym_yield_expression] = STATE(2234),
- [sym_object] = STATE(2310),
- [sym_object_pattern] = STATE(5571),
- [sym_array] = STATE(2310),
- [sym_array_pattern] = STATE(5571),
- [sym_glimmer_template] = STATE(2234),
- [sym_jsx_element] = STATE(2234),
- [sym_jsx_opening_element] = STATE(3051),
- [sym_jsx_self_closing_element] = STATE(2234),
- [sym_class] = STATE(2310),
- [sym_function_expression] = STATE(2310),
- [sym_generator_function] = STATE(2310),
- [sym_arrow_function] = STATE(2310),
- [sym__call_signature] = STATE(5569),
- [sym_call_expression] = STATE(2310),
- [sym_new_expression] = STATE(2234),
- [sym_await_expression] = STATE(2234),
- [sym_member_expression] = STATE(1338),
- [sym_subscript_expression] = STATE(1338),
- [sym_assignment_expression] = STATE(2234),
- [sym__augmented_assignment_lhs] = STATE(2899),
- [sym_augmented_assignment_expression] = STATE(2234),
- [sym__destructuring_pattern] = STATE(5571),
- [sym_ternary_expression] = STATE(2234),
- [sym_binary_expression] = STATE(2234),
- [sym_unary_expression] = STATE(2234),
- [sym_update_expression] = STATE(2234),
- [sym_string] = STATE(2310),
- [sym_template_string] = STATE(2310),
- [sym_regex] = STATE(2310),
- [sym_meta_property] = STATE(2310),
- [sym_decorator] = STATE(1244),
- [sym_formal_parameters] = STATE(3742),
- [sym_non_null_expression] = STATE(1338),
- [sym_as_expression] = STATE(2234),
- [sym_satisfies_expression] = STATE(2234),
- [sym_instantiation_expression] = STATE(2234),
- [sym_internal_module] = STATE(2234),
- [sym_type_parameters] = STATE(5349),
- [aux_sym_export_statement_repeat1] = STATE(4499),
- [sym_identifier] = ACTIONS(1454),
- [anon_sym_export] = ACTIONS(1152),
- [anon_sym_type] = ACTIONS(1152),
- [anon_sym_namespace] = ACTIONS(1154),
- [anon_sym_LBRACE] = ACTIONS(700),
- [anon_sym_typeof] = ACTIONS(1180),
- [anon_sym_import] = ACTIONS(133),
- [anon_sym_let] = ACTIONS(1152),
- [anon_sym_BANG] = ACTIONS(1160),
- [anon_sym_LPAREN] = ACTIONS(41),
- [anon_sym_await] = ACTIONS(1164),
- [anon_sym_yield] = ACTIONS(1166),
- [anon_sym_LBRACK] = ACTIONS(65),
- [sym_glimmer_opening_tag] = ACTIONS(67),
- [anon_sym_DQUOTE] = ACTIONS(69),
- [anon_sym_SQUOTE] = ACTIONS(71),
- [anon_sym_class] = ACTIONS(709),
- [anon_sym_async] = ACTIONS(1170),
- [anon_sym_function] = ACTIONS(713),
- [anon_sym_new] = ACTIONS(1458),
- [anon_sym_using] = ACTIONS(1174),
- [anon_sym_PLUS] = ACTIONS(1180),
- [anon_sym_DASH] = ACTIONS(1180),
- [anon_sym_SLASH] = ACTIONS(83),
- [anon_sym_LT] = ACTIONS(85),
- [anon_sym_TILDE] = ACTIONS(1160),
- [anon_sym_void] = ACTIONS(1180),
- [anon_sym_delete] = ACTIONS(1180),
- [anon_sym_PLUS_PLUS] = ACTIONS(1182),
- [anon_sym_DASH_DASH] = ACTIONS(1182),
- [sym_comment] = ACTIONS(5),
- [anon_sym_BQUOTE] = ACTIONS(89),
- [sym_number] = ACTIONS(91),
- [sym_private_property_identifier] = ACTIONS(1188),
- [sym_this] = ACTIONS(95),
- [sym_super] = ACTIONS(95),
- [sym_true] = ACTIONS(95),
- [sym_false] = ACTIONS(95),
- [sym_null] = ACTIONS(95),
- [sym_undefined] = ACTIONS(1460),
- [anon_sym_AT] = ACTIONS(99),
- [anon_sym_static] = ACTIONS(1152),
- [anon_sym_readonly] = ACTIONS(1152),
- [anon_sym_get] = ACTIONS(1152),
- [anon_sym_set] = ACTIONS(1152),
- [anon_sym_declare] = ACTIONS(1152),
- [anon_sym_public] = ACTIONS(1152),
- [anon_sym_private] = ACTIONS(1152),
- [anon_sym_protected] = ACTIONS(1152),
- [anon_sym_override] = ACTIONS(1152),
- [anon_sym_module] = ACTIONS(1152),
- [anon_sym_any] = ACTIONS(1152),
- [anon_sym_number] = ACTIONS(1152),
- [anon_sym_boolean] = ACTIONS(1152),
- [anon_sym_string] = ACTIONS(1152),
- [anon_sym_symbol] = ACTIONS(1152),
- [anon_sym_object] = ACTIONS(1152),
- [sym_html_comment] = ACTIONS(5),
- },
- [414] = {
- [sym_import] = STATE(3306),
- [sym_parenthesized_expression] = STATE(1338),
- [sym_expression] = STATE(2013),
- [sym_primary_expression] = STATE(1946),
- [sym_yield_expression] = STATE(2234),
- [sym_object] = STATE(2310),
- [sym_object_pattern] = STATE(5571),
- [sym_array] = STATE(2310),
- [sym_array_pattern] = STATE(5571),
- [sym_glimmer_template] = STATE(2234),
- [sym_jsx_element] = STATE(2234),
- [sym_jsx_opening_element] = STATE(3051),
- [sym_jsx_self_closing_element] = STATE(2234),
- [sym_class] = STATE(2310),
- [sym_function_expression] = STATE(2310),
- [sym_generator_function] = STATE(2310),
- [sym_arrow_function] = STATE(2310),
- [sym__call_signature] = STATE(5569),
- [sym_call_expression] = STATE(2310),
- [sym_new_expression] = STATE(2234),
- [sym_await_expression] = STATE(2234),
- [sym_member_expression] = STATE(1338),
- [sym_subscript_expression] = STATE(1338),
- [sym_assignment_expression] = STATE(2234),
- [sym__augmented_assignment_lhs] = STATE(2899),
- [sym_augmented_assignment_expression] = STATE(2234),
- [sym__destructuring_pattern] = STATE(5571),
- [sym_ternary_expression] = STATE(2234),
- [sym_binary_expression] = STATE(2234),
- [sym_unary_expression] = STATE(2234),
- [sym_update_expression] = STATE(2234),
- [sym_string] = STATE(2310),
- [sym_template_string] = STATE(2310),
- [sym_regex] = STATE(2310),
- [sym_meta_property] = STATE(2310),
- [sym_decorator] = STATE(1244),
- [sym_formal_parameters] = STATE(3742),
- [sym_non_null_expression] = STATE(1338),
- [sym_as_expression] = STATE(2234),
- [sym_satisfies_expression] = STATE(2234),
- [sym_instantiation_expression] = STATE(2234),
- [sym_internal_module] = STATE(2234),
- [sym_type_parameters] = STATE(5349),
- [aux_sym_export_statement_repeat1] = STATE(4499),
- [sym_identifier] = ACTIONS(1454),
- [anon_sym_export] = ACTIONS(1152),
- [anon_sym_type] = ACTIONS(1152),
- [anon_sym_namespace] = ACTIONS(1154),
- [anon_sym_LBRACE] = ACTIONS(700),
- [anon_sym_typeof] = ACTIONS(1180),
- [anon_sym_import] = ACTIONS(133),
- [anon_sym_let] = ACTIONS(1152),
- [anon_sym_BANG] = ACTIONS(1160),
- [anon_sym_LPAREN] = ACTIONS(41),
- [anon_sym_await] = ACTIONS(1164),
- [anon_sym_yield] = ACTIONS(1166),
- [anon_sym_LBRACK] = ACTIONS(65),
- [sym_glimmer_opening_tag] = ACTIONS(67),
- [anon_sym_DQUOTE] = ACTIONS(69),
- [anon_sym_SQUOTE] = ACTIONS(71),
- [anon_sym_class] = ACTIONS(709),
- [anon_sym_async] = ACTIONS(1170),
- [anon_sym_function] = ACTIONS(713),
- [anon_sym_new] = ACTIONS(1458),
- [anon_sym_using] = ACTIONS(1174),
- [anon_sym_PLUS] = ACTIONS(1180),
- [anon_sym_DASH] = ACTIONS(1180),
- [anon_sym_SLASH] = ACTIONS(83),
- [anon_sym_LT] = ACTIONS(85),
- [anon_sym_TILDE] = ACTIONS(1160),
- [anon_sym_void] = ACTIONS(1180),
- [anon_sym_delete] = ACTIONS(1180),
- [anon_sym_PLUS_PLUS] = ACTIONS(1182),
- [anon_sym_DASH_DASH] = ACTIONS(1182),
- [sym_comment] = ACTIONS(5),
- [anon_sym_BQUOTE] = ACTIONS(89),
- [sym_number] = ACTIONS(91),
- [sym_private_property_identifier] = ACTIONS(1188),
- [sym_this] = ACTIONS(95),
- [sym_super] = ACTIONS(95),
- [sym_true] = ACTIONS(95),
- [sym_false] = ACTIONS(95),
- [sym_null] = ACTIONS(95),
- [sym_undefined] = ACTIONS(1460),
- [anon_sym_AT] = ACTIONS(99),
- [anon_sym_static] = ACTIONS(1152),
- [anon_sym_readonly] = ACTIONS(1152),
- [anon_sym_get] = ACTIONS(1152),
- [anon_sym_set] = ACTIONS(1152),
- [anon_sym_declare] = ACTIONS(1152),
- [anon_sym_public] = ACTIONS(1152),
- [anon_sym_private] = ACTIONS(1152),
- [anon_sym_protected] = ACTIONS(1152),
- [anon_sym_override] = ACTIONS(1152),
- [anon_sym_module] = ACTIONS(1152),
- [anon_sym_any] = ACTIONS(1152),
- [anon_sym_number] = ACTIONS(1152),
- [anon_sym_boolean] = ACTIONS(1152),
- [anon_sym_string] = ACTIONS(1152),
- [anon_sym_symbol] = ACTIONS(1152),
- [anon_sym_object] = ACTIONS(1152),
- [sym_html_comment] = ACTIONS(5),
- },
- [415] = {
- [sym_import] = STATE(3334),
- [sym_parenthesized_expression] = STATE(1336),
- [sym_expression] = STATE(2246),
- [sym_primary_expression] = STATE(1468),
- [sym_yield_expression] = STATE(1634),
- [sym_object] = STATE(1650),
- [sym_object_pattern] = STATE(5745),
- [sym_array] = STATE(1650),
- [sym_array_pattern] = STATE(5745),
- [sym_glimmer_template] = STATE(1634),
- [sym_jsx_element] = STATE(1634),
- [sym_jsx_opening_element] = STATE(3026),
- [sym_jsx_self_closing_element] = STATE(1634),
- [sym_class] = STATE(1650),
- [sym_function_expression] = STATE(1650),
- [sym_generator_function] = STATE(1650),
- [sym_arrow_function] = STATE(1650),
- [sym__call_signature] = STATE(5553),
- [sym_call_expression] = STATE(1650),
- [sym_new_expression] = STATE(1634),
- [sym_await_expression] = STATE(1634),
- [sym_member_expression] = STATE(1336),
- [sym_subscript_expression] = STATE(1336),
- [sym_assignment_expression] = STATE(1634),
- [sym__augmented_assignment_lhs] = STATE(2884),
- [sym_augmented_assignment_expression] = STATE(1634),
- [sym__destructuring_pattern] = STATE(5745),
- [sym_ternary_expression] = STATE(1634),
- [sym_binary_expression] = STATE(1634),
- [sym_unary_expression] = STATE(1634),
- [sym_update_expression] = STATE(1634),
- [sym_string] = STATE(1650),
- [sym_template_string] = STATE(1650),
- [sym_regex] = STATE(1650),
- [sym_meta_property] = STATE(1650),
- [sym_decorator] = STATE(1244),
- [sym_formal_parameters] = STATE(3742),
- [sym_non_null_expression] = STATE(1336),
- [sym_as_expression] = STATE(1634),
- [sym_satisfies_expression] = STATE(1634),
- [sym_instantiation_expression] = STATE(1634),
- [sym_internal_module] = STATE(1634),
- [sym_type_parameters] = STATE(5349),
- [aux_sym_export_statement_repeat1] = STATE(4458),
- [sym_identifier] = ACTIONS(1470),
- [anon_sym_export] = ACTIONS(1250),
- [anon_sym_type] = ACTIONS(1250),
- [anon_sym_namespace] = ACTIONS(1252),
- [anon_sym_LBRACE] = ACTIONS(813),
- [anon_sym_typeof] = ACTIONS(1272),
- [anon_sym_import] = ACTIONS(133),
- [anon_sym_let] = ACTIONS(1250),
- [anon_sym_BANG] = ACTIONS(1256),
- [anon_sym_LPAREN] = ACTIONS(815),
- [anon_sym_await] = ACTIONS(1258),
- [anon_sym_yield] = ACTIONS(1260),
- [anon_sym_LBRACK] = ACTIONS(817),
- [sym_glimmer_opening_tag] = ACTIONS(148),
- [anon_sym_DQUOTE] = ACTIONS(150),
- [anon_sym_SQUOTE] = ACTIONS(152),
- [anon_sym_class] = ACTIONS(154),
- [anon_sym_async] = ACTIONS(1262),
- [anon_sym_function] = ACTIONS(158),
- [anon_sym_new] = ACTIONS(1474),
- [anon_sym_using] = ACTIONS(1266),
- [anon_sym_PLUS] = ACTIONS(1272),
- [anon_sym_DASH] = ACTIONS(1272),
- [anon_sym_SLASH] = ACTIONS(646),
- [anon_sym_LT] = ACTIONS(181),
- [anon_sym_TILDE] = ACTIONS(1256),
- [anon_sym_void] = ACTIONS(1272),
- [anon_sym_delete] = ACTIONS(1272),
- [anon_sym_PLUS_PLUS] = ACTIONS(1274),
- [anon_sym_DASH_DASH] = ACTIONS(1274),
- [sym_comment] = ACTIONS(5),
- [anon_sym_BQUOTE] = ACTIONS(825),
- [sym_number] = ACTIONS(787),
- [sym_private_property_identifier] = ACTIONS(1276),
- [sym_this] = ACTIONS(200),
- [sym_super] = ACTIONS(200),
- [sym_true] = ACTIONS(200),
- [sym_false] = ACTIONS(200),
- [sym_null] = ACTIONS(200),
- [sym_undefined] = ACTIONS(1476),
- [anon_sym_AT] = ACTIONS(99),
- [anon_sym_static] = ACTIONS(1250),
- [anon_sym_readonly] = ACTIONS(1250),
- [anon_sym_get] = ACTIONS(1250),
- [anon_sym_set] = ACTIONS(1250),
- [anon_sym_declare] = ACTIONS(1250),
- [anon_sym_public] = ACTIONS(1250),
- [anon_sym_private] = ACTIONS(1250),
- [anon_sym_protected] = ACTIONS(1250),
- [anon_sym_override] = ACTIONS(1250),
- [anon_sym_module] = ACTIONS(1250),
- [anon_sym_any] = ACTIONS(1250),
- [anon_sym_number] = ACTIONS(1250),
- [anon_sym_boolean] = ACTIONS(1250),
- [anon_sym_string] = ACTIONS(1250),
- [anon_sym_symbol] = ACTIONS(1250),
- [anon_sym_object] = ACTIONS(1250),
- [sym_html_comment] = ACTIONS(5),
- },
- [416] = {
- [sym_import] = STATE(3306),
- [sym_parenthesized_expression] = STATE(1294),
- [sym_expression] = STATE(1699),
- [sym_primary_expression] = STATE(1946),
- [sym_yield_expression] = STATE(2234),
- [sym_object] = STATE(2310),
- [sym_object_pattern] = STATE(5667),
- [sym_array] = STATE(2310),
- [sym_array_pattern] = STATE(5667),
- [sym_glimmer_template] = STATE(2234),
- [sym_jsx_element] = STATE(2234),
- [sym_jsx_opening_element] = STATE(3051),
- [sym_jsx_self_closing_element] = STATE(2234),
- [sym_class] = STATE(2310),
- [sym_function_expression] = STATE(2310),
- [sym_generator_function] = STATE(2310),
- [sym_arrow_function] = STATE(2310),
- [sym__call_signature] = STATE(5809),
- [sym_call_expression] = STATE(2310),
- [sym_new_expression] = STATE(2234),
- [sym_await_expression] = STATE(2234),
- [sym_member_expression] = STATE(1294),
- [sym_subscript_expression] = STATE(1294),
- [sym_assignment_expression] = STATE(2234),
- [sym__augmented_assignment_lhs] = STATE(2875),
- [sym_augmented_assignment_expression] = STATE(2234),
- [sym__destructuring_pattern] = STATE(5667),
- [sym_ternary_expression] = STATE(2234),
- [sym_binary_expression] = STATE(2234),
- [sym_unary_expression] = STATE(2234),
- [sym_update_expression] = STATE(2234),
- [sym_string] = STATE(2310),
- [sym_template_string] = STATE(2310),
- [sym_regex] = STATE(2310),
- [sym_meta_property] = STATE(2310),
- [sym_decorator] = STATE(1244),
- [sym_formal_parameters] = STATE(3742),
- [sym_non_null_expression] = STATE(1294),
- [sym_as_expression] = STATE(2234),
- [sym_satisfies_expression] = STATE(2234),
- [sym_instantiation_expression] = STATE(2234),
- [sym_internal_module] = STATE(2234),
- [sym_type_parameters] = STATE(5349),
- [aux_sym_export_statement_repeat1] = STATE(4499),
- [sym_identifier] = ACTIONS(1440),
- [anon_sym_export] = ACTIONS(1372),
- [anon_sym_type] = ACTIONS(1372),
- [anon_sym_namespace] = ACTIONS(1374),
- [anon_sym_LBRACE] = ACTIONS(700),
- [anon_sym_typeof] = ACTIONS(21),
- [anon_sym_import] = ACTIONS(133),
- [anon_sym_let] = ACTIONS(1372),
- [anon_sym_BANG] = ACTIONS(33),
- [anon_sym_LPAREN] = ACTIONS(41),
- [anon_sym_await] = ACTIONS(43),
- [anon_sym_yield] = ACTIONS(63),
- [anon_sym_LBRACK] = ACTIONS(65),
- [sym_glimmer_opening_tag] = ACTIONS(67),
- [anon_sym_DQUOTE] = ACTIONS(69),
- [anon_sym_SQUOTE] = ACTIONS(71),
- [anon_sym_class] = ACTIONS(709),
- [anon_sym_async] = ACTIONS(1378),
- [anon_sym_function] = ACTIONS(713),
- [anon_sym_new] = ACTIONS(1444),
- [anon_sym_using] = ACTIONS(81),
- [anon_sym_PLUS] = ACTIONS(21),
- [anon_sym_DASH] = ACTIONS(21),
- [anon_sym_SLASH] = ACTIONS(83),
- [anon_sym_LT] = ACTIONS(85),
- [anon_sym_TILDE] = ACTIONS(33),
- [anon_sym_void] = ACTIONS(21),
- [anon_sym_delete] = ACTIONS(21),
- [anon_sym_PLUS_PLUS] = ACTIONS(87),
- [anon_sym_DASH_DASH] = ACTIONS(87),
- [sym_comment] = ACTIONS(5),
- [anon_sym_BQUOTE] = ACTIONS(89),
- [sym_number] = ACTIONS(91),
- [sym_private_property_identifier] = ACTIONS(93),
- [sym_this] = ACTIONS(95),
- [sym_super] = ACTIONS(95),
- [sym_true] = ACTIONS(95),
- [sym_false] = ACTIONS(95),
- [sym_null] = ACTIONS(95),
- [sym_undefined] = ACTIONS(97),
- [anon_sym_AT] = ACTIONS(99),
- [anon_sym_static] = ACTIONS(1372),
- [anon_sym_readonly] = ACTIONS(1372),
- [anon_sym_get] = ACTIONS(1372),
- [anon_sym_set] = ACTIONS(1372),
- [anon_sym_declare] = ACTIONS(1372),
- [anon_sym_public] = ACTIONS(1372),
- [anon_sym_private] = ACTIONS(1372),
- [anon_sym_protected] = ACTIONS(1372),
- [anon_sym_override] = ACTIONS(1372),
- [anon_sym_module] = ACTIONS(1372),
- [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_object] = ACTIONS(1372),
- [sym_html_comment] = ACTIONS(5),
- },
- [417] = {
- [sym_import] = STATE(3306),
- [sym_parenthesized_expression] = STATE(1338),
- [sym_expression] = STATE(2040),
- [sym_primary_expression] = STATE(1946),
- [sym_yield_expression] = STATE(2234),
- [sym_object] = STATE(2310),
- [sym_object_pattern] = STATE(5571),
- [sym_array] = STATE(2310),
- [sym_array_pattern] = STATE(5571),
- [sym_glimmer_template] = STATE(2234),
- [sym_jsx_element] = STATE(2234),
- [sym_jsx_opening_element] = STATE(3051),
- [sym_jsx_self_closing_element] = STATE(2234),
- [sym_class] = STATE(2310),
- [sym_function_expression] = STATE(2310),
- [sym_generator_function] = STATE(2310),
- [sym_arrow_function] = STATE(2310),
- [sym__call_signature] = STATE(5569),
- [sym_call_expression] = STATE(2310),
- [sym_new_expression] = STATE(2234),
- [sym_await_expression] = STATE(2234),
- [sym_member_expression] = STATE(1338),
- [sym_subscript_expression] = STATE(1338),
- [sym_assignment_expression] = STATE(2234),
- [sym__augmented_assignment_lhs] = STATE(2899),
- [sym_augmented_assignment_expression] = STATE(2234),
- [sym__destructuring_pattern] = STATE(5571),
- [sym_ternary_expression] = STATE(2234),
- [sym_binary_expression] = STATE(2234),
- [sym_unary_expression] = STATE(2234),
- [sym_update_expression] = STATE(2234),
- [sym_string] = STATE(2310),
- [sym_template_string] = STATE(2310),
- [sym_regex] = STATE(2310),
- [sym_meta_property] = STATE(2310),
- [sym_decorator] = STATE(1244),
- [sym_formal_parameters] = STATE(3742),
- [sym_non_null_expression] = STATE(1338),
- [sym_as_expression] = STATE(2234),
- [sym_satisfies_expression] = STATE(2234),
- [sym_instantiation_expression] = STATE(2234),
- [sym_internal_module] = STATE(2234),
- [sym_type_parameters] = STATE(5349),
- [aux_sym_export_statement_repeat1] = STATE(4499),
- [sym_identifier] = ACTIONS(1454),
- [anon_sym_export] = ACTIONS(1152),
- [anon_sym_type] = ACTIONS(1152),
- [anon_sym_namespace] = ACTIONS(1154),
- [anon_sym_LBRACE] = ACTIONS(700),
- [anon_sym_typeof] = ACTIONS(1180),
- [anon_sym_import] = ACTIONS(133),
- [anon_sym_let] = ACTIONS(1152),
- [anon_sym_BANG] = ACTIONS(1160),
- [anon_sym_LPAREN] = ACTIONS(41),
- [anon_sym_await] = ACTIONS(1164),
- [anon_sym_yield] = ACTIONS(1166),
- [anon_sym_LBRACK] = ACTIONS(65),
- [sym_glimmer_opening_tag] = ACTIONS(67),
- [anon_sym_DQUOTE] = ACTIONS(69),
- [anon_sym_SQUOTE] = ACTIONS(71),
- [anon_sym_class] = ACTIONS(709),
- [anon_sym_async] = ACTIONS(1170),
- [anon_sym_function] = ACTIONS(713),
- [anon_sym_new] = ACTIONS(1458),
- [anon_sym_using] = ACTIONS(1174),
- [anon_sym_PLUS] = ACTIONS(1180),
- [anon_sym_DASH] = ACTIONS(1180),
- [anon_sym_SLASH] = ACTIONS(83),
- [anon_sym_LT] = ACTIONS(85),
- [anon_sym_TILDE] = ACTIONS(1160),
- [anon_sym_void] = ACTIONS(1180),
- [anon_sym_delete] = ACTIONS(1180),
- [anon_sym_PLUS_PLUS] = ACTIONS(1182),
- [anon_sym_DASH_DASH] = ACTIONS(1182),
- [sym_comment] = ACTIONS(5),
- [anon_sym_BQUOTE] = ACTIONS(89),
- [sym_number] = ACTIONS(2109),
- [sym_private_property_identifier] = ACTIONS(1188),
- [sym_this] = ACTIONS(95),
- [sym_super] = ACTIONS(95),
- [sym_true] = ACTIONS(95),
- [sym_false] = ACTIONS(95),
- [sym_null] = ACTIONS(95),
- [sym_undefined] = ACTIONS(1460),
- [anon_sym_AT] = ACTIONS(99),
- [anon_sym_static] = ACTIONS(1152),
- [anon_sym_readonly] = ACTIONS(1152),
- [anon_sym_get] = ACTIONS(1152),
- [anon_sym_set] = ACTIONS(1152),
- [anon_sym_declare] = ACTIONS(1152),
- [anon_sym_public] = ACTIONS(1152),
- [anon_sym_private] = ACTIONS(1152),
- [anon_sym_protected] = ACTIONS(1152),
- [anon_sym_override] = ACTIONS(1152),
- [anon_sym_module] = ACTIONS(1152),
- [anon_sym_any] = ACTIONS(1152),
- [anon_sym_number] = ACTIONS(1152),
- [anon_sym_boolean] = ACTIONS(1152),
- [anon_sym_string] = ACTIONS(1152),
- [anon_sym_symbol] = ACTIONS(1152),
- [anon_sym_object] = ACTIONS(1152),
- [sym_html_comment] = ACTIONS(5),
- },
- [418] = {
- [sym_import] = STATE(3306),
- [sym_parenthesized_expression] = STATE(1294),
- [sym_expression] = STATE(1814),
- [sym_primary_expression] = STATE(1946),
- [sym_yield_expression] = STATE(2234),
- [sym_object] = STATE(2310),
- [sym_object_pattern] = STATE(5667),
- [sym_array] = STATE(2310),
- [sym_array_pattern] = STATE(5667),
- [sym_glimmer_template] = STATE(2234),
- [sym_jsx_element] = STATE(2234),
- [sym_jsx_opening_element] = STATE(3051),
- [sym_jsx_self_closing_element] = STATE(2234),
- [sym_class] = STATE(2310),
- [sym_function_expression] = STATE(2310),
- [sym_generator_function] = STATE(2310),
- [sym_arrow_function] = STATE(2310),
- [sym__call_signature] = STATE(5809),
- [sym_call_expression] = STATE(2310),
- [sym_new_expression] = STATE(2234),
- [sym_await_expression] = STATE(2234),
- [sym_member_expression] = STATE(1294),
- [sym_subscript_expression] = STATE(1294),
- [sym_assignment_expression] = STATE(2234),
- [sym__augmented_assignment_lhs] = STATE(2875),
- [sym_augmented_assignment_expression] = STATE(2234),
- [sym__destructuring_pattern] = STATE(5667),
- [sym_ternary_expression] = STATE(2234),
- [sym_binary_expression] = STATE(2234),
- [sym_unary_expression] = STATE(2234),
- [sym_update_expression] = STATE(2234),
- [sym_string] = STATE(2310),
- [sym_template_string] = STATE(2310),
- [sym_regex] = STATE(2310),
- [sym_meta_property] = STATE(2310),
- [sym_decorator] = STATE(1244),
- [sym_formal_parameters] = STATE(3742),
- [sym_non_null_expression] = STATE(1294),
- [sym_as_expression] = STATE(2234),
- [sym_satisfies_expression] = STATE(2234),
- [sym_instantiation_expression] = STATE(2234),
- [sym_internal_module] = STATE(2234),
- [sym_type_parameters] = STATE(5349),
- [aux_sym_export_statement_repeat1] = STATE(4499),
- [sym_identifier] = ACTIONS(1440),
- [anon_sym_export] = ACTIONS(1372),
- [anon_sym_type] = ACTIONS(1372),
- [anon_sym_namespace] = ACTIONS(1374),
- [anon_sym_LBRACE] = ACTIONS(700),
- [anon_sym_typeof] = ACTIONS(21),
- [anon_sym_import] = ACTIONS(133),
- [anon_sym_let] = ACTIONS(1372),
- [anon_sym_BANG] = ACTIONS(33),
- [anon_sym_LPAREN] = ACTIONS(41),
- [anon_sym_await] = ACTIONS(43),
- [anon_sym_yield] = ACTIONS(63),
- [anon_sym_LBRACK] = ACTIONS(65),
- [sym_glimmer_opening_tag] = ACTIONS(67),
- [anon_sym_DQUOTE] = ACTIONS(69),
- [anon_sym_SQUOTE] = ACTIONS(71),
- [anon_sym_class] = ACTIONS(709),
- [anon_sym_async] = ACTIONS(1378),
- [anon_sym_function] = ACTIONS(713),
- [anon_sym_new] = ACTIONS(1444),
- [anon_sym_using] = ACTIONS(81),
- [anon_sym_PLUS] = ACTIONS(21),
- [anon_sym_DASH] = ACTIONS(21),
- [anon_sym_SLASH] = ACTIONS(83),
- [anon_sym_LT] = ACTIONS(85),
- [anon_sym_TILDE] = ACTIONS(33),
- [anon_sym_void] = ACTIONS(21),
- [anon_sym_delete] = ACTIONS(21),
- [anon_sym_PLUS_PLUS] = ACTIONS(87),
- [anon_sym_DASH_DASH] = ACTIONS(87),
- [sym_comment] = ACTIONS(5),
- [anon_sym_BQUOTE] = ACTIONS(89),
- [sym_number] = ACTIONS(91),
- [sym_private_property_identifier] = ACTIONS(93),
- [sym_this] = ACTIONS(95),
- [sym_super] = ACTIONS(95),
- [sym_true] = ACTIONS(95),
- [sym_false] = ACTIONS(95),
- [sym_null] = ACTIONS(95),
- [sym_undefined] = ACTIONS(97),
- [anon_sym_AT] = ACTIONS(99),
- [anon_sym_static] = ACTIONS(1372),
- [anon_sym_readonly] = ACTIONS(1372),
- [anon_sym_get] = ACTIONS(1372),
- [anon_sym_set] = ACTIONS(1372),
- [anon_sym_declare] = ACTIONS(1372),
- [anon_sym_public] = ACTIONS(1372),
- [anon_sym_private] = ACTIONS(1372),
- [anon_sym_protected] = ACTIONS(1372),
- [anon_sym_override] = ACTIONS(1372),
- [anon_sym_module] = ACTIONS(1372),
- [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_object] = ACTIONS(1372),
- [sym_html_comment] = ACTIONS(5),
- },
- [419] = {
- [sym_import] = STATE(3306),
- [sym_parenthesized_expression] = STATE(1338),
- [sym_expression] = STATE(2123),
- [sym_primary_expression] = STATE(1946),
- [sym_yield_expression] = STATE(2234),
- [sym_object] = STATE(2310),
- [sym_object_pattern] = STATE(5571),
- [sym_array] = STATE(2310),
- [sym_array_pattern] = STATE(5571),
- [sym_glimmer_template] = STATE(2234),
- [sym_jsx_element] = STATE(2234),
- [sym_jsx_opening_element] = STATE(3051),
- [sym_jsx_self_closing_element] = STATE(2234),
- [sym_class] = STATE(2310),
- [sym_function_expression] = STATE(2310),
- [sym_generator_function] = STATE(2310),
- [sym_arrow_function] = STATE(2310),
- [sym__call_signature] = STATE(5569),
- [sym_call_expression] = STATE(2310),
- [sym_new_expression] = STATE(2234),
- [sym_await_expression] = STATE(2234),
- [sym_member_expression] = STATE(1338),
- [sym_subscript_expression] = STATE(1338),
- [sym_assignment_expression] = STATE(2234),
- [sym__augmented_assignment_lhs] = STATE(2899),
- [sym_augmented_assignment_expression] = STATE(2234),
- [sym__destructuring_pattern] = STATE(5571),
- [sym_ternary_expression] = STATE(2234),
- [sym_binary_expression] = STATE(2234),
- [sym_unary_expression] = STATE(2234),
- [sym_update_expression] = STATE(2234),
- [sym_string] = STATE(2310),
- [sym_template_string] = STATE(2310),
- [sym_regex] = STATE(2310),
- [sym_meta_property] = STATE(2310),
- [sym_decorator] = STATE(1244),
- [sym_formal_parameters] = STATE(3742),
- [sym_non_null_expression] = STATE(1338),
- [sym_as_expression] = STATE(2234),
- [sym_satisfies_expression] = STATE(2234),
- [sym_instantiation_expression] = STATE(2234),
- [sym_internal_module] = STATE(2234),
- [sym_type_parameters] = STATE(5349),
- [aux_sym_export_statement_repeat1] = STATE(4499),
- [sym_identifier] = ACTIONS(1454),
- [anon_sym_export] = ACTIONS(1152),
- [anon_sym_type] = ACTIONS(1152),
- [anon_sym_namespace] = ACTIONS(1154),
- [anon_sym_LBRACE] = ACTIONS(700),
- [anon_sym_typeof] = ACTIONS(1180),
- [anon_sym_import] = ACTIONS(133),
- [anon_sym_let] = ACTIONS(1152),
- [anon_sym_BANG] = ACTIONS(1160),
- [anon_sym_LPAREN] = ACTIONS(41),
- [anon_sym_await] = ACTIONS(1164),
- [anon_sym_yield] = ACTIONS(1166),
- [anon_sym_LBRACK] = ACTIONS(65),
- [sym_glimmer_opening_tag] = ACTIONS(67),
- [anon_sym_DQUOTE] = ACTIONS(69),
- [anon_sym_SQUOTE] = ACTIONS(71),
- [anon_sym_class] = ACTIONS(709),
- [anon_sym_async] = ACTIONS(1170),
- [anon_sym_function] = ACTIONS(713),
- [anon_sym_new] = ACTIONS(1458),
- [anon_sym_using] = ACTIONS(1174),
- [anon_sym_PLUS] = ACTIONS(1180),
- [anon_sym_DASH] = ACTIONS(1180),
- [anon_sym_SLASH] = ACTIONS(83),
- [anon_sym_LT] = ACTIONS(85),
- [anon_sym_TILDE] = ACTIONS(1160),
- [anon_sym_void] = ACTIONS(1180),
- [anon_sym_delete] = ACTIONS(1180),
- [anon_sym_PLUS_PLUS] = ACTIONS(1182),
- [anon_sym_DASH_DASH] = ACTIONS(1182),
- [sym_comment] = ACTIONS(5),
- [anon_sym_BQUOTE] = ACTIONS(89),
- [sym_number] = ACTIONS(91),
- [sym_private_property_identifier] = ACTIONS(1188),
- [sym_this] = ACTIONS(95),
- [sym_super] = ACTIONS(95),
- [sym_true] = ACTIONS(95),
- [sym_false] = ACTIONS(95),
- [sym_null] = ACTIONS(95),
- [sym_undefined] = ACTIONS(1460),
- [anon_sym_AT] = ACTIONS(99),
- [anon_sym_static] = ACTIONS(1152),
- [anon_sym_readonly] = ACTIONS(1152),
- [anon_sym_get] = ACTIONS(1152),
- [anon_sym_set] = ACTIONS(1152),
- [anon_sym_declare] = ACTIONS(1152),
- [anon_sym_public] = ACTIONS(1152),
- [anon_sym_private] = ACTIONS(1152),
- [anon_sym_protected] = ACTIONS(1152),
- [anon_sym_override] = ACTIONS(1152),
- [anon_sym_module] = ACTIONS(1152),
- [anon_sym_any] = ACTIONS(1152),
- [anon_sym_number] = ACTIONS(1152),
- [anon_sym_boolean] = ACTIONS(1152),
- [anon_sym_string] = ACTIONS(1152),
- [anon_sym_symbol] = ACTIONS(1152),
- [anon_sym_object] = ACTIONS(1152),
- [sym_html_comment] = ACTIONS(5),
- },
- [420] = {
- [sym_import] = STATE(3334),
- [sym_parenthesized_expression] = STATE(1179),
- [sym_expression] = STATE(2408),
- [sym_primary_expression] = STATE(1468),
- [sym_yield_expression] = STATE(1634),
- [sym_object] = STATE(1650),
- [sym_object_pattern] = STATE(5854),
- [sym_array] = STATE(1650),
- [sym_array_pattern] = STATE(5854),
- [sym_glimmer_template] = STATE(1634),
- [sym_jsx_element] = STATE(1634),
- [sym_jsx_opening_element] = STATE(3026),
- [sym_jsx_self_closing_element] = STATE(1634),
- [sym_class] = STATE(1650),
- [sym_function_expression] = STATE(1650),
- [sym_generator_function] = STATE(1650),
- [sym_arrow_function] = STATE(1650),
- [sym__call_signature] = STATE(5619),
- [sym_call_expression] = STATE(1650),
- [sym_new_expression] = STATE(1634),
- [sym_await_expression] = STATE(1634),
- [sym_member_expression] = STATE(1179),
- [sym_subscript_expression] = STATE(1179),
- [sym_assignment_expression] = STATE(1634),
- [sym__augmented_assignment_lhs] = STATE(2878),
- [sym_augmented_assignment_expression] = STATE(1634),
- [sym__destructuring_pattern] = STATE(5854),
- [sym_ternary_expression] = STATE(1634),
- [sym_binary_expression] = STATE(1634),
- [sym_unary_expression] = STATE(1634),
- [sym_update_expression] = STATE(1634),
- [sym_string] = STATE(1650),
- [sym_template_string] = STATE(1650),
- [sym_regex] = STATE(1650),
- [sym_meta_property] = STATE(1650),
- [sym_decorator] = STATE(1244),
- [sym_formal_parameters] = STATE(3742),
- [sym_non_null_expression] = STATE(1179),
- [sym_as_expression] = STATE(1634),
- [sym_satisfies_expression] = STATE(1634),
- [sym_instantiation_expression] = STATE(1634),
- [sym_internal_module] = STATE(1634),
- [sym_type_parameters] = STATE(5349),
- [aux_sym_export_statement_repeat1] = STATE(4458),
- [sym_identifier] = ACTIONS(837),
- [anon_sym_export] = ACTIONS(839),
- [anon_sym_type] = ACTIONS(839),
- [anon_sym_namespace] = ACTIONS(843),
- [anon_sym_LBRACE] = ACTIONS(845),
- [anon_sym_typeof] = ACTIONS(187),
- [anon_sym_import] = ACTIONS(133),
- [anon_sym_let] = ACTIONS(839),
- [anon_sym_BANG] = ACTIONS(183),
- [anon_sym_LPAREN] = ACTIONS(815),
- [anon_sym_await] = ACTIONS(142),
- [anon_sym_yield] = ACTIONS(144),
- [anon_sym_LBRACK] = ACTIONS(849),
- [sym_glimmer_opening_tag] = ACTIONS(148),
- [anon_sym_DQUOTE] = ACTIONS(150),
- [anon_sym_SQUOTE] = ACTIONS(152),
- [anon_sym_class] = ACTIONS(154),
- [anon_sym_async] = ACTIONS(851),
- [anon_sym_function] = ACTIONS(158),
- [anon_sym_new] = ACTIONS(853),
- [anon_sym_using] = ACTIONS(166),
- [anon_sym_PLUS] = ACTIONS(187),
- [anon_sym_DASH] = ACTIONS(187),
- [anon_sym_SLASH] = ACTIONS(646),
- [anon_sym_LT] = ACTIONS(181),
- [anon_sym_TILDE] = ACTIONS(183),
- [anon_sym_void] = ACTIONS(187),
- [anon_sym_delete] = ACTIONS(187),
- [anon_sym_PLUS_PLUS] = ACTIONS(719),
- [anon_sym_DASH_DASH] = ACTIONS(719),
- [sym_comment] = ACTIONS(5),
- [anon_sym_BQUOTE] = ACTIONS(825),
- [sym_number] = ACTIONS(787),
- [sym_private_property_identifier] = ACTIONS(196),
- [sym_this] = ACTIONS(200),
- [sym_super] = ACTIONS(200),
- [sym_true] = ACTIONS(200),
- [sym_false] = ACTIONS(200),
- [sym_null] = ACTIONS(200),
- [sym_undefined] = ACTIONS(827),
- [anon_sym_AT] = ACTIONS(99),
- [anon_sym_static] = ACTIONS(839),
- [anon_sym_readonly] = ACTIONS(839),
- [anon_sym_get] = ACTIONS(839),
- [anon_sym_set] = ACTIONS(839),
- [anon_sym_declare] = ACTIONS(839),
- [anon_sym_public] = ACTIONS(839),
- [anon_sym_private] = ACTIONS(839),
- [anon_sym_protected] = ACTIONS(839),
- [anon_sym_override] = ACTIONS(839),
- [anon_sym_module] = ACTIONS(839),
- [anon_sym_any] = ACTIONS(839),
- [anon_sym_number] = ACTIONS(839),
- [anon_sym_boolean] = ACTIONS(839),
- [anon_sym_string] = ACTIONS(839),
- [anon_sym_symbol] = ACTIONS(839),
- [anon_sym_object] = ACTIONS(839),
- [sym_html_comment] = ACTIONS(5),
- },
- [421] = {
- [sym_import] = STATE(3334),
- [sym_parenthesized_expression] = STATE(1179),
- [sym_expression] = STATE(2430),
- [sym_primary_expression] = STATE(1468),
- [sym_yield_expression] = STATE(1634),
- [sym_object] = STATE(1650),
- [sym_object_pattern] = STATE(5854),
- [sym_array] = STATE(1650),
- [sym_array_pattern] = STATE(5854),
- [sym_glimmer_template] = STATE(1634),
- [sym_jsx_element] = STATE(1634),
- [sym_jsx_opening_element] = STATE(3026),
- [sym_jsx_self_closing_element] = STATE(1634),
- [sym_class] = STATE(1650),
- [sym_function_expression] = STATE(1650),
- [sym_generator_function] = STATE(1650),
- [sym_arrow_function] = STATE(1650),
- [sym__call_signature] = STATE(5619),
- [sym_call_expression] = STATE(1650),
- [sym_new_expression] = STATE(1634),
- [sym_await_expression] = STATE(1634),
- [sym_member_expression] = STATE(1179),
- [sym_subscript_expression] = STATE(1179),
- [sym_assignment_expression] = STATE(1634),
- [sym__augmented_assignment_lhs] = STATE(2878),
- [sym_augmented_assignment_expression] = STATE(1634),
- [sym__destructuring_pattern] = STATE(5854),
- [sym_ternary_expression] = STATE(1634),
- [sym_binary_expression] = STATE(1634),
- [sym_unary_expression] = STATE(1634),
- [sym_update_expression] = STATE(1634),
- [sym_string] = STATE(1650),
- [sym_template_string] = STATE(1650),
- [sym_regex] = STATE(1650),
- [sym_meta_property] = STATE(1650),
- [sym_decorator] = STATE(1244),
- [sym_formal_parameters] = STATE(3742),
- [sym_non_null_expression] = STATE(1179),
- [sym_as_expression] = STATE(1634),
- [sym_satisfies_expression] = STATE(1634),
- [sym_instantiation_expression] = STATE(1634),
- [sym_internal_module] = STATE(1634),
- [sym_type_parameters] = STATE(5349),
- [aux_sym_export_statement_repeat1] = STATE(4458),
- [sym_identifier] = ACTIONS(837),
- [anon_sym_export] = ACTIONS(839),
- [anon_sym_type] = ACTIONS(839),
- [anon_sym_namespace] = ACTIONS(843),
- [anon_sym_LBRACE] = ACTIONS(845),
- [anon_sym_typeof] = ACTIONS(187),
- [anon_sym_import] = ACTIONS(133),
- [anon_sym_let] = ACTIONS(839),
- [anon_sym_BANG] = ACTIONS(183),
- [anon_sym_LPAREN] = ACTIONS(815),
- [anon_sym_await] = ACTIONS(142),
- [anon_sym_yield] = ACTIONS(144),
- [anon_sym_LBRACK] = ACTIONS(849),
- [sym_glimmer_opening_tag] = ACTIONS(148),
- [anon_sym_DQUOTE] = ACTIONS(150),
- [anon_sym_SQUOTE] = ACTIONS(152),
- [anon_sym_class] = ACTIONS(154),
- [anon_sym_async] = ACTIONS(851),
- [anon_sym_function] = ACTIONS(158),
- [anon_sym_new] = ACTIONS(853),
- [anon_sym_using] = ACTIONS(166),
- [anon_sym_PLUS] = ACTIONS(187),
- [anon_sym_DASH] = ACTIONS(187),
- [anon_sym_SLASH] = ACTIONS(646),
- [anon_sym_LT] = ACTIONS(181),
- [anon_sym_TILDE] = ACTIONS(183),
- [anon_sym_void] = ACTIONS(187),
- [anon_sym_delete] = ACTIONS(187),
- [anon_sym_PLUS_PLUS] = ACTIONS(719),
- [anon_sym_DASH_DASH] = ACTIONS(719),
- [sym_comment] = ACTIONS(5),
- [anon_sym_BQUOTE] = ACTIONS(825),
- [sym_number] = ACTIONS(787),
- [sym_private_property_identifier] = ACTIONS(196),
- [sym_this] = ACTIONS(200),
- [sym_super] = ACTIONS(200),
- [sym_true] = ACTIONS(200),
- [sym_false] = ACTIONS(200),
- [sym_null] = ACTIONS(200),
- [sym_undefined] = ACTIONS(827),
- [anon_sym_AT] = ACTIONS(99),
- [anon_sym_static] = ACTIONS(839),
- [anon_sym_readonly] = ACTIONS(839),
- [anon_sym_get] = ACTIONS(839),
- [anon_sym_set] = ACTIONS(839),
- [anon_sym_declare] = ACTIONS(839),
- [anon_sym_public] = ACTIONS(839),
- [anon_sym_private] = ACTIONS(839),
- [anon_sym_protected] = ACTIONS(839),
- [anon_sym_override] = ACTIONS(839),
- [anon_sym_module] = ACTIONS(839),
- [anon_sym_any] = ACTIONS(839),
- [anon_sym_number] = ACTIONS(839),
- [anon_sym_boolean] = ACTIONS(839),
- [anon_sym_string] = ACTIONS(839),
- [anon_sym_symbol] = ACTIONS(839),
- [anon_sym_object] = ACTIONS(839),
- [sym_html_comment] = ACTIONS(5),
- },
- [422] = {
- [sym_import] = STATE(3334),
- [sym_parenthesized_expression] = STATE(1179),
- [sym_expression] = STATE(2431),
- [sym_primary_expression] = STATE(1468),
- [sym_yield_expression] = STATE(1634),
- [sym_object] = STATE(1650),
- [sym_object_pattern] = STATE(5854),
- [sym_array] = STATE(1650),
- [sym_array_pattern] = STATE(5854),
- [sym_glimmer_template] = STATE(1634),
- [sym_jsx_element] = STATE(1634),
- [sym_jsx_opening_element] = STATE(3026),
- [sym_jsx_self_closing_element] = STATE(1634),
- [sym_class] = STATE(1650),
- [sym_function_expression] = STATE(1650),
- [sym_generator_function] = STATE(1650),
- [sym_arrow_function] = STATE(1650),
- [sym__call_signature] = STATE(5619),
- [sym_call_expression] = STATE(1650),
- [sym_new_expression] = STATE(1634),
- [sym_await_expression] = STATE(1634),
- [sym_member_expression] = STATE(1179),
- [sym_subscript_expression] = STATE(1179),
- [sym_assignment_expression] = STATE(1634),
- [sym__augmented_assignment_lhs] = STATE(2878),
- [sym_augmented_assignment_expression] = STATE(1634),
- [sym__destructuring_pattern] = STATE(5854),
- [sym_ternary_expression] = STATE(1634),
- [sym_binary_expression] = STATE(1634),
- [sym_unary_expression] = STATE(1634),
- [sym_update_expression] = STATE(1634),
- [sym_string] = STATE(1650),
- [sym_template_string] = STATE(1650),
- [sym_regex] = STATE(1650),
- [sym_meta_property] = STATE(1650),
- [sym_decorator] = STATE(1244),
- [sym_formal_parameters] = STATE(3742),
- [sym_non_null_expression] = STATE(1179),
- [sym_as_expression] = STATE(1634),
- [sym_satisfies_expression] = STATE(1634),
- [sym_instantiation_expression] = STATE(1634),
- [sym_internal_module] = STATE(1634),
- [sym_type_parameters] = STATE(5349),
- [aux_sym_export_statement_repeat1] = STATE(4458),
- [sym_identifier] = ACTIONS(837),
- [anon_sym_export] = ACTIONS(839),
- [anon_sym_type] = ACTIONS(839),
- [anon_sym_namespace] = ACTIONS(843),
- [anon_sym_LBRACE] = ACTIONS(845),
- [anon_sym_typeof] = ACTIONS(187),
- [anon_sym_import] = ACTIONS(133),
- [anon_sym_let] = ACTIONS(839),
- [anon_sym_BANG] = ACTIONS(183),
- [anon_sym_LPAREN] = ACTIONS(815),
- [anon_sym_await] = ACTIONS(142),
- [anon_sym_yield] = ACTIONS(144),
- [anon_sym_LBRACK] = ACTIONS(849),
- [sym_glimmer_opening_tag] = ACTIONS(148),
- [anon_sym_DQUOTE] = ACTIONS(150),
- [anon_sym_SQUOTE] = ACTIONS(152),
- [anon_sym_class] = ACTIONS(154),
- [anon_sym_async] = ACTIONS(851),
- [anon_sym_function] = ACTIONS(158),
- [anon_sym_new] = ACTIONS(853),
- [anon_sym_using] = ACTIONS(166),
- [anon_sym_PLUS] = ACTIONS(187),
- [anon_sym_DASH] = ACTIONS(187),
- [anon_sym_SLASH] = ACTIONS(646),
- [anon_sym_LT] = ACTIONS(181),
- [anon_sym_TILDE] = ACTIONS(183),
- [anon_sym_void] = ACTIONS(187),
- [anon_sym_delete] = ACTIONS(187),
- [anon_sym_PLUS_PLUS] = ACTIONS(719),
- [anon_sym_DASH_DASH] = ACTIONS(719),
- [sym_comment] = ACTIONS(5),
- [anon_sym_BQUOTE] = ACTIONS(825),
- [sym_number] = ACTIONS(787),
- [sym_private_property_identifier] = ACTIONS(196),
- [sym_this] = ACTIONS(200),
- [sym_super] = ACTIONS(200),
- [sym_true] = ACTIONS(200),
- [sym_false] = ACTIONS(200),
- [sym_null] = ACTIONS(200),
- [sym_undefined] = ACTIONS(827),
- [anon_sym_AT] = ACTIONS(99),
- [anon_sym_static] = ACTIONS(839),
- [anon_sym_readonly] = ACTIONS(839),
- [anon_sym_get] = ACTIONS(839),
- [anon_sym_set] = ACTIONS(839),
- [anon_sym_declare] = ACTIONS(839),
- [anon_sym_public] = ACTIONS(839),
- [anon_sym_private] = ACTIONS(839),
- [anon_sym_protected] = ACTIONS(839),
- [anon_sym_override] = ACTIONS(839),
- [anon_sym_module] = ACTIONS(839),
- [anon_sym_any] = ACTIONS(839),
- [anon_sym_number] = ACTIONS(839),
- [anon_sym_boolean] = ACTIONS(839),
- [anon_sym_string] = ACTIONS(839),
- [anon_sym_symbol] = ACTIONS(839),
- [anon_sym_object] = ACTIONS(839),
- [sym_html_comment] = ACTIONS(5),
- },
- [423] = {
- [sym_import] = STATE(3334),
- [sym_parenthesized_expression] = STATE(1179),
- [sym_expression] = STATE(2432),
- [sym_primary_expression] = STATE(1468),
- [sym_yield_expression] = STATE(1634),
- [sym_object] = STATE(1650),
- [sym_object_pattern] = STATE(5854),
- [sym_array] = STATE(1650),
- [sym_array_pattern] = STATE(5854),
- [sym_glimmer_template] = STATE(1634),
- [sym_jsx_element] = STATE(1634),
- [sym_jsx_opening_element] = STATE(3026),
- [sym_jsx_self_closing_element] = STATE(1634),
- [sym_class] = STATE(1650),
- [sym_function_expression] = STATE(1650),
- [sym_generator_function] = STATE(1650),
- [sym_arrow_function] = STATE(1650),
- [sym__call_signature] = STATE(5619),
- [sym_call_expression] = STATE(1650),
- [sym_new_expression] = STATE(1634),
- [sym_await_expression] = STATE(1634),
- [sym_member_expression] = STATE(1179),
- [sym_subscript_expression] = STATE(1179),
- [sym_assignment_expression] = STATE(1634),
- [sym__augmented_assignment_lhs] = STATE(2878),
- [sym_augmented_assignment_expression] = STATE(1634),
- [sym__destructuring_pattern] = STATE(5854),
- [sym_ternary_expression] = STATE(1634),
- [sym_binary_expression] = STATE(1634),
- [sym_unary_expression] = STATE(1634),
- [sym_update_expression] = STATE(1634),
- [sym_string] = STATE(1650),
- [sym_template_string] = STATE(1650),
- [sym_regex] = STATE(1650),
- [sym_meta_property] = STATE(1650),
- [sym_decorator] = STATE(1244),
- [sym_formal_parameters] = STATE(3742),
- [sym_non_null_expression] = STATE(1179),
- [sym_as_expression] = STATE(1634),
- [sym_satisfies_expression] = STATE(1634),
- [sym_instantiation_expression] = STATE(1634),
- [sym_internal_module] = STATE(1634),
- [sym_type_parameters] = STATE(5349),
- [aux_sym_export_statement_repeat1] = STATE(4458),
- [sym_identifier] = ACTIONS(837),
- [anon_sym_export] = ACTIONS(839),
- [anon_sym_type] = ACTIONS(839),
- [anon_sym_namespace] = ACTIONS(843),
- [anon_sym_LBRACE] = ACTIONS(845),
- [anon_sym_typeof] = ACTIONS(187),
- [anon_sym_import] = ACTIONS(133),
- [anon_sym_let] = ACTIONS(839),
- [anon_sym_BANG] = ACTIONS(183),
- [anon_sym_LPAREN] = ACTIONS(815),
- [anon_sym_await] = ACTIONS(142),
- [anon_sym_yield] = ACTIONS(144),
- [anon_sym_LBRACK] = ACTIONS(849),
- [sym_glimmer_opening_tag] = ACTIONS(148),
- [anon_sym_DQUOTE] = ACTIONS(150),
- [anon_sym_SQUOTE] = ACTIONS(152),
- [anon_sym_class] = ACTIONS(154),
- [anon_sym_async] = ACTIONS(851),
- [anon_sym_function] = ACTIONS(158),
- [anon_sym_new] = ACTIONS(853),
- [anon_sym_using] = ACTIONS(166),
- [anon_sym_PLUS] = ACTIONS(187),
- [anon_sym_DASH] = ACTIONS(187),
- [anon_sym_SLASH] = ACTIONS(646),
- [anon_sym_LT] = ACTIONS(181),
- [anon_sym_TILDE] = ACTIONS(183),
- [anon_sym_void] = ACTIONS(187),
- [anon_sym_delete] = ACTIONS(187),
- [anon_sym_PLUS_PLUS] = ACTIONS(719),
- [anon_sym_DASH_DASH] = ACTIONS(719),
- [sym_comment] = ACTIONS(5),
- [anon_sym_BQUOTE] = ACTIONS(825),
- [sym_number] = ACTIONS(787),
- [sym_private_property_identifier] = ACTIONS(196),
- [sym_this] = ACTIONS(200),
- [sym_super] = ACTIONS(200),
- [sym_true] = ACTIONS(200),
- [sym_false] = ACTIONS(200),
- [sym_null] = ACTIONS(200),
- [sym_undefined] = ACTIONS(827),
- [anon_sym_AT] = ACTIONS(99),
- [anon_sym_static] = ACTIONS(839),
- [anon_sym_readonly] = ACTIONS(839),
- [anon_sym_get] = ACTIONS(839),
- [anon_sym_set] = ACTIONS(839),
- [anon_sym_declare] = ACTIONS(839),
- [anon_sym_public] = ACTIONS(839),
- [anon_sym_private] = ACTIONS(839),
- [anon_sym_protected] = ACTIONS(839),
- [anon_sym_override] = ACTIONS(839),
- [anon_sym_module] = ACTIONS(839),
- [anon_sym_any] = ACTIONS(839),
- [anon_sym_number] = ACTIONS(839),
- [anon_sym_boolean] = ACTIONS(839),
- [anon_sym_string] = ACTIONS(839),
- [anon_sym_symbol] = ACTIONS(839),
- [anon_sym_object] = ACTIONS(839),
- [sym_html_comment] = ACTIONS(5),
- },
- [424] = {
- [sym_import] = STATE(3334),
- [sym_parenthesized_expression] = STATE(1179),
- [sym_expression] = STATE(2434),
- [sym_primary_expression] = STATE(1468),
- [sym_yield_expression] = STATE(1634),
- [sym_object] = STATE(1650),
- [sym_object_pattern] = STATE(5854),
- [sym_array] = STATE(1650),
- [sym_array_pattern] = STATE(5854),
- [sym_glimmer_template] = STATE(1634),
- [sym_jsx_element] = STATE(1634),
- [sym_jsx_opening_element] = STATE(3026),
- [sym_jsx_self_closing_element] = STATE(1634),
- [sym_class] = STATE(1650),
- [sym_function_expression] = STATE(1650),
- [sym_generator_function] = STATE(1650),
- [sym_arrow_function] = STATE(1650),
- [sym__call_signature] = STATE(5619),
- [sym_call_expression] = STATE(1650),
- [sym_new_expression] = STATE(1634),
- [sym_await_expression] = STATE(1634),
- [sym_member_expression] = STATE(1179),
- [sym_subscript_expression] = STATE(1179),
- [sym_assignment_expression] = STATE(1634),
- [sym__augmented_assignment_lhs] = STATE(2878),
- [sym_augmented_assignment_expression] = STATE(1634),
- [sym__destructuring_pattern] = STATE(5854),
- [sym_ternary_expression] = STATE(1634),
- [sym_binary_expression] = STATE(1634),
- [sym_unary_expression] = STATE(1634),
- [sym_update_expression] = STATE(1634),
- [sym_string] = STATE(1650),
- [sym_template_string] = STATE(1650),
- [sym_regex] = STATE(1650),
- [sym_meta_property] = STATE(1650),
- [sym_decorator] = STATE(1244),
- [sym_formal_parameters] = STATE(3742),
- [sym_non_null_expression] = STATE(1179),
- [sym_as_expression] = STATE(1634),
- [sym_satisfies_expression] = STATE(1634),
- [sym_instantiation_expression] = STATE(1634),
- [sym_internal_module] = STATE(1634),
- [sym_type_parameters] = STATE(5349),
- [aux_sym_export_statement_repeat1] = STATE(4458),
- [sym_identifier] = ACTIONS(837),
- [anon_sym_export] = ACTIONS(839),
- [anon_sym_type] = ACTIONS(839),
- [anon_sym_namespace] = ACTIONS(843),
- [anon_sym_LBRACE] = ACTIONS(845),
- [anon_sym_typeof] = ACTIONS(187),
- [anon_sym_import] = ACTIONS(133),
- [anon_sym_let] = ACTIONS(839),
- [anon_sym_BANG] = ACTIONS(183),
- [anon_sym_LPAREN] = ACTIONS(815),
- [anon_sym_await] = ACTIONS(142),
- [anon_sym_yield] = ACTIONS(144),
- [anon_sym_LBRACK] = ACTIONS(849),
- [sym_glimmer_opening_tag] = ACTIONS(148),
- [anon_sym_DQUOTE] = ACTIONS(150),
- [anon_sym_SQUOTE] = ACTIONS(152),
- [anon_sym_class] = ACTIONS(154),
- [anon_sym_async] = ACTIONS(851),
- [anon_sym_function] = ACTIONS(158),
- [anon_sym_new] = ACTIONS(853),
- [anon_sym_using] = ACTIONS(166),
- [anon_sym_PLUS] = ACTIONS(187),
- [anon_sym_DASH] = ACTIONS(187),
- [anon_sym_SLASH] = ACTIONS(646),
- [anon_sym_LT] = ACTIONS(181),
- [anon_sym_TILDE] = ACTIONS(183),
- [anon_sym_void] = ACTIONS(187),
- [anon_sym_delete] = ACTIONS(187),
- [anon_sym_PLUS_PLUS] = ACTIONS(719),
- [anon_sym_DASH_DASH] = ACTIONS(719),
- [sym_comment] = ACTIONS(5),
- [anon_sym_BQUOTE] = ACTIONS(825),
- [sym_number] = ACTIONS(787),
- [sym_private_property_identifier] = ACTIONS(196),
- [sym_this] = ACTIONS(200),
- [sym_super] = ACTIONS(200),
- [sym_true] = ACTIONS(200),
- [sym_false] = ACTIONS(200),
- [sym_null] = ACTIONS(200),
- [sym_undefined] = ACTIONS(827),
- [anon_sym_AT] = ACTIONS(99),
- [anon_sym_static] = ACTIONS(839),
- [anon_sym_readonly] = ACTIONS(839),
- [anon_sym_get] = ACTIONS(839),
- [anon_sym_set] = ACTIONS(839),
- [anon_sym_declare] = ACTIONS(839),
- [anon_sym_public] = ACTIONS(839),
- [anon_sym_private] = ACTIONS(839),
- [anon_sym_protected] = ACTIONS(839),
- [anon_sym_override] = ACTIONS(839),
- [anon_sym_module] = ACTIONS(839),
- [anon_sym_any] = ACTIONS(839),
- [anon_sym_number] = ACTIONS(839),
- [anon_sym_boolean] = ACTIONS(839),
- [anon_sym_string] = ACTIONS(839),
- [anon_sym_symbol] = ACTIONS(839),
- [anon_sym_object] = ACTIONS(839),
- [sym_html_comment] = ACTIONS(5),
- },
- [425] = {
- [sym_import] = STATE(3334),
- [sym_parenthesized_expression] = STATE(1179),
- [sym_expression] = STATE(2435),
- [sym_primary_expression] = STATE(1468),
- [sym_yield_expression] = STATE(1634),
- [sym_object] = STATE(1650),
- [sym_object_pattern] = STATE(5854),
- [sym_array] = STATE(1650),
- [sym_array_pattern] = STATE(5854),
- [sym_glimmer_template] = STATE(1634),
- [sym_jsx_element] = STATE(1634),
- [sym_jsx_opening_element] = STATE(3026),
- [sym_jsx_self_closing_element] = STATE(1634),
- [sym_class] = STATE(1650),
- [sym_function_expression] = STATE(1650),
- [sym_generator_function] = STATE(1650),
- [sym_arrow_function] = STATE(1650),
- [sym__call_signature] = STATE(5619),
- [sym_call_expression] = STATE(1650),
- [sym_new_expression] = STATE(1634),
- [sym_await_expression] = STATE(1634),
- [sym_member_expression] = STATE(1179),
- [sym_subscript_expression] = STATE(1179),
- [sym_assignment_expression] = STATE(1634),
- [sym__augmented_assignment_lhs] = STATE(2878),
- [sym_augmented_assignment_expression] = STATE(1634),
- [sym__destructuring_pattern] = STATE(5854),
- [sym_ternary_expression] = STATE(1634),
- [sym_binary_expression] = STATE(1634),
- [sym_unary_expression] = STATE(1634),
- [sym_update_expression] = STATE(1634),
- [sym_string] = STATE(1650),
- [sym_template_string] = STATE(1650),
- [sym_regex] = STATE(1650),
- [sym_meta_property] = STATE(1650),
- [sym_decorator] = STATE(1244),
- [sym_formal_parameters] = STATE(3742),
- [sym_non_null_expression] = STATE(1179),
- [sym_as_expression] = STATE(1634),
- [sym_satisfies_expression] = STATE(1634),
- [sym_instantiation_expression] = STATE(1634),
- [sym_internal_module] = STATE(1634),
- [sym_type_parameters] = STATE(5349),
- [aux_sym_export_statement_repeat1] = STATE(4458),
- [sym_identifier] = ACTIONS(837),
- [anon_sym_export] = ACTIONS(839),
- [anon_sym_type] = ACTIONS(839),
- [anon_sym_namespace] = ACTIONS(843),
- [anon_sym_LBRACE] = ACTIONS(845),
- [anon_sym_typeof] = ACTIONS(187),
- [anon_sym_import] = ACTIONS(133),
- [anon_sym_let] = ACTIONS(839),
- [anon_sym_BANG] = ACTIONS(183),
- [anon_sym_LPAREN] = ACTIONS(815),
- [anon_sym_await] = ACTIONS(142),
- [anon_sym_yield] = ACTIONS(144),
- [anon_sym_LBRACK] = ACTIONS(849),
- [sym_glimmer_opening_tag] = ACTIONS(148),
- [anon_sym_DQUOTE] = ACTIONS(150),
- [anon_sym_SQUOTE] = ACTIONS(152),
- [anon_sym_class] = ACTIONS(154),
- [anon_sym_async] = ACTIONS(851),
- [anon_sym_function] = ACTIONS(158),
- [anon_sym_new] = ACTIONS(853),
- [anon_sym_using] = ACTIONS(166),
- [anon_sym_PLUS] = ACTIONS(187),
- [anon_sym_DASH] = ACTIONS(187),
- [anon_sym_SLASH] = ACTIONS(646),
- [anon_sym_LT] = ACTIONS(181),
- [anon_sym_TILDE] = ACTIONS(183),
- [anon_sym_void] = ACTIONS(187),
- [anon_sym_delete] = ACTIONS(187),
- [anon_sym_PLUS_PLUS] = ACTIONS(719),
- [anon_sym_DASH_DASH] = ACTIONS(719),
- [sym_comment] = ACTIONS(5),
- [anon_sym_BQUOTE] = ACTIONS(825),
- [sym_number] = ACTIONS(787),
- [sym_private_property_identifier] = ACTIONS(196),
- [sym_this] = ACTIONS(200),
- [sym_super] = ACTIONS(200),
- [sym_true] = ACTIONS(200),
- [sym_false] = ACTIONS(200),
- [sym_null] = ACTIONS(200),
- [sym_undefined] = ACTIONS(827),
- [anon_sym_AT] = ACTIONS(99),
- [anon_sym_static] = ACTIONS(839),
- [anon_sym_readonly] = ACTIONS(839),
- [anon_sym_get] = ACTIONS(839),
- [anon_sym_set] = ACTIONS(839),
- [anon_sym_declare] = ACTIONS(839),
- [anon_sym_public] = ACTIONS(839),
- [anon_sym_private] = ACTIONS(839),
- [anon_sym_protected] = ACTIONS(839),
- [anon_sym_override] = ACTIONS(839),
- [anon_sym_module] = ACTIONS(839),
- [anon_sym_any] = ACTIONS(839),
- [anon_sym_number] = ACTIONS(839),
- [anon_sym_boolean] = ACTIONS(839),
- [anon_sym_string] = ACTIONS(839),
- [anon_sym_symbol] = ACTIONS(839),
- [anon_sym_object] = ACTIONS(839),
- [sym_html_comment] = ACTIONS(5),
- },
- [426] = {
- [sym_import] = STATE(3334),
- [sym_parenthesized_expression] = STATE(1179),
- [sym_expression] = STATE(2437),
- [sym_primary_expression] = STATE(1468),
- [sym_yield_expression] = STATE(1634),
- [sym_object] = STATE(1650),
- [sym_object_pattern] = STATE(5854),
- [sym_array] = STATE(1650),
- [sym_array_pattern] = STATE(5854),
- [sym_glimmer_template] = STATE(1634),
- [sym_jsx_element] = STATE(1634),
- [sym_jsx_opening_element] = STATE(3026),
- [sym_jsx_self_closing_element] = STATE(1634),
- [sym_class] = STATE(1650),
- [sym_function_expression] = STATE(1650),
- [sym_generator_function] = STATE(1650),
- [sym_arrow_function] = STATE(1650),
- [sym__call_signature] = STATE(5619),
- [sym_call_expression] = STATE(1650),
- [sym_new_expression] = STATE(1634),
- [sym_await_expression] = STATE(1634),
- [sym_member_expression] = STATE(1179),
- [sym_subscript_expression] = STATE(1179),
- [sym_assignment_expression] = STATE(1634),
- [sym__augmented_assignment_lhs] = STATE(2878),
- [sym_augmented_assignment_expression] = STATE(1634),
- [sym__destructuring_pattern] = STATE(5854),
- [sym_ternary_expression] = STATE(1634),
- [sym_binary_expression] = STATE(1634),
- [sym_unary_expression] = STATE(1634),
- [sym_update_expression] = STATE(1634),
- [sym_string] = STATE(1650),
- [sym_template_string] = STATE(1650),
- [sym_regex] = STATE(1650),
- [sym_meta_property] = STATE(1650),
- [sym_decorator] = STATE(1244),
- [sym_formal_parameters] = STATE(3742),
- [sym_non_null_expression] = STATE(1179),
- [sym_as_expression] = STATE(1634),
- [sym_satisfies_expression] = STATE(1634),
- [sym_instantiation_expression] = STATE(1634),
- [sym_internal_module] = STATE(1634),
- [sym_type_parameters] = STATE(5349),
- [aux_sym_export_statement_repeat1] = STATE(4458),
- [sym_identifier] = ACTIONS(837),
- [anon_sym_export] = ACTIONS(839),
- [anon_sym_type] = ACTIONS(839),
- [anon_sym_namespace] = ACTIONS(843),
- [anon_sym_LBRACE] = ACTIONS(845),
- [anon_sym_typeof] = ACTIONS(187),
- [anon_sym_import] = ACTIONS(133),
- [anon_sym_let] = ACTIONS(839),
- [anon_sym_BANG] = ACTIONS(183),
- [anon_sym_LPAREN] = ACTIONS(815),
- [anon_sym_await] = ACTIONS(142),
- [anon_sym_yield] = ACTIONS(144),
- [anon_sym_LBRACK] = ACTIONS(849),
- [sym_glimmer_opening_tag] = ACTIONS(148),
- [anon_sym_DQUOTE] = ACTIONS(150),
- [anon_sym_SQUOTE] = ACTIONS(152),
- [anon_sym_class] = ACTIONS(154),
- [anon_sym_async] = ACTIONS(851),
- [anon_sym_function] = ACTIONS(158),
- [anon_sym_new] = ACTIONS(853),
- [anon_sym_using] = ACTIONS(166),
- [anon_sym_PLUS] = ACTIONS(187),
- [anon_sym_DASH] = ACTIONS(187),
- [anon_sym_SLASH] = ACTIONS(646),
- [anon_sym_LT] = ACTIONS(181),
- [anon_sym_TILDE] = ACTIONS(183),
- [anon_sym_void] = ACTIONS(187),
- [anon_sym_delete] = ACTIONS(187),
- [anon_sym_PLUS_PLUS] = ACTIONS(719),
- [anon_sym_DASH_DASH] = ACTIONS(719),
- [sym_comment] = ACTIONS(5),
- [anon_sym_BQUOTE] = ACTIONS(825),
- [sym_number] = ACTIONS(787),
- [sym_private_property_identifier] = ACTIONS(196),
- [sym_this] = ACTIONS(200),
- [sym_super] = ACTIONS(200),
- [sym_true] = ACTIONS(200),
- [sym_false] = ACTIONS(200),
- [sym_null] = ACTIONS(200),
- [sym_undefined] = ACTIONS(827),
- [anon_sym_AT] = ACTIONS(99),
- [anon_sym_static] = ACTIONS(839),
- [anon_sym_readonly] = ACTIONS(839),
- [anon_sym_get] = ACTIONS(839),
- [anon_sym_set] = ACTIONS(839),
- [anon_sym_declare] = ACTIONS(839),
- [anon_sym_public] = ACTIONS(839),
- [anon_sym_private] = ACTIONS(839),
- [anon_sym_protected] = ACTIONS(839),
- [anon_sym_override] = ACTIONS(839),
- [anon_sym_module] = ACTIONS(839),
- [anon_sym_any] = ACTIONS(839),
- [anon_sym_number] = ACTIONS(839),
- [anon_sym_boolean] = ACTIONS(839),
- [anon_sym_string] = ACTIONS(839),
- [anon_sym_symbol] = ACTIONS(839),
- [anon_sym_object] = ACTIONS(839),
- [sym_html_comment] = ACTIONS(5),
- },
- [427] = {
- [sym_import] = STATE(3334),
- [sym_parenthesized_expression] = STATE(1179),
- [sym_expression] = STATE(2438),
- [sym_primary_expression] = STATE(1468),
- [sym_yield_expression] = STATE(1634),
- [sym_object] = STATE(1650),
- [sym_object_pattern] = STATE(5854),
- [sym_array] = STATE(1650),
- [sym_array_pattern] = STATE(5854),
- [sym_glimmer_template] = STATE(1634),
- [sym_jsx_element] = STATE(1634),
- [sym_jsx_opening_element] = STATE(3026),
- [sym_jsx_self_closing_element] = STATE(1634),
- [sym_class] = STATE(1650),
- [sym_function_expression] = STATE(1650),
- [sym_generator_function] = STATE(1650),
- [sym_arrow_function] = STATE(1650),
- [sym__call_signature] = STATE(5619),
- [sym_call_expression] = STATE(1650),
- [sym_new_expression] = STATE(1634),
- [sym_await_expression] = STATE(1634),
- [sym_member_expression] = STATE(1179),
- [sym_subscript_expression] = STATE(1179),
- [sym_assignment_expression] = STATE(1634),
- [sym__augmented_assignment_lhs] = STATE(2878),
- [sym_augmented_assignment_expression] = STATE(1634),
- [sym__destructuring_pattern] = STATE(5854),
- [sym_ternary_expression] = STATE(1634),
- [sym_binary_expression] = STATE(1634),
- [sym_unary_expression] = STATE(1634),
- [sym_update_expression] = STATE(1634),
- [sym_string] = STATE(1650),
- [sym_template_string] = STATE(1650),
- [sym_regex] = STATE(1650),
- [sym_meta_property] = STATE(1650),
- [sym_decorator] = STATE(1244),
- [sym_formal_parameters] = STATE(3742),
- [sym_non_null_expression] = STATE(1179),
- [sym_as_expression] = STATE(1634),
- [sym_satisfies_expression] = STATE(1634),
- [sym_instantiation_expression] = STATE(1634),
- [sym_internal_module] = STATE(1634),
- [sym_type_parameters] = STATE(5349),
- [aux_sym_export_statement_repeat1] = STATE(4458),
- [sym_identifier] = ACTIONS(837),
- [anon_sym_export] = ACTIONS(839),
- [anon_sym_type] = ACTIONS(839),
- [anon_sym_namespace] = ACTIONS(843),
- [anon_sym_LBRACE] = ACTIONS(845),
- [anon_sym_typeof] = ACTIONS(187),
- [anon_sym_import] = ACTIONS(133),
- [anon_sym_let] = ACTIONS(839),
- [anon_sym_BANG] = ACTIONS(183),
- [anon_sym_LPAREN] = ACTIONS(815),
- [anon_sym_await] = ACTIONS(142),
- [anon_sym_yield] = ACTIONS(144),
- [anon_sym_LBRACK] = ACTIONS(849),
- [sym_glimmer_opening_tag] = ACTIONS(148),
- [anon_sym_DQUOTE] = ACTIONS(150),
- [anon_sym_SQUOTE] = ACTIONS(152),
- [anon_sym_class] = ACTIONS(154),
- [anon_sym_async] = ACTIONS(851),
- [anon_sym_function] = ACTIONS(158),
- [anon_sym_new] = ACTIONS(853),
- [anon_sym_using] = ACTIONS(166),
- [anon_sym_PLUS] = ACTIONS(187),
- [anon_sym_DASH] = ACTIONS(187),
- [anon_sym_SLASH] = ACTIONS(646),
- [anon_sym_LT] = ACTIONS(181),
- [anon_sym_TILDE] = ACTIONS(183),
- [anon_sym_void] = ACTIONS(187),
- [anon_sym_delete] = ACTIONS(187),
- [anon_sym_PLUS_PLUS] = ACTIONS(719),
- [anon_sym_DASH_DASH] = ACTIONS(719),
- [sym_comment] = ACTIONS(5),
- [anon_sym_BQUOTE] = ACTIONS(825),
- [sym_number] = ACTIONS(787),
- [sym_private_property_identifier] = ACTIONS(196),
- [sym_this] = ACTIONS(200),
- [sym_super] = ACTIONS(200),
- [sym_true] = ACTIONS(200),
- [sym_false] = ACTIONS(200),
- [sym_null] = ACTIONS(200),
- [sym_undefined] = ACTIONS(827),
- [anon_sym_AT] = ACTIONS(99),
- [anon_sym_static] = ACTIONS(839),
- [anon_sym_readonly] = ACTIONS(839),
- [anon_sym_get] = ACTIONS(839),
- [anon_sym_set] = ACTIONS(839),
- [anon_sym_declare] = ACTIONS(839),
- [anon_sym_public] = ACTIONS(839),
- [anon_sym_private] = ACTIONS(839),
- [anon_sym_protected] = ACTIONS(839),
- [anon_sym_override] = ACTIONS(839),
- [anon_sym_module] = ACTIONS(839),
- [anon_sym_any] = ACTIONS(839),
- [anon_sym_number] = ACTIONS(839),
- [anon_sym_boolean] = ACTIONS(839),
- [anon_sym_string] = ACTIONS(839),
- [anon_sym_symbol] = ACTIONS(839),
- [anon_sym_object] = ACTIONS(839),
- [sym_html_comment] = ACTIONS(5),
- },
- [428] = {
- [sym_import] = STATE(3334),
- [sym_parenthesized_expression] = STATE(1179),
- [sym_expression] = STATE(2439),
- [sym_primary_expression] = STATE(1468),
- [sym_yield_expression] = STATE(1634),
- [sym_object] = STATE(1650),
- [sym_object_pattern] = STATE(5854),
- [sym_array] = STATE(1650),
- [sym_array_pattern] = STATE(5854),
- [sym_glimmer_template] = STATE(1634),
- [sym_jsx_element] = STATE(1634),
- [sym_jsx_opening_element] = STATE(3026),
- [sym_jsx_self_closing_element] = STATE(1634),
- [sym_class] = STATE(1650),
- [sym_function_expression] = STATE(1650),
- [sym_generator_function] = STATE(1650),
- [sym_arrow_function] = STATE(1650),
- [sym__call_signature] = STATE(5619),
- [sym_call_expression] = STATE(1650),
- [sym_new_expression] = STATE(1634),
- [sym_await_expression] = STATE(1634),
- [sym_member_expression] = STATE(1179),
- [sym_subscript_expression] = STATE(1179),
- [sym_assignment_expression] = STATE(1634),
- [sym__augmented_assignment_lhs] = STATE(2878),
- [sym_augmented_assignment_expression] = STATE(1634),
- [sym__destructuring_pattern] = STATE(5854),
- [sym_ternary_expression] = STATE(1634),
- [sym_binary_expression] = STATE(1634),
- [sym_unary_expression] = STATE(1634),
- [sym_update_expression] = STATE(1634),
- [sym_string] = STATE(1650),
- [sym_template_string] = STATE(1650),
- [sym_regex] = STATE(1650),
- [sym_meta_property] = STATE(1650),
- [sym_decorator] = STATE(1244),
- [sym_formal_parameters] = STATE(3742),
- [sym_non_null_expression] = STATE(1179),
- [sym_as_expression] = STATE(1634),
- [sym_satisfies_expression] = STATE(1634),
- [sym_instantiation_expression] = STATE(1634),
- [sym_internal_module] = STATE(1634),
- [sym_type_parameters] = STATE(5349),
- [aux_sym_export_statement_repeat1] = STATE(4458),
- [sym_identifier] = ACTIONS(837),
- [anon_sym_export] = ACTIONS(839),
- [anon_sym_type] = ACTIONS(839),
- [anon_sym_namespace] = ACTIONS(843),
- [anon_sym_LBRACE] = ACTIONS(845),
- [anon_sym_typeof] = ACTIONS(187),
- [anon_sym_import] = ACTIONS(133),
- [anon_sym_let] = ACTIONS(839),
- [anon_sym_BANG] = ACTIONS(183),
- [anon_sym_LPAREN] = ACTIONS(815),
- [anon_sym_await] = ACTIONS(142),
- [anon_sym_yield] = ACTIONS(144),
- [anon_sym_LBRACK] = ACTIONS(849),
- [sym_glimmer_opening_tag] = ACTIONS(148),
- [anon_sym_DQUOTE] = ACTIONS(150),
- [anon_sym_SQUOTE] = ACTIONS(152),
- [anon_sym_class] = ACTIONS(154),
- [anon_sym_async] = ACTIONS(851),
- [anon_sym_function] = ACTIONS(158),
- [anon_sym_new] = ACTIONS(853),
- [anon_sym_using] = ACTIONS(166),
- [anon_sym_PLUS] = ACTIONS(187),
- [anon_sym_DASH] = ACTIONS(187),
- [anon_sym_SLASH] = ACTIONS(646),
- [anon_sym_LT] = ACTIONS(181),
- [anon_sym_TILDE] = ACTIONS(183),
- [anon_sym_void] = ACTIONS(187),
- [anon_sym_delete] = ACTIONS(187),
- [anon_sym_PLUS_PLUS] = ACTIONS(719),
- [anon_sym_DASH_DASH] = ACTIONS(719),
- [sym_comment] = ACTIONS(5),
- [anon_sym_BQUOTE] = ACTIONS(825),
- [sym_number] = ACTIONS(787),
- [sym_private_property_identifier] = ACTIONS(196),
- [sym_this] = ACTIONS(200),
- [sym_super] = ACTIONS(200),
- [sym_true] = ACTIONS(200),
- [sym_false] = ACTIONS(200),
- [sym_null] = ACTIONS(200),
- [sym_undefined] = ACTIONS(827),
- [anon_sym_AT] = ACTIONS(99),
- [anon_sym_static] = ACTIONS(839),
- [anon_sym_readonly] = ACTIONS(839),
- [anon_sym_get] = ACTIONS(839),
- [anon_sym_set] = ACTIONS(839),
- [anon_sym_declare] = ACTIONS(839),
- [anon_sym_public] = ACTIONS(839),
- [anon_sym_private] = ACTIONS(839),
- [anon_sym_protected] = ACTIONS(839),
- [anon_sym_override] = ACTIONS(839),
- [anon_sym_module] = ACTIONS(839),
- [anon_sym_any] = ACTIONS(839),
- [anon_sym_number] = ACTIONS(839),
- [anon_sym_boolean] = ACTIONS(839),
- [anon_sym_string] = ACTIONS(839),
- [anon_sym_symbol] = ACTIONS(839),
- [anon_sym_object] = ACTIONS(839),
- [sym_html_comment] = ACTIONS(5),
- },
- [429] = {
- [sym_import] = STATE(3334),
- [sym_parenthesized_expression] = STATE(1179),
- [sym_expression] = STATE(2440),
- [sym_primary_expression] = STATE(1468),
- [sym_yield_expression] = STATE(1634),
- [sym_object] = STATE(1650),
- [sym_object_pattern] = STATE(5854),
- [sym_array] = STATE(1650),
- [sym_array_pattern] = STATE(5854),
- [sym_glimmer_template] = STATE(1634),
- [sym_jsx_element] = STATE(1634),
- [sym_jsx_opening_element] = STATE(3026),
- [sym_jsx_self_closing_element] = STATE(1634),
- [sym_class] = STATE(1650),
- [sym_function_expression] = STATE(1650),
- [sym_generator_function] = STATE(1650),
- [sym_arrow_function] = STATE(1650),
- [sym__call_signature] = STATE(5619),
- [sym_call_expression] = STATE(1650),
- [sym_new_expression] = STATE(1634),
- [sym_await_expression] = STATE(1634),
- [sym_member_expression] = STATE(1179),
- [sym_subscript_expression] = STATE(1179),
- [sym_assignment_expression] = STATE(1634),
- [sym__augmented_assignment_lhs] = STATE(2878),
- [sym_augmented_assignment_expression] = STATE(1634),
- [sym__destructuring_pattern] = STATE(5854),
- [sym_ternary_expression] = STATE(1634),
- [sym_binary_expression] = STATE(1634),
- [sym_unary_expression] = STATE(1634),
- [sym_update_expression] = STATE(1634),
- [sym_string] = STATE(1650),
- [sym_template_string] = STATE(1650),
- [sym_regex] = STATE(1650),
- [sym_meta_property] = STATE(1650),
- [sym_decorator] = STATE(1244),
- [sym_formal_parameters] = STATE(3742),
- [sym_non_null_expression] = STATE(1179),
- [sym_as_expression] = STATE(1634),
- [sym_satisfies_expression] = STATE(1634),
- [sym_instantiation_expression] = STATE(1634),
- [sym_internal_module] = STATE(1634),
- [sym_type_parameters] = STATE(5349),
- [aux_sym_export_statement_repeat1] = STATE(4458),
- [sym_identifier] = ACTIONS(837),
- [anon_sym_export] = ACTIONS(839),
- [anon_sym_type] = ACTIONS(839),
- [anon_sym_namespace] = ACTIONS(843),
- [anon_sym_LBRACE] = ACTIONS(845),
- [anon_sym_typeof] = ACTIONS(187),
- [anon_sym_import] = ACTIONS(133),
- [anon_sym_let] = ACTIONS(839),
- [anon_sym_BANG] = ACTIONS(183),
- [anon_sym_LPAREN] = ACTIONS(815),
- [anon_sym_await] = ACTIONS(142),
- [anon_sym_yield] = ACTIONS(144),
- [anon_sym_LBRACK] = ACTIONS(849),
- [sym_glimmer_opening_tag] = ACTIONS(148),
- [anon_sym_DQUOTE] = ACTIONS(150),
- [anon_sym_SQUOTE] = ACTIONS(152),
- [anon_sym_class] = ACTIONS(154),
- [anon_sym_async] = ACTIONS(851),
- [anon_sym_function] = ACTIONS(158),
- [anon_sym_new] = ACTIONS(853),
- [anon_sym_using] = ACTIONS(166),
- [anon_sym_PLUS] = ACTIONS(187),
- [anon_sym_DASH] = ACTIONS(187),
- [anon_sym_SLASH] = ACTIONS(646),
- [anon_sym_LT] = ACTIONS(181),
- [anon_sym_TILDE] = ACTIONS(183),
- [anon_sym_void] = ACTIONS(187),
- [anon_sym_delete] = ACTIONS(187),
- [anon_sym_PLUS_PLUS] = ACTIONS(719),
- [anon_sym_DASH_DASH] = ACTIONS(719),
- [sym_comment] = ACTIONS(5),
- [anon_sym_BQUOTE] = ACTIONS(825),
- [sym_number] = ACTIONS(787),
- [sym_private_property_identifier] = ACTIONS(196),
- [sym_this] = ACTIONS(200),
- [sym_super] = ACTIONS(200),
- [sym_true] = ACTIONS(200),
- [sym_false] = ACTIONS(200),
- [sym_null] = ACTIONS(200),
- [sym_undefined] = ACTIONS(827),
- [anon_sym_AT] = ACTIONS(99),
- [anon_sym_static] = ACTIONS(839),
- [anon_sym_readonly] = ACTIONS(839),
- [anon_sym_get] = ACTIONS(839),
- [anon_sym_set] = ACTIONS(839),
- [anon_sym_declare] = ACTIONS(839),
- [anon_sym_public] = ACTIONS(839),
- [anon_sym_private] = ACTIONS(839),
- [anon_sym_protected] = ACTIONS(839),
- [anon_sym_override] = ACTIONS(839),
- [anon_sym_module] = ACTIONS(839),
- [anon_sym_any] = ACTIONS(839),
- [anon_sym_number] = ACTIONS(839),
- [anon_sym_boolean] = ACTIONS(839),
- [anon_sym_string] = ACTIONS(839),
- [anon_sym_symbol] = ACTIONS(839),
- [anon_sym_object] = ACTIONS(839),
- [sym_html_comment] = ACTIONS(5),
- },
- [430] = {
- [sym_import] = STATE(3334),
- [sym_parenthesized_expression] = STATE(1179),
- [sym_expression] = STATE(2441),
- [sym_primary_expression] = STATE(1468),
- [sym_yield_expression] = STATE(1634),
- [sym_object] = STATE(1650),
- [sym_object_pattern] = STATE(5854),
- [sym_array] = STATE(1650),
- [sym_array_pattern] = STATE(5854),
- [sym_glimmer_template] = STATE(1634),
- [sym_jsx_element] = STATE(1634),
- [sym_jsx_opening_element] = STATE(3026),
- [sym_jsx_self_closing_element] = STATE(1634),
- [sym_class] = STATE(1650),
- [sym_function_expression] = STATE(1650),
- [sym_generator_function] = STATE(1650),
- [sym_arrow_function] = STATE(1650),
- [sym__call_signature] = STATE(5619),
- [sym_call_expression] = STATE(1650),
- [sym_new_expression] = STATE(1634),
- [sym_await_expression] = STATE(1634),
- [sym_member_expression] = STATE(1179),
- [sym_subscript_expression] = STATE(1179),
- [sym_assignment_expression] = STATE(1634),
- [sym__augmented_assignment_lhs] = STATE(2878),
- [sym_augmented_assignment_expression] = STATE(1634),
- [sym__destructuring_pattern] = STATE(5854),
- [sym_ternary_expression] = STATE(1634),
- [sym_binary_expression] = STATE(1634),
- [sym_unary_expression] = STATE(1634),
- [sym_update_expression] = STATE(1634),
- [sym_string] = STATE(1650),
- [sym_template_string] = STATE(1650),
- [sym_regex] = STATE(1650),
- [sym_meta_property] = STATE(1650),
- [sym_decorator] = STATE(1244),
- [sym_formal_parameters] = STATE(3742),
- [sym_non_null_expression] = STATE(1179),
- [sym_as_expression] = STATE(1634),
- [sym_satisfies_expression] = STATE(1634),
- [sym_instantiation_expression] = STATE(1634),
- [sym_internal_module] = STATE(1634),
- [sym_type_parameters] = STATE(5349),
- [aux_sym_export_statement_repeat1] = STATE(4458),
- [sym_identifier] = ACTIONS(837),
- [anon_sym_export] = ACTIONS(839),
- [anon_sym_type] = ACTIONS(839),
- [anon_sym_namespace] = ACTIONS(843),
- [anon_sym_LBRACE] = ACTIONS(845),
- [anon_sym_typeof] = ACTIONS(187),
- [anon_sym_import] = ACTIONS(133),
- [anon_sym_let] = ACTIONS(839),
- [anon_sym_BANG] = ACTIONS(183),
- [anon_sym_LPAREN] = ACTIONS(815),
- [anon_sym_await] = ACTIONS(142),
- [anon_sym_yield] = ACTIONS(144),
- [anon_sym_LBRACK] = ACTIONS(849),
- [sym_glimmer_opening_tag] = ACTIONS(148),
- [anon_sym_DQUOTE] = ACTIONS(150),
- [anon_sym_SQUOTE] = ACTIONS(152),
- [anon_sym_class] = ACTIONS(154),
- [anon_sym_async] = ACTIONS(851),
- [anon_sym_function] = ACTIONS(158),
- [anon_sym_new] = ACTIONS(853),
- [anon_sym_using] = ACTIONS(166),
- [anon_sym_PLUS] = ACTIONS(187),
- [anon_sym_DASH] = ACTIONS(187),
- [anon_sym_SLASH] = ACTIONS(646),
- [anon_sym_LT] = ACTIONS(181),
- [anon_sym_TILDE] = ACTIONS(183),
- [anon_sym_void] = ACTIONS(187),
- [anon_sym_delete] = ACTIONS(187),
- [anon_sym_PLUS_PLUS] = ACTIONS(719),
- [anon_sym_DASH_DASH] = ACTIONS(719),
- [sym_comment] = ACTIONS(5),
- [anon_sym_BQUOTE] = ACTIONS(825),
- [sym_number] = ACTIONS(787),
- [sym_private_property_identifier] = ACTIONS(196),
- [sym_this] = ACTIONS(200),
- [sym_super] = ACTIONS(200),
- [sym_true] = ACTIONS(200),
- [sym_false] = ACTIONS(200),
- [sym_null] = ACTIONS(200),
- [sym_undefined] = ACTIONS(827),
- [anon_sym_AT] = ACTIONS(99),
- [anon_sym_static] = ACTIONS(839),
- [anon_sym_readonly] = ACTIONS(839),
- [anon_sym_get] = ACTIONS(839),
- [anon_sym_set] = ACTIONS(839),
- [anon_sym_declare] = ACTIONS(839),
- [anon_sym_public] = ACTIONS(839),
- [anon_sym_private] = ACTIONS(839),
- [anon_sym_protected] = ACTIONS(839),
- [anon_sym_override] = ACTIONS(839),
- [anon_sym_module] = ACTIONS(839),
- [anon_sym_any] = ACTIONS(839),
- [anon_sym_number] = ACTIONS(839),
- [anon_sym_boolean] = ACTIONS(839),
- [anon_sym_string] = ACTIONS(839),
- [anon_sym_symbol] = ACTIONS(839),
- [anon_sym_object] = ACTIONS(839),
- [sym_html_comment] = ACTIONS(5),
- },
- [431] = {
- [sym_import] = STATE(3334),
- [sym_parenthesized_expression] = STATE(1179),
- [sym_expression] = STATE(2442),
- [sym_primary_expression] = STATE(1468),
- [sym_yield_expression] = STATE(1634),
- [sym_object] = STATE(1650),
- [sym_object_pattern] = STATE(5854),
- [sym_array] = STATE(1650),
- [sym_array_pattern] = STATE(5854),
- [sym_glimmer_template] = STATE(1634),
- [sym_jsx_element] = STATE(1634),
- [sym_jsx_opening_element] = STATE(3026),
- [sym_jsx_self_closing_element] = STATE(1634),
- [sym_class] = STATE(1650),
- [sym_function_expression] = STATE(1650),
- [sym_generator_function] = STATE(1650),
- [sym_arrow_function] = STATE(1650),
- [sym__call_signature] = STATE(5619),
- [sym_call_expression] = STATE(1650),
- [sym_new_expression] = STATE(1634),
- [sym_await_expression] = STATE(1634),
- [sym_member_expression] = STATE(1179),
- [sym_subscript_expression] = STATE(1179),
- [sym_assignment_expression] = STATE(1634),
- [sym__augmented_assignment_lhs] = STATE(2878),
- [sym_augmented_assignment_expression] = STATE(1634),
- [sym__destructuring_pattern] = STATE(5854),
- [sym_ternary_expression] = STATE(1634),
- [sym_binary_expression] = STATE(1634),
- [sym_unary_expression] = STATE(1634),
- [sym_update_expression] = STATE(1634),
- [sym_string] = STATE(1650),
- [sym_template_string] = STATE(1650),
- [sym_regex] = STATE(1650),
- [sym_meta_property] = STATE(1650),
- [sym_decorator] = STATE(1244),
- [sym_formal_parameters] = STATE(3742),
- [sym_non_null_expression] = STATE(1179),
- [sym_as_expression] = STATE(1634),
- [sym_satisfies_expression] = STATE(1634),
- [sym_instantiation_expression] = STATE(1634),
- [sym_internal_module] = STATE(1634),
- [sym_type_parameters] = STATE(5349),
- [aux_sym_export_statement_repeat1] = STATE(4458),
- [sym_identifier] = ACTIONS(837),
- [anon_sym_export] = ACTIONS(839),
- [anon_sym_type] = ACTIONS(839),
- [anon_sym_namespace] = ACTIONS(843),
- [anon_sym_LBRACE] = ACTIONS(845),
- [anon_sym_typeof] = ACTIONS(187),
- [anon_sym_import] = ACTIONS(133),
- [anon_sym_let] = ACTIONS(839),
- [anon_sym_BANG] = ACTIONS(183),
- [anon_sym_LPAREN] = ACTIONS(815),
- [anon_sym_await] = ACTIONS(142),
- [anon_sym_yield] = ACTIONS(144),
- [anon_sym_LBRACK] = ACTIONS(849),
- [sym_glimmer_opening_tag] = ACTIONS(148),
- [anon_sym_DQUOTE] = ACTIONS(150),
- [anon_sym_SQUOTE] = ACTIONS(152),
- [anon_sym_class] = ACTIONS(154),
- [anon_sym_async] = ACTIONS(851),
- [anon_sym_function] = ACTIONS(158),
- [anon_sym_new] = ACTIONS(853),
- [anon_sym_using] = ACTIONS(166),
- [anon_sym_PLUS] = ACTIONS(187),
- [anon_sym_DASH] = ACTIONS(187),
- [anon_sym_SLASH] = ACTIONS(646),
- [anon_sym_LT] = ACTIONS(181),
- [anon_sym_TILDE] = ACTIONS(183),
- [anon_sym_void] = ACTIONS(187),
- [anon_sym_delete] = ACTIONS(187),
- [anon_sym_PLUS_PLUS] = ACTIONS(719),
- [anon_sym_DASH_DASH] = ACTIONS(719),
- [sym_comment] = ACTIONS(5),
- [anon_sym_BQUOTE] = ACTIONS(825),
- [sym_number] = ACTIONS(787),
- [sym_private_property_identifier] = ACTIONS(196),
- [sym_this] = ACTIONS(200),
- [sym_super] = ACTIONS(200),
- [sym_true] = ACTIONS(200),
- [sym_false] = ACTIONS(200),
- [sym_null] = ACTIONS(200),
- [sym_undefined] = ACTIONS(827),
- [anon_sym_AT] = ACTIONS(99),
- [anon_sym_static] = ACTIONS(839),
- [anon_sym_readonly] = ACTIONS(839),
- [anon_sym_get] = ACTIONS(839),
- [anon_sym_set] = ACTIONS(839),
- [anon_sym_declare] = ACTIONS(839),
- [anon_sym_public] = ACTIONS(839),
- [anon_sym_private] = ACTIONS(839),
- [anon_sym_protected] = ACTIONS(839),
- [anon_sym_override] = ACTIONS(839),
- [anon_sym_module] = ACTIONS(839),
- [anon_sym_any] = ACTIONS(839),
- [anon_sym_number] = ACTIONS(839),
- [anon_sym_boolean] = ACTIONS(839),
- [anon_sym_string] = ACTIONS(839),
- [anon_sym_symbol] = ACTIONS(839),
- [anon_sym_object] = ACTIONS(839),
- [sym_html_comment] = ACTIONS(5),
- },
- [432] = {
- [sym_import] = STATE(3334),
- [sym_parenthesized_expression] = STATE(1179),
- [sym_expression] = STATE(2443),
- [sym_primary_expression] = STATE(1468),
- [sym_yield_expression] = STATE(1634),
- [sym_object] = STATE(1650),
- [sym_object_pattern] = STATE(5854),
- [sym_array] = STATE(1650),
- [sym_array_pattern] = STATE(5854),
- [sym_glimmer_template] = STATE(1634),
- [sym_jsx_element] = STATE(1634),
- [sym_jsx_opening_element] = STATE(3026),
- [sym_jsx_self_closing_element] = STATE(1634),
- [sym_class] = STATE(1650),
- [sym_function_expression] = STATE(1650),
- [sym_generator_function] = STATE(1650),
- [sym_arrow_function] = STATE(1650),
- [sym__call_signature] = STATE(5619),
- [sym_call_expression] = STATE(1650),
- [sym_new_expression] = STATE(1634),
- [sym_await_expression] = STATE(1634),
- [sym_member_expression] = STATE(1179),
- [sym_subscript_expression] = STATE(1179),
- [sym_assignment_expression] = STATE(1634),
- [sym__augmented_assignment_lhs] = STATE(2878),
- [sym_augmented_assignment_expression] = STATE(1634),
- [sym__destructuring_pattern] = STATE(5854),
- [sym_ternary_expression] = STATE(1634),
- [sym_binary_expression] = STATE(1634),
- [sym_unary_expression] = STATE(1634),
- [sym_update_expression] = STATE(1634),
- [sym_string] = STATE(1650),
- [sym_template_string] = STATE(1650),
- [sym_regex] = STATE(1650),
- [sym_meta_property] = STATE(1650),
- [sym_decorator] = STATE(1244),
- [sym_formal_parameters] = STATE(3742),
- [sym_non_null_expression] = STATE(1179),
- [sym_as_expression] = STATE(1634),
- [sym_satisfies_expression] = STATE(1634),
- [sym_instantiation_expression] = STATE(1634),
- [sym_internal_module] = STATE(1634),
- [sym_type_parameters] = STATE(5349),
- [aux_sym_export_statement_repeat1] = STATE(4458),
- [sym_identifier] = ACTIONS(837),
- [anon_sym_export] = ACTIONS(839),
- [anon_sym_type] = ACTIONS(839),
- [anon_sym_namespace] = ACTIONS(843),
- [anon_sym_LBRACE] = ACTIONS(845),
- [anon_sym_typeof] = ACTIONS(187),
- [anon_sym_import] = ACTIONS(133),
- [anon_sym_let] = ACTIONS(839),
- [anon_sym_BANG] = ACTIONS(183),
- [anon_sym_LPAREN] = ACTIONS(815),
- [anon_sym_await] = ACTIONS(142),
- [anon_sym_yield] = ACTIONS(144),
- [anon_sym_LBRACK] = ACTIONS(849),
- [sym_glimmer_opening_tag] = ACTIONS(148),
- [anon_sym_DQUOTE] = ACTIONS(150),
- [anon_sym_SQUOTE] = ACTIONS(152),
- [anon_sym_class] = ACTIONS(154),
- [anon_sym_async] = ACTIONS(851),
- [anon_sym_function] = ACTIONS(158),
- [anon_sym_new] = ACTIONS(853),
- [anon_sym_using] = ACTIONS(166),
- [anon_sym_PLUS] = ACTIONS(187),
- [anon_sym_DASH] = ACTIONS(187),
- [anon_sym_SLASH] = ACTIONS(646),
- [anon_sym_LT] = ACTIONS(181),
- [anon_sym_TILDE] = ACTIONS(183),
- [anon_sym_void] = ACTIONS(187),
- [anon_sym_delete] = ACTIONS(187),
- [anon_sym_PLUS_PLUS] = ACTIONS(719),
- [anon_sym_DASH_DASH] = ACTIONS(719),
- [sym_comment] = ACTIONS(5),
- [anon_sym_BQUOTE] = ACTIONS(825),
- [sym_number] = ACTIONS(787),
- [sym_private_property_identifier] = ACTIONS(196),
- [sym_this] = ACTIONS(200),
- [sym_super] = ACTIONS(200),
- [sym_true] = ACTIONS(200),
- [sym_false] = ACTIONS(200),
- [sym_null] = ACTIONS(200),
- [sym_undefined] = ACTIONS(827),
- [anon_sym_AT] = ACTIONS(99),
- [anon_sym_static] = ACTIONS(839),
- [anon_sym_readonly] = ACTIONS(839),
- [anon_sym_get] = ACTIONS(839),
- [anon_sym_set] = ACTIONS(839),
- [anon_sym_declare] = ACTIONS(839),
- [anon_sym_public] = ACTIONS(839),
- [anon_sym_private] = ACTIONS(839),
- [anon_sym_protected] = ACTIONS(839),
- [anon_sym_override] = ACTIONS(839),
- [anon_sym_module] = ACTIONS(839),
- [anon_sym_any] = ACTIONS(839),
- [anon_sym_number] = ACTIONS(839),
- [anon_sym_boolean] = ACTIONS(839),
- [anon_sym_string] = ACTIONS(839),
- [anon_sym_symbol] = ACTIONS(839),
- [anon_sym_object] = ACTIONS(839),
- [sym_html_comment] = ACTIONS(5),
- },
- [433] = {
- [sym_import] = STATE(3334),
- [sym_parenthesized_expression] = STATE(1179),
- [sym_expression] = STATE(2444),
- [sym_primary_expression] = STATE(1468),
- [sym_yield_expression] = STATE(1634),
- [sym_object] = STATE(1650),
- [sym_object_pattern] = STATE(5854),
- [sym_array] = STATE(1650),
- [sym_array_pattern] = STATE(5854),
- [sym_glimmer_template] = STATE(1634),
- [sym_jsx_element] = STATE(1634),
- [sym_jsx_opening_element] = STATE(3026),
- [sym_jsx_self_closing_element] = STATE(1634),
- [sym_class] = STATE(1650),
- [sym_function_expression] = STATE(1650),
- [sym_generator_function] = STATE(1650),
- [sym_arrow_function] = STATE(1650),
- [sym__call_signature] = STATE(5619),
- [sym_call_expression] = STATE(1650),
- [sym_new_expression] = STATE(1634),
- [sym_await_expression] = STATE(1634),
- [sym_member_expression] = STATE(1179),
- [sym_subscript_expression] = STATE(1179),
- [sym_assignment_expression] = STATE(1634),
- [sym__augmented_assignment_lhs] = STATE(2878),
- [sym_augmented_assignment_expression] = STATE(1634),
- [sym__destructuring_pattern] = STATE(5854),
- [sym_ternary_expression] = STATE(1634),
- [sym_binary_expression] = STATE(1634),
- [sym_unary_expression] = STATE(1634),
- [sym_update_expression] = STATE(1634),
- [sym_string] = STATE(1650),
- [sym_template_string] = STATE(1650),
- [sym_regex] = STATE(1650),
- [sym_meta_property] = STATE(1650),
- [sym_decorator] = STATE(1244),
- [sym_formal_parameters] = STATE(3742),
- [sym_non_null_expression] = STATE(1179),
- [sym_as_expression] = STATE(1634),
- [sym_satisfies_expression] = STATE(1634),
- [sym_instantiation_expression] = STATE(1634),
- [sym_internal_module] = STATE(1634),
- [sym_type_parameters] = STATE(5349),
- [aux_sym_export_statement_repeat1] = STATE(4458),
- [sym_identifier] = ACTIONS(837),
- [anon_sym_export] = ACTIONS(839),
- [anon_sym_type] = ACTIONS(839),
- [anon_sym_namespace] = ACTIONS(843),
- [anon_sym_LBRACE] = ACTIONS(845),
- [anon_sym_typeof] = ACTIONS(187),
- [anon_sym_import] = ACTIONS(133),
- [anon_sym_let] = ACTIONS(839),
- [anon_sym_BANG] = ACTIONS(183),
- [anon_sym_LPAREN] = ACTIONS(815),
- [anon_sym_await] = ACTIONS(142),
- [anon_sym_yield] = ACTIONS(144),
- [anon_sym_LBRACK] = ACTIONS(849),
- [sym_glimmer_opening_tag] = ACTIONS(148),
- [anon_sym_DQUOTE] = ACTIONS(150),
- [anon_sym_SQUOTE] = ACTIONS(152),
- [anon_sym_class] = ACTIONS(154),
- [anon_sym_async] = ACTIONS(851),
- [anon_sym_function] = ACTIONS(158),
- [anon_sym_new] = ACTIONS(853),
- [anon_sym_using] = ACTIONS(166),
- [anon_sym_PLUS] = ACTIONS(187),
- [anon_sym_DASH] = ACTIONS(187),
- [anon_sym_SLASH] = ACTIONS(646),
- [anon_sym_LT] = ACTIONS(181),
- [anon_sym_TILDE] = ACTIONS(183),
- [anon_sym_void] = ACTIONS(187),
- [anon_sym_delete] = ACTIONS(187),
- [anon_sym_PLUS_PLUS] = ACTIONS(719),
- [anon_sym_DASH_DASH] = ACTIONS(719),
- [sym_comment] = ACTIONS(5),
- [anon_sym_BQUOTE] = ACTIONS(825),
- [sym_number] = ACTIONS(787),
- [sym_private_property_identifier] = ACTIONS(196),
- [sym_this] = ACTIONS(200),
- [sym_super] = ACTIONS(200),
- [sym_true] = ACTIONS(200),
- [sym_false] = ACTIONS(200),
- [sym_null] = ACTIONS(200),
- [sym_undefined] = ACTIONS(827),
- [anon_sym_AT] = ACTIONS(99),
- [anon_sym_static] = ACTIONS(839),
- [anon_sym_readonly] = ACTIONS(839),
- [anon_sym_get] = ACTIONS(839),
- [anon_sym_set] = ACTIONS(839),
- [anon_sym_declare] = ACTIONS(839),
- [anon_sym_public] = ACTIONS(839),
- [anon_sym_private] = ACTIONS(839),
- [anon_sym_protected] = ACTIONS(839),
- [anon_sym_override] = ACTIONS(839),
- [anon_sym_module] = ACTIONS(839),
- [anon_sym_any] = ACTIONS(839),
- [anon_sym_number] = ACTIONS(839),
- [anon_sym_boolean] = ACTIONS(839),
- [anon_sym_string] = ACTIONS(839),
- [anon_sym_symbol] = ACTIONS(839),
- [anon_sym_object] = ACTIONS(839),
- [sym_html_comment] = ACTIONS(5),
- },
- [434] = {
- [sym_import] = STATE(3334),
- [sym_parenthesized_expression] = STATE(1179),
- [sym_expression] = STATE(2445),
- [sym_primary_expression] = STATE(1468),
- [sym_yield_expression] = STATE(1634),
- [sym_object] = STATE(1650),
- [sym_object_pattern] = STATE(5854),
- [sym_array] = STATE(1650),
- [sym_array_pattern] = STATE(5854),
- [sym_glimmer_template] = STATE(1634),
- [sym_jsx_element] = STATE(1634),
- [sym_jsx_opening_element] = STATE(3026),
- [sym_jsx_self_closing_element] = STATE(1634),
- [sym_class] = STATE(1650),
- [sym_function_expression] = STATE(1650),
- [sym_generator_function] = STATE(1650),
- [sym_arrow_function] = STATE(1650),
- [sym__call_signature] = STATE(5619),
- [sym_call_expression] = STATE(1650),
- [sym_new_expression] = STATE(1634),
- [sym_await_expression] = STATE(1634),
- [sym_member_expression] = STATE(1179),
- [sym_subscript_expression] = STATE(1179),
- [sym_assignment_expression] = STATE(1634),
- [sym__augmented_assignment_lhs] = STATE(2878),
- [sym_augmented_assignment_expression] = STATE(1634),
- [sym__destructuring_pattern] = STATE(5854),
- [sym_ternary_expression] = STATE(1634),
- [sym_binary_expression] = STATE(1634),
- [sym_unary_expression] = STATE(1634),
- [sym_update_expression] = STATE(1634),
- [sym_string] = STATE(1650),
- [sym_template_string] = STATE(1650),
- [sym_regex] = STATE(1650),
- [sym_meta_property] = STATE(1650),
- [sym_decorator] = STATE(1244),
- [sym_formal_parameters] = STATE(3742),
- [sym_non_null_expression] = STATE(1179),
- [sym_as_expression] = STATE(1634),
- [sym_satisfies_expression] = STATE(1634),
- [sym_instantiation_expression] = STATE(1634),
- [sym_internal_module] = STATE(1634),
- [sym_type_parameters] = STATE(5349),
- [aux_sym_export_statement_repeat1] = STATE(4458),
- [sym_identifier] = ACTIONS(837),
- [anon_sym_export] = ACTIONS(839),
- [anon_sym_type] = ACTIONS(839),
- [anon_sym_namespace] = ACTIONS(843),
- [anon_sym_LBRACE] = ACTIONS(845),
- [anon_sym_typeof] = ACTIONS(187),
- [anon_sym_import] = ACTIONS(133),
- [anon_sym_let] = ACTIONS(839),
- [anon_sym_BANG] = ACTIONS(183),
- [anon_sym_LPAREN] = ACTIONS(815),
- [anon_sym_await] = ACTIONS(142),
- [anon_sym_yield] = ACTIONS(144),
- [anon_sym_LBRACK] = ACTIONS(849),
- [sym_glimmer_opening_tag] = ACTIONS(148),
- [anon_sym_DQUOTE] = ACTIONS(150),
- [anon_sym_SQUOTE] = ACTIONS(152),
- [anon_sym_class] = ACTIONS(154),
- [anon_sym_async] = ACTIONS(851),
- [anon_sym_function] = ACTIONS(158),
- [anon_sym_new] = ACTIONS(853),
- [anon_sym_using] = ACTIONS(166),
- [anon_sym_PLUS] = ACTIONS(187),
- [anon_sym_DASH] = ACTIONS(187),
- [anon_sym_SLASH] = ACTIONS(646),
- [anon_sym_LT] = ACTIONS(181),
- [anon_sym_TILDE] = ACTIONS(183),
- [anon_sym_void] = ACTIONS(187),
- [anon_sym_delete] = ACTIONS(187),
- [anon_sym_PLUS_PLUS] = ACTIONS(719),
- [anon_sym_DASH_DASH] = ACTIONS(719),
- [sym_comment] = ACTIONS(5),
- [anon_sym_BQUOTE] = ACTIONS(825),
- [sym_number] = ACTIONS(787),
- [sym_private_property_identifier] = ACTIONS(196),
- [sym_this] = ACTIONS(200),
- [sym_super] = ACTIONS(200),
- [sym_true] = ACTIONS(200),
- [sym_false] = ACTIONS(200),
- [sym_null] = ACTIONS(200),
- [sym_undefined] = ACTIONS(827),
- [anon_sym_AT] = ACTIONS(99),
- [anon_sym_static] = ACTIONS(839),
- [anon_sym_readonly] = ACTIONS(839),
- [anon_sym_get] = ACTIONS(839),
- [anon_sym_set] = ACTIONS(839),
- [anon_sym_declare] = ACTIONS(839),
- [anon_sym_public] = ACTIONS(839),
- [anon_sym_private] = ACTIONS(839),
- [anon_sym_protected] = ACTIONS(839),
- [anon_sym_override] = ACTIONS(839),
- [anon_sym_module] = ACTIONS(839),
- [anon_sym_any] = ACTIONS(839),
- [anon_sym_number] = ACTIONS(839),
- [anon_sym_boolean] = ACTIONS(839),
- [anon_sym_string] = ACTIONS(839),
- [anon_sym_symbol] = ACTIONS(839),
- [anon_sym_object] = ACTIONS(839),
- [sym_html_comment] = ACTIONS(5),
- },
- [435] = {
- [sym_import] = STATE(3334),
- [sym_parenthesized_expression] = STATE(1179),
- [sym_expression] = STATE(2446),
- [sym_primary_expression] = STATE(1468),
- [sym_yield_expression] = STATE(1634),
- [sym_object] = STATE(1650),
- [sym_object_pattern] = STATE(5854),
- [sym_array] = STATE(1650),
- [sym_array_pattern] = STATE(5854),
- [sym_glimmer_template] = STATE(1634),
- [sym_jsx_element] = STATE(1634),
- [sym_jsx_opening_element] = STATE(3026),
- [sym_jsx_self_closing_element] = STATE(1634),
- [sym_class] = STATE(1650),
- [sym_function_expression] = STATE(1650),
- [sym_generator_function] = STATE(1650),
- [sym_arrow_function] = STATE(1650),
- [sym__call_signature] = STATE(5619),
- [sym_call_expression] = STATE(1650),
- [sym_new_expression] = STATE(1634),
- [sym_await_expression] = STATE(1634),
- [sym_member_expression] = STATE(1179),
- [sym_subscript_expression] = STATE(1179),
- [sym_assignment_expression] = STATE(1634),
- [sym__augmented_assignment_lhs] = STATE(2878),
- [sym_augmented_assignment_expression] = STATE(1634),
- [sym__destructuring_pattern] = STATE(5854),
- [sym_ternary_expression] = STATE(1634),
- [sym_binary_expression] = STATE(1634),
- [sym_unary_expression] = STATE(1634),
- [sym_update_expression] = STATE(1634),
- [sym_string] = STATE(1650),
- [sym_template_string] = STATE(1650),
- [sym_regex] = STATE(1650),
- [sym_meta_property] = STATE(1650),
- [sym_decorator] = STATE(1244),
- [sym_formal_parameters] = STATE(3742),
- [sym_non_null_expression] = STATE(1179),
- [sym_as_expression] = STATE(1634),
- [sym_satisfies_expression] = STATE(1634),
- [sym_instantiation_expression] = STATE(1634),
- [sym_internal_module] = STATE(1634),
- [sym_type_parameters] = STATE(5349),
- [aux_sym_export_statement_repeat1] = STATE(4458),
- [sym_identifier] = ACTIONS(837),
- [anon_sym_export] = ACTIONS(839),
- [anon_sym_type] = ACTIONS(839),
- [anon_sym_namespace] = ACTIONS(843),
- [anon_sym_LBRACE] = ACTIONS(845),
- [anon_sym_typeof] = ACTIONS(187),
- [anon_sym_import] = ACTIONS(133),
- [anon_sym_let] = ACTIONS(839),
- [anon_sym_BANG] = ACTIONS(183),
- [anon_sym_LPAREN] = ACTIONS(815),
- [anon_sym_await] = ACTIONS(142),
- [anon_sym_yield] = ACTIONS(144),
- [anon_sym_LBRACK] = ACTIONS(849),
- [sym_glimmer_opening_tag] = ACTIONS(148),
- [anon_sym_DQUOTE] = ACTIONS(150),
- [anon_sym_SQUOTE] = ACTIONS(152),
- [anon_sym_class] = ACTIONS(154),
- [anon_sym_async] = ACTIONS(851),
- [anon_sym_function] = ACTIONS(158),
- [anon_sym_new] = ACTIONS(853),
- [anon_sym_using] = ACTIONS(166),
- [anon_sym_PLUS] = ACTIONS(187),
- [anon_sym_DASH] = ACTIONS(187),
- [anon_sym_SLASH] = ACTIONS(646),
- [anon_sym_LT] = ACTIONS(181),
- [anon_sym_TILDE] = ACTIONS(183),
- [anon_sym_void] = ACTIONS(187),
- [anon_sym_delete] = ACTIONS(187),
- [anon_sym_PLUS_PLUS] = ACTIONS(719),
- [anon_sym_DASH_DASH] = ACTIONS(719),
- [sym_comment] = ACTIONS(5),
- [anon_sym_BQUOTE] = ACTIONS(825),
- [sym_number] = ACTIONS(787),
- [sym_private_property_identifier] = ACTIONS(196),
- [sym_this] = ACTIONS(200),
- [sym_super] = ACTIONS(200),
- [sym_true] = ACTIONS(200),
- [sym_false] = ACTIONS(200),
- [sym_null] = ACTIONS(200),
- [sym_undefined] = ACTIONS(827),
- [anon_sym_AT] = ACTIONS(99),
- [anon_sym_static] = ACTIONS(839),
- [anon_sym_readonly] = ACTIONS(839),
- [anon_sym_get] = ACTIONS(839),
- [anon_sym_set] = ACTIONS(839),
- [anon_sym_declare] = ACTIONS(839),
- [anon_sym_public] = ACTIONS(839),
- [anon_sym_private] = ACTIONS(839),
- [anon_sym_protected] = ACTIONS(839),
- [anon_sym_override] = ACTIONS(839),
- [anon_sym_module] = ACTIONS(839),
- [anon_sym_any] = ACTIONS(839),
- [anon_sym_number] = ACTIONS(839),
- [anon_sym_boolean] = ACTIONS(839),
- [anon_sym_string] = ACTIONS(839),
- [anon_sym_symbol] = ACTIONS(839),
- [anon_sym_object] = ACTIONS(839),
- [sym_html_comment] = ACTIONS(5),
- },
- [436] = {
- [sym_import] = STATE(3334),
- [sym_parenthesized_expression] = STATE(1179),
- [sym_expression] = STATE(2448),
- [sym_primary_expression] = STATE(1468),
- [sym_yield_expression] = STATE(1634),
- [sym_object] = STATE(1650),
- [sym_object_pattern] = STATE(5854),
- [sym_array] = STATE(1650),
- [sym_array_pattern] = STATE(5854),
- [sym_glimmer_template] = STATE(1634),
- [sym_jsx_element] = STATE(1634),
- [sym_jsx_opening_element] = STATE(3026),
- [sym_jsx_self_closing_element] = STATE(1634),
- [sym_class] = STATE(1650),
- [sym_function_expression] = STATE(1650),
- [sym_generator_function] = STATE(1650),
- [sym_arrow_function] = STATE(1650),
- [sym__call_signature] = STATE(5619),
- [sym_call_expression] = STATE(1650),
- [sym_new_expression] = STATE(1634),
- [sym_await_expression] = STATE(1634),
- [sym_member_expression] = STATE(1179),
- [sym_subscript_expression] = STATE(1179),
- [sym_assignment_expression] = STATE(1634),
- [sym__augmented_assignment_lhs] = STATE(2878),
- [sym_augmented_assignment_expression] = STATE(1634),
- [sym__destructuring_pattern] = STATE(5854),
- [sym_ternary_expression] = STATE(1634),
- [sym_binary_expression] = STATE(1634),
- [sym_unary_expression] = STATE(1634),
- [sym_update_expression] = STATE(1634),
- [sym_string] = STATE(1650),
- [sym_template_string] = STATE(1650),
- [sym_regex] = STATE(1650),
- [sym_meta_property] = STATE(1650),
- [sym_decorator] = STATE(1244),
- [sym_formal_parameters] = STATE(3742),
- [sym_non_null_expression] = STATE(1179),
- [sym_as_expression] = STATE(1634),
- [sym_satisfies_expression] = STATE(1634),
- [sym_instantiation_expression] = STATE(1634),
- [sym_internal_module] = STATE(1634),
- [sym_type_parameters] = STATE(5349),
- [aux_sym_export_statement_repeat1] = STATE(4458),
- [sym_identifier] = ACTIONS(837),
- [anon_sym_export] = ACTIONS(839),
- [anon_sym_type] = ACTIONS(839),
- [anon_sym_namespace] = ACTIONS(843),
- [anon_sym_LBRACE] = ACTIONS(845),
- [anon_sym_typeof] = ACTIONS(187),
- [anon_sym_import] = ACTIONS(133),
- [anon_sym_let] = ACTIONS(839),
- [anon_sym_BANG] = ACTIONS(183),
- [anon_sym_LPAREN] = ACTIONS(815),
- [anon_sym_await] = ACTIONS(142),
- [anon_sym_yield] = ACTIONS(144),
- [anon_sym_LBRACK] = ACTIONS(849),
- [sym_glimmer_opening_tag] = ACTIONS(148),
- [anon_sym_DQUOTE] = ACTIONS(150),
- [anon_sym_SQUOTE] = ACTIONS(152),
- [anon_sym_class] = ACTIONS(154),
- [anon_sym_async] = ACTIONS(851),
- [anon_sym_function] = ACTIONS(158),
- [anon_sym_new] = ACTIONS(853),
- [anon_sym_using] = ACTIONS(166),
- [anon_sym_PLUS] = ACTIONS(187),
- [anon_sym_DASH] = ACTIONS(187),
- [anon_sym_SLASH] = ACTIONS(646),
- [anon_sym_LT] = ACTIONS(181),
- [anon_sym_TILDE] = ACTIONS(183),
- [anon_sym_void] = ACTIONS(187),
- [anon_sym_delete] = ACTIONS(187),
- [anon_sym_PLUS_PLUS] = ACTIONS(719),
- [anon_sym_DASH_DASH] = ACTIONS(719),
- [sym_comment] = ACTIONS(5),
- [anon_sym_BQUOTE] = ACTIONS(825),
- [sym_number] = ACTIONS(787),
- [sym_private_property_identifier] = ACTIONS(196),
- [sym_this] = ACTIONS(200),
- [sym_super] = ACTIONS(200),
- [sym_true] = ACTIONS(200),
- [sym_false] = ACTIONS(200),
- [sym_null] = ACTIONS(200),
- [sym_undefined] = ACTIONS(827),
- [anon_sym_AT] = ACTIONS(99),
- [anon_sym_static] = ACTIONS(839),
- [anon_sym_readonly] = ACTIONS(839),
- [anon_sym_get] = ACTIONS(839),
- [anon_sym_set] = ACTIONS(839),
- [anon_sym_declare] = ACTIONS(839),
- [anon_sym_public] = ACTIONS(839),
- [anon_sym_private] = ACTIONS(839),
- [anon_sym_protected] = ACTIONS(839),
- [anon_sym_override] = ACTIONS(839),
- [anon_sym_module] = ACTIONS(839),
- [anon_sym_any] = ACTIONS(839),
- [anon_sym_number] = ACTIONS(839),
- [anon_sym_boolean] = ACTIONS(839),
- [anon_sym_string] = ACTIONS(839),
- [anon_sym_symbol] = ACTIONS(839),
- [anon_sym_object] = ACTIONS(839),
- [sym_html_comment] = ACTIONS(5),
- },
- [437] = {
- [sym_import] = STATE(3334),
- [sym_parenthesized_expression] = STATE(1336),
- [sym_expression] = STATE(2226),
- [sym_primary_expression] = STATE(1468),
- [sym_yield_expression] = STATE(1634),
- [sym_object] = STATE(1650),
- [sym_object_pattern] = STATE(5745),
- [sym_array] = STATE(1650),
- [sym_array_pattern] = STATE(5745),
- [sym_glimmer_template] = STATE(1634),
- [sym_jsx_element] = STATE(1634),
- [sym_jsx_opening_element] = STATE(3026),
- [sym_jsx_self_closing_element] = STATE(1634),
- [sym_class] = STATE(1650),
- [sym_function_expression] = STATE(1650),
- [sym_generator_function] = STATE(1650),
- [sym_arrow_function] = STATE(1650),
- [sym__call_signature] = STATE(5553),
- [sym_call_expression] = STATE(1650),
- [sym_new_expression] = STATE(1634),
- [sym_await_expression] = STATE(1634),
- [sym_member_expression] = STATE(1336),
- [sym_subscript_expression] = STATE(1336),
- [sym_assignment_expression] = STATE(1634),
- [sym__augmented_assignment_lhs] = STATE(2884),
- [sym_augmented_assignment_expression] = STATE(1634),
- [sym__destructuring_pattern] = STATE(5745),
- [sym_ternary_expression] = STATE(1634),
- [sym_binary_expression] = STATE(1634),
- [sym_unary_expression] = STATE(1634),
- [sym_update_expression] = STATE(1634),
- [sym_string] = STATE(1650),
- [sym_template_string] = STATE(1650),
- [sym_regex] = STATE(1650),
- [sym_meta_property] = STATE(1650),
- [sym_decorator] = STATE(1244),
- [sym_formal_parameters] = STATE(3742),
- [sym_non_null_expression] = STATE(1336),
- [sym_as_expression] = STATE(1634),
- [sym_satisfies_expression] = STATE(1634),
- [sym_instantiation_expression] = STATE(1634),
- [sym_internal_module] = STATE(1634),
- [sym_type_parameters] = STATE(5349),
- [aux_sym_export_statement_repeat1] = STATE(4458),
- [sym_identifier] = ACTIONS(1470),
- [anon_sym_export] = ACTIONS(1250),
- [anon_sym_type] = ACTIONS(1250),
- [anon_sym_namespace] = ACTIONS(1252),
- [anon_sym_LBRACE] = ACTIONS(813),
- [anon_sym_typeof] = ACTIONS(1272),
- [anon_sym_import] = ACTIONS(133),
- [anon_sym_let] = ACTIONS(1250),
- [anon_sym_BANG] = ACTIONS(1256),
- [anon_sym_LPAREN] = ACTIONS(815),
- [anon_sym_await] = ACTIONS(1258),
- [anon_sym_yield] = ACTIONS(1260),
- [anon_sym_LBRACK] = ACTIONS(817),
- [sym_glimmer_opening_tag] = ACTIONS(148),
- [anon_sym_DQUOTE] = ACTIONS(150),
- [anon_sym_SQUOTE] = ACTIONS(152),
- [anon_sym_class] = ACTIONS(154),
- [anon_sym_async] = ACTIONS(1262),
- [anon_sym_function] = ACTIONS(158),
- [anon_sym_new] = ACTIONS(1474),
- [anon_sym_using] = ACTIONS(1266),
- [anon_sym_PLUS] = ACTIONS(1272),
- [anon_sym_DASH] = ACTIONS(1272),
- [anon_sym_SLASH] = ACTIONS(646),
- [anon_sym_LT] = ACTIONS(181),
- [anon_sym_TILDE] = ACTIONS(1256),
- [anon_sym_void] = ACTIONS(1272),
- [anon_sym_delete] = ACTIONS(1272),
- [anon_sym_PLUS_PLUS] = ACTIONS(1274),
- [anon_sym_DASH_DASH] = ACTIONS(1274),
- [sym_comment] = ACTIONS(5),
- [anon_sym_BQUOTE] = ACTIONS(825),
- [sym_number] = ACTIONS(787),
- [sym_private_property_identifier] = ACTIONS(1276),
- [sym_this] = ACTIONS(200),
- [sym_super] = ACTIONS(200),
- [sym_true] = ACTIONS(200),
- [sym_false] = ACTIONS(200),
- [sym_null] = ACTIONS(200),
- [sym_undefined] = ACTIONS(1476),
- [anon_sym_AT] = ACTIONS(99),
- [anon_sym_static] = ACTIONS(1250),
- [anon_sym_readonly] = ACTIONS(1250),
- [anon_sym_get] = ACTIONS(1250),
- [anon_sym_set] = ACTIONS(1250),
- [anon_sym_declare] = ACTIONS(1250),
- [anon_sym_public] = ACTIONS(1250),
- [anon_sym_private] = ACTIONS(1250),
- [anon_sym_protected] = ACTIONS(1250),
- [anon_sym_override] = ACTIONS(1250),
- [anon_sym_module] = ACTIONS(1250),
- [anon_sym_any] = ACTIONS(1250),
- [anon_sym_number] = ACTIONS(1250),
- [anon_sym_boolean] = ACTIONS(1250),
- [anon_sym_string] = ACTIONS(1250),
- [anon_sym_symbol] = ACTIONS(1250),
- [anon_sym_object] = ACTIONS(1250),
- [sym_html_comment] = ACTIONS(5),
- },
- [438] = {
- [sym_import] = STATE(3334),
- [sym_parenthesized_expression] = STATE(1179),
- [sym_expression] = STATE(2453),
- [sym_primary_expression] = STATE(1468),
- [sym_yield_expression] = STATE(1634),
- [sym_object] = STATE(1650),
- [sym_object_pattern] = STATE(5854),
- [sym_array] = STATE(1650),
- [sym_array_pattern] = STATE(5854),
- [sym_glimmer_template] = STATE(1634),
- [sym_jsx_element] = STATE(1634),
- [sym_jsx_opening_element] = STATE(3026),
- [sym_jsx_self_closing_element] = STATE(1634),
- [sym_class] = STATE(1650),
- [sym_function_expression] = STATE(1650),
- [sym_generator_function] = STATE(1650),
- [sym_arrow_function] = STATE(1650),
- [sym__call_signature] = STATE(5619),
- [sym_call_expression] = STATE(1650),
- [sym_new_expression] = STATE(1634),
- [sym_await_expression] = STATE(1634),
- [sym_member_expression] = STATE(1179),
- [sym_subscript_expression] = STATE(1179),
- [sym_assignment_expression] = STATE(1634),
- [sym__augmented_assignment_lhs] = STATE(2878),
- [sym_augmented_assignment_expression] = STATE(1634),
- [sym__destructuring_pattern] = STATE(5854),
- [sym_ternary_expression] = STATE(1634),
- [sym_binary_expression] = STATE(1634),
- [sym_unary_expression] = STATE(1634),
- [sym_update_expression] = STATE(1634),
- [sym_string] = STATE(1650),
- [sym_template_string] = STATE(1650),
- [sym_regex] = STATE(1650),
- [sym_meta_property] = STATE(1650),
- [sym_decorator] = STATE(1244),
- [sym_formal_parameters] = STATE(3742),
- [sym_non_null_expression] = STATE(1179),
- [sym_as_expression] = STATE(1634),
- [sym_satisfies_expression] = STATE(1634),
- [sym_instantiation_expression] = STATE(1634),
- [sym_internal_module] = STATE(1634),
- [sym_type_parameters] = STATE(5349),
- [aux_sym_export_statement_repeat1] = STATE(4458),
- [sym_identifier] = ACTIONS(837),
- [anon_sym_export] = ACTIONS(839),
- [anon_sym_type] = ACTIONS(839),
- [anon_sym_namespace] = ACTIONS(843),
- [anon_sym_LBRACE] = ACTIONS(845),
- [anon_sym_typeof] = ACTIONS(187),
- [anon_sym_import] = ACTIONS(133),
- [anon_sym_let] = ACTIONS(839),
- [anon_sym_BANG] = ACTIONS(183),
- [anon_sym_LPAREN] = ACTIONS(815),
- [anon_sym_await] = ACTIONS(142),
- [anon_sym_yield] = ACTIONS(144),
- [anon_sym_LBRACK] = ACTIONS(849),
- [sym_glimmer_opening_tag] = ACTIONS(148),
- [anon_sym_DQUOTE] = ACTIONS(150),
- [anon_sym_SQUOTE] = ACTIONS(152),
- [anon_sym_class] = ACTIONS(154),
- [anon_sym_async] = ACTIONS(851),
- [anon_sym_function] = ACTIONS(158),
- [anon_sym_new] = ACTIONS(853),
- [anon_sym_using] = ACTIONS(166),
- [anon_sym_PLUS] = ACTIONS(187),
- [anon_sym_DASH] = ACTIONS(187),
- [anon_sym_SLASH] = ACTIONS(646),
- [anon_sym_LT] = ACTIONS(181),
- [anon_sym_TILDE] = ACTIONS(183),
- [anon_sym_void] = ACTIONS(187),
- [anon_sym_delete] = ACTIONS(187),
- [anon_sym_PLUS_PLUS] = ACTIONS(719),
- [anon_sym_DASH_DASH] = ACTIONS(719),
- [sym_comment] = ACTIONS(5),
- [anon_sym_BQUOTE] = ACTIONS(825),
- [sym_number] = ACTIONS(787),
- [sym_private_property_identifier] = ACTIONS(196),
- [sym_this] = ACTIONS(200),
- [sym_super] = ACTIONS(200),
- [sym_true] = ACTIONS(200),
- [sym_false] = ACTIONS(200),
- [sym_null] = ACTIONS(200),
- [sym_undefined] = ACTIONS(827),
- [anon_sym_AT] = ACTIONS(99),
- [anon_sym_static] = ACTIONS(839),
- [anon_sym_readonly] = ACTIONS(839),
- [anon_sym_get] = ACTIONS(839),
- [anon_sym_set] = ACTIONS(839),
- [anon_sym_declare] = ACTIONS(839),
- [anon_sym_public] = ACTIONS(839),
- [anon_sym_private] = ACTIONS(839),
- [anon_sym_protected] = ACTIONS(839),
- [anon_sym_override] = ACTIONS(839),
- [anon_sym_module] = ACTIONS(839),
- [anon_sym_any] = ACTIONS(839),
- [anon_sym_number] = ACTIONS(839),
- [anon_sym_boolean] = ACTIONS(839),
- [anon_sym_string] = ACTIONS(839),
- [anon_sym_symbol] = ACTIONS(839),
- [anon_sym_object] = ACTIONS(839),
- [sym_html_comment] = ACTIONS(5),
- },
- [439] = {
- [sym_import] = STATE(3334),
- [sym_parenthesized_expression] = STATE(1179),
- [sym_expression] = STATE(2454),
- [sym_primary_expression] = STATE(1468),
- [sym_yield_expression] = STATE(1634),
- [sym_object] = STATE(1650),
- [sym_object_pattern] = STATE(5854),
- [sym_array] = STATE(1650),
- [sym_array_pattern] = STATE(5854),
- [sym_glimmer_template] = STATE(1634),
- [sym_jsx_element] = STATE(1634),
- [sym_jsx_opening_element] = STATE(3026),
- [sym_jsx_self_closing_element] = STATE(1634),
- [sym_class] = STATE(1650),
- [sym_function_expression] = STATE(1650),
- [sym_generator_function] = STATE(1650),
- [sym_arrow_function] = STATE(1650),
- [sym__call_signature] = STATE(5619),
- [sym_call_expression] = STATE(1650),
- [sym_new_expression] = STATE(1634),
- [sym_await_expression] = STATE(1634),
- [sym_member_expression] = STATE(1179),
- [sym_subscript_expression] = STATE(1179),
- [sym_assignment_expression] = STATE(1634),
- [sym__augmented_assignment_lhs] = STATE(2878),
- [sym_augmented_assignment_expression] = STATE(1634),
- [sym__destructuring_pattern] = STATE(5854),
- [sym_ternary_expression] = STATE(1634),
- [sym_binary_expression] = STATE(1634),
- [sym_unary_expression] = STATE(1634),
- [sym_update_expression] = STATE(1634),
- [sym_string] = STATE(1650),
- [sym_template_string] = STATE(1650),
- [sym_regex] = STATE(1650),
- [sym_meta_property] = STATE(1650),
- [sym_decorator] = STATE(1244),
- [sym_formal_parameters] = STATE(3742),
- [sym_non_null_expression] = STATE(1179),
- [sym_as_expression] = STATE(1634),
- [sym_satisfies_expression] = STATE(1634),
- [sym_instantiation_expression] = STATE(1634),
- [sym_internal_module] = STATE(1634),
- [sym_type_parameters] = STATE(5349),
- [aux_sym_export_statement_repeat1] = STATE(4458),
- [sym_identifier] = ACTIONS(837),
- [anon_sym_export] = ACTIONS(839),
- [anon_sym_type] = ACTIONS(839),
- [anon_sym_namespace] = ACTIONS(843),
- [anon_sym_LBRACE] = ACTIONS(845),
- [anon_sym_typeof] = ACTIONS(187),
- [anon_sym_import] = ACTIONS(133),
- [anon_sym_let] = ACTIONS(839),
- [anon_sym_BANG] = ACTIONS(183),
- [anon_sym_LPAREN] = ACTIONS(815),
- [anon_sym_await] = ACTIONS(142),
- [anon_sym_yield] = ACTIONS(144),
- [anon_sym_LBRACK] = ACTIONS(849),
- [sym_glimmer_opening_tag] = ACTIONS(148),
- [anon_sym_DQUOTE] = ACTIONS(150),
- [anon_sym_SQUOTE] = ACTIONS(152),
- [anon_sym_class] = ACTIONS(154),
- [anon_sym_async] = ACTIONS(851),
- [anon_sym_function] = ACTIONS(158),
- [anon_sym_new] = ACTIONS(853),
- [anon_sym_using] = ACTIONS(166),
- [anon_sym_PLUS] = ACTIONS(187),
- [anon_sym_DASH] = ACTIONS(187),
- [anon_sym_SLASH] = ACTIONS(646),
- [anon_sym_LT] = ACTIONS(181),
- [anon_sym_TILDE] = ACTIONS(183),
- [anon_sym_void] = ACTIONS(187),
- [anon_sym_delete] = ACTIONS(187),
- [anon_sym_PLUS_PLUS] = ACTIONS(719),
- [anon_sym_DASH_DASH] = ACTIONS(719),
- [sym_comment] = ACTIONS(5),
- [anon_sym_BQUOTE] = ACTIONS(825),
- [sym_number] = ACTIONS(787),
- [sym_private_property_identifier] = ACTIONS(196),
- [sym_this] = ACTIONS(200),
- [sym_super] = ACTIONS(200),
- [sym_true] = ACTIONS(200),
- [sym_false] = ACTIONS(200),
- [sym_null] = ACTIONS(200),
- [sym_undefined] = ACTIONS(827),
- [anon_sym_AT] = ACTIONS(99),
- [anon_sym_static] = ACTIONS(839),
- [anon_sym_readonly] = ACTIONS(839),
- [anon_sym_get] = ACTIONS(839),
- [anon_sym_set] = ACTIONS(839),
- [anon_sym_declare] = ACTIONS(839),
- [anon_sym_public] = ACTIONS(839),
- [anon_sym_private] = ACTIONS(839),
- [anon_sym_protected] = ACTIONS(839),
- [anon_sym_override] = ACTIONS(839),
- [anon_sym_module] = ACTIONS(839),
- [anon_sym_any] = ACTIONS(839),
- [anon_sym_number] = ACTIONS(839),
- [anon_sym_boolean] = ACTIONS(839),
- [anon_sym_string] = ACTIONS(839),
- [anon_sym_symbol] = ACTIONS(839),
- [anon_sym_object] = ACTIONS(839),
- [sym_html_comment] = ACTIONS(5),
- },
- [440] = {
- [sym_import] = STATE(3334),
- [sym_parenthesized_expression] = STATE(1179),
- [sym_expression] = STATE(2405),
- [sym_primary_expression] = STATE(1468),
- [sym_yield_expression] = STATE(1634),
- [sym_object] = STATE(1650),
- [sym_object_pattern] = STATE(5854),
- [sym_array] = STATE(1650),
- [sym_array_pattern] = STATE(5854),
- [sym_glimmer_template] = STATE(1634),
- [sym_jsx_element] = STATE(1634),
- [sym_jsx_opening_element] = STATE(3026),
- [sym_jsx_self_closing_element] = STATE(1634),
- [sym_class] = STATE(1650),
- [sym_function_expression] = STATE(1650),
- [sym_generator_function] = STATE(1650),
- [sym_arrow_function] = STATE(1650),
- [sym__call_signature] = STATE(5619),
- [sym_call_expression] = STATE(1650),
- [sym_new_expression] = STATE(1634),
- [sym_await_expression] = STATE(1634),
- [sym_member_expression] = STATE(1179),
- [sym_subscript_expression] = STATE(1179),
- [sym_assignment_expression] = STATE(1634),
- [sym__augmented_assignment_lhs] = STATE(2878),
- [sym_augmented_assignment_expression] = STATE(1634),
- [sym__destructuring_pattern] = STATE(5854),
- [sym_ternary_expression] = STATE(1634),
- [sym_binary_expression] = STATE(1634),
- [sym_unary_expression] = STATE(1634),
- [sym_update_expression] = STATE(1634),
- [sym_string] = STATE(1650),
- [sym_template_string] = STATE(1650),
- [sym_regex] = STATE(1650),
- [sym_meta_property] = STATE(1650),
- [sym_decorator] = STATE(1244),
- [sym_formal_parameters] = STATE(3742),
- [sym_non_null_expression] = STATE(1179),
- [sym_as_expression] = STATE(1634),
- [sym_satisfies_expression] = STATE(1634),
- [sym_instantiation_expression] = STATE(1634),
- [sym_internal_module] = STATE(1634),
- [sym_type_parameters] = STATE(5349),
- [aux_sym_export_statement_repeat1] = STATE(4458),
- [sym_identifier] = ACTIONS(837),
- [anon_sym_export] = ACTIONS(839),
- [anon_sym_type] = ACTIONS(839),
- [anon_sym_namespace] = ACTIONS(843),
- [anon_sym_LBRACE] = ACTIONS(845),
- [anon_sym_typeof] = ACTIONS(187),
- [anon_sym_import] = ACTIONS(133),
- [anon_sym_let] = ACTIONS(839),
- [anon_sym_BANG] = ACTIONS(183),
- [anon_sym_LPAREN] = ACTIONS(815),
- [anon_sym_await] = ACTIONS(142),
- [anon_sym_yield] = ACTIONS(144),
- [anon_sym_LBRACK] = ACTIONS(849),
- [sym_glimmer_opening_tag] = ACTIONS(148),
- [anon_sym_DQUOTE] = ACTIONS(150),
- [anon_sym_SQUOTE] = ACTIONS(152),
- [anon_sym_class] = ACTIONS(154),
- [anon_sym_async] = ACTIONS(851),
- [anon_sym_function] = ACTIONS(158),
- [anon_sym_new] = ACTIONS(853),
- [anon_sym_using] = ACTIONS(166),
- [anon_sym_PLUS] = ACTIONS(187),
- [anon_sym_DASH] = ACTIONS(187),
- [anon_sym_SLASH] = ACTIONS(646),
- [anon_sym_LT] = ACTIONS(181),
- [anon_sym_TILDE] = ACTIONS(183),
- [anon_sym_void] = ACTIONS(187),
- [anon_sym_delete] = ACTIONS(187),
- [anon_sym_PLUS_PLUS] = ACTIONS(719),
- [anon_sym_DASH_DASH] = ACTIONS(719),
- [sym_comment] = ACTIONS(5),
- [anon_sym_BQUOTE] = ACTIONS(825),
- [sym_number] = ACTIONS(2111),
- [sym_private_property_identifier] = ACTIONS(196),
- [sym_this] = ACTIONS(200),
- [sym_super] = ACTIONS(200),
- [sym_true] = ACTIONS(200),
- [sym_false] = ACTIONS(200),
- [sym_null] = ACTIONS(200),
- [sym_undefined] = ACTIONS(827),
- [anon_sym_AT] = ACTIONS(99),
- [anon_sym_static] = ACTIONS(839),
- [anon_sym_readonly] = ACTIONS(839),
- [anon_sym_get] = ACTIONS(839),
- [anon_sym_set] = ACTIONS(839),
- [anon_sym_declare] = ACTIONS(839),
- [anon_sym_public] = ACTIONS(839),
- [anon_sym_private] = ACTIONS(839),
- [anon_sym_protected] = ACTIONS(839),
- [anon_sym_override] = ACTIONS(839),
- [anon_sym_module] = ACTIONS(839),
- [anon_sym_any] = ACTIONS(839),
- [anon_sym_number] = ACTIONS(839),
- [anon_sym_boolean] = ACTIONS(839),
- [anon_sym_string] = ACTIONS(839),
- [anon_sym_symbol] = ACTIONS(839),
- [anon_sym_object] = ACTIONS(839),
- [sym_html_comment] = ACTIONS(5),
- },
- [441] = {
- [sym_import] = STATE(3334),
- [sym_parenthesized_expression] = STATE(1179),
- [sym_expression] = STATE(2457),
- [sym_primary_expression] = STATE(1468),
- [sym_yield_expression] = STATE(1634),
- [sym_object] = STATE(1650),
- [sym_object_pattern] = STATE(5854),
- [sym_array] = STATE(1650),
- [sym_array_pattern] = STATE(5854),
- [sym_glimmer_template] = STATE(1634),
- [sym_jsx_element] = STATE(1634),
- [sym_jsx_opening_element] = STATE(3026),
- [sym_jsx_self_closing_element] = STATE(1634),
- [sym_class] = STATE(1650),
- [sym_function_expression] = STATE(1650),
- [sym_generator_function] = STATE(1650),
- [sym_arrow_function] = STATE(1650),
- [sym__call_signature] = STATE(5619),
- [sym_call_expression] = STATE(1650),
- [sym_new_expression] = STATE(1634),
- [sym_await_expression] = STATE(1634),
- [sym_member_expression] = STATE(1179),
- [sym_subscript_expression] = STATE(1179),
- [sym_assignment_expression] = STATE(1634),
- [sym__augmented_assignment_lhs] = STATE(2878),
- [sym_augmented_assignment_expression] = STATE(1634),
- [sym__destructuring_pattern] = STATE(5854),
- [sym_ternary_expression] = STATE(1634),
- [sym_binary_expression] = STATE(1634),
- [sym_unary_expression] = STATE(1634),
- [sym_update_expression] = STATE(1634),
- [sym_string] = STATE(1650),
- [sym_template_string] = STATE(1650),
- [sym_regex] = STATE(1650),
- [sym_meta_property] = STATE(1650),
- [sym_decorator] = STATE(1244),
- [sym_formal_parameters] = STATE(3742),
- [sym_non_null_expression] = STATE(1179),
- [sym_as_expression] = STATE(1634),
- [sym_satisfies_expression] = STATE(1634),
- [sym_instantiation_expression] = STATE(1634),
- [sym_internal_module] = STATE(1634),
- [sym_type_parameters] = STATE(5349),
- [aux_sym_export_statement_repeat1] = STATE(4458),
- [sym_identifier] = ACTIONS(837),
- [anon_sym_export] = ACTIONS(839),
- [anon_sym_type] = ACTIONS(839),
- [anon_sym_namespace] = ACTIONS(843),
- [anon_sym_LBRACE] = ACTIONS(845),
- [anon_sym_typeof] = ACTIONS(187),
- [anon_sym_import] = ACTIONS(133),
- [anon_sym_let] = ACTIONS(839),
- [anon_sym_BANG] = ACTIONS(183),
- [anon_sym_LPAREN] = ACTIONS(815),
- [anon_sym_await] = ACTIONS(142),
- [anon_sym_yield] = ACTIONS(144),
- [anon_sym_LBRACK] = ACTIONS(849),
- [sym_glimmer_opening_tag] = ACTIONS(148),
- [anon_sym_DQUOTE] = ACTIONS(150),
- [anon_sym_SQUOTE] = ACTIONS(152),
- [anon_sym_class] = ACTIONS(154),
- [anon_sym_async] = ACTIONS(851),
- [anon_sym_function] = ACTIONS(158),
- [anon_sym_new] = ACTIONS(853),
- [anon_sym_using] = ACTIONS(166),
- [anon_sym_PLUS] = ACTIONS(187),
- [anon_sym_DASH] = ACTIONS(187),
- [anon_sym_SLASH] = ACTIONS(646),
- [anon_sym_LT] = ACTIONS(181),
- [anon_sym_TILDE] = ACTIONS(183),
- [anon_sym_void] = ACTIONS(187),
- [anon_sym_delete] = ACTIONS(187),
- [anon_sym_PLUS_PLUS] = ACTIONS(719),
- [anon_sym_DASH_DASH] = ACTIONS(719),
- [sym_comment] = ACTIONS(5),
- [anon_sym_BQUOTE] = ACTIONS(825),
- [sym_number] = ACTIONS(787),
- [sym_private_property_identifier] = ACTIONS(196),
- [sym_this] = ACTIONS(200),
- [sym_super] = ACTIONS(200),
- [sym_true] = ACTIONS(200),
- [sym_false] = ACTIONS(200),
- [sym_null] = ACTIONS(200),
- [sym_undefined] = ACTIONS(827),
- [anon_sym_AT] = ACTIONS(99),
- [anon_sym_static] = ACTIONS(839),
- [anon_sym_readonly] = ACTIONS(839),
- [anon_sym_get] = ACTIONS(839),
- [anon_sym_set] = ACTIONS(839),
- [anon_sym_declare] = ACTIONS(839),
- [anon_sym_public] = ACTIONS(839),
- [anon_sym_private] = ACTIONS(839),
- [anon_sym_protected] = ACTIONS(839),
- [anon_sym_override] = ACTIONS(839),
- [anon_sym_module] = ACTIONS(839),
- [anon_sym_any] = ACTIONS(839),
- [anon_sym_number] = ACTIONS(839),
- [anon_sym_boolean] = ACTIONS(839),
- [anon_sym_string] = ACTIONS(839),
- [anon_sym_symbol] = ACTIONS(839),
- [anon_sym_object] = ACTIONS(839),
- [sym_html_comment] = ACTIONS(5),
- },
- [442] = {
- [sym_import] = STATE(3334),
- [sym_parenthesized_expression] = STATE(1179),
- [sym_expression] = STATE(2405),
- [sym_primary_expression] = STATE(1468),
- [sym_yield_expression] = STATE(1634),
- [sym_object] = STATE(1650),
- [sym_object_pattern] = STATE(5854),
- [sym_array] = STATE(1650),
- [sym_array_pattern] = STATE(5854),
- [sym_glimmer_template] = STATE(1634),
- [sym_jsx_element] = STATE(1634),
- [sym_jsx_opening_element] = STATE(3026),
- [sym_jsx_self_closing_element] = STATE(1634),
- [sym_class] = STATE(1650),
- [sym_function_expression] = STATE(1650),
- [sym_generator_function] = STATE(1650),
- [sym_arrow_function] = STATE(1650),
- [sym__call_signature] = STATE(5619),
- [sym_call_expression] = STATE(1650),
- [sym_new_expression] = STATE(1634),
- [sym_await_expression] = STATE(1634),
- [sym_member_expression] = STATE(1179),
- [sym_subscript_expression] = STATE(1179),
- [sym_assignment_expression] = STATE(1634),
- [sym__augmented_assignment_lhs] = STATE(2878),
- [sym_augmented_assignment_expression] = STATE(1634),
- [sym__destructuring_pattern] = STATE(5854),
- [sym_ternary_expression] = STATE(1634),
- [sym_binary_expression] = STATE(1634),
- [sym_unary_expression] = STATE(1634),
- [sym_update_expression] = STATE(1634),
- [sym_string] = STATE(1650),
- [sym_template_string] = STATE(1650),
- [sym_regex] = STATE(1650),
- [sym_meta_property] = STATE(1650),
- [sym_decorator] = STATE(1244),
- [sym_formal_parameters] = STATE(3742),
- [sym_non_null_expression] = STATE(1179),
- [sym_as_expression] = STATE(1634),
- [sym_satisfies_expression] = STATE(1634),
- [sym_instantiation_expression] = STATE(1634),
- [sym_internal_module] = STATE(1634),
- [sym_type_parameters] = STATE(5349),
- [aux_sym_export_statement_repeat1] = STATE(4458),
- [sym_identifier] = ACTIONS(837),
- [anon_sym_export] = ACTIONS(839),
- [anon_sym_type] = ACTIONS(839),
- [anon_sym_namespace] = ACTIONS(843),
- [anon_sym_LBRACE] = ACTIONS(845),
- [anon_sym_typeof] = ACTIONS(187),
- [anon_sym_import] = ACTIONS(133),
- [anon_sym_let] = ACTIONS(839),
- [anon_sym_BANG] = ACTIONS(183),
- [anon_sym_LPAREN] = ACTIONS(815),
- [anon_sym_await] = ACTIONS(142),
- [anon_sym_yield] = ACTIONS(144),
- [anon_sym_LBRACK] = ACTIONS(849),
- [sym_glimmer_opening_tag] = ACTIONS(148),
- [anon_sym_DQUOTE] = ACTIONS(150),
- [anon_sym_SQUOTE] = ACTIONS(152),
- [anon_sym_class] = ACTIONS(154),
- [anon_sym_async] = ACTIONS(851),
- [anon_sym_function] = ACTIONS(158),
- [anon_sym_new] = ACTIONS(853),
- [anon_sym_using] = ACTIONS(166),
- [anon_sym_PLUS] = ACTIONS(187),
- [anon_sym_DASH] = ACTIONS(187),
- [anon_sym_SLASH] = ACTIONS(646),
- [anon_sym_LT] = ACTIONS(181),
- [anon_sym_TILDE] = ACTIONS(183),
- [anon_sym_void] = ACTIONS(187),
- [anon_sym_delete] = ACTIONS(187),
- [anon_sym_PLUS_PLUS] = ACTIONS(719),
- [anon_sym_DASH_DASH] = ACTIONS(719),
- [sym_comment] = ACTIONS(5),
- [anon_sym_BQUOTE] = ACTIONS(825),
- [sym_number] = ACTIONS(787),
- [sym_private_property_identifier] = ACTIONS(196),
- [sym_this] = ACTIONS(200),
- [sym_super] = ACTIONS(200),
- [sym_true] = ACTIONS(200),
- [sym_false] = ACTIONS(200),
- [sym_null] = ACTIONS(200),
- [sym_undefined] = ACTIONS(827),
- [anon_sym_AT] = ACTIONS(99),
- [anon_sym_static] = ACTIONS(839),
- [anon_sym_readonly] = ACTIONS(839),
- [anon_sym_get] = ACTIONS(839),
- [anon_sym_set] = ACTIONS(839),
- [anon_sym_declare] = ACTIONS(839),
- [anon_sym_public] = ACTIONS(839),
- [anon_sym_private] = ACTIONS(839),
- [anon_sym_protected] = ACTIONS(839),
- [anon_sym_override] = ACTIONS(839),
- [anon_sym_module] = ACTIONS(839),
- [anon_sym_any] = ACTIONS(839),
- [anon_sym_number] = ACTIONS(839),
- [anon_sym_boolean] = ACTIONS(839),
- [anon_sym_string] = ACTIONS(839),
- [anon_sym_symbol] = ACTIONS(839),
- [anon_sym_object] = ACTIONS(839),
- [sym_html_comment] = ACTIONS(5),
- },
- [443] = {
- [sym_import] = STATE(3334),
- [sym_parenthesized_expression] = STATE(1179),
- [sym_expression] = STATE(2406),
- [sym_primary_expression] = STATE(1468),
- [sym_yield_expression] = STATE(1634),
- [sym_object] = STATE(1650),
- [sym_object_pattern] = STATE(5854),
- [sym_array] = STATE(1650),
- [sym_array_pattern] = STATE(5854),
- [sym_glimmer_template] = STATE(1634),
- [sym_jsx_element] = STATE(1634),
- [sym_jsx_opening_element] = STATE(3026),
- [sym_jsx_self_closing_element] = STATE(1634),
- [sym_class] = STATE(1650),
- [sym_function_expression] = STATE(1650),
- [sym_generator_function] = STATE(1650),
- [sym_arrow_function] = STATE(1650),
- [sym__call_signature] = STATE(5619),
- [sym_call_expression] = STATE(1650),
- [sym_new_expression] = STATE(1634),
- [sym_await_expression] = STATE(1634),
- [sym_member_expression] = STATE(1179),
- [sym_subscript_expression] = STATE(1179),
- [sym_assignment_expression] = STATE(1634),
- [sym__augmented_assignment_lhs] = STATE(2878),
- [sym_augmented_assignment_expression] = STATE(1634),
- [sym__destructuring_pattern] = STATE(5854),
- [sym_ternary_expression] = STATE(1634),
- [sym_binary_expression] = STATE(1634),
- [sym_unary_expression] = STATE(1634),
- [sym_update_expression] = STATE(1634),
- [sym_string] = STATE(1650),
- [sym_template_string] = STATE(1650),
- [sym_regex] = STATE(1650),
- [sym_meta_property] = STATE(1650),
- [sym_decorator] = STATE(1244),
- [sym_formal_parameters] = STATE(3742),
- [sym_non_null_expression] = STATE(1179),
- [sym_as_expression] = STATE(1634),
- [sym_satisfies_expression] = STATE(1634),
- [sym_instantiation_expression] = STATE(1634),
- [sym_internal_module] = STATE(1634),
- [sym_type_parameters] = STATE(5349),
- [aux_sym_export_statement_repeat1] = STATE(4458),
- [sym_identifier] = ACTIONS(837),
- [anon_sym_export] = ACTIONS(839),
- [anon_sym_type] = ACTIONS(839),
- [anon_sym_namespace] = ACTIONS(843),
- [anon_sym_LBRACE] = ACTIONS(845),
- [anon_sym_typeof] = ACTIONS(187),
- [anon_sym_import] = ACTIONS(133),
- [anon_sym_let] = ACTIONS(839),
- [anon_sym_BANG] = ACTIONS(183),
- [anon_sym_LPAREN] = ACTIONS(815),
- [anon_sym_await] = ACTIONS(142),
- [anon_sym_yield] = ACTIONS(144),
- [anon_sym_LBRACK] = ACTIONS(849),
- [sym_glimmer_opening_tag] = ACTIONS(148),
- [anon_sym_DQUOTE] = ACTIONS(150),
- [anon_sym_SQUOTE] = ACTIONS(152),
- [anon_sym_class] = ACTIONS(154),
- [anon_sym_async] = ACTIONS(851),
- [anon_sym_function] = ACTIONS(158),
- [anon_sym_new] = ACTIONS(853),
- [anon_sym_using] = ACTIONS(166),
- [anon_sym_PLUS] = ACTIONS(187),
- [anon_sym_DASH] = ACTIONS(187),
- [anon_sym_SLASH] = ACTIONS(646),
- [anon_sym_LT] = ACTIONS(181),
- [anon_sym_TILDE] = ACTIONS(183),
- [anon_sym_void] = ACTIONS(187),
- [anon_sym_delete] = ACTIONS(187),
- [anon_sym_PLUS_PLUS] = ACTIONS(719),
- [anon_sym_DASH_DASH] = ACTIONS(719),
- [sym_comment] = ACTIONS(5),
- [anon_sym_BQUOTE] = ACTIONS(825),
- [sym_number] = ACTIONS(787),
- [sym_private_property_identifier] = ACTIONS(196),
- [sym_this] = ACTIONS(200),
- [sym_super] = ACTIONS(200),
- [sym_true] = ACTIONS(200),
- [sym_false] = ACTIONS(200),
- [sym_null] = ACTIONS(200),
- [sym_undefined] = ACTIONS(827),
- [anon_sym_AT] = ACTIONS(99),
- [anon_sym_static] = ACTIONS(839),
- [anon_sym_readonly] = ACTIONS(839),
- [anon_sym_get] = ACTIONS(839),
- [anon_sym_set] = ACTIONS(839),
- [anon_sym_declare] = ACTIONS(839),
- [anon_sym_public] = ACTIONS(839),
- [anon_sym_private] = ACTIONS(839),
- [anon_sym_protected] = ACTIONS(839),
- [anon_sym_override] = ACTIONS(839),
- [anon_sym_module] = ACTIONS(839),
- [anon_sym_any] = ACTIONS(839),
- [anon_sym_number] = ACTIONS(839),
- [anon_sym_boolean] = ACTIONS(839),
- [anon_sym_string] = ACTIONS(839),
- [anon_sym_symbol] = ACTIONS(839),
- [anon_sym_object] = ACTIONS(839),
- [sym_html_comment] = ACTIONS(5),
- },
- [444] = {
- [sym_import] = STATE(3334),
- [sym_parenthesized_expression] = STATE(1251),
- [sym_expression] = STATE(1502),
- [sym_primary_expression] = STATE(1468),
- [sym_yield_expression] = STATE(1634),
- [sym_object] = STATE(1650),
- [sym_object_pattern] = STATE(5633),
- [sym_array] = STATE(1650),
- [sym_array_pattern] = STATE(5633),
- [sym_glimmer_template] = STATE(1634),
- [sym_jsx_element] = STATE(1634),
- [sym_jsx_opening_element] = STATE(3026),
- [sym_jsx_self_closing_element] = STATE(1634),
- [sym_class] = STATE(1650),
- [sym_function_expression] = STATE(1650),
- [sym_generator_function] = STATE(1650),
- [sym_arrow_function] = STATE(1650),
- [sym__call_signature] = STATE(5828),
- [sym_call_expression] = STATE(1650),
- [sym_new_expression] = STATE(1634),
- [sym_await_expression] = STATE(1634),
- [sym_member_expression] = STATE(1251),
- [sym_subscript_expression] = STATE(1251),
- [sym_assignment_expression] = STATE(1634),
- [sym__augmented_assignment_lhs] = STATE(2900),
- [sym_augmented_assignment_expression] = STATE(1634),
- [sym__destructuring_pattern] = STATE(5633),
- [sym_ternary_expression] = STATE(1634),
- [sym_binary_expression] = STATE(1634),
- [sym_unary_expression] = STATE(1634),
- [sym_update_expression] = STATE(1634),
- [sym_string] = STATE(1650),
- [sym_template_string] = STATE(1650),
- [sym_regex] = STATE(1650),
- [sym_meta_property] = STATE(1650),
- [sym_decorator] = STATE(1244),
- [sym_formal_parameters] = STATE(3742),
- [sym_non_null_expression] = STATE(1251),
- [sym_as_expression] = STATE(1634),
- [sym_satisfies_expression] = STATE(1634),
- [sym_instantiation_expression] = STATE(1634),
- [sym_internal_module] = STATE(1634),
- [sym_type_parameters] = STATE(5349),
- [aux_sym_export_statement_repeat1] = STATE(4458),
- [sym_identifier] = ACTIONS(1428),
- [anon_sym_export] = ACTIONS(1044),
- [anon_sym_type] = ACTIONS(1044),
- [anon_sym_namespace] = ACTIONS(1046),
- [anon_sym_LBRACE] = ACTIONS(813),
- [anon_sym_typeof] = ACTIONS(650),
- [anon_sym_import] = ACTIONS(133),
- [anon_sym_let] = ACTIONS(1044),
- [anon_sym_BANG] = ACTIONS(622),
- [anon_sym_LPAREN] = ACTIONS(815),
- [anon_sym_await] = ACTIONS(624),
- [anon_sym_yield] = ACTIONS(626),
- [anon_sym_LBRACK] = ACTIONS(817),
- [sym_glimmer_opening_tag] = ACTIONS(148),
- [anon_sym_DQUOTE] = ACTIONS(150),
- [anon_sym_SQUOTE] = ACTIONS(152),
- [anon_sym_class] = ACTIONS(154),
- [anon_sym_async] = ACTIONS(1052),
- [anon_sym_function] = ACTIONS(158),
- [anon_sym_new] = ACTIONS(1436),
- [anon_sym_using] = ACTIONS(636),
- [anon_sym_PLUS] = ACTIONS(650),
- [anon_sym_DASH] = ACTIONS(650),
- [anon_sym_SLASH] = ACTIONS(646),
- [anon_sym_LT] = ACTIONS(181),
- [anon_sym_TILDE] = ACTIONS(622),
- [anon_sym_void] = ACTIONS(650),
- [anon_sym_delete] = ACTIONS(650),
- [anon_sym_PLUS_PLUS] = ACTIONS(652),
- [anon_sym_DASH_DASH] = ACTIONS(652),
- [sym_comment] = ACTIONS(5),
- [anon_sym_BQUOTE] = ACTIONS(825),
- [sym_number] = ACTIONS(787),
- [sym_private_property_identifier] = ACTIONS(654),
- [sym_this] = ACTIONS(200),
- [sym_super] = ACTIONS(200),
- [sym_true] = ACTIONS(200),
- [sym_false] = ACTIONS(200),
- [sym_null] = ACTIONS(200),
- [sym_undefined] = ACTIONS(1438),
- [anon_sym_AT] = ACTIONS(99),
- [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_override] = 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_object] = ACTIONS(1044),
- [sym_html_comment] = ACTIONS(5),
- },
- [445] = {
- [sym_import] = STATE(3306),
- [sym_parenthesized_expression] = STATE(1294),
- [sym_expression] = STATE(1786),
- [sym_primary_expression] = STATE(1946),
- [sym_yield_expression] = STATE(2234),
- [sym_object] = STATE(2310),
- [sym_object_pattern] = STATE(5667),
- [sym_array] = STATE(2310),
- [sym_array_pattern] = STATE(5667),
- [sym_glimmer_template] = STATE(2234),
- [sym_jsx_element] = STATE(2234),
- [sym_jsx_opening_element] = STATE(3051),
- [sym_jsx_self_closing_element] = STATE(2234),
- [sym_class] = STATE(2310),
- [sym_function_expression] = STATE(2310),
- [sym_generator_function] = STATE(2310),
- [sym_arrow_function] = STATE(2310),
- [sym__call_signature] = STATE(5809),
- [sym_call_expression] = STATE(2310),
- [sym_new_expression] = STATE(2234),
- [sym_await_expression] = STATE(2234),
- [sym_member_expression] = STATE(1294),
- [sym_subscript_expression] = STATE(1294),
- [sym_assignment_expression] = STATE(2234),
- [sym__augmented_assignment_lhs] = STATE(2875),
- [sym_augmented_assignment_expression] = STATE(2234),
- [sym__destructuring_pattern] = STATE(5667),
- [sym_ternary_expression] = STATE(2234),
- [sym_binary_expression] = STATE(2234),
- [sym_unary_expression] = STATE(2234),
- [sym_update_expression] = STATE(2234),
- [sym_string] = STATE(2310),
- [sym_template_string] = STATE(2310),
- [sym_regex] = STATE(2310),
- [sym_meta_property] = STATE(2310),
- [sym_decorator] = STATE(1244),
- [sym_formal_parameters] = STATE(3742),
- [sym_non_null_expression] = STATE(1294),
- [sym_as_expression] = STATE(2234),
- [sym_satisfies_expression] = STATE(2234),
- [sym_instantiation_expression] = STATE(2234),
- [sym_internal_module] = STATE(2234),
- [sym_type_parameters] = STATE(5349),
- [aux_sym_export_statement_repeat1] = STATE(4499),
- [sym_identifier] = ACTIONS(1440),
- [anon_sym_export] = ACTIONS(1372),
- [anon_sym_type] = ACTIONS(1372),
- [anon_sym_namespace] = ACTIONS(1374),
- [anon_sym_LBRACE] = ACTIONS(700),
- [anon_sym_typeof] = ACTIONS(21),
- [anon_sym_import] = ACTIONS(133),
- [anon_sym_let] = ACTIONS(1372),
- [anon_sym_BANG] = ACTIONS(33),
- [anon_sym_LPAREN] = ACTIONS(41),
- [anon_sym_await] = ACTIONS(43),
- [anon_sym_yield] = ACTIONS(63),
- [anon_sym_LBRACK] = ACTIONS(65),
- [sym_glimmer_opening_tag] = ACTIONS(67),
- [anon_sym_DQUOTE] = ACTIONS(69),
- [anon_sym_SQUOTE] = ACTIONS(71),
- [anon_sym_class] = ACTIONS(709),
- [anon_sym_async] = ACTIONS(1378),
- [anon_sym_function] = ACTIONS(713),
- [anon_sym_new] = ACTIONS(1444),
- [anon_sym_using] = ACTIONS(81),
- [anon_sym_PLUS] = ACTIONS(21),
- [anon_sym_DASH] = ACTIONS(21),
- [anon_sym_SLASH] = ACTIONS(83),
- [anon_sym_LT] = ACTIONS(85),
- [anon_sym_TILDE] = ACTIONS(33),
- [anon_sym_void] = ACTIONS(21),
- [anon_sym_delete] = ACTIONS(21),
- [anon_sym_PLUS_PLUS] = ACTIONS(87),
- [anon_sym_DASH_DASH] = ACTIONS(87),
- [sym_comment] = ACTIONS(5),
- [anon_sym_BQUOTE] = ACTIONS(89),
- [sym_number] = ACTIONS(91),
- [sym_private_property_identifier] = ACTIONS(93),
- [sym_this] = ACTIONS(95),
- [sym_super] = ACTIONS(95),
- [sym_true] = ACTIONS(95),
- [sym_false] = ACTIONS(95),
- [sym_null] = ACTIONS(95),
- [sym_undefined] = ACTIONS(97),
- [anon_sym_AT] = ACTIONS(99),
- [anon_sym_static] = ACTIONS(1372),
- [anon_sym_readonly] = ACTIONS(1372),
- [anon_sym_get] = ACTIONS(1372),
- [anon_sym_set] = ACTIONS(1372),
- [anon_sym_declare] = ACTIONS(1372),
- [anon_sym_public] = ACTIONS(1372),
- [anon_sym_private] = ACTIONS(1372),
- [anon_sym_protected] = ACTIONS(1372),
- [anon_sym_override] = ACTIONS(1372),
- [anon_sym_module] = ACTIONS(1372),
- [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_object] = ACTIONS(1372),
- [sym_html_comment] = ACTIONS(5),
- },
- [446] = {
- [sym_import] = STATE(3334),
- [sym_parenthesized_expression] = STATE(1393),
- [sym_expression] = STATE(2415),
- [sym_primary_expression] = STATE(1468),
- [sym_yield_expression] = STATE(1634),
- [sym_object] = STATE(1650),
- [sym_object_pattern] = STATE(5823),
- [sym_array] = STATE(1650),
- [sym_array_pattern] = STATE(5823),
- [sym_glimmer_template] = STATE(1634),
- [sym_jsx_element] = STATE(1634),
- [sym_jsx_opening_element] = STATE(3026),
- [sym_jsx_self_closing_element] = STATE(1634),
- [sym_class] = STATE(1650),
- [sym_function_expression] = STATE(1650),
- [sym_generator_function] = STATE(1650),
- [sym_arrow_function] = STATE(1650),
- [sym__call_signature] = STATE(5619),
- [sym_call_expression] = STATE(1650),
- [sym_new_expression] = STATE(1634),
- [sym_await_expression] = STATE(1634),
- [sym_member_expression] = STATE(1393),
- [sym_subscript_expression] = STATE(1393),
- [sym_assignment_expression] = STATE(1634),
- [sym__augmented_assignment_lhs] = STATE(2878),
- [sym_augmented_assignment_expression] = STATE(1634),
- [sym__destructuring_pattern] = STATE(5823),
- [sym_ternary_expression] = STATE(1634),
- [sym_binary_expression] = STATE(1634),
- [sym_unary_expression] = STATE(1634),
- [sym_update_expression] = STATE(1634),
- [sym_string] = STATE(1650),
- [sym_template_string] = STATE(1650),
- [sym_regex] = STATE(1650),
- [sym_meta_property] = STATE(1650),
- [sym_decorator] = STATE(1244),
- [sym_formal_parameters] = STATE(3742),
- [sym_non_null_expression] = STATE(1393),
- [sym_as_expression] = STATE(1634),
- [sym_satisfies_expression] = STATE(1634),
- [sym_instantiation_expression] = STATE(1634),
- [sym_internal_module] = STATE(1634),
- [sym_type_parameters] = STATE(5349),
- [aux_sym_export_statement_repeat1] = STATE(4458),
- [sym_identifier] = ACTIONS(2113),
- [anon_sym_export] = ACTIONS(2115),
- [anon_sym_type] = ACTIONS(2115),
- [anon_sym_namespace] = ACTIONS(2117),
- [anon_sym_LBRACE] = ACTIONS(845),
- [anon_sym_typeof] = ACTIONS(187),
- [anon_sym_import] = ACTIONS(133),
- [anon_sym_let] = ACTIONS(2115),
- [anon_sym_BANG] = ACTIONS(183),
- [anon_sym_LPAREN] = ACTIONS(815),
- [anon_sym_await] = ACTIONS(142),
- [anon_sym_yield] = ACTIONS(144),
- [anon_sym_LBRACK] = ACTIONS(849),
- [sym_glimmer_opening_tag] = ACTIONS(148),
- [anon_sym_DQUOTE] = ACTIONS(150),
- [anon_sym_SQUOTE] = ACTIONS(152),
- [anon_sym_class] = ACTIONS(154),
- [anon_sym_async] = ACTIONS(2119),
- [anon_sym_function] = ACTIONS(158),
- [anon_sym_new] = ACTIONS(2121),
- [anon_sym_using] = ACTIONS(166),
- [anon_sym_PLUS] = ACTIONS(187),
- [anon_sym_DASH] = ACTIONS(187),
- [anon_sym_SLASH] = ACTIONS(646),
- [anon_sym_LT] = ACTIONS(181),
- [anon_sym_TILDE] = ACTIONS(183),
- [anon_sym_void] = ACTIONS(187),
- [anon_sym_delete] = ACTIONS(187),
- [anon_sym_PLUS_PLUS] = ACTIONS(719),
- [anon_sym_DASH_DASH] = ACTIONS(719),
- [sym_comment] = ACTIONS(5),
- [anon_sym_BQUOTE] = ACTIONS(825),
- [sym_number] = ACTIONS(787),
- [sym_private_property_identifier] = ACTIONS(196),
- [sym_this] = ACTIONS(200),
- [sym_super] = ACTIONS(200),
- [sym_true] = ACTIONS(200),
- [sym_false] = ACTIONS(200),
- [sym_null] = ACTIONS(200),
- [sym_undefined] = ACTIONS(2123),
- [anon_sym_AT] = ACTIONS(99),
- [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_override] = 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_object] = ACTIONS(2115),
- [sym_html_comment] = ACTIONS(5),
- },
- [447] = {
- [sym_import] = STATE(3306),
- [sym_parenthesized_expression] = STATE(1300),
- [sym_expression] = STATE(1759),
- [sym_primary_expression] = STATE(1946),
- [sym_yield_expression] = STATE(2234),
- [sym_object] = STATE(2310),
- [sym_object_pattern] = STATE(5831),
- [sym_array] = STATE(2310),
- [sym_array_pattern] = STATE(5831),
- [sym_glimmer_template] = STATE(2234),
- [sym_jsx_element] = STATE(2234),
- [sym_jsx_opening_element] = STATE(3051),
- [sym_jsx_self_closing_element] = STATE(2234),
- [sym_class] = STATE(2310),
- [sym_function_expression] = STATE(2310),
- [sym_generator_function] = STATE(2310),
- [sym_arrow_function] = STATE(2310),
- [sym__call_signature] = STATE(5829),
- [sym_call_expression] = STATE(2310),
- [sym_new_expression] = STATE(2234),
- [sym_await_expression] = STATE(2234),
- [sym_member_expression] = STATE(1300),
- [sym_subscript_expression] = STATE(1300),
- [sym_assignment_expression] = STATE(2234),
- [sym__augmented_assignment_lhs] = STATE(2943),
- [sym_augmented_assignment_expression] = STATE(2234),
- [sym__destructuring_pattern] = STATE(5831),
- [sym_ternary_expression] = STATE(2234),
- [sym_binary_expression] = STATE(2234),
- [sym_unary_expression] = STATE(2234),
- [sym_update_expression] = STATE(2234),
- [sym_string] = STATE(2310),
- [sym_template_string] = STATE(2310),
- [sym_regex] = STATE(2310),
- [sym_meta_property] = STATE(2310),
- [sym_decorator] = STATE(1244),
- [sym_formal_parameters] = STATE(3742),
- [sym_non_null_expression] = STATE(1300),
- [sym_as_expression] = STATE(2234),
- [sym_satisfies_expression] = STATE(2234),
- [sym_instantiation_expression] = STATE(2234),
- [sym_internal_module] = STATE(2234),
- [sym_type_parameters] = STATE(5349),
- [aux_sym_export_statement_repeat1] = STATE(4499),
- [sym_identifier] = ACTIONS(1446),
- [anon_sym_export] = ACTIONS(1202),
- [anon_sym_type] = ACTIONS(1202),
- [anon_sym_namespace] = ACTIONS(1204),
- [anon_sym_LBRACE] = ACTIONS(700),
- [anon_sym_typeof] = ACTIONS(1228),
- [anon_sym_import] = ACTIONS(133),
- [anon_sym_let] = ACTIONS(1202),
- [anon_sym_BANG] = ACTIONS(1210),
- [anon_sym_LPAREN] = ACTIONS(41),
- [anon_sym_await] = ACTIONS(1212),
- [anon_sym_yield] = ACTIONS(1214),
- [anon_sym_LBRACK] = ACTIONS(65),
- [sym_glimmer_opening_tag] = ACTIONS(67),
- [anon_sym_DQUOTE] = ACTIONS(69),
- [anon_sym_SQUOTE] = ACTIONS(71),
- [anon_sym_class] = ACTIONS(709),
- [anon_sym_async] = ACTIONS(1218),
- [anon_sym_function] = ACTIONS(713),
- [anon_sym_new] = ACTIONS(1450),
- [anon_sym_using] = ACTIONS(1222),
- [anon_sym_PLUS] = ACTIONS(1228),
- [anon_sym_DASH] = ACTIONS(1228),
- [anon_sym_SLASH] = ACTIONS(882),
- [anon_sym_LT] = ACTIONS(85),
- [anon_sym_TILDE] = ACTIONS(1210),
- [anon_sym_void] = ACTIONS(1228),
- [anon_sym_delete] = ACTIONS(1228),
- [anon_sym_PLUS_PLUS] = ACTIONS(1230),
- [anon_sym_DASH_DASH] = ACTIONS(1230),
- [sym_comment] = ACTIONS(5),
- [anon_sym_BQUOTE] = ACTIONS(89),
- [sym_number] = ACTIONS(91),
- [sym_private_property_identifier] = ACTIONS(1236),
- [sym_this] = ACTIONS(95),
- [sym_super] = ACTIONS(95),
- [sym_true] = ACTIONS(95),
- [sym_false] = ACTIONS(95),
- [sym_null] = ACTIONS(95),
- [sym_undefined] = ACTIONS(1452),
- [anon_sym_AT] = ACTIONS(99),
- [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_override] = 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_object] = ACTIONS(1202),
- [sym_html_comment] = ACTIONS(5),
- },
- [448] = {
- [sym_import] = STATE(3334),
- [sym_parenthesized_expression] = STATE(1251),
- [sym_expression] = STATE(1508),
- [sym_primary_expression] = STATE(1468),
- [sym_yield_expression] = STATE(1634),
- [sym_object] = STATE(1650),
- [sym_object_pattern] = STATE(5633),
- [sym_array] = STATE(1650),
- [sym_array_pattern] = STATE(5633),
- [sym_glimmer_template] = STATE(1634),
- [sym_jsx_element] = STATE(1634),
- [sym_jsx_opening_element] = STATE(3026),
- [sym_jsx_self_closing_element] = STATE(1634),
- [sym_class] = STATE(1650),
- [sym_function_expression] = STATE(1650),
- [sym_generator_function] = STATE(1650),
- [sym_arrow_function] = STATE(1650),
- [sym__call_signature] = STATE(5828),
- [sym_call_expression] = STATE(1650),
- [sym_new_expression] = STATE(1634),
- [sym_await_expression] = STATE(1634),
- [sym_member_expression] = STATE(1251),
- [sym_subscript_expression] = STATE(1251),
- [sym_assignment_expression] = STATE(1634),
- [sym__augmented_assignment_lhs] = STATE(2900),
- [sym_augmented_assignment_expression] = STATE(1634),
- [sym__destructuring_pattern] = STATE(5633),
- [sym_ternary_expression] = STATE(1634),
- [sym_binary_expression] = STATE(1634),
- [sym_unary_expression] = STATE(1634),
- [sym_update_expression] = STATE(1634),
- [sym_string] = STATE(1650),
- [sym_template_string] = STATE(1650),
- [sym_regex] = STATE(1650),
- [sym_meta_property] = STATE(1650),
- [sym_decorator] = STATE(1244),
- [sym_formal_parameters] = STATE(3742),
- [sym_non_null_expression] = STATE(1251),
- [sym_as_expression] = STATE(1634),
- [sym_satisfies_expression] = STATE(1634),
- [sym_instantiation_expression] = STATE(1634),
- [sym_internal_module] = STATE(1634),
- [sym_type_parameters] = STATE(5349),
- [aux_sym_export_statement_repeat1] = STATE(4458),
- [sym_identifier] = ACTIONS(1428),
- [anon_sym_export] = ACTIONS(1044),
- [anon_sym_type] = ACTIONS(1044),
- [anon_sym_namespace] = ACTIONS(1046),
- [anon_sym_LBRACE] = ACTIONS(813),
- [anon_sym_typeof] = ACTIONS(650),
- [anon_sym_import] = ACTIONS(133),
- [anon_sym_let] = ACTIONS(1044),
- [anon_sym_BANG] = ACTIONS(622),
- [anon_sym_LPAREN] = ACTIONS(815),
- [anon_sym_await] = ACTIONS(624),
- [anon_sym_yield] = ACTIONS(626),
- [anon_sym_LBRACK] = ACTIONS(817),
- [sym_glimmer_opening_tag] = ACTIONS(148),
- [anon_sym_DQUOTE] = ACTIONS(150),
- [anon_sym_SQUOTE] = ACTIONS(152),
- [anon_sym_class] = ACTIONS(154),
- [anon_sym_async] = ACTIONS(1052),
- [anon_sym_function] = ACTIONS(158),
- [anon_sym_new] = ACTIONS(1436),
- [anon_sym_using] = ACTIONS(636),
- [anon_sym_PLUS] = ACTIONS(650),
- [anon_sym_DASH] = ACTIONS(650),
- [anon_sym_SLASH] = ACTIONS(646),
- [anon_sym_LT] = ACTIONS(181),
- [anon_sym_TILDE] = ACTIONS(622),
- [anon_sym_void] = ACTIONS(650),
- [anon_sym_delete] = ACTIONS(650),
- [anon_sym_PLUS_PLUS] = ACTIONS(652),
- [anon_sym_DASH_DASH] = ACTIONS(652),
- [sym_comment] = ACTIONS(5),
- [anon_sym_BQUOTE] = ACTIONS(825),
- [sym_number] = ACTIONS(787),
- [sym_private_property_identifier] = ACTIONS(654),
- [sym_this] = ACTIONS(200),
- [sym_super] = ACTIONS(200),
- [sym_true] = ACTIONS(200),
- [sym_false] = ACTIONS(200),
- [sym_null] = ACTIONS(200),
- [sym_undefined] = ACTIONS(1438),
- [anon_sym_AT] = ACTIONS(99),
- [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_override] = 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_object] = ACTIONS(1044),
- [sym_html_comment] = ACTIONS(5),
- },
- [449] = {
- [sym_import] = STATE(3306),
- [sym_parenthesized_expression] = STATE(1300),
- [sym_expression] = STATE(1783),
- [sym_primary_expression] = STATE(1946),
- [sym_yield_expression] = STATE(2234),
- [sym_object] = STATE(2310),
- [sym_object_pattern] = STATE(5831),
- [sym_array] = STATE(2310),
- [sym_array_pattern] = STATE(5831),
- [sym_glimmer_template] = STATE(2234),
- [sym_jsx_element] = STATE(2234),
- [sym_jsx_opening_element] = STATE(3051),
- [sym_jsx_self_closing_element] = STATE(2234),
- [sym_class] = STATE(2310),
- [sym_function_expression] = STATE(2310),
- [sym_generator_function] = STATE(2310),
- [sym_arrow_function] = STATE(2310),
- [sym__call_signature] = STATE(5829),
- [sym_call_expression] = STATE(2310),
- [sym_new_expression] = STATE(2234),
- [sym_await_expression] = STATE(2234),
- [sym_member_expression] = STATE(1300),
- [sym_subscript_expression] = STATE(1300),
- [sym_assignment_expression] = STATE(2234),
- [sym__augmented_assignment_lhs] = STATE(2943),
- [sym_augmented_assignment_expression] = STATE(2234),
- [sym__destructuring_pattern] = STATE(5831),
- [sym_ternary_expression] = STATE(2234),
- [sym_binary_expression] = STATE(2234),
- [sym_unary_expression] = STATE(2234),
- [sym_update_expression] = STATE(2234),
- [sym_string] = STATE(2310),
- [sym_template_string] = STATE(2310),
- [sym_regex] = STATE(2310),
- [sym_meta_property] = STATE(2310),
- [sym_decorator] = STATE(1244),
- [sym_formal_parameters] = STATE(3742),
- [sym_non_null_expression] = STATE(1300),
- [sym_as_expression] = STATE(2234),
- [sym_satisfies_expression] = STATE(2234),
- [sym_instantiation_expression] = STATE(2234),
- [sym_internal_module] = STATE(2234),
- [sym_type_parameters] = STATE(5349),
- [aux_sym_export_statement_repeat1] = STATE(4499),
- [sym_identifier] = ACTIONS(1446),
- [anon_sym_export] = ACTIONS(1202),
- [anon_sym_type] = ACTIONS(1202),
- [anon_sym_namespace] = ACTIONS(1204),
- [anon_sym_LBRACE] = ACTIONS(700),
- [anon_sym_typeof] = ACTIONS(1228),
- [anon_sym_import] = ACTIONS(133),
- [anon_sym_let] = ACTIONS(1202),
- [anon_sym_BANG] = ACTIONS(1210),
- [anon_sym_LPAREN] = ACTIONS(41),
- [anon_sym_await] = ACTIONS(1212),
- [anon_sym_yield] = ACTIONS(1214),
- [anon_sym_LBRACK] = ACTIONS(65),
- [sym_glimmer_opening_tag] = ACTIONS(67),
- [anon_sym_DQUOTE] = ACTIONS(69),
- [anon_sym_SQUOTE] = ACTIONS(71),
- [anon_sym_class] = ACTIONS(709),
- [anon_sym_async] = ACTIONS(1218),
- [anon_sym_function] = ACTIONS(713),
- [anon_sym_new] = ACTIONS(1450),
- [anon_sym_using] = ACTIONS(1222),
- [anon_sym_PLUS] = ACTIONS(1228),
- [anon_sym_DASH] = ACTIONS(1228),
- [anon_sym_SLASH] = ACTIONS(882),
- [anon_sym_LT] = ACTIONS(85),
- [anon_sym_TILDE] = ACTIONS(1210),
- [anon_sym_void] = ACTIONS(1228),
- [anon_sym_delete] = ACTIONS(1228),
- [anon_sym_PLUS_PLUS] = ACTIONS(1230),
- [anon_sym_DASH_DASH] = ACTIONS(1230),
- [sym_comment] = ACTIONS(5),
- [anon_sym_BQUOTE] = ACTIONS(89),
- [sym_number] = ACTIONS(91),
- [sym_private_property_identifier] = ACTIONS(1236),
- [sym_this] = ACTIONS(95),
- [sym_super] = ACTIONS(95),
- [sym_true] = ACTIONS(95),
- [sym_false] = ACTIONS(95),
- [sym_null] = ACTIONS(95),
- [sym_undefined] = ACTIONS(1452),
- [anon_sym_AT] = ACTIONS(99),
- [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_override] = 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_object] = ACTIONS(1202),
- [sym_html_comment] = ACTIONS(5),
- },
- [450] = {
- [sym_import] = STATE(3306),
- [sym_parenthesized_expression] = STATE(1300),
- [sym_expression] = STATE(1651),
- [sym_primary_expression] = STATE(1946),
- [sym_yield_expression] = STATE(2234),
- [sym_object] = STATE(2310),
- [sym_object_pattern] = STATE(5831),
- [sym_array] = STATE(2310),
- [sym_array_pattern] = STATE(5831),
- [sym_glimmer_template] = STATE(2234),
- [sym_jsx_element] = STATE(2234),
- [sym_jsx_opening_element] = STATE(3051),
- [sym_jsx_self_closing_element] = STATE(2234),
- [sym_class] = STATE(2310),
- [sym_function_expression] = STATE(2310),
- [sym_generator_function] = STATE(2310),
- [sym_arrow_function] = STATE(2310),
- [sym__call_signature] = STATE(5829),
- [sym_call_expression] = STATE(2310),
- [sym_new_expression] = STATE(2234),
- [sym_await_expression] = STATE(2234),
- [sym_member_expression] = STATE(1300),
- [sym_subscript_expression] = STATE(1300),
- [sym_assignment_expression] = STATE(2234),
- [sym__augmented_assignment_lhs] = STATE(2943),
- [sym_augmented_assignment_expression] = STATE(2234),
- [sym__destructuring_pattern] = STATE(5831),
- [sym_ternary_expression] = STATE(2234),
- [sym_binary_expression] = STATE(2234),
- [sym_unary_expression] = STATE(2234),
- [sym_update_expression] = STATE(2234),
- [sym_string] = STATE(2310),
- [sym_template_string] = STATE(2310),
- [sym_regex] = STATE(2310),
- [sym_meta_property] = STATE(2310),
- [sym_decorator] = STATE(1244),
- [sym_formal_parameters] = STATE(3742),
- [sym_non_null_expression] = STATE(1300),
- [sym_as_expression] = STATE(2234),
- [sym_satisfies_expression] = STATE(2234),
- [sym_instantiation_expression] = STATE(2234),
- [sym_internal_module] = STATE(2234),
- [sym_type_parameters] = STATE(5349),
- [aux_sym_export_statement_repeat1] = STATE(4499),
- [sym_identifier] = ACTIONS(1446),
- [anon_sym_export] = ACTIONS(1202),
- [anon_sym_type] = ACTIONS(1202),
- [anon_sym_namespace] = ACTIONS(1204),
- [anon_sym_LBRACE] = ACTIONS(700),
- [anon_sym_typeof] = ACTIONS(1228),
- [anon_sym_import] = ACTIONS(133),
- [anon_sym_let] = ACTIONS(1202),
- [anon_sym_BANG] = ACTIONS(1210),
- [anon_sym_LPAREN] = ACTIONS(41),
- [anon_sym_await] = ACTIONS(1212),
- [anon_sym_yield] = ACTIONS(1214),
- [anon_sym_LBRACK] = ACTIONS(65),
- [sym_glimmer_opening_tag] = ACTIONS(67),
- [anon_sym_DQUOTE] = ACTIONS(69),
- [anon_sym_SQUOTE] = ACTIONS(71),
- [anon_sym_class] = ACTIONS(709),
- [anon_sym_async] = ACTIONS(1218),
- [anon_sym_function] = ACTIONS(713),
- [anon_sym_new] = ACTIONS(1450),
- [anon_sym_using] = ACTIONS(1222),
- [anon_sym_PLUS] = ACTIONS(1228),
- [anon_sym_DASH] = ACTIONS(1228),
- [anon_sym_SLASH] = ACTIONS(882),
- [anon_sym_LT] = ACTIONS(85),
- [anon_sym_TILDE] = ACTIONS(1210),
- [anon_sym_void] = ACTIONS(1228),
- [anon_sym_delete] = ACTIONS(1228),
- [anon_sym_PLUS_PLUS] = ACTIONS(1230),
- [anon_sym_DASH_DASH] = ACTIONS(1230),
- [sym_comment] = ACTIONS(5),
- [anon_sym_BQUOTE] = ACTIONS(89),
- [sym_number] = ACTIONS(91),
- [sym_private_property_identifier] = ACTIONS(1236),
- [sym_this] = ACTIONS(95),
- [sym_super] = ACTIONS(95),
- [sym_true] = ACTIONS(95),
- [sym_false] = ACTIONS(95),
- [sym_null] = ACTIONS(95),
- [sym_undefined] = ACTIONS(1452),
- [anon_sym_AT] = ACTIONS(99),
- [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_override] = 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_object] = ACTIONS(1202),
- [sym_html_comment] = ACTIONS(5),
- },
- [451] = {
- [sym_import] = STATE(3306),
- [sym_parenthesized_expression] = STATE(1300),
- [sym_expression] = STATE(1659),
- [sym_primary_expression] = STATE(1946),
- [sym_yield_expression] = STATE(2234),
- [sym_object] = STATE(2310),
- [sym_object_pattern] = STATE(5831),
- [sym_array] = STATE(2310),
- [sym_array_pattern] = STATE(5831),
- [sym_glimmer_template] = STATE(2234),
- [sym_jsx_element] = STATE(2234),
- [sym_jsx_opening_element] = STATE(3051),
- [sym_jsx_self_closing_element] = STATE(2234),
- [sym_class] = STATE(2310),
- [sym_function_expression] = STATE(2310),
- [sym_generator_function] = STATE(2310),
- [sym_arrow_function] = STATE(2310),
- [sym__call_signature] = STATE(5829),
- [sym_call_expression] = STATE(2310),
- [sym_new_expression] = STATE(2234),
- [sym_await_expression] = STATE(2234),
- [sym_member_expression] = STATE(1300),
- [sym_subscript_expression] = STATE(1300),
- [sym_assignment_expression] = STATE(2234),
- [sym__augmented_assignment_lhs] = STATE(2943),
- [sym_augmented_assignment_expression] = STATE(2234),
- [sym__destructuring_pattern] = STATE(5831),
- [sym_ternary_expression] = STATE(2234),
- [sym_binary_expression] = STATE(2234),
- [sym_unary_expression] = STATE(2234),
- [sym_update_expression] = STATE(2234),
- [sym_string] = STATE(2310),
- [sym_template_string] = STATE(2310),
- [sym_regex] = STATE(2310),
- [sym_meta_property] = STATE(2310),
- [sym_decorator] = STATE(1244),
- [sym_formal_parameters] = STATE(3742),
- [sym_non_null_expression] = STATE(1300),
- [sym_as_expression] = STATE(2234),
- [sym_satisfies_expression] = STATE(2234),
- [sym_instantiation_expression] = STATE(2234),
- [sym_internal_module] = STATE(2234),
- [sym_type_parameters] = STATE(5349),
- [aux_sym_export_statement_repeat1] = STATE(4499),
- [sym_identifier] = ACTIONS(1446),
- [anon_sym_export] = ACTIONS(1202),
- [anon_sym_type] = ACTIONS(1202),
- [anon_sym_namespace] = ACTIONS(1204),
- [anon_sym_LBRACE] = ACTIONS(700),
- [anon_sym_typeof] = ACTIONS(1228),
- [anon_sym_import] = ACTIONS(133),
- [anon_sym_let] = ACTIONS(1202),
- [anon_sym_BANG] = ACTIONS(1210),
- [anon_sym_LPAREN] = ACTIONS(41),
- [anon_sym_await] = ACTIONS(1212),
- [anon_sym_yield] = ACTIONS(1214),
- [anon_sym_LBRACK] = ACTIONS(65),
- [sym_glimmer_opening_tag] = ACTIONS(67),
- [anon_sym_DQUOTE] = ACTIONS(69),
- [anon_sym_SQUOTE] = ACTIONS(71),
- [anon_sym_class] = ACTIONS(709),
- [anon_sym_async] = ACTIONS(1218),
- [anon_sym_function] = ACTIONS(713),
- [anon_sym_new] = ACTIONS(1450),
- [anon_sym_using] = ACTIONS(1222),
- [anon_sym_PLUS] = ACTIONS(1228),
- [anon_sym_DASH] = ACTIONS(1228),
- [anon_sym_SLASH] = ACTIONS(882),
- [anon_sym_LT] = ACTIONS(85),
- [anon_sym_TILDE] = ACTIONS(1210),
- [anon_sym_void] = ACTIONS(1228),
- [anon_sym_delete] = ACTIONS(1228),
- [anon_sym_PLUS_PLUS] = ACTIONS(1230),
- [anon_sym_DASH_DASH] = ACTIONS(1230),
- [sym_comment] = ACTIONS(5),
- [anon_sym_BQUOTE] = ACTIONS(89),
- [sym_number] = ACTIONS(91),
- [sym_private_property_identifier] = ACTIONS(1236),
- [sym_this] = ACTIONS(95),
- [sym_super] = ACTIONS(95),
- [sym_true] = ACTIONS(95),
- [sym_false] = ACTIONS(95),
- [sym_null] = ACTIONS(95),
- [sym_undefined] = ACTIONS(1452),
- [anon_sym_AT] = ACTIONS(99),
- [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_override] = 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_object] = ACTIONS(1202),
- [sym_html_comment] = ACTIONS(5),
- },
- [452] = {
- [sym_import] = STATE(3334),
- [sym_parenthesized_expression] = STATE(1336),
- [sym_expression] = STATE(2258),
- [sym_primary_expression] = STATE(1468),
- [sym_yield_expression] = STATE(1634),
- [sym_object] = STATE(1650),
- [sym_object_pattern] = STATE(5745),
- [sym_array] = STATE(1650),
- [sym_array_pattern] = STATE(5745),
- [sym_glimmer_template] = STATE(1634),
- [sym_jsx_element] = STATE(1634),
- [sym_jsx_opening_element] = STATE(3026),
- [sym_jsx_self_closing_element] = STATE(1634),
- [sym_class] = STATE(1650),
- [sym_function_expression] = STATE(1650),
- [sym_generator_function] = STATE(1650),
- [sym_arrow_function] = STATE(1650),
- [sym__call_signature] = STATE(5553),
- [sym_call_expression] = STATE(1650),
- [sym_new_expression] = STATE(1634),
- [sym_await_expression] = STATE(1634),
- [sym_member_expression] = STATE(1336),
- [sym_subscript_expression] = STATE(1336),
- [sym_assignment_expression] = STATE(1634),
- [sym__augmented_assignment_lhs] = STATE(2884),
- [sym_augmented_assignment_expression] = STATE(1634),
- [sym__destructuring_pattern] = STATE(5745),
- [sym_ternary_expression] = STATE(1634),
- [sym_binary_expression] = STATE(1634),
- [sym_unary_expression] = STATE(1634),
- [sym_update_expression] = STATE(1634),
- [sym_string] = STATE(1650),
- [sym_template_string] = STATE(1650),
- [sym_regex] = STATE(1650),
- [sym_meta_property] = STATE(1650),
- [sym_decorator] = STATE(1244),
- [sym_formal_parameters] = STATE(3742),
- [sym_non_null_expression] = STATE(1336),
- [sym_as_expression] = STATE(1634),
- [sym_satisfies_expression] = STATE(1634),
- [sym_instantiation_expression] = STATE(1634),
- [sym_internal_module] = STATE(1634),
- [sym_type_parameters] = STATE(5349),
- [aux_sym_export_statement_repeat1] = STATE(4458),
- [sym_identifier] = ACTIONS(1470),
- [anon_sym_export] = ACTIONS(1250),
- [anon_sym_type] = ACTIONS(1250),
- [anon_sym_namespace] = ACTIONS(1252),
- [anon_sym_LBRACE] = ACTIONS(813),
- [anon_sym_typeof] = ACTIONS(1272),
- [anon_sym_import] = ACTIONS(133),
- [anon_sym_let] = ACTIONS(1250),
- [anon_sym_BANG] = ACTIONS(1256),
- [anon_sym_LPAREN] = ACTIONS(815),
- [anon_sym_await] = ACTIONS(1258),
- [anon_sym_yield] = ACTIONS(1260),
- [anon_sym_LBRACK] = ACTIONS(817),
- [sym_glimmer_opening_tag] = ACTIONS(148),
- [anon_sym_DQUOTE] = ACTIONS(150),
- [anon_sym_SQUOTE] = ACTIONS(152),
- [anon_sym_class] = ACTIONS(154),
- [anon_sym_async] = ACTIONS(1262),
- [anon_sym_function] = ACTIONS(158),
- [anon_sym_new] = ACTIONS(1474),
- [anon_sym_using] = ACTIONS(1266),
- [anon_sym_PLUS] = ACTIONS(1272),
- [anon_sym_DASH] = ACTIONS(1272),
- [anon_sym_SLASH] = ACTIONS(646),
- [anon_sym_LT] = ACTIONS(181),
- [anon_sym_TILDE] = ACTIONS(1256),
- [anon_sym_void] = ACTIONS(1272),
- [anon_sym_delete] = ACTIONS(1272),
- [anon_sym_PLUS_PLUS] = ACTIONS(1274),
- [anon_sym_DASH_DASH] = ACTIONS(1274),
- [sym_comment] = ACTIONS(5),
- [anon_sym_BQUOTE] = ACTIONS(825),
- [sym_number] = ACTIONS(787),
- [sym_private_property_identifier] = ACTIONS(1276),
- [sym_this] = ACTIONS(200),
- [sym_super] = ACTIONS(200),
- [sym_true] = ACTIONS(200),
- [sym_false] = ACTIONS(200),
- [sym_null] = ACTIONS(200),
- [sym_undefined] = ACTIONS(1476),
- [anon_sym_AT] = ACTIONS(99),
- [anon_sym_static] = ACTIONS(1250),
- [anon_sym_readonly] = ACTIONS(1250),
- [anon_sym_get] = ACTIONS(1250),
- [anon_sym_set] = ACTIONS(1250),
- [anon_sym_declare] = ACTIONS(1250),
- [anon_sym_public] = ACTIONS(1250),
- [anon_sym_private] = ACTIONS(1250),
- [anon_sym_protected] = ACTIONS(1250),
- [anon_sym_override] = ACTIONS(1250),
- [anon_sym_module] = ACTIONS(1250),
- [anon_sym_any] = ACTIONS(1250),
- [anon_sym_number] = ACTIONS(1250),
- [anon_sym_boolean] = ACTIONS(1250),
- [anon_sym_string] = ACTIONS(1250),
- [anon_sym_symbol] = ACTIONS(1250),
- [anon_sym_object] = ACTIONS(1250),
- [sym_html_comment] = ACTIONS(5),
- },
- [453] = {
- [sym_import] = STATE(3306),
- [sym_parenthesized_expression] = STATE(1300),
- [sym_expression] = STATE(1663),
- [sym_primary_expression] = STATE(1946),
- [sym_yield_expression] = STATE(2234),
- [sym_object] = STATE(2310),
- [sym_object_pattern] = STATE(5831),
- [sym_array] = STATE(2310),
- [sym_array_pattern] = STATE(5831),
- [sym_glimmer_template] = STATE(2234),
- [sym_jsx_element] = STATE(2234),
- [sym_jsx_opening_element] = STATE(3051),
- [sym_jsx_self_closing_element] = STATE(2234),
- [sym_class] = STATE(2310),
- [sym_function_expression] = STATE(2310),
- [sym_generator_function] = STATE(2310),
- [sym_arrow_function] = STATE(2310),
- [sym__call_signature] = STATE(5829),
- [sym_call_expression] = STATE(2310),
- [sym_new_expression] = STATE(2234),
- [sym_await_expression] = STATE(2234),
- [sym_member_expression] = STATE(1300),
- [sym_subscript_expression] = STATE(1300),
- [sym_assignment_expression] = STATE(2234),
- [sym__augmented_assignment_lhs] = STATE(2943),
- [sym_augmented_assignment_expression] = STATE(2234),
- [sym__destructuring_pattern] = STATE(5831),
- [sym_ternary_expression] = STATE(2234),
- [sym_binary_expression] = STATE(2234),
- [sym_unary_expression] = STATE(2234),
- [sym_update_expression] = STATE(2234),
- [sym_string] = STATE(2310),
- [sym_template_string] = STATE(2310),
- [sym_regex] = STATE(2310),
- [sym_meta_property] = STATE(2310),
- [sym_decorator] = STATE(1244),
- [sym_formal_parameters] = STATE(3742),
- [sym_non_null_expression] = STATE(1300),
- [sym_as_expression] = STATE(2234),
- [sym_satisfies_expression] = STATE(2234),
- [sym_instantiation_expression] = STATE(2234),
- [sym_internal_module] = STATE(2234),
- [sym_type_parameters] = STATE(5349),
- [aux_sym_export_statement_repeat1] = STATE(4499),
- [sym_identifier] = ACTIONS(1446),
- [anon_sym_export] = ACTIONS(1202),
- [anon_sym_type] = ACTIONS(1202),
- [anon_sym_namespace] = ACTIONS(1204),
- [anon_sym_LBRACE] = ACTIONS(700),
- [anon_sym_typeof] = ACTIONS(1228),
- [anon_sym_import] = ACTIONS(133),
- [anon_sym_let] = ACTIONS(1202),
- [anon_sym_BANG] = ACTIONS(1210),
- [anon_sym_LPAREN] = ACTIONS(41),
- [anon_sym_await] = ACTIONS(1212),
- [anon_sym_yield] = ACTIONS(1214),
- [anon_sym_LBRACK] = ACTIONS(65),
- [sym_glimmer_opening_tag] = ACTIONS(67),
- [anon_sym_DQUOTE] = ACTIONS(69),
- [anon_sym_SQUOTE] = ACTIONS(71),
- [anon_sym_class] = ACTIONS(709),
- [anon_sym_async] = ACTIONS(1218),
- [anon_sym_function] = ACTIONS(713),
- [anon_sym_new] = ACTIONS(1450),
- [anon_sym_using] = ACTIONS(1222),
- [anon_sym_PLUS] = ACTIONS(1228),
- [anon_sym_DASH] = ACTIONS(1228),
- [anon_sym_SLASH] = ACTIONS(882),
- [anon_sym_LT] = ACTIONS(85),
- [anon_sym_TILDE] = ACTIONS(1210),
- [anon_sym_void] = ACTIONS(1228),
- [anon_sym_delete] = ACTIONS(1228),
- [anon_sym_PLUS_PLUS] = ACTIONS(1230),
- [anon_sym_DASH_DASH] = ACTIONS(1230),
- [sym_comment] = ACTIONS(5),
- [anon_sym_BQUOTE] = ACTIONS(89),
- [sym_number] = ACTIONS(91),
- [sym_private_property_identifier] = ACTIONS(1236),
- [sym_this] = ACTIONS(95),
- [sym_super] = ACTIONS(95),
- [sym_true] = ACTIONS(95),
- [sym_false] = ACTIONS(95),
- [sym_null] = ACTIONS(95),
- [sym_undefined] = ACTIONS(1452),
- [anon_sym_AT] = ACTIONS(99),
- [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_override] = 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_object] = ACTIONS(1202),
- [sym_html_comment] = ACTIONS(5),
- },
- [454] = {
- [sym_import] = STATE(3306),
- [sym_parenthesized_expression] = STATE(1300),
- [sym_expression] = STATE(1665),
- [sym_primary_expression] = STATE(1946),
- [sym_yield_expression] = STATE(2234),
- [sym_object] = STATE(2310),
- [sym_object_pattern] = STATE(5831),
- [sym_array] = STATE(2310),
- [sym_array_pattern] = STATE(5831),
- [sym_glimmer_template] = STATE(2234),
- [sym_jsx_element] = STATE(2234),
- [sym_jsx_opening_element] = STATE(3051),
- [sym_jsx_self_closing_element] = STATE(2234),
- [sym_class] = STATE(2310),
- [sym_function_expression] = STATE(2310),
- [sym_generator_function] = STATE(2310),
- [sym_arrow_function] = STATE(2310),
- [sym__call_signature] = STATE(5829),
- [sym_call_expression] = STATE(2310),
- [sym_new_expression] = STATE(2234),
- [sym_await_expression] = STATE(2234),
- [sym_member_expression] = STATE(1300),
- [sym_subscript_expression] = STATE(1300),
- [sym_assignment_expression] = STATE(2234),
- [sym__augmented_assignment_lhs] = STATE(2943),
- [sym_augmented_assignment_expression] = STATE(2234),
- [sym__destructuring_pattern] = STATE(5831),
- [sym_ternary_expression] = STATE(2234),
- [sym_binary_expression] = STATE(2234),
- [sym_unary_expression] = STATE(2234),
- [sym_update_expression] = STATE(2234),
- [sym_string] = STATE(2310),
- [sym_template_string] = STATE(2310),
- [sym_regex] = STATE(2310),
- [sym_meta_property] = STATE(2310),
- [sym_decorator] = STATE(1244),
- [sym_formal_parameters] = STATE(3742),
- [sym_non_null_expression] = STATE(1300),
- [sym_as_expression] = STATE(2234),
- [sym_satisfies_expression] = STATE(2234),
- [sym_instantiation_expression] = STATE(2234),
- [sym_internal_module] = STATE(2234),
- [sym_type_parameters] = STATE(5349),
- [aux_sym_export_statement_repeat1] = STATE(4499),
- [sym_identifier] = ACTIONS(1446),
- [anon_sym_export] = ACTIONS(1202),
- [anon_sym_type] = ACTIONS(1202),
- [anon_sym_namespace] = ACTIONS(1204),
- [anon_sym_LBRACE] = ACTIONS(700),
- [anon_sym_typeof] = ACTIONS(1228),
- [anon_sym_import] = ACTIONS(133),
- [anon_sym_let] = ACTIONS(1202),
- [anon_sym_BANG] = ACTIONS(1210),
- [anon_sym_LPAREN] = ACTIONS(41),
- [anon_sym_await] = ACTIONS(1212),
- [anon_sym_yield] = ACTIONS(1214),
- [anon_sym_LBRACK] = ACTIONS(65),
- [sym_glimmer_opening_tag] = ACTIONS(67),
- [anon_sym_DQUOTE] = ACTIONS(69),
- [anon_sym_SQUOTE] = ACTIONS(71),
- [anon_sym_class] = ACTIONS(709),
- [anon_sym_async] = ACTIONS(1218),
- [anon_sym_function] = ACTIONS(713),
- [anon_sym_new] = ACTIONS(1450),
- [anon_sym_using] = ACTIONS(1222),
- [anon_sym_PLUS] = ACTIONS(1228),
- [anon_sym_DASH] = ACTIONS(1228),
- [anon_sym_SLASH] = ACTIONS(882),
- [anon_sym_LT] = ACTIONS(85),
- [anon_sym_TILDE] = ACTIONS(1210),
- [anon_sym_void] = ACTIONS(1228),
- [anon_sym_delete] = ACTIONS(1228),
- [anon_sym_PLUS_PLUS] = ACTIONS(1230),
- [anon_sym_DASH_DASH] = ACTIONS(1230),
- [sym_comment] = ACTIONS(5),
- [anon_sym_BQUOTE] = ACTIONS(89),
- [sym_number] = ACTIONS(91),
- [sym_private_property_identifier] = ACTIONS(1236),
- [sym_this] = ACTIONS(95),
- [sym_super] = ACTIONS(95),
- [sym_true] = ACTIONS(95),
- [sym_false] = ACTIONS(95),
- [sym_null] = ACTIONS(95),
- [sym_undefined] = ACTIONS(1452),
- [anon_sym_AT] = ACTIONS(99),
- [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_override] = 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_object] = ACTIONS(1202),
- [sym_html_comment] = ACTIONS(5),
- },
- [455] = {
- [sym_import] = STATE(3306),
- [sym_parenthesized_expression] = STATE(1300),
- [sym_expression] = STATE(1672),
- [sym_primary_expression] = STATE(1946),
- [sym_yield_expression] = STATE(2234),
- [sym_object] = STATE(2310),
- [sym_object_pattern] = STATE(5831),
- [sym_array] = STATE(2310),
- [sym_array_pattern] = STATE(5831),
- [sym_glimmer_template] = STATE(2234),
- [sym_jsx_element] = STATE(2234),
- [sym_jsx_opening_element] = STATE(3051),
- [sym_jsx_self_closing_element] = STATE(2234),
- [sym_class] = STATE(2310),
- [sym_function_expression] = STATE(2310),
- [sym_generator_function] = STATE(2310),
- [sym_arrow_function] = STATE(2310),
- [sym__call_signature] = STATE(5829),
- [sym_call_expression] = STATE(2310),
- [sym_new_expression] = STATE(2234),
- [sym_await_expression] = STATE(2234),
- [sym_member_expression] = STATE(1300),
- [sym_subscript_expression] = STATE(1300),
- [sym_assignment_expression] = STATE(2234),
- [sym__augmented_assignment_lhs] = STATE(2943),
- [sym_augmented_assignment_expression] = STATE(2234),
- [sym__destructuring_pattern] = STATE(5831),
- [sym_ternary_expression] = STATE(2234),
- [sym_binary_expression] = STATE(2234),
- [sym_unary_expression] = STATE(2234),
- [sym_update_expression] = STATE(2234),
- [sym_string] = STATE(2310),
- [sym_template_string] = STATE(2310),
- [sym_regex] = STATE(2310),
- [sym_meta_property] = STATE(2310),
- [sym_decorator] = STATE(1244),
- [sym_formal_parameters] = STATE(3742),
- [sym_non_null_expression] = STATE(1300),
- [sym_as_expression] = STATE(2234),
- [sym_satisfies_expression] = STATE(2234),
- [sym_instantiation_expression] = STATE(2234),
- [sym_internal_module] = STATE(2234),
- [sym_type_parameters] = STATE(5349),
- [aux_sym_export_statement_repeat1] = STATE(4499),
- [sym_identifier] = ACTIONS(1446),
- [anon_sym_export] = ACTIONS(1202),
- [anon_sym_type] = ACTIONS(1202),
- [anon_sym_namespace] = ACTIONS(1204),
- [anon_sym_LBRACE] = ACTIONS(700),
- [anon_sym_typeof] = ACTIONS(1228),
- [anon_sym_import] = ACTIONS(133),
- [anon_sym_let] = ACTIONS(1202),
- [anon_sym_BANG] = ACTIONS(1210),
- [anon_sym_LPAREN] = ACTIONS(41),
- [anon_sym_await] = ACTIONS(1212),
- [anon_sym_yield] = ACTIONS(1214),
- [anon_sym_LBRACK] = ACTIONS(65),
- [sym_glimmer_opening_tag] = ACTIONS(67),
- [anon_sym_DQUOTE] = ACTIONS(69),
- [anon_sym_SQUOTE] = ACTIONS(71),
- [anon_sym_class] = ACTIONS(709),
- [anon_sym_async] = ACTIONS(1218),
- [anon_sym_function] = ACTIONS(713),
- [anon_sym_new] = ACTIONS(1450),
- [anon_sym_using] = ACTIONS(1222),
- [anon_sym_PLUS] = ACTIONS(1228),
- [anon_sym_DASH] = ACTIONS(1228),
- [anon_sym_SLASH] = ACTIONS(882),
- [anon_sym_LT] = ACTIONS(85),
- [anon_sym_TILDE] = ACTIONS(1210),
- [anon_sym_void] = ACTIONS(1228),
- [anon_sym_delete] = ACTIONS(1228),
- [anon_sym_PLUS_PLUS] = ACTIONS(1230),
- [anon_sym_DASH_DASH] = ACTIONS(1230),
- [sym_comment] = ACTIONS(5),
- [anon_sym_BQUOTE] = ACTIONS(89),
- [sym_number] = ACTIONS(91),
- [sym_private_property_identifier] = ACTIONS(1236),
- [sym_this] = ACTIONS(95),
- [sym_super] = ACTIONS(95),
- [sym_true] = ACTIONS(95),
- [sym_false] = ACTIONS(95),
- [sym_null] = ACTIONS(95),
- [sym_undefined] = ACTIONS(1452),
- [anon_sym_AT] = ACTIONS(99),
- [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_override] = 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_object] = ACTIONS(1202),
- [sym_html_comment] = ACTIONS(5),
- },
- [456] = {
- [sym_import] = STATE(3306),
- [sym_parenthesized_expression] = STATE(1300),
- [sym_expression] = STATE(1673),
- [sym_primary_expression] = STATE(1946),
- [sym_yield_expression] = STATE(2234),
- [sym_object] = STATE(2310),
- [sym_object_pattern] = STATE(5831),
- [sym_array] = STATE(2310),
- [sym_array_pattern] = STATE(5831),
- [sym_glimmer_template] = STATE(2234),
- [sym_jsx_element] = STATE(2234),
- [sym_jsx_opening_element] = STATE(3051),
- [sym_jsx_self_closing_element] = STATE(2234),
- [sym_class] = STATE(2310),
- [sym_function_expression] = STATE(2310),
- [sym_generator_function] = STATE(2310),
- [sym_arrow_function] = STATE(2310),
- [sym__call_signature] = STATE(5829),
- [sym_call_expression] = STATE(2310),
- [sym_new_expression] = STATE(2234),
- [sym_await_expression] = STATE(2234),
- [sym_member_expression] = STATE(1300),
- [sym_subscript_expression] = STATE(1300),
- [sym_assignment_expression] = STATE(2234),
- [sym__augmented_assignment_lhs] = STATE(2943),
- [sym_augmented_assignment_expression] = STATE(2234),
- [sym__destructuring_pattern] = STATE(5831),
- [sym_ternary_expression] = STATE(2234),
- [sym_binary_expression] = STATE(2234),
- [sym_unary_expression] = STATE(2234),
- [sym_update_expression] = STATE(2234),
- [sym_string] = STATE(2310),
- [sym_template_string] = STATE(2310),
- [sym_regex] = STATE(2310),
- [sym_meta_property] = STATE(2310),
- [sym_decorator] = STATE(1244),
- [sym_formal_parameters] = STATE(3742),
- [sym_non_null_expression] = STATE(1300),
- [sym_as_expression] = STATE(2234),
- [sym_satisfies_expression] = STATE(2234),
- [sym_instantiation_expression] = STATE(2234),
- [sym_internal_module] = STATE(2234),
- [sym_type_parameters] = STATE(5349),
- [aux_sym_export_statement_repeat1] = STATE(4499),
- [sym_identifier] = ACTIONS(1446),
- [anon_sym_export] = ACTIONS(1202),
- [anon_sym_type] = ACTIONS(1202),
- [anon_sym_namespace] = ACTIONS(1204),
- [anon_sym_LBRACE] = ACTIONS(700),
- [anon_sym_typeof] = ACTIONS(1228),
- [anon_sym_import] = ACTIONS(133),
- [anon_sym_let] = ACTIONS(1202),
- [anon_sym_BANG] = ACTIONS(1210),
- [anon_sym_LPAREN] = ACTIONS(41),
- [anon_sym_await] = ACTIONS(1212),
- [anon_sym_yield] = ACTIONS(1214),
- [anon_sym_LBRACK] = ACTIONS(65),
- [sym_glimmer_opening_tag] = ACTIONS(67),
- [anon_sym_DQUOTE] = ACTIONS(69),
- [anon_sym_SQUOTE] = ACTIONS(71),
- [anon_sym_class] = ACTIONS(709),
- [anon_sym_async] = ACTIONS(1218),
- [anon_sym_function] = ACTIONS(713),
- [anon_sym_new] = ACTIONS(1450),
- [anon_sym_using] = ACTIONS(1222),
- [anon_sym_PLUS] = ACTIONS(1228),
- [anon_sym_DASH] = ACTIONS(1228),
- [anon_sym_SLASH] = ACTIONS(882),
- [anon_sym_LT] = ACTIONS(85),
- [anon_sym_TILDE] = ACTIONS(1210),
- [anon_sym_void] = ACTIONS(1228),
- [anon_sym_delete] = ACTIONS(1228),
- [anon_sym_PLUS_PLUS] = ACTIONS(1230),
- [anon_sym_DASH_DASH] = ACTIONS(1230),
- [sym_comment] = ACTIONS(5),
- [anon_sym_BQUOTE] = ACTIONS(89),
- [sym_number] = ACTIONS(91),
- [sym_private_property_identifier] = ACTIONS(1236),
- [sym_this] = ACTIONS(95),
- [sym_super] = ACTIONS(95),
- [sym_true] = ACTIONS(95),
- [sym_false] = ACTIONS(95),
- [sym_null] = ACTIONS(95),
- [sym_undefined] = ACTIONS(1452),
- [anon_sym_AT] = ACTIONS(99),
- [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_override] = 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_object] = ACTIONS(1202),
- [sym_html_comment] = ACTIONS(5),
- },
- [457] = {
- [sym_import] = STATE(3306),
- [sym_parenthesized_expression] = STATE(1300),
- [sym_expression] = STATE(1674),
- [sym_primary_expression] = STATE(1946),
- [sym_yield_expression] = STATE(2234),
- [sym_object] = STATE(2310),
- [sym_object_pattern] = STATE(5831),
- [sym_array] = STATE(2310),
- [sym_array_pattern] = STATE(5831),
- [sym_glimmer_template] = STATE(2234),
- [sym_jsx_element] = STATE(2234),
- [sym_jsx_opening_element] = STATE(3051),
- [sym_jsx_self_closing_element] = STATE(2234),
- [sym_class] = STATE(2310),
- [sym_function_expression] = STATE(2310),
- [sym_generator_function] = STATE(2310),
- [sym_arrow_function] = STATE(2310),
- [sym__call_signature] = STATE(5829),
- [sym_call_expression] = STATE(2310),
- [sym_new_expression] = STATE(2234),
- [sym_await_expression] = STATE(2234),
- [sym_member_expression] = STATE(1300),
- [sym_subscript_expression] = STATE(1300),
- [sym_assignment_expression] = STATE(2234),
- [sym__augmented_assignment_lhs] = STATE(2943),
- [sym_augmented_assignment_expression] = STATE(2234),
- [sym__destructuring_pattern] = STATE(5831),
- [sym_ternary_expression] = STATE(2234),
- [sym_binary_expression] = STATE(2234),
- [sym_unary_expression] = STATE(2234),
- [sym_update_expression] = STATE(2234),
- [sym_string] = STATE(2310),
- [sym_template_string] = STATE(2310),
- [sym_regex] = STATE(2310),
- [sym_meta_property] = STATE(2310),
- [sym_decorator] = STATE(1244),
- [sym_formal_parameters] = STATE(3742),
- [sym_non_null_expression] = STATE(1300),
- [sym_as_expression] = STATE(2234),
- [sym_satisfies_expression] = STATE(2234),
- [sym_instantiation_expression] = STATE(2234),
- [sym_internal_module] = STATE(2234),
- [sym_type_parameters] = STATE(5349),
- [aux_sym_export_statement_repeat1] = STATE(4499),
- [sym_identifier] = ACTIONS(1446),
- [anon_sym_export] = ACTIONS(1202),
- [anon_sym_type] = ACTIONS(1202),
- [anon_sym_namespace] = ACTIONS(1204),
- [anon_sym_LBRACE] = ACTIONS(700),
- [anon_sym_typeof] = ACTIONS(1228),
- [anon_sym_import] = ACTIONS(133),
- [anon_sym_let] = ACTIONS(1202),
- [anon_sym_BANG] = ACTIONS(1210),
- [anon_sym_LPAREN] = ACTIONS(41),
- [anon_sym_await] = ACTIONS(1212),
- [anon_sym_yield] = ACTIONS(1214),
- [anon_sym_LBRACK] = ACTIONS(65),
- [sym_glimmer_opening_tag] = ACTIONS(67),
- [anon_sym_DQUOTE] = ACTIONS(69),
- [anon_sym_SQUOTE] = ACTIONS(71),
- [anon_sym_class] = ACTIONS(709),
- [anon_sym_async] = ACTIONS(1218),
- [anon_sym_function] = ACTIONS(713),
- [anon_sym_new] = ACTIONS(1450),
- [anon_sym_using] = ACTIONS(1222),
- [anon_sym_PLUS] = ACTIONS(1228),
- [anon_sym_DASH] = ACTIONS(1228),
- [anon_sym_SLASH] = ACTIONS(882),
- [anon_sym_LT] = ACTIONS(85),
- [anon_sym_TILDE] = ACTIONS(1210),
- [anon_sym_void] = ACTIONS(1228),
- [anon_sym_delete] = ACTIONS(1228),
- [anon_sym_PLUS_PLUS] = ACTIONS(1230),
- [anon_sym_DASH_DASH] = ACTIONS(1230),
- [sym_comment] = ACTIONS(5),
- [anon_sym_BQUOTE] = ACTIONS(89),
- [sym_number] = ACTIONS(91),
- [sym_private_property_identifier] = ACTIONS(1236),
- [sym_this] = ACTIONS(95),
- [sym_super] = ACTIONS(95),
- [sym_true] = ACTIONS(95),
- [sym_false] = ACTIONS(95),
- [sym_null] = ACTIONS(95),
- [sym_undefined] = ACTIONS(1452),
- [anon_sym_AT] = ACTIONS(99),
- [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_override] = 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_object] = ACTIONS(1202),
- [sym_html_comment] = ACTIONS(5),
- },
- [458] = {
- [sym_import] = STATE(3306),
- [sym_parenthesized_expression] = STATE(1300),
- [sym_expression] = STATE(1675),
- [sym_primary_expression] = STATE(1946),
- [sym_yield_expression] = STATE(2234),
- [sym_object] = STATE(2310),
- [sym_object_pattern] = STATE(5831),
- [sym_array] = STATE(2310),
- [sym_array_pattern] = STATE(5831),
- [sym_glimmer_template] = STATE(2234),
- [sym_jsx_element] = STATE(2234),
- [sym_jsx_opening_element] = STATE(3051),
- [sym_jsx_self_closing_element] = STATE(2234),
- [sym_class] = STATE(2310),
- [sym_function_expression] = STATE(2310),
- [sym_generator_function] = STATE(2310),
- [sym_arrow_function] = STATE(2310),
- [sym__call_signature] = STATE(5829),
- [sym_call_expression] = STATE(2310),
- [sym_new_expression] = STATE(2234),
- [sym_await_expression] = STATE(2234),
- [sym_member_expression] = STATE(1300),
- [sym_subscript_expression] = STATE(1300),
- [sym_assignment_expression] = STATE(2234),
- [sym__augmented_assignment_lhs] = STATE(2943),
- [sym_augmented_assignment_expression] = STATE(2234),
- [sym__destructuring_pattern] = STATE(5831),
- [sym_ternary_expression] = STATE(2234),
- [sym_binary_expression] = STATE(2234),
- [sym_unary_expression] = STATE(2234),
- [sym_update_expression] = STATE(2234),
- [sym_string] = STATE(2310),
- [sym_template_string] = STATE(2310),
- [sym_regex] = STATE(2310),
- [sym_meta_property] = STATE(2310),
- [sym_decorator] = STATE(1244),
- [sym_formal_parameters] = STATE(3742),
- [sym_non_null_expression] = STATE(1300),
- [sym_as_expression] = STATE(2234),
- [sym_satisfies_expression] = STATE(2234),
- [sym_instantiation_expression] = STATE(2234),
- [sym_internal_module] = STATE(2234),
- [sym_type_parameters] = STATE(5349),
- [aux_sym_export_statement_repeat1] = STATE(4499),
- [sym_identifier] = ACTIONS(1446),
- [anon_sym_export] = ACTIONS(1202),
- [anon_sym_type] = ACTIONS(1202),
- [anon_sym_namespace] = ACTIONS(1204),
- [anon_sym_LBRACE] = ACTIONS(700),
- [anon_sym_typeof] = ACTIONS(1228),
- [anon_sym_import] = ACTIONS(133),
- [anon_sym_let] = ACTIONS(1202),
- [anon_sym_BANG] = ACTIONS(1210),
- [anon_sym_LPAREN] = ACTIONS(41),
- [anon_sym_await] = ACTIONS(1212),
- [anon_sym_yield] = ACTIONS(1214),
- [anon_sym_LBRACK] = ACTIONS(65),
- [sym_glimmer_opening_tag] = ACTIONS(67),
- [anon_sym_DQUOTE] = ACTIONS(69),
- [anon_sym_SQUOTE] = ACTIONS(71),
- [anon_sym_class] = ACTIONS(709),
- [anon_sym_async] = ACTIONS(1218),
- [anon_sym_function] = ACTIONS(713),
- [anon_sym_new] = ACTIONS(1450),
- [anon_sym_using] = ACTIONS(1222),
- [anon_sym_PLUS] = ACTIONS(1228),
- [anon_sym_DASH] = ACTIONS(1228),
- [anon_sym_SLASH] = ACTIONS(882),
- [anon_sym_LT] = ACTIONS(85),
- [anon_sym_TILDE] = ACTIONS(1210),
- [anon_sym_void] = ACTIONS(1228),
- [anon_sym_delete] = ACTIONS(1228),
- [anon_sym_PLUS_PLUS] = ACTIONS(1230),
- [anon_sym_DASH_DASH] = ACTIONS(1230),
- [sym_comment] = ACTIONS(5),
- [anon_sym_BQUOTE] = ACTIONS(89),
- [sym_number] = ACTIONS(91),
- [sym_private_property_identifier] = ACTIONS(1236),
- [sym_this] = ACTIONS(95),
- [sym_super] = ACTIONS(95),
- [sym_true] = ACTIONS(95),
- [sym_false] = ACTIONS(95),
- [sym_null] = ACTIONS(95),
- [sym_undefined] = ACTIONS(1452),
- [anon_sym_AT] = ACTIONS(99),
- [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_override] = 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_object] = ACTIONS(1202),
- [sym_html_comment] = ACTIONS(5),
- },
- [459] = {
- [sym_import] = STATE(3306),
- [sym_parenthesized_expression] = STATE(1300),
- [sym_expression] = STATE(1680),
- [sym_primary_expression] = STATE(1946),
- [sym_yield_expression] = STATE(2234),
- [sym_object] = STATE(2310),
- [sym_object_pattern] = STATE(5831),
- [sym_array] = STATE(2310),
- [sym_array_pattern] = STATE(5831),
- [sym_glimmer_template] = STATE(2234),
- [sym_jsx_element] = STATE(2234),
- [sym_jsx_opening_element] = STATE(3051),
- [sym_jsx_self_closing_element] = STATE(2234),
- [sym_class] = STATE(2310),
- [sym_function_expression] = STATE(2310),
- [sym_generator_function] = STATE(2310),
- [sym_arrow_function] = STATE(2310),
- [sym__call_signature] = STATE(5829),
- [sym_call_expression] = STATE(2310),
- [sym_new_expression] = STATE(2234),
- [sym_await_expression] = STATE(2234),
- [sym_member_expression] = STATE(1300),
- [sym_subscript_expression] = STATE(1300),
- [sym_assignment_expression] = STATE(2234),
- [sym__augmented_assignment_lhs] = STATE(2943),
- [sym_augmented_assignment_expression] = STATE(2234),
- [sym__destructuring_pattern] = STATE(5831),
- [sym_ternary_expression] = STATE(2234),
- [sym_binary_expression] = STATE(2234),
- [sym_unary_expression] = STATE(2234),
- [sym_update_expression] = STATE(2234),
- [sym_string] = STATE(2310),
- [sym_template_string] = STATE(2310),
- [sym_regex] = STATE(2310),
- [sym_meta_property] = STATE(2310),
- [sym_decorator] = STATE(1244),
- [sym_formal_parameters] = STATE(3742),
- [sym_non_null_expression] = STATE(1300),
- [sym_as_expression] = STATE(2234),
- [sym_satisfies_expression] = STATE(2234),
- [sym_instantiation_expression] = STATE(2234),
- [sym_internal_module] = STATE(2234),
- [sym_type_parameters] = STATE(5349),
- [aux_sym_export_statement_repeat1] = STATE(4499),
- [sym_identifier] = ACTIONS(1446),
- [anon_sym_export] = ACTIONS(1202),
- [anon_sym_type] = ACTIONS(1202),
- [anon_sym_namespace] = ACTIONS(1204),
- [anon_sym_LBRACE] = ACTIONS(700),
- [anon_sym_typeof] = ACTIONS(1228),
- [anon_sym_import] = ACTIONS(133),
- [anon_sym_let] = ACTIONS(1202),
- [anon_sym_BANG] = ACTIONS(1210),
- [anon_sym_LPAREN] = ACTIONS(41),
- [anon_sym_await] = ACTIONS(1212),
- [anon_sym_yield] = ACTIONS(1214),
- [anon_sym_LBRACK] = ACTIONS(65),
- [sym_glimmer_opening_tag] = ACTIONS(67),
- [anon_sym_DQUOTE] = ACTIONS(69),
- [anon_sym_SQUOTE] = ACTIONS(71),
- [anon_sym_class] = ACTIONS(709),
- [anon_sym_async] = ACTIONS(1218),
- [anon_sym_function] = ACTIONS(713),
- [anon_sym_new] = ACTIONS(1450),
- [anon_sym_using] = ACTIONS(1222),
- [anon_sym_PLUS] = ACTIONS(1228),
- [anon_sym_DASH] = ACTIONS(1228),
- [anon_sym_SLASH] = ACTIONS(882),
- [anon_sym_LT] = ACTIONS(85),
- [anon_sym_TILDE] = ACTIONS(1210),
- [anon_sym_void] = ACTIONS(1228),
- [anon_sym_delete] = ACTIONS(1228),
- [anon_sym_PLUS_PLUS] = ACTIONS(1230),
- [anon_sym_DASH_DASH] = ACTIONS(1230),
- [sym_comment] = ACTIONS(5),
- [anon_sym_BQUOTE] = ACTIONS(89),
- [sym_number] = ACTIONS(91),
- [sym_private_property_identifier] = ACTIONS(1236),
- [sym_this] = ACTIONS(95),
- [sym_super] = ACTIONS(95),
- [sym_true] = ACTIONS(95),
- [sym_false] = ACTIONS(95),
- [sym_null] = ACTIONS(95),
- [sym_undefined] = ACTIONS(1452),
- [anon_sym_AT] = ACTIONS(99),
- [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_override] = 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_object] = ACTIONS(1202),
- [sym_html_comment] = ACTIONS(5),
- },
- [460] = {
- [sym_import] = STATE(3306),
- [sym_parenthesized_expression] = STATE(1300),
- [sym_expression] = STATE(1681),
- [sym_primary_expression] = STATE(1946),
- [sym_yield_expression] = STATE(2234),
- [sym_object] = STATE(2310),
- [sym_object_pattern] = STATE(5831),
- [sym_array] = STATE(2310),
- [sym_array_pattern] = STATE(5831),
- [sym_glimmer_template] = STATE(2234),
- [sym_jsx_element] = STATE(2234),
- [sym_jsx_opening_element] = STATE(3051),
- [sym_jsx_self_closing_element] = STATE(2234),
- [sym_class] = STATE(2310),
- [sym_function_expression] = STATE(2310),
- [sym_generator_function] = STATE(2310),
- [sym_arrow_function] = STATE(2310),
- [sym__call_signature] = STATE(5829),
- [sym_call_expression] = STATE(2310),
- [sym_new_expression] = STATE(2234),
- [sym_await_expression] = STATE(2234),
- [sym_member_expression] = STATE(1300),
- [sym_subscript_expression] = STATE(1300),
- [sym_assignment_expression] = STATE(2234),
- [sym__augmented_assignment_lhs] = STATE(2943),
- [sym_augmented_assignment_expression] = STATE(2234),
- [sym__destructuring_pattern] = STATE(5831),
- [sym_ternary_expression] = STATE(2234),
- [sym_binary_expression] = STATE(2234),
- [sym_unary_expression] = STATE(2234),
- [sym_update_expression] = STATE(2234),
- [sym_string] = STATE(2310),
- [sym_template_string] = STATE(2310),
- [sym_regex] = STATE(2310),
- [sym_meta_property] = STATE(2310),
- [sym_decorator] = STATE(1244),
- [sym_formal_parameters] = STATE(3742),
- [sym_non_null_expression] = STATE(1300),
- [sym_as_expression] = STATE(2234),
- [sym_satisfies_expression] = STATE(2234),
- [sym_instantiation_expression] = STATE(2234),
- [sym_internal_module] = STATE(2234),
- [sym_type_parameters] = STATE(5349),
- [aux_sym_export_statement_repeat1] = STATE(4499),
- [sym_identifier] = ACTIONS(1446),
- [anon_sym_export] = ACTIONS(1202),
- [anon_sym_type] = ACTIONS(1202),
- [anon_sym_namespace] = ACTIONS(1204),
- [anon_sym_LBRACE] = ACTIONS(700),
- [anon_sym_typeof] = ACTIONS(1228),
- [anon_sym_import] = ACTIONS(133),
- [anon_sym_let] = ACTIONS(1202),
- [anon_sym_BANG] = ACTIONS(1210),
- [anon_sym_LPAREN] = ACTIONS(41),
- [anon_sym_await] = ACTIONS(1212),
- [anon_sym_yield] = ACTIONS(1214),
- [anon_sym_LBRACK] = ACTIONS(65),
- [sym_glimmer_opening_tag] = ACTIONS(67),
- [anon_sym_DQUOTE] = ACTIONS(69),
- [anon_sym_SQUOTE] = ACTIONS(71),
- [anon_sym_class] = ACTIONS(709),
- [anon_sym_async] = ACTIONS(1218),
- [anon_sym_function] = ACTIONS(713),
- [anon_sym_new] = ACTIONS(1450),
- [anon_sym_using] = ACTIONS(1222),
- [anon_sym_PLUS] = ACTIONS(1228),
- [anon_sym_DASH] = ACTIONS(1228),
- [anon_sym_SLASH] = ACTIONS(882),
- [anon_sym_LT] = ACTIONS(85),
- [anon_sym_TILDE] = ACTIONS(1210),
- [anon_sym_void] = ACTIONS(1228),
- [anon_sym_delete] = ACTIONS(1228),
- [anon_sym_PLUS_PLUS] = ACTIONS(1230),
- [anon_sym_DASH_DASH] = ACTIONS(1230),
- [sym_comment] = ACTIONS(5),
- [anon_sym_BQUOTE] = ACTIONS(89),
- [sym_number] = ACTIONS(91),
- [sym_private_property_identifier] = ACTIONS(1236),
- [sym_this] = ACTIONS(95),
- [sym_super] = ACTIONS(95),
- [sym_true] = ACTIONS(95),
- [sym_false] = ACTIONS(95),
- [sym_null] = ACTIONS(95),
- [sym_undefined] = ACTIONS(1452),
- [anon_sym_AT] = ACTIONS(99),
- [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_override] = 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_object] = ACTIONS(1202),
- [sym_html_comment] = ACTIONS(5),
- },
- [461] = {
- [sym_import] = STATE(3306),
- [sym_parenthesized_expression] = STATE(1300),
- [sym_expression] = STATE(1688),
- [sym_primary_expression] = STATE(1946),
- [sym_yield_expression] = STATE(2234),
- [sym_object] = STATE(2310),
- [sym_object_pattern] = STATE(5831),
- [sym_array] = STATE(2310),
- [sym_array_pattern] = STATE(5831),
- [sym_glimmer_template] = STATE(2234),
- [sym_jsx_element] = STATE(2234),
- [sym_jsx_opening_element] = STATE(3051),
- [sym_jsx_self_closing_element] = STATE(2234),
- [sym_class] = STATE(2310),
- [sym_function_expression] = STATE(2310),
- [sym_generator_function] = STATE(2310),
- [sym_arrow_function] = STATE(2310),
- [sym__call_signature] = STATE(5829),
- [sym_call_expression] = STATE(2310),
- [sym_new_expression] = STATE(2234),
- [sym_await_expression] = STATE(2234),
- [sym_member_expression] = STATE(1300),
- [sym_subscript_expression] = STATE(1300),
- [sym_assignment_expression] = STATE(2234),
- [sym__augmented_assignment_lhs] = STATE(2943),
- [sym_augmented_assignment_expression] = STATE(2234),
- [sym__destructuring_pattern] = STATE(5831),
- [sym_ternary_expression] = STATE(2234),
- [sym_binary_expression] = STATE(2234),
- [sym_unary_expression] = STATE(2234),
- [sym_update_expression] = STATE(2234),
- [sym_string] = STATE(2310),
- [sym_template_string] = STATE(2310),
- [sym_regex] = STATE(2310),
- [sym_meta_property] = STATE(2310),
- [sym_decorator] = STATE(1244),
- [sym_formal_parameters] = STATE(3742),
- [sym_non_null_expression] = STATE(1300),
- [sym_as_expression] = STATE(2234),
- [sym_satisfies_expression] = STATE(2234),
- [sym_instantiation_expression] = STATE(2234),
- [sym_internal_module] = STATE(2234),
- [sym_type_parameters] = STATE(5349),
- [aux_sym_export_statement_repeat1] = STATE(4499),
- [sym_identifier] = ACTIONS(1446),
- [anon_sym_export] = ACTIONS(1202),
- [anon_sym_type] = ACTIONS(1202),
- [anon_sym_namespace] = ACTIONS(1204),
- [anon_sym_LBRACE] = ACTIONS(700),
- [anon_sym_typeof] = ACTIONS(1228),
- [anon_sym_import] = ACTIONS(133),
- [anon_sym_let] = ACTIONS(1202),
- [anon_sym_BANG] = ACTIONS(1210),
- [anon_sym_LPAREN] = ACTIONS(41),
- [anon_sym_await] = ACTIONS(1212),
- [anon_sym_yield] = ACTIONS(1214),
- [anon_sym_LBRACK] = ACTIONS(65),
- [sym_glimmer_opening_tag] = ACTIONS(67),
- [anon_sym_DQUOTE] = ACTIONS(69),
- [anon_sym_SQUOTE] = ACTIONS(71),
- [anon_sym_class] = ACTIONS(709),
- [anon_sym_async] = ACTIONS(1218),
- [anon_sym_function] = ACTIONS(713),
- [anon_sym_new] = ACTIONS(1450),
- [anon_sym_using] = ACTIONS(1222),
- [anon_sym_PLUS] = ACTIONS(1228),
- [anon_sym_DASH] = ACTIONS(1228),
- [anon_sym_SLASH] = ACTIONS(882),
- [anon_sym_LT] = ACTIONS(85),
- [anon_sym_TILDE] = ACTIONS(1210),
- [anon_sym_void] = ACTIONS(1228),
- [anon_sym_delete] = ACTIONS(1228),
- [anon_sym_PLUS_PLUS] = ACTIONS(1230),
- [anon_sym_DASH_DASH] = ACTIONS(1230),
- [sym_comment] = ACTIONS(5),
- [anon_sym_BQUOTE] = ACTIONS(89),
- [sym_number] = ACTIONS(91),
- [sym_private_property_identifier] = ACTIONS(1236),
- [sym_this] = ACTIONS(95),
- [sym_super] = ACTIONS(95),
- [sym_true] = ACTIONS(95),
- [sym_false] = ACTIONS(95),
- [sym_null] = ACTIONS(95),
- [sym_undefined] = ACTIONS(1452),
- [anon_sym_AT] = ACTIONS(99),
- [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_override] = 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_object] = ACTIONS(1202),
- [sym_html_comment] = ACTIONS(5),
- },
- [462] = {
- [sym_import] = STATE(3306),
- [sym_parenthesized_expression] = STATE(1300),
- [sym_expression] = STATE(1717),
- [sym_primary_expression] = STATE(1946),
- [sym_yield_expression] = STATE(2234),
- [sym_object] = STATE(2310),
- [sym_object_pattern] = STATE(5831),
- [sym_array] = STATE(2310),
- [sym_array_pattern] = STATE(5831),
- [sym_glimmer_template] = STATE(2234),
- [sym_jsx_element] = STATE(2234),
- [sym_jsx_opening_element] = STATE(3051),
- [sym_jsx_self_closing_element] = STATE(2234),
- [sym_class] = STATE(2310),
- [sym_function_expression] = STATE(2310),
- [sym_generator_function] = STATE(2310),
- [sym_arrow_function] = STATE(2310),
- [sym__call_signature] = STATE(5829),
- [sym_call_expression] = STATE(2310),
- [sym_new_expression] = STATE(2234),
- [sym_await_expression] = STATE(2234),
- [sym_member_expression] = STATE(1300),
- [sym_subscript_expression] = STATE(1300),
- [sym_assignment_expression] = STATE(2234),
- [sym__augmented_assignment_lhs] = STATE(2943),
- [sym_augmented_assignment_expression] = STATE(2234),
- [sym__destructuring_pattern] = STATE(5831),
- [sym_ternary_expression] = STATE(2234),
- [sym_binary_expression] = STATE(2234),
- [sym_unary_expression] = STATE(2234),
- [sym_update_expression] = STATE(2234),
- [sym_string] = STATE(2310),
- [sym_template_string] = STATE(2310),
- [sym_regex] = STATE(2310),
- [sym_meta_property] = STATE(2310),
- [sym_decorator] = STATE(1244),
- [sym_formal_parameters] = STATE(3742),
- [sym_non_null_expression] = STATE(1300),
- [sym_as_expression] = STATE(2234),
- [sym_satisfies_expression] = STATE(2234),
- [sym_instantiation_expression] = STATE(2234),
- [sym_internal_module] = STATE(2234),
- [sym_type_parameters] = STATE(5349),
- [aux_sym_export_statement_repeat1] = STATE(4499),
- [sym_identifier] = ACTIONS(1446),
- [anon_sym_export] = ACTIONS(1202),
- [anon_sym_type] = ACTIONS(1202),
- [anon_sym_namespace] = ACTIONS(1204),
- [anon_sym_LBRACE] = ACTIONS(700),
- [anon_sym_typeof] = ACTIONS(1228),
- [anon_sym_import] = ACTIONS(133),
- [anon_sym_let] = ACTIONS(1202),
- [anon_sym_BANG] = ACTIONS(1210),
- [anon_sym_LPAREN] = ACTIONS(41),
- [anon_sym_await] = ACTIONS(1212),
- [anon_sym_yield] = ACTIONS(1214),
- [anon_sym_LBRACK] = ACTIONS(65),
- [sym_glimmer_opening_tag] = ACTIONS(67),
- [anon_sym_DQUOTE] = ACTIONS(69),
- [anon_sym_SQUOTE] = ACTIONS(71),
- [anon_sym_class] = ACTIONS(709),
- [anon_sym_async] = ACTIONS(1218),
- [anon_sym_function] = ACTIONS(713),
- [anon_sym_new] = ACTIONS(1450),
- [anon_sym_using] = ACTIONS(1222),
- [anon_sym_PLUS] = ACTIONS(1228),
- [anon_sym_DASH] = ACTIONS(1228),
- [anon_sym_SLASH] = ACTIONS(882),
- [anon_sym_LT] = ACTIONS(85),
- [anon_sym_TILDE] = ACTIONS(1210),
- [anon_sym_void] = ACTIONS(1228),
- [anon_sym_delete] = ACTIONS(1228),
- [anon_sym_PLUS_PLUS] = ACTIONS(1230),
- [anon_sym_DASH_DASH] = ACTIONS(1230),
- [sym_comment] = ACTIONS(5),
- [anon_sym_BQUOTE] = ACTIONS(89),
- [sym_number] = ACTIONS(91),
- [sym_private_property_identifier] = ACTIONS(1236),
- [sym_this] = ACTIONS(95),
- [sym_super] = ACTIONS(95),
- [sym_true] = ACTIONS(95),
- [sym_false] = ACTIONS(95),
- [sym_null] = ACTIONS(95),
- [sym_undefined] = ACTIONS(1452),
- [anon_sym_AT] = ACTIONS(99),
- [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_override] = 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_object] = ACTIONS(1202),
- [sym_html_comment] = ACTIONS(5),
- },
- [463] = {
- [sym_import] = STATE(3306),
- [sym_parenthesized_expression] = STATE(1300),
- [sym_expression] = STATE(1722),
- [sym_primary_expression] = STATE(1946),
- [sym_yield_expression] = STATE(2234),
- [sym_object] = STATE(2310),
- [sym_object_pattern] = STATE(5831),
- [sym_array] = STATE(2310),
- [sym_array_pattern] = STATE(5831),
- [sym_glimmer_template] = STATE(2234),
- [sym_jsx_element] = STATE(2234),
- [sym_jsx_opening_element] = STATE(3051),
- [sym_jsx_self_closing_element] = STATE(2234),
- [sym_class] = STATE(2310),
- [sym_function_expression] = STATE(2310),
- [sym_generator_function] = STATE(2310),
- [sym_arrow_function] = STATE(2310),
- [sym__call_signature] = STATE(5829),
- [sym_call_expression] = STATE(2310),
- [sym_new_expression] = STATE(2234),
- [sym_await_expression] = STATE(2234),
- [sym_member_expression] = STATE(1300),
- [sym_subscript_expression] = STATE(1300),
- [sym_assignment_expression] = STATE(2234),
- [sym__augmented_assignment_lhs] = STATE(2943),
- [sym_augmented_assignment_expression] = STATE(2234),
- [sym__destructuring_pattern] = STATE(5831),
- [sym_ternary_expression] = STATE(2234),
- [sym_binary_expression] = STATE(2234),
- [sym_unary_expression] = STATE(2234),
- [sym_update_expression] = STATE(2234),
- [sym_string] = STATE(2310),
- [sym_template_string] = STATE(2310),
- [sym_regex] = STATE(2310),
- [sym_meta_property] = STATE(2310),
- [sym_decorator] = STATE(1244),
- [sym_formal_parameters] = STATE(3742),
- [sym_non_null_expression] = STATE(1300),
- [sym_as_expression] = STATE(2234),
- [sym_satisfies_expression] = STATE(2234),
- [sym_instantiation_expression] = STATE(2234),
- [sym_internal_module] = STATE(2234),
- [sym_type_parameters] = STATE(5349),
- [aux_sym_export_statement_repeat1] = STATE(4499),
- [sym_identifier] = ACTIONS(1446),
- [anon_sym_export] = ACTIONS(1202),
- [anon_sym_type] = ACTIONS(1202),
- [anon_sym_namespace] = ACTIONS(1204),
- [anon_sym_LBRACE] = ACTIONS(700),
- [anon_sym_typeof] = ACTIONS(1228),
- [anon_sym_import] = ACTIONS(133),
- [anon_sym_let] = ACTIONS(1202),
- [anon_sym_BANG] = ACTIONS(1210),
- [anon_sym_LPAREN] = ACTIONS(41),
- [anon_sym_await] = ACTIONS(1212),
- [anon_sym_yield] = ACTIONS(1214),
- [anon_sym_LBRACK] = ACTIONS(65),
- [sym_glimmer_opening_tag] = ACTIONS(67),
- [anon_sym_DQUOTE] = ACTIONS(69),
- [anon_sym_SQUOTE] = ACTIONS(71),
- [anon_sym_class] = ACTIONS(709),
- [anon_sym_async] = ACTIONS(1218),
- [anon_sym_function] = ACTIONS(713),
- [anon_sym_new] = ACTIONS(1450),
- [anon_sym_using] = ACTIONS(1222),
- [anon_sym_PLUS] = ACTIONS(1228),
- [anon_sym_DASH] = ACTIONS(1228),
- [anon_sym_SLASH] = ACTIONS(882),
- [anon_sym_LT] = ACTIONS(85),
- [anon_sym_TILDE] = ACTIONS(1210),
- [anon_sym_void] = ACTIONS(1228),
- [anon_sym_delete] = ACTIONS(1228),
- [anon_sym_PLUS_PLUS] = ACTIONS(1230),
- [anon_sym_DASH_DASH] = ACTIONS(1230),
- [sym_comment] = ACTIONS(5),
- [anon_sym_BQUOTE] = ACTIONS(89),
- [sym_number] = ACTIONS(91),
- [sym_private_property_identifier] = ACTIONS(1236),
- [sym_this] = ACTIONS(95),
- [sym_super] = ACTIONS(95),
- [sym_true] = ACTIONS(95),
- [sym_false] = ACTIONS(95),
- [sym_null] = ACTIONS(95),
- [sym_undefined] = ACTIONS(1452),
- [anon_sym_AT] = ACTIONS(99),
- [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_override] = 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_object] = ACTIONS(1202),
- [sym_html_comment] = ACTIONS(5),
- },
- [464] = {
- [sym_import] = STATE(3306),
- [sym_parenthesized_expression] = STATE(1300),
- [sym_expression] = STATE(1625),
- [sym_primary_expression] = STATE(1946),
- [sym_yield_expression] = STATE(2234),
- [sym_object] = STATE(2310),
- [sym_object_pattern] = STATE(5831),
- [sym_array] = STATE(2310),
- [sym_array_pattern] = STATE(5831),
- [sym_glimmer_template] = STATE(2234),
- [sym_jsx_element] = STATE(2234),
- [sym_jsx_opening_element] = STATE(3051),
- [sym_jsx_self_closing_element] = STATE(2234),
- [sym_class] = STATE(2310),
- [sym_function_expression] = STATE(2310),
- [sym_generator_function] = STATE(2310),
- [sym_arrow_function] = STATE(2310),
- [sym__call_signature] = STATE(5829),
- [sym_call_expression] = STATE(2310),
- [sym_new_expression] = STATE(2234),
- [sym_await_expression] = STATE(2234),
- [sym_member_expression] = STATE(1300),
- [sym_subscript_expression] = STATE(1300),
- [sym_assignment_expression] = STATE(2234),
- [sym__augmented_assignment_lhs] = STATE(2943),
- [sym_augmented_assignment_expression] = STATE(2234),
- [sym__destructuring_pattern] = STATE(5831),
- [sym_ternary_expression] = STATE(2234),
- [sym_binary_expression] = STATE(2234),
- [sym_unary_expression] = STATE(2234),
- [sym_update_expression] = STATE(2234),
- [sym_string] = STATE(2310),
- [sym_template_string] = STATE(2310),
- [sym_regex] = STATE(2310),
- [sym_meta_property] = STATE(2310),
- [sym_decorator] = STATE(1244),
- [sym_formal_parameters] = STATE(3742),
- [sym_non_null_expression] = STATE(1300),
- [sym_as_expression] = STATE(2234),
- [sym_satisfies_expression] = STATE(2234),
- [sym_instantiation_expression] = STATE(2234),
- [sym_internal_module] = STATE(2234),
- [sym_type_parameters] = STATE(5349),
- [aux_sym_export_statement_repeat1] = STATE(4499),
- [sym_identifier] = ACTIONS(1446),
- [anon_sym_export] = ACTIONS(1202),
- [anon_sym_type] = ACTIONS(1202),
- [anon_sym_namespace] = ACTIONS(1204),
- [anon_sym_LBRACE] = ACTIONS(700),
- [anon_sym_typeof] = ACTIONS(1228),
- [anon_sym_import] = ACTIONS(133),
- [anon_sym_let] = ACTIONS(1202),
- [anon_sym_BANG] = ACTIONS(1210),
- [anon_sym_LPAREN] = ACTIONS(41),
- [anon_sym_await] = ACTIONS(1212),
- [anon_sym_yield] = ACTIONS(1214),
- [anon_sym_LBRACK] = ACTIONS(65),
- [sym_glimmer_opening_tag] = ACTIONS(67),
- [anon_sym_DQUOTE] = ACTIONS(69),
- [anon_sym_SQUOTE] = ACTIONS(71),
- [anon_sym_class] = ACTIONS(709),
- [anon_sym_async] = ACTIONS(1218),
- [anon_sym_function] = ACTIONS(713),
- [anon_sym_new] = ACTIONS(1450),
- [anon_sym_using] = ACTIONS(1222),
- [anon_sym_PLUS] = ACTIONS(1228),
- [anon_sym_DASH] = ACTIONS(1228),
- [anon_sym_SLASH] = ACTIONS(882),
- [anon_sym_LT] = ACTIONS(85),
- [anon_sym_TILDE] = ACTIONS(1210),
- [anon_sym_void] = ACTIONS(1228),
- [anon_sym_delete] = ACTIONS(1228),
- [anon_sym_PLUS_PLUS] = ACTIONS(1230),
- [anon_sym_DASH_DASH] = ACTIONS(1230),
- [sym_comment] = ACTIONS(5),
- [anon_sym_BQUOTE] = ACTIONS(89),
- [sym_number] = ACTIONS(91),
- [sym_private_property_identifier] = ACTIONS(1236),
- [sym_this] = ACTIONS(95),
- [sym_super] = ACTIONS(95),
- [sym_true] = ACTIONS(95),
- [sym_false] = ACTIONS(95),
- [sym_null] = ACTIONS(95),
- [sym_undefined] = ACTIONS(1452),
- [anon_sym_AT] = ACTIONS(99),
- [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_override] = 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_object] = ACTIONS(1202),
- [sym_html_comment] = ACTIONS(5),
- },
- [465] = {
- [sym_import] = STATE(3306),
- [sym_parenthesized_expression] = STATE(1300),
- [sym_expression] = STATE(1738),
- [sym_primary_expression] = STATE(1946),
- [sym_yield_expression] = STATE(2234),
- [sym_object] = STATE(2310),
- [sym_object_pattern] = STATE(5831),
- [sym_array] = STATE(2310),
- [sym_array_pattern] = STATE(5831),
- [sym_glimmer_template] = STATE(2234),
- [sym_jsx_element] = STATE(2234),
- [sym_jsx_opening_element] = STATE(3051),
- [sym_jsx_self_closing_element] = STATE(2234),
- [sym_class] = STATE(2310),
- [sym_function_expression] = STATE(2310),
- [sym_generator_function] = STATE(2310),
- [sym_arrow_function] = STATE(2310),
- [sym__call_signature] = STATE(5829),
- [sym_call_expression] = STATE(2310),
- [sym_new_expression] = STATE(2234),
- [sym_await_expression] = STATE(2234),
- [sym_member_expression] = STATE(1300),
- [sym_subscript_expression] = STATE(1300),
- [sym_assignment_expression] = STATE(2234),
- [sym__augmented_assignment_lhs] = STATE(2943),
- [sym_augmented_assignment_expression] = STATE(2234),
- [sym__destructuring_pattern] = STATE(5831),
- [sym_ternary_expression] = STATE(2234),
- [sym_binary_expression] = STATE(2234),
- [sym_unary_expression] = STATE(2234),
- [sym_update_expression] = STATE(2234),
- [sym_string] = STATE(2310),
- [sym_template_string] = STATE(2310),
- [sym_regex] = STATE(2310),
- [sym_meta_property] = STATE(2310),
- [sym_decorator] = STATE(1244),
- [sym_formal_parameters] = STATE(3742),
- [sym_non_null_expression] = STATE(1300),
- [sym_as_expression] = STATE(2234),
- [sym_satisfies_expression] = STATE(2234),
- [sym_instantiation_expression] = STATE(2234),
- [sym_internal_module] = STATE(2234),
- [sym_type_parameters] = STATE(5349),
- [aux_sym_export_statement_repeat1] = STATE(4499),
- [sym_identifier] = ACTIONS(1446),
- [anon_sym_export] = ACTIONS(1202),
- [anon_sym_type] = ACTIONS(1202),
- [anon_sym_namespace] = ACTIONS(1204),
- [anon_sym_LBRACE] = ACTIONS(700),
- [anon_sym_typeof] = ACTIONS(1228),
- [anon_sym_import] = ACTIONS(133),
- [anon_sym_let] = ACTIONS(1202),
- [anon_sym_BANG] = ACTIONS(1210),
- [anon_sym_LPAREN] = ACTIONS(41),
- [anon_sym_await] = ACTIONS(1212),
- [anon_sym_yield] = ACTIONS(1214),
- [anon_sym_LBRACK] = ACTIONS(65),
- [sym_glimmer_opening_tag] = ACTIONS(67),
- [anon_sym_DQUOTE] = ACTIONS(69),
- [anon_sym_SQUOTE] = ACTIONS(71),
- [anon_sym_class] = ACTIONS(709),
- [anon_sym_async] = ACTIONS(1218),
- [anon_sym_function] = ACTIONS(713),
- [anon_sym_new] = ACTIONS(1450),
- [anon_sym_using] = ACTIONS(1222),
- [anon_sym_PLUS] = ACTIONS(1228),
- [anon_sym_DASH] = ACTIONS(1228),
- [anon_sym_SLASH] = ACTIONS(882),
- [anon_sym_LT] = ACTIONS(85),
- [anon_sym_TILDE] = ACTIONS(1210),
- [anon_sym_void] = ACTIONS(1228),
- [anon_sym_delete] = ACTIONS(1228),
- [anon_sym_PLUS_PLUS] = ACTIONS(1230),
- [anon_sym_DASH_DASH] = ACTIONS(1230),
- [sym_comment] = ACTIONS(5),
- [anon_sym_BQUOTE] = ACTIONS(89),
- [sym_number] = ACTIONS(91),
- [sym_private_property_identifier] = ACTIONS(1236),
- [sym_this] = ACTIONS(95),
- [sym_super] = ACTIONS(95),
- [sym_true] = ACTIONS(95),
- [sym_false] = ACTIONS(95),
- [sym_null] = ACTIONS(95),
- [sym_undefined] = ACTIONS(1452),
- [anon_sym_AT] = ACTIONS(99),
- [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_override] = 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_object] = ACTIONS(1202),
- [sym_html_comment] = ACTIONS(5),
- },
- [466] = {
- [sym_import] = STATE(3306),
- [sym_parenthesized_expression] = STATE(1294),
- [sym_expression] = STATE(1803),
- [sym_primary_expression] = STATE(1946),
- [sym_yield_expression] = STATE(2234),
- [sym_object] = STATE(2310),
- [sym_object_pattern] = STATE(5667),
- [sym_array] = STATE(2310),
- [sym_array_pattern] = STATE(5667),
- [sym_glimmer_template] = STATE(2234),
- [sym_jsx_element] = STATE(2234),
- [sym_jsx_opening_element] = STATE(3051),
- [sym_jsx_self_closing_element] = STATE(2234),
- [sym_class] = STATE(2310),
- [sym_function_expression] = STATE(2310),
- [sym_generator_function] = STATE(2310),
- [sym_arrow_function] = STATE(2310),
- [sym__call_signature] = STATE(5809),
- [sym_call_expression] = STATE(2310),
- [sym_new_expression] = STATE(2234),
- [sym_await_expression] = STATE(2234),
- [sym_member_expression] = STATE(1294),
- [sym_subscript_expression] = STATE(1294),
- [sym_assignment_expression] = STATE(2234),
- [sym__augmented_assignment_lhs] = STATE(2875),
- [sym_augmented_assignment_expression] = STATE(2234),
- [sym__destructuring_pattern] = STATE(5667),
- [sym_ternary_expression] = STATE(2234),
- [sym_binary_expression] = STATE(2234),
- [sym_unary_expression] = STATE(2234),
- [sym_update_expression] = STATE(2234),
- [sym_string] = STATE(2310),
- [sym_template_string] = STATE(2310),
- [sym_regex] = STATE(2310),
- [sym_meta_property] = STATE(2310),
- [sym_decorator] = STATE(1244),
- [sym_formal_parameters] = STATE(3742),
- [sym_non_null_expression] = STATE(1294),
- [sym_as_expression] = STATE(2234),
- [sym_satisfies_expression] = STATE(2234),
- [sym_instantiation_expression] = STATE(2234),
- [sym_internal_module] = STATE(2234),
- [sym_type_parameters] = STATE(5349),
- [aux_sym_export_statement_repeat1] = STATE(4499),
- [sym_identifier] = ACTIONS(1440),
- [anon_sym_export] = ACTIONS(1372),
- [anon_sym_type] = ACTIONS(1372),
- [anon_sym_namespace] = ACTIONS(1374),
- [anon_sym_LBRACE] = ACTIONS(700),
- [anon_sym_typeof] = ACTIONS(21),
- [anon_sym_import] = ACTIONS(133),
- [anon_sym_let] = ACTIONS(1372),
- [anon_sym_BANG] = ACTIONS(33),
- [anon_sym_LPAREN] = ACTIONS(41),
- [anon_sym_await] = ACTIONS(43),
- [anon_sym_yield] = ACTIONS(63),
- [anon_sym_LBRACK] = ACTIONS(65),
- [sym_glimmer_opening_tag] = ACTIONS(67),
- [anon_sym_DQUOTE] = ACTIONS(69),
- [anon_sym_SQUOTE] = ACTIONS(71),
- [anon_sym_class] = ACTIONS(709),
- [anon_sym_async] = ACTIONS(1378),
- [anon_sym_function] = ACTIONS(713),
- [anon_sym_new] = ACTIONS(1444),
- [anon_sym_using] = ACTIONS(81),
- [anon_sym_PLUS] = ACTIONS(21),
- [anon_sym_DASH] = ACTIONS(21),
- [anon_sym_SLASH] = ACTIONS(83),
- [anon_sym_LT] = ACTIONS(85),
- [anon_sym_TILDE] = ACTIONS(33),
- [anon_sym_void] = ACTIONS(21),
- [anon_sym_delete] = ACTIONS(21),
- [anon_sym_PLUS_PLUS] = ACTIONS(87),
- [anon_sym_DASH_DASH] = ACTIONS(87),
- [sym_comment] = ACTIONS(5),
- [anon_sym_BQUOTE] = ACTIONS(89),
- [sym_number] = ACTIONS(91),
- [sym_private_property_identifier] = ACTIONS(93),
- [sym_this] = ACTIONS(95),
- [sym_super] = ACTIONS(95),
- [sym_true] = ACTIONS(95),
- [sym_false] = ACTIONS(95),
- [sym_null] = ACTIONS(95),
- [sym_undefined] = ACTIONS(97),
- [anon_sym_AT] = ACTIONS(99),
- [anon_sym_static] = ACTIONS(1372),
- [anon_sym_readonly] = ACTIONS(1372),
- [anon_sym_get] = ACTIONS(1372),
- [anon_sym_set] = ACTIONS(1372),
- [anon_sym_declare] = ACTIONS(1372),
- [anon_sym_public] = ACTIONS(1372),
- [anon_sym_private] = ACTIONS(1372),
- [anon_sym_protected] = ACTIONS(1372),
- [anon_sym_override] = ACTIONS(1372),
- [anon_sym_module] = ACTIONS(1372),
- [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_object] = ACTIONS(1372),
- [sym_html_comment] = ACTIONS(5),
- },
- [467] = {
- [sym_import] = STATE(3306),
- [sym_parenthesized_expression] = STATE(1300),
- [sym_expression] = STATE(1779),
- [sym_primary_expression] = STATE(1946),
- [sym_yield_expression] = STATE(2234),
- [sym_object] = STATE(2310),
- [sym_object_pattern] = STATE(5831),
- [sym_array] = STATE(2310),
- [sym_array_pattern] = STATE(5831),
- [sym_glimmer_template] = STATE(2234),
- [sym_jsx_element] = STATE(2234),
- [sym_jsx_opening_element] = STATE(3051),
- [sym_jsx_self_closing_element] = STATE(2234),
- [sym_class] = STATE(2310),
- [sym_function_expression] = STATE(2310),
- [sym_generator_function] = STATE(2310),
- [sym_arrow_function] = STATE(2310),
- [sym__call_signature] = STATE(5829),
- [sym_call_expression] = STATE(2310),
- [sym_new_expression] = STATE(2234),
- [sym_await_expression] = STATE(2234),
- [sym_member_expression] = STATE(1300),
- [sym_subscript_expression] = STATE(1300),
- [sym_assignment_expression] = STATE(2234),
- [sym__augmented_assignment_lhs] = STATE(2943),
- [sym_augmented_assignment_expression] = STATE(2234),
- [sym__destructuring_pattern] = STATE(5831),
- [sym_ternary_expression] = STATE(2234),
- [sym_binary_expression] = STATE(2234),
- [sym_unary_expression] = STATE(2234),
- [sym_update_expression] = STATE(2234),
- [sym_string] = STATE(2310),
- [sym_template_string] = STATE(2310),
- [sym_regex] = STATE(2310),
- [sym_meta_property] = STATE(2310),
- [sym_decorator] = STATE(1244),
- [sym_formal_parameters] = STATE(3742),
- [sym_non_null_expression] = STATE(1300),
- [sym_as_expression] = STATE(2234),
- [sym_satisfies_expression] = STATE(2234),
- [sym_instantiation_expression] = STATE(2234),
- [sym_internal_module] = STATE(2234),
- [sym_type_parameters] = STATE(5349),
- [aux_sym_export_statement_repeat1] = STATE(4499),
- [sym_identifier] = ACTIONS(1446),
- [anon_sym_export] = ACTIONS(1202),
- [anon_sym_type] = ACTIONS(1202),
- [anon_sym_namespace] = ACTIONS(1204),
- [anon_sym_LBRACE] = ACTIONS(700),
- [anon_sym_typeof] = ACTIONS(1228),
- [anon_sym_import] = ACTIONS(133),
- [anon_sym_let] = ACTIONS(1202),
- [anon_sym_BANG] = ACTIONS(1210),
- [anon_sym_LPAREN] = ACTIONS(41),
- [anon_sym_await] = ACTIONS(1212),
- [anon_sym_yield] = ACTIONS(1214),
- [anon_sym_LBRACK] = ACTIONS(65),
- [sym_glimmer_opening_tag] = ACTIONS(67),
- [anon_sym_DQUOTE] = ACTIONS(69),
- [anon_sym_SQUOTE] = ACTIONS(71),
- [anon_sym_class] = ACTIONS(709),
- [anon_sym_async] = ACTIONS(1218),
- [anon_sym_function] = ACTIONS(713),
- [anon_sym_new] = ACTIONS(1450),
- [anon_sym_using] = ACTIONS(1222),
- [anon_sym_PLUS] = ACTIONS(1228),
- [anon_sym_DASH] = ACTIONS(1228),
- [anon_sym_SLASH] = ACTIONS(882),
- [anon_sym_LT] = ACTIONS(85),
- [anon_sym_TILDE] = ACTIONS(1210),
- [anon_sym_void] = ACTIONS(1228),
- [anon_sym_delete] = ACTIONS(1228),
- [anon_sym_PLUS_PLUS] = ACTIONS(1230),
- [anon_sym_DASH_DASH] = ACTIONS(1230),
- [sym_comment] = ACTIONS(5),
- [anon_sym_BQUOTE] = ACTIONS(89),
- [sym_number] = ACTIONS(91),
- [sym_private_property_identifier] = ACTIONS(1236),
- [sym_this] = ACTIONS(95),
- [sym_super] = ACTIONS(95),
- [sym_true] = ACTIONS(95),
- [sym_false] = ACTIONS(95),
- [sym_null] = ACTIONS(95),
- [sym_undefined] = ACTIONS(1452),
- [anon_sym_AT] = ACTIONS(99),
- [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_override] = 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_object] = ACTIONS(1202),
- [sym_html_comment] = ACTIONS(5),
- },
- [468] = {
- [sym_import] = STATE(3306),
- [sym_parenthesized_expression] = STATE(1300),
- [sym_expression] = STATE(1780),
- [sym_primary_expression] = STATE(1946),
- [sym_yield_expression] = STATE(2234),
- [sym_object] = STATE(2310),
- [sym_object_pattern] = STATE(5831),
- [sym_array] = STATE(2310),
- [sym_array_pattern] = STATE(5831),
- [sym_glimmer_template] = STATE(2234),
- [sym_jsx_element] = STATE(2234),
- [sym_jsx_opening_element] = STATE(3051),
- [sym_jsx_self_closing_element] = STATE(2234),
- [sym_class] = STATE(2310),
- [sym_function_expression] = STATE(2310),
- [sym_generator_function] = STATE(2310),
- [sym_arrow_function] = STATE(2310),
- [sym__call_signature] = STATE(5829),
- [sym_call_expression] = STATE(2310),
- [sym_new_expression] = STATE(2234),
- [sym_await_expression] = STATE(2234),
- [sym_member_expression] = STATE(1300),
- [sym_subscript_expression] = STATE(1300),
- [sym_assignment_expression] = STATE(2234),
- [sym__augmented_assignment_lhs] = STATE(2943),
- [sym_augmented_assignment_expression] = STATE(2234),
- [sym__destructuring_pattern] = STATE(5831),
- [sym_ternary_expression] = STATE(2234),
- [sym_binary_expression] = STATE(2234),
- [sym_unary_expression] = STATE(2234),
- [sym_update_expression] = STATE(2234),
- [sym_string] = STATE(2310),
- [sym_template_string] = STATE(2310),
- [sym_regex] = STATE(2310),
- [sym_meta_property] = STATE(2310),
- [sym_decorator] = STATE(1244),
- [sym_formal_parameters] = STATE(3742),
- [sym_non_null_expression] = STATE(1300),
- [sym_as_expression] = STATE(2234),
- [sym_satisfies_expression] = STATE(2234),
- [sym_instantiation_expression] = STATE(2234),
- [sym_internal_module] = STATE(2234),
- [sym_type_parameters] = STATE(5349),
- [aux_sym_export_statement_repeat1] = STATE(4499),
- [sym_identifier] = ACTIONS(1446),
- [anon_sym_export] = ACTIONS(1202),
- [anon_sym_type] = ACTIONS(1202),
- [anon_sym_namespace] = ACTIONS(1204),
- [anon_sym_LBRACE] = ACTIONS(700),
- [anon_sym_typeof] = ACTIONS(1228),
- [anon_sym_import] = ACTIONS(133),
- [anon_sym_let] = ACTIONS(1202),
- [anon_sym_BANG] = ACTIONS(1210),
- [anon_sym_LPAREN] = ACTIONS(41),
- [anon_sym_await] = ACTIONS(1212),
- [anon_sym_yield] = ACTIONS(1214),
- [anon_sym_LBRACK] = ACTIONS(65),
- [sym_glimmer_opening_tag] = ACTIONS(67),
- [anon_sym_DQUOTE] = ACTIONS(69),
- [anon_sym_SQUOTE] = ACTIONS(71),
- [anon_sym_class] = ACTIONS(709),
- [anon_sym_async] = ACTIONS(1218),
- [anon_sym_function] = ACTIONS(713),
- [anon_sym_new] = ACTIONS(1450),
- [anon_sym_using] = ACTIONS(1222),
- [anon_sym_PLUS] = ACTIONS(1228),
- [anon_sym_DASH] = ACTIONS(1228),
- [anon_sym_SLASH] = ACTIONS(882),
- [anon_sym_LT] = ACTIONS(85),
- [anon_sym_TILDE] = ACTIONS(1210),
- [anon_sym_void] = ACTIONS(1228),
- [anon_sym_delete] = ACTIONS(1228),
- [anon_sym_PLUS_PLUS] = ACTIONS(1230),
- [anon_sym_DASH_DASH] = ACTIONS(1230),
- [sym_comment] = ACTIONS(5),
- [anon_sym_BQUOTE] = ACTIONS(89),
- [sym_number] = ACTIONS(91),
- [sym_private_property_identifier] = ACTIONS(1236),
- [sym_this] = ACTIONS(95),
- [sym_super] = ACTIONS(95),
- [sym_true] = ACTIONS(95),
- [sym_false] = ACTIONS(95),
- [sym_null] = ACTIONS(95),
- [sym_undefined] = ACTIONS(1452),
- [anon_sym_AT] = ACTIONS(99),
- [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_override] = 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_object] = ACTIONS(1202),
- [sym_html_comment] = ACTIONS(5),
- },
- [469] = {
- [sym_import] = STATE(3306),
- [sym_parenthesized_expression] = STATE(1300),
- [sym_expression] = STATE(1635),
- [sym_primary_expression] = STATE(1946),
- [sym_yield_expression] = STATE(2234),
- [sym_object] = STATE(2310),
- [sym_object_pattern] = STATE(5831),
- [sym_array] = STATE(2310),
- [sym_array_pattern] = STATE(5831),
- [sym_glimmer_template] = STATE(2234),
- [sym_jsx_element] = STATE(2234),
- [sym_jsx_opening_element] = STATE(3051),
- [sym_jsx_self_closing_element] = STATE(2234),
- [sym_class] = STATE(2310),
- [sym_function_expression] = STATE(2310),
- [sym_generator_function] = STATE(2310),
- [sym_arrow_function] = STATE(2310),
- [sym__call_signature] = STATE(5829),
- [sym_call_expression] = STATE(2310),
- [sym_new_expression] = STATE(2234),
- [sym_await_expression] = STATE(2234),
- [sym_member_expression] = STATE(1300),
- [sym_subscript_expression] = STATE(1300),
- [sym_assignment_expression] = STATE(2234),
- [sym__augmented_assignment_lhs] = STATE(2943),
- [sym_augmented_assignment_expression] = STATE(2234),
- [sym__destructuring_pattern] = STATE(5831),
- [sym_ternary_expression] = STATE(2234),
- [sym_binary_expression] = STATE(2234),
- [sym_unary_expression] = STATE(2234),
- [sym_update_expression] = STATE(2234),
- [sym_string] = STATE(2310),
- [sym_template_string] = STATE(2310),
- [sym_regex] = STATE(2310),
- [sym_meta_property] = STATE(2310),
- [sym_decorator] = STATE(1244),
- [sym_formal_parameters] = STATE(3742),
- [sym_non_null_expression] = STATE(1300),
- [sym_as_expression] = STATE(2234),
- [sym_satisfies_expression] = STATE(2234),
- [sym_instantiation_expression] = STATE(2234),
- [sym_internal_module] = STATE(2234),
- [sym_type_parameters] = STATE(5349),
- [aux_sym_export_statement_repeat1] = STATE(4499),
- [sym_identifier] = ACTIONS(1446),
- [anon_sym_export] = ACTIONS(1202),
- [anon_sym_type] = ACTIONS(1202),
- [anon_sym_namespace] = ACTIONS(1204),
- [anon_sym_LBRACE] = ACTIONS(700),
- [anon_sym_typeof] = ACTIONS(1228),
- [anon_sym_import] = ACTIONS(133),
- [anon_sym_let] = ACTIONS(1202),
- [anon_sym_BANG] = ACTIONS(1210),
- [anon_sym_LPAREN] = ACTIONS(41),
- [anon_sym_await] = ACTIONS(1212),
- [anon_sym_yield] = ACTIONS(1214),
- [anon_sym_LBRACK] = ACTIONS(65),
- [sym_glimmer_opening_tag] = ACTIONS(67),
- [anon_sym_DQUOTE] = ACTIONS(69),
- [anon_sym_SQUOTE] = ACTIONS(71),
- [anon_sym_class] = ACTIONS(709),
- [anon_sym_async] = ACTIONS(1218),
- [anon_sym_function] = ACTIONS(713),
- [anon_sym_new] = ACTIONS(1450),
- [anon_sym_using] = ACTIONS(1222),
- [anon_sym_PLUS] = ACTIONS(1228),
- [anon_sym_DASH] = ACTIONS(1228),
- [anon_sym_SLASH] = ACTIONS(882),
- [anon_sym_LT] = ACTIONS(85),
- [anon_sym_TILDE] = ACTIONS(1210),
- [anon_sym_void] = ACTIONS(1228),
- [anon_sym_delete] = ACTIONS(1228),
- [anon_sym_PLUS_PLUS] = ACTIONS(1230),
- [anon_sym_DASH_DASH] = ACTIONS(1230),
- [sym_comment] = ACTIONS(5),
- [anon_sym_BQUOTE] = ACTIONS(89),
- [sym_number] = ACTIONS(2109),
- [sym_private_property_identifier] = ACTIONS(1236),
- [sym_this] = ACTIONS(95),
- [sym_super] = ACTIONS(95),
- [sym_true] = ACTIONS(95),
- [sym_false] = ACTIONS(95),
- [sym_null] = ACTIONS(95),
- [sym_undefined] = ACTIONS(1452),
- [anon_sym_AT] = ACTIONS(99),
- [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_override] = 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_object] = ACTIONS(1202),
- [sym_html_comment] = ACTIONS(5),
- },
- [470] = {
- [sym_import] = STATE(3306),
- [sym_parenthesized_expression] = STATE(1300),
- [sym_expression] = STATE(1621),
- [sym_primary_expression] = STATE(1946),
- [sym_yield_expression] = STATE(2234),
- [sym_object] = STATE(2310),
- [sym_object_pattern] = STATE(5831),
- [sym_array] = STATE(2310),
- [sym_array_pattern] = STATE(5831),
- [sym_glimmer_template] = STATE(2234),
- [sym_jsx_element] = STATE(2234),
- [sym_jsx_opening_element] = STATE(3051),
- [sym_jsx_self_closing_element] = STATE(2234),
- [sym_class] = STATE(2310),
- [sym_function_expression] = STATE(2310),
- [sym_generator_function] = STATE(2310),
- [sym_arrow_function] = STATE(2310),
- [sym__call_signature] = STATE(5829),
- [sym_call_expression] = STATE(2310),
- [sym_new_expression] = STATE(2234),
- [sym_await_expression] = STATE(2234),
- [sym_member_expression] = STATE(1300),
- [sym_subscript_expression] = STATE(1300),
- [sym_assignment_expression] = STATE(2234),
- [sym__augmented_assignment_lhs] = STATE(2943),
- [sym_augmented_assignment_expression] = STATE(2234),
- [sym__destructuring_pattern] = STATE(5831),
- [sym_ternary_expression] = STATE(2234),
- [sym_binary_expression] = STATE(2234),
- [sym_unary_expression] = STATE(2234),
- [sym_update_expression] = STATE(2234),
- [sym_string] = STATE(2310),
- [sym_template_string] = STATE(2310),
- [sym_regex] = STATE(2310),
- [sym_meta_property] = STATE(2310),
- [sym_decorator] = STATE(1244),
- [sym_formal_parameters] = STATE(3742),
- [sym_non_null_expression] = STATE(1300),
- [sym_as_expression] = STATE(2234),
- [sym_satisfies_expression] = STATE(2234),
- [sym_instantiation_expression] = STATE(2234),
- [sym_internal_module] = STATE(2234),
- [sym_type_parameters] = STATE(5349),
- [aux_sym_export_statement_repeat1] = STATE(4499),
- [sym_identifier] = ACTIONS(1446),
- [anon_sym_export] = ACTIONS(1202),
- [anon_sym_type] = ACTIONS(1202),
- [anon_sym_namespace] = ACTIONS(1204),
- [anon_sym_LBRACE] = ACTIONS(700),
- [anon_sym_typeof] = ACTIONS(1228),
- [anon_sym_import] = ACTIONS(133),
- [anon_sym_let] = ACTIONS(1202),
- [anon_sym_BANG] = ACTIONS(1210),
- [anon_sym_LPAREN] = ACTIONS(41),
- [anon_sym_await] = ACTIONS(1212),
- [anon_sym_yield] = ACTIONS(1214),
- [anon_sym_LBRACK] = ACTIONS(65),
- [sym_glimmer_opening_tag] = ACTIONS(67),
- [anon_sym_DQUOTE] = ACTIONS(69),
- [anon_sym_SQUOTE] = ACTIONS(71),
- [anon_sym_class] = ACTIONS(709),
- [anon_sym_async] = ACTIONS(1218),
- [anon_sym_function] = ACTIONS(713),
- [anon_sym_new] = ACTIONS(1450),
- [anon_sym_using] = ACTIONS(1222),
- [anon_sym_PLUS] = ACTIONS(1228),
- [anon_sym_DASH] = ACTIONS(1228),
- [anon_sym_SLASH] = ACTIONS(882),
- [anon_sym_LT] = ACTIONS(85),
- [anon_sym_TILDE] = ACTIONS(1210),
- [anon_sym_void] = ACTIONS(1228),
- [anon_sym_delete] = ACTIONS(1228),
- [anon_sym_PLUS_PLUS] = ACTIONS(1230),
- [anon_sym_DASH_DASH] = ACTIONS(1230),
- [sym_comment] = ACTIONS(5),
- [anon_sym_BQUOTE] = ACTIONS(89),
- [sym_number] = ACTIONS(91),
- [sym_private_property_identifier] = ACTIONS(1236),
- [sym_this] = ACTIONS(95),
- [sym_super] = ACTIONS(95),
- [sym_true] = ACTIONS(95),
- [sym_false] = ACTIONS(95),
- [sym_null] = ACTIONS(95),
- [sym_undefined] = ACTIONS(1452),
- [anon_sym_AT] = ACTIONS(99),
- [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_override] = 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_object] = ACTIONS(1202),
- [sym_html_comment] = ACTIONS(5),
- },
- [471] = {
- [sym_import] = STATE(3334),
- [sym_parenthesized_expression] = STATE(1345),
- [sym_expression] = STATE(2376),
- [sym_primary_expression] = STATE(1468),
- [sym_yield_expression] = STATE(1634),
- [sym_object] = STATE(1650),
- [sym_object_pattern] = STATE(5872),
- [sym_array] = STATE(1650),
- [sym_array_pattern] = STATE(5872),
- [sym_glimmer_template] = STATE(1634),
- [sym_jsx_element] = STATE(1634),
- [sym_jsx_opening_element] = STATE(3026),
- [sym_jsx_self_closing_element] = STATE(1634),
- [sym_class] = STATE(1650),
- [sym_function_expression] = STATE(1650),
- [sym_generator_function] = STATE(1650),
- [sym_arrow_function] = STATE(1650),
- [sym__call_signature] = STATE(5904),
- [sym_call_expression] = STATE(1650),
- [sym_new_expression] = STATE(1634),
- [sym_await_expression] = STATE(1634),
- [sym_member_expression] = STATE(1345),
- [sym_subscript_expression] = STATE(1345),
- [sym_assignment_expression] = STATE(1634),
- [sym__augmented_assignment_lhs] = STATE(2898),
- [sym_augmented_assignment_expression] = STATE(1634),
- [sym__destructuring_pattern] = STATE(5872),
- [sym_ternary_expression] = STATE(1634),
- [sym_binary_expression] = STATE(1634),
- [sym_unary_expression] = STATE(1634),
- [sym_update_expression] = STATE(1634),
- [sym_string] = STATE(1650),
- [sym_template_string] = STATE(1650),
- [sym_regex] = STATE(1650),
- [sym_meta_property] = STATE(1650),
- [sym_decorator] = STATE(1244),
- [sym_formal_parameters] = STATE(3742),
- [sym_non_null_expression] = STATE(1345),
- [sym_as_expression] = STATE(1634),
- [sym_satisfies_expression] = STATE(1634),
- [sym_instantiation_expression] = STATE(1634),
- [sym_internal_module] = STATE(1634),
- [sym_type_parameters] = STATE(5349),
- [aux_sym_export_statement_repeat1] = STATE(4458),
- [sym_identifier] = ACTIONS(1486),
- [anon_sym_export] = ACTIONS(1394),
- [anon_sym_type] = ACTIONS(1394),
- [anon_sym_namespace] = ACTIONS(1396),
- [anon_sym_LBRACE] = ACTIONS(845),
- [anon_sym_typeof] = ACTIONS(1416),
- [anon_sym_import] = ACTIONS(133),
- [anon_sym_let] = ACTIONS(1394),
- [anon_sym_BANG] = ACTIONS(1400),
- [anon_sym_LPAREN] = ACTIONS(815),
- [anon_sym_await] = ACTIONS(1402),
- [anon_sym_yield] = ACTIONS(1404),
- [anon_sym_LBRACK] = ACTIONS(849),
- [sym_glimmer_opening_tag] = ACTIONS(148),
- [anon_sym_DQUOTE] = ACTIONS(150),
- [anon_sym_SQUOTE] = ACTIONS(152),
- [anon_sym_class] = ACTIONS(154),
- [anon_sym_async] = ACTIONS(1406),
- [anon_sym_function] = ACTIONS(158),
- [anon_sym_new] = ACTIONS(1490),
- [anon_sym_using] = ACTIONS(1410),
- [anon_sym_PLUS] = ACTIONS(1416),
- [anon_sym_DASH] = ACTIONS(1416),
- [anon_sym_SLASH] = ACTIONS(970),
- [anon_sym_LT] = ACTIONS(181),
- [anon_sym_TILDE] = ACTIONS(1400),
- [anon_sym_void] = ACTIONS(1416),
- [anon_sym_delete] = ACTIONS(1416),
- [anon_sym_PLUS_PLUS] = ACTIONS(1418),
- [anon_sym_DASH_DASH] = ACTIONS(1418),
- [sym_comment] = ACTIONS(5),
- [anon_sym_BQUOTE] = ACTIONS(825),
- [sym_number] = ACTIONS(787),
- [sym_private_property_identifier] = ACTIONS(1420),
- [sym_this] = ACTIONS(200),
- [sym_super] = ACTIONS(200),
- [sym_true] = ACTIONS(200),
- [sym_false] = ACTIONS(200),
- [sym_null] = ACTIONS(200),
- [sym_undefined] = ACTIONS(1492),
- [anon_sym_AT] = ACTIONS(99),
- [anon_sym_static] = ACTIONS(1394),
- [anon_sym_readonly] = ACTIONS(1394),
- [anon_sym_get] = ACTIONS(1394),
- [anon_sym_set] = ACTIONS(1394),
- [anon_sym_declare] = ACTIONS(1394),
- [anon_sym_public] = ACTIONS(1394),
- [anon_sym_private] = ACTIONS(1394),
- [anon_sym_protected] = ACTIONS(1394),
- [anon_sym_override] = ACTIONS(1394),
- [anon_sym_module] = ACTIONS(1394),
- [anon_sym_any] = ACTIONS(1394),
- [anon_sym_number] = ACTIONS(1394),
- [anon_sym_boolean] = ACTIONS(1394),
- [anon_sym_string] = ACTIONS(1394),
- [anon_sym_symbol] = ACTIONS(1394),
- [anon_sym_object] = ACTIONS(1394),
- [sym_html_comment] = ACTIONS(5),
- },
- [472] = {
- [sym_import] = STATE(3334),
- [sym_parenthesized_expression] = STATE(1336),
- [sym_expression] = STATE(2052),
- [sym_primary_expression] = STATE(1468),
- [sym_yield_expression] = STATE(1634),
- [sym_object] = STATE(1650),
- [sym_object_pattern] = STATE(5745),
- [sym_array] = STATE(1650),
- [sym_array_pattern] = STATE(5745),
- [sym_glimmer_template] = STATE(1634),
- [sym_jsx_element] = STATE(1634),
- [sym_jsx_opening_element] = STATE(3026),
- [sym_jsx_self_closing_element] = STATE(1634),
- [sym_class] = STATE(1650),
- [sym_function_expression] = STATE(1650),
- [sym_generator_function] = STATE(1650),
- [sym_arrow_function] = STATE(1650),
- [sym__call_signature] = STATE(5553),
- [sym_call_expression] = STATE(1650),
- [sym_new_expression] = STATE(1634),
- [sym_await_expression] = STATE(1634),
- [sym_member_expression] = STATE(1336),
- [sym_subscript_expression] = STATE(1336),
- [sym_assignment_expression] = STATE(1634),
- [sym__augmented_assignment_lhs] = STATE(2884),
- [sym_augmented_assignment_expression] = STATE(1634),
- [sym__destructuring_pattern] = STATE(5745),
- [sym_ternary_expression] = STATE(1634),
- [sym_binary_expression] = STATE(1634),
- [sym_unary_expression] = STATE(1634),
- [sym_update_expression] = STATE(1634),
- [sym_string] = STATE(1650),
- [sym_template_string] = STATE(1650),
- [sym_regex] = STATE(1650),
- [sym_meta_property] = STATE(1650),
- [sym_decorator] = STATE(1244),
- [sym_formal_parameters] = STATE(3742),
- [sym_non_null_expression] = STATE(1336),
- [sym_as_expression] = STATE(1634),
- [sym_satisfies_expression] = STATE(1634),
- [sym_instantiation_expression] = STATE(1634),
- [sym_internal_module] = STATE(1634),
- [sym_type_parameters] = STATE(5349),
- [aux_sym_export_statement_repeat1] = STATE(4458),
- [sym_identifier] = ACTIONS(1470),
- [anon_sym_export] = ACTIONS(1250),
- [anon_sym_type] = ACTIONS(1250),
- [anon_sym_namespace] = ACTIONS(1252),
- [anon_sym_LBRACE] = ACTIONS(813),
- [anon_sym_typeof] = ACTIONS(1272),
- [anon_sym_import] = ACTIONS(133),
- [anon_sym_let] = ACTIONS(1250),
- [anon_sym_BANG] = ACTIONS(1256),
- [anon_sym_LPAREN] = ACTIONS(815),
- [anon_sym_await] = ACTIONS(1258),
- [anon_sym_yield] = ACTIONS(1260),
- [anon_sym_LBRACK] = ACTIONS(817),
- [sym_glimmer_opening_tag] = ACTIONS(148),
- [anon_sym_DQUOTE] = ACTIONS(150),
- [anon_sym_SQUOTE] = ACTIONS(152),
- [anon_sym_class] = ACTIONS(154),
- [anon_sym_async] = ACTIONS(1262),
- [anon_sym_function] = ACTIONS(158),
- [anon_sym_new] = ACTIONS(1474),
- [anon_sym_using] = ACTIONS(1266),
- [anon_sym_PLUS] = ACTIONS(1272),
- [anon_sym_DASH] = ACTIONS(1272),
- [anon_sym_SLASH] = ACTIONS(646),
- [anon_sym_LT] = ACTIONS(181),
- [anon_sym_TILDE] = ACTIONS(1256),
- [anon_sym_void] = ACTIONS(1272),
- [anon_sym_delete] = ACTIONS(1272),
- [anon_sym_PLUS_PLUS] = ACTIONS(1274),
- [anon_sym_DASH_DASH] = ACTIONS(1274),
- [sym_comment] = ACTIONS(5),
- [anon_sym_BQUOTE] = ACTIONS(825),
- [sym_number] = ACTIONS(787),
- [sym_private_property_identifier] = ACTIONS(1276),
- [sym_this] = ACTIONS(200),
- [sym_super] = ACTIONS(200),
- [sym_true] = ACTIONS(200),
- [sym_false] = ACTIONS(200),
- [sym_null] = ACTIONS(200),
- [sym_undefined] = ACTIONS(1476),
- [anon_sym_AT] = ACTIONS(99),
- [anon_sym_static] = ACTIONS(1250),
- [anon_sym_readonly] = ACTIONS(1250),
- [anon_sym_get] = ACTIONS(1250),
- [anon_sym_set] = ACTIONS(1250),
- [anon_sym_declare] = ACTIONS(1250),
- [anon_sym_public] = ACTIONS(1250),
- [anon_sym_private] = ACTIONS(1250),
- [anon_sym_protected] = ACTIONS(1250),
- [anon_sym_override] = ACTIONS(1250),
- [anon_sym_module] = ACTIONS(1250),
- [anon_sym_any] = ACTIONS(1250),
- [anon_sym_number] = ACTIONS(1250),
- [anon_sym_boolean] = ACTIONS(1250),
- [anon_sym_string] = ACTIONS(1250),
- [anon_sym_symbol] = ACTIONS(1250),
- [anon_sym_object] = ACTIONS(1250),
- [sym_html_comment] = ACTIONS(5),
- },
- [473] = {
- [sym_import] = STATE(3334),
- [sym_parenthesized_expression] = STATE(1336),
- [sym_expression] = STATE(2053),
- [sym_primary_expression] = STATE(1468),
- [sym_yield_expression] = STATE(1634),
- [sym_object] = STATE(1650),
- [sym_object_pattern] = STATE(5745),
- [sym_array] = STATE(1650),
- [sym_array_pattern] = STATE(5745),
- [sym_glimmer_template] = STATE(1634),
- [sym_jsx_element] = STATE(1634),
- [sym_jsx_opening_element] = STATE(3026),
- [sym_jsx_self_closing_element] = STATE(1634),
- [sym_class] = STATE(1650),
- [sym_function_expression] = STATE(1650),
- [sym_generator_function] = STATE(1650),
- [sym_arrow_function] = STATE(1650),
- [sym__call_signature] = STATE(5553),
- [sym_call_expression] = STATE(1650),
- [sym_new_expression] = STATE(1634),
- [sym_await_expression] = STATE(1634),
- [sym_member_expression] = STATE(1336),
- [sym_subscript_expression] = STATE(1336),
- [sym_assignment_expression] = STATE(1634),
- [sym__augmented_assignment_lhs] = STATE(2884),
- [sym_augmented_assignment_expression] = STATE(1634),
- [sym__destructuring_pattern] = STATE(5745),
- [sym_ternary_expression] = STATE(1634),
- [sym_binary_expression] = STATE(1634),
- [sym_unary_expression] = STATE(1634),
- [sym_update_expression] = STATE(1634),
- [sym_string] = STATE(1650),
- [sym_template_string] = STATE(1650),
- [sym_regex] = STATE(1650),
- [sym_meta_property] = STATE(1650),
- [sym_decorator] = STATE(1244),
- [sym_formal_parameters] = STATE(3742),
- [sym_non_null_expression] = STATE(1336),
- [sym_as_expression] = STATE(1634),
- [sym_satisfies_expression] = STATE(1634),
- [sym_instantiation_expression] = STATE(1634),
- [sym_internal_module] = STATE(1634),
- [sym_type_parameters] = STATE(5349),
- [aux_sym_export_statement_repeat1] = STATE(4458),
- [sym_identifier] = ACTIONS(1470),
- [anon_sym_export] = ACTIONS(1250),
- [anon_sym_type] = ACTIONS(1250),
- [anon_sym_namespace] = ACTIONS(1252),
- [anon_sym_LBRACE] = ACTIONS(813),
- [anon_sym_typeof] = ACTIONS(1272),
- [anon_sym_import] = ACTIONS(133),
- [anon_sym_let] = ACTIONS(1250),
- [anon_sym_BANG] = ACTIONS(1256),
- [anon_sym_LPAREN] = ACTIONS(815),
- [anon_sym_await] = ACTIONS(1258),
- [anon_sym_yield] = ACTIONS(1260),
- [anon_sym_LBRACK] = ACTIONS(817),
- [sym_glimmer_opening_tag] = ACTIONS(148),
- [anon_sym_DQUOTE] = ACTIONS(150),
- [anon_sym_SQUOTE] = ACTIONS(152),
- [anon_sym_class] = ACTIONS(154),
- [anon_sym_async] = ACTIONS(1262),
- [anon_sym_function] = ACTIONS(158),
- [anon_sym_new] = ACTIONS(1474),
- [anon_sym_using] = ACTIONS(1266),
- [anon_sym_PLUS] = ACTIONS(1272),
- [anon_sym_DASH] = ACTIONS(1272),
- [anon_sym_SLASH] = ACTIONS(646),
- [anon_sym_LT] = ACTIONS(181),
- [anon_sym_TILDE] = ACTIONS(1256),
- [anon_sym_void] = ACTIONS(1272),
- [anon_sym_delete] = ACTIONS(1272),
- [anon_sym_PLUS_PLUS] = ACTIONS(1274),
- [anon_sym_DASH_DASH] = ACTIONS(1274),
- [sym_comment] = ACTIONS(5),
- [anon_sym_BQUOTE] = ACTIONS(825),
- [sym_number] = ACTIONS(787),
- [sym_private_property_identifier] = ACTIONS(1276),
- [sym_this] = ACTIONS(200),
- [sym_super] = ACTIONS(200),
- [sym_true] = ACTIONS(200),
- [sym_false] = ACTIONS(200),
- [sym_null] = ACTIONS(200),
- [sym_undefined] = ACTIONS(1476),
- [anon_sym_AT] = ACTIONS(99),
- [anon_sym_static] = ACTIONS(1250),
- [anon_sym_readonly] = ACTIONS(1250),
- [anon_sym_get] = ACTIONS(1250),
- [anon_sym_set] = ACTIONS(1250),
- [anon_sym_declare] = ACTIONS(1250),
- [anon_sym_public] = ACTIONS(1250),
- [anon_sym_private] = ACTIONS(1250),
- [anon_sym_protected] = ACTIONS(1250),
- [anon_sym_override] = ACTIONS(1250),
- [anon_sym_module] = ACTIONS(1250),
- [anon_sym_any] = ACTIONS(1250),
- [anon_sym_number] = ACTIONS(1250),
- [anon_sym_boolean] = ACTIONS(1250),
- [anon_sym_string] = ACTIONS(1250),
- [anon_sym_symbol] = ACTIONS(1250),
- [anon_sym_object] = ACTIONS(1250),
- [sym_html_comment] = ACTIONS(5),
- },
- [474] = {
- [sym_import] = STATE(3334),
- [sym_parenthesized_expression] = STATE(1336),
- [sym_expression] = STATE(2054),
- [sym_primary_expression] = STATE(1468),
- [sym_yield_expression] = STATE(1634),
- [sym_object] = STATE(1650),
- [sym_object_pattern] = STATE(5745),
- [sym_array] = STATE(1650),
- [sym_array_pattern] = STATE(5745),
- [sym_glimmer_template] = STATE(1634),
- [sym_jsx_element] = STATE(1634),
- [sym_jsx_opening_element] = STATE(3026),
- [sym_jsx_self_closing_element] = STATE(1634),
- [sym_class] = STATE(1650),
- [sym_function_expression] = STATE(1650),
- [sym_generator_function] = STATE(1650),
- [sym_arrow_function] = STATE(1650),
- [sym__call_signature] = STATE(5553),
- [sym_call_expression] = STATE(1650),
- [sym_new_expression] = STATE(1634),
- [sym_await_expression] = STATE(1634),
- [sym_member_expression] = STATE(1336),
- [sym_subscript_expression] = STATE(1336),
- [sym_assignment_expression] = STATE(1634),
- [sym__augmented_assignment_lhs] = STATE(2884),
- [sym_augmented_assignment_expression] = STATE(1634),
- [sym__destructuring_pattern] = STATE(5745),
- [sym_ternary_expression] = STATE(1634),
- [sym_binary_expression] = STATE(1634),
- [sym_unary_expression] = STATE(1634),
- [sym_update_expression] = STATE(1634),
- [sym_string] = STATE(1650),
- [sym_template_string] = STATE(1650),
- [sym_regex] = STATE(1650),
- [sym_meta_property] = STATE(1650),
- [sym_decorator] = STATE(1244),
- [sym_formal_parameters] = STATE(3742),
- [sym_non_null_expression] = STATE(1336),
- [sym_as_expression] = STATE(1634),
- [sym_satisfies_expression] = STATE(1634),
- [sym_instantiation_expression] = STATE(1634),
- [sym_internal_module] = STATE(1634),
- [sym_type_parameters] = STATE(5349),
- [aux_sym_export_statement_repeat1] = STATE(4458),
- [sym_identifier] = ACTIONS(1470),
- [anon_sym_export] = ACTIONS(1250),
- [anon_sym_type] = ACTIONS(1250),
- [anon_sym_namespace] = ACTIONS(1252),
- [anon_sym_LBRACE] = ACTIONS(813),
- [anon_sym_typeof] = ACTIONS(1272),
- [anon_sym_import] = ACTIONS(133),
- [anon_sym_let] = ACTIONS(1250),
- [anon_sym_BANG] = ACTIONS(1256),
- [anon_sym_LPAREN] = ACTIONS(815),
- [anon_sym_await] = ACTIONS(1258),
- [anon_sym_yield] = ACTIONS(1260),
- [anon_sym_LBRACK] = ACTIONS(817),
- [sym_glimmer_opening_tag] = ACTIONS(148),
- [anon_sym_DQUOTE] = ACTIONS(150),
- [anon_sym_SQUOTE] = ACTIONS(152),
- [anon_sym_class] = ACTIONS(154),
- [anon_sym_async] = ACTIONS(1262),
- [anon_sym_function] = ACTIONS(158),
- [anon_sym_new] = ACTIONS(1474),
- [anon_sym_using] = ACTIONS(1266),
- [anon_sym_PLUS] = ACTIONS(1272),
- [anon_sym_DASH] = ACTIONS(1272),
- [anon_sym_SLASH] = ACTIONS(646),
- [anon_sym_LT] = ACTIONS(181),
- [anon_sym_TILDE] = ACTIONS(1256),
- [anon_sym_void] = ACTIONS(1272),
- [anon_sym_delete] = ACTIONS(1272),
- [anon_sym_PLUS_PLUS] = ACTIONS(1274),
- [anon_sym_DASH_DASH] = ACTIONS(1274),
- [sym_comment] = ACTIONS(5),
- [anon_sym_BQUOTE] = ACTIONS(825),
- [sym_number] = ACTIONS(787),
- [sym_private_property_identifier] = ACTIONS(1276),
- [sym_this] = ACTIONS(200),
- [sym_super] = ACTIONS(200),
- [sym_true] = ACTIONS(200),
- [sym_false] = ACTIONS(200),
- [sym_null] = ACTIONS(200),
- [sym_undefined] = ACTIONS(1476),
- [anon_sym_AT] = ACTIONS(99),
- [anon_sym_static] = ACTIONS(1250),
- [anon_sym_readonly] = ACTIONS(1250),
- [anon_sym_get] = ACTIONS(1250),
- [anon_sym_set] = ACTIONS(1250),
- [anon_sym_declare] = ACTIONS(1250),
- [anon_sym_public] = ACTIONS(1250),
- [anon_sym_private] = ACTIONS(1250),
- [anon_sym_protected] = ACTIONS(1250),
- [anon_sym_override] = ACTIONS(1250),
- [anon_sym_module] = ACTIONS(1250),
- [anon_sym_any] = ACTIONS(1250),
- [anon_sym_number] = ACTIONS(1250),
- [anon_sym_boolean] = ACTIONS(1250),
- [anon_sym_string] = ACTIONS(1250),
- [anon_sym_symbol] = ACTIONS(1250),
- [anon_sym_object] = ACTIONS(1250),
- [sym_html_comment] = ACTIONS(5),
- },
- [475] = {
- [sym_import] = STATE(3306),
- [sym_parenthesized_expression] = STATE(1294),
- [sym_expression] = STATE(1787),
- [sym_primary_expression] = STATE(1946),
- [sym_yield_expression] = STATE(2234),
- [sym_object] = STATE(2310),
- [sym_object_pattern] = STATE(5667),
- [sym_array] = STATE(2310),
- [sym_array_pattern] = STATE(5667),
- [sym_glimmer_template] = STATE(2234),
- [sym_jsx_element] = STATE(2234),
- [sym_jsx_opening_element] = STATE(3051),
- [sym_jsx_self_closing_element] = STATE(2234),
- [sym_class] = STATE(2310),
- [sym_function_expression] = STATE(2310),
- [sym_generator_function] = STATE(2310),
- [sym_arrow_function] = STATE(2310),
- [sym__call_signature] = STATE(5809),
- [sym_call_expression] = STATE(2310),
- [sym_new_expression] = STATE(2234),
- [sym_await_expression] = STATE(2234),
- [sym_member_expression] = STATE(1294),
- [sym_subscript_expression] = STATE(1294),
- [sym_assignment_expression] = STATE(2234),
- [sym__augmented_assignment_lhs] = STATE(2875),
- [sym_augmented_assignment_expression] = STATE(2234),
- [sym__destructuring_pattern] = STATE(5667),
- [sym_ternary_expression] = STATE(2234),
- [sym_binary_expression] = STATE(2234),
- [sym_unary_expression] = STATE(2234),
- [sym_update_expression] = STATE(2234),
- [sym_string] = STATE(2310),
- [sym_template_string] = STATE(2310),
- [sym_regex] = STATE(2310),
- [sym_meta_property] = STATE(2310),
- [sym_decorator] = STATE(1244),
- [sym_formal_parameters] = STATE(3742),
- [sym_non_null_expression] = STATE(1294),
- [sym_as_expression] = STATE(2234),
- [sym_satisfies_expression] = STATE(2234),
- [sym_instantiation_expression] = STATE(2234),
- [sym_internal_module] = STATE(2234),
- [sym_type_parameters] = STATE(5349),
- [aux_sym_export_statement_repeat1] = STATE(4499),
- [sym_identifier] = ACTIONS(1440),
- [anon_sym_export] = ACTIONS(1372),
- [anon_sym_type] = ACTIONS(1372),
- [anon_sym_namespace] = ACTIONS(1374),
- [anon_sym_LBRACE] = ACTIONS(700),
- [anon_sym_typeof] = ACTIONS(21),
- [anon_sym_import] = ACTIONS(133),
- [anon_sym_let] = ACTIONS(1372),
- [anon_sym_BANG] = ACTIONS(33),
- [anon_sym_LPAREN] = ACTIONS(41),
- [anon_sym_await] = ACTIONS(43),
- [anon_sym_yield] = ACTIONS(63),
- [anon_sym_LBRACK] = ACTIONS(65),
- [sym_glimmer_opening_tag] = ACTIONS(67),
- [anon_sym_DQUOTE] = ACTIONS(69),
- [anon_sym_SQUOTE] = ACTIONS(71),
- [anon_sym_class] = ACTIONS(709),
- [anon_sym_async] = ACTIONS(1378),
- [anon_sym_function] = ACTIONS(713),
- [anon_sym_new] = ACTIONS(1444),
- [anon_sym_using] = ACTIONS(81),
- [anon_sym_PLUS] = ACTIONS(21),
- [anon_sym_DASH] = ACTIONS(21),
- [anon_sym_SLASH] = ACTIONS(83),
- [anon_sym_LT] = ACTIONS(85),
- [anon_sym_TILDE] = ACTIONS(33),
- [anon_sym_void] = ACTIONS(21),
- [anon_sym_delete] = ACTIONS(21),
- [anon_sym_PLUS_PLUS] = ACTIONS(87),
- [anon_sym_DASH_DASH] = ACTIONS(87),
- [sym_comment] = ACTIONS(5),
- [anon_sym_BQUOTE] = ACTIONS(89),
- [sym_number] = ACTIONS(91),
- [sym_private_property_identifier] = ACTIONS(93),
- [sym_this] = ACTIONS(95),
- [sym_super] = ACTIONS(95),
- [sym_true] = ACTIONS(95),
- [sym_false] = ACTIONS(95),
- [sym_null] = ACTIONS(95),
- [sym_undefined] = ACTIONS(97),
- [anon_sym_AT] = ACTIONS(99),
- [anon_sym_static] = ACTIONS(1372),
- [anon_sym_readonly] = ACTIONS(1372),
- [anon_sym_get] = ACTIONS(1372),
- [anon_sym_set] = ACTIONS(1372),
- [anon_sym_declare] = ACTIONS(1372),
- [anon_sym_public] = ACTIONS(1372),
- [anon_sym_private] = ACTIONS(1372),
- [anon_sym_protected] = ACTIONS(1372),
- [anon_sym_override] = ACTIONS(1372),
- [anon_sym_module] = ACTIONS(1372),
- [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_object] = ACTIONS(1372),
- [sym_html_comment] = ACTIONS(5),
- },
- [476] = {
- [sym_import] = STATE(3334),
- [sym_parenthesized_expression] = STATE(1336),
- [sym_expression] = STATE(2056),
- [sym_primary_expression] = STATE(1468),
- [sym_yield_expression] = STATE(1634),
- [sym_object] = STATE(1650),
- [sym_object_pattern] = STATE(5745),
- [sym_array] = STATE(1650),
- [sym_array_pattern] = STATE(5745),
- [sym_glimmer_template] = STATE(1634),
- [sym_jsx_element] = STATE(1634),
- [sym_jsx_opening_element] = STATE(3026),
- [sym_jsx_self_closing_element] = STATE(1634),
- [sym_class] = STATE(1650),
- [sym_function_expression] = STATE(1650),
- [sym_generator_function] = STATE(1650),
- [sym_arrow_function] = STATE(1650),
- [sym__call_signature] = STATE(5553),
- [sym_call_expression] = STATE(1650),
- [sym_new_expression] = STATE(1634),
- [sym_await_expression] = STATE(1634),
- [sym_member_expression] = STATE(1336),
- [sym_subscript_expression] = STATE(1336),
- [sym_assignment_expression] = STATE(1634),
- [sym__augmented_assignment_lhs] = STATE(2884),
- [sym_augmented_assignment_expression] = STATE(1634),
- [sym__destructuring_pattern] = STATE(5745),
- [sym_ternary_expression] = STATE(1634),
- [sym_binary_expression] = STATE(1634),
- [sym_unary_expression] = STATE(1634),
- [sym_update_expression] = STATE(1634),
- [sym_string] = STATE(1650),
- [sym_template_string] = STATE(1650),
- [sym_regex] = STATE(1650),
- [sym_meta_property] = STATE(1650),
- [sym_decorator] = STATE(1244),
- [sym_formal_parameters] = STATE(3742),
- [sym_non_null_expression] = STATE(1336),
- [sym_as_expression] = STATE(1634),
- [sym_satisfies_expression] = STATE(1634),
- [sym_instantiation_expression] = STATE(1634),
- [sym_internal_module] = STATE(1634),
- [sym_type_parameters] = STATE(5349),
- [aux_sym_export_statement_repeat1] = STATE(4458),
- [sym_identifier] = ACTIONS(1470),
- [anon_sym_export] = ACTIONS(1250),
- [anon_sym_type] = ACTIONS(1250),
- [anon_sym_namespace] = ACTIONS(1252),
- [anon_sym_LBRACE] = ACTIONS(813),
- [anon_sym_typeof] = ACTIONS(1272),
- [anon_sym_import] = ACTIONS(133),
- [anon_sym_let] = ACTIONS(1250),
- [anon_sym_BANG] = ACTIONS(1256),
- [anon_sym_LPAREN] = ACTIONS(815),
- [anon_sym_await] = ACTIONS(1258),
- [anon_sym_yield] = ACTIONS(1260),
- [anon_sym_LBRACK] = ACTIONS(817),
- [sym_glimmer_opening_tag] = ACTIONS(148),
- [anon_sym_DQUOTE] = ACTIONS(150),
- [anon_sym_SQUOTE] = ACTIONS(152),
- [anon_sym_class] = ACTIONS(154),
- [anon_sym_async] = ACTIONS(1262),
- [anon_sym_function] = ACTIONS(158),
- [anon_sym_new] = ACTIONS(1474),
- [anon_sym_using] = ACTIONS(1266),
- [anon_sym_PLUS] = ACTIONS(1272),
- [anon_sym_DASH] = ACTIONS(1272),
- [anon_sym_SLASH] = ACTIONS(646),
- [anon_sym_LT] = ACTIONS(181),
- [anon_sym_TILDE] = ACTIONS(1256),
- [anon_sym_void] = ACTIONS(1272),
- [anon_sym_delete] = ACTIONS(1272),
- [anon_sym_PLUS_PLUS] = ACTIONS(1274),
- [anon_sym_DASH_DASH] = ACTIONS(1274),
- [sym_comment] = ACTIONS(5),
- [anon_sym_BQUOTE] = ACTIONS(825),
- [sym_number] = ACTIONS(787),
- [sym_private_property_identifier] = ACTIONS(1276),
- [sym_this] = ACTIONS(200),
- [sym_super] = ACTIONS(200),
- [sym_true] = ACTIONS(200),
- [sym_false] = ACTIONS(200),
- [sym_null] = ACTIONS(200),
- [sym_undefined] = ACTIONS(1476),
- [anon_sym_AT] = ACTIONS(99),
- [anon_sym_static] = ACTIONS(1250),
- [anon_sym_readonly] = ACTIONS(1250),
- [anon_sym_get] = ACTIONS(1250),
- [anon_sym_set] = ACTIONS(1250),
- [anon_sym_declare] = ACTIONS(1250),
- [anon_sym_public] = ACTIONS(1250),
- [anon_sym_private] = ACTIONS(1250),
- [anon_sym_protected] = ACTIONS(1250),
- [anon_sym_override] = ACTIONS(1250),
- [anon_sym_module] = ACTIONS(1250),
- [anon_sym_any] = ACTIONS(1250),
- [anon_sym_number] = ACTIONS(1250),
- [anon_sym_boolean] = ACTIONS(1250),
- [anon_sym_string] = ACTIONS(1250),
- [anon_sym_symbol] = ACTIONS(1250),
- [anon_sym_object] = ACTIONS(1250),
- [sym_html_comment] = ACTIONS(5),
- },
- [477] = {
- [sym_import] = STATE(3334),
- [sym_parenthesized_expression] = STATE(1336),
- [sym_expression] = STATE(2057),
- [sym_primary_expression] = STATE(1468),
- [sym_yield_expression] = STATE(1634),
- [sym_object] = STATE(1650),
- [sym_object_pattern] = STATE(5745),
- [sym_array] = STATE(1650),
- [sym_array_pattern] = STATE(5745),
- [sym_glimmer_template] = STATE(1634),
- [sym_jsx_element] = STATE(1634),
- [sym_jsx_opening_element] = STATE(3026),
- [sym_jsx_self_closing_element] = STATE(1634),
- [sym_class] = STATE(1650),
- [sym_function_expression] = STATE(1650),
- [sym_generator_function] = STATE(1650),
- [sym_arrow_function] = STATE(1650),
- [sym__call_signature] = STATE(5553),
- [sym_call_expression] = STATE(1650),
- [sym_new_expression] = STATE(1634),
- [sym_await_expression] = STATE(1634),
- [sym_member_expression] = STATE(1336),
- [sym_subscript_expression] = STATE(1336),
- [sym_assignment_expression] = STATE(1634),
- [sym__augmented_assignment_lhs] = STATE(2884),
- [sym_augmented_assignment_expression] = STATE(1634),
- [sym__destructuring_pattern] = STATE(5745),
- [sym_ternary_expression] = STATE(1634),
- [sym_binary_expression] = STATE(1634),
- [sym_unary_expression] = STATE(1634),
- [sym_update_expression] = STATE(1634),
- [sym_string] = STATE(1650),
- [sym_template_string] = STATE(1650),
- [sym_regex] = STATE(1650),
- [sym_meta_property] = STATE(1650),
- [sym_decorator] = STATE(1244),
- [sym_formal_parameters] = STATE(3742),
- [sym_non_null_expression] = STATE(1336),
- [sym_as_expression] = STATE(1634),
- [sym_satisfies_expression] = STATE(1634),
- [sym_instantiation_expression] = STATE(1634),
- [sym_internal_module] = STATE(1634),
- [sym_type_parameters] = STATE(5349),
- [aux_sym_export_statement_repeat1] = STATE(4458),
- [sym_identifier] = ACTIONS(1470),
- [anon_sym_export] = ACTIONS(1250),
- [anon_sym_type] = ACTIONS(1250),
- [anon_sym_namespace] = ACTIONS(1252),
- [anon_sym_LBRACE] = ACTIONS(813),
- [anon_sym_typeof] = ACTIONS(1272),
- [anon_sym_import] = ACTIONS(133),
- [anon_sym_let] = ACTIONS(1250),
- [anon_sym_BANG] = ACTIONS(1256),
- [anon_sym_LPAREN] = ACTIONS(815),
- [anon_sym_await] = ACTIONS(1258),
- [anon_sym_yield] = ACTIONS(1260),
- [anon_sym_LBRACK] = ACTIONS(817),
- [sym_glimmer_opening_tag] = ACTIONS(148),
- [anon_sym_DQUOTE] = ACTIONS(150),
- [anon_sym_SQUOTE] = ACTIONS(152),
- [anon_sym_class] = ACTIONS(154),
- [anon_sym_async] = ACTIONS(1262),
- [anon_sym_function] = ACTIONS(158),
- [anon_sym_new] = ACTIONS(1474),
- [anon_sym_using] = ACTIONS(1266),
- [anon_sym_PLUS] = ACTIONS(1272),
- [anon_sym_DASH] = ACTIONS(1272),
- [anon_sym_SLASH] = ACTIONS(646),
- [anon_sym_LT] = ACTIONS(181),
- [anon_sym_TILDE] = ACTIONS(1256),
- [anon_sym_void] = ACTIONS(1272),
- [anon_sym_delete] = ACTIONS(1272),
- [anon_sym_PLUS_PLUS] = ACTIONS(1274),
- [anon_sym_DASH_DASH] = ACTIONS(1274),
- [sym_comment] = ACTIONS(5),
- [anon_sym_BQUOTE] = ACTIONS(825),
- [sym_number] = ACTIONS(787),
- [sym_private_property_identifier] = ACTIONS(1276),
- [sym_this] = ACTIONS(200),
- [sym_super] = ACTIONS(200),
- [sym_true] = ACTIONS(200),
- [sym_false] = ACTIONS(200),
- [sym_null] = ACTIONS(200),
- [sym_undefined] = ACTIONS(1476),
- [anon_sym_AT] = ACTIONS(99),
- [anon_sym_static] = ACTIONS(1250),
- [anon_sym_readonly] = ACTIONS(1250),
- [anon_sym_get] = ACTIONS(1250),
- [anon_sym_set] = ACTIONS(1250),
- [anon_sym_declare] = ACTIONS(1250),
- [anon_sym_public] = ACTIONS(1250),
- [anon_sym_private] = ACTIONS(1250),
- [anon_sym_protected] = ACTIONS(1250),
- [anon_sym_override] = ACTIONS(1250),
- [anon_sym_module] = ACTIONS(1250),
- [anon_sym_any] = ACTIONS(1250),
- [anon_sym_number] = ACTIONS(1250),
- [anon_sym_boolean] = ACTIONS(1250),
- [anon_sym_string] = ACTIONS(1250),
- [anon_sym_symbol] = ACTIONS(1250),
- [anon_sym_object] = ACTIONS(1250),
- [sym_html_comment] = ACTIONS(5),
- },
- [478] = {
- [sym_import] = STATE(3334),
- [sym_parenthesized_expression] = STATE(1336),
- [sym_expression] = STATE(2058),
- [sym_primary_expression] = STATE(1468),
- [sym_yield_expression] = STATE(1634),
- [sym_object] = STATE(1650),
- [sym_object_pattern] = STATE(5745),
- [sym_array] = STATE(1650),
- [sym_array_pattern] = STATE(5745),
- [sym_glimmer_template] = STATE(1634),
- [sym_jsx_element] = STATE(1634),
- [sym_jsx_opening_element] = STATE(3026),
- [sym_jsx_self_closing_element] = STATE(1634),
- [sym_class] = STATE(1650),
- [sym_function_expression] = STATE(1650),
- [sym_generator_function] = STATE(1650),
- [sym_arrow_function] = STATE(1650),
- [sym__call_signature] = STATE(5553),
- [sym_call_expression] = STATE(1650),
- [sym_new_expression] = STATE(1634),
- [sym_await_expression] = STATE(1634),
- [sym_member_expression] = STATE(1336),
- [sym_subscript_expression] = STATE(1336),
- [sym_assignment_expression] = STATE(1634),
- [sym__augmented_assignment_lhs] = STATE(2884),
- [sym_augmented_assignment_expression] = STATE(1634),
- [sym__destructuring_pattern] = STATE(5745),
- [sym_ternary_expression] = STATE(1634),
- [sym_binary_expression] = STATE(1634),
- [sym_unary_expression] = STATE(1634),
- [sym_update_expression] = STATE(1634),
- [sym_string] = STATE(1650),
- [sym_template_string] = STATE(1650),
- [sym_regex] = STATE(1650),
- [sym_meta_property] = STATE(1650),
- [sym_decorator] = STATE(1244),
- [sym_formal_parameters] = STATE(3742),
- [sym_non_null_expression] = STATE(1336),
- [sym_as_expression] = STATE(1634),
- [sym_satisfies_expression] = STATE(1634),
- [sym_instantiation_expression] = STATE(1634),
- [sym_internal_module] = STATE(1634),
- [sym_type_parameters] = STATE(5349),
- [aux_sym_export_statement_repeat1] = STATE(4458),
- [sym_identifier] = ACTIONS(1470),
- [anon_sym_export] = ACTIONS(1250),
- [anon_sym_type] = ACTIONS(1250),
- [anon_sym_namespace] = ACTIONS(1252),
- [anon_sym_LBRACE] = ACTIONS(813),
- [anon_sym_typeof] = ACTIONS(1272),
- [anon_sym_import] = ACTIONS(133),
- [anon_sym_let] = ACTIONS(1250),
- [anon_sym_BANG] = ACTIONS(1256),
- [anon_sym_LPAREN] = ACTIONS(815),
- [anon_sym_await] = ACTIONS(1258),
- [anon_sym_yield] = ACTIONS(1260),
- [anon_sym_LBRACK] = ACTIONS(817),
- [sym_glimmer_opening_tag] = ACTIONS(148),
- [anon_sym_DQUOTE] = ACTIONS(150),
- [anon_sym_SQUOTE] = ACTIONS(152),
- [anon_sym_class] = ACTIONS(154),
- [anon_sym_async] = ACTIONS(1262),
- [anon_sym_function] = ACTIONS(158),
- [anon_sym_new] = ACTIONS(1474),
- [anon_sym_using] = ACTIONS(1266),
- [anon_sym_PLUS] = ACTIONS(1272),
- [anon_sym_DASH] = ACTIONS(1272),
- [anon_sym_SLASH] = ACTIONS(646),
- [anon_sym_LT] = ACTIONS(181),
- [anon_sym_TILDE] = ACTIONS(1256),
- [anon_sym_void] = ACTIONS(1272),
- [anon_sym_delete] = ACTIONS(1272),
- [anon_sym_PLUS_PLUS] = ACTIONS(1274),
- [anon_sym_DASH_DASH] = ACTIONS(1274),
- [sym_comment] = ACTIONS(5),
- [anon_sym_BQUOTE] = ACTIONS(825),
- [sym_number] = ACTIONS(787),
- [sym_private_property_identifier] = ACTIONS(1276),
- [sym_this] = ACTIONS(200),
- [sym_super] = ACTIONS(200),
- [sym_true] = ACTIONS(200),
- [sym_false] = ACTIONS(200),
- [sym_null] = ACTIONS(200),
- [sym_undefined] = ACTIONS(1476),
- [anon_sym_AT] = ACTIONS(99),
- [anon_sym_static] = ACTIONS(1250),
- [anon_sym_readonly] = ACTIONS(1250),
- [anon_sym_get] = ACTIONS(1250),
- [anon_sym_set] = ACTIONS(1250),
- [anon_sym_declare] = ACTIONS(1250),
- [anon_sym_public] = ACTIONS(1250),
- [anon_sym_private] = ACTIONS(1250),
- [anon_sym_protected] = ACTIONS(1250),
- [anon_sym_override] = ACTIONS(1250),
- [anon_sym_module] = ACTIONS(1250),
- [anon_sym_any] = ACTIONS(1250),
- [anon_sym_number] = ACTIONS(1250),
- [anon_sym_boolean] = ACTIONS(1250),
- [anon_sym_string] = ACTIONS(1250),
- [anon_sym_symbol] = ACTIONS(1250),
- [anon_sym_object] = ACTIONS(1250),
- [sym_html_comment] = ACTIONS(5),
- },
- [479] = {
- [sym_import] = STATE(3334),
- [sym_parenthesized_expression] = STATE(1336),
- [sym_expression] = STATE(2059),
- [sym_primary_expression] = STATE(1468),
- [sym_yield_expression] = STATE(1634),
- [sym_object] = STATE(1650),
- [sym_object_pattern] = STATE(5745),
- [sym_array] = STATE(1650),
- [sym_array_pattern] = STATE(5745),
- [sym_glimmer_template] = STATE(1634),
- [sym_jsx_element] = STATE(1634),
- [sym_jsx_opening_element] = STATE(3026),
- [sym_jsx_self_closing_element] = STATE(1634),
- [sym_class] = STATE(1650),
- [sym_function_expression] = STATE(1650),
- [sym_generator_function] = STATE(1650),
- [sym_arrow_function] = STATE(1650),
- [sym__call_signature] = STATE(5553),
- [sym_call_expression] = STATE(1650),
- [sym_new_expression] = STATE(1634),
- [sym_await_expression] = STATE(1634),
- [sym_member_expression] = STATE(1336),
- [sym_subscript_expression] = STATE(1336),
- [sym_assignment_expression] = STATE(1634),
- [sym__augmented_assignment_lhs] = STATE(2884),
- [sym_augmented_assignment_expression] = STATE(1634),
- [sym__destructuring_pattern] = STATE(5745),
- [sym_ternary_expression] = STATE(1634),
- [sym_binary_expression] = STATE(1634),
- [sym_unary_expression] = STATE(1634),
- [sym_update_expression] = STATE(1634),
- [sym_string] = STATE(1650),
- [sym_template_string] = STATE(1650),
- [sym_regex] = STATE(1650),
- [sym_meta_property] = STATE(1650),
- [sym_decorator] = STATE(1244),
- [sym_formal_parameters] = STATE(3742),
- [sym_non_null_expression] = STATE(1336),
- [sym_as_expression] = STATE(1634),
- [sym_satisfies_expression] = STATE(1634),
- [sym_instantiation_expression] = STATE(1634),
- [sym_internal_module] = STATE(1634),
- [sym_type_parameters] = STATE(5349),
- [aux_sym_export_statement_repeat1] = STATE(4458),
- [sym_identifier] = ACTIONS(1470),
- [anon_sym_export] = ACTIONS(1250),
- [anon_sym_type] = ACTIONS(1250),
- [anon_sym_namespace] = ACTIONS(1252),
- [anon_sym_LBRACE] = ACTIONS(813),
- [anon_sym_typeof] = ACTIONS(1272),
- [anon_sym_import] = ACTIONS(133),
- [anon_sym_let] = ACTIONS(1250),
- [anon_sym_BANG] = ACTIONS(1256),
- [anon_sym_LPAREN] = ACTIONS(815),
- [anon_sym_await] = ACTIONS(1258),
- [anon_sym_yield] = ACTIONS(1260),
- [anon_sym_LBRACK] = ACTIONS(817),
- [sym_glimmer_opening_tag] = ACTIONS(148),
- [anon_sym_DQUOTE] = ACTIONS(150),
- [anon_sym_SQUOTE] = ACTIONS(152),
- [anon_sym_class] = ACTIONS(154),
- [anon_sym_async] = ACTIONS(1262),
- [anon_sym_function] = ACTIONS(158),
- [anon_sym_new] = ACTIONS(1474),
- [anon_sym_using] = ACTIONS(1266),
- [anon_sym_PLUS] = ACTIONS(1272),
- [anon_sym_DASH] = ACTIONS(1272),
- [anon_sym_SLASH] = ACTIONS(646),
- [anon_sym_LT] = ACTIONS(181),
- [anon_sym_TILDE] = ACTIONS(1256),
- [anon_sym_void] = ACTIONS(1272),
- [anon_sym_delete] = ACTIONS(1272),
- [anon_sym_PLUS_PLUS] = ACTIONS(1274),
- [anon_sym_DASH_DASH] = ACTIONS(1274),
- [sym_comment] = ACTIONS(5),
- [anon_sym_BQUOTE] = ACTIONS(825),
- [sym_number] = ACTIONS(787),
- [sym_private_property_identifier] = ACTIONS(1276),
- [sym_this] = ACTIONS(200),
- [sym_super] = ACTIONS(200),
- [sym_true] = ACTIONS(200),
- [sym_false] = ACTIONS(200),
- [sym_null] = ACTIONS(200),
- [sym_undefined] = ACTIONS(1476),
- [anon_sym_AT] = ACTIONS(99),
- [anon_sym_static] = ACTIONS(1250),
- [anon_sym_readonly] = ACTIONS(1250),
- [anon_sym_get] = ACTIONS(1250),
- [anon_sym_set] = ACTIONS(1250),
- [anon_sym_declare] = ACTIONS(1250),
- [anon_sym_public] = ACTIONS(1250),
- [anon_sym_private] = ACTIONS(1250),
- [anon_sym_protected] = ACTIONS(1250),
- [anon_sym_override] = ACTIONS(1250),
- [anon_sym_module] = ACTIONS(1250),
- [anon_sym_any] = ACTIONS(1250),
- [anon_sym_number] = ACTIONS(1250),
- [anon_sym_boolean] = ACTIONS(1250),
- [anon_sym_string] = ACTIONS(1250),
- [anon_sym_symbol] = ACTIONS(1250),
- [anon_sym_object] = ACTIONS(1250),
- [sym_html_comment] = ACTIONS(5),
- },
- [480] = {
- [sym_import] = STATE(3334),
- [sym_parenthesized_expression] = STATE(1336),
- [sym_expression] = STATE(2060),
- [sym_primary_expression] = STATE(1468),
- [sym_yield_expression] = STATE(1634),
- [sym_object] = STATE(1650),
- [sym_object_pattern] = STATE(5745),
- [sym_array] = STATE(1650),
- [sym_array_pattern] = STATE(5745),
- [sym_glimmer_template] = STATE(1634),
- [sym_jsx_element] = STATE(1634),
- [sym_jsx_opening_element] = STATE(3026),
- [sym_jsx_self_closing_element] = STATE(1634),
- [sym_class] = STATE(1650),
- [sym_function_expression] = STATE(1650),
- [sym_generator_function] = STATE(1650),
- [sym_arrow_function] = STATE(1650),
- [sym__call_signature] = STATE(5553),
- [sym_call_expression] = STATE(1650),
- [sym_new_expression] = STATE(1634),
- [sym_await_expression] = STATE(1634),
- [sym_member_expression] = STATE(1336),
- [sym_subscript_expression] = STATE(1336),
- [sym_assignment_expression] = STATE(1634),
- [sym__augmented_assignment_lhs] = STATE(2884),
- [sym_augmented_assignment_expression] = STATE(1634),
- [sym__destructuring_pattern] = STATE(5745),
- [sym_ternary_expression] = STATE(1634),
- [sym_binary_expression] = STATE(1634),
- [sym_unary_expression] = STATE(1634),
- [sym_update_expression] = STATE(1634),
- [sym_string] = STATE(1650),
- [sym_template_string] = STATE(1650),
- [sym_regex] = STATE(1650),
- [sym_meta_property] = STATE(1650),
- [sym_decorator] = STATE(1244),
- [sym_formal_parameters] = STATE(3742),
- [sym_non_null_expression] = STATE(1336),
- [sym_as_expression] = STATE(1634),
- [sym_satisfies_expression] = STATE(1634),
- [sym_instantiation_expression] = STATE(1634),
- [sym_internal_module] = STATE(1634),
- [sym_type_parameters] = STATE(5349),
- [aux_sym_export_statement_repeat1] = STATE(4458),
- [sym_identifier] = ACTIONS(1470),
- [anon_sym_export] = ACTIONS(1250),
- [anon_sym_type] = ACTIONS(1250),
- [anon_sym_namespace] = ACTIONS(1252),
- [anon_sym_LBRACE] = ACTIONS(813),
- [anon_sym_typeof] = ACTIONS(1272),
- [anon_sym_import] = ACTIONS(133),
- [anon_sym_let] = ACTIONS(1250),
- [anon_sym_BANG] = ACTIONS(1256),
- [anon_sym_LPAREN] = ACTIONS(815),
- [anon_sym_await] = ACTIONS(1258),
- [anon_sym_yield] = ACTIONS(1260),
- [anon_sym_LBRACK] = ACTIONS(817),
- [sym_glimmer_opening_tag] = ACTIONS(148),
- [anon_sym_DQUOTE] = ACTIONS(150),
- [anon_sym_SQUOTE] = ACTIONS(152),
- [anon_sym_class] = ACTIONS(154),
- [anon_sym_async] = ACTIONS(1262),
- [anon_sym_function] = ACTIONS(158),
- [anon_sym_new] = ACTIONS(1474),
- [anon_sym_using] = ACTIONS(1266),
- [anon_sym_PLUS] = ACTIONS(1272),
- [anon_sym_DASH] = ACTIONS(1272),
- [anon_sym_SLASH] = ACTIONS(646),
- [anon_sym_LT] = ACTIONS(181),
- [anon_sym_TILDE] = ACTIONS(1256),
- [anon_sym_void] = ACTIONS(1272),
- [anon_sym_delete] = ACTIONS(1272),
- [anon_sym_PLUS_PLUS] = ACTIONS(1274),
- [anon_sym_DASH_DASH] = ACTIONS(1274),
- [sym_comment] = ACTIONS(5),
- [anon_sym_BQUOTE] = ACTIONS(825),
- [sym_number] = ACTIONS(787),
- [sym_private_property_identifier] = ACTIONS(1276),
- [sym_this] = ACTIONS(200),
- [sym_super] = ACTIONS(200),
- [sym_true] = ACTIONS(200),
- [sym_false] = ACTIONS(200),
- [sym_null] = ACTIONS(200),
- [sym_undefined] = ACTIONS(1476),
- [anon_sym_AT] = ACTIONS(99),
- [anon_sym_static] = ACTIONS(1250),
- [anon_sym_readonly] = ACTIONS(1250),
- [anon_sym_get] = ACTIONS(1250),
- [anon_sym_set] = ACTIONS(1250),
- [anon_sym_declare] = ACTIONS(1250),
- [anon_sym_public] = ACTIONS(1250),
- [anon_sym_private] = ACTIONS(1250),
- [anon_sym_protected] = ACTIONS(1250),
- [anon_sym_override] = ACTIONS(1250),
- [anon_sym_module] = ACTIONS(1250),
- [anon_sym_any] = ACTIONS(1250),
- [anon_sym_number] = ACTIONS(1250),
- [anon_sym_boolean] = ACTIONS(1250),
- [anon_sym_string] = ACTIONS(1250),
- [anon_sym_symbol] = ACTIONS(1250),
- [anon_sym_object] = ACTIONS(1250),
- [sym_html_comment] = ACTIONS(5),
- },
- [481] = {
- [sym_import] = STATE(3334),
- [sym_parenthesized_expression] = STATE(1336),
- [sym_expression] = STATE(2061),
- [sym_primary_expression] = STATE(1468),
- [sym_yield_expression] = STATE(1634),
- [sym_object] = STATE(1650),
- [sym_object_pattern] = STATE(5745),
- [sym_array] = STATE(1650),
- [sym_array_pattern] = STATE(5745),
- [sym_glimmer_template] = STATE(1634),
- [sym_jsx_element] = STATE(1634),
- [sym_jsx_opening_element] = STATE(3026),
- [sym_jsx_self_closing_element] = STATE(1634),
- [sym_class] = STATE(1650),
- [sym_function_expression] = STATE(1650),
- [sym_generator_function] = STATE(1650),
- [sym_arrow_function] = STATE(1650),
- [sym__call_signature] = STATE(5553),
- [sym_call_expression] = STATE(1650),
- [sym_new_expression] = STATE(1634),
- [sym_await_expression] = STATE(1634),
- [sym_member_expression] = STATE(1336),
- [sym_subscript_expression] = STATE(1336),
- [sym_assignment_expression] = STATE(1634),
- [sym__augmented_assignment_lhs] = STATE(2884),
- [sym_augmented_assignment_expression] = STATE(1634),
- [sym__destructuring_pattern] = STATE(5745),
- [sym_ternary_expression] = STATE(1634),
- [sym_binary_expression] = STATE(1634),
- [sym_unary_expression] = STATE(1634),
- [sym_update_expression] = STATE(1634),
- [sym_string] = STATE(1650),
- [sym_template_string] = STATE(1650),
- [sym_regex] = STATE(1650),
- [sym_meta_property] = STATE(1650),
- [sym_decorator] = STATE(1244),
- [sym_formal_parameters] = STATE(3742),
- [sym_non_null_expression] = STATE(1336),
- [sym_as_expression] = STATE(1634),
- [sym_satisfies_expression] = STATE(1634),
- [sym_instantiation_expression] = STATE(1634),
- [sym_internal_module] = STATE(1634),
- [sym_type_parameters] = STATE(5349),
- [aux_sym_export_statement_repeat1] = STATE(4458),
- [sym_identifier] = ACTIONS(1470),
- [anon_sym_export] = ACTIONS(1250),
- [anon_sym_type] = ACTIONS(1250),
- [anon_sym_namespace] = ACTIONS(1252),
- [anon_sym_LBRACE] = ACTIONS(813),
- [anon_sym_typeof] = ACTIONS(1272),
- [anon_sym_import] = ACTIONS(133),
- [anon_sym_let] = ACTIONS(1250),
- [anon_sym_BANG] = ACTIONS(1256),
- [anon_sym_LPAREN] = ACTIONS(815),
- [anon_sym_await] = ACTIONS(1258),
- [anon_sym_yield] = ACTIONS(1260),
- [anon_sym_LBRACK] = ACTIONS(817),
- [sym_glimmer_opening_tag] = ACTIONS(148),
- [anon_sym_DQUOTE] = ACTIONS(150),
- [anon_sym_SQUOTE] = ACTIONS(152),
- [anon_sym_class] = ACTIONS(154),
- [anon_sym_async] = ACTIONS(1262),
- [anon_sym_function] = ACTIONS(158),
- [anon_sym_new] = ACTIONS(1474),
- [anon_sym_using] = ACTIONS(1266),
- [anon_sym_PLUS] = ACTIONS(1272),
- [anon_sym_DASH] = ACTIONS(1272),
- [anon_sym_SLASH] = ACTIONS(646),
- [anon_sym_LT] = ACTIONS(181),
- [anon_sym_TILDE] = ACTIONS(1256),
- [anon_sym_void] = ACTIONS(1272),
- [anon_sym_delete] = ACTIONS(1272),
- [anon_sym_PLUS_PLUS] = ACTIONS(1274),
- [anon_sym_DASH_DASH] = ACTIONS(1274),
- [sym_comment] = ACTIONS(5),
- [anon_sym_BQUOTE] = ACTIONS(825),
- [sym_number] = ACTIONS(787),
- [sym_private_property_identifier] = ACTIONS(1276),
- [sym_this] = ACTIONS(200),
- [sym_super] = ACTIONS(200),
- [sym_true] = ACTIONS(200),
- [sym_false] = ACTIONS(200),
- [sym_null] = ACTIONS(200),
- [sym_undefined] = ACTIONS(1476),
- [anon_sym_AT] = ACTIONS(99),
- [anon_sym_static] = ACTIONS(1250),
- [anon_sym_readonly] = ACTIONS(1250),
- [anon_sym_get] = ACTIONS(1250),
- [anon_sym_set] = ACTIONS(1250),
- [anon_sym_declare] = ACTIONS(1250),
- [anon_sym_public] = ACTIONS(1250),
- [anon_sym_private] = ACTIONS(1250),
- [anon_sym_protected] = ACTIONS(1250),
- [anon_sym_override] = ACTIONS(1250),
- [anon_sym_module] = ACTIONS(1250),
- [anon_sym_any] = ACTIONS(1250),
- [anon_sym_number] = ACTIONS(1250),
- [anon_sym_boolean] = ACTIONS(1250),
- [anon_sym_string] = ACTIONS(1250),
- [anon_sym_symbol] = ACTIONS(1250),
- [anon_sym_object] = ACTIONS(1250),
- [sym_html_comment] = ACTIONS(5),
- },
- [482] = {
- [sym_import] = STATE(3334),
- [sym_parenthesized_expression] = STATE(1336),
- [sym_expression] = STATE(2062),
- [sym_primary_expression] = STATE(1468),
- [sym_yield_expression] = STATE(1634),
- [sym_object] = STATE(1650),
- [sym_object_pattern] = STATE(5745),
- [sym_array] = STATE(1650),
- [sym_array_pattern] = STATE(5745),
- [sym_glimmer_template] = STATE(1634),
- [sym_jsx_element] = STATE(1634),
- [sym_jsx_opening_element] = STATE(3026),
- [sym_jsx_self_closing_element] = STATE(1634),
- [sym_class] = STATE(1650),
- [sym_function_expression] = STATE(1650),
- [sym_generator_function] = STATE(1650),
- [sym_arrow_function] = STATE(1650),
- [sym__call_signature] = STATE(5553),
- [sym_call_expression] = STATE(1650),
- [sym_new_expression] = STATE(1634),
- [sym_await_expression] = STATE(1634),
- [sym_member_expression] = STATE(1336),
- [sym_subscript_expression] = STATE(1336),
- [sym_assignment_expression] = STATE(1634),
- [sym__augmented_assignment_lhs] = STATE(2884),
- [sym_augmented_assignment_expression] = STATE(1634),
- [sym__destructuring_pattern] = STATE(5745),
- [sym_ternary_expression] = STATE(1634),
- [sym_binary_expression] = STATE(1634),
- [sym_unary_expression] = STATE(1634),
- [sym_update_expression] = STATE(1634),
- [sym_string] = STATE(1650),
- [sym_template_string] = STATE(1650),
- [sym_regex] = STATE(1650),
- [sym_meta_property] = STATE(1650),
- [sym_decorator] = STATE(1244),
- [sym_formal_parameters] = STATE(3742),
- [sym_non_null_expression] = STATE(1336),
- [sym_as_expression] = STATE(1634),
- [sym_satisfies_expression] = STATE(1634),
- [sym_instantiation_expression] = STATE(1634),
- [sym_internal_module] = STATE(1634),
- [sym_type_parameters] = STATE(5349),
- [aux_sym_export_statement_repeat1] = STATE(4458),
- [sym_identifier] = ACTIONS(1470),
- [anon_sym_export] = ACTIONS(1250),
- [anon_sym_type] = ACTIONS(1250),
- [anon_sym_namespace] = ACTIONS(1252),
- [anon_sym_LBRACE] = ACTIONS(813),
- [anon_sym_typeof] = ACTIONS(1272),
- [anon_sym_import] = ACTIONS(133),
- [anon_sym_let] = ACTIONS(1250),
- [anon_sym_BANG] = ACTIONS(1256),
- [anon_sym_LPAREN] = ACTIONS(815),
- [anon_sym_await] = ACTIONS(1258),
- [anon_sym_yield] = ACTIONS(1260),
- [anon_sym_LBRACK] = ACTIONS(817),
- [sym_glimmer_opening_tag] = ACTIONS(148),
- [anon_sym_DQUOTE] = ACTIONS(150),
- [anon_sym_SQUOTE] = ACTIONS(152),
- [anon_sym_class] = ACTIONS(154),
- [anon_sym_async] = ACTIONS(1262),
- [anon_sym_function] = ACTIONS(158),
- [anon_sym_new] = ACTIONS(1474),
- [anon_sym_using] = ACTIONS(1266),
- [anon_sym_PLUS] = ACTIONS(1272),
- [anon_sym_DASH] = ACTIONS(1272),
- [anon_sym_SLASH] = ACTIONS(646),
- [anon_sym_LT] = ACTIONS(181),
- [anon_sym_TILDE] = ACTIONS(1256),
- [anon_sym_void] = ACTIONS(1272),
- [anon_sym_delete] = ACTIONS(1272),
- [anon_sym_PLUS_PLUS] = ACTIONS(1274),
- [anon_sym_DASH_DASH] = ACTIONS(1274),
- [sym_comment] = ACTIONS(5),
- [anon_sym_BQUOTE] = ACTIONS(825),
- [sym_number] = ACTIONS(787),
- [sym_private_property_identifier] = ACTIONS(1276),
- [sym_this] = ACTIONS(200),
- [sym_super] = ACTIONS(200),
- [sym_true] = ACTIONS(200),
- [sym_false] = ACTIONS(200),
- [sym_null] = ACTIONS(200),
- [sym_undefined] = ACTIONS(1476),
- [anon_sym_AT] = ACTIONS(99),
- [anon_sym_static] = ACTIONS(1250),
- [anon_sym_readonly] = ACTIONS(1250),
- [anon_sym_get] = ACTIONS(1250),
- [anon_sym_set] = ACTIONS(1250),
- [anon_sym_declare] = ACTIONS(1250),
- [anon_sym_public] = ACTIONS(1250),
- [anon_sym_private] = ACTIONS(1250),
- [anon_sym_protected] = ACTIONS(1250),
- [anon_sym_override] = ACTIONS(1250),
- [anon_sym_module] = ACTIONS(1250),
- [anon_sym_any] = ACTIONS(1250),
- [anon_sym_number] = ACTIONS(1250),
- [anon_sym_boolean] = ACTIONS(1250),
- [anon_sym_string] = ACTIONS(1250),
- [anon_sym_symbol] = ACTIONS(1250),
- [anon_sym_object] = ACTIONS(1250),
- [sym_html_comment] = ACTIONS(5),
- },
- [483] = {
- [sym_import] = STATE(3334),
- [sym_parenthesized_expression] = STATE(1336),
- [sym_expression] = STATE(2063),
- [sym_primary_expression] = STATE(1468),
- [sym_yield_expression] = STATE(1634),
- [sym_object] = STATE(1650),
- [sym_object_pattern] = STATE(5745),
- [sym_array] = STATE(1650),
- [sym_array_pattern] = STATE(5745),
- [sym_glimmer_template] = STATE(1634),
- [sym_jsx_element] = STATE(1634),
- [sym_jsx_opening_element] = STATE(3026),
- [sym_jsx_self_closing_element] = STATE(1634),
- [sym_class] = STATE(1650),
- [sym_function_expression] = STATE(1650),
- [sym_generator_function] = STATE(1650),
- [sym_arrow_function] = STATE(1650),
- [sym__call_signature] = STATE(5553),
- [sym_call_expression] = STATE(1650),
- [sym_new_expression] = STATE(1634),
- [sym_await_expression] = STATE(1634),
- [sym_member_expression] = STATE(1336),
- [sym_subscript_expression] = STATE(1336),
- [sym_assignment_expression] = STATE(1634),
- [sym__augmented_assignment_lhs] = STATE(2884),
- [sym_augmented_assignment_expression] = STATE(1634),
- [sym__destructuring_pattern] = STATE(5745),
- [sym_ternary_expression] = STATE(1634),
- [sym_binary_expression] = STATE(1634),
- [sym_unary_expression] = STATE(1634),
- [sym_update_expression] = STATE(1634),
- [sym_string] = STATE(1650),
- [sym_template_string] = STATE(1650),
- [sym_regex] = STATE(1650),
- [sym_meta_property] = STATE(1650),
- [sym_decorator] = STATE(1244),
- [sym_formal_parameters] = STATE(3742),
- [sym_non_null_expression] = STATE(1336),
- [sym_as_expression] = STATE(1634),
- [sym_satisfies_expression] = STATE(1634),
- [sym_instantiation_expression] = STATE(1634),
- [sym_internal_module] = STATE(1634),
- [sym_type_parameters] = STATE(5349),
- [aux_sym_export_statement_repeat1] = STATE(4458),
- [sym_identifier] = ACTIONS(1470),
- [anon_sym_export] = ACTIONS(1250),
- [anon_sym_type] = ACTIONS(1250),
- [anon_sym_namespace] = ACTIONS(1252),
- [anon_sym_LBRACE] = ACTIONS(813),
- [anon_sym_typeof] = ACTIONS(1272),
- [anon_sym_import] = ACTIONS(133),
- [anon_sym_let] = ACTIONS(1250),
- [anon_sym_BANG] = ACTIONS(1256),
- [anon_sym_LPAREN] = ACTIONS(815),
- [anon_sym_await] = ACTIONS(1258),
- [anon_sym_yield] = ACTIONS(1260),
- [anon_sym_LBRACK] = ACTIONS(817),
- [sym_glimmer_opening_tag] = ACTIONS(148),
- [anon_sym_DQUOTE] = ACTIONS(150),
- [anon_sym_SQUOTE] = ACTIONS(152),
- [anon_sym_class] = ACTIONS(154),
- [anon_sym_async] = ACTIONS(1262),
- [anon_sym_function] = ACTIONS(158),
- [anon_sym_new] = ACTIONS(1474),
- [anon_sym_using] = ACTIONS(1266),
- [anon_sym_PLUS] = ACTIONS(1272),
- [anon_sym_DASH] = ACTIONS(1272),
- [anon_sym_SLASH] = ACTIONS(646),
- [anon_sym_LT] = ACTIONS(181),
- [anon_sym_TILDE] = ACTIONS(1256),
- [anon_sym_void] = ACTIONS(1272),
- [anon_sym_delete] = ACTIONS(1272),
- [anon_sym_PLUS_PLUS] = ACTIONS(1274),
- [anon_sym_DASH_DASH] = ACTIONS(1274),
- [sym_comment] = ACTIONS(5),
- [anon_sym_BQUOTE] = ACTIONS(825),
- [sym_number] = ACTIONS(787),
- [sym_private_property_identifier] = ACTIONS(1276),
- [sym_this] = ACTIONS(200),
- [sym_super] = ACTIONS(200),
- [sym_true] = ACTIONS(200),
- [sym_false] = ACTIONS(200),
- [sym_null] = ACTIONS(200),
- [sym_undefined] = ACTIONS(1476),
- [anon_sym_AT] = ACTIONS(99),
- [anon_sym_static] = ACTIONS(1250),
- [anon_sym_readonly] = ACTIONS(1250),
- [anon_sym_get] = ACTIONS(1250),
- [anon_sym_set] = ACTIONS(1250),
- [anon_sym_declare] = ACTIONS(1250),
- [anon_sym_public] = ACTIONS(1250),
- [anon_sym_private] = ACTIONS(1250),
- [anon_sym_protected] = ACTIONS(1250),
- [anon_sym_override] = ACTIONS(1250),
- [anon_sym_module] = ACTIONS(1250),
- [anon_sym_any] = ACTIONS(1250),
- [anon_sym_number] = ACTIONS(1250),
- [anon_sym_boolean] = ACTIONS(1250),
- [anon_sym_string] = ACTIONS(1250),
- [anon_sym_symbol] = ACTIONS(1250),
- [anon_sym_object] = ACTIONS(1250),
- [sym_html_comment] = ACTIONS(5),
- },
- [484] = {
- [sym_import] = STATE(3334),
- [sym_parenthesized_expression] = STATE(1336),
- [sym_expression] = STATE(2064),
- [sym_primary_expression] = STATE(1468),
- [sym_yield_expression] = STATE(1634),
- [sym_object] = STATE(1650),
- [sym_object_pattern] = STATE(5745),
- [sym_array] = STATE(1650),
- [sym_array_pattern] = STATE(5745),
- [sym_glimmer_template] = STATE(1634),
- [sym_jsx_element] = STATE(1634),
- [sym_jsx_opening_element] = STATE(3026),
- [sym_jsx_self_closing_element] = STATE(1634),
- [sym_class] = STATE(1650),
- [sym_function_expression] = STATE(1650),
- [sym_generator_function] = STATE(1650),
- [sym_arrow_function] = STATE(1650),
- [sym__call_signature] = STATE(5553),
- [sym_call_expression] = STATE(1650),
- [sym_new_expression] = STATE(1634),
- [sym_await_expression] = STATE(1634),
- [sym_member_expression] = STATE(1336),
- [sym_subscript_expression] = STATE(1336),
- [sym_assignment_expression] = STATE(1634),
- [sym__augmented_assignment_lhs] = STATE(2884),
- [sym_augmented_assignment_expression] = STATE(1634),
- [sym__destructuring_pattern] = STATE(5745),
- [sym_ternary_expression] = STATE(1634),
- [sym_binary_expression] = STATE(1634),
- [sym_unary_expression] = STATE(1634),
- [sym_update_expression] = STATE(1634),
- [sym_string] = STATE(1650),
- [sym_template_string] = STATE(1650),
- [sym_regex] = STATE(1650),
- [sym_meta_property] = STATE(1650),
- [sym_decorator] = STATE(1244),
- [sym_formal_parameters] = STATE(3742),
- [sym_non_null_expression] = STATE(1336),
- [sym_as_expression] = STATE(1634),
- [sym_satisfies_expression] = STATE(1634),
- [sym_instantiation_expression] = STATE(1634),
- [sym_internal_module] = STATE(1634),
- [sym_type_parameters] = STATE(5349),
- [aux_sym_export_statement_repeat1] = STATE(4458),
- [sym_identifier] = ACTIONS(1470),
- [anon_sym_export] = ACTIONS(1250),
- [anon_sym_type] = ACTIONS(1250),
- [anon_sym_namespace] = ACTIONS(1252),
- [anon_sym_LBRACE] = ACTIONS(813),
- [anon_sym_typeof] = ACTIONS(1272),
- [anon_sym_import] = ACTIONS(133),
- [anon_sym_let] = ACTIONS(1250),
- [anon_sym_BANG] = ACTIONS(1256),
- [anon_sym_LPAREN] = ACTIONS(815),
- [anon_sym_await] = ACTIONS(1258),
- [anon_sym_yield] = ACTIONS(1260),
- [anon_sym_LBRACK] = ACTIONS(817),
- [sym_glimmer_opening_tag] = ACTIONS(148),
- [anon_sym_DQUOTE] = ACTIONS(150),
- [anon_sym_SQUOTE] = ACTIONS(152),
- [anon_sym_class] = ACTIONS(154),
- [anon_sym_async] = ACTIONS(1262),
- [anon_sym_function] = ACTIONS(158),
- [anon_sym_new] = ACTIONS(1474),
- [anon_sym_using] = ACTIONS(1266),
- [anon_sym_PLUS] = ACTIONS(1272),
- [anon_sym_DASH] = ACTIONS(1272),
- [anon_sym_SLASH] = ACTIONS(646),
- [anon_sym_LT] = ACTIONS(181),
- [anon_sym_TILDE] = ACTIONS(1256),
- [anon_sym_void] = ACTIONS(1272),
- [anon_sym_delete] = ACTIONS(1272),
- [anon_sym_PLUS_PLUS] = ACTIONS(1274),
- [anon_sym_DASH_DASH] = ACTIONS(1274),
- [sym_comment] = ACTIONS(5),
- [anon_sym_BQUOTE] = ACTIONS(825),
- [sym_number] = ACTIONS(787),
- [sym_private_property_identifier] = ACTIONS(1276),
- [sym_this] = ACTIONS(200),
- [sym_super] = ACTIONS(200),
- [sym_true] = ACTIONS(200),
- [sym_false] = ACTIONS(200),
- [sym_null] = ACTIONS(200),
- [sym_undefined] = ACTIONS(1476),
- [anon_sym_AT] = ACTIONS(99),
- [anon_sym_static] = ACTIONS(1250),
- [anon_sym_readonly] = ACTIONS(1250),
- [anon_sym_get] = ACTIONS(1250),
- [anon_sym_set] = ACTIONS(1250),
- [anon_sym_declare] = ACTIONS(1250),
- [anon_sym_public] = ACTIONS(1250),
- [anon_sym_private] = ACTIONS(1250),
- [anon_sym_protected] = ACTIONS(1250),
- [anon_sym_override] = ACTIONS(1250),
- [anon_sym_module] = ACTIONS(1250),
- [anon_sym_any] = ACTIONS(1250),
- [anon_sym_number] = ACTIONS(1250),
- [anon_sym_boolean] = ACTIONS(1250),
- [anon_sym_string] = ACTIONS(1250),
- [anon_sym_symbol] = ACTIONS(1250),
- [anon_sym_object] = ACTIONS(1250),
- [sym_html_comment] = ACTIONS(5),
- },
- [485] = {
- [sym_import] = STATE(3334),
- [sym_parenthesized_expression] = STATE(1336),
- [sym_expression] = STATE(2065),
- [sym_primary_expression] = STATE(1468),
- [sym_yield_expression] = STATE(1634),
- [sym_object] = STATE(1650),
- [sym_object_pattern] = STATE(5745),
- [sym_array] = STATE(1650),
- [sym_array_pattern] = STATE(5745),
- [sym_glimmer_template] = STATE(1634),
- [sym_jsx_element] = STATE(1634),
- [sym_jsx_opening_element] = STATE(3026),
- [sym_jsx_self_closing_element] = STATE(1634),
- [sym_class] = STATE(1650),
- [sym_function_expression] = STATE(1650),
- [sym_generator_function] = STATE(1650),
- [sym_arrow_function] = STATE(1650),
- [sym__call_signature] = STATE(5553),
- [sym_call_expression] = STATE(1650),
- [sym_new_expression] = STATE(1634),
- [sym_await_expression] = STATE(1634),
- [sym_member_expression] = STATE(1336),
- [sym_subscript_expression] = STATE(1336),
- [sym_assignment_expression] = STATE(1634),
- [sym__augmented_assignment_lhs] = STATE(2884),
- [sym_augmented_assignment_expression] = STATE(1634),
- [sym__destructuring_pattern] = STATE(5745),
- [sym_ternary_expression] = STATE(1634),
- [sym_binary_expression] = STATE(1634),
- [sym_unary_expression] = STATE(1634),
- [sym_update_expression] = STATE(1634),
- [sym_string] = STATE(1650),
- [sym_template_string] = STATE(1650),
- [sym_regex] = STATE(1650),
- [sym_meta_property] = STATE(1650),
- [sym_decorator] = STATE(1244),
- [sym_formal_parameters] = STATE(3742),
- [sym_non_null_expression] = STATE(1336),
- [sym_as_expression] = STATE(1634),
- [sym_satisfies_expression] = STATE(1634),
- [sym_instantiation_expression] = STATE(1634),
- [sym_internal_module] = STATE(1634),
- [sym_type_parameters] = STATE(5349),
- [aux_sym_export_statement_repeat1] = STATE(4458),
- [sym_identifier] = ACTIONS(1470),
- [anon_sym_export] = ACTIONS(1250),
- [anon_sym_type] = ACTIONS(1250),
- [anon_sym_namespace] = ACTIONS(1252),
- [anon_sym_LBRACE] = ACTIONS(813),
- [anon_sym_typeof] = ACTIONS(1272),
- [anon_sym_import] = ACTIONS(133),
- [anon_sym_let] = ACTIONS(1250),
- [anon_sym_BANG] = ACTIONS(1256),
- [anon_sym_LPAREN] = ACTIONS(815),
- [anon_sym_await] = ACTIONS(1258),
- [anon_sym_yield] = ACTIONS(1260),
- [anon_sym_LBRACK] = ACTIONS(817),
- [sym_glimmer_opening_tag] = ACTIONS(148),
- [anon_sym_DQUOTE] = ACTIONS(150),
- [anon_sym_SQUOTE] = ACTIONS(152),
- [anon_sym_class] = ACTIONS(154),
- [anon_sym_async] = ACTIONS(1262),
- [anon_sym_function] = ACTIONS(158),
- [anon_sym_new] = ACTIONS(1474),
- [anon_sym_using] = ACTIONS(1266),
- [anon_sym_PLUS] = ACTIONS(1272),
- [anon_sym_DASH] = ACTIONS(1272),
- [anon_sym_SLASH] = ACTIONS(646),
- [anon_sym_LT] = ACTIONS(181),
- [anon_sym_TILDE] = ACTIONS(1256),
- [anon_sym_void] = ACTIONS(1272),
- [anon_sym_delete] = ACTIONS(1272),
- [anon_sym_PLUS_PLUS] = ACTIONS(1274),
- [anon_sym_DASH_DASH] = ACTIONS(1274),
- [sym_comment] = ACTIONS(5),
- [anon_sym_BQUOTE] = ACTIONS(825),
- [sym_number] = ACTIONS(787),
- [sym_private_property_identifier] = ACTIONS(1276),
- [sym_this] = ACTIONS(200),
- [sym_super] = ACTIONS(200),
- [sym_true] = ACTIONS(200),
- [sym_false] = ACTIONS(200),
- [sym_null] = ACTIONS(200),
- [sym_undefined] = ACTIONS(1476),
- [anon_sym_AT] = ACTIONS(99),
- [anon_sym_static] = ACTIONS(1250),
- [anon_sym_readonly] = ACTIONS(1250),
- [anon_sym_get] = ACTIONS(1250),
- [anon_sym_set] = ACTIONS(1250),
- [anon_sym_declare] = ACTIONS(1250),
- [anon_sym_public] = ACTIONS(1250),
- [anon_sym_private] = ACTIONS(1250),
- [anon_sym_protected] = ACTIONS(1250),
- [anon_sym_override] = ACTIONS(1250),
- [anon_sym_module] = ACTIONS(1250),
- [anon_sym_any] = ACTIONS(1250),
- [anon_sym_number] = ACTIONS(1250),
- [anon_sym_boolean] = ACTIONS(1250),
- [anon_sym_string] = ACTIONS(1250),
- [anon_sym_symbol] = ACTIONS(1250),
- [anon_sym_object] = ACTIONS(1250),
- [sym_html_comment] = ACTIONS(5),
- },
- [486] = {
- [sym_import] = STATE(3334),
- [sym_parenthesized_expression] = STATE(1336),
- [sym_expression] = STATE(2066),
- [sym_primary_expression] = STATE(1468),
- [sym_yield_expression] = STATE(1634),
- [sym_object] = STATE(1650),
- [sym_object_pattern] = STATE(5745),
- [sym_array] = STATE(1650),
- [sym_array_pattern] = STATE(5745),
- [sym_glimmer_template] = STATE(1634),
- [sym_jsx_element] = STATE(1634),
- [sym_jsx_opening_element] = STATE(3026),
- [sym_jsx_self_closing_element] = STATE(1634),
- [sym_class] = STATE(1650),
- [sym_function_expression] = STATE(1650),
- [sym_generator_function] = STATE(1650),
- [sym_arrow_function] = STATE(1650),
- [sym__call_signature] = STATE(5553),
- [sym_call_expression] = STATE(1650),
- [sym_new_expression] = STATE(1634),
- [sym_await_expression] = STATE(1634),
- [sym_member_expression] = STATE(1336),
- [sym_subscript_expression] = STATE(1336),
- [sym_assignment_expression] = STATE(1634),
- [sym__augmented_assignment_lhs] = STATE(2884),
- [sym_augmented_assignment_expression] = STATE(1634),
- [sym__destructuring_pattern] = STATE(5745),
- [sym_ternary_expression] = STATE(1634),
- [sym_binary_expression] = STATE(1634),
- [sym_unary_expression] = STATE(1634),
- [sym_update_expression] = STATE(1634),
- [sym_string] = STATE(1650),
- [sym_template_string] = STATE(1650),
- [sym_regex] = STATE(1650),
- [sym_meta_property] = STATE(1650),
- [sym_decorator] = STATE(1244),
- [sym_formal_parameters] = STATE(3742),
- [sym_non_null_expression] = STATE(1336),
- [sym_as_expression] = STATE(1634),
- [sym_satisfies_expression] = STATE(1634),
- [sym_instantiation_expression] = STATE(1634),
- [sym_internal_module] = STATE(1634),
- [sym_type_parameters] = STATE(5349),
- [aux_sym_export_statement_repeat1] = STATE(4458),
- [sym_identifier] = ACTIONS(1470),
- [anon_sym_export] = ACTIONS(1250),
- [anon_sym_type] = ACTIONS(1250),
- [anon_sym_namespace] = ACTIONS(1252),
- [anon_sym_LBRACE] = ACTIONS(813),
- [anon_sym_typeof] = ACTIONS(1272),
- [anon_sym_import] = ACTIONS(133),
- [anon_sym_let] = ACTIONS(1250),
- [anon_sym_BANG] = ACTIONS(1256),
- [anon_sym_LPAREN] = ACTIONS(815),
- [anon_sym_await] = ACTIONS(1258),
- [anon_sym_yield] = ACTIONS(1260),
- [anon_sym_LBRACK] = ACTIONS(817),
- [sym_glimmer_opening_tag] = ACTIONS(148),
- [anon_sym_DQUOTE] = ACTIONS(150),
- [anon_sym_SQUOTE] = ACTIONS(152),
- [anon_sym_class] = ACTIONS(154),
- [anon_sym_async] = ACTIONS(1262),
- [anon_sym_function] = ACTIONS(158),
- [anon_sym_new] = ACTIONS(1474),
- [anon_sym_using] = ACTIONS(1266),
- [anon_sym_PLUS] = ACTIONS(1272),
- [anon_sym_DASH] = ACTIONS(1272),
- [anon_sym_SLASH] = ACTIONS(646),
- [anon_sym_LT] = ACTIONS(181),
- [anon_sym_TILDE] = ACTIONS(1256),
- [anon_sym_void] = ACTIONS(1272),
- [anon_sym_delete] = ACTIONS(1272),
- [anon_sym_PLUS_PLUS] = ACTIONS(1274),
- [anon_sym_DASH_DASH] = ACTIONS(1274),
- [sym_comment] = ACTIONS(5),
- [anon_sym_BQUOTE] = ACTIONS(825),
- [sym_number] = ACTIONS(787),
- [sym_private_property_identifier] = ACTIONS(1276),
- [sym_this] = ACTIONS(200),
- [sym_super] = ACTIONS(200),
- [sym_true] = ACTIONS(200),
- [sym_false] = ACTIONS(200),
- [sym_null] = ACTIONS(200),
- [sym_undefined] = ACTIONS(1476),
- [anon_sym_AT] = ACTIONS(99),
- [anon_sym_static] = ACTIONS(1250),
- [anon_sym_readonly] = ACTIONS(1250),
- [anon_sym_get] = ACTIONS(1250),
- [anon_sym_set] = ACTIONS(1250),
- [anon_sym_declare] = ACTIONS(1250),
- [anon_sym_public] = ACTIONS(1250),
- [anon_sym_private] = ACTIONS(1250),
- [anon_sym_protected] = ACTIONS(1250),
- [anon_sym_override] = ACTIONS(1250),
- [anon_sym_module] = ACTIONS(1250),
- [anon_sym_any] = ACTIONS(1250),
- [anon_sym_number] = ACTIONS(1250),
- [anon_sym_boolean] = ACTIONS(1250),
- [anon_sym_string] = ACTIONS(1250),
- [anon_sym_symbol] = ACTIONS(1250),
- [anon_sym_object] = ACTIONS(1250),
- [sym_html_comment] = ACTIONS(5),
- },
- [487] = {
- [sym_import] = STATE(3334),
- [sym_parenthesized_expression] = STATE(1336),
- [sym_expression] = STATE(2067),
- [sym_primary_expression] = STATE(1468),
- [sym_yield_expression] = STATE(1634),
- [sym_object] = STATE(1650),
- [sym_object_pattern] = STATE(5745),
- [sym_array] = STATE(1650),
- [sym_array_pattern] = STATE(5745),
- [sym_glimmer_template] = STATE(1634),
- [sym_jsx_element] = STATE(1634),
- [sym_jsx_opening_element] = STATE(3026),
- [sym_jsx_self_closing_element] = STATE(1634),
- [sym_class] = STATE(1650),
- [sym_function_expression] = STATE(1650),
- [sym_generator_function] = STATE(1650),
- [sym_arrow_function] = STATE(1650),
- [sym__call_signature] = STATE(5553),
- [sym_call_expression] = STATE(1650),
- [sym_new_expression] = STATE(1634),
- [sym_await_expression] = STATE(1634),
- [sym_member_expression] = STATE(1336),
- [sym_subscript_expression] = STATE(1336),
- [sym_assignment_expression] = STATE(1634),
- [sym__augmented_assignment_lhs] = STATE(2884),
- [sym_augmented_assignment_expression] = STATE(1634),
- [sym__destructuring_pattern] = STATE(5745),
- [sym_ternary_expression] = STATE(1634),
- [sym_binary_expression] = STATE(1634),
- [sym_unary_expression] = STATE(1634),
- [sym_update_expression] = STATE(1634),
- [sym_string] = STATE(1650),
- [sym_template_string] = STATE(1650),
- [sym_regex] = STATE(1650),
- [sym_meta_property] = STATE(1650),
- [sym_decorator] = STATE(1244),
- [sym_formal_parameters] = STATE(3742),
- [sym_non_null_expression] = STATE(1336),
- [sym_as_expression] = STATE(1634),
- [sym_satisfies_expression] = STATE(1634),
- [sym_instantiation_expression] = STATE(1634),
- [sym_internal_module] = STATE(1634),
- [sym_type_parameters] = STATE(5349),
- [aux_sym_export_statement_repeat1] = STATE(4458),
- [sym_identifier] = ACTIONS(1470),
- [anon_sym_export] = ACTIONS(1250),
- [anon_sym_type] = ACTIONS(1250),
- [anon_sym_namespace] = ACTIONS(1252),
- [anon_sym_LBRACE] = ACTIONS(813),
- [anon_sym_typeof] = ACTIONS(1272),
- [anon_sym_import] = ACTIONS(133),
- [anon_sym_let] = ACTIONS(1250),
- [anon_sym_BANG] = ACTIONS(1256),
- [anon_sym_LPAREN] = ACTIONS(815),
- [anon_sym_await] = ACTIONS(1258),
- [anon_sym_yield] = ACTIONS(1260),
- [anon_sym_LBRACK] = ACTIONS(817),
- [sym_glimmer_opening_tag] = ACTIONS(148),
- [anon_sym_DQUOTE] = ACTIONS(150),
- [anon_sym_SQUOTE] = ACTIONS(152),
- [anon_sym_class] = ACTIONS(154),
- [anon_sym_async] = ACTIONS(1262),
- [anon_sym_function] = ACTIONS(158),
- [anon_sym_new] = ACTIONS(1474),
- [anon_sym_using] = ACTIONS(1266),
- [anon_sym_PLUS] = ACTIONS(1272),
- [anon_sym_DASH] = ACTIONS(1272),
- [anon_sym_SLASH] = ACTIONS(646),
- [anon_sym_LT] = ACTIONS(181),
- [anon_sym_TILDE] = ACTIONS(1256),
- [anon_sym_void] = ACTIONS(1272),
- [anon_sym_delete] = ACTIONS(1272),
- [anon_sym_PLUS_PLUS] = ACTIONS(1274),
- [anon_sym_DASH_DASH] = ACTIONS(1274),
- [sym_comment] = ACTIONS(5),
- [anon_sym_BQUOTE] = ACTIONS(825),
- [sym_number] = ACTIONS(787),
- [sym_private_property_identifier] = ACTIONS(1276),
- [sym_this] = ACTIONS(200),
- [sym_super] = ACTIONS(200),
- [sym_true] = ACTIONS(200),
- [sym_false] = ACTIONS(200),
- [sym_null] = ACTIONS(200),
- [sym_undefined] = ACTIONS(1476),
- [anon_sym_AT] = ACTIONS(99),
- [anon_sym_static] = ACTIONS(1250),
- [anon_sym_readonly] = ACTIONS(1250),
- [anon_sym_get] = ACTIONS(1250),
- [anon_sym_set] = ACTIONS(1250),
- [anon_sym_declare] = ACTIONS(1250),
- [anon_sym_public] = ACTIONS(1250),
- [anon_sym_private] = ACTIONS(1250),
- [anon_sym_protected] = ACTIONS(1250),
- [anon_sym_override] = ACTIONS(1250),
- [anon_sym_module] = ACTIONS(1250),
- [anon_sym_any] = ACTIONS(1250),
- [anon_sym_number] = ACTIONS(1250),
- [anon_sym_boolean] = ACTIONS(1250),
- [anon_sym_string] = ACTIONS(1250),
- [anon_sym_symbol] = ACTIONS(1250),
- [anon_sym_object] = ACTIONS(1250),
- [sym_html_comment] = ACTIONS(5),
- },
- [488] = {
- [sym_import] = STATE(3334),
- [sym_parenthesized_expression] = STATE(1336),
- [sym_expression] = STATE(2069),
- [sym_primary_expression] = STATE(1468),
- [sym_yield_expression] = STATE(1634),
- [sym_object] = STATE(1650),
- [sym_object_pattern] = STATE(5745),
- [sym_array] = STATE(1650),
- [sym_array_pattern] = STATE(5745),
- [sym_glimmer_template] = STATE(1634),
- [sym_jsx_element] = STATE(1634),
- [sym_jsx_opening_element] = STATE(3026),
- [sym_jsx_self_closing_element] = STATE(1634),
- [sym_class] = STATE(1650),
- [sym_function_expression] = STATE(1650),
- [sym_generator_function] = STATE(1650),
- [sym_arrow_function] = STATE(1650),
- [sym__call_signature] = STATE(5553),
- [sym_call_expression] = STATE(1650),
- [sym_new_expression] = STATE(1634),
- [sym_await_expression] = STATE(1634),
- [sym_member_expression] = STATE(1336),
- [sym_subscript_expression] = STATE(1336),
- [sym_assignment_expression] = STATE(1634),
- [sym__augmented_assignment_lhs] = STATE(2884),
- [sym_augmented_assignment_expression] = STATE(1634),
- [sym__destructuring_pattern] = STATE(5745),
- [sym_ternary_expression] = STATE(1634),
- [sym_binary_expression] = STATE(1634),
- [sym_unary_expression] = STATE(1634),
- [sym_update_expression] = STATE(1634),
- [sym_string] = STATE(1650),
- [sym_template_string] = STATE(1650),
- [sym_regex] = STATE(1650),
- [sym_meta_property] = STATE(1650),
- [sym_decorator] = STATE(1244),
- [sym_formal_parameters] = STATE(3742),
- [sym_non_null_expression] = STATE(1336),
- [sym_as_expression] = STATE(1634),
- [sym_satisfies_expression] = STATE(1634),
- [sym_instantiation_expression] = STATE(1634),
- [sym_internal_module] = STATE(1634),
- [sym_type_parameters] = STATE(5349),
- [aux_sym_export_statement_repeat1] = STATE(4458),
- [sym_identifier] = ACTIONS(1470),
- [anon_sym_export] = ACTIONS(1250),
- [anon_sym_type] = ACTIONS(1250),
- [anon_sym_namespace] = ACTIONS(1252),
- [anon_sym_LBRACE] = ACTIONS(813),
- [anon_sym_typeof] = ACTIONS(1272),
- [anon_sym_import] = ACTIONS(133),
- [anon_sym_let] = ACTIONS(1250),
- [anon_sym_BANG] = ACTIONS(1256),
- [anon_sym_LPAREN] = ACTIONS(815),
- [anon_sym_await] = ACTIONS(1258),
- [anon_sym_yield] = ACTIONS(1260),
- [anon_sym_LBRACK] = ACTIONS(817),
- [sym_glimmer_opening_tag] = ACTIONS(148),
- [anon_sym_DQUOTE] = ACTIONS(150),
- [anon_sym_SQUOTE] = ACTIONS(152),
- [anon_sym_class] = ACTIONS(154),
- [anon_sym_async] = ACTIONS(1262),
- [anon_sym_function] = ACTIONS(158),
- [anon_sym_new] = ACTIONS(1474),
- [anon_sym_using] = ACTIONS(1266),
- [anon_sym_PLUS] = ACTIONS(1272),
- [anon_sym_DASH] = ACTIONS(1272),
- [anon_sym_SLASH] = ACTIONS(646),
- [anon_sym_LT] = ACTIONS(181),
- [anon_sym_TILDE] = ACTIONS(1256),
- [anon_sym_void] = ACTIONS(1272),
- [anon_sym_delete] = ACTIONS(1272),
- [anon_sym_PLUS_PLUS] = ACTIONS(1274),
- [anon_sym_DASH_DASH] = ACTIONS(1274),
- [sym_comment] = ACTIONS(5),
- [anon_sym_BQUOTE] = ACTIONS(825),
- [sym_number] = ACTIONS(787),
- [sym_private_property_identifier] = ACTIONS(1276),
- [sym_this] = ACTIONS(200),
- [sym_super] = ACTIONS(200),
- [sym_true] = ACTIONS(200),
- [sym_false] = ACTIONS(200),
- [sym_null] = ACTIONS(200),
- [sym_undefined] = ACTIONS(1476),
- [anon_sym_AT] = ACTIONS(99),
- [anon_sym_static] = ACTIONS(1250),
- [anon_sym_readonly] = ACTIONS(1250),
- [anon_sym_get] = ACTIONS(1250),
- [anon_sym_set] = ACTIONS(1250),
- [anon_sym_declare] = ACTIONS(1250),
- [anon_sym_public] = ACTIONS(1250),
- [anon_sym_private] = ACTIONS(1250),
- [anon_sym_protected] = ACTIONS(1250),
- [anon_sym_override] = ACTIONS(1250),
- [anon_sym_module] = ACTIONS(1250),
- [anon_sym_any] = ACTIONS(1250),
- [anon_sym_number] = ACTIONS(1250),
- [anon_sym_boolean] = ACTIONS(1250),
- [anon_sym_string] = ACTIONS(1250),
- [anon_sym_symbol] = ACTIONS(1250),
- [anon_sym_object] = ACTIONS(1250),
- [sym_html_comment] = ACTIONS(5),
- },
- [489] = {
- [sym_import] = STATE(3306),
- [sym_parenthesized_expression] = STATE(1294),
- [sym_expression] = STATE(1789),
- [sym_primary_expression] = STATE(1946),
- [sym_yield_expression] = STATE(2234),
- [sym_object] = STATE(2310),
- [sym_object_pattern] = STATE(5667),
- [sym_array] = STATE(2310),
- [sym_array_pattern] = STATE(5667),
- [sym_glimmer_template] = STATE(2234),
- [sym_jsx_element] = STATE(2234),
- [sym_jsx_opening_element] = STATE(3051),
- [sym_jsx_self_closing_element] = STATE(2234),
- [sym_class] = STATE(2310),
- [sym_function_expression] = STATE(2310),
- [sym_generator_function] = STATE(2310),
- [sym_arrow_function] = STATE(2310),
- [sym__call_signature] = STATE(5809),
- [sym_call_expression] = STATE(2310),
- [sym_new_expression] = STATE(2234),
- [sym_await_expression] = STATE(2234),
- [sym_member_expression] = STATE(1294),
- [sym_subscript_expression] = STATE(1294),
- [sym_assignment_expression] = STATE(2234),
- [sym__augmented_assignment_lhs] = STATE(2875),
- [sym_augmented_assignment_expression] = STATE(2234),
- [sym__destructuring_pattern] = STATE(5667),
- [sym_ternary_expression] = STATE(2234),
- [sym_binary_expression] = STATE(2234),
- [sym_unary_expression] = STATE(2234),
- [sym_update_expression] = STATE(2234),
- [sym_string] = STATE(2310),
- [sym_template_string] = STATE(2310),
- [sym_regex] = STATE(2310),
- [sym_meta_property] = STATE(2310),
- [sym_decorator] = STATE(1244),
- [sym_formal_parameters] = STATE(3742),
- [sym_non_null_expression] = STATE(1294),
- [sym_as_expression] = STATE(2234),
- [sym_satisfies_expression] = STATE(2234),
- [sym_instantiation_expression] = STATE(2234),
- [sym_internal_module] = STATE(2234),
- [sym_type_parameters] = STATE(5349),
- [aux_sym_export_statement_repeat1] = STATE(4499),
- [sym_identifier] = ACTIONS(1440),
- [anon_sym_export] = ACTIONS(1372),
- [anon_sym_type] = ACTIONS(1372),
- [anon_sym_namespace] = ACTIONS(1374),
- [anon_sym_LBRACE] = ACTIONS(700),
- [anon_sym_typeof] = ACTIONS(21),
- [anon_sym_import] = ACTIONS(133),
- [anon_sym_let] = ACTIONS(1372),
- [anon_sym_BANG] = ACTIONS(33),
- [anon_sym_LPAREN] = ACTIONS(41),
- [anon_sym_await] = ACTIONS(43),
- [anon_sym_yield] = ACTIONS(63),
- [anon_sym_LBRACK] = ACTIONS(65),
- [sym_glimmer_opening_tag] = ACTIONS(67),
- [anon_sym_DQUOTE] = ACTIONS(69),
- [anon_sym_SQUOTE] = ACTIONS(71),
- [anon_sym_class] = ACTIONS(709),
- [anon_sym_async] = ACTIONS(1378),
- [anon_sym_function] = ACTIONS(713),
- [anon_sym_new] = ACTIONS(1444),
- [anon_sym_using] = ACTIONS(81),
- [anon_sym_PLUS] = ACTIONS(21),
- [anon_sym_DASH] = ACTIONS(21),
- [anon_sym_SLASH] = ACTIONS(83),
- [anon_sym_LT] = ACTIONS(85),
- [anon_sym_TILDE] = ACTIONS(33),
- [anon_sym_void] = ACTIONS(21),
- [anon_sym_delete] = ACTIONS(21),
- [anon_sym_PLUS_PLUS] = ACTIONS(87),
- [anon_sym_DASH_DASH] = ACTIONS(87),
- [sym_comment] = ACTIONS(5),
- [anon_sym_BQUOTE] = ACTIONS(89),
- [sym_number] = ACTIONS(91),
- [sym_private_property_identifier] = ACTIONS(93),
- [sym_this] = ACTIONS(95),
- [sym_super] = ACTIONS(95),
- [sym_true] = ACTIONS(95),
- [sym_false] = ACTIONS(95),
- [sym_null] = ACTIONS(95),
- [sym_undefined] = ACTIONS(97),
- [anon_sym_AT] = ACTIONS(99),
- [anon_sym_static] = ACTIONS(1372),
- [anon_sym_readonly] = ACTIONS(1372),
- [anon_sym_get] = ACTIONS(1372),
- [anon_sym_set] = ACTIONS(1372),
- [anon_sym_declare] = ACTIONS(1372),
- [anon_sym_public] = ACTIONS(1372),
- [anon_sym_private] = ACTIONS(1372),
- [anon_sym_protected] = ACTIONS(1372),
- [anon_sym_override] = ACTIONS(1372),
- [anon_sym_module] = ACTIONS(1372),
- [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_object] = ACTIONS(1372),
- [sym_html_comment] = ACTIONS(5),
- },
- [490] = {
- [sym_import] = STATE(3306),
- [sym_parenthesized_expression] = STATE(1294),
- [sym_expression] = STATE(1709),
- [sym_primary_expression] = STATE(1946),
- [sym_yield_expression] = STATE(2234),
- [sym_object] = STATE(2310),
- [sym_object_pattern] = STATE(5667),
- [sym_array] = STATE(2310),
- [sym_array_pattern] = STATE(5667),
- [sym_glimmer_template] = STATE(2234),
- [sym_jsx_element] = STATE(2234),
- [sym_jsx_opening_element] = STATE(3051),
- [sym_jsx_self_closing_element] = STATE(2234),
- [sym_class] = STATE(2310),
- [sym_function_expression] = STATE(2310),
- [sym_generator_function] = STATE(2310),
- [sym_arrow_function] = STATE(2310),
- [sym__call_signature] = STATE(5809),
- [sym_call_expression] = STATE(2310),
- [sym_new_expression] = STATE(2234),
- [sym_await_expression] = STATE(2234),
- [sym_member_expression] = STATE(1294),
- [sym_subscript_expression] = STATE(1294),
- [sym_assignment_expression] = STATE(2234),
- [sym__augmented_assignment_lhs] = STATE(2875),
- [sym_augmented_assignment_expression] = STATE(2234),
- [sym__destructuring_pattern] = STATE(5667),
- [sym_ternary_expression] = STATE(2234),
- [sym_binary_expression] = STATE(2234),
- [sym_unary_expression] = STATE(2234),
- [sym_update_expression] = STATE(2234),
- [sym_string] = STATE(2310),
- [sym_template_string] = STATE(2310),
- [sym_regex] = STATE(2310),
- [sym_meta_property] = STATE(2310),
- [sym_decorator] = STATE(1244),
- [sym_formal_parameters] = STATE(3742),
- [sym_non_null_expression] = STATE(1294),
- [sym_as_expression] = STATE(2234),
- [sym_satisfies_expression] = STATE(2234),
- [sym_instantiation_expression] = STATE(2234),
- [sym_internal_module] = STATE(2234),
- [sym_type_parameters] = STATE(5349),
- [aux_sym_export_statement_repeat1] = STATE(4499),
- [sym_identifier] = ACTIONS(1440),
- [anon_sym_export] = ACTIONS(1372),
- [anon_sym_type] = ACTIONS(1372),
- [anon_sym_namespace] = ACTIONS(1374),
- [anon_sym_LBRACE] = ACTIONS(700),
- [anon_sym_typeof] = ACTIONS(21),
- [anon_sym_import] = ACTIONS(133),
- [anon_sym_let] = ACTIONS(1372),
- [anon_sym_BANG] = ACTIONS(33),
- [anon_sym_LPAREN] = ACTIONS(41),
- [anon_sym_await] = ACTIONS(43),
- [anon_sym_yield] = ACTIONS(63),
- [anon_sym_LBRACK] = ACTIONS(65),
- [sym_glimmer_opening_tag] = ACTIONS(67),
- [anon_sym_DQUOTE] = ACTIONS(69),
- [anon_sym_SQUOTE] = ACTIONS(71),
- [anon_sym_class] = ACTIONS(709),
- [anon_sym_async] = ACTIONS(1378),
- [anon_sym_function] = ACTIONS(713),
- [anon_sym_new] = ACTIONS(1444),
- [anon_sym_using] = ACTIONS(81),
- [anon_sym_PLUS] = ACTIONS(21),
- [anon_sym_DASH] = ACTIONS(21),
- [anon_sym_SLASH] = ACTIONS(83),
- [anon_sym_LT] = ACTIONS(85),
- [anon_sym_TILDE] = ACTIONS(33),
- [anon_sym_void] = ACTIONS(21),
- [anon_sym_delete] = ACTIONS(21),
- [anon_sym_PLUS_PLUS] = ACTIONS(87),
- [anon_sym_DASH_DASH] = ACTIONS(87),
- [sym_comment] = ACTIONS(5),
- [anon_sym_BQUOTE] = ACTIONS(89),
- [sym_number] = ACTIONS(91),
- [sym_private_property_identifier] = ACTIONS(93),
- [sym_this] = ACTIONS(95),
- [sym_super] = ACTIONS(95),
- [sym_true] = ACTIONS(95),
- [sym_false] = ACTIONS(95),
- [sym_null] = ACTIONS(95),
- [sym_undefined] = ACTIONS(97),
- [anon_sym_AT] = ACTIONS(99),
- [anon_sym_static] = ACTIONS(1372),
- [anon_sym_readonly] = ACTIONS(1372),
- [anon_sym_get] = ACTIONS(1372),
- [anon_sym_set] = ACTIONS(1372),
- [anon_sym_declare] = ACTIONS(1372),
- [anon_sym_public] = ACTIONS(1372),
- [anon_sym_private] = ACTIONS(1372),
- [anon_sym_protected] = ACTIONS(1372),
- [anon_sym_override] = ACTIONS(1372),
- [anon_sym_module] = ACTIONS(1372),
- [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_object] = ACTIONS(1372),
- [sym_html_comment] = ACTIONS(5),
- },
- [491] = {
- [sym_import] = STATE(3334),
- [sym_parenthesized_expression] = STATE(1336),
- [sym_expression] = STATE(2073),
- [sym_primary_expression] = STATE(1468),
- [sym_yield_expression] = STATE(1634),
- [sym_object] = STATE(1650),
- [sym_object_pattern] = STATE(5745),
- [sym_array] = STATE(1650),
- [sym_array_pattern] = STATE(5745),
- [sym_glimmer_template] = STATE(1634),
- [sym_jsx_element] = STATE(1634),
- [sym_jsx_opening_element] = STATE(3026),
- [sym_jsx_self_closing_element] = STATE(1634),
- [sym_class] = STATE(1650),
- [sym_function_expression] = STATE(1650),
- [sym_generator_function] = STATE(1650),
- [sym_arrow_function] = STATE(1650),
- [sym__call_signature] = STATE(5553),
- [sym_call_expression] = STATE(1650),
- [sym_new_expression] = STATE(1634),
- [sym_await_expression] = STATE(1634),
- [sym_member_expression] = STATE(1336),
- [sym_subscript_expression] = STATE(1336),
- [sym_assignment_expression] = STATE(1634),
- [sym__augmented_assignment_lhs] = STATE(2884),
- [sym_augmented_assignment_expression] = STATE(1634),
- [sym__destructuring_pattern] = STATE(5745),
- [sym_ternary_expression] = STATE(1634),
- [sym_binary_expression] = STATE(1634),
- [sym_unary_expression] = STATE(1634),
- [sym_update_expression] = STATE(1634),
- [sym_string] = STATE(1650),
- [sym_template_string] = STATE(1650),
- [sym_regex] = STATE(1650),
- [sym_meta_property] = STATE(1650),
- [sym_decorator] = STATE(1244),
- [sym_formal_parameters] = STATE(3742),
- [sym_non_null_expression] = STATE(1336),
- [sym_as_expression] = STATE(1634),
- [sym_satisfies_expression] = STATE(1634),
- [sym_instantiation_expression] = STATE(1634),
- [sym_internal_module] = STATE(1634),
- [sym_type_parameters] = STATE(5349),
- [aux_sym_export_statement_repeat1] = STATE(4458),
- [sym_identifier] = ACTIONS(1470),
- [anon_sym_export] = ACTIONS(1250),
- [anon_sym_type] = ACTIONS(1250),
- [anon_sym_namespace] = ACTIONS(1252),
- [anon_sym_LBRACE] = ACTIONS(813),
- [anon_sym_typeof] = ACTIONS(1272),
- [anon_sym_import] = ACTIONS(133),
- [anon_sym_let] = ACTIONS(1250),
- [anon_sym_BANG] = ACTIONS(1256),
- [anon_sym_LPAREN] = ACTIONS(815),
- [anon_sym_await] = ACTIONS(1258),
- [anon_sym_yield] = ACTIONS(1260),
- [anon_sym_LBRACK] = ACTIONS(817),
- [sym_glimmer_opening_tag] = ACTIONS(148),
- [anon_sym_DQUOTE] = ACTIONS(150),
- [anon_sym_SQUOTE] = ACTIONS(152),
- [anon_sym_class] = ACTIONS(154),
- [anon_sym_async] = ACTIONS(1262),
- [anon_sym_function] = ACTIONS(158),
- [anon_sym_new] = ACTIONS(1474),
- [anon_sym_using] = ACTIONS(1266),
- [anon_sym_PLUS] = ACTIONS(1272),
- [anon_sym_DASH] = ACTIONS(1272),
- [anon_sym_SLASH] = ACTIONS(646),
- [anon_sym_LT] = ACTIONS(181),
- [anon_sym_TILDE] = ACTIONS(1256),
- [anon_sym_void] = ACTIONS(1272),
- [anon_sym_delete] = ACTIONS(1272),
- [anon_sym_PLUS_PLUS] = ACTIONS(1274),
- [anon_sym_DASH_DASH] = ACTIONS(1274),
- [sym_comment] = ACTIONS(5),
- [anon_sym_BQUOTE] = ACTIONS(825),
- [sym_number] = ACTIONS(787),
- [sym_private_property_identifier] = ACTIONS(1276),
- [sym_this] = ACTIONS(200),
- [sym_super] = ACTIONS(200),
- [sym_true] = ACTIONS(200),
- [sym_false] = ACTIONS(200),
- [sym_null] = ACTIONS(200),
- [sym_undefined] = ACTIONS(1476),
- [anon_sym_AT] = ACTIONS(99),
- [anon_sym_static] = ACTIONS(1250),
- [anon_sym_readonly] = ACTIONS(1250),
- [anon_sym_get] = ACTIONS(1250),
- [anon_sym_set] = ACTIONS(1250),
- [anon_sym_declare] = ACTIONS(1250),
- [anon_sym_public] = ACTIONS(1250),
- [anon_sym_private] = ACTIONS(1250),
- [anon_sym_protected] = ACTIONS(1250),
- [anon_sym_override] = ACTIONS(1250),
- [anon_sym_module] = ACTIONS(1250),
- [anon_sym_any] = ACTIONS(1250),
- [anon_sym_number] = ACTIONS(1250),
- [anon_sym_boolean] = ACTIONS(1250),
- [anon_sym_string] = ACTIONS(1250),
- [anon_sym_symbol] = ACTIONS(1250),
- [anon_sym_object] = ACTIONS(1250),
- [sym_html_comment] = ACTIONS(5),
- },
- [492] = {
- [sym_import] = STATE(3334),
- [sym_parenthesized_expression] = STATE(1336),
- [sym_expression] = STATE(2074),
- [sym_primary_expression] = STATE(1468),
- [sym_yield_expression] = STATE(1634),
- [sym_object] = STATE(1650),
- [sym_object_pattern] = STATE(5745),
- [sym_array] = STATE(1650),
- [sym_array_pattern] = STATE(5745),
- [sym_glimmer_template] = STATE(1634),
- [sym_jsx_element] = STATE(1634),
- [sym_jsx_opening_element] = STATE(3026),
- [sym_jsx_self_closing_element] = STATE(1634),
- [sym_class] = STATE(1650),
- [sym_function_expression] = STATE(1650),
- [sym_generator_function] = STATE(1650),
- [sym_arrow_function] = STATE(1650),
- [sym__call_signature] = STATE(5553),
- [sym_call_expression] = STATE(1650),
- [sym_new_expression] = STATE(1634),
- [sym_await_expression] = STATE(1634),
- [sym_member_expression] = STATE(1336),
- [sym_subscript_expression] = STATE(1336),
- [sym_assignment_expression] = STATE(1634),
- [sym__augmented_assignment_lhs] = STATE(2884),
- [sym_augmented_assignment_expression] = STATE(1634),
- [sym__destructuring_pattern] = STATE(5745),
- [sym_ternary_expression] = STATE(1634),
- [sym_binary_expression] = STATE(1634),
- [sym_unary_expression] = STATE(1634),
- [sym_update_expression] = STATE(1634),
- [sym_string] = STATE(1650),
- [sym_template_string] = STATE(1650),
- [sym_regex] = STATE(1650),
- [sym_meta_property] = STATE(1650),
- [sym_decorator] = STATE(1244),
- [sym_formal_parameters] = STATE(3742),
- [sym_non_null_expression] = STATE(1336),
- [sym_as_expression] = STATE(1634),
- [sym_satisfies_expression] = STATE(1634),
- [sym_instantiation_expression] = STATE(1634),
- [sym_internal_module] = STATE(1634),
- [sym_type_parameters] = STATE(5349),
- [aux_sym_export_statement_repeat1] = STATE(4458),
- [sym_identifier] = ACTIONS(1470),
- [anon_sym_export] = ACTIONS(1250),
- [anon_sym_type] = ACTIONS(1250),
- [anon_sym_namespace] = ACTIONS(1252),
- [anon_sym_LBRACE] = ACTIONS(813),
- [anon_sym_typeof] = ACTIONS(1272),
- [anon_sym_import] = ACTIONS(133),
- [anon_sym_let] = ACTIONS(1250),
- [anon_sym_BANG] = ACTIONS(1256),
- [anon_sym_LPAREN] = ACTIONS(815),
- [anon_sym_await] = ACTIONS(1258),
- [anon_sym_yield] = ACTIONS(1260),
- [anon_sym_LBRACK] = ACTIONS(817),
- [sym_glimmer_opening_tag] = ACTIONS(148),
- [anon_sym_DQUOTE] = ACTIONS(150),
- [anon_sym_SQUOTE] = ACTIONS(152),
- [anon_sym_class] = ACTIONS(154),
- [anon_sym_async] = ACTIONS(1262),
- [anon_sym_function] = ACTIONS(158),
- [anon_sym_new] = ACTIONS(1474),
- [anon_sym_using] = ACTIONS(1266),
- [anon_sym_PLUS] = ACTIONS(1272),
- [anon_sym_DASH] = ACTIONS(1272),
- [anon_sym_SLASH] = ACTIONS(646),
- [anon_sym_LT] = ACTIONS(181),
- [anon_sym_TILDE] = ACTIONS(1256),
- [anon_sym_void] = ACTIONS(1272),
- [anon_sym_delete] = ACTIONS(1272),
- [anon_sym_PLUS_PLUS] = ACTIONS(1274),
- [anon_sym_DASH_DASH] = ACTIONS(1274),
- [sym_comment] = ACTIONS(5),
- [anon_sym_BQUOTE] = ACTIONS(825),
- [sym_number] = ACTIONS(787),
- [sym_private_property_identifier] = ACTIONS(1276),
- [sym_this] = ACTIONS(200),
- [sym_super] = ACTIONS(200),
- [sym_true] = ACTIONS(200),
- [sym_false] = ACTIONS(200),
- [sym_null] = ACTIONS(200),
- [sym_undefined] = ACTIONS(1476),
- [anon_sym_AT] = ACTIONS(99),
- [anon_sym_static] = ACTIONS(1250),
- [anon_sym_readonly] = ACTIONS(1250),
- [anon_sym_get] = ACTIONS(1250),
- [anon_sym_set] = ACTIONS(1250),
- [anon_sym_declare] = ACTIONS(1250),
- [anon_sym_public] = ACTIONS(1250),
- [anon_sym_private] = ACTIONS(1250),
- [anon_sym_protected] = ACTIONS(1250),
- [anon_sym_override] = ACTIONS(1250),
- [anon_sym_module] = ACTIONS(1250),
- [anon_sym_any] = ACTIONS(1250),
- [anon_sym_number] = ACTIONS(1250),
- [anon_sym_boolean] = ACTIONS(1250),
- [anon_sym_string] = ACTIONS(1250),
- [anon_sym_symbol] = ACTIONS(1250),
- [anon_sym_object] = ACTIONS(1250),
- [sym_html_comment] = ACTIONS(5),
- },
- [493] = {
- [sym_import] = STATE(3334),
- [sym_parenthesized_expression] = STATE(1179),
- [sym_expression] = STATE(2415),
- [sym_primary_expression] = STATE(1468),
- [sym_yield_expression] = STATE(1634),
- [sym_object] = STATE(1650),
- [sym_object_pattern] = STATE(3606),
- [sym_array] = STATE(1650),
- [sym_array_pattern] = STATE(3606),
- [sym_glimmer_template] = STATE(1634),
- [sym_jsx_element] = STATE(1634),
- [sym_jsx_opening_element] = STATE(3026),
- [sym_jsx_self_closing_element] = STATE(1634),
- [sym_class] = STATE(1650),
- [sym_function_expression] = STATE(1650),
- [sym_generator_function] = STATE(1650),
- [sym_arrow_function] = STATE(1650),
- [sym__call_signature] = STATE(5619),
- [sym_call_expression] = STATE(1650),
- [sym_new_expression] = STATE(1634),
- [sym_await_expression] = STATE(1634),
- [sym_member_expression] = STATE(1234),
- [sym_subscript_expression] = STATE(1234),
- [sym_assignment_expression] = STATE(1634),
- [sym__augmented_assignment_lhs] = STATE(2878),
- [sym_augmented_assignment_expression] = STATE(1634),
- [sym__destructuring_pattern] = STATE(3606),
- [sym_ternary_expression] = STATE(1634),
- [sym_binary_expression] = STATE(1634),
- [sym_unary_expression] = STATE(1634),
- [sym_update_expression] = STATE(1634),
- [sym_string] = STATE(1650),
- [sym_template_string] = STATE(1650),
- [sym_regex] = STATE(1650),
- [sym_meta_property] = STATE(1650),
- [sym_decorator] = STATE(1244),
- [sym_formal_parameters] = STATE(3742),
- [sym_non_null_expression] = STATE(1234),
- [sym_as_expression] = STATE(1634),
- [sym_satisfies_expression] = STATE(1634),
- [sym_instantiation_expression] = STATE(1634),
- [sym_internal_module] = STATE(1634),
- [sym_type_parameters] = STATE(5349),
- [aux_sym_export_statement_repeat1] = STATE(4458),
- [sym_identifier] = ACTIONS(2125),
- [anon_sym_export] = ACTIONS(2127),
- [anon_sym_type] = ACTIONS(2127),
- [anon_sym_namespace] = ACTIONS(2129),
- [anon_sym_LBRACE] = ACTIONS(771),
- [anon_sym_typeof] = ACTIONS(187),
- [anon_sym_import] = ACTIONS(133),
- [anon_sym_let] = ACTIONS(2127),
- [anon_sym_BANG] = ACTIONS(183),
- [anon_sym_LPAREN] = ACTIONS(815),
- [anon_sym_await] = ACTIONS(142),
- [anon_sym_yield] = ACTIONS(144),
- [anon_sym_LBRACK] = ACTIONS(1630),
- [sym_glimmer_opening_tag] = ACTIONS(148),
- [anon_sym_DQUOTE] = ACTIONS(150),
- [anon_sym_SQUOTE] = ACTIONS(152),
- [anon_sym_class] = ACTIONS(154),
- [anon_sym_async] = ACTIONS(2131),
- [anon_sym_function] = ACTIONS(158),
- [anon_sym_new] = ACTIONS(2133),
- [anon_sym_using] = ACTIONS(166),
- [anon_sym_PLUS] = ACTIONS(187),
- [anon_sym_DASH] = ACTIONS(187),
- [anon_sym_SLASH] = ACTIONS(646),
- [anon_sym_LT] = ACTIONS(181),
- [anon_sym_TILDE] = ACTIONS(183),
- [anon_sym_void] = ACTIONS(187),
- [anon_sym_delete] = ACTIONS(187),
- [anon_sym_PLUS_PLUS] = ACTIONS(719),
- [anon_sym_DASH_DASH] = ACTIONS(719),
- [sym_comment] = ACTIONS(5),
- [anon_sym_BQUOTE] = ACTIONS(825),
- [sym_number] = ACTIONS(787),
- [sym_private_property_identifier] = ACTIONS(196),
- [sym_this] = ACTIONS(200),
- [sym_super] = ACTIONS(200),
- [sym_true] = ACTIONS(200),
- [sym_false] = ACTIONS(200),
- [sym_null] = ACTIONS(200),
- [sym_undefined] = ACTIONS(2135),
- [anon_sym_AT] = ACTIONS(99),
- [anon_sym_static] = ACTIONS(2127),
- [anon_sym_readonly] = ACTIONS(2127),
- [anon_sym_get] = ACTIONS(2127),
- [anon_sym_set] = ACTIONS(2127),
- [anon_sym_declare] = ACTIONS(2127),
- [anon_sym_public] = ACTIONS(2127),
- [anon_sym_private] = ACTIONS(2127),
- [anon_sym_protected] = ACTIONS(2127),
- [anon_sym_override] = ACTIONS(2127),
- [anon_sym_module] = ACTIONS(2127),
- [anon_sym_any] = ACTIONS(2127),
- [anon_sym_number] = ACTIONS(2127),
- [anon_sym_boolean] = ACTIONS(2127),
- [anon_sym_string] = ACTIONS(2127),
- [anon_sym_symbol] = ACTIONS(2127),
- [anon_sym_object] = ACTIONS(2127),
- [sym_html_comment] = ACTIONS(5),
- },
- [494] = {
- [sym_import] = STATE(3334),
- [sym_parenthesized_expression] = STATE(1336),
- [sym_expression] = STATE(2082),
- [sym_primary_expression] = STATE(1468),
- [sym_yield_expression] = STATE(1634),
- [sym_object] = STATE(1650),
- [sym_object_pattern] = STATE(5745),
- [sym_array] = STATE(1650),
- [sym_array_pattern] = STATE(5745),
- [sym_glimmer_template] = STATE(1634),
- [sym_jsx_element] = STATE(1634),
- [sym_jsx_opening_element] = STATE(3026),
- [sym_jsx_self_closing_element] = STATE(1634),
- [sym_class] = STATE(1650),
- [sym_function_expression] = STATE(1650),
- [sym_generator_function] = STATE(1650),
- [sym_arrow_function] = STATE(1650),
- [sym__call_signature] = STATE(5553),
- [sym_call_expression] = STATE(1650),
- [sym_new_expression] = STATE(1634),
- [sym_await_expression] = STATE(1634),
- [sym_member_expression] = STATE(1336),
- [sym_subscript_expression] = STATE(1336),
- [sym_assignment_expression] = STATE(1634),
- [sym__augmented_assignment_lhs] = STATE(2884),
- [sym_augmented_assignment_expression] = STATE(1634),
- [sym__destructuring_pattern] = STATE(5745),
- [sym_ternary_expression] = STATE(1634),
- [sym_binary_expression] = STATE(1634),
- [sym_unary_expression] = STATE(1634),
- [sym_update_expression] = STATE(1634),
- [sym_string] = STATE(1650),
- [sym_template_string] = STATE(1650),
- [sym_regex] = STATE(1650),
- [sym_meta_property] = STATE(1650),
- [sym_decorator] = STATE(1244),
- [sym_formal_parameters] = STATE(3742),
- [sym_non_null_expression] = STATE(1336),
- [sym_as_expression] = STATE(1634),
- [sym_satisfies_expression] = STATE(1634),
- [sym_instantiation_expression] = STATE(1634),
- [sym_internal_module] = STATE(1634),
- [sym_type_parameters] = STATE(5349),
- [aux_sym_export_statement_repeat1] = STATE(4458),
- [sym_identifier] = ACTIONS(1470),
- [anon_sym_export] = ACTIONS(1250),
- [anon_sym_type] = ACTIONS(1250),
- [anon_sym_namespace] = ACTIONS(1252),
- [anon_sym_LBRACE] = ACTIONS(813),
- [anon_sym_typeof] = ACTIONS(1272),
- [anon_sym_import] = ACTIONS(133),
- [anon_sym_let] = ACTIONS(1250),
- [anon_sym_BANG] = ACTIONS(1256),
- [anon_sym_LPAREN] = ACTIONS(815),
- [anon_sym_await] = ACTIONS(1258),
- [anon_sym_yield] = ACTIONS(1260),
- [anon_sym_LBRACK] = ACTIONS(817),
- [sym_glimmer_opening_tag] = ACTIONS(148),
- [anon_sym_DQUOTE] = ACTIONS(150),
- [anon_sym_SQUOTE] = ACTIONS(152),
- [anon_sym_class] = ACTIONS(154),
- [anon_sym_async] = ACTIONS(1262),
- [anon_sym_function] = ACTIONS(158),
- [anon_sym_new] = ACTIONS(1474),
- [anon_sym_using] = ACTIONS(1266),
- [anon_sym_PLUS] = ACTIONS(1272),
- [anon_sym_DASH] = ACTIONS(1272),
- [anon_sym_SLASH] = ACTIONS(646),
- [anon_sym_LT] = ACTIONS(181),
- [anon_sym_TILDE] = ACTIONS(1256),
- [anon_sym_void] = ACTIONS(1272),
- [anon_sym_delete] = ACTIONS(1272),
- [anon_sym_PLUS_PLUS] = ACTIONS(1274),
- [anon_sym_DASH_DASH] = ACTIONS(1274),
- [sym_comment] = ACTIONS(5),
- [anon_sym_BQUOTE] = ACTIONS(825),
- [sym_number] = ACTIONS(2111),
- [sym_private_property_identifier] = ACTIONS(1276),
- [sym_this] = ACTIONS(200),
- [sym_super] = ACTIONS(200),
- [sym_true] = ACTIONS(200),
- [sym_false] = ACTIONS(200),
- [sym_null] = ACTIONS(200),
- [sym_undefined] = ACTIONS(1476),
- [anon_sym_AT] = ACTIONS(99),
- [anon_sym_static] = ACTIONS(1250),
- [anon_sym_readonly] = ACTIONS(1250),
- [anon_sym_get] = ACTIONS(1250),
- [anon_sym_set] = ACTIONS(1250),
- [anon_sym_declare] = ACTIONS(1250),
- [anon_sym_public] = ACTIONS(1250),
- [anon_sym_private] = ACTIONS(1250),
- [anon_sym_protected] = ACTIONS(1250),
- [anon_sym_override] = ACTIONS(1250),
- [anon_sym_module] = ACTIONS(1250),
- [anon_sym_any] = ACTIONS(1250),
- [anon_sym_number] = ACTIONS(1250),
- [anon_sym_boolean] = ACTIONS(1250),
- [anon_sym_string] = ACTIONS(1250),
- [anon_sym_symbol] = ACTIONS(1250),
- [anon_sym_object] = ACTIONS(1250),
- [sym_html_comment] = ACTIONS(5),
- },
- [495] = {
- [sym_import] = STATE(3334),
- [sym_parenthesized_expression] = STATE(1251),
- [sym_expression] = STATE(1518),
- [sym_primary_expression] = STATE(1468),
- [sym_yield_expression] = STATE(1634),
- [sym_object] = STATE(1650),
- [sym_object_pattern] = STATE(5633),
- [sym_array] = STATE(1650),
- [sym_array_pattern] = STATE(5633),
- [sym_glimmer_template] = STATE(1634),
- [sym_jsx_element] = STATE(1634),
- [sym_jsx_opening_element] = STATE(3026),
- [sym_jsx_self_closing_element] = STATE(1634),
- [sym_class] = STATE(1650),
- [sym_function_expression] = STATE(1650),
- [sym_generator_function] = STATE(1650),
- [sym_arrow_function] = STATE(1650),
- [sym__call_signature] = STATE(5828),
- [sym_call_expression] = STATE(1650),
- [sym_new_expression] = STATE(1634),
- [sym_await_expression] = STATE(1634),
- [sym_member_expression] = STATE(1251),
- [sym_subscript_expression] = STATE(1251),
- [sym_assignment_expression] = STATE(1634),
- [sym__augmented_assignment_lhs] = STATE(2900),
- [sym_augmented_assignment_expression] = STATE(1634),
- [sym__destructuring_pattern] = STATE(5633),
- [sym_ternary_expression] = STATE(1634),
- [sym_binary_expression] = STATE(1634),
- [sym_unary_expression] = STATE(1634),
- [sym_update_expression] = STATE(1634),
- [sym_string] = STATE(1650),
- [sym_template_string] = STATE(1650),
- [sym_regex] = STATE(1650),
- [sym_meta_property] = STATE(1650),
- [sym_decorator] = STATE(1244),
- [sym_formal_parameters] = STATE(3742),
- [sym_non_null_expression] = STATE(1251),
- [sym_as_expression] = STATE(1634),
- [sym_satisfies_expression] = STATE(1634),
- [sym_instantiation_expression] = STATE(1634),
- [sym_internal_module] = STATE(1634),
- [sym_type_parameters] = STATE(5349),
- [aux_sym_export_statement_repeat1] = STATE(4458),
- [sym_identifier] = ACTIONS(1428),
- [anon_sym_export] = ACTIONS(1044),
- [anon_sym_type] = ACTIONS(1044),
- [anon_sym_namespace] = ACTIONS(1046),
- [anon_sym_LBRACE] = ACTIONS(813),
- [anon_sym_typeof] = ACTIONS(650),
- [anon_sym_import] = ACTIONS(133),
- [anon_sym_let] = ACTIONS(1044),
- [anon_sym_BANG] = ACTIONS(622),
- [anon_sym_LPAREN] = ACTIONS(815),
- [anon_sym_await] = ACTIONS(624),
- [anon_sym_yield] = ACTIONS(626),
- [anon_sym_LBRACK] = ACTIONS(817),
- [sym_glimmer_opening_tag] = ACTIONS(148),
- [anon_sym_DQUOTE] = ACTIONS(150),
- [anon_sym_SQUOTE] = ACTIONS(152),
- [anon_sym_class] = ACTIONS(154),
- [anon_sym_async] = ACTIONS(1052),
- [anon_sym_function] = ACTIONS(158),
- [anon_sym_new] = ACTIONS(1436),
- [anon_sym_using] = ACTIONS(636),
- [anon_sym_PLUS] = ACTIONS(650),
- [anon_sym_DASH] = ACTIONS(650),
- [anon_sym_SLASH] = ACTIONS(646),
- [anon_sym_LT] = ACTIONS(181),
- [anon_sym_TILDE] = ACTIONS(622),
- [anon_sym_void] = ACTIONS(650),
- [anon_sym_delete] = ACTIONS(650),
- [anon_sym_PLUS_PLUS] = ACTIONS(652),
- [anon_sym_DASH_DASH] = ACTIONS(652),
- [sym_comment] = ACTIONS(5),
- [anon_sym_BQUOTE] = ACTIONS(825),
- [sym_number] = ACTIONS(787),
- [sym_private_property_identifier] = ACTIONS(654),
- [sym_this] = ACTIONS(200),
- [sym_super] = ACTIONS(200),
- [sym_true] = ACTIONS(200),
- [sym_false] = ACTIONS(200),
- [sym_null] = ACTIONS(200),
- [sym_undefined] = ACTIONS(1438),
- [anon_sym_AT] = ACTIONS(99),
- [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_override] = 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_object] = ACTIONS(1044),
- [sym_html_comment] = ACTIONS(5),
- },
- [496] = {
- [sym_import] = STATE(3334),
- [sym_parenthesized_expression] = STATE(1336),
- [sym_expression] = STATE(2075),
- [sym_primary_expression] = STATE(1468),
- [sym_yield_expression] = STATE(1634),
- [sym_object] = STATE(1650),
- [sym_object_pattern] = STATE(5745),
- [sym_array] = STATE(1650),
- [sym_array_pattern] = STATE(5745),
- [sym_glimmer_template] = STATE(1634),
- [sym_jsx_element] = STATE(1634),
- [sym_jsx_opening_element] = STATE(3026),
- [sym_jsx_self_closing_element] = STATE(1634),
- [sym_class] = STATE(1650),
- [sym_function_expression] = STATE(1650),
- [sym_generator_function] = STATE(1650),
- [sym_arrow_function] = STATE(1650),
- [sym__call_signature] = STATE(5553),
- [sym_call_expression] = STATE(1650),
- [sym_new_expression] = STATE(1634),
- [sym_await_expression] = STATE(1634),
- [sym_member_expression] = STATE(1336),
- [sym_subscript_expression] = STATE(1336),
- [sym_assignment_expression] = STATE(1634),
- [sym__augmented_assignment_lhs] = STATE(2884),
- [sym_augmented_assignment_expression] = STATE(1634),
- [sym__destructuring_pattern] = STATE(5745),
- [sym_ternary_expression] = STATE(1634),
- [sym_binary_expression] = STATE(1634),
- [sym_unary_expression] = STATE(1634),
- [sym_update_expression] = STATE(1634),
- [sym_string] = STATE(1650),
- [sym_template_string] = STATE(1650),
- [sym_regex] = STATE(1650),
- [sym_meta_property] = STATE(1650),
- [sym_decorator] = STATE(1244),
- [sym_formal_parameters] = STATE(3742),
- [sym_non_null_expression] = STATE(1336),
- [sym_as_expression] = STATE(1634),
- [sym_satisfies_expression] = STATE(1634),
- [sym_instantiation_expression] = STATE(1634),
- [sym_internal_module] = STATE(1634),
- [sym_type_parameters] = STATE(5349),
- [aux_sym_export_statement_repeat1] = STATE(4458),
- [sym_identifier] = ACTIONS(1470),
- [anon_sym_export] = ACTIONS(1250),
- [anon_sym_type] = ACTIONS(1250),
- [anon_sym_namespace] = ACTIONS(1252),
- [anon_sym_LBRACE] = ACTIONS(813),
- [anon_sym_typeof] = ACTIONS(1272),
- [anon_sym_import] = ACTIONS(133),
- [anon_sym_let] = ACTIONS(1250),
- [anon_sym_BANG] = ACTIONS(1256),
- [anon_sym_LPAREN] = ACTIONS(815),
- [anon_sym_await] = ACTIONS(1258),
- [anon_sym_yield] = ACTIONS(1260),
- [anon_sym_LBRACK] = ACTIONS(817),
- [sym_glimmer_opening_tag] = ACTIONS(148),
- [anon_sym_DQUOTE] = ACTIONS(150),
- [anon_sym_SQUOTE] = ACTIONS(152),
- [anon_sym_class] = ACTIONS(154),
- [anon_sym_async] = ACTIONS(1262),
- [anon_sym_function] = ACTIONS(158),
- [anon_sym_new] = ACTIONS(1474),
- [anon_sym_using] = ACTIONS(1266),
- [anon_sym_PLUS] = ACTIONS(1272),
- [anon_sym_DASH] = ACTIONS(1272),
- [anon_sym_SLASH] = ACTIONS(646),
- [anon_sym_LT] = ACTIONS(181),
- [anon_sym_TILDE] = ACTIONS(1256),
- [anon_sym_void] = ACTIONS(1272),
- [anon_sym_delete] = ACTIONS(1272),
- [anon_sym_PLUS_PLUS] = ACTIONS(1274),
- [anon_sym_DASH_DASH] = ACTIONS(1274),
- [sym_comment] = ACTIONS(5),
- [anon_sym_BQUOTE] = ACTIONS(825),
- [sym_number] = ACTIONS(787),
- [sym_private_property_identifier] = ACTIONS(1276),
- [sym_this] = ACTIONS(200),
- [sym_super] = ACTIONS(200),
- [sym_true] = ACTIONS(200),
- [sym_false] = ACTIONS(200),
- [sym_null] = ACTIONS(200),
- [sym_undefined] = ACTIONS(1476),
- [anon_sym_AT] = ACTIONS(99),
- [anon_sym_static] = ACTIONS(1250),
- [anon_sym_readonly] = ACTIONS(1250),
- [anon_sym_get] = ACTIONS(1250),
- [anon_sym_set] = ACTIONS(1250),
- [anon_sym_declare] = ACTIONS(1250),
- [anon_sym_public] = ACTIONS(1250),
- [anon_sym_private] = ACTIONS(1250),
- [anon_sym_protected] = ACTIONS(1250),
- [anon_sym_override] = ACTIONS(1250),
- [anon_sym_module] = ACTIONS(1250),
- [anon_sym_any] = ACTIONS(1250),
- [anon_sym_number] = ACTIONS(1250),
- [anon_sym_boolean] = ACTIONS(1250),
- [anon_sym_string] = ACTIONS(1250),
- [anon_sym_symbol] = ACTIONS(1250),
- [anon_sym_object] = ACTIONS(1250),
- [sym_html_comment] = ACTIONS(5),
- },
- [497] = {
- [sym_import] = STATE(3306),
- [sym_parenthesized_expression] = STATE(1294),
- [sym_expression] = STATE(1727),
- [sym_primary_expression] = STATE(1946),
- [sym_yield_expression] = STATE(2234),
- [sym_object] = STATE(2310),
- [sym_object_pattern] = STATE(5667),
- [sym_array] = STATE(2310),
- [sym_array_pattern] = STATE(5667),
- [sym_glimmer_template] = STATE(2234),
- [sym_jsx_element] = STATE(2234),
- [sym_jsx_opening_element] = STATE(3051),
- [sym_jsx_self_closing_element] = STATE(2234),
- [sym_class] = STATE(2310),
- [sym_function_expression] = STATE(2310),
- [sym_generator_function] = STATE(2310),
- [sym_arrow_function] = STATE(2310),
- [sym__call_signature] = STATE(5809),
- [sym_call_expression] = STATE(2310),
- [sym_new_expression] = STATE(2234),
- [sym_await_expression] = STATE(2234),
- [sym_member_expression] = STATE(1294),
- [sym_subscript_expression] = STATE(1294),
- [sym_assignment_expression] = STATE(2234),
- [sym__augmented_assignment_lhs] = STATE(2875),
- [sym_augmented_assignment_expression] = STATE(2234),
- [sym__destructuring_pattern] = STATE(5667),
- [sym_ternary_expression] = STATE(2234),
- [sym_binary_expression] = STATE(2234),
- [sym_unary_expression] = STATE(2234),
- [sym_update_expression] = STATE(2234),
- [sym_string] = STATE(2310),
- [sym_template_string] = STATE(2310),
- [sym_regex] = STATE(2310),
- [sym_meta_property] = STATE(2310),
- [sym_decorator] = STATE(1244),
- [sym_formal_parameters] = STATE(3742),
- [sym_non_null_expression] = STATE(1294),
- [sym_as_expression] = STATE(2234),
- [sym_satisfies_expression] = STATE(2234),
- [sym_instantiation_expression] = STATE(2234),
- [sym_internal_module] = STATE(2234),
- [sym_type_parameters] = STATE(5349),
- [aux_sym_export_statement_repeat1] = STATE(4499),
- [sym_identifier] = ACTIONS(1440),
- [anon_sym_export] = ACTIONS(1372),
- [anon_sym_type] = ACTIONS(1372),
- [anon_sym_namespace] = ACTIONS(1374),
- [anon_sym_LBRACE] = ACTIONS(700),
- [anon_sym_typeof] = ACTIONS(21),
- [anon_sym_import] = ACTIONS(133),
- [anon_sym_let] = ACTIONS(1372),
- [anon_sym_BANG] = ACTIONS(33),
- [anon_sym_LPAREN] = ACTIONS(41),
- [anon_sym_await] = ACTIONS(43),
- [anon_sym_yield] = ACTIONS(63),
- [anon_sym_LBRACK] = ACTIONS(65),
- [sym_glimmer_opening_tag] = ACTIONS(67),
- [anon_sym_DQUOTE] = ACTIONS(69),
- [anon_sym_SQUOTE] = ACTIONS(71),
- [anon_sym_class] = ACTIONS(709),
- [anon_sym_async] = ACTIONS(1378),
- [anon_sym_function] = ACTIONS(713),
- [anon_sym_new] = ACTIONS(1444),
- [anon_sym_using] = ACTIONS(81),
- [anon_sym_PLUS] = ACTIONS(21),
- [anon_sym_DASH] = ACTIONS(21),
- [anon_sym_SLASH] = ACTIONS(83),
- [anon_sym_LT] = ACTIONS(85),
- [anon_sym_TILDE] = ACTIONS(33),
- [anon_sym_void] = ACTIONS(21),
- [anon_sym_delete] = ACTIONS(21),
- [anon_sym_PLUS_PLUS] = ACTIONS(87),
- [anon_sym_DASH_DASH] = ACTIONS(87),
- [sym_comment] = ACTIONS(5),
- [anon_sym_BQUOTE] = ACTIONS(89),
- [sym_number] = ACTIONS(91),
- [sym_private_property_identifier] = ACTIONS(93),
- [sym_this] = ACTIONS(95),
- [sym_super] = ACTIONS(95),
- [sym_true] = ACTIONS(95),
- [sym_false] = ACTIONS(95),
- [sym_null] = ACTIONS(95),
- [sym_undefined] = ACTIONS(97),
- [anon_sym_AT] = ACTIONS(99),
- [anon_sym_static] = ACTIONS(1372),
- [anon_sym_readonly] = ACTIONS(1372),
- [anon_sym_get] = ACTIONS(1372),
- [anon_sym_set] = ACTIONS(1372),
- [anon_sym_declare] = ACTIONS(1372),
- [anon_sym_public] = ACTIONS(1372),
- [anon_sym_private] = ACTIONS(1372),
- [anon_sym_protected] = ACTIONS(1372),
- [anon_sym_override] = ACTIONS(1372),
- [anon_sym_module] = ACTIONS(1372),
- [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_object] = ACTIONS(1372),
- [sym_html_comment] = ACTIONS(5),
- },
- [498] = {
- [sym_import] = STATE(3334),
- [sym_parenthesized_expression] = STATE(1336),
- [sym_expression] = STATE(2082),
- [sym_primary_expression] = STATE(1468),
- [sym_yield_expression] = STATE(1634),
- [sym_object] = STATE(1650),
- [sym_object_pattern] = STATE(5745),
- [sym_array] = STATE(1650),
- [sym_array_pattern] = STATE(5745),
- [sym_glimmer_template] = STATE(1634),
- [sym_jsx_element] = STATE(1634),
- [sym_jsx_opening_element] = STATE(3026),
- [sym_jsx_self_closing_element] = STATE(1634),
- [sym_class] = STATE(1650),
- [sym_function_expression] = STATE(1650),
- [sym_generator_function] = STATE(1650),
- [sym_arrow_function] = STATE(1650),
- [sym__call_signature] = STATE(5553),
- [sym_call_expression] = STATE(1650),
- [sym_new_expression] = STATE(1634),
- [sym_await_expression] = STATE(1634),
- [sym_member_expression] = STATE(1336),
- [sym_subscript_expression] = STATE(1336),
- [sym_assignment_expression] = STATE(1634),
- [sym__augmented_assignment_lhs] = STATE(2884),
- [sym_augmented_assignment_expression] = STATE(1634),
- [sym__destructuring_pattern] = STATE(5745),
- [sym_ternary_expression] = STATE(1634),
- [sym_binary_expression] = STATE(1634),
- [sym_unary_expression] = STATE(1634),
- [sym_update_expression] = STATE(1634),
- [sym_string] = STATE(1650),
- [sym_template_string] = STATE(1650),
- [sym_regex] = STATE(1650),
- [sym_meta_property] = STATE(1650),
- [sym_decorator] = STATE(1244),
- [sym_formal_parameters] = STATE(3742),
- [sym_non_null_expression] = STATE(1336),
- [sym_as_expression] = STATE(1634),
- [sym_satisfies_expression] = STATE(1634),
- [sym_instantiation_expression] = STATE(1634),
- [sym_internal_module] = STATE(1634),
- [sym_type_parameters] = STATE(5349),
- [aux_sym_export_statement_repeat1] = STATE(4458),
- [sym_identifier] = ACTIONS(1470),
- [anon_sym_export] = ACTIONS(1250),
- [anon_sym_type] = ACTIONS(1250),
- [anon_sym_namespace] = ACTIONS(1252),
- [anon_sym_LBRACE] = ACTIONS(813),
- [anon_sym_typeof] = ACTIONS(1272),
- [anon_sym_import] = ACTIONS(133),
- [anon_sym_let] = ACTIONS(1250),
- [anon_sym_BANG] = ACTIONS(1256),
- [anon_sym_LPAREN] = ACTIONS(815),
- [anon_sym_await] = ACTIONS(1258),
- [anon_sym_yield] = ACTIONS(1260),
- [anon_sym_LBRACK] = ACTIONS(817),
- [sym_glimmer_opening_tag] = ACTIONS(148),
- [anon_sym_DQUOTE] = ACTIONS(150),
- [anon_sym_SQUOTE] = ACTIONS(152),
- [anon_sym_class] = ACTIONS(154),
- [anon_sym_async] = ACTIONS(1262),
- [anon_sym_function] = ACTIONS(158),
- [anon_sym_new] = ACTIONS(1474),
- [anon_sym_using] = ACTIONS(1266),
- [anon_sym_PLUS] = ACTIONS(1272),
- [anon_sym_DASH] = ACTIONS(1272),
- [anon_sym_SLASH] = ACTIONS(646),
- [anon_sym_LT] = ACTIONS(181),
- [anon_sym_TILDE] = ACTIONS(1256),
- [anon_sym_void] = ACTIONS(1272),
- [anon_sym_delete] = ACTIONS(1272),
- [anon_sym_PLUS_PLUS] = ACTIONS(1274),
- [anon_sym_DASH_DASH] = ACTIONS(1274),
- [sym_comment] = ACTIONS(5),
- [anon_sym_BQUOTE] = ACTIONS(825),
- [sym_number] = ACTIONS(787),
- [sym_private_property_identifier] = ACTIONS(1276),
- [sym_this] = ACTIONS(200),
- [sym_super] = ACTIONS(200),
- [sym_true] = ACTIONS(200),
- [sym_false] = ACTIONS(200),
- [sym_null] = ACTIONS(200),
- [sym_undefined] = ACTIONS(1476),
- [anon_sym_AT] = ACTIONS(99),
- [anon_sym_static] = ACTIONS(1250),
- [anon_sym_readonly] = ACTIONS(1250),
- [anon_sym_get] = ACTIONS(1250),
- [anon_sym_set] = ACTIONS(1250),
- [anon_sym_declare] = ACTIONS(1250),
- [anon_sym_public] = ACTIONS(1250),
- [anon_sym_private] = ACTIONS(1250),
- [anon_sym_protected] = ACTIONS(1250),
- [anon_sym_override] = ACTIONS(1250),
- [anon_sym_module] = ACTIONS(1250),
- [anon_sym_any] = ACTIONS(1250),
- [anon_sym_number] = ACTIONS(1250),
- [anon_sym_boolean] = ACTIONS(1250),
- [anon_sym_string] = ACTIONS(1250),
- [anon_sym_symbol] = ACTIONS(1250),
- [anon_sym_object] = ACTIONS(1250),
- [sym_html_comment] = ACTIONS(5),
- },
- [499] = {
- [sym_import] = STATE(3334),
- [sym_parenthesized_expression] = STATE(1336),
- [sym_expression] = STATE(2083),
- [sym_primary_expression] = STATE(1468),
- [sym_yield_expression] = STATE(1634),
- [sym_object] = STATE(1650),
- [sym_object_pattern] = STATE(5745),
- [sym_array] = STATE(1650),
- [sym_array_pattern] = STATE(5745),
- [sym_glimmer_template] = STATE(1634),
- [sym_jsx_element] = STATE(1634),
- [sym_jsx_opening_element] = STATE(3026),
- [sym_jsx_self_closing_element] = STATE(1634),
- [sym_class] = STATE(1650),
- [sym_function_expression] = STATE(1650),
- [sym_generator_function] = STATE(1650),
- [sym_arrow_function] = STATE(1650),
- [sym__call_signature] = STATE(5553),
- [sym_call_expression] = STATE(1650),
- [sym_new_expression] = STATE(1634),
- [sym_await_expression] = STATE(1634),
- [sym_member_expression] = STATE(1336),
- [sym_subscript_expression] = STATE(1336),
- [sym_assignment_expression] = STATE(1634),
- [sym__augmented_assignment_lhs] = STATE(2884),
- [sym_augmented_assignment_expression] = STATE(1634),
- [sym__destructuring_pattern] = STATE(5745),
- [sym_ternary_expression] = STATE(1634),
- [sym_binary_expression] = STATE(1634),
- [sym_unary_expression] = STATE(1634),
- [sym_update_expression] = STATE(1634),
- [sym_string] = STATE(1650),
- [sym_template_string] = STATE(1650),
- [sym_regex] = STATE(1650),
- [sym_meta_property] = STATE(1650),
- [sym_decorator] = STATE(1244),
- [sym_formal_parameters] = STATE(3742),
- [sym_non_null_expression] = STATE(1336),
- [sym_as_expression] = STATE(1634),
- [sym_satisfies_expression] = STATE(1634),
- [sym_instantiation_expression] = STATE(1634),
- [sym_internal_module] = STATE(1634),
- [sym_type_parameters] = STATE(5349),
- [aux_sym_export_statement_repeat1] = STATE(4458),
- [sym_identifier] = ACTIONS(1470),
- [anon_sym_export] = ACTIONS(1250),
- [anon_sym_type] = ACTIONS(1250),
- [anon_sym_namespace] = ACTIONS(1252),
- [anon_sym_LBRACE] = ACTIONS(813),
- [anon_sym_typeof] = ACTIONS(1272),
- [anon_sym_import] = ACTIONS(133),
- [anon_sym_let] = ACTIONS(1250),
- [anon_sym_BANG] = ACTIONS(1256),
- [anon_sym_LPAREN] = ACTIONS(815),
- [anon_sym_await] = ACTIONS(1258),
- [anon_sym_yield] = ACTIONS(1260),
- [anon_sym_LBRACK] = ACTIONS(817),
- [sym_glimmer_opening_tag] = ACTIONS(148),
- [anon_sym_DQUOTE] = ACTIONS(150),
- [anon_sym_SQUOTE] = ACTIONS(152),
- [anon_sym_class] = ACTIONS(154),
- [anon_sym_async] = ACTIONS(1262),
- [anon_sym_function] = ACTIONS(158),
- [anon_sym_new] = ACTIONS(1474),
- [anon_sym_using] = ACTIONS(1266),
- [anon_sym_PLUS] = ACTIONS(1272),
- [anon_sym_DASH] = ACTIONS(1272),
- [anon_sym_SLASH] = ACTIONS(646),
- [anon_sym_LT] = ACTIONS(181),
- [anon_sym_TILDE] = ACTIONS(1256),
- [anon_sym_void] = ACTIONS(1272),
- [anon_sym_delete] = ACTIONS(1272),
- [anon_sym_PLUS_PLUS] = ACTIONS(1274),
- [anon_sym_DASH_DASH] = ACTIONS(1274),
- [sym_comment] = ACTIONS(5),
- [anon_sym_BQUOTE] = ACTIONS(825),
- [sym_number] = ACTIONS(787),
- [sym_private_property_identifier] = ACTIONS(1276),
- [sym_this] = ACTIONS(200),
- [sym_super] = ACTIONS(200),
- [sym_true] = ACTIONS(200),
- [sym_false] = ACTIONS(200),
- [sym_null] = ACTIONS(200),
- [sym_undefined] = ACTIONS(1476),
- [anon_sym_AT] = ACTIONS(99),
- [anon_sym_static] = ACTIONS(1250),
- [anon_sym_readonly] = ACTIONS(1250),
- [anon_sym_get] = ACTIONS(1250),
- [anon_sym_set] = ACTIONS(1250),
- [anon_sym_declare] = ACTIONS(1250),
- [anon_sym_public] = ACTIONS(1250),
- [anon_sym_private] = ACTIONS(1250),
- [anon_sym_protected] = ACTIONS(1250),
- [anon_sym_override] = ACTIONS(1250),
- [anon_sym_module] = ACTIONS(1250),
- [anon_sym_any] = ACTIONS(1250),
- [anon_sym_number] = ACTIONS(1250),
- [anon_sym_boolean] = ACTIONS(1250),
- [anon_sym_string] = ACTIONS(1250),
- [anon_sym_symbol] = ACTIONS(1250),
- [anon_sym_object] = ACTIONS(1250),
- [sym_html_comment] = ACTIONS(5),
- },
- [500] = {
- [sym_import] = STATE(3306),
- [sym_parenthesized_expression] = STATE(1294),
- [sym_expression] = STATE(1661),
- [sym_primary_expression] = STATE(1946),
- [sym_yield_expression] = STATE(2234),
- [sym_object] = STATE(2310),
- [sym_object_pattern] = STATE(5667),
- [sym_array] = STATE(2310),
- [sym_array_pattern] = STATE(5667),
- [sym_glimmer_template] = STATE(2234),
- [sym_jsx_element] = STATE(2234),
- [sym_jsx_opening_element] = STATE(3051),
- [sym_jsx_self_closing_element] = STATE(2234),
- [sym_class] = STATE(2310),
- [sym_function_expression] = STATE(2310),
- [sym_generator_function] = STATE(2310),
- [sym_arrow_function] = STATE(2310),
- [sym__call_signature] = STATE(5809),
- [sym_call_expression] = STATE(2310),
- [sym_new_expression] = STATE(2234),
- [sym_await_expression] = STATE(2234),
- [sym_member_expression] = STATE(1294),
- [sym_subscript_expression] = STATE(1294),
- [sym_assignment_expression] = STATE(2234),
- [sym__augmented_assignment_lhs] = STATE(2875),
- [sym_augmented_assignment_expression] = STATE(2234),
- [sym__destructuring_pattern] = STATE(5667),
- [sym_ternary_expression] = STATE(2234),
- [sym_binary_expression] = STATE(2234),
- [sym_unary_expression] = STATE(2234),
- [sym_update_expression] = STATE(2234),
- [sym_string] = STATE(2310),
- [sym_template_string] = STATE(2310),
- [sym_regex] = STATE(2310),
- [sym_meta_property] = STATE(2310),
- [sym_decorator] = STATE(1244),
- [sym_formal_parameters] = STATE(3742),
- [sym_non_null_expression] = STATE(1294),
- [sym_as_expression] = STATE(2234),
- [sym_satisfies_expression] = STATE(2234),
- [sym_instantiation_expression] = STATE(2234),
- [sym_internal_module] = STATE(2234),
- [sym_type_parameters] = STATE(5349),
- [aux_sym_export_statement_repeat1] = STATE(4499),
- [sym_identifier] = ACTIONS(1440),
- [anon_sym_export] = ACTIONS(1372),
- [anon_sym_type] = ACTIONS(1372),
- [anon_sym_namespace] = ACTIONS(1374),
- [anon_sym_LBRACE] = ACTIONS(700),
- [anon_sym_typeof] = ACTIONS(21),
- [anon_sym_import] = ACTIONS(133),
- [anon_sym_let] = ACTIONS(1372),
- [anon_sym_BANG] = ACTIONS(33),
- [anon_sym_LPAREN] = ACTIONS(41),
- [anon_sym_await] = ACTIONS(43),
- [anon_sym_yield] = ACTIONS(63),
- [anon_sym_LBRACK] = ACTIONS(65),
- [sym_glimmer_opening_tag] = ACTIONS(67),
- [anon_sym_DQUOTE] = ACTIONS(69),
- [anon_sym_SQUOTE] = ACTIONS(71),
- [anon_sym_class] = ACTIONS(709),
- [anon_sym_async] = ACTIONS(1378),
- [anon_sym_function] = ACTIONS(713),
- [anon_sym_new] = ACTIONS(1444),
- [anon_sym_using] = ACTIONS(81),
- [anon_sym_PLUS] = ACTIONS(21),
- [anon_sym_DASH] = ACTIONS(21),
- [anon_sym_SLASH] = ACTIONS(83),
- [anon_sym_LT] = ACTIONS(85),
- [anon_sym_TILDE] = ACTIONS(33),
- [anon_sym_void] = ACTIONS(21),
- [anon_sym_delete] = ACTIONS(21),
- [anon_sym_PLUS_PLUS] = ACTIONS(87),
- [anon_sym_DASH_DASH] = ACTIONS(87),
- [sym_comment] = ACTIONS(5),
- [anon_sym_BQUOTE] = ACTIONS(89),
- [sym_number] = ACTIONS(91),
- [sym_private_property_identifier] = ACTIONS(93),
- [sym_this] = ACTIONS(95),
- [sym_super] = ACTIONS(95),
- [sym_true] = ACTIONS(95),
- [sym_false] = ACTIONS(95),
- [sym_null] = ACTIONS(95),
- [sym_undefined] = ACTIONS(97),
- [anon_sym_AT] = ACTIONS(99),
- [anon_sym_static] = ACTIONS(1372),
- [anon_sym_readonly] = ACTIONS(1372),
- [anon_sym_get] = ACTIONS(1372),
- [anon_sym_set] = ACTIONS(1372),
- [anon_sym_declare] = ACTIONS(1372),
- [anon_sym_public] = ACTIONS(1372),
- [anon_sym_private] = ACTIONS(1372),
- [anon_sym_protected] = ACTIONS(1372),
- [anon_sym_override] = ACTIONS(1372),
- [anon_sym_module] = ACTIONS(1372),
- [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_object] = ACTIONS(1372),
- [sym_html_comment] = ACTIONS(5),
- },
- [501] = {
- [sym_import] = STATE(3334),
- [sym_parenthesized_expression] = STATE(1390),
- [sym_expression] = STATE(2415),
- [sym_primary_expression] = STATE(1468),
- [sym_yield_expression] = STATE(1634),
- [sym_object] = STATE(1650),
- [sym_object_pattern] = STATE(5591),
- [sym_array] = STATE(1650),
- [sym_array_pattern] = STATE(5591),
- [sym_glimmer_template] = STATE(1634),
- [sym_jsx_element] = STATE(1634),
- [sym_jsx_opening_element] = STATE(3026),
- [sym_jsx_self_closing_element] = STATE(1634),
- [sym_class] = STATE(1650),
- [sym_function_expression] = STATE(1650),
- [sym_generator_function] = STATE(1650),
- [sym_arrow_function] = STATE(1650),
- [sym__call_signature] = STATE(5619),
- [sym_call_expression] = STATE(1650),
- [sym_new_expression] = STATE(1634),
- [sym_await_expression] = STATE(1634),
- [sym_member_expression] = STATE(1390),
- [sym_subscript_expression] = STATE(1390),
- [sym_assignment_expression] = STATE(1634),
- [sym__augmented_assignment_lhs] = STATE(2878),
- [sym_augmented_assignment_expression] = STATE(1634),
- [sym__destructuring_pattern] = STATE(5591),
- [sym_ternary_expression] = STATE(1634),
- [sym_binary_expression] = STATE(1634),
- [sym_unary_expression] = STATE(1634),
- [sym_update_expression] = STATE(1634),
- [sym_string] = STATE(1650),
- [sym_template_string] = STATE(1650),
- [sym_regex] = STATE(1650),
- [sym_meta_property] = STATE(1650),
- [sym_decorator] = STATE(1244),
- [sym_formal_parameters] = STATE(3742),
- [sym_non_null_expression] = STATE(1390),
- [sym_as_expression] = STATE(1634),
- [sym_satisfies_expression] = STATE(1634),
- [sym_instantiation_expression] = STATE(1634),
- [sym_internal_module] = STATE(1634),
- [sym_type_parameters] = STATE(5349),
- [aux_sym_export_statement_repeat1] = STATE(4458),
- [sym_identifier] = ACTIONS(2137),
- [anon_sym_export] = ACTIONS(2139),
- [anon_sym_type] = ACTIONS(2139),
- [anon_sym_namespace] = ACTIONS(2141),
- [anon_sym_LBRACE] = ACTIONS(845),
- [anon_sym_typeof] = ACTIONS(187),
- [anon_sym_import] = ACTIONS(133),
- [anon_sym_let] = ACTIONS(2139),
- [anon_sym_BANG] = ACTIONS(183),
- [anon_sym_LPAREN] = ACTIONS(815),
- [anon_sym_await] = ACTIONS(142),
- [anon_sym_yield] = ACTIONS(144),
- [anon_sym_LBRACK] = ACTIONS(849),
- [sym_glimmer_opening_tag] = ACTIONS(148),
- [anon_sym_DQUOTE] = ACTIONS(150),
- [anon_sym_SQUOTE] = ACTIONS(152),
- [anon_sym_class] = ACTIONS(154),
- [anon_sym_async] = ACTIONS(2143),
- [anon_sym_function] = ACTIONS(158),
- [anon_sym_new] = ACTIONS(2145),
- [anon_sym_using] = ACTIONS(166),
- [anon_sym_PLUS] = ACTIONS(187),
- [anon_sym_DASH] = ACTIONS(187),
- [anon_sym_SLASH] = ACTIONS(646),
- [anon_sym_LT] = ACTIONS(181),
- [anon_sym_TILDE] = ACTIONS(183),
- [anon_sym_void] = ACTIONS(187),
- [anon_sym_delete] = ACTIONS(187),
- [anon_sym_PLUS_PLUS] = ACTIONS(719),
- [anon_sym_DASH_DASH] = ACTIONS(719),
- [sym_comment] = ACTIONS(5),
- [anon_sym_BQUOTE] = ACTIONS(825),
- [sym_number] = ACTIONS(787),
- [sym_private_property_identifier] = ACTIONS(196),
- [sym_this] = ACTIONS(200),
- [sym_super] = ACTIONS(200),
- [sym_true] = ACTIONS(200),
- [sym_false] = ACTIONS(200),
- [sym_null] = ACTIONS(200),
- [sym_undefined] = ACTIONS(2147),
- [anon_sym_AT] = ACTIONS(99),
- [anon_sym_static] = ACTIONS(2139),
- [anon_sym_readonly] = ACTIONS(2139),
- [anon_sym_get] = ACTIONS(2139),
- [anon_sym_set] = ACTIONS(2139),
- [anon_sym_declare] = ACTIONS(2139),
- [anon_sym_public] = ACTIONS(2139),
- [anon_sym_private] = ACTIONS(2139),
- [anon_sym_protected] = ACTIONS(2139),
- [anon_sym_override] = ACTIONS(2139),
- [anon_sym_module] = ACTIONS(2139),
- [anon_sym_any] = ACTIONS(2139),
- [anon_sym_number] = ACTIONS(2139),
- [anon_sym_boolean] = ACTIONS(2139),
- [anon_sym_string] = ACTIONS(2139),
- [anon_sym_symbol] = ACTIONS(2139),
- [anon_sym_object] = ACTIONS(2139),
- [sym_html_comment] = ACTIONS(5),
- },
- [502] = {
- [sym_import] = STATE(3334),
- [sym_parenthesized_expression] = STATE(1336),
- [sym_expression] = STATE(2278),
- [sym_primary_expression] = STATE(1468),
- [sym_yield_expression] = STATE(1634),
- [sym_object] = STATE(1650),
- [sym_object_pattern] = STATE(5745),
- [sym_array] = STATE(1650),
- [sym_array_pattern] = STATE(5745),
- [sym_glimmer_template] = STATE(1634),
- [sym_jsx_element] = STATE(1634),
- [sym_jsx_opening_element] = STATE(3026),
- [sym_jsx_self_closing_element] = STATE(1634),
- [sym_class] = STATE(1650),
- [sym_function_expression] = STATE(1650),
- [sym_generator_function] = STATE(1650),
- [sym_arrow_function] = STATE(1650),
- [sym__call_signature] = STATE(5553),
- [sym_call_expression] = STATE(1650),
- [sym_new_expression] = STATE(1634),
- [sym_await_expression] = STATE(1634),
- [sym_member_expression] = STATE(1336),
- [sym_subscript_expression] = STATE(1336),
- [sym_assignment_expression] = STATE(1634),
- [sym__augmented_assignment_lhs] = STATE(2884),
- [sym_augmented_assignment_expression] = STATE(1634),
- [sym__destructuring_pattern] = STATE(5745),
- [sym_ternary_expression] = STATE(1634),
- [sym_binary_expression] = STATE(1634),
- [sym_unary_expression] = STATE(1634),
- [sym_update_expression] = STATE(1634),
- [sym_string] = STATE(1650),
- [sym_template_string] = STATE(1650),
- [sym_regex] = STATE(1650),
- [sym_meta_property] = STATE(1650),
- [sym_decorator] = STATE(1244),
- [sym_formal_parameters] = STATE(3742),
- [sym_non_null_expression] = STATE(1336),
- [sym_as_expression] = STATE(1634),
- [sym_satisfies_expression] = STATE(1634),
- [sym_instantiation_expression] = STATE(1634),
- [sym_internal_module] = STATE(1634),
- [sym_type_parameters] = STATE(5349),
- [aux_sym_export_statement_repeat1] = STATE(4458),
- [sym_identifier] = ACTIONS(1470),
- [anon_sym_export] = ACTIONS(1250),
- [anon_sym_type] = ACTIONS(1250),
- [anon_sym_namespace] = ACTIONS(1252),
- [anon_sym_LBRACE] = ACTIONS(813),
- [anon_sym_typeof] = ACTIONS(1272),
- [anon_sym_import] = ACTIONS(133),
- [anon_sym_let] = ACTIONS(1250),
- [anon_sym_BANG] = ACTIONS(1256),
- [anon_sym_LPAREN] = ACTIONS(815),
- [anon_sym_await] = ACTIONS(1258),
- [anon_sym_yield] = ACTIONS(1260),
- [anon_sym_LBRACK] = ACTIONS(817),
- [sym_glimmer_opening_tag] = ACTIONS(148),
- [anon_sym_DQUOTE] = ACTIONS(150),
- [anon_sym_SQUOTE] = ACTIONS(152),
- [anon_sym_class] = ACTIONS(154),
- [anon_sym_async] = ACTIONS(1262),
- [anon_sym_function] = ACTIONS(158),
- [anon_sym_new] = ACTIONS(1474),
- [anon_sym_using] = ACTIONS(1266),
- [anon_sym_PLUS] = ACTIONS(1272),
- [anon_sym_DASH] = ACTIONS(1272),
- [anon_sym_SLASH] = ACTIONS(646),
- [anon_sym_LT] = ACTIONS(181),
- [anon_sym_TILDE] = ACTIONS(1256),
- [anon_sym_void] = ACTIONS(1272),
- [anon_sym_delete] = ACTIONS(1272),
- [anon_sym_PLUS_PLUS] = ACTIONS(1274),
- [anon_sym_DASH_DASH] = ACTIONS(1274),
- [sym_comment] = ACTIONS(5),
- [anon_sym_BQUOTE] = ACTIONS(825),
- [sym_number] = ACTIONS(787),
- [sym_private_property_identifier] = ACTIONS(1276),
- [sym_this] = ACTIONS(200),
- [sym_super] = ACTIONS(200),
- [sym_true] = ACTIONS(200),
- [sym_false] = ACTIONS(200),
- [sym_null] = ACTIONS(200),
- [sym_undefined] = ACTIONS(1476),
- [anon_sym_AT] = ACTIONS(99),
- [anon_sym_static] = ACTIONS(1250),
- [anon_sym_readonly] = ACTIONS(1250),
- [anon_sym_get] = ACTIONS(1250),
- [anon_sym_set] = ACTIONS(1250),
- [anon_sym_declare] = ACTIONS(1250),
- [anon_sym_public] = ACTIONS(1250),
- [anon_sym_private] = ACTIONS(1250),
- [anon_sym_protected] = ACTIONS(1250),
- [anon_sym_override] = ACTIONS(1250),
- [anon_sym_module] = ACTIONS(1250),
- [anon_sym_any] = ACTIONS(1250),
- [anon_sym_number] = ACTIONS(1250),
- [anon_sym_boolean] = ACTIONS(1250),
- [anon_sym_string] = ACTIONS(1250),
- [anon_sym_symbol] = ACTIONS(1250),
- [anon_sym_object] = ACTIONS(1250),
- [sym_html_comment] = ACTIONS(5),
- },
- [503] = {
- [sym_import] = STATE(3334),
- [sym_parenthesized_expression] = STATE(1345),
- [sym_expression] = STATE(2131),
- [sym_primary_expression] = STATE(1468),
- [sym_yield_expression] = STATE(1634),
- [sym_object] = STATE(1650),
- [sym_object_pattern] = STATE(5872),
- [sym_array] = STATE(1650),
- [sym_array_pattern] = STATE(5872),
- [sym_glimmer_template] = STATE(1634),
- [sym_jsx_element] = STATE(1634),
- [sym_jsx_opening_element] = STATE(3026),
- [sym_jsx_self_closing_element] = STATE(1634),
- [sym_class] = STATE(1650),
- [sym_function_expression] = STATE(1650),
- [sym_generator_function] = STATE(1650),
- [sym_arrow_function] = STATE(1650),
- [sym__call_signature] = STATE(5904),
- [sym_call_expression] = STATE(1650),
- [sym_new_expression] = STATE(1634),
- [sym_await_expression] = STATE(1634),
- [sym_member_expression] = STATE(1345),
- [sym_subscript_expression] = STATE(1345),
- [sym_assignment_expression] = STATE(1634),
- [sym__augmented_assignment_lhs] = STATE(2898),
- [sym_augmented_assignment_expression] = STATE(1634),
- [sym__destructuring_pattern] = STATE(5872),
- [sym_ternary_expression] = STATE(1634),
- [sym_binary_expression] = STATE(1634),
- [sym_unary_expression] = STATE(1634),
- [sym_update_expression] = STATE(1634),
- [sym_string] = STATE(1650),
- [sym_template_string] = STATE(1650),
- [sym_regex] = STATE(1650),
- [sym_meta_property] = STATE(1650),
- [sym_decorator] = STATE(1244),
- [sym_formal_parameters] = STATE(3742),
- [sym_non_null_expression] = STATE(1345),
- [sym_as_expression] = STATE(1634),
- [sym_satisfies_expression] = STATE(1634),
- [sym_instantiation_expression] = STATE(1634),
- [sym_internal_module] = STATE(1634),
- [sym_type_parameters] = STATE(5349),
- [aux_sym_export_statement_repeat1] = STATE(4458),
- [sym_identifier] = ACTIONS(1486),
- [anon_sym_export] = ACTIONS(1394),
- [anon_sym_type] = ACTIONS(1394),
- [anon_sym_namespace] = ACTIONS(1396),
- [anon_sym_LBRACE] = ACTIONS(845),
- [anon_sym_typeof] = ACTIONS(1416),
- [anon_sym_import] = ACTIONS(133),
- [anon_sym_let] = ACTIONS(1394),
- [anon_sym_BANG] = ACTIONS(1400),
- [anon_sym_LPAREN] = ACTIONS(815),
- [anon_sym_await] = ACTIONS(1402),
- [anon_sym_yield] = ACTIONS(1404),
- [anon_sym_LBRACK] = ACTIONS(849),
- [sym_glimmer_opening_tag] = ACTIONS(148),
- [anon_sym_DQUOTE] = ACTIONS(150),
- [anon_sym_SQUOTE] = ACTIONS(152),
- [anon_sym_class] = ACTIONS(154),
- [anon_sym_async] = ACTIONS(1406),
- [anon_sym_function] = ACTIONS(158),
- [anon_sym_new] = ACTIONS(1490),
- [anon_sym_using] = ACTIONS(1410),
- [anon_sym_PLUS] = ACTIONS(1416),
- [anon_sym_DASH] = ACTIONS(1416),
- [anon_sym_SLASH] = ACTIONS(970),
- [anon_sym_LT] = ACTIONS(181),
- [anon_sym_TILDE] = ACTIONS(1400),
- [anon_sym_void] = ACTIONS(1416),
- [anon_sym_delete] = ACTIONS(1416),
- [anon_sym_PLUS_PLUS] = ACTIONS(1418),
- [anon_sym_DASH_DASH] = ACTIONS(1418),
- [sym_comment] = ACTIONS(5),
- [anon_sym_BQUOTE] = ACTIONS(825),
- [sym_number] = ACTIONS(787),
- [sym_private_property_identifier] = ACTIONS(1420),
- [sym_this] = ACTIONS(200),
- [sym_super] = ACTIONS(200),
- [sym_true] = ACTIONS(200),
- [sym_false] = ACTIONS(200),
- [sym_null] = ACTIONS(200),
- [sym_undefined] = ACTIONS(1492),
- [anon_sym_AT] = ACTIONS(99),
- [anon_sym_static] = ACTIONS(1394),
- [anon_sym_readonly] = ACTIONS(1394),
- [anon_sym_get] = ACTIONS(1394),
- [anon_sym_set] = ACTIONS(1394),
- [anon_sym_declare] = ACTIONS(1394),
- [anon_sym_public] = ACTIONS(1394),
- [anon_sym_private] = ACTIONS(1394),
- [anon_sym_protected] = ACTIONS(1394),
- [anon_sym_override] = ACTIONS(1394),
- [anon_sym_module] = ACTIONS(1394),
- [anon_sym_any] = ACTIONS(1394),
- [anon_sym_number] = ACTIONS(1394),
- [anon_sym_boolean] = ACTIONS(1394),
- [anon_sym_string] = ACTIONS(1394),
- [anon_sym_symbol] = ACTIONS(1394),
- [anon_sym_object] = ACTIONS(1394),
- [sym_html_comment] = ACTIONS(5),
- },
- [504] = {
- [sym_import] = STATE(3334),
- [sym_parenthesized_expression] = STATE(1369),
- [sym_expression] = STATE(2280),
- [sym_primary_expression] = STATE(1468),
- [sym_yield_expression] = STATE(1634),
- [sym_object] = STATE(1650),
- [sym_object_pattern] = STATE(5861),
- [sym_array] = STATE(1650),
- [sym_array_pattern] = STATE(5861),
- [sym_glimmer_template] = STATE(1634),
- [sym_jsx_element] = STATE(1634),
- [sym_jsx_opening_element] = STATE(3026),
- [sym_jsx_self_closing_element] = STATE(1634),
- [sym_class] = STATE(1650),
- [sym_function_expression] = STATE(1650),
- [sym_generator_function] = STATE(1650),
- [sym_arrow_function] = STATE(1650),
- [sym__call_signature] = STATE(5765),
- [sym_call_expression] = STATE(1650),
- [sym_new_expression] = STATE(1634),
- [sym_await_expression] = STATE(1634),
- [sym_member_expression] = STATE(1369),
- [sym_subscript_expression] = STATE(1369),
- [sym_assignment_expression] = STATE(1634),
- [sym__augmented_assignment_lhs] = STATE(2891),
- [sym_augmented_assignment_expression] = STATE(1634),
- [sym__destructuring_pattern] = STATE(5861),
- [sym_ternary_expression] = STATE(1634),
- [sym_binary_expression] = STATE(1634),
- [sym_unary_expression] = STATE(1634),
- [sym_update_expression] = STATE(1634),
- [sym_string] = STATE(1650),
- [sym_template_string] = STATE(1650),
- [sym_regex] = STATE(1650),
- [sym_meta_property] = STATE(1650),
- [sym_decorator] = STATE(1244),
- [sym_formal_parameters] = STATE(3742),
- [sym_non_null_expression] = STATE(1369),
- [sym_as_expression] = STATE(1634),
- [sym_satisfies_expression] = STATE(1634),
- [sym_instantiation_expression] = STATE(1634),
- [sym_internal_module] = STATE(1634),
- [sym_type_parameters] = STATE(5349),
- [aux_sym_export_statement_repeat1] = STATE(4458),
- [sym_identifier] = ACTIONS(1478),
- [anon_sym_export] = ACTIONS(1114),
- [anon_sym_type] = ACTIONS(1114),
- [anon_sym_namespace] = ACTIONS(1116),
- [anon_sym_LBRACE] = ACTIONS(813),
- [anon_sym_typeof] = ACTIONS(1138),
- [anon_sym_import] = ACTIONS(133),
- [anon_sym_let] = ACTIONS(1114),
- [anon_sym_BANG] = ACTIONS(1122),
- [anon_sym_LPAREN] = ACTIONS(815),
- [anon_sym_await] = ACTIONS(1124),
- [anon_sym_yield] = ACTIONS(1126),
- [anon_sym_LBRACK] = ACTIONS(817),
- [sym_glimmer_opening_tag] = ACTIONS(148),
- [anon_sym_DQUOTE] = ACTIONS(150),
- [anon_sym_SQUOTE] = ACTIONS(152),
- [anon_sym_class] = ACTIONS(154),
- [anon_sym_async] = ACTIONS(1128),
- [anon_sym_function] = ACTIONS(158),
- [anon_sym_new] = ACTIONS(1482),
- [anon_sym_using] = ACTIONS(1132),
- [anon_sym_PLUS] = ACTIONS(1138),
- [anon_sym_DASH] = ACTIONS(1138),
- [anon_sym_SLASH] = ACTIONS(646),
- [anon_sym_LT] = ACTIONS(181),
- [anon_sym_TILDE] = ACTIONS(1122),
- [anon_sym_void] = ACTIONS(1138),
- [anon_sym_delete] = ACTIONS(1138),
- [anon_sym_PLUS_PLUS] = ACTIONS(1140),
- [anon_sym_DASH_DASH] = ACTIONS(1140),
- [sym_comment] = ACTIONS(5),
- [anon_sym_BQUOTE] = ACTIONS(825),
- [sym_number] = ACTIONS(787),
- [sym_private_property_identifier] = ACTIONS(1142),
- [sym_this] = ACTIONS(200),
- [sym_super] = ACTIONS(200),
- [sym_true] = ACTIONS(200),
- [sym_false] = ACTIONS(200),
- [sym_null] = ACTIONS(200),
- [sym_undefined] = ACTIONS(1484),
- [anon_sym_AT] = ACTIONS(99),
- [anon_sym_static] = ACTIONS(1114),
- [anon_sym_readonly] = ACTIONS(1114),
- [anon_sym_get] = ACTIONS(1114),
- [anon_sym_set] = ACTIONS(1114),
- [anon_sym_declare] = ACTIONS(1114),
- [anon_sym_public] = ACTIONS(1114),
- [anon_sym_private] = ACTIONS(1114),
- [anon_sym_protected] = ACTIONS(1114),
- [anon_sym_override] = ACTIONS(1114),
- [anon_sym_module] = ACTIONS(1114),
- [anon_sym_any] = ACTIONS(1114),
- [anon_sym_number] = ACTIONS(1114),
- [anon_sym_boolean] = ACTIONS(1114),
- [anon_sym_string] = ACTIONS(1114),
- [anon_sym_symbol] = ACTIONS(1114),
- [anon_sym_object] = ACTIONS(1114),
- [sym_html_comment] = ACTIONS(5),
- },
- [505] = {
- [sym_import] = STATE(3334),
- [sym_parenthesized_expression] = STATE(1369),
- [sym_expression] = STATE(2281),
- [sym_primary_expression] = STATE(1468),
- [sym_yield_expression] = STATE(1634),
- [sym_object] = STATE(1650),
- [sym_object_pattern] = STATE(5861),
- [sym_array] = STATE(1650),
- [sym_array_pattern] = STATE(5861),
- [sym_glimmer_template] = STATE(1634),
- [sym_jsx_element] = STATE(1634),
- [sym_jsx_opening_element] = STATE(3026),
- [sym_jsx_self_closing_element] = STATE(1634),
- [sym_class] = STATE(1650),
- [sym_function_expression] = STATE(1650),
- [sym_generator_function] = STATE(1650),
- [sym_arrow_function] = STATE(1650),
- [sym__call_signature] = STATE(5765),
- [sym_call_expression] = STATE(1650),
- [sym_new_expression] = STATE(1634),
- [sym_await_expression] = STATE(1634),
- [sym_member_expression] = STATE(1369),
- [sym_subscript_expression] = STATE(1369),
- [sym_assignment_expression] = STATE(1634),
- [sym__augmented_assignment_lhs] = STATE(2891),
- [sym_augmented_assignment_expression] = STATE(1634),
- [sym__destructuring_pattern] = STATE(5861),
- [sym_ternary_expression] = STATE(1634),
- [sym_binary_expression] = STATE(1634),
- [sym_unary_expression] = STATE(1634),
- [sym_update_expression] = STATE(1634),
- [sym_string] = STATE(1650),
- [sym_template_string] = STATE(1650),
- [sym_regex] = STATE(1650),
- [sym_meta_property] = STATE(1650),
- [sym_decorator] = STATE(1244),
- [sym_formal_parameters] = STATE(3742),
- [sym_non_null_expression] = STATE(1369),
- [sym_as_expression] = STATE(1634),
- [sym_satisfies_expression] = STATE(1634),
- [sym_instantiation_expression] = STATE(1634),
- [sym_internal_module] = STATE(1634),
- [sym_type_parameters] = STATE(5349),
- [aux_sym_export_statement_repeat1] = STATE(4458),
- [sym_identifier] = ACTIONS(1478),
- [anon_sym_export] = ACTIONS(1114),
- [anon_sym_type] = ACTIONS(1114),
- [anon_sym_namespace] = ACTIONS(1116),
- [anon_sym_LBRACE] = ACTIONS(813),
- [anon_sym_typeof] = ACTIONS(1138),
- [anon_sym_import] = ACTIONS(133),
- [anon_sym_let] = ACTIONS(1114),
- [anon_sym_BANG] = ACTIONS(1122),
- [anon_sym_LPAREN] = ACTIONS(815),
- [anon_sym_await] = ACTIONS(1124),
- [anon_sym_yield] = ACTIONS(1126),
- [anon_sym_LBRACK] = ACTIONS(817),
- [sym_glimmer_opening_tag] = ACTIONS(148),
- [anon_sym_DQUOTE] = ACTIONS(150),
- [anon_sym_SQUOTE] = ACTIONS(152),
- [anon_sym_class] = ACTIONS(154),
- [anon_sym_async] = ACTIONS(1128),
- [anon_sym_function] = ACTIONS(158),
- [anon_sym_new] = ACTIONS(1482),
- [anon_sym_using] = ACTIONS(1132),
- [anon_sym_PLUS] = ACTIONS(1138),
- [anon_sym_DASH] = ACTIONS(1138),
- [anon_sym_SLASH] = ACTIONS(646),
- [anon_sym_LT] = ACTIONS(181),
- [anon_sym_TILDE] = ACTIONS(1122),
- [anon_sym_void] = ACTIONS(1138),
- [anon_sym_delete] = ACTIONS(1138),
- [anon_sym_PLUS_PLUS] = ACTIONS(1140),
- [anon_sym_DASH_DASH] = ACTIONS(1140),
- [sym_comment] = ACTIONS(5),
- [anon_sym_BQUOTE] = ACTIONS(825),
- [sym_number] = ACTIONS(787),
- [sym_private_property_identifier] = ACTIONS(1142),
- [sym_this] = ACTIONS(200),
- [sym_super] = ACTIONS(200),
- [sym_true] = ACTIONS(200),
- [sym_false] = ACTIONS(200),
- [sym_null] = ACTIONS(200),
- [sym_undefined] = ACTIONS(1484),
- [anon_sym_AT] = ACTIONS(99),
- [anon_sym_static] = ACTIONS(1114),
- [anon_sym_readonly] = ACTIONS(1114),
- [anon_sym_get] = ACTIONS(1114),
- [anon_sym_set] = ACTIONS(1114),
- [anon_sym_declare] = ACTIONS(1114),
- [anon_sym_public] = ACTIONS(1114),
- [anon_sym_private] = ACTIONS(1114),
- [anon_sym_protected] = ACTIONS(1114),
- [anon_sym_override] = ACTIONS(1114),
- [anon_sym_module] = ACTIONS(1114),
- [anon_sym_any] = ACTIONS(1114),
- [anon_sym_number] = ACTIONS(1114),
- [anon_sym_boolean] = ACTIONS(1114),
- [anon_sym_string] = ACTIONS(1114),
- [anon_sym_symbol] = ACTIONS(1114),
- [anon_sym_object] = ACTIONS(1114),
- [sym_html_comment] = ACTIONS(5),
- },
- [506] = {
- [sym_import] = STATE(3334),
- [sym_parenthesized_expression] = STATE(1369),
- [sym_expression] = STATE(2282),
- [sym_primary_expression] = STATE(1468),
- [sym_yield_expression] = STATE(1634),
- [sym_object] = STATE(1650),
- [sym_object_pattern] = STATE(5861),
- [sym_array] = STATE(1650),
- [sym_array_pattern] = STATE(5861),
- [sym_glimmer_template] = STATE(1634),
- [sym_jsx_element] = STATE(1634),
- [sym_jsx_opening_element] = STATE(3026),
- [sym_jsx_self_closing_element] = STATE(1634),
- [sym_class] = STATE(1650),
- [sym_function_expression] = STATE(1650),
- [sym_generator_function] = STATE(1650),
- [sym_arrow_function] = STATE(1650),
- [sym__call_signature] = STATE(5765),
- [sym_call_expression] = STATE(1650),
- [sym_new_expression] = STATE(1634),
- [sym_await_expression] = STATE(1634),
- [sym_member_expression] = STATE(1369),
- [sym_subscript_expression] = STATE(1369),
- [sym_assignment_expression] = STATE(1634),
- [sym__augmented_assignment_lhs] = STATE(2891),
- [sym_augmented_assignment_expression] = STATE(1634),
- [sym__destructuring_pattern] = STATE(5861),
- [sym_ternary_expression] = STATE(1634),
- [sym_binary_expression] = STATE(1634),
- [sym_unary_expression] = STATE(1634),
- [sym_update_expression] = STATE(1634),
- [sym_string] = STATE(1650),
- [sym_template_string] = STATE(1650),
- [sym_regex] = STATE(1650),
- [sym_meta_property] = STATE(1650),
- [sym_decorator] = STATE(1244),
- [sym_formal_parameters] = STATE(3742),
- [sym_non_null_expression] = STATE(1369),
- [sym_as_expression] = STATE(1634),
- [sym_satisfies_expression] = STATE(1634),
- [sym_instantiation_expression] = STATE(1634),
- [sym_internal_module] = STATE(1634),
- [sym_type_parameters] = STATE(5349),
- [aux_sym_export_statement_repeat1] = STATE(4458),
- [sym_identifier] = ACTIONS(1478),
- [anon_sym_export] = ACTIONS(1114),
- [anon_sym_type] = ACTIONS(1114),
- [anon_sym_namespace] = ACTIONS(1116),
- [anon_sym_LBRACE] = ACTIONS(813),
- [anon_sym_typeof] = ACTIONS(1138),
- [anon_sym_import] = ACTIONS(133),
- [anon_sym_let] = ACTIONS(1114),
- [anon_sym_BANG] = ACTIONS(1122),
- [anon_sym_LPAREN] = ACTIONS(815),
- [anon_sym_await] = ACTIONS(1124),
- [anon_sym_yield] = ACTIONS(1126),
- [anon_sym_LBRACK] = ACTIONS(817),
- [sym_glimmer_opening_tag] = ACTIONS(148),
- [anon_sym_DQUOTE] = ACTIONS(150),
- [anon_sym_SQUOTE] = ACTIONS(152),
- [anon_sym_class] = ACTIONS(154),
- [anon_sym_async] = ACTIONS(1128),
- [anon_sym_function] = ACTIONS(158),
- [anon_sym_new] = ACTIONS(1482),
- [anon_sym_using] = ACTIONS(1132),
- [anon_sym_PLUS] = ACTIONS(1138),
- [anon_sym_DASH] = ACTIONS(1138),
- [anon_sym_SLASH] = ACTIONS(646),
- [anon_sym_LT] = ACTIONS(181),
- [anon_sym_TILDE] = ACTIONS(1122),
- [anon_sym_void] = ACTIONS(1138),
- [anon_sym_delete] = ACTIONS(1138),
- [anon_sym_PLUS_PLUS] = ACTIONS(1140),
- [anon_sym_DASH_DASH] = ACTIONS(1140),
- [sym_comment] = ACTIONS(5),
- [anon_sym_BQUOTE] = ACTIONS(825),
- [sym_number] = ACTIONS(787),
- [sym_private_property_identifier] = ACTIONS(1142),
- [sym_this] = ACTIONS(200),
- [sym_super] = ACTIONS(200),
- [sym_true] = ACTIONS(200),
- [sym_false] = ACTIONS(200),
- [sym_null] = ACTIONS(200),
- [sym_undefined] = ACTIONS(1484),
- [anon_sym_AT] = ACTIONS(99),
- [anon_sym_static] = ACTIONS(1114),
- [anon_sym_readonly] = ACTIONS(1114),
- [anon_sym_get] = ACTIONS(1114),
- [anon_sym_set] = ACTIONS(1114),
- [anon_sym_declare] = ACTIONS(1114),
- [anon_sym_public] = ACTIONS(1114),
- [anon_sym_private] = ACTIONS(1114),
- [anon_sym_protected] = ACTIONS(1114),
- [anon_sym_override] = ACTIONS(1114),
- [anon_sym_module] = ACTIONS(1114),
- [anon_sym_any] = ACTIONS(1114),
- [anon_sym_number] = ACTIONS(1114),
- [anon_sym_boolean] = ACTIONS(1114),
- [anon_sym_string] = ACTIONS(1114),
- [anon_sym_symbol] = ACTIONS(1114),
- [anon_sym_object] = ACTIONS(1114),
- [sym_html_comment] = ACTIONS(5),
- },
- [507] = {
- [sym_import] = STATE(3334),
- [sym_parenthesized_expression] = STATE(1179),
- [sym_expression] = STATE(2405),
- [sym_primary_expression] = STATE(1468),
- [sym_yield_expression] = STATE(1634),
- [sym_object] = STATE(1650),
- [sym_object_pattern] = STATE(5854),
- [sym_array] = STATE(1650),
- [sym_array_pattern] = STATE(5854),
- [sym_glimmer_template] = STATE(1634),
- [sym_jsx_element] = STATE(1634),
- [sym_jsx_opening_element] = STATE(3026),
- [sym_jsx_self_closing_element] = STATE(1634),
- [sym_class] = STATE(1650),
- [sym_function_expression] = STATE(1650),
- [sym_generator_function] = STATE(1650),
- [sym_arrow_function] = STATE(1650),
- [sym__call_signature] = STATE(5619),
- [sym_call_expression] = STATE(1650),
- [sym_new_expression] = STATE(1634),
- [sym_await_expression] = STATE(1634),
- [sym_member_expression] = STATE(1179),
- [sym_subscript_expression] = STATE(1179),
- [sym_assignment_expression] = STATE(1634),
- [sym__augmented_assignment_lhs] = STATE(2878),
- [sym_augmented_assignment_expression] = STATE(1634),
- [sym__destructuring_pattern] = STATE(5854),
- [sym_ternary_expression] = STATE(1634),
- [sym_binary_expression] = STATE(1634),
- [sym_unary_expression] = STATE(1634),
- [sym_update_expression] = STATE(1634),
- [sym_string] = STATE(1650),
- [sym_template_string] = STATE(1650),
- [sym_regex] = STATE(1650),
- [sym_meta_property] = STATE(1650),
- [sym_decorator] = STATE(1244),
- [sym_formal_parameters] = STATE(3742),
- [sym_non_null_expression] = STATE(1179),
- [sym_as_expression] = STATE(1634),
- [sym_satisfies_expression] = STATE(1634),
- [sym_instantiation_expression] = STATE(1634),
- [sym_internal_module] = STATE(1634),
- [sym_type_parameters] = STATE(5349),
- [aux_sym_export_statement_repeat1] = STATE(4458),
- [sym_identifier] = ACTIONS(837),
- [anon_sym_export] = ACTIONS(839),
- [anon_sym_type] = ACTIONS(839),
- [anon_sym_namespace] = ACTIONS(843),
- [anon_sym_LBRACE] = ACTIONS(845),
- [anon_sym_typeof] = ACTIONS(187),
- [anon_sym_import] = ACTIONS(133),
- [anon_sym_let] = ACTIONS(839),
- [anon_sym_BANG] = ACTIONS(183),
- [anon_sym_LPAREN] = ACTIONS(815),
- [anon_sym_await] = ACTIONS(142),
- [anon_sym_yield] = ACTIONS(144),
- [anon_sym_LBRACK] = ACTIONS(849),
- [sym_glimmer_opening_tag] = ACTIONS(148),
- [anon_sym_DQUOTE] = ACTIONS(150),
- [anon_sym_SQUOTE] = ACTIONS(152),
- [anon_sym_class] = ACTIONS(154),
- [anon_sym_async] = ACTIONS(851),
- [anon_sym_function] = ACTIONS(158),
- [anon_sym_new] = ACTIONS(853),
- [anon_sym_using] = ACTIONS(166),
- [anon_sym_PLUS] = ACTIONS(187),
- [anon_sym_DASH] = ACTIONS(187),
- [anon_sym_SLASH] = ACTIONS(646),
- [anon_sym_LT] = ACTIONS(181),
- [anon_sym_TILDE] = ACTIONS(183),
- [anon_sym_void] = ACTIONS(187),
- [anon_sym_delete] = ACTIONS(187),
- [anon_sym_PLUS_PLUS] = ACTIONS(719),
- [anon_sym_DASH_DASH] = ACTIONS(719),
- [sym_comment] = ACTIONS(5),
- [anon_sym_BQUOTE] = ACTIONS(825),
- [sym_number] = ACTIONS(2149),
- [sym_private_property_identifier] = ACTIONS(196),
- [sym_this] = ACTIONS(200),
- [sym_super] = ACTIONS(200),
- [sym_true] = ACTIONS(200),
- [sym_false] = ACTIONS(200),
- [sym_null] = ACTIONS(200),
- [sym_undefined] = ACTIONS(827),
- [anon_sym_AT] = ACTIONS(99),
- [anon_sym_static] = ACTIONS(839),
- [anon_sym_readonly] = ACTIONS(839),
- [anon_sym_get] = ACTIONS(839),
- [anon_sym_set] = ACTIONS(839),
- [anon_sym_declare] = ACTIONS(839),
- [anon_sym_public] = ACTIONS(839),
- [anon_sym_private] = ACTIONS(839),
- [anon_sym_protected] = ACTIONS(839),
- [anon_sym_override] = ACTIONS(839),
- [anon_sym_module] = ACTIONS(839),
- [anon_sym_any] = ACTIONS(839),
- [anon_sym_number] = ACTIONS(839),
- [anon_sym_boolean] = ACTIONS(839),
- [anon_sym_string] = ACTIONS(839),
- [anon_sym_symbol] = ACTIONS(839),
- [anon_sym_object] = ACTIONS(839),
- [sym_html_comment] = ACTIONS(5),
- },
- [508] = {
- [sym_import] = STATE(3334),
- [sym_parenthesized_expression] = STATE(1369),
- [sym_expression] = STATE(2284),
- [sym_primary_expression] = STATE(1468),
- [sym_yield_expression] = STATE(1634),
- [sym_object] = STATE(1650),
- [sym_object_pattern] = STATE(5861),
- [sym_array] = STATE(1650),
- [sym_array_pattern] = STATE(5861),
- [sym_glimmer_template] = STATE(1634),
- [sym_jsx_element] = STATE(1634),
- [sym_jsx_opening_element] = STATE(3026),
- [sym_jsx_self_closing_element] = STATE(1634),
- [sym_class] = STATE(1650),
- [sym_function_expression] = STATE(1650),
- [sym_generator_function] = STATE(1650),
- [sym_arrow_function] = STATE(1650),
- [sym__call_signature] = STATE(5765),
- [sym_call_expression] = STATE(1650),
- [sym_new_expression] = STATE(1634),
- [sym_await_expression] = STATE(1634),
- [sym_member_expression] = STATE(1369),
- [sym_subscript_expression] = STATE(1369),
- [sym_assignment_expression] = STATE(1634),
- [sym__augmented_assignment_lhs] = STATE(2891),
- [sym_augmented_assignment_expression] = STATE(1634),
- [sym__destructuring_pattern] = STATE(5861),
- [sym_ternary_expression] = STATE(1634),
- [sym_binary_expression] = STATE(1634),
- [sym_unary_expression] = STATE(1634),
- [sym_update_expression] = STATE(1634),
- [sym_string] = STATE(1650),
- [sym_template_string] = STATE(1650),
- [sym_regex] = STATE(1650),
- [sym_meta_property] = STATE(1650),
- [sym_decorator] = STATE(1244),
- [sym_formal_parameters] = STATE(3742),
- [sym_non_null_expression] = STATE(1369),
- [sym_as_expression] = STATE(1634),
- [sym_satisfies_expression] = STATE(1634),
- [sym_instantiation_expression] = STATE(1634),
- [sym_internal_module] = STATE(1634),
- [sym_type_parameters] = STATE(5349),
- [aux_sym_export_statement_repeat1] = STATE(4458),
- [sym_identifier] = ACTIONS(1478),
- [anon_sym_export] = ACTIONS(1114),
- [anon_sym_type] = ACTIONS(1114),
- [anon_sym_namespace] = ACTIONS(1116),
- [anon_sym_LBRACE] = ACTIONS(813),
- [anon_sym_typeof] = ACTIONS(1138),
- [anon_sym_import] = ACTIONS(133),
- [anon_sym_let] = ACTIONS(1114),
- [anon_sym_BANG] = ACTIONS(1122),
- [anon_sym_LPAREN] = ACTIONS(815),
- [anon_sym_await] = ACTIONS(1124),
- [anon_sym_yield] = ACTIONS(1126),
- [anon_sym_LBRACK] = ACTIONS(817),
- [sym_glimmer_opening_tag] = ACTIONS(148),
- [anon_sym_DQUOTE] = ACTIONS(150),
- [anon_sym_SQUOTE] = ACTIONS(152),
- [anon_sym_class] = ACTIONS(154),
- [anon_sym_async] = ACTIONS(1128),
- [anon_sym_function] = ACTIONS(158),
- [anon_sym_new] = ACTIONS(1482),
- [anon_sym_using] = ACTIONS(1132),
- [anon_sym_PLUS] = ACTIONS(1138),
- [anon_sym_DASH] = ACTIONS(1138),
- [anon_sym_SLASH] = ACTIONS(646),
- [anon_sym_LT] = ACTIONS(181),
- [anon_sym_TILDE] = ACTIONS(1122),
- [anon_sym_void] = ACTIONS(1138),
- [anon_sym_delete] = ACTIONS(1138),
- [anon_sym_PLUS_PLUS] = ACTIONS(1140),
- [anon_sym_DASH_DASH] = ACTIONS(1140),
- [sym_comment] = ACTIONS(5),
- [anon_sym_BQUOTE] = ACTIONS(825),
- [sym_number] = ACTIONS(787),
- [sym_private_property_identifier] = ACTIONS(1142),
- [sym_this] = ACTIONS(200),
- [sym_super] = ACTIONS(200),
- [sym_true] = ACTIONS(200),
- [sym_false] = ACTIONS(200),
- [sym_null] = ACTIONS(200),
- [sym_undefined] = ACTIONS(1484),
- [anon_sym_AT] = ACTIONS(99),
- [anon_sym_static] = ACTIONS(1114),
- [anon_sym_readonly] = ACTIONS(1114),
- [anon_sym_get] = ACTIONS(1114),
- [anon_sym_set] = ACTIONS(1114),
- [anon_sym_declare] = ACTIONS(1114),
- [anon_sym_public] = ACTIONS(1114),
- [anon_sym_private] = ACTIONS(1114),
- [anon_sym_protected] = ACTIONS(1114),
- [anon_sym_override] = ACTIONS(1114),
- [anon_sym_module] = ACTIONS(1114),
- [anon_sym_any] = ACTIONS(1114),
- [anon_sym_number] = ACTIONS(1114),
- [anon_sym_boolean] = ACTIONS(1114),
- [anon_sym_string] = ACTIONS(1114),
- [anon_sym_symbol] = ACTIONS(1114),
- [anon_sym_object] = ACTIONS(1114),
- [sym_html_comment] = ACTIONS(5),
- },
- [509] = {
- [sym_import] = STATE(3334),
- [sym_parenthesized_expression] = STATE(1369),
- [sym_expression] = STATE(2285),
- [sym_primary_expression] = STATE(1468),
- [sym_yield_expression] = STATE(1634),
- [sym_object] = STATE(1650),
- [sym_object_pattern] = STATE(5861),
- [sym_array] = STATE(1650),
- [sym_array_pattern] = STATE(5861),
- [sym_glimmer_template] = STATE(1634),
- [sym_jsx_element] = STATE(1634),
- [sym_jsx_opening_element] = STATE(3026),
- [sym_jsx_self_closing_element] = STATE(1634),
- [sym_class] = STATE(1650),
- [sym_function_expression] = STATE(1650),
- [sym_generator_function] = STATE(1650),
- [sym_arrow_function] = STATE(1650),
- [sym__call_signature] = STATE(5765),
- [sym_call_expression] = STATE(1650),
- [sym_new_expression] = STATE(1634),
- [sym_await_expression] = STATE(1634),
- [sym_member_expression] = STATE(1369),
- [sym_subscript_expression] = STATE(1369),
- [sym_assignment_expression] = STATE(1634),
- [sym__augmented_assignment_lhs] = STATE(2891),
- [sym_augmented_assignment_expression] = STATE(1634),
- [sym__destructuring_pattern] = STATE(5861),
- [sym_ternary_expression] = STATE(1634),
- [sym_binary_expression] = STATE(1634),
- [sym_unary_expression] = STATE(1634),
- [sym_update_expression] = STATE(1634),
- [sym_string] = STATE(1650),
- [sym_template_string] = STATE(1650),
- [sym_regex] = STATE(1650),
- [sym_meta_property] = STATE(1650),
- [sym_decorator] = STATE(1244),
- [sym_formal_parameters] = STATE(3742),
- [sym_non_null_expression] = STATE(1369),
- [sym_as_expression] = STATE(1634),
- [sym_satisfies_expression] = STATE(1634),
- [sym_instantiation_expression] = STATE(1634),
- [sym_internal_module] = STATE(1634),
- [sym_type_parameters] = STATE(5349),
- [aux_sym_export_statement_repeat1] = STATE(4458),
- [sym_identifier] = ACTIONS(1478),
- [anon_sym_export] = ACTIONS(1114),
- [anon_sym_type] = ACTIONS(1114),
- [anon_sym_namespace] = ACTIONS(1116),
- [anon_sym_LBRACE] = ACTIONS(813),
- [anon_sym_typeof] = ACTIONS(1138),
- [anon_sym_import] = ACTIONS(133),
- [anon_sym_let] = ACTIONS(1114),
- [anon_sym_BANG] = ACTIONS(1122),
- [anon_sym_LPAREN] = ACTIONS(815),
- [anon_sym_await] = ACTIONS(1124),
- [anon_sym_yield] = ACTIONS(1126),
- [anon_sym_LBRACK] = ACTIONS(817),
- [sym_glimmer_opening_tag] = ACTIONS(148),
- [anon_sym_DQUOTE] = ACTIONS(150),
- [anon_sym_SQUOTE] = ACTIONS(152),
- [anon_sym_class] = ACTIONS(154),
- [anon_sym_async] = ACTIONS(1128),
- [anon_sym_function] = ACTIONS(158),
- [anon_sym_new] = ACTIONS(1482),
- [anon_sym_using] = ACTIONS(1132),
- [anon_sym_PLUS] = ACTIONS(1138),
- [anon_sym_DASH] = ACTIONS(1138),
- [anon_sym_SLASH] = ACTIONS(646),
- [anon_sym_LT] = ACTIONS(181),
- [anon_sym_TILDE] = ACTIONS(1122),
- [anon_sym_void] = ACTIONS(1138),
- [anon_sym_delete] = ACTIONS(1138),
- [anon_sym_PLUS_PLUS] = ACTIONS(1140),
- [anon_sym_DASH_DASH] = ACTIONS(1140),
- [sym_comment] = ACTIONS(5),
- [anon_sym_BQUOTE] = ACTIONS(825),
- [sym_number] = ACTIONS(787),
- [sym_private_property_identifier] = ACTIONS(1142),
- [sym_this] = ACTIONS(200),
- [sym_super] = ACTIONS(200),
- [sym_true] = ACTIONS(200),
- [sym_false] = ACTIONS(200),
- [sym_null] = ACTIONS(200),
- [sym_undefined] = ACTIONS(1484),
- [anon_sym_AT] = ACTIONS(99),
- [anon_sym_static] = ACTIONS(1114),
- [anon_sym_readonly] = ACTIONS(1114),
- [anon_sym_get] = ACTIONS(1114),
- [anon_sym_set] = ACTIONS(1114),
- [anon_sym_declare] = ACTIONS(1114),
- [anon_sym_public] = ACTIONS(1114),
- [anon_sym_private] = ACTIONS(1114),
- [anon_sym_protected] = ACTIONS(1114),
- [anon_sym_override] = ACTIONS(1114),
- [anon_sym_module] = ACTIONS(1114),
- [anon_sym_any] = ACTIONS(1114),
- [anon_sym_number] = ACTIONS(1114),
- [anon_sym_boolean] = ACTIONS(1114),
- [anon_sym_string] = ACTIONS(1114),
- [anon_sym_symbol] = ACTIONS(1114),
- [anon_sym_object] = ACTIONS(1114),
- [sym_html_comment] = ACTIONS(5),
- },
- [510] = {
- [sym_import] = STATE(3334),
- [sym_parenthesized_expression] = STATE(1369),
- [sym_expression] = STATE(2286),
- [sym_primary_expression] = STATE(1468),
- [sym_yield_expression] = STATE(1634),
- [sym_object] = STATE(1650),
- [sym_object_pattern] = STATE(5861),
- [sym_array] = STATE(1650),
- [sym_array_pattern] = STATE(5861),
- [sym_glimmer_template] = STATE(1634),
- [sym_jsx_element] = STATE(1634),
- [sym_jsx_opening_element] = STATE(3026),
- [sym_jsx_self_closing_element] = STATE(1634),
- [sym_class] = STATE(1650),
- [sym_function_expression] = STATE(1650),
- [sym_generator_function] = STATE(1650),
- [sym_arrow_function] = STATE(1650),
- [sym__call_signature] = STATE(5765),
- [sym_call_expression] = STATE(1650),
- [sym_new_expression] = STATE(1634),
- [sym_await_expression] = STATE(1634),
- [sym_member_expression] = STATE(1369),
- [sym_subscript_expression] = STATE(1369),
- [sym_assignment_expression] = STATE(1634),
- [sym__augmented_assignment_lhs] = STATE(2891),
- [sym_augmented_assignment_expression] = STATE(1634),
- [sym__destructuring_pattern] = STATE(5861),
- [sym_ternary_expression] = STATE(1634),
- [sym_binary_expression] = STATE(1634),
- [sym_unary_expression] = STATE(1634),
- [sym_update_expression] = STATE(1634),
- [sym_string] = STATE(1650),
- [sym_template_string] = STATE(1650),
- [sym_regex] = STATE(1650),
- [sym_meta_property] = STATE(1650),
- [sym_decorator] = STATE(1244),
- [sym_formal_parameters] = STATE(3742),
- [sym_non_null_expression] = STATE(1369),
- [sym_as_expression] = STATE(1634),
- [sym_satisfies_expression] = STATE(1634),
- [sym_instantiation_expression] = STATE(1634),
- [sym_internal_module] = STATE(1634),
- [sym_type_parameters] = STATE(5349),
- [aux_sym_export_statement_repeat1] = STATE(4458),
- [sym_identifier] = ACTIONS(1478),
- [anon_sym_export] = ACTIONS(1114),
- [anon_sym_type] = ACTIONS(1114),
- [anon_sym_namespace] = ACTIONS(1116),
- [anon_sym_LBRACE] = ACTIONS(813),
- [anon_sym_typeof] = ACTIONS(1138),
- [anon_sym_import] = ACTIONS(133),
- [anon_sym_let] = ACTIONS(1114),
- [anon_sym_BANG] = ACTIONS(1122),
- [anon_sym_LPAREN] = ACTIONS(815),
- [anon_sym_await] = ACTIONS(1124),
- [anon_sym_yield] = ACTIONS(1126),
- [anon_sym_LBRACK] = ACTIONS(817),
- [sym_glimmer_opening_tag] = ACTIONS(148),
- [anon_sym_DQUOTE] = ACTIONS(150),
- [anon_sym_SQUOTE] = ACTIONS(152),
- [anon_sym_class] = ACTIONS(154),
- [anon_sym_async] = ACTIONS(1128),
- [anon_sym_function] = ACTIONS(158),
- [anon_sym_new] = ACTIONS(1482),
- [anon_sym_using] = ACTIONS(1132),
- [anon_sym_PLUS] = ACTIONS(1138),
- [anon_sym_DASH] = ACTIONS(1138),
- [anon_sym_SLASH] = ACTIONS(646),
- [anon_sym_LT] = ACTIONS(181),
- [anon_sym_TILDE] = ACTIONS(1122),
- [anon_sym_void] = ACTIONS(1138),
- [anon_sym_delete] = ACTIONS(1138),
- [anon_sym_PLUS_PLUS] = ACTIONS(1140),
- [anon_sym_DASH_DASH] = ACTIONS(1140),
- [sym_comment] = ACTIONS(5),
- [anon_sym_BQUOTE] = ACTIONS(825),
- [sym_number] = ACTIONS(787),
- [sym_private_property_identifier] = ACTIONS(1142),
- [sym_this] = ACTIONS(200),
- [sym_super] = ACTIONS(200),
- [sym_true] = ACTIONS(200),
- [sym_false] = ACTIONS(200),
- [sym_null] = ACTIONS(200),
- [sym_undefined] = ACTIONS(1484),
- [anon_sym_AT] = ACTIONS(99),
- [anon_sym_static] = ACTIONS(1114),
- [anon_sym_readonly] = ACTIONS(1114),
- [anon_sym_get] = ACTIONS(1114),
- [anon_sym_set] = ACTIONS(1114),
- [anon_sym_declare] = ACTIONS(1114),
- [anon_sym_public] = ACTIONS(1114),
- [anon_sym_private] = ACTIONS(1114),
- [anon_sym_protected] = ACTIONS(1114),
- [anon_sym_override] = ACTIONS(1114),
- [anon_sym_module] = ACTIONS(1114),
- [anon_sym_any] = ACTIONS(1114),
- [anon_sym_number] = ACTIONS(1114),
- [anon_sym_boolean] = ACTIONS(1114),
- [anon_sym_string] = ACTIONS(1114),
- [anon_sym_symbol] = ACTIONS(1114),
- [anon_sym_object] = ACTIONS(1114),
- [sym_html_comment] = ACTIONS(5),
- },
- [511] = {
- [sym_import] = STATE(3334),
- [sym_parenthesized_expression] = STATE(1369),
- [sym_expression] = STATE(2287),
- [sym_primary_expression] = STATE(1468),
- [sym_yield_expression] = STATE(1634),
- [sym_object] = STATE(1650),
- [sym_object_pattern] = STATE(5861),
- [sym_array] = STATE(1650),
- [sym_array_pattern] = STATE(5861),
- [sym_glimmer_template] = STATE(1634),
- [sym_jsx_element] = STATE(1634),
- [sym_jsx_opening_element] = STATE(3026),
- [sym_jsx_self_closing_element] = STATE(1634),
- [sym_class] = STATE(1650),
- [sym_function_expression] = STATE(1650),
- [sym_generator_function] = STATE(1650),
- [sym_arrow_function] = STATE(1650),
- [sym__call_signature] = STATE(5765),
- [sym_call_expression] = STATE(1650),
- [sym_new_expression] = STATE(1634),
- [sym_await_expression] = STATE(1634),
- [sym_member_expression] = STATE(1369),
- [sym_subscript_expression] = STATE(1369),
- [sym_assignment_expression] = STATE(1634),
- [sym__augmented_assignment_lhs] = STATE(2891),
- [sym_augmented_assignment_expression] = STATE(1634),
- [sym__destructuring_pattern] = STATE(5861),
- [sym_ternary_expression] = STATE(1634),
- [sym_binary_expression] = STATE(1634),
- [sym_unary_expression] = STATE(1634),
- [sym_update_expression] = STATE(1634),
- [sym_string] = STATE(1650),
- [sym_template_string] = STATE(1650),
- [sym_regex] = STATE(1650),
- [sym_meta_property] = STATE(1650),
- [sym_decorator] = STATE(1244),
- [sym_formal_parameters] = STATE(3742),
- [sym_non_null_expression] = STATE(1369),
- [sym_as_expression] = STATE(1634),
- [sym_satisfies_expression] = STATE(1634),
- [sym_instantiation_expression] = STATE(1634),
- [sym_internal_module] = STATE(1634),
- [sym_type_parameters] = STATE(5349),
- [aux_sym_export_statement_repeat1] = STATE(4458),
- [sym_identifier] = ACTIONS(1478),
- [anon_sym_export] = ACTIONS(1114),
- [anon_sym_type] = ACTIONS(1114),
- [anon_sym_namespace] = ACTIONS(1116),
- [anon_sym_LBRACE] = ACTIONS(813),
- [anon_sym_typeof] = ACTIONS(1138),
- [anon_sym_import] = ACTIONS(133),
- [anon_sym_let] = ACTIONS(1114),
- [anon_sym_BANG] = ACTIONS(1122),
- [anon_sym_LPAREN] = ACTIONS(815),
- [anon_sym_await] = ACTIONS(1124),
- [anon_sym_yield] = ACTIONS(1126),
- [anon_sym_LBRACK] = ACTIONS(817),
- [sym_glimmer_opening_tag] = ACTIONS(148),
- [anon_sym_DQUOTE] = ACTIONS(150),
- [anon_sym_SQUOTE] = ACTIONS(152),
- [anon_sym_class] = ACTIONS(154),
- [anon_sym_async] = ACTIONS(1128),
- [anon_sym_function] = ACTIONS(158),
- [anon_sym_new] = ACTIONS(1482),
- [anon_sym_using] = ACTIONS(1132),
- [anon_sym_PLUS] = ACTIONS(1138),
- [anon_sym_DASH] = ACTIONS(1138),
- [anon_sym_SLASH] = ACTIONS(646),
- [anon_sym_LT] = ACTIONS(181),
- [anon_sym_TILDE] = ACTIONS(1122),
- [anon_sym_void] = ACTIONS(1138),
- [anon_sym_delete] = ACTIONS(1138),
- [anon_sym_PLUS_PLUS] = ACTIONS(1140),
- [anon_sym_DASH_DASH] = ACTIONS(1140),
- [sym_comment] = ACTIONS(5),
- [anon_sym_BQUOTE] = ACTIONS(825),
- [sym_number] = ACTIONS(787),
- [sym_private_property_identifier] = ACTIONS(1142),
- [sym_this] = ACTIONS(200),
- [sym_super] = ACTIONS(200),
- [sym_true] = ACTIONS(200),
- [sym_false] = ACTIONS(200),
- [sym_null] = ACTIONS(200),
- [sym_undefined] = ACTIONS(1484),
- [anon_sym_AT] = ACTIONS(99),
- [anon_sym_static] = ACTIONS(1114),
- [anon_sym_readonly] = ACTIONS(1114),
- [anon_sym_get] = ACTIONS(1114),
- [anon_sym_set] = ACTIONS(1114),
- [anon_sym_declare] = ACTIONS(1114),
- [anon_sym_public] = ACTIONS(1114),
- [anon_sym_private] = ACTIONS(1114),
- [anon_sym_protected] = ACTIONS(1114),
- [anon_sym_override] = ACTIONS(1114),
- [anon_sym_module] = ACTIONS(1114),
- [anon_sym_any] = ACTIONS(1114),
- [anon_sym_number] = ACTIONS(1114),
- [anon_sym_boolean] = ACTIONS(1114),
- [anon_sym_string] = ACTIONS(1114),
- [anon_sym_symbol] = ACTIONS(1114),
- [anon_sym_object] = ACTIONS(1114),
- [sym_html_comment] = ACTIONS(5),
- },
- [512] = {
- [sym_import] = STATE(3334),
- [sym_parenthesized_expression] = STATE(1369),
- [sym_expression] = STATE(2288),
- [sym_primary_expression] = STATE(1468),
- [sym_yield_expression] = STATE(1634),
- [sym_object] = STATE(1650),
- [sym_object_pattern] = STATE(5861),
- [sym_array] = STATE(1650),
- [sym_array_pattern] = STATE(5861),
- [sym_glimmer_template] = STATE(1634),
- [sym_jsx_element] = STATE(1634),
- [sym_jsx_opening_element] = STATE(3026),
- [sym_jsx_self_closing_element] = STATE(1634),
- [sym_class] = STATE(1650),
- [sym_function_expression] = STATE(1650),
- [sym_generator_function] = STATE(1650),
- [sym_arrow_function] = STATE(1650),
- [sym__call_signature] = STATE(5765),
- [sym_call_expression] = STATE(1650),
- [sym_new_expression] = STATE(1634),
- [sym_await_expression] = STATE(1634),
- [sym_member_expression] = STATE(1369),
- [sym_subscript_expression] = STATE(1369),
- [sym_assignment_expression] = STATE(1634),
- [sym__augmented_assignment_lhs] = STATE(2891),
- [sym_augmented_assignment_expression] = STATE(1634),
- [sym__destructuring_pattern] = STATE(5861),
- [sym_ternary_expression] = STATE(1634),
- [sym_binary_expression] = STATE(1634),
- [sym_unary_expression] = STATE(1634),
- [sym_update_expression] = STATE(1634),
- [sym_string] = STATE(1650),
- [sym_template_string] = STATE(1650),
- [sym_regex] = STATE(1650),
- [sym_meta_property] = STATE(1650),
- [sym_decorator] = STATE(1244),
- [sym_formal_parameters] = STATE(3742),
- [sym_non_null_expression] = STATE(1369),
- [sym_as_expression] = STATE(1634),
- [sym_satisfies_expression] = STATE(1634),
- [sym_instantiation_expression] = STATE(1634),
- [sym_internal_module] = STATE(1634),
- [sym_type_parameters] = STATE(5349),
- [aux_sym_export_statement_repeat1] = STATE(4458),
- [sym_identifier] = ACTIONS(1478),
- [anon_sym_export] = ACTIONS(1114),
- [anon_sym_type] = ACTIONS(1114),
- [anon_sym_namespace] = ACTIONS(1116),
- [anon_sym_LBRACE] = ACTIONS(813),
- [anon_sym_typeof] = ACTIONS(1138),
- [anon_sym_import] = ACTIONS(133),
- [anon_sym_let] = ACTIONS(1114),
- [anon_sym_BANG] = ACTIONS(1122),
- [anon_sym_LPAREN] = ACTIONS(815),
- [anon_sym_await] = ACTIONS(1124),
- [anon_sym_yield] = ACTIONS(1126),
- [anon_sym_LBRACK] = ACTIONS(817),
- [sym_glimmer_opening_tag] = ACTIONS(148),
- [anon_sym_DQUOTE] = ACTIONS(150),
- [anon_sym_SQUOTE] = ACTIONS(152),
- [anon_sym_class] = ACTIONS(154),
- [anon_sym_async] = ACTIONS(1128),
- [anon_sym_function] = ACTIONS(158),
- [anon_sym_new] = ACTIONS(1482),
- [anon_sym_using] = ACTIONS(1132),
- [anon_sym_PLUS] = ACTIONS(1138),
- [anon_sym_DASH] = ACTIONS(1138),
- [anon_sym_SLASH] = ACTIONS(646),
- [anon_sym_LT] = ACTIONS(181),
- [anon_sym_TILDE] = ACTIONS(1122),
- [anon_sym_void] = ACTIONS(1138),
- [anon_sym_delete] = ACTIONS(1138),
- [anon_sym_PLUS_PLUS] = ACTIONS(1140),
- [anon_sym_DASH_DASH] = ACTIONS(1140),
- [sym_comment] = ACTIONS(5),
- [anon_sym_BQUOTE] = ACTIONS(825),
- [sym_number] = ACTIONS(787),
- [sym_private_property_identifier] = ACTIONS(1142),
- [sym_this] = ACTIONS(200),
- [sym_super] = ACTIONS(200),
- [sym_true] = ACTIONS(200),
- [sym_false] = ACTIONS(200),
- [sym_null] = ACTIONS(200),
- [sym_undefined] = ACTIONS(1484),
- [anon_sym_AT] = ACTIONS(99),
- [anon_sym_static] = ACTIONS(1114),
- [anon_sym_readonly] = ACTIONS(1114),
- [anon_sym_get] = ACTIONS(1114),
- [anon_sym_set] = ACTIONS(1114),
- [anon_sym_declare] = ACTIONS(1114),
- [anon_sym_public] = ACTIONS(1114),
- [anon_sym_private] = ACTIONS(1114),
- [anon_sym_protected] = ACTIONS(1114),
- [anon_sym_override] = ACTIONS(1114),
- [anon_sym_module] = ACTIONS(1114),
- [anon_sym_any] = ACTIONS(1114),
- [anon_sym_number] = ACTIONS(1114),
- [anon_sym_boolean] = ACTIONS(1114),
- [anon_sym_string] = ACTIONS(1114),
- [anon_sym_symbol] = ACTIONS(1114),
- [anon_sym_object] = ACTIONS(1114),
- [sym_html_comment] = ACTIONS(5),
- },
- [513] = {
- [sym_import] = STATE(3334),
- [sym_parenthesized_expression] = STATE(1369),
- [sym_expression] = STATE(2289),
- [sym_primary_expression] = STATE(1468),
- [sym_yield_expression] = STATE(1634),
- [sym_object] = STATE(1650),
- [sym_object_pattern] = STATE(5861),
- [sym_array] = STATE(1650),
- [sym_array_pattern] = STATE(5861),
- [sym_glimmer_template] = STATE(1634),
- [sym_jsx_element] = STATE(1634),
- [sym_jsx_opening_element] = STATE(3026),
- [sym_jsx_self_closing_element] = STATE(1634),
- [sym_class] = STATE(1650),
- [sym_function_expression] = STATE(1650),
- [sym_generator_function] = STATE(1650),
- [sym_arrow_function] = STATE(1650),
- [sym__call_signature] = STATE(5765),
- [sym_call_expression] = STATE(1650),
- [sym_new_expression] = STATE(1634),
- [sym_await_expression] = STATE(1634),
- [sym_member_expression] = STATE(1369),
- [sym_subscript_expression] = STATE(1369),
- [sym_assignment_expression] = STATE(1634),
- [sym__augmented_assignment_lhs] = STATE(2891),
- [sym_augmented_assignment_expression] = STATE(1634),
- [sym__destructuring_pattern] = STATE(5861),
- [sym_ternary_expression] = STATE(1634),
- [sym_binary_expression] = STATE(1634),
- [sym_unary_expression] = STATE(1634),
- [sym_update_expression] = STATE(1634),
- [sym_string] = STATE(1650),
- [sym_template_string] = STATE(1650),
- [sym_regex] = STATE(1650),
- [sym_meta_property] = STATE(1650),
- [sym_decorator] = STATE(1244),
- [sym_formal_parameters] = STATE(3742),
- [sym_non_null_expression] = STATE(1369),
- [sym_as_expression] = STATE(1634),
- [sym_satisfies_expression] = STATE(1634),
- [sym_instantiation_expression] = STATE(1634),
- [sym_internal_module] = STATE(1634),
- [sym_type_parameters] = STATE(5349),
- [aux_sym_export_statement_repeat1] = STATE(4458),
- [sym_identifier] = ACTIONS(1478),
- [anon_sym_export] = ACTIONS(1114),
- [anon_sym_type] = ACTIONS(1114),
- [anon_sym_namespace] = ACTIONS(1116),
- [anon_sym_LBRACE] = ACTIONS(813),
- [anon_sym_typeof] = ACTIONS(1138),
- [anon_sym_import] = ACTIONS(133),
- [anon_sym_let] = ACTIONS(1114),
- [anon_sym_BANG] = ACTIONS(1122),
- [anon_sym_LPAREN] = ACTIONS(815),
- [anon_sym_await] = ACTIONS(1124),
- [anon_sym_yield] = ACTIONS(1126),
- [anon_sym_LBRACK] = ACTIONS(817),
- [sym_glimmer_opening_tag] = ACTIONS(148),
- [anon_sym_DQUOTE] = ACTIONS(150),
- [anon_sym_SQUOTE] = ACTIONS(152),
- [anon_sym_class] = ACTIONS(154),
- [anon_sym_async] = ACTIONS(1128),
- [anon_sym_function] = ACTIONS(158),
- [anon_sym_new] = ACTIONS(1482),
- [anon_sym_using] = ACTIONS(1132),
- [anon_sym_PLUS] = ACTIONS(1138),
- [anon_sym_DASH] = ACTIONS(1138),
- [anon_sym_SLASH] = ACTIONS(646),
- [anon_sym_LT] = ACTIONS(181),
- [anon_sym_TILDE] = ACTIONS(1122),
- [anon_sym_void] = ACTIONS(1138),
- [anon_sym_delete] = ACTIONS(1138),
- [anon_sym_PLUS_PLUS] = ACTIONS(1140),
- [anon_sym_DASH_DASH] = ACTIONS(1140),
- [sym_comment] = ACTIONS(5),
- [anon_sym_BQUOTE] = ACTIONS(825),
- [sym_number] = ACTIONS(787),
- [sym_private_property_identifier] = ACTIONS(1142),
- [sym_this] = ACTIONS(200),
- [sym_super] = ACTIONS(200),
- [sym_true] = ACTIONS(200),
- [sym_false] = ACTIONS(200),
- [sym_null] = ACTIONS(200),
- [sym_undefined] = ACTIONS(1484),
- [anon_sym_AT] = ACTIONS(99),
- [anon_sym_static] = ACTIONS(1114),
- [anon_sym_readonly] = ACTIONS(1114),
- [anon_sym_get] = ACTIONS(1114),
- [anon_sym_set] = ACTIONS(1114),
- [anon_sym_declare] = ACTIONS(1114),
- [anon_sym_public] = ACTIONS(1114),
- [anon_sym_private] = ACTIONS(1114),
- [anon_sym_protected] = ACTIONS(1114),
- [anon_sym_override] = ACTIONS(1114),
- [anon_sym_module] = ACTIONS(1114),
- [anon_sym_any] = ACTIONS(1114),
- [anon_sym_number] = ACTIONS(1114),
- [anon_sym_boolean] = ACTIONS(1114),
- [anon_sym_string] = ACTIONS(1114),
- [anon_sym_symbol] = ACTIONS(1114),
- [anon_sym_object] = ACTIONS(1114),
- [sym_html_comment] = ACTIONS(5),
- },
- [514] = {
- [sym_import] = STATE(3334),
- [sym_parenthesized_expression] = STATE(1369),
- [sym_expression] = STATE(2290),
- [sym_primary_expression] = STATE(1468),
- [sym_yield_expression] = STATE(1634),
- [sym_object] = STATE(1650),
- [sym_object_pattern] = STATE(5861),
- [sym_array] = STATE(1650),
- [sym_array_pattern] = STATE(5861),
- [sym_glimmer_template] = STATE(1634),
- [sym_jsx_element] = STATE(1634),
- [sym_jsx_opening_element] = STATE(3026),
- [sym_jsx_self_closing_element] = STATE(1634),
- [sym_class] = STATE(1650),
- [sym_function_expression] = STATE(1650),
- [sym_generator_function] = STATE(1650),
- [sym_arrow_function] = STATE(1650),
- [sym__call_signature] = STATE(5765),
- [sym_call_expression] = STATE(1650),
- [sym_new_expression] = STATE(1634),
- [sym_await_expression] = STATE(1634),
- [sym_member_expression] = STATE(1369),
- [sym_subscript_expression] = STATE(1369),
- [sym_assignment_expression] = STATE(1634),
- [sym__augmented_assignment_lhs] = STATE(2891),
- [sym_augmented_assignment_expression] = STATE(1634),
- [sym__destructuring_pattern] = STATE(5861),
- [sym_ternary_expression] = STATE(1634),
- [sym_binary_expression] = STATE(1634),
- [sym_unary_expression] = STATE(1634),
- [sym_update_expression] = STATE(1634),
- [sym_string] = STATE(1650),
- [sym_template_string] = STATE(1650),
- [sym_regex] = STATE(1650),
- [sym_meta_property] = STATE(1650),
- [sym_decorator] = STATE(1244),
- [sym_formal_parameters] = STATE(3742),
- [sym_non_null_expression] = STATE(1369),
- [sym_as_expression] = STATE(1634),
- [sym_satisfies_expression] = STATE(1634),
- [sym_instantiation_expression] = STATE(1634),
- [sym_internal_module] = STATE(1634),
- [sym_type_parameters] = STATE(5349),
- [aux_sym_export_statement_repeat1] = STATE(4458),
- [sym_identifier] = ACTIONS(1478),
- [anon_sym_export] = ACTIONS(1114),
- [anon_sym_type] = ACTIONS(1114),
- [anon_sym_namespace] = ACTIONS(1116),
- [anon_sym_LBRACE] = ACTIONS(813),
- [anon_sym_typeof] = ACTIONS(1138),
- [anon_sym_import] = ACTIONS(133),
- [anon_sym_let] = ACTIONS(1114),
- [anon_sym_BANG] = ACTIONS(1122),
- [anon_sym_LPAREN] = ACTIONS(815),
- [anon_sym_await] = ACTIONS(1124),
- [anon_sym_yield] = ACTIONS(1126),
- [anon_sym_LBRACK] = ACTIONS(817),
- [sym_glimmer_opening_tag] = ACTIONS(148),
- [anon_sym_DQUOTE] = ACTIONS(150),
- [anon_sym_SQUOTE] = ACTIONS(152),
- [anon_sym_class] = ACTIONS(154),
- [anon_sym_async] = ACTIONS(1128),
- [anon_sym_function] = ACTIONS(158),
- [anon_sym_new] = ACTIONS(1482),
- [anon_sym_using] = ACTIONS(1132),
- [anon_sym_PLUS] = ACTIONS(1138),
- [anon_sym_DASH] = ACTIONS(1138),
- [anon_sym_SLASH] = ACTIONS(646),
- [anon_sym_LT] = ACTIONS(181),
- [anon_sym_TILDE] = ACTIONS(1122),
- [anon_sym_void] = ACTIONS(1138),
- [anon_sym_delete] = ACTIONS(1138),
- [anon_sym_PLUS_PLUS] = ACTIONS(1140),
- [anon_sym_DASH_DASH] = ACTIONS(1140),
- [sym_comment] = ACTIONS(5),
- [anon_sym_BQUOTE] = ACTIONS(825),
- [sym_number] = ACTIONS(787),
- [sym_private_property_identifier] = ACTIONS(1142),
- [sym_this] = ACTIONS(200),
- [sym_super] = ACTIONS(200),
- [sym_true] = ACTIONS(200),
- [sym_false] = ACTIONS(200),
- [sym_null] = ACTIONS(200),
- [sym_undefined] = ACTIONS(1484),
- [anon_sym_AT] = ACTIONS(99),
- [anon_sym_static] = ACTIONS(1114),
- [anon_sym_readonly] = ACTIONS(1114),
- [anon_sym_get] = ACTIONS(1114),
- [anon_sym_set] = ACTIONS(1114),
- [anon_sym_declare] = ACTIONS(1114),
- [anon_sym_public] = ACTIONS(1114),
- [anon_sym_private] = ACTIONS(1114),
- [anon_sym_protected] = ACTIONS(1114),
- [anon_sym_override] = ACTIONS(1114),
- [anon_sym_module] = ACTIONS(1114),
- [anon_sym_any] = ACTIONS(1114),
- [anon_sym_number] = ACTIONS(1114),
- [anon_sym_boolean] = ACTIONS(1114),
- [anon_sym_string] = ACTIONS(1114),
- [anon_sym_symbol] = ACTIONS(1114),
- [anon_sym_object] = ACTIONS(1114),
- [sym_html_comment] = ACTIONS(5),
- },
- [515] = {
- [sym_import] = STATE(3334),
- [sym_parenthesized_expression] = STATE(1369),
- [sym_expression] = STATE(2291),
- [sym_primary_expression] = STATE(1468),
- [sym_yield_expression] = STATE(1634),
- [sym_object] = STATE(1650),
- [sym_object_pattern] = STATE(5861),
- [sym_array] = STATE(1650),
- [sym_array_pattern] = STATE(5861),
- [sym_glimmer_template] = STATE(1634),
- [sym_jsx_element] = STATE(1634),
- [sym_jsx_opening_element] = STATE(3026),
- [sym_jsx_self_closing_element] = STATE(1634),
- [sym_class] = STATE(1650),
- [sym_function_expression] = STATE(1650),
- [sym_generator_function] = STATE(1650),
- [sym_arrow_function] = STATE(1650),
- [sym__call_signature] = STATE(5765),
- [sym_call_expression] = STATE(1650),
- [sym_new_expression] = STATE(1634),
- [sym_await_expression] = STATE(1634),
- [sym_member_expression] = STATE(1369),
- [sym_subscript_expression] = STATE(1369),
- [sym_assignment_expression] = STATE(1634),
- [sym__augmented_assignment_lhs] = STATE(2891),
- [sym_augmented_assignment_expression] = STATE(1634),
- [sym__destructuring_pattern] = STATE(5861),
- [sym_ternary_expression] = STATE(1634),
- [sym_binary_expression] = STATE(1634),
- [sym_unary_expression] = STATE(1634),
- [sym_update_expression] = STATE(1634),
- [sym_string] = STATE(1650),
- [sym_template_string] = STATE(1650),
- [sym_regex] = STATE(1650),
- [sym_meta_property] = STATE(1650),
- [sym_decorator] = STATE(1244),
- [sym_formal_parameters] = STATE(3742),
- [sym_non_null_expression] = STATE(1369),
- [sym_as_expression] = STATE(1634),
- [sym_satisfies_expression] = STATE(1634),
- [sym_instantiation_expression] = STATE(1634),
- [sym_internal_module] = STATE(1634),
- [sym_type_parameters] = STATE(5349),
- [aux_sym_export_statement_repeat1] = STATE(4458),
- [sym_identifier] = ACTIONS(1478),
- [anon_sym_export] = ACTIONS(1114),
- [anon_sym_type] = ACTIONS(1114),
- [anon_sym_namespace] = ACTIONS(1116),
- [anon_sym_LBRACE] = ACTIONS(813),
- [anon_sym_typeof] = ACTIONS(1138),
- [anon_sym_import] = ACTIONS(133),
- [anon_sym_let] = ACTIONS(1114),
- [anon_sym_BANG] = ACTIONS(1122),
- [anon_sym_LPAREN] = ACTIONS(815),
- [anon_sym_await] = ACTIONS(1124),
- [anon_sym_yield] = ACTIONS(1126),
- [anon_sym_LBRACK] = ACTIONS(817),
- [sym_glimmer_opening_tag] = ACTIONS(148),
- [anon_sym_DQUOTE] = ACTIONS(150),
- [anon_sym_SQUOTE] = ACTIONS(152),
- [anon_sym_class] = ACTIONS(154),
- [anon_sym_async] = ACTIONS(1128),
- [anon_sym_function] = ACTIONS(158),
- [anon_sym_new] = ACTIONS(1482),
- [anon_sym_using] = ACTIONS(1132),
- [anon_sym_PLUS] = ACTIONS(1138),
- [anon_sym_DASH] = ACTIONS(1138),
- [anon_sym_SLASH] = ACTIONS(646),
- [anon_sym_LT] = ACTIONS(181),
- [anon_sym_TILDE] = ACTIONS(1122),
- [anon_sym_void] = ACTIONS(1138),
- [anon_sym_delete] = ACTIONS(1138),
- [anon_sym_PLUS_PLUS] = ACTIONS(1140),
- [anon_sym_DASH_DASH] = ACTIONS(1140),
- [sym_comment] = ACTIONS(5),
- [anon_sym_BQUOTE] = ACTIONS(825),
- [sym_number] = ACTIONS(787),
- [sym_private_property_identifier] = ACTIONS(1142),
- [sym_this] = ACTIONS(200),
- [sym_super] = ACTIONS(200),
- [sym_true] = ACTIONS(200),
- [sym_false] = ACTIONS(200),
- [sym_null] = ACTIONS(200),
- [sym_undefined] = ACTIONS(1484),
- [anon_sym_AT] = ACTIONS(99),
- [anon_sym_static] = ACTIONS(1114),
- [anon_sym_readonly] = ACTIONS(1114),
- [anon_sym_get] = ACTIONS(1114),
- [anon_sym_set] = ACTIONS(1114),
- [anon_sym_declare] = ACTIONS(1114),
- [anon_sym_public] = ACTIONS(1114),
- [anon_sym_private] = ACTIONS(1114),
- [anon_sym_protected] = ACTIONS(1114),
- [anon_sym_override] = ACTIONS(1114),
- [anon_sym_module] = ACTIONS(1114),
- [anon_sym_any] = ACTIONS(1114),
- [anon_sym_number] = ACTIONS(1114),
- [anon_sym_boolean] = ACTIONS(1114),
- [anon_sym_string] = ACTIONS(1114),
- [anon_sym_symbol] = ACTIONS(1114),
- [anon_sym_object] = ACTIONS(1114),
- [sym_html_comment] = ACTIONS(5),
- },
- [516] = {
- [sym_import] = STATE(3306),
- [sym_parenthesized_expression] = STATE(1294),
- [sym_expression] = STATE(1764),
- [sym_primary_expression] = STATE(1946),
- [sym_yield_expression] = STATE(2234),
- [sym_object] = STATE(2310),
- [sym_object_pattern] = STATE(5667),
- [sym_array] = STATE(2310),
- [sym_array_pattern] = STATE(5667),
- [sym_glimmer_template] = STATE(2234),
- [sym_jsx_element] = STATE(2234),
- [sym_jsx_opening_element] = STATE(3051),
- [sym_jsx_self_closing_element] = STATE(2234),
- [sym_class] = STATE(2310),
- [sym_function_expression] = STATE(2310),
- [sym_generator_function] = STATE(2310),
- [sym_arrow_function] = STATE(2310),
- [sym__call_signature] = STATE(5809),
- [sym_call_expression] = STATE(2310),
- [sym_new_expression] = STATE(2234),
- [sym_await_expression] = STATE(2234),
- [sym_member_expression] = STATE(1294),
- [sym_subscript_expression] = STATE(1294),
- [sym_assignment_expression] = STATE(2234),
- [sym__augmented_assignment_lhs] = STATE(2875),
- [sym_augmented_assignment_expression] = STATE(2234),
- [sym__destructuring_pattern] = STATE(5667),
- [sym_ternary_expression] = STATE(2234),
- [sym_binary_expression] = STATE(2234),
- [sym_unary_expression] = STATE(2234),
- [sym_update_expression] = STATE(2234),
- [sym_string] = STATE(2310),
- [sym_template_string] = STATE(2310),
- [sym_regex] = STATE(2310),
- [sym_meta_property] = STATE(2310),
- [sym_decorator] = STATE(1244),
- [sym_formal_parameters] = STATE(3742),
- [sym_non_null_expression] = STATE(1294),
- [sym_as_expression] = STATE(2234),
- [sym_satisfies_expression] = STATE(2234),
- [sym_instantiation_expression] = STATE(2234),
- [sym_internal_module] = STATE(2234),
- [sym_type_parameters] = STATE(5349),
- [aux_sym_export_statement_repeat1] = STATE(4499),
- [sym_identifier] = ACTIONS(1440),
- [anon_sym_export] = ACTIONS(1372),
- [anon_sym_type] = ACTIONS(1372),
- [anon_sym_namespace] = ACTIONS(1374),
- [anon_sym_LBRACE] = ACTIONS(700),
- [anon_sym_typeof] = ACTIONS(21),
- [anon_sym_import] = ACTIONS(133),
- [anon_sym_let] = ACTIONS(1372),
- [anon_sym_BANG] = ACTIONS(33),
- [anon_sym_LPAREN] = ACTIONS(41),
- [anon_sym_await] = ACTIONS(43),
- [anon_sym_yield] = ACTIONS(63),
- [anon_sym_LBRACK] = ACTIONS(65),
- [sym_glimmer_opening_tag] = ACTIONS(67),
- [anon_sym_DQUOTE] = ACTIONS(69),
- [anon_sym_SQUOTE] = ACTIONS(71),
- [anon_sym_class] = ACTIONS(709),
- [anon_sym_async] = ACTIONS(1378),
- [anon_sym_function] = ACTIONS(713),
- [anon_sym_new] = ACTIONS(1444),
- [anon_sym_using] = ACTIONS(81),
- [anon_sym_PLUS] = ACTIONS(21),
- [anon_sym_DASH] = ACTIONS(21),
- [anon_sym_SLASH] = ACTIONS(83),
- [anon_sym_LT] = ACTIONS(85),
- [anon_sym_TILDE] = ACTIONS(33),
- [anon_sym_void] = ACTIONS(21),
- [anon_sym_delete] = ACTIONS(21),
- [anon_sym_PLUS_PLUS] = ACTIONS(87),
- [anon_sym_DASH_DASH] = ACTIONS(87),
- [sym_comment] = ACTIONS(5),
- [anon_sym_BQUOTE] = ACTIONS(89),
- [sym_number] = ACTIONS(91),
- [sym_private_property_identifier] = ACTIONS(93),
- [sym_this] = ACTIONS(95),
- [sym_super] = ACTIONS(95),
- [sym_true] = ACTIONS(95),
- [sym_false] = ACTIONS(95),
- [sym_null] = ACTIONS(95),
- [sym_undefined] = ACTIONS(97),
- [anon_sym_AT] = ACTIONS(99),
- [anon_sym_static] = ACTIONS(1372),
- [anon_sym_readonly] = ACTIONS(1372),
- [anon_sym_get] = ACTIONS(1372),
- [anon_sym_set] = ACTIONS(1372),
- [anon_sym_declare] = ACTIONS(1372),
- [anon_sym_public] = ACTIONS(1372),
- [anon_sym_private] = ACTIONS(1372),
- [anon_sym_protected] = ACTIONS(1372),
- [anon_sym_override] = ACTIONS(1372),
- [anon_sym_module] = ACTIONS(1372),
- [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_object] = ACTIONS(1372),
- [sym_html_comment] = ACTIONS(5),
- },
- [517] = {
- [sym_import] = STATE(3334),
- [sym_parenthesized_expression] = STATE(1369),
- [sym_expression] = STATE(2293),
- [sym_primary_expression] = STATE(1468),
- [sym_yield_expression] = STATE(1634),
- [sym_object] = STATE(1650),
- [sym_object_pattern] = STATE(5861),
- [sym_array] = STATE(1650),
- [sym_array_pattern] = STATE(5861),
- [sym_glimmer_template] = STATE(1634),
- [sym_jsx_element] = STATE(1634),
- [sym_jsx_opening_element] = STATE(3026),
- [sym_jsx_self_closing_element] = STATE(1634),
- [sym_class] = STATE(1650),
- [sym_function_expression] = STATE(1650),
- [sym_generator_function] = STATE(1650),
- [sym_arrow_function] = STATE(1650),
- [sym__call_signature] = STATE(5765),
- [sym_call_expression] = STATE(1650),
- [sym_new_expression] = STATE(1634),
- [sym_await_expression] = STATE(1634),
- [sym_member_expression] = STATE(1369),
- [sym_subscript_expression] = STATE(1369),
- [sym_assignment_expression] = STATE(1634),
- [sym__augmented_assignment_lhs] = STATE(2891),
- [sym_augmented_assignment_expression] = STATE(1634),
- [sym__destructuring_pattern] = STATE(5861),
- [sym_ternary_expression] = STATE(1634),
- [sym_binary_expression] = STATE(1634),
- [sym_unary_expression] = STATE(1634),
- [sym_update_expression] = STATE(1634),
- [sym_string] = STATE(1650),
- [sym_template_string] = STATE(1650),
- [sym_regex] = STATE(1650),
- [sym_meta_property] = STATE(1650),
- [sym_decorator] = STATE(1244),
- [sym_formal_parameters] = STATE(3742),
- [sym_non_null_expression] = STATE(1369),
- [sym_as_expression] = STATE(1634),
- [sym_satisfies_expression] = STATE(1634),
- [sym_instantiation_expression] = STATE(1634),
- [sym_internal_module] = STATE(1634),
- [sym_type_parameters] = STATE(5349),
- [aux_sym_export_statement_repeat1] = STATE(4458),
- [sym_identifier] = ACTIONS(1478),
- [anon_sym_export] = ACTIONS(1114),
- [anon_sym_type] = ACTIONS(1114),
- [anon_sym_namespace] = ACTIONS(1116),
- [anon_sym_LBRACE] = ACTIONS(813),
- [anon_sym_typeof] = ACTIONS(1138),
- [anon_sym_import] = ACTIONS(133),
- [anon_sym_let] = ACTIONS(1114),
- [anon_sym_BANG] = ACTIONS(1122),
- [anon_sym_LPAREN] = ACTIONS(815),
- [anon_sym_await] = ACTIONS(1124),
- [anon_sym_yield] = ACTIONS(1126),
- [anon_sym_LBRACK] = ACTIONS(817),
- [sym_glimmer_opening_tag] = ACTIONS(148),
- [anon_sym_DQUOTE] = ACTIONS(150),
- [anon_sym_SQUOTE] = ACTIONS(152),
- [anon_sym_class] = ACTIONS(154),
- [anon_sym_async] = ACTIONS(1128),
- [anon_sym_function] = ACTIONS(158),
- [anon_sym_new] = ACTIONS(1482),
- [anon_sym_using] = ACTIONS(1132),
- [anon_sym_PLUS] = ACTIONS(1138),
- [anon_sym_DASH] = ACTIONS(1138),
- [anon_sym_SLASH] = ACTIONS(646),
- [anon_sym_LT] = ACTIONS(181),
- [anon_sym_TILDE] = ACTIONS(1122),
- [anon_sym_void] = ACTIONS(1138),
- [anon_sym_delete] = ACTIONS(1138),
- [anon_sym_PLUS_PLUS] = ACTIONS(1140),
- [anon_sym_DASH_DASH] = ACTIONS(1140),
- [sym_comment] = ACTIONS(5),
- [anon_sym_BQUOTE] = ACTIONS(825),
- [sym_number] = ACTIONS(787),
- [sym_private_property_identifier] = ACTIONS(1142),
- [sym_this] = ACTIONS(200),
- [sym_super] = ACTIONS(200),
- [sym_true] = ACTIONS(200),
- [sym_false] = ACTIONS(200),
- [sym_null] = ACTIONS(200),
- [sym_undefined] = ACTIONS(1484),
- [anon_sym_AT] = ACTIONS(99),
- [anon_sym_static] = ACTIONS(1114),
- [anon_sym_readonly] = ACTIONS(1114),
- [anon_sym_get] = ACTIONS(1114),
- [anon_sym_set] = ACTIONS(1114),
- [anon_sym_declare] = ACTIONS(1114),
- [anon_sym_public] = ACTIONS(1114),
- [anon_sym_private] = ACTIONS(1114),
- [anon_sym_protected] = ACTIONS(1114),
- [anon_sym_override] = ACTIONS(1114),
- [anon_sym_module] = ACTIONS(1114),
- [anon_sym_any] = ACTIONS(1114),
- [anon_sym_number] = ACTIONS(1114),
- [anon_sym_boolean] = ACTIONS(1114),
- [anon_sym_string] = ACTIONS(1114),
- [anon_sym_symbol] = ACTIONS(1114),
- [anon_sym_object] = ACTIONS(1114),
- [sym_html_comment] = ACTIONS(5),
- },
- [518] = {
- [sym_import] = STATE(3334),
- [sym_parenthesized_expression] = STATE(1369),
- [sym_expression] = STATE(2294),
- [sym_primary_expression] = STATE(1468),
- [sym_yield_expression] = STATE(1634),
- [sym_object] = STATE(1650),
- [sym_object_pattern] = STATE(5861),
- [sym_array] = STATE(1650),
- [sym_array_pattern] = STATE(5861),
- [sym_glimmer_template] = STATE(1634),
- [sym_jsx_element] = STATE(1634),
- [sym_jsx_opening_element] = STATE(3026),
- [sym_jsx_self_closing_element] = STATE(1634),
- [sym_class] = STATE(1650),
- [sym_function_expression] = STATE(1650),
- [sym_generator_function] = STATE(1650),
- [sym_arrow_function] = STATE(1650),
- [sym__call_signature] = STATE(5765),
- [sym_call_expression] = STATE(1650),
- [sym_new_expression] = STATE(1634),
- [sym_await_expression] = STATE(1634),
- [sym_member_expression] = STATE(1369),
- [sym_subscript_expression] = STATE(1369),
- [sym_assignment_expression] = STATE(1634),
- [sym__augmented_assignment_lhs] = STATE(2891),
- [sym_augmented_assignment_expression] = STATE(1634),
- [sym__destructuring_pattern] = STATE(5861),
- [sym_ternary_expression] = STATE(1634),
- [sym_binary_expression] = STATE(1634),
- [sym_unary_expression] = STATE(1634),
- [sym_update_expression] = STATE(1634),
- [sym_string] = STATE(1650),
- [sym_template_string] = STATE(1650),
- [sym_regex] = STATE(1650),
- [sym_meta_property] = STATE(1650),
- [sym_decorator] = STATE(1244),
- [sym_formal_parameters] = STATE(3742),
- [sym_non_null_expression] = STATE(1369),
- [sym_as_expression] = STATE(1634),
- [sym_satisfies_expression] = STATE(1634),
- [sym_instantiation_expression] = STATE(1634),
- [sym_internal_module] = STATE(1634),
- [sym_type_parameters] = STATE(5349),
- [aux_sym_export_statement_repeat1] = STATE(4458),
- [sym_identifier] = ACTIONS(1478),
- [anon_sym_export] = ACTIONS(1114),
- [anon_sym_type] = ACTIONS(1114),
- [anon_sym_namespace] = ACTIONS(1116),
- [anon_sym_LBRACE] = ACTIONS(813),
- [anon_sym_typeof] = ACTIONS(1138),
- [anon_sym_import] = ACTIONS(133),
- [anon_sym_let] = ACTIONS(1114),
- [anon_sym_BANG] = ACTIONS(1122),
- [anon_sym_LPAREN] = ACTIONS(815),
- [anon_sym_await] = ACTIONS(1124),
- [anon_sym_yield] = ACTIONS(1126),
- [anon_sym_LBRACK] = ACTIONS(817),
- [sym_glimmer_opening_tag] = ACTIONS(148),
- [anon_sym_DQUOTE] = ACTIONS(150),
- [anon_sym_SQUOTE] = ACTIONS(152),
- [anon_sym_class] = ACTIONS(154),
- [anon_sym_async] = ACTIONS(1128),
- [anon_sym_function] = ACTIONS(158),
- [anon_sym_new] = ACTIONS(1482),
- [anon_sym_using] = ACTIONS(1132),
- [anon_sym_PLUS] = ACTIONS(1138),
- [anon_sym_DASH] = ACTIONS(1138),
- [anon_sym_SLASH] = ACTIONS(646),
- [anon_sym_LT] = ACTIONS(181),
- [anon_sym_TILDE] = ACTIONS(1122),
- [anon_sym_void] = ACTIONS(1138),
- [anon_sym_delete] = ACTIONS(1138),
- [anon_sym_PLUS_PLUS] = ACTIONS(1140),
- [anon_sym_DASH_DASH] = ACTIONS(1140),
- [sym_comment] = ACTIONS(5),
- [anon_sym_BQUOTE] = ACTIONS(825),
- [sym_number] = ACTIONS(787),
- [sym_private_property_identifier] = ACTIONS(1142),
- [sym_this] = ACTIONS(200),
- [sym_super] = ACTIONS(200),
- [sym_true] = ACTIONS(200),
- [sym_false] = ACTIONS(200),
- [sym_null] = ACTIONS(200),
- [sym_undefined] = ACTIONS(1484),
- [anon_sym_AT] = ACTIONS(99),
- [anon_sym_static] = ACTIONS(1114),
- [anon_sym_readonly] = ACTIONS(1114),
- [anon_sym_get] = ACTIONS(1114),
- [anon_sym_set] = ACTIONS(1114),
- [anon_sym_declare] = ACTIONS(1114),
- [anon_sym_public] = ACTIONS(1114),
- [anon_sym_private] = ACTIONS(1114),
- [anon_sym_protected] = ACTIONS(1114),
- [anon_sym_override] = ACTIONS(1114),
- [anon_sym_module] = ACTIONS(1114),
- [anon_sym_any] = ACTIONS(1114),
- [anon_sym_number] = ACTIONS(1114),
- [anon_sym_boolean] = ACTIONS(1114),
- [anon_sym_string] = ACTIONS(1114),
- [anon_sym_symbol] = ACTIONS(1114),
- [anon_sym_object] = ACTIONS(1114),
- [sym_html_comment] = ACTIONS(5),
- },
- [519] = {
- [sym_import] = STATE(3334),
- [sym_parenthesized_expression] = STATE(1369),
- [sym_expression] = STATE(2295),
- [sym_primary_expression] = STATE(1468),
- [sym_yield_expression] = STATE(1634),
- [sym_object] = STATE(1650),
- [sym_object_pattern] = STATE(5861),
- [sym_array] = STATE(1650),
- [sym_array_pattern] = STATE(5861),
- [sym_glimmer_template] = STATE(1634),
- [sym_jsx_element] = STATE(1634),
- [sym_jsx_opening_element] = STATE(3026),
- [sym_jsx_self_closing_element] = STATE(1634),
- [sym_class] = STATE(1650),
- [sym_function_expression] = STATE(1650),
- [sym_generator_function] = STATE(1650),
- [sym_arrow_function] = STATE(1650),
- [sym__call_signature] = STATE(5765),
- [sym_call_expression] = STATE(1650),
- [sym_new_expression] = STATE(1634),
- [sym_await_expression] = STATE(1634),
- [sym_member_expression] = STATE(1369),
- [sym_subscript_expression] = STATE(1369),
- [sym_assignment_expression] = STATE(1634),
- [sym__augmented_assignment_lhs] = STATE(2891),
- [sym_augmented_assignment_expression] = STATE(1634),
- [sym__destructuring_pattern] = STATE(5861),
- [sym_ternary_expression] = STATE(1634),
- [sym_binary_expression] = STATE(1634),
- [sym_unary_expression] = STATE(1634),
- [sym_update_expression] = STATE(1634),
- [sym_string] = STATE(1650),
- [sym_template_string] = STATE(1650),
- [sym_regex] = STATE(1650),
- [sym_meta_property] = STATE(1650),
- [sym_decorator] = STATE(1244),
- [sym_formal_parameters] = STATE(3742),
- [sym_non_null_expression] = STATE(1369),
- [sym_as_expression] = STATE(1634),
- [sym_satisfies_expression] = STATE(1634),
- [sym_instantiation_expression] = STATE(1634),
- [sym_internal_module] = STATE(1634),
- [sym_type_parameters] = STATE(5349),
- [aux_sym_export_statement_repeat1] = STATE(4458),
- [sym_identifier] = ACTIONS(1478),
- [anon_sym_export] = ACTIONS(1114),
- [anon_sym_type] = ACTIONS(1114),
- [anon_sym_namespace] = ACTIONS(1116),
- [anon_sym_LBRACE] = ACTIONS(813),
- [anon_sym_typeof] = ACTIONS(1138),
- [anon_sym_import] = ACTIONS(133),
- [anon_sym_let] = ACTIONS(1114),
- [anon_sym_BANG] = ACTIONS(1122),
- [anon_sym_LPAREN] = ACTIONS(815),
- [anon_sym_await] = ACTIONS(1124),
- [anon_sym_yield] = ACTIONS(1126),
- [anon_sym_LBRACK] = ACTIONS(817),
- [sym_glimmer_opening_tag] = ACTIONS(148),
- [anon_sym_DQUOTE] = ACTIONS(150),
- [anon_sym_SQUOTE] = ACTIONS(152),
- [anon_sym_class] = ACTIONS(154),
- [anon_sym_async] = ACTIONS(1128),
- [anon_sym_function] = ACTIONS(158),
- [anon_sym_new] = ACTIONS(1482),
- [anon_sym_using] = ACTIONS(1132),
- [anon_sym_PLUS] = ACTIONS(1138),
- [anon_sym_DASH] = ACTIONS(1138),
- [anon_sym_SLASH] = ACTIONS(646),
- [anon_sym_LT] = ACTIONS(181),
- [anon_sym_TILDE] = ACTIONS(1122),
- [anon_sym_void] = ACTIONS(1138),
- [anon_sym_delete] = ACTIONS(1138),
- [anon_sym_PLUS_PLUS] = ACTIONS(1140),
- [anon_sym_DASH_DASH] = ACTIONS(1140),
- [sym_comment] = ACTIONS(5),
- [anon_sym_BQUOTE] = ACTIONS(825),
- [sym_number] = ACTIONS(787),
- [sym_private_property_identifier] = ACTIONS(1142),
- [sym_this] = ACTIONS(200),
- [sym_super] = ACTIONS(200),
- [sym_true] = ACTIONS(200),
- [sym_false] = ACTIONS(200),
- [sym_null] = ACTIONS(200),
- [sym_undefined] = ACTIONS(1484),
- [anon_sym_AT] = ACTIONS(99),
- [anon_sym_static] = ACTIONS(1114),
- [anon_sym_readonly] = ACTIONS(1114),
- [anon_sym_get] = ACTIONS(1114),
- [anon_sym_set] = ACTIONS(1114),
- [anon_sym_declare] = ACTIONS(1114),
- [anon_sym_public] = ACTIONS(1114),
- [anon_sym_private] = ACTIONS(1114),
- [anon_sym_protected] = ACTIONS(1114),
- [anon_sym_override] = ACTIONS(1114),
- [anon_sym_module] = ACTIONS(1114),
- [anon_sym_any] = ACTIONS(1114),
- [anon_sym_number] = ACTIONS(1114),
- [anon_sym_boolean] = ACTIONS(1114),
- [anon_sym_string] = ACTIONS(1114),
- [anon_sym_symbol] = ACTIONS(1114),
- [anon_sym_object] = ACTIONS(1114),
- [sym_html_comment] = ACTIONS(5),
- },
- [520] = {
- [sym_import] = STATE(3306),
- [sym_parenthesized_expression] = STATE(1294),
- [sym_expression] = STATE(1615),
- [sym_primary_expression] = STATE(1946),
- [sym_yield_expression] = STATE(2234),
- [sym_object] = STATE(2310),
- [sym_object_pattern] = STATE(5667),
- [sym_array] = STATE(2310),
- [sym_array_pattern] = STATE(5667),
- [sym_glimmer_template] = STATE(2234),
- [sym_jsx_element] = STATE(2234),
- [sym_jsx_opening_element] = STATE(3051),
- [sym_jsx_self_closing_element] = STATE(2234),
- [sym_class] = STATE(2310),
- [sym_function_expression] = STATE(2310),
- [sym_generator_function] = STATE(2310),
- [sym_arrow_function] = STATE(2310),
- [sym__call_signature] = STATE(5809),
- [sym_call_expression] = STATE(2310),
- [sym_new_expression] = STATE(2234),
- [sym_await_expression] = STATE(2234),
- [sym_member_expression] = STATE(1294),
- [sym_subscript_expression] = STATE(1294),
- [sym_assignment_expression] = STATE(2234),
- [sym__augmented_assignment_lhs] = STATE(2875),
- [sym_augmented_assignment_expression] = STATE(2234),
- [sym__destructuring_pattern] = STATE(5667),
- [sym_ternary_expression] = STATE(2234),
- [sym_binary_expression] = STATE(2234),
- [sym_unary_expression] = STATE(2234),
- [sym_update_expression] = STATE(2234),
- [sym_string] = STATE(2310),
- [sym_template_string] = STATE(2310),
- [sym_regex] = STATE(2310),
- [sym_meta_property] = STATE(2310),
- [sym_decorator] = STATE(1244),
- [sym_formal_parameters] = STATE(3742),
- [sym_non_null_expression] = STATE(1294),
- [sym_as_expression] = STATE(2234),
- [sym_satisfies_expression] = STATE(2234),
- [sym_instantiation_expression] = STATE(2234),
- [sym_internal_module] = STATE(2234),
- [sym_type_parameters] = STATE(5349),
- [aux_sym_export_statement_repeat1] = STATE(4499),
- [sym_identifier] = ACTIONS(1440),
- [anon_sym_export] = ACTIONS(1372),
- [anon_sym_type] = ACTIONS(1372),
- [anon_sym_namespace] = ACTIONS(1374),
- [anon_sym_LBRACE] = ACTIONS(700),
- [anon_sym_typeof] = ACTIONS(21),
- [anon_sym_import] = ACTIONS(133),
- [anon_sym_let] = ACTIONS(1372),
- [anon_sym_BANG] = ACTIONS(33),
- [anon_sym_LPAREN] = ACTIONS(41),
- [anon_sym_await] = ACTIONS(43),
- [anon_sym_yield] = ACTIONS(63),
- [anon_sym_LBRACK] = ACTIONS(65),
- [sym_glimmer_opening_tag] = ACTIONS(67),
- [anon_sym_DQUOTE] = ACTIONS(69),
- [anon_sym_SQUOTE] = ACTIONS(71),
- [anon_sym_class] = ACTIONS(709),
- [anon_sym_async] = ACTIONS(1378),
- [anon_sym_function] = ACTIONS(713),
- [anon_sym_new] = ACTIONS(1444),
- [anon_sym_using] = ACTIONS(81),
- [anon_sym_PLUS] = ACTIONS(21),
- [anon_sym_DASH] = ACTIONS(21),
- [anon_sym_SLASH] = ACTIONS(83),
- [anon_sym_LT] = ACTIONS(85),
- [anon_sym_TILDE] = ACTIONS(33),
- [anon_sym_void] = ACTIONS(21),
- [anon_sym_delete] = ACTIONS(21),
- [anon_sym_PLUS_PLUS] = ACTIONS(87),
- [anon_sym_DASH_DASH] = ACTIONS(87),
- [sym_comment] = ACTIONS(5),
- [anon_sym_BQUOTE] = ACTIONS(89),
- [sym_number] = ACTIONS(91),
- [sym_private_property_identifier] = ACTIONS(93),
- [sym_this] = ACTIONS(95),
- [sym_super] = ACTIONS(95),
- [sym_true] = ACTIONS(95),
- [sym_false] = ACTIONS(95),
- [sym_null] = ACTIONS(95),
- [sym_undefined] = ACTIONS(97),
- [anon_sym_AT] = ACTIONS(99),
- [anon_sym_static] = ACTIONS(1372),
- [anon_sym_readonly] = ACTIONS(1372),
- [anon_sym_get] = ACTIONS(1372),
- [anon_sym_set] = ACTIONS(1372),
- [anon_sym_declare] = ACTIONS(1372),
- [anon_sym_public] = ACTIONS(1372),
- [anon_sym_private] = ACTIONS(1372),
- [anon_sym_protected] = ACTIONS(1372),
- [anon_sym_override] = ACTIONS(1372),
- [anon_sym_module] = ACTIONS(1372),
- [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_object] = ACTIONS(1372),
- [sym_html_comment] = ACTIONS(5),
- },
- [521] = {
- [sym_import] = STATE(3334),
- [sym_parenthesized_expression] = STATE(1369),
- [sym_expression] = STATE(2297),
- [sym_primary_expression] = STATE(1468),
- [sym_yield_expression] = STATE(1634),
- [sym_object] = STATE(1650),
- [sym_object_pattern] = STATE(5861),
- [sym_array] = STATE(1650),
- [sym_array_pattern] = STATE(5861),
- [sym_glimmer_template] = STATE(1634),
- [sym_jsx_element] = STATE(1634),
- [sym_jsx_opening_element] = STATE(3026),
- [sym_jsx_self_closing_element] = STATE(1634),
- [sym_class] = STATE(1650),
- [sym_function_expression] = STATE(1650),
- [sym_generator_function] = STATE(1650),
- [sym_arrow_function] = STATE(1650),
- [sym__call_signature] = STATE(5765),
- [sym_call_expression] = STATE(1650),
- [sym_new_expression] = STATE(1634),
- [sym_await_expression] = STATE(1634),
- [sym_member_expression] = STATE(1369),
- [sym_subscript_expression] = STATE(1369),
- [sym_assignment_expression] = STATE(1634),
- [sym__augmented_assignment_lhs] = STATE(2891),
- [sym_augmented_assignment_expression] = STATE(1634),
- [sym__destructuring_pattern] = STATE(5861),
- [sym_ternary_expression] = STATE(1634),
- [sym_binary_expression] = STATE(1634),
- [sym_unary_expression] = STATE(1634),
- [sym_update_expression] = STATE(1634),
- [sym_string] = STATE(1650),
- [sym_template_string] = STATE(1650),
- [sym_regex] = STATE(1650),
- [sym_meta_property] = STATE(1650),
- [sym_decorator] = STATE(1244),
- [sym_formal_parameters] = STATE(3742),
- [sym_non_null_expression] = STATE(1369),
- [sym_as_expression] = STATE(1634),
- [sym_satisfies_expression] = STATE(1634),
- [sym_instantiation_expression] = STATE(1634),
- [sym_internal_module] = STATE(1634),
- [sym_type_parameters] = STATE(5349),
- [aux_sym_export_statement_repeat1] = STATE(4458),
- [sym_identifier] = ACTIONS(1478),
- [anon_sym_export] = ACTIONS(1114),
- [anon_sym_type] = ACTIONS(1114),
- [anon_sym_namespace] = ACTIONS(1116),
- [anon_sym_LBRACE] = ACTIONS(813),
- [anon_sym_typeof] = ACTIONS(1138),
- [anon_sym_import] = ACTIONS(133),
- [anon_sym_let] = ACTIONS(1114),
- [anon_sym_BANG] = ACTIONS(1122),
- [anon_sym_LPAREN] = ACTIONS(815),
- [anon_sym_await] = ACTIONS(1124),
- [anon_sym_yield] = ACTIONS(1126),
- [anon_sym_LBRACK] = ACTIONS(817),
- [sym_glimmer_opening_tag] = ACTIONS(148),
- [anon_sym_DQUOTE] = ACTIONS(150),
- [anon_sym_SQUOTE] = ACTIONS(152),
- [anon_sym_class] = ACTIONS(154),
- [anon_sym_async] = ACTIONS(1128),
- [anon_sym_function] = ACTIONS(158),
- [anon_sym_new] = ACTIONS(1482),
- [anon_sym_using] = ACTIONS(1132),
- [anon_sym_PLUS] = ACTIONS(1138),
- [anon_sym_DASH] = ACTIONS(1138),
- [anon_sym_SLASH] = ACTIONS(646),
- [anon_sym_LT] = ACTIONS(181),
- [anon_sym_TILDE] = ACTIONS(1122),
- [anon_sym_void] = ACTIONS(1138),
- [anon_sym_delete] = ACTIONS(1138),
- [anon_sym_PLUS_PLUS] = ACTIONS(1140),
- [anon_sym_DASH_DASH] = ACTIONS(1140),
- [sym_comment] = ACTIONS(5),
- [anon_sym_BQUOTE] = ACTIONS(825),
- [sym_number] = ACTIONS(787),
- [sym_private_property_identifier] = ACTIONS(1142),
- [sym_this] = ACTIONS(200),
- [sym_super] = ACTIONS(200),
- [sym_true] = ACTIONS(200),
- [sym_false] = ACTIONS(200),
- [sym_null] = ACTIONS(200),
- [sym_undefined] = ACTIONS(1484),
- [anon_sym_AT] = ACTIONS(99),
- [anon_sym_static] = ACTIONS(1114),
- [anon_sym_readonly] = ACTIONS(1114),
- [anon_sym_get] = ACTIONS(1114),
- [anon_sym_set] = ACTIONS(1114),
- [anon_sym_declare] = ACTIONS(1114),
- [anon_sym_public] = ACTIONS(1114),
- [anon_sym_private] = ACTIONS(1114),
- [anon_sym_protected] = ACTIONS(1114),
- [anon_sym_override] = ACTIONS(1114),
- [anon_sym_module] = ACTIONS(1114),
- [anon_sym_any] = ACTIONS(1114),
- [anon_sym_number] = ACTIONS(1114),
- [anon_sym_boolean] = ACTIONS(1114),
- [anon_sym_string] = ACTIONS(1114),
- [anon_sym_symbol] = ACTIONS(1114),
- [anon_sym_object] = ACTIONS(1114),
- [sym_html_comment] = ACTIONS(5),
- },
- [522] = {
- [sym_import] = STATE(3306),
- [sym_parenthesized_expression] = STATE(1294),
- [sym_expression] = STATE(1617),
- [sym_primary_expression] = STATE(1946),
- [sym_yield_expression] = STATE(2234),
- [sym_object] = STATE(2310),
- [sym_object_pattern] = STATE(5667),
- [sym_array] = STATE(2310),
- [sym_array_pattern] = STATE(5667),
- [sym_glimmer_template] = STATE(2234),
- [sym_jsx_element] = STATE(2234),
- [sym_jsx_opening_element] = STATE(3051),
- [sym_jsx_self_closing_element] = STATE(2234),
- [sym_class] = STATE(2310),
- [sym_function_expression] = STATE(2310),
- [sym_generator_function] = STATE(2310),
- [sym_arrow_function] = STATE(2310),
- [sym__call_signature] = STATE(5809),
- [sym_call_expression] = STATE(2310),
- [sym_new_expression] = STATE(2234),
- [sym_await_expression] = STATE(2234),
- [sym_member_expression] = STATE(1294),
- [sym_subscript_expression] = STATE(1294),
- [sym_assignment_expression] = STATE(2234),
- [sym__augmented_assignment_lhs] = STATE(2875),
- [sym_augmented_assignment_expression] = STATE(2234),
- [sym__destructuring_pattern] = STATE(5667),
- [sym_ternary_expression] = STATE(2234),
- [sym_binary_expression] = STATE(2234),
- [sym_unary_expression] = STATE(2234),
- [sym_update_expression] = STATE(2234),
- [sym_string] = STATE(2310),
- [sym_template_string] = STATE(2310),
- [sym_regex] = STATE(2310),
- [sym_meta_property] = STATE(2310),
- [sym_decorator] = STATE(1244),
- [sym_formal_parameters] = STATE(3742),
- [sym_non_null_expression] = STATE(1294),
- [sym_as_expression] = STATE(2234),
- [sym_satisfies_expression] = STATE(2234),
- [sym_instantiation_expression] = STATE(2234),
- [sym_internal_module] = STATE(2234),
- [sym_type_parameters] = STATE(5349),
- [aux_sym_export_statement_repeat1] = STATE(4499),
- [sym_identifier] = ACTIONS(1440),
- [anon_sym_export] = ACTIONS(1372),
- [anon_sym_type] = ACTIONS(1372),
- [anon_sym_namespace] = ACTIONS(1374),
- [anon_sym_LBRACE] = ACTIONS(700),
- [anon_sym_typeof] = ACTIONS(21),
- [anon_sym_import] = ACTIONS(133),
- [anon_sym_let] = ACTIONS(1372),
- [anon_sym_BANG] = ACTIONS(33),
- [anon_sym_LPAREN] = ACTIONS(41),
- [anon_sym_await] = ACTIONS(43),
- [anon_sym_yield] = ACTIONS(63),
- [anon_sym_LBRACK] = ACTIONS(65),
- [sym_glimmer_opening_tag] = ACTIONS(67),
- [anon_sym_DQUOTE] = ACTIONS(69),
- [anon_sym_SQUOTE] = ACTIONS(71),
- [anon_sym_class] = ACTIONS(709),
- [anon_sym_async] = ACTIONS(1378),
- [anon_sym_function] = ACTIONS(713),
- [anon_sym_new] = ACTIONS(1444),
- [anon_sym_using] = ACTIONS(81),
- [anon_sym_PLUS] = ACTIONS(21),
- [anon_sym_DASH] = ACTIONS(21),
- [anon_sym_SLASH] = ACTIONS(83),
- [anon_sym_LT] = ACTIONS(85),
- [anon_sym_TILDE] = ACTIONS(33),
- [anon_sym_void] = ACTIONS(21),
- [anon_sym_delete] = ACTIONS(21),
- [anon_sym_PLUS_PLUS] = ACTIONS(87),
- [anon_sym_DASH_DASH] = ACTIONS(87),
- [sym_comment] = ACTIONS(5),
- [anon_sym_BQUOTE] = ACTIONS(89),
- [sym_number] = ACTIONS(91),
- [sym_private_property_identifier] = ACTIONS(93),
- [sym_this] = ACTIONS(95),
- [sym_super] = ACTIONS(95),
- [sym_true] = ACTIONS(95),
- [sym_false] = ACTIONS(95),
- [sym_null] = ACTIONS(95),
- [sym_undefined] = ACTIONS(97),
- [anon_sym_AT] = ACTIONS(99),
- [anon_sym_static] = ACTIONS(1372),
- [anon_sym_readonly] = ACTIONS(1372),
- [anon_sym_get] = ACTIONS(1372),
- [anon_sym_set] = ACTIONS(1372),
- [anon_sym_declare] = ACTIONS(1372),
- [anon_sym_public] = ACTIONS(1372),
- [anon_sym_private] = ACTIONS(1372),
- [anon_sym_protected] = ACTIONS(1372),
- [anon_sym_override] = ACTIONS(1372),
- [anon_sym_module] = ACTIONS(1372),
- [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_object] = ACTIONS(1372),
- [sym_html_comment] = ACTIONS(5),
- },
- [523] = {
- [sym_import] = STATE(3306),
- [sym_parenthesized_expression] = STATE(1294),
- [sym_expression] = STATE(1624),
- [sym_primary_expression] = STATE(1946),
- [sym_yield_expression] = STATE(2234),
- [sym_object] = STATE(2310),
- [sym_object_pattern] = STATE(5667),
- [sym_array] = STATE(2310),
- [sym_array_pattern] = STATE(5667),
- [sym_glimmer_template] = STATE(2234),
- [sym_jsx_element] = STATE(2234),
- [sym_jsx_opening_element] = STATE(3051),
- [sym_jsx_self_closing_element] = STATE(2234),
- [sym_class] = STATE(2310),
- [sym_function_expression] = STATE(2310),
- [sym_generator_function] = STATE(2310),
- [sym_arrow_function] = STATE(2310),
- [sym__call_signature] = STATE(5809),
- [sym_call_expression] = STATE(2310),
- [sym_new_expression] = STATE(2234),
- [sym_await_expression] = STATE(2234),
- [sym_member_expression] = STATE(1294),
- [sym_subscript_expression] = STATE(1294),
- [sym_assignment_expression] = STATE(2234),
- [sym__augmented_assignment_lhs] = STATE(2875),
- [sym_augmented_assignment_expression] = STATE(2234),
- [sym__destructuring_pattern] = STATE(5667),
- [sym_ternary_expression] = STATE(2234),
- [sym_binary_expression] = STATE(2234),
- [sym_unary_expression] = STATE(2234),
- [sym_update_expression] = STATE(2234),
- [sym_string] = STATE(2310),
- [sym_template_string] = STATE(2310),
- [sym_regex] = STATE(2310),
- [sym_meta_property] = STATE(2310),
- [sym_decorator] = STATE(1244),
- [sym_formal_parameters] = STATE(3742),
- [sym_non_null_expression] = STATE(1294),
- [sym_as_expression] = STATE(2234),
- [sym_satisfies_expression] = STATE(2234),
- [sym_instantiation_expression] = STATE(2234),
- [sym_internal_module] = STATE(2234),
- [sym_type_parameters] = STATE(5349),
- [aux_sym_export_statement_repeat1] = STATE(4499),
- [sym_identifier] = ACTIONS(1440),
- [anon_sym_export] = ACTIONS(1372),
- [anon_sym_type] = ACTIONS(1372),
- [anon_sym_namespace] = ACTIONS(1374),
- [anon_sym_LBRACE] = ACTIONS(700),
- [anon_sym_typeof] = ACTIONS(21),
- [anon_sym_import] = ACTIONS(133),
- [anon_sym_let] = ACTIONS(1372),
- [anon_sym_BANG] = ACTIONS(33),
- [anon_sym_LPAREN] = ACTIONS(41),
- [anon_sym_await] = ACTIONS(43),
- [anon_sym_yield] = ACTIONS(63),
- [anon_sym_LBRACK] = ACTIONS(65),
- [sym_glimmer_opening_tag] = ACTIONS(67),
- [anon_sym_DQUOTE] = ACTIONS(69),
- [anon_sym_SQUOTE] = ACTIONS(71),
- [anon_sym_class] = ACTIONS(709),
- [anon_sym_async] = ACTIONS(1378),
- [anon_sym_function] = ACTIONS(713),
- [anon_sym_new] = ACTIONS(1444),
- [anon_sym_using] = ACTIONS(81),
- [anon_sym_PLUS] = ACTIONS(21),
- [anon_sym_DASH] = ACTIONS(21),
- [anon_sym_SLASH] = ACTIONS(83),
- [anon_sym_LT] = ACTIONS(85),
- [anon_sym_TILDE] = ACTIONS(33),
- [anon_sym_void] = ACTIONS(21),
- [anon_sym_delete] = ACTIONS(21),
- [anon_sym_PLUS_PLUS] = ACTIONS(87),
- [anon_sym_DASH_DASH] = ACTIONS(87),
- [sym_comment] = ACTIONS(5),
- [anon_sym_BQUOTE] = ACTIONS(89),
- [sym_number] = ACTIONS(91),
- [sym_private_property_identifier] = ACTIONS(93),
- [sym_this] = ACTIONS(95),
- [sym_super] = ACTIONS(95),
- [sym_true] = ACTIONS(95),
- [sym_false] = ACTIONS(95),
- [sym_null] = ACTIONS(95),
- [sym_undefined] = ACTIONS(97),
- [anon_sym_AT] = ACTIONS(99),
- [anon_sym_static] = ACTIONS(1372),
- [anon_sym_readonly] = ACTIONS(1372),
- [anon_sym_get] = ACTIONS(1372),
- [anon_sym_set] = ACTIONS(1372),
- [anon_sym_declare] = ACTIONS(1372),
- [anon_sym_public] = ACTIONS(1372),
- [anon_sym_private] = ACTIONS(1372),
- [anon_sym_protected] = ACTIONS(1372),
- [anon_sym_override] = ACTIONS(1372),
- [anon_sym_module] = ACTIONS(1372),
- [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_object] = ACTIONS(1372),
- [sym_html_comment] = ACTIONS(5),
- },
- [524] = {
- [sym_import] = STATE(3306),
- [sym_parenthesized_expression] = STATE(1294),
- [sym_expression] = STATE(1627),
- [sym_primary_expression] = STATE(1946),
- [sym_yield_expression] = STATE(2234),
- [sym_object] = STATE(2310),
- [sym_object_pattern] = STATE(5667),
- [sym_array] = STATE(2310),
- [sym_array_pattern] = STATE(5667),
- [sym_glimmer_template] = STATE(2234),
- [sym_jsx_element] = STATE(2234),
- [sym_jsx_opening_element] = STATE(3051),
- [sym_jsx_self_closing_element] = STATE(2234),
- [sym_class] = STATE(2310),
- [sym_function_expression] = STATE(2310),
- [sym_generator_function] = STATE(2310),
- [sym_arrow_function] = STATE(2310),
- [sym__call_signature] = STATE(5809),
- [sym_call_expression] = STATE(2310),
- [sym_new_expression] = STATE(2234),
- [sym_await_expression] = STATE(2234),
- [sym_member_expression] = STATE(1294),
- [sym_subscript_expression] = STATE(1294),
- [sym_assignment_expression] = STATE(2234),
- [sym__augmented_assignment_lhs] = STATE(2875),
- [sym_augmented_assignment_expression] = STATE(2234),
- [sym__destructuring_pattern] = STATE(5667),
- [sym_ternary_expression] = STATE(2234),
- [sym_binary_expression] = STATE(2234),
- [sym_unary_expression] = STATE(2234),
- [sym_update_expression] = STATE(2234),
- [sym_string] = STATE(2310),
- [sym_template_string] = STATE(2310),
- [sym_regex] = STATE(2310),
- [sym_meta_property] = STATE(2310),
- [sym_decorator] = STATE(1244),
- [sym_formal_parameters] = STATE(3742),
- [sym_non_null_expression] = STATE(1294),
- [sym_as_expression] = STATE(2234),
- [sym_satisfies_expression] = STATE(2234),
- [sym_instantiation_expression] = STATE(2234),
- [sym_internal_module] = STATE(2234),
- [sym_type_parameters] = STATE(5349),
- [aux_sym_export_statement_repeat1] = STATE(4499),
- [sym_identifier] = ACTIONS(1440),
- [anon_sym_export] = ACTIONS(1372),
- [anon_sym_type] = ACTIONS(1372),
- [anon_sym_namespace] = ACTIONS(1374),
- [anon_sym_LBRACE] = ACTIONS(700),
- [anon_sym_typeof] = ACTIONS(21),
- [anon_sym_import] = ACTIONS(133),
- [anon_sym_let] = ACTIONS(1372),
- [anon_sym_BANG] = ACTIONS(33),
- [anon_sym_LPAREN] = ACTIONS(41),
- [anon_sym_await] = ACTIONS(43),
- [anon_sym_yield] = ACTIONS(63),
- [anon_sym_LBRACK] = ACTIONS(65),
- [sym_glimmer_opening_tag] = ACTIONS(67),
- [anon_sym_DQUOTE] = ACTIONS(69),
- [anon_sym_SQUOTE] = ACTIONS(71),
- [anon_sym_class] = ACTIONS(709),
- [anon_sym_async] = ACTIONS(1378),
- [anon_sym_function] = ACTIONS(713),
- [anon_sym_new] = ACTIONS(1444),
- [anon_sym_using] = ACTIONS(81),
- [anon_sym_PLUS] = ACTIONS(21),
- [anon_sym_DASH] = ACTIONS(21),
- [anon_sym_SLASH] = ACTIONS(83),
- [anon_sym_LT] = ACTIONS(85),
- [anon_sym_TILDE] = ACTIONS(33),
- [anon_sym_void] = ACTIONS(21),
- [anon_sym_delete] = ACTIONS(21),
- [anon_sym_PLUS_PLUS] = ACTIONS(87),
- [anon_sym_DASH_DASH] = ACTIONS(87),
- [sym_comment] = ACTIONS(5),
- [anon_sym_BQUOTE] = ACTIONS(89),
- [sym_number] = ACTIONS(91),
- [sym_private_property_identifier] = ACTIONS(93),
- [sym_this] = ACTIONS(95),
- [sym_super] = ACTIONS(95),
- [sym_true] = ACTIONS(95),
- [sym_false] = ACTIONS(95),
- [sym_null] = ACTIONS(95),
- [sym_undefined] = ACTIONS(97),
- [anon_sym_AT] = ACTIONS(99),
- [anon_sym_static] = ACTIONS(1372),
- [anon_sym_readonly] = ACTIONS(1372),
- [anon_sym_get] = ACTIONS(1372),
- [anon_sym_set] = ACTIONS(1372),
- [anon_sym_declare] = ACTIONS(1372),
- [anon_sym_public] = ACTIONS(1372),
- [anon_sym_private] = ACTIONS(1372),
- [anon_sym_protected] = ACTIONS(1372),
- [anon_sym_override] = ACTIONS(1372),
- [anon_sym_module] = ACTIONS(1372),
- [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_object] = ACTIONS(1372),
- [sym_html_comment] = ACTIONS(5),
- },
- [525] = {
- [sym_import] = STATE(3334),
- [sym_parenthesized_expression] = STATE(1369),
- [sym_expression] = STATE(2301),
- [sym_primary_expression] = STATE(1468),
- [sym_yield_expression] = STATE(1634),
- [sym_object] = STATE(1650),
- [sym_object_pattern] = STATE(5861),
- [sym_array] = STATE(1650),
- [sym_array_pattern] = STATE(5861),
- [sym_glimmer_template] = STATE(1634),
- [sym_jsx_element] = STATE(1634),
- [sym_jsx_opening_element] = STATE(3026),
- [sym_jsx_self_closing_element] = STATE(1634),
- [sym_class] = STATE(1650),
- [sym_function_expression] = STATE(1650),
- [sym_generator_function] = STATE(1650),
- [sym_arrow_function] = STATE(1650),
- [sym__call_signature] = STATE(5765),
- [sym_call_expression] = STATE(1650),
- [sym_new_expression] = STATE(1634),
- [sym_await_expression] = STATE(1634),
- [sym_member_expression] = STATE(1369),
- [sym_subscript_expression] = STATE(1369),
- [sym_assignment_expression] = STATE(1634),
- [sym__augmented_assignment_lhs] = STATE(2891),
- [sym_augmented_assignment_expression] = STATE(1634),
- [sym__destructuring_pattern] = STATE(5861),
- [sym_ternary_expression] = STATE(1634),
- [sym_binary_expression] = STATE(1634),
- [sym_unary_expression] = STATE(1634),
- [sym_update_expression] = STATE(1634),
- [sym_string] = STATE(1650),
- [sym_template_string] = STATE(1650),
- [sym_regex] = STATE(1650),
- [sym_meta_property] = STATE(1650),
- [sym_decorator] = STATE(1244),
- [sym_formal_parameters] = STATE(3742),
- [sym_non_null_expression] = STATE(1369),
- [sym_as_expression] = STATE(1634),
- [sym_satisfies_expression] = STATE(1634),
- [sym_instantiation_expression] = STATE(1634),
- [sym_internal_module] = STATE(1634),
- [sym_type_parameters] = STATE(5349),
- [aux_sym_export_statement_repeat1] = STATE(4458),
- [sym_identifier] = ACTIONS(1478),
- [anon_sym_export] = ACTIONS(1114),
- [anon_sym_type] = ACTIONS(1114),
- [anon_sym_namespace] = ACTIONS(1116),
- [anon_sym_LBRACE] = ACTIONS(813),
- [anon_sym_typeof] = ACTIONS(1138),
- [anon_sym_import] = ACTIONS(133),
- [anon_sym_let] = ACTIONS(1114),
- [anon_sym_BANG] = ACTIONS(1122),
- [anon_sym_LPAREN] = ACTIONS(815),
- [anon_sym_await] = ACTIONS(1124),
- [anon_sym_yield] = ACTIONS(1126),
- [anon_sym_LBRACK] = ACTIONS(817),
- [sym_glimmer_opening_tag] = ACTIONS(148),
- [anon_sym_DQUOTE] = ACTIONS(150),
- [anon_sym_SQUOTE] = ACTIONS(152),
- [anon_sym_class] = ACTIONS(154),
- [anon_sym_async] = ACTIONS(1128),
- [anon_sym_function] = ACTIONS(158),
- [anon_sym_new] = ACTIONS(1482),
- [anon_sym_using] = ACTIONS(1132),
- [anon_sym_PLUS] = ACTIONS(1138),
- [anon_sym_DASH] = ACTIONS(1138),
- [anon_sym_SLASH] = ACTIONS(646),
- [anon_sym_LT] = ACTIONS(181),
- [anon_sym_TILDE] = ACTIONS(1122),
- [anon_sym_void] = ACTIONS(1138),
- [anon_sym_delete] = ACTIONS(1138),
- [anon_sym_PLUS_PLUS] = ACTIONS(1140),
- [anon_sym_DASH_DASH] = ACTIONS(1140),
- [sym_comment] = ACTIONS(5),
- [anon_sym_BQUOTE] = ACTIONS(825),
- [sym_number] = ACTIONS(787),
- [sym_private_property_identifier] = ACTIONS(1142),
- [sym_this] = ACTIONS(200),
- [sym_super] = ACTIONS(200),
- [sym_true] = ACTIONS(200),
- [sym_false] = ACTIONS(200),
- [sym_null] = ACTIONS(200),
- [sym_undefined] = ACTIONS(1484),
- [anon_sym_AT] = ACTIONS(99),
- [anon_sym_static] = ACTIONS(1114),
- [anon_sym_readonly] = ACTIONS(1114),
- [anon_sym_get] = ACTIONS(1114),
- [anon_sym_set] = ACTIONS(1114),
- [anon_sym_declare] = ACTIONS(1114),
- [anon_sym_public] = ACTIONS(1114),
- [anon_sym_private] = ACTIONS(1114),
- [anon_sym_protected] = ACTIONS(1114),
- [anon_sym_override] = ACTIONS(1114),
- [anon_sym_module] = ACTIONS(1114),
- [anon_sym_any] = ACTIONS(1114),
- [anon_sym_number] = ACTIONS(1114),
- [anon_sym_boolean] = ACTIONS(1114),
- [anon_sym_string] = ACTIONS(1114),
- [anon_sym_symbol] = ACTIONS(1114),
- [anon_sym_object] = ACTIONS(1114),
- [sym_html_comment] = ACTIONS(5),
- },
- [526] = {
- [sym_import] = STATE(3334),
- [sym_parenthesized_expression] = STATE(1369),
- [sym_expression] = STATE(2302),
- [sym_primary_expression] = STATE(1468),
- [sym_yield_expression] = STATE(1634),
- [sym_object] = STATE(1650),
- [sym_object_pattern] = STATE(5861),
- [sym_array] = STATE(1650),
- [sym_array_pattern] = STATE(5861),
- [sym_glimmer_template] = STATE(1634),
- [sym_jsx_element] = STATE(1634),
- [sym_jsx_opening_element] = STATE(3026),
- [sym_jsx_self_closing_element] = STATE(1634),
- [sym_class] = STATE(1650),
- [sym_function_expression] = STATE(1650),
- [sym_generator_function] = STATE(1650),
- [sym_arrow_function] = STATE(1650),
- [sym__call_signature] = STATE(5765),
- [sym_call_expression] = STATE(1650),
- [sym_new_expression] = STATE(1634),
- [sym_await_expression] = STATE(1634),
- [sym_member_expression] = STATE(1369),
- [sym_subscript_expression] = STATE(1369),
- [sym_assignment_expression] = STATE(1634),
- [sym__augmented_assignment_lhs] = STATE(2891),
- [sym_augmented_assignment_expression] = STATE(1634),
- [sym__destructuring_pattern] = STATE(5861),
- [sym_ternary_expression] = STATE(1634),
- [sym_binary_expression] = STATE(1634),
- [sym_unary_expression] = STATE(1634),
- [sym_update_expression] = STATE(1634),
- [sym_string] = STATE(1650),
- [sym_template_string] = STATE(1650),
- [sym_regex] = STATE(1650),
- [sym_meta_property] = STATE(1650),
- [sym_decorator] = STATE(1244),
- [sym_formal_parameters] = STATE(3742),
- [sym_non_null_expression] = STATE(1369),
- [sym_as_expression] = STATE(1634),
- [sym_satisfies_expression] = STATE(1634),
- [sym_instantiation_expression] = STATE(1634),
- [sym_internal_module] = STATE(1634),
- [sym_type_parameters] = STATE(5349),
- [aux_sym_export_statement_repeat1] = STATE(4458),
- [sym_identifier] = ACTIONS(1478),
- [anon_sym_export] = ACTIONS(1114),
- [anon_sym_type] = ACTIONS(1114),
- [anon_sym_namespace] = ACTIONS(1116),
- [anon_sym_LBRACE] = ACTIONS(813),
- [anon_sym_typeof] = ACTIONS(1138),
- [anon_sym_import] = ACTIONS(133),
- [anon_sym_let] = ACTIONS(1114),
- [anon_sym_BANG] = ACTIONS(1122),
- [anon_sym_LPAREN] = ACTIONS(815),
- [anon_sym_await] = ACTIONS(1124),
- [anon_sym_yield] = ACTIONS(1126),
- [anon_sym_LBRACK] = ACTIONS(817),
- [sym_glimmer_opening_tag] = ACTIONS(148),
- [anon_sym_DQUOTE] = ACTIONS(150),
- [anon_sym_SQUOTE] = ACTIONS(152),
- [anon_sym_class] = ACTIONS(154),
- [anon_sym_async] = ACTIONS(1128),
- [anon_sym_function] = ACTIONS(158),
- [anon_sym_new] = ACTIONS(1482),
- [anon_sym_using] = ACTIONS(1132),
- [anon_sym_PLUS] = ACTIONS(1138),
- [anon_sym_DASH] = ACTIONS(1138),
- [anon_sym_SLASH] = ACTIONS(646),
- [anon_sym_LT] = ACTIONS(181),
- [anon_sym_TILDE] = ACTIONS(1122),
- [anon_sym_void] = ACTIONS(1138),
- [anon_sym_delete] = ACTIONS(1138),
- [anon_sym_PLUS_PLUS] = ACTIONS(1140),
- [anon_sym_DASH_DASH] = ACTIONS(1140),
- [sym_comment] = ACTIONS(5),
- [anon_sym_BQUOTE] = ACTIONS(825),
- [sym_number] = ACTIONS(787),
- [sym_private_property_identifier] = ACTIONS(1142),
- [sym_this] = ACTIONS(200),
- [sym_super] = ACTIONS(200),
- [sym_true] = ACTIONS(200),
- [sym_false] = ACTIONS(200),
- [sym_null] = ACTIONS(200),
- [sym_undefined] = ACTIONS(1484),
- [anon_sym_AT] = ACTIONS(99),
- [anon_sym_static] = ACTIONS(1114),
- [anon_sym_readonly] = ACTIONS(1114),
- [anon_sym_get] = ACTIONS(1114),
- [anon_sym_set] = ACTIONS(1114),
- [anon_sym_declare] = ACTIONS(1114),
- [anon_sym_public] = ACTIONS(1114),
- [anon_sym_private] = ACTIONS(1114),
- [anon_sym_protected] = ACTIONS(1114),
- [anon_sym_override] = ACTIONS(1114),
- [anon_sym_module] = ACTIONS(1114),
- [anon_sym_any] = ACTIONS(1114),
- [anon_sym_number] = ACTIONS(1114),
- [anon_sym_boolean] = ACTIONS(1114),
- [anon_sym_string] = ACTIONS(1114),
- [anon_sym_symbol] = ACTIONS(1114),
- [anon_sym_object] = ACTIONS(1114),
- [sym_html_comment] = ACTIONS(5),
- },
- [527] = {
- [sym_import] = STATE(3334),
- [sym_parenthesized_expression] = STATE(1251),
- [sym_expression] = STATE(1530),
- [sym_primary_expression] = STATE(1468),
- [sym_yield_expression] = STATE(1634),
- [sym_object] = STATE(1650),
- [sym_object_pattern] = STATE(5633),
- [sym_array] = STATE(1650),
- [sym_array_pattern] = STATE(5633),
- [sym_glimmer_template] = STATE(1634),
- [sym_jsx_element] = STATE(1634),
- [sym_jsx_opening_element] = STATE(3026),
- [sym_jsx_self_closing_element] = STATE(1634),
- [sym_class] = STATE(1650),
- [sym_function_expression] = STATE(1650),
- [sym_generator_function] = STATE(1650),
- [sym_arrow_function] = STATE(1650),
- [sym__call_signature] = STATE(5828),
- [sym_call_expression] = STATE(1650),
- [sym_new_expression] = STATE(1634),
- [sym_await_expression] = STATE(1634),
- [sym_member_expression] = STATE(1251),
- [sym_subscript_expression] = STATE(1251),
- [sym_assignment_expression] = STATE(1634),
- [sym__augmented_assignment_lhs] = STATE(2900),
- [sym_augmented_assignment_expression] = STATE(1634),
- [sym__destructuring_pattern] = STATE(5633),
- [sym_ternary_expression] = STATE(1634),
- [sym_binary_expression] = STATE(1634),
- [sym_unary_expression] = STATE(1634),
- [sym_update_expression] = STATE(1634),
- [sym_string] = STATE(1650),
- [sym_template_string] = STATE(1650),
- [sym_regex] = STATE(1650),
- [sym_meta_property] = STATE(1650),
- [sym_decorator] = STATE(1244),
- [sym_formal_parameters] = STATE(3742),
- [sym_non_null_expression] = STATE(1251),
- [sym_as_expression] = STATE(1634),
- [sym_satisfies_expression] = STATE(1634),
- [sym_instantiation_expression] = STATE(1634),
- [sym_internal_module] = STATE(1634),
- [sym_type_parameters] = STATE(5349),
- [aux_sym_export_statement_repeat1] = STATE(4458),
- [sym_identifier] = ACTIONS(1428),
- [anon_sym_export] = ACTIONS(1044),
- [anon_sym_type] = ACTIONS(1044),
- [anon_sym_namespace] = ACTIONS(1046),
- [anon_sym_LBRACE] = ACTIONS(813),
- [anon_sym_typeof] = ACTIONS(650),
- [anon_sym_import] = ACTIONS(133),
- [anon_sym_let] = ACTIONS(1044),
- [anon_sym_BANG] = ACTIONS(622),
- [anon_sym_LPAREN] = ACTIONS(815),
- [anon_sym_await] = ACTIONS(624),
- [anon_sym_yield] = ACTIONS(626),
- [anon_sym_LBRACK] = ACTIONS(817),
- [sym_glimmer_opening_tag] = ACTIONS(148),
- [anon_sym_DQUOTE] = ACTIONS(150),
- [anon_sym_SQUOTE] = ACTIONS(152),
- [anon_sym_class] = ACTIONS(154),
- [anon_sym_async] = ACTIONS(1052),
- [anon_sym_function] = ACTIONS(158),
- [anon_sym_new] = ACTIONS(1436),
- [anon_sym_using] = ACTIONS(636),
- [anon_sym_PLUS] = ACTIONS(650),
- [anon_sym_DASH] = ACTIONS(650),
- [anon_sym_SLASH] = ACTIONS(646),
- [anon_sym_LT] = ACTIONS(181),
- [anon_sym_TILDE] = ACTIONS(622),
- [anon_sym_void] = ACTIONS(650),
- [anon_sym_delete] = ACTIONS(650),
- [anon_sym_PLUS_PLUS] = ACTIONS(652),
- [anon_sym_DASH_DASH] = ACTIONS(652),
- [sym_comment] = ACTIONS(5),
- [anon_sym_BQUOTE] = ACTIONS(825),
- [sym_number] = ACTIONS(787),
- [sym_private_property_identifier] = ACTIONS(654),
- [sym_this] = ACTIONS(200),
- [sym_super] = ACTIONS(200),
- [sym_true] = ACTIONS(200),
- [sym_false] = ACTIONS(200),
- [sym_null] = ACTIONS(200),
- [sym_undefined] = ACTIONS(1438),
- [anon_sym_AT] = ACTIONS(99),
- [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_override] = 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_object] = ACTIONS(1044),
- [sym_html_comment] = ACTIONS(5),
- },
- [528] = {
- [sym_import] = STATE(3334),
- [sym_parenthesized_expression] = STATE(1251),
- [sym_expression] = STATE(1534),
- [sym_primary_expression] = STATE(1468),
- [sym_yield_expression] = STATE(1634),
- [sym_object] = STATE(1650),
- [sym_object_pattern] = STATE(5633),
- [sym_array] = STATE(1650),
- [sym_array_pattern] = STATE(5633),
- [sym_glimmer_template] = STATE(1634),
- [sym_jsx_element] = STATE(1634),
- [sym_jsx_opening_element] = STATE(3026),
- [sym_jsx_self_closing_element] = STATE(1634),
- [sym_class] = STATE(1650),
- [sym_function_expression] = STATE(1650),
- [sym_generator_function] = STATE(1650),
- [sym_arrow_function] = STATE(1650),
- [sym__call_signature] = STATE(5828),
- [sym_call_expression] = STATE(1650),
- [sym_new_expression] = STATE(1634),
- [sym_await_expression] = STATE(1634),
- [sym_member_expression] = STATE(1251),
- [sym_subscript_expression] = STATE(1251),
- [sym_assignment_expression] = STATE(1634),
- [sym__augmented_assignment_lhs] = STATE(2900),
- [sym_augmented_assignment_expression] = STATE(1634),
- [sym__destructuring_pattern] = STATE(5633),
- [sym_ternary_expression] = STATE(1634),
- [sym_binary_expression] = STATE(1634),
- [sym_unary_expression] = STATE(1634),
- [sym_update_expression] = STATE(1634),
- [sym_string] = STATE(1650),
- [sym_template_string] = STATE(1650),
- [sym_regex] = STATE(1650),
- [sym_meta_property] = STATE(1650),
- [sym_decorator] = STATE(1244),
- [sym_formal_parameters] = STATE(3742),
- [sym_non_null_expression] = STATE(1251),
- [sym_as_expression] = STATE(1634),
- [sym_satisfies_expression] = STATE(1634),
- [sym_instantiation_expression] = STATE(1634),
- [sym_internal_module] = STATE(1634),
- [sym_type_parameters] = STATE(5349),
- [aux_sym_export_statement_repeat1] = STATE(4458),
- [sym_identifier] = ACTIONS(1428),
- [anon_sym_export] = ACTIONS(1044),
- [anon_sym_type] = ACTIONS(1044),
- [anon_sym_namespace] = ACTIONS(1046),
- [anon_sym_LBRACE] = ACTIONS(813),
- [anon_sym_typeof] = ACTIONS(650),
- [anon_sym_import] = ACTIONS(133),
- [anon_sym_let] = ACTIONS(1044),
- [anon_sym_BANG] = ACTIONS(622),
- [anon_sym_LPAREN] = ACTIONS(815),
- [anon_sym_await] = ACTIONS(624),
- [anon_sym_yield] = ACTIONS(626),
- [anon_sym_LBRACK] = ACTIONS(817),
- [sym_glimmer_opening_tag] = ACTIONS(148),
- [anon_sym_DQUOTE] = ACTIONS(150),
- [anon_sym_SQUOTE] = ACTIONS(152),
- [anon_sym_class] = ACTIONS(154),
- [anon_sym_async] = ACTIONS(1052),
- [anon_sym_function] = ACTIONS(158),
- [anon_sym_new] = ACTIONS(1436),
- [anon_sym_using] = ACTIONS(636),
- [anon_sym_PLUS] = ACTIONS(650),
- [anon_sym_DASH] = ACTIONS(650),
- [anon_sym_SLASH] = ACTIONS(646),
- [anon_sym_LT] = ACTIONS(181),
- [anon_sym_TILDE] = ACTIONS(622),
- [anon_sym_void] = ACTIONS(650),
- [anon_sym_delete] = ACTIONS(650),
- [anon_sym_PLUS_PLUS] = ACTIONS(652),
- [anon_sym_DASH_DASH] = ACTIONS(652),
- [sym_comment] = ACTIONS(5),
- [anon_sym_BQUOTE] = ACTIONS(825),
- [sym_number] = ACTIONS(787),
- [sym_private_property_identifier] = ACTIONS(654),
- [sym_this] = ACTIONS(200),
- [sym_super] = ACTIONS(200),
- [sym_true] = ACTIONS(200),
- [sym_false] = ACTIONS(200),
- [sym_null] = ACTIONS(200),
- [sym_undefined] = ACTIONS(1438),
- [anon_sym_AT] = ACTIONS(99),
- [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_override] = 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_object] = ACTIONS(1044),
- [sym_html_comment] = ACTIONS(5),
- },
- [529] = {
- [sym_import] = STATE(3334),
- [sym_parenthesized_expression] = STATE(1369),
- [sym_expression] = STATE(2305),
- [sym_primary_expression] = STATE(1468),
- [sym_yield_expression] = STATE(1634),
- [sym_object] = STATE(1650),
- [sym_object_pattern] = STATE(5861),
- [sym_array] = STATE(1650),
- [sym_array_pattern] = STATE(5861),
- [sym_glimmer_template] = STATE(1634),
- [sym_jsx_element] = STATE(1634),
- [sym_jsx_opening_element] = STATE(3026),
- [sym_jsx_self_closing_element] = STATE(1634),
- [sym_class] = STATE(1650),
- [sym_function_expression] = STATE(1650),
- [sym_generator_function] = STATE(1650),
- [sym_arrow_function] = STATE(1650),
- [sym__call_signature] = STATE(5765),
- [sym_call_expression] = STATE(1650),
- [sym_new_expression] = STATE(1634),
- [sym_await_expression] = STATE(1634),
- [sym_member_expression] = STATE(1369),
- [sym_subscript_expression] = STATE(1369),
- [sym_assignment_expression] = STATE(1634),
- [sym__augmented_assignment_lhs] = STATE(2891),
- [sym_augmented_assignment_expression] = STATE(1634),
- [sym__destructuring_pattern] = STATE(5861),
- [sym_ternary_expression] = STATE(1634),
- [sym_binary_expression] = STATE(1634),
- [sym_unary_expression] = STATE(1634),
- [sym_update_expression] = STATE(1634),
- [sym_string] = STATE(1650),
- [sym_template_string] = STATE(1650),
- [sym_regex] = STATE(1650),
- [sym_meta_property] = STATE(1650),
- [sym_decorator] = STATE(1244),
- [sym_formal_parameters] = STATE(3742),
- [sym_non_null_expression] = STATE(1369),
- [sym_as_expression] = STATE(1634),
- [sym_satisfies_expression] = STATE(1634),
- [sym_instantiation_expression] = STATE(1634),
- [sym_internal_module] = STATE(1634),
- [sym_type_parameters] = STATE(5349),
- [aux_sym_export_statement_repeat1] = STATE(4458),
- [sym_identifier] = ACTIONS(1478),
- [anon_sym_export] = ACTIONS(1114),
- [anon_sym_type] = ACTIONS(1114),
- [anon_sym_namespace] = ACTIONS(1116),
- [anon_sym_LBRACE] = ACTIONS(813),
- [anon_sym_typeof] = ACTIONS(1138),
- [anon_sym_import] = ACTIONS(133),
- [anon_sym_let] = ACTIONS(1114),
- [anon_sym_BANG] = ACTIONS(1122),
- [anon_sym_LPAREN] = ACTIONS(815),
- [anon_sym_await] = ACTIONS(1124),
- [anon_sym_yield] = ACTIONS(1126),
- [anon_sym_LBRACK] = ACTIONS(817),
- [sym_glimmer_opening_tag] = ACTIONS(148),
- [anon_sym_DQUOTE] = ACTIONS(150),
- [anon_sym_SQUOTE] = ACTIONS(152),
- [anon_sym_class] = ACTIONS(154),
- [anon_sym_async] = ACTIONS(1128),
- [anon_sym_function] = ACTIONS(158),
- [anon_sym_new] = ACTIONS(1482),
- [anon_sym_using] = ACTIONS(1132),
- [anon_sym_PLUS] = ACTIONS(1138),
- [anon_sym_DASH] = ACTIONS(1138),
- [anon_sym_SLASH] = ACTIONS(646),
- [anon_sym_LT] = ACTIONS(181),
- [anon_sym_TILDE] = ACTIONS(1122),
- [anon_sym_void] = ACTIONS(1138),
- [anon_sym_delete] = ACTIONS(1138),
- [anon_sym_PLUS_PLUS] = ACTIONS(1140),
- [anon_sym_DASH_DASH] = ACTIONS(1140),
- [sym_comment] = ACTIONS(5),
- [anon_sym_BQUOTE] = ACTIONS(825),
- [sym_number] = ACTIONS(2111),
- [sym_private_property_identifier] = ACTIONS(1142),
- [sym_this] = ACTIONS(200),
- [sym_super] = ACTIONS(200),
- [sym_true] = ACTIONS(200),
- [sym_false] = ACTIONS(200),
- [sym_null] = ACTIONS(200),
- [sym_undefined] = ACTIONS(1484),
- [anon_sym_AT] = ACTIONS(99),
- [anon_sym_static] = ACTIONS(1114),
- [anon_sym_readonly] = ACTIONS(1114),
- [anon_sym_get] = ACTIONS(1114),
- [anon_sym_set] = ACTIONS(1114),
- [anon_sym_declare] = ACTIONS(1114),
- [anon_sym_public] = ACTIONS(1114),
- [anon_sym_private] = ACTIONS(1114),
- [anon_sym_protected] = ACTIONS(1114),
- [anon_sym_override] = ACTIONS(1114),
- [anon_sym_module] = ACTIONS(1114),
- [anon_sym_any] = ACTIONS(1114),
- [anon_sym_number] = ACTIONS(1114),
- [anon_sym_boolean] = ACTIONS(1114),
- [anon_sym_string] = ACTIONS(1114),
- [anon_sym_symbol] = ACTIONS(1114),
- [anon_sym_object] = ACTIONS(1114),
- [sym_html_comment] = ACTIONS(5),
- },
- [530] = {
- [sym_import] = STATE(3334),
- [sym_parenthesized_expression] = STATE(1251),
- [sym_expression] = STATE(1537),
- [sym_primary_expression] = STATE(1468),
- [sym_yield_expression] = STATE(1634),
- [sym_object] = STATE(1650),
- [sym_object_pattern] = STATE(5633),
- [sym_array] = STATE(1650),
- [sym_array_pattern] = STATE(5633),
- [sym_glimmer_template] = STATE(1634),
- [sym_jsx_element] = STATE(1634),
- [sym_jsx_opening_element] = STATE(3026),
- [sym_jsx_self_closing_element] = STATE(1634),
- [sym_class] = STATE(1650),
- [sym_function_expression] = STATE(1650),
- [sym_generator_function] = STATE(1650),
- [sym_arrow_function] = STATE(1650),
- [sym__call_signature] = STATE(5828),
- [sym_call_expression] = STATE(1650),
- [sym_new_expression] = STATE(1634),
- [sym_await_expression] = STATE(1634),
- [sym_member_expression] = STATE(1251),
- [sym_subscript_expression] = STATE(1251),
- [sym_assignment_expression] = STATE(1634),
- [sym__augmented_assignment_lhs] = STATE(2900),
- [sym_augmented_assignment_expression] = STATE(1634),
- [sym__destructuring_pattern] = STATE(5633),
- [sym_ternary_expression] = STATE(1634),
- [sym_binary_expression] = STATE(1634),
- [sym_unary_expression] = STATE(1634),
- [sym_update_expression] = STATE(1634),
- [sym_string] = STATE(1650),
- [sym_template_string] = STATE(1650),
- [sym_regex] = STATE(1650),
- [sym_meta_property] = STATE(1650),
- [sym_decorator] = STATE(1244),
- [sym_formal_parameters] = STATE(3742),
- [sym_non_null_expression] = STATE(1251),
- [sym_as_expression] = STATE(1634),
- [sym_satisfies_expression] = STATE(1634),
- [sym_instantiation_expression] = STATE(1634),
- [sym_internal_module] = STATE(1634),
- [sym_type_parameters] = STATE(5349),
- [aux_sym_export_statement_repeat1] = STATE(4458),
- [sym_identifier] = ACTIONS(1428),
- [anon_sym_export] = ACTIONS(1044),
- [anon_sym_type] = ACTIONS(1044),
- [anon_sym_namespace] = ACTIONS(1046),
- [anon_sym_LBRACE] = ACTIONS(813),
- [anon_sym_typeof] = ACTIONS(650),
- [anon_sym_import] = ACTIONS(133),
- [anon_sym_let] = ACTIONS(1044),
- [anon_sym_BANG] = ACTIONS(622),
- [anon_sym_LPAREN] = ACTIONS(815),
- [anon_sym_await] = ACTIONS(624),
- [anon_sym_yield] = ACTIONS(626),
- [anon_sym_LBRACK] = ACTIONS(817),
- [sym_glimmer_opening_tag] = ACTIONS(148),
- [anon_sym_DQUOTE] = ACTIONS(150),
- [anon_sym_SQUOTE] = ACTIONS(152),
- [anon_sym_class] = ACTIONS(154),
- [anon_sym_async] = ACTIONS(1052),
- [anon_sym_function] = ACTIONS(158),
- [anon_sym_new] = ACTIONS(1436),
- [anon_sym_using] = ACTIONS(636),
- [anon_sym_PLUS] = ACTIONS(650),
- [anon_sym_DASH] = ACTIONS(650),
- [anon_sym_SLASH] = ACTIONS(646),
- [anon_sym_LT] = ACTIONS(181),
- [anon_sym_TILDE] = ACTIONS(622),
- [anon_sym_void] = ACTIONS(650),
- [anon_sym_delete] = ACTIONS(650),
- [anon_sym_PLUS_PLUS] = ACTIONS(652),
- [anon_sym_DASH_DASH] = ACTIONS(652),
- [sym_comment] = ACTIONS(5),
- [anon_sym_BQUOTE] = ACTIONS(825),
- [sym_number] = ACTIONS(787),
- [sym_private_property_identifier] = ACTIONS(654),
- [sym_this] = ACTIONS(200),
- [sym_super] = ACTIONS(200),
- [sym_true] = ACTIONS(200),
- [sym_false] = ACTIONS(200),
- [sym_null] = ACTIONS(200),
- [sym_undefined] = ACTIONS(1438),
- [anon_sym_AT] = ACTIONS(99),
- [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_override] = 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_object] = ACTIONS(1044),
- [sym_html_comment] = ACTIONS(5),
- },
- [531] = {
- [sym_import] = STATE(3334),
- [sym_parenthesized_expression] = STATE(1251),
- [sym_expression] = STATE(1538),
- [sym_primary_expression] = STATE(1468),
- [sym_yield_expression] = STATE(1634),
- [sym_object] = STATE(1650),
- [sym_object_pattern] = STATE(5633),
- [sym_array] = STATE(1650),
- [sym_array_pattern] = STATE(5633),
- [sym_glimmer_template] = STATE(1634),
- [sym_jsx_element] = STATE(1634),
- [sym_jsx_opening_element] = STATE(3026),
- [sym_jsx_self_closing_element] = STATE(1634),
- [sym_class] = STATE(1650),
- [sym_function_expression] = STATE(1650),
- [sym_generator_function] = STATE(1650),
- [sym_arrow_function] = STATE(1650),
- [sym__call_signature] = STATE(5828),
- [sym_call_expression] = STATE(1650),
- [sym_new_expression] = STATE(1634),
- [sym_await_expression] = STATE(1634),
- [sym_member_expression] = STATE(1251),
- [sym_subscript_expression] = STATE(1251),
- [sym_assignment_expression] = STATE(1634),
- [sym__augmented_assignment_lhs] = STATE(2900),
- [sym_augmented_assignment_expression] = STATE(1634),
- [sym__destructuring_pattern] = STATE(5633),
- [sym_ternary_expression] = STATE(1634),
- [sym_binary_expression] = STATE(1634),
- [sym_unary_expression] = STATE(1634),
- [sym_update_expression] = STATE(1634),
- [sym_string] = STATE(1650),
- [sym_template_string] = STATE(1650),
- [sym_regex] = STATE(1650),
- [sym_meta_property] = STATE(1650),
- [sym_decorator] = STATE(1244),
- [sym_formal_parameters] = STATE(3742),
- [sym_non_null_expression] = STATE(1251),
- [sym_as_expression] = STATE(1634),
- [sym_satisfies_expression] = STATE(1634),
- [sym_instantiation_expression] = STATE(1634),
- [sym_internal_module] = STATE(1634),
- [sym_type_parameters] = STATE(5349),
- [aux_sym_export_statement_repeat1] = STATE(4458),
- [sym_identifier] = ACTIONS(1428),
- [anon_sym_export] = ACTIONS(1044),
- [anon_sym_type] = ACTIONS(1044),
- [anon_sym_namespace] = ACTIONS(1046),
- [anon_sym_LBRACE] = ACTIONS(813),
- [anon_sym_typeof] = ACTIONS(650),
- [anon_sym_import] = ACTIONS(133),
- [anon_sym_let] = ACTIONS(1044),
- [anon_sym_BANG] = ACTIONS(622),
- [anon_sym_LPAREN] = ACTIONS(815),
- [anon_sym_await] = ACTIONS(624),
- [anon_sym_yield] = ACTIONS(626),
- [anon_sym_LBRACK] = ACTIONS(817),
- [sym_glimmer_opening_tag] = ACTIONS(148),
- [anon_sym_DQUOTE] = ACTIONS(150),
- [anon_sym_SQUOTE] = ACTIONS(152),
- [anon_sym_class] = ACTIONS(154),
- [anon_sym_async] = ACTIONS(1052),
- [anon_sym_function] = ACTIONS(158),
- [anon_sym_new] = ACTIONS(1436),
- [anon_sym_using] = ACTIONS(636),
- [anon_sym_PLUS] = ACTIONS(650),
- [anon_sym_DASH] = ACTIONS(650),
- [anon_sym_SLASH] = ACTIONS(646),
- [anon_sym_LT] = ACTIONS(181),
- [anon_sym_TILDE] = ACTIONS(622),
- [anon_sym_void] = ACTIONS(650),
- [anon_sym_delete] = ACTIONS(650),
- [anon_sym_PLUS_PLUS] = ACTIONS(652),
- [anon_sym_DASH_DASH] = ACTIONS(652),
- [sym_comment] = ACTIONS(5),
- [anon_sym_BQUOTE] = ACTIONS(825),
- [sym_number] = ACTIONS(787),
- [sym_private_property_identifier] = ACTIONS(654),
- [sym_this] = ACTIONS(200),
- [sym_super] = ACTIONS(200),
- [sym_true] = ACTIONS(200),
- [sym_false] = ACTIONS(200),
- [sym_null] = ACTIONS(200),
- [sym_undefined] = ACTIONS(1438),
- [anon_sym_AT] = ACTIONS(99),
- [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_override] = 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_object] = ACTIONS(1044),
- [sym_html_comment] = ACTIONS(5),
- },
- [532] = {
- [sym_import] = STATE(3334),
- [sym_parenthesized_expression] = STATE(1369),
- [sym_expression] = STATE(2303),
- [sym_primary_expression] = STATE(1468),
- [sym_yield_expression] = STATE(1634),
- [sym_object] = STATE(1650),
- [sym_object_pattern] = STATE(5861),
- [sym_array] = STATE(1650),
- [sym_array_pattern] = STATE(5861),
- [sym_glimmer_template] = STATE(1634),
- [sym_jsx_element] = STATE(1634),
- [sym_jsx_opening_element] = STATE(3026),
- [sym_jsx_self_closing_element] = STATE(1634),
- [sym_class] = STATE(1650),
- [sym_function_expression] = STATE(1650),
- [sym_generator_function] = STATE(1650),
- [sym_arrow_function] = STATE(1650),
- [sym__call_signature] = STATE(5765),
- [sym_call_expression] = STATE(1650),
- [sym_new_expression] = STATE(1634),
- [sym_await_expression] = STATE(1634),
- [sym_member_expression] = STATE(1369),
- [sym_subscript_expression] = STATE(1369),
- [sym_assignment_expression] = STATE(1634),
- [sym__augmented_assignment_lhs] = STATE(2891),
- [sym_augmented_assignment_expression] = STATE(1634),
- [sym__destructuring_pattern] = STATE(5861),
- [sym_ternary_expression] = STATE(1634),
- [sym_binary_expression] = STATE(1634),
- [sym_unary_expression] = STATE(1634),
- [sym_update_expression] = STATE(1634),
- [sym_string] = STATE(1650),
- [sym_template_string] = STATE(1650),
- [sym_regex] = STATE(1650),
- [sym_meta_property] = STATE(1650),
- [sym_decorator] = STATE(1244),
- [sym_formal_parameters] = STATE(3742),
- [sym_non_null_expression] = STATE(1369),
- [sym_as_expression] = STATE(1634),
- [sym_satisfies_expression] = STATE(1634),
- [sym_instantiation_expression] = STATE(1634),
- [sym_internal_module] = STATE(1634),
- [sym_type_parameters] = STATE(5349),
- [aux_sym_export_statement_repeat1] = STATE(4458),
- [sym_identifier] = ACTIONS(1478),
- [anon_sym_export] = ACTIONS(1114),
- [anon_sym_type] = ACTIONS(1114),
- [anon_sym_namespace] = ACTIONS(1116),
- [anon_sym_LBRACE] = ACTIONS(813),
- [anon_sym_typeof] = ACTIONS(1138),
- [anon_sym_import] = ACTIONS(133),
- [anon_sym_let] = ACTIONS(1114),
- [anon_sym_BANG] = ACTIONS(1122),
- [anon_sym_LPAREN] = ACTIONS(815),
- [anon_sym_await] = ACTIONS(1124),
- [anon_sym_yield] = ACTIONS(1126),
- [anon_sym_LBRACK] = ACTIONS(817),
- [sym_glimmer_opening_tag] = ACTIONS(148),
- [anon_sym_DQUOTE] = ACTIONS(150),
- [anon_sym_SQUOTE] = ACTIONS(152),
- [anon_sym_class] = ACTIONS(154),
- [anon_sym_async] = ACTIONS(1128),
- [anon_sym_function] = ACTIONS(158),
- [anon_sym_new] = ACTIONS(1482),
- [anon_sym_using] = ACTIONS(1132),
- [anon_sym_PLUS] = ACTIONS(1138),
- [anon_sym_DASH] = ACTIONS(1138),
- [anon_sym_SLASH] = ACTIONS(646),
- [anon_sym_LT] = ACTIONS(181),
- [anon_sym_TILDE] = ACTIONS(1122),
- [anon_sym_void] = ACTIONS(1138),
- [anon_sym_delete] = ACTIONS(1138),
- [anon_sym_PLUS_PLUS] = ACTIONS(1140),
- [anon_sym_DASH_DASH] = ACTIONS(1140),
- [sym_comment] = ACTIONS(5),
- [anon_sym_BQUOTE] = ACTIONS(825),
- [sym_number] = ACTIONS(787),
- [sym_private_property_identifier] = ACTIONS(1142),
- [sym_this] = ACTIONS(200),
- [sym_super] = ACTIONS(200),
- [sym_true] = ACTIONS(200),
- [sym_false] = ACTIONS(200),
- [sym_null] = ACTIONS(200),
- [sym_undefined] = ACTIONS(1484),
- [anon_sym_AT] = ACTIONS(99),
- [anon_sym_static] = ACTIONS(1114),
- [anon_sym_readonly] = ACTIONS(1114),
- [anon_sym_get] = ACTIONS(1114),
- [anon_sym_set] = ACTIONS(1114),
- [anon_sym_declare] = ACTIONS(1114),
- [anon_sym_public] = ACTIONS(1114),
- [anon_sym_private] = ACTIONS(1114),
- [anon_sym_protected] = ACTIONS(1114),
- [anon_sym_override] = ACTIONS(1114),
- [anon_sym_module] = ACTIONS(1114),
- [anon_sym_any] = ACTIONS(1114),
- [anon_sym_number] = ACTIONS(1114),
- [anon_sym_boolean] = ACTIONS(1114),
- [anon_sym_string] = ACTIONS(1114),
- [anon_sym_symbol] = ACTIONS(1114),
- [anon_sym_object] = ACTIONS(1114),
- [sym_html_comment] = ACTIONS(5),
- },
- [533] = {
- [sym_import] = STATE(3334),
- [sym_parenthesized_expression] = STATE(1251),
- [sym_expression] = STATE(1541),
- [sym_primary_expression] = STATE(1468),
- [sym_yield_expression] = STATE(1634),
- [sym_object] = STATE(1650),
- [sym_object_pattern] = STATE(5633),
- [sym_array] = STATE(1650),
- [sym_array_pattern] = STATE(5633),
- [sym_glimmer_template] = STATE(1634),
- [sym_jsx_element] = STATE(1634),
- [sym_jsx_opening_element] = STATE(3026),
- [sym_jsx_self_closing_element] = STATE(1634),
- [sym_class] = STATE(1650),
- [sym_function_expression] = STATE(1650),
- [sym_generator_function] = STATE(1650),
- [sym_arrow_function] = STATE(1650),
- [sym__call_signature] = STATE(5828),
- [sym_call_expression] = STATE(1650),
- [sym_new_expression] = STATE(1634),
- [sym_await_expression] = STATE(1634),
- [sym_member_expression] = STATE(1251),
- [sym_subscript_expression] = STATE(1251),
- [sym_assignment_expression] = STATE(1634),
- [sym__augmented_assignment_lhs] = STATE(2900),
- [sym_augmented_assignment_expression] = STATE(1634),
- [sym__destructuring_pattern] = STATE(5633),
- [sym_ternary_expression] = STATE(1634),
- [sym_binary_expression] = STATE(1634),
- [sym_unary_expression] = STATE(1634),
- [sym_update_expression] = STATE(1634),
- [sym_string] = STATE(1650),
- [sym_template_string] = STATE(1650),
- [sym_regex] = STATE(1650),
- [sym_meta_property] = STATE(1650),
- [sym_decorator] = STATE(1244),
- [sym_formal_parameters] = STATE(3742),
- [sym_non_null_expression] = STATE(1251),
- [sym_as_expression] = STATE(1634),
- [sym_satisfies_expression] = STATE(1634),
- [sym_instantiation_expression] = STATE(1634),
- [sym_internal_module] = STATE(1634),
- [sym_type_parameters] = STATE(5349),
- [aux_sym_export_statement_repeat1] = STATE(4458),
- [sym_identifier] = ACTIONS(1428),
- [anon_sym_export] = ACTIONS(1044),
- [anon_sym_type] = ACTIONS(1044),
- [anon_sym_namespace] = ACTIONS(1046),
- [anon_sym_LBRACE] = ACTIONS(813),
- [anon_sym_typeof] = ACTIONS(650),
- [anon_sym_import] = ACTIONS(133),
- [anon_sym_let] = ACTIONS(1044),
- [anon_sym_BANG] = ACTIONS(622),
- [anon_sym_LPAREN] = ACTIONS(815),
- [anon_sym_await] = ACTIONS(624),
- [anon_sym_yield] = ACTIONS(626),
- [anon_sym_LBRACK] = ACTIONS(817),
- [sym_glimmer_opening_tag] = ACTIONS(148),
- [anon_sym_DQUOTE] = ACTIONS(150),
- [anon_sym_SQUOTE] = ACTIONS(152),
- [anon_sym_class] = ACTIONS(154),
- [anon_sym_async] = ACTIONS(1052),
- [anon_sym_function] = ACTIONS(158),
- [anon_sym_new] = ACTIONS(1436),
- [anon_sym_using] = ACTIONS(636),
- [anon_sym_PLUS] = ACTIONS(650),
- [anon_sym_DASH] = ACTIONS(650),
- [anon_sym_SLASH] = ACTIONS(646),
- [anon_sym_LT] = ACTIONS(181),
- [anon_sym_TILDE] = ACTIONS(622),
- [anon_sym_void] = ACTIONS(650),
- [anon_sym_delete] = ACTIONS(650),
- [anon_sym_PLUS_PLUS] = ACTIONS(652),
- [anon_sym_DASH_DASH] = ACTIONS(652),
- [sym_comment] = ACTIONS(5),
- [anon_sym_BQUOTE] = ACTIONS(825),
- [sym_number] = ACTIONS(787),
- [sym_private_property_identifier] = ACTIONS(654),
- [sym_this] = ACTIONS(200),
- [sym_super] = ACTIONS(200),
- [sym_true] = ACTIONS(200),
- [sym_false] = ACTIONS(200),
- [sym_null] = ACTIONS(200),
- [sym_undefined] = ACTIONS(1438),
- [anon_sym_AT] = ACTIONS(99),
- [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_override] = 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_object] = ACTIONS(1044),
- [sym_html_comment] = ACTIONS(5),
- },
- [534] = {
- [sym_import] = STATE(3334),
- [sym_parenthesized_expression] = STATE(1369),
- [sym_expression] = STATE(2305),
- [sym_primary_expression] = STATE(1468),
- [sym_yield_expression] = STATE(1634),
- [sym_object] = STATE(1650),
- [sym_object_pattern] = STATE(5861),
- [sym_array] = STATE(1650),
- [sym_array_pattern] = STATE(5861),
- [sym_glimmer_template] = STATE(1634),
- [sym_jsx_element] = STATE(1634),
- [sym_jsx_opening_element] = STATE(3026),
- [sym_jsx_self_closing_element] = STATE(1634),
- [sym_class] = STATE(1650),
- [sym_function_expression] = STATE(1650),
- [sym_generator_function] = STATE(1650),
- [sym_arrow_function] = STATE(1650),
- [sym__call_signature] = STATE(5765),
- [sym_call_expression] = STATE(1650),
- [sym_new_expression] = STATE(1634),
- [sym_await_expression] = STATE(1634),
- [sym_member_expression] = STATE(1369),
- [sym_subscript_expression] = STATE(1369),
- [sym_assignment_expression] = STATE(1634),
- [sym__augmented_assignment_lhs] = STATE(2891),
- [sym_augmented_assignment_expression] = STATE(1634),
- [sym__destructuring_pattern] = STATE(5861),
- [sym_ternary_expression] = STATE(1634),
- [sym_binary_expression] = STATE(1634),
- [sym_unary_expression] = STATE(1634),
- [sym_update_expression] = STATE(1634),
- [sym_string] = STATE(1650),
- [sym_template_string] = STATE(1650),
- [sym_regex] = STATE(1650),
- [sym_meta_property] = STATE(1650),
- [sym_decorator] = STATE(1244),
- [sym_formal_parameters] = STATE(3742),
- [sym_non_null_expression] = STATE(1369),
- [sym_as_expression] = STATE(1634),
- [sym_satisfies_expression] = STATE(1634),
- [sym_instantiation_expression] = STATE(1634),
- [sym_internal_module] = STATE(1634),
- [sym_type_parameters] = STATE(5349),
- [aux_sym_export_statement_repeat1] = STATE(4458),
- [sym_identifier] = ACTIONS(1478),
- [anon_sym_export] = ACTIONS(1114),
- [anon_sym_type] = ACTIONS(1114),
- [anon_sym_namespace] = ACTIONS(1116),
- [anon_sym_LBRACE] = ACTIONS(813),
- [anon_sym_typeof] = ACTIONS(1138),
- [anon_sym_import] = ACTIONS(133),
- [anon_sym_let] = ACTIONS(1114),
- [anon_sym_BANG] = ACTIONS(1122),
- [anon_sym_LPAREN] = ACTIONS(815),
- [anon_sym_await] = ACTIONS(1124),
- [anon_sym_yield] = ACTIONS(1126),
- [anon_sym_LBRACK] = ACTIONS(817),
- [sym_glimmer_opening_tag] = ACTIONS(148),
- [anon_sym_DQUOTE] = ACTIONS(150),
- [anon_sym_SQUOTE] = ACTIONS(152),
- [anon_sym_class] = ACTIONS(154),
- [anon_sym_async] = ACTIONS(1128),
- [anon_sym_function] = ACTIONS(158),
- [anon_sym_new] = ACTIONS(1482),
- [anon_sym_using] = ACTIONS(1132),
- [anon_sym_PLUS] = ACTIONS(1138),
- [anon_sym_DASH] = ACTIONS(1138),
- [anon_sym_SLASH] = ACTIONS(646),
- [anon_sym_LT] = ACTIONS(181),
- [anon_sym_TILDE] = ACTIONS(1122),
- [anon_sym_void] = ACTIONS(1138),
- [anon_sym_delete] = ACTIONS(1138),
- [anon_sym_PLUS_PLUS] = ACTIONS(1140),
- [anon_sym_DASH_DASH] = ACTIONS(1140),
- [sym_comment] = ACTIONS(5),
- [anon_sym_BQUOTE] = ACTIONS(825),
- [sym_number] = ACTIONS(787),
- [sym_private_property_identifier] = ACTIONS(1142),
- [sym_this] = ACTIONS(200),
- [sym_super] = ACTIONS(200),
- [sym_true] = ACTIONS(200),
- [sym_false] = ACTIONS(200),
- [sym_null] = ACTIONS(200),
- [sym_undefined] = ACTIONS(1484),
- [anon_sym_AT] = ACTIONS(99),
- [anon_sym_static] = ACTIONS(1114),
- [anon_sym_readonly] = ACTIONS(1114),
- [anon_sym_get] = ACTIONS(1114),
- [anon_sym_set] = ACTIONS(1114),
- [anon_sym_declare] = ACTIONS(1114),
- [anon_sym_public] = ACTIONS(1114),
- [anon_sym_private] = ACTIONS(1114),
- [anon_sym_protected] = ACTIONS(1114),
- [anon_sym_override] = ACTIONS(1114),
- [anon_sym_module] = ACTIONS(1114),
- [anon_sym_any] = ACTIONS(1114),
- [anon_sym_number] = ACTIONS(1114),
- [anon_sym_boolean] = ACTIONS(1114),
- [anon_sym_string] = ACTIONS(1114),
- [anon_sym_symbol] = ACTIONS(1114),
- [anon_sym_object] = ACTIONS(1114),
- [sym_html_comment] = ACTIONS(5),
- },
- [535] = {
- [sym_import] = STATE(3334),
- [sym_parenthesized_expression] = STATE(1369),
- [sym_expression] = STATE(2306),
- [sym_primary_expression] = STATE(1468),
- [sym_yield_expression] = STATE(1634),
- [sym_object] = STATE(1650),
- [sym_object_pattern] = STATE(5861),
- [sym_array] = STATE(1650),
- [sym_array_pattern] = STATE(5861),
- [sym_glimmer_template] = STATE(1634),
- [sym_jsx_element] = STATE(1634),
- [sym_jsx_opening_element] = STATE(3026),
- [sym_jsx_self_closing_element] = STATE(1634),
- [sym_class] = STATE(1650),
- [sym_function_expression] = STATE(1650),
- [sym_generator_function] = STATE(1650),
- [sym_arrow_function] = STATE(1650),
- [sym__call_signature] = STATE(5765),
- [sym_call_expression] = STATE(1650),
- [sym_new_expression] = STATE(1634),
- [sym_await_expression] = STATE(1634),
- [sym_member_expression] = STATE(1369),
- [sym_subscript_expression] = STATE(1369),
- [sym_assignment_expression] = STATE(1634),
- [sym__augmented_assignment_lhs] = STATE(2891),
- [sym_augmented_assignment_expression] = STATE(1634),
- [sym__destructuring_pattern] = STATE(5861),
- [sym_ternary_expression] = STATE(1634),
- [sym_binary_expression] = STATE(1634),
- [sym_unary_expression] = STATE(1634),
- [sym_update_expression] = STATE(1634),
- [sym_string] = STATE(1650),
- [sym_template_string] = STATE(1650),
- [sym_regex] = STATE(1650),
- [sym_meta_property] = STATE(1650),
- [sym_decorator] = STATE(1244),
- [sym_formal_parameters] = STATE(3742),
- [sym_non_null_expression] = STATE(1369),
- [sym_as_expression] = STATE(1634),
- [sym_satisfies_expression] = STATE(1634),
- [sym_instantiation_expression] = STATE(1634),
- [sym_internal_module] = STATE(1634),
- [sym_type_parameters] = STATE(5349),
- [aux_sym_export_statement_repeat1] = STATE(4458),
- [sym_identifier] = ACTIONS(1478),
- [anon_sym_export] = ACTIONS(1114),
- [anon_sym_type] = ACTIONS(1114),
- [anon_sym_namespace] = ACTIONS(1116),
- [anon_sym_LBRACE] = ACTIONS(813),
- [anon_sym_typeof] = ACTIONS(1138),
- [anon_sym_import] = ACTIONS(133),
- [anon_sym_let] = ACTIONS(1114),
- [anon_sym_BANG] = ACTIONS(1122),
- [anon_sym_LPAREN] = ACTIONS(815),
- [anon_sym_await] = ACTIONS(1124),
- [anon_sym_yield] = ACTIONS(1126),
- [anon_sym_LBRACK] = ACTIONS(817),
- [sym_glimmer_opening_tag] = ACTIONS(148),
- [anon_sym_DQUOTE] = ACTIONS(150),
- [anon_sym_SQUOTE] = ACTIONS(152),
- [anon_sym_class] = ACTIONS(154),
- [anon_sym_async] = ACTIONS(1128),
- [anon_sym_function] = ACTIONS(158),
- [anon_sym_new] = ACTIONS(1482),
- [anon_sym_using] = ACTIONS(1132),
- [anon_sym_PLUS] = ACTIONS(1138),
- [anon_sym_DASH] = ACTIONS(1138),
- [anon_sym_SLASH] = ACTIONS(646),
- [anon_sym_LT] = ACTIONS(181),
- [anon_sym_TILDE] = ACTIONS(1122),
- [anon_sym_void] = ACTIONS(1138),
- [anon_sym_delete] = ACTIONS(1138),
- [anon_sym_PLUS_PLUS] = ACTIONS(1140),
- [anon_sym_DASH_DASH] = ACTIONS(1140),
- [sym_comment] = ACTIONS(5),
- [anon_sym_BQUOTE] = ACTIONS(825),
- [sym_number] = ACTIONS(787),
- [sym_private_property_identifier] = ACTIONS(1142),
- [sym_this] = ACTIONS(200),
- [sym_super] = ACTIONS(200),
- [sym_true] = ACTIONS(200),
- [sym_false] = ACTIONS(200),
- [sym_null] = ACTIONS(200),
- [sym_undefined] = ACTIONS(1484),
- [anon_sym_AT] = ACTIONS(99),
- [anon_sym_static] = ACTIONS(1114),
- [anon_sym_readonly] = ACTIONS(1114),
- [anon_sym_get] = ACTIONS(1114),
- [anon_sym_set] = ACTIONS(1114),
- [anon_sym_declare] = ACTIONS(1114),
- [anon_sym_public] = ACTIONS(1114),
- [anon_sym_private] = ACTIONS(1114),
- [anon_sym_protected] = ACTIONS(1114),
- [anon_sym_override] = ACTIONS(1114),
- [anon_sym_module] = ACTIONS(1114),
- [anon_sym_any] = ACTIONS(1114),
- [anon_sym_number] = ACTIONS(1114),
- [anon_sym_boolean] = ACTIONS(1114),
- [anon_sym_string] = ACTIONS(1114),
- [anon_sym_symbol] = ACTIONS(1114),
- [anon_sym_object] = ACTIONS(1114),
- [sym_html_comment] = ACTIONS(5),
- },
- [536] = {
- [sym_import] = STATE(3334),
- [sym_parenthesized_expression] = STATE(1251),
- [sym_expression] = STATE(1542),
- [sym_primary_expression] = STATE(1468),
- [sym_yield_expression] = STATE(1634),
- [sym_object] = STATE(1650),
- [sym_object_pattern] = STATE(5633),
- [sym_array] = STATE(1650),
- [sym_array_pattern] = STATE(5633),
- [sym_glimmer_template] = STATE(1634),
- [sym_jsx_element] = STATE(1634),
- [sym_jsx_opening_element] = STATE(3026),
- [sym_jsx_self_closing_element] = STATE(1634),
- [sym_class] = STATE(1650),
- [sym_function_expression] = STATE(1650),
- [sym_generator_function] = STATE(1650),
- [sym_arrow_function] = STATE(1650),
- [sym__call_signature] = STATE(5828),
- [sym_call_expression] = STATE(1650),
- [sym_new_expression] = STATE(1634),
- [sym_await_expression] = STATE(1634),
- [sym_member_expression] = STATE(1251),
- [sym_subscript_expression] = STATE(1251),
- [sym_assignment_expression] = STATE(1634),
- [sym__augmented_assignment_lhs] = STATE(2900),
- [sym_augmented_assignment_expression] = STATE(1634),
- [sym__destructuring_pattern] = STATE(5633),
- [sym_ternary_expression] = STATE(1634),
- [sym_binary_expression] = STATE(1634),
- [sym_unary_expression] = STATE(1634),
- [sym_update_expression] = STATE(1634),
- [sym_string] = STATE(1650),
- [sym_template_string] = STATE(1650),
- [sym_regex] = STATE(1650),
- [sym_meta_property] = STATE(1650),
- [sym_decorator] = STATE(1244),
- [sym_formal_parameters] = STATE(3742),
- [sym_non_null_expression] = STATE(1251),
- [sym_as_expression] = STATE(1634),
- [sym_satisfies_expression] = STATE(1634),
- [sym_instantiation_expression] = STATE(1634),
- [sym_internal_module] = STATE(1634),
- [sym_type_parameters] = STATE(5349),
- [aux_sym_export_statement_repeat1] = STATE(4458),
- [sym_identifier] = ACTIONS(1428),
- [anon_sym_export] = ACTIONS(1044),
- [anon_sym_type] = ACTIONS(1044),
- [anon_sym_namespace] = ACTIONS(1046),
- [anon_sym_LBRACE] = ACTIONS(813),
- [anon_sym_typeof] = ACTIONS(650),
- [anon_sym_import] = ACTIONS(133),
- [anon_sym_let] = ACTIONS(1044),
- [anon_sym_BANG] = ACTIONS(622),
- [anon_sym_LPAREN] = ACTIONS(815),
- [anon_sym_await] = ACTIONS(624),
- [anon_sym_yield] = ACTIONS(626),
- [anon_sym_LBRACK] = ACTIONS(817),
- [sym_glimmer_opening_tag] = ACTIONS(148),
- [anon_sym_DQUOTE] = ACTIONS(150),
- [anon_sym_SQUOTE] = ACTIONS(152),
- [anon_sym_class] = ACTIONS(154),
- [anon_sym_async] = ACTIONS(1052),
- [anon_sym_function] = ACTIONS(158),
- [anon_sym_new] = ACTIONS(1436),
- [anon_sym_using] = ACTIONS(636),
- [anon_sym_PLUS] = ACTIONS(650),
- [anon_sym_DASH] = ACTIONS(650),
- [anon_sym_SLASH] = ACTIONS(646),
- [anon_sym_LT] = ACTIONS(181),
- [anon_sym_TILDE] = ACTIONS(622),
- [anon_sym_void] = ACTIONS(650),
- [anon_sym_delete] = ACTIONS(650),
- [anon_sym_PLUS_PLUS] = ACTIONS(652),
- [anon_sym_DASH_DASH] = ACTIONS(652),
- [sym_comment] = ACTIONS(5),
- [anon_sym_BQUOTE] = ACTIONS(825),
- [sym_number] = ACTIONS(787),
- [sym_private_property_identifier] = ACTIONS(654),
- [sym_this] = ACTIONS(200),
- [sym_super] = ACTIONS(200),
- [sym_true] = ACTIONS(200),
- [sym_false] = ACTIONS(200),
- [sym_null] = ACTIONS(200),
- [sym_undefined] = ACTIONS(1438),
- [anon_sym_AT] = ACTIONS(99),
- [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_override] = 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_object] = ACTIONS(1044),
- [sym_html_comment] = ACTIONS(5),
- },
- [537] = {
- [sym_import] = STATE(3334),
- [sym_parenthesized_expression] = STATE(1392),
- [sym_expression] = STATE(2415),
- [sym_primary_expression] = STATE(1468),
- [sym_yield_expression] = STATE(1634),
- [sym_object] = STATE(1650),
- [sym_object_pattern] = STATE(5790),
- [sym_array] = STATE(1650),
- [sym_array_pattern] = STATE(5790),
- [sym_glimmer_template] = STATE(1634),
- [sym_jsx_element] = STATE(1634),
- [sym_jsx_opening_element] = STATE(3026),
- [sym_jsx_self_closing_element] = STATE(1634),
- [sym_class] = STATE(1650),
- [sym_function_expression] = STATE(1650),
- [sym_generator_function] = STATE(1650),
- [sym_arrow_function] = STATE(1650),
- [sym__call_signature] = STATE(5619),
- [sym_call_expression] = STATE(1650),
- [sym_new_expression] = STATE(1634),
- [sym_await_expression] = STATE(1634),
- [sym_member_expression] = STATE(1392),
- [sym_subscript_expression] = STATE(1392),
- [sym_assignment_expression] = STATE(1634),
- [sym__augmented_assignment_lhs] = STATE(2878),
- [sym_augmented_assignment_expression] = STATE(1634),
- [sym__destructuring_pattern] = STATE(5790),
- [sym_ternary_expression] = STATE(1634),
- [sym_binary_expression] = STATE(1634),
- [sym_unary_expression] = STATE(1634),
- [sym_update_expression] = STATE(1634),
- [sym_string] = STATE(1650),
- [sym_template_string] = STATE(1650),
- [sym_regex] = STATE(1650),
- [sym_meta_property] = STATE(1650),
- [sym_decorator] = STATE(1244),
- [sym_formal_parameters] = STATE(3742),
- [sym_non_null_expression] = STATE(1392),
- [sym_as_expression] = STATE(1634),
- [sym_satisfies_expression] = STATE(1634),
- [sym_instantiation_expression] = STATE(1634),
- [sym_internal_module] = STATE(1634),
- [sym_type_parameters] = STATE(5349),
- [aux_sym_export_statement_repeat1] = STATE(4458),
- [sym_identifier] = ACTIONS(2151),
- [anon_sym_export] = ACTIONS(2153),
- [anon_sym_type] = ACTIONS(2153),
- [anon_sym_namespace] = ACTIONS(2155),
- [anon_sym_LBRACE] = ACTIONS(845),
- [anon_sym_typeof] = ACTIONS(187),
- [anon_sym_import] = ACTIONS(133),
- [anon_sym_let] = ACTIONS(2153),
- [anon_sym_BANG] = ACTIONS(183),
- [anon_sym_LPAREN] = ACTIONS(815),
- [anon_sym_await] = ACTIONS(142),
- [anon_sym_yield] = ACTIONS(144),
- [anon_sym_LBRACK] = ACTIONS(849),
- [sym_glimmer_opening_tag] = ACTIONS(148),
- [anon_sym_DQUOTE] = ACTIONS(150),
- [anon_sym_SQUOTE] = ACTIONS(152),
- [anon_sym_class] = ACTIONS(154),
- [anon_sym_async] = ACTIONS(2157),
- [anon_sym_function] = ACTIONS(158),
- [anon_sym_new] = ACTIONS(2159),
- [anon_sym_using] = ACTIONS(166),
- [anon_sym_PLUS] = ACTIONS(187),
- [anon_sym_DASH] = ACTIONS(187),
- [anon_sym_SLASH] = ACTIONS(646),
- [anon_sym_LT] = ACTIONS(181),
- [anon_sym_TILDE] = ACTIONS(183),
- [anon_sym_void] = ACTIONS(187),
- [anon_sym_delete] = ACTIONS(187),
- [anon_sym_PLUS_PLUS] = ACTIONS(719),
- [anon_sym_DASH_DASH] = ACTIONS(719),
- [sym_comment] = ACTIONS(5),
- [anon_sym_BQUOTE] = ACTIONS(825),
- [sym_number] = ACTIONS(787),
- [sym_private_property_identifier] = ACTIONS(196),
- [sym_this] = ACTIONS(200),
- [sym_super] = ACTIONS(200),
- [sym_true] = ACTIONS(200),
- [sym_false] = ACTIONS(200),
- [sym_null] = ACTIONS(200),
- [sym_undefined] = ACTIONS(2161),
- [anon_sym_AT] = ACTIONS(99),
- [anon_sym_static] = ACTIONS(2153),
- [anon_sym_readonly] = ACTIONS(2153),
- [anon_sym_get] = ACTIONS(2153),
- [anon_sym_set] = ACTIONS(2153),
- [anon_sym_declare] = ACTIONS(2153),
- [anon_sym_public] = ACTIONS(2153),
- [anon_sym_private] = ACTIONS(2153),
- [anon_sym_protected] = ACTIONS(2153),
- [anon_sym_override] = ACTIONS(2153),
- [anon_sym_module] = ACTIONS(2153),
- [anon_sym_any] = ACTIONS(2153),
- [anon_sym_number] = ACTIONS(2153),
- [anon_sym_boolean] = ACTIONS(2153),
- [anon_sym_string] = ACTIONS(2153),
- [anon_sym_symbol] = ACTIONS(2153),
- [anon_sym_object] = ACTIONS(2153),
- [sym_html_comment] = ACTIONS(5),
- },
- [538] = {
- [sym_import] = STATE(3334),
- [sym_parenthesized_expression] = STATE(1336),
- [sym_expression] = STATE(2313),
- [sym_primary_expression] = STATE(1468),
- [sym_yield_expression] = STATE(1634),
- [sym_object] = STATE(1650),
- [sym_object_pattern] = STATE(5745),
- [sym_array] = STATE(1650),
- [sym_array_pattern] = STATE(5745),
- [sym_glimmer_template] = STATE(1634),
- [sym_jsx_element] = STATE(1634),
- [sym_jsx_opening_element] = STATE(3026),
- [sym_jsx_self_closing_element] = STATE(1634),
- [sym_class] = STATE(1650),
- [sym_function_expression] = STATE(1650),
- [sym_generator_function] = STATE(1650),
- [sym_arrow_function] = STATE(1650),
- [sym__call_signature] = STATE(5553),
- [sym_call_expression] = STATE(1650),
- [sym_new_expression] = STATE(1634),
- [sym_await_expression] = STATE(1634),
- [sym_member_expression] = STATE(1336),
- [sym_subscript_expression] = STATE(1336),
- [sym_assignment_expression] = STATE(1634),
- [sym__augmented_assignment_lhs] = STATE(2884),
- [sym_augmented_assignment_expression] = STATE(1634),
- [sym__destructuring_pattern] = STATE(5745),
- [sym_ternary_expression] = STATE(1634),
- [sym_binary_expression] = STATE(1634),
- [sym_unary_expression] = STATE(1634),
- [sym_update_expression] = STATE(1634),
- [sym_string] = STATE(1650),
- [sym_template_string] = STATE(1650),
- [sym_regex] = STATE(1650),
- [sym_meta_property] = STATE(1650),
- [sym_decorator] = STATE(1244),
- [sym_formal_parameters] = STATE(3742),
- [sym_non_null_expression] = STATE(1336),
- [sym_as_expression] = STATE(1634),
- [sym_satisfies_expression] = STATE(1634),
- [sym_instantiation_expression] = STATE(1634),
- [sym_internal_module] = STATE(1634),
- [sym_type_parameters] = STATE(5349),
- [aux_sym_export_statement_repeat1] = STATE(4458),
- [sym_identifier] = ACTIONS(1470),
- [anon_sym_export] = ACTIONS(1250),
- [anon_sym_type] = ACTIONS(1250),
- [anon_sym_namespace] = ACTIONS(1252),
- [anon_sym_LBRACE] = ACTIONS(813),
- [anon_sym_typeof] = ACTIONS(1272),
- [anon_sym_import] = ACTIONS(133),
- [anon_sym_let] = ACTIONS(1250),
- [anon_sym_BANG] = ACTIONS(1256),
- [anon_sym_LPAREN] = ACTIONS(815),
- [anon_sym_await] = ACTIONS(1258),
- [anon_sym_yield] = ACTIONS(1260),
- [anon_sym_LBRACK] = ACTIONS(817),
- [sym_glimmer_opening_tag] = ACTIONS(148),
- [anon_sym_DQUOTE] = ACTIONS(150),
- [anon_sym_SQUOTE] = ACTIONS(152),
- [anon_sym_class] = ACTIONS(154),
- [anon_sym_async] = ACTIONS(1262),
- [anon_sym_function] = ACTIONS(158),
- [anon_sym_new] = ACTIONS(1474),
- [anon_sym_using] = ACTIONS(1266),
- [anon_sym_PLUS] = ACTIONS(1272),
- [anon_sym_DASH] = ACTIONS(1272),
- [anon_sym_SLASH] = ACTIONS(646),
- [anon_sym_LT] = ACTIONS(181),
- [anon_sym_TILDE] = ACTIONS(1256),
- [anon_sym_void] = ACTIONS(1272),
- [anon_sym_delete] = ACTIONS(1272),
- [anon_sym_PLUS_PLUS] = ACTIONS(1274),
- [anon_sym_DASH_DASH] = ACTIONS(1274),
- [sym_comment] = ACTIONS(5),
- [anon_sym_BQUOTE] = ACTIONS(825),
- [sym_number] = ACTIONS(787),
- [sym_private_property_identifier] = ACTIONS(1276),
- [sym_this] = ACTIONS(200),
- [sym_super] = ACTIONS(200),
- [sym_true] = ACTIONS(200),
- [sym_false] = ACTIONS(200),
- [sym_null] = ACTIONS(200),
- [sym_undefined] = ACTIONS(1476),
- [anon_sym_AT] = ACTIONS(99),
- [anon_sym_static] = ACTIONS(1250),
- [anon_sym_readonly] = ACTIONS(1250),
- [anon_sym_get] = ACTIONS(1250),
- [anon_sym_set] = ACTIONS(1250),
- [anon_sym_declare] = ACTIONS(1250),
- [anon_sym_public] = ACTIONS(1250),
- [anon_sym_private] = ACTIONS(1250),
- [anon_sym_protected] = ACTIONS(1250),
- [anon_sym_override] = ACTIONS(1250),
- [anon_sym_module] = ACTIONS(1250),
- [anon_sym_any] = ACTIONS(1250),
- [anon_sym_number] = ACTIONS(1250),
- [anon_sym_boolean] = ACTIONS(1250),
- [anon_sym_string] = ACTIONS(1250),
- [anon_sym_symbol] = ACTIONS(1250),
- [anon_sym_object] = ACTIONS(1250),
- [sym_html_comment] = ACTIONS(5),
- },
- [539] = {
- [sym_import] = STATE(3334),
- [sym_parenthesized_expression] = STATE(1251),
- [sym_expression] = STATE(1543),
- [sym_primary_expression] = STATE(1468),
- [sym_yield_expression] = STATE(1634),
- [sym_object] = STATE(1650),
- [sym_object_pattern] = STATE(5633),
- [sym_array] = STATE(1650),
- [sym_array_pattern] = STATE(5633),
- [sym_glimmer_template] = STATE(1634),
- [sym_jsx_element] = STATE(1634),
- [sym_jsx_opening_element] = STATE(3026),
- [sym_jsx_self_closing_element] = STATE(1634),
- [sym_class] = STATE(1650),
- [sym_function_expression] = STATE(1650),
- [sym_generator_function] = STATE(1650),
- [sym_arrow_function] = STATE(1650),
- [sym__call_signature] = STATE(5828),
- [sym_call_expression] = STATE(1650),
- [sym_new_expression] = STATE(1634),
- [sym_await_expression] = STATE(1634),
- [sym_member_expression] = STATE(1251),
- [sym_subscript_expression] = STATE(1251),
- [sym_assignment_expression] = STATE(1634),
- [sym__augmented_assignment_lhs] = STATE(2900),
- [sym_augmented_assignment_expression] = STATE(1634),
- [sym__destructuring_pattern] = STATE(5633),
- [sym_ternary_expression] = STATE(1634),
- [sym_binary_expression] = STATE(1634),
- [sym_unary_expression] = STATE(1634),
- [sym_update_expression] = STATE(1634),
- [sym_string] = STATE(1650),
- [sym_template_string] = STATE(1650),
- [sym_regex] = STATE(1650),
- [sym_meta_property] = STATE(1650),
- [sym_decorator] = STATE(1244),
- [sym_formal_parameters] = STATE(3742),
- [sym_non_null_expression] = STATE(1251),
- [sym_as_expression] = STATE(1634),
- [sym_satisfies_expression] = STATE(1634),
- [sym_instantiation_expression] = STATE(1634),
- [sym_internal_module] = STATE(1634),
- [sym_type_parameters] = STATE(5349),
- [aux_sym_export_statement_repeat1] = STATE(4458),
- [sym_identifier] = ACTIONS(1428),
- [anon_sym_export] = ACTIONS(1044),
- [anon_sym_type] = ACTIONS(1044),
- [anon_sym_namespace] = ACTIONS(1046),
- [anon_sym_LBRACE] = ACTIONS(813),
- [anon_sym_typeof] = ACTIONS(650),
- [anon_sym_import] = ACTIONS(133),
- [anon_sym_let] = ACTIONS(1044),
- [anon_sym_BANG] = ACTIONS(622),
- [anon_sym_LPAREN] = ACTIONS(815),
- [anon_sym_await] = ACTIONS(624),
- [anon_sym_yield] = ACTIONS(626),
- [anon_sym_LBRACK] = ACTIONS(817),
- [sym_glimmer_opening_tag] = ACTIONS(148),
- [anon_sym_DQUOTE] = ACTIONS(150),
- [anon_sym_SQUOTE] = ACTIONS(152),
- [anon_sym_class] = ACTIONS(154),
- [anon_sym_async] = ACTIONS(1052),
- [anon_sym_function] = ACTIONS(158),
- [anon_sym_new] = ACTIONS(1436),
- [anon_sym_using] = ACTIONS(636),
- [anon_sym_PLUS] = ACTIONS(650),
- [anon_sym_DASH] = ACTIONS(650),
- [anon_sym_SLASH] = ACTIONS(646),
- [anon_sym_LT] = ACTIONS(181),
- [anon_sym_TILDE] = ACTIONS(622),
- [anon_sym_void] = ACTIONS(650),
- [anon_sym_delete] = ACTIONS(650),
- [anon_sym_PLUS_PLUS] = ACTIONS(652),
- [anon_sym_DASH_DASH] = ACTIONS(652),
- [sym_comment] = ACTIONS(5),
- [anon_sym_BQUOTE] = ACTIONS(825),
- [sym_number] = ACTIONS(787),
- [sym_private_property_identifier] = ACTIONS(654),
- [sym_this] = ACTIONS(200),
- [sym_super] = ACTIONS(200),
- [sym_true] = ACTIONS(200),
- [sym_false] = ACTIONS(200),
- [sym_null] = ACTIONS(200),
- [sym_undefined] = ACTIONS(1438),
- [anon_sym_AT] = ACTIONS(99),
- [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_override] = 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_object] = ACTIONS(1044),
- [sym_html_comment] = ACTIONS(5),
- },
- [540] = {
- [sym_import] = STATE(3306),
- [sym_parenthesized_expression] = STATE(1294),
- [sym_expression] = STATE(1660),
- [sym_primary_expression] = STATE(1946),
- [sym_yield_expression] = STATE(2234),
- [sym_object] = STATE(2310),
- [sym_object_pattern] = STATE(5667),
- [sym_array] = STATE(2310),
- [sym_array_pattern] = STATE(5667),
- [sym_glimmer_template] = STATE(2234),
- [sym_jsx_element] = STATE(2234),
- [sym_jsx_opening_element] = STATE(3051),
- [sym_jsx_self_closing_element] = STATE(2234),
- [sym_class] = STATE(2310),
- [sym_function_expression] = STATE(2310),
- [sym_generator_function] = STATE(2310),
- [sym_arrow_function] = STATE(2310),
- [sym__call_signature] = STATE(5809),
- [sym_call_expression] = STATE(2310),
- [sym_new_expression] = STATE(2234),
- [sym_await_expression] = STATE(2234),
- [sym_member_expression] = STATE(1294),
- [sym_subscript_expression] = STATE(1294),
- [sym_assignment_expression] = STATE(2234),
- [sym__augmented_assignment_lhs] = STATE(2875),
- [sym_augmented_assignment_expression] = STATE(2234),
- [sym__destructuring_pattern] = STATE(5667),
- [sym_ternary_expression] = STATE(2234),
- [sym_binary_expression] = STATE(2234),
- [sym_unary_expression] = STATE(2234),
- [sym_update_expression] = STATE(2234),
- [sym_string] = STATE(2310),
- [sym_template_string] = STATE(2310),
- [sym_regex] = STATE(2310),
- [sym_meta_property] = STATE(2310),
- [sym_decorator] = STATE(1244),
- [sym_formal_parameters] = STATE(3742),
- [sym_non_null_expression] = STATE(1294),
- [sym_as_expression] = STATE(2234),
- [sym_satisfies_expression] = STATE(2234),
- [sym_instantiation_expression] = STATE(2234),
- [sym_internal_module] = STATE(2234),
- [sym_type_parameters] = STATE(5349),
- [aux_sym_export_statement_repeat1] = STATE(4499),
- [sym_identifier] = ACTIONS(1440),
- [anon_sym_export] = ACTIONS(1372),
- [anon_sym_type] = ACTIONS(1372),
- [anon_sym_namespace] = ACTIONS(1374),
- [anon_sym_LBRACE] = ACTIONS(700),
- [anon_sym_typeof] = ACTIONS(21),
- [anon_sym_import] = ACTIONS(133),
- [anon_sym_let] = ACTIONS(1372),
- [anon_sym_BANG] = ACTIONS(33),
- [anon_sym_LPAREN] = ACTIONS(41),
- [anon_sym_await] = ACTIONS(43),
- [anon_sym_yield] = ACTIONS(63),
- [anon_sym_LBRACK] = ACTIONS(65),
- [sym_glimmer_opening_tag] = ACTIONS(67),
- [anon_sym_DQUOTE] = ACTIONS(69),
- [anon_sym_SQUOTE] = ACTIONS(71),
- [anon_sym_class] = ACTIONS(709),
- [anon_sym_async] = ACTIONS(1378),
- [anon_sym_function] = ACTIONS(713),
- [anon_sym_new] = ACTIONS(1444),
- [anon_sym_using] = ACTIONS(81),
- [anon_sym_PLUS] = ACTIONS(21),
- [anon_sym_DASH] = ACTIONS(21),
- [anon_sym_SLASH] = ACTIONS(83),
- [anon_sym_LT] = ACTIONS(85),
- [anon_sym_TILDE] = ACTIONS(33),
- [anon_sym_void] = ACTIONS(21),
- [anon_sym_delete] = ACTIONS(21),
- [anon_sym_PLUS_PLUS] = ACTIONS(87),
- [anon_sym_DASH_DASH] = ACTIONS(87),
- [sym_comment] = ACTIONS(5),
- [anon_sym_BQUOTE] = ACTIONS(89),
- [sym_number] = ACTIONS(91),
- [sym_private_property_identifier] = ACTIONS(93),
- [sym_this] = ACTIONS(95),
- [sym_super] = ACTIONS(95),
- [sym_true] = ACTIONS(95),
- [sym_false] = ACTIONS(95),
- [sym_null] = ACTIONS(95),
- [sym_undefined] = ACTIONS(97),
- [anon_sym_AT] = ACTIONS(99),
- [anon_sym_static] = ACTIONS(1372),
- [anon_sym_readonly] = ACTIONS(1372),
- [anon_sym_get] = ACTIONS(1372),
- [anon_sym_set] = ACTIONS(1372),
- [anon_sym_declare] = ACTIONS(1372),
- [anon_sym_public] = ACTIONS(1372),
- [anon_sym_private] = ACTIONS(1372),
- [anon_sym_protected] = ACTIONS(1372),
- [anon_sym_override] = ACTIONS(1372),
- [anon_sym_module] = ACTIONS(1372),
- [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_object] = ACTIONS(1372),
- [sym_html_comment] = ACTIONS(5),
- },
- [541] = {
- [sym_import] = STATE(3334),
- [sym_parenthesized_expression] = STATE(1345),
- [sym_expression] = STATE(2347),
- [sym_primary_expression] = STATE(1468),
- [sym_yield_expression] = STATE(1634),
- [sym_object] = STATE(1650),
- [sym_object_pattern] = STATE(5872),
- [sym_array] = STATE(1650),
- [sym_array_pattern] = STATE(5872),
- [sym_glimmer_template] = STATE(1634),
- [sym_jsx_element] = STATE(1634),
- [sym_jsx_opening_element] = STATE(3026),
- [sym_jsx_self_closing_element] = STATE(1634),
- [sym_class] = STATE(1650),
- [sym_function_expression] = STATE(1650),
- [sym_generator_function] = STATE(1650),
- [sym_arrow_function] = STATE(1650),
- [sym__call_signature] = STATE(5904),
- [sym_call_expression] = STATE(1650),
- [sym_new_expression] = STATE(1634),
- [sym_await_expression] = STATE(1634),
- [sym_member_expression] = STATE(1345),
- [sym_subscript_expression] = STATE(1345),
- [sym_assignment_expression] = STATE(1634),
- [sym__augmented_assignment_lhs] = STATE(2898),
- [sym_augmented_assignment_expression] = STATE(1634),
- [sym__destructuring_pattern] = STATE(5872),
- [sym_ternary_expression] = STATE(1634),
- [sym_binary_expression] = STATE(1634),
- [sym_unary_expression] = STATE(1634),
- [sym_update_expression] = STATE(1634),
- [sym_string] = STATE(1650),
- [sym_template_string] = STATE(1650),
- [sym_regex] = STATE(1650),
- [sym_meta_property] = STATE(1650),
- [sym_decorator] = STATE(1244),
- [sym_formal_parameters] = STATE(3742),
- [sym_non_null_expression] = STATE(1345),
- [sym_as_expression] = STATE(1634),
- [sym_satisfies_expression] = STATE(1634),
- [sym_instantiation_expression] = STATE(1634),
- [sym_internal_module] = STATE(1634),
- [sym_type_parameters] = STATE(5349),
- [aux_sym_export_statement_repeat1] = STATE(4458),
- [sym_identifier] = ACTIONS(1486),
- [anon_sym_export] = ACTIONS(1394),
- [anon_sym_type] = ACTIONS(1394),
- [anon_sym_namespace] = ACTIONS(1396),
- [anon_sym_LBRACE] = ACTIONS(845),
- [anon_sym_typeof] = ACTIONS(1416),
- [anon_sym_import] = ACTIONS(133),
- [anon_sym_let] = ACTIONS(1394),
- [anon_sym_BANG] = ACTIONS(1400),
- [anon_sym_LPAREN] = ACTIONS(815),
- [anon_sym_await] = ACTIONS(1402),
- [anon_sym_yield] = ACTIONS(1404),
- [anon_sym_LBRACK] = ACTIONS(849),
- [sym_glimmer_opening_tag] = ACTIONS(148),
- [anon_sym_DQUOTE] = ACTIONS(150),
- [anon_sym_SQUOTE] = ACTIONS(152),
- [anon_sym_class] = ACTIONS(154),
- [anon_sym_async] = ACTIONS(1406),
- [anon_sym_function] = ACTIONS(158),
- [anon_sym_new] = ACTIONS(1490),
- [anon_sym_using] = ACTIONS(1410),
- [anon_sym_PLUS] = ACTIONS(1416),
- [anon_sym_DASH] = ACTIONS(1416),
- [anon_sym_SLASH] = ACTIONS(970),
- [anon_sym_LT] = ACTIONS(181),
- [anon_sym_TILDE] = ACTIONS(1400),
- [anon_sym_void] = ACTIONS(1416),
- [anon_sym_delete] = ACTIONS(1416),
- [anon_sym_PLUS_PLUS] = ACTIONS(1418),
- [anon_sym_DASH_DASH] = ACTIONS(1418),
- [sym_comment] = ACTIONS(5),
- [anon_sym_BQUOTE] = ACTIONS(825),
- [sym_number] = ACTIONS(787),
- [sym_private_property_identifier] = ACTIONS(1420),
- [sym_this] = ACTIONS(200),
- [sym_super] = ACTIONS(200),
- [sym_true] = ACTIONS(200),
- [sym_false] = ACTIONS(200),
- [sym_null] = ACTIONS(200),
- [sym_undefined] = ACTIONS(1492),
- [anon_sym_AT] = ACTIONS(99),
- [anon_sym_static] = ACTIONS(1394),
- [anon_sym_readonly] = ACTIONS(1394),
- [anon_sym_get] = ACTIONS(1394),
- [anon_sym_set] = ACTIONS(1394),
- [anon_sym_declare] = ACTIONS(1394),
- [anon_sym_public] = ACTIONS(1394),
- [anon_sym_private] = ACTIONS(1394),
- [anon_sym_protected] = ACTIONS(1394),
- [anon_sym_override] = ACTIONS(1394),
- [anon_sym_module] = ACTIONS(1394),
- [anon_sym_any] = ACTIONS(1394),
- [anon_sym_number] = ACTIONS(1394),
- [anon_sym_boolean] = ACTIONS(1394),
- [anon_sym_string] = ACTIONS(1394),
- [anon_sym_symbol] = ACTIONS(1394),
- [anon_sym_object] = ACTIONS(1394),
- [sym_html_comment] = ACTIONS(5),
- },
- [542] = {
- [sym_import] = STATE(3334),
- [sym_parenthesized_expression] = STATE(1345),
- [sym_expression] = STATE(2348),
- [sym_primary_expression] = STATE(1468),
- [sym_yield_expression] = STATE(1634),
- [sym_object] = STATE(1650),
- [sym_object_pattern] = STATE(5872),
- [sym_array] = STATE(1650),
- [sym_array_pattern] = STATE(5872),
- [sym_glimmer_template] = STATE(1634),
- [sym_jsx_element] = STATE(1634),
- [sym_jsx_opening_element] = STATE(3026),
- [sym_jsx_self_closing_element] = STATE(1634),
- [sym_class] = STATE(1650),
- [sym_function_expression] = STATE(1650),
- [sym_generator_function] = STATE(1650),
- [sym_arrow_function] = STATE(1650),
- [sym__call_signature] = STATE(5904),
- [sym_call_expression] = STATE(1650),
- [sym_new_expression] = STATE(1634),
- [sym_await_expression] = STATE(1634),
- [sym_member_expression] = STATE(1345),
- [sym_subscript_expression] = STATE(1345),
- [sym_assignment_expression] = STATE(1634),
- [sym__augmented_assignment_lhs] = STATE(2898),
- [sym_augmented_assignment_expression] = STATE(1634),
- [sym__destructuring_pattern] = STATE(5872),
- [sym_ternary_expression] = STATE(1634),
- [sym_binary_expression] = STATE(1634),
- [sym_unary_expression] = STATE(1634),
- [sym_update_expression] = STATE(1634),
- [sym_string] = STATE(1650),
- [sym_template_string] = STATE(1650),
- [sym_regex] = STATE(1650),
- [sym_meta_property] = STATE(1650),
- [sym_decorator] = STATE(1244),
- [sym_formal_parameters] = STATE(3742),
- [sym_non_null_expression] = STATE(1345),
- [sym_as_expression] = STATE(1634),
- [sym_satisfies_expression] = STATE(1634),
- [sym_instantiation_expression] = STATE(1634),
- [sym_internal_module] = STATE(1634),
- [sym_type_parameters] = STATE(5349),
- [aux_sym_export_statement_repeat1] = STATE(4458),
- [sym_identifier] = ACTIONS(1486),
- [anon_sym_export] = ACTIONS(1394),
- [anon_sym_type] = ACTIONS(1394),
- [anon_sym_namespace] = ACTIONS(1396),
- [anon_sym_LBRACE] = ACTIONS(845),
- [anon_sym_typeof] = ACTIONS(1416),
- [anon_sym_import] = ACTIONS(133),
- [anon_sym_let] = ACTIONS(1394),
- [anon_sym_BANG] = ACTIONS(1400),
- [anon_sym_LPAREN] = ACTIONS(815),
- [anon_sym_await] = ACTIONS(1402),
- [anon_sym_yield] = ACTIONS(1404),
- [anon_sym_LBRACK] = ACTIONS(849),
- [sym_glimmer_opening_tag] = ACTIONS(148),
- [anon_sym_DQUOTE] = ACTIONS(150),
- [anon_sym_SQUOTE] = ACTIONS(152),
- [anon_sym_class] = ACTIONS(154),
- [anon_sym_async] = ACTIONS(1406),
- [anon_sym_function] = ACTIONS(158),
- [anon_sym_new] = ACTIONS(1490),
- [anon_sym_using] = ACTIONS(1410),
- [anon_sym_PLUS] = ACTIONS(1416),
- [anon_sym_DASH] = ACTIONS(1416),
- [anon_sym_SLASH] = ACTIONS(970),
- [anon_sym_LT] = ACTIONS(181),
- [anon_sym_TILDE] = ACTIONS(1400),
- [anon_sym_void] = ACTIONS(1416),
- [anon_sym_delete] = ACTIONS(1416),
- [anon_sym_PLUS_PLUS] = ACTIONS(1418),
- [anon_sym_DASH_DASH] = ACTIONS(1418),
- [sym_comment] = ACTIONS(5),
- [anon_sym_BQUOTE] = ACTIONS(825),
- [sym_number] = ACTIONS(787),
- [sym_private_property_identifier] = ACTIONS(1420),
- [sym_this] = ACTIONS(200),
- [sym_super] = ACTIONS(200),
- [sym_true] = ACTIONS(200),
- [sym_false] = ACTIONS(200),
- [sym_null] = ACTIONS(200),
- [sym_undefined] = ACTIONS(1492),
- [anon_sym_AT] = ACTIONS(99),
- [anon_sym_static] = ACTIONS(1394),
- [anon_sym_readonly] = ACTIONS(1394),
- [anon_sym_get] = ACTIONS(1394),
- [anon_sym_set] = ACTIONS(1394),
- [anon_sym_declare] = ACTIONS(1394),
- [anon_sym_public] = ACTIONS(1394),
- [anon_sym_private] = ACTIONS(1394),
- [anon_sym_protected] = ACTIONS(1394),
- [anon_sym_override] = ACTIONS(1394),
- [anon_sym_module] = ACTIONS(1394),
- [anon_sym_any] = ACTIONS(1394),
- [anon_sym_number] = ACTIONS(1394),
- [anon_sym_boolean] = ACTIONS(1394),
- [anon_sym_string] = ACTIONS(1394),
- [anon_sym_symbol] = ACTIONS(1394),
- [anon_sym_object] = ACTIONS(1394),
- [sym_html_comment] = ACTIONS(5),
- },
- [543] = {
- [sym_import] = STATE(3334),
- [sym_parenthesized_expression] = STATE(1345),
- [sym_expression] = STATE(2349),
- [sym_primary_expression] = STATE(1468),
- [sym_yield_expression] = STATE(1634),
- [sym_object] = STATE(1650),
- [sym_object_pattern] = STATE(5872),
- [sym_array] = STATE(1650),
- [sym_array_pattern] = STATE(5872),
- [sym_glimmer_template] = STATE(1634),
- [sym_jsx_element] = STATE(1634),
- [sym_jsx_opening_element] = STATE(3026),
- [sym_jsx_self_closing_element] = STATE(1634),
- [sym_class] = STATE(1650),
- [sym_function_expression] = STATE(1650),
- [sym_generator_function] = STATE(1650),
- [sym_arrow_function] = STATE(1650),
- [sym__call_signature] = STATE(5904),
- [sym_call_expression] = STATE(1650),
- [sym_new_expression] = STATE(1634),
- [sym_await_expression] = STATE(1634),
- [sym_member_expression] = STATE(1345),
- [sym_subscript_expression] = STATE(1345),
- [sym_assignment_expression] = STATE(1634),
- [sym__augmented_assignment_lhs] = STATE(2898),
- [sym_augmented_assignment_expression] = STATE(1634),
- [sym__destructuring_pattern] = STATE(5872),
- [sym_ternary_expression] = STATE(1634),
- [sym_binary_expression] = STATE(1634),
- [sym_unary_expression] = STATE(1634),
- [sym_update_expression] = STATE(1634),
- [sym_string] = STATE(1650),
- [sym_template_string] = STATE(1650),
- [sym_regex] = STATE(1650),
- [sym_meta_property] = STATE(1650),
- [sym_decorator] = STATE(1244),
- [sym_formal_parameters] = STATE(3742),
- [sym_non_null_expression] = STATE(1345),
- [sym_as_expression] = STATE(1634),
- [sym_satisfies_expression] = STATE(1634),
- [sym_instantiation_expression] = STATE(1634),
- [sym_internal_module] = STATE(1634),
- [sym_type_parameters] = STATE(5349),
- [aux_sym_export_statement_repeat1] = STATE(4458),
- [sym_identifier] = ACTIONS(1486),
- [anon_sym_export] = ACTIONS(1394),
- [anon_sym_type] = ACTIONS(1394),
- [anon_sym_namespace] = ACTIONS(1396),
- [anon_sym_LBRACE] = ACTIONS(845),
- [anon_sym_typeof] = ACTIONS(1416),
- [anon_sym_import] = ACTIONS(133),
- [anon_sym_let] = ACTIONS(1394),
- [anon_sym_BANG] = ACTIONS(1400),
- [anon_sym_LPAREN] = ACTIONS(815),
- [anon_sym_await] = ACTIONS(1402),
- [anon_sym_yield] = ACTIONS(1404),
- [anon_sym_LBRACK] = ACTIONS(849),
- [sym_glimmer_opening_tag] = ACTIONS(148),
- [anon_sym_DQUOTE] = ACTIONS(150),
- [anon_sym_SQUOTE] = ACTIONS(152),
- [anon_sym_class] = ACTIONS(154),
- [anon_sym_async] = ACTIONS(1406),
- [anon_sym_function] = ACTIONS(158),
- [anon_sym_new] = ACTIONS(1490),
- [anon_sym_using] = ACTIONS(1410),
- [anon_sym_PLUS] = ACTIONS(1416),
- [anon_sym_DASH] = ACTIONS(1416),
- [anon_sym_SLASH] = ACTIONS(970),
- [anon_sym_LT] = ACTIONS(181),
- [anon_sym_TILDE] = ACTIONS(1400),
- [anon_sym_void] = ACTIONS(1416),
- [anon_sym_delete] = ACTIONS(1416),
- [anon_sym_PLUS_PLUS] = ACTIONS(1418),
- [anon_sym_DASH_DASH] = ACTIONS(1418),
- [sym_comment] = ACTIONS(5),
- [anon_sym_BQUOTE] = ACTIONS(825),
- [sym_number] = ACTIONS(787),
- [sym_private_property_identifier] = ACTIONS(1420),
- [sym_this] = ACTIONS(200),
- [sym_super] = ACTIONS(200),
- [sym_true] = ACTIONS(200),
- [sym_false] = ACTIONS(200),
- [sym_null] = ACTIONS(200),
- [sym_undefined] = ACTIONS(1492),
- [anon_sym_AT] = ACTIONS(99),
- [anon_sym_static] = ACTIONS(1394),
- [anon_sym_readonly] = ACTIONS(1394),
- [anon_sym_get] = ACTIONS(1394),
- [anon_sym_set] = ACTIONS(1394),
- [anon_sym_declare] = ACTIONS(1394),
- [anon_sym_public] = ACTIONS(1394),
- [anon_sym_private] = ACTIONS(1394),
- [anon_sym_protected] = ACTIONS(1394),
- [anon_sym_override] = ACTIONS(1394),
- [anon_sym_module] = ACTIONS(1394),
- [anon_sym_any] = ACTIONS(1394),
- [anon_sym_number] = ACTIONS(1394),
- [anon_sym_boolean] = ACTIONS(1394),
- [anon_sym_string] = ACTIONS(1394),
- [anon_sym_symbol] = ACTIONS(1394),
- [anon_sym_object] = ACTIONS(1394),
- [sym_html_comment] = ACTIONS(5),
- },
- [544] = {
- [sym_import] = STATE(3334),
- [sym_parenthesized_expression] = STATE(1345),
- [sym_expression] = STATE(2351),
- [sym_primary_expression] = STATE(1468),
- [sym_yield_expression] = STATE(1634),
- [sym_object] = STATE(1650),
- [sym_object_pattern] = STATE(5872),
- [sym_array] = STATE(1650),
- [sym_array_pattern] = STATE(5872),
- [sym_glimmer_template] = STATE(1634),
- [sym_jsx_element] = STATE(1634),
- [sym_jsx_opening_element] = STATE(3026),
- [sym_jsx_self_closing_element] = STATE(1634),
- [sym_class] = STATE(1650),
- [sym_function_expression] = STATE(1650),
- [sym_generator_function] = STATE(1650),
- [sym_arrow_function] = STATE(1650),
- [sym__call_signature] = STATE(5904),
- [sym_call_expression] = STATE(1650),
- [sym_new_expression] = STATE(1634),
- [sym_await_expression] = STATE(1634),
- [sym_member_expression] = STATE(1345),
- [sym_subscript_expression] = STATE(1345),
- [sym_assignment_expression] = STATE(1634),
- [sym__augmented_assignment_lhs] = STATE(2898),
- [sym_augmented_assignment_expression] = STATE(1634),
- [sym__destructuring_pattern] = STATE(5872),
- [sym_ternary_expression] = STATE(1634),
- [sym_binary_expression] = STATE(1634),
- [sym_unary_expression] = STATE(1634),
- [sym_update_expression] = STATE(1634),
- [sym_string] = STATE(1650),
- [sym_template_string] = STATE(1650),
- [sym_regex] = STATE(1650),
- [sym_meta_property] = STATE(1650),
- [sym_decorator] = STATE(1244),
- [sym_formal_parameters] = STATE(3742),
- [sym_non_null_expression] = STATE(1345),
- [sym_as_expression] = STATE(1634),
- [sym_satisfies_expression] = STATE(1634),
- [sym_instantiation_expression] = STATE(1634),
- [sym_internal_module] = STATE(1634),
- [sym_type_parameters] = STATE(5349),
- [aux_sym_export_statement_repeat1] = STATE(4458),
- [sym_identifier] = ACTIONS(1486),
- [anon_sym_export] = ACTIONS(1394),
- [anon_sym_type] = ACTIONS(1394),
- [anon_sym_namespace] = ACTIONS(1396),
- [anon_sym_LBRACE] = ACTIONS(845),
- [anon_sym_typeof] = ACTIONS(1416),
- [anon_sym_import] = ACTIONS(133),
- [anon_sym_let] = ACTIONS(1394),
- [anon_sym_BANG] = ACTIONS(1400),
- [anon_sym_LPAREN] = ACTIONS(815),
- [anon_sym_await] = ACTIONS(1402),
- [anon_sym_yield] = ACTIONS(1404),
- [anon_sym_LBRACK] = ACTIONS(849),
- [sym_glimmer_opening_tag] = ACTIONS(148),
- [anon_sym_DQUOTE] = ACTIONS(150),
- [anon_sym_SQUOTE] = ACTIONS(152),
- [anon_sym_class] = ACTIONS(154),
- [anon_sym_async] = ACTIONS(1406),
- [anon_sym_function] = ACTIONS(158),
- [anon_sym_new] = ACTIONS(1490),
- [anon_sym_using] = ACTIONS(1410),
- [anon_sym_PLUS] = ACTIONS(1416),
- [anon_sym_DASH] = ACTIONS(1416),
- [anon_sym_SLASH] = ACTIONS(970),
- [anon_sym_LT] = ACTIONS(181),
- [anon_sym_TILDE] = ACTIONS(1400),
- [anon_sym_void] = ACTIONS(1416),
- [anon_sym_delete] = ACTIONS(1416),
- [anon_sym_PLUS_PLUS] = ACTIONS(1418),
- [anon_sym_DASH_DASH] = ACTIONS(1418),
- [sym_comment] = ACTIONS(5),
- [anon_sym_BQUOTE] = ACTIONS(825),
- [sym_number] = ACTIONS(787),
- [sym_private_property_identifier] = ACTIONS(1420),
- [sym_this] = ACTIONS(200),
- [sym_super] = ACTIONS(200),
- [sym_true] = ACTIONS(200),
- [sym_false] = ACTIONS(200),
- [sym_null] = ACTIONS(200),
- [sym_undefined] = ACTIONS(1492),
- [anon_sym_AT] = ACTIONS(99),
- [anon_sym_static] = ACTIONS(1394),
- [anon_sym_readonly] = ACTIONS(1394),
- [anon_sym_get] = ACTIONS(1394),
- [anon_sym_set] = ACTIONS(1394),
- [anon_sym_declare] = ACTIONS(1394),
- [anon_sym_public] = ACTIONS(1394),
- [anon_sym_private] = ACTIONS(1394),
- [anon_sym_protected] = ACTIONS(1394),
- [anon_sym_override] = ACTIONS(1394),
- [anon_sym_module] = ACTIONS(1394),
- [anon_sym_any] = ACTIONS(1394),
- [anon_sym_number] = ACTIONS(1394),
- [anon_sym_boolean] = ACTIONS(1394),
- [anon_sym_string] = ACTIONS(1394),
- [anon_sym_symbol] = ACTIONS(1394),
- [anon_sym_object] = ACTIONS(1394),
- [sym_html_comment] = ACTIONS(5),
- },
- [545] = {
- [sym_import] = STATE(3334),
- [sym_parenthesized_expression] = STATE(1345),
- [sym_expression] = STATE(2352),
- [sym_primary_expression] = STATE(1468),
- [sym_yield_expression] = STATE(1634),
- [sym_object] = STATE(1650),
- [sym_object_pattern] = STATE(5872),
- [sym_array] = STATE(1650),
- [sym_array_pattern] = STATE(5872),
- [sym_glimmer_template] = STATE(1634),
- [sym_jsx_element] = STATE(1634),
- [sym_jsx_opening_element] = STATE(3026),
- [sym_jsx_self_closing_element] = STATE(1634),
- [sym_class] = STATE(1650),
- [sym_function_expression] = STATE(1650),
- [sym_generator_function] = STATE(1650),
- [sym_arrow_function] = STATE(1650),
- [sym__call_signature] = STATE(5904),
- [sym_call_expression] = STATE(1650),
- [sym_new_expression] = STATE(1634),
- [sym_await_expression] = STATE(1634),
- [sym_member_expression] = STATE(1345),
- [sym_subscript_expression] = STATE(1345),
- [sym_assignment_expression] = STATE(1634),
- [sym__augmented_assignment_lhs] = STATE(2898),
- [sym_augmented_assignment_expression] = STATE(1634),
- [sym__destructuring_pattern] = STATE(5872),
- [sym_ternary_expression] = STATE(1634),
- [sym_binary_expression] = STATE(1634),
- [sym_unary_expression] = STATE(1634),
- [sym_update_expression] = STATE(1634),
- [sym_string] = STATE(1650),
- [sym_template_string] = STATE(1650),
- [sym_regex] = STATE(1650),
- [sym_meta_property] = STATE(1650),
- [sym_decorator] = STATE(1244),
- [sym_formal_parameters] = STATE(3742),
- [sym_non_null_expression] = STATE(1345),
- [sym_as_expression] = STATE(1634),
- [sym_satisfies_expression] = STATE(1634),
- [sym_instantiation_expression] = STATE(1634),
- [sym_internal_module] = STATE(1634),
- [sym_type_parameters] = STATE(5349),
- [aux_sym_export_statement_repeat1] = STATE(4458),
- [sym_identifier] = ACTIONS(1486),
- [anon_sym_export] = ACTIONS(1394),
- [anon_sym_type] = ACTIONS(1394),
- [anon_sym_namespace] = ACTIONS(1396),
- [anon_sym_LBRACE] = ACTIONS(845),
- [anon_sym_typeof] = ACTIONS(1416),
- [anon_sym_import] = ACTIONS(133),
- [anon_sym_let] = ACTIONS(1394),
- [anon_sym_BANG] = ACTIONS(1400),
- [anon_sym_LPAREN] = ACTIONS(815),
- [anon_sym_await] = ACTIONS(1402),
- [anon_sym_yield] = ACTIONS(1404),
- [anon_sym_LBRACK] = ACTIONS(849),
- [sym_glimmer_opening_tag] = ACTIONS(148),
- [anon_sym_DQUOTE] = ACTIONS(150),
- [anon_sym_SQUOTE] = ACTIONS(152),
- [anon_sym_class] = ACTIONS(154),
- [anon_sym_async] = ACTIONS(1406),
- [anon_sym_function] = ACTIONS(158),
- [anon_sym_new] = ACTIONS(1490),
- [anon_sym_using] = ACTIONS(1410),
- [anon_sym_PLUS] = ACTIONS(1416),
- [anon_sym_DASH] = ACTIONS(1416),
- [anon_sym_SLASH] = ACTIONS(970),
- [anon_sym_LT] = ACTIONS(181),
- [anon_sym_TILDE] = ACTIONS(1400),
- [anon_sym_void] = ACTIONS(1416),
- [anon_sym_delete] = ACTIONS(1416),
- [anon_sym_PLUS_PLUS] = ACTIONS(1418),
- [anon_sym_DASH_DASH] = ACTIONS(1418),
- [sym_comment] = ACTIONS(5),
- [anon_sym_BQUOTE] = ACTIONS(825),
- [sym_number] = ACTIONS(787),
- [sym_private_property_identifier] = ACTIONS(1420),
- [sym_this] = ACTIONS(200),
- [sym_super] = ACTIONS(200),
- [sym_true] = ACTIONS(200),
- [sym_false] = ACTIONS(200),
- [sym_null] = ACTIONS(200),
- [sym_undefined] = ACTIONS(1492),
- [anon_sym_AT] = ACTIONS(99),
- [anon_sym_static] = ACTIONS(1394),
- [anon_sym_readonly] = ACTIONS(1394),
- [anon_sym_get] = ACTIONS(1394),
- [anon_sym_set] = ACTIONS(1394),
- [anon_sym_declare] = ACTIONS(1394),
- [anon_sym_public] = ACTIONS(1394),
- [anon_sym_private] = ACTIONS(1394),
- [anon_sym_protected] = ACTIONS(1394),
- [anon_sym_override] = ACTIONS(1394),
- [anon_sym_module] = ACTIONS(1394),
- [anon_sym_any] = ACTIONS(1394),
- [anon_sym_number] = ACTIONS(1394),
- [anon_sym_boolean] = ACTIONS(1394),
- [anon_sym_string] = ACTIONS(1394),
- [anon_sym_symbol] = ACTIONS(1394),
- [anon_sym_object] = ACTIONS(1394),
- [sym_html_comment] = ACTIONS(5),
- },
- [546] = {
- [sym_import] = STATE(3334),
- [sym_parenthesized_expression] = STATE(1345),
- [sym_expression] = STATE(2353),
- [sym_primary_expression] = STATE(1468),
- [sym_yield_expression] = STATE(1634),
- [sym_object] = STATE(1650),
- [sym_object_pattern] = STATE(5872),
- [sym_array] = STATE(1650),
- [sym_array_pattern] = STATE(5872),
- [sym_glimmer_template] = STATE(1634),
- [sym_jsx_element] = STATE(1634),
- [sym_jsx_opening_element] = STATE(3026),
- [sym_jsx_self_closing_element] = STATE(1634),
- [sym_class] = STATE(1650),
- [sym_function_expression] = STATE(1650),
- [sym_generator_function] = STATE(1650),
- [sym_arrow_function] = STATE(1650),
- [sym__call_signature] = STATE(5904),
- [sym_call_expression] = STATE(1650),
- [sym_new_expression] = STATE(1634),
- [sym_await_expression] = STATE(1634),
- [sym_member_expression] = STATE(1345),
- [sym_subscript_expression] = STATE(1345),
- [sym_assignment_expression] = STATE(1634),
- [sym__augmented_assignment_lhs] = STATE(2898),
- [sym_augmented_assignment_expression] = STATE(1634),
- [sym__destructuring_pattern] = STATE(5872),
- [sym_ternary_expression] = STATE(1634),
- [sym_binary_expression] = STATE(1634),
- [sym_unary_expression] = STATE(1634),
- [sym_update_expression] = STATE(1634),
- [sym_string] = STATE(1650),
- [sym_template_string] = STATE(1650),
- [sym_regex] = STATE(1650),
- [sym_meta_property] = STATE(1650),
- [sym_decorator] = STATE(1244),
- [sym_formal_parameters] = STATE(3742),
- [sym_non_null_expression] = STATE(1345),
- [sym_as_expression] = STATE(1634),
- [sym_satisfies_expression] = STATE(1634),
- [sym_instantiation_expression] = STATE(1634),
- [sym_internal_module] = STATE(1634),
- [sym_type_parameters] = STATE(5349),
- [aux_sym_export_statement_repeat1] = STATE(4458),
- [sym_identifier] = ACTIONS(1486),
- [anon_sym_export] = ACTIONS(1394),
- [anon_sym_type] = ACTIONS(1394),
- [anon_sym_namespace] = ACTIONS(1396),
- [anon_sym_LBRACE] = ACTIONS(845),
- [anon_sym_typeof] = ACTIONS(1416),
- [anon_sym_import] = ACTIONS(133),
- [anon_sym_let] = ACTIONS(1394),
- [anon_sym_BANG] = ACTIONS(1400),
- [anon_sym_LPAREN] = ACTIONS(815),
- [anon_sym_await] = ACTIONS(1402),
- [anon_sym_yield] = ACTIONS(1404),
- [anon_sym_LBRACK] = ACTIONS(849),
- [sym_glimmer_opening_tag] = ACTIONS(148),
- [anon_sym_DQUOTE] = ACTIONS(150),
- [anon_sym_SQUOTE] = ACTIONS(152),
- [anon_sym_class] = ACTIONS(154),
- [anon_sym_async] = ACTIONS(1406),
- [anon_sym_function] = ACTIONS(158),
- [anon_sym_new] = ACTIONS(1490),
- [anon_sym_using] = ACTIONS(1410),
- [anon_sym_PLUS] = ACTIONS(1416),
- [anon_sym_DASH] = ACTIONS(1416),
- [anon_sym_SLASH] = ACTIONS(970),
- [anon_sym_LT] = ACTIONS(181),
- [anon_sym_TILDE] = ACTIONS(1400),
- [anon_sym_void] = ACTIONS(1416),
- [anon_sym_delete] = ACTIONS(1416),
- [anon_sym_PLUS_PLUS] = ACTIONS(1418),
- [anon_sym_DASH_DASH] = ACTIONS(1418),
- [sym_comment] = ACTIONS(5),
- [anon_sym_BQUOTE] = ACTIONS(825),
- [sym_number] = ACTIONS(787),
- [sym_private_property_identifier] = ACTIONS(1420),
- [sym_this] = ACTIONS(200),
- [sym_super] = ACTIONS(200),
- [sym_true] = ACTIONS(200),
- [sym_false] = ACTIONS(200),
- [sym_null] = ACTIONS(200),
- [sym_undefined] = ACTIONS(1492),
- [anon_sym_AT] = ACTIONS(99),
- [anon_sym_static] = ACTIONS(1394),
- [anon_sym_readonly] = ACTIONS(1394),
- [anon_sym_get] = ACTIONS(1394),
- [anon_sym_set] = ACTIONS(1394),
- [anon_sym_declare] = ACTIONS(1394),
- [anon_sym_public] = ACTIONS(1394),
- [anon_sym_private] = ACTIONS(1394),
- [anon_sym_protected] = ACTIONS(1394),
- [anon_sym_override] = ACTIONS(1394),
- [anon_sym_module] = ACTIONS(1394),
- [anon_sym_any] = ACTIONS(1394),
- [anon_sym_number] = ACTIONS(1394),
- [anon_sym_boolean] = ACTIONS(1394),
- [anon_sym_string] = ACTIONS(1394),
- [anon_sym_symbol] = ACTIONS(1394),
- [anon_sym_object] = ACTIONS(1394),
- [sym_html_comment] = ACTIONS(5),
- },
- [547] = {
- [sym_import] = STATE(3334),
- [sym_parenthesized_expression] = STATE(1345),
- [sym_expression] = STATE(2354),
- [sym_primary_expression] = STATE(1468),
- [sym_yield_expression] = STATE(1634),
- [sym_object] = STATE(1650),
- [sym_object_pattern] = STATE(5872),
- [sym_array] = STATE(1650),
- [sym_array_pattern] = STATE(5872),
- [sym_glimmer_template] = STATE(1634),
- [sym_jsx_element] = STATE(1634),
- [sym_jsx_opening_element] = STATE(3026),
- [sym_jsx_self_closing_element] = STATE(1634),
- [sym_class] = STATE(1650),
- [sym_function_expression] = STATE(1650),
- [sym_generator_function] = STATE(1650),
- [sym_arrow_function] = STATE(1650),
- [sym__call_signature] = STATE(5904),
- [sym_call_expression] = STATE(1650),
- [sym_new_expression] = STATE(1634),
- [sym_await_expression] = STATE(1634),
- [sym_member_expression] = STATE(1345),
- [sym_subscript_expression] = STATE(1345),
- [sym_assignment_expression] = STATE(1634),
- [sym__augmented_assignment_lhs] = STATE(2898),
- [sym_augmented_assignment_expression] = STATE(1634),
- [sym__destructuring_pattern] = STATE(5872),
- [sym_ternary_expression] = STATE(1634),
- [sym_binary_expression] = STATE(1634),
- [sym_unary_expression] = STATE(1634),
- [sym_update_expression] = STATE(1634),
- [sym_string] = STATE(1650),
- [sym_template_string] = STATE(1650),
- [sym_regex] = STATE(1650),
- [sym_meta_property] = STATE(1650),
- [sym_decorator] = STATE(1244),
- [sym_formal_parameters] = STATE(3742),
- [sym_non_null_expression] = STATE(1345),
- [sym_as_expression] = STATE(1634),
- [sym_satisfies_expression] = STATE(1634),
- [sym_instantiation_expression] = STATE(1634),
- [sym_internal_module] = STATE(1634),
- [sym_type_parameters] = STATE(5349),
- [aux_sym_export_statement_repeat1] = STATE(4458),
- [sym_identifier] = ACTIONS(1486),
- [anon_sym_export] = ACTIONS(1394),
- [anon_sym_type] = ACTIONS(1394),
- [anon_sym_namespace] = ACTIONS(1396),
- [anon_sym_LBRACE] = ACTIONS(845),
- [anon_sym_typeof] = ACTIONS(1416),
- [anon_sym_import] = ACTIONS(133),
- [anon_sym_let] = ACTIONS(1394),
- [anon_sym_BANG] = ACTIONS(1400),
- [anon_sym_LPAREN] = ACTIONS(815),
- [anon_sym_await] = ACTIONS(1402),
- [anon_sym_yield] = ACTIONS(1404),
- [anon_sym_LBRACK] = ACTIONS(849),
- [sym_glimmer_opening_tag] = ACTIONS(148),
- [anon_sym_DQUOTE] = ACTIONS(150),
- [anon_sym_SQUOTE] = ACTIONS(152),
- [anon_sym_class] = ACTIONS(154),
- [anon_sym_async] = ACTIONS(1406),
- [anon_sym_function] = ACTIONS(158),
- [anon_sym_new] = ACTIONS(1490),
- [anon_sym_using] = ACTIONS(1410),
- [anon_sym_PLUS] = ACTIONS(1416),
- [anon_sym_DASH] = ACTIONS(1416),
- [anon_sym_SLASH] = ACTIONS(970),
- [anon_sym_LT] = ACTIONS(181),
- [anon_sym_TILDE] = ACTIONS(1400),
- [anon_sym_void] = ACTIONS(1416),
- [anon_sym_delete] = ACTIONS(1416),
- [anon_sym_PLUS_PLUS] = ACTIONS(1418),
- [anon_sym_DASH_DASH] = ACTIONS(1418),
- [sym_comment] = ACTIONS(5),
- [anon_sym_BQUOTE] = ACTIONS(825),
- [sym_number] = ACTIONS(787),
- [sym_private_property_identifier] = ACTIONS(1420),
- [sym_this] = ACTIONS(200),
- [sym_super] = ACTIONS(200),
- [sym_true] = ACTIONS(200),
- [sym_false] = ACTIONS(200),
- [sym_null] = ACTIONS(200),
- [sym_undefined] = ACTIONS(1492),
- [anon_sym_AT] = ACTIONS(99),
- [anon_sym_static] = ACTIONS(1394),
- [anon_sym_readonly] = ACTIONS(1394),
- [anon_sym_get] = ACTIONS(1394),
- [anon_sym_set] = ACTIONS(1394),
- [anon_sym_declare] = ACTIONS(1394),
- [anon_sym_public] = ACTIONS(1394),
- [anon_sym_private] = ACTIONS(1394),
- [anon_sym_protected] = ACTIONS(1394),
- [anon_sym_override] = ACTIONS(1394),
- [anon_sym_module] = ACTIONS(1394),
- [anon_sym_any] = ACTIONS(1394),
- [anon_sym_number] = ACTIONS(1394),
- [anon_sym_boolean] = ACTIONS(1394),
- [anon_sym_string] = ACTIONS(1394),
- [anon_sym_symbol] = ACTIONS(1394),
- [anon_sym_object] = ACTIONS(1394),
- [sym_html_comment] = ACTIONS(5),
- },
- [548] = {
- [sym_import] = STATE(3334),
- [sym_parenthesized_expression] = STATE(1345),
- [sym_expression] = STATE(2355),
- [sym_primary_expression] = STATE(1468),
- [sym_yield_expression] = STATE(1634),
- [sym_object] = STATE(1650),
- [sym_object_pattern] = STATE(5872),
- [sym_array] = STATE(1650),
- [sym_array_pattern] = STATE(5872),
- [sym_glimmer_template] = STATE(1634),
- [sym_jsx_element] = STATE(1634),
- [sym_jsx_opening_element] = STATE(3026),
- [sym_jsx_self_closing_element] = STATE(1634),
- [sym_class] = STATE(1650),
- [sym_function_expression] = STATE(1650),
- [sym_generator_function] = STATE(1650),
- [sym_arrow_function] = STATE(1650),
- [sym__call_signature] = STATE(5904),
- [sym_call_expression] = STATE(1650),
- [sym_new_expression] = STATE(1634),
- [sym_await_expression] = STATE(1634),
- [sym_member_expression] = STATE(1345),
- [sym_subscript_expression] = STATE(1345),
- [sym_assignment_expression] = STATE(1634),
- [sym__augmented_assignment_lhs] = STATE(2898),
- [sym_augmented_assignment_expression] = STATE(1634),
- [sym__destructuring_pattern] = STATE(5872),
- [sym_ternary_expression] = STATE(1634),
- [sym_binary_expression] = STATE(1634),
- [sym_unary_expression] = STATE(1634),
- [sym_update_expression] = STATE(1634),
- [sym_string] = STATE(1650),
- [sym_template_string] = STATE(1650),
- [sym_regex] = STATE(1650),
- [sym_meta_property] = STATE(1650),
- [sym_decorator] = STATE(1244),
- [sym_formal_parameters] = STATE(3742),
- [sym_non_null_expression] = STATE(1345),
- [sym_as_expression] = STATE(1634),
- [sym_satisfies_expression] = STATE(1634),
- [sym_instantiation_expression] = STATE(1634),
- [sym_internal_module] = STATE(1634),
- [sym_type_parameters] = STATE(5349),
- [aux_sym_export_statement_repeat1] = STATE(4458),
- [sym_identifier] = ACTIONS(1486),
- [anon_sym_export] = ACTIONS(1394),
- [anon_sym_type] = ACTIONS(1394),
- [anon_sym_namespace] = ACTIONS(1396),
- [anon_sym_LBRACE] = ACTIONS(845),
- [anon_sym_typeof] = ACTIONS(1416),
- [anon_sym_import] = ACTIONS(133),
- [anon_sym_let] = ACTIONS(1394),
- [anon_sym_BANG] = ACTIONS(1400),
- [anon_sym_LPAREN] = ACTIONS(815),
- [anon_sym_await] = ACTIONS(1402),
- [anon_sym_yield] = ACTIONS(1404),
- [anon_sym_LBRACK] = ACTIONS(849),
- [sym_glimmer_opening_tag] = ACTIONS(148),
- [anon_sym_DQUOTE] = ACTIONS(150),
- [anon_sym_SQUOTE] = ACTIONS(152),
- [anon_sym_class] = ACTIONS(154),
- [anon_sym_async] = ACTIONS(1406),
- [anon_sym_function] = ACTIONS(158),
- [anon_sym_new] = ACTIONS(1490),
- [anon_sym_using] = ACTIONS(1410),
- [anon_sym_PLUS] = ACTIONS(1416),
- [anon_sym_DASH] = ACTIONS(1416),
- [anon_sym_SLASH] = ACTIONS(970),
- [anon_sym_LT] = ACTIONS(181),
- [anon_sym_TILDE] = ACTIONS(1400),
- [anon_sym_void] = ACTIONS(1416),
- [anon_sym_delete] = ACTIONS(1416),
- [anon_sym_PLUS_PLUS] = ACTIONS(1418),
- [anon_sym_DASH_DASH] = ACTIONS(1418),
- [sym_comment] = ACTIONS(5),
- [anon_sym_BQUOTE] = ACTIONS(825),
- [sym_number] = ACTIONS(787),
- [sym_private_property_identifier] = ACTIONS(1420),
- [sym_this] = ACTIONS(200),
- [sym_super] = ACTIONS(200),
- [sym_true] = ACTIONS(200),
- [sym_false] = ACTIONS(200),
- [sym_null] = ACTIONS(200),
- [sym_undefined] = ACTIONS(1492),
- [anon_sym_AT] = ACTIONS(99),
- [anon_sym_static] = ACTIONS(1394),
- [anon_sym_readonly] = ACTIONS(1394),
- [anon_sym_get] = ACTIONS(1394),
- [anon_sym_set] = ACTIONS(1394),
- [anon_sym_declare] = ACTIONS(1394),
- [anon_sym_public] = ACTIONS(1394),
- [anon_sym_private] = ACTIONS(1394),
- [anon_sym_protected] = ACTIONS(1394),
- [anon_sym_override] = ACTIONS(1394),
- [anon_sym_module] = ACTIONS(1394),
- [anon_sym_any] = ACTIONS(1394),
- [anon_sym_number] = ACTIONS(1394),
- [anon_sym_boolean] = ACTIONS(1394),
- [anon_sym_string] = ACTIONS(1394),
- [anon_sym_symbol] = ACTIONS(1394),
- [anon_sym_object] = ACTIONS(1394),
- [sym_html_comment] = ACTIONS(5),
- },
- [549] = {
- [sym_import] = STATE(3334),
- [sym_parenthesized_expression] = STATE(1345),
- [sym_expression] = STATE(2356),
- [sym_primary_expression] = STATE(1468),
- [sym_yield_expression] = STATE(1634),
- [sym_object] = STATE(1650),
- [sym_object_pattern] = STATE(5872),
- [sym_array] = STATE(1650),
- [sym_array_pattern] = STATE(5872),
- [sym_glimmer_template] = STATE(1634),
- [sym_jsx_element] = STATE(1634),
- [sym_jsx_opening_element] = STATE(3026),
- [sym_jsx_self_closing_element] = STATE(1634),
- [sym_class] = STATE(1650),
- [sym_function_expression] = STATE(1650),
- [sym_generator_function] = STATE(1650),
- [sym_arrow_function] = STATE(1650),
- [sym__call_signature] = STATE(5904),
- [sym_call_expression] = STATE(1650),
- [sym_new_expression] = STATE(1634),
- [sym_await_expression] = STATE(1634),
- [sym_member_expression] = STATE(1345),
- [sym_subscript_expression] = STATE(1345),
- [sym_assignment_expression] = STATE(1634),
- [sym__augmented_assignment_lhs] = STATE(2898),
- [sym_augmented_assignment_expression] = STATE(1634),
- [sym__destructuring_pattern] = STATE(5872),
- [sym_ternary_expression] = STATE(1634),
- [sym_binary_expression] = STATE(1634),
- [sym_unary_expression] = STATE(1634),
- [sym_update_expression] = STATE(1634),
- [sym_string] = STATE(1650),
- [sym_template_string] = STATE(1650),
- [sym_regex] = STATE(1650),
- [sym_meta_property] = STATE(1650),
- [sym_decorator] = STATE(1244),
- [sym_formal_parameters] = STATE(3742),
- [sym_non_null_expression] = STATE(1345),
- [sym_as_expression] = STATE(1634),
- [sym_satisfies_expression] = STATE(1634),
- [sym_instantiation_expression] = STATE(1634),
- [sym_internal_module] = STATE(1634),
- [sym_type_parameters] = STATE(5349),
- [aux_sym_export_statement_repeat1] = STATE(4458),
- [sym_identifier] = ACTIONS(1486),
- [anon_sym_export] = ACTIONS(1394),
- [anon_sym_type] = ACTIONS(1394),
- [anon_sym_namespace] = ACTIONS(1396),
- [anon_sym_LBRACE] = ACTIONS(845),
- [anon_sym_typeof] = ACTIONS(1416),
- [anon_sym_import] = ACTIONS(133),
- [anon_sym_let] = ACTIONS(1394),
- [anon_sym_BANG] = ACTIONS(1400),
- [anon_sym_LPAREN] = ACTIONS(815),
- [anon_sym_await] = ACTIONS(1402),
- [anon_sym_yield] = ACTIONS(1404),
- [anon_sym_LBRACK] = ACTIONS(849),
- [sym_glimmer_opening_tag] = ACTIONS(148),
- [anon_sym_DQUOTE] = ACTIONS(150),
- [anon_sym_SQUOTE] = ACTIONS(152),
- [anon_sym_class] = ACTIONS(154),
- [anon_sym_async] = ACTIONS(1406),
- [anon_sym_function] = ACTIONS(158),
- [anon_sym_new] = ACTIONS(1490),
- [anon_sym_using] = ACTIONS(1410),
- [anon_sym_PLUS] = ACTIONS(1416),
- [anon_sym_DASH] = ACTIONS(1416),
- [anon_sym_SLASH] = ACTIONS(970),
- [anon_sym_LT] = ACTIONS(181),
- [anon_sym_TILDE] = ACTIONS(1400),
- [anon_sym_void] = ACTIONS(1416),
- [anon_sym_delete] = ACTIONS(1416),
- [anon_sym_PLUS_PLUS] = ACTIONS(1418),
- [anon_sym_DASH_DASH] = ACTIONS(1418),
- [sym_comment] = ACTIONS(5),
- [anon_sym_BQUOTE] = ACTIONS(825),
- [sym_number] = ACTIONS(787),
- [sym_private_property_identifier] = ACTIONS(1420),
- [sym_this] = ACTIONS(200),
- [sym_super] = ACTIONS(200),
- [sym_true] = ACTIONS(200),
- [sym_false] = ACTIONS(200),
- [sym_null] = ACTIONS(200),
- [sym_undefined] = ACTIONS(1492),
- [anon_sym_AT] = ACTIONS(99),
- [anon_sym_static] = ACTIONS(1394),
- [anon_sym_readonly] = ACTIONS(1394),
- [anon_sym_get] = ACTIONS(1394),
- [anon_sym_set] = ACTIONS(1394),
- [anon_sym_declare] = ACTIONS(1394),
- [anon_sym_public] = ACTIONS(1394),
- [anon_sym_private] = ACTIONS(1394),
- [anon_sym_protected] = ACTIONS(1394),
- [anon_sym_override] = ACTIONS(1394),
- [anon_sym_module] = ACTIONS(1394),
- [anon_sym_any] = ACTIONS(1394),
- [anon_sym_number] = ACTIONS(1394),
- [anon_sym_boolean] = ACTIONS(1394),
- [anon_sym_string] = ACTIONS(1394),
- [anon_sym_symbol] = ACTIONS(1394),
- [anon_sym_object] = ACTIONS(1394),
- [sym_html_comment] = ACTIONS(5),
- },
- [550] = {
- [sym_import] = STATE(3334),
- [sym_parenthesized_expression] = STATE(1345),
- [sym_expression] = STATE(2357),
- [sym_primary_expression] = STATE(1468),
- [sym_yield_expression] = STATE(1634),
- [sym_object] = STATE(1650),
- [sym_object_pattern] = STATE(5872),
- [sym_array] = STATE(1650),
- [sym_array_pattern] = STATE(5872),
- [sym_glimmer_template] = STATE(1634),
- [sym_jsx_element] = STATE(1634),
- [sym_jsx_opening_element] = STATE(3026),
- [sym_jsx_self_closing_element] = STATE(1634),
- [sym_class] = STATE(1650),
- [sym_function_expression] = STATE(1650),
- [sym_generator_function] = STATE(1650),
- [sym_arrow_function] = STATE(1650),
- [sym__call_signature] = STATE(5904),
- [sym_call_expression] = STATE(1650),
- [sym_new_expression] = STATE(1634),
- [sym_await_expression] = STATE(1634),
- [sym_member_expression] = STATE(1345),
- [sym_subscript_expression] = STATE(1345),
- [sym_assignment_expression] = STATE(1634),
- [sym__augmented_assignment_lhs] = STATE(2898),
- [sym_augmented_assignment_expression] = STATE(1634),
- [sym__destructuring_pattern] = STATE(5872),
- [sym_ternary_expression] = STATE(1634),
- [sym_binary_expression] = STATE(1634),
- [sym_unary_expression] = STATE(1634),
- [sym_update_expression] = STATE(1634),
- [sym_string] = STATE(1650),
- [sym_template_string] = STATE(1650),
- [sym_regex] = STATE(1650),
- [sym_meta_property] = STATE(1650),
- [sym_decorator] = STATE(1244),
- [sym_formal_parameters] = STATE(3742),
- [sym_non_null_expression] = STATE(1345),
- [sym_as_expression] = STATE(1634),
- [sym_satisfies_expression] = STATE(1634),
- [sym_instantiation_expression] = STATE(1634),
- [sym_internal_module] = STATE(1634),
- [sym_type_parameters] = STATE(5349),
- [aux_sym_export_statement_repeat1] = STATE(4458),
- [sym_identifier] = ACTIONS(1486),
- [anon_sym_export] = ACTIONS(1394),
- [anon_sym_type] = ACTIONS(1394),
- [anon_sym_namespace] = ACTIONS(1396),
- [anon_sym_LBRACE] = ACTIONS(845),
- [anon_sym_typeof] = ACTIONS(1416),
- [anon_sym_import] = ACTIONS(133),
- [anon_sym_let] = ACTIONS(1394),
- [anon_sym_BANG] = ACTIONS(1400),
- [anon_sym_LPAREN] = ACTIONS(815),
- [anon_sym_await] = ACTIONS(1402),
- [anon_sym_yield] = ACTIONS(1404),
- [anon_sym_LBRACK] = ACTIONS(849),
- [sym_glimmer_opening_tag] = ACTIONS(148),
- [anon_sym_DQUOTE] = ACTIONS(150),
- [anon_sym_SQUOTE] = ACTIONS(152),
- [anon_sym_class] = ACTIONS(154),
- [anon_sym_async] = ACTIONS(1406),
- [anon_sym_function] = ACTIONS(158),
- [anon_sym_new] = ACTIONS(1490),
- [anon_sym_using] = ACTIONS(1410),
- [anon_sym_PLUS] = ACTIONS(1416),
- [anon_sym_DASH] = ACTIONS(1416),
- [anon_sym_SLASH] = ACTIONS(970),
- [anon_sym_LT] = ACTIONS(181),
- [anon_sym_TILDE] = ACTIONS(1400),
- [anon_sym_void] = ACTIONS(1416),
- [anon_sym_delete] = ACTIONS(1416),
- [anon_sym_PLUS_PLUS] = ACTIONS(1418),
- [anon_sym_DASH_DASH] = ACTIONS(1418),
- [sym_comment] = ACTIONS(5),
- [anon_sym_BQUOTE] = ACTIONS(825),
- [sym_number] = ACTIONS(787),
- [sym_private_property_identifier] = ACTIONS(1420),
- [sym_this] = ACTIONS(200),
- [sym_super] = ACTIONS(200),
- [sym_true] = ACTIONS(200),
- [sym_false] = ACTIONS(200),
- [sym_null] = ACTIONS(200),
- [sym_undefined] = ACTIONS(1492),
- [anon_sym_AT] = ACTIONS(99),
- [anon_sym_static] = ACTIONS(1394),
- [anon_sym_readonly] = ACTIONS(1394),
- [anon_sym_get] = ACTIONS(1394),
- [anon_sym_set] = ACTIONS(1394),
- [anon_sym_declare] = ACTIONS(1394),
- [anon_sym_public] = ACTIONS(1394),
- [anon_sym_private] = ACTIONS(1394),
- [anon_sym_protected] = ACTIONS(1394),
- [anon_sym_override] = ACTIONS(1394),
- [anon_sym_module] = ACTIONS(1394),
- [anon_sym_any] = ACTIONS(1394),
- [anon_sym_number] = ACTIONS(1394),
- [anon_sym_boolean] = ACTIONS(1394),
- [anon_sym_string] = ACTIONS(1394),
- [anon_sym_symbol] = ACTIONS(1394),
- [anon_sym_object] = ACTIONS(1394),
- [sym_html_comment] = ACTIONS(5),
- },
- [551] = {
- [sym_import] = STATE(3334),
- [sym_parenthesized_expression] = STATE(1345),
- [sym_expression] = STATE(2358),
- [sym_primary_expression] = STATE(1468),
- [sym_yield_expression] = STATE(1634),
- [sym_object] = STATE(1650),
- [sym_object_pattern] = STATE(5872),
- [sym_array] = STATE(1650),
- [sym_array_pattern] = STATE(5872),
- [sym_glimmer_template] = STATE(1634),
- [sym_jsx_element] = STATE(1634),
- [sym_jsx_opening_element] = STATE(3026),
- [sym_jsx_self_closing_element] = STATE(1634),
- [sym_class] = STATE(1650),
- [sym_function_expression] = STATE(1650),
- [sym_generator_function] = STATE(1650),
- [sym_arrow_function] = STATE(1650),
- [sym__call_signature] = STATE(5904),
- [sym_call_expression] = STATE(1650),
- [sym_new_expression] = STATE(1634),
- [sym_await_expression] = STATE(1634),
- [sym_member_expression] = STATE(1345),
- [sym_subscript_expression] = STATE(1345),
- [sym_assignment_expression] = STATE(1634),
- [sym__augmented_assignment_lhs] = STATE(2898),
- [sym_augmented_assignment_expression] = STATE(1634),
- [sym__destructuring_pattern] = STATE(5872),
- [sym_ternary_expression] = STATE(1634),
- [sym_binary_expression] = STATE(1634),
- [sym_unary_expression] = STATE(1634),
- [sym_update_expression] = STATE(1634),
- [sym_string] = STATE(1650),
- [sym_template_string] = STATE(1650),
- [sym_regex] = STATE(1650),
- [sym_meta_property] = STATE(1650),
- [sym_decorator] = STATE(1244),
- [sym_formal_parameters] = STATE(3742),
- [sym_non_null_expression] = STATE(1345),
- [sym_as_expression] = STATE(1634),
- [sym_satisfies_expression] = STATE(1634),
- [sym_instantiation_expression] = STATE(1634),
- [sym_internal_module] = STATE(1634),
- [sym_type_parameters] = STATE(5349),
- [aux_sym_export_statement_repeat1] = STATE(4458),
- [sym_identifier] = ACTIONS(1486),
- [anon_sym_export] = ACTIONS(1394),
- [anon_sym_type] = ACTIONS(1394),
- [anon_sym_namespace] = ACTIONS(1396),
- [anon_sym_LBRACE] = ACTIONS(845),
- [anon_sym_typeof] = ACTIONS(1416),
- [anon_sym_import] = ACTIONS(133),
- [anon_sym_let] = ACTIONS(1394),
- [anon_sym_BANG] = ACTIONS(1400),
- [anon_sym_LPAREN] = ACTIONS(815),
- [anon_sym_await] = ACTIONS(1402),
- [anon_sym_yield] = ACTIONS(1404),
- [anon_sym_LBRACK] = ACTIONS(849),
- [sym_glimmer_opening_tag] = ACTIONS(148),
- [anon_sym_DQUOTE] = ACTIONS(150),
- [anon_sym_SQUOTE] = ACTIONS(152),
- [anon_sym_class] = ACTIONS(154),
- [anon_sym_async] = ACTIONS(1406),
- [anon_sym_function] = ACTIONS(158),
- [anon_sym_new] = ACTIONS(1490),
- [anon_sym_using] = ACTIONS(1410),
- [anon_sym_PLUS] = ACTIONS(1416),
- [anon_sym_DASH] = ACTIONS(1416),
- [anon_sym_SLASH] = ACTIONS(970),
- [anon_sym_LT] = ACTIONS(181),
- [anon_sym_TILDE] = ACTIONS(1400),
- [anon_sym_void] = ACTIONS(1416),
- [anon_sym_delete] = ACTIONS(1416),
- [anon_sym_PLUS_PLUS] = ACTIONS(1418),
- [anon_sym_DASH_DASH] = ACTIONS(1418),
- [sym_comment] = ACTIONS(5),
- [anon_sym_BQUOTE] = ACTIONS(825),
- [sym_number] = ACTIONS(787),
- [sym_private_property_identifier] = ACTIONS(1420),
- [sym_this] = ACTIONS(200),
- [sym_super] = ACTIONS(200),
- [sym_true] = ACTIONS(200),
- [sym_false] = ACTIONS(200),
- [sym_null] = ACTIONS(200),
- [sym_undefined] = ACTIONS(1492),
- [anon_sym_AT] = ACTIONS(99),
- [anon_sym_static] = ACTIONS(1394),
- [anon_sym_readonly] = ACTIONS(1394),
- [anon_sym_get] = ACTIONS(1394),
- [anon_sym_set] = ACTIONS(1394),
- [anon_sym_declare] = ACTIONS(1394),
- [anon_sym_public] = ACTIONS(1394),
- [anon_sym_private] = ACTIONS(1394),
- [anon_sym_protected] = ACTIONS(1394),
- [anon_sym_override] = ACTIONS(1394),
- [anon_sym_module] = ACTIONS(1394),
- [anon_sym_any] = ACTIONS(1394),
- [anon_sym_number] = ACTIONS(1394),
- [anon_sym_boolean] = ACTIONS(1394),
- [anon_sym_string] = ACTIONS(1394),
- [anon_sym_symbol] = ACTIONS(1394),
- [anon_sym_object] = ACTIONS(1394),
- [sym_html_comment] = ACTIONS(5),
- },
- [552] = {
- [sym_import] = STATE(3334),
- [sym_parenthesized_expression] = STATE(1345),
- [sym_expression] = STATE(2359),
- [sym_primary_expression] = STATE(1468),
- [sym_yield_expression] = STATE(1634),
- [sym_object] = STATE(1650),
- [sym_object_pattern] = STATE(5872),
- [sym_array] = STATE(1650),
- [sym_array_pattern] = STATE(5872),
- [sym_glimmer_template] = STATE(1634),
- [sym_jsx_element] = STATE(1634),
- [sym_jsx_opening_element] = STATE(3026),
- [sym_jsx_self_closing_element] = STATE(1634),
- [sym_class] = STATE(1650),
- [sym_function_expression] = STATE(1650),
- [sym_generator_function] = STATE(1650),
- [sym_arrow_function] = STATE(1650),
- [sym__call_signature] = STATE(5904),
- [sym_call_expression] = STATE(1650),
- [sym_new_expression] = STATE(1634),
- [sym_await_expression] = STATE(1634),
- [sym_member_expression] = STATE(1345),
- [sym_subscript_expression] = STATE(1345),
- [sym_assignment_expression] = STATE(1634),
- [sym__augmented_assignment_lhs] = STATE(2898),
- [sym_augmented_assignment_expression] = STATE(1634),
- [sym__destructuring_pattern] = STATE(5872),
- [sym_ternary_expression] = STATE(1634),
- [sym_binary_expression] = STATE(1634),
- [sym_unary_expression] = STATE(1634),
- [sym_update_expression] = STATE(1634),
- [sym_string] = STATE(1650),
- [sym_template_string] = STATE(1650),
- [sym_regex] = STATE(1650),
- [sym_meta_property] = STATE(1650),
- [sym_decorator] = STATE(1244),
- [sym_formal_parameters] = STATE(3742),
- [sym_non_null_expression] = STATE(1345),
- [sym_as_expression] = STATE(1634),
- [sym_satisfies_expression] = STATE(1634),
- [sym_instantiation_expression] = STATE(1634),
- [sym_internal_module] = STATE(1634),
- [sym_type_parameters] = STATE(5349),
- [aux_sym_export_statement_repeat1] = STATE(4458),
- [sym_identifier] = ACTIONS(1486),
- [anon_sym_export] = ACTIONS(1394),
- [anon_sym_type] = ACTIONS(1394),
- [anon_sym_namespace] = ACTIONS(1396),
- [anon_sym_LBRACE] = ACTIONS(845),
- [anon_sym_typeof] = ACTIONS(1416),
- [anon_sym_import] = ACTIONS(133),
- [anon_sym_let] = ACTIONS(1394),
- [anon_sym_BANG] = ACTIONS(1400),
- [anon_sym_LPAREN] = ACTIONS(815),
- [anon_sym_await] = ACTIONS(1402),
- [anon_sym_yield] = ACTIONS(1404),
- [anon_sym_LBRACK] = ACTIONS(849),
- [sym_glimmer_opening_tag] = ACTIONS(148),
- [anon_sym_DQUOTE] = ACTIONS(150),
- [anon_sym_SQUOTE] = ACTIONS(152),
- [anon_sym_class] = ACTIONS(154),
- [anon_sym_async] = ACTIONS(1406),
- [anon_sym_function] = ACTIONS(158),
- [anon_sym_new] = ACTIONS(1490),
- [anon_sym_using] = ACTIONS(1410),
- [anon_sym_PLUS] = ACTIONS(1416),
- [anon_sym_DASH] = ACTIONS(1416),
- [anon_sym_SLASH] = ACTIONS(970),
- [anon_sym_LT] = ACTIONS(181),
- [anon_sym_TILDE] = ACTIONS(1400),
- [anon_sym_void] = ACTIONS(1416),
- [anon_sym_delete] = ACTIONS(1416),
- [anon_sym_PLUS_PLUS] = ACTIONS(1418),
- [anon_sym_DASH_DASH] = ACTIONS(1418),
- [sym_comment] = ACTIONS(5),
- [anon_sym_BQUOTE] = ACTIONS(825),
- [sym_number] = ACTIONS(787),
- [sym_private_property_identifier] = ACTIONS(1420),
- [sym_this] = ACTIONS(200),
- [sym_super] = ACTIONS(200),
- [sym_true] = ACTIONS(200),
- [sym_false] = ACTIONS(200),
- [sym_null] = ACTIONS(200),
- [sym_undefined] = ACTIONS(1492),
- [anon_sym_AT] = ACTIONS(99),
- [anon_sym_static] = ACTIONS(1394),
- [anon_sym_readonly] = ACTIONS(1394),
- [anon_sym_get] = ACTIONS(1394),
- [anon_sym_set] = ACTIONS(1394),
- [anon_sym_declare] = ACTIONS(1394),
- [anon_sym_public] = ACTIONS(1394),
- [anon_sym_private] = ACTIONS(1394),
- [anon_sym_protected] = ACTIONS(1394),
- [anon_sym_override] = ACTIONS(1394),
- [anon_sym_module] = ACTIONS(1394),
- [anon_sym_any] = ACTIONS(1394),
- [anon_sym_number] = ACTIONS(1394),
- [anon_sym_boolean] = ACTIONS(1394),
- [anon_sym_string] = ACTIONS(1394),
- [anon_sym_symbol] = ACTIONS(1394),
- [anon_sym_object] = ACTIONS(1394),
- [sym_html_comment] = ACTIONS(5),
- },
- [553] = {
- [sym_import] = STATE(3334),
- [sym_parenthesized_expression] = STATE(1345),
- [sym_expression] = STATE(2360),
- [sym_primary_expression] = STATE(1468),
- [sym_yield_expression] = STATE(1634),
- [sym_object] = STATE(1650),
- [sym_object_pattern] = STATE(5872),
- [sym_array] = STATE(1650),
- [sym_array_pattern] = STATE(5872),
- [sym_glimmer_template] = STATE(1634),
- [sym_jsx_element] = STATE(1634),
- [sym_jsx_opening_element] = STATE(3026),
- [sym_jsx_self_closing_element] = STATE(1634),
- [sym_class] = STATE(1650),
- [sym_function_expression] = STATE(1650),
- [sym_generator_function] = STATE(1650),
- [sym_arrow_function] = STATE(1650),
- [sym__call_signature] = STATE(5904),
- [sym_call_expression] = STATE(1650),
- [sym_new_expression] = STATE(1634),
- [sym_await_expression] = STATE(1634),
- [sym_member_expression] = STATE(1345),
- [sym_subscript_expression] = STATE(1345),
- [sym_assignment_expression] = STATE(1634),
- [sym__augmented_assignment_lhs] = STATE(2898),
- [sym_augmented_assignment_expression] = STATE(1634),
- [sym__destructuring_pattern] = STATE(5872),
- [sym_ternary_expression] = STATE(1634),
- [sym_binary_expression] = STATE(1634),
- [sym_unary_expression] = STATE(1634),
- [sym_update_expression] = STATE(1634),
- [sym_string] = STATE(1650),
- [sym_template_string] = STATE(1650),
- [sym_regex] = STATE(1650),
- [sym_meta_property] = STATE(1650),
- [sym_decorator] = STATE(1244),
- [sym_formal_parameters] = STATE(3742),
- [sym_non_null_expression] = STATE(1345),
- [sym_as_expression] = STATE(1634),
- [sym_satisfies_expression] = STATE(1634),
- [sym_instantiation_expression] = STATE(1634),
- [sym_internal_module] = STATE(1634),
- [sym_type_parameters] = STATE(5349),
- [aux_sym_export_statement_repeat1] = STATE(4458),
- [sym_identifier] = ACTIONS(1486),
- [anon_sym_export] = ACTIONS(1394),
- [anon_sym_type] = ACTIONS(1394),
- [anon_sym_namespace] = ACTIONS(1396),
- [anon_sym_LBRACE] = ACTIONS(845),
- [anon_sym_typeof] = ACTIONS(1416),
- [anon_sym_import] = ACTIONS(133),
- [anon_sym_let] = ACTIONS(1394),
- [anon_sym_BANG] = ACTIONS(1400),
- [anon_sym_LPAREN] = ACTIONS(815),
- [anon_sym_await] = ACTIONS(1402),
- [anon_sym_yield] = ACTIONS(1404),
- [anon_sym_LBRACK] = ACTIONS(849),
- [sym_glimmer_opening_tag] = ACTIONS(148),
- [anon_sym_DQUOTE] = ACTIONS(150),
- [anon_sym_SQUOTE] = ACTIONS(152),
- [anon_sym_class] = ACTIONS(154),
- [anon_sym_async] = ACTIONS(1406),
- [anon_sym_function] = ACTIONS(158),
- [anon_sym_new] = ACTIONS(1490),
- [anon_sym_using] = ACTIONS(1410),
- [anon_sym_PLUS] = ACTIONS(1416),
- [anon_sym_DASH] = ACTIONS(1416),
- [anon_sym_SLASH] = ACTIONS(970),
- [anon_sym_LT] = ACTIONS(181),
- [anon_sym_TILDE] = ACTIONS(1400),
- [anon_sym_void] = ACTIONS(1416),
- [anon_sym_delete] = ACTIONS(1416),
- [anon_sym_PLUS_PLUS] = ACTIONS(1418),
- [anon_sym_DASH_DASH] = ACTIONS(1418),
- [sym_comment] = ACTIONS(5),
- [anon_sym_BQUOTE] = ACTIONS(825),
- [sym_number] = ACTIONS(787),
- [sym_private_property_identifier] = ACTIONS(1420),
- [sym_this] = ACTIONS(200),
- [sym_super] = ACTIONS(200),
- [sym_true] = ACTIONS(200),
- [sym_false] = ACTIONS(200),
- [sym_null] = ACTIONS(200),
- [sym_undefined] = ACTIONS(1492),
- [anon_sym_AT] = ACTIONS(99),
- [anon_sym_static] = ACTIONS(1394),
- [anon_sym_readonly] = ACTIONS(1394),
- [anon_sym_get] = ACTIONS(1394),
- [anon_sym_set] = ACTIONS(1394),
- [anon_sym_declare] = ACTIONS(1394),
- [anon_sym_public] = ACTIONS(1394),
- [anon_sym_private] = ACTIONS(1394),
- [anon_sym_protected] = ACTIONS(1394),
- [anon_sym_override] = ACTIONS(1394),
- [anon_sym_module] = ACTIONS(1394),
- [anon_sym_any] = ACTIONS(1394),
- [anon_sym_number] = ACTIONS(1394),
- [anon_sym_boolean] = ACTIONS(1394),
- [anon_sym_string] = ACTIONS(1394),
- [anon_sym_symbol] = ACTIONS(1394),
- [anon_sym_object] = ACTIONS(1394),
- [sym_html_comment] = ACTIONS(5),
- },
- [554] = {
- [sym_import] = STATE(3334),
- [sym_parenthesized_expression] = STATE(1345),
- [sym_expression] = STATE(2361),
- [sym_primary_expression] = STATE(1468),
- [sym_yield_expression] = STATE(1634),
- [sym_object] = STATE(1650),
- [sym_object_pattern] = STATE(5872),
- [sym_array] = STATE(1650),
- [sym_array_pattern] = STATE(5872),
- [sym_glimmer_template] = STATE(1634),
- [sym_jsx_element] = STATE(1634),
- [sym_jsx_opening_element] = STATE(3026),
- [sym_jsx_self_closing_element] = STATE(1634),
- [sym_class] = STATE(1650),
- [sym_function_expression] = STATE(1650),
- [sym_generator_function] = STATE(1650),
- [sym_arrow_function] = STATE(1650),
- [sym__call_signature] = STATE(5904),
- [sym_call_expression] = STATE(1650),
- [sym_new_expression] = STATE(1634),
- [sym_await_expression] = STATE(1634),
- [sym_member_expression] = STATE(1345),
- [sym_subscript_expression] = STATE(1345),
- [sym_assignment_expression] = STATE(1634),
- [sym__augmented_assignment_lhs] = STATE(2898),
- [sym_augmented_assignment_expression] = STATE(1634),
- [sym__destructuring_pattern] = STATE(5872),
- [sym_ternary_expression] = STATE(1634),
- [sym_binary_expression] = STATE(1634),
- [sym_unary_expression] = STATE(1634),
- [sym_update_expression] = STATE(1634),
- [sym_string] = STATE(1650),
- [sym_template_string] = STATE(1650),
- [sym_regex] = STATE(1650),
- [sym_meta_property] = STATE(1650),
- [sym_decorator] = STATE(1244),
- [sym_formal_parameters] = STATE(3742),
- [sym_non_null_expression] = STATE(1345),
- [sym_as_expression] = STATE(1634),
- [sym_satisfies_expression] = STATE(1634),
- [sym_instantiation_expression] = STATE(1634),
- [sym_internal_module] = STATE(1634),
- [sym_type_parameters] = STATE(5349),
- [aux_sym_export_statement_repeat1] = STATE(4458),
- [sym_identifier] = ACTIONS(1486),
- [anon_sym_export] = ACTIONS(1394),
- [anon_sym_type] = ACTIONS(1394),
- [anon_sym_namespace] = ACTIONS(1396),
- [anon_sym_LBRACE] = ACTIONS(845),
- [anon_sym_typeof] = ACTIONS(1416),
- [anon_sym_import] = ACTIONS(133),
- [anon_sym_let] = ACTIONS(1394),
- [anon_sym_BANG] = ACTIONS(1400),
- [anon_sym_LPAREN] = ACTIONS(815),
- [anon_sym_await] = ACTIONS(1402),
- [anon_sym_yield] = ACTIONS(1404),
- [anon_sym_LBRACK] = ACTIONS(849),
- [sym_glimmer_opening_tag] = ACTIONS(148),
- [anon_sym_DQUOTE] = ACTIONS(150),
- [anon_sym_SQUOTE] = ACTIONS(152),
- [anon_sym_class] = ACTIONS(154),
- [anon_sym_async] = ACTIONS(1406),
- [anon_sym_function] = ACTIONS(158),
- [anon_sym_new] = ACTIONS(1490),
- [anon_sym_using] = ACTIONS(1410),
- [anon_sym_PLUS] = ACTIONS(1416),
- [anon_sym_DASH] = ACTIONS(1416),
- [anon_sym_SLASH] = ACTIONS(970),
- [anon_sym_LT] = ACTIONS(181),
- [anon_sym_TILDE] = ACTIONS(1400),
- [anon_sym_void] = ACTIONS(1416),
- [anon_sym_delete] = ACTIONS(1416),
- [anon_sym_PLUS_PLUS] = ACTIONS(1418),
- [anon_sym_DASH_DASH] = ACTIONS(1418),
- [sym_comment] = ACTIONS(5),
- [anon_sym_BQUOTE] = ACTIONS(825),
- [sym_number] = ACTIONS(787),
- [sym_private_property_identifier] = ACTIONS(1420),
- [sym_this] = ACTIONS(200),
- [sym_super] = ACTIONS(200),
- [sym_true] = ACTIONS(200),
- [sym_false] = ACTIONS(200),
- [sym_null] = ACTIONS(200),
- [sym_undefined] = ACTIONS(1492),
- [anon_sym_AT] = ACTIONS(99),
- [anon_sym_static] = ACTIONS(1394),
- [anon_sym_readonly] = ACTIONS(1394),
- [anon_sym_get] = ACTIONS(1394),
- [anon_sym_set] = ACTIONS(1394),
- [anon_sym_declare] = ACTIONS(1394),
- [anon_sym_public] = ACTIONS(1394),
- [anon_sym_private] = ACTIONS(1394),
- [anon_sym_protected] = ACTIONS(1394),
- [anon_sym_override] = ACTIONS(1394),
- [anon_sym_module] = ACTIONS(1394),
- [anon_sym_any] = ACTIONS(1394),
- [anon_sym_number] = ACTIONS(1394),
- [anon_sym_boolean] = ACTIONS(1394),
- [anon_sym_string] = ACTIONS(1394),
- [anon_sym_symbol] = ACTIONS(1394),
- [anon_sym_object] = ACTIONS(1394),
- [sym_html_comment] = ACTIONS(5),
- },
- [555] = {
- [sym_import] = STATE(3334),
- [sym_parenthesized_expression] = STATE(1345),
- [sym_expression] = STATE(2362),
- [sym_primary_expression] = STATE(1468),
- [sym_yield_expression] = STATE(1634),
- [sym_object] = STATE(1650),
- [sym_object_pattern] = STATE(5872),
- [sym_array] = STATE(1650),
- [sym_array_pattern] = STATE(5872),
- [sym_glimmer_template] = STATE(1634),
- [sym_jsx_element] = STATE(1634),
- [sym_jsx_opening_element] = STATE(3026),
- [sym_jsx_self_closing_element] = STATE(1634),
- [sym_class] = STATE(1650),
- [sym_function_expression] = STATE(1650),
- [sym_generator_function] = STATE(1650),
- [sym_arrow_function] = STATE(1650),
- [sym__call_signature] = STATE(5904),
- [sym_call_expression] = STATE(1650),
- [sym_new_expression] = STATE(1634),
- [sym_await_expression] = STATE(1634),
- [sym_member_expression] = STATE(1345),
- [sym_subscript_expression] = STATE(1345),
- [sym_assignment_expression] = STATE(1634),
- [sym__augmented_assignment_lhs] = STATE(2898),
- [sym_augmented_assignment_expression] = STATE(1634),
- [sym__destructuring_pattern] = STATE(5872),
- [sym_ternary_expression] = STATE(1634),
- [sym_binary_expression] = STATE(1634),
- [sym_unary_expression] = STATE(1634),
- [sym_update_expression] = STATE(1634),
- [sym_string] = STATE(1650),
- [sym_template_string] = STATE(1650),
- [sym_regex] = STATE(1650),
- [sym_meta_property] = STATE(1650),
- [sym_decorator] = STATE(1244),
- [sym_formal_parameters] = STATE(3742),
- [sym_non_null_expression] = STATE(1345),
- [sym_as_expression] = STATE(1634),
- [sym_satisfies_expression] = STATE(1634),
- [sym_instantiation_expression] = STATE(1634),
- [sym_internal_module] = STATE(1634),
- [sym_type_parameters] = STATE(5349),
- [aux_sym_export_statement_repeat1] = STATE(4458),
- [sym_identifier] = ACTIONS(1486),
- [anon_sym_export] = ACTIONS(1394),
- [anon_sym_type] = ACTIONS(1394),
- [anon_sym_namespace] = ACTIONS(1396),
- [anon_sym_LBRACE] = ACTIONS(845),
- [anon_sym_typeof] = ACTIONS(1416),
- [anon_sym_import] = ACTIONS(133),
- [anon_sym_let] = ACTIONS(1394),
- [anon_sym_BANG] = ACTIONS(1400),
- [anon_sym_LPAREN] = ACTIONS(815),
- [anon_sym_await] = ACTIONS(1402),
- [anon_sym_yield] = ACTIONS(1404),
- [anon_sym_LBRACK] = ACTIONS(849),
- [sym_glimmer_opening_tag] = ACTIONS(148),
- [anon_sym_DQUOTE] = ACTIONS(150),
- [anon_sym_SQUOTE] = ACTIONS(152),
- [anon_sym_class] = ACTIONS(154),
- [anon_sym_async] = ACTIONS(1406),
- [anon_sym_function] = ACTIONS(158),
- [anon_sym_new] = ACTIONS(1490),
- [anon_sym_using] = ACTIONS(1410),
- [anon_sym_PLUS] = ACTIONS(1416),
- [anon_sym_DASH] = ACTIONS(1416),
- [anon_sym_SLASH] = ACTIONS(970),
- [anon_sym_LT] = ACTIONS(181),
- [anon_sym_TILDE] = ACTIONS(1400),
- [anon_sym_void] = ACTIONS(1416),
- [anon_sym_delete] = ACTIONS(1416),
- [anon_sym_PLUS_PLUS] = ACTIONS(1418),
- [anon_sym_DASH_DASH] = ACTIONS(1418),
- [sym_comment] = ACTIONS(5),
- [anon_sym_BQUOTE] = ACTIONS(825),
- [sym_number] = ACTIONS(787),
- [sym_private_property_identifier] = ACTIONS(1420),
- [sym_this] = ACTIONS(200),
- [sym_super] = ACTIONS(200),
- [sym_true] = ACTIONS(200),
- [sym_false] = ACTIONS(200),
- [sym_null] = ACTIONS(200),
- [sym_undefined] = ACTIONS(1492),
- [anon_sym_AT] = ACTIONS(99),
- [anon_sym_static] = ACTIONS(1394),
- [anon_sym_readonly] = ACTIONS(1394),
- [anon_sym_get] = ACTIONS(1394),
- [anon_sym_set] = ACTIONS(1394),
- [anon_sym_declare] = ACTIONS(1394),
- [anon_sym_public] = ACTIONS(1394),
- [anon_sym_private] = ACTIONS(1394),
- [anon_sym_protected] = ACTIONS(1394),
- [anon_sym_override] = ACTIONS(1394),
- [anon_sym_module] = ACTIONS(1394),
- [anon_sym_any] = ACTIONS(1394),
- [anon_sym_number] = ACTIONS(1394),
- [anon_sym_boolean] = ACTIONS(1394),
- [anon_sym_string] = ACTIONS(1394),
- [anon_sym_symbol] = ACTIONS(1394),
- [anon_sym_object] = ACTIONS(1394),
- [sym_html_comment] = ACTIONS(5),
- },
- [556] = {
- [sym_import] = STATE(3334),
- [sym_parenthesized_expression] = STATE(1345),
- [sym_expression] = STATE(2364),
- [sym_primary_expression] = STATE(1468),
- [sym_yield_expression] = STATE(1634),
- [sym_object] = STATE(1650),
- [sym_object_pattern] = STATE(5872),
- [sym_array] = STATE(1650),
- [sym_array_pattern] = STATE(5872),
- [sym_glimmer_template] = STATE(1634),
- [sym_jsx_element] = STATE(1634),
- [sym_jsx_opening_element] = STATE(3026),
- [sym_jsx_self_closing_element] = STATE(1634),
- [sym_class] = STATE(1650),
- [sym_function_expression] = STATE(1650),
- [sym_generator_function] = STATE(1650),
- [sym_arrow_function] = STATE(1650),
- [sym__call_signature] = STATE(5904),
- [sym_call_expression] = STATE(1650),
- [sym_new_expression] = STATE(1634),
- [sym_await_expression] = STATE(1634),
- [sym_member_expression] = STATE(1345),
- [sym_subscript_expression] = STATE(1345),
- [sym_assignment_expression] = STATE(1634),
- [sym__augmented_assignment_lhs] = STATE(2898),
- [sym_augmented_assignment_expression] = STATE(1634),
- [sym__destructuring_pattern] = STATE(5872),
- [sym_ternary_expression] = STATE(1634),
- [sym_binary_expression] = STATE(1634),
- [sym_unary_expression] = STATE(1634),
- [sym_update_expression] = STATE(1634),
- [sym_string] = STATE(1650),
- [sym_template_string] = STATE(1650),
- [sym_regex] = STATE(1650),
- [sym_meta_property] = STATE(1650),
- [sym_decorator] = STATE(1244),
- [sym_formal_parameters] = STATE(3742),
- [sym_non_null_expression] = STATE(1345),
- [sym_as_expression] = STATE(1634),
- [sym_satisfies_expression] = STATE(1634),
- [sym_instantiation_expression] = STATE(1634),
- [sym_internal_module] = STATE(1634),
- [sym_type_parameters] = STATE(5349),
- [aux_sym_export_statement_repeat1] = STATE(4458),
- [sym_identifier] = ACTIONS(1486),
- [anon_sym_export] = ACTIONS(1394),
- [anon_sym_type] = ACTIONS(1394),
- [anon_sym_namespace] = ACTIONS(1396),
- [anon_sym_LBRACE] = ACTIONS(845),
- [anon_sym_typeof] = ACTIONS(1416),
- [anon_sym_import] = ACTIONS(133),
- [anon_sym_let] = ACTIONS(1394),
- [anon_sym_BANG] = ACTIONS(1400),
- [anon_sym_LPAREN] = ACTIONS(815),
- [anon_sym_await] = ACTIONS(1402),
- [anon_sym_yield] = ACTIONS(1404),
- [anon_sym_LBRACK] = ACTIONS(849),
- [sym_glimmer_opening_tag] = ACTIONS(148),
- [anon_sym_DQUOTE] = ACTIONS(150),
- [anon_sym_SQUOTE] = ACTIONS(152),
- [anon_sym_class] = ACTIONS(154),
- [anon_sym_async] = ACTIONS(1406),
- [anon_sym_function] = ACTIONS(158),
- [anon_sym_new] = ACTIONS(1490),
- [anon_sym_using] = ACTIONS(1410),
- [anon_sym_PLUS] = ACTIONS(1416),
- [anon_sym_DASH] = ACTIONS(1416),
- [anon_sym_SLASH] = ACTIONS(970),
- [anon_sym_LT] = ACTIONS(181),
- [anon_sym_TILDE] = ACTIONS(1400),
- [anon_sym_void] = ACTIONS(1416),
- [anon_sym_delete] = ACTIONS(1416),
- [anon_sym_PLUS_PLUS] = ACTIONS(1418),
- [anon_sym_DASH_DASH] = ACTIONS(1418),
- [sym_comment] = ACTIONS(5),
- [anon_sym_BQUOTE] = ACTIONS(825),
- [sym_number] = ACTIONS(787),
- [sym_private_property_identifier] = ACTIONS(1420),
- [sym_this] = ACTIONS(200),
- [sym_super] = ACTIONS(200),
- [sym_true] = ACTIONS(200),
- [sym_false] = ACTIONS(200),
- [sym_null] = ACTIONS(200),
- [sym_undefined] = ACTIONS(1492),
- [anon_sym_AT] = ACTIONS(99),
- [anon_sym_static] = ACTIONS(1394),
- [anon_sym_readonly] = ACTIONS(1394),
- [anon_sym_get] = ACTIONS(1394),
- [anon_sym_set] = ACTIONS(1394),
- [anon_sym_declare] = ACTIONS(1394),
- [anon_sym_public] = ACTIONS(1394),
- [anon_sym_private] = ACTIONS(1394),
- [anon_sym_protected] = ACTIONS(1394),
- [anon_sym_override] = ACTIONS(1394),
- [anon_sym_module] = ACTIONS(1394),
- [anon_sym_any] = ACTIONS(1394),
- [anon_sym_number] = ACTIONS(1394),
- [anon_sym_boolean] = ACTIONS(1394),
- [anon_sym_string] = ACTIONS(1394),
- [anon_sym_symbol] = ACTIONS(1394),
- [anon_sym_object] = ACTIONS(1394),
- [sym_html_comment] = ACTIONS(5),
- },
- [557] = {
- [sym_import] = STATE(3306),
- [sym_parenthesized_expression] = STATE(1294),
- [sym_expression] = STATE(1629),
- [sym_primary_expression] = STATE(1946),
- [sym_yield_expression] = STATE(2234),
- [sym_object] = STATE(2310),
- [sym_object_pattern] = STATE(5667),
- [sym_array] = STATE(2310),
- [sym_array_pattern] = STATE(5667),
- [sym_glimmer_template] = STATE(2234),
- [sym_jsx_element] = STATE(2234),
- [sym_jsx_opening_element] = STATE(3051),
- [sym_jsx_self_closing_element] = STATE(2234),
- [sym_class] = STATE(2310),
- [sym_function_expression] = STATE(2310),
- [sym_generator_function] = STATE(2310),
- [sym_arrow_function] = STATE(2310),
- [sym__call_signature] = STATE(5809),
- [sym_call_expression] = STATE(2310),
- [sym_new_expression] = STATE(2234),
- [sym_await_expression] = STATE(2234),
- [sym_member_expression] = STATE(1294),
- [sym_subscript_expression] = STATE(1294),
- [sym_assignment_expression] = STATE(2234),
- [sym__augmented_assignment_lhs] = STATE(2875),
- [sym_augmented_assignment_expression] = STATE(2234),
- [sym__destructuring_pattern] = STATE(5667),
- [sym_ternary_expression] = STATE(2234),
- [sym_binary_expression] = STATE(2234),
- [sym_unary_expression] = STATE(2234),
- [sym_update_expression] = STATE(2234),
- [sym_string] = STATE(2310),
- [sym_template_string] = STATE(2310),
- [sym_regex] = STATE(2310),
- [sym_meta_property] = STATE(2310),
- [sym_decorator] = STATE(1244),
- [sym_formal_parameters] = STATE(3742),
- [sym_non_null_expression] = STATE(1294),
- [sym_as_expression] = STATE(2234),
- [sym_satisfies_expression] = STATE(2234),
- [sym_instantiation_expression] = STATE(2234),
- [sym_internal_module] = STATE(2234),
- [sym_type_parameters] = STATE(5349),
- [aux_sym_export_statement_repeat1] = STATE(4499),
- [sym_identifier] = ACTIONS(1440),
- [anon_sym_export] = ACTIONS(1372),
- [anon_sym_type] = ACTIONS(1372),
- [anon_sym_namespace] = ACTIONS(1374),
- [anon_sym_LBRACE] = ACTIONS(700),
- [anon_sym_typeof] = ACTIONS(21),
- [anon_sym_import] = ACTIONS(133),
- [anon_sym_let] = ACTIONS(1372),
- [anon_sym_BANG] = ACTIONS(33),
- [anon_sym_LPAREN] = ACTIONS(41),
- [anon_sym_await] = ACTIONS(43),
- [anon_sym_yield] = ACTIONS(63),
- [anon_sym_LBRACK] = ACTIONS(65),
- [sym_glimmer_opening_tag] = ACTIONS(67),
- [anon_sym_DQUOTE] = ACTIONS(69),
- [anon_sym_SQUOTE] = ACTIONS(71),
- [anon_sym_class] = ACTIONS(709),
- [anon_sym_async] = ACTIONS(1378),
- [anon_sym_function] = ACTIONS(713),
- [anon_sym_new] = ACTIONS(1444),
- [anon_sym_using] = ACTIONS(81),
- [anon_sym_PLUS] = ACTIONS(21),
- [anon_sym_DASH] = ACTIONS(21),
- [anon_sym_SLASH] = ACTIONS(83),
- [anon_sym_LT] = ACTIONS(85),
- [anon_sym_TILDE] = ACTIONS(33),
- [anon_sym_void] = ACTIONS(21),
- [anon_sym_delete] = ACTIONS(21),
- [anon_sym_PLUS_PLUS] = ACTIONS(87),
- [anon_sym_DASH_DASH] = ACTIONS(87),
- [sym_comment] = ACTIONS(5),
- [anon_sym_BQUOTE] = ACTIONS(89),
- [sym_number] = ACTIONS(91),
- [sym_private_property_identifier] = ACTIONS(93),
- [sym_this] = ACTIONS(95),
- [sym_super] = ACTIONS(95),
- [sym_true] = ACTIONS(95),
- [sym_false] = ACTIONS(95),
- [sym_null] = ACTIONS(95),
- [sym_undefined] = ACTIONS(97),
- [anon_sym_AT] = ACTIONS(99),
- [anon_sym_static] = ACTIONS(1372),
- [anon_sym_readonly] = ACTIONS(1372),
- [anon_sym_get] = ACTIONS(1372),
- [anon_sym_set] = ACTIONS(1372),
- [anon_sym_declare] = ACTIONS(1372),
- [anon_sym_public] = ACTIONS(1372),
- [anon_sym_private] = ACTIONS(1372),
- [anon_sym_protected] = ACTIONS(1372),
- [anon_sym_override] = ACTIONS(1372),
- [anon_sym_module] = ACTIONS(1372),
- [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_object] = ACTIONS(1372),
- [sym_html_comment] = ACTIONS(5),
- },
- [558] = {
- [sym_import] = STATE(3334),
- [sym_parenthesized_expression] = STATE(1345),
- [sym_expression] = STATE(2368),
- [sym_primary_expression] = STATE(1468),
- [sym_yield_expression] = STATE(1634),
- [sym_object] = STATE(1650),
- [sym_object_pattern] = STATE(5872),
- [sym_array] = STATE(1650),
- [sym_array_pattern] = STATE(5872),
- [sym_glimmer_template] = STATE(1634),
- [sym_jsx_element] = STATE(1634),
- [sym_jsx_opening_element] = STATE(3026),
- [sym_jsx_self_closing_element] = STATE(1634),
- [sym_class] = STATE(1650),
- [sym_function_expression] = STATE(1650),
- [sym_generator_function] = STATE(1650),
- [sym_arrow_function] = STATE(1650),
- [sym__call_signature] = STATE(5904),
- [sym_call_expression] = STATE(1650),
- [sym_new_expression] = STATE(1634),
- [sym_await_expression] = STATE(1634),
- [sym_member_expression] = STATE(1345),
- [sym_subscript_expression] = STATE(1345),
- [sym_assignment_expression] = STATE(1634),
- [sym__augmented_assignment_lhs] = STATE(2898),
- [sym_augmented_assignment_expression] = STATE(1634),
- [sym__destructuring_pattern] = STATE(5872),
- [sym_ternary_expression] = STATE(1634),
- [sym_binary_expression] = STATE(1634),
- [sym_unary_expression] = STATE(1634),
- [sym_update_expression] = STATE(1634),
- [sym_string] = STATE(1650),
- [sym_template_string] = STATE(1650),
- [sym_regex] = STATE(1650),
- [sym_meta_property] = STATE(1650),
- [sym_decorator] = STATE(1244),
- [sym_formal_parameters] = STATE(3742),
- [sym_non_null_expression] = STATE(1345),
- [sym_as_expression] = STATE(1634),
- [sym_satisfies_expression] = STATE(1634),
- [sym_instantiation_expression] = STATE(1634),
- [sym_internal_module] = STATE(1634),
- [sym_type_parameters] = STATE(5349),
- [aux_sym_export_statement_repeat1] = STATE(4458),
- [sym_identifier] = ACTIONS(1486),
- [anon_sym_export] = ACTIONS(1394),
- [anon_sym_type] = ACTIONS(1394),
- [anon_sym_namespace] = ACTIONS(1396),
- [anon_sym_LBRACE] = ACTIONS(845),
- [anon_sym_typeof] = ACTIONS(1416),
- [anon_sym_import] = ACTIONS(133),
- [anon_sym_let] = ACTIONS(1394),
- [anon_sym_BANG] = ACTIONS(1400),
- [anon_sym_LPAREN] = ACTIONS(815),
- [anon_sym_await] = ACTIONS(1402),
- [anon_sym_yield] = ACTIONS(1404),
- [anon_sym_LBRACK] = ACTIONS(849),
- [sym_glimmer_opening_tag] = ACTIONS(148),
- [anon_sym_DQUOTE] = ACTIONS(150),
- [anon_sym_SQUOTE] = ACTIONS(152),
- [anon_sym_class] = ACTIONS(154),
- [anon_sym_async] = ACTIONS(1406),
- [anon_sym_function] = ACTIONS(158),
- [anon_sym_new] = ACTIONS(1490),
- [anon_sym_using] = ACTIONS(1410),
- [anon_sym_PLUS] = ACTIONS(1416),
- [anon_sym_DASH] = ACTIONS(1416),
- [anon_sym_SLASH] = ACTIONS(970),
- [anon_sym_LT] = ACTIONS(181),
- [anon_sym_TILDE] = ACTIONS(1400),
- [anon_sym_void] = ACTIONS(1416),
- [anon_sym_delete] = ACTIONS(1416),
- [anon_sym_PLUS_PLUS] = ACTIONS(1418),
- [anon_sym_DASH_DASH] = ACTIONS(1418),
- [sym_comment] = ACTIONS(5),
- [anon_sym_BQUOTE] = ACTIONS(825),
- [sym_number] = ACTIONS(787),
- [sym_private_property_identifier] = ACTIONS(1420),
- [sym_this] = ACTIONS(200),
- [sym_super] = ACTIONS(200),
- [sym_true] = ACTIONS(200),
- [sym_false] = ACTIONS(200),
- [sym_null] = ACTIONS(200),
- [sym_undefined] = ACTIONS(1492),
- [anon_sym_AT] = ACTIONS(99),
- [anon_sym_static] = ACTIONS(1394),
- [anon_sym_readonly] = ACTIONS(1394),
- [anon_sym_get] = ACTIONS(1394),
- [anon_sym_set] = ACTIONS(1394),
- [anon_sym_declare] = ACTIONS(1394),
- [anon_sym_public] = ACTIONS(1394),
- [anon_sym_private] = ACTIONS(1394),
- [anon_sym_protected] = ACTIONS(1394),
- [anon_sym_override] = ACTIONS(1394),
- [anon_sym_module] = ACTIONS(1394),
- [anon_sym_any] = ACTIONS(1394),
- [anon_sym_number] = ACTIONS(1394),
- [anon_sym_boolean] = ACTIONS(1394),
- [anon_sym_string] = ACTIONS(1394),
- [anon_sym_symbol] = ACTIONS(1394),
- [anon_sym_object] = ACTIONS(1394),
- [sym_html_comment] = ACTIONS(5),
- },
- [559] = {
- [sym_import] = STATE(3334),
- [sym_parenthesized_expression] = STATE(1345),
- [sym_expression] = STATE(2369),
- [sym_primary_expression] = STATE(1468),
- [sym_yield_expression] = STATE(1634),
- [sym_object] = STATE(1650),
- [sym_object_pattern] = STATE(5872),
- [sym_array] = STATE(1650),
- [sym_array_pattern] = STATE(5872),
- [sym_glimmer_template] = STATE(1634),
- [sym_jsx_element] = STATE(1634),
- [sym_jsx_opening_element] = STATE(3026),
- [sym_jsx_self_closing_element] = STATE(1634),
- [sym_class] = STATE(1650),
- [sym_function_expression] = STATE(1650),
- [sym_generator_function] = STATE(1650),
- [sym_arrow_function] = STATE(1650),
- [sym__call_signature] = STATE(5904),
- [sym_call_expression] = STATE(1650),
- [sym_new_expression] = STATE(1634),
- [sym_await_expression] = STATE(1634),
- [sym_member_expression] = STATE(1345),
- [sym_subscript_expression] = STATE(1345),
- [sym_assignment_expression] = STATE(1634),
- [sym__augmented_assignment_lhs] = STATE(2898),
- [sym_augmented_assignment_expression] = STATE(1634),
- [sym__destructuring_pattern] = STATE(5872),
- [sym_ternary_expression] = STATE(1634),
- [sym_binary_expression] = STATE(1634),
- [sym_unary_expression] = STATE(1634),
- [sym_update_expression] = STATE(1634),
- [sym_string] = STATE(1650),
- [sym_template_string] = STATE(1650),
- [sym_regex] = STATE(1650),
- [sym_meta_property] = STATE(1650),
- [sym_decorator] = STATE(1244),
- [sym_formal_parameters] = STATE(3742),
- [sym_non_null_expression] = STATE(1345),
- [sym_as_expression] = STATE(1634),
- [sym_satisfies_expression] = STATE(1634),
- [sym_instantiation_expression] = STATE(1634),
- [sym_internal_module] = STATE(1634),
- [sym_type_parameters] = STATE(5349),
- [aux_sym_export_statement_repeat1] = STATE(4458),
- [sym_identifier] = ACTIONS(1486),
- [anon_sym_export] = ACTIONS(1394),
- [anon_sym_type] = ACTIONS(1394),
- [anon_sym_namespace] = ACTIONS(1396),
- [anon_sym_LBRACE] = ACTIONS(845),
- [anon_sym_typeof] = ACTIONS(1416),
- [anon_sym_import] = ACTIONS(133),
- [anon_sym_let] = ACTIONS(1394),
- [anon_sym_BANG] = ACTIONS(1400),
- [anon_sym_LPAREN] = ACTIONS(815),
- [anon_sym_await] = ACTIONS(1402),
- [anon_sym_yield] = ACTIONS(1404),
- [anon_sym_LBRACK] = ACTIONS(849),
- [sym_glimmer_opening_tag] = ACTIONS(148),
- [anon_sym_DQUOTE] = ACTIONS(150),
- [anon_sym_SQUOTE] = ACTIONS(152),
- [anon_sym_class] = ACTIONS(154),
- [anon_sym_async] = ACTIONS(1406),
- [anon_sym_function] = ACTIONS(158),
- [anon_sym_new] = ACTIONS(1490),
- [anon_sym_using] = ACTIONS(1410),
- [anon_sym_PLUS] = ACTIONS(1416),
- [anon_sym_DASH] = ACTIONS(1416),
- [anon_sym_SLASH] = ACTIONS(970),
- [anon_sym_LT] = ACTIONS(181),
- [anon_sym_TILDE] = ACTIONS(1400),
- [anon_sym_void] = ACTIONS(1416),
- [anon_sym_delete] = ACTIONS(1416),
- [anon_sym_PLUS_PLUS] = ACTIONS(1418),
- [anon_sym_DASH_DASH] = ACTIONS(1418),
- [sym_comment] = ACTIONS(5),
- [anon_sym_BQUOTE] = ACTIONS(825),
- [sym_number] = ACTIONS(787),
- [sym_private_property_identifier] = ACTIONS(1420),
- [sym_this] = ACTIONS(200),
- [sym_super] = ACTIONS(200),
- [sym_true] = ACTIONS(200),
- [sym_false] = ACTIONS(200),
- [sym_null] = ACTIONS(200),
- [sym_undefined] = ACTIONS(1492),
- [anon_sym_AT] = ACTIONS(99),
- [anon_sym_static] = ACTIONS(1394),
- [anon_sym_readonly] = ACTIONS(1394),
- [anon_sym_get] = ACTIONS(1394),
- [anon_sym_set] = ACTIONS(1394),
- [anon_sym_declare] = ACTIONS(1394),
- [anon_sym_public] = ACTIONS(1394),
- [anon_sym_private] = ACTIONS(1394),
- [anon_sym_protected] = ACTIONS(1394),
- [anon_sym_override] = ACTIONS(1394),
- [anon_sym_module] = ACTIONS(1394),
- [anon_sym_any] = ACTIONS(1394),
- [anon_sym_number] = ACTIONS(1394),
- [anon_sym_boolean] = ACTIONS(1394),
- [anon_sym_string] = ACTIONS(1394),
- [anon_sym_symbol] = ACTIONS(1394),
- [anon_sym_object] = ACTIONS(1394),
- [sym_html_comment] = ACTIONS(5),
- },
- [560] = {
- [sym_import] = STATE(3334),
- [sym_parenthesized_expression] = STATE(1251),
- [sym_expression] = STATE(1544),
- [sym_primary_expression] = STATE(1468),
- [sym_yield_expression] = STATE(1634),
- [sym_object] = STATE(1650),
- [sym_object_pattern] = STATE(5633),
- [sym_array] = STATE(1650),
- [sym_array_pattern] = STATE(5633),
- [sym_glimmer_template] = STATE(1634),
- [sym_jsx_element] = STATE(1634),
- [sym_jsx_opening_element] = STATE(3026),
- [sym_jsx_self_closing_element] = STATE(1634),
- [sym_class] = STATE(1650),
- [sym_function_expression] = STATE(1650),
- [sym_generator_function] = STATE(1650),
- [sym_arrow_function] = STATE(1650),
- [sym__call_signature] = STATE(5828),
- [sym_call_expression] = STATE(1650),
- [sym_new_expression] = STATE(1634),
- [sym_await_expression] = STATE(1634),
- [sym_member_expression] = STATE(1251),
- [sym_subscript_expression] = STATE(1251),
- [sym_assignment_expression] = STATE(1634),
- [sym__augmented_assignment_lhs] = STATE(2900),
- [sym_augmented_assignment_expression] = STATE(1634),
- [sym__destructuring_pattern] = STATE(5633),
- [sym_ternary_expression] = STATE(1634),
- [sym_binary_expression] = STATE(1634),
- [sym_unary_expression] = STATE(1634),
- [sym_update_expression] = STATE(1634),
- [sym_string] = STATE(1650),
- [sym_template_string] = STATE(1650),
- [sym_regex] = STATE(1650),
- [sym_meta_property] = STATE(1650),
- [sym_decorator] = STATE(1244),
- [sym_formal_parameters] = STATE(3742),
- [sym_non_null_expression] = STATE(1251),
- [sym_as_expression] = STATE(1634),
- [sym_satisfies_expression] = STATE(1634),
- [sym_instantiation_expression] = STATE(1634),
- [sym_internal_module] = STATE(1634),
- [sym_type_parameters] = STATE(5349),
- [aux_sym_export_statement_repeat1] = STATE(4458),
- [sym_identifier] = ACTIONS(1428),
- [anon_sym_export] = ACTIONS(1044),
- [anon_sym_type] = ACTIONS(1044),
- [anon_sym_namespace] = ACTIONS(1046),
- [anon_sym_LBRACE] = ACTIONS(813),
- [anon_sym_typeof] = ACTIONS(650),
- [anon_sym_import] = ACTIONS(133),
- [anon_sym_let] = ACTIONS(1044),
- [anon_sym_BANG] = ACTIONS(622),
- [anon_sym_LPAREN] = ACTIONS(815),
- [anon_sym_await] = ACTIONS(624),
- [anon_sym_yield] = ACTIONS(626),
- [anon_sym_LBRACK] = ACTIONS(817),
- [sym_glimmer_opening_tag] = ACTIONS(148),
- [anon_sym_DQUOTE] = ACTIONS(150),
- [anon_sym_SQUOTE] = ACTIONS(152),
- [anon_sym_class] = ACTIONS(154),
- [anon_sym_async] = ACTIONS(1052),
- [anon_sym_function] = ACTIONS(158),
- [anon_sym_new] = ACTIONS(1436),
- [anon_sym_using] = ACTIONS(636),
- [anon_sym_PLUS] = ACTIONS(650),
- [anon_sym_DASH] = ACTIONS(650),
- [anon_sym_SLASH] = ACTIONS(646),
- [anon_sym_LT] = ACTIONS(181),
- [anon_sym_TILDE] = ACTIONS(622),
- [anon_sym_void] = ACTIONS(650),
- [anon_sym_delete] = ACTIONS(650),
- [anon_sym_PLUS_PLUS] = ACTIONS(652),
- [anon_sym_DASH_DASH] = ACTIONS(652),
- [sym_comment] = ACTIONS(5),
- [anon_sym_BQUOTE] = ACTIONS(825),
- [sym_number] = ACTIONS(787),
- [sym_private_property_identifier] = ACTIONS(654),
- [sym_this] = ACTIONS(200),
- [sym_super] = ACTIONS(200),
- [sym_true] = ACTIONS(200),
- [sym_false] = ACTIONS(200),
- [sym_null] = ACTIONS(200),
- [sym_undefined] = ACTIONS(1438),
- [anon_sym_AT] = ACTIONS(99),
- [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_override] = 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_object] = ACTIONS(1044),
- [sym_html_comment] = ACTIONS(5),
- },
- [561] = {
- [sym_import] = STATE(3334),
- [sym_parenthesized_expression] = STATE(1251),
- [sym_expression] = STATE(1547),
- [sym_primary_expression] = STATE(1468),
- [sym_yield_expression] = STATE(1634),
- [sym_object] = STATE(1650),
- [sym_object_pattern] = STATE(5633),
- [sym_array] = STATE(1650),
- [sym_array_pattern] = STATE(5633),
- [sym_glimmer_template] = STATE(1634),
- [sym_jsx_element] = STATE(1634),
- [sym_jsx_opening_element] = STATE(3026),
- [sym_jsx_self_closing_element] = STATE(1634),
- [sym_class] = STATE(1650),
- [sym_function_expression] = STATE(1650),
- [sym_generator_function] = STATE(1650),
- [sym_arrow_function] = STATE(1650),
- [sym__call_signature] = STATE(5828),
- [sym_call_expression] = STATE(1650),
- [sym_new_expression] = STATE(1634),
- [sym_await_expression] = STATE(1634),
- [sym_member_expression] = STATE(1251),
- [sym_subscript_expression] = STATE(1251),
- [sym_assignment_expression] = STATE(1634),
- [sym__augmented_assignment_lhs] = STATE(2900),
- [sym_augmented_assignment_expression] = STATE(1634),
- [sym__destructuring_pattern] = STATE(5633),
- [sym_ternary_expression] = STATE(1634),
- [sym_binary_expression] = STATE(1634),
- [sym_unary_expression] = STATE(1634),
- [sym_update_expression] = STATE(1634),
- [sym_string] = STATE(1650),
- [sym_template_string] = STATE(1650),
- [sym_regex] = STATE(1650),
- [sym_meta_property] = STATE(1650),
- [sym_decorator] = STATE(1244),
- [sym_formal_parameters] = STATE(3742),
- [sym_non_null_expression] = STATE(1251),
- [sym_as_expression] = STATE(1634),
- [sym_satisfies_expression] = STATE(1634),
- [sym_instantiation_expression] = STATE(1634),
- [sym_internal_module] = STATE(1634),
- [sym_type_parameters] = STATE(5349),
- [aux_sym_export_statement_repeat1] = STATE(4458),
- [sym_identifier] = ACTIONS(1428),
- [anon_sym_export] = ACTIONS(1044),
- [anon_sym_type] = ACTIONS(1044),
- [anon_sym_namespace] = ACTIONS(1046),
- [anon_sym_LBRACE] = ACTIONS(813),
- [anon_sym_typeof] = ACTIONS(650),
- [anon_sym_import] = ACTIONS(133),
- [anon_sym_let] = ACTIONS(1044),
- [anon_sym_BANG] = ACTIONS(622),
- [anon_sym_LPAREN] = ACTIONS(815),
- [anon_sym_await] = ACTIONS(624),
- [anon_sym_yield] = ACTIONS(626),
- [anon_sym_LBRACK] = ACTIONS(817),
- [sym_glimmer_opening_tag] = ACTIONS(148),
- [anon_sym_DQUOTE] = ACTIONS(150),
- [anon_sym_SQUOTE] = ACTIONS(152),
- [anon_sym_class] = ACTIONS(154),
- [anon_sym_async] = ACTIONS(1052),
- [anon_sym_function] = ACTIONS(158),
- [anon_sym_new] = ACTIONS(1436),
- [anon_sym_using] = ACTIONS(636),
- [anon_sym_PLUS] = ACTIONS(650),
- [anon_sym_DASH] = ACTIONS(650),
- [anon_sym_SLASH] = ACTIONS(646),
- [anon_sym_LT] = ACTIONS(181),
- [anon_sym_TILDE] = ACTIONS(622),
- [anon_sym_void] = ACTIONS(650),
- [anon_sym_delete] = ACTIONS(650),
- [anon_sym_PLUS_PLUS] = ACTIONS(652),
- [anon_sym_DASH_DASH] = ACTIONS(652),
- [sym_comment] = ACTIONS(5),
- [anon_sym_BQUOTE] = ACTIONS(825),
- [sym_number] = ACTIONS(787),
- [sym_private_property_identifier] = ACTIONS(654),
- [sym_this] = ACTIONS(200),
- [sym_super] = ACTIONS(200),
- [sym_true] = ACTIONS(200),
- [sym_false] = ACTIONS(200),
- [sym_null] = ACTIONS(200),
- [sym_undefined] = ACTIONS(1438),
- [anon_sym_AT] = ACTIONS(99),
- [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_override] = 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_object] = ACTIONS(1044),
- [sym_html_comment] = ACTIONS(5),
- },
- [562] = {
- [sym_import] = STATE(3334),
- [sym_parenthesized_expression] = STATE(1345),
- [sym_expression] = STATE(2373),
- [sym_primary_expression] = STATE(1468),
- [sym_yield_expression] = STATE(1634),
- [sym_object] = STATE(1650),
- [sym_object_pattern] = STATE(5872),
- [sym_array] = STATE(1650),
- [sym_array_pattern] = STATE(5872),
- [sym_glimmer_template] = STATE(1634),
- [sym_jsx_element] = STATE(1634),
- [sym_jsx_opening_element] = STATE(3026),
- [sym_jsx_self_closing_element] = STATE(1634),
- [sym_class] = STATE(1650),
- [sym_function_expression] = STATE(1650),
- [sym_generator_function] = STATE(1650),
- [sym_arrow_function] = STATE(1650),
- [sym__call_signature] = STATE(5904),
- [sym_call_expression] = STATE(1650),
- [sym_new_expression] = STATE(1634),
- [sym_await_expression] = STATE(1634),
- [sym_member_expression] = STATE(1345),
- [sym_subscript_expression] = STATE(1345),
- [sym_assignment_expression] = STATE(1634),
- [sym__augmented_assignment_lhs] = STATE(2898),
- [sym_augmented_assignment_expression] = STATE(1634),
- [sym__destructuring_pattern] = STATE(5872),
- [sym_ternary_expression] = STATE(1634),
- [sym_binary_expression] = STATE(1634),
- [sym_unary_expression] = STATE(1634),
- [sym_update_expression] = STATE(1634),
- [sym_string] = STATE(1650),
- [sym_template_string] = STATE(1650),
- [sym_regex] = STATE(1650),
- [sym_meta_property] = STATE(1650),
- [sym_decorator] = STATE(1244),
- [sym_formal_parameters] = STATE(3742),
- [sym_non_null_expression] = STATE(1345),
- [sym_as_expression] = STATE(1634),
- [sym_satisfies_expression] = STATE(1634),
- [sym_instantiation_expression] = STATE(1634),
- [sym_internal_module] = STATE(1634),
- [sym_type_parameters] = STATE(5349),
- [aux_sym_export_statement_repeat1] = STATE(4458),
- [sym_identifier] = ACTIONS(1486),
- [anon_sym_export] = ACTIONS(1394),
- [anon_sym_type] = ACTIONS(1394),
- [anon_sym_namespace] = ACTIONS(1396),
- [anon_sym_LBRACE] = ACTIONS(845),
- [anon_sym_typeof] = ACTIONS(1416),
- [anon_sym_import] = ACTIONS(133),
- [anon_sym_let] = ACTIONS(1394),
- [anon_sym_BANG] = ACTIONS(1400),
- [anon_sym_LPAREN] = ACTIONS(815),
- [anon_sym_await] = ACTIONS(1402),
- [anon_sym_yield] = ACTIONS(1404),
- [anon_sym_LBRACK] = ACTIONS(849),
- [sym_glimmer_opening_tag] = ACTIONS(148),
- [anon_sym_DQUOTE] = ACTIONS(150),
- [anon_sym_SQUOTE] = ACTIONS(152),
- [anon_sym_class] = ACTIONS(154),
- [anon_sym_async] = ACTIONS(1406),
- [anon_sym_function] = ACTIONS(158),
- [anon_sym_new] = ACTIONS(1490),
- [anon_sym_using] = ACTIONS(1410),
- [anon_sym_PLUS] = ACTIONS(1416),
- [anon_sym_DASH] = ACTIONS(1416),
- [anon_sym_SLASH] = ACTIONS(970),
- [anon_sym_LT] = ACTIONS(181),
- [anon_sym_TILDE] = ACTIONS(1400),
- [anon_sym_void] = ACTIONS(1416),
- [anon_sym_delete] = ACTIONS(1416),
- [anon_sym_PLUS_PLUS] = ACTIONS(1418),
- [anon_sym_DASH_DASH] = ACTIONS(1418),
- [sym_comment] = ACTIONS(5),
- [anon_sym_BQUOTE] = ACTIONS(825),
- [sym_number] = ACTIONS(2111),
- [sym_private_property_identifier] = ACTIONS(1420),
- [sym_this] = ACTIONS(200),
- [sym_super] = ACTIONS(200),
- [sym_true] = ACTIONS(200),
- [sym_false] = ACTIONS(200),
- [sym_null] = ACTIONS(200),
- [sym_undefined] = ACTIONS(1492),
- [anon_sym_AT] = ACTIONS(99),
- [anon_sym_static] = ACTIONS(1394),
- [anon_sym_readonly] = ACTIONS(1394),
- [anon_sym_get] = ACTIONS(1394),
- [anon_sym_set] = ACTIONS(1394),
- [anon_sym_declare] = ACTIONS(1394),
- [anon_sym_public] = ACTIONS(1394),
- [anon_sym_private] = ACTIONS(1394),
- [anon_sym_protected] = ACTIONS(1394),
- [anon_sym_override] = ACTIONS(1394),
- [anon_sym_module] = ACTIONS(1394),
- [anon_sym_any] = ACTIONS(1394),
- [anon_sym_number] = ACTIONS(1394),
- [anon_sym_boolean] = ACTIONS(1394),
- [anon_sym_string] = ACTIONS(1394),
- [anon_sym_symbol] = ACTIONS(1394),
- [anon_sym_object] = ACTIONS(1394),
- [sym_html_comment] = ACTIONS(5),
- },
- [563] = {
- [sym_import] = STATE(3334),
- [sym_parenthesized_expression] = STATE(1251),
- [sym_expression] = STATE(1548),
- [sym_primary_expression] = STATE(1468),
- [sym_yield_expression] = STATE(1634),
- [sym_object] = STATE(1650),
- [sym_object_pattern] = STATE(5633),
- [sym_array] = STATE(1650),
- [sym_array_pattern] = STATE(5633),
- [sym_glimmer_template] = STATE(1634),
- [sym_jsx_element] = STATE(1634),
- [sym_jsx_opening_element] = STATE(3026),
- [sym_jsx_self_closing_element] = STATE(1634),
- [sym_class] = STATE(1650),
- [sym_function_expression] = STATE(1650),
- [sym_generator_function] = STATE(1650),
- [sym_arrow_function] = STATE(1650),
- [sym__call_signature] = STATE(5828),
- [sym_call_expression] = STATE(1650),
- [sym_new_expression] = STATE(1634),
- [sym_await_expression] = STATE(1634),
- [sym_member_expression] = STATE(1251),
- [sym_subscript_expression] = STATE(1251),
- [sym_assignment_expression] = STATE(1634),
- [sym__augmented_assignment_lhs] = STATE(2900),
- [sym_augmented_assignment_expression] = STATE(1634),
- [sym__destructuring_pattern] = STATE(5633),
- [sym_ternary_expression] = STATE(1634),
- [sym_binary_expression] = STATE(1634),
- [sym_unary_expression] = STATE(1634),
- [sym_update_expression] = STATE(1634),
- [sym_string] = STATE(1650),
- [sym_template_string] = STATE(1650),
- [sym_regex] = STATE(1650),
- [sym_meta_property] = STATE(1650),
- [sym_decorator] = STATE(1244),
- [sym_formal_parameters] = STATE(3742),
- [sym_non_null_expression] = STATE(1251),
- [sym_as_expression] = STATE(1634),
- [sym_satisfies_expression] = STATE(1634),
- [sym_instantiation_expression] = STATE(1634),
- [sym_internal_module] = STATE(1634),
- [sym_type_parameters] = STATE(5349),
- [aux_sym_export_statement_repeat1] = STATE(4458),
- [sym_identifier] = ACTIONS(1428),
- [anon_sym_export] = ACTIONS(1044),
- [anon_sym_type] = ACTIONS(1044),
- [anon_sym_namespace] = ACTIONS(1046),
- [anon_sym_LBRACE] = ACTIONS(813),
- [anon_sym_typeof] = ACTIONS(650),
- [anon_sym_import] = ACTIONS(133),
- [anon_sym_let] = ACTIONS(1044),
- [anon_sym_BANG] = ACTIONS(622),
- [anon_sym_LPAREN] = ACTIONS(815),
- [anon_sym_await] = ACTIONS(624),
- [anon_sym_yield] = ACTIONS(626),
- [anon_sym_LBRACK] = ACTIONS(817),
- [sym_glimmer_opening_tag] = ACTIONS(148),
- [anon_sym_DQUOTE] = ACTIONS(150),
- [anon_sym_SQUOTE] = ACTIONS(152),
- [anon_sym_class] = ACTIONS(154),
- [anon_sym_async] = ACTIONS(1052),
- [anon_sym_function] = ACTIONS(158),
- [anon_sym_new] = ACTIONS(1436),
- [anon_sym_using] = ACTIONS(636),
- [anon_sym_PLUS] = ACTIONS(650),
- [anon_sym_DASH] = ACTIONS(650),
- [anon_sym_SLASH] = ACTIONS(646),
- [anon_sym_LT] = ACTIONS(181),
- [anon_sym_TILDE] = ACTIONS(622),
- [anon_sym_void] = ACTIONS(650),
- [anon_sym_delete] = ACTIONS(650),
- [anon_sym_PLUS_PLUS] = ACTIONS(652),
- [anon_sym_DASH_DASH] = ACTIONS(652),
- [sym_comment] = ACTIONS(5),
- [anon_sym_BQUOTE] = ACTIONS(825),
- [sym_number] = ACTIONS(787),
- [sym_private_property_identifier] = ACTIONS(654),
- [sym_this] = ACTIONS(200),
- [sym_super] = ACTIONS(200),
- [sym_true] = ACTIONS(200),
- [sym_false] = ACTIONS(200),
- [sym_null] = ACTIONS(200),
- [sym_undefined] = ACTIONS(1438),
- [anon_sym_AT] = ACTIONS(99),
- [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_override] = 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_object] = ACTIONS(1044),
- [sym_html_comment] = ACTIONS(5),
- },
- [564] = {
- [sym_import] = STATE(3334),
- [sym_parenthesized_expression] = STATE(1251),
- [sym_expression] = STATE(1551),
- [sym_primary_expression] = STATE(1468),
- [sym_yield_expression] = STATE(1634),
- [sym_object] = STATE(1650),
- [sym_object_pattern] = STATE(5633),
- [sym_array] = STATE(1650),
- [sym_array_pattern] = STATE(5633),
- [sym_glimmer_template] = STATE(1634),
- [sym_jsx_element] = STATE(1634),
- [sym_jsx_opening_element] = STATE(3026),
- [sym_jsx_self_closing_element] = STATE(1634),
- [sym_class] = STATE(1650),
- [sym_function_expression] = STATE(1650),
- [sym_generator_function] = STATE(1650),
- [sym_arrow_function] = STATE(1650),
- [sym__call_signature] = STATE(5828),
- [sym_call_expression] = STATE(1650),
- [sym_new_expression] = STATE(1634),
- [sym_await_expression] = STATE(1634),
- [sym_member_expression] = STATE(1251),
- [sym_subscript_expression] = STATE(1251),
- [sym_assignment_expression] = STATE(1634),
- [sym__augmented_assignment_lhs] = STATE(2900),
- [sym_augmented_assignment_expression] = STATE(1634),
- [sym__destructuring_pattern] = STATE(5633),
- [sym_ternary_expression] = STATE(1634),
- [sym_binary_expression] = STATE(1634),
- [sym_unary_expression] = STATE(1634),
- [sym_update_expression] = STATE(1634),
- [sym_string] = STATE(1650),
- [sym_template_string] = STATE(1650),
- [sym_regex] = STATE(1650),
- [sym_meta_property] = STATE(1650),
- [sym_decorator] = STATE(1244),
- [sym_formal_parameters] = STATE(3742),
- [sym_non_null_expression] = STATE(1251),
- [sym_as_expression] = STATE(1634),
- [sym_satisfies_expression] = STATE(1634),
- [sym_instantiation_expression] = STATE(1634),
- [sym_internal_module] = STATE(1634),
- [sym_type_parameters] = STATE(5349),
- [aux_sym_export_statement_repeat1] = STATE(4458),
- [sym_identifier] = ACTIONS(1428),
- [anon_sym_export] = ACTIONS(1044),
- [anon_sym_type] = ACTIONS(1044),
- [anon_sym_namespace] = ACTIONS(1046),
- [anon_sym_LBRACE] = ACTIONS(813),
- [anon_sym_typeof] = ACTIONS(650),
- [anon_sym_import] = ACTIONS(133),
- [anon_sym_let] = ACTIONS(1044),
- [anon_sym_BANG] = ACTIONS(622),
- [anon_sym_LPAREN] = ACTIONS(815),
- [anon_sym_await] = ACTIONS(624),
- [anon_sym_yield] = ACTIONS(626),
- [anon_sym_LBRACK] = ACTIONS(817),
- [sym_glimmer_opening_tag] = ACTIONS(148),
- [anon_sym_DQUOTE] = ACTIONS(150),
- [anon_sym_SQUOTE] = ACTIONS(152),
- [anon_sym_class] = ACTIONS(154),
- [anon_sym_async] = ACTIONS(1052),
- [anon_sym_function] = ACTIONS(158),
- [anon_sym_new] = ACTIONS(1436),
- [anon_sym_using] = ACTIONS(636),
- [anon_sym_PLUS] = ACTIONS(650),
- [anon_sym_DASH] = ACTIONS(650),
- [anon_sym_SLASH] = ACTIONS(646),
- [anon_sym_LT] = ACTIONS(181),
- [anon_sym_TILDE] = ACTIONS(622),
- [anon_sym_void] = ACTIONS(650),
- [anon_sym_delete] = ACTIONS(650),
- [anon_sym_PLUS_PLUS] = ACTIONS(652),
- [anon_sym_DASH_DASH] = ACTIONS(652),
- [sym_comment] = ACTIONS(5),
- [anon_sym_BQUOTE] = ACTIONS(825),
- [sym_number] = ACTIONS(787),
- [sym_private_property_identifier] = ACTIONS(654),
- [sym_this] = ACTIONS(200),
- [sym_super] = ACTIONS(200),
- [sym_true] = ACTIONS(200),
- [sym_false] = ACTIONS(200),
- [sym_null] = ACTIONS(200),
- [sym_undefined] = ACTIONS(1438),
- [anon_sym_AT] = ACTIONS(99),
- [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_override] = 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_object] = ACTIONS(1044),
- [sym_html_comment] = ACTIONS(5),
- },
- [565] = {
- [sym_import] = STATE(3334),
- [sym_parenthesized_expression] = STATE(1345),
- [sym_expression] = STATE(2370),
- [sym_primary_expression] = STATE(1468),
- [sym_yield_expression] = STATE(1634),
- [sym_object] = STATE(1650),
- [sym_object_pattern] = STATE(5872),
- [sym_array] = STATE(1650),
- [sym_array_pattern] = STATE(5872),
- [sym_glimmer_template] = STATE(1634),
- [sym_jsx_element] = STATE(1634),
- [sym_jsx_opening_element] = STATE(3026),
- [sym_jsx_self_closing_element] = STATE(1634),
- [sym_class] = STATE(1650),
- [sym_function_expression] = STATE(1650),
- [sym_generator_function] = STATE(1650),
- [sym_arrow_function] = STATE(1650),
- [sym__call_signature] = STATE(5904),
- [sym_call_expression] = STATE(1650),
- [sym_new_expression] = STATE(1634),
- [sym_await_expression] = STATE(1634),
- [sym_member_expression] = STATE(1345),
- [sym_subscript_expression] = STATE(1345),
- [sym_assignment_expression] = STATE(1634),
- [sym__augmented_assignment_lhs] = STATE(2898),
- [sym_augmented_assignment_expression] = STATE(1634),
- [sym__destructuring_pattern] = STATE(5872),
- [sym_ternary_expression] = STATE(1634),
- [sym_binary_expression] = STATE(1634),
- [sym_unary_expression] = STATE(1634),
- [sym_update_expression] = STATE(1634),
- [sym_string] = STATE(1650),
- [sym_template_string] = STATE(1650),
- [sym_regex] = STATE(1650),
- [sym_meta_property] = STATE(1650),
- [sym_decorator] = STATE(1244),
- [sym_formal_parameters] = STATE(3742),
- [sym_non_null_expression] = STATE(1345),
- [sym_as_expression] = STATE(1634),
- [sym_satisfies_expression] = STATE(1634),
- [sym_instantiation_expression] = STATE(1634),
- [sym_internal_module] = STATE(1634),
- [sym_type_parameters] = STATE(5349),
- [aux_sym_export_statement_repeat1] = STATE(4458),
- [sym_identifier] = ACTIONS(1486),
- [anon_sym_export] = ACTIONS(1394),
- [anon_sym_type] = ACTIONS(1394),
- [anon_sym_namespace] = ACTIONS(1396),
- [anon_sym_LBRACE] = ACTIONS(845),
- [anon_sym_typeof] = ACTIONS(1416),
- [anon_sym_import] = ACTIONS(133),
- [anon_sym_let] = ACTIONS(1394),
- [anon_sym_BANG] = ACTIONS(1400),
- [anon_sym_LPAREN] = ACTIONS(815),
- [anon_sym_await] = ACTIONS(1402),
- [anon_sym_yield] = ACTIONS(1404),
- [anon_sym_LBRACK] = ACTIONS(849),
- [sym_glimmer_opening_tag] = ACTIONS(148),
- [anon_sym_DQUOTE] = ACTIONS(150),
- [anon_sym_SQUOTE] = ACTIONS(152),
- [anon_sym_class] = ACTIONS(154),
- [anon_sym_async] = ACTIONS(1406),
- [anon_sym_function] = ACTIONS(158),
- [anon_sym_new] = ACTIONS(1490),
- [anon_sym_using] = ACTIONS(1410),
- [anon_sym_PLUS] = ACTIONS(1416),
- [anon_sym_DASH] = ACTIONS(1416),
- [anon_sym_SLASH] = ACTIONS(970),
- [anon_sym_LT] = ACTIONS(181),
- [anon_sym_TILDE] = ACTIONS(1400),
- [anon_sym_void] = ACTIONS(1416),
- [anon_sym_delete] = ACTIONS(1416),
- [anon_sym_PLUS_PLUS] = ACTIONS(1418),
- [anon_sym_DASH_DASH] = ACTIONS(1418),
- [sym_comment] = ACTIONS(5),
- [anon_sym_BQUOTE] = ACTIONS(825),
- [sym_number] = ACTIONS(787),
- [sym_private_property_identifier] = ACTIONS(1420),
- [sym_this] = ACTIONS(200),
- [sym_super] = ACTIONS(200),
- [sym_true] = ACTIONS(200),
- [sym_false] = ACTIONS(200),
- [sym_null] = ACTIONS(200),
- [sym_undefined] = ACTIONS(1492),
- [anon_sym_AT] = ACTIONS(99),
- [anon_sym_static] = ACTIONS(1394),
- [anon_sym_readonly] = ACTIONS(1394),
- [anon_sym_get] = ACTIONS(1394),
- [anon_sym_set] = ACTIONS(1394),
- [anon_sym_declare] = ACTIONS(1394),
- [anon_sym_public] = ACTIONS(1394),
- [anon_sym_private] = ACTIONS(1394),
- [anon_sym_protected] = ACTIONS(1394),
- [anon_sym_override] = ACTIONS(1394),
- [anon_sym_module] = ACTIONS(1394),
- [anon_sym_any] = ACTIONS(1394),
- [anon_sym_number] = ACTIONS(1394),
- [anon_sym_boolean] = ACTIONS(1394),
- [anon_sym_string] = ACTIONS(1394),
- [anon_sym_symbol] = ACTIONS(1394),
- [anon_sym_object] = ACTIONS(1394),
- [sym_html_comment] = ACTIONS(5),
- },
- [566] = {
- [sym_import] = STATE(3334),
- [sym_parenthesized_expression] = STATE(1345),
- [sym_expression] = STATE(2373),
- [sym_primary_expression] = STATE(1468),
- [sym_yield_expression] = STATE(1634),
- [sym_object] = STATE(1650),
- [sym_object_pattern] = STATE(5872),
- [sym_array] = STATE(1650),
- [sym_array_pattern] = STATE(5872),
- [sym_glimmer_template] = STATE(1634),
- [sym_jsx_element] = STATE(1634),
- [sym_jsx_opening_element] = STATE(3026),
- [sym_jsx_self_closing_element] = STATE(1634),
- [sym_class] = STATE(1650),
- [sym_function_expression] = STATE(1650),
- [sym_generator_function] = STATE(1650),
- [sym_arrow_function] = STATE(1650),
- [sym__call_signature] = STATE(5904),
- [sym_call_expression] = STATE(1650),
- [sym_new_expression] = STATE(1634),
- [sym_await_expression] = STATE(1634),
- [sym_member_expression] = STATE(1345),
- [sym_subscript_expression] = STATE(1345),
- [sym_assignment_expression] = STATE(1634),
- [sym__augmented_assignment_lhs] = STATE(2898),
- [sym_augmented_assignment_expression] = STATE(1634),
- [sym__destructuring_pattern] = STATE(5872),
- [sym_ternary_expression] = STATE(1634),
- [sym_binary_expression] = STATE(1634),
- [sym_unary_expression] = STATE(1634),
- [sym_update_expression] = STATE(1634),
- [sym_string] = STATE(1650),
- [sym_template_string] = STATE(1650),
- [sym_regex] = STATE(1650),
- [sym_meta_property] = STATE(1650),
- [sym_decorator] = STATE(1244),
- [sym_formal_parameters] = STATE(3742),
- [sym_non_null_expression] = STATE(1345),
- [sym_as_expression] = STATE(1634),
- [sym_satisfies_expression] = STATE(1634),
- [sym_instantiation_expression] = STATE(1634),
- [sym_internal_module] = STATE(1634),
- [sym_type_parameters] = STATE(5349),
- [aux_sym_export_statement_repeat1] = STATE(4458),
- [sym_identifier] = ACTIONS(1486),
- [anon_sym_export] = ACTIONS(1394),
- [anon_sym_type] = ACTIONS(1394),
- [anon_sym_namespace] = ACTIONS(1396),
- [anon_sym_LBRACE] = ACTIONS(845),
- [anon_sym_typeof] = ACTIONS(1416),
- [anon_sym_import] = ACTIONS(133),
- [anon_sym_let] = ACTIONS(1394),
- [anon_sym_BANG] = ACTIONS(1400),
- [anon_sym_LPAREN] = ACTIONS(815),
- [anon_sym_await] = ACTIONS(1402),
- [anon_sym_yield] = ACTIONS(1404),
- [anon_sym_LBRACK] = ACTIONS(849),
- [sym_glimmer_opening_tag] = ACTIONS(148),
- [anon_sym_DQUOTE] = ACTIONS(150),
- [anon_sym_SQUOTE] = ACTIONS(152),
- [anon_sym_class] = ACTIONS(154),
- [anon_sym_async] = ACTIONS(1406),
- [anon_sym_function] = ACTIONS(158),
- [anon_sym_new] = ACTIONS(1490),
- [anon_sym_using] = ACTIONS(1410),
- [anon_sym_PLUS] = ACTIONS(1416),
- [anon_sym_DASH] = ACTIONS(1416),
- [anon_sym_SLASH] = ACTIONS(970),
- [anon_sym_LT] = ACTIONS(181),
- [anon_sym_TILDE] = ACTIONS(1400),
- [anon_sym_void] = ACTIONS(1416),
- [anon_sym_delete] = ACTIONS(1416),
- [anon_sym_PLUS_PLUS] = ACTIONS(1418),
- [anon_sym_DASH_DASH] = ACTIONS(1418),
- [sym_comment] = ACTIONS(5),
- [anon_sym_BQUOTE] = ACTIONS(825),
- [sym_number] = ACTIONS(787),
- [sym_private_property_identifier] = ACTIONS(1420),
- [sym_this] = ACTIONS(200),
- [sym_super] = ACTIONS(200),
- [sym_true] = ACTIONS(200),
- [sym_false] = ACTIONS(200),
- [sym_null] = ACTIONS(200),
- [sym_undefined] = ACTIONS(1492),
- [anon_sym_AT] = ACTIONS(99),
- [anon_sym_static] = ACTIONS(1394),
- [anon_sym_readonly] = ACTIONS(1394),
- [anon_sym_get] = ACTIONS(1394),
- [anon_sym_set] = ACTIONS(1394),
- [anon_sym_declare] = ACTIONS(1394),
- [anon_sym_public] = ACTIONS(1394),
- [anon_sym_private] = ACTIONS(1394),
- [anon_sym_protected] = ACTIONS(1394),
- [anon_sym_override] = ACTIONS(1394),
- [anon_sym_module] = ACTIONS(1394),
- [anon_sym_any] = ACTIONS(1394),
- [anon_sym_number] = ACTIONS(1394),
- [anon_sym_boolean] = ACTIONS(1394),
- [anon_sym_string] = ACTIONS(1394),
- [anon_sym_symbol] = ACTIONS(1394),
- [anon_sym_object] = ACTIONS(1394),
- [sym_html_comment] = ACTIONS(5),
- },
- [567] = {
- [sym_import] = STATE(3334),
- [sym_parenthesized_expression] = STATE(1345),
- [sym_expression] = STATE(2374),
- [sym_primary_expression] = STATE(1468),
- [sym_yield_expression] = STATE(1634),
- [sym_object] = STATE(1650),
- [sym_object_pattern] = STATE(5872),
- [sym_array] = STATE(1650),
- [sym_array_pattern] = STATE(5872),
- [sym_glimmer_template] = STATE(1634),
- [sym_jsx_element] = STATE(1634),
- [sym_jsx_opening_element] = STATE(3026),
- [sym_jsx_self_closing_element] = STATE(1634),
- [sym_class] = STATE(1650),
- [sym_function_expression] = STATE(1650),
- [sym_generator_function] = STATE(1650),
- [sym_arrow_function] = STATE(1650),
- [sym__call_signature] = STATE(5904),
- [sym_call_expression] = STATE(1650),
- [sym_new_expression] = STATE(1634),
- [sym_await_expression] = STATE(1634),
- [sym_member_expression] = STATE(1345),
- [sym_subscript_expression] = STATE(1345),
- [sym_assignment_expression] = STATE(1634),
- [sym__augmented_assignment_lhs] = STATE(2898),
- [sym_augmented_assignment_expression] = STATE(1634),
- [sym__destructuring_pattern] = STATE(5872),
- [sym_ternary_expression] = STATE(1634),
- [sym_binary_expression] = STATE(1634),
- [sym_unary_expression] = STATE(1634),
- [sym_update_expression] = STATE(1634),
- [sym_string] = STATE(1650),
- [sym_template_string] = STATE(1650),
- [sym_regex] = STATE(1650),
- [sym_meta_property] = STATE(1650),
- [sym_decorator] = STATE(1244),
- [sym_formal_parameters] = STATE(3742),
- [sym_non_null_expression] = STATE(1345),
- [sym_as_expression] = STATE(1634),
- [sym_satisfies_expression] = STATE(1634),
- [sym_instantiation_expression] = STATE(1634),
- [sym_internal_module] = STATE(1634),
- [sym_type_parameters] = STATE(5349),
- [aux_sym_export_statement_repeat1] = STATE(4458),
- [sym_identifier] = ACTIONS(1486),
- [anon_sym_export] = ACTIONS(1394),
- [anon_sym_type] = ACTIONS(1394),
- [anon_sym_namespace] = ACTIONS(1396),
- [anon_sym_LBRACE] = ACTIONS(845),
- [anon_sym_typeof] = ACTIONS(1416),
- [anon_sym_import] = ACTIONS(133),
- [anon_sym_let] = ACTIONS(1394),
- [anon_sym_BANG] = ACTIONS(1400),
- [anon_sym_LPAREN] = ACTIONS(815),
- [anon_sym_await] = ACTIONS(1402),
- [anon_sym_yield] = ACTIONS(1404),
- [anon_sym_LBRACK] = ACTIONS(849),
- [sym_glimmer_opening_tag] = ACTIONS(148),
- [anon_sym_DQUOTE] = ACTIONS(150),
- [anon_sym_SQUOTE] = ACTIONS(152),
- [anon_sym_class] = ACTIONS(154),
- [anon_sym_async] = ACTIONS(1406),
- [anon_sym_function] = ACTIONS(158),
- [anon_sym_new] = ACTIONS(1490),
- [anon_sym_using] = ACTIONS(1410),
- [anon_sym_PLUS] = ACTIONS(1416),
- [anon_sym_DASH] = ACTIONS(1416),
- [anon_sym_SLASH] = ACTIONS(970),
- [anon_sym_LT] = ACTIONS(181),
- [anon_sym_TILDE] = ACTIONS(1400),
- [anon_sym_void] = ACTIONS(1416),
- [anon_sym_delete] = ACTIONS(1416),
- [anon_sym_PLUS_PLUS] = ACTIONS(1418),
- [anon_sym_DASH_DASH] = ACTIONS(1418),
- [sym_comment] = ACTIONS(5),
- [anon_sym_BQUOTE] = ACTIONS(825),
- [sym_number] = ACTIONS(787),
- [sym_private_property_identifier] = ACTIONS(1420),
- [sym_this] = ACTIONS(200),
- [sym_super] = ACTIONS(200),
- [sym_true] = ACTIONS(200),
- [sym_false] = ACTIONS(200),
- [sym_null] = ACTIONS(200),
- [sym_undefined] = ACTIONS(1492),
- [anon_sym_AT] = ACTIONS(99),
- [anon_sym_static] = ACTIONS(1394),
- [anon_sym_readonly] = ACTIONS(1394),
- [anon_sym_get] = ACTIONS(1394),
- [anon_sym_set] = ACTIONS(1394),
- [anon_sym_declare] = ACTIONS(1394),
- [anon_sym_public] = ACTIONS(1394),
- [anon_sym_private] = ACTIONS(1394),
- [anon_sym_protected] = ACTIONS(1394),
- [anon_sym_override] = ACTIONS(1394),
- [anon_sym_module] = ACTIONS(1394),
- [anon_sym_any] = ACTIONS(1394),
- [anon_sym_number] = ACTIONS(1394),
- [anon_sym_boolean] = ACTIONS(1394),
- [anon_sym_string] = ACTIONS(1394),
- [anon_sym_symbol] = ACTIONS(1394),
- [anon_sym_object] = ACTIONS(1394),
- [sym_html_comment] = ACTIONS(5),
- },
- [568] = {
- [sym_import] = STATE(3334),
- [sym_parenthesized_expression] = STATE(1251),
- [sym_expression] = STATE(1557),
- [sym_primary_expression] = STATE(1468),
- [sym_yield_expression] = STATE(1634),
- [sym_object] = STATE(1650),
- [sym_object_pattern] = STATE(5633),
- [sym_array] = STATE(1650),
- [sym_array_pattern] = STATE(5633),
- [sym_glimmer_template] = STATE(1634),
- [sym_jsx_element] = STATE(1634),
- [sym_jsx_opening_element] = STATE(3026),
- [sym_jsx_self_closing_element] = STATE(1634),
- [sym_class] = STATE(1650),
- [sym_function_expression] = STATE(1650),
- [sym_generator_function] = STATE(1650),
- [sym_arrow_function] = STATE(1650),
- [sym__call_signature] = STATE(5828),
- [sym_call_expression] = STATE(1650),
- [sym_new_expression] = STATE(1634),
- [sym_await_expression] = STATE(1634),
- [sym_member_expression] = STATE(1251),
- [sym_subscript_expression] = STATE(1251),
- [sym_assignment_expression] = STATE(1634),
- [sym__augmented_assignment_lhs] = STATE(2900),
- [sym_augmented_assignment_expression] = STATE(1634),
- [sym__destructuring_pattern] = STATE(5633),
- [sym_ternary_expression] = STATE(1634),
- [sym_binary_expression] = STATE(1634),
- [sym_unary_expression] = STATE(1634),
- [sym_update_expression] = STATE(1634),
- [sym_string] = STATE(1650),
- [sym_template_string] = STATE(1650),
- [sym_regex] = STATE(1650),
- [sym_meta_property] = STATE(1650),
- [sym_decorator] = STATE(1244),
- [sym_formal_parameters] = STATE(3742),
- [sym_non_null_expression] = STATE(1251),
- [sym_as_expression] = STATE(1634),
- [sym_satisfies_expression] = STATE(1634),
- [sym_instantiation_expression] = STATE(1634),
- [sym_internal_module] = STATE(1634),
- [sym_type_parameters] = STATE(5349),
- [aux_sym_export_statement_repeat1] = STATE(4458),
- [sym_identifier] = ACTIONS(1428),
- [anon_sym_export] = ACTIONS(1044),
- [anon_sym_type] = ACTIONS(1044),
- [anon_sym_namespace] = ACTIONS(1046),
- [anon_sym_LBRACE] = ACTIONS(813),
- [anon_sym_typeof] = ACTIONS(650),
- [anon_sym_import] = ACTIONS(133),
- [anon_sym_let] = ACTIONS(1044),
- [anon_sym_BANG] = ACTIONS(622),
- [anon_sym_LPAREN] = ACTIONS(815),
- [anon_sym_await] = ACTIONS(624),
- [anon_sym_yield] = ACTIONS(626),
- [anon_sym_LBRACK] = ACTIONS(817),
- [sym_glimmer_opening_tag] = ACTIONS(148),
- [anon_sym_DQUOTE] = ACTIONS(150),
- [anon_sym_SQUOTE] = ACTIONS(152),
- [anon_sym_class] = ACTIONS(154),
- [anon_sym_async] = ACTIONS(1052),
- [anon_sym_function] = ACTIONS(158),
- [anon_sym_new] = ACTIONS(1436),
- [anon_sym_using] = ACTIONS(636),
- [anon_sym_PLUS] = ACTIONS(650),
- [anon_sym_DASH] = ACTIONS(650),
- [anon_sym_SLASH] = ACTIONS(646),
- [anon_sym_LT] = ACTIONS(181),
- [anon_sym_TILDE] = ACTIONS(622),
- [anon_sym_void] = ACTIONS(650),
- [anon_sym_delete] = ACTIONS(650),
- [anon_sym_PLUS_PLUS] = ACTIONS(652),
- [anon_sym_DASH_DASH] = ACTIONS(652),
- [sym_comment] = ACTIONS(5),
- [anon_sym_BQUOTE] = ACTIONS(825),
- [sym_number] = ACTIONS(787),
- [sym_private_property_identifier] = ACTIONS(654),
- [sym_this] = ACTIONS(200),
- [sym_super] = ACTIONS(200),
- [sym_true] = ACTIONS(200),
- [sym_false] = ACTIONS(200),
- [sym_null] = ACTIONS(200),
- [sym_undefined] = ACTIONS(1438),
- [anon_sym_AT] = ACTIONS(99),
- [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_override] = 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_object] = ACTIONS(1044),
- [sym_html_comment] = ACTIONS(5),
- },
- [569] = {
- [sym_import] = STATE(3334),
- [sym_parenthesized_expression] = STATE(1389),
- [sym_expression] = STATE(2415),
- [sym_primary_expression] = STATE(1468),
- [sym_yield_expression] = STATE(1634),
- [sym_object] = STATE(1650),
- [sym_object_pattern] = STATE(5536),
- [sym_array] = STATE(1650),
- [sym_array_pattern] = STATE(5536),
- [sym_glimmer_template] = STATE(1634),
- [sym_jsx_element] = STATE(1634),
- [sym_jsx_opening_element] = STATE(3026),
- [sym_jsx_self_closing_element] = STATE(1634),
- [sym_class] = STATE(1650),
- [sym_function_expression] = STATE(1650),
- [sym_generator_function] = STATE(1650),
- [sym_arrow_function] = STATE(1650),
- [sym__call_signature] = STATE(5619),
- [sym_call_expression] = STATE(1650),
- [sym_new_expression] = STATE(1634),
- [sym_await_expression] = STATE(1634),
- [sym_member_expression] = STATE(1389),
- [sym_subscript_expression] = STATE(1389),
- [sym_assignment_expression] = STATE(1634),
- [sym__augmented_assignment_lhs] = STATE(2878),
- [sym_augmented_assignment_expression] = STATE(1634),
- [sym__destructuring_pattern] = STATE(5536),
- [sym_ternary_expression] = STATE(1634),
- [sym_binary_expression] = STATE(1634),
- [sym_unary_expression] = STATE(1634),
- [sym_update_expression] = STATE(1634),
- [sym_string] = STATE(1650),
- [sym_template_string] = STATE(1650),
- [sym_regex] = STATE(1650),
- [sym_meta_property] = STATE(1650),
- [sym_decorator] = STATE(1244),
- [sym_formal_parameters] = STATE(3742),
- [sym_non_null_expression] = STATE(1389),
- [sym_as_expression] = STATE(1634),
- [sym_satisfies_expression] = STATE(1634),
- [sym_instantiation_expression] = STATE(1634),
- [sym_internal_module] = STATE(1634),
- [sym_type_parameters] = STATE(5349),
- [aux_sym_export_statement_repeat1] = STATE(4458),
- [sym_identifier] = ACTIONS(2163),
- [anon_sym_export] = ACTIONS(2165),
- [anon_sym_type] = ACTIONS(2165),
- [anon_sym_namespace] = ACTIONS(2167),
- [anon_sym_LBRACE] = ACTIONS(845),
- [anon_sym_typeof] = ACTIONS(187),
- [anon_sym_import] = ACTIONS(133),
- [anon_sym_let] = ACTIONS(2165),
- [anon_sym_BANG] = ACTIONS(183),
- [anon_sym_LPAREN] = ACTIONS(815),
- [anon_sym_await] = ACTIONS(142),
- [anon_sym_yield] = ACTIONS(144),
- [anon_sym_LBRACK] = ACTIONS(849),
- [sym_glimmer_opening_tag] = ACTIONS(148),
- [anon_sym_DQUOTE] = ACTIONS(150),
- [anon_sym_SQUOTE] = ACTIONS(152),
- [anon_sym_class] = ACTIONS(154),
- [anon_sym_async] = ACTIONS(2169),
- [anon_sym_function] = ACTIONS(158),
- [anon_sym_new] = ACTIONS(2171),
- [anon_sym_using] = ACTIONS(166),
- [anon_sym_PLUS] = ACTIONS(187),
- [anon_sym_DASH] = ACTIONS(187),
- [anon_sym_SLASH] = ACTIONS(646),
- [anon_sym_LT] = ACTIONS(181),
- [anon_sym_TILDE] = ACTIONS(183),
- [anon_sym_void] = ACTIONS(187),
- [anon_sym_delete] = ACTIONS(187),
- [anon_sym_PLUS_PLUS] = ACTIONS(719),
- [anon_sym_DASH_DASH] = ACTIONS(719),
- [sym_comment] = ACTIONS(5),
- [anon_sym_BQUOTE] = ACTIONS(825),
- [sym_number] = ACTIONS(787),
- [sym_private_property_identifier] = ACTIONS(196),
- [sym_this] = ACTIONS(200),
- [sym_super] = ACTIONS(200),
- [sym_true] = ACTIONS(200),
- [sym_false] = ACTIONS(200),
- [sym_null] = ACTIONS(200),
- [sym_undefined] = ACTIONS(2173),
- [anon_sym_AT] = ACTIONS(99),
- [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_override] = 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_object] = ACTIONS(2165),
- [sym_html_comment] = ACTIONS(5),
- },
- [570] = {
- [sym_import] = STATE(3334),
- [sym_parenthesized_expression] = STATE(1336),
- [sym_expression] = STATE(2318),
- [sym_primary_expression] = STATE(1468),
- [sym_yield_expression] = STATE(1634),
- [sym_object] = STATE(1650),
- [sym_object_pattern] = STATE(5745),
- [sym_array] = STATE(1650),
- [sym_array_pattern] = STATE(5745),
- [sym_glimmer_template] = STATE(1634),
- [sym_jsx_element] = STATE(1634),
- [sym_jsx_opening_element] = STATE(3026),
- [sym_jsx_self_closing_element] = STATE(1634),
- [sym_class] = STATE(1650),
- [sym_function_expression] = STATE(1650),
- [sym_generator_function] = STATE(1650),
- [sym_arrow_function] = STATE(1650),
- [sym__call_signature] = STATE(5553),
- [sym_call_expression] = STATE(1650),
- [sym_new_expression] = STATE(1634),
- [sym_await_expression] = STATE(1634),
- [sym_member_expression] = STATE(1336),
- [sym_subscript_expression] = STATE(1336),
- [sym_assignment_expression] = STATE(1634),
- [sym__augmented_assignment_lhs] = STATE(2884),
- [sym_augmented_assignment_expression] = STATE(1634),
- [sym__destructuring_pattern] = STATE(5745),
- [sym_ternary_expression] = STATE(1634),
- [sym_binary_expression] = STATE(1634),
- [sym_unary_expression] = STATE(1634),
- [sym_update_expression] = STATE(1634),
- [sym_string] = STATE(1650),
- [sym_template_string] = STATE(1650),
- [sym_regex] = STATE(1650),
- [sym_meta_property] = STATE(1650),
- [sym_decorator] = STATE(1244),
- [sym_formal_parameters] = STATE(3742),
- [sym_non_null_expression] = STATE(1336),
- [sym_as_expression] = STATE(1634),
- [sym_satisfies_expression] = STATE(1634),
- [sym_instantiation_expression] = STATE(1634),
- [sym_internal_module] = STATE(1634),
- [sym_type_parameters] = STATE(5349),
- [aux_sym_export_statement_repeat1] = STATE(4458),
- [sym_identifier] = ACTIONS(1470),
- [anon_sym_export] = ACTIONS(1250),
- [anon_sym_type] = ACTIONS(1250),
- [anon_sym_namespace] = ACTIONS(1252),
- [anon_sym_LBRACE] = ACTIONS(813),
- [anon_sym_typeof] = ACTIONS(1272),
- [anon_sym_import] = ACTIONS(133),
- [anon_sym_let] = ACTIONS(1250),
- [anon_sym_BANG] = ACTIONS(1256),
- [anon_sym_LPAREN] = ACTIONS(815),
- [anon_sym_await] = ACTIONS(1258),
- [anon_sym_yield] = ACTIONS(1260),
- [anon_sym_LBRACK] = ACTIONS(817),
- [sym_glimmer_opening_tag] = ACTIONS(148),
- [anon_sym_DQUOTE] = ACTIONS(150),
- [anon_sym_SQUOTE] = ACTIONS(152),
- [anon_sym_class] = ACTIONS(154),
- [anon_sym_async] = ACTIONS(1262),
- [anon_sym_function] = ACTIONS(158),
- [anon_sym_new] = ACTIONS(1474),
- [anon_sym_using] = ACTIONS(1266),
- [anon_sym_PLUS] = ACTIONS(1272),
- [anon_sym_DASH] = ACTIONS(1272),
- [anon_sym_SLASH] = ACTIONS(646),
- [anon_sym_LT] = ACTIONS(181),
- [anon_sym_TILDE] = ACTIONS(1256),
- [anon_sym_void] = ACTIONS(1272),
- [anon_sym_delete] = ACTIONS(1272),
- [anon_sym_PLUS_PLUS] = ACTIONS(1274),
- [anon_sym_DASH_DASH] = ACTIONS(1274),
- [sym_comment] = ACTIONS(5),
- [anon_sym_BQUOTE] = ACTIONS(825),
- [sym_number] = ACTIONS(787),
- [sym_private_property_identifier] = ACTIONS(1276),
- [sym_this] = ACTIONS(200),
- [sym_super] = ACTIONS(200),
- [sym_true] = ACTIONS(200),
- [sym_false] = ACTIONS(200),
- [sym_null] = ACTIONS(200),
- [sym_undefined] = ACTIONS(1476),
- [anon_sym_AT] = ACTIONS(99),
- [anon_sym_static] = ACTIONS(1250),
- [anon_sym_readonly] = ACTIONS(1250),
- [anon_sym_get] = ACTIONS(1250),
- [anon_sym_set] = ACTIONS(1250),
- [anon_sym_declare] = ACTIONS(1250),
- [anon_sym_public] = ACTIONS(1250),
- [anon_sym_private] = ACTIONS(1250),
- [anon_sym_protected] = ACTIONS(1250),
- [anon_sym_override] = ACTIONS(1250),
- [anon_sym_module] = ACTIONS(1250),
- [anon_sym_any] = ACTIONS(1250),
- [anon_sym_number] = ACTIONS(1250),
- [anon_sym_boolean] = ACTIONS(1250),
- [anon_sym_string] = ACTIONS(1250),
- [anon_sym_symbol] = ACTIONS(1250),
- [anon_sym_object] = ACTIONS(1250),
- [sym_html_comment] = ACTIONS(5),
- },
- [571] = {
- [sym_import] = STATE(3334),
- [sym_parenthesized_expression] = STATE(1251),
- [sym_expression] = STATE(1558),
- [sym_primary_expression] = STATE(1468),
- [sym_yield_expression] = STATE(1634),
- [sym_object] = STATE(1650),
- [sym_object_pattern] = STATE(5633),
- [sym_array] = STATE(1650),
- [sym_array_pattern] = STATE(5633),
- [sym_glimmer_template] = STATE(1634),
- [sym_jsx_element] = STATE(1634),
- [sym_jsx_opening_element] = STATE(3026),
- [sym_jsx_self_closing_element] = STATE(1634),
- [sym_class] = STATE(1650),
- [sym_function_expression] = STATE(1650),
- [sym_generator_function] = STATE(1650),
- [sym_arrow_function] = STATE(1650),
- [sym__call_signature] = STATE(5828),
- [sym_call_expression] = STATE(1650),
- [sym_new_expression] = STATE(1634),
- [sym_await_expression] = STATE(1634),
- [sym_member_expression] = STATE(1251),
- [sym_subscript_expression] = STATE(1251),
- [sym_assignment_expression] = STATE(1634),
- [sym__augmented_assignment_lhs] = STATE(2900),
- [sym_augmented_assignment_expression] = STATE(1634),
- [sym__destructuring_pattern] = STATE(5633),
- [sym_ternary_expression] = STATE(1634),
- [sym_binary_expression] = STATE(1634),
- [sym_unary_expression] = STATE(1634),
- [sym_update_expression] = STATE(1634),
- [sym_string] = STATE(1650),
- [sym_template_string] = STATE(1650),
- [sym_regex] = STATE(1650),
- [sym_meta_property] = STATE(1650),
- [sym_decorator] = STATE(1244),
- [sym_formal_parameters] = STATE(3742),
- [sym_non_null_expression] = STATE(1251),
- [sym_as_expression] = STATE(1634),
- [sym_satisfies_expression] = STATE(1634),
- [sym_instantiation_expression] = STATE(1634),
- [sym_internal_module] = STATE(1634),
- [sym_type_parameters] = STATE(5349),
- [aux_sym_export_statement_repeat1] = STATE(4458),
- [sym_identifier] = ACTIONS(1428),
- [anon_sym_export] = ACTIONS(1044),
- [anon_sym_type] = ACTIONS(1044),
- [anon_sym_namespace] = ACTIONS(1046),
- [anon_sym_LBRACE] = ACTIONS(813),
- [anon_sym_typeof] = ACTIONS(650),
- [anon_sym_import] = ACTIONS(133),
- [anon_sym_let] = ACTIONS(1044),
- [anon_sym_BANG] = ACTIONS(622),
- [anon_sym_LPAREN] = ACTIONS(815),
- [anon_sym_await] = ACTIONS(624),
- [anon_sym_yield] = ACTIONS(626),
- [anon_sym_LBRACK] = ACTIONS(817),
- [sym_glimmer_opening_tag] = ACTIONS(148),
- [anon_sym_DQUOTE] = ACTIONS(150),
- [anon_sym_SQUOTE] = ACTIONS(152),
- [anon_sym_class] = ACTIONS(154),
- [anon_sym_async] = ACTIONS(1052),
- [anon_sym_function] = ACTIONS(158),
- [anon_sym_new] = ACTIONS(1436),
- [anon_sym_using] = ACTIONS(636),
- [anon_sym_PLUS] = ACTIONS(650),
- [anon_sym_DASH] = ACTIONS(650),
- [anon_sym_SLASH] = ACTIONS(646),
- [anon_sym_LT] = ACTIONS(181),
- [anon_sym_TILDE] = ACTIONS(622),
- [anon_sym_void] = ACTIONS(650),
- [anon_sym_delete] = ACTIONS(650),
- [anon_sym_PLUS_PLUS] = ACTIONS(652),
- [anon_sym_DASH_DASH] = ACTIONS(652),
- [sym_comment] = ACTIONS(5),
- [anon_sym_BQUOTE] = ACTIONS(825),
- [sym_number] = ACTIONS(787),
- [sym_private_property_identifier] = ACTIONS(654),
- [sym_this] = ACTIONS(200),
- [sym_super] = ACTIONS(200),
- [sym_true] = ACTIONS(200),
- [sym_false] = ACTIONS(200),
- [sym_null] = ACTIONS(200),
- [sym_undefined] = ACTIONS(1438),
- [anon_sym_AT] = ACTIONS(99),
- [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_override] = 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_object] = ACTIONS(1044),
- [sym_html_comment] = ACTIONS(5),
- },
- [572] = {
- [sym_import] = STATE(3334),
- [sym_parenthesized_expression] = STATE(1251),
- [sym_expression] = STATE(1561),
- [sym_primary_expression] = STATE(1468),
- [sym_yield_expression] = STATE(1634),
- [sym_object] = STATE(1650),
- [sym_object_pattern] = STATE(5633),
- [sym_array] = STATE(1650),
- [sym_array_pattern] = STATE(5633),
- [sym_glimmer_template] = STATE(1634),
- [sym_jsx_element] = STATE(1634),
- [sym_jsx_opening_element] = STATE(3026),
- [sym_jsx_self_closing_element] = STATE(1634),
- [sym_class] = STATE(1650),
- [sym_function_expression] = STATE(1650),
- [sym_generator_function] = STATE(1650),
- [sym_arrow_function] = STATE(1650),
- [sym__call_signature] = STATE(5828),
- [sym_call_expression] = STATE(1650),
- [sym_new_expression] = STATE(1634),
- [sym_await_expression] = STATE(1634),
- [sym_member_expression] = STATE(1251),
- [sym_subscript_expression] = STATE(1251),
- [sym_assignment_expression] = STATE(1634),
- [sym__augmented_assignment_lhs] = STATE(2900),
- [sym_augmented_assignment_expression] = STATE(1634),
- [sym__destructuring_pattern] = STATE(5633),
- [sym_ternary_expression] = STATE(1634),
- [sym_binary_expression] = STATE(1634),
- [sym_unary_expression] = STATE(1634),
- [sym_update_expression] = STATE(1634),
- [sym_string] = STATE(1650),
- [sym_template_string] = STATE(1650),
- [sym_regex] = STATE(1650),
- [sym_meta_property] = STATE(1650),
- [sym_decorator] = STATE(1244),
- [sym_formal_parameters] = STATE(3742),
- [sym_non_null_expression] = STATE(1251),
- [sym_as_expression] = STATE(1634),
- [sym_satisfies_expression] = STATE(1634),
- [sym_instantiation_expression] = STATE(1634),
- [sym_internal_module] = STATE(1634),
- [sym_type_parameters] = STATE(5349),
- [aux_sym_export_statement_repeat1] = STATE(4458),
- [sym_identifier] = ACTIONS(1428),
- [anon_sym_export] = ACTIONS(1044),
- [anon_sym_type] = ACTIONS(1044),
- [anon_sym_namespace] = ACTIONS(1046),
- [anon_sym_LBRACE] = ACTIONS(813),
- [anon_sym_typeof] = ACTIONS(650),
- [anon_sym_import] = ACTIONS(133),
- [anon_sym_let] = ACTIONS(1044),
- [anon_sym_BANG] = ACTIONS(622),
- [anon_sym_LPAREN] = ACTIONS(815),
- [anon_sym_await] = ACTIONS(624),
- [anon_sym_yield] = ACTIONS(626),
- [anon_sym_LBRACK] = ACTIONS(817),
- [sym_glimmer_opening_tag] = ACTIONS(148),
- [anon_sym_DQUOTE] = ACTIONS(150),
- [anon_sym_SQUOTE] = ACTIONS(152),
- [anon_sym_class] = ACTIONS(154),
- [anon_sym_async] = ACTIONS(1052),
- [anon_sym_function] = ACTIONS(158),
- [anon_sym_new] = ACTIONS(1436),
- [anon_sym_using] = ACTIONS(636),
- [anon_sym_PLUS] = ACTIONS(650),
- [anon_sym_DASH] = ACTIONS(650),
- [anon_sym_SLASH] = ACTIONS(646),
- [anon_sym_LT] = ACTIONS(181),
- [anon_sym_TILDE] = ACTIONS(622),
- [anon_sym_void] = ACTIONS(650),
- [anon_sym_delete] = ACTIONS(650),
- [anon_sym_PLUS_PLUS] = ACTIONS(652),
- [anon_sym_DASH_DASH] = ACTIONS(652),
- [sym_comment] = ACTIONS(5),
- [anon_sym_BQUOTE] = ACTIONS(825),
- [sym_number] = ACTIONS(787),
- [sym_private_property_identifier] = ACTIONS(654),
- [sym_this] = ACTIONS(200),
- [sym_super] = ACTIONS(200),
- [sym_true] = ACTIONS(200),
- [sym_false] = ACTIONS(200),
- [sym_null] = ACTIONS(200),
- [sym_undefined] = ACTIONS(1438),
- [anon_sym_AT] = ACTIONS(99),
- [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_override] = 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_object] = ACTIONS(1044),
- [sym_html_comment] = ACTIONS(5),
- },
- [573] = {
- [sym_import] = STATE(3306),
- [sym_parenthesized_expression] = STATE(1338),
- [sym_expression] = STATE(2040),
- [sym_primary_expression] = STATE(1946),
- [sym_yield_expression] = STATE(2234),
- [sym_object] = STATE(2310),
- [sym_object_pattern] = STATE(5571),
- [sym_array] = STATE(2310),
- [sym_array_pattern] = STATE(5571),
- [sym_glimmer_template] = STATE(2234),
- [sym_jsx_element] = STATE(2234),
- [sym_jsx_opening_element] = STATE(3051),
- [sym_jsx_self_closing_element] = STATE(2234),
- [sym_class] = STATE(2310),
- [sym_function_expression] = STATE(2310),
- [sym_generator_function] = STATE(2310),
- [sym_arrow_function] = STATE(2310),
- [sym__call_signature] = STATE(5569),
- [sym_call_expression] = STATE(2310),
- [sym_new_expression] = STATE(2234),
- [sym_await_expression] = STATE(2234),
- [sym_member_expression] = STATE(1338),
- [sym_subscript_expression] = STATE(1338),
- [sym_assignment_expression] = STATE(2234),
- [sym__augmented_assignment_lhs] = STATE(2899),
- [sym_augmented_assignment_expression] = STATE(2234),
- [sym__destructuring_pattern] = STATE(5571),
- [sym_ternary_expression] = STATE(2234),
- [sym_binary_expression] = STATE(2234),
- [sym_unary_expression] = STATE(2234),
- [sym_update_expression] = STATE(2234),
- [sym_string] = STATE(2310),
- [sym_template_string] = STATE(2310),
- [sym_regex] = STATE(2310),
- [sym_meta_property] = STATE(2310),
- [sym_decorator] = STATE(1244),
- [sym_formal_parameters] = STATE(3742),
- [sym_non_null_expression] = STATE(1338),
- [sym_as_expression] = STATE(2234),
- [sym_satisfies_expression] = STATE(2234),
- [sym_instantiation_expression] = STATE(2234),
- [sym_internal_module] = STATE(2234),
- [sym_type_parameters] = STATE(5349),
- [aux_sym_export_statement_repeat1] = STATE(4499),
- [sym_identifier] = ACTIONS(1454),
- [anon_sym_export] = ACTIONS(1152),
- [anon_sym_type] = ACTIONS(1152),
- [anon_sym_namespace] = ACTIONS(1154),
- [anon_sym_LBRACE] = ACTIONS(700),
- [anon_sym_typeof] = ACTIONS(1180),
- [anon_sym_import] = ACTIONS(133),
- [anon_sym_let] = ACTIONS(1152),
- [anon_sym_BANG] = ACTIONS(1160),
- [anon_sym_LPAREN] = ACTIONS(41),
- [anon_sym_await] = ACTIONS(1164),
- [anon_sym_yield] = ACTIONS(1166),
- [anon_sym_LBRACK] = ACTIONS(65),
- [sym_glimmer_opening_tag] = ACTIONS(67),
- [anon_sym_DQUOTE] = ACTIONS(69),
- [anon_sym_SQUOTE] = ACTIONS(71),
- [anon_sym_class] = ACTIONS(709),
- [anon_sym_async] = ACTIONS(1170),
- [anon_sym_function] = ACTIONS(713),
- [anon_sym_new] = ACTIONS(1458),
- [anon_sym_using] = ACTIONS(1174),
- [anon_sym_PLUS] = ACTIONS(1180),
- [anon_sym_DASH] = ACTIONS(1180),
- [anon_sym_SLASH] = ACTIONS(83),
- [anon_sym_LT] = ACTIONS(85),
- [anon_sym_TILDE] = ACTIONS(1160),
- [anon_sym_void] = ACTIONS(1180),
- [anon_sym_delete] = ACTIONS(1180),
- [anon_sym_PLUS_PLUS] = ACTIONS(1182),
- [anon_sym_DASH_DASH] = ACTIONS(1182),
- [sym_comment] = ACTIONS(5),
- [anon_sym_BQUOTE] = ACTIONS(89),
- [sym_number] = ACTIONS(91),
- [sym_private_property_identifier] = ACTIONS(1188),
- [sym_this] = ACTIONS(95),
- [sym_super] = ACTIONS(95),
- [sym_true] = ACTIONS(95),
- [sym_false] = ACTIONS(95),
- [sym_null] = ACTIONS(95),
- [sym_undefined] = ACTIONS(1460),
- [anon_sym_AT] = ACTIONS(99),
- [anon_sym_static] = ACTIONS(1152),
- [anon_sym_readonly] = ACTIONS(1152),
- [anon_sym_get] = ACTIONS(1152),
- [anon_sym_set] = ACTIONS(1152),
- [anon_sym_declare] = ACTIONS(1152),
- [anon_sym_public] = ACTIONS(1152),
- [anon_sym_private] = ACTIONS(1152),
- [anon_sym_protected] = ACTIONS(1152),
- [anon_sym_override] = ACTIONS(1152),
- [anon_sym_module] = ACTIONS(1152),
- [anon_sym_any] = ACTIONS(1152),
- [anon_sym_number] = ACTIONS(1152),
- [anon_sym_boolean] = ACTIONS(1152),
- [anon_sym_string] = ACTIONS(1152),
- [anon_sym_symbol] = ACTIONS(1152),
- [anon_sym_object] = ACTIONS(1152),
- [sym_html_comment] = ACTIONS(5),
- },
- [574] = {
- [sym_import] = STATE(3306),
- [sym_parenthesized_expression] = STATE(1338),
- [sym_expression] = STATE(2041),
- [sym_primary_expression] = STATE(1946),
- [sym_yield_expression] = STATE(2234),
- [sym_object] = STATE(2310),
- [sym_object_pattern] = STATE(5571),
- [sym_array] = STATE(2310),
- [sym_array_pattern] = STATE(5571),
- [sym_glimmer_template] = STATE(2234),
- [sym_jsx_element] = STATE(2234),
- [sym_jsx_opening_element] = STATE(3051),
- [sym_jsx_self_closing_element] = STATE(2234),
- [sym_class] = STATE(2310),
- [sym_function_expression] = STATE(2310),
- [sym_generator_function] = STATE(2310),
- [sym_arrow_function] = STATE(2310),
- [sym__call_signature] = STATE(5569),
- [sym_call_expression] = STATE(2310),
- [sym_new_expression] = STATE(2234),
- [sym_await_expression] = STATE(2234),
- [sym_member_expression] = STATE(1338),
- [sym_subscript_expression] = STATE(1338),
- [sym_assignment_expression] = STATE(2234),
- [sym__augmented_assignment_lhs] = STATE(2899),
- [sym_augmented_assignment_expression] = STATE(2234),
- [sym__destructuring_pattern] = STATE(5571),
- [sym_ternary_expression] = STATE(2234),
- [sym_binary_expression] = STATE(2234),
- [sym_unary_expression] = STATE(2234),
- [sym_update_expression] = STATE(2234),
- [sym_string] = STATE(2310),
- [sym_template_string] = STATE(2310),
- [sym_regex] = STATE(2310),
- [sym_meta_property] = STATE(2310),
- [sym_decorator] = STATE(1244),
- [sym_formal_parameters] = STATE(3742),
- [sym_non_null_expression] = STATE(1338),
- [sym_as_expression] = STATE(2234),
- [sym_satisfies_expression] = STATE(2234),
- [sym_instantiation_expression] = STATE(2234),
- [sym_internal_module] = STATE(2234),
- [sym_type_parameters] = STATE(5349),
- [aux_sym_export_statement_repeat1] = STATE(4499),
- [sym_identifier] = ACTIONS(1454),
- [anon_sym_export] = ACTIONS(1152),
- [anon_sym_type] = ACTIONS(1152),
- [anon_sym_namespace] = ACTIONS(1154),
- [anon_sym_LBRACE] = ACTIONS(700),
- [anon_sym_typeof] = ACTIONS(1180),
- [anon_sym_import] = ACTIONS(133),
- [anon_sym_let] = ACTIONS(1152),
- [anon_sym_BANG] = ACTIONS(1160),
- [anon_sym_LPAREN] = ACTIONS(41),
- [anon_sym_await] = ACTIONS(1164),
- [anon_sym_yield] = ACTIONS(1166),
- [anon_sym_LBRACK] = ACTIONS(65),
- [sym_glimmer_opening_tag] = ACTIONS(67),
- [anon_sym_DQUOTE] = ACTIONS(69),
- [anon_sym_SQUOTE] = ACTIONS(71),
- [anon_sym_class] = ACTIONS(709),
- [anon_sym_async] = ACTIONS(1170),
- [anon_sym_function] = ACTIONS(713),
- [anon_sym_new] = ACTIONS(1458),
- [anon_sym_using] = ACTIONS(1174),
- [anon_sym_PLUS] = ACTIONS(1180),
- [anon_sym_DASH] = ACTIONS(1180),
- [anon_sym_SLASH] = ACTIONS(83),
- [anon_sym_LT] = ACTIONS(85),
- [anon_sym_TILDE] = ACTIONS(1160),
- [anon_sym_void] = ACTIONS(1180),
- [anon_sym_delete] = ACTIONS(1180),
- [anon_sym_PLUS_PLUS] = ACTIONS(1182),
- [anon_sym_DASH_DASH] = ACTIONS(1182),
- [sym_comment] = ACTIONS(5),
- [anon_sym_BQUOTE] = ACTIONS(89),
- [sym_number] = ACTIONS(91),
- [sym_private_property_identifier] = ACTIONS(1188),
- [sym_this] = ACTIONS(95),
- [sym_super] = ACTIONS(95),
- [sym_true] = ACTIONS(95),
- [sym_false] = ACTIONS(95),
- [sym_null] = ACTIONS(95),
- [sym_undefined] = ACTIONS(1460),
- [anon_sym_AT] = ACTIONS(99),
- [anon_sym_static] = ACTIONS(1152),
- [anon_sym_readonly] = ACTIONS(1152),
- [anon_sym_get] = ACTIONS(1152),
- [anon_sym_set] = ACTIONS(1152),
- [anon_sym_declare] = ACTIONS(1152),
- [anon_sym_public] = ACTIONS(1152),
- [anon_sym_private] = ACTIONS(1152),
- [anon_sym_protected] = ACTIONS(1152),
- [anon_sym_override] = ACTIONS(1152),
- [anon_sym_module] = ACTIONS(1152),
- [anon_sym_any] = ACTIONS(1152),
- [anon_sym_number] = ACTIONS(1152),
- [anon_sym_boolean] = ACTIONS(1152),
- [anon_sym_string] = ACTIONS(1152),
- [anon_sym_symbol] = ACTIONS(1152),
- [anon_sym_object] = ACTIONS(1152),
- [sym_html_comment] = ACTIONS(5),
- },
- [575] = {
- [sym_import] = STATE(3306),
- [sym_parenthesized_expression] = STATE(1338),
- [sym_expression] = STATE(2043),
- [sym_primary_expression] = STATE(1946),
- [sym_yield_expression] = STATE(2234),
- [sym_object] = STATE(2310),
- [sym_object_pattern] = STATE(5571),
- [sym_array] = STATE(2310),
- [sym_array_pattern] = STATE(5571),
- [sym_glimmer_template] = STATE(2234),
- [sym_jsx_element] = STATE(2234),
- [sym_jsx_opening_element] = STATE(3051),
- [sym_jsx_self_closing_element] = STATE(2234),
- [sym_class] = STATE(2310),
- [sym_function_expression] = STATE(2310),
- [sym_generator_function] = STATE(2310),
- [sym_arrow_function] = STATE(2310),
- [sym__call_signature] = STATE(5569),
- [sym_call_expression] = STATE(2310),
- [sym_new_expression] = STATE(2234),
- [sym_await_expression] = STATE(2234),
- [sym_member_expression] = STATE(1338),
- [sym_subscript_expression] = STATE(1338),
- [sym_assignment_expression] = STATE(2234),
- [sym__augmented_assignment_lhs] = STATE(2899),
- [sym_augmented_assignment_expression] = STATE(2234),
- [sym__destructuring_pattern] = STATE(5571),
- [sym_ternary_expression] = STATE(2234),
- [sym_binary_expression] = STATE(2234),
- [sym_unary_expression] = STATE(2234),
- [sym_update_expression] = STATE(2234),
- [sym_string] = STATE(2310),
- [sym_template_string] = STATE(2310),
- [sym_regex] = STATE(2310),
- [sym_meta_property] = STATE(2310),
- [sym_decorator] = STATE(1244),
- [sym_formal_parameters] = STATE(3742),
- [sym_non_null_expression] = STATE(1338),
- [sym_as_expression] = STATE(2234),
- [sym_satisfies_expression] = STATE(2234),
- [sym_instantiation_expression] = STATE(2234),
- [sym_internal_module] = STATE(2234),
- [sym_type_parameters] = STATE(5349),
- [aux_sym_export_statement_repeat1] = STATE(4499),
- [sym_identifier] = ACTIONS(1454),
- [anon_sym_export] = ACTIONS(1152),
- [anon_sym_type] = ACTIONS(1152),
- [anon_sym_namespace] = ACTIONS(1154),
- [anon_sym_LBRACE] = ACTIONS(700),
- [anon_sym_typeof] = ACTIONS(1180),
- [anon_sym_import] = ACTIONS(133),
- [anon_sym_let] = ACTIONS(1152),
- [anon_sym_BANG] = ACTIONS(1160),
- [anon_sym_LPAREN] = ACTIONS(41),
- [anon_sym_await] = ACTIONS(1164),
- [anon_sym_yield] = ACTIONS(1166),
- [anon_sym_LBRACK] = ACTIONS(65),
- [sym_glimmer_opening_tag] = ACTIONS(67),
- [anon_sym_DQUOTE] = ACTIONS(69),
- [anon_sym_SQUOTE] = ACTIONS(71),
- [anon_sym_class] = ACTIONS(709),
- [anon_sym_async] = ACTIONS(1170),
- [anon_sym_function] = ACTIONS(713),
- [anon_sym_new] = ACTIONS(1458),
- [anon_sym_using] = ACTIONS(1174),
- [anon_sym_PLUS] = ACTIONS(1180),
- [anon_sym_DASH] = ACTIONS(1180),
- [anon_sym_SLASH] = ACTIONS(83),
- [anon_sym_LT] = ACTIONS(85),
- [anon_sym_TILDE] = ACTIONS(1160),
- [anon_sym_void] = ACTIONS(1180),
- [anon_sym_delete] = ACTIONS(1180),
- [anon_sym_PLUS_PLUS] = ACTIONS(1182),
- [anon_sym_DASH_DASH] = ACTIONS(1182),
- [sym_comment] = ACTIONS(5),
- [anon_sym_BQUOTE] = ACTIONS(89),
- [sym_number] = ACTIONS(91),
- [sym_private_property_identifier] = ACTIONS(1188),
- [sym_this] = ACTIONS(95),
- [sym_super] = ACTIONS(95),
- [sym_true] = ACTIONS(95),
- [sym_false] = ACTIONS(95),
- [sym_null] = ACTIONS(95),
- [sym_undefined] = ACTIONS(1460),
- [anon_sym_AT] = ACTIONS(99),
- [anon_sym_static] = ACTIONS(1152),
- [anon_sym_readonly] = ACTIONS(1152),
- [anon_sym_get] = ACTIONS(1152),
- [anon_sym_set] = ACTIONS(1152),
- [anon_sym_declare] = ACTIONS(1152),
- [anon_sym_public] = ACTIONS(1152),
- [anon_sym_private] = ACTIONS(1152),
- [anon_sym_protected] = ACTIONS(1152),
- [anon_sym_override] = ACTIONS(1152),
- [anon_sym_module] = ACTIONS(1152),
- [anon_sym_any] = ACTIONS(1152),
- [anon_sym_number] = ACTIONS(1152),
- [anon_sym_boolean] = ACTIONS(1152),
- [anon_sym_string] = ACTIONS(1152),
- [anon_sym_symbol] = ACTIONS(1152),
- [anon_sym_object] = ACTIONS(1152),
- [sym_html_comment] = ACTIONS(5),
- },
- [576] = {
- [sym_import] = STATE(3334),
- [sym_parenthesized_expression] = STATE(1251),
- [sym_expression] = STATE(1806),
- [sym_primary_expression] = STATE(1468),
- [sym_yield_expression] = STATE(1634),
- [sym_object] = STATE(1650),
- [sym_object_pattern] = STATE(5633),
- [sym_array] = STATE(1650),
- [sym_array_pattern] = STATE(5633),
- [sym_glimmer_template] = STATE(1634),
- [sym_jsx_element] = STATE(1634),
- [sym_jsx_opening_element] = STATE(3026),
- [sym_jsx_self_closing_element] = STATE(1634),
- [sym_class] = STATE(1650),
- [sym_function_expression] = STATE(1650),
- [sym_generator_function] = STATE(1650),
- [sym_arrow_function] = STATE(1650),
- [sym__call_signature] = STATE(5828),
- [sym_call_expression] = STATE(1650),
- [sym_new_expression] = STATE(1634),
- [sym_await_expression] = STATE(1634),
- [sym_member_expression] = STATE(1251),
- [sym_subscript_expression] = STATE(1251),
- [sym_assignment_expression] = STATE(1634),
- [sym__augmented_assignment_lhs] = STATE(2900),
- [sym_augmented_assignment_expression] = STATE(1634),
- [sym__destructuring_pattern] = STATE(5633),
- [sym_ternary_expression] = STATE(1634),
- [sym_binary_expression] = STATE(1634),
- [sym_unary_expression] = STATE(1634),
- [sym_update_expression] = STATE(1634),
- [sym_string] = STATE(1650),
- [sym_template_string] = STATE(1650),
- [sym_regex] = STATE(1650),
- [sym_meta_property] = STATE(1650),
- [sym_decorator] = STATE(1244),
- [sym_formal_parameters] = STATE(3742),
- [sym_non_null_expression] = STATE(1251),
- [sym_as_expression] = STATE(1634),
- [sym_satisfies_expression] = STATE(1634),
- [sym_instantiation_expression] = STATE(1634),
- [sym_internal_module] = STATE(1634),
- [sym_type_parameters] = STATE(5349),
- [aux_sym_export_statement_repeat1] = STATE(4458),
- [sym_identifier] = ACTIONS(1428),
- [anon_sym_export] = ACTIONS(1044),
- [anon_sym_type] = ACTIONS(1044),
- [anon_sym_namespace] = ACTIONS(1046),
- [anon_sym_LBRACE] = ACTIONS(813),
- [anon_sym_typeof] = ACTIONS(650),
- [anon_sym_import] = ACTIONS(133),
- [anon_sym_let] = ACTIONS(1044),
- [anon_sym_BANG] = ACTIONS(622),
- [anon_sym_LPAREN] = ACTIONS(815),
- [anon_sym_await] = ACTIONS(624),
- [anon_sym_yield] = ACTIONS(626),
- [anon_sym_LBRACK] = ACTIONS(817),
- [sym_glimmer_opening_tag] = ACTIONS(148),
- [anon_sym_DQUOTE] = ACTIONS(150),
- [anon_sym_SQUOTE] = ACTIONS(152),
- [anon_sym_class] = ACTIONS(154),
- [anon_sym_async] = ACTIONS(1052),
- [anon_sym_function] = ACTIONS(158),
- [anon_sym_new] = ACTIONS(1436),
- [anon_sym_using] = ACTIONS(636),
- [anon_sym_PLUS] = ACTIONS(650),
- [anon_sym_DASH] = ACTIONS(650),
- [anon_sym_SLASH] = ACTIONS(646),
- [anon_sym_LT] = ACTIONS(181),
- [anon_sym_TILDE] = ACTIONS(622),
- [anon_sym_void] = ACTIONS(650),
- [anon_sym_delete] = ACTIONS(650),
- [anon_sym_PLUS_PLUS] = ACTIONS(652),
- [anon_sym_DASH_DASH] = ACTIONS(652),
- [sym_comment] = ACTIONS(5),
- [anon_sym_BQUOTE] = ACTIONS(825),
- [sym_number] = ACTIONS(787),
- [sym_private_property_identifier] = ACTIONS(654),
- [sym_this] = ACTIONS(200),
- [sym_super] = ACTIONS(200),
- [sym_true] = ACTIONS(200),
- [sym_false] = ACTIONS(200),
- [sym_null] = ACTIONS(200),
- [sym_undefined] = ACTIONS(1438),
- [anon_sym_AT] = ACTIONS(99),
- [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_override] = 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_object] = ACTIONS(1044),
- [sym_html_comment] = ACTIONS(5),
- },
- [577] = {
- [sym_import] = STATE(3334),
- [sym_parenthesized_expression] = STATE(1327),
- [sym_expression] = STATE(1890),
- [sym_primary_expression] = STATE(1468),
- [sym_yield_expression] = STATE(1634),
- [sym_object] = STATE(1650),
- [sym_object_pattern] = STATE(5821),
- [sym_array] = STATE(1650),
- [sym_array_pattern] = STATE(5821),
- [sym_glimmer_template] = STATE(1634),
- [sym_jsx_element] = STATE(1634),
- [sym_jsx_opening_element] = STATE(3026),
- [sym_jsx_self_closing_element] = STATE(1634),
- [sym_class] = STATE(1650),
- [sym_function_expression] = STATE(1650),
- [sym_generator_function] = STATE(1650),
- [sym_arrow_function] = STATE(1650),
- [sym__call_signature] = STATE(5743),
- [sym_call_expression] = STATE(1650),
- [sym_new_expression] = STATE(1634),
- [sym_await_expression] = STATE(1634),
- [sym_member_expression] = STATE(1327),
- [sym_subscript_expression] = STATE(1327),
- [sym_assignment_expression] = STATE(1634),
- [sym__augmented_assignment_lhs] = STATE(2919),
- [sym_augmented_assignment_expression] = STATE(1634),
- [sym__destructuring_pattern] = STATE(5821),
- [sym_ternary_expression] = STATE(1634),
- [sym_binary_expression] = STATE(1634),
- [sym_unary_expression] = STATE(1634),
- [sym_update_expression] = STATE(1634),
- [sym_string] = STATE(1650),
- [sym_template_string] = STATE(1650),
- [sym_regex] = STATE(1650),
- [sym_meta_property] = STATE(1650),
- [sym_decorator] = STATE(1244),
- [sym_formal_parameters] = STATE(3742),
- [sym_non_null_expression] = STATE(1327),
- [sym_as_expression] = STATE(1634),
- [sym_satisfies_expression] = STATE(1634),
- [sym_instantiation_expression] = STATE(1634),
- [sym_internal_module] = STATE(1634),
- [sym_type_parameters] = STATE(5349),
- [aux_sym_export_statement_repeat1] = STATE(4458),
- [sym_identifier] = ACTIONS(1462),
- [anon_sym_export] = ACTIONS(1286),
- [anon_sym_type] = ACTIONS(1286),
- [anon_sym_namespace] = ACTIONS(1288),
- [anon_sym_LBRACE] = ACTIONS(813),
- [anon_sym_typeof] = ACTIONS(1308),
- [anon_sym_import] = ACTIONS(133),
- [anon_sym_let] = ACTIONS(1286),
- [anon_sym_BANG] = ACTIONS(1292),
- [anon_sym_LPAREN] = ACTIONS(815),
- [anon_sym_await] = ACTIONS(1294),
- [anon_sym_yield] = ACTIONS(1296),
- [anon_sym_LBRACK] = ACTIONS(817),
- [sym_glimmer_opening_tag] = ACTIONS(148),
- [anon_sym_DQUOTE] = ACTIONS(150),
- [anon_sym_SQUOTE] = ACTIONS(152),
- [anon_sym_class] = ACTIONS(154),
- [anon_sym_async] = ACTIONS(1298),
- [anon_sym_function] = ACTIONS(158),
- [anon_sym_new] = ACTIONS(1466),
- [anon_sym_using] = ACTIONS(1302),
- [anon_sym_PLUS] = ACTIONS(1308),
- [anon_sym_DASH] = ACTIONS(1308),
- [anon_sym_SLASH] = ACTIONS(922),
- [anon_sym_LT] = ACTIONS(181),
- [anon_sym_TILDE] = ACTIONS(1292),
- [anon_sym_void] = ACTIONS(1308),
- [anon_sym_delete] = ACTIONS(1308),
- [anon_sym_PLUS_PLUS] = ACTIONS(1310),
- [anon_sym_DASH_DASH] = ACTIONS(1310),
- [sym_comment] = ACTIONS(5),
- [anon_sym_BQUOTE] = ACTIONS(825),
- [sym_number] = ACTIONS(787),
- [sym_private_property_identifier] = ACTIONS(1312),
- [sym_this] = ACTIONS(200),
- [sym_super] = ACTIONS(200),
- [sym_true] = ACTIONS(200),
- [sym_false] = ACTIONS(200),
- [sym_null] = ACTIONS(200),
- [sym_undefined] = ACTIONS(1468),
- [anon_sym_AT] = ACTIONS(99),
- [anon_sym_static] = ACTIONS(1286),
- [anon_sym_readonly] = ACTIONS(1286),
- [anon_sym_get] = ACTIONS(1286),
- [anon_sym_set] = ACTIONS(1286),
- [anon_sym_declare] = ACTIONS(1286),
- [anon_sym_public] = ACTIONS(1286),
- [anon_sym_private] = ACTIONS(1286),
- [anon_sym_protected] = ACTIONS(1286),
- [anon_sym_override] = ACTIONS(1286),
- [anon_sym_module] = ACTIONS(1286),
- [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_object] = ACTIONS(1286),
- [sym_html_comment] = ACTIONS(5),
- },
- [578] = {
- [sym_import] = STATE(3334),
- [sym_parenthesized_expression] = STATE(1327),
- [sym_expression] = STATE(1858),
- [sym_primary_expression] = STATE(1468),
- [sym_yield_expression] = STATE(1634),
- [sym_object] = STATE(1650),
- [sym_object_pattern] = STATE(5821),
- [sym_array] = STATE(1650),
- [sym_array_pattern] = STATE(5821),
- [sym_glimmer_template] = STATE(1634),
- [sym_jsx_element] = STATE(1634),
- [sym_jsx_opening_element] = STATE(3026),
- [sym_jsx_self_closing_element] = STATE(1634),
- [sym_class] = STATE(1650),
- [sym_function_expression] = STATE(1650),
- [sym_generator_function] = STATE(1650),
- [sym_arrow_function] = STATE(1650),
- [sym__call_signature] = STATE(5743),
- [sym_call_expression] = STATE(1650),
- [sym_new_expression] = STATE(1634),
- [sym_await_expression] = STATE(1634),
- [sym_member_expression] = STATE(1327),
- [sym_subscript_expression] = STATE(1327),
- [sym_assignment_expression] = STATE(1634),
- [sym__augmented_assignment_lhs] = STATE(2919),
- [sym_augmented_assignment_expression] = STATE(1634),
- [sym__destructuring_pattern] = STATE(5821),
- [sym_ternary_expression] = STATE(1634),
- [sym_binary_expression] = STATE(1634),
- [sym_unary_expression] = STATE(1634),
- [sym_update_expression] = STATE(1634),
- [sym_string] = STATE(1650),
- [sym_template_string] = STATE(1650),
- [sym_regex] = STATE(1650),
- [sym_meta_property] = STATE(1650),
- [sym_decorator] = STATE(1244),
- [sym_formal_parameters] = STATE(3742),
- [sym_non_null_expression] = STATE(1327),
- [sym_as_expression] = STATE(1634),
- [sym_satisfies_expression] = STATE(1634),
- [sym_instantiation_expression] = STATE(1634),
- [sym_internal_module] = STATE(1634),
- [sym_type_parameters] = STATE(5349),
- [aux_sym_export_statement_repeat1] = STATE(4458),
- [sym_identifier] = ACTIONS(1462),
- [anon_sym_export] = ACTIONS(1286),
- [anon_sym_type] = ACTIONS(1286),
- [anon_sym_namespace] = ACTIONS(1288),
- [anon_sym_LBRACE] = ACTIONS(813),
- [anon_sym_typeof] = ACTIONS(1308),
- [anon_sym_import] = ACTIONS(133),
- [anon_sym_let] = ACTIONS(1286),
- [anon_sym_BANG] = ACTIONS(1292),
- [anon_sym_LPAREN] = ACTIONS(815),
- [anon_sym_await] = ACTIONS(1294),
- [anon_sym_yield] = ACTIONS(1296),
- [anon_sym_LBRACK] = ACTIONS(817),
- [sym_glimmer_opening_tag] = ACTIONS(148),
- [anon_sym_DQUOTE] = ACTIONS(150),
- [anon_sym_SQUOTE] = ACTIONS(152),
- [anon_sym_class] = ACTIONS(154),
- [anon_sym_async] = ACTIONS(1298),
- [anon_sym_function] = ACTIONS(158),
- [anon_sym_new] = ACTIONS(1466),
- [anon_sym_using] = ACTIONS(1302),
- [anon_sym_PLUS] = ACTIONS(1308),
- [anon_sym_DASH] = ACTIONS(1308),
- [anon_sym_SLASH] = ACTIONS(922),
- [anon_sym_LT] = ACTIONS(181),
- [anon_sym_TILDE] = ACTIONS(1292),
- [anon_sym_void] = ACTIONS(1308),
- [anon_sym_delete] = ACTIONS(1308),
- [anon_sym_PLUS_PLUS] = ACTIONS(1310),
- [anon_sym_DASH_DASH] = ACTIONS(1310),
- [sym_comment] = ACTIONS(5),
- [anon_sym_BQUOTE] = ACTIONS(825),
- [sym_number] = ACTIONS(787),
- [sym_private_property_identifier] = ACTIONS(1312),
- [sym_this] = ACTIONS(200),
- [sym_super] = ACTIONS(200),
- [sym_true] = ACTIONS(200),
- [sym_false] = ACTIONS(200),
- [sym_null] = ACTIONS(200),
- [sym_undefined] = ACTIONS(1468),
- [anon_sym_AT] = ACTIONS(99),
- [anon_sym_static] = ACTIONS(1286),
- [anon_sym_readonly] = ACTIONS(1286),
- [anon_sym_get] = ACTIONS(1286),
- [anon_sym_set] = ACTIONS(1286),
- [anon_sym_declare] = ACTIONS(1286),
- [anon_sym_public] = ACTIONS(1286),
- [anon_sym_private] = ACTIONS(1286),
- [anon_sym_protected] = ACTIONS(1286),
- [anon_sym_override] = ACTIONS(1286),
- [anon_sym_module] = ACTIONS(1286),
- [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_object] = ACTIONS(1286),
- [sym_html_comment] = ACTIONS(5),
- },
- [579] = {
- [sym_import] = STATE(3334),
- [sym_parenthesized_expression] = STATE(1327),
- [sym_expression] = STATE(1859),
- [sym_primary_expression] = STATE(1468),
- [sym_yield_expression] = STATE(1634),
- [sym_object] = STATE(1650),
- [sym_object_pattern] = STATE(5821),
- [sym_array] = STATE(1650),
- [sym_array_pattern] = STATE(5821),
- [sym_glimmer_template] = STATE(1634),
- [sym_jsx_element] = STATE(1634),
- [sym_jsx_opening_element] = STATE(3026),
- [sym_jsx_self_closing_element] = STATE(1634),
- [sym_class] = STATE(1650),
- [sym_function_expression] = STATE(1650),
- [sym_generator_function] = STATE(1650),
- [sym_arrow_function] = STATE(1650),
- [sym__call_signature] = STATE(5743),
- [sym_call_expression] = STATE(1650),
- [sym_new_expression] = STATE(1634),
- [sym_await_expression] = STATE(1634),
- [sym_member_expression] = STATE(1327),
- [sym_subscript_expression] = STATE(1327),
- [sym_assignment_expression] = STATE(1634),
- [sym__augmented_assignment_lhs] = STATE(2919),
- [sym_augmented_assignment_expression] = STATE(1634),
- [sym__destructuring_pattern] = STATE(5821),
- [sym_ternary_expression] = STATE(1634),
- [sym_binary_expression] = STATE(1634),
- [sym_unary_expression] = STATE(1634),
- [sym_update_expression] = STATE(1634),
- [sym_string] = STATE(1650),
- [sym_template_string] = STATE(1650),
- [sym_regex] = STATE(1650),
- [sym_meta_property] = STATE(1650),
- [sym_decorator] = STATE(1244),
- [sym_formal_parameters] = STATE(3742),
- [sym_non_null_expression] = STATE(1327),
- [sym_as_expression] = STATE(1634),
- [sym_satisfies_expression] = STATE(1634),
- [sym_instantiation_expression] = STATE(1634),
- [sym_internal_module] = STATE(1634),
- [sym_type_parameters] = STATE(5349),
- [aux_sym_export_statement_repeat1] = STATE(4458),
- [sym_identifier] = ACTIONS(1462),
- [anon_sym_export] = ACTIONS(1286),
- [anon_sym_type] = ACTIONS(1286),
- [anon_sym_namespace] = ACTIONS(1288),
- [anon_sym_LBRACE] = ACTIONS(813),
- [anon_sym_typeof] = ACTIONS(1308),
- [anon_sym_import] = ACTIONS(133),
- [anon_sym_let] = ACTIONS(1286),
- [anon_sym_BANG] = ACTIONS(1292),
- [anon_sym_LPAREN] = ACTIONS(815),
- [anon_sym_await] = ACTIONS(1294),
- [anon_sym_yield] = ACTIONS(1296),
- [anon_sym_LBRACK] = ACTIONS(817),
- [sym_glimmer_opening_tag] = ACTIONS(148),
- [anon_sym_DQUOTE] = ACTIONS(150),
- [anon_sym_SQUOTE] = ACTIONS(152),
- [anon_sym_class] = ACTIONS(154),
- [anon_sym_async] = ACTIONS(1298),
- [anon_sym_function] = ACTIONS(158),
- [anon_sym_new] = ACTIONS(1466),
- [anon_sym_using] = ACTIONS(1302),
- [anon_sym_PLUS] = ACTIONS(1308),
- [anon_sym_DASH] = ACTIONS(1308),
- [anon_sym_SLASH] = ACTIONS(922),
- [anon_sym_LT] = ACTIONS(181),
- [anon_sym_TILDE] = ACTIONS(1292),
- [anon_sym_void] = ACTIONS(1308),
- [anon_sym_delete] = ACTIONS(1308),
- [anon_sym_PLUS_PLUS] = ACTIONS(1310),
- [anon_sym_DASH_DASH] = ACTIONS(1310),
- [sym_comment] = ACTIONS(5),
- [anon_sym_BQUOTE] = ACTIONS(825),
- [sym_number] = ACTIONS(787),
- [sym_private_property_identifier] = ACTIONS(1312),
- [sym_this] = ACTIONS(200),
- [sym_super] = ACTIONS(200),
- [sym_true] = ACTIONS(200),
- [sym_false] = ACTIONS(200),
- [sym_null] = ACTIONS(200),
- [sym_undefined] = ACTIONS(1468),
- [anon_sym_AT] = ACTIONS(99),
- [anon_sym_static] = ACTIONS(1286),
- [anon_sym_readonly] = ACTIONS(1286),
- [anon_sym_get] = ACTIONS(1286),
- [anon_sym_set] = ACTIONS(1286),
- [anon_sym_declare] = ACTIONS(1286),
- [anon_sym_public] = ACTIONS(1286),
- [anon_sym_private] = ACTIONS(1286),
- [anon_sym_protected] = ACTIONS(1286),
- [anon_sym_override] = ACTIONS(1286),
- [anon_sym_module] = ACTIONS(1286),
- [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_object] = ACTIONS(1286),
- [sym_html_comment] = ACTIONS(5),
- },
- [580] = {
- [sym_import] = STATE(3334),
- [sym_parenthesized_expression] = STATE(1327),
- [sym_expression] = STATE(1860),
- [sym_primary_expression] = STATE(1468),
- [sym_yield_expression] = STATE(1634),
- [sym_object] = STATE(1650),
- [sym_object_pattern] = STATE(5821),
- [sym_array] = STATE(1650),
- [sym_array_pattern] = STATE(5821),
- [sym_glimmer_template] = STATE(1634),
- [sym_jsx_element] = STATE(1634),
- [sym_jsx_opening_element] = STATE(3026),
- [sym_jsx_self_closing_element] = STATE(1634),
- [sym_class] = STATE(1650),
- [sym_function_expression] = STATE(1650),
- [sym_generator_function] = STATE(1650),
- [sym_arrow_function] = STATE(1650),
- [sym__call_signature] = STATE(5743),
- [sym_call_expression] = STATE(1650),
- [sym_new_expression] = STATE(1634),
- [sym_await_expression] = STATE(1634),
- [sym_member_expression] = STATE(1327),
- [sym_subscript_expression] = STATE(1327),
- [sym_assignment_expression] = STATE(1634),
- [sym__augmented_assignment_lhs] = STATE(2919),
- [sym_augmented_assignment_expression] = STATE(1634),
- [sym__destructuring_pattern] = STATE(5821),
- [sym_ternary_expression] = STATE(1634),
- [sym_binary_expression] = STATE(1634),
- [sym_unary_expression] = STATE(1634),
- [sym_update_expression] = STATE(1634),
- [sym_string] = STATE(1650),
- [sym_template_string] = STATE(1650),
- [sym_regex] = STATE(1650),
- [sym_meta_property] = STATE(1650),
- [sym_decorator] = STATE(1244),
- [sym_formal_parameters] = STATE(3742),
- [sym_non_null_expression] = STATE(1327),
- [sym_as_expression] = STATE(1634),
- [sym_satisfies_expression] = STATE(1634),
- [sym_instantiation_expression] = STATE(1634),
- [sym_internal_module] = STATE(1634),
- [sym_type_parameters] = STATE(5349),
- [aux_sym_export_statement_repeat1] = STATE(4458),
- [sym_identifier] = ACTIONS(1462),
- [anon_sym_export] = ACTIONS(1286),
- [anon_sym_type] = ACTIONS(1286),
- [anon_sym_namespace] = ACTIONS(1288),
- [anon_sym_LBRACE] = ACTIONS(813),
- [anon_sym_typeof] = ACTIONS(1308),
- [anon_sym_import] = ACTIONS(133),
- [anon_sym_let] = ACTIONS(1286),
- [anon_sym_BANG] = ACTIONS(1292),
- [anon_sym_LPAREN] = ACTIONS(815),
- [anon_sym_await] = ACTIONS(1294),
- [anon_sym_yield] = ACTIONS(1296),
- [anon_sym_LBRACK] = ACTIONS(817),
- [sym_glimmer_opening_tag] = ACTIONS(148),
- [anon_sym_DQUOTE] = ACTIONS(150),
- [anon_sym_SQUOTE] = ACTIONS(152),
- [anon_sym_class] = ACTIONS(154),
- [anon_sym_async] = ACTIONS(1298),
- [anon_sym_function] = ACTIONS(158),
- [anon_sym_new] = ACTIONS(1466),
- [anon_sym_using] = ACTIONS(1302),
- [anon_sym_PLUS] = ACTIONS(1308),
- [anon_sym_DASH] = ACTIONS(1308),
- [anon_sym_SLASH] = ACTIONS(922),
- [anon_sym_LT] = ACTIONS(181),
- [anon_sym_TILDE] = ACTIONS(1292),
- [anon_sym_void] = ACTIONS(1308),
- [anon_sym_delete] = ACTIONS(1308),
- [anon_sym_PLUS_PLUS] = ACTIONS(1310),
- [anon_sym_DASH_DASH] = ACTIONS(1310),
- [sym_comment] = ACTIONS(5),
- [anon_sym_BQUOTE] = ACTIONS(825),
- [sym_number] = ACTIONS(787),
- [sym_private_property_identifier] = ACTIONS(1312),
- [sym_this] = ACTIONS(200),
- [sym_super] = ACTIONS(200),
- [sym_true] = ACTIONS(200),
- [sym_false] = ACTIONS(200),
- [sym_null] = ACTIONS(200),
- [sym_undefined] = ACTIONS(1468),
- [anon_sym_AT] = ACTIONS(99),
- [anon_sym_static] = ACTIONS(1286),
- [anon_sym_readonly] = ACTIONS(1286),
- [anon_sym_get] = ACTIONS(1286),
- [anon_sym_set] = ACTIONS(1286),
- [anon_sym_declare] = ACTIONS(1286),
- [anon_sym_public] = ACTIONS(1286),
- [anon_sym_private] = ACTIONS(1286),
- [anon_sym_protected] = ACTIONS(1286),
- [anon_sym_override] = ACTIONS(1286),
- [anon_sym_module] = ACTIONS(1286),
- [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_object] = ACTIONS(1286),
- [sym_html_comment] = ACTIONS(5),
- },
- [581] = {
- [sym_import] = STATE(3334),
- [sym_parenthesized_expression] = STATE(1327),
- [sym_expression] = STATE(1862),
- [sym_primary_expression] = STATE(1468),
- [sym_yield_expression] = STATE(1634),
- [sym_object] = STATE(1650),
- [sym_object_pattern] = STATE(5821),
- [sym_array] = STATE(1650),
- [sym_array_pattern] = STATE(5821),
- [sym_glimmer_template] = STATE(1634),
- [sym_jsx_element] = STATE(1634),
- [sym_jsx_opening_element] = STATE(3026),
- [sym_jsx_self_closing_element] = STATE(1634),
- [sym_class] = STATE(1650),
- [sym_function_expression] = STATE(1650),
- [sym_generator_function] = STATE(1650),
- [sym_arrow_function] = STATE(1650),
- [sym__call_signature] = STATE(5743),
- [sym_call_expression] = STATE(1650),
- [sym_new_expression] = STATE(1634),
- [sym_await_expression] = STATE(1634),
- [sym_member_expression] = STATE(1327),
- [sym_subscript_expression] = STATE(1327),
- [sym_assignment_expression] = STATE(1634),
- [sym__augmented_assignment_lhs] = STATE(2919),
- [sym_augmented_assignment_expression] = STATE(1634),
- [sym__destructuring_pattern] = STATE(5821),
- [sym_ternary_expression] = STATE(1634),
- [sym_binary_expression] = STATE(1634),
- [sym_unary_expression] = STATE(1634),
- [sym_update_expression] = STATE(1634),
- [sym_string] = STATE(1650),
- [sym_template_string] = STATE(1650),
- [sym_regex] = STATE(1650),
- [sym_meta_property] = STATE(1650),
- [sym_decorator] = STATE(1244),
- [sym_formal_parameters] = STATE(3742),
- [sym_non_null_expression] = STATE(1327),
- [sym_as_expression] = STATE(1634),
- [sym_satisfies_expression] = STATE(1634),
- [sym_instantiation_expression] = STATE(1634),
- [sym_internal_module] = STATE(1634),
- [sym_type_parameters] = STATE(5349),
- [aux_sym_export_statement_repeat1] = STATE(4458),
- [sym_identifier] = ACTIONS(1462),
- [anon_sym_export] = ACTIONS(1286),
- [anon_sym_type] = ACTIONS(1286),
- [anon_sym_namespace] = ACTIONS(1288),
- [anon_sym_LBRACE] = ACTIONS(813),
- [anon_sym_typeof] = ACTIONS(1308),
- [anon_sym_import] = ACTIONS(133),
- [anon_sym_let] = ACTIONS(1286),
- [anon_sym_BANG] = ACTIONS(1292),
- [anon_sym_LPAREN] = ACTIONS(815),
- [anon_sym_await] = ACTIONS(1294),
- [anon_sym_yield] = ACTIONS(1296),
- [anon_sym_LBRACK] = ACTIONS(817),
- [sym_glimmer_opening_tag] = ACTIONS(148),
- [anon_sym_DQUOTE] = ACTIONS(150),
- [anon_sym_SQUOTE] = ACTIONS(152),
- [anon_sym_class] = ACTIONS(154),
- [anon_sym_async] = ACTIONS(1298),
- [anon_sym_function] = ACTIONS(158),
- [anon_sym_new] = ACTIONS(1466),
- [anon_sym_using] = ACTIONS(1302),
- [anon_sym_PLUS] = ACTIONS(1308),
- [anon_sym_DASH] = ACTIONS(1308),
- [anon_sym_SLASH] = ACTIONS(922),
- [anon_sym_LT] = ACTIONS(181),
- [anon_sym_TILDE] = ACTIONS(1292),
- [anon_sym_void] = ACTIONS(1308),
- [anon_sym_delete] = ACTIONS(1308),
- [anon_sym_PLUS_PLUS] = ACTIONS(1310),
- [anon_sym_DASH_DASH] = ACTIONS(1310),
- [sym_comment] = ACTIONS(5),
- [anon_sym_BQUOTE] = ACTIONS(825),
- [sym_number] = ACTIONS(787),
- [sym_private_property_identifier] = ACTIONS(1312),
- [sym_this] = ACTIONS(200),
- [sym_super] = ACTIONS(200),
- [sym_true] = ACTIONS(200),
- [sym_false] = ACTIONS(200),
- [sym_null] = ACTIONS(200),
- [sym_undefined] = ACTIONS(1468),
- [anon_sym_AT] = ACTIONS(99),
- [anon_sym_static] = ACTIONS(1286),
- [anon_sym_readonly] = ACTIONS(1286),
- [anon_sym_get] = ACTIONS(1286),
- [anon_sym_set] = ACTIONS(1286),
- [anon_sym_declare] = ACTIONS(1286),
- [anon_sym_public] = ACTIONS(1286),
- [anon_sym_private] = ACTIONS(1286),
- [anon_sym_protected] = ACTIONS(1286),
- [anon_sym_override] = ACTIONS(1286),
- [anon_sym_module] = ACTIONS(1286),
- [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_object] = ACTIONS(1286),
- [sym_html_comment] = ACTIONS(5),
- },
- [582] = {
- [sym_import] = STATE(3334),
- [sym_parenthesized_expression] = STATE(1327),
- [sym_expression] = STATE(1863),
- [sym_primary_expression] = STATE(1468),
- [sym_yield_expression] = STATE(1634),
- [sym_object] = STATE(1650),
- [sym_object_pattern] = STATE(5821),
- [sym_array] = STATE(1650),
- [sym_array_pattern] = STATE(5821),
- [sym_glimmer_template] = STATE(1634),
- [sym_jsx_element] = STATE(1634),
- [sym_jsx_opening_element] = STATE(3026),
- [sym_jsx_self_closing_element] = STATE(1634),
- [sym_class] = STATE(1650),
- [sym_function_expression] = STATE(1650),
- [sym_generator_function] = STATE(1650),
- [sym_arrow_function] = STATE(1650),
- [sym__call_signature] = STATE(5743),
- [sym_call_expression] = STATE(1650),
- [sym_new_expression] = STATE(1634),
- [sym_await_expression] = STATE(1634),
- [sym_member_expression] = STATE(1327),
- [sym_subscript_expression] = STATE(1327),
- [sym_assignment_expression] = STATE(1634),
- [sym__augmented_assignment_lhs] = STATE(2919),
- [sym_augmented_assignment_expression] = STATE(1634),
- [sym__destructuring_pattern] = STATE(5821),
- [sym_ternary_expression] = STATE(1634),
- [sym_binary_expression] = STATE(1634),
- [sym_unary_expression] = STATE(1634),
- [sym_update_expression] = STATE(1634),
- [sym_string] = STATE(1650),
- [sym_template_string] = STATE(1650),
- [sym_regex] = STATE(1650),
- [sym_meta_property] = STATE(1650),
- [sym_decorator] = STATE(1244),
- [sym_formal_parameters] = STATE(3742),
- [sym_non_null_expression] = STATE(1327),
- [sym_as_expression] = STATE(1634),
- [sym_satisfies_expression] = STATE(1634),
- [sym_instantiation_expression] = STATE(1634),
- [sym_internal_module] = STATE(1634),
- [sym_type_parameters] = STATE(5349),
- [aux_sym_export_statement_repeat1] = STATE(4458),
- [sym_identifier] = ACTIONS(1462),
- [anon_sym_export] = ACTIONS(1286),
- [anon_sym_type] = ACTIONS(1286),
- [anon_sym_namespace] = ACTIONS(1288),
- [anon_sym_LBRACE] = ACTIONS(813),
- [anon_sym_typeof] = ACTIONS(1308),
- [anon_sym_import] = ACTIONS(133),
- [anon_sym_let] = ACTIONS(1286),
- [anon_sym_BANG] = ACTIONS(1292),
- [anon_sym_LPAREN] = ACTIONS(815),
- [anon_sym_await] = ACTIONS(1294),
- [anon_sym_yield] = ACTIONS(1296),
- [anon_sym_LBRACK] = ACTIONS(817),
- [sym_glimmer_opening_tag] = ACTIONS(148),
- [anon_sym_DQUOTE] = ACTIONS(150),
- [anon_sym_SQUOTE] = ACTIONS(152),
- [anon_sym_class] = ACTIONS(154),
- [anon_sym_async] = ACTIONS(1298),
- [anon_sym_function] = ACTIONS(158),
- [anon_sym_new] = ACTIONS(1466),
- [anon_sym_using] = ACTIONS(1302),
- [anon_sym_PLUS] = ACTIONS(1308),
- [anon_sym_DASH] = ACTIONS(1308),
- [anon_sym_SLASH] = ACTIONS(922),
- [anon_sym_LT] = ACTIONS(181),
- [anon_sym_TILDE] = ACTIONS(1292),
- [anon_sym_void] = ACTIONS(1308),
- [anon_sym_delete] = ACTIONS(1308),
- [anon_sym_PLUS_PLUS] = ACTIONS(1310),
- [anon_sym_DASH_DASH] = ACTIONS(1310),
- [sym_comment] = ACTIONS(5),
- [anon_sym_BQUOTE] = ACTIONS(825),
- [sym_number] = ACTIONS(787),
- [sym_private_property_identifier] = ACTIONS(1312),
- [sym_this] = ACTIONS(200),
- [sym_super] = ACTIONS(200),
- [sym_true] = ACTIONS(200),
- [sym_false] = ACTIONS(200),
- [sym_null] = ACTIONS(200),
- [sym_undefined] = ACTIONS(1468),
- [anon_sym_AT] = ACTIONS(99),
- [anon_sym_static] = ACTIONS(1286),
- [anon_sym_readonly] = ACTIONS(1286),
- [anon_sym_get] = ACTIONS(1286),
- [anon_sym_set] = ACTIONS(1286),
- [anon_sym_declare] = ACTIONS(1286),
- [anon_sym_public] = ACTIONS(1286),
- [anon_sym_private] = ACTIONS(1286),
- [anon_sym_protected] = ACTIONS(1286),
- [anon_sym_override] = ACTIONS(1286),
- [anon_sym_module] = ACTIONS(1286),
- [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_object] = ACTIONS(1286),
- [sym_html_comment] = ACTIONS(5),
- },
- [583] = {
- [sym_import] = STATE(3334),
- [sym_parenthesized_expression] = STATE(1327),
- [sym_expression] = STATE(1864),
- [sym_primary_expression] = STATE(1468),
- [sym_yield_expression] = STATE(1634),
- [sym_object] = STATE(1650),
- [sym_object_pattern] = STATE(5821),
- [sym_array] = STATE(1650),
- [sym_array_pattern] = STATE(5821),
- [sym_glimmer_template] = STATE(1634),
- [sym_jsx_element] = STATE(1634),
- [sym_jsx_opening_element] = STATE(3026),
- [sym_jsx_self_closing_element] = STATE(1634),
- [sym_class] = STATE(1650),
- [sym_function_expression] = STATE(1650),
- [sym_generator_function] = STATE(1650),
- [sym_arrow_function] = STATE(1650),
- [sym__call_signature] = STATE(5743),
- [sym_call_expression] = STATE(1650),
- [sym_new_expression] = STATE(1634),
- [sym_await_expression] = STATE(1634),
- [sym_member_expression] = STATE(1327),
- [sym_subscript_expression] = STATE(1327),
- [sym_assignment_expression] = STATE(1634),
- [sym__augmented_assignment_lhs] = STATE(2919),
- [sym_augmented_assignment_expression] = STATE(1634),
- [sym__destructuring_pattern] = STATE(5821),
- [sym_ternary_expression] = STATE(1634),
- [sym_binary_expression] = STATE(1634),
- [sym_unary_expression] = STATE(1634),
- [sym_update_expression] = STATE(1634),
- [sym_string] = STATE(1650),
- [sym_template_string] = STATE(1650),
- [sym_regex] = STATE(1650),
- [sym_meta_property] = STATE(1650),
- [sym_decorator] = STATE(1244),
- [sym_formal_parameters] = STATE(3742),
- [sym_non_null_expression] = STATE(1327),
- [sym_as_expression] = STATE(1634),
- [sym_satisfies_expression] = STATE(1634),
- [sym_instantiation_expression] = STATE(1634),
- [sym_internal_module] = STATE(1634),
- [sym_type_parameters] = STATE(5349),
- [aux_sym_export_statement_repeat1] = STATE(4458),
- [sym_identifier] = ACTIONS(1462),
- [anon_sym_export] = ACTIONS(1286),
- [anon_sym_type] = ACTIONS(1286),
- [anon_sym_namespace] = ACTIONS(1288),
- [anon_sym_LBRACE] = ACTIONS(813),
- [anon_sym_typeof] = ACTIONS(1308),
- [anon_sym_import] = ACTIONS(133),
- [anon_sym_let] = ACTIONS(1286),
- [anon_sym_BANG] = ACTIONS(1292),
- [anon_sym_LPAREN] = ACTIONS(815),
- [anon_sym_await] = ACTIONS(1294),
- [anon_sym_yield] = ACTIONS(1296),
- [anon_sym_LBRACK] = ACTIONS(817),
- [sym_glimmer_opening_tag] = ACTIONS(148),
- [anon_sym_DQUOTE] = ACTIONS(150),
- [anon_sym_SQUOTE] = ACTIONS(152),
- [anon_sym_class] = ACTIONS(154),
- [anon_sym_async] = ACTIONS(1298),
- [anon_sym_function] = ACTIONS(158),
- [anon_sym_new] = ACTIONS(1466),
- [anon_sym_using] = ACTIONS(1302),
- [anon_sym_PLUS] = ACTIONS(1308),
- [anon_sym_DASH] = ACTIONS(1308),
- [anon_sym_SLASH] = ACTIONS(922),
- [anon_sym_LT] = ACTIONS(181),
- [anon_sym_TILDE] = ACTIONS(1292),
- [anon_sym_void] = ACTIONS(1308),
- [anon_sym_delete] = ACTIONS(1308),
- [anon_sym_PLUS_PLUS] = ACTIONS(1310),
- [anon_sym_DASH_DASH] = ACTIONS(1310),
- [sym_comment] = ACTIONS(5),
- [anon_sym_BQUOTE] = ACTIONS(825),
- [sym_number] = ACTIONS(787),
- [sym_private_property_identifier] = ACTIONS(1312),
- [sym_this] = ACTIONS(200),
- [sym_super] = ACTIONS(200),
- [sym_true] = ACTIONS(200),
- [sym_false] = ACTIONS(200),
- [sym_null] = ACTIONS(200),
- [sym_undefined] = ACTIONS(1468),
- [anon_sym_AT] = ACTIONS(99),
- [anon_sym_static] = ACTIONS(1286),
- [anon_sym_readonly] = ACTIONS(1286),
- [anon_sym_get] = ACTIONS(1286),
- [anon_sym_set] = ACTIONS(1286),
- [anon_sym_declare] = ACTIONS(1286),
- [anon_sym_public] = ACTIONS(1286),
- [anon_sym_private] = ACTIONS(1286),
- [anon_sym_protected] = ACTIONS(1286),
- [anon_sym_override] = ACTIONS(1286),
- [anon_sym_module] = ACTIONS(1286),
- [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_object] = ACTIONS(1286),
- [sym_html_comment] = ACTIONS(5),
- },
- [584] = {
- [sym_import] = STATE(3334),
- [sym_parenthesized_expression] = STATE(1327),
- [sym_expression] = STATE(1865),
- [sym_primary_expression] = STATE(1468),
- [sym_yield_expression] = STATE(1634),
- [sym_object] = STATE(1650),
- [sym_object_pattern] = STATE(5821),
- [sym_array] = STATE(1650),
- [sym_array_pattern] = STATE(5821),
- [sym_glimmer_template] = STATE(1634),
- [sym_jsx_element] = STATE(1634),
- [sym_jsx_opening_element] = STATE(3026),
- [sym_jsx_self_closing_element] = STATE(1634),
- [sym_class] = STATE(1650),
- [sym_function_expression] = STATE(1650),
- [sym_generator_function] = STATE(1650),
- [sym_arrow_function] = STATE(1650),
- [sym__call_signature] = STATE(5743),
- [sym_call_expression] = STATE(1650),
- [sym_new_expression] = STATE(1634),
- [sym_await_expression] = STATE(1634),
- [sym_member_expression] = STATE(1327),
- [sym_subscript_expression] = STATE(1327),
- [sym_assignment_expression] = STATE(1634),
- [sym__augmented_assignment_lhs] = STATE(2919),
- [sym_augmented_assignment_expression] = STATE(1634),
- [sym__destructuring_pattern] = STATE(5821),
- [sym_ternary_expression] = STATE(1634),
- [sym_binary_expression] = STATE(1634),
- [sym_unary_expression] = STATE(1634),
- [sym_update_expression] = STATE(1634),
- [sym_string] = STATE(1650),
- [sym_template_string] = STATE(1650),
- [sym_regex] = STATE(1650),
- [sym_meta_property] = STATE(1650),
- [sym_decorator] = STATE(1244),
- [sym_formal_parameters] = STATE(3742),
- [sym_non_null_expression] = STATE(1327),
- [sym_as_expression] = STATE(1634),
- [sym_satisfies_expression] = STATE(1634),
- [sym_instantiation_expression] = STATE(1634),
- [sym_internal_module] = STATE(1634),
- [sym_type_parameters] = STATE(5349),
- [aux_sym_export_statement_repeat1] = STATE(4458),
- [sym_identifier] = ACTIONS(1462),
- [anon_sym_export] = ACTIONS(1286),
- [anon_sym_type] = ACTIONS(1286),
- [anon_sym_namespace] = ACTIONS(1288),
- [anon_sym_LBRACE] = ACTIONS(813),
- [anon_sym_typeof] = ACTIONS(1308),
- [anon_sym_import] = ACTIONS(133),
- [anon_sym_let] = ACTIONS(1286),
- [anon_sym_BANG] = ACTIONS(1292),
- [anon_sym_LPAREN] = ACTIONS(815),
- [anon_sym_await] = ACTIONS(1294),
- [anon_sym_yield] = ACTIONS(1296),
- [anon_sym_LBRACK] = ACTIONS(817),
- [sym_glimmer_opening_tag] = ACTIONS(148),
- [anon_sym_DQUOTE] = ACTIONS(150),
- [anon_sym_SQUOTE] = ACTIONS(152),
- [anon_sym_class] = ACTIONS(154),
- [anon_sym_async] = ACTIONS(1298),
- [anon_sym_function] = ACTIONS(158),
- [anon_sym_new] = ACTIONS(1466),
- [anon_sym_using] = ACTIONS(1302),
- [anon_sym_PLUS] = ACTIONS(1308),
- [anon_sym_DASH] = ACTIONS(1308),
- [anon_sym_SLASH] = ACTIONS(922),
- [anon_sym_LT] = ACTIONS(181),
- [anon_sym_TILDE] = ACTIONS(1292),
- [anon_sym_void] = ACTIONS(1308),
- [anon_sym_delete] = ACTIONS(1308),
- [anon_sym_PLUS_PLUS] = ACTIONS(1310),
- [anon_sym_DASH_DASH] = ACTIONS(1310),
- [sym_comment] = ACTIONS(5),
- [anon_sym_BQUOTE] = ACTIONS(825),
- [sym_number] = ACTIONS(787),
- [sym_private_property_identifier] = ACTIONS(1312),
- [sym_this] = ACTIONS(200),
- [sym_super] = ACTIONS(200),
- [sym_true] = ACTIONS(200),
- [sym_false] = ACTIONS(200),
- [sym_null] = ACTIONS(200),
- [sym_undefined] = ACTIONS(1468),
- [anon_sym_AT] = ACTIONS(99),
- [anon_sym_static] = ACTIONS(1286),
- [anon_sym_readonly] = ACTIONS(1286),
- [anon_sym_get] = ACTIONS(1286),
- [anon_sym_set] = ACTIONS(1286),
- [anon_sym_declare] = ACTIONS(1286),
- [anon_sym_public] = ACTIONS(1286),
- [anon_sym_private] = ACTIONS(1286),
- [anon_sym_protected] = ACTIONS(1286),
- [anon_sym_override] = ACTIONS(1286),
- [anon_sym_module] = ACTIONS(1286),
- [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_object] = ACTIONS(1286),
- [sym_html_comment] = ACTIONS(5),
- },
- [585] = {
- [sym_import] = STATE(3334),
- [sym_parenthesized_expression] = STATE(1327),
- [sym_expression] = STATE(1866),
- [sym_primary_expression] = STATE(1468),
- [sym_yield_expression] = STATE(1634),
- [sym_object] = STATE(1650),
- [sym_object_pattern] = STATE(5821),
- [sym_array] = STATE(1650),
- [sym_array_pattern] = STATE(5821),
- [sym_glimmer_template] = STATE(1634),
- [sym_jsx_element] = STATE(1634),
- [sym_jsx_opening_element] = STATE(3026),
- [sym_jsx_self_closing_element] = STATE(1634),
- [sym_class] = STATE(1650),
- [sym_function_expression] = STATE(1650),
- [sym_generator_function] = STATE(1650),
- [sym_arrow_function] = STATE(1650),
- [sym__call_signature] = STATE(5743),
- [sym_call_expression] = STATE(1650),
- [sym_new_expression] = STATE(1634),
- [sym_await_expression] = STATE(1634),
- [sym_member_expression] = STATE(1327),
- [sym_subscript_expression] = STATE(1327),
- [sym_assignment_expression] = STATE(1634),
- [sym__augmented_assignment_lhs] = STATE(2919),
- [sym_augmented_assignment_expression] = STATE(1634),
- [sym__destructuring_pattern] = STATE(5821),
- [sym_ternary_expression] = STATE(1634),
- [sym_binary_expression] = STATE(1634),
- [sym_unary_expression] = STATE(1634),
- [sym_update_expression] = STATE(1634),
- [sym_string] = STATE(1650),
- [sym_template_string] = STATE(1650),
- [sym_regex] = STATE(1650),
- [sym_meta_property] = STATE(1650),
- [sym_decorator] = STATE(1244),
- [sym_formal_parameters] = STATE(3742),
- [sym_non_null_expression] = STATE(1327),
- [sym_as_expression] = STATE(1634),
- [sym_satisfies_expression] = STATE(1634),
- [sym_instantiation_expression] = STATE(1634),
- [sym_internal_module] = STATE(1634),
- [sym_type_parameters] = STATE(5349),
- [aux_sym_export_statement_repeat1] = STATE(4458),
- [sym_identifier] = ACTIONS(1462),
- [anon_sym_export] = ACTIONS(1286),
- [anon_sym_type] = ACTIONS(1286),
- [anon_sym_namespace] = ACTIONS(1288),
- [anon_sym_LBRACE] = ACTIONS(813),
- [anon_sym_typeof] = ACTIONS(1308),
- [anon_sym_import] = ACTIONS(133),
- [anon_sym_let] = ACTIONS(1286),
- [anon_sym_BANG] = ACTIONS(1292),
- [anon_sym_LPAREN] = ACTIONS(815),
- [anon_sym_await] = ACTIONS(1294),
- [anon_sym_yield] = ACTIONS(1296),
- [anon_sym_LBRACK] = ACTIONS(817),
- [sym_glimmer_opening_tag] = ACTIONS(148),
- [anon_sym_DQUOTE] = ACTIONS(150),
- [anon_sym_SQUOTE] = ACTIONS(152),
- [anon_sym_class] = ACTIONS(154),
- [anon_sym_async] = ACTIONS(1298),
- [anon_sym_function] = ACTIONS(158),
- [anon_sym_new] = ACTIONS(1466),
- [anon_sym_using] = ACTIONS(1302),
- [anon_sym_PLUS] = ACTIONS(1308),
- [anon_sym_DASH] = ACTIONS(1308),
- [anon_sym_SLASH] = ACTIONS(922),
- [anon_sym_LT] = ACTIONS(181),
- [anon_sym_TILDE] = ACTIONS(1292),
- [anon_sym_void] = ACTIONS(1308),
- [anon_sym_delete] = ACTIONS(1308),
- [anon_sym_PLUS_PLUS] = ACTIONS(1310),
- [anon_sym_DASH_DASH] = ACTIONS(1310),
- [sym_comment] = ACTIONS(5),
- [anon_sym_BQUOTE] = ACTIONS(825),
- [sym_number] = ACTIONS(787),
- [sym_private_property_identifier] = ACTIONS(1312),
- [sym_this] = ACTIONS(200),
- [sym_super] = ACTIONS(200),
- [sym_true] = ACTIONS(200),
- [sym_false] = ACTIONS(200),
- [sym_null] = ACTIONS(200),
- [sym_undefined] = ACTIONS(1468),
- [anon_sym_AT] = ACTIONS(99),
- [anon_sym_static] = ACTIONS(1286),
- [anon_sym_readonly] = ACTIONS(1286),
- [anon_sym_get] = ACTIONS(1286),
- [anon_sym_set] = ACTIONS(1286),
- [anon_sym_declare] = ACTIONS(1286),
- [anon_sym_public] = ACTIONS(1286),
- [anon_sym_private] = ACTIONS(1286),
- [anon_sym_protected] = ACTIONS(1286),
- [anon_sym_override] = ACTIONS(1286),
- [anon_sym_module] = ACTIONS(1286),
- [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_object] = ACTIONS(1286),
- [sym_html_comment] = ACTIONS(5),
- },
- [586] = {
- [sym_import] = STATE(3334),
- [sym_parenthesized_expression] = STATE(1327),
- [sym_expression] = STATE(1867),
- [sym_primary_expression] = STATE(1468),
- [sym_yield_expression] = STATE(1634),
- [sym_object] = STATE(1650),
- [sym_object_pattern] = STATE(5821),
- [sym_array] = STATE(1650),
- [sym_array_pattern] = STATE(5821),
- [sym_glimmer_template] = STATE(1634),
- [sym_jsx_element] = STATE(1634),
- [sym_jsx_opening_element] = STATE(3026),
- [sym_jsx_self_closing_element] = STATE(1634),
- [sym_class] = STATE(1650),
- [sym_function_expression] = STATE(1650),
- [sym_generator_function] = STATE(1650),
- [sym_arrow_function] = STATE(1650),
- [sym__call_signature] = STATE(5743),
- [sym_call_expression] = STATE(1650),
- [sym_new_expression] = STATE(1634),
- [sym_await_expression] = STATE(1634),
- [sym_member_expression] = STATE(1327),
- [sym_subscript_expression] = STATE(1327),
- [sym_assignment_expression] = STATE(1634),
- [sym__augmented_assignment_lhs] = STATE(2919),
- [sym_augmented_assignment_expression] = STATE(1634),
- [sym__destructuring_pattern] = STATE(5821),
- [sym_ternary_expression] = STATE(1634),
- [sym_binary_expression] = STATE(1634),
- [sym_unary_expression] = STATE(1634),
- [sym_update_expression] = STATE(1634),
- [sym_string] = STATE(1650),
- [sym_template_string] = STATE(1650),
- [sym_regex] = STATE(1650),
- [sym_meta_property] = STATE(1650),
- [sym_decorator] = STATE(1244),
- [sym_formal_parameters] = STATE(3742),
- [sym_non_null_expression] = STATE(1327),
- [sym_as_expression] = STATE(1634),
- [sym_satisfies_expression] = STATE(1634),
- [sym_instantiation_expression] = STATE(1634),
- [sym_internal_module] = STATE(1634),
- [sym_type_parameters] = STATE(5349),
- [aux_sym_export_statement_repeat1] = STATE(4458),
- [sym_identifier] = ACTIONS(1462),
- [anon_sym_export] = ACTIONS(1286),
- [anon_sym_type] = ACTIONS(1286),
- [anon_sym_namespace] = ACTIONS(1288),
- [anon_sym_LBRACE] = ACTIONS(813),
- [anon_sym_typeof] = ACTIONS(1308),
- [anon_sym_import] = ACTIONS(133),
- [anon_sym_let] = ACTIONS(1286),
- [anon_sym_BANG] = ACTIONS(1292),
- [anon_sym_LPAREN] = ACTIONS(815),
- [anon_sym_await] = ACTIONS(1294),
- [anon_sym_yield] = ACTIONS(1296),
- [anon_sym_LBRACK] = ACTIONS(817),
- [sym_glimmer_opening_tag] = ACTIONS(148),
- [anon_sym_DQUOTE] = ACTIONS(150),
- [anon_sym_SQUOTE] = ACTIONS(152),
- [anon_sym_class] = ACTIONS(154),
- [anon_sym_async] = ACTIONS(1298),
- [anon_sym_function] = ACTIONS(158),
- [anon_sym_new] = ACTIONS(1466),
- [anon_sym_using] = ACTIONS(1302),
- [anon_sym_PLUS] = ACTIONS(1308),
- [anon_sym_DASH] = ACTIONS(1308),
- [anon_sym_SLASH] = ACTIONS(922),
- [anon_sym_LT] = ACTIONS(181),
- [anon_sym_TILDE] = ACTIONS(1292),
- [anon_sym_void] = ACTIONS(1308),
- [anon_sym_delete] = ACTIONS(1308),
- [anon_sym_PLUS_PLUS] = ACTIONS(1310),
- [anon_sym_DASH_DASH] = ACTIONS(1310),
- [sym_comment] = ACTIONS(5),
- [anon_sym_BQUOTE] = ACTIONS(825),
- [sym_number] = ACTIONS(787),
- [sym_private_property_identifier] = ACTIONS(1312),
- [sym_this] = ACTIONS(200),
- [sym_super] = ACTIONS(200),
- [sym_true] = ACTIONS(200),
- [sym_false] = ACTIONS(200),
- [sym_null] = ACTIONS(200),
- [sym_undefined] = ACTIONS(1468),
- [anon_sym_AT] = ACTIONS(99),
- [anon_sym_static] = ACTIONS(1286),
- [anon_sym_readonly] = ACTIONS(1286),
- [anon_sym_get] = ACTIONS(1286),
- [anon_sym_set] = ACTIONS(1286),
- [anon_sym_declare] = ACTIONS(1286),
- [anon_sym_public] = ACTIONS(1286),
- [anon_sym_private] = ACTIONS(1286),
- [anon_sym_protected] = ACTIONS(1286),
- [anon_sym_override] = ACTIONS(1286),
- [anon_sym_module] = ACTIONS(1286),
- [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_object] = ACTIONS(1286),
- [sym_html_comment] = ACTIONS(5),
- },
- [587] = {
- [sym_import] = STATE(3334),
- [sym_parenthesized_expression] = STATE(1327),
- [sym_expression] = STATE(1868),
- [sym_primary_expression] = STATE(1468),
- [sym_yield_expression] = STATE(1634),
- [sym_object] = STATE(1650),
- [sym_object_pattern] = STATE(5821),
- [sym_array] = STATE(1650),
- [sym_array_pattern] = STATE(5821),
- [sym_glimmer_template] = STATE(1634),
- [sym_jsx_element] = STATE(1634),
- [sym_jsx_opening_element] = STATE(3026),
- [sym_jsx_self_closing_element] = STATE(1634),
- [sym_class] = STATE(1650),
- [sym_function_expression] = STATE(1650),
- [sym_generator_function] = STATE(1650),
- [sym_arrow_function] = STATE(1650),
- [sym__call_signature] = STATE(5743),
- [sym_call_expression] = STATE(1650),
- [sym_new_expression] = STATE(1634),
- [sym_await_expression] = STATE(1634),
- [sym_member_expression] = STATE(1327),
- [sym_subscript_expression] = STATE(1327),
- [sym_assignment_expression] = STATE(1634),
- [sym__augmented_assignment_lhs] = STATE(2919),
- [sym_augmented_assignment_expression] = STATE(1634),
- [sym__destructuring_pattern] = STATE(5821),
- [sym_ternary_expression] = STATE(1634),
- [sym_binary_expression] = STATE(1634),
- [sym_unary_expression] = STATE(1634),
- [sym_update_expression] = STATE(1634),
- [sym_string] = STATE(1650),
- [sym_template_string] = STATE(1650),
- [sym_regex] = STATE(1650),
- [sym_meta_property] = STATE(1650),
- [sym_decorator] = STATE(1244),
- [sym_formal_parameters] = STATE(3742),
- [sym_non_null_expression] = STATE(1327),
- [sym_as_expression] = STATE(1634),
- [sym_satisfies_expression] = STATE(1634),
- [sym_instantiation_expression] = STATE(1634),
- [sym_internal_module] = STATE(1634),
- [sym_type_parameters] = STATE(5349),
- [aux_sym_export_statement_repeat1] = STATE(4458),
- [sym_identifier] = ACTIONS(1462),
- [anon_sym_export] = ACTIONS(1286),
- [anon_sym_type] = ACTIONS(1286),
- [anon_sym_namespace] = ACTIONS(1288),
- [anon_sym_LBRACE] = ACTIONS(813),
- [anon_sym_typeof] = ACTIONS(1308),
- [anon_sym_import] = ACTIONS(133),
- [anon_sym_let] = ACTIONS(1286),
- [anon_sym_BANG] = ACTIONS(1292),
- [anon_sym_LPAREN] = ACTIONS(815),
- [anon_sym_await] = ACTIONS(1294),
- [anon_sym_yield] = ACTIONS(1296),
- [anon_sym_LBRACK] = ACTIONS(817),
- [sym_glimmer_opening_tag] = ACTIONS(148),
- [anon_sym_DQUOTE] = ACTIONS(150),
- [anon_sym_SQUOTE] = ACTIONS(152),
- [anon_sym_class] = ACTIONS(154),
- [anon_sym_async] = ACTIONS(1298),
- [anon_sym_function] = ACTIONS(158),
- [anon_sym_new] = ACTIONS(1466),
- [anon_sym_using] = ACTIONS(1302),
- [anon_sym_PLUS] = ACTIONS(1308),
- [anon_sym_DASH] = ACTIONS(1308),
- [anon_sym_SLASH] = ACTIONS(922),
- [anon_sym_LT] = ACTIONS(181),
- [anon_sym_TILDE] = ACTIONS(1292),
- [anon_sym_void] = ACTIONS(1308),
- [anon_sym_delete] = ACTIONS(1308),
- [anon_sym_PLUS_PLUS] = ACTIONS(1310),
- [anon_sym_DASH_DASH] = ACTIONS(1310),
- [sym_comment] = ACTIONS(5),
- [anon_sym_BQUOTE] = ACTIONS(825),
- [sym_number] = ACTIONS(787),
- [sym_private_property_identifier] = ACTIONS(1312),
- [sym_this] = ACTIONS(200),
- [sym_super] = ACTIONS(200),
- [sym_true] = ACTIONS(200),
- [sym_false] = ACTIONS(200),
- [sym_null] = ACTIONS(200),
- [sym_undefined] = ACTIONS(1468),
- [anon_sym_AT] = ACTIONS(99),
- [anon_sym_static] = ACTIONS(1286),
- [anon_sym_readonly] = ACTIONS(1286),
- [anon_sym_get] = ACTIONS(1286),
- [anon_sym_set] = ACTIONS(1286),
- [anon_sym_declare] = ACTIONS(1286),
- [anon_sym_public] = ACTIONS(1286),
- [anon_sym_private] = ACTIONS(1286),
- [anon_sym_protected] = ACTIONS(1286),
- [anon_sym_override] = ACTIONS(1286),
- [anon_sym_module] = ACTIONS(1286),
- [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_object] = ACTIONS(1286),
- [sym_html_comment] = ACTIONS(5),
- },
- [588] = {
- [sym_import] = STATE(3334),
- [sym_parenthesized_expression] = STATE(1327),
- [sym_expression] = STATE(1869),
- [sym_primary_expression] = STATE(1468),
- [sym_yield_expression] = STATE(1634),
- [sym_object] = STATE(1650),
- [sym_object_pattern] = STATE(5821),
- [sym_array] = STATE(1650),
- [sym_array_pattern] = STATE(5821),
- [sym_glimmer_template] = STATE(1634),
- [sym_jsx_element] = STATE(1634),
- [sym_jsx_opening_element] = STATE(3026),
- [sym_jsx_self_closing_element] = STATE(1634),
- [sym_class] = STATE(1650),
- [sym_function_expression] = STATE(1650),
- [sym_generator_function] = STATE(1650),
- [sym_arrow_function] = STATE(1650),
- [sym__call_signature] = STATE(5743),
- [sym_call_expression] = STATE(1650),
- [sym_new_expression] = STATE(1634),
- [sym_await_expression] = STATE(1634),
- [sym_member_expression] = STATE(1327),
- [sym_subscript_expression] = STATE(1327),
- [sym_assignment_expression] = STATE(1634),
- [sym__augmented_assignment_lhs] = STATE(2919),
- [sym_augmented_assignment_expression] = STATE(1634),
- [sym__destructuring_pattern] = STATE(5821),
- [sym_ternary_expression] = STATE(1634),
- [sym_binary_expression] = STATE(1634),
- [sym_unary_expression] = STATE(1634),
- [sym_update_expression] = STATE(1634),
- [sym_string] = STATE(1650),
- [sym_template_string] = STATE(1650),
- [sym_regex] = STATE(1650),
- [sym_meta_property] = STATE(1650),
- [sym_decorator] = STATE(1244),
- [sym_formal_parameters] = STATE(3742),
- [sym_non_null_expression] = STATE(1327),
- [sym_as_expression] = STATE(1634),
- [sym_satisfies_expression] = STATE(1634),
- [sym_instantiation_expression] = STATE(1634),
- [sym_internal_module] = STATE(1634),
- [sym_type_parameters] = STATE(5349),
- [aux_sym_export_statement_repeat1] = STATE(4458),
- [sym_identifier] = ACTIONS(1462),
- [anon_sym_export] = ACTIONS(1286),
- [anon_sym_type] = ACTIONS(1286),
- [anon_sym_namespace] = ACTIONS(1288),
- [anon_sym_LBRACE] = ACTIONS(813),
- [anon_sym_typeof] = ACTIONS(1308),
- [anon_sym_import] = ACTIONS(133),
- [anon_sym_let] = ACTIONS(1286),
- [anon_sym_BANG] = ACTIONS(1292),
- [anon_sym_LPAREN] = ACTIONS(815),
- [anon_sym_await] = ACTIONS(1294),
- [anon_sym_yield] = ACTIONS(1296),
- [anon_sym_LBRACK] = ACTIONS(817),
- [sym_glimmer_opening_tag] = ACTIONS(148),
- [anon_sym_DQUOTE] = ACTIONS(150),
- [anon_sym_SQUOTE] = ACTIONS(152),
- [anon_sym_class] = ACTIONS(154),
- [anon_sym_async] = ACTIONS(1298),
- [anon_sym_function] = ACTIONS(158),
- [anon_sym_new] = ACTIONS(1466),
- [anon_sym_using] = ACTIONS(1302),
- [anon_sym_PLUS] = ACTIONS(1308),
- [anon_sym_DASH] = ACTIONS(1308),
- [anon_sym_SLASH] = ACTIONS(922),
- [anon_sym_LT] = ACTIONS(181),
- [anon_sym_TILDE] = ACTIONS(1292),
- [anon_sym_void] = ACTIONS(1308),
- [anon_sym_delete] = ACTIONS(1308),
- [anon_sym_PLUS_PLUS] = ACTIONS(1310),
- [anon_sym_DASH_DASH] = ACTIONS(1310),
- [sym_comment] = ACTIONS(5),
- [anon_sym_BQUOTE] = ACTIONS(825),
- [sym_number] = ACTIONS(787),
- [sym_private_property_identifier] = ACTIONS(1312),
- [sym_this] = ACTIONS(200),
- [sym_super] = ACTIONS(200),
- [sym_true] = ACTIONS(200),
- [sym_false] = ACTIONS(200),
- [sym_null] = ACTIONS(200),
- [sym_undefined] = ACTIONS(1468),
- [anon_sym_AT] = ACTIONS(99),
- [anon_sym_static] = ACTIONS(1286),
- [anon_sym_readonly] = ACTIONS(1286),
- [anon_sym_get] = ACTIONS(1286),
- [anon_sym_set] = ACTIONS(1286),
- [anon_sym_declare] = ACTIONS(1286),
- [anon_sym_public] = ACTIONS(1286),
- [anon_sym_private] = ACTIONS(1286),
- [anon_sym_protected] = ACTIONS(1286),
- [anon_sym_override] = ACTIONS(1286),
- [anon_sym_module] = ACTIONS(1286),
- [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_object] = ACTIONS(1286),
- [sym_html_comment] = ACTIONS(5),
- },
- [589] = {
- [sym_import] = STATE(3334),
- [sym_parenthesized_expression] = STATE(1327),
- [sym_expression] = STATE(1870),
- [sym_primary_expression] = STATE(1468),
- [sym_yield_expression] = STATE(1634),
- [sym_object] = STATE(1650),
- [sym_object_pattern] = STATE(5821),
- [sym_array] = STATE(1650),
- [sym_array_pattern] = STATE(5821),
- [sym_glimmer_template] = STATE(1634),
- [sym_jsx_element] = STATE(1634),
- [sym_jsx_opening_element] = STATE(3026),
- [sym_jsx_self_closing_element] = STATE(1634),
- [sym_class] = STATE(1650),
- [sym_function_expression] = STATE(1650),
- [sym_generator_function] = STATE(1650),
- [sym_arrow_function] = STATE(1650),
- [sym__call_signature] = STATE(5743),
- [sym_call_expression] = STATE(1650),
- [sym_new_expression] = STATE(1634),
- [sym_await_expression] = STATE(1634),
- [sym_member_expression] = STATE(1327),
- [sym_subscript_expression] = STATE(1327),
- [sym_assignment_expression] = STATE(1634),
- [sym__augmented_assignment_lhs] = STATE(2919),
- [sym_augmented_assignment_expression] = STATE(1634),
- [sym__destructuring_pattern] = STATE(5821),
- [sym_ternary_expression] = STATE(1634),
- [sym_binary_expression] = STATE(1634),
- [sym_unary_expression] = STATE(1634),
- [sym_update_expression] = STATE(1634),
- [sym_string] = STATE(1650),
- [sym_template_string] = STATE(1650),
- [sym_regex] = STATE(1650),
- [sym_meta_property] = STATE(1650),
- [sym_decorator] = STATE(1244),
- [sym_formal_parameters] = STATE(3742),
- [sym_non_null_expression] = STATE(1327),
- [sym_as_expression] = STATE(1634),
- [sym_satisfies_expression] = STATE(1634),
- [sym_instantiation_expression] = STATE(1634),
- [sym_internal_module] = STATE(1634),
- [sym_type_parameters] = STATE(5349),
- [aux_sym_export_statement_repeat1] = STATE(4458),
- [sym_identifier] = ACTIONS(1462),
- [anon_sym_export] = ACTIONS(1286),
- [anon_sym_type] = ACTIONS(1286),
- [anon_sym_namespace] = ACTIONS(1288),
- [anon_sym_LBRACE] = ACTIONS(813),
- [anon_sym_typeof] = ACTIONS(1308),
- [anon_sym_import] = ACTIONS(133),
- [anon_sym_let] = ACTIONS(1286),
- [anon_sym_BANG] = ACTIONS(1292),
- [anon_sym_LPAREN] = ACTIONS(815),
- [anon_sym_await] = ACTIONS(1294),
- [anon_sym_yield] = ACTIONS(1296),
- [anon_sym_LBRACK] = ACTIONS(817),
- [sym_glimmer_opening_tag] = ACTIONS(148),
- [anon_sym_DQUOTE] = ACTIONS(150),
- [anon_sym_SQUOTE] = ACTIONS(152),
- [anon_sym_class] = ACTIONS(154),
- [anon_sym_async] = ACTIONS(1298),
- [anon_sym_function] = ACTIONS(158),
- [anon_sym_new] = ACTIONS(1466),
- [anon_sym_using] = ACTIONS(1302),
- [anon_sym_PLUS] = ACTIONS(1308),
- [anon_sym_DASH] = ACTIONS(1308),
- [anon_sym_SLASH] = ACTIONS(922),
- [anon_sym_LT] = ACTIONS(181),
- [anon_sym_TILDE] = ACTIONS(1292),
- [anon_sym_void] = ACTIONS(1308),
- [anon_sym_delete] = ACTIONS(1308),
- [anon_sym_PLUS_PLUS] = ACTIONS(1310),
- [anon_sym_DASH_DASH] = ACTIONS(1310),
- [sym_comment] = ACTIONS(5),
- [anon_sym_BQUOTE] = ACTIONS(825),
- [sym_number] = ACTIONS(787),
- [sym_private_property_identifier] = ACTIONS(1312),
- [sym_this] = ACTIONS(200),
- [sym_super] = ACTIONS(200),
- [sym_true] = ACTIONS(200),
- [sym_false] = ACTIONS(200),
- [sym_null] = ACTIONS(200),
- [sym_undefined] = ACTIONS(1468),
- [anon_sym_AT] = ACTIONS(99),
- [anon_sym_static] = ACTIONS(1286),
- [anon_sym_readonly] = ACTIONS(1286),
- [anon_sym_get] = ACTIONS(1286),
- [anon_sym_set] = ACTIONS(1286),
- [anon_sym_declare] = ACTIONS(1286),
- [anon_sym_public] = ACTIONS(1286),
- [anon_sym_private] = ACTIONS(1286),
- [anon_sym_protected] = ACTIONS(1286),
- [anon_sym_override] = ACTIONS(1286),
- [anon_sym_module] = ACTIONS(1286),
- [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_object] = ACTIONS(1286),
- [sym_html_comment] = ACTIONS(5),
- },
- [590] = {
- [sym_import] = STATE(3334),
- [sym_parenthesized_expression] = STATE(1327),
- [sym_expression] = STATE(1871),
- [sym_primary_expression] = STATE(1468),
- [sym_yield_expression] = STATE(1634),
- [sym_object] = STATE(1650),
- [sym_object_pattern] = STATE(5821),
- [sym_array] = STATE(1650),
- [sym_array_pattern] = STATE(5821),
- [sym_glimmer_template] = STATE(1634),
- [sym_jsx_element] = STATE(1634),
- [sym_jsx_opening_element] = STATE(3026),
- [sym_jsx_self_closing_element] = STATE(1634),
- [sym_class] = STATE(1650),
- [sym_function_expression] = STATE(1650),
- [sym_generator_function] = STATE(1650),
- [sym_arrow_function] = STATE(1650),
- [sym__call_signature] = STATE(5743),
- [sym_call_expression] = STATE(1650),
- [sym_new_expression] = STATE(1634),
- [sym_await_expression] = STATE(1634),
- [sym_member_expression] = STATE(1327),
- [sym_subscript_expression] = STATE(1327),
- [sym_assignment_expression] = STATE(1634),
- [sym__augmented_assignment_lhs] = STATE(2919),
- [sym_augmented_assignment_expression] = STATE(1634),
- [sym__destructuring_pattern] = STATE(5821),
- [sym_ternary_expression] = STATE(1634),
- [sym_binary_expression] = STATE(1634),
- [sym_unary_expression] = STATE(1634),
- [sym_update_expression] = STATE(1634),
- [sym_string] = STATE(1650),
- [sym_template_string] = STATE(1650),
- [sym_regex] = STATE(1650),
- [sym_meta_property] = STATE(1650),
- [sym_decorator] = STATE(1244),
- [sym_formal_parameters] = STATE(3742),
- [sym_non_null_expression] = STATE(1327),
- [sym_as_expression] = STATE(1634),
- [sym_satisfies_expression] = STATE(1634),
- [sym_instantiation_expression] = STATE(1634),
- [sym_internal_module] = STATE(1634),
- [sym_type_parameters] = STATE(5349),
- [aux_sym_export_statement_repeat1] = STATE(4458),
- [sym_identifier] = ACTIONS(1462),
- [anon_sym_export] = ACTIONS(1286),
- [anon_sym_type] = ACTIONS(1286),
- [anon_sym_namespace] = ACTIONS(1288),
- [anon_sym_LBRACE] = ACTIONS(813),
- [anon_sym_typeof] = ACTIONS(1308),
- [anon_sym_import] = ACTIONS(133),
- [anon_sym_let] = ACTIONS(1286),
- [anon_sym_BANG] = ACTIONS(1292),
- [anon_sym_LPAREN] = ACTIONS(815),
- [anon_sym_await] = ACTIONS(1294),
- [anon_sym_yield] = ACTIONS(1296),
- [anon_sym_LBRACK] = ACTIONS(817),
- [sym_glimmer_opening_tag] = ACTIONS(148),
- [anon_sym_DQUOTE] = ACTIONS(150),
- [anon_sym_SQUOTE] = ACTIONS(152),
- [anon_sym_class] = ACTIONS(154),
- [anon_sym_async] = ACTIONS(1298),
- [anon_sym_function] = ACTIONS(158),
- [anon_sym_new] = ACTIONS(1466),
- [anon_sym_using] = ACTIONS(1302),
- [anon_sym_PLUS] = ACTIONS(1308),
- [anon_sym_DASH] = ACTIONS(1308),
- [anon_sym_SLASH] = ACTIONS(922),
- [anon_sym_LT] = ACTIONS(181),
- [anon_sym_TILDE] = ACTIONS(1292),
- [anon_sym_void] = ACTIONS(1308),
- [anon_sym_delete] = ACTIONS(1308),
- [anon_sym_PLUS_PLUS] = ACTIONS(1310),
- [anon_sym_DASH_DASH] = ACTIONS(1310),
- [sym_comment] = ACTIONS(5),
- [anon_sym_BQUOTE] = ACTIONS(825),
- [sym_number] = ACTIONS(787),
- [sym_private_property_identifier] = ACTIONS(1312),
- [sym_this] = ACTIONS(200),
- [sym_super] = ACTIONS(200),
- [sym_true] = ACTIONS(200),
- [sym_false] = ACTIONS(200),
- [sym_null] = ACTIONS(200),
- [sym_undefined] = ACTIONS(1468),
- [anon_sym_AT] = ACTIONS(99),
- [anon_sym_static] = ACTIONS(1286),
- [anon_sym_readonly] = ACTIONS(1286),
- [anon_sym_get] = ACTIONS(1286),
- [anon_sym_set] = ACTIONS(1286),
- [anon_sym_declare] = ACTIONS(1286),
- [anon_sym_public] = ACTIONS(1286),
- [anon_sym_private] = ACTIONS(1286),
- [anon_sym_protected] = ACTIONS(1286),
- [anon_sym_override] = ACTIONS(1286),
- [anon_sym_module] = ACTIONS(1286),
- [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_object] = ACTIONS(1286),
- [sym_html_comment] = ACTIONS(5),
- },
- [591] = {
- [sym_import] = STATE(3334),
- [sym_parenthesized_expression] = STATE(1251),
- [sym_expression] = STATE(1671),
- [sym_primary_expression] = STATE(1468),
- [sym_yield_expression] = STATE(1634),
- [sym_object] = STATE(1650),
- [sym_object_pattern] = STATE(4088),
- [sym_array] = STATE(1650),
- [sym_array_pattern] = STATE(4088),
- [sym_glimmer_template] = STATE(1634),
- [sym_jsx_element] = STATE(1634),
- [sym_jsx_opening_element] = STATE(3026),
- [sym_jsx_self_closing_element] = STATE(1634),
- [sym_class] = STATE(1650),
- [sym_function_expression] = STATE(1650),
- [sym_generator_function] = STATE(1650),
- [sym_arrow_function] = STATE(1650),
- [sym__call_signature] = STATE(5828),
- [sym_call_expression] = STATE(1650),
- [sym_new_expression] = STATE(1634),
- [sym_await_expression] = STATE(1634),
- [sym_member_expression] = STATE(1301),
- [sym_subscript_expression] = STATE(1301),
- [sym_assignment_expression] = STATE(1634),
- [sym__augmented_assignment_lhs] = STATE(2900),
- [sym_augmented_assignment_expression] = STATE(1634),
- [sym__destructuring_pattern] = STATE(4088),
- [sym_ternary_expression] = STATE(1634),
- [sym_binary_expression] = STATE(1634),
- [sym_unary_expression] = STATE(1634),
- [sym_update_expression] = STATE(1634),
- [sym_string] = STATE(1650),
- [sym_template_string] = STATE(1650),
- [sym_regex] = STATE(1650),
- [sym_meta_property] = STATE(1650),
- [sym_decorator] = STATE(1244),
- [sym_formal_parameters] = STATE(3742),
- [sym_non_null_expression] = STATE(1301),
- [sym_as_expression] = STATE(1634),
- [sym_satisfies_expression] = STATE(1634),
- [sym_instantiation_expression] = STATE(1634),
- [sym_internal_module] = STATE(1634),
- [sym_type_parameters] = STATE(5349),
- [aux_sym_export_statement_repeat1] = STATE(4458),
- [sym_identifier] = ACTIONS(2175),
- [anon_sym_export] = ACTIONS(1354),
- [anon_sym_type] = ACTIONS(1354),
- [anon_sym_namespace] = ACTIONS(1356),
- [anon_sym_LBRACE] = ACTIONS(845),
- [anon_sym_typeof] = ACTIONS(650),
- [anon_sym_import] = ACTIONS(133),
- [anon_sym_let] = ACTIONS(1354),
- [anon_sym_BANG] = ACTIONS(622),
- [anon_sym_LPAREN] = ACTIONS(815),
- [anon_sym_await] = ACTIONS(624),
- [anon_sym_yield] = ACTIONS(626),
- [anon_sym_LBRACK] = ACTIONS(849),
- [sym_glimmer_opening_tag] = ACTIONS(148),
- [anon_sym_DQUOTE] = ACTIONS(150),
- [anon_sym_SQUOTE] = ACTIONS(152),
- [anon_sym_class] = ACTIONS(154),
- [anon_sym_async] = ACTIONS(1360),
- [anon_sym_function] = ACTIONS(158),
- [anon_sym_new] = ACTIONS(2177),
- [anon_sym_using] = ACTIONS(636),
- [anon_sym_PLUS] = ACTIONS(650),
- [anon_sym_DASH] = ACTIONS(650),
- [anon_sym_SLASH] = ACTIONS(646),
- [anon_sym_LT] = ACTIONS(181),
- [anon_sym_TILDE] = ACTIONS(622),
- [anon_sym_void] = ACTIONS(650),
- [anon_sym_delete] = ACTIONS(650),
- [anon_sym_PLUS_PLUS] = ACTIONS(652),
- [anon_sym_DASH_DASH] = ACTIONS(652),
- [sym_comment] = ACTIONS(5),
- [anon_sym_BQUOTE] = ACTIONS(825),
- [sym_number] = ACTIONS(787),
- [sym_private_property_identifier] = ACTIONS(654),
- [sym_this] = ACTIONS(200),
- [sym_super] = ACTIONS(200),
- [sym_true] = ACTIONS(200),
- [sym_false] = ACTIONS(200),
- [sym_null] = ACTIONS(200),
- [sym_undefined] = ACTIONS(2179),
- [anon_sym_AT] = ACTIONS(99),
- [anon_sym_static] = ACTIONS(1354),
- [anon_sym_readonly] = ACTIONS(1354),
- [anon_sym_get] = ACTIONS(1354),
- [anon_sym_set] = ACTIONS(1354),
- [anon_sym_declare] = ACTIONS(1354),
- [anon_sym_public] = ACTIONS(1354),
- [anon_sym_private] = ACTIONS(1354),
- [anon_sym_protected] = ACTIONS(1354),
- [anon_sym_override] = ACTIONS(1354),
- [anon_sym_module] = ACTIONS(1354),
- [anon_sym_any] = ACTIONS(1354),
- [anon_sym_number] = ACTIONS(1354),
- [anon_sym_boolean] = ACTIONS(1354),
- [anon_sym_string] = ACTIONS(1354),
- [anon_sym_symbol] = ACTIONS(1354),
- [anon_sym_object] = ACTIONS(1354),
- [sym_html_comment] = ACTIONS(5),
- },
- [592] = {
- [sym_import] = STATE(3334),
- [sym_parenthesized_expression] = STATE(1327),
- [sym_expression] = STATE(1872),
- [sym_primary_expression] = STATE(1468),
- [sym_yield_expression] = STATE(1634),
- [sym_object] = STATE(1650),
- [sym_object_pattern] = STATE(5821),
- [sym_array] = STATE(1650),
- [sym_array_pattern] = STATE(5821),
- [sym_glimmer_template] = STATE(1634),
- [sym_jsx_element] = STATE(1634),
- [sym_jsx_opening_element] = STATE(3026),
- [sym_jsx_self_closing_element] = STATE(1634),
- [sym_class] = STATE(1650),
- [sym_function_expression] = STATE(1650),
- [sym_generator_function] = STATE(1650),
- [sym_arrow_function] = STATE(1650),
- [sym__call_signature] = STATE(5743),
- [sym_call_expression] = STATE(1650),
- [sym_new_expression] = STATE(1634),
- [sym_await_expression] = STATE(1634),
- [sym_member_expression] = STATE(1327),
- [sym_subscript_expression] = STATE(1327),
- [sym_assignment_expression] = STATE(1634),
- [sym__augmented_assignment_lhs] = STATE(2919),
- [sym_augmented_assignment_expression] = STATE(1634),
- [sym__destructuring_pattern] = STATE(5821),
- [sym_ternary_expression] = STATE(1634),
- [sym_binary_expression] = STATE(1634),
- [sym_unary_expression] = STATE(1634),
- [sym_update_expression] = STATE(1634),
- [sym_string] = STATE(1650),
- [sym_template_string] = STATE(1650),
- [sym_regex] = STATE(1650),
- [sym_meta_property] = STATE(1650),
- [sym_decorator] = STATE(1244),
- [sym_formal_parameters] = STATE(3742),
- [sym_non_null_expression] = STATE(1327),
- [sym_as_expression] = STATE(1634),
- [sym_satisfies_expression] = STATE(1634),
- [sym_instantiation_expression] = STATE(1634),
- [sym_internal_module] = STATE(1634),
- [sym_type_parameters] = STATE(5349),
- [aux_sym_export_statement_repeat1] = STATE(4458),
- [sym_identifier] = ACTIONS(1462),
- [anon_sym_export] = ACTIONS(1286),
- [anon_sym_type] = ACTIONS(1286),
- [anon_sym_namespace] = ACTIONS(1288),
- [anon_sym_LBRACE] = ACTIONS(813),
- [anon_sym_typeof] = ACTIONS(1308),
- [anon_sym_import] = ACTIONS(133),
- [anon_sym_let] = ACTIONS(1286),
- [anon_sym_BANG] = ACTIONS(1292),
- [anon_sym_LPAREN] = ACTIONS(815),
- [anon_sym_await] = ACTIONS(1294),
- [anon_sym_yield] = ACTIONS(1296),
- [anon_sym_LBRACK] = ACTIONS(817),
- [sym_glimmer_opening_tag] = ACTIONS(148),
- [anon_sym_DQUOTE] = ACTIONS(150),
- [anon_sym_SQUOTE] = ACTIONS(152),
- [anon_sym_class] = ACTIONS(154),
- [anon_sym_async] = ACTIONS(1298),
- [anon_sym_function] = ACTIONS(158),
- [anon_sym_new] = ACTIONS(1466),
- [anon_sym_using] = ACTIONS(1302),
- [anon_sym_PLUS] = ACTIONS(1308),
- [anon_sym_DASH] = ACTIONS(1308),
- [anon_sym_SLASH] = ACTIONS(922),
- [anon_sym_LT] = ACTIONS(181),
- [anon_sym_TILDE] = ACTIONS(1292),
- [anon_sym_void] = ACTIONS(1308),
- [anon_sym_delete] = ACTIONS(1308),
- [anon_sym_PLUS_PLUS] = ACTIONS(1310),
- [anon_sym_DASH_DASH] = ACTIONS(1310),
- [sym_comment] = ACTIONS(5),
- [anon_sym_BQUOTE] = ACTIONS(825),
- [sym_number] = ACTIONS(787),
- [sym_private_property_identifier] = ACTIONS(1312),
- [sym_this] = ACTIONS(200),
- [sym_super] = ACTIONS(200),
- [sym_true] = ACTIONS(200),
- [sym_false] = ACTIONS(200),
- [sym_null] = ACTIONS(200),
- [sym_undefined] = ACTIONS(1468),
- [anon_sym_AT] = ACTIONS(99),
- [anon_sym_static] = ACTIONS(1286),
- [anon_sym_readonly] = ACTIONS(1286),
- [anon_sym_get] = ACTIONS(1286),
- [anon_sym_set] = ACTIONS(1286),
- [anon_sym_declare] = ACTIONS(1286),
- [anon_sym_public] = ACTIONS(1286),
- [anon_sym_private] = ACTIONS(1286),
- [anon_sym_protected] = ACTIONS(1286),
- [anon_sym_override] = ACTIONS(1286),
- [anon_sym_module] = ACTIONS(1286),
- [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_object] = ACTIONS(1286),
- [sym_html_comment] = ACTIONS(5),
- },
- [593] = {
- [sym_import] = STATE(3334),
- [sym_parenthesized_expression] = STATE(1327),
- [sym_expression] = STATE(1873),
- [sym_primary_expression] = STATE(1468),
- [sym_yield_expression] = STATE(1634),
- [sym_object] = STATE(1650),
- [sym_object_pattern] = STATE(5821),
- [sym_array] = STATE(1650),
- [sym_array_pattern] = STATE(5821),
- [sym_glimmer_template] = STATE(1634),
- [sym_jsx_element] = STATE(1634),
- [sym_jsx_opening_element] = STATE(3026),
- [sym_jsx_self_closing_element] = STATE(1634),
- [sym_class] = STATE(1650),
- [sym_function_expression] = STATE(1650),
- [sym_generator_function] = STATE(1650),
- [sym_arrow_function] = STATE(1650),
- [sym__call_signature] = STATE(5743),
- [sym_call_expression] = STATE(1650),
- [sym_new_expression] = STATE(1634),
- [sym_await_expression] = STATE(1634),
- [sym_member_expression] = STATE(1327),
- [sym_subscript_expression] = STATE(1327),
- [sym_assignment_expression] = STATE(1634),
- [sym__augmented_assignment_lhs] = STATE(2919),
- [sym_augmented_assignment_expression] = STATE(1634),
- [sym__destructuring_pattern] = STATE(5821),
- [sym_ternary_expression] = STATE(1634),
- [sym_binary_expression] = STATE(1634),
- [sym_unary_expression] = STATE(1634),
- [sym_update_expression] = STATE(1634),
- [sym_string] = STATE(1650),
- [sym_template_string] = STATE(1650),
- [sym_regex] = STATE(1650),
- [sym_meta_property] = STATE(1650),
- [sym_decorator] = STATE(1244),
- [sym_formal_parameters] = STATE(3742),
- [sym_non_null_expression] = STATE(1327),
- [sym_as_expression] = STATE(1634),
- [sym_satisfies_expression] = STATE(1634),
- [sym_instantiation_expression] = STATE(1634),
- [sym_internal_module] = STATE(1634),
- [sym_type_parameters] = STATE(5349),
- [aux_sym_export_statement_repeat1] = STATE(4458),
- [sym_identifier] = ACTIONS(1462),
- [anon_sym_export] = ACTIONS(1286),
- [anon_sym_type] = ACTIONS(1286),
- [anon_sym_namespace] = ACTIONS(1288),
- [anon_sym_LBRACE] = ACTIONS(813),
- [anon_sym_typeof] = ACTIONS(1308),
- [anon_sym_import] = ACTIONS(133),
- [anon_sym_let] = ACTIONS(1286),
- [anon_sym_BANG] = ACTIONS(1292),
- [anon_sym_LPAREN] = ACTIONS(815),
- [anon_sym_await] = ACTIONS(1294),
- [anon_sym_yield] = ACTIONS(1296),
- [anon_sym_LBRACK] = ACTIONS(817),
- [sym_glimmer_opening_tag] = ACTIONS(148),
- [anon_sym_DQUOTE] = ACTIONS(150),
- [anon_sym_SQUOTE] = ACTIONS(152),
- [anon_sym_class] = ACTIONS(154),
- [anon_sym_async] = ACTIONS(1298),
- [anon_sym_function] = ACTIONS(158),
- [anon_sym_new] = ACTIONS(1466),
- [anon_sym_using] = ACTIONS(1302),
- [anon_sym_PLUS] = ACTIONS(1308),
- [anon_sym_DASH] = ACTIONS(1308),
- [anon_sym_SLASH] = ACTIONS(922),
- [anon_sym_LT] = ACTIONS(181),
- [anon_sym_TILDE] = ACTIONS(1292),
- [anon_sym_void] = ACTIONS(1308),
- [anon_sym_delete] = ACTIONS(1308),
- [anon_sym_PLUS_PLUS] = ACTIONS(1310),
- [anon_sym_DASH_DASH] = ACTIONS(1310),
- [sym_comment] = ACTIONS(5),
- [anon_sym_BQUOTE] = ACTIONS(825),
- [sym_number] = ACTIONS(787),
- [sym_private_property_identifier] = ACTIONS(1312),
- [sym_this] = ACTIONS(200),
- [sym_super] = ACTIONS(200),
- [sym_true] = ACTIONS(200),
- [sym_false] = ACTIONS(200),
- [sym_null] = ACTIONS(200),
- [sym_undefined] = ACTIONS(1468),
- [anon_sym_AT] = ACTIONS(99),
- [anon_sym_static] = ACTIONS(1286),
- [anon_sym_readonly] = ACTIONS(1286),
- [anon_sym_get] = ACTIONS(1286),
- [anon_sym_set] = ACTIONS(1286),
- [anon_sym_declare] = ACTIONS(1286),
- [anon_sym_public] = ACTIONS(1286),
- [anon_sym_private] = ACTIONS(1286),
- [anon_sym_protected] = ACTIONS(1286),
- [anon_sym_override] = ACTIONS(1286),
- [anon_sym_module] = ACTIONS(1286),
- [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_object] = ACTIONS(1286),
- [sym_html_comment] = ACTIONS(5),
- },
- [594] = {
- [sym_import] = STATE(3334),
- [sym_parenthesized_expression] = STATE(1327),
- [sym_expression] = STATE(1875),
- [sym_primary_expression] = STATE(1468),
- [sym_yield_expression] = STATE(1634),
- [sym_object] = STATE(1650),
- [sym_object_pattern] = STATE(5821),
- [sym_array] = STATE(1650),
- [sym_array_pattern] = STATE(5821),
- [sym_glimmer_template] = STATE(1634),
- [sym_jsx_element] = STATE(1634),
- [sym_jsx_opening_element] = STATE(3026),
- [sym_jsx_self_closing_element] = STATE(1634),
- [sym_class] = STATE(1650),
- [sym_function_expression] = STATE(1650),
- [sym_generator_function] = STATE(1650),
- [sym_arrow_function] = STATE(1650),
- [sym__call_signature] = STATE(5743),
- [sym_call_expression] = STATE(1650),
- [sym_new_expression] = STATE(1634),
- [sym_await_expression] = STATE(1634),
- [sym_member_expression] = STATE(1327),
- [sym_subscript_expression] = STATE(1327),
- [sym_assignment_expression] = STATE(1634),
- [sym__augmented_assignment_lhs] = STATE(2919),
- [sym_augmented_assignment_expression] = STATE(1634),
- [sym__destructuring_pattern] = STATE(5821),
- [sym_ternary_expression] = STATE(1634),
- [sym_binary_expression] = STATE(1634),
- [sym_unary_expression] = STATE(1634),
- [sym_update_expression] = STATE(1634),
- [sym_string] = STATE(1650),
- [sym_template_string] = STATE(1650),
- [sym_regex] = STATE(1650),
- [sym_meta_property] = STATE(1650),
- [sym_decorator] = STATE(1244),
- [sym_formal_parameters] = STATE(3742),
- [sym_non_null_expression] = STATE(1327),
- [sym_as_expression] = STATE(1634),
- [sym_satisfies_expression] = STATE(1634),
- [sym_instantiation_expression] = STATE(1634),
- [sym_internal_module] = STATE(1634),
- [sym_type_parameters] = STATE(5349),
- [aux_sym_export_statement_repeat1] = STATE(4458),
- [sym_identifier] = ACTIONS(1462),
- [anon_sym_export] = ACTIONS(1286),
- [anon_sym_type] = ACTIONS(1286),
- [anon_sym_namespace] = ACTIONS(1288),
- [anon_sym_LBRACE] = ACTIONS(813),
- [anon_sym_typeof] = ACTIONS(1308),
- [anon_sym_import] = ACTIONS(133),
- [anon_sym_let] = ACTIONS(1286),
- [anon_sym_BANG] = ACTIONS(1292),
- [anon_sym_LPAREN] = ACTIONS(815),
- [anon_sym_await] = ACTIONS(1294),
- [anon_sym_yield] = ACTIONS(1296),
- [anon_sym_LBRACK] = ACTIONS(817),
- [sym_glimmer_opening_tag] = ACTIONS(148),
- [anon_sym_DQUOTE] = ACTIONS(150),
- [anon_sym_SQUOTE] = ACTIONS(152),
- [anon_sym_class] = ACTIONS(154),
- [anon_sym_async] = ACTIONS(1298),
- [anon_sym_function] = ACTIONS(158),
- [anon_sym_new] = ACTIONS(1466),
- [anon_sym_using] = ACTIONS(1302),
- [anon_sym_PLUS] = ACTIONS(1308),
- [anon_sym_DASH] = ACTIONS(1308),
- [anon_sym_SLASH] = ACTIONS(922),
- [anon_sym_LT] = ACTIONS(181),
- [anon_sym_TILDE] = ACTIONS(1292),
- [anon_sym_void] = ACTIONS(1308),
- [anon_sym_delete] = ACTIONS(1308),
- [anon_sym_PLUS_PLUS] = ACTIONS(1310),
- [anon_sym_DASH_DASH] = ACTIONS(1310),
- [sym_comment] = ACTIONS(5),
- [anon_sym_BQUOTE] = ACTIONS(825),
- [sym_number] = ACTIONS(787),
- [sym_private_property_identifier] = ACTIONS(1312),
- [sym_this] = ACTIONS(200),
- [sym_super] = ACTIONS(200),
- [sym_true] = ACTIONS(200),
- [sym_false] = ACTIONS(200),
- [sym_null] = ACTIONS(200),
- [sym_undefined] = ACTIONS(1468),
- [anon_sym_AT] = ACTIONS(99),
- [anon_sym_static] = ACTIONS(1286),
- [anon_sym_readonly] = ACTIONS(1286),
- [anon_sym_get] = ACTIONS(1286),
- [anon_sym_set] = ACTIONS(1286),
- [anon_sym_declare] = ACTIONS(1286),
- [anon_sym_public] = ACTIONS(1286),
- [anon_sym_private] = ACTIONS(1286),
- [anon_sym_protected] = ACTIONS(1286),
- [anon_sym_override] = ACTIONS(1286),
- [anon_sym_module] = ACTIONS(1286),
- [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_object] = ACTIONS(1286),
- [sym_html_comment] = ACTIONS(5),
- },
- [595] = {
- [sym_import] = STATE(3306),
- [sym_parenthesized_expression] = STATE(1294),
- [sym_expression] = STATE(1825),
- [sym_primary_expression] = STATE(1946),
- [sym_yield_expression] = STATE(2234),
- [sym_object] = STATE(2310),
- [sym_object_pattern] = STATE(5667),
- [sym_array] = STATE(2310),
- [sym_array_pattern] = STATE(5667),
- [sym_glimmer_template] = STATE(2234),
- [sym_jsx_element] = STATE(2234),
- [sym_jsx_opening_element] = STATE(3051),
- [sym_jsx_self_closing_element] = STATE(2234),
- [sym_class] = STATE(2310),
- [sym_function_expression] = STATE(2310),
- [sym_generator_function] = STATE(2310),
- [sym_arrow_function] = STATE(2310),
- [sym__call_signature] = STATE(5809),
- [sym_call_expression] = STATE(2310),
- [sym_new_expression] = STATE(2234),
- [sym_await_expression] = STATE(2234),
- [sym_member_expression] = STATE(1294),
- [sym_subscript_expression] = STATE(1294),
- [sym_assignment_expression] = STATE(2234),
- [sym__augmented_assignment_lhs] = STATE(2875),
- [sym_augmented_assignment_expression] = STATE(2234),
- [sym__destructuring_pattern] = STATE(5667),
- [sym_ternary_expression] = STATE(2234),
- [sym_binary_expression] = STATE(2234),
- [sym_unary_expression] = STATE(2234),
- [sym_update_expression] = STATE(2234),
- [sym_string] = STATE(2310),
- [sym_template_string] = STATE(2310),
- [sym_regex] = STATE(2310),
- [sym_meta_property] = STATE(2310),
- [sym_decorator] = STATE(1244),
- [sym_formal_parameters] = STATE(3742),
- [sym_non_null_expression] = STATE(1294),
- [sym_as_expression] = STATE(2234),
- [sym_satisfies_expression] = STATE(2234),
- [sym_instantiation_expression] = STATE(2234),
- [sym_internal_module] = STATE(2234),
- [sym_type_parameters] = STATE(5349),
- [aux_sym_export_statement_repeat1] = STATE(4499),
- [sym_identifier] = ACTIONS(1440),
- [anon_sym_export] = ACTIONS(1372),
- [anon_sym_type] = ACTIONS(1372),
- [anon_sym_namespace] = ACTIONS(1374),
- [anon_sym_LBRACE] = ACTIONS(700),
- [anon_sym_typeof] = ACTIONS(21),
- [anon_sym_import] = ACTIONS(133),
- [anon_sym_let] = ACTIONS(1372),
- [anon_sym_BANG] = ACTIONS(33),
- [anon_sym_LPAREN] = ACTIONS(41),
- [anon_sym_await] = ACTIONS(43),
- [anon_sym_yield] = ACTIONS(63),
- [anon_sym_LBRACK] = ACTIONS(65),
- [sym_glimmer_opening_tag] = ACTIONS(67),
- [anon_sym_DQUOTE] = ACTIONS(69),
- [anon_sym_SQUOTE] = ACTIONS(71),
- [anon_sym_class] = ACTIONS(709),
- [anon_sym_async] = ACTIONS(1378),
- [anon_sym_function] = ACTIONS(713),
- [anon_sym_new] = ACTIONS(1444),
- [anon_sym_using] = ACTIONS(81),
- [anon_sym_PLUS] = ACTIONS(21),
- [anon_sym_DASH] = ACTIONS(21),
- [anon_sym_SLASH] = ACTIONS(83),
- [anon_sym_LT] = ACTIONS(85),
- [anon_sym_TILDE] = ACTIONS(33),
- [anon_sym_void] = ACTIONS(21),
- [anon_sym_delete] = ACTIONS(21),
- [anon_sym_PLUS_PLUS] = ACTIONS(87),
- [anon_sym_DASH_DASH] = ACTIONS(87),
- [sym_comment] = ACTIONS(5),
- [anon_sym_BQUOTE] = ACTIONS(89),
- [sym_number] = ACTIONS(91),
- [sym_private_property_identifier] = ACTIONS(93),
- [sym_this] = ACTIONS(95),
- [sym_super] = ACTIONS(95),
- [sym_true] = ACTIONS(95),
- [sym_false] = ACTIONS(95),
- [sym_null] = ACTIONS(95),
- [sym_undefined] = ACTIONS(97),
- [anon_sym_AT] = ACTIONS(99),
- [anon_sym_static] = ACTIONS(1372),
- [anon_sym_readonly] = ACTIONS(1372),
- [anon_sym_get] = ACTIONS(1372),
- [anon_sym_set] = ACTIONS(1372),
- [anon_sym_declare] = ACTIONS(1372),
- [anon_sym_public] = ACTIONS(1372),
- [anon_sym_private] = ACTIONS(1372),
- [anon_sym_protected] = ACTIONS(1372),
- [anon_sym_override] = ACTIONS(1372),
- [anon_sym_module] = ACTIONS(1372),
- [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_object] = ACTIONS(1372),
- [sym_html_comment] = ACTIONS(5),
- },
- [596] = {
- [sym_import] = STATE(3306),
- [sym_parenthesized_expression] = STATE(1294),
- [sym_expression] = STATE(1746),
- [sym_primary_expression] = STATE(1946),
- [sym_yield_expression] = STATE(2234),
- [sym_object] = STATE(2310),
- [sym_object_pattern] = STATE(5667),
- [sym_array] = STATE(2310),
- [sym_array_pattern] = STATE(5667),
- [sym_glimmer_template] = STATE(2234),
- [sym_jsx_element] = STATE(2234),
- [sym_jsx_opening_element] = STATE(3051),
- [sym_jsx_self_closing_element] = STATE(2234),
- [sym_class] = STATE(2310),
- [sym_function_expression] = STATE(2310),
- [sym_generator_function] = STATE(2310),
- [sym_arrow_function] = STATE(2310),
- [sym__call_signature] = STATE(5809),
- [sym_call_expression] = STATE(2310),
- [sym_new_expression] = STATE(2234),
- [sym_await_expression] = STATE(2234),
- [sym_member_expression] = STATE(1294),
- [sym_subscript_expression] = STATE(1294),
- [sym_assignment_expression] = STATE(2234),
- [sym__augmented_assignment_lhs] = STATE(2875),
- [sym_augmented_assignment_expression] = STATE(2234),
- [sym__destructuring_pattern] = STATE(5667),
- [sym_ternary_expression] = STATE(2234),
- [sym_binary_expression] = STATE(2234),
- [sym_unary_expression] = STATE(2234),
- [sym_update_expression] = STATE(2234),
- [sym_string] = STATE(2310),
- [sym_template_string] = STATE(2310),
- [sym_regex] = STATE(2310),
- [sym_meta_property] = STATE(2310),
- [sym_decorator] = STATE(1244),
- [sym_formal_parameters] = STATE(3742),
- [sym_non_null_expression] = STATE(1294),
- [sym_as_expression] = STATE(2234),
- [sym_satisfies_expression] = STATE(2234),
- [sym_instantiation_expression] = STATE(2234),
- [sym_internal_module] = STATE(2234),
- [sym_type_parameters] = STATE(5349),
- [aux_sym_export_statement_repeat1] = STATE(4499),
- [sym_identifier] = ACTIONS(1440),
- [anon_sym_export] = ACTIONS(1372),
- [anon_sym_type] = ACTIONS(1372),
- [anon_sym_namespace] = ACTIONS(1374),
- [anon_sym_LBRACE] = ACTIONS(700),
- [anon_sym_typeof] = ACTIONS(21),
- [anon_sym_import] = ACTIONS(133),
- [anon_sym_let] = ACTIONS(1372),
- [anon_sym_BANG] = ACTIONS(33),
- [anon_sym_LPAREN] = ACTIONS(41),
- [anon_sym_await] = ACTIONS(43),
- [anon_sym_yield] = ACTIONS(63),
- [anon_sym_LBRACK] = ACTIONS(65),
- [sym_glimmer_opening_tag] = ACTIONS(67),
- [anon_sym_DQUOTE] = ACTIONS(69),
- [anon_sym_SQUOTE] = ACTIONS(71),
- [anon_sym_class] = ACTIONS(709),
- [anon_sym_async] = ACTIONS(1378),
- [anon_sym_function] = ACTIONS(713),
- [anon_sym_new] = ACTIONS(1444),
- [anon_sym_using] = ACTIONS(81),
- [anon_sym_PLUS] = ACTIONS(21),
- [anon_sym_DASH] = ACTIONS(21),
- [anon_sym_SLASH] = ACTIONS(83),
- [anon_sym_LT] = ACTIONS(85),
- [anon_sym_TILDE] = ACTIONS(33),
- [anon_sym_void] = ACTIONS(21),
- [anon_sym_delete] = ACTIONS(21),
- [anon_sym_PLUS_PLUS] = ACTIONS(87),
- [anon_sym_DASH_DASH] = ACTIONS(87),
- [sym_comment] = ACTIONS(5),
- [anon_sym_BQUOTE] = ACTIONS(89),
- [sym_number] = ACTIONS(91),
- [sym_private_property_identifier] = ACTIONS(93),
- [sym_this] = ACTIONS(95),
- [sym_super] = ACTIONS(95),
- [sym_true] = ACTIONS(95),
- [sym_false] = ACTIONS(95),
- [sym_null] = ACTIONS(95),
- [sym_undefined] = ACTIONS(97),
- [anon_sym_AT] = ACTIONS(99),
- [anon_sym_static] = ACTIONS(1372),
- [anon_sym_readonly] = ACTIONS(1372),
- [anon_sym_get] = ACTIONS(1372),
- [anon_sym_set] = ACTIONS(1372),
- [anon_sym_declare] = ACTIONS(1372),
- [anon_sym_public] = ACTIONS(1372),
- [anon_sym_private] = ACTIONS(1372),
- [anon_sym_protected] = ACTIONS(1372),
- [anon_sym_override] = ACTIONS(1372),
- [anon_sym_module] = ACTIONS(1372),
- [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_object] = ACTIONS(1372),
- [sym_html_comment] = ACTIONS(5),
- },
- [597] = {
- [sym_import] = STATE(3306),
- [sym_parenthesized_expression] = STATE(1294),
- [sym_expression] = STATE(1748),
- [sym_primary_expression] = STATE(1946),
- [sym_yield_expression] = STATE(2234),
- [sym_object] = STATE(2310),
- [sym_object_pattern] = STATE(5667),
- [sym_array] = STATE(2310),
- [sym_array_pattern] = STATE(5667),
- [sym_glimmer_template] = STATE(2234),
- [sym_jsx_element] = STATE(2234),
- [sym_jsx_opening_element] = STATE(3051),
- [sym_jsx_self_closing_element] = STATE(2234),
- [sym_class] = STATE(2310),
- [sym_function_expression] = STATE(2310),
- [sym_generator_function] = STATE(2310),
- [sym_arrow_function] = STATE(2310),
- [sym__call_signature] = STATE(5809),
- [sym_call_expression] = STATE(2310),
- [sym_new_expression] = STATE(2234),
- [sym_await_expression] = STATE(2234),
- [sym_member_expression] = STATE(1294),
- [sym_subscript_expression] = STATE(1294),
- [sym_assignment_expression] = STATE(2234),
- [sym__augmented_assignment_lhs] = STATE(2875),
- [sym_augmented_assignment_expression] = STATE(2234),
- [sym__destructuring_pattern] = STATE(5667),
- [sym_ternary_expression] = STATE(2234),
- [sym_binary_expression] = STATE(2234),
- [sym_unary_expression] = STATE(2234),
- [sym_update_expression] = STATE(2234),
- [sym_string] = STATE(2310),
- [sym_template_string] = STATE(2310),
- [sym_regex] = STATE(2310),
- [sym_meta_property] = STATE(2310),
- [sym_decorator] = STATE(1244),
- [sym_formal_parameters] = STATE(3742),
- [sym_non_null_expression] = STATE(1294),
- [sym_as_expression] = STATE(2234),
- [sym_satisfies_expression] = STATE(2234),
- [sym_instantiation_expression] = STATE(2234),
- [sym_internal_module] = STATE(2234),
- [sym_type_parameters] = STATE(5349),
- [aux_sym_export_statement_repeat1] = STATE(4499),
- [sym_identifier] = ACTIONS(1440),
- [anon_sym_export] = ACTIONS(1372),
- [anon_sym_type] = ACTIONS(1372),
- [anon_sym_namespace] = ACTIONS(1374),
- [anon_sym_LBRACE] = ACTIONS(700),
- [anon_sym_typeof] = ACTIONS(21),
- [anon_sym_import] = ACTIONS(133),
- [anon_sym_let] = ACTIONS(1372),
- [anon_sym_BANG] = ACTIONS(33),
- [anon_sym_LPAREN] = ACTIONS(41),
- [anon_sym_await] = ACTIONS(43),
- [anon_sym_yield] = ACTIONS(63),
- [anon_sym_LBRACK] = ACTIONS(65),
- [sym_glimmer_opening_tag] = ACTIONS(67),
- [anon_sym_DQUOTE] = ACTIONS(69),
- [anon_sym_SQUOTE] = ACTIONS(71),
- [anon_sym_class] = ACTIONS(709),
- [anon_sym_async] = ACTIONS(1378),
- [anon_sym_function] = ACTIONS(713),
- [anon_sym_new] = ACTIONS(1444),
- [anon_sym_using] = ACTIONS(81),
- [anon_sym_PLUS] = ACTIONS(21),
- [anon_sym_DASH] = ACTIONS(21),
- [anon_sym_SLASH] = ACTIONS(83),
- [anon_sym_LT] = ACTIONS(85),
- [anon_sym_TILDE] = ACTIONS(33),
- [anon_sym_void] = ACTIONS(21),
- [anon_sym_delete] = ACTIONS(21),
- [anon_sym_PLUS_PLUS] = ACTIONS(87),
- [anon_sym_DASH_DASH] = ACTIONS(87),
- [sym_comment] = ACTIONS(5),
- [anon_sym_BQUOTE] = ACTIONS(89),
- [sym_number] = ACTIONS(91),
- [sym_private_property_identifier] = ACTIONS(93),
- [sym_this] = ACTIONS(95),
- [sym_super] = ACTIONS(95),
- [sym_true] = ACTIONS(95),
- [sym_false] = ACTIONS(95),
- [sym_null] = ACTIONS(95),
- [sym_undefined] = ACTIONS(97),
- [anon_sym_AT] = ACTIONS(99),
- [anon_sym_static] = ACTIONS(1372),
- [anon_sym_readonly] = ACTIONS(1372),
- [anon_sym_get] = ACTIONS(1372),
- [anon_sym_set] = ACTIONS(1372),
- [anon_sym_declare] = ACTIONS(1372),
- [anon_sym_public] = ACTIONS(1372),
- [anon_sym_private] = ACTIONS(1372),
- [anon_sym_protected] = ACTIONS(1372),
- [anon_sym_override] = ACTIONS(1372),
- [anon_sym_module] = ACTIONS(1372),
- [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_object] = ACTIONS(1372),
- [sym_html_comment] = ACTIONS(5),
- },
- [598] = {
- [sym_import] = STATE(3334),
- [sym_parenthesized_expression] = STATE(1327),
- [sym_expression] = STATE(1879),
- [sym_primary_expression] = STATE(1468),
- [sym_yield_expression] = STATE(1634),
- [sym_object] = STATE(1650),
- [sym_object_pattern] = STATE(5821),
- [sym_array] = STATE(1650),
- [sym_array_pattern] = STATE(5821),
- [sym_glimmer_template] = STATE(1634),
- [sym_jsx_element] = STATE(1634),
- [sym_jsx_opening_element] = STATE(3026),
- [sym_jsx_self_closing_element] = STATE(1634),
- [sym_class] = STATE(1650),
- [sym_function_expression] = STATE(1650),
- [sym_generator_function] = STATE(1650),
- [sym_arrow_function] = STATE(1650),
- [sym__call_signature] = STATE(5743),
- [sym_call_expression] = STATE(1650),
- [sym_new_expression] = STATE(1634),
- [sym_await_expression] = STATE(1634),
- [sym_member_expression] = STATE(1327),
- [sym_subscript_expression] = STATE(1327),
- [sym_assignment_expression] = STATE(1634),
- [sym__augmented_assignment_lhs] = STATE(2919),
- [sym_augmented_assignment_expression] = STATE(1634),
- [sym__destructuring_pattern] = STATE(5821),
- [sym_ternary_expression] = STATE(1634),
- [sym_binary_expression] = STATE(1634),
- [sym_unary_expression] = STATE(1634),
- [sym_update_expression] = STATE(1634),
- [sym_string] = STATE(1650),
- [sym_template_string] = STATE(1650),
- [sym_regex] = STATE(1650),
- [sym_meta_property] = STATE(1650),
- [sym_decorator] = STATE(1244),
- [sym_formal_parameters] = STATE(3742),
- [sym_non_null_expression] = STATE(1327),
- [sym_as_expression] = STATE(1634),
- [sym_satisfies_expression] = STATE(1634),
- [sym_instantiation_expression] = STATE(1634),
- [sym_internal_module] = STATE(1634),
- [sym_type_parameters] = STATE(5349),
- [aux_sym_export_statement_repeat1] = STATE(4458),
- [sym_identifier] = ACTIONS(1462),
- [anon_sym_export] = ACTIONS(1286),
- [anon_sym_type] = ACTIONS(1286),
- [anon_sym_namespace] = ACTIONS(1288),
- [anon_sym_LBRACE] = ACTIONS(813),
- [anon_sym_typeof] = ACTIONS(1308),
- [anon_sym_import] = ACTIONS(133),
- [anon_sym_let] = ACTIONS(1286),
- [anon_sym_BANG] = ACTIONS(1292),
- [anon_sym_LPAREN] = ACTIONS(815),
- [anon_sym_await] = ACTIONS(1294),
- [anon_sym_yield] = ACTIONS(1296),
- [anon_sym_LBRACK] = ACTIONS(817),
- [sym_glimmer_opening_tag] = ACTIONS(148),
- [anon_sym_DQUOTE] = ACTIONS(150),
- [anon_sym_SQUOTE] = ACTIONS(152),
- [anon_sym_class] = ACTIONS(154),
- [anon_sym_async] = ACTIONS(1298),
- [anon_sym_function] = ACTIONS(158),
- [anon_sym_new] = ACTIONS(1466),
- [anon_sym_using] = ACTIONS(1302),
- [anon_sym_PLUS] = ACTIONS(1308),
- [anon_sym_DASH] = ACTIONS(1308),
- [anon_sym_SLASH] = ACTIONS(922),
- [anon_sym_LT] = ACTIONS(181),
- [anon_sym_TILDE] = ACTIONS(1292),
- [anon_sym_void] = ACTIONS(1308),
- [anon_sym_delete] = ACTIONS(1308),
- [anon_sym_PLUS_PLUS] = ACTIONS(1310),
- [anon_sym_DASH_DASH] = ACTIONS(1310),
- [sym_comment] = ACTIONS(5),
- [anon_sym_BQUOTE] = ACTIONS(825),
- [sym_number] = ACTIONS(787),
- [sym_private_property_identifier] = ACTIONS(1312),
- [sym_this] = ACTIONS(200),
- [sym_super] = ACTIONS(200),
- [sym_true] = ACTIONS(200),
- [sym_false] = ACTIONS(200),
- [sym_null] = ACTIONS(200),
- [sym_undefined] = ACTIONS(1468),
- [anon_sym_AT] = ACTIONS(99),
- [anon_sym_static] = ACTIONS(1286),
- [anon_sym_readonly] = ACTIONS(1286),
- [anon_sym_get] = ACTIONS(1286),
- [anon_sym_set] = ACTIONS(1286),
- [anon_sym_declare] = ACTIONS(1286),
- [anon_sym_public] = ACTIONS(1286),
- [anon_sym_private] = ACTIONS(1286),
- [anon_sym_protected] = ACTIONS(1286),
- [anon_sym_override] = ACTIONS(1286),
- [anon_sym_module] = ACTIONS(1286),
- [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_object] = ACTIONS(1286),
- [sym_html_comment] = ACTIONS(5),
- },
- [599] = {
- [sym_import] = STATE(3334),
- [sym_parenthesized_expression] = STATE(1327),
- [sym_expression] = STATE(1880),
- [sym_primary_expression] = STATE(1468),
- [sym_yield_expression] = STATE(1634),
- [sym_object] = STATE(1650),
- [sym_object_pattern] = STATE(5821),
- [sym_array] = STATE(1650),
- [sym_array_pattern] = STATE(5821),
- [sym_glimmer_template] = STATE(1634),
- [sym_jsx_element] = STATE(1634),
- [sym_jsx_opening_element] = STATE(3026),
- [sym_jsx_self_closing_element] = STATE(1634),
- [sym_class] = STATE(1650),
- [sym_function_expression] = STATE(1650),
- [sym_generator_function] = STATE(1650),
- [sym_arrow_function] = STATE(1650),
- [sym__call_signature] = STATE(5743),
- [sym_call_expression] = STATE(1650),
- [sym_new_expression] = STATE(1634),
- [sym_await_expression] = STATE(1634),
- [sym_member_expression] = STATE(1327),
- [sym_subscript_expression] = STATE(1327),
- [sym_assignment_expression] = STATE(1634),
- [sym__augmented_assignment_lhs] = STATE(2919),
- [sym_augmented_assignment_expression] = STATE(1634),
- [sym__destructuring_pattern] = STATE(5821),
- [sym_ternary_expression] = STATE(1634),
- [sym_binary_expression] = STATE(1634),
- [sym_unary_expression] = STATE(1634),
- [sym_update_expression] = STATE(1634),
- [sym_string] = STATE(1650),
- [sym_template_string] = STATE(1650),
- [sym_regex] = STATE(1650),
- [sym_meta_property] = STATE(1650),
- [sym_decorator] = STATE(1244),
- [sym_formal_parameters] = STATE(3742),
- [sym_non_null_expression] = STATE(1327),
- [sym_as_expression] = STATE(1634),
- [sym_satisfies_expression] = STATE(1634),
- [sym_instantiation_expression] = STATE(1634),
- [sym_internal_module] = STATE(1634),
- [sym_type_parameters] = STATE(5349),
- [aux_sym_export_statement_repeat1] = STATE(4458),
- [sym_identifier] = ACTIONS(1462),
- [anon_sym_export] = ACTIONS(1286),
- [anon_sym_type] = ACTIONS(1286),
- [anon_sym_namespace] = ACTIONS(1288),
- [anon_sym_LBRACE] = ACTIONS(813),
- [anon_sym_typeof] = ACTIONS(1308),
- [anon_sym_import] = ACTIONS(133),
- [anon_sym_let] = ACTIONS(1286),
- [anon_sym_BANG] = ACTIONS(1292),
- [anon_sym_LPAREN] = ACTIONS(815),
- [anon_sym_await] = ACTIONS(1294),
- [anon_sym_yield] = ACTIONS(1296),
- [anon_sym_LBRACK] = ACTIONS(817),
- [sym_glimmer_opening_tag] = ACTIONS(148),
- [anon_sym_DQUOTE] = ACTIONS(150),
- [anon_sym_SQUOTE] = ACTIONS(152),
- [anon_sym_class] = ACTIONS(154),
- [anon_sym_async] = ACTIONS(1298),
- [anon_sym_function] = ACTIONS(158),
- [anon_sym_new] = ACTIONS(1466),
- [anon_sym_using] = ACTIONS(1302),
- [anon_sym_PLUS] = ACTIONS(1308),
- [anon_sym_DASH] = ACTIONS(1308),
- [anon_sym_SLASH] = ACTIONS(922),
- [anon_sym_LT] = ACTIONS(181),
- [anon_sym_TILDE] = ACTIONS(1292),
- [anon_sym_void] = ACTIONS(1308),
- [anon_sym_delete] = ACTIONS(1308),
- [anon_sym_PLUS_PLUS] = ACTIONS(1310),
- [anon_sym_DASH_DASH] = ACTIONS(1310),
- [sym_comment] = ACTIONS(5),
- [anon_sym_BQUOTE] = ACTIONS(825),
- [sym_number] = ACTIONS(787),
- [sym_private_property_identifier] = ACTIONS(1312),
- [sym_this] = ACTIONS(200),
- [sym_super] = ACTIONS(200),
- [sym_true] = ACTIONS(200),
- [sym_false] = ACTIONS(200),
- [sym_null] = ACTIONS(200),
- [sym_undefined] = ACTIONS(1468),
- [anon_sym_AT] = ACTIONS(99),
- [anon_sym_static] = ACTIONS(1286),
- [anon_sym_readonly] = ACTIONS(1286),
- [anon_sym_get] = ACTIONS(1286),
- [anon_sym_set] = ACTIONS(1286),
- [anon_sym_declare] = ACTIONS(1286),
- [anon_sym_public] = ACTIONS(1286),
- [anon_sym_private] = ACTIONS(1286),
- [anon_sym_protected] = ACTIONS(1286),
- [anon_sym_override] = ACTIONS(1286),
- [anon_sym_module] = ACTIONS(1286),
- [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_object] = ACTIONS(1286),
- [sym_html_comment] = ACTIONS(5),
- },
- [600] = {
- [sym_import] = STATE(3334),
- [sym_parenthesized_expression] = STATE(1251),
- [sym_expression] = STATE(1479),
- [sym_primary_expression] = STATE(1468),
- [sym_yield_expression] = STATE(1634),
- [sym_object] = STATE(1650),
- [sym_object_pattern] = STATE(5633),
- [sym_array] = STATE(1650),
- [sym_array_pattern] = STATE(5633),
- [sym_glimmer_template] = STATE(1634),
- [sym_jsx_element] = STATE(1634),
- [sym_jsx_opening_element] = STATE(3026),
- [sym_jsx_self_closing_element] = STATE(1634),
- [sym_class] = STATE(1650),
- [sym_function_expression] = STATE(1650),
- [sym_generator_function] = STATE(1650),
- [sym_arrow_function] = STATE(1650),
- [sym__call_signature] = STATE(5828),
- [sym_call_expression] = STATE(1650),
- [sym_new_expression] = STATE(1634),
- [sym_await_expression] = STATE(1634),
- [sym_member_expression] = STATE(1251),
- [sym_subscript_expression] = STATE(1251),
- [sym_assignment_expression] = STATE(1634),
- [sym__augmented_assignment_lhs] = STATE(2900),
- [sym_augmented_assignment_expression] = STATE(1634),
- [sym__destructuring_pattern] = STATE(5633),
- [sym_ternary_expression] = STATE(1634),
- [sym_binary_expression] = STATE(1634),
- [sym_unary_expression] = STATE(1634),
- [sym_update_expression] = STATE(1634),
- [sym_string] = STATE(1650),
- [sym_template_string] = STATE(1650),
- [sym_regex] = STATE(1650),
- [sym_meta_property] = STATE(1650),
- [sym_decorator] = STATE(1244),
- [sym_formal_parameters] = STATE(3742),
- [sym_non_null_expression] = STATE(1251),
- [sym_as_expression] = STATE(1634),
- [sym_satisfies_expression] = STATE(1634),
- [sym_instantiation_expression] = STATE(1634),
- [sym_internal_module] = STATE(1634),
- [sym_type_parameters] = STATE(5349),
- [aux_sym_export_statement_repeat1] = STATE(4458),
- [sym_identifier] = ACTIONS(1428),
- [anon_sym_export] = ACTIONS(1044),
- [anon_sym_type] = ACTIONS(1044),
- [anon_sym_namespace] = ACTIONS(1046),
- [anon_sym_LBRACE] = ACTIONS(813),
- [anon_sym_typeof] = ACTIONS(650),
- [anon_sym_import] = ACTIONS(133),
- [anon_sym_let] = ACTIONS(1044),
- [anon_sym_BANG] = ACTIONS(622),
- [anon_sym_LPAREN] = ACTIONS(815),
- [anon_sym_await] = ACTIONS(624),
- [anon_sym_yield] = ACTIONS(626),
- [anon_sym_LBRACK] = ACTIONS(817),
- [sym_glimmer_opening_tag] = ACTIONS(148),
- [anon_sym_DQUOTE] = ACTIONS(150),
- [anon_sym_SQUOTE] = ACTIONS(152),
- [anon_sym_class] = ACTIONS(154),
- [anon_sym_async] = ACTIONS(1052),
- [anon_sym_function] = ACTIONS(158),
- [anon_sym_new] = ACTIONS(1436),
- [anon_sym_using] = ACTIONS(636),
- [anon_sym_PLUS] = ACTIONS(650),
- [anon_sym_DASH] = ACTIONS(650),
- [anon_sym_SLASH] = ACTIONS(646),
- [anon_sym_LT] = ACTIONS(181),
- [anon_sym_TILDE] = ACTIONS(622),
- [anon_sym_void] = ACTIONS(650),
- [anon_sym_delete] = ACTIONS(650),
- [anon_sym_PLUS_PLUS] = ACTIONS(652),
- [anon_sym_DASH_DASH] = ACTIONS(652),
- [sym_comment] = ACTIONS(5),
- [anon_sym_BQUOTE] = ACTIONS(825),
- [sym_number] = ACTIONS(787),
- [sym_private_property_identifier] = ACTIONS(654),
- [sym_this] = ACTIONS(200),
- [sym_super] = ACTIONS(200),
- [sym_true] = ACTIONS(200),
- [sym_false] = ACTIONS(200),
- [sym_null] = ACTIONS(200),
- [sym_undefined] = ACTIONS(1438),
- [anon_sym_AT] = ACTIONS(99),
- [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_override] = 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_object] = ACTIONS(1044),
- [sym_html_comment] = ACTIONS(5),
- },
- [601] = {
- [sym_import] = STATE(3334),
- [sym_parenthesized_expression] = STATE(1327),
- [sym_expression] = STATE(1888),
- [sym_primary_expression] = STATE(1468),
- [sym_yield_expression] = STATE(1634),
- [sym_object] = STATE(1650),
- [sym_object_pattern] = STATE(5821),
- [sym_array] = STATE(1650),
- [sym_array_pattern] = STATE(5821),
- [sym_glimmer_template] = STATE(1634),
- [sym_jsx_element] = STATE(1634),
- [sym_jsx_opening_element] = STATE(3026),
- [sym_jsx_self_closing_element] = STATE(1634),
- [sym_class] = STATE(1650),
- [sym_function_expression] = STATE(1650),
- [sym_generator_function] = STATE(1650),
- [sym_arrow_function] = STATE(1650),
- [sym__call_signature] = STATE(5743),
- [sym_call_expression] = STATE(1650),
- [sym_new_expression] = STATE(1634),
- [sym_await_expression] = STATE(1634),
- [sym_member_expression] = STATE(1327),
- [sym_subscript_expression] = STATE(1327),
- [sym_assignment_expression] = STATE(1634),
- [sym__augmented_assignment_lhs] = STATE(2919),
- [sym_augmented_assignment_expression] = STATE(1634),
- [sym__destructuring_pattern] = STATE(5821),
- [sym_ternary_expression] = STATE(1634),
- [sym_binary_expression] = STATE(1634),
- [sym_unary_expression] = STATE(1634),
- [sym_update_expression] = STATE(1634),
- [sym_string] = STATE(1650),
- [sym_template_string] = STATE(1650),
- [sym_regex] = STATE(1650),
- [sym_meta_property] = STATE(1650),
- [sym_decorator] = STATE(1244),
- [sym_formal_parameters] = STATE(3742),
- [sym_non_null_expression] = STATE(1327),
- [sym_as_expression] = STATE(1634),
- [sym_satisfies_expression] = STATE(1634),
- [sym_instantiation_expression] = STATE(1634),
- [sym_internal_module] = STATE(1634),
- [sym_type_parameters] = STATE(5349),
- [aux_sym_export_statement_repeat1] = STATE(4458),
- [sym_identifier] = ACTIONS(1462),
- [anon_sym_export] = ACTIONS(1286),
- [anon_sym_type] = ACTIONS(1286),
- [anon_sym_namespace] = ACTIONS(1288),
- [anon_sym_LBRACE] = ACTIONS(813),
- [anon_sym_typeof] = ACTIONS(1308),
- [anon_sym_import] = ACTIONS(133),
- [anon_sym_let] = ACTIONS(1286),
- [anon_sym_BANG] = ACTIONS(1292),
- [anon_sym_LPAREN] = ACTIONS(815),
- [anon_sym_await] = ACTIONS(1294),
- [anon_sym_yield] = ACTIONS(1296),
- [anon_sym_LBRACK] = ACTIONS(817),
- [sym_glimmer_opening_tag] = ACTIONS(148),
- [anon_sym_DQUOTE] = ACTIONS(150),
- [anon_sym_SQUOTE] = ACTIONS(152),
- [anon_sym_class] = ACTIONS(154),
- [anon_sym_async] = ACTIONS(1298),
- [anon_sym_function] = ACTIONS(158),
- [anon_sym_new] = ACTIONS(1466),
- [anon_sym_using] = ACTIONS(1302),
- [anon_sym_PLUS] = ACTIONS(1308),
- [anon_sym_DASH] = ACTIONS(1308),
- [anon_sym_SLASH] = ACTIONS(922),
- [anon_sym_LT] = ACTIONS(181),
- [anon_sym_TILDE] = ACTIONS(1292),
- [anon_sym_void] = ACTIONS(1308),
- [anon_sym_delete] = ACTIONS(1308),
- [anon_sym_PLUS_PLUS] = ACTIONS(1310),
- [anon_sym_DASH_DASH] = ACTIONS(1310),
- [sym_comment] = ACTIONS(5),
- [anon_sym_BQUOTE] = ACTIONS(825),
- [sym_number] = ACTIONS(2111),
- [sym_private_property_identifier] = ACTIONS(1312),
- [sym_this] = ACTIONS(200),
- [sym_super] = ACTIONS(200),
- [sym_true] = ACTIONS(200),
- [sym_false] = ACTIONS(200),
- [sym_null] = ACTIONS(200),
- [sym_undefined] = ACTIONS(1468),
- [anon_sym_AT] = ACTIONS(99),
- [anon_sym_static] = ACTIONS(1286),
- [anon_sym_readonly] = ACTIONS(1286),
- [anon_sym_get] = ACTIONS(1286),
- [anon_sym_set] = ACTIONS(1286),
- [anon_sym_declare] = ACTIONS(1286),
- [anon_sym_public] = ACTIONS(1286),
- [anon_sym_private] = ACTIONS(1286),
- [anon_sym_protected] = ACTIONS(1286),
- [anon_sym_override] = ACTIONS(1286),
- [anon_sym_module] = ACTIONS(1286),
- [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_object] = ACTIONS(1286),
- [sym_html_comment] = ACTIONS(5),
- },
- [602] = {
- [sym_import] = STATE(3334),
- [sym_parenthesized_expression] = STATE(1251),
- [sym_expression] = STATE(1575),
- [sym_primary_expression] = STATE(1468),
- [sym_yield_expression] = STATE(1634),
- [sym_object] = STATE(1650),
- [sym_object_pattern] = STATE(5633),
- [sym_array] = STATE(1650),
- [sym_array_pattern] = STATE(5633),
- [sym_glimmer_template] = STATE(1634),
- [sym_jsx_element] = STATE(1634),
- [sym_jsx_opening_element] = STATE(3026),
- [sym_jsx_self_closing_element] = STATE(1634),
- [sym_class] = STATE(1650),
- [sym_function_expression] = STATE(1650),
- [sym_generator_function] = STATE(1650),
- [sym_arrow_function] = STATE(1650),
- [sym__call_signature] = STATE(5828),
- [sym_call_expression] = STATE(1650),
- [sym_new_expression] = STATE(1634),
- [sym_await_expression] = STATE(1634),
- [sym_member_expression] = STATE(1251),
- [sym_subscript_expression] = STATE(1251),
- [sym_assignment_expression] = STATE(1634),
- [sym__augmented_assignment_lhs] = STATE(2900),
- [sym_augmented_assignment_expression] = STATE(1634),
- [sym__destructuring_pattern] = STATE(5633),
- [sym_ternary_expression] = STATE(1634),
- [sym_binary_expression] = STATE(1634),
- [sym_unary_expression] = STATE(1634),
- [sym_update_expression] = STATE(1634),
- [sym_string] = STATE(1650),
- [sym_template_string] = STATE(1650),
- [sym_regex] = STATE(1650),
- [sym_meta_property] = STATE(1650),
- [sym_decorator] = STATE(1244),
- [sym_formal_parameters] = STATE(3742),
- [sym_non_null_expression] = STATE(1251),
- [sym_as_expression] = STATE(1634),
- [sym_satisfies_expression] = STATE(1634),
- [sym_instantiation_expression] = STATE(1634),
- [sym_internal_module] = STATE(1634),
- [sym_type_parameters] = STATE(5349),
- [aux_sym_export_statement_repeat1] = STATE(4458),
- [sym_identifier] = ACTIONS(1428),
- [anon_sym_export] = ACTIONS(1044),
- [anon_sym_type] = ACTIONS(1044),
- [anon_sym_namespace] = ACTIONS(1046),
- [anon_sym_LBRACE] = ACTIONS(813),
- [anon_sym_typeof] = ACTIONS(650),
- [anon_sym_import] = ACTIONS(133),
- [anon_sym_let] = ACTIONS(1044),
- [anon_sym_BANG] = ACTIONS(622),
- [anon_sym_LPAREN] = ACTIONS(815),
- [anon_sym_await] = ACTIONS(624),
- [anon_sym_yield] = ACTIONS(626),
- [anon_sym_LBRACK] = ACTIONS(817),
- [sym_glimmer_opening_tag] = ACTIONS(148),
- [anon_sym_DQUOTE] = ACTIONS(150),
- [anon_sym_SQUOTE] = ACTIONS(152),
- [anon_sym_class] = ACTIONS(154),
- [anon_sym_async] = ACTIONS(1052),
- [anon_sym_function] = ACTIONS(158),
- [anon_sym_new] = ACTIONS(1436),
- [anon_sym_using] = ACTIONS(636),
- [anon_sym_PLUS] = ACTIONS(650),
- [anon_sym_DASH] = ACTIONS(650),
- [anon_sym_SLASH] = ACTIONS(646),
- [anon_sym_LT] = ACTIONS(181),
- [anon_sym_TILDE] = ACTIONS(622),
- [anon_sym_void] = ACTIONS(650),
- [anon_sym_delete] = ACTIONS(650),
- [anon_sym_PLUS_PLUS] = ACTIONS(652),
- [anon_sym_DASH_DASH] = ACTIONS(652),
- [sym_comment] = ACTIONS(5),
- [anon_sym_BQUOTE] = ACTIONS(825),
- [sym_number] = ACTIONS(787),
- [sym_private_property_identifier] = ACTIONS(654),
- [sym_this] = ACTIONS(200),
- [sym_super] = ACTIONS(200),
- [sym_true] = ACTIONS(200),
- [sym_false] = ACTIONS(200),
- [sym_null] = ACTIONS(200),
- [sym_undefined] = ACTIONS(1438),
- [anon_sym_AT] = ACTIONS(99),
- [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_override] = 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_object] = ACTIONS(1044),
- [sym_html_comment] = ACTIONS(5),
- },
- [603] = {
- [sym_import] = STATE(3334),
- [sym_parenthesized_expression] = STATE(1251),
- [sym_expression] = STATE(1454),
- [sym_primary_expression] = STATE(1468),
- [sym_yield_expression] = STATE(1634),
- [sym_object] = STATE(1650),
- [sym_object_pattern] = STATE(5633),
- [sym_array] = STATE(1650),
- [sym_array_pattern] = STATE(5633),
- [sym_glimmer_template] = STATE(1634),
- [sym_jsx_element] = STATE(1634),
- [sym_jsx_opening_element] = STATE(3026),
- [sym_jsx_self_closing_element] = STATE(1634),
- [sym_class] = STATE(1650),
- [sym_function_expression] = STATE(1650),
- [sym_generator_function] = STATE(1650),
- [sym_arrow_function] = STATE(1650),
- [sym__call_signature] = STATE(5828),
- [sym_call_expression] = STATE(1650),
- [sym_new_expression] = STATE(1634),
- [sym_await_expression] = STATE(1634),
- [sym_member_expression] = STATE(1251),
- [sym_subscript_expression] = STATE(1251),
- [sym_assignment_expression] = STATE(1634),
- [sym__augmented_assignment_lhs] = STATE(2900),
- [sym_augmented_assignment_expression] = STATE(1634),
- [sym__destructuring_pattern] = STATE(5633),
- [sym_ternary_expression] = STATE(1634),
- [sym_binary_expression] = STATE(1634),
- [sym_unary_expression] = STATE(1634),
- [sym_update_expression] = STATE(1634),
- [sym_string] = STATE(1650),
- [sym_template_string] = STATE(1650),
- [sym_regex] = STATE(1650),
- [sym_meta_property] = STATE(1650),
- [sym_decorator] = STATE(1244),
- [sym_formal_parameters] = STATE(3742),
- [sym_non_null_expression] = STATE(1251),
- [sym_as_expression] = STATE(1634),
- [sym_satisfies_expression] = STATE(1634),
- [sym_instantiation_expression] = STATE(1634),
- [sym_internal_module] = STATE(1634),
- [sym_type_parameters] = STATE(5349),
- [aux_sym_export_statement_repeat1] = STATE(4458),
- [sym_identifier] = ACTIONS(1428),
- [anon_sym_export] = ACTIONS(1044),
- [anon_sym_type] = ACTIONS(1044),
- [anon_sym_namespace] = ACTIONS(1046),
- [anon_sym_LBRACE] = ACTIONS(813),
- [anon_sym_typeof] = ACTIONS(650),
- [anon_sym_import] = ACTIONS(133),
- [anon_sym_let] = ACTIONS(1044),
- [anon_sym_BANG] = ACTIONS(622),
- [anon_sym_LPAREN] = ACTIONS(815),
- [anon_sym_await] = ACTIONS(624),
- [anon_sym_yield] = ACTIONS(626),
- [anon_sym_LBRACK] = ACTIONS(817),
- [sym_glimmer_opening_tag] = ACTIONS(148),
- [anon_sym_DQUOTE] = ACTIONS(150),
- [anon_sym_SQUOTE] = ACTIONS(152),
- [anon_sym_class] = ACTIONS(154),
- [anon_sym_async] = ACTIONS(1052),
- [anon_sym_function] = ACTIONS(158),
- [anon_sym_new] = ACTIONS(1436),
- [anon_sym_using] = ACTIONS(636),
- [anon_sym_PLUS] = ACTIONS(650),
- [anon_sym_DASH] = ACTIONS(650),
- [anon_sym_SLASH] = ACTIONS(646),
- [anon_sym_LT] = ACTIONS(181),
- [anon_sym_TILDE] = ACTIONS(622),
- [anon_sym_void] = ACTIONS(650),
- [anon_sym_delete] = ACTIONS(650),
- [anon_sym_PLUS_PLUS] = ACTIONS(652),
- [anon_sym_DASH_DASH] = ACTIONS(652),
- [sym_comment] = ACTIONS(5),
- [anon_sym_BQUOTE] = ACTIONS(825),
- [sym_number] = ACTIONS(787),
- [sym_private_property_identifier] = ACTIONS(654),
- [sym_this] = ACTIONS(200),
- [sym_super] = ACTIONS(200),
- [sym_true] = ACTIONS(200),
- [sym_false] = ACTIONS(200),
- [sym_null] = ACTIONS(200),
- [sym_undefined] = ACTIONS(1438),
- [anon_sym_AT] = ACTIONS(99),
- [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_override] = 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_object] = ACTIONS(1044),
- [sym_html_comment] = ACTIONS(5),
- },
- [604] = {
- [sym_import] = STATE(3334),
- [sym_parenthesized_expression] = STATE(1327),
- [sym_expression] = STATE(1881),
- [sym_primary_expression] = STATE(1468),
- [sym_yield_expression] = STATE(1634),
- [sym_object] = STATE(1650),
- [sym_object_pattern] = STATE(5821),
- [sym_array] = STATE(1650),
- [sym_array_pattern] = STATE(5821),
- [sym_glimmer_template] = STATE(1634),
- [sym_jsx_element] = STATE(1634),
- [sym_jsx_opening_element] = STATE(3026),
- [sym_jsx_self_closing_element] = STATE(1634),
- [sym_class] = STATE(1650),
- [sym_function_expression] = STATE(1650),
- [sym_generator_function] = STATE(1650),
- [sym_arrow_function] = STATE(1650),
- [sym__call_signature] = STATE(5743),
- [sym_call_expression] = STATE(1650),
- [sym_new_expression] = STATE(1634),
- [sym_await_expression] = STATE(1634),
- [sym_member_expression] = STATE(1327),
- [sym_subscript_expression] = STATE(1327),
- [sym_assignment_expression] = STATE(1634),
- [sym__augmented_assignment_lhs] = STATE(2919),
- [sym_augmented_assignment_expression] = STATE(1634),
- [sym__destructuring_pattern] = STATE(5821),
- [sym_ternary_expression] = STATE(1634),
- [sym_binary_expression] = STATE(1634),
- [sym_unary_expression] = STATE(1634),
- [sym_update_expression] = STATE(1634),
- [sym_string] = STATE(1650),
- [sym_template_string] = STATE(1650),
- [sym_regex] = STATE(1650),
- [sym_meta_property] = STATE(1650),
- [sym_decorator] = STATE(1244),
- [sym_formal_parameters] = STATE(3742),
- [sym_non_null_expression] = STATE(1327),
- [sym_as_expression] = STATE(1634),
- [sym_satisfies_expression] = STATE(1634),
- [sym_instantiation_expression] = STATE(1634),
- [sym_internal_module] = STATE(1634),
- [sym_type_parameters] = STATE(5349),
- [aux_sym_export_statement_repeat1] = STATE(4458),
- [sym_identifier] = ACTIONS(1462),
- [anon_sym_export] = ACTIONS(1286),
- [anon_sym_type] = ACTIONS(1286),
- [anon_sym_namespace] = ACTIONS(1288),
- [anon_sym_LBRACE] = ACTIONS(813),
- [anon_sym_typeof] = ACTIONS(1308),
- [anon_sym_import] = ACTIONS(133),
- [anon_sym_let] = ACTIONS(1286),
- [anon_sym_BANG] = ACTIONS(1292),
- [anon_sym_LPAREN] = ACTIONS(815),
- [anon_sym_await] = ACTIONS(1294),
- [anon_sym_yield] = ACTIONS(1296),
- [anon_sym_LBRACK] = ACTIONS(817),
- [sym_glimmer_opening_tag] = ACTIONS(148),
- [anon_sym_DQUOTE] = ACTIONS(150),
- [anon_sym_SQUOTE] = ACTIONS(152),
- [anon_sym_class] = ACTIONS(154),
- [anon_sym_async] = ACTIONS(1298),
- [anon_sym_function] = ACTIONS(158),
- [anon_sym_new] = ACTIONS(1466),
- [anon_sym_using] = ACTIONS(1302),
- [anon_sym_PLUS] = ACTIONS(1308),
- [anon_sym_DASH] = ACTIONS(1308),
- [anon_sym_SLASH] = ACTIONS(922),
- [anon_sym_LT] = ACTIONS(181),
- [anon_sym_TILDE] = ACTIONS(1292),
- [anon_sym_void] = ACTIONS(1308),
- [anon_sym_delete] = ACTIONS(1308),
- [anon_sym_PLUS_PLUS] = ACTIONS(1310),
- [anon_sym_DASH_DASH] = ACTIONS(1310),
- [sym_comment] = ACTIONS(5),
- [anon_sym_BQUOTE] = ACTIONS(825),
- [sym_number] = ACTIONS(787),
- [sym_private_property_identifier] = ACTIONS(1312),
- [sym_this] = ACTIONS(200),
- [sym_super] = ACTIONS(200),
- [sym_true] = ACTIONS(200),
- [sym_false] = ACTIONS(200),
- [sym_null] = ACTIONS(200),
- [sym_undefined] = ACTIONS(1468),
- [anon_sym_AT] = ACTIONS(99),
- [anon_sym_static] = ACTIONS(1286),
- [anon_sym_readonly] = ACTIONS(1286),
- [anon_sym_get] = ACTIONS(1286),
- [anon_sym_set] = ACTIONS(1286),
- [anon_sym_declare] = ACTIONS(1286),
- [anon_sym_public] = ACTIONS(1286),
- [anon_sym_private] = ACTIONS(1286),
- [anon_sym_protected] = ACTIONS(1286),
- [anon_sym_override] = ACTIONS(1286),
- [anon_sym_module] = ACTIONS(1286),
- [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_object] = ACTIONS(1286),
- [sym_html_comment] = ACTIONS(5),
- },
- [605] = {
- [sym_import] = STATE(3334),
- [sym_parenthesized_expression] = STATE(1251),
- [sym_expression] = STATE(1821),
- [sym_primary_expression] = STATE(1468),
- [sym_yield_expression] = STATE(1634),
- [sym_object] = STATE(1650),
- [sym_object_pattern] = STATE(5633),
- [sym_array] = STATE(1650),
- [sym_array_pattern] = STATE(5633),
- [sym_glimmer_template] = STATE(1634),
- [sym_jsx_element] = STATE(1634),
- [sym_jsx_opening_element] = STATE(3026),
- [sym_jsx_self_closing_element] = STATE(1634),
- [sym_class] = STATE(1650),
- [sym_function_expression] = STATE(1650),
- [sym_generator_function] = STATE(1650),
- [sym_arrow_function] = STATE(1650),
- [sym__call_signature] = STATE(5828),
- [sym_call_expression] = STATE(1650),
- [sym_new_expression] = STATE(1634),
- [sym_await_expression] = STATE(1634),
- [sym_member_expression] = STATE(1251),
- [sym_subscript_expression] = STATE(1251),
- [sym_assignment_expression] = STATE(1634),
- [sym__augmented_assignment_lhs] = STATE(2900),
- [sym_augmented_assignment_expression] = STATE(1634),
- [sym__destructuring_pattern] = STATE(5633),
- [sym_ternary_expression] = STATE(1634),
- [sym_binary_expression] = STATE(1634),
- [sym_unary_expression] = STATE(1634),
- [sym_update_expression] = STATE(1634),
- [sym_string] = STATE(1650),
- [sym_template_string] = STATE(1650),
- [sym_regex] = STATE(1650),
- [sym_meta_property] = STATE(1650),
- [sym_decorator] = STATE(1244),
- [sym_formal_parameters] = STATE(3742),
- [sym_non_null_expression] = STATE(1251),
- [sym_as_expression] = STATE(1634),
- [sym_satisfies_expression] = STATE(1634),
- [sym_instantiation_expression] = STATE(1634),
- [sym_internal_module] = STATE(1634),
- [sym_type_parameters] = STATE(5349),
- [aux_sym_export_statement_repeat1] = STATE(4458),
- [sym_identifier] = ACTIONS(1428),
- [anon_sym_export] = ACTIONS(1044),
- [anon_sym_type] = ACTIONS(1044),
- [anon_sym_namespace] = ACTIONS(1046),
- [anon_sym_LBRACE] = ACTIONS(813),
- [anon_sym_typeof] = ACTIONS(650),
- [anon_sym_import] = ACTIONS(133),
- [anon_sym_let] = ACTIONS(1044),
- [anon_sym_BANG] = ACTIONS(622),
- [anon_sym_LPAREN] = ACTIONS(815),
- [anon_sym_await] = ACTIONS(624),
- [anon_sym_yield] = ACTIONS(626),
- [anon_sym_LBRACK] = ACTIONS(817),
- [sym_glimmer_opening_tag] = ACTIONS(148),
- [anon_sym_DQUOTE] = ACTIONS(150),
- [anon_sym_SQUOTE] = ACTIONS(152),
- [anon_sym_class] = ACTIONS(154),
- [anon_sym_async] = ACTIONS(1052),
- [anon_sym_function] = ACTIONS(158),
- [anon_sym_new] = ACTIONS(1436),
- [anon_sym_using] = ACTIONS(636),
- [anon_sym_PLUS] = ACTIONS(650),
- [anon_sym_DASH] = ACTIONS(650),
- [anon_sym_SLASH] = ACTIONS(646),
- [anon_sym_LT] = ACTIONS(181),
- [anon_sym_TILDE] = ACTIONS(622),
- [anon_sym_void] = ACTIONS(650),
- [anon_sym_delete] = ACTIONS(650),
- [anon_sym_PLUS_PLUS] = ACTIONS(652),
- [anon_sym_DASH_DASH] = ACTIONS(652),
- [sym_comment] = ACTIONS(5),
- [anon_sym_BQUOTE] = ACTIONS(825),
- [sym_number] = ACTIONS(787),
- [sym_private_property_identifier] = ACTIONS(654),
- [sym_this] = ACTIONS(200),
- [sym_super] = ACTIONS(200),
- [sym_true] = ACTIONS(200),
- [sym_false] = ACTIONS(200),
- [sym_null] = ACTIONS(200),
- [sym_undefined] = ACTIONS(1438),
- [anon_sym_AT] = ACTIONS(99),
- [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_override] = 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_object] = ACTIONS(1044),
- [sym_html_comment] = ACTIONS(5),
- },
- [606] = {
- [sym_import] = STATE(3334),
- [sym_parenthesized_expression] = STATE(1327),
- [sym_expression] = STATE(1888),
- [sym_primary_expression] = STATE(1468),
- [sym_yield_expression] = STATE(1634),
- [sym_object] = STATE(1650),
- [sym_object_pattern] = STATE(5821),
- [sym_array] = STATE(1650),
- [sym_array_pattern] = STATE(5821),
- [sym_glimmer_template] = STATE(1634),
- [sym_jsx_element] = STATE(1634),
- [sym_jsx_opening_element] = STATE(3026),
- [sym_jsx_self_closing_element] = STATE(1634),
- [sym_class] = STATE(1650),
- [sym_function_expression] = STATE(1650),
- [sym_generator_function] = STATE(1650),
- [sym_arrow_function] = STATE(1650),
- [sym__call_signature] = STATE(5743),
- [sym_call_expression] = STATE(1650),
- [sym_new_expression] = STATE(1634),
- [sym_await_expression] = STATE(1634),
- [sym_member_expression] = STATE(1327),
- [sym_subscript_expression] = STATE(1327),
- [sym_assignment_expression] = STATE(1634),
- [sym__augmented_assignment_lhs] = STATE(2919),
- [sym_augmented_assignment_expression] = STATE(1634),
- [sym__destructuring_pattern] = STATE(5821),
- [sym_ternary_expression] = STATE(1634),
- [sym_binary_expression] = STATE(1634),
- [sym_unary_expression] = STATE(1634),
- [sym_update_expression] = STATE(1634),
- [sym_string] = STATE(1650),
- [sym_template_string] = STATE(1650),
- [sym_regex] = STATE(1650),
- [sym_meta_property] = STATE(1650),
- [sym_decorator] = STATE(1244),
- [sym_formal_parameters] = STATE(3742),
- [sym_non_null_expression] = STATE(1327),
- [sym_as_expression] = STATE(1634),
- [sym_satisfies_expression] = STATE(1634),
- [sym_instantiation_expression] = STATE(1634),
- [sym_internal_module] = STATE(1634),
- [sym_type_parameters] = STATE(5349),
- [aux_sym_export_statement_repeat1] = STATE(4458),
- [sym_identifier] = ACTIONS(1462),
- [anon_sym_export] = ACTIONS(1286),
- [anon_sym_type] = ACTIONS(1286),
- [anon_sym_namespace] = ACTIONS(1288),
- [anon_sym_LBRACE] = ACTIONS(813),
- [anon_sym_typeof] = ACTIONS(1308),
- [anon_sym_import] = ACTIONS(133),
- [anon_sym_let] = ACTIONS(1286),
- [anon_sym_BANG] = ACTIONS(1292),
- [anon_sym_LPAREN] = ACTIONS(815),
- [anon_sym_await] = ACTIONS(1294),
- [anon_sym_yield] = ACTIONS(1296),
- [anon_sym_LBRACK] = ACTIONS(817),
- [sym_glimmer_opening_tag] = ACTIONS(148),
- [anon_sym_DQUOTE] = ACTIONS(150),
- [anon_sym_SQUOTE] = ACTIONS(152),
- [anon_sym_class] = ACTIONS(154),
- [anon_sym_async] = ACTIONS(1298),
- [anon_sym_function] = ACTIONS(158),
- [anon_sym_new] = ACTIONS(1466),
- [anon_sym_using] = ACTIONS(1302),
- [anon_sym_PLUS] = ACTIONS(1308),
- [anon_sym_DASH] = ACTIONS(1308),
- [anon_sym_SLASH] = ACTIONS(922),
- [anon_sym_LT] = ACTIONS(181),
- [anon_sym_TILDE] = ACTIONS(1292),
- [anon_sym_void] = ACTIONS(1308),
- [anon_sym_delete] = ACTIONS(1308),
- [anon_sym_PLUS_PLUS] = ACTIONS(1310),
- [anon_sym_DASH_DASH] = ACTIONS(1310),
- [sym_comment] = ACTIONS(5),
- [anon_sym_BQUOTE] = ACTIONS(825),
- [sym_number] = ACTIONS(787),
- [sym_private_property_identifier] = ACTIONS(1312),
- [sym_this] = ACTIONS(200),
- [sym_super] = ACTIONS(200),
- [sym_true] = ACTIONS(200),
- [sym_false] = ACTIONS(200),
- [sym_null] = ACTIONS(200),
- [sym_undefined] = ACTIONS(1468),
- [anon_sym_AT] = ACTIONS(99),
- [anon_sym_static] = ACTIONS(1286),
- [anon_sym_readonly] = ACTIONS(1286),
- [anon_sym_get] = ACTIONS(1286),
- [anon_sym_set] = ACTIONS(1286),
- [anon_sym_declare] = ACTIONS(1286),
- [anon_sym_public] = ACTIONS(1286),
- [anon_sym_private] = ACTIONS(1286),
- [anon_sym_protected] = ACTIONS(1286),
- [anon_sym_override] = ACTIONS(1286),
- [anon_sym_module] = ACTIONS(1286),
- [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_object] = ACTIONS(1286),
- [sym_html_comment] = ACTIONS(5),
- },
- [607] = {
- [sym_import] = STATE(3334),
- [sym_parenthesized_expression] = STATE(1327),
- [sym_expression] = STATE(1889),
- [sym_primary_expression] = STATE(1468),
- [sym_yield_expression] = STATE(1634),
- [sym_object] = STATE(1650),
- [sym_object_pattern] = STATE(5821),
- [sym_array] = STATE(1650),
- [sym_array_pattern] = STATE(5821),
- [sym_glimmer_template] = STATE(1634),
- [sym_jsx_element] = STATE(1634),
- [sym_jsx_opening_element] = STATE(3026),
- [sym_jsx_self_closing_element] = STATE(1634),
- [sym_class] = STATE(1650),
- [sym_function_expression] = STATE(1650),
- [sym_generator_function] = STATE(1650),
- [sym_arrow_function] = STATE(1650),
- [sym__call_signature] = STATE(5743),
- [sym_call_expression] = STATE(1650),
- [sym_new_expression] = STATE(1634),
- [sym_await_expression] = STATE(1634),
- [sym_member_expression] = STATE(1327),
- [sym_subscript_expression] = STATE(1327),
- [sym_assignment_expression] = STATE(1634),
- [sym__augmented_assignment_lhs] = STATE(2919),
- [sym_augmented_assignment_expression] = STATE(1634),
- [sym__destructuring_pattern] = STATE(5821),
- [sym_ternary_expression] = STATE(1634),
- [sym_binary_expression] = STATE(1634),
- [sym_unary_expression] = STATE(1634),
- [sym_update_expression] = STATE(1634),
- [sym_string] = STATE(1650),
- [sym_template_string] = STATE(1650),
- [sym_regex] = STATE(1650),
- [sym_meta_property] = STATE(1650),
- [sym_decorator] = STATE(1244),
- [sym_formal_parameters] = STATE(3742),
- [sym_non_null_expression] = STATE(1327),
- [sym_as_expression] = STATE(1634),
- [sym_satisfies_expression] = STATE(1634),
- [sym_instantiation_expression] = STATE(1634),
- [sym_internal_module] = STATE(1634),
- [sym_type_parameters] = STATE(5349),
- [aux_sym_export_statement_repeat1] = STATE(4458),
- [sym_identifier] = ACTIONS(1462),
- [anon_sym_export] = ACTIONS(1286),
- [anon_sym_type] = ACTIONS(1286),
- [anon_sym_namespace] = ACTIONS(1288),
- [anon_sym_LBRACE] = ACTIONS(813),
- [anon_sym_typeof] = ACTIONS(1308),
- [anon_sym_import] = ACTIONS(133),
- [anon_sym_let] = ACTIONS(1286),
- [anon_sym_BANG] = ACTIONS(1292),
- [anon_sym_LPAREN] = ACTIONS(815),
- [anon_sym_await] = ACTIONS(1294),
- [anon_sym_yield] = ACTIONS(1296),
- [anon_sym_LBRACK] = ACTIONS(817),
- [sym_glimmer_opening_tag] = ACTIONS(148),
- [anon_sym_DQUOTE] = ACTIONS(150),
- [anon_sym_SQUOTE] = ACTIONS(152),
- [anon_sym_class] = ACTIONS(154),
- [anon_sym_async] = ACTIONS(1298),
- [anon_sym_function] = ACTIONS(158),
- [anon_sym_new] = ACTIONS(1466),
- [anon_sym_using] = ACTIONS(1302),
- [anon_sym_PLUS] = ACTIONS(1308),
- [anon_sym_DASH] = ACTIONS(1308),
- [anon_sym_SLASH] = ACTIONS(922),
- [anon_sym_LT] = ACTIONS(181),
- [anon_sym_TILDE] = ACTIONS(1292),
- [anon_sym_void] = ACTIONS(1308),
- [anon_sym_delete] = ACTIONS(1308),
- [anon_sym_PLUS_PLUS] = ACTIONS(1310),
- [anon_sym_DASH_DASH] = ACTIONS(1310),
- [sym_comment] = ACTIONS(5),
- [anon_sym_BQUOTE] = ACTIONS(825),
- [sym_number] = ACTIONS(787),
- [sym_private_property_identifier] = ACTIONS(1312),
- [sym_this] = ACTIONS(200),
- [sym_super] = ACTIONS(200),
- [sym_true] = ACTIONS(200),
- [sym_false] = ACTIONS(200),
- [sym_null] = ACTIONS(200),
- [sym_undefined] = ACTIONS(1468),
- [anon_sym_AT] = ACTIONS(99),
- [anon_sym_static] = ACTIONS(1286),
- [anon_sym_readonly] = ACTIONS(1286),
- [anon_sym_get] = ACTIONS(1286),
- [anon_sym_set] = ACTIONS(1286),
- [anon_sym_declare] = ACTIONS(1286),
- [anon_sym_public] = ACTIONS(1286),
- [anon_sym_private] = ACTIONS(1286),
- [anon_sym_protected] = ACTIONS(1286),
- [anon_sym_override] = ACTIONS(1286),
- [anon_sym_module] = ACTIONS(1286),
- [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_object] = ACTIONS(1286),
- [sym_html_comment] = ACTIONS(5),
- },
- [608] = {
- [sym_import] = STATE(3334),
- [sym_parenthesized_expression] = STATE(1251),
- [sym_expression] = STATE(1479),
- [sym_primary_expression] = STATE(1468),
- [sym_yield_expression] = STATE(1634),
- [sym_object] = STATE(1650),
- [sym_object_pattern] = STATE(5633),
- [sym_array] = STATE(1650),
- [sym_array_pattern] = STATE(5633),
- [sym_glimmer_template] = STATE(1634),
- [sym_jsx_element] = STATE(1634),
- [sym_jsx_opening_element] = STATE(3026),
- [sym_jsx_self_closing_element] = STATE(1634),
- [sym_class] = STATE(1650),
- [sym_function_expression] = STATE(1650),
- [sym_generator_function] = STATE(1650),
- [sym_arrow_function] = STATE(1650),
- [sym__call_signature] = STATE(5828),
- [sym_call_expression] = STATE(1650),
- [sym_new_expression] = STATE(1634),
- [sym_await_expression] = STATE(1634),
- [sym_member_expression] = STATE(1251),
- [sym_subscript_expression] = STATE(1251),
- [sym_assignment_expression] = STATE(1634),
- [sym__augmented_assignment_lhs] = STATE(2900),
- [sym_augmented_assignment_expression] = STATE(1634),
- [sym__destructuring_pattern] = STATE(5633),
- [sym_ternary_expression] = STATE(1634),
- [sym_binary_expression] = STATE(1634),
- [sym_unary_expression] = STATE(1634),
- [sym_update_expression] = STATE(1634),
- [sym_string] = STATE(1650),
- [sym_template_string] = STATE(1650),
- [sym_regex] = STATE(1650),
- [sym_meta_property] = STATE(1650),
- [sym_decorator] = STATE(1244),
- [sym_formal_parameters] = STATE(3742),
- [sym_non_null_expression] = STATE(1251),
- [sym_as_expression] = STATE(1634),
- [sym_satisfies_expression] = STATE(1634),
- [sym_instantiation_expression] = STATE(1634),
- [sym_internal_module] = STATE(1634),
- [sym_type_parameters] = STATE(5349),
- [aux_sym_export_statement_repeat1] = STATE(4458),
- [sym_identifier] = ACTIONS(1428),
- [anon_sym_export] = ACTIONS(1044),
- [anon_sym_type] = ACTIONS(1044),
- [anon_sym_namespace] = ACTIONS(1046),
- [anon_sym_LBRACE] = ACTIONS(813),
- [anon_sym_typeof] = ACTIONS(650),
- [anon_sym_import] = ACTIONS(133),
- [anon_sym_let] = ACTIONS(1044),
- [anon_sym_BANG] = ACTIONS(622),
- [anon_sym_LPAREN] = ACTIONS(815),
- [anon_sym_await] = ACTIONS(624),
- [anon_sym_yield] = ACTIONS(626),
- [anon_sym_LBRACK] = ACTIONS(817),
- [sym_glimmer_opening_tag] = ACTIONS(148),
- [anon_sym_DQUOTE] = ACTIONS(150),
- [anon_sym_SQUOTE] = ACTIONS(152),
- [anon_sym_class] = ACTIONS(154),
- [anon_sym_async] = ACTIONS(1052),
- [anon_sym_function] = ACTIONS(158),
- [anon_sym_new] = ACTIONS(1436),
- [anon_sym_using] = ACTIONS(636),
- [anon_sym_PLUS] = ACTIONS(650),
- [anon_sym_DASH] = ACTIONS(650),
- [anon_sym_SLASH] = ACTIONS(646),
- [anon_sym_LT] = ACTIONS(181),
- [anon_sym_TILDE] = ACTIONS(622),
- [anon_sym_void] = ACTIONS(650),
- [anon_sym_delete] = ACTIONS(650),
- [anon_sym_PLUS_PLUS] = ACTIONS(652),
- [anon_sym_DASH_DASH] = ACTIONS(652),
- [sym_comment] = ACTIONS(5),
- [anon_sym_BQUOTE] = ACTIONS(825),
- [sym_number] = ACTIONS(2111),
- [sym_private_property_identifier] = ACTIONS(654),
- [sym_this] = ACTIONS(200),
- [sym_super] = ACTIONS(200),
- [sym_true] = ACTIONS(200),
- [sym_false] = ACTIONS(200),
- [sym_null] = ACTIONS(200),
- [sym_undefined] = ACTIONS(1438),
- [anon_sym_AT] = ACTIONS(99),
- [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_override] = 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_object] = ACTIONS(1044),
- [sym_html_comment] = ACTIONS(5),
- },
- [609] = {
- [sym_import] = STATE(3334),
- [sym_parenthesized_expression] = STATE(1251),
- [sym_expression] = STATE(1479),
- [sym_primary_expression] = STATE(1468),
- [sym_yield_expression] = STATE(1634),
- [sym_object] = STATE(1650),
- [sym_object_pattern] = STATE(5633),
- [sym_array] = STATE(1650),
- [sym_array_pattern] = STATE(5633),
- [sym_glimmer_template] = STATE(1634),
- [sym_jsx_element] = STATE(1634),
- [sym_jsx_opening_element] = STATE(3026),
- [sym_jsx_self_closing_element] = STATE(1634),
- [sym_class] = STATE(1650),
- [sym_function_expression] = STATE(1650),
- [sym_generator_function] = STATE(1650),
- [sym_arrow_function] = STATE(1650),
- [sym__call_signature] = STATE(5828),
- [sym_call_expression] = STATE(1650),
- [sym_new_expression] = STATE(1634),
- [sym_await_expression] = STATE(1634),
- [sym_member_expression] = STATE(1251),
- [sym_subscript_expression] = STATE(1251),
- [sym_assignment_expression] = STATE(1634),
- [sym__augmented_assignment_lhs] = STATE(2900),
- [sym_augmented_assignment_expression] = STATE(1634),
- [sym__destructuring_pattern] = STATE(5633),
- [sym_ternary_expression] = STATE(1634),
- [sym_binary_expression] = STATE(1634),
- [sym_unary_expression] = STATE(1634),
- [sym_update_expression] = STATE(1634),
- [sym_string] = STATE(1650),
- [sym_template_string] = STATE(1650),
- [sym_regex] = STATE(1650),
- [sym_meta_property] = STATE(1650),
- [sym_decorator] = STATE(1244),
- [sym_formal_parameters] = STATE(3742),
- [sym_non_null_expression] = STATE(1251),
- [sym_as_expression] = STATE(1634),
- [sym_satisfies_expression] = STATE(1634),
- [sym_instantiation_expression] = STATE(1634),
- [sym_internal_module] = STATE(1634),
- [sym_type_parameters] = STATE(5349),
- [aux_sym_export_statement_repeat1] = STATE(4458),
- [sym_identifier] = ACTIONS(1428),
- [anon_sym_export] = ACTIONS(1044),
- [anon_sym_type] = ACTIONS(1044),
- [anon_sym_namespace] = ACTIONS(1046),
- [anon_sym_LBRACE] = ACTIONS(813),
- [anon_sym_typeof] = ACTIONS(650),
- [anon_sym_import] = ACTIONS(133),
- [anon_sym_let] = ACTIONS(1044),
- [anon_sym_BANG] = ACTIONS(622),
- [anon_sym_LPAREN] = ACTIONS(815),
- [anon_sym_await] = ACTIONS(624),
- [anon_sym_yield] = ACTIONS(626),
- [anon_sym_LBRACK] = ACTIONS(817),
- [sym_glimmer_opening_tag] = ACTIONS(148),
- [anon_sym_DQUOTE] = ACTIONS(150),
- [anon_sym_SQUOTE] = ACTIONS(152),
- [anon_sym_class] = ACTIONS(154),
- [anon_sym_async] = ACTIONS(1052),
- [anon_sym_function] = ACTIONS(158),
- [anon_sym_new] = ACTIONS(1436),
- [anon_sym_using] = ACTIONS(636),
- [anon_sym_PLUS] = ACTIONS(650),
- [anon_sym_DASH] = ACTIONS(650),
- [anon_sym_SLASH] = ACTIONS(646),
- [anon_sym_LT] = ACTIONS(181),
- [anon_sym_TILDE] = ACTIONS(622),
- [anon_sym_void] = ACTIONS(650),
- [anon_sym_delete] = ACTIONS(650),
- [anon_sym_PLUS_PLUS] = ACTIONS(652),
- [anon_sym_DASH_DASH] = ACTIONS(652),
- [sym_comment] = ACTIONS(5),
- [anon_sym_BQUOTE] = ACTIONS(825),
- [sym_number] = ACTIONS(2149),
- [sym_private_property_identifier] = ACTIONS(654),
- [sym_this] = ACTIONS(200),
- [sym_super] = ACTIONS(200),
- [sym_true] = ACTIONS(200),
- [sym_false] = ACTIONS(200),
- [sym_null] = ACTIONS(200),
- [sym_undefined] = ACTIONS(1438),
- [anon_sym_AT] = ACTIONS(99),
- [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_override] = 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_object] = ACTIONS(1044),
- [sym_html_comment] = ACTIONS(5),
- },
- [610] = {
- [sym_import] = STATE(3334),
- [sym_parenthesized_expression] = STATE(1251),
- [sym_expression] = STATE(1578),
- [sym_primary_expression] = STATE(1468),
- [sym_yield_expression] = STATE(1634),
- [sym_object] = STATE(1650),
- [sym_object_pattern] = STATE(5633),
- [sym_array] = STATE(1650),
- [sym_array_pattern] = STATE(5633),
- [sym_glimmer_template] = STATE(1634),
- [sym_jsx_element] = STATE(1634),
- [sym_jsx_opening_element] = STATE(3026),
- [sym_jsx_self_closing_element] = STATE(1634),
- [sym_class] = STATE(1650),
- [sym_function_expression] = STATE(1650),
- [sym_generator_function] = STATE(1650),
- [sym_arrow_function] = STATE(1650),
- [sym__call_signature] = STATE(5828),
- [sym_call_expression] = STATE(1650),
- [sym_new_expression] = STATE(1634),
- [sym_await_expression] = STATE(1634),
- [sym_member_expression] = STATE(1251),
- [sym_subscript_expression] = STATE(1251),
- [sym_assignment_expression] = STATE(1634),
- [sym__augmented_assignment_lhs] = STATE(2900),
- [sym_augmented_assignment_expression] = STATE(1634),
- [sym__destructuring_pattern] = STATE(5633),
- [sym_ternary_expression] = STATE(1634),
- [sym_binary_expression] = STATE(1634),
- [sym_unary_expression] = STATE(1634),
- [sym_update_expression] = STATE(1634),
- [sym_string] = STATE(1650),
- [sym_template_string] = STATE(1650),
- [sym_regex] = STATE(1650),
- [sym_meta_property] = STATE(1650),
- [sym_decorator] = STATE(1244),
- [sym_formal_parameters] = STATE(3742),
- [sym_non_null_expression] = STATE(1251),
- [sym_as_expression] = STATE(1634),
- [sym_satisfies_expression] = STATE(1634),
- [sym_instantiation_expression] = STATE(1634),
- [sym_internal_module] = STATE(1634),
- [sym_type_parameters] = STATE(5349),
- [aux_sym_export_statement_repeat1] = STATE(4458),
- [sym_identifier] = ACTIONS(1428),
- [anon_sym_export] = ACTIONS(1044),
- [anon_sym_type] = ACTIONS(1044),
- [anon_sym_namespace] = ACTIONS(1046),
- [anon_sym_LBRACE] = ACTIONS(813),
- [anon_sym_typeof] = ACTIONS(650),
- [anon_sym_import] = ACTIONS(133),
- [anon_sym_let] = ACTIONS(1044),
- [anon_sym_BANG] = ACTIONS(622),
- [anon_sym_LPAREN] = ACTIONS(815),
- [anon_sym_await] = ACTIONS(624),
- [anon_sym_yield] = ACTIONS(626),
- [anon_sym_LBRACK] = ACTIONS(817),
- [sym_glimmer_opening_tag] = ACTIONS(148),
- [anon_sym_DQUOTE] = ACTIONS(150),
- [anon_sym_SQUOTE] = ACTIONS(152),
- [anon_sym_class] = ACTIONS(154),
- [anon_sym_async] = ACTIONS(1052),
- [anon_sym_function] = ACTIONS(158),
- [anon_sym_new] = ACTIONS(1436),
- [anon_sym_using] = ACTIONS(636),
- [anon_sym_PLUS] = ACTIONS(650),
- [anon_sym_DASH] = ACTIONS(650),
- [anon_sym_SLASH] = ACTIONS(646),
- [anon_sym_LT] = ACTIONS(181),
- [anon_sym_TILDE] = ACTIONS(622),
- [anon_sym_void] = ACTIONS(650),
- [anon_sym_delete] = ACTIONS(650),
- [anon_sym_PLUS_PLUS] = ACTIONS(652),
- [anon_sym_DASH_DASH] = ACTIONS(652),
- [sym_comment] = ACTIONS(5),
- [anon_sym_BQUOTE] = ACTIONS(825),
- [sym_number] = ACTIONS(787),
- [sym_private_property_identifier] = ACTIONS(654),
- [sym_this] = ACTIONS(200),
- [sym_super] = ACTIONS(200),
- [sym_true] = ACTIONS(200),
- [sym_false] = ACTIONS(200),
- [sym_null] = ACTIONS(200),
- [sym_undefined] = ACTIONS(1438),
- [anon_sym_AT] = ACTIONS(99),
- [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_override] = 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_object] = ACTIONS(1044),
- [sym_html_comment] = ACTIONS(5),
- },
- [611] = {
- [sym_import] = STATE(3306),
- [sym_parenthesized_expression] = STATE(1294),
- [sym_expression] = STATE(1739),
- [sym_primary_expression] = STATE(1946),
- [sym_yield_expression] = STATE(2234),
- [sym_object] = STATE(2310),
- [sym_object_pattern] = STATE(5667),
- [sym_array] = STATE(2310),
- [sym_array_pattern] = STATE(5667),
- [sym_glimmer_template] = STATE(2234),
- [sym_jsx_element] = STATE(2234),
- [sym_jsx_opening_element] = STATE(3051),
- [sym_jsx_self_closing_element] = STATE(2234),
- [sym_class] = STATE(2310),
- [sym_function_expression] = STATE(2310),
- [sym_generator_function] = STATE(2310),
- [sym_arrow_function] = STATE(2310),
- [sym__call_signature] = STATE(5809),
- [sym_call_expression] = STATE(2310),
- [sym_new_expression] = STATE(2234),
- [sym_await_expression] = STATE(2234),
- [sym_member_expression] = STATE(1294),
- [sym_subscript_expression] = STATE(1294),
- [sym_assignment_expression] = STATE(2234),
- [sym__augmented_assignment_lhs] = STATE(2875),
- [sym_augmented_assignment_expression] = STATE(2234),
- [sym__destructuring_pattern] = STATE(5667),
- [sym_ternary_expression] = STATE(2234),
- [sym_binary_expression] = STATE(2234),
- [sym_unary_expression] = STATE(2234),
- [sym_update_expression] = STATE(2234),
- [sym_string] = STATE(2310),
- [sym_template_string] = STATE(2310),
- [sym_regex] = STATE(2310),
- [sym_meta_property] = STATE(2310),
- [sym_decorator] = STATE(1244),
- [sym_formal_parameters] = STATE(3742),
- [sym_non_null_expression] = STATE(1294),
- [sym_as_expression] = STATE(2234),
- [sym_satisfies_expression] = STATE(2234),
- [sym_instantiation_expression] = STATE(2234),
- [sym_internal_module] = STATE(2234),
- [sym_type_parameters] = STATE(5349),
- [aux_sym_export_statement_repeat1] = STATE(4499),
- [sym_identifier] = ACTIONS(1440),
- [anon_sym_export] = ACTIONS(1372),
- [anon_sym_type] = ACTIONS(1372),
- [anon_sym_namespace] = ACTIONS(1374),
- [anon_sym_LBRACE] = ACTIONS(700),
- [anon_sym_typeof] = ACTIONS(21),
- [anon_sym_import] = ACTIONS(133),
- [anon_sym_let] = ACTIONS(1372),
- [anon_sym_BANG] = ACTIONS(33),
- [anon_sym_LPAREN] = ACTIONS(41),
- [anon_sym_await] = ACTIONS(43),
- [anon_sym_yield] = ACTIONS(63),
- [anon_sym_LBRACK] = ACTIONS(65),
- [sym_glimmer_opening_tag] = ACTIONS(67),
- [anon_sym_DQUOTE] = ACTIONS(69),
- [anon_sym_SQUOTE] = ACTIONS(71),
- [anon_sym_class] = ACTIONS(709),
- [anon_sym_async] = ACTIONS(1378),
- [anon_sym_function] = ACTIONS(713),
- [anon_sym_new] = ACTIONS(1444),
- [anon_sym_using] = ACTIONS(81),
- [anon_sym_PLUS] = ACTIONS(21),
- [anon_sym_DASH] = ACTIONS(21),
- [anon_sym_SLASH] = ACTIONS(83),
- [anon_sym_LT] = ACTIONS(85),
- [anon_sym_TILDE] = ACTIONS(33),
- [anon_sym_void] = ACTIONS(21),
- [anon_sym_delete] = ACTIONS(21),
- [anon_sym_PLUS_PLUS] = ACTIONS(87),
- [anon_sym_DASH_DASH] = ACTIONS(87),
- [sym_comment] = ACTIONS(5),
- [anon_sym_BQUOTE] = ACTIONS(89),
- [sym_number] = ACTIONS(91),
- [sym_private_property_identifier] = ACTIONS(93),
- [sym_this] = ACTIONS(95),
- [sym_super] = ACTIONS(95),
- [sym_true] = ACTIONS(95),
- [sym_false] = ACTIONS(95),
- [sym_null] = ACTIONS(95),
- [sym_undefined] = ACTIONS(97),
- [anon_sym_AT] = ACTIONS(99),
- [anon_sym_static] = ACTIONS(1372),
- [anon_sym_readonly] = ACTIONS(1372),
- [anon_sym_get] = ACTIONS(1372),
- [anon_sym_set] = ACTIONS(1372),
- [anon_sym_declare] = ACTIONS(1372),
- [anon_sym_public] = ACTIONS(1372),
- [anon_sym_private] = ACTIONS(1372),
- [anon_sym_protected] = ACTIONS(1372),
- [anon_sym_override] = ACTIONS(1372),
- [anon_sym_module] = ACTIONS(1372),
- [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_object] = ACTIONS(1372),
- [sym_html_comment] = ACTIONS(5),
- },
- [612] = {
- [sym_import] = STATE(3306),
- [sym_parenthesized_expression] = STATE(1294),
- [sym_expression] = STATE(1742),
- [sym_primary_expression] = STATE(1946),
- [sym_yield_expression] = STATE(2234),
- [sym_object] = STATE(2310),
- [sym_object_pattern] = STATE(5667),
- [sym_array] = STATE(2310),
- [sym_array_pattern] = STATE(5667),
- [sym_glimmer_template] = STATE(2234),
- [sym_jsx_element] = STATE(2234),
- [sym_jsx_opening_element] = STATE(3051),
- [sym_jsx_self_closing_element] = STATE(2234),
- [sym_class] = STATE(2310),
- [sym_function_expression] = STATE(2310),
- [sym_generator_function] = STATE(2310),
- [sym_arrow_function] = STATE(2310),
- [sym__call_signature] = STATE(5809),
- [sym_call_expression] = STATE(2310),
- [sym_new_expression] = STATE(2234),
- [sym_await_expression] = STATE(2234),
- [sym_member_expression] = STATE(1294),
- [sym_subscript_expression] = STATE(1294),
- [sym_assignment_expression] = STATE(2234),
- [sym__augmented_assignment_lhs] = STATE(2875),
- [sym_augmented_assignment_expression] = STATE(2234),
- [sym__destructuring_pattern] = STATE(5667),
- [sym_ternary_expression] = STATE(2234),
- [sym_binary_expression] = STATE(2234),
- [sym_unary_expression] = STATE(2234),
- [sym_update_expression] = STATE(2234),
- [sym_string] = STATE(2310),
- [sym_template_string] = STATE(2310),
- [sym_regex] = STATE(2310),
- [sym_meta_property] = STATE(2310),
- [sym_decorator] = STATE(1244),
- [sym_formal_parameters] = STATE(3742),
- [sym_non_null_expression] = STATE(1294),
- [sym_as_expression] = STATE(2234),
- [sym_satisfies_expression] = STATE(2234),
- [sym_instantiation_expression] = STATE(2234),
- [sym_internal_module] = STATE(2234),
- [sym_type_parameters] = STATE(5349),
- [aux_sym_export_statement_repeat1] = STATE(4499),
- [sym_identifier] = ACTIONS(1440),
- [anon_sym_export] = ACTIONS(1372),
- [anon_sym_type] = ACTIONS(1372),
- [anon_sym_namespace] = ACTIONS(1374),
- [anon_sym_LBRACE] = ACTIONS(700),
- [anon_sym_typeof] = ACTIONS(21),
- [anon_sym_import] = ACTIONS(133),
- [anon_sym_let] = ACTIONS(1372),
- [anon_sym_BANG] = ACTIONS(33),
- [anon_sym_LPAREN] = ACTIONS(41),
- [anon_sym_await] = ACTIONS(43),
- [anon_sym_yield] = ACTIONS(63),
- [anon_sym_LBRACK] = ACTIONS(65),
- [sym_glimmer_opening_tag] = ACTIONS(67),
- [anon_sym_DQUOTE] = ACTIONS(69),
- [anon_sym_SQUOTE] = ACTIONS(71),
- [anon_sym_class] = ACTIONS(709),
- [anon_sym_async] = ACTIONS(1378),
- [anon_sym_function] = ACTIONS(713),
- [anon_sym_new] = ACTIONS(1444),
- [anon_sym_using] = ACTIONS(81),
- [anon_sym_PLUS] = ACTIONS(21),
- [anon_sym_DASH] = ACTIONS(21),
- [anon_sym_SLASH] = ACTIONS(83),
- [anon_sym_LT] = ACTIONS(85),
- [anon_sym_TILDE] = ACTIONS(33),
- [anon_sym_void] = ACTIONS(21),
- [anon_sym_delete] = ACTIONS(21),
- [anon_sym_PLUS_PLUS] = ACTIONS(87),
- [anon_sym_DASH_DASH] = ACTIONS(87),
- [sym_comment] = ACTIONS(5),
- [anon_sym_BQUOTE] = ACTIONS(89),
- [sym_number] = ACTIONS(91),
- [sym_private_property_identifier] = ACTIONS(93),
- [sym_this] = ACTIONS(95),
- [sym_super] = ACTIONS(95),
- [sym_true] = ACTIONS(95),
- [sym_false] = ACTIONS(95),
- [sym_null] = ACTIONS(95),
- [sym_undefined] = ACTIONS(97),
- [anon_sym_AT] = ACTIONS(99),
- [anon_sym_static] = ACTIONS(1372),
- [anon_sym_readonly] = ACTIONS(1372),
- [anon_sym_get] = ACTIONS(1372),
- [anon_sym_set] = ACTIONS(1372),
- [anon_sym_declare] = ACTIONS(1372),
- [anon_sym_public] = ACTIONS(1372),
- [anon_sym_private] = ACTIONS(1372),
- [anon_sym_protected] = ACTIONS(1372),
- [anon_sym_override] = ACTIONS(1372),
- [anon_sym_module] = ACTIONS(1372),
- [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_object] = ACTIONS(1372),
- [sym_html_comment] = ACTIONS(5),
- },
- [613] = {
- [sym_import] = STATE(3334),
- [sym_parenthesized_expression] = STATE(1391),
- [sym_expression] = STATE(2415),
- [sym_primary_expression] = STATE(1468),
- [sym_yield_expression] = STATE(1634),
- [sym_object] = STATE(1650),
- [sym_object_pattern] = STATE(5761),
- [sym_array] = STATE(1650),
- [sym_array_pattern] = STATE(5761),
- [sym_glimmer_template] = STATE(1634),
- [sym_jsx_element] = STATE(1634),
- [sym_jsx_opening_element] = STATE(3026),
- [sym_jsx_self_closing_element] = STATE(1634),
- [sym_class] = STATE(1650),
- [sym_function_expression] = STATE(1650),
- [sym_generator_function] = STATE(1650),
- [sym_arrow_function] = STATE(1650),
- [sym__call_signature] = STATE(5619),
- [sym_call_expression] = STATE(1650),
- [sym_new_expression] = STATE(1634),
- [sym_await_expression] = STATE(1634),
- [sym_member_expression] = STATE(1391),
- [sym_subscript_expression] = STATE(1391),
- [sym_assignment_expression] = STATE(1634),
- [sym__augmented_assignment_lhs] = STATE(2878),
- [sym_augmented_assignment_expression] = STATE(1634),
- [sym__destructuring_pattern] = STATE(5761),
- [sym_ternary_expression] = STATE(1634),
- [sym_binary_expression] = STATE(1634),
- [sym_unary_expression] = STATE(1634),
- [sym_update_expression] = STATE(1634),
- [sym_string] = STATE(1650),
- [sym_template_string] = STATE(1650),
- [sym_regex] = STATE(1650),
- [sym_meta_property] = STATE(1650),
- [sym_decorator] = STATE(1244),
- [sym_formal_parameters] = STATE(3742),
- [sym_non_null_expression] = STATE(1391),
- [sym_as_expression] = STATE(1634),
- [sym_satisfies_expression] = STATE(1634),
- [sym_instantiation_expression] = STATE(1634),
- [sym_internal_module] = STATE(1634),
- [sym_type_parameters] = STATE(5349),
- [aux_sym_export_statement_repeat1] = STATE(4458),
- [sym_identifier] = ACTIONS(2181),
- [anon_sym_export] = ACTIONS(2183),
- [anon_sym_type] = ACTIONS(2183),
- [anon_sym_namespace] = ACTIONS(2185),
- [anon_sym_LBRACE] = ACTIONS(845),
- [anon_sym_typeof] = ACTIONS(187),
- [anon_sym_import] = ACTIONS(133),
- [anon_sym_let] = ACTIONS(2183),
- [anon_sym_BANG] = ACTIONS(183),
- [anon_sym_LPAREN] = ACTIONS(815),
- [anon_sym_await] = ACTIONS(142),
- [anon_sym_yield] = ACTIONS(144),
- [anon_sym_LBRACK] = ACTIONS(849),
- [sym_glimmer_opening_tag] = ACTIONS(148),
- [anon_sym_DQUOTE] = ACTIONS(150),
- [anon_sym_SQUOTE] = ACTIONS(152),
- [anon_sym_class] = ACTIONS(154),
- [anon_sym_async] = ACTIONS(2187),
- [anon_sym_function] = ACTIONS(158),
- [anon_sym_new] = ACTIONS(2189),
- [anon_sym_using] = ACTIONS(166),
- [anon_sym_PLUS] = ACTIONS(187),
- [anon_sym_DASH] = ACTIONS(187),
- [anon_sym_SLASH] = ACTIONS(646),
- [anon_sym_LT] = ACTIONS(181),
- [anon_sym_TILDE] = ACTIONS(183),
- [anon_sym_void] = ACTIONS(187),
- [anon_sym_delete] = ACTIONS(187),
- [anon_sym_PLUS_PLUS] = ACTIONS(719),
- [anon_sym_DASH_DASH] = ACTIONS(719),
- [sym_comment] = ACTIONS(5),
- [anon_sym_BQUOTE] = ACTIONS(825),
- [sym_number] = ACTIONS(787),
- [sym_private_property_identifier] = ACTIONS(196),
- [sym_this] = ACTIONS(200),
- [sym_super] = ACTIONS(200),
- [sym_true] = ACTIONS(200),
- [sym_false] = ACTIONS(200),
- [sym_null] = ACTIONS(200),
- [sym_undefined] = ACTIONS(2191),
- [anon_sym_AT] = ACTIONS(99),
- [anon_sym_static] = ACTIONS(2183),
- [anon_sym_readonly] = ACTIONS(2183),
- [anon_sym_get] = ACTIONS(2183),
- [anon_sym_set] = ACTIONS(2183),
- [anon_sym_declare] = ACTIONS(2183),
- [anon_sym_public] = ACTIONS(2183),
- [anon_sym_private] = ACTIONS(2183),
- [anon_sym_protected] = ACTIONS(2183),
- [anon_sym_override] = ACTIONS(2183),
- [anon_sym_module] = ACTIONS(2183),
- [anon_sym_any] = ACTIONS(2183),
- [anon_sym_number] = ACTIONS(2183),
- [anon_sym_boolean] = ACTIONS(2183),
- [anon_sym_string] = ACTIONS(2183),
- [anon_sym_symbol] = ACTIONS(2183),
- [anon_sym_object] = ACTIONS(2183),
- [sym_html_comment] = ACTIONS(5),
- },
- [614] = {
- [sym_import] = STATE(3334),
- [sym_parenthesized_expression] = STATE(1336),
- [sym_expression] = STATE(2345),
- [sym_primary_expression] = STATE(1468),
- [sym_yield_expression] = STATE(1634),
- [sym_object] = STATE(1650),
- [sym_object_pattern] = STATE(5745),
- [sym_array] = STATE(1650),
- [sym_array_pattern] = STATE(5745),
- [sym_glimmer_template] = STATE(1634),
- [sym_jsx_element] = STATE(1634),
- [sym_jsx_opening_element] = STATE(3026),
- [sym_jsx_self_closing_element] = STATE(1634),
- [sym_class] = STATE(1650),
- [sym_function_expression] = STATE(1650),
- [sym_generator_function] = STATE(1650),
- [sym_arrow_function] = STATE(1650),
- [sym__call_signature] = STATE(5553),
- [sym_call_expression] = STATE(1650),
- [sym_new_expression] = STATE(1634),
- [sym_await_expression] = STATE(1634),
- [sym_member_expression] = STATE(1336),
- [sym_subscript_expression] = STATE(1336),
- [sym_assignment_expression] = STATE(1634),
- [sym__augmented_assignment_lhs] = STATE(2884),
- [sym_augmented_assignment_expression] = STATE(1634),
- [sym__destructuring_pattern] = STATE(5745),
- [sym_ternary_expression] = STATE(1634),
- [sym_binary_expression] = STATE(1634),
- [sym_unary_expression] = STATE(1634),
- [sym_update_expression] = STATE(1634),
- [sym_string] = STATE(1650),
- [sym_template_string] = STATE(1650),
- [sym_regex] = STATE(1650),
- [sym_meta_property] = STATE(1650),
- [sym_decorator] = STATE(1244),
- [sym_formal_parameters] = STATE(3742),
- [sym_non_null_expression] = STATE(1336),
- [sym_as_expression] = STATE(1634),
- [sym_satisfies_expression] = STATE(1634),
- [sym_instantiation_expression] = STATE(1634),
- [sym_internal_module] = STATE(1634),
- [sym_type_parameters] = STATE(5349),
- [aux_sym_export_statement_repeat1] = STATE(4458),
- [sym_identifier] = ACTIONS(1470),
- [anon_sym_export] = ACTIONS(1250),
- [anon_sym_type] = ACTIONS(1250),
- [anon_sym_namespace] = ACTIONS(1252),
- [anon_sym_LBRACE] = ACTIONS(813),
- [anon_sym_typeof] = ACTIONS(1272),
- [anon_sym_import] = ACTIONS(133),
- [anon_sym_let] = ACTIONS(1250),
- [anon_sym_BANG] = ACTIONS(1256),
- [anon_sym_LPAREN] = ACTIONS(815),
- [anon_sym_await] = ACTIONS(1258),
- [anon_sym_yield] = ACTIONS(1260),
- [anon_sym_LBRACK] = ACTIONS(817),
- [sym_glimmer_opening_tag] = ACTIONS(148),
- [anon_sym_DQUOTE] = ACTIONS(150),
- [anon_sym_SQUOTE] = ACTIONS(152),
- [anon_sym_class] = ACTIONS(154),
- [anon_sym_async] = ACTIONS(1262),
- [anon_sym_function] = ACTIONS(158),
- [anon_sym_new] = ACTIONS(1474),
- [anon_sym_using] = ACTIONS(1266),
- [anon_sym_PLUS] = ACTIONS(1272),
- [anon_sym_DASH] = ACTIONS(1272),
- [anon_sym_SLASH] = ACTIONS(646),
- [anon_sym_LT] = ACTIONS(181),
- [anon_sym_TILDE] = ACTIONS(1256),
- [anon_sym_void] = ACTIONS(1272),
- [anon_sym_delete] = ACTIONS(1272),
- [anon_sym_PLUS_PLUS] = ACTIONS(1274),
- [anon_sym_DASH_DASH] = ACTIONS(1274),
- [sym_comment] = ACTIONS(5),
- [anon_sym_BQUOTE] = ACTIONS(825),
- [sym_number] = ACTIONS(787),
- [sym_private_property_identifier] = ACTIONS(1276),
- [sym_this] = ACTIONS(200),
- [sym_super] = ACTIONS(200),
- [sym_true] = ACTIONS(200),
- [sym_false] = ACTIONS(200),
- [sym_null] = ACTIONS(200),
- [sym_undefined] = ACTIONS(1476),
- [anon_sym_AT] = ACTIONS(99),
- [anon_sym_static] = ACTIONS(1250),
- [anon_sym_readonly] = ACTIONS(1250),
- [anon_sym_get] = ACTIONS(1250),
- [anon_sym_set] = ACTIONS(1250),
- [anon_sym_declare] = ACTIONS(1250),
- [anon_sym_public] = ACTIONS(1250),
- [anon_sym_private] = ACTIONS(1250),
- [anon_sym_protected] = ACTIONS(1250),
- [anon_sym_override] = ACTIONS(1250),
- [anon_sym_module] = ACTIONS(1250),
- [anon_sym_any] = ACTIONS(1250),
- [anon_sym_number] = ACTIONS(1250),
- [anon_sym_boolean] = ACTIONS(1250),
- [anon_sym_string] = ACTIONS(1250),
- [anon_sym_symbol] = ACTIONS(1250),
- [anon_sym_object] = ACTIONS(1250),
- [sym_html_comment] = ACTIONS(5),
- },
- [615] = {
- [sym_import] = STATE(3334),
- [sym_parenthesized_expression] = STATE(1251),
- [sym_expression] = STATE(1671),
- [sym_primary_expression] = STATE(1468),
- [sym_yield_expression] = STATE(1634),
- [sym_object] = STATE(1650),
- [sym_object_pattern] = STATE(5633),
- [sym_array] = STATE(1650),
- [sym_array_pattern] = STATE(5633),
- [sym_glimmer_template] = STATE(1634),
- [sym_jsx_element] = STATE(1634),
- [sym_jsx_opening_element] = STATE(3026),
- [sym_jsx_self_closing_element] = STATE(1634),
- [sym_class] = STATE(1650),
- [sym_function_expression] = STATE(1650),
- [sym_generator_function] = STATE(1650),
- [sym_arrow_function] = STATE(1650),
- [sym__call_signature] = STATE(5828),
- [sym_call_expression] = STATE(1650),
- [sym_new_expression] = STATE(1634),
- [sym_await_expression] = STATE(1634),
- [sym_member_expression] = STATE(1251),
- [sym_subscript_expression] = STATE(1251),
- [sym_assignment_expression] = STATE(1634),
- [sym__augmented_assignment_lhs] = STATE(2900),
- [sym_augmented_assignment_expression] = STATE(1634),
- [sym__destructuring_pattern] = STATE(5633),
- [sym_ternary_expression] = STATE(1634),
- [sym_binary_expression] = STATE(1634),
- [sym_unary_expression] = STATE(1634),
- [sym_update_expression] = STATE(1634),
- [sym_string] = STATE(1650),
- [sym_template_string] = STATE(1650),
- [sym_regex] = STATE(1650),
- [sym_meta_property] = STATE(1650),
- [sym_decorator] = STATE(1244),
- [sym_formal_parameters] = STATE(3742),
- [sym_non_null_expression] = STATE(1251),
- [sym_as_expression] = STATE(1634),
- [sym_satisfies_expression] = STATE(1634),
- [sym_instantiation_expression] = STATE(1634),
- [sym_internal_module] = STATE(1634),
- [sym_type_parameters] = STATE(5349),
- [aux_sym_export_statement_repeat1] = STATE(4458),
- [sym_identifier] = ACTIONS(1428),
- [anon_sym_export] = ACTIONS(1044),
- [anon_sym_type] = ACTIONS(1044),
- [anon_sym_namespace] = ACTIONS(1046),
- [anon_sym_LBRACE] = ACTIONS(813),
- [anon_sym_typeof] = ACTIONS(650),
- [anon_sym_import] = ACTIONS(133),
- [anon_sym_let] = ACTIONS(1044),
- [anon_sym_BANG] = ACTIONS(622),
- [anon_sym_LPAREN] = ACTIONS(815),
- [anon_sym_await] = ACTIONS(624),
- [anon_sym_yield] = ACTIONS(626),
- [anon_sym_LBRACK] = ACTIONS(817),
- [sym_glimmer_opening_tag] = ACTIONS(148),
- [anon_sym_DQUOTE] = ACTIONS(150),
- [anon_sym_SQUOTE] = ACTIONS(152),
- [anon_sym_class] = ACTIONS(154),
- [anon_sym_async] = ACTIONS(1052),
- [anon_sym_function] = ACTIONS(158),
- [anon_sym_new] = ACTIONS(1436),
- [anon_sym_using] = ACTIONS(636),
- [anon_sym_PLUS] = ACTIONS(650),
- [anon_sym_DASH] = ACTIONS(650),
- [anon_sym_SLASH] = ACTIONS(646),
- [anon_sym_LT] = ACTIONS(181),
- [anon_sym_TILDE] = ACTIONS(622),
- [anon_sym_void] = ACTIONS(650),
- [anon_sym_delete] = ACTIONS(650),
- [anon_sym_PLUS_PLUS] = ACTIONS(652),
- [anon_sym_DASH_DASH] = ACTIONS(652),
- [sym_comment] = ACTIONS(5),
- [anon_sym_BQUOTE] = ACTIONS(825),
- [sym_number] = ACTIONS(787),
- [sym_private_property_identifier] = ACTIONS(654),
- [sym_this] = ACTIONS(200),
- [sym_super] = ACTIONS(200),
- [sym_true] = ACTIONS(200),
- [sym_false] = ACTIONS(200),
- [sym_null] = ACTIONS(200),
- [sym_undefined] = ACTIONS(1438),
- [anon_sym_AT] = ACTIONS(99),
- [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_override] = 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_object] = ACTIONS(1044),
- [sym_html_comment] = ACTIONS(5),
- },
- [616] = {
- [sym_import] = STATE(3306),
- [sym_parenthesized_expression] = STATE(1294),
- [sym_expression] = STATE(1667),
- [sym_primary_expression] = STATE(1946),
- [sym_yield_expression] = STATE(2234),
- [sym_object] = STATE(2310),
- [sym_object_pattern] = STATE(5667),
- [sym_array] = STATE(2310),
- [sym_array_pattern] = STATE(5667),
- [sym_glimmer_template] = STATE(2234),
- [sym_jsx_element] = STATE(2234),
- [sym_jsx_opening_element] = STATE(3051),
- [sym_jsx_self_closing_element] = STATE(2234),
- [sym_class] = STATE(2310),
- [sym_function_expression] = STATE(2310),
- [sym_generator_function] = STATE(2310),
- [sym_arrow_function] = STATE(2310),
- [sym__call_signature] = STATE(5809),
- [sym_call_expression] = STATE(2310),
- [sym_new_expression] = STATE(2234),
- [sym_await_expression] = STATE(2234),
- [sym_member_expression] = STATE(1294),
- [sym_subscript_expression] = STATE(1294),
- [sym_assignment_expression] = STATE(2234),
- [sym__augmented_assignment_lhs] = STATE(2875),
- [sym_augmented_assignment_expression] = STATE(2234),
- [sym__destructuring_pattern] = STATE(5667),
- [sym_ternary_expression] = STATE(2234),
- [sym_binary_expression] = STATE(2234),
- [sym_unary_expression] = STATE(2234),
- [sym_update_expression] = STATE(2234),
- [sym_string] = STATE(2310),
- [sym_template_string] = STATE(2310),
- [sym_regex] = STATE(2310),
- [sym_meta_property] = STATE(2310),
- [sym_decorator] = STATE(1244),
- [sym_formal_parameters] = STATE(3742),
- [sym_non_null_expression] = STATE(1294),
- [sym_as_expression] = STATE(2234),
- [sym_satisfies_expression] = STATE(2234),
- [sym_instantiation_expression] = STATE(2234),
- [sym_internal_module] = STATE(2234),
- [sym_type_parameters] = STATE(5349),
- [aux_sym_export_statement_repeat1] = STATE(4499),
- [sym_identifier] = ACTIONS(1440),
- [anon_sym_export] = ACTIONS(1372),
- [anon_sym_type] = ACTIONS(1372),
- [anon_sym_namespace] = ACTIONS(1374),
- [anon_sym_LBRACE] = ACTIONS(700),
- [anon_sym_typeof] = ACTIONS(21),
- [anon_sym_import] = ACTIONS(133),
- [anon_sym_let] = ACTIONS(1372),
- [anon_sym_BANG] = ACTIONS(33),
- [anon_sym_LPAREN] = ACTIONS(41),
- [anon_sym_await] = ACTIONS(43),
- [anon_sym_yield] = ACTIONS(63),
- [anon_sym_LBRACK] = ACTIONS(65),
- [sym_glimmer_opening_tag] = ACTIONS(67),
- [anon_sym_DQUOTE] = ACTIONS(69),
- [anon_sym_SQUOTE] = ACTIONS(71),
- [anon_sym_class] = ACTIONS(709),
- [anon_sym_async] = ACTIONS(1378),
- [anon_sym_function] = ACTIONS(713),
- [anon_sym_new] = ACTIONS(1444),
- [anon_sym_using] = ACTIONS(81),
- [anon_sym_PLUS] = ACTIONS(21),
- [anon_sym_DASH] = ACTIONS(21),
- [anon_sym_SLASH] = ACTIONS(83),
- [anon_sym_LT] = ACTIONS(85),
- [anon_sym_TILDE] = ACTIONS(33),
- [anon_sym_void] = ACTIONS(21),
- [anon_sym_delete] = ACTIONS(21),
- [anon_sym_PLUS_PLUS] = ACTIONS(87),
- [anon_sym_DASH_DASH] = ACTIONS(87),
- [sym_comment] = ACTIONS(5),
- [anon_sym_BQUOTE] = ACTIONS(89),
- [sym_number] = ACTIONS(91),
- [sym_private_property_identifier] = ACTIONS(93),
- [sym_this] = ACTIONS(95),
- [sym_super] = ACTIONS(95),
- [sym_true] = ACTIONS(95),
- [sym_false] = ACTIONS(95),
- [sym_null] = ACTIONS(95),
- [sym_undefined] = ACTIONS(97),
- [anon_sym_AT] = ACTIONS(99),
- [anon_sym_static] = ACTIONS(1372),
- [anon_sym_readonly] = ACTIONS(1372),
- [anon_sym_get] = ACTIONS(1372),
- [anon_sym_set] = ACTIONS(1372),
- [anon_sym_declare] = ACTIONS(1372),
- [anon_sym_public] = ACTIONS(1372),
- [anon_sym_private] = ACTIONS(1372),
- [anon_sym_protected] = ACTIONS(1372),
- [anon_sym_override] = ACTIONS(1372),
- [anon_sym_module] = ACTIONS(1372),
- [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_object] = ACTIONS(1372),
- [sym_html_comment] = ACTIONS(5),
- },
- [617] = {
- [sym_import] = STATE(3306),
- [sym_parenthesized_expression] = STATE(1300),
- [sym_expression] = STATE(1635),
- [sym_primary_expression] = STATE(1946),
- [sym_yield_expression] = STATE(2234),
- [sym_object] = STATE(2310),
- [sym_object_pattern] = STATE(5831),
- [sym_array] = STATE(2310),
- [sym_array_pattern] = STATE(5831),
- [sym_glimmer_template] = STATE(2234),
- [sym_jsx_element] = STATE(2234),
- [sym_jsx_opening_element] = STATE(3051),
- [sym_jsx_self_closing_element] = STATE(2234),
- [sym_class] = STATE(2310),
- [sym_function_expression] = STATE(2310),
- [sym_generator_function] = STATE(2310),
- [sym_arrow_function] = STATE(2310),
- [sym__call_signature] = STATE(5829),
- [sym_call_expression] = STATE(2310),
- [sym_new_expression] = STATE(2234),
- [sym_await_expression] = STATE(2234),
- [sym_member_expression] = STATE(1300),
- [sym_subscript_expression] = STATE(1300),
- [sym_assignment_expression] = STATE(2234),
- [sym__augmented_assignment_lhs] = STATE(2943),
- [sym_augmented_assignment_expression] = STATE(2234),
- [sym__destructuring_pattern] = STATE(5831),
- [sym_ternary_expression] = STATE(2234),
- [sym_binary_expression] = STATE(2234),
- [sym_unary_expression] = STATE(2234),
- [sym_update_expression] = STATE(2234),
- [sym_string] = STATE(2310),
- [sym_template_string] = STATE(2310),
- [sym_regex] = STATE(2310),
- [sym_meta_property] = STATE(2310),
- [sym_decorator] = STATE(1244),
- [sym_formal_parameters] = STATE(3742),
- [sym_non_null_expression] = STATE(1300),
- [sym_as_expression] = STATE(2234),
- [sym_satisfies_expression] = STATE(2234),
- [sym_instantiation_expression] = STATE(2234),
- [sym_internal_module] = STATE(2234),
- [sym_type_parameters] = STATE(5349),
- [aux_sym_export_statement_repeat1] = STATE(4499),
- [sym_identifier] = ACTIONS(1446),
- [anon_sym_export] = ACTIONS(1202),
- [anon_sym_type] = ACTIONS(1202),
- [anon_sym_namespace] = ACTIONS(1204),
- [anon_sym_LBRACE] = ACTIONS(700),
- [anon_sym_typeof] = ACTIONS(1228),
- [anon_sym_import] = ACTIONS(133),
- [anon_sym_let] = ACTIONS(1202),
- [anon_sym_BANG] = ACTIONS(1210),
- [anon_sym_LPAREN] = ACTIONS(41),
- [anon_sym_await] = ACTIONS(1212),
- [anon_sym_yield] = ACTIONS(1214),
- [anon_sym_LBRACK] = ACTIONS(65),
- [sym_glimmer_opening_tag] = ACTIONS(67),
- [anon_sym_DQUOTE] = ACTIONS(69),
- [anon_sym_SQUOTE] = ACTIONS(71),
- [anon_sym_class] = ACTIONS(709),
- [anon_sym_async] = ACTIONS(1218),
- [anon_sym_function] = ACTIONS(713),
- [anon_sym_new] = ACTIONS(1450),
- [anon_sym_using] = ACTIONS(1222),
- [anon_sym_PLUS] = ACTIONS(1228),
- [anon_sym_DASH] = ACTIONS(1228),
- [anon_sym_SLASH] = ACTIONS(882),
- [anon_sym_LT] = ACTIONS(85),
- [anon_sym_TILDE] = ACTIONS(1210),
- [anon_sym_void] = ACTIONS(1228),
- [anon_sym_delete] = ACTIONS(1228),
- [anon_sym_PLUS_PLUS] = ACTIONS(1230),
- [anon_sym_DASH_DASH] = ACTIONS(1230),
- [sym_comment] = ACTIONS(5),
- [anon_sym_BQUOTE] = ACTIONS(89),
- [sym_number] = ACTIONS(91),
- [sym_private_property_identifier] = ACTIONS(1236),
- [sym_this] = ACTIONS(95),
- [sym_super] = ACTIONS(95),
- [sym_true] = ACTIONS(95),
- [sym_false] = ACTIONS(95),
- [sym_null] = ACTIONS(95),
- [sym_undefined] = ACTIONS(1452),
- [anon_sym_AT] = ACTIONS(99),
- [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_override] = 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_object] = ACTIONS(1202),
- [sym_html_comment] = ACTIONS(5),
- },
- [618] = {
- [sym_import] = STATE(3306),
- [sym_parenthesized_expression] = STATE(1300),
- [sym_expression] = STATE(1636),
- [sym_primary_expression] = STATE(1946),
- [sym_yield_expression] = STATE(2234),
- [sym_object] = STATE(2310),
- [sym_object_pattern] = STATE(5831),
- [sym_array] = STATE(2310),
- [sym_array_pattern] = STATE(5831),
- [sym_glimmer_template] = STATE(2234),
- [sym_jsx_element] = STATE(2234),
- [sym_jsx_opening_element] = STATE(3051),
- [sym_jsx_self_closing_element] = STATE(2234),
- [sym_class] = STATE(2310),
- [sym_function_expression] = STATE(2310),
- [sym_generator_function] = STATE(2310),
- [sym_arrow_function] = STATE(2310),
- [sym__call_signature] = STATE(5829),
- [sym_call_expression] = STATE(2310),
- [sym_new_expression] = STATE(2234),
- [sym_await_expression] = STATE(2234),
- [sym_member_expression] = STATE(1300),
- [sym_subscript_expression] = STATE(1300),
- [sym_assignment_expression] = STATE(2234),
- [sym__augmented_assignment_lhs] = STATE(2943),
- [sym_augmented_assignment_expression] = STATE(2234),
- [sym__destructuring_pattern] = STATE(5831),
- [sym_ternary_expression] = STATE(2234),
- [sym_binary_expression] = STATE(2234),
- [sym_unary_expression] = STATE(2234),
- [sym_update_expression] = STATE(2234),
- [sym_string] = STATE(2310),
- [sym_template_string] = STATE(2310),
- [sym_regex] = STATE(2310),
- [sym_meta_property] = STATE(2310),
- [sym_decorator] = STATE(1244),
- [sym_formal_parameters] = STATE(3742),
- [sym_non_null_expression] = STATE(1300),
- [sym_as_expression] = STATE(2234),
- [sym_satisfies_expression] = STATE(2234),
- [sym_instantiation_expression] = STATE(2234),
- [sym_internal_module] = STATE(2234),
- [sym_type_parameters] = STATE(5349),
- [aux_sym_export_statement_repeat1] = STATE(4499),
- [sym_identifier] = ACTIONS(1446),
- [anon_sym_export] = ACTIONS(1202),
- [anon_sym_type] = ACTIONS(1202),
- [anon_sym_namespace] = ACTIONS(1204),
- [anon_sym_LBRACE] = ACTIONS(700),
- [anon_sym_typeof] = ACTIONS(1228),
- [anon_sym_import] = ACTIONS(133),
- [anon_sym_let] = ACTIONS(1202),
- [anon_sym_BANG] = ACTIONS(1210),
- [anon_sym_LPAREN] = ACTIONS(41),
- [anon_sym_await] = ACTIONS(1212),
- [anon_sym_yield] = ACTIONS(1214),
- [anon_sym_LBRACK] = ACTIONS(65),
- [sym_glimmer_opening_tag] = ACTIONS(67),
- [anon_sym_DQUOTE] = ACTIONS(69),
- [anon_sym_SQUOTE] = ACTIONS(71),
- [anon_sym_class] = ACTIONS(709),
- [anon_sym_async] = ACTIONS(1218),
- [anon_sym_function] = ACTIONS(713),
- [anon_sym_new] = ACTIONS(1450),
- [anon_sym_using] = ACTIONS(1222),
- [anon_sym_PLUS] = ACTIONS(1228),
- [anon_sym_DASH] = ACTIONS(1228),
- [anon_sym_SLASH] = ACTIONS(882),
- [anon_sym_LT] = ACTIONS(85),
- [anon_sym_TILDE] = ACTIONS(1210),
- [anon_sym_void] = ACTIONS(1228),
- [anon_sym_delete] = ACTIONS(1228),
- [anon_sym_PLUS_PLUS] = ACTIONS(1230),
- [anon_sym_DASH_DASH] = ACTIONS(1230),
- [sym_comment] = ACTIONS(5),
- [anon_sym_BQUOTE] = ACTIONS(89),
- [sym_number] = ACTIONS(91),
- [sym_private_property_identifier] = ACTIONS(1236),
- [sym_this] = ACTIONS(95),
- [sym_super] = ACTIONS(95),
- [sym_true] = ACTIONS(95),
- [sym_false] = ACTIONS(95),
- [sym_null] = ACTIONS(95),
- [sym_undefined] = ACTIONS(1452),
- [anon_sym_AT] = ACTIONS(99),
- [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_override] = 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_object] = ACTIONS(1202),
- [sym_html_comment] = ACTIONS(5),
- },
- [619] = {
- [sym_import] = STATE(3334),
- [sym_parenthesized_expression] = STATE(1251),
- [sym_expression] = STATE(1925),
- [sym_primary_expression] = STATE(1468),
- [sym_yield_expression] = STATE(1634),
- [sym_object] = STATE(1650),
- [sym_object_pattern] = STATE(5633),
- [sym_array] = STATE(1650),
- [sym_array_pattern] = STATE(5633),
- [sym_glimmer_template] = STATE(1634),
- [sym_jsx_element] = STATE(1634),
- [sym_jsx_opening_element] = STATE(3026),
- [sym_jsx_self_closing_element] = STATE(1634),
- [sym_class] = STATE(1650),
- [sym_function_expression] = STATE(1650),
- [sym_generator_function] = STATE(1650),
- [sym_arrow_function] = STATE(1650),
- [sym__call_signature] = STATE(5828),
- [sym_call_expression] = STATE(1650),
- [sym_new_expression] = STATE(1634),
- [sym_await_expression] = STATE(1634),
- [sym_member_expression] = STATE(1251),
- [sym_subscript_expression] = STATE(1251),
- [sym_assignment_expression] = STATE(1634),
- [sym__augmented_assignment_lhs] = STATE(2900),
- [sym_augmented_assignment_expression] = STATE(1634),
- [sym__destructuring_pattern] = STATE(5633),
- [sym_ternary_expression] = STATE(1634),
- [sym_binary_expression] = STATE(1634),
- [sym_unary_expression] = STATE(1634),
- [sym_update_expression] = STATE(1634),
- [sym_string] = STATE(1650),
- [sym_template_string] = STATE(1650),
- [sym_regex] = STATE(1650),
- [sym_meta_property] = STATE(1650),
- [sym_decorator] = STATE(1244),
- [sym_formal_parameters] = STATE(3742),
- [sym_non_null_expression] = STATE(1251),
- [sym_as_expression] = STATE(1634),
- [sym_satisfies_expression] = STATE(1634),
- [sym_instantiation_expression] = STATE(1634),
- [sym_internal_module] = STATE(1634),
- [sym_type_parameters] = STATE(5349),
- [aux_sym_export_statement_repeat1] = STATE(4458),
- [sym_identifier] = ACTIONS(1428),
- [anon_sym_export] = ACTIONS(1044),
- [anon_sym_type] = ACTIONS(1044),
- [anon_sym_namespace] = ACTIONS(1046),
- [anon_sym_LBRACE] = ACTIONS(813),
- [anon_sym_typeof] = ACTIONS(650),
- [anon_sym_import] = ACTIONS(133),
- [anon_sym_let] = ACTIONS(1044),
- [anon_sym_BANG] = ACTIONS(622),
- [anon_sym_LPAREN] = ACTIONS(815),
- [anon_sym_await] = ACTIONS(624),
- [anon_sym_yield] = ACTIONS(626),
- [anon_sym_LBRACK] = ACTIONS(817),
- [sym_glimmer_opening_tag] = ACTIONS(148),
- [anon_sym_DQUOTE] = ACTIONS(150),
- [anon_sym_SQUOTE] = ACTIONS(152),
- [anon_sym_class] = ACTIONS(154),
- [anon_sym_async] = ACTIONS(1052),
- [anon_sym_function] = ACTIONS(158),
- [anon_sym_new] = ACTIONS(1436),
- [anon_sym_using] = ACTIONS(636),
- [anon_sym_PLUS] = ACTIONS(650),
- [anon_sym_DASH] = ACTIONS(650),
- [anon_sym_SLASH] = ACTIONS(646),
- [anon_sym_LT] = ACTIONS(181),
- [anon_sym_TILDE] = ACTIONS(622),
- [anon_sym_void] = ACTIONS(650),
- [anon_sym_delete] = ACTIONS(650),
- [anon_sym_PLUS_PLUS] = ACTIONS(652),
- [anon_sym_DASH_DASH] = ACTIONS(652),
- [sym_comment] = ACTIONS(5),
- [anon_sym_BQUOTE] = ACTIONS(825),
- [sym_number] = ACTIONS(787),
- [sym_private_property_identifier] = ACTIONS(654),
- [sym_this] = ACTIONS(200),
- [sym_super] = ACTIONS(200),
- [sym_true] = ACTIONS(200),
- [sym_false] = ACTIONS(200),
- [sym_null] = ACTIONS(200),
- [sym_undefined] = ACTIONS(1438),
- [anon_sym_AT] = ACTIONS(99),
- [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_override] = 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_object] = ACTIONS(1044),
- [sym_html_comment] = ACTIONS(5),
- },
- [620] = {
- [sym_import] = STATE(3334),
- [sym_parenthesized_expression] = STATE(1336),
- [sym_expression] = STATE(2085),
- [sym_primary_expression] = STATE(1468),
- [sym_yield_expression] = STATE(1634),
- [sym_object] = STATE(1650),
- [sym_object_pattern] = STATE(5745),
- [sym_array] = STATE(1650),
- [sym_array_pattern] = STATE(5745),
- [sym_glimmer_template] = STATE(1634),
- [sym_jsx_element] = STATE(1634),
- [sym_jsx_opening_element] = STATE(3026),
- [sym_jsx_self_closing_element] = STATE(1634),
- [sym_class] = STATE(1650),
- [sym_function_expression] = STATE(1650),
- [sym_generator_function] = STATE(1650),
- [sym_arrow_function] = STATE(1650),
- [sym__call_signature] = STATE(5553),
- [sym_call_expression] = STATE(1650),
- [sym_new_expression] = STATE(1634),
- [sym_await_expression] = STATE(1634),
- [sym_member_expression] = STATE(1336),
- [sym_subscript_expression] = STATE(1336),
- [sym_assignment_expression] = STATE(1634),
- [sym__augmented_assignment_lhs] = STATE(2884),
- [sym_augmented_assignment_expression] = STATE(1634),
- [sym__destructuring_pattern] = STATE(5745),
- [sym_ternary_expression] = STATE(1634),
- [sym_binary_expression] = STATE(1634),
- [sym_unary_expression] = STATE(1634),
- [sym_update_expression] = STATE(1634),
- [sym_string] = STATE(1650),
- [sym_template_string] = STATE(1650),
- [sym_regex] = STATE(1650),
- [sym_meta_property] = STATE(1650),
- [sym_decorator] = STATE(1244),
- [sym_formal_parameters] = STATE(3742),
- [sym_non_null_expression] = STATE(1336),
- [sym_as_expression] = STATE(1634),
- [sym_satisfies_expression] = STATE(1634),
- [sym_instantiation_expression] = STATE(1634),
- [sym_internal_module] = STATE(1634),
- [sym_type_parameters] = STATE(5349),
- [aux_sym_export_statement_repeat1] = STATE(4458),
- [sym_identifier] = ACTIONS(1470),
- [anon_sym_export] = ACTIONS(1250),
- [anon_sym_type] = ACTIONS(1250),
- [anon_sym_namespace] = ACTIONS(1252),
- [anon_sym_LBRACE] = ACTIONS(813),
- [anon_sym_typeof] = ACTIONS(1272),
- [anon_sym_import] = ACTIONS(133),
- [anon_sym_let] = ACTIONS(1250),
- [anon_sym_BANG] = ACTIONS(1256),
- [anon_sym_LPAREN] = ACTIONS(815),
- [anon_sym_await] = ACTIONS(1258),
- [anon_sym_yield] = ACTIONS(1260),
- [anon_sym_LBRACK] = ACTIONS(817),
- [sym_glimmer_opening_tag] = ACTIONS(148),
- [anon_sym_DQUOTE] = ACTIONS(150),
- [anon_sym_SQUOTE] = ACTIONS(152),
- [anon_sym_class] = ACTIONS(154),
- [anon_sym_async] = ACTIONS(1262),
- [anon_sym_function] = ACTIONS(158),
- [anon_sym_new] = ACTIONS(1474),
- [anon_sym_using] = ACTIONS(1266),
- [anon_sym_PLUS] = ACTIONS(1272),
- [anon_sym_DASH] = ACTIONS(1272),
- [anon_sym_SLASH] = ACTIONS(646),
- [anon_sym_LT] = ACTIONS(181),
- [anon_sym_TILDE] = ACTIONS(1256),
- [anon_sym_void] = ACTIONS(1272),
- [anon_sym_delete] = ACTIONS(1272),
- [anon_sym_PLUS_PLUS] = ACTIONS(1274),
- [anon_sym_DASH_DASH] = ACTIONS(1274),
- [sym_comment] = ACTIONS(5),
- [anon_sym_BQUOTE] = ACTIONS(825),
- [sym_number] = ACTIONS(787),
- [sym_private_property_identifier] = ACTIONS(1276),
- [sym_this] = ACTIONS(200),
- [sym_super] = ACTIONS(200),
- [sym_true] = ACTIONS(200),
- [sym_false] = ACTIONS(200),
- [sym_null] = ACTIONS(200),
- [sym_undefined] = ACTIONS(1476),
- [anon_sym_AT] = ACTIONS(99),
- [anon_sym_static] = ACTIONS(1250),
- [anon_sym_readonly] = ACTIONS(1250),
- [anon_sym_get] = ACTIONS(1250),
- [anon_sym_set] = ACTIONS(1250),
- [anon_sym_declare] = ACTIONS(1250),
- [anon_sym_public] = ACTIONS(1250),
- [anon_sym_private] = ACTIONS(1250),
- [anon_sym_protected] = ACTIONS(1250),
- [anon_sym_override] = ACTIONS(1250),
- [anon_sym_module] = ACTIONS(1250),
- [anon_sym_any] = ACTIONS(1250),
- [anon_sym_number] = ACTIONS(1250),
- [anon_sym_boolean] = ACTIONS(1250),
- [anon_sym_string] = ACTIONS(1250),
- [anon_sym_symbol] = ACTIONS(1250),
- [anon_sym_object] = ACTIONS(1250),
- [sym_html_comment] = ACTIONS(5),
- },
- [621] = {
- [sym_import] = STATE(3334),
- [sym_parenthesized_expression] = STATE(1369),
- [sym_expression] = STATE(2309),
- [sym_primary_expression] = STATE(1468),
- [sym_yield_expression] = STATE(1634),
- [sym_object] = STATE(1650),
- [sym_object_pattern] = STATE(5861),
- [sym_array] = STATE(1650),
- [sym_array_pattern] = STATE(5861),
- [sym_glimmer_template] = STATE(1634),
- [sym_jsx_element] = STATE(1634),
- [sym_jsx_opening_element] = STATE(3026),
- [sym_jsx_self_closing_element] = STATE(1634),
- [sym_class] = STATE(1650),
- [sym_function_expression] = STATE(1650),
- [sym_generator_function] = STATE(1650),
- [sym_arrow_function] = STATE(1650),
- [sym__call_signature] = STATE(5765),
- [sym_call_expression] = STATE(1650),
- [sym_new_expression] = STATE(1634),
- [sym_await_expression] = STATE(1634),
- [sym_member_expression] = STATE(1369),
- [sym_subscript_expression] = STATE(1369),
- [sym_assignment_expression] = STATE(1634),
- [sym__augmented_assignment_lhs] = STATE(2891),
- [sym_augmented_assignment_expression] = STATE(1634),
- [sym__destructuring_pattern] = STATE(5861),
- [sym_ternary_expression] = STATE(1634),
- [sym_binary_expression] = STATE(1634),
- [sym_unary_expression] = STATE(1634),
- [sym_update_expression] = STATE(1634),
- [sym_string] = STATE(1650),
- [sym_template_string] = STATE(1650),
- [sym_regex] = STATE(1650),
- [sym_meta_property] = STATE(1650),
- [sym_decorator] = STATE(1244),
- [sym_formal_parameters] = STATE(3742),
- [sym_non_null_expression] = STATE(1369),
- [sym_as_expression] = STATE(1634),
- [sym_satisfies_expression] = STATE(1634),
- [sym_instantiation_expression] = STATE(1634),
- [sym_internal_module] = STATE(1634),
- [sym_type_parameters] = STATE(5349),
- [aux_sym_export_statement_repeat1] = STATE(4458),
- [sym_identifier] = ACTIONS(1478),
- [anon_sym_export] = ACTIONS(1114),
- [anon_sym_type] = ACTIONS(1114),
- [anon_sym_namespace] = ACTIONS(1116),
- [anon_sym_LBRACE] = ACTIONS(813),
- [anon_sym_typeof] = ACTIONS(1138),
- [anon_sym_import] = ACTIONS(133),
- [anon_sym_let] = ACTIONS(1114),
- [anon_sym_BANG] = ACTIONS(1122),
- [anon_sym_LPAREN] = ACTIONS(815),
- [anon_sym_await] = ACTIONS(1124),
- [anon_sym_yield] = ACTIONS(1126),
- [anon_sym_LBRACK] = ACTIONS(817),
- [sym_glimmer_opening_tag] = ACTIONS(148),
- [anon_sym_DQUOTE] = ACTIONS(150),
- [anon_sym_SQUOTE] = ACTIONS(152),
- [anon_sym_class] = ACTIONS(154),
- [anon_sym_async] = ACTIONS(1128),
- [anon_sym_function] = ACTIONS(158),
- [anon_sym_new] = ACTIONS(1482),
- [anon_sym_using] = ACTIONS(1132),
- [anon_sym_PLUS] = ACTIONS(1138),
- [anon_sym_DASH] = ACTIONS(1138),
- [anon_sym_SLASH] = ACTIONS(646),
- [anon_sym_LT] = ACTIONS(181),
- [anon_sym_TILDE] = ACTIONS(1122),
- [anon_sym_void] = ACTIONS(1138),
- [anon_sym_delete] = ACTIONS(1138),
- [anon_sym_PLUS_PLUS] = ACTIONS(1140),
- [anon_sym_DASH_DASH] = ACTIONS(1140),
- [sym_comment] = ACTIONS(5),
- [anon_sym_BQUOTE] = ACTIONS(825),
- [sym_number] = ACTIONS(787),
- [sym_private_property_identifier] = ACTIONS(1142),
- [sym_this] = ACTIONS(200),
- [sym_super] = ACTIONS(200),
- [sym_true] = ACTIONS(200),
- [sym_false] = ACTIONS(200),
- [sym_null] = ACTIONS(200),
- [sym_undefined] = ACTIONS(1484),
- [anon_sym_AT] = ACTIONS(99),
- [anon_sym_static] = ACTIONS(1114),
- [anon_sym_readonly] = ACTIONS(1114),
- [anon_sym_get] = ACTIONS(1114),
- [anon_sym_set] = ACTIONS(1114),
- [anon_sym_declare] = ACTIONS(1114),
- [anon_sym_public] = ACTIONS(1114),
- [anon_sym_private] = ACTIONS(1114),
- [anon_sym_protected] = ACTIONS(1114),
- [anon_sym_override] = ACTIONS(1114),
- [anon_sym_module] = ACTIONS(1114),
- [anon_sym_any] = ACTIONS(1114),
- [anon_sym_number] = ACTIONS(1114),
- [anon_sym_boolean] = ACTIONS(1114),
- [anon_sym_string] = ACTIONS(1114),
- [anon_sym_symbol] = ACTIONS(1114),
- [anon_sym_object] = ACTIONS(1114),
- [sym_html_comment] = ACTIONS(5),
- },
- [622] = {
- [sym_import] = STATE(3334),
- [sym_parenthesized_expression] = STATE(1387),
- [sym_expression] = STATE(2415),
- [sym_primary_expression] = STATE(1468),
- [sym_yield_expression] = STATE(1634),
- [sym_object] = STATE(1650),
- [sym_object_pattern] = STATE(5597),
- [sym_array] = STATE(1650),
- [sym_array_pattern] = STATE(5597),
- [sym_glimmer_template] = STATE(1634),
- [sym_jsx_element] = STATE(1634),
- [sym_jsx_opening_element] = STATE(3026),
- [sym_jsx_self_closing_element] = STATE(1634),
- [sym_class] = STATE(1650),
- [sym_function_expression] = STATE(1650),
- [sym_generator_function] = STATE(1650),
- [sym_arrow_function] = STATE(1650),
- [sym__call_signature] = STATE(5619),
- [sym_call_expression] = STATE(1650),
- [sym_new_expression] = STATE(1634),
- [sym_await_expression] = STATE(1634),
- [sym_member_expression] = STATE(1387),
- [sym_subscript_expression] = STATE(1387),
- [sym_assignment_expression] = STATE(1634),
- [sym__augmented_assignment_lhs] = STATE(2878),
- [sym_augmented_assignment_expression] = STATE(1634),
- [sym__destructuring_pattern] = STATE(5597),
- [sym_ternary_expression] = STATE(1634),
- [sym_binary_expression] = STATE(1634),
- [sym_unary_expression] = STATE(1634),
- [sym_update_expression] = STATE(1634),
- [sym_string] = STATE(1650),
- [sym_template_string] = STATE(1650),
- [sym_regex] = STATE(1650),
- [sym_meta_property] = STATE(1650),
- [sym_decorator] = STATE(1244),
- [sym_formal_parameters] = STATE(3742),
- [sym_non_null_expression] = STATE(1387),
- [sym_as_expression] = STATE(1634),
- [sym_satisfies_expression] = STATE(1634),
- [sym_instantiation_expression] = STATE(1634),
- [sym_internal_module] = STATE(1634),
- [sym_type_parameters] = STATE(5349),
- [aux_sym_export_statement_repeat1] = STATE(4458),
- [sym_identifier] = ACTIONS(2193),
- [anon_sym_export] = ACTIONS(2195),
- [anon_sym_type] = ACTIONS(2195),
- [anon_sym_namespace] = ACTIONS(2197),
- [anon_sym_LBRACE] = ACTIONS(845),
- [anon_sym_typeof] = ACTIONS(187),
- [anon_sym_import] = ACTIONS(133),
- [anon_sym_let] = ACTIONS(2195),
- [anon_sym_BANG] = ACTIONS(183),
- [anon_sym_LPAREN] = ACTIONS(815),
- [anon_sym_await] = ACTIONS(142),
- [anon_sym_yield] = ACTIONS(144),
- [anon_sym_LBRACK] = ACTIONS(849),
- [sym_glimmer_opening_tag] = ACTIONS(148),
- [anon_sym_DQUOTE] = ACTIONS(150),
- [anon_sym_SQUOTE] = ACTIONS(152),
- [anon_sym_class] = ACTIONS(154),
- [anon_sym_async] = ACTIONS(2199),
- [anon_sym_function] = ACTIONS(158),
- [anon_sym_new] = ACTIONS(2201),
- [anon_sym_using] = ACTIONS(166),
- [anon_sym_PLUS] = ACTIONS(187),
- [anon_sym_DASH] = ACTIONS(187),
- [anon_sym_SLASH] = ACTIONS(646),
- [anon_sym_LT] = ACTIONS(181),
- [anon_sym_TILDE] = ACTIONS(183),
- [anon_sym_void] = ACTIONS(187),
- [anon_sym_delete] = ACTIONS(187),
- [anon_sym_PLUS_PLUS] = ACTIONS(719),
- [anon_sym_DASH_DASH] = ACTIONS(719),
- [sym_comment] = ACTIONS(5),
- [anon_sym_BQUOTE] = ACTIONS(825),
- [sym_number] = ACTIONS(787),
- [sym_private_property_identifier] = ACTIONS(196),
- [sym_this] = ACTIONS(200),
- [sym_super] = ACTIONS(200),
- [sym_true] = ACTIONS(200),
- [sym_false] = ACTIONS(200),
- [sym_null] = ACTIONS(200),
- [sym_undefined] = ACTIONS(2203),
- [anon_sym_AT] = ACTIONS(99),
- [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_override] = 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_object] = ACTIONS(2195),
- [sym_html_comment] = ACTIONS(5),
- },
- [623] = {
- [sym_import] = STATE(3306),
- [sym_parenthesized_expression] = STATE(1294),
- [sym_expression] = STATE(1727),
- [sym_primary_expression] = STATE(1946),
- [sym_yield_expression] = STATE(2234),
- [sym_object] = STATE(2310),
- [sym_object_pattern] = STATE(5667),
- [sym_array] = STATE(2310),
- [sym_array_pattern] = STATE(5667),
- [sym_glimmer_template] = STATE(2234),
- [sym_jsx_element] = STATE(2234),
- [sym_jsx_opening_element] = STATE(3051),
- [sym_jsx_self_closing_element] = STATE(2234),
- [sym_class] = STATE(2310),
- [sym_function_expression] = STATE(2310),
- [sym_generator_function] = STATE(2310),
- [sym_arrow_function] = STATE(2310),
- [sym__call_signature] = STATE(5809),
- [sym_call_expression] = STATE(2310),
- [sym_new_expression] = STATE(2234),
- [sym_await_expression] = STATE(2234),
- [sym_member_expression] = STATE(1294),
- [sym_subscript_expression] = STATE(1294),
- [sym_assignment_expression] = STATE(2234),
- [sym__augmented_assignment_lhs] = STATE(2875),
- [sym_augmented_assignment_expression] = STATE(2234),
- [sym__destructuring_pattern] = STATE(5667),
- [sym_ternary_expression] = STATE(2234),
- [sym_binary_expression] = STATE(2234),
- [sym_unary_expression] = STATE(2234),
- [sym_update_expression] = STATE(2234),
- [sym_string] = STATE(2310),
- [sym_template_string] = STATE(2310),
- [sym_regex] = STATE(2310),
- [sym_meta_property] = STATE(2310),
- [sym_decorator] = STATE(1244),
- [sym_formal_parameters] = STATE(3742),
- [sym_non_null_expression] = STATE(1294),
- [sym_as_expression] = STATE(2234),
- [sym_satisfies_expression] = STATE(2234),
- [sym_instantiation_expression] = STATE(2234),
- [sym_internal_module] = STATE(2234),
- [sym_type_parameters] = STATE(5349),
- [aux_sym_export_statement_repeat1] = STATE(4499),
- [sym_identifier] = ACTIONS(1440),
- [anon_sym_export] = ACTIONS(1372),
- [anon_sym_type] = ACTIONS(1372),
- [anon_sym_namespace] = ACTIONS(1374),
- [anon_sym_LBRACE] = ACTIONS(700),
- [anon_sym_typeof] = ACTIONS(21),
- [anon_sym_import] = ACTIONS(133),
- [anon_sym_let] = ACTIONS(1372),
- [anon_sym_BANG] = ACTIONS(33),
- [anon_sym_LPAREN] = ACTIONS(41),
- [anon_sym_await] = ACTIONS(43),
- [anon_sym_yield] = ACTIONS(63),
- [anon_sym_LBRACK] = ACTIONS(65),
- [sym_glimmer_opening_tag] = ACTIONS(67),
- [anon_sym_DQUOTE] = ACTIONS(69),
- [anon_sym_SQUOTE] = ACTIONS(71),
- [anon_sym_class] = ACTIONS(709),
- [anon_sym_async] = ACTIONS(1378),
- [anon_sym_function] = ACTIONS(713),
- [anon_sym_new] = ACTIONS(1444),
- [anon_sym_using] = ACTIONS(81),
- [anon_sym_PLUS] = ACTIONS(21),
- [anon_sym_DASH] = ACTIONS(21),
- [anon_sym_SLASH] = ACTIONS(83),
- [anon_sym_LT] = ACTIONS(85),
- [anon_sym_TILDE] = ACTIONS(33),
- [anon_sym_void] = ACTIONS(21),
- [anon_sym_delete] = ACTIONS(21),
- [anon_sym_PLUS_PLUS] = ACTIONS(87),
- [anon_sym_DASH_DASH] = ACTIONS(87),
- [sym_comment] = ACTIONS(5),
- [anon_sym_BQUOTE] = ACTIONS(89),
- [sym_number] = ACTIONS(2109),
- [sym_private_property_identifier] = ACTIONS(93),
- [sym_this] = ACTIONS(95),
- [sym_super] = ACTIONS(95),
- [sym_true] = ACTIONS(95),
- [sym_false] = ACTIONS(95),
- [sym_null] = ACTIONS(95),
- [sym_undefined] = ACTIONS(97),
- [anon_sym_AT] = ACTIONS(99),
- [anon_sym_static] = ACTIONS(1372),
- [anon_sym_readonly] = ACTIONS(1372),
- [anon_sym_get] = ACTIONS(1372),
- [anon_sym_set] = ACTIONS(1372),
- [anon_sym_declare] = ACTIONS(1372),
- [anon_sym_public] = ACTIONS(1372),
- [anon_sym_private] = ACTIONS(1372),
- [anon_sym_protected] = ACTIONS(1372),
- [anon_sym_override] = ACTIONS(1372),
- [anon_sym_module] = ACTIONS(1372),
- [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_object] = ACTIONS(1372),
- [sym_html_comment] = ACTIONS(5),
- },
- [624] = {
- [sym_import] = STATE(3334),
- [sym_parenthesized_expression] = STATE(1336),
- [sym_expression] = STATE(2322),
- [sym_primary_expression] = STATE(1468),
- [sym_yield_expression] = STATE(1634),
- [sym_object] = STATE(1650),
- [sym_object_pattern] = STATE(5745),
- [sym_array] = STATE(1650),
- [sym_array_pattern] = STATE(5745),
- [sym_glimmer_template] = STATE(1634),
- [sym_jsx_element] = STATE(1634),
- [sym_jsx_opening_element] = STATE(3026),
- [sym_jsx_self_closing_element] = STATE(1634),
- [sym_class] = STATE(1650),
- [sym_function_expression] = STATE(1650),
- [sym_generator_function] = STATE(1650),
- [sym_arrow_function] = STATE(1650),
- [sym__call_signature] = STATE(5553),
- [sym_call_expression] = STATE(1650),
- [sym_new_expression] = STATE(1634),
- [sym_await_expression] = STATE(1634),
- [sym_member_expression] = STATE(1336),
- [sym_subscript_expression] = STATE(1336),
- [sym_assignment_expression] = STATE(1634),
- [sym__augmented_assignment_lhs] = STATE(2884),
- [sym_augmented_assignment_expression] = STATE(1634),
- [sym__destructuring_pattern] = STATE(5745),
- [sym_ternary_expression] = STATE(1634),
- [sym_binary_expression] = STATE(1634),
- [sym_unary_expression] = STATE(1634),
- [sym_update_expression] = STATE(1634),
- [sym_string] = STATE(1650),
- [sym_template_string] = STATE(1650),
- [sym_regex] = STATE(1650),
- [sym_meta_property] = STATE(1650),
- [sym_decorator] = STATE(1244),
- [sym_formal_parameters] = STATE(3742),
- [sym_non_null_expression] = STATE(1336),
- [sym_as_expression] = STATE(1634),
- [sym_satisfies_expression] = STATE(1634),
- [sym_instantiation_expression] = STATE(1634),
- [sym_internal_module] = STATE(1634),
- [sym_type_parameters] = STATE(5349),
- [aux_sym_export_statement_repeat1] = STATE(4458),
- [sym_identifier] = ACTIONS(1470),
- [anon_sym_export] = ACTIONS(1250),
- [anon_sym_type] = ACTIONS(1250),
- [anon_sym_namespace] = ACTIONS(1252),
- [anon_sym_LBRACE] = ACTIONS(813),
- [anon_sym_typeof] = ACTIONS(1272),
- [anon_sym_import] = ACTIONS(133),
- [anon_sym_let] = ACTIONS(1250),
- [anon_sym_BANG] = ACTIONS(1256),
- [anon_sym_LPAREN] = ACTIONS(815),
- [anon_sym_await] = ACTIONS(1258),
- [anon_sym_yield] = ACTIONS(1260),
- [anon_sym_LBRACK] = ACTIONS(817),
- [sym_glimmer_opening_tag] = ACTIONS(148),
- [anon_sym_DQUOTE] = ACTIONS(150),
- [anon_sym_SQUOTE] = ACTIONS(152),
- [anon_sym_class] = ACTIONS(154),
- [anon_sym_async] = ACTIONS(1262),
- [anon_sym_function] = ACTIONS(158),
- [anon_sym_new] = ACTIONS(1474),
- [anon_sym_using] = ACTIONS(1266),
- [anon_sym_PLUS] = ACTIONS(1272),
- [anon_sym_DASH] = ACTIONS(1272),
- [anon_sym_SLASH] = ACTIONS(646),
- [anon_sym_LT] = ACTIONS(181),
- [anon_sym_TILDE] = ACTIONS(1256),
- [anon_sym_void] = ACTIONS(1272),
- [anon_sym_delete] = ACTIONS(1272),
- [anon_sym_PLUS_PLUS] = ACTIONS(1274),
- [anon_sym_DASH_DASH] = ACTIONS(1274),
- [sym_comment] = ACTIONS(5),
- [anon_sym_BQUOTE] = ACTIONS(825),
- [sym_number] = ACTIONS(787),
- [sym_private_property_identifier] = ACTIONS(1276),
- [sym_this] = ACTIONS(200),
- [sym_super] = ACTIONS(200),
- [sym_true] = ACTIONS(200),
- [sym_false] = ACTIONS(200),
- [sym_null] = ACTIONS(200),
- [sym_undefined] = ACTIONS(1476),
- [anon_sym_AT] = ACTIONS(99),
- [anon_sym_static] = ACTIONS(1250),
- [anon_sym_readonly] = ACTIONS(1250),
- [anon_sym_get] = ACTIONS(1250),
- [anon_sym_set] = ACTIONS(1250),
- [anon_sym_declare] = ACTIONS(1250),
- [anon_sym_public] = ACTIONS(1250),
- [anon_sym_private] = ACTIONS(1250),
- [anon_sym_protected] = ACTIONS(1250),
- [anon_sym_override] = ACTIONS(1250),
- [anon_sym_module] = ACTIONS(1250),
- [anon_sym_any] = ACTIONS(1250),
- [anon_sym_number] = ACTIONS(1250),
- [anon_sym_boolean] = ACTIONS(1250),
- [anon_sym_string] = ACTIONS(1250),
- [anon_sym_symbol] = ACTIONS(1250),
- [anon_sym_object] = ACTIONS(1250),
- [sym_html_comment] = ACTIONS(5),
- },
- [625] = {
- [sym_import] = STATE(3334),
- [sym_parenthesized_expression] = STATE(1394),
- [sym_expression] = STATE(2415),
- [sym_primary_expression] = STATE(1468),
- [sym_yield_expression] = STATE(1634),
- [sym_object] = STATE(1650),
- [sym_object_pattern] = STATE(5846),
- [sym_array] = STATE(1650),
- [sym_array_pattern] = STATE(5846),
- [sym_glimmer_template] = STATE(1634),
- [sym_jsx_element] = STATE(1634),
- [sym_jsx_opening_element] = STATE(3026),
- [sym_jsx_self_closing_element] = STATE(1634),
- [sym_class] = STATE(1650),
- [sym_function_expression] = STATE(1650),
- [sym_generator_function] = STATE(1650),
- [sym_arrow_function] = STATE(1650),
- [sym__call_signature] = STATE(5619),
- [sym_call_expression] = STATE(1650),
- [sym_new_expression] = STATE(1634),
- [sym_await_expression] = STATE(1634),
- [sym_member_expression] = STATE(1394),
- [sym_subscript_expression] = STATE(1394),
- [sym_assignment_expression] = STATE(1634),
- [sym__augmented_assignment_lhs] = STATE(2878),
- [sym_augmented_assignment_expression] = STATE(1634),
- [sym__destructuring_pattern] = STATE(5846),
- [sym_ternary_expression] = STATE(1634),
- [sym_binary_expression] = STATE(1634),
- [sym_unary_expression] = STATE(1634),
- [sym_update_expression] = STATE(1634),
- [sym_string] = STATE(1650),
- [sym_template_string] = STATE(1650),
- [sym_regex] = STATE(1650),
- [sym_meta_property] = STATE(1650),
- [sym_decorator] = STATE(1244),
- [sym_formal_parameters] = STATE(3742),
- [sym_non_null_expression] = STATE(1394),
- [sym_as_expression] = STATE(1634),
- [sym_satisfies_expression] = STATE(1634),
- [sym_instantiation_expression] = STATE(1634),
- [sym_internal_module] = STATE(1634),
- [sym_type_parameters] = STATE(5349),
- [aux_sym_export_statement_repeat1] = STATE(4458),
- [sym_identifier] = ACTIONS(2205),
- [anon_sym_export] = ACTIONS(2207),
- [anon_sym_type] = ACTIONS(2207),
- [anon_sym_namespace] = ACTIONS(2209),
- [anon_sym_LBRACE] = ACTIONS(845),
- [anon_sym_typeof] = ACTIONS(187),
- [anon_sym_import] = ACTIONS(133),
- [anon_sym_let] = ACTIONS(2207),
- [anon_sym_BANG] = ACTIONS(183),
- [anon_sym_LPAREN] = ACTIONS(815),
- [anon_sym_await] = ACTIONS(142),
- [anon_sym_yield] = ACTIONS(144),
- [anon_sym_LBRACK] = ACTIONS(849),
- [sym_glimmer_opening_tag] = ACTIONS(148),
- [anon_sym_DQUOTE] = ACTIONS(150),
- [anon_sym_SQUOTE] = ACTIONS(152),
- [anon_sym_class] = ACTIONS(154),
- [anon_sym_async] = ACTIONS(2211),
- [anon_sym_function] = ACTIONS(158),
- [anon_sym_new] = ACTIONS(2213),
- [anon_sym_using] = ACTIONS(166),
- [anon_sym_PLUS] = ACTIONS(187),
- [anon_sym_DASH] = ACTIONS(187),
- [anon_sym_SLASH] = ACTIONS(646),
- [anon_sym_LT] = ACTIONS(181),
- [anon_sym_TILDE] = ACTIONS(183),
- [anon_sym_void] = ACTIONS(187),
- [anon_sym_delete] = ACTIONS(187),
- [anon_sym_PLUS_PLUS] = ACTIONS(719),
- [anon_sym_DASH_DASH] = ACTIONS(719),
- [sym_comment] = ACTIONS(5),
- [anon_sym_BQUOTE] = ACTIONS(825),
- [sym_number] = ACTIONS(787),
- [sym_private_property_identifier] = ACTIONS(196),
- [sym_this] = ACTIONS(200),
- [sym_super] = ACTIONS(200),
- [sym_true] = ACTIONS(200),
- [sym_false] = ACTIONS(200),
- [sym_null] = ACTIONS(200),
- [sym_undefined] = ACTIONS(2215),
- [anon_sym_AT] = ACTIONS(99),
- [anon_sym_static] = ACTIONS(2207),
- [anon_sym_readonly] = ACTIONS(2207),
- [anon_sym_get] = ACTIONS(2207),
- [anon_sym_set] = ACTIONS(2207),
- [anon_sym_declare] = ACTIONS(2207),
- [anon_sym_public] = ACTIONS(2207),
- [anon_sym_private] = ACTIONS(2207),
- [anon_sym_protected] = ACTIONS(2207),
- [anon_sym_override] = ACTIONS(2207),
- [anon_sym_module] = ACTIONS(2207),
- [anon_sym_any] = ACTIONS(2207),
- [anon_sym_number] = ACTIONS(2207),
- [anon_sym_boolean] = ACTIONS(2207),
- [anon_sym_string] = ACTIONS(2207),
- [anon_sym_symbol] = ACTIONS(2207),
- [anon_sym_object] = ACTIONS(2207),
- [sym_html_comment] = ACTIONS(5),
- },
- [626] = {
- [sym_import] = STATE(3334),
- [sym_parenthesized_expression] = STATE(1336),
- [sym_expression] = STATE(2381),
- [sym_primary_expression] = STATE(1468),
- [sym_yield_expression] = STATE(1634),
- [sym_object] = STATE(1650),
- [sym_object_pattern] = STATE(5745),
- [sym_array] = STATE(1650),
- [sym_array_pattern] = STATE(5745),
- [sym_glimmer_template] = STATE(1634),
- [sym_jsx_element] = STATE(1634),
- [sym_jsx_opening_element] = STATE(3026),
- [sym_jsx_self_closing_element] = STATE(1634),
- [sym_class] = STATE(1650),
- [sym_function_expression] = STATE(1650),
- [sym_generator_function] = STATE(1650),
- [sym_arrow_function] = STATE(1650),
- [sym__call_signature] = STATE(5553),
- [sym_call_expression] = STATE(1650),
- [sym_new_expression] = STATE(1634),
- [sym_await_expression] = STATE(1634),
- [sym_member_expression] = STATE(1336),
- [sym_subscript_expression] = STATE(1336),
- [sym_assignment_expression] = STATE(1634),
- [sym__augmented_assignment_lhs] = STATE(2884),
- [sym_augmented_assignment_expression] = STATE(1634),
- [sym__destructuring_pattern] = STATE(5745),
- [sym_ternary_expression] = STATE(1634),
- [sym_binary_expression] = STATE(1634),
- [sym_unary_expression] = STATE(1634),
- [sym_update_expression] = STATE(1634),
- [sym_string] = STATE(1650),
- [sym_template_string] = STATE(1650),
- [sym_regex] = STATE(1650),
- [sym_meta_property] = STATE(1650),
- [sym_decorator] = STATE(1244),
- [sym_formal_parameters] = STATE(3742),
- [sym_non_null_expression] = STATE(1336),
- [sym_as_expression] = STATE(1634),
- [sym_satisfies_expression] = STATE(1634),
- [sym_instantiation_expression] = STATE(1634),
- [sym_internal_module] = STATE(1634),
- [sym_type_parameters] = STATE(5349),
- [aux_sym_export_statement_repeat1] = STATE(4458),
- [sym_identifier] = ACTIONS(1470),
- [anon_sym_export] = ACTIONS(1250),
- [anon_sym_type] = ACTIONS(1250),
- [anon_sym_namespace] = ACTIONS(1252),
- [anon_sym_LBRACE] = ACTIONS(813),
- [anon_sym_typeof] = ACTIONS(1272),
- [anon_sym_import] = ACTIONS(133),
- [anon_sym_let] = ACTIONS(1250),
- [anon_sym_BANG] = ACTIONS(1256),
- [anon_sym_LPAREN] = ACTIONS(815),
- [anon_sym_await] = ACTIONS(1258),
- [anon_sym_yield] = ACTIONS(1260),
- [anon_sym_LBRACK] = ACTIONS(817),
- [sym_glimmer_opening_tag] = ACTIONS(148),
- [anon_sym_DQUOTE] = ACTIONS(150),
- [anon_sym_SQUOTE] = ACTIONS(152),
- [anon_sym_class] = ACTIONS(154),
- [anon_sym_async] = ACTIONS(1262),
- [anon_sym_function] = ACTIONS(158),
- [anon_sym_new] = ACTIONS(1474),
- [anon_sym_using] = ACTIONS(1266),
- [anon_sym_PLUS] = ACTIONS(1272),
- [anon_sym_DASH] = ACTIONS(1272),
- [anon_sym_SLASH] = ACTIONS(646),
- [anon_sym_LT] = ACTIONS(181),
- [anon_sym_TILDE] = ACTIONS(1256),
- [anon_sym_void] = ACTIONS(1272),
- [anon_sym_delete] = ACTIONS(1272),
- [anon_sym_PLUS_PLUS] = ACTIONS(1274),
- [anon_sym_DASH_DASH] = ACTIONS(1274),
- [sym_comment] = ACTIONS(5),
- [anon_sym_BQUOTE] = ACTIONS(825),
- [sym_number] = ACTIONS(787),
- [sym_private_property_identifier] = ACTIONS(1276),
- [sym_this] = ACTIONS(200),
- [sym_super] = ACTIONS(200),
- [sym_true] = ACTIONS(200),
- [sym_false] = ACTIONS(200),
- [sym_null] = ACTIONS(200),
- [sym_undefined] = ACTIONS(1476),
- [anon_sym_AT] = ACTIONS(99),
- [anon_sym_static] = ACTIONS(1250),
- [anon_sym_readonly] = ACTIONS(1250),
- [anon_sym_get] = ACTIONS(1250),
- [anon_sym_set] = ACTIONS(1250),
- [anon_sym_declare] = ACTIONS(1250),
- [anon_sym_public] = ACTIONS(1250),
- [anon_sym_private] = ACTIONS(1250),
- [anon_sym_protected] = ACTIONS(1250),
- [anon_sym_override] = ACTIONS(1250),
- [anon_sym_module] = ACTIONS(1250),
- [anon_sym_any] = ACTIONS(1250),
- [anon_sym_number] = ACTIONS(1250),
- [anon_sym_boolean] = ACTIONS(1250),
- [anon_sym_string] = ACTIONS(1250),
- [anon_sym_symbol] = ACTIONS(1250),
- [anon_sym_object] = ACTIONS(1250),
- [sym_html_comment] = ACTIONS(5),
- },
- [627] = {
- [sym_import] = STATE(3334),
- [sym_parenthesized_expression] = STATE(1369),
- [sym_expression] = STATE(2292),
- [sym_primary_expression] = STATE(1468),
- [sym_yield_expression] = STATE(1634),
- [sym_object] = STATE(1650),
- [sym_object_pattern] = STATE(5861),
- [sym_array] = STATE(1650),
- [sym_array_pattern] = STATE(5861),
- [sym_glimmer_template] = STATE(1634),
- [sym_jsx_element] = STATE(1634),
- [sym_jsx_opening_element] = STATE(3026),
- [sym_jsx_self_closing_element] = STATE(1634),
- [sym_class] = STATE(1650),
- [sym_function_expression] = STATE(1650),
- [sym_generator_function] = STATE(1650),
- [sym_arrow_function] = STATE(1650),
- [sym__call_signature] = STATE(5765),
- [sym_call_expression] = STATE(1650),
- [sym_new_expression] = STATE(1634),
- [sym_await_expression] = STATE(1634),
- [sym_member_expression] = STATE(1369),
- [sym_subscript_expression] = STATE(1369),
- [sym_assignment_expression] = STATE(1634),
- [sym__augmented_assignment_lhs] = STATE(2891),
- [sym_augmented_assignment_expression] = STATE(1634),
- [sym__destructuring_pattern] = STATE(5861),
- [sym_ternary_expression] = STATE(1634),
- [sym_binary_expression] = STATE(1634),
- [sym_unary_expression] = STATE(1634),
- [sym_update_expression] = STATE(1634),
- [sym_string] = STATE(1650),
- [sym_template_string] = STATE(1650),
- [sym_regex] = STATE(1650),
- [sym_meta_property] = STATE(1650),
- [sym_decorator] = STATE(1244),
- [sym_formal_parameters] = STATE(3742),
- [sym_non_null_expression] = STATE(1369),
- [sym_as_expression] = STATE(1634),
- [sym_satisfies_expression] = STATE(1634),
- [sym_instantiation_expression] = STATE(1634),
- [sym_internal_module] = STATE(1634),
- [sym_type_parameters] = STATE(5349),
- [aux_sym_export_statement_repeat1] = STATE(4458),
- [sym_identifier] = ACTIONS(1478),
- [anon_sym_export] = ACTIONS(1114),
- [anon_sym_type] = ACTIONS(1114),
- [anon_sym_namespace] = ACTIONS(1116),
- [anon_sym_LBRACE] = ACTIONS(813),
- [anon_sym_typeof] = ACTIONS(1138),
- [anon_sym_import] = ACTIONS(133),
- [anon_sym_let] = ACTIONS(1114),
- [anon_sym_BANG] = ACTIONS(1122),
- [anon_sym_LPAREN] = ACTIONS(815),
- [anon_sym_await] = ACTIONS(1124),
- [anon_sym_yield] = ACTIONS(1126),
- [anon_sym_LBRACK] = ACTIONS(817),
- [sym_glimmer_opening_tag] = ACTIONS(148),
- [anon_sym_DQUOTE] = ACTIONS(150),
- [anon_sym_SQUOTE] = ACTIONS(152),
- [anon_sym_class] = ACTIONS(154),
- [anon_sym_async] = ACTIONS(1128),
- [anon_sym_function] = ACTIONS(158),
- [anon_sym_new] = ACTIONS(1482),
- [anon_sym_using] = ACTIONS(1132),
- [anon_sym_PLUS] = ACTIONS(1138),
- [anon_sym_DASH] = ACTIONS(1138),
- [anon_sym_SLASH] = ACTIONS(646),
- [anon_sym_LT] = ACTIONS(181),
- [anon_sym_TILDE] = ACTIONS(1122),
- [anon_sym_void] = ACTIONS(1138),
- [anon_sym_delete] = ACTIONS(1138),
- [anon_sym_PLUS_PLUS] = ACTIONS(1140),
- [anon_sym_DASH_DASH] = ACTIONS(1140),
- [sym_comment] = ACTIONS(5),
- [anon_sym_BQUOTE] = ACTIONS(825),
- [sym_number] = ACTIONS(787),
- [sym_private_property_identifier] = ACTIONS(1142),
- [sym_this] = ACTIONS(200),
- [sym_super] = ACTIONS(200),
- [sym_true] = ACTIONS(200),
- [sym_false] = ACTIONS(200),
- [sym_null] = ACTIONS(200),
- [sym_undefined] = ACTIONS(1484),
- [anon_sym_AT] = ACTIONS(99),
- [anon_sym_static] = ACTIONS(1114),
- [anon_sym_readonly] = ACTIONS(1114),
- [anon_sym_get] = ACTIONS(1114),
- [anon_sym_set] = ACTIONS(1114),
- [anon_sym_declare] = ACTIONS(1114),
- [anon_sym_public] = ACTIONS(1114),
- [anon_sym_private] = ACTIONS(1114),
- [anon_sym_protected] = ACTIONS(1114),
- [anon_sym_override] = ACTIONS(1114),
- [anon_sym_module] = ACTIONS(1114),
- [anon_sym_any] = ACTIONS(1114),
- [anon_sym_number] = ACTIONS(1114),
- [anon_sym_boolean] = ACTIONS(1114),
- [anon_sym_string] = ACTIONS(1114),
- [anon_sym_symbol] = ACTIONS(1114),
- [anon_sym_object] = ACTIONS(1114),
- [sym_html_comment] = ACTIONS(5),
- },
- [628] = {
- [sym_namespace_export] = STATE(5254),
- [sym_export_clause] = STATE(4500),
- [sym_declaration] = STATE(859),
- [sym_variable_declaration] = STATE(861),
- [sym_lexical_declaration] = STATE(861),
- [sym_class_declaration] = STATE(861),
- [sym_function_declaration] = STATE(861),
- [sym_generator_function_declaration] = STATE(861),
- [sym_decorator] = STATE(1244),
- [sym_function_signature] = STATE(861),
- [sym_ambient_declaration] = STATE(861),
- [sym_abstract_class_declaration] = STATE(861),
- [sym_module] = STATE(861),
- [sym_internal_module] = STATE(860),
- [sym_import_alias] = STATE(861),
- [sym_interface_declaration] = STATE(861),
- [sym_enum_declaration] = STATE(861),
- [sym_type_alias_declaration] = STATE(861),
- [aux_sym_export_statement_repeat1] = STATE(4270),
- [aux_sym_object_repeat1] = STATE(4671),
- [aux_sym_object_pattern_repeat1] = STATE(4672),
- [anon_sym_STAR] = ACTIONS(2217),
- [anon_sym_default] = ACTIONS(2219),
- [anon_sym_type] = ACTIONS(2221),
- [anon_sym_EQ] = ACTIONS(2223),
- [anon_sym_as] = ACTIONS(2225),
- [anon_sym_namespace] = ACTIONS(2227),
- [anon_sym_LBRACE] = ACTIONS(2229),
- [anon_sym_COMMA] = ACTIONS(162),
- [anon_sym_RBRACE] = ACTIONS(727),
- [anon_sym_import] = ACTIONS(2231),
- [anon_sym_var] = ACTIONS(2233),
- [anon_sym_let] = ACTIONS(2235),
- [anon_sym_const] = ACTIONS(2237),
- [anon_sym_BANG] = ACTIONS(122),
- [anon_sym_LPAREN] = ACTIONS(2239),
- [anon_sym_in] = ACTIONS(122),
- [anon_sym_SEMI] = ACTIONS(162),
- [anon_sym_COLON] = ACTIONS(704),
- [anon_sym_LBRACK] = ACTIONS(162),
- [anon_sym_GT] = ACTIONS(122),
- [anon_sym_DOT] = ACTIONS(162),
- [anon_sym_class] = ACTIONS(2242),
- [anon_sym_async] = ACTIONS(2244),
- [anon_sym_function] = ACTIONS(2246),
- [anon_sym_EQ_GT] = ACTIONS(715),
- [anon_sym_QMARK_DOT] = ACTIONS(162),
- [anon_sym_PLUS_EQ] = ACTIONS(168),
- [anon_sym_DASH_EQ] = ACTIONS(168),
- [anon_sym_STAR_EQ] = ACTIONS(168),
- [anon_sym_SLASH_EQ] = ACTIONS(168),
- [anon_sym_PERCENT_EQ] = ACTIONS(168),
- [anon_sym_CARET_EQ] = ACTIONS(168),
- [anon_sym_AMP_EQ] = ACTIONS(168),
- [anon_sym_PIPE_EQ] = ACTIONS(168),
- [anon_sym_GT_GT_EQ] = ACTIONS(168),
- [anon_sym_GT_GT_GT_EQ] = ACTIONS(168),
- [anon_sym_LT_LT_EQ] = ACTIONS(168),
- [anon_sym_STAR_STAR_EQ] = ACTIONS(168),
- [anon_sym_AMP_AMP_EQ] = ACTIONS(168),
- [anon_sym_PIPE_PIPE_EQ] = ACTIONS(168),
- [anon_sym_QMARK_QMARK_EQ] = ACTIONS(168),
- [anon_sym_AMP_AMP] = ACTIONS(122),
- [anon_sym_PIPE_PIPE] = ACTIONS(122),
- [anon_sym_GT_GT] = ACTIONS(122),
- [anon_sym_GT_GT_GT] = ACTIONS(122),
- [anon_sym_LT_LT] = ACTIONS(122),
- [anon_sym_AMP] = ACTIONS(122),
- [anon_sym_CARET] = ACTIONS(122),
- [anon_sym_PIPE] = ACTIONS(122),
- [anon_sym_PLUS] = ACTIONS(122),
- [anon_sym_DASH] = ACTIONS(122),
- [anon_sym_SLASH] = ACTIONS(122),
- [anon_sym_PERCENT] = ACTIONS(122),
- [anon_sym_STAR_STAR] = ACTIONS(122),
- [anon_sym_LT] = ACTIONS(2248),
- [anon_sym_LT_EQ] = ACTIONS(162),
- [anon_sym_EQ_EQ] = ACTIONS(122),
- [anon_sym_EQ_EQ_EQ] = ACTIONS(162),
- [anon_sym_BANG_EQ] = ACTIONS(122),
- [anon_sym_BANG_EQ_EQ] = ACTIONS(162),
- [anon_sym_GT_EQ] = ACTIONS(162),
- [anon_sym_QMARK_QMARK] = ACTIONS(122),
- [anon_sym_instanceof] = ACTIONS(162),
- [anon_sym_PLUS_PLUS] = ACTIONS(162),
- [anon_sym_DASH_DASH] = ACTIONS(162),
- [sym_comment] = ACTIONS(5),
- [anon_sym_BQUOTE] = ACTIONS(162),
- [anon_sym_AT] = ACTIONS(99),
- [anon_sym_QMARK] = ACTIONS(723),
- [anon_sym_declare] = ACTIONS(2251),
- [anon_sym_module] = ACTIONS(2253),
- [anon_sym_abstract] = ACTIONS(2255),
- [anon_sym_satisfies] = ACTIONS(162),
- [anon_sym_interface] = ACTIONS(2257),
- [anon_sym_enum] = ACTIONS(2259),
- [sym__automatic_semicolon] = ACTIONS(162),
- [sym__ternary_qmark] = ACTIONS(162),
- [sym_html_comment] = ACTIONS(5),
- },
- [629] = {
- [sym_namespace_export] = STATE(5254),
- [sym_export_clause] = STATE(4500),
- [sym_declaration] = STATE(859),
- [sym_variable_declaration] = STATE(861),
- [sym_lexical_declaration] = STATE(861),
- [sym_class_declaration] = STATE(861),
- [sym_function_declaration] = STATE(861),
- [sym_generator_function_declaration] = STATE(861),
- [sym_decorator] = STATE(1244),
- [sym_function_signature] = STATE(861),
- [sym_ambient_declaration] = STATE(861),
- [sym_abstract_class_declaration] = STATE(861),
- [sym_module] = STATE(861),
- [sym_internal_module] = STATE(860),
- [sym_import_alias] = STATE(861),
- [sym_interface_declaration] = STATE(861),
- [sym_enum_declaration] = STATE(861),
- [sym_type_alias_declaration] = STATE(861),
- [aux_sym_export_statement_repeat1] = STATE(4270),
- [aux_sym_object_repeat1] = STATE(5156),
- [aux_sym_object_pattern_repeat1] = STATE(4672),
- [anon_sym_STAR] = ACTIONS(2217),
- [anon_sym_default] = ACTIONS(2219),
- [anon_sym_type] = ACTIONS(2221),
- [anon_sym_EQ] = ACTIONS(2223),
- [anon_sym_as] = ACTIONS(2225),
- [anon_sym_namespace] = ACTIONS(2227),
- [anon_sym_LBRACE] = ACTIONS(2229),
- [anon_sym_COMMA] = ACTIONS(162),
- [anon_sym_RBRACE] = ACTIONS(702),
- [anon_sym_import] = ACTIONS(2231),
- [anon_sym_var] = ACTIONS(2233),
- [anon_sym_let] = ACTIONS(2235),
- [anon_sym_const] = ACTIONS(2237),
- [anon_sym_BANG] = ACTIONS(122),
- [anon_sym_LPAREN] = ACTIONS(2239),
- [anon_sym_in] = ACTIONS(122),
- [anon_sym_SEMI] = ACTIONS(162),
- [anon_sym_COLON] = ACTIONS(704),
- [anon_sym_LBRACK] = ACTIONS(162),
- [anon_sym_GT] = ACTIONS(122),
- [anon_sym_DOT] = ACTIONS(162),
- [anon_sym_class] = ACTIONS(2242),
- [anon_sym_async] = ACTIONS(2244),
- [anon_sym_function] = ACTIONS(2246),
- [anon_sym_EQ_GT] = ACTIONS(715),
- [anon_sym_QMARK_DOT] = ACTIONS(162),
- [anon_sym_PLUS_EQ] = ACTIONS(168),
- [anon_sym_DASH_EQ] = ACTIONS(168),
- [anon_sym_STAR_EQ] = ACTIONS(168),
- [anon_sym_SLASH_EQ] = ACTIONS(168),
- [anon_sym_PERCENT_EQ] = ACTIONS(168),
- [anon_sym_CARET_EQ] = ACTIONS(168),
- [anon_sym_AMP_EQ] = ACTIONS(168),
- [anon_sym_PIPE_EQ] = ACTIONS(168),
- [anon_sym_GT_GT_EQ] = ACTIONS(168),
- [anon_sym_GT_GT_GT_EQ] = ACTIONS(168),
- [anon_sym_LT_LT_EQ] = ACTIONS(168),
- [anon_sym_STAR_STAR_EQ] = ACTIONS(168),
- [anon_sym_AMP_AMP_EQ] = ACTIONS(168),
- [anon_sym_PIPE_PIPE_EQ] = ACTIONS(168),
- [anon_sym_QMARK_QMARK_EQ] = ACTIONS(168),
- [anon_sym_AMP_AMP] = ACTIONS(122),
- [anon_sym_PIPE_PIPE] = ACTIONS(122),
- [anon_sym_GT_GT] = ACTIONS(122),
- [anon_sym_GT_GT_GT] = ACTIONS(122),
- [anon_sym_LT_LT] = ACTIONS(122),
- [anon_sym_AMP] = ACTIONS(122),
- [anon_sym_CARET] = ACTIONS(122),
- [anon_sym_PIPE] = ACTIONS(122),
- [anon_sym_PLUS] = ACTIONS(122),
- [anon_sym_DASH] = ACTIONS(122),
- [anon_sym_SLASH] = ACTIONS(122),
- [anon_sym_PERCENT] = ACTIONS(122),
- [anon_sym_STAR_STAR] = ACTIONS(122),
- [anon_sym_LT] = ACTIONS(2248),
- [anon_sym_LT_EQ] = ACTIONS(162),
- [anon_sym_EQ_EQ] = ACTIONS(122),
- [anon_sym_EQ_EQ_EQ] = ACTIONS(162),
- [anon_sym_BANG_EQ] = ACTIONS(122),
- [anon_sym_BANG_EQ_EQ] = ACTIONS(162),
- [anon_sym_GT_EQ] = ACTIONS(162),
- [anon_sym_QMARK_QMARK] = ACTIONS(122),
- [anon_sym_instanceof] = ACTIONS(162),
- [anon_sym_PLUS_PLUS] = ACTIONS(162),
- [anon_sym_DASH_DASH] = ACTIONS(162),
- [sym_comment] = ACTIONS(5),
- [anon_sym_BQUOTE] = ACTIONS(162),
- [anon_sym_AT] = ACTIONS(99),
- [anon_sym_QMARK] = ACTIONS(723),
- [anon_sym_declare] = ACTIONS(2251),
- [anon_sym_module] = ACTIONS(2253),
- [anon_sym_abstract] = ACTIONS(2255),
- [anon_sym_satisfies] = ACTIONS(162),
- [anon_sym_interface] = ACTIONS(2257),
- [anon_sym_enum] = ACTIONS(2259),
- [sym__automatic_semicolon] = ACTIONS(162),
- [sym__ternary_qmark] = ACTIONS(162),
- [sym_html_comment] = ACTIONS(5),
- },
- [630] = {
- [sym_namespace_export] = STATE(5254),
- [sym_export_clause] = STATE(4500),
- [sym_declaration] = STATE(859),
- [sym_variable_declaration] = STATE(861),
- [sym_lexical_declaration] = STATE(861),
- [sym_class_declaration] = STATE(861),
- [sym_function_declaration] = STATE(861),
- [sym_generator_function_declaration] = STATE(861),
- [sym_decorator] = STATE(1244),
- [sym_function_signature] = STATE(861),
- [sym_ambient_declaration] = STATE(861),
- [sym_abstract_class_declaration] = STATE(861),
- [sym_module] = STATE(861),
- [sym_internal_module] = STATE(860),
- [sym_import_alias] = STATE(861),
- [sym_interface_declaration] = STATE(861),
- [sym_enum_declaration] = STATE(861),
- [sym_type_alias_declaration] = STATE(861),
- [aux_sym_export_statement_repeat1] = STATE(4270),
- [aux_sym_object_repeat1] = STATE(5156),
- [aux_sym_object_pattern_repeat1] = STATE(4672),
- [anon_sym_STAR] = ACTIONS(2217),
- [anon_sym_default] = ACTIONS(2219),
- [anon_sym_type] = ACTIONS(2221),
- [anon_sym_EQ] = ACTIONS(2223),
- [anon_sym_as] = ACTIONS(2225),
- [anon_sym_namespace] = ACTIONS(2227),
- [anon_sym_LBRACE] = ACTIONS(2229),
- [anon_sym_COMMA] = ACTIONS(162),
- [anon_sym_RBRACE] = ACTIONS(725),
- [anon_sym_import] = ACTIONS(2231),
- [anon_sym_var] = ACTIONS(2233),
- [anon_sym_let] = ACTIONS(2235),
- [anon_sym_const] = ACTIONS(2237),
- [anon_sym_BANG] = ACTIONS(122),
- [anon_sym_LPAREN] = ACTIONS(2239),
- [anon_sym_in] = ACTIONS(122),
- [anon_sym_SEMI] = ACTIONS(162),
- [anon_sym_COLON] = ACTIONS(704),
- [anon_sym_LBRACK] = ACTIONS(162),
- [anon_sym_GT] = ACTIONS(122),
- [anon_sym_DOT] = ACTIONS(162),
- [anon_sym_class] = ACTIONS(2242),
- [anon_sym_async] = ACTIONS(2244),
- [anon_sym_function] = ACTIONS(2246),
- [anon_sym_EQ_GT] = ACTIONS(715),
- [anon_sym_QMARK_DOT] = ACTIONS(162),
- [anon_sym_PLUS_EQ] = ACTIONS(168),
- [anon_sym_DASH_EQ] = ACTIONS(168),
- [anon_sym_STAR_EQ] = ACTIONS(168),
- [anon_sym_SLASH_EQ] = ACTIONS(168),
- [anon_sym_PERCENT_EQ] = ACTIONS(168),
- [anon_sym_CARET_EQ] = ACTIONS(168),
- [anon_sym_AMP_EQ] = ACTIONS(168),
- [anon_sym_PIPE_EQ] = ACTIONS(168),
- [anon_sym_GT_GT_EQ] = ACTIONS(168),
- [anon_sym_GT_GT_GT_EQ] = ACTIONS(168),
- [anon_sym_LT_LT_EQ] = ACTIONS(168),
- [anon_sym_STAR_STAR_EQ] = ACTIONS(168),
- [anon_sym_AMP_AMP_EQ] = ACTIONS(168),
- [anon_sym_PIPE_PIPE_EQ] = ACTIONS(168),
- [anon_sym_QMARK_QMARK_EQ] = ACTIONS(168),
- [anon_sym_AMP_AMP] = ACTIONS(122),
- [anon_sym_PIPE_PIPE] = ACTIONS(122),
- [anon_sym_GT_GT] = ACTIONS(122),
- [anon_sym_GT_GT_GT] = ACTIONS(122),
- [anon_sym_LT_LT] = ACTIONS(122),
- [anon_sym_AMP] = ACTIONS(122),
- [anon_sym_CARET] = ACTIONS(122),
- [anon_sym_PIPE] = ACTIONS(122),
- [anon_sym_PLUS] = ACTIONS(122),
- [anon_sym_DASH] = ACTIONS(122),
- [anon_sym_SLASH] = ACTIONS(122),
- [anon_sym_PERCENT] = ACTIONS(122),
- [anon_sym_STAR_STAR] = ACTIONS(122),
- [anon_sym_LT] = ACTIONS(2248),
- [anon_sym_LT_EQ] = ACTIONS(162),
- [anon_sym_EQ_EQ] = ACTIONS(122),
- [anon_sym_EQ_EQ_EQ] = ACTIONS(162),
- [anon_sym_BANG_EQ] = ACTIONS(122),
- [anon_sym_BANG_EQ_EQ] = ACTIONS(162),
- [anon_sym_GT_EQ] = ACTIONS(162),
- [anon_sym_QMARK_QMARK] = ACTIONS(122),
- [anon_sym_instanceof] = ACTIONS(162),
- [anon_sym_PLUS_PLUS] = ACTIONS(162),
- [anon_sym_DASH_DASH] = ACTIONS(162),
- [sym_comment] = ACTIONS(5),
- [anon_sym_BQUOTE] = ACTIONS(162),
- [anon_sym_AT] = ACTIONS(99),
- [anon_sym_QMARK] = ACTIONS(723),
- [anon_sym_declare] = ACTIONS(2251),
- [anon_sym_module] = ACTIONS(2253),
- [anon_sym_abstract] = ACTIONS(2255),
- [anon_sym_satisfies] = ACTIONS(162),
- [anon_sym_interface] = ACTIONS(2257),
- [anon_sym_enum] = ACTIONS(2259),
- [sym__automatic_semicolon] = ACTIONS(162),
- [sym__ternary_qmark] = ACTIONS(162),
- [sym_html_comment] = ACTIONS(5),
- },
- [631] = {
- [sym__call_signature] = STATE(5703),
- [sym_string] = STATE(3788),
- [sym_formal_parameters] = STATE(3742),
- [sym__property_name] = STATE(3788),
- [sym_computed_property_name] = STATE(3788),
- [sym_type_parameters] = STATE(5349),
- [aux_sym_object_repeat1] = STATE(5156),
- [aux_sym_object_pattern_repeat1] = STATE(4672),
- [sym_identifier] = ACTIONS(2261),
- [anon_sym_export] = ACTIONS(2263),
- [anon_sym_STAR] = ACTIONS(2265),
- [anon_sym_type] = ACTIONS(2263),
- [anon_sym_EQ] = ACTIONS(696),
- [anon_sym_as] = ACTIONS(122),
- [anon_sym_namespace] = ACTIONS(2263),
- [anon_sym_COMMA] = ACTIONS(162),
- [anon_sym_RBRACE] = ACTIONS(725),
- [anon_sym_let] = ACTIONS(2263),
- [anon_sym_BANG] = ACTIONS(122),
- [anon_sym_LPAREN] = ACTIONS(2268),
- [anon_sym_in] = ACTIONS(122),
- [anon_sym_SEMI] = ACTIONS(162),
- [anon_sym_COLON] = ACTIONS(704),
- [anon_sym_LBRACK] = ACTIONS(2272),
- [anon_sym_GT] = ACTIONS(122),
- [anon_sym_DOT] = ACTIONS(122),
- [anon_sym_DQUOTE] = ACTIONS(2275),
- [anon_sym_SQUOTE] = ACTIONS(2277),
- [anon_sym_async] = ACTIONS(2263),
- [anon_sym_function] = ACTIONS(2279),
- [anon_sym_EQ_GT] = ACTIONS(715),
- [anon_sym_QMARK_DOT] = ACTIONS(162),
- [anon_sym_new] = ACTIONS(2263),
- [anon_sym_PLUS_EQ] = ACTIONS(168),
- [anon_sym_DASH_EQ] = ACTIONS(168),
- [anon_sym_STAR_EQ] = ACTIONS(168),
- [anon_sym_SLASH_EQ] = ACTIONS(168),
- [anon_sym_PERCENT_EQ] = ACTIONS(168),
- [anon_sym_CARET_EQ] = ACTIONS(168),
- [anon_sym_AMP_EQ] = ACTIONS(168),
- [anon_sym_PIPE_EQ] = ACTIONS(168),
- [anon_sym_GT_GT_EQ] = ACTIONS(168),
- [anon_sym_GT_GT_GT_EQ] = ACTIONS(168),
- [anon_sym_LT_LT_EQ] = ACTIONS(168),
- [anon_sym_STAR_STAR_EQ] = ACTIONS(168),
- [anon_sym_AMP_AMP_EQ] = ACTIONS(168),
- [anon_sym_PIPE_PIPE_EQ] = ACTIONS(168),
- [anon_sym_QMARK_QMARK_EQ] = ACTIONS(168),
- [anon_sym_AMP_AMP] = ACTIONS(122),
- [anon_sym_PIPE_PIPE] = ACTIONS(122),
- [anon_sym_GT_GT] = ACTIONS(122),
- [anon_sym_GT_GT_GT] = ACTIONS(122),
- [anon_sym_LT_LT] = ACTIONS(122),
- [anon_sym_AMP] = ACTIONS(122),
- [anon_sym_CARET] = ACTIONS(122),
- [anon_sym_PIPE] = ACTIONS(122),
- [anon_sym_PLUS] = ACTIONS(122),
- [anon_sym_DASH] = ACTIONS(122),
- [anon_sym_SLASH] = ACTIONS(122),
- [anon_sym_PERCENT] = ACTIONS(122),
- [anon_sym_STAR_STAR] = ACTIONS(122),
- [anon_sym_LT] = ACTIONS(2281),
- [anon_sym_LT_EQ] = ACTIONS(162),
- [anon_sym_EQ_EQ] = ACTIONS(122),
- [anon_sym_EQ_EQ_EQ] = ACTIONS(162),
- [anon_sym_BANG_EQ] = ACTIONS(122),
- [anon_sym_BANG_EQ_EQ] = ACTIONS(162),
- [anon_sym_GT_EQ] = ACTIONS(162),
- [anon_sym_QMARK_QMARK] = ACTIONS(122),
- [anon_sym_instanceof] = ACTIONS(122),
- [anon_sym_PLUS_PLUS] = ACTIONS(162),
- [anon_sym_DASH_DASH] = ACTIONS(162),
- [sym_comment] = ACTIONS(5),
- [anon_sym_BQUOTE] = ACTIONS(162),
- [sym_number] = ACTIONS(2285),
- [sym_private_property_identifier] = ACTIONS(2285),
- [anon_sym_static] = ACTIONS(2263),
- [anon_sym_readonly] = ACTIONS(2263),
- [anon_sym_get] = ACTIONS(2287),
- [anon_sym_set] = ACTIONS(2287),
- [anon_sym_QMARK] = ACTIONS(723),
- [anon_sym_declare] = ACTIONS(2263),
- [anon_sym_public] = ACTIONS(2263),
- [anon_sym_private] = ACTIONS(2263),
- [anon_sym_protected] = ACTIONS(2263),
- [anon_sym_override] = ACTIONS(2263),
- [anon_sym_module] = ACTIONS(2263),
- [anon_sym_any] = ACTIONS(2263),
- [anon_sym_number] = ACTIONS(2263),
- [anon_sym_boolean] = ACTIONS(2263),
- [anon_sym_string] = ACTIONS(2263),
- [anon_sym_symbol] = ACTIONS(2263),
- [anon_sym_object] = ACTIONS(2263),
- [anon_sym_satisfies] = ACTIONS(122),
- [sym__automatic_semicolon] = ACTIONS(162),
- [sym__ternary_qmark] = ACTIONS(162),
- [sym_html_comment] = ACTIONS(5),
- },
- [632] = {
- [sym__call_signature] = STATE(5703),
- [sym_string] = STATE(3788),
- [sym_formal_parameters] = STATE(3742),
- [sym__property_name] = STATE(3788),
- [sym_computed_property_name] = STATE(3788),
- [sym_type_parameters] = STATE(5349),
- [aux_sym_object_repeat1] = STATE(4671),
- [aux_sym_object_pattern_repeat1] = STATE(4672),
- [sym_identifier] = ACTIONS(2261),
- [anon_sym_export] = ACTIONS(2263),
- [anon_sym_STAR] = ACTIONS(2265),
- [anon_sym_type] = ACTIONS(2263),
- [anon_sym_EQ] = ACTIONS(696),
- [anon_sym_as] = ACTIONS(122),
- [anon_sym_namespace] = ACTIONS(2263),
- [anon_sym_COMMA] = ACTIONS(162),
- [anon_sym_RBRACE] = ACTIONS(727),
- [anon_sym_let] = ACTIONS(2263),
- [anon_sym_BANG] = ACTIONS(122),
- [anon_sym_LPAREN] = ACTIONS(2268),
- [anon_sym_in] = ACTIONS(122),
- [anon_sym_SEMI] = ACTIONS(162),
- [anon_sym_COLON] = ACTIONS(704),
- [anon_sym_LBRACK] = ACTIONS(2272),
- [anon_sym_GT] = ACTIONS(122),
- [anon_sym_DOT] = ACTIONS(122),
- [anon_sym_DQUOTE] = ACTIONS(2275),
- [anon_sym_SQUOTE] = ACTIONS(2277),
- [anon_sym_async] = ACTIONS(2263),
- [anon_sym_function] = ACTIONS(2279),
- [anon_sym_EQ_GT] = ACTIONS(715),
- [anon_sym_QMARK_DOT] = ACTIONS(162),
- [anon_sym_new] = ACTIONS(2263),
- [anon_sym_PLUS_EQ] = ACTIONS(168),
- [anon_sym_DASH_EQ] = ACTIONS(168),
- [anon_sym_STAR_EQ] = ACTIONS(168),
- [anon_sym_SLASH_EQ] = ACTIONS(168),
- [anon_sym_PERCENT_EQ] = ACTIONS(168),
- [anon_sym_CARET_EQ] = ACTIONS(168),
- [anon_sym_AMP_EQ] = ACTIONS(168),
- [anon_sym_PIPE_EQ] = ACTIONS(168),
- [anon_sym_GT_GT_EQ] = ACTIONS(168),
- [anon_sym_GT_GT_GT_EQ] = ACTIONS(168),
- [anon_sym_LT_LT_EQ] = ACTIONS(168),
- [anon_sym_STAR_STAR_EQ] = ACTIONS(168),
- [anon_sym_AMP_AMP_EQ] = ACTIONS(168),
- [anon_sym_PIPE_PIPE_EQ] = ACTIONS(168),
- [anon_sym_QMARK_QMARK_EQ] = ACTIONS(168),
- [anon_sym_AMP_AMP] = ACTIONS(122),
- [anon_sym_PIPE_PIPE] = ACTIONS(122),
- [anon_sym_GT_GT] = ACTIONS(122),
- [anon_sym_GT_GT_GT] = ACTIONS(122),
- [anon_sym_LT_LT] = ACTIONS(122),
- [anon_sym_AMP] = ACTIONS(122),
- [anon_sym_CARET] = ACTIONS(122),
- [anon_sym_PIPE] = ACTIONS(122),
- [anon_sym_PLUS] = ACTIONS(122),
- [anon_sym_DASH] = ACTIONS(122),
- [anon_sym_SLASH] = ACTIONS(122),
- [anon_sym_PERCENT] = ACTIONS(122),
- [anon_sym_STAR_STAR] = ACTIONS(122),
- [anon_sym_LT] = ACTIONS(2281),
- [anon_sym_LT_EQ] = ACTIONS(162),
- [anon_sym_EQ_EQ] = ACTIONS(122),
- [anon_sym_EQ_EQ_EQ] = ACTIONS(162),
- [anon_sym_BANG_EQ] = ACTIONS(122),
- [anon_sym_BANG_EQ_EQ] = ACTIONS(162),
- [anon_sym_GT_EQ] = ACTIONS(162),
- [anon_sym_QMARK_QMARK] = ACTIONS(122),
- [anon_sym_instanceof] = ACTIONS(122),
- [anon_sym_PLUS_PLUS] = ACTIONS(162),
- [anon_sym_DASH_DASH] = ACTIONS(162),
- [sym_comment] = ACTIONS(5),
- [anon_sym_BQUOTE] = ACTIONS(162),
- [sym_number] = ACTIONS(2285),
- [sym_private_property_identifier] = ACTIONS(2285),
- [anon_sym_static] = ACTIONS(2263),
- [anon_sym_readonly] = ACTIONS(2263),
- [anon_sym_get] = ACTIONS(2287),
- [anon_sym_set] = ACTIONS(2287),
- [anon_sym_QMARK] = ACTIONS(723),
- [anon_sym_declare] = ACTIONS(2263),
- [anon_sym_public] = ACTIONS(2263),
- [anon_sym_private] = ACTIONS(2263),
- [anon_sym_protected] = ACTIONS(2263),
- [anon_sym_override] = ACTIONS(2263),
- [anon_sym_module] = ACTIONS(2263),
- [anon_sym_any] = ACTIONS(2263),
- [anon_sym_number] = ACTIONS(2263),
- [anon_sym_boolean] = ACTIONS(2263),
- [anon_sym_string] = ACTIONS(2263),
- [anon_sym_symbol] = ACTIONS(2263),
- [anon_sym_object] = ACTIONS(2263),
- [anon_sym_satisfies] = ACTIONS(122),
- [sym__automatic_semicolon] = ACTIONS(162),
- [sym__ternary_qmark] = ACTIONS(162),
- [sym_html_comment] = ACTIONS(5),
- },
- [633] = {
- [sym__call_signature] = STATE(5703),
- [sym_string] = STATE(3788),
- [sym_formal_parameters] = STATE(3742),
- [sym__property_name] = STATE(3788),
- [sym_computed_property_name] = STATE(3788),
- [sym_type_parameters] = STATE(5349),
- [aux_sym_object_repeat1] = STATE(5156),
- [aux_sym_object_pattern_repeat1] = STATE(4672),
- [sym_identifier] = ACTIONS(2261),
- [anon_sym_export] = ACTIONS(2263),
- [anon_sym_STAR] = ACTIONS(2265),
- [anon_sym_type] = ACTIONS(2263),
- [anon_sym_EQ] = ACTIONS(696),
- [anon_sym_as] = ACTIONS(122),
- [anon_sym_namespace] = ACTIONS(2263),
- [anon_sym_COMMA] = ACTIONS(162),
- [anon_sym_RBRACE] = ACTIONS(702),
- [anon_sym_let] = ACTIONS(2263),
- [anon_sym_BANG] = ACTIONS(122),
- [anon_sym_LPAREN] = ACTIONS(2268),
- [anon_sym_in] = ACTIONS(122),
- [anon_sym_SEMI] = ACTIONS(162),
- [anon_sym_COLON] = ACTIONS(704),
- [anon_sym_LBRACK] = ACTIONS(2272),
- [anon_sym_GT] = ACTIONS(122),
- [anon_sym_DOT] = ACTIONS(122),
- [anon_sym_DQUOTE] = ACTIONS(2275),
- [anon_sym_SQUOTE] = ACTIONS(2277),
- [anon_sym_async] = ACTIONS(2263),
- [anon_sym_function] = ACTIONS(2279),
- [anon_sym_EQ_GT] = ACTIONS(715),
- [anon_sym_QMARK_DOT] = ACTIONS(162),
- [anon_sym_new] = ACTIONS(2263),
- [anon_sym_PLUS_EQ] = ACTIONS(168),
- [anon_sym_DASH_EQ] = ACTIONS(168),
- [anon_sym_STAR_EQ] = ACTIONS(168),
- [anon_sym_SLASH_EQ] = ACTIONS(168),
- [anon_sym_PERCENT_EQ] = ACTIONS(168),
- [anon_sym_CARET_EQ] = ACTIONS(168),
- [anon_sym_AMP_EQ] = ACTIONS(168),
- [anon_sym_PIPE_EQ] = ACTIONS(168),
- [anon_sym_GT_GT_EQ] = ACTIONS(168),
- [anon_sym_GT_GT_GT_EQ] = ACTIONS(168),
- [anon_sym_LT_LT_EQ] = ACTIONS(168),
- [anon_sym_STAR_STAR_EQ] = ACTIONS(168),
- [anon_sym_AMP_AMP_EQ] = ACTIONS(168),
- [anon_sym_PIPE_PIPE_EQ] = ACTIONS(168),
- [anon_sym_QMARK_QMARK_EQ] = ACTIONS(168),
- [anon_sym_AMP_AMP] = ACTIONS(122),
- [anon_sym_PIPE_PIPE] = ACTIONS(122),
- [anon_sym_GT_GT] = ACTIONS(122),
- [anon_sym_GT_GT_GT] = ACTIONS(122),
- [anon_sym_LT_LT] = ACTIONS(122),
- [anon_sym_AMP] = ACTIONS(122),
- [anon_sym_CARET] = ACTIONS(122),
- [anon_sym_PIPE] = ACTIONS(122),
- [anon_sym_PLUS] = ACTIONS(122),
- [anon_sym_DASH] = ACTIONS(122),
- [anon_sym_SLASH] = ACTIONS(122),
- [anon_sym_PERCENT] = ACTIONS(122),
- [anon_sym_STAR_STAR] = ACTIONS(122),
- [anon_sym_LT] = ACTIONS(2281),
- [anon_sym_LT_EQ] = ACTIONS(162),
- [anon_sym_EQ_EQ] = ACTIONS(122),
- [anon_sym_EQ_EQ_EQ] = ACTIONS(162),
- [anon_sym_BANG_EQ] = ACTIONS(122),
- [anon_sym_BANG_EQ_EQ] = ACTIONS(162),
- [anon_sym_GT_EQ] = ACTIONS(162),
- [anon_sym_QMARK_QMARK] = ACTIONS(122),
- [anon_sym_instanceof] = ACTIONS(122),
- [anon_sym_PLUS_PLUS] = ACTIONS(162),
- [anon_sym_DASH_DASH] = ACTIONS(162),
- [sym_comment] = ACTIONS(5),
- [anon_sym_BQUOTE] = ACTIONS(162),
- [sym_number] = ACTIONS(2285),
- [sym_private_property_identifier] = ACTIONS(2285),
- [anon_sym_static] = ACTIONS(2263),
- [anon_sym_readonly] = ACTIONS(2263),
- [anon_sym_get] = ACTIONS(2287),
- [anon_sym_set] = ACTIONS(2287),
- [anon_sym_QMARK] = ACTIONS(723),
- [anon_sym_declare] = ACTIONS(2263),
- [anon_sym_public] = ACTIONS(2263),
- [anon_sym_private] = ACTIONS(2263),
- [anon_sym_protected] = ACTIONS(2263),
- [anon_sym_override] = ACTIONS(2263),
- [anon_sym_module] = ACTIONS(2263),
- [anon_sym_any] = ACTIONS(2263),
- [anon_sym_number] = ACTIONS(2263),
- [anon_sym_boolean] = ACTIONS(2263),
- [anon_sym_string] = ACTIONS(2263),
- [anon_sym_symbol] = ACTIONS(2263),
- [anon_sym_object] = ACTIONS(2263),
- [anon_sym_satisfies] = ACTIONS(122),
- [sym__automatic_semicolon] = ACTIONS(162),
- [sym__ternary_qmark] = ACTIONS(162),
- [sym_html_comment] = ACTIONS(5),
- },
- [634] = {
- [sym_declaration] = STATE(819),
- [sym_variable_declaration] = STATE(861),
- [sym_lexical_declaration] = STATE(861),
- [sym_class_declaration] = STATE(861),
- [sym_function_declaration] = STATE(861),
- [sym_generator_function_declaration] = STATE(861),
- [sym_decorator] = STATE(1244),
- [sym_function_signature] = STATE(861),
- [sym_ambient_declaration] = STATE(861),
- [sym_abstract_class_declaration] = STATE(861),
- [sym_module] = STATE(861),
- [sym_internal_module] = STATE(860),
- [sym_import_alias] = STATE(861),
- [sym_interface_declaration] = STATE(861),
- [sym_enum_declaration] = STATE(861),
- [sym_type_alias_declaration] = STATE(861),
- [aux_sym_export_statement_repeat1] = STATE(4270),
- [aux_sym_object_repeat1] = STATE(5156),
- [aux_sym_object_pattern_repeat1] = STATE(4672),
- [anon_sym_STAR] = ACTIONS(122),
- [anon_sym_type] = ACTIONS(2289),
- [anon_sym_EQ] = ACTIONS(696),
- [anon_sym_as] = ACTIONS(122),
- [anon_sym_namespace] = ACTIONS(2227),
- [anon_sym_COMMA] = ACTIONS(162),
- [anon_sym_RBRACE] = ACTIONS(702),
- [anon_sym_import] = ACTIONS(2231),
- [anon_sym_var] = ACTIONS(2233),
- [anon_sym_let] = ACTIONS(2235),
- [anon_sym_const] = ACTIONS(2237),
- [anon_sym_BANG] = ACTIONS(122),
- [anon_sym_LPAREN] = ACTIONS(2239),
- [anon_sym_in] = ACTIONS(122),
- [anon_sym_SEMI] = ACTIONS(162),
- [anon_sym_COLON] = ACTIONS(704),
- [anon_sym_LBRACK] = ACTIONS(162),
- [anon_sym_GT] = ACTIONS(122),
- [anon_sym_DOT] = ACTIONS(162),
- [anon_sym_class] = ACTIONS(2242),
- [anon_sym_async] = ACTIONS(2244),
- [anon_sym_function] = ACTIONS(2246),
- [anon_sym_EQ_GT] = ACTIONS(715),
- [anon_sym_QMARK_DOT] = ACTIONS(162),
- [anon_sym_PLUS_EQ] = ACTIONS(168),
- [anon_sym_DASH_EQ] = ACTIONS(168),
- [anon_sym_STAR_EQ] = ACTIONS(168),
- [anon_sym_SLASH_EQ] = ACTIONS(168),
- [anon_sym_PERCENT_EQ] = ACTIONS(168),
- [anon_sym_CARET_EQ] = ACTIONS(168),
- [anon_sym_AMP_EQ] = ACTIONS(168),
- [anon_sym_PIPE_EQ] = ACTIONS(168),
- [anon_sym_GT_GT_EQ] = ACTIONS(168),
- [anon_sym_GT_GT_GT_EQ] = ACTIONS(168),
- [anon_sym_LT_LT_EQ] = ACTIONS(168),
- [anon_sym_STAR_STAR_EQ] = ACTIONS(168),
- [anon_sym_AMP_AMP_EQ] = ACTIONS(168),
- [anon_sym_PIPE_PIPE_EQ] = ACTIONS(168),
- [anon_sym_QMARK_QMARK_EQ] = ACTIONS(168),
- [anon_sym_AMP_AMP] = ACTIONS(122),
- [anon_sym_PIPE_PIPE] = ACTIONS(122),
- [anon_sym_GT_GT] = ACTIONS(122),
- [anon_sym_GT_GT_GT] = ACTIONS(122),
- [anon_sym_LT_LT] = ACTIONS(122),
- [anon_sym_AMP] = ACTIONS(122),
- [anon_sym_CARET] = ACTIONS(122),
- [anon_sym_PIPE] = ACTIONS(122),
- [anon_sym_PLUS] = ACTIONS(122),
- [anon_sym_DASH] = ACTIONS(122),
- [anon_sym_SLASH] = ACTIONS(122),
- [anon_sym_PERCENT] = ACTIONS(122),
- [anon_sym_STAR_STAR] = ACTIONS(122),
- [anon_sym_LT] = ACTIONS(2248),
- [anon_sym_LT_EQ] = ACTIONS(162),
- [anon_sym_EQ_EQ] = ACTIONS(122),
- [anon_sym_EQ_EQ_EQ] = ACTIONS(162),
- [anon_sym_BANG_EQ] = ACTIONS(122),
- [anon_sym_BANG_EQ_EQ] = ACTIONS(162),
- [anon_sym_GT_EQ] = ACTIONS(162),
- [anon_sym_QMARK_QMARK] = ACTIONS(122),
- [anon_sym_instanceof] = ACTIONS(162),
- [anon_sym_PLUS_PLUS] = ACTIONS(162),
- [anon_sym_DASH_DASH] = ACTIONS(162),
- [sym_comment] = ACTIONS(5),
- [anon_sym_BQUOTE] = ACTIONS(162),
- [anon_sym_AT] = ACTIONS(99),
- [anon_sym_QMARK] = ACTIONS(723),
- [anon_sym_declare] = ACTIONS(2251),
- [anon_sym_module] = ACTIONS(2291),
- [anon_sym_abstract] = ACTIONS(2255),
- [anon_sym_satisfies] = ACTIONS(162),
- [anon_sym_global] = ACTIONS(2293),
- [anon_sym_interface] = ACTIONS(2257),
- [anon_sym_enum] = ACTIONS(2259),
- [sym__automatic_semicolon] = ACTIONS(162),
- [sym__ternary_qmark] = ACTIONS(162),
- [sym_html_comment] = ACTIONS(5),
- },
- [635] = {
- [sym_declaration] = STATE(819),
- [sym_variable_declaration] = STATE(861),
- [sym_lexical_declaration] = STATE(861),
- [sym_class_declaration] = STATE(861),
- [sym_function_declaration] = STATE(861),
- [sym_generator_function_declaration] = STATE(861),
- [sym_decorator] = STATE(1244),
- [sym_function_signature] = STATE(861),
- [sym_ambient_declaration] = STATE(861),
- [sym_abstract_class_declaration] = STATE(861),
- [sym_module] = STATE(861),
- [sym_internal_module] = STATE(860),
- [sym_import_alias] = STATE(861),
- [sym_interface_declaration] = STATE(861),
- [sym_enum_declaration] = STATE(861),
- [sym_type_alias_declaration] = STATE(861),
- [aux_sym_export_statement_repeat1] = STATE(4270),
- [aux_sym_object_repeat1] = STATE(5156),
- [aux_sym_object_pattern_repeat1] = STATE(4672),
- [anon_sym_STAR] = ACTIONS(122),
- [anon_sym_type] = ACTIONS(2289),
- [anon_sym_EQ] = ACTIONS(696),
- [anon_sym_as] = ACTIONS(122),
- [anon_sym_namespace] = ACTIONS(2227),
- [anon_sym_COMMA] = ACTIONS(162),
- [anon_sym_RBRACE] = ACTIONS(725),
- [anon_sym_import] = ACTIONS(2231),
- [anon_sym_var] = ACTIONS(2233),
- [anon_sym_let] = ACTIONS(2235),
- [anon_sym_const] = ACTIONS(2237),
- [anon_sym_BANG] = ACTIONS(122),
- [anon_sym_LPAREN] = ACTIONS(2239),
- [anon_sym_in] = ACTIONS(122),
- [anon_sym_SEMI] = ACTIONS(162),
- [anon_sym_COLON] = ACTIONS(704),
- [anon_sym_LBRACK] = ACTIONS(162),
- [anon_sym_GT] = ACTIONS(122),
- [anon_sym_DOT] = ACTIONS(162),
- [anon_sym_class] = ACTIONS(2242),
- [anon_sym_async] = ACTIONS(2244),
- [anon_sym_function] = ACTIONS(2246),
- [anon_sym_EQ_GT] = ACTIONS(715),
- [anon_sym_QMARK_DOT] = ACTIONS(162),
- [anon_sym_PLUS_EQ] = ACTIONS(168),
- [anon_sym_DASH_EQ] = ACTIONS(168),
- [anon_sym_STAR_EQ] = ACTIONS(168),
- [anon_sym_SLASH_EQ] = ACTIONS(168),
- [anon_sym_PERCENT_EQ] = ACTIONS(168),
- [anon_sym_CARET_EQ] = ACTIONS(168),
- [anon_sym_AMP_EQ] = ACTIONS(168),
- [anon_sym_PIPE_EQ] = ACTIONS(168),
- [anon_sym_GT_GT_EQ] = ACTIONS(168),
- [anon_sym_GT_GT_GT_EQ] = ACTIONS(168),
- [anon_sym_LT_LT_EQ] = ACTIONS(168),
- [anon_sym_STAR_STAR_EQ] = ACTIONS(168),
- [anon_sym_AMP_AMP_EQ] = ACTIONS(168),
- [anon_sym_PIPE_PIPE_EQ] = ACTIONS(168),
- [anon_sym_QMARK_QMARK_EQ] = ACTIONS(168),
- [anon_sym_AMP_AMP] = ACTIONS(122),
- [anon_sym_PIPE_PIPE] = ACTIONS(122),
- [anon_sym_GT_GT] = ACTIONS(122),
- [anon_sym_GT_GT_GT] = ACTIONS(122),
- [anon_sym_LT_LT] = ACTIONS(122),
- [anon_sym_AMP] = ACTIONS(122),
- [anon_sym_CARET] = ACTIONS(122),
- [anon_sym_PIPE] = ACTIONS(122),
- [anon_sym_PLUS] = ACTIONS(122),
- [anon_sym_DASH] = ACTIONS(122),
- [anon_sym_SLASH] = ACTIONS(122),
- [anon_sym_PERCENT] = ACTIONS(122),
- [anon_sym_STAR_STAR] = ACTIONS(122),
- [anon_sym_LT] = ACTIONS(2248),
- [anon_sym_LT_EQ] = ACTIONS(162),
- [anon_sym_EQ_EQ] = ACTIONS(122),
- [anon_sym_EQ_EQ_EQ] = ACTIONS(162),
- [anon_sym_BANG_EQ] = ACTIONS(122),
- [anon_sym_BANG_EQ_EQ] = ACTIONS(162),
- [anon_sym_GT_EQ] = ACTIONS(162),
- [anon_sym_QMARK_QMARK] = ACTIONS(122),
- [anon_sym_instanceof] = ACTIONS(162),
- [anon_sym_PLUS_PLUS] = ACTIONS(162),
- [anon_sym_DASH_DASH] = ACTIONS(162),
- [sym_comment] = ACTIONS(5),
- [anon_sym_BQUOTE] = ACTIONS(162),
- [anon_sym_AT] = ACTIONS(99),
- [anon_sym_QMARK] = ACTIONS(723),
- [anon_sym_declare] = ACTIONS(2251),
- [anon_sym_module] = ACTIONS(2291),
- [anon_sym_abstract] = ACTIONS(2255),
- [anon_sym_satisfies] = ACTIONS(162),
- [anon_sym_global] = ACTIONS(2293),
- [anon_sym_interface] = ACTIONS(2257),
- [anon_sym_enum] = ACTIONS(2259),
- [sym__automatic_semicolon] = ACTIONS(162),
- [sym__ternary_qmark] = ACTIONS(162),
- [sym_html_comment] = ACTIONS(5),
- },
- [636] = {
- [sym_declaration] = STATE(819),
- [sym_variable_declaration] = STATE(861),
- [sym_lexical_declaration] = STATE(861),
- [sym_class_declaration] = STATE(861),
- [sym_function_declaration] = STATE(861),
- [sym_generator_function_declaration] = STATE(861),
- [sym_decorator] = STATE(1244),
- [sym_function_signature] = STATE(861),
- [sym_ambient_declaration] = STATE(861),
- [sym_abstract_class_declaration] = STATE(861),
- [sym_module] = STATE(861),
- [sym_internal_module] = STATE(860),
- [sym_import_alias] = STATE(861),
- [sym_interface_declaration] = STATE(861),
- [sym_enum_declaration] = STATE(861),
- [sym_type_alias_declaration] = STATE(861),
- [aux_sym_export_statement_repeat1] = STATE(4270),
- [aux_sym_object_repeat1] = STATE(4671),
- [aux_sym_object_pattern_repeat1] = STATE(4672),
- [anon_sym_STAR] = ACTIONS(122),
- [anon_sym_type] = ACTIONS(2289),
- [anon_sym_EQ] = ACTIONS(696),
- [anon_sym_as] = ACTIONS(122),
- [anon_sym_namespace] = ACTIONS(2227),
- [anon_sym_COMMA] = ACTIONS(162),
- [anon_sym_RBRACE] = ACTIONS(727),
- [anon_sym_import] = ACTIONS(2231),
- [anon_sym_var] = ACTIONS(2233),
- [anon_sym_let] = ACTIONS(2235),
- [anon_sym_const] = ACTIONS(2237),
- [anon_sym_BANG] = ACTIONS(122),
- [anon_sym_LPAREN] = ACTIONS(2239),
- [anon_sym_in] = ACTIONS(122),
- [anon_sym_SEMI] = ACTIONS(162),
- [anon_sym_COLON] = ACTIONS(704),
- [anon_sym_LBRACK] = ACTIONS(162),
- [anon_sym_GT] = ACTIONS(122),
- [anon_sym_DOT] = ACTIONS(162),
- [anon_sym_class] = ACTIONS(2242),
- [anon_sym_async] = ACTIONS(2244),
- [anon_sym_function] = ACTIONS(2246),
- [anon_sym_EQ_GT] = ACTIONS(715),
- [anon_sym_QMARK_DOT] = ACTIONS(162),
- [anon_sym_PLUS_EQ] = ACTIONS(168),
- [anon_sym_DASH_EQ] = ACTIONS(168),
- [anon_sym_STAR_EQ] = ACTIONS(168),
- [anon_sym_SLASH_EQ] = ACTIONS(168),
- [anon_sym_PERCENT_EQ] = ACTIONS(168),
- [anon_sym_CARET_EQ] = ACTIONS(168),
- [anon_sym_AMP_EQ] = ACTIONS(168),
- [anon_sym_PIPE_EQ] = ACTIONS(168),
- [anon_sym_GT_GT_EQ] = ACTIONS(168),
- [anon_sym_GT_GT_GT_EQ] = ACTIONS(168),
- [anon_sym_LT_LT_EQ] = ACTIONS(168),
- [anon_sym_STAR_STAR_EQ] = ACTIONS(168),
- [anon_sym_AMP_AMP_EQ] = ACTIONS(168),
- [anon_sym_PIPE_PIPE_EQ] = ACTIONS(168),
- [anon_sym_QMARK_QMARK_EQ] = ACTIONS(168),
- [anon_sym_AMP_AMP] = ACTIONS(122),
- [anon_sym_PIPE_PIPE] = ACTIONS(122),
- [anon_sym_GT_GT] = ACTIONS(122),
- [anon_sym_GT_GT_GT] = ACTIONS(122),
- [anon_sym_LT_LT] = ACTIONS(122),
- [anon_sym_AMP] = ACTIONS(122),
- [anon_sym_CARET] = ACTIONS(122),
- [anon_sym_PIPE] = ACTIONS(122),
- [anon_sym_PLUS] = ACTIONS(122),
- [anon_sym_DASH] = ACTIONS(122),
- [anon_sym_SLASH] = ACTIONS(122),
- [anon_sym_PERCENT] = ACTIONS(122),
- [anon_sym_STAR_STAR] = ACTIONS(122),
- [anon_sym_LT] = ACTIONS(2248),
- [anon_sym_LT_EQ] = ACTIONS(162),
- [anon_sym_EQ_EQ] = ACTIONS(122),
- [anon_sym_EQ_EQ_EQ] = ACTIONS(162),
- [anon_sym_BANG_EQ] = ACTIONS(122),
- [anon_sym_BANG_EQ_EQ] = ACTIONS(162),
- [anon_sym_GT_EQ] = ACTIONS(162),
- [anon_sym_QMARK_QMARK] = ACTIONS(122),
- [anon_sym_instanceof] = ACTIONS(162),
- [anon_sym_PLUS_PLUS] = ACTIONS(162),
- [anon_sym_DASH_DASH] = ACTIONS(162),
- [sym_comment] = ACTIONS(5),
- [anon_sym_BQUOTE] = ACTIONS(162),
- [anon_sym_AT] = ACTIONS(99),
- [anon_sym_QMARK] = ACTIONS(723),
- [anon_sym_declare] = ACTIONS(2251),
- [anon_sym_module] = ACTIONS(2291),
- [anon_sym_abstract] = ACTIONS(2255),
- [anon_sym_satisfies] = ACTIONS(162),
- [anon_sym_global] = ACTIONS(2293),
- [anon_sym_interface] = ACTIONS(2257),
- [anon_sym_enum] = ACTIONS(2259),
- [sym__automatic_semicolon] = ACTIONS(162),
- [sym__ternary_qmark] = ACTIONS(162),
- [sym_html_comment] = ACTIONS(5),
- },
- [637] = {
- [sym_namespace_export] = STATE(5254),
- [sym_export_clause] = STATE(4500),
- [sym_declaration] = STATE(859),
- [sym_variable_declaration] = STATE(861),
- [sym_lexical_declaration] = STATE(861),
- [sym_class_declaration] = STATE(861),
- [sym_function_declaration] = STATE(861),
- [sym_generator_function_declaration] = STATE(861),
- [sym_decorator] = STATE(1244),
- [sym_function_signature] = STATE(861),
- [sym_ambient_declaration] = STATE(861),
- [sym_abstract_class_declaration] = STATE(861),
- [sym_module] = STATE(861),
- [sym_internal_module] = STATE(860),
- [sym_import_alias] = STATE(861),
- [sym_interface_declaration] = STATE(861),
- [sym_enum_declaration] = STATE(861),
- [sym_type_alias_declaration] = STATE(861),
- [aux_sym_export_statement_repeat1] = STATE(4270),
- [anon_sym_STAR] = ACTIONS(2217),
- [anon_sym_default] = ACTIONS(2295),
- [anon_sym_type] = ACTIONS(2221),
- [anon_sym_EQ] = ACTIONS(2297),
- [anon_sym_as] = ACTIONS(2225),
- [anon_sym_namespace] = ACTIONS(2227),
- [anon_sym_LBRACE] = ACTIONS(2229),
- [anon_sym_COMMA] = ACTIONS(162),
- [anon_sym_import] = ACTIONS(2231),
- [anon_sym_var] = ACTIONS(2233),
- [anon_sym_let] = ACTIONS(2235),
- [anon_sym_const] = ACTIONS(2237),
- [anon_sym_BANG] = ACTIONS(122),
- [anon_sym_LPAREN] = ACTIONS(162),
- [anon_sym_in] = ACTIONS(122),
- [anon_sym_SEMI] = ACTIONS(162),
- [anon_sym_COLON] = ACTIONS(886),
- [anon_sym_LBRACK] = ACTIONS(162),
- [anon_sym_GT] = ACTIONS(122),
- [anon_sym_DOT] = ACTIONS(162),
- [anon_sym_class] = ACTIONS(2242),
- [anon_sym_async] = ACTIONS(2244),
- [anon_sym_function] = ACTIONS(2246),
- [anon_sym_EQ_GT] = ACTIONS(715),
- [anon_sym_QMARK_DOT] = ACTIONS(162),
- [anon_sym_PLUS_EQ] = ACTIONS(168),
- [anon_sym_DASH_EQ] = ACTIONS(168),
- [anon_sym_STAR_EQ] = ACTIONS(168),
- [anon_sym_SLASH_EQ] = ACTIONS(168),
- [anon_sym_PERCENT_EQ] = ACTIONS(168),
- [anon_sym_CARET_EQ] = ACTIONS(168),
- [anon_sym_AMP_EQ] = ACTIONS(168),
- [anon_sym_PIPE_EQ] = ACTIONS(168),
- [anon_sym_GT_GT_EQ] = ACTIONS(168),
- [anon_sym_GT_GT_GT_EQ] = ACTIONS(168),
- [anon_sym_LT_LT_EQ] = ACTIONS(168),
- [anon_sym_STAR_STAR_EQ] = ACTIONS(168),
- [anon_sym_AMP_AMP_EQ] = ACTIONS(168),
- [anon_sym_PIPE_PIPE_EQ] = ACTIONS(168),
- [anon_sym_QMARK_QMARK_EQ] = ACTIONS(168),
- [anon_sym_AMP_AMP] = ACTIONS(122),
- [anon_sym_PIPE_PIPE] = ACTIONS(122),
- [anon_sym_GT_GT] = ACTIONS(122),
- [anon_sym_GT_GT_GT] = ACTIONS(122),
- [anon_sym_LT_LT] = ACTIONS(122),
- [anon_sym_AMP] = ACTIONS(122),
- [anon_sym_CARET] = ACTIONS(122),
- [anon_sym_PIPE] = ACTIONS(122),
- [anon_sym_PLUS] = ACTIONS(122),
- [anon_sym_DASH] = ACTIONS(122),
- [anon_sym_SLASH] = ACTIONS(122),
- [anon_sym_PERCENT] = ACTIONS(122),
- [anon_sym_STAR_STAR] = ACTIONS(122),
- [anon_sym_LT] = ACTIONS(122),
- [anon_sym_LT_EQ] = ACTIONS(162),
- [anon_sym_EQ_EQ] = ACTIONS(122),
- [anon_sym_EQ_EQ_EQ] = ACTIONS(162),
- [anon_sym_BANG_EQ] = ACTIONS(122),
- [anon_sym_BANG_EQ_EQ] = ACTIONS(162),
- [anon_sym_GT_EQ] = ACTIONS(162),
- [anon_sym_QMARK_QMARK] = ACTIONS(122),
- [anon_sym_instanceof] = ACTIONS(162),
- [anon_sym_PLUS_PLUS] = ACTIONS(162),
- [anon_sym_DASH_DASH] = ACTIONS(162),
- [sym_comment] = ACTIONS(5),
- [anon_sym_BQUOTE] = ACTIONS(162),
- [anon_sym_AT] = ACTIONS(99),
- [anon_sym_declare] = ACTIONS(2251),
- [anon_sym_module] = ACTIONS(2253),
- [anon_sym_abstract] = ACTIONS(2255),
- [anon_sym_satisfies] = ACTIONS(162),
- [anon_sym_interface] = ACTIONS(2257),
- [anon_sym_enum] = ACTIONS(2259),
- [sym__automatic_semicolon] = ACTIONS(162),
- [sym__ternary_qmark] = ACTIONS(162),
- [sym_html_comment] = ACTIONS(5),
- },
- [638] = {
- [sym_namespace_export] = STATE(5254),
- [sym_export_clause] = STATE(4500),
- [sym_declaration] = STATE(859),
- [sym_variable_declaration] = STATE(861),
- [sym_lexical_declaration] = STATE(861),
- [sym_class_declaration] = STATE(861),
- [sym_function_declaration] = STATE(861),
- [sym_generator_function_declaration] = STATE(861),
- [sym_decorator] = STATE(1244),
- [sym_function_signature] = STATE(861),
- [sym_ambient_declaration] = STATE(861),
- [sym_abstract_class_declaration] = STATE(861),
- [sym_module] = STATE(861),
- [sym_internal_module] = STATE(860),
- [sym_import_alias] = STATE(861),
- [sym_interface_declaration] = STATE(861),
- [sym_enum_declaration] = STATE(861),
- [sym_type_alias_declaration] = STATE(861),
- [aux_sym_export_statement_repeat1] = STATE(4270),
- [anon_sym_STAR] = ACTIONS(2217),
- [anon_sym_default] = ACTIONS(2299),
- [anon_sym_type] = ACTIONS(2221),
- [anon_sym_EQ] = ACTIONS(2297),
- [anon_sym_as] = ACTIONS(2225),
- [anon_sym_namespace] = ACTIONS(2301),
- [anon_sym_LBRACE] = ACTIONS(2229),
- [anon_sym_COMMA] = ACTIONS(162),
- [anon_sym_import] = ACTIONS(2231),
- [anon_sym_var] = ACTIONS(2233),
- [anon_sym_let] = ACTIONS(2235),
- [anon_sym_const] = ACTIONS(2237),
- [anon_sym_BANG] = ACTIONS(122),
- [anon_sym_LPAREN] = ACTIONS(162),
- [anon_sym_in] = ACTIONS(122),
- [anon_sym_SEMI] = ACTIONS(162),
- [anon_sym_COLON] = ACTIONS(866),
- [anon_sym_LBRACK] = ACTIONS(162),
- [anon_sym_GT] = ACTIONS(122),
- [anon_sym_DOT] = ACTIONS(162),
- [anon_sym_class] = ACTIONS(2242),
- [anon_sym_async] = ACTIONS(2244),
- [anon_sym_function] = ACTIONS(2246),
- [anon_sym_EQ_GT] = ACTIONS(715),
- [anon_sym_QMARK_DOT] = ACTIONS(162),
- [anon_sym_PLUS_EQ] = ACTIONS(168),
- [anon_sym_DASH_EQ] = ACTIONS(168),
- [anon_sym_STAR_EQ] = ACTIONS(168),
- [anon_sym_SLASH_EQ] = ACTIONS(168),
- [anon_sym_PERCENT_EQ] = ACTIONS(168),
- [anon_sym_CARET_EQ] = ACTIONS(168),
- [anon_sym_AMP_EQ] = ACTIONS(168),
- [anon_sym_PIPE_EQ] = ACTIONS(168),
- [anon_sym_GT_GT_EQ] = ACTIONS(168),
- [anon_sym_GT_GT_GT_EQ] = ACTIONS(168),
- [anon_sym_LT_LT_EQ] = ACTIONS(168),
- [anon_sym_STAR_STAR_EQ] = ACTIONS(168),
- [anon_sym_AMP_AMP_EQ] = ACTIONS(168),
- [anon_sym_PIPE_PIPE_EQ] = ACTIONS(168),
- [anon_sym_QMARK_QMARK_EQ] = ACTIONS(168),
- [anon_sym_AMP_AMP] = ACTIONS(122),
- [anon_sym_PIPE_PIPE] = ACTIONS(122),
- [anon_sym_GT_GT] = ACTIONS(122),
- [anon_sym_GT_GT_GT] = ACTIONS(122),
- [anon_sym_LT_LT] = ACTIONS(122),
- [anon_sym_AMP] = ACTIONS(122),
- [anon_sym_CARET] = ACTIONS(122),
- [anon_sym_PIPE] = ACTIONS(122),
- [anon_sym_PLUS] = ACTIONS(122),
- [anon_sym_DASH] = ACTIONS(122),
- [anon_sym_SLASH] = ACTIONS(122),
- [anon_sym_PERCENT] = ACTIONS(122),
- [anon_sym_STAR_STAR] = ACTIONS(122),
- [anon_sym_LT] = ACTIONS(122),
- [anon_sym_LT_EQ] = ACTIONS(162),
- [anon_sym_EQ_EQ] = ACTIONS(122),
- [anon_sym_EQ_EQ_EQ] = ACTIONS(162),
- [anon_sym_BANG_EQ] = ACTIONS(122),
- [anon_sym_BANG_EQ_EQ] = ACTIONS(162),
- [anon_sym_GT_EQ] = ACTIONS(162),
- [anon_sym_QMARK_QMARK] = ACTIONS(122),
- [anon_sym_instanceof] = ACTIONS(162),
- [anon_sym_PLUS_PLUS] = ACTIONS(162),
- [anon_sym_DASH_DASH] = ACTIONS(162),
- [sym_comment] = ACTIONS(5),
- [anon_sym_BQUOTE] = ACTIONS(162),
- [anon_sym_AT] = ACTIONS(99),
- [anon_sym_declare] = ACTIONS(2303),
- [anon_sym_module] = ACTIONS(2305),
- [anon_sym_abstract] = ACTIONS(2255),
- [anon_sym_satisfies] = ACTIONS(162),
- [anon_sym_interface] = ACTIONS(2257),
- [anon_sym_enum] = ACTIONS(2259),
- [sym__automatic_semicolon] = ACTIONS(162),
- [sym__ternary_qmark] = ACTIONS(162),
- [sym_html_comment] = ACTIONS(5),
- },
- [639] = {
- [sym_namespace_export] = STATE(5254),
- [sym_export_clause] = STATE(4500),
- [sym_declaration] = STATE(859),
- [sym_variable_declaration] = STATE(861),
- [sym_lexical_declaration] = STATE(861),
- [sym_class_declaration] = STATE(861),
- [sym_function_declaration] = STATE(861),
- [sym_generator_function_declaration] = STATE(861),
- [sym_decorator] = STATE(1244),
- [sym_function_signature] = STATE(861),
- [sym_ambient_declaration] = STATE(861),
- [sym_abstract_class_declaration] = STATE(861),
- [sym_module] = STATE(861),
- [sym_internal_module] = STATE(860),
- [sym_import_alias] = STATE(861),
- [sym_interface_declaration] = STATE(861),
- [sym_enum_declaration] = STATE(861),
- [sym_type_alias_declaration] = STATE(861),
- [aux_sym_export_statement_repeat1] = STATE(4270),
- [anon_sym_STAR] = ACTIONS(2217),
- [anon_sym_default] = ACTIONS(2219),
- [anon_sym_type] = ACTIONS(2221),
- [anon_sym_EQ] = ACTIONS(2297),
- [anon_sym_as] = ACTIONS(2225),
- [anon_sym_namespace] = ACTIONS(2227),
- [anon_sym_LBRACE] = ACTIONS(2229),
- [anon_sym_COMMA] = ACTIONS(162),
- [anon_sym_import] = ACTIONS(2231),
- [anon_sym_var] = ACTIONS(2233),
- [anon_sym_let] = ACTIONS(2235),
- [anon_sym_const] = ACTIONS(2237),
- [anon_sym_BANG] = ACTIONS(122),
- [anon_sym_LPAREN] = ACTIONS(162),
- [anon_sym_in] = ACTIONS(122),
- [anon_sym_SEMI] = ACTIONS(162),
- [anon_sym_COLON] = ACTIONS(884),
- [anon_sym_LBRACK] = ACTIONS(162),
- [anon_sym_GT] = ACTIONS(122),
- [anon_sym_DOT] = ACTIONS(162),
- [anon_sym_class] = ACTIONS(2242),
- [anon_sym_async] = ACTIONS(2244),
- [anon_sym_function] = ACTIONS(2246),
- [anon_sym_EQ_GT] = ACTIONS(715),
- [anon_sym_QMARK_DOT] = ACTIONS(162),
- [anon_sym_PLUS_EQ] = ACTIONS(168),
- [anon_sym_DASH_EQ] = ACTIONS(168),
- [anon_sym_STAR_EQ] = ACTIONS(168),
- [anon_sym_SLASH_EQ] = ACTIONS(168),
- [anon_sym_PERCENT_EQ] = ACTIONS(168),
- [anon_sym_CARET_EQ] = ACTIONS(168),
- [anon_sym_AMP_EQ] = ACTIONS(168),
- [anon_sym_PIPE_EQ] = ACTIONS(168),
- [anon_sym_GT_GT_EQ] = ACTIONS(168),
- [anon_sym_GT_GT_GT_EQ] = ACTIONS(168),
- [anon_sym_LT_LT_EQ] = ACTIONS(168),
- [anon_sym_STAR_STAR_EQ] = ACTIONS(168),
- [anon_sym_AMP_AMP_EQ] = ACTIONS(168),
- [anon_sym_PIPE_PIPE_EQ] = ACTIONS(168),
- [anon_sym_QMARK_QMARK_EQ] = ACTIONS(168),
- [anon_sym_AMP_AMP] = ACTIONS(122),
- [anon_sym_PIPE_PIPE] = ACTIONS(122),
- [anon_sym_GT_GT] = ACTIONS(122),
- [anon_sym_GT_GT_GT] = ACTIONS(122),
- [anon_sym_LT_LT] = ACTIONS(122),
- [anon_sym_AMP] = ACTIONS(122),
- [anon_sym_CARET] = ACTIONS(122),
- [anon_sym_PIPE] = ACTIONS(122),
- [anon_sym_PLUS] = ACTIONS(122),
- [anon_sym_DASH] = ACTIONS(122),
- [anon_sym_SLASH] = ACTIONS(122),
- [anon_sym_PERCENT] = ACTIONS(122),
- [anon_sym_STAR_STAR] = ACTIONS(122),
- [anon_sym_LT] = ACTIONS(122),
- [anon_sym_LT_EQ] = ACTIONS(162),
- [anon_sym_EQ_EQ] = ACTIONS(122),
- [anon_sym_EQ_EQ_EQ] = ACTIONS(162),
- [anon_sym_BANG_EQ] = ACTIONS(122),
- [anon_sym_BANG_EQ_EQ] = ACTIONS(162),
- [anon_sym_GT_EQ] = ACTIONS(162),
- [anon_sym_QMARK_QMARK] = ACTIONS(122),
- [anon_sym_instanceof] = ACTIONS(162),
- [anon_sym_PLUS_PLUS] = ACTIONS(162),
- [anon_sym_DASH_DASH] = ACTIONS(162),
- [sym_comment] = ACTIONS(5),
- [anon_sym_BQUOTE] = ACTIONS(162),
- [anon_sym_AT] = ACTIONS(99),
- [anon_sym_declare] = ACTIONS(2251),
- [anon_sym_module] = ACTIONS(2253),
- [anon_sym_abstract] = ACTIONS(2255),
- [anon_sym_satisfies] = ACTIONS(162),
- [anon_sym_interface] = ACTIONS(2257),
- [anon_sym_enum] = ACTIONS(2259),
- [sym__automatic_semicolon] = ACTIONS(162),
- [sym__ternary_qmark] = ACTIONS(162),
- [sym_html_comment] = ACTIONS(5),
- },
- [640] = {
- [sym_string] = STATE(3788),
- [sym__property_name] = STATE(3788),
- [sym_computed_property_name] = STATE(3788),
- [sym_override_modifier] = STATE(2719),
- [aux_sym_object_repeat1] = STATE(5156),
- [aux_sym_object_pattern_repeat1] = STATE(4672),
- [sym_identifier] = ACTIONS(2307),
- [anon_sym_export] = ACTIONS(2307),
- [anon_sym_STAR] = ACTIONS(2265),
- [anon_sym_type] = ACTIONS(2307),
- [anon_sym_EQ] = ACTIONS(696),
- [anon_sym_as] = ACTIONS(122),
- [anon_sym_namespace] = ACTIONS(2307),
- [anon_sym_COMMA] = ACTIONS(162),
- [anon_sym_RBRACE] = ACTIONS(725),
- [anon_sym_let] = ACTIONS(2307),
- [anon_sym_BANG] = ACTIONS(122),
- [anon_sym_LPAREN] = ACTIONS(2239),
- [anon_sym_in] = ACTIONS(122),
- [anon_sym_SEMI] = ACTIONS(162),
- [anon_sym_COLON] = ACTIONS(704),
- [anon_sym_LBRACK] = ACTIONS(2272),
- [anon_sym_GT] = ACTIONS(122),
- [anon_sym_DOT] = ACTIONS(122),
- [anon_sym_DQUOTE] = ACTIONS(2275),
- [anon_sym_SQUOTE] = ACTIONS(2277),
- [anon_sym_async] = ACTIONS(2309),
- [anon_sym_EQ_GT] = ACTIONS(715),
- [anon_sym_QMARK_DOT] = ACTIONS(162),
- [anon_sym_new] = ACTIONS(2307),
- [anon_sym_PLUS_EQ] = ACTIONS(168),
- [anon_sym_DASH_EQ] = ACTIONS(168),
- [anon_sym_STAR_EQ] = ACTIONS(168),
- [anon_sym_SLASH_EQ] = ACTIONS(168),
- [anon_sym_PERCENT_EQ] = ACTIONS(168),
- [anon_sym_CARET_EQ] = ACTIONS(168),
- [anon_sym_AMP_EQ] = ACTIONS(168),
- [anon_sym_PIPE_EQ] = ACTIONS(168),
- [anon_sym_GT_GT_EQ] = ACTIONS(168),
- [anon_sym_GT_GT_GT_EQ] = ACTIONS(168),
- [anon_sym_LT_LT_EQ] = ACTIONS(168),
- [anon_sym_STAR_STAR_EQ] = ACTIONS(168),
- [anon_sym_AMP_AMP_EQ] = ACTIONS(168),
- [anon_sym_PIPE_PIPE_EQ] = ACTIONS(168),
- [anon_sym_QMARK_QMARK_EQ] = ACTIONS(168),
- [anon_sym_AMP_AMP] = ACTIONS(122),
- [anon_sym_PIPE_PIPE] = ACTIONS(122),
- [anon_sym_GT_GT] = ACTIONS(122),
- [anon_sym_GT_GT_GT] = ACTIONS(122),
- [anon_sym_LT_LT] = ACTIONS(122),
- [anon_sym_AMP] = ACTIONS(122),
- [anon_sym_CARET] = ACTIONS(122),
- [anon_sym_PIPE] = ACTIONS(122),
- [anon_sym_PLUS] = ACTIONS(122),
- [anon_sym_DASH] = ACTIONS(122),
- [anon_sym_SLASH] = ACTIONS(122),
- [anon_sym_PERCENT] = ACTIONS(122),
- [anon_sym_STAR_STAR] = ACTIONS(122),
- [anon_sym_LT] = ACTIONS(2248),
- [anon_sym_LT_EQ] = ACTIONS(162),
- [anon_sym_EQ_EQ] = ACTIONS(122),
- [anon_sym_EQ_EQ_EQ] = ACTIONS(162),
- [anon_sym_BANG_EQ] = ACTIONS(122),
- [anon_sym_BANG_EQ_EQ] = ACTIONS(162),
- [anon_sym_GT_EQ] = ACTIONS(162),
- [anon_sym_QMARK_QMARK] = ACTIONS(122),
- [anon_sym_instanceof] = ACTIONS(122),
- [anon_sym_PLUS_PLUS] = ACTIONS(162),
- [anon_sym_DASH_DASH] = ACTIONS(162),
- [sym_comment] = ACTIONS(5),
- [anon_sym_BQUOTE] = ACTIONS(162),
- [sym_number] = ACTIONS(2285),
- [sym_private_property_identifier] = ACTIONS(2285),
- [anon_sym_static] = ACTIONS(2307),
- [anon_sym_readonly] = ACTIONS(2311),
- [anon_sym_get] = ACTIONS(2313),
- [anon_sym_set] = ACTIONS(2313),
- [anon_sym_QMARK] = ACTIONS(723),
- [anon_sym_declare] = ACTIONS(2307),
- [anon_sym_public] = ACTIONS(2307),
- [anon_sym_private] = ACTIONS(2307),
- [anon_sym_protected] = ACTIONS(2307),
- [anon_sym_override] = ACTIONS(2315),
- [anon_sym_module] = ACTIONS(2307),
- [anon_sym_any] = ACTIONS(2307),
- [anon_sym_number] = ACTIONS(2307),
- [anon_sym_boolean] = ACTIONS(2307),
- [anon_sym_string] = ACTIONS(2307),
- [anon_sym_symbol] = ACTIONS(2307),
- [anon_sym_object] = ACTIONS(2307),
- [anon_sym_satisfies] = ACTIONS(122),
- [sym__automatic_semicolon] = ACTIONS(162),
- [sym__ternary_qmark] = ACTIONS(162),
- [sym_html_comment] = ACTIONS(5),
- },
- [641] = {
- [sym_string] = STATE(3788),
- [sym__property_name] = STATE(3788),
- [sym_computed_property_name] = STATE(3788),
- [sym_override_modifier] = STATE(2719),
- [aux_sym_object_repeat1] = STATE(4671),
- [aux_sym_object_pattern_repeat1] = STATE(4672),
- [sym_identifier] = ACTIONS(2307),
- [anon_sym_export] = ACTIONS(2307),
- [anon_sym_STAR] = ACTIONS(2265),
- [anon_sym_type] = ACTIONS(2307),
- [anon_sym_EQ] = ACTIONS(696),
- [anon_sym_as] = ACTIONS(122),
- [anon_sym_namespace] = ACTIONS(2307),
- [anon_sym_COMMA] = ACTIONS(162),
- [anon_sym_RBRACE] = ACTIONS(727),
- [anon_sym_let] = ACTIONS(2307),
- [anon_sym_BANG] = ACTIONS(122),
- [anon_sym_LPAREN] = ACTIONS(2239),
- [anon_sym_in] = ACTIONS(122),
- [anon_sym_SEMI] = ACTIONS(162),
- [anon_sym_COLON] = ACTIONS(704),
- [anon_sym_LBRACK] = ACTIONS(2272),
- [anon_sym_GT] = ACTIONS(122),
- [anon_sym_DOT] = ACTIONS(122),
- [anon_sym_DQUOTE] = ACTIONS(2275),
- [anon_sym_SQUOTE] = ACTIONS(2277),
- [anon_sym_async] = ACTIONS(2309),
- [anon_sym_EQ_GT] = ACTIONS(715),
- [anon_sym_QMARK_DOT] = ACTIONS(162),
- [anon_sym_new] = ACTIONS(2307),
- [anon_sym_PLUS_EQ] = ACTIONS(168),
- [anon_sym_DASH_EQ] = ACTIONS(168),
- [anon_sym_STAR_EQ] = ACTIONS(168),
- [anon_sym_SLASH_EQ] = ACTIONS(168),
- [anon_sym_PERCENT_EQ] = ACTIONS(168),
- [anon_sym_CARET_EQ] = ACTIONS(168),
- [anon_sym_AMP_EQ] = ACTIONS(168),
- [anon_sym_PIPE_EQ] = ACTIONS(168),
- [anon_sym_GT_GT_EQ] = ACTIONS(168),
- [anon_sym_GT_GT_GT_EQ] = ACTIONS(168),
- [anon_sym_LT_LT_EQ] = ACTIONS(168),
- [anon_sym_STAR_STAR_EQ] = ACTIONS(168),
- [anon_sym_AMP_AMP_EQ] = ACTIONS(168),
- [anon_sym_PIPE_PIPE_EQ] = ACTIONS(168),
- [anon_sym_QMARK_QMARK_EQ] = ACTIONS(168),
- [anon_sym_AMP_AMP] = ACTIONS(122),
- [anon_sym_PIPE_PIPE] = ACTIONS(122),
- [anon_sym_GT_GT] = ACTIONS(122),
- [anon_sym_GT_GT_GT] = ACTIONS(122),
- [anon_sym_LT_LT] = ACTIONS(122),
- [anon_sym_AMP] = ACTIONS(122),
- [anon_sym_CARET] = ACTIONS(122),
- [anon_sym_PIPE] = ACTIONS(122),
- [anon_sym_PLUS] = ACTIONS(122),
- [anon_sym_DASH] = ACTIONS(122),
- [anon_sym_SLASH] = ACTIONS(122),
- [anon_sym_PERCENT] = ACTIONS(122),
- [anon_sym_STAR_STAR] = ACTIONS(122),
- [anon_sym_LT] = ACTIONS(2248),
- [anon_sym_LT_EQ] = ACTIONS(162),
- [anon_sym_EQ_EQ] = ACTIONS(122),
- [anon_sym_EQ_EQ_EQ] = ACTIONS(162),
- [anon_sym_BANG_EQ] = ACTIONS(122),
- [anon_sym_BANG_EQ_EQ] = ACTIONS(162),
- [anon_sym_GT_EQ] = ACTIONS(162),
- [anon_sym_QMARK_QMARK] = ACTIONS(122),
- [anon_sym_instanceof] = ACTIONS(122),
- [anon_sym_PLUS_PLUS] = ACTIONS(162),
- [anon_sym_DASH_DASH] = ACTIONS(162),
- [sym_comment] = ACTIONS(5),
- [anon_sym_BQUOTE] = ACTIONS(162),
- [sym_number] = ACTIONS(2285),
- [sym_private_property_identifier] = ACTIONS(2285),
- [anon_sym_static] = ACTIONS(2307),
- [anon_sym_readonly] = ACTIONS(2311),
- [anon_sym_get] = ACTIONS(2313),
- [anon_sym_set] = ACTIONS(2313),
- [anon_sym_QMARK] = ACTIONS(723),
- [anon_sym_declare] = ACTIONS(2307),
- [anon_sym_public] = ACTIONS(2307),
- [anon_sym_private] = ACTIONS(2307),
- [anon_sym_protected] = ACTIONS(2307),
- [anon_sym_override] = ACTIONS(2315),
- [anon_sym_module] = ACTIONS(2307),
- [anon_sym_any] = ACTIONS(2307),
- [anon_sym_number] = ACTIONS(2307),
- [anon_sym_boolean] = ACTIONS(2307),
- [anon_sym_string] = ACTIONS(2307),
- [anon_sym_symbol] = ACTIONS(2307),
- [anon_sym_object] = ACTIONS(2307),
- [anon_sym_satisfies] = ACTIONS(122),
- [sym__automatic_semicolon] = ACTIONS(162),
- [sym__ternary_qmark] = ACTIONS(162),
- [sym_html_comment] = ACTIONS(5),
- },
- [642] = {
- [sym_string] = STATE(3788),
- [sym__property_name] = STATE(3788),
- [sym_computed_property_name] = STATE(3788),
- [sym_override_modifier] = STATE(2719),
- [aux_sym_object_repeat1] = STATE(5156),
- [aux_sym_object_pattern_repeat1] = STATE(4672),
- [sym_identifier] = ACTIONS(2307),
- [anon_sym_export] = ACTIONS(2307),
- [anon_sym_STAR] = ACTIONS(2265),
- [anon_sym_type] = ACTIONS(2307),
- [anon_sym_EQ] = ACTIONS(696),
- [anon_sym_as] = ACTIONS(122),
- [anon_sym_namespace] = ACTIONS(2307),
- [anon_sym_COMMA] = ACTIONS(162),
- [anon_sym_RBRACE] = ACTIONS(702),
- [anon_sym_let] = ACTIONS(2307),
- [anon_sym_BANG] = ACTIONS(122),
- [anon_sym_LPAREN] = ACTIONS(2239),
- [anon_sym_in] = ACTIONS(122),
- [anon_sym_SEMI] = ACTIONS(162),
- [anon_sym_COLON] = ACTIONS(704),
- [anon_sym_LBRACK] = ACTIONS(2272),
- [anon_sym_GT] = ACTIONS(122),
- [anon_sym_DOT] = ACTIONS(122),
- [anon_sym_DQUOTE] = ACTIONS(2275),
- [anon_sym_SQUOTE] = ACTIONS(2277),
- [anon_sym_async] = ACTIONS(2309),
- [anon_sym_EQ_GT] = ACTIONS(715),
- [anon_sym_QMARK_DOT] = ACTIONS(162),
- [anon_sym_new] = ACTIONS(2307),
- [anon_sym_PLUS_EQ] = ACTIONS(168),
- [anon_sym_DASH_EQ] = ACTIONS(168),
- [anon_sym_STAR_EQ] = ACTIONS(168),
- [anon_sym_SLASH_EQ] = ACTIONS(168),
- [anon_sym_PERCENT_EQ] = ACTIONS(168),
- [anon_sym_CARET_EQ] = ACTIONS(168),
- [anon_sym_AMP_EQ] = ACTIONS(168),
- [anon_sym_PIPE_EQ] = ACTIONS(168),
- [anon_sym_GT_GT_EQ] = ACTIONS(168),
- [anon_sym_GT_GT_GT_EQ] = ACTIONS(168),
- [anon_sym_LT_LT_EQ] = ACTIONS(168),
- [anon_sym_STAR_STAR_EQ] = ACTIONS(168),
- [anon_sym_AMP_AMP_EQ] = ACTIONS(168),
- [anon_sym_PIPE_PIPE_EQ] = ACTIONS(168),
- [anon_sym_QMARK_QMARK_EQ] = ACTIONS(168),
- [anon_sym_AMP_AMP] = ACTIONS(122),
- [anon_sym_PIPE_PIPE] = ACTIONS(122),
- [anon_sym_GT_GT] = ACTIONS(122),
- [anon_sym_GT_GT_GT] = ACTIONS(122),
- [anon_sym_LT_LT] = ACTIONS(122),
- [anon_sym_AMP] = ACTIONS(122),
- [anon_sym_CARET] = ACTIONS(122),
- [anon_sym_PIPE] = ACTIONS(122),
- [anon_sym_PLUS] = ACTIONS(122),
- [anon_sym_DASH] = ACTIONS(122),
- [anon_sym_SLASH] = ACTIONS(122),
- [anon_sym_PERCENT] = ACTIONS(122),
- [anon_sym_STAR_STAR] = ACTIONS(122),
- [anon_sym_LT] = ACTIONS(2248),
- [anon_sym_LT_EQ] = ACTIONS(162),
- [anon_sym_EQ_EQ] = ACTIONS(122),
- [anon_sym_EQ_EQ_EQ] = ACTIONS(162),
- [anon_sym_BANG_EQ] = ACTIONS(122),
- [anon_sym_BANG_EQ_EQ] = ACTIONS(162),
- [anon_sym_GT_EQ] = ACTIONS(162),
- [anon_sym_QMARK_QMARK] = ACTIONS(122),
- [anon_sym_instanceof] = ACTIONS(122),
- [anon_sym_PLUS_PLUS] = ACTIONS(162),
- [anon_sym_DASH_DASH] = ACTIONS(162),
- [sym_comment] = ACTIONS(5),
- [anon_sym_BQUOTE] = ACTIONS(162),
- [sym_number] = ACTIONS(2285),
- [sym_private_property_identifier] = ACTIONS(2285),
- [anon_sym_static] = ACTIONS(2307),
- [anon_sym_readonly] = ACTIONS(2311),
- [anon_sym_get] = ACTIONS(2313),
- [anon_sym_set] = ACTIONS(2313),
- [anon_sym_QMARK] = ACTIONS(723),
- [anon_sym_declare] = ACTIONS(2307),
- [anon_sym_public] = ACTIONS(2307),
- [anon_sym_private] = ACTIONS(2307),
- [anon_sym_protected] = ACTIONS(2307),
- [anon_sym_override] = ACTIONS(2315),
- [anon_sym_module] = ACTIONS(2307),
- [anon_sym_any] = ACTIONS(2307),
- [anon_sym_number] = ACTIONS(2307),
- [anon_sym_boolean] = ACTIONS(2307),
- [anon_sym_string] = ACTIONS(2307),
- [anon_sym_symbol] = ACTIONS(2307),
- [anon_sym_object] = ACTIONS(2307),
- [anon_sym_satisfies] = ACTIONS(122),
- [sym__automatic_semicolon] = ACTIONS(162),
- [sym__ternary_qmark] = ACTIONS(162),
- [sym_html_comment] = ACTIONS(5),
- },
- [643] = {
- [sym_string] = STATE(3788),
- [sym__property_name] = STATE(3788),
- [sym_computed_property_name] = STATE(3788),
- [aux_sym_object_repeat1] = STATE(5156),
- [aux_sym_object_pattern_repeat1] = STATE(4672),
- [sym_identifier] = ACTIONS(2307),
- [anon_sym_export] = ACTIONS(2307),
- [anon_sym_STAR] = ACTIONS(122),
- [anon_sym_type] = ACTIONS(2307),
- [anon_sym_EQ] = ACTIONS(696),
- [anon_sym_as] = ACTIONS(122),
- [anon_sym_namespace] = ACTIONS(2307),
- [anon_sym_COMMA] = ACTIONS(162),
- [anon_sym_RBRACE] = ACTIONS(725),
- [anon_sym_let] = ACTIONS(2307),
- [anon_sym_BANG] = ACTIONS(122),
- [anon_sym_LPAREN] = ACTIONS(2239),
- [anon_sym_in] = ACTIONS(122),
- [anon_sym_SEMI] = ACTIONS(162),
- [anon_sym_COLON] = ACTIONS(704),
- [anon_sym_LBRACK] = ACTIONS(2272),
- [anon_sym_GT] = ACTIONS(122),
- [anon_sym_DOT] = ACTIONS(122),
- [anon_sym_DQUOTE] = ACTIONS(2275),
- [anon_sym_SQUOTE] = ACTIONS(2277),
- [anon_sym_async] = ACTIONS(2307),
- [anon_sym_EQ_GT] = ACTIONS(715),
- [anon_sym_QMARK_DOT] = ACTIONS(162),
- [anon_sym_new] = ACTIONS(2307),
- [anon_sym_PLUS_EQ] = ACTIONS(168),
- [anon_sym_DASH_EQ] = ACTIONS(168),
- [anon_sym_STAR_EQ] = ACTIONS(168),
- [anon_sym_SLASH_EQ] = ACTIONS(168),
- [anon_sym_PERCENT_EQ] = ACTIONS(168),
- [anon_sym_CARET_EQ] = ACTIONS(168),
- [anon_sym_AMP_EQ] = ACTIONS(168),
- [anon_sym_PIPE_EQ] = ACTIONS(168),
- [anon_sym_GT_GT_EQ] = ACTIONS(168),
- [anon_sym_GT_GT_GT_EQ] = ACTIONS(168),
- [anon_sym_LT_LT_EQ] = ACTIONS(168),
- [anon_sym_STAR_STAR_EQ] = ACTIONS(168),
- [anon_sym_AMP_AMP_EQ] = ACTIONS(168),
- [anon_sym_PIPE_PIPE_EQ] = ACTIONS(168),
- [anon_sym_QMARK_QMARK_EQ] = ACTIONS(168),
- [anon_sym_AMP_AMP] = ACTIONS(122),
- [anon_sym_PIPE_PIPE] = ACTIONS(122),
- [anon_sym_GT_GT] = ACTIONS(122),
- [anon_sym_GT_GT_GT] = ACTIONS(122),
- [anon_sym_LT_LT] = ACTIONS(122),
- [anon_sym_AMP] = ACTIONS(122),
- [anon_sym_CARET] = ACTIONS(122),
- [anon_sym_PIPE] = ACTIONS(122),
- [anon_sym_PLUS] = ACTIONS(122),
- [anon_sym_DASH] = ACTIONS(122),
- [anon_sym_SLASH] = ACTIONS(122),
- [anon_sym_PERCENT] = ACTIONS(122),
- [anon_sym_STAR_STAR] = ACTIONS(122),
- [anon_sym_LT] = ACTIONS(2248),
- [anon_sym_LT_EQ] = ACTIONS(162),
- [anon_sym_EQ_EQ] = ACTIONS(122),
- [anon_sym_EQ_EQ_EQ] = ACTIONS(162),
- [anon_sym_BANG_EQ] = ACTIONS(122),
- [anon_sym_BANG_EQ_EQ] = ACTIONS(162),
- [anon_sym_GT_EQ] = ACTIONS(162),
- [anon_sym_QMARK_QMARK] = ACTIONS(122),
- [anon_sym_instanceof] = ACTIONS(122),
- [anon_sym_PLUS_PLUS] = ACTIONS(162),
- [anon_sym_DASH_DASH] = ACTIONS(162),
- [sym_comment] = ACTIONS(5),
- [anon_sym_BQUOTE] = ACTIONS(162),
- [sym_number] = ACTIONS(2285),
- [sym_private_property_identifier] = ACTIONS(2285),
- [anon_sym_static] = ACTIONS(2307),
- [anon_sym_readonly] = ACTIONS(2307),
- [anon_sym_get] = ACTIONS(2307),
- [anon_sym_set] = ACTIONS(2307),
- [anon_sym_QMARK] = ACTIONS(723),
- [anon_sym_declare] = ACTIONS(2307),
- [anon_sym_public] = ACTIONS(2307),
- [anon_sym_private] = ACTIONS(2307),
- [anon_sym_protected] = ACTIONS(2307),
- [anon_sym_override] = ACTIONS(2307),
- [anon_sym_module] = ACTIONS(2307),
- [anon_sym_any] = ACTIONS(2307),
- [anon_sym_number] = ACTIONS(2307),
- [anon_sym_boolean] = ACTIONS(2307),
- [anon_sym_string] = ACTIONS(2307),
- [anon_sym_symbol] = ACTIONS(2307),
- [anon_sym_object] = ACTIONS(2307),
- [anon_sym_satisfies] = ACTIONS(122),
- [sym__automatic_semicolon] = ACTIONS(162),
- [sym__ternary_qmark] = ACTIONS(162),
- [sym_html_comment] = ACTIONS(5),
- },
- [644] = {
- [sym_string] = STATE(3788),
- [sym__property_name] = STATE(3788),
- [sym_computed_property_name] = STATE(3788),
- [aux_sym_object_repeat1] = STATE(4671),
- [aux_sym_object_pattern_repeat1] = STATE(4672),
- [sym_identifier] = ACTIONS(2307),
- [anon_sym_export] = ACTIONS(2307),
- [anon_sym_STAR] = ACTIONS(2265),
- [anon_sym_type] = ACTIONS(2307),
- [anon_sym_EQ] = ACTIONS(696),
- [anon_sym_as] = ACTIONS(122),
- [anon_sym_namespace] = ACTIONS(2307),
- [anon_sym_COMMA] = ACTIONS(162),
- [anon_sym_RBRACE] = ACTIONS(727),
- [anon_sym_let] = ACTIONS(2307),
- [anon_sym_BANG] = ACTIONS(122),
- [anon_sym_LPAREN] = ACTIONS(2239),
- [anon_sym_in] = ACTIONS(122),
- [anon_sym_SEMI] = ACTIONS(162),
- [anon_sym_COLON] = ACTIONS(704),
- [anon_sym_LBRACK] = ACTIONS(2272),
- [anon_sym_GT] = ACTIONS(122),
- [anon_sym_DOT] = ACTIONS(122),
- [anon_sym_DQUOTE] = ACTIONS(2275),
- [anon_sym_SQUOTE] = ACTIONS(2277),
- [anon_sym_async] = ACTIONS(2309),
- [anon_sym_EQ_GT] = ACTIONS(715),
- [anon_sym_QMARK_DOT] = ACTIONS(162),
- [anon_sym_new] = ACTIONS(2307),
- [anon_sym_PLUS_EQ] = ACTIONS(168),
- [anon_sym_DASH_EQ] = ACTIONS(168),
- [anon_sym_STAR_EQ] = ACTIONS(168),
- [anon_sym_SLASH_EQ] = ACTIONS(168),
- [anon_sym_PERCENT_EQ] = ACTIONS(168),
- [anon_sym_CARET_EQ] = ACTIONS(168),
- [anon_sym_AMP_EQ] = ACTIONS(168),
- [anon_sym_PIPE_EQ] = ACTIONS(168),
- [anon_sym_GT_GT_EQ] = ACTIONS(168),
- [anon_sym_GT_GT_GT_EQ] = ACTIONS(168),
- [anon_sym_LT_LT_EQ] = ACTIONS(168),
- [anon_sym_STAR_STAR_EQ] = ACTIONS(168),
- [anon_sym_AMP_AMP_EQ] = ACTIONS(168),
- [anon_sym_PIPE_PIPE_EQ] = ACTIONS(168),
- [anon_sym_QMARK_QMARK_EQ] = ACTIONS(168),
- [anon_sym_AMP_AMP] = ACTIONS(122),
- [anon_sym_PIPE_PIPE] = ACTIONS(122),
- [anon_sym_GT_GT] = ACTIONS(122),
- [anon_sym_GT_GT_GT] = ACTIONS(122),
- [anon_sym_LT_LT] = ACTIONS(122),
- [anon_sym_AMP] = ACTIONS(122),
- [anon_sym_CARET] = ACTIONS(122),
- [anon_sym_PIPE] = ACTIONS(122),
- [anon_sym_PLUS] = ACTIONS(122),
- [anon_sym_DASH] = ACTIONS(122),
- [anon_sym_SLASH] = ACTIONS(122),
- [anon_sym_PERCENT] = ACTIONS(122),
- [anon_sym_STAR_STAR] = ACTIONS(122),
- [anon_sym_LT] = ACTIONS(2248),
- [anon_sym_LT_EQ] = ACTIONS(162),
- [anon_sym_EQ_EQ] = ACTIONS(122),
- [anon_sym_EQ_EQ_EQ] = ACTIONS(162),
- [anon_sym_BANG_EQ] = ACTIONS(122),
- [anon_sym_BANG_EQ_EQ] = ACTIONS(162),
- [anon_sym_GT_EQ] = ACTIONS(162),
- [anon_sym_QMARK_QMARK] = ACTIONS(122),
- [anon_sym_instanceof] = ACTIONS(122),
- [anon_sym_PLUS_PLUS] = ACTIONS(162),
- [anon_sym_DASH_DASH] = ACTIONS(162),
- [sym_comment] = ACTIONS(5),
- [anon_sym_BQUOTE] = ACTIONS(162),
- [sym_number] = ACTIONS(2285),
- [sym_private_property_identifier] = ACTIONS(2285),
- [anon_sym_static] = ACTIONS(2307),
- [anon_sym_readonly] = ACTIONS(2307),
- [anon_sym_get] = ACTIONS(2313),
- [anon_sym_set] = ACTIONS(2313),
- [anon_sym_QMARK] = ACTIONS(723),
- [anon_sym_declare] = ACTIONS(2307),
- [anon_sym_public] = ACTIONS(2307),
- [anon_sym_private] = ACTIONS(2307),
- [anon_sym_protected] = ACTIONS(2307),
- [anon_sym_override] = ACTIONS(2307),
- [anon_sym_module] = ACTIONS(2307),
- [anon_sym_any] = ACTIONS(2307),
- [anon_sym_number] = ACTIONS(2307),
- [anon_sym_boolean] = ACTIONS(2307),
- [anon_sym_string] = ACTIONS(2307),
- [anon_sym_symbol] = ACTIONS(2307),
- [anon_sym_object] = ACTIONS(2307),
- [anon_sym_satisfies] = ACTIONS(122),
- [sym__automatic_semicolon] = ACTIONS(162),
- [sym__ternary_qmark] = ACTIONS(162),
- [sym_html_comment] = ACTIONS(5),
- },
- [645] = {
- [ts_builtin_sym_end] = ACTIONS(1821),
- [sym_identifier] = ACTIONS(1823),
- [anon_sym_export] = ACTIONS(1823),
- [anon_sym_default] = ACTIONS(1823),
- [anon_sym_type] = ACTIONS(1823),
- [anon_sym_EQ] = ACTIONS(1823),
- [anon_sym_namespace] = ACTIONS(1823),
- [anon_sym_LBRACE] = ACTIONS(1821),
- [anon_sym_COMMA] = ACTIONS(1821),
- [anon_sym_RBRACE] = ACTIONS(1821),
- [anon_sym_typeof] = ACTIONS(1823),
- [anon_sym_import] = ACTIONS(1823),
- [anon_sym_from] = ACTIONS(1823),
- [anon_sym_with] = ACTIONS(1823),
- [anon_sym_var] = ACTIONS(1823),
- [anon_sym_let] = ACTIONS(1823),
- [anon_sym_const] = ACTIONS(1823),
- [anon_sym_BANG] = ACTIONS(1821),
- [anon_sym_else] = ACTIONS(1823),
- [anon_sym_if] = ACTIONS(1823),
- [anon_sym_switch] = ACTIONS(1823),
- [anon_sym_for] = ACTIONS(1823),
- [anon_sym_LPAREN] = ACTIONS(1821),
- [anon_sym_RPAREN] = ACTIONS(1821),
- [anon_sym_await] = ACTIONS(1823),
- [anon_sym_while] = ACTIONS(1823),
- [anon_sym_do] = ACTIONS(1823),
- [anon_sym_try] = ACTIONS(1823),
- [anon_sym_break] = ACTIONS(1823),
- [anon_sym_continue] = ACTIONS(1823),
- [anon_sym_debugger] = ACTIONS(1823),
- [anon_sym_return] = ACTIONS(1823),
- [anon_sym_throw] = ACTIONS(1823),
- [anon_sym_SEMI] = ACTIONS(1821),
- [anon_sym_COLON] = ACTIONS(1821),
- [anon_sym_case] = ACTIONS(1823),
- [anon_sym_yield] = ACTIONS(1823),
- [anon_sym_LBRACK] = ACTIONS(1821),
- [anon_sym_RBRACK] = ACTIONS(1821),
- [sym_glimmer_opening_tag] = ACTIONS(1821),
- [anon_sym_GT] = ACTIONS(1821),
- [anon_sym_DQUOTE] = ACTIONS(1821),
- [anon_sym_SQUOTE] = ACTIONS(1821),
- [anon_sym_class] = ACTIONS(1823),
- [anon_sym_async] = ACTIONS(1823),
- [anon_sym_function] = ACTIONS(1823),
- [anon_sym_EQ_GT] = ACTIONS(1821),
- [anon_sym_new] = ACTIONS(1823),
- [anon_sym_using] = ACTIONS(1823),
- [anon_sym_AMP] = ACTIONS(1821),
- [anon_sym_PIPE] = ACTIONS(1821),
- [anon_sym_PLUS] = ACTIONS(1823),
- [anon_sym_DASH] = ACTIONS(1823),
- [anon_sym_SLASH] = ACTIONS(1823),
- [anon_sym_LT] = ACTIONS(1823),
- [anon_sym_TILDE] = ACTIONS(1821),
- [anon_sym_void] = ACTIONS(1823),
- [anon_sym_delete] = ACTIONS(1823),
- [anon_sym_PLUS_PLUS] = ACTIONS(1821),
- [anon_sym_DASH_DASH] = ACTIONS(1821),
- [sym_comment] = ACTIONS(5),
- [anon_sym_BQUOTE] = ACTIONS(1821),
- [sym_number] = ACTIONS(1821),
- [sym_private_property_identifier] = ACTIONS(1821),
- [sym_this] = ACTIONS(1823),
- [sym_super] = ACTIONS(1823),
- [sym_true] = ACTIONS(1823),
- [sym_false] = ACTIONS(1823),
- [sym_null] = ACTIONS(1823),
- [sym_undefined] = ACTIONS(1823),
- [anon_sym_AT] = ACTIONS(1821),
- [anon_sym_static] = ACTIONS(1823),
- [anon_sym_readonly] = ACTIONS(1823),
- [anon_sym_get] = ACTIONS(1823),
- [anon_sym_set] = ACTIONS(1823),
- [anon_sym_QMARK] = ACTIONS(1821),
- [anon_sym_declare] = ACTIONS(1823),
- [anon_sym_public] = ACTIONS(1823),
- [anon_sym_private] = ACTIONS(1823),
- [anon_sym_protected] = ACTIONS(1823),
- [anon_sym_override] = ACTIONS(1823),
- [anon_sym_module] = ACTIONS(1823),
- [anon_sym_any] = ACTIONS(1823),
- [anon_sym_number] = ACTIONS(1823),
- [anon_sym_boolean] = ACTIONS(1823),
- [anon_sym_string] = ACTIONS(1823),
- [anon_sym_symbol] = ACTIONS(1823),
- [anon_sym_object] = ACTIONS(1823),
- [anon_sym_abstract] = ACTIONS(1823),
- [anon_sym_extends] = ACTIONS(1823),
- [anon_sym_interface] = ACTIONS(1823),
- [anon_sym_enum] = ACTIONS(1823),
- [sym_html_comment] = ACTIONS(5),
- },
- [646] = {
- [sym_string] = STATE(3788),
- [sym__property_name] = STATE(3788),
- [sym_computed_property_name] = STATE(3788),
- [aux_sym_object_repeat1] = STATE(5156),
- [aux_sym_object_pattern_repeat1] = STATE(4672),
- [sym_identifier] = ACTIONS(2307),
- [anon_sym_export] = ACTIONS(2307),
- [anon_sym_STAR] = ACTIONS(2265),
- [anon_sym_type] = ACTIONS(2307),
- [anon_sym_EQ] = ACTIONS(696),
- [anon_sym_as] = ACTIONS(122),
- [anon_sym_namespace] = ACTIONS(2307),
- [anon_sym_COMMA] = ACTIONS(162),
- [anon_sym_RBRACE] = ACTIONS(725),
- [anon_sym_let] = ACTIONS(2307),
- [anon_sym_BANG] = ACTIONS(122),
- [anon_sym_LPAREN] = ACTIONS(2239),
- [anon_sym_in] = ACTIONS(122),
- [anon_sym_SEMI] = ACTIONS(162),
- [anon_sym_COLON] = ACTIONS(704),
- [anon_sym_LBRACK] = ACTIONS(2272),
- [anon_sym_GT] = ACTIONS(122),
- [anon_sym_DOT] = ACTIONS(122),
- [anon_sym_DQUOTE] = ACTIONS(2275),
- [anon_sym_SQUOTE] = ACTIONS(2277),
- [anon_sym_async] = ACTIONS(2309),
- [anon_sym_EQ_GT] = ACTIONS(715),
- [anon_sym_QMARK_DOT] = ACTIONS(162),
- [anon_sym_new] = ACTIONS(2307),
- [anon_sym_PLUS_EQ] = ACTIONS(168),
- [anon_sym_DASH_EQ] = ACTIONS(168),
- [anon_sym_STAR_EQ] = ACTIONS(168),
- [anon_sym_SLASH_EQ] = ACTIONS(168),
- [anon_sym_PERCENT_EQ] = ACTIONS(168),
- [anon_sym_CARET_EQ] = ACTIONS(168),
- [anon_sym_AMP_EQ] = ACTIONS(168),
- [anon_sym_PIPE_EQ] = ACTIONS(168),
- [anon_sym_GT_GT_EQ] = ACTIONS(168),
- [anon_sym_GT_GT_GT_EQ] = ACTIONS(168),
- [anon_sym_LT_LT_EQ] = ACTIONS(168),
- [anon_sym_STAR_STAR_EQ] = ACTIONS(168),
- [anon_sym_AMP_AMP_EQ] = ACTIONS(168),
- [anon_sym_PIPE_PIPE_EQ] = ACTIONS(168),
- [anon_sym_QMARK_QMARK_EQ] = ACTIONS(168),
- [anon_sym_AMP_AMP] = ACTIONS(122),
- [anon_sym_PIPE_PIPE] = ACTIONS(122),
- [anon_sym_GT_GT] = ACTIONS(122),
- [anon_sym_GT_GT_GT] = ACTIONS(122),
- [anon_sym_LT_LT] = ACTIONS(122),
- [anon_sym_AMP] = ACTIONS(122),
- [anon_sym_CARET] = ACTIONS(122),
- [anon_sym_PIPE] = ACTIONS(122),
- [anon_sym_PLUS] = ACTIONS(122),
- [anon_sym_DASH] = ACTIONS(122),
- [anon_sym_SLASH] = ACTIONS(122),
- [anon_sym_PERCENT] = ACTIONS(122),
- [anon_sym_STAR_STAR] = ACTIONS(122),
- [anon_sym_LT] = ACTIONS(2248),
- [anon_sym_LT_EQ] = ACTIONS(162),
- [anon_sym_EQ_EQ] = ACTIONS(122),
- [anon_sym_EQ_EQ_EQ] = ACTIONS(162),
- [anon_sym_BANG_EQ] = ACTIONS(122),
- [anon_sym_BANG_EQ_EQ] = ACTIONS(162),
- [anon_sym_GT_EQ] = ACTIONS(162),
- [anon_sym_QMARK_QMARK] = ACTIONS(122),
- [anon_sym_instanceof] = ACTIONS(122),
- [anon_sym_PLUS_PLUS] = ACTIONS(162),
- [anon_sym_DASH_DASH] = ACTIONS(162),
- [sym_comment] = ACTIONS(5),
- [anon_sym_BQUOTE] = ACTIONS(162),
- [sym_number] = ACTIONS(2285),
- [sym_private_property_identifier] = ACTIONS(2285),
- [anon_sym_static] = ACTIONS(2307),
- [anon_sym_readonly] = ACTIONS(2307),
- [anon_sym_get] = ACTIONS(2313),
- [anon_sym_set] = ACTIONS(2313),
- [anon_sym_QMARK] = ACTIONS(723),
- [anon_sym_declare] = ACTIONS(2307),
- [anon_sym_public] = ACTIONS(2307),
- [anon_sym_private] = ACTIONS(2307),
- [anon_sym_protected] = ACTIONS(2307),
- [anon_sym_override] = ACTIONS(2307),
- [anon_sym_module] = ACTIONS(2307),
- [anon_sym_any] = ACTIONS(2307),
- [anon_sym_number] = ACTIONS(2307),
- [anon_sym_boolean] = ACTIONS(2307),
- [anon_sym_string] = ACTIONS(2307),
- [anon_sym_symbol] = ACTIONS(2307),
- [anon_sym_object] = ACTIONS(2307),
- [anon_sym_satisfies] = ACTIONS(122),
- [sym__automatic_semicolon] = ACTIONS(162),
- [sym__ternary_qmark] = ACTIONS(162),
- [sym_html_comment] = ACTIONS(5),
- },
- [647] = {
- [sym_string] = STATE(3788),
- [sym__property_name] = STATE(3788),
- [sym_computed_property_name] = STATE(3788),
- [aux_sym_object_repeat1] = STATE(4671),
- [aux_sym_object_pattern_repeat1] = STATE(4672),
- [sym_identifier] = ACTIONS(2307),
- [anon_sym_export] = ACTIONS(2307),
- [anon_sym_STAR] = ACTIONS(122),
- [anon_sym_type] = ACTIONS(2307),
- [anon_sym_EQ] = ACTIONS(696),
- [anon_sym_as] = ACTIONS(122),
- [anon_sym_namespace] = ACTIONS(2307),
- [anon_sym_COMMA] = ACTIONS(162),
- [anon_sym_RBRACE] = ACTIONS(727),
- [anon_sym_let] = ACTIONS(2307),
- [anon_sym_BANG] = ACTIONS(122),
- [anon_sym_LPAREN] = ACTIONS(2239),
- [anon_sym_in] = ACTIONS(122),
- [anon_sym_SEMI] = ACTIONS(162),
- [anon_sym_COLON] = ACTIONS(704),
- [anon_sym_LBRACK] = ACTIONS(2272),
- [anon_sym_GT] = ACTIONS(122),
- [anon_sym_DOT] = ACTIONS(122),
- [anon_sym_DQUOTE] = ACTIONS(2275),
- [anon_sym_SQUOTE] = ACTIONS(2277),
- [anon_sym_async] = ACTIONS(2307),
- [anon_sym_EQ_GT] = ACTIONS(715),
- [anon_sym_QMARK_DOT] = ACTIONS(162),
- [anon_sym_new] = ACTIONS(2307),
- [anon_sym_PLUS_EQ] = ACTIONS(168),
- [anon_sym_DASH_EQ] = ACTIONS(168),
- [anon_sym_STAR_EQ] = ACTIONS(168),
- [anon_sym_SLASH_EQ] = ACTIONS(168),
- [anon_sym_PERCENT_EQ] = ACTIONS(168),
- [anon_sym_CARET_EQ] = ACTIONS(168),
- [anon_sym_AMP_EQ] = ACTIONS(168),
- [anon_sym_PIPE_EQ] = ACTIONS(168),
- [anon_sym_GT_GT_EQ] = ACTIONS(168),
- [anon_sym_GT_GT_GT_EQ] = ACTIONS(168),
- [anon_sym_LT_LT_EQ] = ACTIONS(168),
- [anon_sym_STAR_STAR_EQ] = ACTIONS(168),
- [anon_sym_AMP_AMP_EQ] = ACTIONS(168),
- [anon_sym_PIPE_PIPE_EQ] = ACTIONS(168),
- [anon_sym_QMARK_QMARK_EQ] = ACTIONS(168),
- [anon_sym_AMP_AMP] = ACTIONS(122),
- [anon_sym_PIPE_PIPE] = ACTIONS(122),
- [anon_sym_GT_GT] = ACTIONS(122),
- [anon_sym_GT_GT_GT] = ACTIONS(122),
- [anon_sym_LT_LT] = ACTIONS(122),
- [anon_sym_AMP] = ACTIONS(122),
- [anon_sym_CARET] = ACTIONS(122),
- [anon_sym_PIPE] = ACTIONS(122),
- [anon_sym_PLUS] = ACTIONS(122),
- [anon_sym_DASH] = ACTIONS(122),
- [anon_sym_SLASH] = ACTIONS(122),
- [anon_sym_PERCENT] = ACTIONS(122),
- [anon_sym_STAR_STAR] = ACTIONS(122),
- [anon_sym_LT] = ACTIONS(2248),
- [anon_sym_LT_EQ] = ACTIONS(162),
- [anon_sym_EQ_EQ] = ACTIONS(122),
- [anon_sym_EQ_EQ_EQ] = ACTIONS(162),
- [anon_sym_BANG_EQ] = ACTIONS(122),
- [anon_sym_BANG_EQ_EQ] = ACTIONS(162),
- [anon_sym_GT_EQ] = ACTIONS(162),
- [anon_sym_QMARK_QMARK] = ACTIONS(122),
- [anon_sym_instanceof] = ACTIONS(122),
- [anon_sym_PLUS_PLUS] = ACTIONS(162),
- [anon_sym_DASH_DASH] = ACTIONS(162),
- [sym_comment] = ACTIONS(5),
- [anon_sym_BQUOTE] = ACTIONS(162),
- [sym_number] = ACTIONS(2285),
- [sym_private_property_identifier] = ACTIONS(2285),
- [anon_sym_static] = ACTIONS(2307),
- [anon_sym_readonly] = ACTIONS(2307),
- [anon_sym_get] = ACTIONS(2307),
- [anon_sym_set] = ACTIONS(2307),
- [anon_sym_QMARK] = ACTIONS(723),
- [anon_sym_declare] = ACTIONS(2307),
- [anon_sym_public] = ACTIONS(2307),
- [anon_sym_private] = ACTIONS(2307),
- [anon_sym_protected] = ACTIONS(2307),
- [anon_sym_override] = ACTIONS(2307),
- [anon_sym_module] = ACTIONS(2307),
- [anon_sym_any] = ACTIONS(2307),
- [anon_sym_number] = ACTIONS(2307),
- [anon_sym_boolean] = ACTIONS(2307),
- [anon_sym_string] = ACTIONS(2307),
- [anon_sym_symbol] = ACTIONS(2307),
- [anon_sym_object] = ACTIONS(2307),
- [anon_sym_satisfies] = ACTIONS(122),
- [sym__automatic_semicolon] = ACTIONS(162),
- [sym__ternary_qmark] = ACTIONS(162),
- [sym_html_comment] = ACTIONS(5),
- },
- [648] = {
- [ts_builtin_sym_end] = ACTIONS(1917),
- [sym_identifier] = ACTIONS(1919),
- [anon_sym_export] = ACTIONS(1919),
- [anon_sym_default] = ACTIONS(1919),
- [anon_sym_type] = ACTIONS(1919),
- [anon_sym_EQ] = ACTIONS(1919),
- [anon_sym_namespace] = ACTIONS(1919),
- [anon_sym_LBRACE] = ACTIONS(1917),
- [anon_sym_COMMA] = ACTIONS(1917),
- [anon_sym_RBRACE] = ACTIONS(1917),
- [anon_sym_typeof] = ACTIONS(1919),
- [anon_sym_import] = ACTIONS(1919),
- [anon_sym_from] = ACTIONS(1919),
- [anon_sym_with] = ACTIONS(1919),
- [anon_sym_var] = ACTIONS(1919),
- [anon_sym_let] = ACTIONS(1919),
- [anon_sym_const] = ACTIONS(1919),
- [anon_sym_BANG] = ACTIONS(1917),
- [anon_sym_else] = ACTIONS(1919),
- [anon_sym_if] = ACTIONS(1919),
- [anon_sym_switch] = ACTIONS(1919),
- [anon_sym_for] = ACTIONS(1919),
- [anon_sym_LPAREN] = ACTIONS(1917),
- [anon_sym_RPAREN] = ACTIONS(1917),
- [anon_sym_await] = ACTIONS(1919),
- [anon_sym_while] = ACTIONS(1919),
- [anon_sym_do] = ACTIONS(1919),
- [anon_sym_try] = ACTIONS(1919),
- [anon_sym_break] = ACTIONS(1919),
- [anon_sym_continue] = ACTIONS(1919),
- [anon_sym_debugger] = ACTIONS(1919),
- [anon_sym_return] = ACTIONS(1919),
- [anon_sym_throw] = ACTIONS(1919),
- [anon_sym_SEMI] = ACTIONS(1917),
- [anon_sym_COLON] = ACTIONS(1917),
- [anon_sym_case] = ACTIONS(1919),
- [anon_sym_yield] = ACTIONS(1919),
- [anon_sym_LBRACK] = ACTIONS(1917),
- [anon_sym_RBRACK] = ACTIONS(1917),
- [sym_glimmer_opening_tag] = ACTIONS(1917),
- [anon_sym_GT] = ACTIONS(1917),
- [anon_sym_DQUOTE] = ACTIONS(1917),
- [anon_sym_SQUOTE] = ACTIONS(1917),
- [anon_sym_class] = ACTIONS(1919),
- [anon_sym_async] = ACTIONS(1919),
- [anon_sym_function] = ACTIONS(1919),
- [anon_sym_EQ_GT] = ACTIONS(1917),
- [anon_sym_new] = ACTIONS(1919),
- [anon_sym_using] = ACTIONS(1919),
- [anon_sym_AMP] = ACTIONS(1917),
- [anon_sym_PIPE] = ACTIONS(1917),
- [anon_sym_PLUS] = ACTIONS(1919),
- [anon_sym_DASH] = ACTIONS(1919),
- [anon_sym_SLASH] = ACTIONS(1919),
- [anon_sym_LT] = ACTIONS(1919),
- [anon_sym_TILDE] = ACTIONS(1917),
- [anon_sym_void] = ACTIONS(1919),
- [anon_sym_delete] = ACTIONS(1919),
- [anon_sym_PLUS_PLUS] = ACTIONS(1917),
- [anon_sym_DASH_DASH] = ACTIONS(1917),
- [sym_comment] = ACTIONS(5),
- [anon_sym_BQUOTE] = ACTIONS(1917),
- [sym_number] = ACTIONS(1917),
- [sym_private_property_identifier] = ACTIONS(1917),
- [sym_this] = ACTIONS(1919),
- [sym_super] = ACTIONS(1919),
- [sym_true] = ACTIONS(1919),
- [sym_false] = ACTIONS(1919),
- [sym_null] = ACTIONS(1919),
- [sym_undefined] = ACTIONS(1919),
- [anon_sym_AT] = ACTIONS(1917),
- [anon_sym_static] = ACTIONS(1919),
- [anon_sym_readonly] = ACTIONS(1919),
- [anon_sym_get] = ACTIONS(1919),
- [anon_sym_set] = ACTIONS(1919),
- [anon_sym_QMARK] = ACTIONS(1917),
- [anon_sym_declare] = ACTIONS(1919),
- [anon_sym_public] = ACTIONS(1919),
- [anon_sym_private] = ACTIONS(1919),
- [anon_sym_protected] = ACTIONS(1919),
- [anon_sym_override] = ACTIONS(1919),
- [anon_sym_module] = ACTIONS(1919),
- [anon_sym_any] = ACTIONS(1919),
- [anon_sym_number] = ACTIONS(1919),
- [anon_sym_boolean] = ACTIONS(1919),
- [anon_sym_string] = ACTIONS(1919),
- [anon_sym_symbol] = ACTIONS(1919),
- [anon_sym_object] = ACTIONS(1919),
- [anon_sym_abstract] = ACTIONS(1919),
- [anon_sym_extends] = ACTIONS(1919),
- [anon_sym_interface] = ACTIONS(1919),
- [anon_sym_enum] = ACTIONS(1919),
- [sym_html_comment] = ACTIONS(5),
- },
- [649] = {
- [sym_string] = STATE(3788),
- [sym__property_name] = STATE(3788),
- [sym_computed_property_name] = STATE(3788),
- [aux_sym_object_repeat1] = STATE(5156),
- [aux_sym_object_pattern_repeat1] = STATE(4672),
- [sym_identifier] = ACTIONS(2307),
- [anon_sym_export] = ACTIONS(2307),
- [anon_sym_STAR] = ACTIONS(122),
- [anon_sym_type] = ACTIONS(2307),
- [anon_sym_EQ] = ACTIONS(696),
- [anon_sym_as] = ACTIONS(122),
- [anon_sym_namespace] = ACTIONS(2307),
- [anon_sym_COMMA] = ACTIONS(162),
- [anon_sym_RBRACE] = ACTIONS(702),
- [anon_sym_let] = ACTIONS(2307),
- [anon_sym_BANG] = ACTIONS(122),
- [anon_sym_LPAREN] = ACTIONS(2239),
- [anon_sym_in] = ACTIONS(122),
- [anon_sym_SEMI] = ACTIONS(162),
- [anon_sym_COLON] = ACTIONS(704),
- [anon_sym_LBRACK] = ACTIONS(2272),
- [anon_sym_GT] = ACTIONS(122),
- [anon_sym_DOT] = ACTIONS(122),
- [anon_sym_DQUOTE] = ACTIONS(2275),
- [anon_sym_SQUOTE] = ACTIONS(2277),
- [anon_sym_async] = ACTIONS(2307),
- [anon_sym_EQ_GT] = ACTIONS(715),
- [anon_sym_QMARK_DOT] = ACTIONS(162),
- [anon_sym_new] = ACTIONS(2307),
- [anon_sym_PLUS_EQ] = ACTIONS(168),
- [anon_sym_DASH_EQ] = ACTIONS(168),
- [anon_sym_STAR_EQ] = ACTIONS(168),
- [anon_sym_SLASH_EQ] = ACTIONS(168),
- [anon_sym_PERCENT_EQ] = ACTIONS(168),
- [anon_sym_CARET_EQ] = ACTIONS(168),
- [anon_sym_AMP_EQ] = ACTIONS(168),
- [anon_sym_PIPE_EQ] = ACTIONS(168),
- [anon_sym_GT_GT_EQ] = ACTIONS(168),
- [anon_sym_GT_GT_GT_EQ] = ACTIONS(168),
- [anon_sym_LT_LT_EQ] = ACTIONS(168),
- [anon_sym_STAR_STAR_EQ] = ACTIONS(168),
- [anon_sym_AMP_AMP_EQ] = ACTIONS(168),
- [anon_sym_PIPE_PIPE_EQ] = ACTIONS(168),
- [anon_sym_QMARK_QMARK_EQ] = ACTIONS(168),
- [anon_sym_AMP_AMP] = ACTIONS(122),
- [anon_sym_PIPE_PIPE] = ACTIONS(122),
- [anon_sym_GT_GT] = ACTIONS(122),
- [anon_sym_GT_GT_GT] = ACTIONS(122),
- [anon_sym_LT_LT] = ACTIONS(122),
- [anon_sym_AMP] = ACTIONS(122),
- [anon_sym_CARET] = ACTIONS(122),
- [anon_sym_PIPE] = ACTIONS(122),
- [anon_sym_PLUS] = ACTIONS(122),
- [anon_sym_DASH] = ACTIONS(122),
- [anon_sym_SLASH] = ACTIONS(122),
- [anon_sym_PERCENT] = ACTIONS(122),
- [anon_sym_STAR_STAR] = ACTIONS(122),
- [anon_sym_LT] = ACTIONS(2248),
- [anon_sym_LT_EQ] = ACTIONS(162),
- [anon_sym_EQ_EQ] = ACTIONS(122),
- [anon_sym_EQ_EQ_EQ] = ACTIONS(162),
- [anon_sym_BANG_EQ] = ACTIONS(122),
- [anon_sym_BANG_EQ_EQ] = ACTIONS(162),
- [anon_sym_GT_EQ] = ACTIONS(162),
- [anon_sym_QMARK_QMARK] = ACTIONS(122),
- [anon_sym_instanceof] = ACTIONS(122),
- [anon_sym_PLUS_PLUS] = ACTIONS(162),
- [anon_sym_DASH_DASH] = ACTIONS(162),
- [sym_comment] = ACTIONS(5),
- [anon_sym_BQUOTE] = ACTIONS(162),
- [sym_number] = ACTIONS(2285),
- [sym_private_property_identifier] = ACTIONS(2285),
- [anon_sym_static] = ACTIONS(2307),
- [anon_sym_readonly] = ACTIONS(2307),
- [anon_sym_get] = ACTIONS(2307),
- [anon_sym_set] = ACTIONS(2307),
- [anon_sym_QMARK] = ACTIONS(723),
- [anon_sym_declare] = ACTIONS(2307),
- [anon_sym_public] = ACTIONS(2307),
- [anon_sym_private] = ACTIONS(2307),
- [anon_sym_protected] = ACTIONS(2307),
- [anon_sym_override] = ACTIONS(2307),
- [anon_sym_module] = ACTIONS(2307),
- [anon_sym_any] = ACTIONS(2307),
- [anon_sym_number] = ACTIONS(2307),
- [anon_sym_boolean] = ACTIONS(2307),
- [anon_sym_string] = ACTIONS(2307),
- [anon_sym_symbol] = ACTIONS(2307),
- [anon_sym_object] = ACTIONS(2307),
- [anon_sym_satisfies] = ACTIONS(122),
- [sym__automatic_semicolon] = ACTIONS(162),
- [sym__ternary_qmark] = ACTIONS(162),
- [sym_html_comment] = ACTIONS(5),
- },
- [650] = {
- [sym_string] = STATE(3788),
- [sym__property_name] = STATE(3788),
- [sym_computed_property_name] = STATE(3788),
- [aux_sym_object_repeat1] = STATE(5156),
- [aux_sym_object_pattern_repeat1] = STATE(4672),
- [sym_identifier] = ACTIONS(2307),
- [anon_sym_export] = ACTIONS(2307),
- [anon_sym_STAR] = ACTIONS(2265),
- [anon_sym_type] = ACTIONS(2307),
- [anon_sym_EQ] = ACTIONS(696),
- [anon_sym_as] = ACTIONS(122),
- [anon_sym_namespace] = ACTIONS(2307),
- [anon_sym_COMMA] = ACTIONS(162),
- [anon_sym_RBRACE] = ACTIONS(702),
- [anon_sym_let] = ACTIONS(2307),
- [anon_sym_BANG] = ACTIONS(122),
- [anon_sym_LPAREN] = ACTIONS(2239),
- [anon_sym_in] = ACTIONS(122),
- [anon_sym_SEMI] = ACTIONS(162),
- [anon_sym_COLON] = ACTIONS(704),
- [anon_sym_LBRACK] = ACTIONS(2272),
- [anon_sym_GT] = ACTIONS(122),
- [anon_sym_DOT] = ACTIONS(122),
- [anon_sym_DQUOTE] = ACTIONS(2275),
- [anon_sym_SQUOTE] = ACTIONS(2277),
- [anon_sym_async] = ACTIONS(2309),
- [anon_sym_EQ_GT] = ACTIONS(715),
- [anon_sym_QMARK_DOT] = ACTIONS(162),
- [anon_sym_new] = ACTIONS(2307),
- [anon_sym_PLUS_EQ] = ACTIONS(168),
- [anon_sym_DASH_EQ] = ACTIONS(168),
- [anon_sym_STAR_EQ] = ACTIONS(168),
- [anon_sym_SLASH_EQ] = ACTIONS(168),
- [anon_sym_PERCENT_EQ] = ACTIONS(168),
- [anon_sym_CARET_EQ] = ACTIONS(168),
- [anon_sym_AMP_EQ] = ACTIONS(168),
- [anon_sym_PIPE_EQ] = ACTIONS(168),
- [anon_sym_GT_GT_EQ] = ACTIONS(168),
- [anon_sym_GT_GT_GT_EQ] = ACTIONS(168),
- [anon_sym_LT_LT_EQ] = ACTIONS(168),
- [anon_sym_STAR_STAR_EQ] = ACTIONS(168),
- [anon_sym_AMP_AMP_EQ] = ACTIONS(168),
- [anon_sym_PIPE_PIPE_EQ] = ACTIONS(168),
- [anon_sym_QMARK_QMARK_EQ] = ACTIONS(168),
- [anon_sym_AMP_AMP] = ACTIONS(122),
- [anon_sym_PIPE_PIPE] = ACTIONS(122),
- [anon_sym_GT_GT] = ACTIONS(122),
- [anon_sym_GT_GT_GT] = ACTIONS(122),
- [anon_sym_LT_LT] = ACTIONS(122),
- [anon_sym_AMP] = ACTIONS(122),
- [anon_sym_CARET] = ACTIONS(122),
- [anon_sym_PIPE] = ACTIONS(122),
- [anon_sym_PLUS] = ACTIONS(122),
- [anon_sym_DASH] = ACTIONS(122),
- [anon_sym_SLASH] = ACTIONS(122),
- [anon_sym_PERCENT] = ACTIONS(122),
- [anon_sym_STAR_STAR] = ACTIONS(122),
- [anon_sym_LT] = ACTIONS(2248),
- [anon_sym_LT_EQ] = ACTIONS(162),
- [anon_sym_EQ_EQ] = ACTIONS(122),
- [anon_sym_EQ_EQ_EQ] = ACTIONS(162),
- [anon_sym_BANG_EQ] = ACTIONS(122),
- [anon_sym_BANG_EQ_EQ] = ACTIONS(162),
- [anon_sym_GT_EQ] = ACTIONS(162),
- [anon_sym_QMARK_QMARK] = ACTIONS(122),
- [anon_sym_instanceof] = ACTIONS(122),
- [anon_sym_PLUS_PLUS] = ACTIONS(162),
- [anon_sym_DASH_DASH] = ACTIONS(162),
- [sym_comment] = ACTIONS(5),
- [anon_sym_BQUOTE] = ACTIONS(162),
- [sym_number] = ACTIONS(2285),
- [sym_private_property_identifier] = ACTIONS(2285),
- [anon_sym_static] = ACTIONS(2307),
- [anon_sym_readonly] = ACTIONS(2307),
- [anon_sym_get] = ACTIONS(2313),
- [anon_sym_set] = ACTIONS(2313),
- [anon_sym_QMARK] = ACTIONS(723),
- [anon_sym_declare] = ACTIONS(2307),
- [anon_sym_public] = ACTIONS(2307),
- [anon_sym_private] = ACTIONS(2307),
- [anon_sym_protected] = ACTIONS(2307),
- [anon_sym_override] = ACTIONS(2307),
- [anon_sym_module] = ACTIONS(2307),
- [anon_sym_any] = ACTIONS(2307),
- [anon_sym_number] = ACTIONS(2307),
- [anon_sym_boolean] = ACTIONS(2307),
- [anon_sym_string] = ACTIONS(2307),
- [anon_sym_symbol] = ACTIONS(2307),
- [anon_sym_object] = ACTIONS(2307),
- [anon_sym_satisfies] = ACTIONS(122),
- [sym__automatic_semicolon] = ACTIONS(162),
- [sym__ternary_qmark] = ACTIONS(162),
- [sym_html_comment] = ACTIONS(5),
- },
- [651] = {
- [sym_declaration] = STATE(819),
- [sym_variable_declaration] = STATE(861),
- [sym_lexical_declaration] = STATE(861),
- [sym_class_declaration] = STATE(861),
- [sym_function_declaration] = STATE(861),
- [sym_generator_function_declaration] = STATE(861),
- [sym_decorator] = STATE(1244),
- [sym_function_signature] = STATE(861),
- [sym_ambient_declaration] = STATE(861),
- [sym_abstract_class_declaration] = STATE(861),
- [sym_module] = STATE(861),
- [sym_internal_module] = STATE(860),
- [sym_import_alias] = STATE(861),
- [sym_interface_declaration] = STATE(861),
- [sym_enum_declaration] = STATE(861),
- [sym_type_alias_declaration] = STATE(861),
- [aux_sym_export_statement_repeat1] = STATE(4270),
- [anon_sym_STAR] = ACTIONS(122),
- [anon_sym_type] = ACTIONS(2289),
- [anon_sym_EQ] = ACTIONS(859),
- [anon_sym_as] = ACTIONS(122),
- [anon_sym_namespace] = ACTIONS(2301),
- [anon_sym_COMMA] = ACTIONS(162),
- [anon_sym_import] = ACTIONS(2231),
- [anon_sym_var] = ACTIONS(2233),
- [anon_sym_let] = ACTIONS(2235),
- [anon_sym_const] = ACTIONS(2237),
- [anon_sym_BANG] = ACTIONS(122),
- [anon_sym_LPAREN] = ACTIONS(162),
- [anon_sym_in] = ACTIONS(122),
- [anon_sym_SEMI] = ACTIONS(162),
- [anon_sym_COLON] = ACTIONS(866),
- [anon_sym_LBRACK] = ACTIONS(162),
- [anon_sym_GT] = ACTIONS(122),
- [anon_sym_DOT] = ACTIONS(162),
- [anon_sym_class] = ACTIONS(2242),
- [anon_sym_async] = ACTIONS(2244),
- [anon_sym_function] = ACTIONS(2246),
- [anon_sym_EQ_GT] = ACTIONS(715),
- [anon_sym_QMARK_DOT] = ACTIONS(162),
- [anon_sym_PLUS_EQ] = ACTIONS(168),
- [anon_sym_DASH_EQ] = ACTIONS(168),
- [anon_sym_STAR_EQ] = ACTIONS(168),
- [anon_sym_SLASH_EQ] = ACTIONS(168),
- [anon_sym_PERCENT_EQ] = ACTIONS(168),
- [anon_sym_CARET_EQ] = ACTIONS(168),
- [anon_sym_AMP_EQ] = ACTIONS(168),
- [anon_sym_PIPE_EQ] = ACTIONS(168),
- [anon_sym_GT_GT_EQ] = ACTIONS(168),
- [anon_sym_GT_GT_GT_EQ] = ACTIONS(168),
- [anon_sym_LT_LT_EQ] = ACTIONS(168),
- [anon_sym_STAR_STAR_EQ] = ACTIONS(168),
- [anon_sym_AMP_AMP_EQ] = ACTIONS(168),
- [anon_sym_PIPE_PIPE_EQ] = ACTIONS(168),
- [anon_sym_QMARK_QMARK_EQ] = ACTIONS(168),
- [anon_sym_AMP_AMP] = ACTIONS(122),
- [anon_sym_PIPE_PIPE] = ACTIONS(122),
- [anon_sym_GT_GT] = ACTIONS(122),
- [anon_sym_GT_GT_GT] = ACTIONS(122),
- [anon_sym_LT_LT] = ACTIONS(122),
- [anon_sym_AMP] = ACTIONS(122),
- [anon_sym_CARET] = ACTIONS(122),
- [anon_sym_PIPE] = ACTIONS(122),
- [anon_sym_PLUS] = ACTIONS(122),
- [anon_sym_DASH] = ACTIONS(122),
- [anon_sym_SLASH] = ACTIONS(122),
- [anon_sym_PERCENT] = ACTIONS(122),
- [anon_sym_STAR_STAR] = ACTIONS(122),
- [anon_sym_LT] = ACTIONS(122),
- [anon_sym_LT_EQ] = ACTIONS(162),
- [anon_sym_EQ_EQ] = ACTIONS(122),
- [anon_sym_EQ_EQ_EQ] = ACTIONS(162),
- [anon_sym_BANG_EQ] = ACTIONS(122),
- [anon_sym_BANG_EQ_EQ] = ACTIONS(162),
- [anon_sym_GT_EQ] = ACTIONS(162),
- [anon_sym_QMARK_QMARK] = ACTIONS(122),
- [anon_sym_instanceof] = ACTIONS(162),
- [anon_sym_PLUS_PLUS] = ACTIONS(162),
- [anon_sym_DASH_DASH] = ACTIONS(162),
- [sym_comment] = ACTIONS(5),
- [anon_sym_BQUOTE] = ACTIONS(162),
- [anon_sym_AT] = ACTIONS(99),
- [anon_sym_declare] = ACTIONS(2303),
- [anon_sym_module] = ACTIONS(2317),
- [anon_sym_abstract] = ACTIONS(2255),
- [anon_sym_satisfies] = ACTIONS(162),
- [anon_sym_global] = ACTIONS(2293),
- [anon_sym_interface] = ACTIONS(2257),
- [anon_sym_enum] = ACTIONS(2259),
- [sym__automatic_semicolon] = ACTIONS(162),
- [sym__ternary_qmark] = ACTIONS(162),
- [sym_html_comment] = ACTIONS(5),
- },
- [652] = {
- [ts_builtin_sym_end] = ACTIONS(2319),
- [sym_identifier] = ACTIONS(2321),
- [anon_sym_export] = ACTIONS(2321),
- [anon_sym_default] = ACTIONS(2321),
- [anon_sym_type] = ACTIONS(2321),
- [anon_sym_EQ] = ACTIONS(2321),
- [anon_sym_namespace] = ACTIONS(2321),
- [anon_sym_LBRACE] = ACTIONS(2319),
- [anon_sym_COMMA] = ACTIONS(2319),
- [anon_sym_RBRACE] = ACTIONS(2319),
- [anon_sym_typeof] = ACTIONS(2321),
- [anon_sym_import] = ACTIONS(2321),
- [anon_sym_with] = ACTIONS(2321),
- [anon_sym_var] = ACTIONS(2321),
- [anon_sym_let] = ACTIONS(2321),
- [anon_sym_const] = ACTIONS(2321),
- [anon_sym_BANG] = ACTIONS(2319),
- [anon_sym_else] = ACTIONS(2321),
- [anon_sym_if] = ACTIONS(2321),
- [anon_sym_switch] = ACTIONS(2321),
- [anon_sym_for] = ACTIONS(2321),
- [anon_sym_LPAREN] = ACTIONS(2319),
- [anon_sym_RPAREN] = ACTIONS(2319),
- [anon_sym_await] = ACTIONS(2321),
- [anon_sym_while] = ACTIONS(2321),
- [anon_sym_do] = ACTIONS(2321),
- [anon_sym_try] = ACTIONS(2321),
- [anon_sym_break] = ACTIONS(2321),
- [anon_sym_continue] = ACTIONS(2321),
- [anon_sym_debugger] = ACTIONS(2321),
- [anon_sym_return] = ACTIONS(2321),
- [anon_sym_throw] = ACTIONS(2321),
- [anon_sym_SEMI] = ACTIONS(2319),
- [anon_sym_COLON] = ACTIONS(2319),
- [anon_sym_case] = ACTIONS(2321),
- [anon_sym_yield] = ACTIONS(2321),
- [anon_sym_LBRACK] = ACTIONS(2319),
- [anon_sym_RBRACK] = ACTIONS(2319),
- [sym_glimmer_opening_tag] = ACTIONS(2319),
- [anon_sym_GT] = ACTIONS(2319),
- [anon_sym_DQUOTE] = ACTIONS(2319),
- [anon_sym_SQUOTE] = ACTIONS(2319),
- [anon_sym_class] = ACTIONS(2321),
- [anon_sym_async] = ACTIONS(2321),
- [anon_sym_function] = ACTIONS(2321),
- [anon_sym_EQ_GT] = ACTIONS(2319),
- [anon_sym_new] = ACTIONS(2321),
- [anon_sym_using] = ACTIONS(2321),
- [anon_sym_AMP] = ACTIONS(2319),
- [anon_sym_PIPE] = ACTIONS(2319),
- [anon_sym_PLUS] = ACTIONS(2321),
- [anon_sym_DASH] = ACTIONS(2321),
- [anon_sym_SLASH] = ACTIONS(2321),
- [anon_sym_LT] = ACTIONS(2321),
- [anon_sym_TILDE] = ACTIONS(2319),
- [anon_sym_void] = ACTIONS(2321),
- [anon_sym_delete] = ACTIONS(2321),
- [anon_sym_PLUS_PLUS] = ACTIONS(2319),
- [anon_sym_DASH_DASH] = ACTIONS(2319),
- [sym_comment] = ACTIONS(5),
- [anon_sym_BQUOTE] = ACTIONS(2319),
- [sym_number] = ACTIONS(2319),
- [sym_private_property_identifier] = ACTIONS(2319),
- [sym_this] = ACTIONS(2321),
- [sym_super] = ACTIONS(2321),
- [sym_true] = ACTIONS(2321),
- [sym_false] = ACTIONS(2321),
- [sym_null] = ACTIONS(2321),
- [sym_undefined] = ACTIONS(2321),
- [anon_sym_AT] = ACTIONS(2319),
- [anon_sym_static] = ACTIONS(2321),
- [anon_sym_readonly] = ACTIONS(2321),
- [anon_sym_get] = ACTIONS(2321),
- [anon_sym_set] = ACTIONS(2321),
- [anon_sym_QMARK] = ACTIONS(2319),
- [anon_sym_declare] = ACTIONS(2321),
- [anon_sym_public] = ACTIONS(2321),
- [anon_sym_private] = ACTIONS(2321),
- [anon_sym_protected] = ACTIONS(2321),
- [anon_sym_override] = ACTIONS(2321),
- [anon_sym_module] = ACTIONS(2321),
- [anon_sym_any] = ACTIONS(2321),
- [anon_sym_number] = ACTIONS(2321),
- [anon_sym_boolean] = ACTIONS(2321),
- [anon_sym_string] = ACTIONS(2321),
- [anon_sym_symbol] = ACTIONS(2321),
- [anon_sym_object] = ACTIONS(2321),
- [anon_sym_abstract] = ACTIONS(2321),
- [anon_sym_extends] = ACTIONS(2321),
- [anon_sym_interface] = ACTIONS(2321),
- [anon_sym_enum] = ACTIONS(2321),
- [sym_html_comment] = ACTIONS(5),
- },
- [653] = {
- [ts_builtin_sym_end] = ACTIONS(2323),
- [sym_identifier] = ACTIONS(2325),
- [anon_sym_export] = ACTIONS(2325),
- [anon_sym_default] = ACTIONS(2325),
- [anon_sym_type] = ACTIONS(2325),
- [anon_sym_EQ] = ACTIONS(2325),
- [anon_sym_namespace] = ACTIONS(2325),
- [anon_sym_LBRACE] = ACTIONS(2323),
- [anon_sym_COMMA] = ACTIONS(2323),
- [anon_sym_RBRACE] = ACTIONS(2323),
- [anon_sym_typeof] = ACTIONS(2325),
- [anon_sym_import] = ACTIONS(2325),
- [anon_sym_with] = ACTIONS(2325),
- [anon_sym_var] = ACTIONS(2325),
- [anon_sym_let] = ACTIONS(2325),
- [anon_sym_const] = ACTIONS(2325),
- [anon_sym_BANG] = ACTIONS(2323),
- [anon_sym_else] = ACTIONS(2325),
- [anon_sym_if] = ACTIONS(2325),
- [anon_sym_switch] = ACTIONS(2325),
- [anon_sym_for] = ACTIONS(2325),
- [anon_sym_LPAREN] = ACTIONS(2323),
- [anon_sym_RPAREN] = ACTIONS(2323),
- [anon_sym_await] = ACTIONS(2325),
- [anon_sym_while] = ACTIONS(2325),
- [anon_sym_do] = ACTIONS(2325),
- [anon_sym_try] = ACTIONS(2325),
- [anon_sym_break] = ACTIONS(2325),
- [anon_sym_continue] = ACTIONS(2325),
- [anon_sym_debugger] = ACTIONS(2325),
- [anon_sym_return] = ACTIONS(2325),
- [anon_sym_throw] = ACTIONS(2325),
- [anon_sym_SEMI] = ACTIONS(2323),
- [anon_sym_COLON] = ACTIONS(2323),
- [anon_sym_case] = ACTIONS(2325),
- [anon_sym_yield] = ACTIONS(2325),
- [anon_sym_LBRACK] = ACTIONS(2323),
- [anon_sym_RBRACK] = ACTIONS(2323),
- [sym_glimmer_opening_tag] = ACTIONS(2323),
- [anon_sym_GT] = ACTIONS(2323),
- [anon_sym_DQUOTE] = ACTIONS(2323),
- [anon_sym_SQUOTE] = ACTIONS(2323),
- [anon_sym_class] = ACTIONS(2325),
- [anon_sym_async] = ACTIONS(2325),
- [anon_sym_function] = ACTIONS(2325),
- [anon_sym_EQ_GT] = ACTIONS(2323),
- [anon_sym_new] = ACTIONS(2325),
- [anon_sym_using] = ACTIONS(2325),
- [anon_sym_AMP] = ACTIONS(2323),
- [anon_sym_PIPE] = ACTIONS(2323),
- [anon_sym_PLUS] = ACTIONS(2325),
- [anon_sym_DASH] = ACTIONS(2325),
- [anon_sym_SLASH] = ACTIONS(2325),
- [anon_sym_LT] = ACTIONS(2325),
- [anon_sym_TILDE] = ACTIONS(2323),
- [anon_sym_void] = ACTIONS(2325),
- [anon_sym_delete] = ACTIONS(2325),
- [anon_sym_PLUS_PLUS] = ACTIONS(2323),
- [anon_sym_DASH_DASH] = ACTIONS(2323),
- [sym_comment] = ACTIONS(5),
- [anon_sym_BQUOTE] = ACTIONS(2323),
- [sym_number] = ACTIONS(2323),
- [sym_private_property_identifier] = ACTIONS(2323),
- [sym_this] = ACTIONS(2325),
- [sym_super] = ACTIONS(2325),
- [sym_true] = ACTIONS(2325),
- [sym_false] = ACTIONS(2325),
- [sym_null] = ACTIONS(2325),
- [sym_undefined] = ACTIONS(2325),
- [anon_sym_AT] = ACTIONS(2323),
- [anon_sym_static] = ACTIONS(2325),
- [anon_sym_readonly] = ACTIONS(2325),
- [anon_sym_get] = ACTIONS(2325),
- [anon_sym_set] = ACTIONS(2325),
- [anon_sym_QMARK] = ACTIONS(2323),
- [anon_sym_declare] = ACTIONS(2325),
- [anon_sym_public] = ACTIONS(2325),
- [anon_sym_private] = ACTIONS(2325),
- [anon_sym_protected] = ACTIONS(2325),
- [anon_sym_override] = ACTIONS(2325),
- [anon_sym_module] = ACTIONS(2325),
- [anon_sym_any] = ACTIONS(2325),
- [anon_sym_number] = ACTIONS(2325),
- [anon_sym_boolean] = ACTIONS(2325),
- [anon_sym_string] = ACTIONS(2325),
- [anon_sym_symbol] = ACTIONS(2325),
- [anon_sym_object] = ACTIONS(2325),
- [anon_sym_abstract] = ACTIONS(2325),
- [anon_sym_extends] = ACTIONS(2325),
- [anon_sym_interface] = ACTIONS(2325),
- [anon_sym_enum] = ACTIONS(2325),
- [sym_html_comment] = ACTIONS(5),
- },
- [654] = {
- [ts_builtin_sym_end] = ACTIONS(2327),
- [sym_identifier] = ACTIONS(2329),
- [anon_sym_export] = ACTIONS(2329),
- [anon_sym_default] = ACTIONS(2329),
- [anon_sym_type] = ACTIONS(2329),
- [anon_sym_EQ] = ACTIONS(2329),
- [anon_sym_namespace] = ACTIONS(2329),
- [anon_sym_LBRACE] = ACTIONS(2327),
- [anon_sym_COMMA] = ACTIONS(2327),
- [anon_sym_RBRACE] = ACTIONS(2327),
- [anon_sym_typeof] = ACTIONS(2329),
- [anon_sym_import] = ACTIONS(2329),
- [anon_sym_with] = ACTIONS(2329),
- [anon_sym_var] = ACTIONS(2329),
- [anon_sym_let] = ACTIONS(2329),
- [anon_sym_const] = ACTIONS(2329),
- [anon_sym_BANG] = ACTIONS(2327),
- [anon_sym_else] = ACTIONS(2329),
- [anon_sym_if] = ACTIONS(2329),
- [anon_sym_switch] = ACTIONS(2329),
- [anon_sym_for] = ACTIONS(2329),
- [anon_sym_LPAREN] = ACTIONS(2327),
- [anon_sym_RPAREN] = ACTIONS(2327),
- [anon_sym_await] = ACTIONS(2329),
- [anon_sym_while] = ACTIONS(2329),
- [anon_sym_do] = ACTIONS(2329),
- [anon_sym_try] = ACTIONS(2329),
- [anon_sym_break] = ACTIONS(2329),
- [anon_sym_continue] = ACTIONS(2329),
- [anon_sym_debugger] = ACTIONS(2329),
- [anon_sym_return] = ACTIONS(2329),
- [anon_sym_throw] = ACTIONS(2329),
- [anon_sym_SEMI] = ACTIONS(2327),
- [anon_sym_COLON] = ACTIONS(2327),
- [anon_sym_case] = ACTIONS(2329),
- [anon_sym_yield] = ACTIONS(2329),
- [anon_sym_LBRACK] = ACTIONS(2327),
- [anon_sym_RBRACK] = ACTIONS(2327),
- [sym_glimmer_opening_tag] = ACTIONS(2327),
- [anon_sym_GT] = ACTIONS(2327),
- [anon_sym_DQUOTE] = ACTIONS(2327),
- [anon_sym_SQUOTE] = ACTIONS(2327),
- [anon_sym_class] = ACTIONS(2329),
- [anon_sym_async] = ACTIONS(2329),
- [anon_sym_function] = ACTIONS(2329),
- [anon_sym_EQ_GT] = ACTIONS(2327),
- [anon_sym_new] = ACTIONS(2329),
- [anon_sym_using] = ACTIONS(2329),
- [anon_sym_AMP] = ACTIONS(2327),
- [anon_sym_PIPE] = ACTIONS(2327),
- [anon_sym_PLUS] = ACTIONS(2329),
- [anon_sym_DASH] = ACTIONS(2329),
- [anon_sym_SLASH] = ACTIONS(2329),
- [anon_sym_LT] = ACTIONS(2329),
- [anon_sym_TILDE] = ACTIONS(2327),
- [anon_sym_void] = ACTIONS(2329),
- [anon_sym_delete] = ACTIONS(2329),
- [anon_sym_PLUS_PLUS] = ACTIONS(2327),
- [anon_sym_DASH_DASH] = ACTIONS(2327),
- [sym_comment] = ACTIONS(5),
- [anon_sym_BQUOTE] = ACTIONS(2327),
- [sym_number] = ACTIONS(2327),
- [sym_private_property_identifier] = ACTIONS(2327),
- [sym_this] = ACTIONS(2329),
- [sym_super] = ACTIONS(2329),
- [sym_true] = ACTIONS(2329),
- [sym_false] = ACTIONS(2329),
- [sym_null] = ACTIONS(2329),
- [sym_undefined] = ACTIONS(2329),
- [anon_sym_AT] = ACTIONS(2327),
- [anon_sym_static] = ACTIONS(2329),
- [anon_sym_readonly] = ACTIONS(2329),
- [anon_sym_get] = ACTIONS(2329),
- [anon_sym_set] = ACTIONS(2329),
- [anon_sym_QMARK] = ACTIONS(2327),
- [anon_sym_declare] = ACTIONS(2329),
- [anon_sym_public] = ACTIONS(2329),
- [anon_sym_private] = ACTIONS(2329),
- [anon_sym_protected] = ACTIONS(2329),
- [anon_sym_override] = ACTIONS(2329),
- [anon_sym_module] = ACTIONS(2329),
- [anon_sym_any] = ACTIONS(2329),
- [anon_sym_number] = ACTIONS(2329),
- [anon_sym_boolean] = ACTIONS(2329),
- [anon_sym_string] = ACTIONS(2329),
- [anon_sym_symbol] = ACTIONS(2329),
- [anon_sym_object] = ACTIONS(2329),
- [anon_sym_abstract] = ACTIONS(2329),
- [anon_sym_extends] = ACTIONS(2329),
- [anon_sym_interface] = ACTIONS(2329),
- [anon_sym_enum] = ACTIONS(2329),
- [sym_html_comment] = ACTIONS(5),
- },
- [655] = {
- [sym_declaration] = STATE(819),
- [sym_variable_declaration] = STATE(861),
- [sym_lexical_declaration] = STATE(861),
- [sym_class_declaration] = STATE(861),
- [sym_function_declaration] = STATE(861),
- [sym_generator_function_declaration] = STATE(861),
- [sym_decorator] = STATE(1244),
- [sym_function_signature] = STATE(861),
- [sym_ambient_declaration] = STATE(861),
- [sym_abstract_class_declaration] = STATE(861),
- [sym_module] = STATE(861),
- [sym_internal_module] = STATE(860),
- [sym_import_alias] = STATE(861),
- [sym_interface_declaration] = STATE(861),
- [sym_enum_declaration] = STATE(861),
- [sym_type_alias_declaration] = STATE(861),
- [aux_sym_export_statement_repeat1] = STATE(4270),
- [anon_sym_STAR] = ACTIONS(122),
- [anon_sym_type] = ACTIONS(2289),
- [anon_sym_EQ] = ACTIONS(859),
- [anon_sym_as] = ACTIONS(122),
- [anon_sym_namespace] = ACTIONS(2227),
- [anon_sym_COMMA] = ACTIONS(162),
- [anon_sym_import] = ACTIONS(2231),
- [anon_sym_var] = ACTIONS(2233),
- [anon_sym_let] = ACTIONS(2235),
- [anon_sym_const] = ACTIONS(2237),
- [anon_sym_BANG] = ACTIONS(122),
- [anon_sym_LPAREN] = ACTIONS(162),
- [anon_sym_in] = ACTIONS(122),
- [anon_sym_SEMI] = ACTIONS(162),
- [anon_sym_COLON] = ACTIONS(884),
- [anon_sym_LBRACK] = ACTIONS(162),
- [anon_sym_GT] = ACTIONS(122),
- [anon_sym_DOT] = ACTIONS(162),
- [anon_sym_class] = ACTIONS(2242),
- [anon_sym_async] = ACTIONS(2244),
- [anon_sym_function] = ACTIONS(2246),
- [anon_sym_EQ_GT] = ACTIONS(715),
- [anon_sym_QMARK_DOT] = ACTIONS(162),
- [anon_sym_PLUS_EQ] = ACTIONS(168),
- [anon_sym_DASH_EQ] = ACTIONS(168),
- [anon_sym_STAR_EQ] = ACTIONS(168),
- [anon_sym_SLASH_EQ] = ACTIONS(168),
- [anon_sym_PERCENT_EQ] = ACTIONS(168),
- [anon_sym_CARET_EQ] = ACTIONS(168),
- [anon_sym_AMP_EQ] = ACTIONS(168),
- [anon_sym_PIPE_EQ] = ACTIONS(168),
- [anon_sym_GT_GT_EQ] = ACTIONS(168),
- [anon_sym_GT_GT_GT_EQ] = ACTIONS(168),
- [anon_sym_LT_LT_EQ] = ACTIONS(168),
- [anon_sym_STAR_STAR_EQ] = ACTIONS(168),
- [anon_sym_AMP_AMP_EQ] = ACTIONS(168),
- [anon_sym_PIPE_PIPE_EQ] = ACTIONS(168),
- [anon_sym_QMARK_QMARK_EQ] = ACTIONS(168),
- [anon_sym_AMP_AMP] = ACTIONS(122),
- [anon_sym_PIPE_PIPE] = ACTIONS(122),
- [anon_sym_GT_GT] = ACTIONS(122),
- [anon_sym_GT_GT_GT] = ACTIONS(122),
- [anon_sym_LT_LT] = ACTIONS(122),
- [anon_sym_AMP] = ACTIONS(122),
- [anon_sym_CARET] = ACTIONS(122),
- [anon_sym_PIPE] = ACTIONS(122),
- [anon_sym_PLUS] = ACTIONS(122),
- [anon_sym_DASH] = ACTIONS(122),
- [anon_sym_SLASH] = ACTIONS(122),
- [anon_sym_PERCENT] = ACTIONS(122),
- [anon_sym_STAR_STAR] = ACTIONS(122),
- [anon_sym_LT] = ACTIONS(122),
- [anon_sym_LT_EQ] = ACTIONS(162),
- [anon_sym_EQ_EQ] = ACTIONS(122),
- [anon_sym_EQ_EQ_EQ] = ACTIONS(162),
- [anon_sym_BANG_EQ] = ACTIONS(122),
- [anon_sym_BANG_EQ_EQ] = ACTIONS(162),
- [anon_sym_GT_EQ] = ACTIONS(162),
- [anon_sym_QMARK_QMARK] = ACTIONS(122),
- [anon_sym_instanceof] = ACTIONS(162),
- [anon_sym_PLUS_PLUS] = ACTIONS(162),
- [anon_sym_DASH_DASH] = ACTIONS(162),
- [sym_comment] = ACTIONS(5),
- [anon_sym_BQUOTE] = ACTIONS(162),
- [anon_sym_AT] = ACTIONS(99),
- [anon_sym_declare] = ACTIONS(2251),
- [anon_sym_module] = ACTIONS(2291),
- [anon_sym_abstract] = ACTIONS(2255),
- [anon_sym_satisfies] = ACTIONS(162),
- [anon_sym_global] = ACTIONS(2293),
- [anon_sym_interface] = ACTIONS(2257),
- [anon_sym_enum] = ACTIONS(2259),
- [sym__automatic_semicolon] = ACTIONS(162),
- [sym__ternary_qmark] = ACTIONS(162),
- [sym_html_comment] = ACTIONS(5),
- },
- [656] = {
- [ts_builtin_sym_end] = ACTIONS(2331),
- [sym_identifier] = ACTIONS(2333),
- [anon_sym_export] = ACTIONS(2333),
- [anon_sym_default] = ACTIONS(2333),
- [anon_sym_type] = ACTIONS(2333),
- [anon_sym_EQ] = ACTIONS(2333),
- [anon_sym_namespace] = ACTIONS(2333),
- [anon_sym_LBRACE] = ACTIONS(2331),
- [anon_sym_COMMA] = ACTIONS(2331),
- [anon_sym_RBRACE] = ACTIONS(2331),
- [anon_sym_typeof] = ACTIONS(2333),
- [anon_sym_import] = ACTIONS(2333),
- [anon_sym_with] = ACTIONS(2333),
- [anon_sym_var] = ACTIONS(2333),
- [anon_sym_let] = ACTIONS(2333),
- [anon_sym_const] = ACTIONS(2333),
- [anon_sym_BANG] = ACTIONS(2331),
- [anon_sym_else] = ACTIONS(2333),
- [anon_sym_if] = ACTIONS(2333),
- [anon_sym_switch] = ACTIONS(2333),
- [anon_sym_for] = ACTIONS(2333),
- [anon_sym_LPAREN] = ACTIONS(2331),
- [anon_sym_RPAREN] = ACTIONS(2331),
- [anon_sym_await] = ACTIONS(2333),
- [anon_sym_while] = ACTIONS(2333),
- [anon_sym_do] = ACTIONS(2333),
- [anon_sym_try] = ACTIONS(2333),
- [anon_sym_break] = ACTIONS(2333),
- [anon_sym_continue] = ACTIONS(2333),
- [anon_sym_debugger] = ACTIONS(2333),
- [anon_sym_return] = ACTIONS(2333),
- [anon_sym_throw] = ACTIONS(2333),
- [anon_sym_SEMI] = ACTIONS(2331),
- [anon_sym_COLON] = ACTIONS(2331),
- [anon_sym_case] = ACTIONS(2333),
- [anon_sym_yield] = ACTIONS(2333),
- [anon_sym_LBRACK] = ACTIONS(2331),
- [anon_sym_RBRACK] = ACTIONS(2331),
- [sym_glimmer_opening_tag] = ACTIONS(2331),
- [anon_sym_GT] = ACTIONS(2331),
- [anon_sym_DQUOTE] = ACTIONS(2331),
- [anon_sym_SQUOTE] = ACTIONS(2331),
- [anon_sym_class] = ACTIONS(2333),
- [anon_sym_async] = ACTIONS(2333),
- [anon_sym_function] = ACTIONS(2333),
- [anon_sym_EQ_GT] = ACTIONS(2331),
- [anon_sym_new] = ACTIONS(2333),
- [anon_sym_using] = ACTIONS(2333),
- [anon_sym_AMP] = ACTIONS(2331),
- [anon_sym_PIPE] = ACTIONS(2331),
- [anon_sym_PLUS] = ACTIONS(2333),
- [anon_sym_DASH] = ACTIONS(2333),
- [anon_sym_SLASH] = ACTIONS(2333),
- [anon_sym_LT] = ACTIONS(2333),
- [anon_sym_TILDE] = ACTIONS(2331),
- [anon_sym_void] = ACTIONS(2333),
- [anon_sym_delete] = ACTIONS(2333),
- [anon_sym_PLUS_PLUS] = ACTIONS(2331),
- [anon_sym_DASH_DASH] = ACTIONS(2331),
- [sym_comment] = ACTIONS(5),
- [anon_sym_BQUOTE] = ACTIONS(2331),
- [sym_number] = ACTIONS(2331),
- [sym_private_property_identifier] = ACTIONS(2331),
- [sym_this] = ACTIONS(2333),
- [sym_super] = ACTIONS(2333),
- [sym_true] = ACTIONS(2333),
- [sym_false] = ACTIONS(2333),
- [sym_null] = ACTIONS(2333),
- [sym_undefined] = ACTIONS(2333),
- [anon_sym_AT] = ACTIONS(2331),
- [anon_sym_static] = ACTIONS(2333),
- [anon_sym_readonly] = ACTIONS(2333),
- [anon_sym_get] = ACTIONS(2333),
- [anon_sym_set] = ACTIONS(2333),
- [anon_sym_QMARK] = ACTIONS(2331),
- [anon_sym_declare] = ACTIONS(2333),
- [anon_sym_public] = ACTIONS(2333),
- [anon_sym_private] = ACTIONS(2333),
- [anon_sym_protected] = ACTIONS(2333),
- [anon_sym_override] = ACTIONS(2333),
- [anon_sym_module] = ACTIONS(2333),
- [anon_sym_any] = ACTIONS(2333),
- [anon_sym_number] = ACTIONS(2333),
- [anon_sym_boolean] = ACTIONS(2333),
- [anon_sym_string] = ACTIONS(2333),
- [anon_sym_symbol] = ACTIONS(2333),
- [anon_sym_object] = ACTIONS(2333),
- [anon_sym_abstract] = ACTIONS(2333),
- [anon_sym_extends] = ACTIONS(2333),
- [anon_sym_interface] = ACTIONS(2333),
- [anon_sym_enum] = ACTIONS(2333),
- [sym_html_comment] = ACTIONS(5),
- },
- [657] = {
- [sym_declaration] = STATE(819),
- [sym_variable_declaration] = STATE(861),
- [sym_lexical_declaration] = STATE(861),
- [sym_class_declaration] = STATE(861),
- [sym_function_declaration] = STATE(861),
- [sym_generator_function_declaration] = STATE(861),
- [sym_decorator] = STATE(1244),
- [sym_function_signature] = STATE(861),
- [sym_ambient_declaration] = STATE(861),
- [sym_abstract_class_declaration] = STATE(861),
- [sym_module] = STATE(861),
- [sym_internal_module] = STATE(860),
- [sym_import_alias] = STATE(861),
- [sym_interface_declaration] = STATE(861),
- [sym_enum_declaration] = STATE(861),
- [sym_type_alias_declaration] = STATE(861),
- [aux_sym_export_statement_repeat1] = STATE(4270),
- [anon_sym_STAR] = ACTIONS(122),
- [anon_sym_type] = ACTIONS(2289),
- [anon_sym_EQ] = ACTIONS(859),
- [anon_sym_as] = ACTIONS(122),
- [anon_sym_namespace] = ACTIONS(2227),
- [anon_sym_COMMA] = ACTIONS(162),
- [anon_sym_import] = ACTIONS(2231),
- [anon_sym_var] = ACTIONS(2233),
- [anon_sym_let] = ACTIONS(2235),
- [anon_sym_const] = ACTIONS(2237),
- [anon_sym_BANG] = ACTIONS(122),
- [anon_sym_LPAREN] = ACTIONS(162),
- [anon_sym_in] = ACTIONS(122),
- [anon_sym_SEMI] = ACTIONS(162),
- [anon_sym_COLON] = ACTIONS(886),
- [anon_sym_LBRACK] = ACTIONS(162),
- [anon_sym_GT] = ACTIONS(122),
- [anon_sym_DOT] = ACTIONS(162),
- [anon_sym_class] = ACTIONS(2242),
- [anon_sym_async] = ACTIONS(2244),
- [anon_sym_function] = ACTIONS(2246),
- [anon_sym_EQ_GT] = ACTIONS(715),
- [anon_sym_QMARK_DOT] = ACTIONS(162),
- [anon_sym_PLUS_EQ] = ACTIONS(168),
- [anon_sym_DASH_EQ] = ACTIONS(168),
- [anon_sym_STAR_EQ] = ACTIONS(168),
- [anon_sym_SLASH_EQ] = ACTIONS(168),
- [anon_sym_PERCENT_EQ] = ACTIONS(168),
- [anon_sym_CARET_EQ] = ACTIONS(168),
- [anon_sym_AMP_EQ] = ACTIONS(168),
- [anon_sym_PIPE_EQ] = ACTIONS(168),
- [anon_sym_GT_GT_EQ] = ACTIONS(168),
- [anon_sym_GT_GT_GT_EQ] = ACTIONS(168),
- [anon_sym_LT_LT_EQ] = ACTIONS(168),
- [anon_sym_STAR_STAR_EQ] = ACTIONS(168),
- [anon_sym_AMP_AMP_EQ] = ACTIONS(168),
- [anon_sym_PIPE_PIPE_EQ] = ACTIONS(168),
- [anon_sym_QMARK_QMARK_EQ] = ACTIONS(168),
- [anon_sym_AMP_AMP] = ACTIONS(122),
- [anon_sym_PIPE_PIPE] = ACTIONS(122),
- [anon_sym_GT_GT] = ACTIONS(122),
- [anon_sym_GT_GT_GT] = ACTIONS(122),
- [anon_sym_LT_LT] = ACTIONS(122),
- [anon_sym_AMP] = ACTIONS(122),
- [anon_sym_CARET] = ACTIONS(122),
- [anon_sym_PIPE] = ACTIONS(122),
- [anon_sym_PLUS] = ACTIONS(122),
- [anon_sym_DASH] = ACTIONS(122),
- [anon_sym_SLASH] = ACTIONS(122),
- [anon_sym_PERCENT] = ACTIONS(122),
- [anon_sym_STAR_STAR] = ACTIONS(122),
- [anon_sym_LT] = ACTIONS(122),
- [anon_sym_LT_EQ] = ACTIONS(162),
- [anon_sym_EQ_EQ] = ACTIONS(122),
- [anon_sym_EQ_EQ_EQ] = ACTIONS(162),
- [anon_sym_BANG_EQ] = ACTIONS(122),
- [anon_sym_BANG_EQ_EQ] = ACTIONS(162),
- [anon_sym_GT_EQ] = ACTIONS(162),
- [anon_sym_QMARK_QMARK] = ACTIONS(122),
- [anon_sym_instanceof] = ACTIONS(162),
- [anon_sym_PLUS_PLUS] = ACTIONS(162),
- [anon_sym_DASH_DASH] = ACTIONS(162),
- [sym_comment] = ACTIONS(5),
- [anon_sym_BQUOTE] = ACTIONS(162),
- [anon_sym_AT] = ACTIONS(99),
- [anon_sym_declare] = ACTIONS(2251),
- [anon_sym_module] = ACTIONS(2291),
- [anon_sym_abstract] = ACTIONS(2255),
- [anon_sym_satisfies] = ACTIONS(162),
- [anon_sym_global] = ACTIONS(2293),
- [anon_sym_interface] = ACTIONS(2257),
- [anon_sym_enum] = ACTIONS(2259),
- [sym__automatic_semicolon] = ACTIONS(162),
- [sym__ternary_qmark] = ACTIONS(162),
- [sym_html_comment] = ACTIONS(5),
- },
- [658] = {
- [ts_builtin_sym_end] = ACTIONS(2335),
- [sym_identifier] = ACTIONS(2337),
- [anon_sym_export] = ACTIONS(2337),
- [anon_sym_default] = ACTIONS(2337),
- [anon_sym_type] = ACTIONS(2337),
- [anon_sym_EQ] = ACTIONS(2337),
- [anon_sym_namespace] = ACTIONS(2337),
- [anon_sym_LBRACE] = ACTIONS(2335),
- [anon_sym_COMMA] = ACTIONS(2335),
- [anon_sym_RBRACE] = ACTIONS(2335),
- [anon_sym_typeof] = ACTIONS(2337),
- [anon_sym_import] = ACTIONS(2337),
- [anon_sym_with] = ACTIONS(2337),
- [anon_sym_var] = ACTIONS(2337),
- [anon_sym_let] = ACTIONS(2337),
- [anon_sym_const] = ACTIONS(2337),
- [anon_sym_BANG] = ACTIONS(2335),
- [anon_sym_else] = ACTIONS(2337),
- [anon_sym_if] = ACTIONS(2337),
- [anon_sym_switch] = ACTIONS(2337),
- [anon_sym_for] = ACTIONS(2337),
- [anon_sym_LPAREN] = ACTIONS(2335),
- [anon_sym_RPAREN] = ACTIONS(2335),
- [anon_sym_await] = ACTIONS(2337),
- [anon_sym_while] = ACTIONS(2337),
- [anon_sym_do] = ACTIONS(2337),
- [anon_sym_try] = ACTIONS(2337),
- [anon_sym_break] = ACTIONS(2337),
- [anon_sym_continue] = ACTIONS(2337),
- [anon_sym_debugger] = ACTIONS(2337),
- [anon_sym_return] = ACTIONS(2337),
- [anon_sym_throw] = ACTIONS(2337),
- [anon_sym_SEMI] = ACTIONS(2335),
- [anon_sym_COLON] = ACTIONS(2335),
- [anon_sym_case] = ACTIONS(2337),
- [anon_sym_yield] = ACTIONS(2337),
- [anon_sym_LBRACK] = ACTIONS(2335),
- [anon_sym_RBRACK] = ACTIONS(2335),
- [sym_glimmer_opening_tag] = ACTIONS(2335),
- [anon_sym_GT] = ACTIONS(2335),
- [anon_sym_DQUOTE] = ACTIONS(2335),
- [anon_sym_SQUOTE] = ACTIONS(2335),
- [anon_sym_class] = ACTIONS(2337),
- [anon_sym_async] = ACTIONS(2337),
- [anon_sym_function] = ACTIONS(2337),
- [anon_sym_EQ_GT] = ACTIONS(2335),
- [anon_sym_new] = ACTIONS(2337),
- [anon_sym_using] = ACTIONS(2337),
- [anon_sym_AMP] = ACTIONS(2335),
- [anon_sym_PIPE] = ACTIONS(2335),
- [anon_sym_PLUS] = ACTIONS(2337),
- [anon_sym_DASH] = ACTIONS(2337),
- [anon_sym_SLASH] = ACTIONS(2337),
- [anon_sym_LT] = ACTIONS(2337),
- [anon_sym_TILDE] = ACTIONS(2335),
- [anon_sym_void] = ACTIONS(2337),
- [anon_sym_delete] = ACTIONS(2337),
- [anon_sym_PLUS_PLUS] = ACTIONS(2335),
- [anon_sym_DASH_DASH] = ACTIONS(2335),
- [sym_comment] = ACTIONS(5),
- [anon_sym_BQUOTE] = ACTIONS(2335),
- [sym_number] = ACTIONS(2335),
- [sym_private_property_identifier] = ACTIONS(2335),
- [sym_this] = ACTIONS(2337),
- [sym_super] = ACTIONS(2337),
- [sym_true] = ACTIONS(2337),
- [sym_false] = ACTIONS(2337),
- [sym_null] = ACTIONS(2337),
- [sym_undefined] = ACTIONS(2337),
- [anon_sym_AT] = ACTIONS(2335),
- [anon_sym_static] = ACTIONS(2337),
- [anon_sym_readonly] = ACTIONS(2337),
- [anon_sym_get] = ACTIONS(2337),
- [anon_sym_set] = ACTIONS(2337),
- [anon_sym_QMARK] = ACTIONS(2335),
- [anon_sym_declare] = ACTIONS(2337),
- [anon_sym_public] = ACTIONS(2337),
- [anon_sym_private] = ACTIONS(2337),
- [anon_sym_protected] = ACTIONS(2337),
- [anon_sym_override] = ACTIONS(2337),
- [anon_sym_module] = ACTIONS(2337),
- [anon_sym_any] = ACTIONS(2337),
- [anon_sym_number] = ACTIONS(2337),
- [anon_sym_boolean] = ACTIONS(2337),
- [anon_sym_string] = ACTIONS(2337),
- [anon_sym_symbol] = ACTIONS(2337),
- [anon_sym_object] = ACTIONS(2337),
- [anon_sym_abstract] = ACTIONS(2337),
- [anon_sym_extends] = ACTIONS(2337),
- [anon_sym_interface] = ACTIONS(2337),
- [anon_sym_enum] = ACTIONS(2337),
- [sym_html_comment] = ACTIONS(5),
- },
- [659] = {
- [aux_sym_object_repeat1] = STATE(4671),
- [aux_sym_object_pattern_repeat1] = STATE(4672),
- [sym_identifier] = ACTIONS(2001),
- [anon_sym_export] = ACTIONS(2001),
- [anon_sym_STAR] = ACTIONS(2001),
- [anon_sym_type] = ACTIONS(2001),
- [anon_sym_EQ] = ACTIONS(696),
- [anon_sym_as] = ACTIONS(122),
- [anon_sym_namespace] = ACTIONS(2001),
- [anon_sym_COMMA] = ACTIONS(162),
- [anon_sym_RBRACE] = ACTIONS(727),
- [anon_sym_let] = ACTIONS(2001),
- [anon_sym_BANG] = ACTIONS(122),
- [anon_sym_LPAREN] = ACTIONS(2239),
- [anon_sym_in] = ACTIONS(122),
- [anon_sym_SEMI] = ACTIONS(162),
- [anon_sym_COLON] = ACTIONS(704),
- [anon_sym_LBRACK] = ACTIONS(2003),
- [anon_sym_GT] = ACTIONS(122),
- [anon_sym_DOT] = ACTIONS(122),
- [anon_sym_DQUOTE] = ACTIONS(2003),
- [anon_sym_SQUOTE] = ACTIONS(2003),
- [anon_sym_async] = ACTIONS(2001),
- [anon_sym_EQ_GT] = ACTIONS(715),
- [anon_sym_QMARK_DOT] = ACTIONS(162),
- [anon_sym_new] = ACTIONS(2001),
- [anon_sym_PLUS_EQ] = ACTIONS(168),
- [anon_sym_DASH_EQ] = ACTIONS(168),
- [anon_sym_STAR_EQ] = ACTIONS(168),
- [anon_sym_SLASH_EQ] = ACTIONS(168),
- [anon_sym_PERCENT_EQ] = ACTIONS(168),
- [anon_sym_CARET_EQ] = ACTIONS(168),
- [anon_sym_AMP_EQ] = ACTIONS(168),
- [anon_sym_PIPE_EQ] = ACTIONS(168),
- [anon_sym_GT_GT_EQ] = ACTIONS(168),
- [anon_sym_GT_GT_GT_EQ] = ACTIONS(168),
- [anon_sym_LT_LT_EQ] = ACTIONS(168),
- [anon_sym_STAR_STAR_EQ] = ACTIONS(168),
- [anon_sym_AMP_AMP_EQ] = ACTIONS(168),
- [anon_sym_PIPE_PIPE_EQ] = ACTIONS(168),
- [anon_sym_QMARK_QMARK_EQ] = ACTIONS(168),
- [anon_sym_AMP_AMP] = ACTIONS(122),
- [anon_sym_PIPE_PIPE] = ACTIONS(122),
- [anon_sym_GT_GT] = ACTIONS(122),
- [anon_sym_GT_GT_GT] = ACTIONS(122),
- [anon_sym_LT_LT] = ACTIONS(122),
- [anon_sym_AMP] = ACTIONS(122),
- [anon_sym_CARET] = ACTIONS(122),
- [anon_sym_PIPE] = ACTIONS(122),
- [anon_sym_PLUS] = ACTIONS(122),
- [anon_sym_DASH] = ACTIONS(122),
- [anon_sym_SLASH] = ACTIONS(122),
- [anon_sym_PERCENT] = ACTIONS(122),
- [anon_sym_STAR_STAR] = ACTIONS(122),
- [anon_sym_LT] = ACTIONS(2248),
- [anon_sym_LT_EQ] = ACTIONS(162),
- [anon_sym_EQ_EQ] = ACTIONS(122),
- [anon_sym_EQ_EQ_EQ] = ACTIONS(162),
- [anon_sym_BANG_EQ] = ACTIONS(122),
- [anon_sym_BANG_EQ_EQ] = ACTIONS(162),
- [anon_sym_GT_EQ] = ACTIONS(162),
- [anon_sym_QMARK_QMARK] = ACTIONS(122),
- [anon_sym_instanceof] = ACTIONS(122),
- [anon_sym_PLUS_PLUS] = ACTIONS(162),
- [anon_sym_DASH_DASH] = ACTIONS(162),
- [sym_comment] = ACTIONS(5),
- [anon_sym_BQUOTE] = ACTIONS(162),
- [sym_number] = ACTIONS(2003),
- [sym_private_property_identifier] = ACTIONS(2003),
- [anon_sym_static] = ACTIONS(2001),
- [anon_sym_readonly] = ACTIONS(2001),
- [anon_sym_get] = ACTIONS(2001),
- [anon_sym_set] = ACTIONS(2001),
- [anon_sym_QMARK] = ACTIONS(723),
- [anon_sym_declare] = ACTIONS(2001),
- [anon_sym_public] = ACTIONS(2001),
- [anon_sym_private] = ACTIONS(2001),
- [anon_sym_protected] = ACTIONS(2001),
- [anon_sym_override] = ACTIONS(2001),
- [anon_sym_module] = ACTIONS(2001),
- [anon_sym_any] = ACTIONS(2001),
- [anon_sym_number] = ACTIONS(2001),
- [anon_sym_boolean] = ACTIONS(2001),
- [anon_sym_string] = ACTIONS(2001),
- [anon_sym_symbol] = ACTIONS(2001),
- [anon_sym_object] = ACTIONS(2001),
- [anon_sym_satisfies] = ACTIONS(122),
- [sym__automatic_semicolon] = ACTIONS(162),
- [sym__ternary_qmark] = ACTIONS(162),
- [sym_html_comment] = ACTIONS(5),
- },
- [660] = {
- [sym_declaration] = STATE(4369),
- [sym_variable_declaration] = STATE(4336),
- [sym_lexical_declaration] = STATE(4336),
- [sym_class_declaration] = STATE(4336),
- [sym_function_declaration] = STATE(4336),
- [sym_generator_function_declaration] = STATE(4336),
- [sym_decorator] = STATE(1244),
- [sym_function_signature] = STATE(4336),
- [sym_ambient_declaration] = STATE(4336),
- [sym_abstract_class_declaration] = STATE(4336),
- [sym_module] = STATE(4336),
- [sym_internal_module] = STATE(4343),
- [sym_import_alias] = STATE(4336),
- [sym_interface_declaration] = STATE(4336),
- [sym_enum_declaration] = STATE(4336),
- [sym_type_alias_declaration] = STATE(4336),
- [aux_sym_export_statement_repeat1] = STATE(4333),
- [anon_sym_STAR] = ACTIONS(122),
- [anon_sym_type] = ACTIONS(2339),
- [anon_sym_EQ] = ACTIONS(932),
- [anon_sym_as] = ACTIONS(122),
- [anon_sym_namespace] = ACTIONS(2341),
- [anon_sym_import] = ACTIONS(2343),
- [anon_sym_var] = ACTIONS(2345),
- [anon_sym_let] = ACTIONS(2347),
- [anon_sym_const] = ACTIONS(2349),
- [anon_sym_BANG] = ACTIONS(122),
- [anon_sym_LPAREN] = ACTIONS(162),
- [anon_sym_in] = ACTIONS(122),
- [anon_sym_SEMI] = ACTIONS(162),
- [anon_sym_LBRACK] = ACTIONS(162),
- [anon_sym_GT] = ACTIONS(122),
- [anon_sym_DOT] = ACTIONS(162),
- [anon_sym_class] = ACTIONS(2351),
- [anon_sym_async] = ACTIONS(2353),
- [anon_sym_function] = ACTIONS(2355),
- [anon_sym_EQ_GT] = ACTIONS(924),
- [anon_sym_QMARK_DOT] = ACTIONS(162),
- [anon_sym_PLUS_EQ] = ACTIONS(168),
- [anon_sym_DASH_EQ] = ACTIONS(168),
- [anon_sym_STAR_EQ] = ACTIONS(168),
- [anon_sym_SLASH_EQ] = ACTIONS(168),
- [anon_sym_PERCENT_EQ] = ACTIONS(168),
- [anon_sym_CARET_EQ] = ACTIONS(168),
- [anon_sym_AMP_EQ] = ACTIONS(168),
- [anon_sym_PIPE_EQ] = ACTIONS(168),
- [anon_sym_GT_GT_EQ] = ACTIONS(168),
- [anon_sym_GT_GT_GT_EQ] = ACTIONS(168),
- [anon_sym_LT_LT_EQ] = ACTIONS(168),
- [anon_sym_STAR_STAR_EQ] = ACTIONS(168),
- [anon_sym_AMP_AMP_EQ] = ACTIONS(168),
- [anon_sym_PIPE_PIPE_EQ] = ACTIONS(168),
- [anon_sym_QMARK_QMARK_EQ] = ACTIONS(168),
- [anon_sym_AMP_AMP] = ACTIONS(122),
- [anon_sym_PIPE_PIPE] = ACTIONS(122),
- [anon_sym_GT_GT] = ACTIONS(122),
- [anon_sym_GT_GT_GT] = ACTIONS(122),
- [anon_sym_LT_LT] = ACTIONS(122),
- [anon_sym_AMP] = ACTIONS(122),
- [anon_sym_CARET] = ACTIONS(122),
- [anon_sym_PIPE] = ACTIONS(122),
- [anon_sym_PLUS] = ACTIONS(122),
- [anon_sym_DASH] = ACTIONS(122),
- [anon_sym_SLASH] = ACTIONS(122),
- [anon_sym_PERCENT] = ACTIONS(122),
- [anon_sym_STAR_STAR] = ACTIONS(122),
- [anon_sym_LT] = ACTIONS(122),
- [anon_sym_LT_EQ] = ACTIONS(162),
- [anon_sym_EQ_EQ] = ACTIONS(122),
- [anon_sym_EQ_EQ_EQ] = ACTIONS(162),
- [anon_sym_BANG_EQ] = ACTIONS(122),
- [anon_sym_BANG_EQ_EQ] = ACTIONS(162),
- [anon_sym_GT_EQ] = ACTIONS(162),
- [anon_sym_QMARK_QMARK] = ACTIONS(122),
- [anon_sym_instanceof] = ACTIONS(162),
- [anon_sym_PLUS_PLUS] = ACTIONS(162),
- [anon_sym_DASH_DASH] = ACTIONS(162),
- [sym_comment] = ACTIONS(5),
- [anon_sym_BQUOTE] = ACTIONS(162),
- [anon_sym_AT] = ACTIONS(99),
- [anon_sym_declare] = ACTIONS(2357),
- [anon_sym_module] = ACTIONS(2359),
- [anon_sym_abstract] = ACTIONS(2361),
- [anon_sym_satisfies] = ACTIONS(162),
- [anon_sym_global] = ACTIONS(2363),
- [anon_sym_interface] = ACTIONS(2365),
- [anon_sym_enum] = ACTIONS(2367),
- [sym__automatic_semicolon] = ACTIONS(162),
- [sym__ternary_qmark] = ACTIONS(162),
- [sym_html_comment] = ACTIONS(5),
- },
- [661] = {
- [aux_sym_object_repeat1] = STATE(5156),
- [aux_sym_object_pattern_repeat1] = STATE(4672),
- [sym_identifier] = ACTIONS(1991),
- [anon_sym_export] = ACTIONS(1991),
- [anon_sym_STAR] = ACTIONS(1991),
- [anon_sym_type] = ACTIONS(1991),
- [anon_sym_EQ] = ACTIONS(696),
- [anon_sym_as] = ACTIONS(122),
- [anon_sym_namespace] = ACTIONS(1991),
- [anon_sym_COMMA] = ACTIONS(162),
- [anon_sym_RBRACE] = ACTIONS(702),
- [anon_sym_let] = ACTIONS(1991),
- [anon_sym_BANG] = ACTIONS(122),
- [anon_sym_LPAREN] = ACTIONS(2239),
- [anon_sym_in] = ACTIONS(122),
- [anon_sym_SEMI] = ACTIONS(162),
- [anon_sym_COLON] = ACTIONS(704),
- [anon_sym_LBRACK] = ACTIONS(1993),
- [anon_sym_GT] = ACTIONS(122),
- [anon_sym_DOT] = ACTIONS(122),
- [anon_sym_DQUOTE] = ACTIONS(1993),
- [anon_sym_SQUOTE] = ACTIONS(1993),
- [anon_sym_async] = ACTIONS(1991),
- [anon_sym_EQ_GT] = ACTIONS(715),
- [anon_sym_QMARK_DOT] = ACTIONS(162),
- [anon_sym_new] = ACTIONS(1991),
- [anon_sym_PLUS_EQ] = ACTIONS(168),
- [anon_sym_DASH_EQ] = ACTIONS(168),
- [anon_sym_STAR_EQ] = ACTIONS(168),
- [anon_sym_SLASH_EQ] = ACTIONS(168),
- [anon_sym_PERCENT_EQ] = ACTIONS(168),
- [anon_sym_CARET_EQ] = ACTIONS(168),
- [anon_sym_AMP_EQ] = ACTIONS(168),
- [anon_sym_PIPE_EQ] = ACTIONS(168),
- [anon_sym_GT_GT_EQ] = ACTIONS(168),
- [anon_sym_GT_GT_GT_EQ] = ACTIONS(168),
- [anon_sym_LT_LT_EQ] = ACTIONS(168),
- [anon_sym_STAR_STAR_EQ] = ACTIONS(168),
- [anon_sym_AMP_AMP_EQ] = ACTIONS(168),
- [anon_sym_PIPE_PIPE_EQ] = ACTIONS(168),
- [anon_sym_QMARK_QMARK_EQ] = ACTIONS(168),
- [anon_sym_AMP_AMP] = ACTIONS(122),
- [anon_sym_PIPE_PIPE] = ACTIONS(122),
- [anon_sym_GT_GT] = ACTIONS(122),
- [anon_sym_GT_GT_GT] = ACTIONS(122),
- [anon_sym_LT_LT] = ACTIONS(122),
- [anon_sym_AMP] = ACTIONS(122),
- [anon_sym_CARET] = ACTIONS(122),
- [anon_sym_PIPE] = ACTIONS(122),
- [anon_sym_PLUS] = ACTIONS(122),
- [anon_sym_DASH] = ACTIONS(122),
- [anon_sym_SLASH] = ACTIONS(122),
- [anon_sym_PERCENT] = ACTIONS(122),
- [anon_sym_STAR_STAR] = ACTIONS(122),
- [anon_sym_LT] = ACTIONS(2248),
- [anon_sym_LT_EQ] = ACTIONS(162),
- [anon_sym_EQ_EQ] = ACTIONS(122),
- [anon_sym_EQ_EQ_EQ] = ACTIONS(162),
- [anon_sym_BANG_EQ] = ACTIONS(122),
- [anon_sym_BANG_EQ_EQ] = ACTIONS(162),
- [anon_sym_GT_EQ] = ACTIONS(162),
- [anon_sym_QMARK_QMARK] = ACTIONS(122),
- [anon_sym_instanceof] = ACTIONS(122),
- [anon_sym_PLUS_PLUS] = ACTIONS(162),
- [anon_sym_DASH_DASH] = ACTIONS(162),
- [sym_comment] = ACTIONS(5),
- [anon_sym_BQUOTE] = ACTIONS(162),
- [sym_number] = ACTIONS(1993),
- [sym_private_property_identifier] = ACTIONS(1993),
- [anon_sym_static] = ACTIONS(1991),
- [anon_sym_readonly] = ACTIONS(1991),
- [anon_sym_get] = ACTIONS(1991),
- [anon_sym_set] = ACTIONS(1991),
- [anon_sym_QMARK] = ACTIONS(723),
- [anon_sym_declare] = ACTIONS(1991),
- [anon_sym_public] = ACTIONS(1991),
- [anon_sym_private] = ACTIONS(1991),
- [anon_sym_protected] = ACTIONS(1991),
- [anon_sym_override] = ACTIONS(1991),
- [anon_sym_module] = ACTIONS(1991),
- [anon_sym_any] = ACTIONS(1991),
- [anon_sym_number] = ACTIONS(1991),
- [anon_sym_boolean] = ACTIONS(1991),
- [anon_sym_string] = ACTIONS(1991),
- [anon_sym_symbol] = ACTIONS(1991),
- [anon_sym_object] = ACTIONS(1991),
- [anon_sym_satisfies] = ACTIONS(122),
- [sym__automatic_semicolon] = ACTIONS(162),
- [sym__ternary_qmark] = ACTIONS(162),
- [sym_html_comment] = ACTIONS(5),
- },
- [662] = {
- [aux_sym_object_repeat1] = STATE(5156),
- [aux_sym_object_pattern_repeat1] = STATE(4672),
- [sym_identifier] = ACTIONS(2001),
- [anon_sym_export] = ACTIONS(2001),
- [anon_sym_STAR] = ACTIONS(2001),
- [anon_sym_type] = ACTIONS(2001),
- [anon_sym_EQ] = ACTIONS(696),
- [anon_sym_as] = ACTIONS(122),
- [anon_sym_namespace] = ACTIONS(2001),
- [anon_sym_COMMA] = ACTIONS(162),
- [anon_sym_RBRACE] = ACTIONS(702),
- [anon_sym_let] = ACTIONS(2001),
- [anon_sym_BANG] = ACTIONS(122),
- [anon_sym_LPAREN] = ACTIONS(2239),
- [anon_sym_in] = ACTIONS(122),
- [anon_sym_SEMI] = ACTIONS(162),
- [anon_sym_COLON] = ACTIONS(704),
- [anon_sym_LBRACK] = ACTIONS(2003),
- [anon_sym_GT] = ACTIONS(122),
- [anon_sym_DOT] = ACTIONS(122),
- [anon_sym_DQUOTE] = ACTIONS(2003),
- [anon_sym_SQUOTE] = ACTIONS(2003),
- [anon_sym_async] = ACTIONS(2001),
- [anon_sym_EQ_GT] = ACTIONS(715),
- [anon_sym_QMARK_DOT] = ACTIONS(162),
- [anon_sym_new] = ACTIONS(2001),
- [anon_sym_PLUS_EQ] = ACTIONS(168),
- [anon_sym_DASH_EQ] = ACTIONS(168),
- [anon_sym_STAR_EQ] = ACTIONS(168),
- [anon_sym_SLASH_EQ] = ACTIONS(168),
- [anon_sym_PERCENT_EQ] = ACTIONS(168),
- [anon_sym_CARET_EQ] = ACTIONS(168),
- [anon_sym_AMP_EQ] = ACTIONS(168),
- [anon_sym_PIPE_EQ] = ACTIONS(168),
- [anon_sym_GT_GT_EQ] = ACTIONS(168),
- [anon_sym_GT_GT_GT_EQ] = ACTIONS(168),
- [anon_sym_LT_LT_EQ] = ACTIONS(168),
- [anon_sym_STAR_STAR_EQ] = ACTIONS(168),
- [anon_sym_AMP_AMP_EQ] = ACTIONS(168),
- [anon_sym_PIPE_PIPE_EQ] = ACTIONS(168),
- [anon_sym_QMARK_QMARK_EQ] = ACTIONS(168),
- [anon_sym_AMP_AMP] = ACTIONS(122),
- [anon_sym_PIPE_PIPE] = ACTIONS(122),
- [anon_sym_GT_GT] = ACTIONS(122),
- [anon_sym_GT_GT_GT] = ACTIONS(122),
- [anon_sym_LT_LT] = ACTIONS(122),
- [anon_sym_AMP] = ACTIONS(122),
- [anon_sym_CARET] = ACTIONS(122),
- [anon_sym_PIPE] = ACTIONS(122),
- [anon_sym_PLUS] = ACTIONS(122),
- [anon_sym_DASH] = ACTIONS(122),
- [anon_sym_SLASH] = ACTIONS(122),
- [anon_sym_PERCENT] = ACTIONS(122),
- [anon_sym_STAR_STAR] = ACTIONS(122),
- [anon_sym_LT] = ACTIONS(2248),
- [anon_sym_LT_EQ] = ACTIONS(162),
- [anon_sym_EQ_EQ] = ACTIONS(122),
- [anon_sym_EQ_EQ_EQ] = ACTIONS(162),
- [anon_sym_BANG_EQ] = ACTIONS(122),
- [anon_sym_BANG_EQ_EQ] = ACTIONS(162),
- [anon_sym_GT_EQ] = ACTIONS(162),
- [anon_sym_QMARK_QMARK] = ACTIONS(122),
- [anon_sym_instanceof] = ACTIONS(122),
- [anon_sym_PLUS_PLUS] = ACTIONS(162),
- [anon_sym_DASH_DASH] = ACTIONS(162),
- [sym_comment] = ACTIONS(5),
- [anon_sym_BQUOTE] = ACTIONS(162),
- [sym_number] = ACTIONS(2003),
- [sym_private_property_identifier] = ACTIONS(2003),
- [anon_sym_static] = ACTIONS(2001),
- [anon_sym_readonly] = ACTIONS(2001),
- [anon_sym_get] = ACTIONS(2001),
- [anon_sym_set] = ACTIONS(2001),
- [anon_sym_QMARK] = ACTIONS(723),
- [anon_sym_declare] = ACTIONS(2001),
- [anon_sym_public] = ACTIONS(2001),
- [anon_sym_private] = ACTIONS(2001),
- [anon_sym_protected] = ACTIONS(2001),
- [anon_sym_override] = ACTIONS(2001),
- [anon_sym_module] = ACTIONS(2001),
- [anon_sym_any] = ACTIONS(2001),
- [anon_sym_number] = ACTIONS(2001),
- [anon_sym_boolean] = ACTIONS(2001),
- [anon_sym_string] = ACTIONS(2001),
- [anon_sym_symbol] = ACTIONS(2001),
- [anon_sym_object] = ACTIONS(2001),
- [anon_sym_satisfies] = ACTIONS(122),
- [sym__automatic_semicolon] = ACTIONS(162),
- [sym__ternary_qmark] = ACTIONS(162),
- [sym_html_comment] = ACTIONS(5),
- },
- [663] = {
- [sym_declaration] = STATE(819),
- [sym_variable_declaration] = STATE(861),
- [sym_lexical_declaration] = STATE(861),
- [sym_class_declaration] = STATE(861),
- [sym_function_declaration] = STATE(861),
- [sym_generator_function_declaration] = STATE(861),
- [sym_decorator] = STATE(1244),
- [sym_function_signature] = STATE(861),
- [sym_ambient_declaration] = STATE(861),
- [sym_abstract_class_declaration] = STATE(861),
- [sym_module] = STATE(861),
- [sym_internal_module] = STATE(860),
- [sym_import_alias] = STATE(861),
- [sym_interface_declaration] = STATE(861),
- [sym_enum_declaration] = STATE(861),
- [sym_type_alias_declaration] = STATE(861),
- [aux_sym_export_statement_repeat1] = STATE(4270),
- [anon_sym_STAR] = ACTIONS(122),
- [anon_sym_type] = ACTIONS(2289),
- [anon_sym_EQ] = ACTIONS(932),
- [anon_sym_as] = ACTIONS(122),
- [anon_sym_namespace] = ACTIONS(2227),
- [anon_sym_import] = ACTIONS(2231),
- [anon_sym_var] = ACTIONS(2233),
- [anon_sym_let] = ACTIONS(2235),
- [anon_sym_const] = ACTIONS(2237),
- [anon_sym_BANG] = ACTIONS(122),
- [anon_sym_LPAREN] = ACTIONS(162),
- [anon_sym_in] = ACTIONS(122),
- [anon_sym_SEMI] = ACTIONS(162),
- [anon_sym_LBRACK] = ACTIONS(162),
- [anon_sym_GT] = ACTIONS(122),
- [anon_sym_DOT] = ACTIONS(162),
- [anon_sym_class] = ACTIONS(2242),
- [anon_sym_async] = ACTIONS(2244),
- [anon_sym_function] = ACTIONS(2246),
- [anon_sym_EQ_GT] = ACTIONS(924),
- [anon_sym_QMARK_DOT] = ACTIONS(162),
- [anon_sym_PLUS_EQ] = ACTIONS(168),
- [anon_sym_DASH_EQ] = ACTIONS(168),
- [anon_sym_STAR_EQ] = ACTIONS(168),
- [anon_sym_SLASH_EQ] = ACTIONS(168),
- [anon_sym_PERCENT_EQ] = ACTIONS(168),
- [anon_sym_CARET_EQ] = ACTIONS(168),
- [anon_sym_AMP_EQ] = ACTIONS(168),
- [anon_sym_PIPE_EQ] = ACTIONS(168),
- [anon_sym_GT_GT_EQ] = ACTIONS(168),
- [anon_sym_GT_GT_GT_EQ] = ACTIONS(168),
- [anon_sym_LT_LT_EQ] = ACTIONS(168),
- [anon_sym_STAR_STAR_EQ] = ACTIONS(168),
- [anon_sym_AMP_AMP_EQ] = ACTIONS(168),
- [anon_sym_PIPE_PIPE_EQ] = ACTIONS(168),
- [anon_sym_QMARK_QMARK_EQ] = ACTIONS(168),
- [anon_sym_AMP_AMP] = ACTIONS(122),
- [anon_sym_PIPE_PIPE] = ACTIONS(122),
- [anon_sym_GT_GT] = ACTIONS(122),
- [anon_sym_GT_GT_GT] = ACTIONS(122),
- [anon_sym_LT_LT] = ACTIONS(122),
- [anon_sym_AMP] = ACTIONS(122),
- [anon_sym_CARET] = ACTIONS(122),
- [anon_sym_PIPE] = ACTIONS(122),
- [anon_sym_PLUS] = ACTIONS(122),
- [anon_sym_DASH] = ACTIONS(122),
- [anon_sym_SLASH] = ACTIONS(122),
- [anon_sym_PERCENT] = ACTIONS(122),
- [anon_sym_STAR_STAR] = ACTIONS(122),
- [anon_sym_LT] = ACTIONS(122),
- [anon_sym_LT_EQ] = ACTIONS(162),
- [anon_sym_EQ_EQ] = ACTIONS(122),
- [anon_sym_EQ_EQ_EQ] = ACTIONS(162),
- [anon_sym_BANG_EQ] = ACTIONS(122),
- [anon_sym_BANG_EQ_EQ] = ACTIONS(162),
- [anon_sym_GT_EQ] = ACTIONS(162),
- [anon_sym_QMARK_QMARK] = ACTIONS(122),
- [anon_sym_instanceof] = ACTIONS(162),
- [anon_sym_PLUS_PLUS] = ACTIONS(162),
- [anon_sym_DASH_DASH] = ACTIONS(162),
- [sym_comment] = ACTIONS(5),
- [anon_sym_BQUOTE] = ACTIONS(162),
- [anon_sym_AT] = ACTIONS(99),
- [anon_sym_declare] = ACTIONS(2251),
- [anon_sym_module] = ACTIONS(2291),
- [anon_sym_abstract] = ACTIONS(2255),
- [anon_sym_satisfies] = ACTIONS(162),
- [anon_sym_global] = ACTIONS(2293),
- [anon_sym_interface] = ACTIONS(2257),
- [anon_sym_enum] = ACTIONS(2259),
- [sym__automatic_semicolon] = ACTIONS(162),
- [sym__ternary_qmark] = ACTIONS(162),
- [sym_html_comment] = ACTIONS(5),
- },
- [664] = {
- [aux_sym_object_repeat1] = STATE(5156),
- [aux_sym_object_pattern_repeat1] = STATE(4672),
- [sym_identifier] = ACTIONS(1991),
- [anon_sym_export] = ACTIONS(1991),
- [anon_sym_STAR] = ACTIONS(1991),
- [anon_sym_type] = ACTIONS(1991),
- [anon_sym_EQ] = ACTIONS(696),
- [anon_sym_as] = ACTIONS(122),
- [anon_sym_namespace] = ACTIONS(1991),
- [anon_sym_COMMA] = ACTIONS(162),
- [anon_sym_RBRACE] = ACTIONS(725),
- [anon_sym_let] = ACTIONS(1991),
- [anon_sym_BANG] = ACTIONS(122),
- [anon_sym_LPAREN] = ACTIONS(2239),
- [anon_sym_in] = ACTIONS(122),
- [anon_sym_SEMI] = ACTIONS(162),
- [anon_sym_COLON] = ACTIONS(704),
- [anon_sym_LBRACK] = ACTIONS(1993),
- [anon_sym_GT] = ACTIONS(122),
- [anon_sym_DOT] = ACTIONS(122),
- [anon_sym_DQUOTE] = ACTIONS(1993),
- [anon_sym_SQUOTE] = ACTIONS(1993),
- [anon_sym_async] = ACTIONS(1991),
- [anon_sym_EQ_GT] = ACTIONS(715),
- [anon_sym_QMARK_DOT] = ACTIONS(162),
- [anon_sym_new] = ACTIONS(1991),
- [anon_sym_PLUS_EQ] = ACTIONS(168),
- [anon_sym_DASH_EQ] = ACTIONS(168),
- [anon_sym_STAR_EQ] = ACTIONS(168),
- [anon_sym_SLASH_EQ] = ACTIONS(168),
- [anon_sym_PERCENT_EQ] = ACTIONS(168),
- [anon_sym_CARET_EQ] = ACTIONS(168),
- [anon_sym_AMP_EQ] = ACTIONS(168),
- [anon_sym_PIPE_EQ] = ACTIONS(168),
- [anon_sym_GT_GT_EQ] = ACTIONS(168),
- [anon_sym_GT_GT_GT_EQ] = ACTIONS(168),
- [anon_sym_LT_LT_EQ] = ACTIONS(168),
- [anon_sym_STAR_STAR_EQ] = ACTIONS(168),
- [anon_sym_AMP_AMP_EQ] = ACTIONS(168),
- [anon_sym_PIPE_PIPE_EQ] = ACTIONS(168),
- [anon_sym_QMARK_QMARK_EQ] = ACTIONS(168),
- [anon_sym_AMP_AMP] = ACTIONS(122),
- [anon_sym_PIPE_PIPE] = ACTIONS(122),
- [anon_sym_GT_GT] = ACTIONS(122),
- [anon_sym_GT_GT_GT] = ACTIONS(122),
- [anon_sym_LT_LT] = ACTIONS(122),
- [anon_sym_AMP] = ACTIONS(122),
- [anon_sym_CARET] = ACTIONS(122),
- [anon_sym_PIPE] = ACTIONS(122),
- [anon_sym_PLUS] = ACTIONS(122),
- [anon_sym_DASH] = ACTIONS(122),
- [anon_sym_SLASH] = ACTIONS(122),
- [anon_sym_PERCENT] = ACTIONS(122),
- [anon_sym_STAR_STAR] = ACTIONS(122),
- [anon_sym_LT] = ACTIONS(2248),
- [anon_sym_LT_EQ] = ACTIONS(162),
- [anon_sym_EQ_EQ] = ACTIONS(122),
- [anon_sym_EQ_EQ_EQ] = ACTIONS(162),
- [anon_sym_BANG_EQ] = ACTIONS(122),
- [anon_sym_BANG_EQ_EQ] = ACTIONS(162),
- [anon_sym_GT_EQ] = ACTIONS(162),
- [anon_sym_QMARK_QMARK] = ACTIONS(122),
- [anon_sym_instanceof] = ACTIONS(122),
- [anon_sym_PLUS_PLUS] = ACTIONS(162),
- [anon_sym_DASH_DASH] = ACTIONS(162),
- [sym_comment] = ACTIONS(5),
- [anon_sym_BQUOTE] = ACTIONS(162),
- [sym_number] = ACTIONS(1993),
- [sym_private_property_identifier] = ACTIONS(1993),
- [anon_sym_static] = ACTIONS(1991),
- [anon_sym_readonly] = ACTIONS(1991),
- [anon_sym_get] = ACTIONS(1991),
- [anon_sym_set] = ACTIONS(1991),
- [anon_sym_QMARK] = ACTIONS(723),
- [anon_sym_declare] = ACTIONS(1991),
- [anon_sym_public] = ACTIONS(1991),
- [anon_sym_private] = ACTIONS(1991),
- [anon_sym_protected] = ACTIONS(1991),
- [anon_sym_override] = ACTIONS(1991),
- [anon_sym_module] = ACTIONS(1991),
- [anon_sym_any] = ACTIONS(1991),
- [anon_sym_number] = ACTIONS(1991),
- [anon_sym_boolean] = ACTIONS(1991),
- [anon_sym_string] = ACTIONS(1991),
- [anon_sym_symbol] = ACTIONS(1991),
- [anon_sym_object] = ACTIONS(1991),
- [anon_sym_satisfies] = ACTIONS(122),
- [sym__automatic_semicolon] = ACTIONS(162),
- [sym__ternary_qmark] = ACTIONS(162),
- [sym_html_comment] = ACTIONS(5),
- },
- [665] = {
- [aux_sym_object_repeat1] = STATE(5156),
- [aux_sym_object_pattern_repeat1] = STATE(4672),
- [sym_identifier] = ACTIONS(2001),
- [anon_sym_export] = ACTIONS(2001),
- [anon_sym_STAR] = ACTIONS(2001),
- [anon_sym_type] = ACTIONS(2001),
- [anon_sym_EQ] = ACTIONS(696),
- [anon_sym_as] = ACTIONS(122),
- [anon_sym_namespace] = ACTIONS(2001),
- [anon_sym_COMMA] = ACTIONS(162),
- [anon_sym_RBRACE] = ACTIONS(725),
- [anon_sym_let] = ACTIONS(2001),
- [anon_sym_BANG] = ACTIONS(122),
- [anon_sym_LPAREN] = ACTIONS(2239),
- [anon_sym_in] = ACTIONS(122),
- [anon_sym_SEMI] = ACTIONS(162),
- [anon_sym_COLON] = ACTIONS(704),
- [anon_sym_LBRACK] = ACTIONS(2003),
- [anon_sym_GT] = ACTIONS(122),
- [anon_sym_DOT] = ACTIONS(122),
- [anon_sym_DQUOTE] = ACTIONS(2003),
- [anon_sym_SQUOTE] = ACTIONS(2003),
- [anon_sym_async] = ACTIONS(2001),
- [anon_sym_EQ_GT] = ACTIONS(715),
- [anon_sym_QMARK_DOT] = ACTIONS(162),
- [anon_sym_new] = ACTIONS(2001),
- [anon_sym_PLUS_EQ] = ACTIONS(168),
- [anon_sym_DASH_EQ] = ACTIONS(168),
- [anon_sym_STAR_EQ] = ACTIONS(168),
- [anon_sym_SLASH_EQ] = ACTIONS(168),
- [anon_sym_PERCENT_EQ] = ACTIONS(168),
- [anon_sym_CARET_EQ] = ACTIONS(168),
- [anon_sym_AMP_EQ] = ACTIONS(168),
- [anon_sym_PIPE_EQ] = ACTIONS(168),
- [anon_sym_GT_GT_EQ] = ACTIONS(168),
- [anon_sym_GT_GT_GT_EQ] = ACTIONS(168),
- [anon_sym_LT_LT_EQ] = ACTIONS(168),
- [anon_sym_STAR_STAR_EQ] = ACTIONS(168),
- [anon_sym_AMP_AMP_EQ] = ACTIONS(168),
- [anon_sym_PIPE_PIPE_EQ] = ACTIONS(168),
- [anon_sym_QMARK_QMARK_EQ] = ACTIONS(168),
- [anon_sym_AMP_AMP] = ACTIONS(122),
- [anon_sym_PIPE_PIPE] = ACTIONS(122),
- [anon_sym_GT_GT] = ACTIONS(122),
- [anon_sym_GT_GT_GT] = ACTIONS(122),
- [anon_sym_LT_LT] = ACTIONS(122),
- [anon_sym_AMP] = ACTIONS(122),
- [anon_sym_CARET] = ACTIONS(122),
- [anon_sym_PIPE] = ACTIONS(122),
- [anon_sym_PLUS] = ACTIONS(122),
- [anon_sym_DASH] = ACTIONS(122),
- [anon_sym_SLASH] = ACTIONS(122),
- [anon_sym_PERCENT] = ACTIONS(122),
- [anon_sym_STAR_STAR] = ACTIONS(122),
- [anon_sym_LT] = ACTIONS(2248),
- [anon_sym_LT_EQ] = ACTIONS(162),
- [anon_sym_EQ_EQ] = ACTIONS(122),
- [anon_sym_EQ_EQ_EQ] = ACTIONS(162),
- [anon_sym_BANG_EQ] = ACTIONS(122),
- [anon_sym_BANG_EQ_EQ] = ACTIONS(162),
- [anon_sym_GT_EQ] = ACTIONS(162),
- [anon_sym_QMARK_QMARK] = ACTIONS(122),
- [anon_sym_instanceof] = ACTIONS(122),
- [anon_sym_PLUS_PLUS] = ACTIONS(162),
- [anon_sym_DASH_DASH] = ACTIONS(162),
- [sym_comment] = ACTIONS(5),
- [anon_sym_BQUOTE] = ACTIONS(162),
- [sym_number] = ACTIONS(2003),
- [sym_private_property_identifier] = ACTIONS(2003),
- [anon_sym_static] = ACTIONS(2001),
- [anon_sym_readonly] = ACTIONS(2001),
- [anon_sym_get] = ACTIONS(2001),
- [anon_sym_set] = ACTIONS(2001),
- [anon_sym_QMARK] = ACTIONS(723),
- [anon_sym_declare] = ACTIONS(2001),
- [anon_sym_public] = ACTIONS(2001),
- [anon_sym_private] = ACTIONS(2001),
- [anon_sym_protected] = ACTIONS(2001),
- [anon_sym_override] = ACTIONS(2001),
- [anon_sym_module] = ACTIONS(2001),
- [anon_sym_any] = ACTIONS(2001),
- [anon_sym_number] = ACTIONS(2001),
- [anon_sym_boolean] = ACTIONS(2001),
- [anon_sym_string] = ACTIONS(2001),
- [anon_sym_symbol] = ACTIONS(2001),
- [anon_sym_object] = ACTIONS(2001),
- [anon_sym_satisfies] = ACTIONS(122),
- [sym__automatic_semicolon] = ACTIONS(162),
- [sym__ternary_qmark] = ACTIONS(162),
- [sym_html_comment] = ACTIONS(5),
- },
- [666] = {
- [sym_declaration] = STATE(819),
- [sym_variable_declaration] = STATE(861),
- [sym_lexical_declaration] = STATE(861),
- [sym_class_declaration] = STATE(861),
- [sym_function_declaration] = STATE(861),
- [sym_generator_function_declaration] = STATE(861),
- [sym_decorator] = STATE(1244),
- [sym_function_signature] = STATE(861),
- [sym_ambient_declaration] = STATE(861),
- [sym_abstract_class_declaration] = STATE(861),
- [sym_module] = STATE(861),
- [sym_internal_module] = STATE(860),
- [sym_import_alias] = STATE(861),
- [sym_interface_declaration] = STATE(861),
- [sym_enum_declaration] = STATE(861),
- [sym_type_alias_declaration] = STATE(861),
- [aux_sym_export_statement_repeat1] = STATE(4270),
- [anon_sym_STAR] = ACTIONS(122),
- [anon_sym_type] = ACTIONS(2289),
- [anon_sym_EQ] = ACTIONS(932),
- [anon_sym_as] = ACTIONS(122),
- [anon_sym_namespace] = ACTIONS(2301),
- [anon_sym_import] = ACTIONS(2231),
- [anon_sym_var] = ACTIONS(2233),
- [anon_sym_let] = ACTIONS(2235),
- [anon_sym_const] = ACTIONS(2237),
- [anon_sym_BANG] = ACTIONS(122),
- [anon_sym_LPAREN] = ACTIONS(162),
- [anon_sym_in] = ACTIONS(122),
- [anon_sym_SEMI] = ACTIONS(162),
- [anon_sym_LBRACK] = ACTIONS(162),
- [anon_sym_GT] = ACTIONS(122),
- [anon_sym_DOT] = ACTIONS(162),
- [anon_sym_class] = ACTIONS(2242),
- [anon_sym_async] = ACTIONS(2244),
- [anon_sym_function] = ACTIONS(2246),
- [anon_sym_EQ_GT] = ACTIONS(924),
- [anon_sym_QMARK_DOT] = ACTIONS(162),
- [anon_sym_PLUS_EQ] = ACTIONS(168),
- [anon_sym_DASH_EQ] = ACTIONS(168),
- [anon_sym_STAR_EQ] = ACTIONS(168),
- [anon_sym_SLASH_EQ] = ACTIONS(168),
- [anon_sym_PERCENT_EQ] = ACTIONS(168),
- [anon_sym_CARET_EQ] = ACTIONS(168),
- [anon_sym_AMP_EQ] = ACTIONS(168),
- [anon_sym_PIPE_EQ] = ACTIONS(168),
- [anon_sym_GT_GT_EQ] = ACTIONS(168),
- [anon_sym_GT_GT_GT_EQ] = ACTIONS(168),
- [anon_sym_LT_LT_EQ] = ACTIONS(168),
- [anon_sym_STAR_STAR_EQ] = ACTIONS(168),
- [anon_sym_AMP_AMP_EQ] = ACTIONS(168),
- [anon_sym_PIPE_PIPE_EQ] = ACTIONS(168),
- [anon_sym_QMARK_QMARK_EQ] = ACTIONS(168),
- [anon_sym_AMP_AMP] = ACTIONS(122),
- [anon_sym_PIPE_PIPE] = ACTIONS(122),
- [anon_sym_GT_GT] = ACTIONS(122),
- [anon_sym_GT_GT_GT] = ACTIONS(122),
- [anon_sym_LT_LT] = ACTIONS(122),
- [anon_sym_AMP] = ACTIONS(122),
- [anon_sym_CARET] = ACTIONS(122),
- [anon_sym_PIPE] = ACTIONS(122),
- [anon_sym_PLUS] = ACTIONS(122),
- [anon_sym_DASH] = ACTIONS(122),
- [anon_sym_SLASH] = ACTIONS(122),
- [anon_sym_PERCENT] = ACTIONS(122),
- [anon_sym_STAR_STAR] = ACTIONS(122),
- [anon_sym_LT] = ACTIONS(122),
- [anon_sym_LT_EQ] = ACTIONS(162),
- [anon_sym_EQ_EQ] = ACTIONS(122),
- [anon_sym_EQ_EQ_EQ] = ACTIONS(162),
- [anon_sym_BANG_EQ] = ACTIONS(122),
- [anon_sym_BANG_EQ_EQ] = ACTIONS(162),
- [anon_sym_GT_EQ] = ACTIONS(162),
- [anon_sym_QMARK_QMARK] = ACTIONS(122),
- [anon_sym_instanceof] = ACTIONS(162),
- [anon_sym_PLUS_PLUS] = ACTIONS(162),
- [anon_sym_DASH_DASH] = ACTIONS(162),
- [sym_comment] = ACTIONS(5),
- [anon_sym_BQUOTE] = ACTIONS(162),
- [anon_sym_AT] = ACTIONS(99),
- [anon_sym_declare] = ACTIONS(2303),
- [anon_sym_module] = ACTIONS(2317),
- [anon_sym_abstract] = ACTIONS(2255),
- [anon_sym_satisfies] = ACTIONS(162),
- [anon_sym_global] = ACTIONS(2293),
- [anon_sym_interface] = ACTIONS(2257),
- [anon_sym_enum] = ACTIONS(2259),
- [sym__automatic_semicolon] = ACTIONS(162),
- [sym__ternary_qmark] = ACTIONS(162),
- [sym_html_comment] = ACTIONS(5),
- },
- [667] = {
- [aux_sym_object_repeat1] = STATE(4671),
- [aux_sym_object_pattern_repeat1] = STATE(4672),
- [sym_identifier] = ACTIONS(1991),
- [anon_sym_export] = ACTIONS(1991),
- [anon_sym_STAR] = ACTIONS(1991),
- [anon_sym_type] = ACTIONS(1991),
- [anon_sym_EQ] = ACTIONS(696),
- [anon_sym_as] = ACTIONS(122),
- [anon_sym_namespace] = ACTIONS(1991),
- [anon_sym_COMMA] = ACTIONS(162),
- [anon_sym_RBRACE] = ACTIONS(727),
- [anon_sym_let] = ACTIONS(1991),
- [anon_sym_BANG] = ACTIONS(122),
- [anon_sym_LPAREN] = ACTIONS(2239),
- [anon_sym_in] = ACTIONS(122),
- [anon_sym_SEMI] = ACTIONS(162),
- [anon_sym_COLON] = ACTIONS(704),
- [anon_sym_LBRACK] = ACTIONS(1993),
- [anon_sym_GT] = ACTIONS(122),
- [anon_sym_DOT] = ACTIONS(122),
- [anon_sym_DQUOTE] = ACTIONS(1993),
- [anon_sym_SQUOTE] = ACTIONS(1993),
- [anon_sym_async] = ACTIONS(1991),
- [anon_sym_EQ_GT] = ACTIONS(715),
- [anon_sym_QMARK_DOT] = ACTIONS(162),
- [anon_sym_new] = ACTIONS(1991),
- [anon_sym_PLUS_EQ] = ACTIONS(168),
- [anon_sym_DASH_EQ] = ACTIONS(168),
- [anon_sym_STAR_EQ] = ACTIONS(168),
- [anon_sym_SLASH_EQ] = ACTIONS(168),
- [anon_sym_PERCENT_EQ] = ACTIONS(168),
- [anon_sym_CARET_EQ] = ACTIONS(168),
- [anon_sym_AMP_EQ] = ACTIONS(168),
- [anon_sym_PIPE_EQ] = ACTIONS(168),
- [anon_sym_GT_GT_EQ] = ACTIONS(168),
- [anon_sym_GT_GT_GT_EQ] = ACTIONS(168),
- [anon_sym_LT_LT_EQ] = ACTIONS(168),
- [anon_sym_STAR_STAR_EQ] = ACTIONS(168),
- [anon_sym_AMP_AMP_EQ] = ACTIONS(168),
- [anon_sym_PIPE_PIPE_EQ] = ACTIONS(168),
- [anon_sym_QMARK_QMARK_EQ] = ACTIONS(168),
- [anon_sym_AMP_AMP] = ACTIONS(122),
- [anon_sym_PIPE_PIPE] = ACTIONS(122),
- [anon_sym_GT_GT] = ACTIONS(122),
- [anon_sym_GT_GT_GT] = ACTIONS(122),
- [anon_sym_LT_LT] = ACTIONS(122),
- [anon_sym_AMP] = ACTIONS(122),
- [anon_sym_CARET] = ACTIONS(122),
- [anon_sym_PIPE] = ACTIONS(122),
- [anon_sym_PLUS] = ACTIONS(122),
- [anon_sym_DASH] = ACTIONS(122),
- [anon_sym_SLASH] = ACTIONS(122),
- [anon_sym_PERCENT] = ACTIONS(122),
- [anon_sym_STAR_STAR] = ACTIONS(122),
- [anon_sym_LT] = ACTIONS(2248),
- [anon_sym_LT_EQ] = ACTIONS(162),
- [anon_sym_EQ_EQ] = ACTIONS(122),
- [anon_sym_EQ_EQ_EQ] = ACTIONS(162),
- [anon_sym_BANG_EQ] = ACTIONS(122),
- [anon_sym_BANG_EQ_EQ] = ACTIONS(162),
- [anon_sym_GT_EQ] = ACTIONS(162),
- [anon_sym_QMARK_QMARK] = ACTIONS(122),
- [anon_sym_instanceof] = ACTIONS(122),
- [anon_sym_PLUS_PLUS] = ACTIONS(162),
- [anon_sym_DASH_DASH] = ACTIONS(162),
- [sym_comment] = ACTIONS(5),
- [anon_sym_BQUOTE] = ACTIONS(162),
- [sym_number] = ACTIONS(1993),
- [sym_private_property_identifier] = ACTIONS(1993),
- [anon_sym_static] = ACTIONS(1991),
- [anon_sym_readonly] = ACTIONS(1991),
- [anon_sym_get] = ACTIONS(1991),
- [anon_sym_set] = ACTIONS(1991),
- [anon_sym_QMARK] = ACTIONS(723),
- [anon_sym_declare] = ACTIONS(1991),
- [anon_sym_public] = ACTIONS(1991),
- [anon_sym_private] = ACTIONS(1991),
- [anon_sym_protected] = ACTIONS(1991),
- [anon_sym_override] = ACTIONS(1991),
- [anon_sym_module] = ACTIONS(1991),
- [anon_sym_any] = ACTIONS(1991),
- [anon_sym_number] = ACTIONS(1991),
- [anon_sym_boolean] = ACTIONS(1991),
- [anon_sym_string] = ACTIONS(1991),
- [anon_sym_symbol] = ACTIONS(1991),
- [anon_sym_object] = ACTIONS(1991),
- [anon_sym_satisfies] = ACTIONS(122),
- [sym__automatic_semicolon] = ACTIONS(162),
- [sym__ternary_qmark] = ACTIONS(162),
- [sym_html_comment] = ACTIONS(5),
- },
- [668] = {
- [sym__call_signature] = STATE(5738),
- [sym_formal_parameters] = STATE(3742),
- [sym_type_parameters] = STATE(5349),
- [sym_identifier] = ACTIONS(2369),
- [anon_sym_export] = ACTIONS(2371),
- [anon_sym_STAR] = ACTIONS(122),
- [anon_sym_type] = ACTIONS(2371),
- [anon_sym_EQ] = ACTIONS(224),
- [anon_sym_as] = ACTIONS(122),
- [anon_sym_namespace] = ACTIONS(2371),
- [anon_sym_COMMA] = ACTIONS(227),
- [anon_sym_RBRACE] = ACTIONS(227),
- [anon_sym_let] = ACTIONS(2371),
- [anon_sym_BANG] = ACTIONS(122),
- [anon_sym_LPAREN] = ACTIONS(2373),
- [anon_sym_RPAREN] = ACTIONS(227),
- [anon_sym_in] = ACTIONS(122),
- [anon_sym_COLON] = ACTIONS(227),
- [anon_sym_LBRACK] = ACTIONS(162),
- [anon_sym_RBRACK] = ACTIONS(227),
- [anon_sym_GT] = ACTIONS(122),
- [anon_sym_DOT] = ACTIONS(162),
- [anon_sym_async] = ACTIONS(2371),
- [anon_sym_function] = ACTIONS(2376),
- [anon_sym_EQ_GT] = ACTIONS(229),
- [anon_sym_QMARK_DOT] = ACTIONS(162),
- [anon_sym_new] = ACTIONS(2371),
- [anon_sym_PLUS_EQ] = ACTIONS(168),
- [anon_sym_DASH_EQ] = ACTIONS(168),
- [anon_sym_STAR_EQ] = ACTIONS(168),
- [anon_sym_SLASH_EQ] = ACTIONS(168),
- [anon_sym_PERCENT_EQ] = ACTIONS(168),
- [anon_sym_CARET_EQ] = ACTIONS(168),
- [anon_sym_AMP_EQ] = ACTIONS(168),
- [anon_sym_PIPE_EQ] = ACTIONS(168),
- [anon_sym_GT_GT_EQ] = ACTIONS(168),
- [anon_sym_GT_GT_GT_EQ] = ACTIONS(168),
- [anon_sym_LT_LT_EQ] = ACTIONS(168),
- [anon_sym_STAR_STAR_EQ] = ACTIONS(168),
- [anon_sym_AMP_AMP_EQ] = ACTIONS(168),
- [anon_sym_PIPE_PIPE_EQ] = ACTIONS(168),
- [anon_sym_QMARK_QMARK_EQ] = ACTIONS(168),
- [anon_sym_AMP_AMP] = ACTIONS(122),
- [anon_sym_PIPE_PIPE] = ACTIONS(122),
- [anon_sym_GT_GT] = ACTIONS(122),
- [anon_sym_GT_GT_GT] = ACTIONS(122),
- [anon_sym_LT_LT] = ACTIONS(122),
- [anon_sym_AMP] = ACTIONS(122),
- [anon_sym_CARET] = ACTIONS(122),
- [anon_sym_PIPE] = ACTIONS(122),
- [anon_sym_PLUS] = ACTIONS(122),
- [anon_sym_DASH] = ACTIONS(122),
- [anon_sym_SLASH] = ACTIONS(122),
- [anon_sym_PERCENT] = ACTIONS(122),
- [anon_sym_STAR_STAR] = ACTIONS(122),
- [anon_sym_LT] = ACTIONS(2378),
- [anon_sym_LT_EQ] = ACTIONS(162),
- [anon_sym_EQ_EQ] = ACTIONS(122),
- [anon_sym_EQ_EQ_EQ] = ACTIONS(162),
- [anon_sym_BANG_EQ] = ACTIONS(122),
- [anon_sym_BANG_EQ_EQ] = ACTIONS(162),
- [anon_sym_GT_EQ] = ACTIONS(162),
- [anon_sym_QMARK_QMARK] = ACTIONS(122),
- [anon_sym_instanceof] = ACTIONS(122),
- [anon_sym_PLUS_PLUS] = ACTIONS(162),
- [anon_sym_DASH_DASH] = ACTIONS(162),
- [sym_comment] = ACTIONS(5),
- [anon_sym_BQUOTE] = ACTIONS(162),
- [anon_sym_static] = ACTIONS(2371),
- [anon_sym_readonly] = ACTIONS(2371),
- [anon_sym_get] = ACTIONS(2371),
- [anon_sym_set] = ACTIONS(2371),
- [anon_sym_QMARK] = ACTIONS(793),
- [anon_sym_declare] = ACTIONS(2371),
- [anon_sym_public] = ACTIONS(2371),
- [anon_sym_private] = ACTIONS(2371),
- [anon_sym_protected] = ACTIONS(2371),
- [anon_sym_override] = ACTIONS(2371),
- [anon_sym_module] = ACTIONS(2371),
- [anon_sym_any] = ACTIONS(2371),
- [anon_sym_number] = ACTIONS(2371),
- [anon_sym_boolean] = ACTIONS(2371),
- [anon_sym_string] = ACTIONS(2371),
- [anon_sym_symbol] = ACTIONS(2371),
- [anon_sym_object] = ACTIONS(2371),
- [anon_sym_satisfies] = ACTIONS(122),
- [sym__ternary_qmark] = ACTIONS(162),
- [sym_html_comment] = ACTIONS(5),
- },
- [669] = {
- [sym__call_signature] = STATE(5679),
- [sym_formal_parameters] = STATE(3742),
- [sym_type_parameters] = STATE(5349),
- [sym_identifier] = ACTIONS(2381),
- [anon_sym_export] = ACTIONS(2383),
- [anon_sym_STAR] = ACTIONS(122),
- [anon_sym_type] = ACTIONS(2383),
- [anon_sym_EQ] = ACTIONS(119),
- [anon_sym_as] = ACTIONS(122),
- [anon_sym_namespace] = ACTIONS(2383),
- [anon_sym_COMMA] = ACTIONS(128),
- [anon_sym_RBRACE] = ACTIONS(128),
- [anon_sym_let] = ACTIONS(2383),
- [anon_sym_BANG] = ACTIONS(122),
- [anon_sym_LPAREN] = ACTIONS(2373),
- [anon_sym_RPAREN] = ACTIONS(128),
- [anon_sym_in] = ACTIONS(122),
- [anon_sym_COLON] = ACTIONS(128),
- [anon_sym_LBRACK] = ACTIONS(162),
- [anon_sym_RBRACK] = ACTIONS(128),
- [anon_sym_GT] = ACTIONS(122),
- [anon_sym_DOT] = ACTIONS(162),
- [anon_sym_async] = ACTIONS(2383),
- [anon_sym_function] = ACTIONS(2376),
- [anon_sym_EQ_GT] = ACTIONS(160),
- [anon_sym_QMARK_DOT] = ACTIONS(162),
- [anon_sym_new] = ACTIONS(2383),
- [anon_sym_PLUS_EQ] = ACTIONS(168),
- [anon_sym_DASH_EQ] = ACTIONS(168),
- [anon_sym_STAR_EQ] = ACTIONS(168),
- [anon_sym_SLASH_EQ] = ACTIONS(168),
- [anon_sym_PERCENT_EQ] = ACTIONS(168),
- [anon_sym_CARET_EQ] = ACTIONS(168),
- [anon_sym_AMP_EQ] = ACTIONS(168),
- [anon_sym_PIPE_EQ] = ACTIONS(168),
- [anon_sym_GT_GT_EQ] = ACTIONS(168),
- [anon_sym_GT_GT_GT_EQ] = ACTIONS(168),
- [anon_sym_LT_LT_EQ] = ACTIONS(168),
- [anon_sym_STAR_STAR_EQ] = ACTIONS(168),
- [anon_sym_AMP_AMP_EQ] = ACTIONS(168),
- [anon_sym_PIPE_PIPE_EQ] = ACTIONS(168),
- [anon_sym_QMARK_QMARK_EQ] = ACTIONS(168),
- [anon_sym_AMP_AMP] = ACTIONS(122),
- [anon_sym_PIPE_PIPE] = ACTIONS(122),
- [anon_sym_GT_GT] = ACTIONS(122),
- [anon_sym_GT_GT_GT] = ACTIONS(122),
- [anon_sym_LT_LT] = ACTIONS(122),
- [anon_sym_AMP] = ACTIONS(122),
- [anon_sym_CARET] = ACTIONS(122),
- [anon_sym_PIPE] = ACTIONS(122),
- [anon_sym_PLUS] = ACTIONS(122),
- [anon_sym_DASH] = ACTIONS(122),
- [anon_sym_SLASH] = ACTIONS(122),
- [anon_sym_PERCENT] = ACTIONS(122),
- [anon_sym_STAR_STAR] = ACTIONS(122),
- [anon_sym_LT] = ACTIONS(2378),
- [anon_sym_LT_EQ] = ACTIONS(162),
- [anon_sym_EQ_EQ] = ACTIONS(122),
- [anon_sym_EQ_EQ_EQ] = ACTIONS(162),
- [anon_sym_BANG_EQ] = ACTIONS(122),
- [anon_sym_BANG_EQ_EQ] = ACTIONS(162),
- [anon_sym_GT_EQ] = ACTIONS(162),
- [anon_sym_QMARK_QMARK] = ACTIONS(122),
- [anon_sym_instanceof] = ACTIONS(122),
- [anon_sym_PLUS_PLUS] = ACTIONS(162),
- [anon_sym_DASH_DASH] = ACTIONS(162),
- [sym_comment] = ACTIONS(5),
- [anon_sym_BQUOTE] = ACTIONS(162),
- [anon_sym_static] = ACTIONS(2383),
- [anon_sym_readonly] = ACTIONS(2383),
- [anon_sym_get] = ACTIONS(2383),
- [anon_sym_set] = ACTIONS(2383),
- [anon_sym_QMARK] = ACTIONS(793),
- [anon_sym_declare] = ACTIONS(2383),
- [anon_sym_public] = ACTIONS(2383),
- [anon_sym_private] = ACTIONS(2383),
- [anon_sym_protected] = ACTIONS(2383),
- [anon_sym_override] = ACTIONS(2383),
- [anon_sym_module] = ACTIONS(2383),
- [anon_sym_any] = ACTIONS(2383),
- [anon_sym_number] = ACTIONS(2383),
- [anon_sym_boolean] = ACTIONS(2383),
- [anon_sym_string] = ACTIONS(2383),
- [anon_sym_symbol] = ACTIONS(2383),
- [anon_sym_object] = ACTIONS(2383),
- [anon_sym_satisfies] = ACTIONS(122),
- [sym__ternary_qmark] = ACTIONS(162),
- [sym_html_comment] = ACTIONS(5),
- },
- [670] = {
- [sym__call_signature] = STATE(5738),
- [sym_formal_parameters] = STATE(3742),
- [sym_type_parameters] = STATE(5349),
- [sym_identifier] = ACTIONS(2369),
- [anon_sym_export] = ACTIONS(2371),
- [anon_sym_STAR] = ACTIONS(122),
- [anon_sym_type] = ACTIONS(2371),
- [anon_sym_EQ] = ACTIONS(841),
- [anon_sym_as] = ACTIONS(122),
- [anon_sym_namespace] = ACTIONS(2371),
- [anon_sym_COMMA] = ACTIONS(847),
- [anon_sym_RBRACE] = ACTIONS(847),
- [anon_sym_let] = ACTIONS(2371),
- [anon_sym_BANG] = ACTIONS(122),
- [anon_sym_LPAREN] = ACTIONS(2373),
- [anon_sym_RPAREN] = ACTIONS(847),
- [anon_sym_in] = ACTIONS(122),
- [anon_sym_COLON] = ACTIONS(847),
- [anon_sym_LBRACK] = ACTIONS(162),
- [anon_sym_RBRACK] = ACTIONS(847),
- [anon_sym_GT] = ACTIONS(122),
- [anon_sym_DOT] = ACTIONS(162),
- [anon_sym_async] = ACTIONS(2371),
- [anon_sym_function] = ACTIONS(2376),
- [anon_sym_EQ_GT] = ACTIONS(229),
- [anon_sym_QMARK_DOT] = ACTIONS(162),
- [anon_sym_new] = ACTIONS(2371),
- [anon_sym_PLUS_EQ] = ACTIONS(168),
- [anon_sym_DASH_EQ] = ACTIONS(168),
- [anon_sym_STAR_EQ] = ACTIONS(168),
- [anon_sym_SLASH_EQ] = ACTIONS(168),
- [anon_sym_PERCENT_EQ] = ACTIONS(168),
- [anon_sym_CARET_EQ] = ACTIONS(168),
- [anon_sym_AMP_EQ] = ACTIONS(168),
- [anon_sym_PIPE_EQ] = ACTIONS(168),
- [anon_sym_GT_GT_EQ] = ACTIONS(168),
- [anon_sym_GT_GT_GT_EQ] = ACTIONS(168),
- [anon_sym_LT_LT_EQ] = ACTIONS(168),
- [anon_sym_STAR_STAR_EQ] = ACTIONS(168),
- [anon_sym_AMP_AMP_EQ] = ACTIONS(168),
- [anon_sym_PIPE_PIPE_EQ] = ACTIONS(168),
- [anon_sym_QMARK_QMARK_EQ] = ACTIONS(168),
- [anon_sym_AMP_AMP] = ACTIONS(122),
- [anon_sym_PIPE_PIPE] = ACTIONS(122),
- [anon_sym_GT_GT] = ACTIONS(122),
- [anon_sym_GT_GT_GT] = ACTIONS(122),
- [anon_sym_LT_LT] = ACTIONS(122),
- [anon_sym_AMP] = ACTIONS(122),
- [anon_sym_CARET] = ACTIONS(122),
- [anon_sym_PIPE] = ACTIONS(122),
- [anon_sym_PLUS] = ACTIONS(122),
- [anon_sym_DASH] = ACTIONS(122),
- [anon_sym_SLASH] = ACTIONS(122),
- [anon_sym_PERCENT] = ACTIONS(122),
- [anon_sym_STAR_STAR] = ACTIONS(122),
- [anon_sym_LT] = ACTIONS(2378),
- [anon_sym_LT_EQ] = ACTIONS(162),
- [anon_sym_EQ_EQ] = ACTIONS(122),
- [anon_sym_EQ_EQ_EQ] = ACTIONS(162),
- [anon_sym_BANG_EQ] = ACTIONS(122),
- [anon_sym_BANG_EQ_EQ] = ACTIONS(162),
- [anon_sym_GT_EQ] = ACTIONS(162),
- [anon_sym_QMARK_QMARK] = ACTIONS(122),
- [anon_sym_instanceof] = ACTIONS(122),
- [anon_sym_PLUS_PLUS] = ACTIONS(162),
- [anon_sym_DASH_DASH] = ACTIONS(162),
- [sym_comment] = ACTIONS(5),
- [anon_sym_BQUOTE] = ACTIONS(162),
- [anon_sym_static] = ACTIONS(2371),
- [anon_sym_readonly] = ACTIONS(2371),
- [anon_sym_get] = ACTIONS(2371),
- [anon_sym_set] = ACTIONS(2371),
- [anon_sym_QMARK] = ACTIONS(855),
- [anon_sym_declare] = ACTIONS(2371),
- [anon_sym_public] = ACTIONS(2371),
- [anon_sym_private] = ACTIONS(2371),
- [anon_sym_protected] = ACTIONS(2371),
- [anon_sym_override] = ACTIONS(2371),
- [anon_sym_module] = ACTIONS(2371),
- [anon_sym_any] = ACTIONS(2371),
- [anon_sym_number] = ACTIONS(2371),
- [anon_sym_boolean] = ACTIONS(2371),
- [anon_sym_string] = ACTIONS(2371),
- [anon_sym_symbol] = ACTIONS(2371),
- [anon_sym_object] = ACTIONS(2371),
- [anon_sym_satisfies] = ACTIONS(122),
- [sym__ternary_qmark] = ACTIONS(162),
- [sym_html_comment] = ACTIONS(5),
- },
- [671] = {
- [sym__call_signature] = STATE(5679),
- [sym_formal_parameters] = STATE(3742),
- [sym_type_parameters] = STATE(5349),
- [sym_identifier] = ACTIONS(2381),
- [anon_sym_export] = ACTIONS(2383),
- [anon_sym_STAR] = ACTIONS(122),
- [anon_sym_type] = ACTIONS(2383),
- [anon_sym_EQ] = ACTIONS(841),
- [anon_sym_as] = ACTIONS(122),
- [anon_sym_namespace] = ACTIONS(2383),
- [anon_sym_COMMA] = ACTIONS(162),
- [anon_sym_RBRACE] = ACTIONS(162),
- [anon_sym_let] = ACTIONS(2383),
- [anon_sym_BANG] = ACTIONS(122),
- [anon_sym_LPAREN] = ACTIONS(2373),
- [anon_sym_RPAREN] = ACTIONS(162),
- [anon_sym_in] = ACTIONS(122),
- [anon_sym_COLON] = ACTIONS(162),
- [anon_sym_LBRACK] = ACTIONS(162),
- [anon_sym_RBRACK] = ACTIONS(162),
- [anon_sym_GT] = ACTIONS(122),
- [anon_sym_DOT] = ACTIONS(162),
- [anon_sym_async] = ACTIONS(2383),
- [anon_sym_function] = ACTIONS(2376),
- [anon_sym_EQ_GT] = ACTIONS(160),
- [anon_sym_QMARK_DOT] = ACTIONS(162),
- [anon_sym_new] = ACTIONS(2383),
- [anon_sym_PLUS_EQ] = ACTIONS(168),
- [anon_sym_DASH_EQ] = ACTIONS(168),
- [anon_sym_STAR_EQ] = ACTIONS(168),
- [anon_sym_SLASH_EQ] = ACTIONS(168),
- [anon_sym_PERCENT_EQ] = ACTIONS(168),
- [anon_sym_CARET_EQ] = ACTIONS(168),
- [anon_sym_AMP_EQ] = ACTIONS(168),
- [anon_sym_PIPE_EQ] = ACTIONS(168),
- [anon_sym_GT_GT_EQ] = ACTIONS(168),
- [anon_sym_GT_GT_GT_EQ] = ACTIONS(168),
- [anon_sym_LT_LT_EQ] = ACTIONS(168),
- [anon_sym_STAR_STAR_EQ] = ACTIONS(168),
- [anon_sym_AMP_AMP_EQ] = ACTIONS(168),
- [anon_sym_PIPE_PIPE_EQ] = ACTIONS(168),
- [anon_sym_QMARK_QMARK_EQ] = ACTIONS(168),
- [anon_sym_AMP_AMP] = ACTIONS(122),
- [anon_sym_PIPE_PIPE] = ACTIONS(122),
- [anon_sym_GT_GT] = ACTIONS(122),
- [anon_sym_GT_GT_GT] = ACTIONS(122),
- [anon_sym_LT_LT] = ACTIONS(122),
- [anon_sym_AMP] = ACTIONS(122),
- [anon_sym_CARET] = ACTIONS(122),
- [anon_sym_PIPE] = ACTIONS(122),
- [anon_sym_PLUS] = ACTIONS(122),
- [anon_sym_DASH] = ACTIONS(122),
- [anon_sym_SLASH] = ACTIONS(122),
- [anon_sym_PERCENT] = ACTIONS(122),
- [anon_sym_STAR_STAR] = ACTIONS(122),
- [anon_sym_LT] = ACTIONS(2378),
- [anon_sym_LT_EQ] = ACTIONS(162),
- [anon_sym_EQ_EQ] = ACTIONS(122),
- [anon_sym_EQ_EQ_EQ] = ACTIONS(162),
- [anon_sym_BANG_EQ] = ACTIONS(122),
- [anon_sym_BANG_EQ_EQ] = ACTIONS(162),
- [anon_sym_GT_EQ] = ACTIONS(162),
- [anon_sym_QMARK_QMARK] = ACTIONS(122),
- [anon_sym_instanceof] = ACTIONS(122),
- [anon_sym_PLUS_PLUS] = ACTIONS(162),
- [anon_sym_DASH_DASH] = ACTIONS(162),
- [sym_comment] = ACTIONS(5),
- [anon_sym_BQUOTE] = ACTIONS(162),
- [anon_sym_static] = ACTIONS(2383),
- [anon_sym_readonly] = ACTIONS(2383),
- [anon_sym_get] = ACTIONS(2383),
- [anon_sym_set] = ACTIONS(2383),
- [anon_sym_declare] = ACTIONS(2383),
- [anon_sym_public] = ACTIONS(2383),
- [anon_sym_private] = ACTIONS(2383),
- [anon_sym_protected] = ACTIONS(2383),
- [anon_sym_override] = ACTIONS(2383),
- [anon_sym_module] = ACTIONS(2383),
- [anon_sym_any] = ACTIONS(2383),
- [anon_sym_number] = ACTIONS(2383),
- [anon_sym_boolean] = ACTIONS(2383),
- [anon_sym_string] = ACTIONS(2383),
- [anon_sym_symbol] = ACTIONS(2383),
- [anon_sym_object] = ACTIONS(2383),
- [anon_sym_satisfies] = ACTIONS(122),
- [sym__ternary_qmark] = ACTIONS(162),
- [sym_html_comment] = ACTIONS(5),
- },
- [672] = {
- [sym__call_signature] = STATE(5679),
- [sym_formal_parameters] = STATE(3742),
- [sym_type_parameters] = STATE(5349),
- [sym_identifier] = ACTIONS(2381),
- [anon_sym_export] = ACTIONS(2383),
- [anon_sym_STAR] = ACTIONS(122),
- [anon_sym_type] = ACTIONS(2383),
- [anon_sym_EQ] = ACTIONS(857),
- [anon_sym_as] = ACTIONS(122),
- [anon_sym_namespace] = ACTIONS(2383),
- [anon_sym_COMMA] = ACTIONS(162),
- [anon_sym_RBRACE] = ACTIONS(162),
- [anon_sym_let] = ACTIONS(2383),
- [anon_sym_BANG] = ACTIONS(122),
- [anon_sym_LPAREN] = ACTIONS(2373),
- [anon_sym_RPAREN] = ACTIONS(162),
- [anon_sym_in] = ACTIONS(122),
- [anon_sym_COLON] = ACTIONS(162),
- [anon_sym_LBRACK] = ACTIONS(162),
- [anon_sym_RBRACK] = ACTIONS(162),
- [anon_sym_GT] = ACTIONS(122),
- [anon_sym_DOT] = ACTIONS(162),
- [anon_sym_async] = ACTIONS(2383),
- [anon_sym_function] = ACTIONS(2376),
- [anon_sym_EQ_GT] = ACTIONS(160),
- [anon_sym_QMARK_DOT] = ACTIONS(162),
- [anon_sym_new] = ACTIONS(2383),
- [anon_sym_PLUS_EQ] = ACTIONS(168),
- [anon_sym_DASH_EQ] = ACTIONS(168),
- [anon_sym_STAR_EQ] = ACTIONS(168),
- [anon_sym_SLASH_EQ] = ACTIONS(168),
- [anon_sym_PERCENT_EQ] = ACTIONS(168),
- [anon_sym_CARET_EQ] = ACTIONS(168),
- [anon_sym_AMP_EQ] = ACTIONS(168),
- [anon_sym_PIPE_EQ] = ACTIONS(168),
- [anon_sym_GT_GT_EQ] = ACTIONS(168),
- [anon_sym_GT_GT_GT_EQ] = ACTIONS(168),
- [anon_sym_LT_LT_EQ] = ACTIONS(168),
- [anon_sym_STAR_STAR_EQ] = ACTIONS(168),
- [anon_sym_AMP_AMP_EQ] = ACTIONS(168),
- [anon_sym_PIPE_PIPE_EQ] = ACTIONS(168),
- [anon_sym_QMARK_QMARK_EQ] = ACTIONS(168),
- [anon_sym_AMP_AMP] = ACTIONS(122),
- [anon_sym_PIPE_PIPE] = ACTIONS(122),
- [anon_sym_GT_GT] = ACTIONS(122),
- [anon_sym_GT_GT_GT] = ACTIONS(122),
- [anon_sym_LT_LT] = ACTIONS(122),
- [anon_sym_AMP] = ACTIONS(122),
- [anon_sym_CARET] = ACTIONS(122),
- [anon_sym_PIPE] = ACTIONS(122),
- [anon_sym_PLUS] = ACTIONS(122),
- [anon_sym_DASH] = ACTIONS(122),
- [anon_sym_SLASH] = ACTIONS(122),
- [anon_sym_PERCENT] = ACTIONS(122),
- [anon_sym_STAR_STAR] = ACTIONS(122),
- [anon_sym_LT] = ACTIONS(2378),
- [anon_sym_LT_EQ] = ACTIONS(162),
- [anon_sym_EQ_EQ] = ACTIONS(122),
- [anon_sym_EQ_EQ_EQ] = ACTIONS(162),
- [anon_sym_BANG_EQ] = ACTIONS(122),
- [anon_sym_BANG_EQ_EQ] = ACTIONS(162),
- [anon_sym_GT_EQ] = ACTIONS(162),
- [anon_sym_QMARK_QMARK] = ACTIONS(122),
- [anon_sym_instanceof] = ACTIONS(122),
- [anon_sym_PLUS_PLUS] = ACTIONS(162),
- [anon_sym_DASH_DASH] = ACTIONS(162),
- [sym_comment] = ACTIONS(5),
- [anon_sym_BQUOTE] = ACTIONS(162),
- [anon_sym_static] = ACTIONS(2383),
- [anon_sym_readonly] = ACTIONS(2383),
- [anon_sym_get] = ACTIONS(2383),
- [anon_sym_set] = ACTIONS(2383),
- [anon_sym_declare] = ACTIONS(2383),
- [anon_sym_public] = ACTIONS(2383),
- [anon_sym_private] = ACTIONS(2383),
- [anon_sym_protected] = ACTIONS(2383),
- [anon_sym_override] = ACTIONS(2383),
- [anon_sym_module] = ACTIONS(2383),
- [anon_sym_any] = ACTIONS(2383),
- [anon_sym_number] = ACTIONS(2383),
- [anon_sym_boolean] = ACTIONS(2383),
- [anon_sym_string] = ACTIONS(2383),
- [anon_sym_symbol] = ACTIONS(2383),
- [anon_sym_object] = ACTIONS(2383),
- [anon_sym_satisfies] = ACTIONS(122),
- [sym__ternary_qmark] = ACTIONS(162),
- [sym_html_comment] = ACTIONS(5),
- },
- [673] = {
- [sym__call_signature] = STATE(5837),
- [sym_formal_parameters] = STATE(3742),
- [sym_type_parameters] = STATE(5349),
- [sym_identifier] = ACTIONS(2385),
- [anon_sym_export] = ACTIONS(2387),
- [anon_sym_STAR] = ACTIONS(122),
- [anon_sym_type] = ACTIONS(2387),
- [anon_sym_EQ] = ACTIONS(841),
- [anon_sym_as] = ACTIONS(122),
- [anon_sym_namespace] = ACTIONS(2387),
- [anon_sym_COMMA] = ACTIONS(162),
- [anon_sym_let] = ACTIONS(2387),
- [anon_sym_BANG] = ACTIONS(122),
- [anon_sym_LPAREN] = ACTIONS(2373),
- [anon_sym_in] = ACTIONS(122),
- [anon_sym_of] = ACTIONS(122),
- [anon_sym_SEMI] = ACTIONS(162),
- [anon_sym_LBRACK] = ACTIONS(162),
- [anon_sym_GT] = ACTIONS(122),
- [anon_sym_DOT] = ACTIONS(162),
- [anon_sym_async] = ACTIONS(2387),
- [anon_sym_function] = ACTIONS(2389),
- [anon_sym_EQ_GT] = ACTIONS(878),
- [anon_sym_QMARK_DOT] = ACTIONS(162),
- [anon_sym_new] = ACTIONS(2387),
- [anon_sym_PLUS_EQ] = ACTIONS(168),
- [anon_sym_DASH_EQ] = ACTIONS(168),
- [anon_sym_STAR_EQ] = ACTIONS(168),
- [anon_sym_SLASH_EQ] = ACTIONS(168),
- [anon_sym_PERCENT_EQ] = ACTIONS(168),
- [anon_sym_CARET_EQ] = ACTIONS(168),
- [anon_sym_AMP_EQ] = ACTIONS(168),
- [anon_sym_PIPE_EQ] = ACTIONS(168),
- [anon_sym_GT_GT_EQ] = ACTIONS(168),
- [anon_sym_GT_GT_GT_EQ] = ACTIONS(168),
- [anon_sym_LT_LT_EQ] = ACTIONS(168),
- [anon_sym_STAR_STAR_EQ] = ACTIONS(168),
- [anon_sym_AMP_AMP_EQ] = ACTIONS(168),
- [anon_sym_PIPE_PIPE_EQ] = ACTIONS(168),
- [anon_sym_QMARK_QMARK_EQ] = ACTIONS(168),
- [anon_sym_AMP_AMP] = ACTIONS(122),
- [anon_sym_PIPE_PIPE] = ACTIONS(122),
- [anon_sym_GT_GT] = ACTIONS(122),
- [anon_sym_GT_GT_GT] = ACTIONS(122),
- [anon_sym_LT_LT] = ACTIONS(122),
- [anon_sym_AMP] = ACTIONS(122),
- [anon_sym_CARET] = ACTIONS(122),
- [anon_sym_PIPE] = ACTIONS(122),
- [anon_sym_PLUS] = ACTIONS(122),
- [anon_sym_DASH] = ACTIONS(122),
- [anon_sym_SLASH] = ACTIONS(122),
- [anon_sym_PERCENT] = ACTIONS(122),
- [anon_sym_STAR_STAR] = ACTIONS(122),
- [anon_sym_LT] = ACTIONS(2378),
- [anon_sym_LT_EQ] = ACTIONS(162),
- [anon_sym_EQ_EQ] = ACTIONS(122),
- [anon_sym_EQ_EQ_EQ] = ACTIONS(162),
- [anon_sym_BANG_EQ] = ACTIONS(122),
- [anon_sym_BANG_EQ_EQ] = ACTIONS(162),
- [anon_sym_GT_EQ] = ACTIONS(162),
- [anon_sym_QMARK_QMARK] = ACTIONS(122),
- [anon_sym_instanceof] = ACTIONS(122),
- [anon_sym_PLUS_PLUS] = ACTIONS(162),
- [anon_sym_DASH_DASH] = ACTIONS(162),
- [sym_comment] = ACTIONS(5),
- [anon_sym_BQUOTE] = ACTIONS(162),
- [anon_sym_static] = ACTIONS(2387),
- [anon_sym_readonly] = ACTIONS(2387),
- [anon_sym_get] = ACTIONS(2387),
- [anon_sym_set] = ACTIONS(2387),
- [anon_sym_declare] = ACTIONS(2387),
- [anon_sym_public] = ACTIONS(2387),
- [anon_sym_private] = ACTIONS(2387),
- [anon_sym_protected] = ACTIONS(2387),
- [anon_sym_override] = ACTIONS(2387),
- [anon_sym_module] = ACTIONS(2387),
- [anon_sym_any] = ACTIONS(2387),
- [anon_sym_number] = ACTIONS(2387),
- [anon_sym_boolean] = ACTIONS(2387),
- [anon_sym_string] = ACTIONS(2387),
- [anon_sym_symbol] = ACTIONS(2387),
- [anon_sym_object] = ACTIONS(2387),
- [anon_sym_satisfies] = ACTIONS(122),
- [sym__automatic_semicolon] = ACTIONS(162),
- [sym__ternary_qmark] = ACTIONS(162),
- [sym_html_comment] = ACTIONS(5),
- },
- [674] = {
- [sym__call_signature] = STATE(5679),
- [sym_formal_parameters] = STATE(3742),
- [sym_type_parameters] = STATE(5349),
- [sym_identifier] = ACTIONS(2381),
- [anon_sym_export] = ACTIONS(2383),
- [anon_sym_STAR] = ACTIONS(122),
- [anon_sym_type] = ACTIONS(2383),
- [anon_sym_EQ] = ACTIONS(857),
- [anon_sym_as] = ACTIONS(122),
- [anon_sym_namespace] = ACTIONS(2383),
- [anon_sym_COMMA] = ACTIONS(888),
- [anon_sym_RBRACE] = ACTIONS(888),
- [anon_sym_let] = ACTIONS(2383),
- [anon_sym_BANG] = ACTIONS(122),
- [anon_sym_LPAREN] = ACTIONS(2373),
- [anon_sym_in] = ACTIONS(122),
- [anon_sym_COLON] = ACTIONS(847),
- [anon_sym_LBRACK] = ACTIONS(162),
- [anon_sym_RBRACK] = ACTIONS(888),
- [anon_sym_GT] = ACTIONS(122),
- [anon_sym_DOT] = ACTIONS(162),
- [anon_sym_async] = ACTIONS(2383),
- [anon_sym_function] = ACTIONS(2376),
- [anon_sym_EQ_GT] = ACTIONS(160),
- [anon_sym_QMARK_DOT] = ACTIONS(162),
- [anon_sym_new] = ACTIONS(2383),
- [anon_sym_PLUS_EQ] = ACTIONS(168),
- [anon_sym_DASH_EQ] = ACTIONS(168),
- [anon_sym_STAR_EQ] = ACTIONS(168),
- [anon_sym_SLASH_EQ] = ACTIONS(168),
- [anon_sym_PERCENT_EQ] = ACTIONS(168),
- [anon_sym_CARET_EQ] = ACTIONS(168),
- [anon_sym_AMP_EQ] = ACTIONS(168),
- [anon_sym_PIPE_EQ] = ACTIONS(168),
- [anon_sym_GT_GT_EQ] = ACTIONS(168),
- [anon_sym_GT_GT_GT_EQ] = ACTIONS(168),
- [anon_sym_LT_LT_EQ] = ACTIONS(168),
- [anon_sym_STAR_STAR_EQ] = ACTIONS(168),
- [anon_sym_AMP_AMP_EQ] = ACTIONS(168),
- [anon_sym_PIPE_PIPE_EQ] = ACTIONS(168),
- [anon_sym_QMARK_QMARK_EQ] = ACTIONS(168),
- [anon_sym_AMP_AMP] = ACTIONS(122),
- [anon_sym_PIPE_PIPE] = ACTIONS(122),
- [anon_sym_GT_GT] = ACTIONS(122),
- [anon_sym_GT_GT_GT] = ACTIONS(122),
- [anon_sym_LT_LT] = ACTIONS(122),
- [anon_sym_AMP] = ACTIONS(122),
- [anon_sym_CARET] = ACTIONS(122),
- [anon_sym_PIPE] = ACTIONS(122),
- [anon_sym_PLUS] = ACTIONS(122),
- [anon_sym_DASH] = ACTIONS(122),
- [anon_sym_SLASH] = ACTIONS(122),
- [anon_sym_PERCENT] = ACTIONS(122),
- [anon_sym_STAR_STAR] = ACTIONS(122),
- [anon_sym_LT] = ACTIONS(2378),
- [anon_sym_LT_EQ] = ACTIONS(162),
- [anon_sym_EQ_EQ] = ACTIONS(122),
- [anon_sym_EQ_EQ_EQ] = ACTIONS(162),
- [anon_sym_BANG_EQ] = ACTIONS(122),
- [anon_sym_BANG_EQ_EQ] = ACTIONS(162),
- [anon_sym_GT_EQ] = ACTIONS(162),
- [anon_sym_QMARK_QMARK] = ACTIONS(122),
- [anon_sym_instanceof] = ACTIONS(122),
- [anon_sym_PLUS_PLUS] = ACTIONS(162),
- [anon_sym_DASH_DASH] = ACTIONS(162),
- [sym_comment] = ACTIONS(5),
- [anon_sym_BQUOTE] = ACTIONS(162),
- [anon_sym_static] = ACTIONS(2383),
- [anon_sym_readonly] = ACTIONS(2383),
- [anon_sym_get] = ACTIONS(2383),
- [anon_sym_set] = ACTIONS(2383),
- [anon_sym_declare] = ACTIONS(2383),
- [anon_sym_public] = ACTIONS(2383),
- [anon_sym_private] = ACTIONS(2383),
- [anon_sym_protected] = ACTIONS(2383),
- [anon_sym_override] = ACTIONS(2383),
- [anon_sym_module] = ACTIONS(2383),
- [anon_sym_any] = ACTIONS(2383),
- [anon_sym_number] = ACTIONS(2383),
- [anon_sym_boolean] = ACTIONS(2383),
- [anon_sym_string] = ACTIONS(2383),
- [anon_sym_symbol] = ACTIONS(2383),
- [anon_sym_object] = ACTIONS(2383),
- [anon_sym_satisfies] = ACTIONS(122),
- [sym__ternary_qmark] = ACTIONS(162),
- [sym_html_comment] = ACTIONS(5),
- },
- [675] = {
- [sym__call_signature] = STATE(5703),
- [sym_formal_parameters] = STATE(3742),
- [sym_type_parameters] = STATE(5349),
- [sym_identifier] = ACTIONS(2391),
- [anon_sym_export] = ACTIONS(2393),
- [anon_sym_STAR] = ACTIONS(122),
- [anon_sym_type] = ACTIONS(2393),
- [anon_sym_EQ] = ACTIONS(859),
- [anon_sym_as] = ACTIONS(122),
- [anon_sym_namespace] = ACTIONS(2393),
- [anon_sym_COMMA] = ACTIONS(162),
- [anon_sym_let] = ACTIONS(2393),
- [anon_sym_BANG] = ACTIONS(122),
- [anon_sym_LPAREN] = ACTIONS(2373),
- [anon_sym_in] = ACTIONS(122),
- [anon_sym_SEMI] = ACTIONS(162),
- [anon_sym_COLON] = ACTIONS(884),
- [anon_sym_LBRACK] = ACTIONS(162),
- [anon_sym_GT] = ACTIONS(122),
- [anon_sym_DOT] = ACTIONS(162),
- [anon_sym_async] = ACTIONS(2393),
- [anon_sym_function] = ACTIONS(2279),
- [anon_sym_EQ_GT] = ACTIONS(715),
- [anon_sym_QMARK_DOT] = ACTIONS(162),
- [anon_sym_new] = ACTIONS(2393),
- [anon_sym_PLUS_EQ] = ACTIONS(168),
- [anon_sym_DASH_EQ] = ACTIONS(168),
- [anon_sym_STAR_EQ] = ACTIONS(168),
- [anon_sym_SLASH_EQ] = ACTIONS(168),
- [anon_sym_PERCENT_EQ] = ACTIONS(168),
- [anon_sym_CARET_EQ] = ACTIONS(168),
- [anon_sym_AMP_EQ] = ACTIONS(168),
- [anon_sym_PIPE_EQ] = ACTIONS(168),
- [anon_sym_GT_GT_EQ] = ACTIONS(168),
- [anon_sym_GT_GT_GT_EQ] = ACTIONS(168),
- [anon_sym_LT_LT_EQ] = ACTIONS(168),
- [anon_sym_STAR_STAR_EQ] = ACTIONS(168),
- [anon_sym_AMP_AMP_EQ] = ACTIONS(168),
- [anon_sym_PIPE_PIPE_EQ] = ACTIONS(168),
- [anon_sym_QMARK_QMARK_EQ] = ACTIONS(168),
- [anon_sym_AMP_AMP] = ACTIONS(122),
- [anon_sym_PIPE_PIPE] = ACTIONS(122),
- [anon_sym_GT_GT] = ACTIONS(122),
- [anon_sym_GT_GT_GT] = ACTIONS(122),
- [anon_sym_LT_LT] = ACTIONS(122),
- [anon_sym_AMP] = ACTIONS(122),
- [anon_sym_CARET] = ACTIONS(122),
- [anon_sym_PIPE] = ACTIONS(122),
- [anon_sym_PLUS] = ACTIONS(122),
- [anon_sym_DASH] = ACTIONS(122),
- [anon_sym_SLASH] = ACTIONS(122),
- [anon_sym_PERCENT] = ACTIONS(122),
- [anon_sym_STAR_STAR] = ACTIONS(122),
- [anon_sym_LT] = ACTIONS(2378),
- [anon_sym_LT_EQ] = ACTIONS(162),
- [anon_sym_EQ_EQ] = ACTIONS(122),
- [anon_sym_EQ_EQ_EQ] = ACTIONS(162),
- [anon_sym_BANG_EQ] = ACTIONS(122),
- [anon_sym_BANG_EQ_EQ] = ACTIONS(162),
- [anon_sym_GT_EQ] = ACTIONS(162),
- [anon_sym_QMARK_QMARK] = ACTIONS(122),
- [anon_sym_instanceof] = ACTIONS(122),
- [anon_sym_PLUS_PLUS] = ACTIONS(162),
- [anon_sym_DASH_DASH] = ACTIONS(162),
- [sym_comment] = ACTIONS(5),
- [anon_sym_BQUOTE] = ACTIONS(162),
- [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_override] = 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_object] = ACTIONS(2393),
- [anon_sym_satisfies] = ACTIONS(122),
- [sym__automatic_semicolon] = ACTIONS(162),
- [sym__ternary_qmark] = ACTIONS(162),
- [sym_html_comment] = ACTIONS(5),
- },
- [676] = {
- [sym__call_signature] = STATE(5703),
- [sym_formal_parameters] = STATE(3742),
- [sym_type_parameters] = STATE(5349),
- [sym_identifier] = ACTIONS(2391),
- [anon_sym_export] = ACTIONS(2393),
- [anon_sym_STAR] = ACTIONS(122),
- [anon_sym_type] = ACTIONS(2393),
- [anon_sym_EQ] = ACTIONS(859),
- [anon_sym_as] = ACTIONS(122),
- [anon_sym_namespace] = ACTIONS(2393),
- [anon_sym_COMMA] = ACTIONS(162),
- [anon_sym_let] = ACTIONS(2393),
- [anon_sym_BANG] = ACTIONS(122),
- [anon_sym_LPAREN] = ACTIONS(2373),
- [anon_sym_in] = ACTIONS(861),
- [anon_sym_of] = ACTIONS(864),
- [anon_sym_SEMI] = ACTIONS(162),
- [anon_sym_LBRACK] = ACTIONS(162),
- [anon_sym_GT] = ACTIONS(122),
- [anon_sym_DOT] = ACTIONS(162),
- [anon_sym_async] = ACTIONS(2393),
- [anon_sym_function] = ACTIONS(2389),
- [anon_sym_EQ_GT] = ACTIONS(715),
- [anon_sym_QMARK_DOT] = ACTIONS(162),
- [anon_sym_new] = ACTIONS(2393),
- [anon_sym_PLUS_EQ] = ACTIONS(168),
- [anon_sym_DASH_EQ] = ACTIONS(168),
- [anon_sym_STAR_EQ] = ACTIONS(168),
- [anon_sym_SLASH_EQ] = ACTIONS(168),
- [anon_sym_PERCENT_EQ] = ACTIONS(168),
- [anon_sym_CARET_EQ] = ACTIONS(168),
- [anon_sym_AMP_EQ] = ACTIONS(168),
- [anon_sym_PIPE_EQ] = ACTIONS(168),
- [anon_sym_GT_GT_EQ] = ACTIONS(168),
- [anon_sym_GT_GT_GT_EQ] = ACTIONS(168),
- [anon_sym_LT_LT_EQ] = ACTIONS(168),
- [anon_sym_STAR_STAR_EQ] = ACTIONS(168),
- [anon_sym_AMP_AMP_EQ] = ACTIONS(168),
- [anon_sym_PIPE_PIPE_EQ] = ACTIONS(168),
- [anon_sym_QMARK_QMARK_EQ] = ACTIONS(168),
- [anon_sym_AMP_AMP] = ACTIONS(122),
- [anon_sym_PIPE_PIPE] = ACTIONS(122),
- [anon_sym_GT_GT] = ACTIONS(122),
- [anon_sym_GT_GT_GT] = ACTIONS(122),
- [anon_sym_LT_LT] = ACTIONS(122),
- [anon_sym_AMP] = ACTIONS(122),
- [anon_sym_CARET] = ACTIONS(122),
- [anon_sym_PIPE] = ACTIONS(122),
- [anon_sym_PLUS] = ACTIONS(122),
- [anon_sym_DASH] = ACTIONS(122),
- [anon_sym_SLASH] = ACTIONS(122),
- [anon_sym_PERCENT] = ACTIONS(122),
- [anon_sym_STAR_STAR] = ACTIONS(122),
- [anon_sym_LT] = ACTIONS(2378),
- [anon_sym_LT_EQ] = ACTIONS(162),
- [anon_sym_EQ_EQ] = ACTIONS(122),
- [anon_sym_EQ_EQ_EQ] = ACTIONS(162),
- [anon_sym_BANG_EQ] = ACTIONS(122),
- [anon_sym_BANG_EQ_EQ] = ACTIONS(162),
- [anon_sym_GT_EQ] = ACTIONS(162),
- [anon_sym_QMARK_QMARK] = ACTIONS(122),
- [anon_sym_instanceof] = ACTIONS(122),
- [anon_sym_PLUS_PLUS] = ACTIONS(162),
- [anon_sym_DASH_DASH] = ACTIONS(162),
- [sym_comment] = ACTIONS(5),
- [anon_sym_BQUOTE] = ACTIONS(162),
- [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_override] = 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_object] = ACTIONS(2393),
- [anon_sym_satisfies] = ACTIONS(122),
- [sym__automatic_semicolon] = ACTIONS(162),
- [sym__ternary_qmark] = ACTIONS(162),
- [sym_html_comment] = ACTIONS(5),
- },
- [677] = {
- [sym__call_signature] = STATE(5837),
- [sym_formal_parameters] = STATE(3742),
- [sym_type_parameters] = STATE(5349),
- [sym_identifier] = ACTIONS(2385),
- [anon_sym_export] = ACTIONS(2387),
- [anon_sym_STAR] = ACTIONS(122),
- [anon_sym_type] = ACTIONS(2387),
- [anon_sym_EQ] = ACTIONS(872),
- [anon_sym_as] = ACTIONS(122),
- [anon_sym_namespace] = ACTIONS(2387),
- [anon_sym_COMMA] = ACTIONS(162),
- [anon_sym_let] = ACTIONS(2387),
- [anon_sym_BANG] = ACTIONS(122),
- [anon_sym_LPAREN] = ACTIONS(2373),
- [anon_sym_in] = ACTIONS(122),
- [anon_sym_of] = ACTIONS(122),
- [anon_sym_SEMI] = ACTIONS(162),
- [anon_sym_LBRACK] = ACTIONS(162),
- [anon_sym_GT] = ACTIONS(122),
- [anon_sym_DOT] = ACTIONS(162),
- [anon_sym_async] = ACTIONS(2387),
- [anon_sym_function] = ACTIONS(2389),
- [anon_sym_EQ_GT] = ACTIONS(878),
- [anon_sym_QMARK_DOT] = ACTIONS(162),
- [anon_sym_new] = ACTIONS(2387),
- [anon_sym_PLUS_EQ] = ACTIONS(168),
- [anon_sym_DASH_EQ] = ACTIONS(168),
- [anon_sym_STAR_EQ] = ACTIONS(168),
- [anon_sym_SLASH_EQ] = ACTIONS(168),
- [anon_sym_PERCENT_EQ] = ACTIONS(168),
- [anon_sym_CARET_EQ] = ACTIONS(168),
- [anon_sym_AMP_EQ] = ACTIONS(168),
- [anon_sym_PIPE_EQ] = ACTIONS(168),
- [anon_sym_GT_GT_EQ] = ACTIONS(168),
- [anon_sym_GT_GT_GT_EQ] = ACTIONS(168),
- [anon_sym_LT_LT_EQ] = ACTIONS(168),
- [anon_sym_STAR_STAR_EQ] = ACTIONS(168),
- [anon_sym_AMP_AMP_EQ] = ACTIONS(168),
- [anon_sym_PIPE_PIPE_EQ] = ACTIONS(168),
- [anon_sym_QMARK_QMARK_EQ] = ACTIONS(168),
- [anon_sym_AMP_AMP] = ACTIONS(122),
- [anon_sym_PIPE_PIPE] = ACTIONS(122),
- [anon_sym_GT_GT] = ACTIONS(122),
- [anon_sym_GT_GT_GT] = ACTIONS(122),
- [anon_sym_LT_LT] = ACTIONS(122),
- [anon_sym_AMP] = ACTIONS(122),
- [anon_sym_CARET] = ACTIONS(122),
- [anon_sym_PIPE] = ACTIONS(122),
- [anon_sym_PLUS] = ACTIONS(122),
- [anon_sym_DASH] = ACTIONS(122),
- [anon_sym_SLASH] = ACTIONS(122),
- [anon_sym_PERCENT] = ACTIONS(122),
- [anon_sym_STAR_STAR] = ACTIONS(122),
- [anon_sym_LT] = ACTIONS(2378),
- [anon_sym_LT_EQ] = ACTIONS(162),
- [anon_sym_EQ_EQ] = ACTIONS(122),
- [anon_sym_EQ_EQ_EQ] = ACTIONS(162),
- [anon_sym_BANG_EQ] = ACTIONS(122),
- [anon_sym_BANG_EQ_EQ] = ACTIONS(162),
- [anon_sym_GT_EQ] = ACTIONS(162),
- [anon_sym_QMARK_QMARK] = ACTIONS(122),
- [anon_sym_instanceof] = ACTIONS(122),
- [anon_sym_PLUS_PLUS] = ACTIONS(162),
- [anon_sym_DASH_DASH] = ACTIONS(162),
- [sym_comment] = ACTIONS(5),
- [anon_sym_BQUOTE] = ACTIONS(162),
- [anon_sym_static] = ACTIONS(2387),
- [anon_sym_readonly] = ACTIONS(2387),
- [anon_sym_get] = ACTIONS(2387),
- [anon_sym_set] = ACTIONS(2387),
- [anon_sym_declare] = ACTIONS(2387),
- [anon_sym_public] = ACTIONS(2387),
- [anon_sym_private] = ACTIONS(2387),
- [anon_sym_protected] = ACTIONS(2387),
- [anon_sym_override] = ACTIONS(2387),
- [anon_sym_module] = ACTIONS(2387),
- [anon_sym_any] = ACTIONS(2387),
- [anon_sym_number] = ACTIONS(2387),
- [anon_sym_boolean] = ACTIONS(2387),
- [anon_sym_string] = ACTIONS(2387),
- [anon_sym_symbol] = ACTIONS(2387),
- [anon_sym_object] = ACTIONS(2387),
- [anon_sym_satisfies] = ACTIONS(122),
- [sym__automatic_semicolon] = ACTIONS(162),
- [sym__ternary_qmark] = ACTIONS(162),
- [sym_html_comment] = ACTIONS(5),
- },
- [678] = {
- [sym__call_signature] = STATE(5703),
- [sym_formal_parameters] = STATE(3742),
- [sym_type_parameters] = STATE(5349),
- [sym_identifier] = ACTIONS(2391),
- [anon_sym_export] = ACTIONS(2393),
- [anon_sym_STAR] = ACTIONS(122),
- [anon_sym_type] = ACTIONS(2393),
- [anon_sym_EQ] = ACTIONS(859),
- [anon_sym_as] = ACTIONS(122),
- [anon_sym_namespace] = ACTIONS(2393),
- [anon_sym_COMMA] = ACTIONS(162),
- [anon_sym_RBRACE] = ACTIONS(162),
- [anon_sym_let] = ACTIONS(2393),
- [anon_sym_BANG] = ACTIONS(122),
- [anon_sym_LPAREN] = ACTIONS(2373),
- [anon_sym_in] = ACTIONS(122),
- [anon_sym_SEMI] = ACTIONS(162),
- [anon_sym_LBRACK] = ACTIONS(162),
- [anon_sym_GT] = ACTIONS(122),
- [anon_sym_DOT] = ACTIONS(162),
- [anon_sym_async] = ACTIONS(2393),
- [anon_sym_function] = ACTIONS(2389),
- [anon_sym_EQ_GT] = ACTIONS(715),
- [anon_sym_QMARK_DOT] = ACTIONS(162),
- [anon_sym_new] = ACTIONS(2393),
- [anon_sym_PLUS_EQ] = ACTIONS(168),
- [anon_sym_DASH_EQ] = ACTIONS(168),
- [anon_sym_STAR_EQ] = ACTIONS(168),
- [anon_sym_SLASH_EQ] = ACTIONS(168),
- [anon_sym_PERCENT_EQ] = ACTIONS(168),
- [anon_sym_CARET_EQ] = ACTIONS(168),
- [anon_sym_AMP_EQ] = ACTIONS(168),
- [anon_sym_PIPE_EQ] = ACTIONS(168),
- [anon_sym_GT_GT_EQ] = ACTIONS(168),
- [anon_sym_GT_GT_GT_EQ] = ACTIONS(168),
- [anon_sym_LT_LT_EQ] = ACTIONS(168),
- [anon_sym_STAR_STAR_EQ] = ACTIONS(168),
- [anon_sym_AMP_AMP_EQ] = ACTIONS(168),
- [anon_sym_PIPE_PIPE_EQ] = ACTIONS(168),
- [anon_sym_QMARK_QMARK_EQ] = ACTIONS(168),
- [anon_sym_AMP_AMP] = ACTIONS(122),
- [anon_sym_PIPE_PIPE] = ACTIONS(122),
- [anon_sym_GT_GT] = ACTIONS(122),
- [anon_sym_GT_GT_GT] = ACTIONS(122),
- [anon_sym_LT_LT] = ACTIONS(122),
- [anon_sym_AMP] = ACTIONS(122),
- [anon_sym_CARET] = ACTIONS(122),
- [anon_sym_PIPE] = ACTIONS(122),
- [anon_sym_PLUS] = ACTIONS(122),
- [anon_sym_DASH] = ACTIONS(122),
- [anon_sym_SLASH] = ACTIONS(122),
- [anon_sym_PERCENT] = ACTIONS(122),
- [anon_sym_STAR_STAR] = ACTIONS(122),
- [anon_sym_LT] = ACTIONS(2378),
- [anon_sym_LT_EQ] = ACTIONS(162),
- [anon_sym_EQ_EQ] = ACTIONS(122),
- [anon_sym_EQ_EQ_EQ] = ACTIONS(162),
- [anon_sym_BANG_EQ] = ACTIONS(122),
- [anon_sym_BANG_EQ_EQ] = ACTIONS(162),
- [anon_sym_GT_EQ] = ACTIONS(162),
- [anon_sym_QMARK_QMARK] = ACTIONS(122),
- [anon_sym_instanceof] = ACTIONS(122),
- [anon_sym_PLUS_PLUS] = ACTIONS(162),
- [anon_sym_DASH_DASH] = ACTIONS(162),
- [sym_comment] = ACTIONS(5),
- [anon_sym_BQUOTE] = ACTIONS(162),
- [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_override] = 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_object] = ACTIONS(2393),
- [anon_sym_satisfies] = ACTIONS(122),
- [sym__automatic_semicolon] = ACTIONS(162),
- [sym__ternary_qmark] = ACTIONS(162),
- [sym_html_comment] = ACTIONS(5),
- },
- [679] = {
- [sym__call_signature] = STATE(5703),
- [sym_formal_parameters] = STATE(3742),
- [sym_type_parameters] = STATE(5349),
- [sym_identifier] = ACTIONS(2391),
- [anon_sym_export] = ACTIONS(2393),
- [anon_sym_STAR] = ACTIONS(122),
- [anon_sym_type] = ACTIONS(2393),
- [anon_sym_EQ] = ACTIONS(859),
- [anon_sym_as] = ACTIONS(122),
- [anon_sym_namespace] = ACTIONS(2393),
- [anon_sym_COMMA] = ACTIONS(162),
- [anon_sym_let] = ACTIONS(2393),
- [anon_sym_BANG] = ACTIONS(122),
- [anon_sym_LPAREN] = ACTIONS(2373),
- [anon_sym_in] = ACTIONS(122),
- [anon_sym_SEMI] = ACTIONS(162),
- [anon_sym_COLON] = ACTIONS(866),
- [anon_sym_LBRACK] = ACTIONS(162),
- [anon_sym_GT] = ACTIONS(122),
- [anon_sym_DOT] = ACTIONS(162),
- [anon_sym_async] = ACTIONS(2393),
- [anon_sym_function] = ACTIONS(2395),
- [anon_sym_EQ_GT] = ACTIONS(715),
- [anon_sym_QMARK_DOT] = ACTIONS(162),
- [anon_sym_new] = ACTIONS(2393),
- [anon_sym_PLUS_EQ] = ACTIONS(168),
- [anon_sym_DASH_EQ] = ACTIONS(168),
- [anon_sym_STAR_EQ] = ACTIONS(168),
- [anon_sym_SLASH_EQ] = ACTIONS(168),
- [anon_sym_PERCENT_EQ] = ACTIONS(168),
- [anon_sym_CARET_EQ] = ACTIONS(168),
- [anon_sym_AMP_EQ] = ACTIONS(168),
- [anon_sym_PIPE_EQ] = ACTIONS(168),
- [anon_sym_GT_GT_EQ] = ACTIONS(168),
- [anon_sym_GT_GT_GT_EQ] = ACTIONS(168),
- [anon_sym_LT_LT_EQ] = ACTIONS(168),
- [anon_sym_STAR_STAR_EQ] = ACTIONS(168),
- [anon_sym_AMP_AMP_EQ] = ACTIONS(168),
- [anon_sym_PIPE_PIPE_EQ] = ACTIONS(168),
- [anon_sym_QMARK_QMARK_EQ] = ACTIONS(168),
- [anon_sym_AMP_AMP] = ACTIONS(122),
- [anon_sym_PIPE_PIPE] = ACTIONS(122),
- [anon_sym_GT_GT] = ACTIONS(122),
- [anon_sym_GT_GT_GT] = ACTIONS(122),
- [anon_sym_LT_LT] = ACTIONS(122),
- [anon_sym_AMP] = ACTIONS(122),
- [anon_sym_CARET] = ACTIONS(122),
- [anon_sym_PIPE] = ACTIONS(122),
- [anon_sym_PLUS] = ACTIONS(122),
- [anon_sym_DASH] = ACTIONS(122),
- [anon_sym_SLASH] = ACTIONS(122),
- [anon_sym_PERCENT] = ACTIONS(122),
- [anon_sym_STAR_STAR] = ACTIONS(122),
- [anon_sym_LT] = ACTIONS(2378),
- [anon_sym_LT_EQ] = ACTIONS(162),
- [anon_sym_EQ_EQ] = ACTIONS(122),
- [anon_sym_EQ_EQ_EQ] = ACTIONS(162),
- [anon_sym_BANG_EQ] = ACTIONS(122),
- [anon_sym_BANG_EQ_EQ] = ACTIONS(162),
- [anon_sym_GT_EQ] = ACTIONS(162),
- [anon_sym_QMARK_QMARK] = ACTIONS(122),
- [anon_sym_instanceof] = ACTIONS(122),
- [anon_sym_PLUS_PLUS] = ACTIONS(162),
- [anon_sym_DASH_DASH] = ACTIONS(162),
- [sym_comment] = ACTIONS(5),
- [anon_sym_BQUOTE] = ACTIONS(162),
- [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_override] = 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_object] = ACTIONS(2393),
- [anon_sym_satisfies] = ACTIONS(122),
- [sym__automatic_semicolon] = ACTIONS(162),
- [sym__ternary_qmark] = ACTIONS(162),
- [sym_html_comment] = ACTIONS(5),
- },
- [680] = {
- [sym__call_signature] = STATE(5703),
- [sym_formal_parameters] = STATE(3742),
- [sym_type_parameters] = STATE(5349),
- [sym_identifier] = ACTIONS(2391),
- [anon_sym_export] = ACTIONS(2393),
- [anon_sym_STAR] = ACTIONS(122),
- [anon_sym_type] = ACTIONS(2393),
- [anon_sym_EQ] = ACTIONS(859),
- [anon_sym_as] = ACTIONS(122),
- [anon_sym_namespace] = ACTIONS(2393),
- [anon_sym_COMMA] = ACTIONS(162),
- [anon_sym_let] = ACTIONS(2393),
- [anon_sym_BANG] = ACTIONS(122),
- [anon_sym_LPAREN] = ACTIONS(2373),
- [anon_sym_in] = ACTIONS(122),
- [anon_sym_SEMI] = ACTIONS(162),
- [anon_sym_COLON] = ACTIONS(886),
- [anon_sym_LBRACK] = ACTIONS(162),
- [anon_sym_GT] = ACTIONS(122),
- [anon_sym_DOT] = ACTIONS(162),
- [anon_sym_async] = ACTIONS(2393),
- [anon_sym_function] = ACTIONS(2395),
- [anon_sym_EQ_GT] = ACTIONS(715),
- [anon_sym_QMARK_DOT] = ACTIONS(162),
- [anon_sym_new] = ACTIONS(2393),
- [anon_sym_PLUS_EQ] = ACTIONS(168),
- [anon_sym_DASH_EQ] = ACTIONS(168),
- [anon_sym_STAR_EQ] = ACTIONS(168),
- [anon_sym_SLASH_EQ] = ACTIONS(168),
- [anon_sym_PERCENT_EQ] = ACTIONS(168),
- [anon_sym_CARET_EQ] = ACTIONS(168),
- [anon_sym_AMP_EQ] = ACTIONS(168),
- [anon_sym_PIPE_EQ] = ACTIONS(168),
- [anon_sym_GT_GT_EQ] = ACTIONS(168),
- [anon_sym_GT_GT_GT_EQ] = ACTIONS(168),
- [anon_sym_LT_LT_EQ] = ACTIONS(168),
- [anon_sym_STAR_STAR_EQ] = ACTIONS(168),
- [anon_sym_AMP_AMP_EQ] = ACTIONS(168),
- [anon_sym_PIPE_PIPE_EQ] = ACTIONS(168),
- [anon_sym_QMARK_QMARK_EQ] = ACTIONS(168),
- [anon_sym_AMP_AMP] = ACTIONS(122),
- [anon_sym_PIPE_PIPE] = ACTIONS(122),
- [anon_sym_GT_GT] = ACTIONS(122),
- [anon_sym_GT_GT_GT] = ACTIONS(122),
- [anon_sym_LT_LT] = ACTIONS(122),
- [anon_sym_AMP] = ACTIONS(122),
- [anon_sym_CARET] = ACTIONS(122),
- [anon_sym_PIPE] = ACTIONS(122),
- [anon_sym_PLUS] = ACTIONS(122),
- [anon_sym_DASH] = ACTIONS(122),
- [anon_sym_SLASH] = ACTIONS(122),
- [anon_sym_PERCENT] = ACTIONS(122),
- [anon_sym_STAR_STAR] = ACTIONS(122),
- [anon_sym_LT] = ACTIONS(2378),
- [anon_sym_LT_EQ] = ACTIONS(162),
- [anon_sym_EQ_EQ] = ACTIONS(122),
- [anon_sym_EQ_EQ_EQ] = ACTIONS(162),
- [anon_sym_BANG_EQ] = ACTIONS(122),
- [anon_sym_BANG_EQ_EQ] = ACTIONS(162),
- [anon_sym_GT_EQ] = ACTIONS(162),
- [anon_sym_QMARK_QMARK] = ACTIONS(122),
- [anon_sym_instanceof] = ACTIONS(122),
- [anon_sym_PLUS_PLUS] = ACTIONS(162),
- [anon_sym_DASH_DASH] = ACTIONS(162),
- [sym_comment] = ACTIONS(5),
- [anon_sym_BQUOTE] = ACTIONS(162),
- [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_override] = 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_object] = ACTIONS(2393),
- [anon_sym_satisfies] = ACTIONS(122),
- [sym__automatic_semicolon] = ACTIONS(162),
- [sym__ternary_qmark] = ACTIONS(162),
- [sym_html_comment] = ACTIONS(5),
- },
- [681] = {
- [sym__call_signature] = STATE(5703),
- [sym_formal_parameters] = STATE(3742),
- [sym_type_parameters] = STATE(5349),
- [sym_identifier] = ACTIONS(2391),
- [anon_sym_export] = ACTIONS(2393),
- [anon_sym_STAR] = ACTIONS(122),
- [anon_sym_type] = ACTIONS(2393),
- [anon_sym_EQ] = ACTIONS(841),
- [anon_sym_as] = ACTIONS(122),
- [anon_sym_namespace] = ACTIONS(2393),
- [anon_sym_COMMA] = ACTIONS(162),
- [anon_sym_RBRACE] = ACTIONS(162),
- [anon_sym_let] = ACTIONS(2393),
- [anon_sym_BANG] = ACTIONS(122),
- [anon_sym_LPAREN] = ACTIONS(2373),
- [anon_sym_in] = ACTIONS(122),
- [anon_sym_SEMI] = ACTIONS(162),
- [anon_sym_LBRACK] = ACTIONS(162),
- [anon_sym_GT] = ACTIONS(122),
- [anon_sym_DOT] = ACTIONS(162),
- [anon_sym_async] = ACTIONS(2393),
- [anon_sym_function] = ACTIONS(2389),
- [anon_sym_EQ_GT] = ACTIONS(715),
- [anon_sym_QMARK_DOT] = ACTIONS(162),
- [anon_sym_new] = ACTIONS(2393),
- [anon_sym_PLUS_EQ] = ACTIONS(168),
- [anon_sym_DASH_EQ] = ACTIONS(168),
- [anon_sym_STAR_EQ] = ACTIONS(168),
- [anon_sym_SLASH_EQ] = ACTIONS(168),
- [anon_sym_PERCENT_EQ] = ACTIONS(168),
- [anon_sym_CARET_EQ] = ACTIONS(168),
- [anon_sym_AMP_EQ] = ACTIONS(168),
- [anon_sym_PIPE_EQ] = ACTIONS(168),
- [anon_sym_GT_GT_EQ] = ACTIONS(168),
- [anon_sym_GT_GT_GT_EQ] = ACTIONS(168),
- [anon_sym_LT_LT_EQ] = ACTIONS(168),
- [anon_sym_STAR_STAR_EQ] = ACTIONS(168),
- [anon_sym_AMP_AMP_EQ] = ACTIONS(168),
- [anon_sym_PIPE_PIPE_EQ] = ACTIONS(168),
- [anon_sym_QMARK_QMARK_EQ] = ACTIONS(168),
- [anon_sym_AMP_AMP] = ACTIONS(122),
- [anon_sym_PIPE_PIPE] = ACTIONS(122),
- [anon_sym_GT_GT] = ACTIONS(122),
- [anon_sym_GT_GT_GT] = ACTIONS(122),
- [anon_sym_LT_LT] = ACTIONS(122),
- [anon_sym_AMP] = ACTIONS(122),
- [anon_sym_CARET] = ACTIONS(122),
- [anon_sym_PIPE] = ACTIONS(122),
- [anon_sym_PLUS] = ACTIONS(122),
- [anon_sym_DASH] = ACTIONS(122),
- [anon_sym_SLASH] = ACTIONS(122),
- [anon_sym_PERCENT] = ACTIONS(122),
- [anon_sym_STAR_STAR] = ACTIONS(122),
- [anon_sym_LT] = ACTIONS(2378),
- [anon_sym_LT_EQ] = ACTIONS(162),
- [anon_sym_EQ_EQ] = ACTIONS(122),
- [anon_sym_EQ_EQ_EQ] = ACTIONS(162),
- [anon_sym_BANG_EQ] = ACTIONS(122),
- [anon_sym_BANG_EQ_EQ] = ACTIONS(162),
- [anon_sym_GT_EQ] = ACTIONS(162),
- [anon_sym_QMARK_QMARK] = ACTIONS(122),
- [anon_sym_instanceof] = ACTIONS(122),
- [anon_sym_PLUS_PLUS] = ACTIONS(162),
- [anon_sym_DASH_DASH] = ACTIONS(162),
- [sym_comment] = ACTIONS(5),
- [anon_sym_BQUOTE] = ACTIONS(162),
- [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_override] = 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_object] = ACTIONS(2393),
- [anon_sym_satisfies] = ACTIONS(122),
- [sym__automatic_semicolon] = ACTIONS(162),
- [sym__ternary_qmark] = ACTIONS(162),
- [sym_html_comment] = ACTIONS(5),
- },
- [682] = {
- [sym__call_signature] = STATE(5772),
- [sym_formal_parameters] = STATE(3742),
- [sym_type_parameters] = STATE(5349),
- [sym_identifier] = ACTIONS(2397),
- [anon_sym_export] = ACTIONS(2399),
- [anon_sym_STAR] = ACTIONS(122),
- [anon_sym_type] = ACTIONS(2399),
- [anon_sym_EQ] = ACTIONS(895),
- [anon_sym_as] = ACTIONS(122),
- [anon_sym_namespace] = ACTIONS(2399),
- [anon_sym_COMMA] = ACTIONS(227),
- [anon_sym_let] = ACTIONS(2399),
- [anon_sym_BANG] = ACTIONS(122),
- [anon_sym_LPAREN] = ACTIONS(2373),
- [anon_sym_in] = ACTIONS(122),
- [anon_sym_COLON] = ACTIONS(900),
- [anon_sym_LBRACK] = ACTIONS(162),
- [anon_sym_RBRACK] = ACTIONS(128),
- [anon_sym_GT] = ACTIONS(122),
- [anon_sym_DOT] = ACTIONS(162),
- [anon_sym_async] = ACTIONS(2399),
- [anon_sym_function] = ACTIONS(2376),
- [anon_sym_EQ_GT] = ACTIONS(904),
- [anon_sym_QMARK_DOT] = ACTIONS(162),
- [anon_sym_new] = ACTIONS(2399),
- [anon_sym_PLUS_EQ] = ACTIONS(168),
- [anon_sym_DASH_EQ] = ACTIONS(168),
- [anon_sym_STAR_EQ] = ACTIONS(168),
- [anon_sym_SLASH_EQ] = ACTIONS(168),
- [anon_sym_PERCENT_EQ] = ACTIONS(168),
- [anon_sym_CARET_EQ] = ACTIONS(168),
- [anon_sym_AMP_EQ] = ACTIONS(168),
- [anon_sym_PIPE_EQ] = ACTIONS(168),
- [anon_sym_GT_GT_EQ] = ACTIONS(168),
- [anon_sym_GT_GT_GT_EQ] = ACTIONS(168),
- [anon_sym_LT_LT_EQ] = ACTIONS(168),
- [anon_sym_STAR_STAR_EQ] = ACTIONS(168),
- [anon_sym_AMP_AMP_EQ] = ACTIONS(168),
- [anon_sym_PIPE_PIPE_EQ] = ACTIONS(168),
- [anon_sym_QMARK_QMARK_EQ] = ACTIONS(168),
- [anon_sym_AMP_AMP] = ACTIONS(122),
- [anon_sym_PIPE_PIPE] = ACTIONS(122),
- [anon_sym_GT_GT] = ACTIONS(122),
- [anon_sym_GT_GT_GT] = ACTIONS(122),
- [anon_sym_LT_LT] = ACTIONS(122),
- [anon_sym_AMP] = ACTIONS(122),
- [anon_sym_CARET] = ACTIONS(122),
- [anon_sym_PIPE] = ACTIONS(122),
- [anon_sym_PLUS] = ACTIONS(122),
- [anon_sym_DASH] = ACTIONS(122),
- [anon_sym_SLASH] = ACTIONS(122),
- [anon_sym_PERCENT] = ACTIONS(122),
- [anon_sym_STAR_STAR] = ACTIONS(122),
- [anon_sym_LT] = ACTIONS(2378),
- [anon_sym_LT_EQ] = ACTIONS(162),
- [anon_sym_EQ_EQ] = ACTIONS(122),
- [anon_sym_EQ_EQ_EQ] = ACTIONS(162),
- [anon_sym_BANG_EQ] = ACTIONS(122),
- [anon_sym_BANG_EQ_EQ] = ACTIONS(162),
- [anon_sym_GT_EQ] = ACTIONS(162),
- [anon_sym_QMARK_QMARK] = ACTIONS(122),
- [anon_sym_instanceof] = ACTIONS(122),
- [anon_sym_PLUS_PLUS] = ACTIONS(162),
- [anon_sym_DASH_DASH] = ACTIONS(162),
- [sym_comment] = ACTIONS(5),
- [anon_sym_BQUOTE] = ACTIONS(162),
- [anon_sym_static] = ACTIONS(2399),
- [anon_sym_readonly] = ACTIONS(2399),
- [anon_sym_get] = ACTIONS(2399),
- [anon_sym_set] = ACTIONS(2399),
- [anon_sym_declare] = ACTIONS(2399),
- [anon_sym_public] = ACTIONS(2399),
- [anon_sym_private] = ACTIONS(2399),
- [anon_sym_protected] = ACTIONS(2399),
- [anon_sym_override] = ACTIONS(2399),
- [anon_sym_module] = ACTIONS(2399),
- [anon_sym_any] = ACTIONS(2399),
- [anon_sym_number] = ACTIONS(2399),
- [anon_sym_boolean] = ACTIONS(2399),
- [anon_sym_string] = ACTIONS(2399),
- [anon_sym_symbol] = ACTIONS(2399),
- [anon_sym_object] = ACTIONS(2399),
- [anon_sym_satisfies] = ACTIONS(122),
- [sym__ternary_qmark] = ACTIONS(162),
- [sym_html_comment] = ACTIONS(5),
- },
- [683] = {
- [ts_builtin_sym_end] = ACTIONS(1720),
- [sym_identifier] = ACTIONS(1722),
- [anon_sym_export] = ACTIONS(1722),
- [anon_sym_default] = ACTIONS(1722),
- [anon_sym_type] = ACTIONS(1722),
- [anon_sym_namespace] = ACTIONS(1722),
- [anon_sym_LBRACE] = ACTIONS(1720),
- [anon_sym_COMMA] = ACTIONS(1720),
- [anon_sym_RBRACE] = ACTIONS(1720),
- [anon_sym_typeof] = ACTIONS(1722),
- [anon_sym_import] = ACTIONS(1722),
- [anon_sym_with] = ACTIONS(1722),
- [anon_sym_var] = ACTIONS(1722),
- [anon_sym_let] = ACTIONS(1722),
- [anon_sym_const] = ACTIONS(1722),
- [anon_sym_BANG] = ACTIONS(1720),
- [anon_sym_else] = ACTIONS(1722),
- [anon_sym_if] = ACTIONS(1722),
- [anon_sym_switch] = ACTIONS(1722),
- [anon_sym_for] = ACTIONS(1722),
- [anon_sym_LPAREN] = ACTIONS(1720),
- [anon_sym_await] = ACTIONS(1722),
- [anon_sym_while] = ACTIONS(1722),
- [anon_sym_do] = ACTIONS(1722),
- [anon_sym_try] = ACTIONS(1722),
- [anon_sym_break] = ACTIONS(1722),
- [anon_sym_continue] = ACTIONS(1722),
- [anon_sym_debugger] = ACTIONS(1722),
- [anon_sym_return] = ACTIONS(1722),
- [anon_sym_throw] = ACTIONS(1722),
- [anon_sym_SEMI] = ACTIONS(1720),
- [anon_sym_case] = ACTIONS(1722),
- [anon_sym_catch] = ACTIONS(1722),
- [anon_sym_finally] = ACTIONS(1722),
- [anon_sym_yield] = ACTIONS(1722),
- [anon_sym_LBRACK] = ACTIONS(1720),
- [sym_glimmer_opening_tag] = ACTIONS(1720),
- [anon_sym_DQUOTE] = ACTIONS(1720),
- [anon_sym_SQUOTE] = ACTIONS(1720),
- [anon_sym_class] = ACTIONS(1722),
- [anon_sym_async] = ACTIONS(1722),
- [anon_sym_function] = ACTIONS(1722),
- [anon_sym_new] = ACTIONS(1722),
- [anon_sym_using] = ACTIONS(1722),
- [anon_sym_PLUS] = ACTIONS(1722),
- [anon_sym_DASH] = ACTIONS(1722),
- [anon_sym_SLASH] = ACTIONS(1722),
- [anon_sym_LT] = ACTIONS(1722),
- [anon_sym_TILDE] = ACTIONS(1720),
- [anon_sym_void] = ACTIONS(1722),
- [anon_sym_delete] = ACTIONS(1722),
- [anon_sym_PLUS_PLUS] = ACTIONS(1720),
- [anon_sym_DASH_DASH] = ACTIONS(1720),
- [sym_comment] = ACTIONS(5),
- [anon_sym_BQUOTE] = ACTIONS(1720),
- [sym_number] = ACTIONS(1720),
- [sym_private_property_identifier] = ACTIONS(1720),
- [sym_this] = ACTIONS(1722),
- [sym_super] = ACTIONS(1722),
- [sym_true] = ACTIONS(1722),
- [sym_false] = ACTIONS(1722),
- [sym_null] = ACTIONS(1722),
- [sym_undefined] = ACTIONS(1722),
- [anon_sym_AT] = ACTIONS(1720),
- [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_override] = 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),
- [anon_sym_object] = ACTIONS(1722),
- [anon_sym_abstract] = ACTIONS(1722),
- [anon_sym_interface] = ACTIONS(1722),
- [anon_sym_enum] = ACTIONS(1722),
- [sym__automatic_semicolon] = ACTIONS(1730),
- [sym_html_comment] = ACTIONS(5),
- },
- [684] = {
- [sym__call_signature] = STATE(5753),
- [sym_formal_parameters] = STATE(3742),
- [sym_type_parameters] = STATE(5349),
- [sym_identifier] = ACTIONS(2401),
- [anon_sym_export] = ACTIONS(2403),
- [anon_sym_STAR] = ACTIONS(122),
- [anon_sym_type] = ACTIONS(2403),
- [anon_sym_EQ] = ACTIONS(912),
- [anon_sym_as] = ACTIONS(122),
- [anon_sym_namespace] = ACTIONS(2403),
- [anon_sym_LBRACE] = ACTIONS(162),
- [anon_sym_COMMA] = ACTIONS(162),
- [anon_sym_let] = ACTIONS(2403),
- [anon_sym_BANG] = ACTIONS(122),
- [anon_sym_LPAREN] = ACTIONS(2373),
- [anon_sym_in] = ACTIONS(122),
- [anon_sym_LBRACK] = ACTIONS(162),
- [anon_sym_GT] = ACTIONS(122),
- [anon_sym_DOT] = ACTIONS(162),
- [anon_sym_async] = ACTIONS(2403),
- [anon_sym_function] = ACTIONS(2376),
- [anon_sym_EQ_GT] = ACTIONS(918),
- [anon_sym_QMARK_DOT] = ACTIONS(162),
- [anon_sym_new] = ACTIONS(2403),
- [anon_sym_PLUS_EQ] = ACTIONS(168),
- [anon_sym_DASH_EQ] = ACTIONS(168),
- [anon_sym_STAR_EQ] = ACTIONS(168),
- [anon_sym_SLASH_EQ] = ACTIONS(168),
- [anon_sym_PERCENT_EQ] = ACTIONS(168),
- [anon_sym_CARET_EQ] = ACTIONS(168),
- [anon_sym_AMP_EQ] = ACTIONS(168),
- [anon_sym_PIPE_EQ] = ACTIONS(168),
- [anon_sym_GT_GT_EQ] = ACTIONS(168),
- [anon_sym_GT_GT_GT_EQ] = ACTIONS(168),
- [anon_sym_LT_LT_EQ] = ACTIONS(168),
- [anon_sym_STAR_STAR_EQ] = ACTIONS(168),
- [anon_sym_AMP_AMP_EQ] = ACTIONS(168),
- [anon_sym_PIPE_PIPE_EQ] = ACTIONS(168),
- [anon_sym_QMARK_QMARK_EQ] = ACTIONS(168),
- [anon_sym_AMP_AMP] = ACTIONS(122),
- [anon_sym_PIPE_PIPE] = ACTIONS(122),
- [anon_sym_GT_GT] = ACTIONS(122),
- [anon_sym_GT_GT_GT] = ACTIONS(122),
- [anon_sym_LT_LT] = ACTIONS(122),
- [anon_sym_AMP] = ACTIONS(122),
- [anon_sym_CARET] = ACTIONS(122),
- [anon_sym_PIPE] = ACTIONS(122),
- [anon_sym_PLUS] = ACTIONS(122),
- [anon_sym_DASH] = ACTIONS(122),
- [anon_sym_SLASH] = ACTIONS(122),
- [anon_sym_PERCENT] = ACTIONS(122),
- [anon_sym_STAR_STAR] = ACTIONS(122),
- [anon_sym_LT] = ACTIONS(2378),
- [anon_sym_LT_EQ] = ACTIONS(162),
- [anon_sym_EQ_EQ] = ACTIONS(122),
- [anon_sym_EQ_EQ_EQ] = ACTIONS(162),
- [anon_sym_BANG_EQ] = ACTIONS(122),
- [anon_sym_BANG_EQ_EQ] = ACTIONS(162),
- [anon_sym_GT_EQ] = ACTIONS(162),
- [anon_sym_QMARK_QMARK] = ACTIONS(122),
- [anon_sym_instanceof] = ACTIONS(122),
- [anon_sym_PLUS_PLUS] = ACTIONS(162),
- [anon_sym_DASH_DASH] = ACTIONS(162),
- [sym_comment] = ACTIONS(5),
- [anon_sym_BQUOTE] = ACTIONS(162),
- [anon_sym_static] = ACTIONS(2403),
- [anon_sym_readonly] = ACTIONS(2403),
- [anon_sym_get] = ACTIONS(2403),
- [anon_sym_set] = ACTIONS(2403),
- [anon_sym_declare] = ACTIONS(2403),
- [anon_sym_public] = ACTIONS(2403),
- [anon_sym_private] = ACTIONS(2403),
- [anon_sym_protected] = ACTIONS(2403),
- [anon_sym_override] = ACTIONS(2403),
- [anon_sym_module] = ACTIONS(2403),
- [anon_sym_any] = ACTIONS(2403),
- [anon_sym_number] = ACTIONS(2403),
- [anon_sym_boolean] = ACTIONS(2403),
- [anon_sym_string] = ACTIONS(2403),
- [anon_sym_symbol] = ACTIONS(2403),
- [anon_sym_object] = ACTIONS(2403),
- [anon_sym_satisfies] = ACTIONS(122),
- [anon_sym_implements] = ACTIONS(122),
- [sym__ternary_qmark] = ACTIONS(162),
- [sym_html_comment] = ACTIONS(5),
- },
- [685] = {
- [sym__call_signature] = STATE(5753),
- [sym_formal_parameters] = STATE(3742),
- [sym_type_parameters] = STATE(5349),
- [sym_identifier] = ACTIONS(2401),
- [anon_sym_export] = ACTIONS(2403),
- [anon_sym_STAR] = ACTIONS(122),
- [anon_sym_type] = ACTIONS(2403),
- [anon_sym_EQ] = ACTIONS(841),
- [anon_sym_as] = ACTIONS(122),
- [anon_sym_namespace] = ACTIONS(2403),
- [anon_sym_LBRACE] = ACTIONS(162),
- [anon_sym_COMMA] = ACTIONS(162),
- [anon_sym_let] = ACTIONS(2403),
- [anon_sym_BANG] = ACTIONS(122),
- [anon_sym_LPAREN] = ACTIONS(2373),
- [anon_sym_in] = ACTIONS(122),
- [anon_sym_LBRACK] = ACTIONS(162),
- [anon_sym_GT] = ACTIONS(122),
- [anon_sym_DOT] = ACTIONS(162),
- [anon_sym_async] = ACTIONS(2403),
- [anon_sym_function] = ACTIONS(2376),
- [anon_sym_EQ_GT] = ACTIONS(918),
- [anon_sym_QMARK_DOT] = ACTIONS(162),
- [anon_sym_new] = ACTIONS(2403),
- [anon_sym_PLUS_EQ] = ACTIONS(168),
- [anon_sym_DASH_EQ] = ACTIONS(168),
- [anon_sym_STAR_EQ] = ACTIONS(168),
- [anon_sym_SLASH_EQ] = ACTIONS(168),
- [anon_sym_PERCENT_EQ] = ACTIONS(168),
- [anon_sym_CARET_EQ] = ACTIONS(168),
- [anon_sym_AMP_EQ] = ACTIONS(168),
- [anon_sym_PIPE_EQ] = ACTIONS(168),
- [anon_sym_GT_GT_EQ] = ACTIONS(168),
- [anon_sym_GT_GT_GT_EQ] = ACTIONS(168),
- [anon_sym_LT_LT_EQ] = ACTIONS(168),
- [anon_sym_STAR_STAR_EQ] = ACTIONS(168),
- [anon_sym_AMP_AMP_EQ] = ACTIONS(168),
- [anon_sym_PIPE_PIPE_EQ] = ACTIONS(168),
- [anon_sym_QMARK_QMARK_EQ] = ACTIONS(168),
- [anon_sym_AMP_AMP] = ACTIONS(122),
- [anon_sym_PIPE_PIPE] = ACTIONS(122),
- [anon_sym_GT_GT] = ACTIONS(122),
- [anon_sym_GT_GT_GT] = ACTIONS(122),
- [anon_sym_LT_LT] = ACTIONS(122),
- [anon_sym_AMP] = ACTIONS(122),
- [anon_sym_CARET] = ACTIONS(122),
- [anon_sym_PIPE] = ACTIONS(122),
- [anon_sym_PLUS] = ACTIONS(122),
- [anon_sym_DASH] = ACTIONS(122),
- [anon_sym_SLASH] = ACTIONS(122),
- [anon_sym_PERCENT] = ACTIONS(122),
- [anon_sym_STAR_STAR] = ACTIONS(122),
- [anon_sym_LT] = ACTIONS(2378),
- [anon_sym_LT_EQ] = ACTIONS(162),
- [anon_sym_EQ_EQ] = ACTIONS(122),
- [anon_sym_EQ_EQ_EQ] = ACTIONS(162),
- [anon_sym_BANG_EQ] = ACTIONS(122),
- [anon_sym_BANG_EQ_EQ] = ACTIONS(162),
- [anon_sym_GT_EQ] = ACTIONS(162),
- [anon_sym_QMARK_QMARK] = ACTIONS(122),
- [anon_sym_instanceof] = ACTIONS(122),
- [anon_sym_PLUS_PLUS] = ACTIONS(162),
- [anon_sym_DASH_DASH] = ACTIONS(162),
- [sym_comment] = ACTIONS(5),
- [anon_sym_BQUOTE] = ACTIONS(162),
- [anon_sym_static] = ACTIONS(2403),
- [anon_sym_readonly] = ACTIONS(2403),
- [anon_sym_get] = ACTIONS(2403),
- [anon_sym_set] = ACTIONS(2403),
- [anon_sym_declare] = ACTIONS(2403),
- [anon_sym_public] = ACTIONS(2403),
- [anon_sym_private] = ACTIONS(2403),
- [anon_sym_protected] = ACTIONS(2403),
- [anon_sym_override] = ACTIONS(2403),
- [anon_sym_module] = ACTIONS(2403),
- [anon_sym_any] = ACTIONS(2403),
- [anon_sym_number] = ACTIONS(2403),
- [anon_sym_boolean] = ACTIONS(2403),
- [anon_sym_string] = ACTIONS(2403),
- [anon_sym_symbol] = ACTIONS(2403),
- [anon_sym_object] = ACTIONS(2403),
- [anon_sym_satisfies] = ACTIONS(122),
- [anon_sym_implements] = ACTIONS(122),
- [sym__ternary_qmark] = ACTIONS(162),
- [sym_html_comment] = ACTIONS(5),
- },
- [686] = {
- [sym_catch_clause] = STATE(706),
- [sym_finally_clause] = STATE(826),
- [ts_builtin_sym_end] = ACTIONS(2405),
- [sym_identifier] = ACTIONS(2407),
- [anon_sym_export] = ACTIONS(2407),
- [anon_sym_default] = ACTIONS(2407),
- [anon_sym_type] = ACTIONS(2407),
- [anon_sym_namespace] = ACTIONS(2407),
- [anon_sym_LBRACE] = ACTIONS(2405),
- [anon_sym_RBRACE] = ACTIONS(2405),
- [anon_sym_typeof] = ACTIONS(2407),
- [anon_sym_import] = ACTIONS(2407),
- [anon_sym_with] = ACTIONS(2407),
- [anon_sym_var] = ACTIONS(2407),
- [anon_sym_let] = ACTIONS(2407),
- [anon_sym_const] = ACTIONS(2407),
- [anon_sym_BANG] = ACTIONS(2405),
- [anon_sym_else] = ACTIONS(2407),
- [anon_sym_if] = ACTIONS(2407),
- [anon_sym_switch] = ACTIONS(2407),
- [anon_sym_for] = ACTIONS(2407),
- [anon_sym_LPAREN] = ACTIONS(2405),
- [anon_sym_await] = ACTIONS(2407),
- [anon_sym_while] = ACTIONS(2407),
- [anon_sym_do] = ACTIONS(2407),
- [anon_sym_try] = ACTIONS(2407),
- [anon_sym_break] = ACTIONS(2407),
- [anon_sym_continue] = ACTIONS(2407),
- [anon_sym_debugger] = ACTIONS(2407),
- [anon_sym_return] = ACTIONS(2407),
- [anon_sym_throw] = ACTIONS(2407),
- [anon_sym_SEMI] = ACTIONS(2405),
- [anon_sym_case] = ACTIONS(2407),
- [anon_sym_catch] = ACTIONS(2409),
- [anon_sym_finally] = ACTIONS(2411),
- [anon_sym_yield] = ACTIONS(2407),
- [anon_sym_LBRACK] = ACTIONS(2405),
- [sym_glimmer_opening_tag] = ACTIONS(2405),
- [anon_sym_DQUOTE] = ACTIONS(2405),
- [anon_sym_SQUOTE] = ACTIONS(2405),
- [anon_sym_class] = ACTIONS(2407),
- [anon_sym_async] = ACTIONS(2407),
- [anon_sym_function] = ACTIONS(2407),
- [anon_sym_new] = ACTIONS(2407),
- [anon_sym_using] = ACTIONS(2407),
- [anon_sym_PLUS] = ACTIONS(2407),
- [anon_sym_DASH] = ACTIONS(2407),
- [anon_sym_SLASH] = ACTIONS(2407),
- [anon_sym_LT] = ACTIONS(2407),
- [anon_sym_TILDE] = ACTIONS(2405),
- [anon_sym_void] = ACTIONS(2407),
- [anon_sym_delete] = ACTIONS(2407),
- [anon_sym_PLUS_PLUS] = ACTIONS(2405),
- [anon_sym_DASH_DASH] = ACTIONS(2405),
- [sym_comment] = ACTIONS(5),
- [anon_sym_BQUOTE] = ACTIONS(2405),
- [sym_number] = ACTIONS(2405),
- [sym_private_property_identifier] = ACTIONS(2405),
- [sym_this] = ACTIONS(2407),
- [sym_super] = ACTIONS(2407),
- [sym_true] = ACTIONS(2407),
- [sym_false] = ACTIONS(2407),
- [sym_null] = ACTIONS(2407),
- [sym_undefined] = ACTIONS(2407),
- [anon_sym_AT] = ACTIONS(2405),
- [anon_sym_static] = ACTIONS(2407),
- [anon_sym_readonly] = ACTIONS(2407),
- [anon_sym_get] = ACTIONS(2407),
- [anon_sym_set] = ACTIONS(2407),
- [anon_sym_declare] = ACTIONS(2407),
- [anon_sym_public] = ACTIONS(2407),
- [anon_sym_private] = ACTIONS(2407),
- [anon_sym_protected] = ACTIONS(2407),
- [anon_sym_override] = ACTIONS(2407),
- [anon_sym_module] = ACTIONS(2407),
- [anon_sym_any] = ACTIONS(2407),
- [anon_sym_number] = ACTIONS(2407),
- [anon_sym_boolean] = ACTIONS(2407),
- [anon_sym_string] = ACTIONS(2407),
- [anon_sym_symbol] = ACTIONS(2407),
- [anon_sym_object] = ACTIONS(2407),
- [anon_sym_abstract] = ACTIONS(2407),
- [anon_sym_interface] = ACTIONS(2407),
- [anon_sym_enum] = ACTIONS(2407),
- [sym_html_comment] = ACTIONS(5),
- },
- [687] = {
- [ts_builtin_sym_end] = ACTIONS(1871),
- [sym_identifier] = ACTIONS(1873),
- [anon_sym_export] = ACTIONS(1873),
- [anon_sym_default] = ACTIONS(1873),
- [anon_sym_type] = ACTIONS(1873),
- [anon_sym_namespace] = ACTIONS(1873),
- [anon_sym_LBRACE] = ACTIONS(1871),
- [anon_sym_COMMA] = ACTIONS(1871),
- [anon_sym_RBRACE] = ACTIONS(1871),
- [anon_sym_typeof] = ACTIONS(1873),
- [anon_sym_import] = ACTIONS(1873),
- [anon_sym_with] = ACTIONS(1873),
- [anon_sym_var] = ACTIONS(1873),
- [anon_sym_let] = ACTIONS(1873),
- [anon_sym_const] = ACTIONS(1873),
- [anon_sym_BANG] = ACTIONS(1871),
- [anon_sym_else] = ACTIONS(1873),
- [anon_sym_if] = ACTIONS(1873),
- [anon_sym_switch] = ACTIONS(1873),
- [anon_sym_for] = ACTIONS(1873),
- [anon_sym_LPAREN] = ACTIONS(1871),
- [anon_sym_await] = ACTIONS(1873),
- [anon_sym_while] = ACTIONS(1873),
- [anon_sym_do] = ACTIONS(1873),
- [anon_sym_try] = ACTIONS(1873),
- [anon_sym_break] = ACTIONS(1873),
- [anon_sym_continue] = ACTIONS(1873),
- [anon_sym_debugger] = ACTIONS(1873),
- [anon_sym_return] = ACTIONS(1873),
- [anon_sym_throw] = ACTIONS(1873),
- [anon_sym_SEMI] = ACTIONS(1871),
- [anon_sym_case] = ACTIONS(1873),
- [anon_sym_catch] = ACTIONS(1873),
- [anon_sym_finally] = ACTIONS(1873),
- [anon_sym_yield] = ACTIONS(1873),
- [anon_sym_LBRACK] = ACTIONS(1871),
- [sym_glimmer_opening_tag] = ACTIONS(1871),
- [anon_sym_DQUOTE] = ACTIONS(1871),
- [anon_sym_SQUOTE] = ACTIONS(1871),
- [anon_sym_class] = ACTIONS(1873),
- [anon_sym_async] = ACTIONS(1873),
- [anon_sym_function] = ACTIONS(1873),
- [anon_sym_new] = ACTIONS(1873),
- [anon_sym_using] = ACTIONS(1873),
- [anon_sym_PLUS] = ACTIONS(1873),
- [anon_sym_DASH] = ACTIONS(1873),
- [anon_sym_SLASH] = ACTIONS(1873),
- [anon_sym_LT] = ACTIONS(1873),
- [anon_sym_TILDE] = ACTIONS(1871),
- [anon_sym_void] = ACTIONS(1873),
- [anon_sym_delete] = ACTIONS(1873),
- [anon_sym_PLUS_PLUS] = ACTIONS(1871),
- [anon_sym_DASH_DASH] = ACTIONS(1871),
- [sym_comment] = ACTIONS(5),
- [anon_sym_BQUOTE] = ACTIONS(1871),
- [sym_number] = ACTIONS(1871),
- [sym_private_property_identifier] = ACTIONS(1871),
- [sym_this] = ACTIONS(1873),
- [sym_super] = ACTIONS(1873),
- [sym_true] = ACTIONS(1873),
- [sym_false] = ACTIONS(1873),
- [sym_null] = ACTIONS(1873),
- [sym_undefined] = ACTIONS(1873),
- [anon_sym_AT] = ACTIONS(1871),
- [anon_sym_static] = ACTIONS(1873),
- [anon_sym_readonly] = ACTIONS(1873),
- [anon_sym_get] = ACTIONS(1873),
- [anon_sym_set] = ACTIONS(1873),
- [anon_sym_declare] = ACTIONS(1873),
- [anon_sym_public] = ACTIONS(1873),
- [anon_sym_private] = ACTIONS(1873),
- [anon_sym_protected] = ACTIONS(1873),
- [anon_sym_override] = ACTIONS(1873),
- [anon_sym_module] = ACTIONS(1873),
- [anon_sym_any] = ACTIONS(1873),
- [anon_sym_number] = ACTIONS(1873),
- [anon_sym_boolean] = ACTIONS(1873),
- [anon_sym_string] = ACTIONS(1873),
- [anon_sym_symbol] = ACTIONS(1873),
- [anon_sym_object] = ACTIONS(1873),
- [anon_sym_abstract] = ACTIONS(1873),
- [anon_sym_interface] = ACTIONS(1873),
- [anon_sym_enum] = ACTIONS(1873),
- [sym__automatic_semicolon] = ACTIONS(2413),
- [sym_html_comment] = ACTIONS(5),
- },
- [688] = {
- [sym__call_signature] = STATE(5566),
- [sym_formal_parameters] = STATE(3742),
- [sym_type_parameters] = STATE(5349),
- [sym_identifier] = ACTIONS(2415),
- [anon_sym_export] = ACTIONS(2417),
- [anon_sym_STAR] = ACTIONS(122),
- [anon_sym_type] = ACTIONS(2417),
- [anon_sym_EQ] = ACTIONS(841),
- [anon_sym_as] = ACTIONS(122),
- [anon_sym_namespace] = ACTIONS(2417),
- [anon_sym_RBRACE] = ACTIONS(162),
- [anon_sym_let] = ACTIONS(2417),
- [anon_sym_BANG] = ACTIONS(122),
- [anon_sym_LPAREN] = ACTIONS(2373),
- [anon_sym_in] = ACTIONS(122),
- [anon_sym_COLON] = ACTIONS(162),
- [anon_sym_LBRACK] = ACTIONS(162),
- [anon_sym_GT] = ACTIONS(122),
- [anon_sym_DOT] = ACTIONS(162),
- [anon_sym_async] = ACTIONS(2417),
- [anon_sym_function] = ACTIONS(2376),
- [anon_sym_EQ_GT] = ACTIONS(952),
- [anon_sym_QMARK_DOT] = ACTIONS(162),
- [anon_sym_new] = ACTIONS(2417),
- [anon_sym_PLUS_EQ] = ACTIONS(168),
- [anon_sym_DASH_EQ] = ACTIONS(168),
- [anon_sym_STAR_EQ] = ACTIONS(168),
- [anon_sym_SLASH_EQ] = ACTIONS(168),
- [anon_sym_PERCENT_EQ] = ACTIONS(168),
- [anon_sym_CARET_EQ] = ACTIONS(168),
- [anon_sym_AMP_EQ] = ACTIONS(168),
- [anon_sym_PIPE_EQ] = ACTIONS(168),
- [anon_sym_GT_GT_EQ] = ACTIONS(168),
- [anon_sym_GT_GT_GT_EQ] = ACTIONS(168),
- [anon_sym_LT_LT_EQ] = ACTIONS(168),
- [anon_sym_STAR_STAR_EQ] = ACTIONS(168),
- [anon_sym_AMP_AMP_EQ] = ACTIONS(168),
- [anon_sym_PIPE_PIPE_EQ] = ACTIONS(168),
- [anon_sym_QMARK_QMARK_EQ] = ACTIONS(168),
- [anon_sym_AMP_AMP] = ACTIONS(122),
- [anon_sym_PIPE_PIPE] = ACTIONS(122),
- [anon_sym_GT_GT] = ACTIONS(122),
- [anon_sym_GT_GT_GT] = ACTIONS(122),
- [anon_sym_LT_LT] = ACTIONS(122),
- [anon_sym_AMP] = ACTIONS(122),
- [anon_sym_CARET] = ACTIONS(122),
- [anon_sym_PIPE] = ACTIONS(122),
- [anon_sym_PLUS] = ACTIONS(122),
- [anon_sym_DASH] = ACTIONS(122),
- [anon_sym_SLASH] = ACTIONS(122),
- [anon_sym_PERCENT] = ACTIONS(122),
- [anon_sym_STAR_STAR] = ACTIONS(122),
- [anon_sym_LT] = ACTIONS(2378),
- [anon_sym_LT_EQ] = ACTIONS(162),
- [anon_sym_EQ_EQ] = ACTIONS(122),
- [anon_sym_EQ_EQ_EQ] = ACTIONS(162),
- [anon_sym_BANG_EQ] = ACTIONS(122),
- [anon_sym_BANG_EQ_EQ] = ACTIONS(162),
- [anon_sym_GT_EQ] = ACTIONS(162),
- [anon_sym_QMARK_QMARK] = ACTIONS(122),
- [anon_sym_instanceof] = ACTIONS(122),
- [anon_sym_PLUS_PLUS] = ACTIONS(162),
- [anon_sym_DASH_DASH] = ACTIONS(162),
- [sym_comment] = ACTIONS(5),
- [anon_sym_BQUOTE] = ACTIONS(162),
- [anon_sym_static] = ACTIONS(2417),
- [anon_sym_readonly] = ACTIONS(2417),
- [anon_sym_get] = ACTIONS(2417),
- [anon_sym_set] = ACTIONS(2417),
- [anon_sym_declare] = ACTIONS(2417),
- [anon_sym_public] = ACTIONS(2417),
- [anon_sym_private] = ACTIONS(2417),
- [anon_sym_protected] = ACTIONS(2417),
- [anon_sym_override] = ACTIONS(2417),
- [anon_sym_module] = ACTIONS(2417),
- [anon_sym_any] = ACTIONS(2417),
- [anon_sym_number] = ACTIONS(2417),
- [anon_sym_boolean] = ACTIONS(2417),
- [anon_sym_string] = ACTIONS(2417),
- [anon_sym_symbol] = ACTIONS(2417),
- [anon_sym_object] = ACTIONS(2417),
- [anon_sym_satisfies] = ACTIONS(122),
- [sym__ternary_qmark] = ACTIONS(162),
- [sym_html_comment] = ACTIONS(5),
- },
- [689] = {
- [ts_builtin_sym_end] = ACTIONS(1751),
- [sym_identifier] = ACTIONS(1753),
- [anon_sym_export] = ACTIONS(1753),
- [anon_sym_default] = ACTIONS(1753),
- [anon_sym_type] = ACTIONS(1753),
- [anon_sym_namespace] = ACTIONS(1753),
- [anon_sym_LBRACE] = ACTIONS(1751),
- [anon_sym_COMMA] = ACTIONS(1751),
- [anon_sym_RBRACE] = ACTIONS(1751),
- [anon_sym_typeof] = ACTIONS(1753),
- [anon_sym_import] = ACTIONS(1753),
- [anon_sym_with] = ACTIONS(1753),
- [anon_sym_var] = ACTIONS(1753),
- [anon_sym_let] = ACTIONS(1753),
- [anon_sym_const] = ACTIONS(1753),
- [anon_sym_BANG] = ACTIONS(1751),
- [anon_sym_else] = ACTIONS(1753),
- [anon_sym_if] = ACTIONS(1753),
- [anon_sym_switch] = ACTIONS(1753),
- [anon_sym_for] = ACTIONS(1753),
- [anon_sym_LPAREN] = ACTIONS(1751),
- [anon_sym_await] = ACTIONS(1753),
- [anon_sym_while] = ACTIONS(1753),
- [anon_sym_do] = ACTIONS(1753),
- [anon_sym_try] = ACTIONS(1753),
- [anon_sym_break] = ACTIONS(1753),
- [anon_sym_continue] = ACTIONS(1753),
- [anon_sym_debugger] = ACTIONS(1753),
- [anon_sym_return] = ACTIONS(1753),
- [anon_sym_throw] = ACTIONS(1753),
- [anon_sym_SEMI] = ACTIONS(1751),
- [anon_sym_case] = ACTIONS(1753),
- [anon_sym_yield] = ACTIONS(1753),
- [anon_sym_LBRACK] = ACTIONS(1751),
- [sym_glimmer_opening_tag] = ACTIONS(1751),
- [anon_sym_DQUOTE] = ACTIONS(1751),
- [anon_sym_SQUOTE] = ACTIONS(1751),
- [anon_sym_class] = ACTIONS(1753),
- [anon_sym_async] = ACTIONS(1753),
- [anon_sym_function] = ACTIONS(1753),
- [anon_sym_new] = ACTIONS(1753),
- [anon_sym_using] = ACTIONS(1753),
- [anon_sym_PLUS] = ACTIONS(1753),
- [anon_sym_DASH] = ACTIONS(1753),
- [anon_sym_SLASH] = ACTIONS(1753),
- [anon_sym_LT] = ACTIONS(1753),
- [anon_sym_TILDE] = ACTIONS(1751),
- [anon_sym_void] = ACTIONS(1753),
- [anon_sym_delete] = ACTIONS(1753),
- [anon_sym_PLUS_PLUS] = ACTIONS(1751),
- [anon_sym_DASH_DASH] = ACTIONS(1751),
- [sym_comment] = ACTIONS(5),
- [anon_sym_BQUOTE] = ACTIONS(1751),
- [sym_number] = ACTIONS(1751),
- [sym_private_property_identifier] = ACTIONS(1751),
- [sym_this] = ACTIONS(1753),
- [sym_super] = ACTIONS(1753),
- [sym_true] = ACTIONS(1753),
- [sym_false] = ACTIONS(1753),
- [sym_null] = ACTIONS(1753),
- [sym_undefined] = ACTIONS(1753),
- [anon_sym_AT] = ACTIONS(1751),
- [anon_sym_static] = ACTIONS(1753),
- [anon_sym_readonly] = ACTIONS(1753),
- [anon_sym_get] = ACTIONS(1753),
- [anon_sym_set] = ACTIONS(1753),
- [anon_sym_declare] = ACTIONS(1753),
- [anon_sym_public] = ACTIONS(1753),
- [anon_sym_private] = ACTIONS(1753),
- [anon_sym_protected] = ACTIONS(1753),
- [anon_sym_override] = ACTIONS(1753),
- [anon_sym_module] = ACTIONS(1753),
- [anon_sym_any] = ACTIONS(1753),
- [anon_sym_number] = ACTIONS(1753),
- [anon_sym_boolean] = ACTIONS(1753),
- [anon_sym_string] = ACTIONS(1753),
- [anon_sym_symbol] = ACTIONS(1753),
- [anon_sym_object] = ACTIONS(1753),
- [anon_sym_abstract] = ACTIONS(1753),
- [anon_sym_interface] = ACTIONS(1753),
- [anon_sym_enum] = ACTIONS(1753),
- [anon_sym_PIPE_RBRACE] = ACTIONS(1751),
- [sym__automatic_semicolon] = ACTIONS(1751),
- [sym_html_comment] = ACTIONS(5),
- },
- [690] = {
- [ts_builtin_sym_end] = ACTIONS(1751),
- [sym_identifier] = ACTIONS(1753),
- [anon_sym_export] = ACTIONS(1753),
- [anon_sym_default] = ACTIONS(1753),
- [anon_sym_type] = ACTIONS(1753),
- [anon_sym_namespace] = ACTIONS(1753),
- [anon_sym_LBRACE] = ACTIONS(1751),
- [anon_sym_COMMA] = ACTIONS(1751),
- [anon_sym_RBRACE] = ACTIONS(1751),
- [anon_sym_typeof] = ACTIONS(1753),
- [anon_sym_import] = ACTIONS(1753),
- [anon_sym_with] = ACTIONS(1753),
- [anon_sym_var] = ACTIONS(1753),
- [anon_sym_let] = ACTIONS(1753),
- [anon_sym_const] = ACTIONS(1753),
- [anon_sym_BANG] = ACTIONS(1751),
- [anon_sym_else] = ACTIONS(1753),
- [anon_sym_if] = ACTIONS(1753),
- [anon_sym_switch] = ACTIONS(1753),
- [anon_sym_for] = ACTIONS(1753),
- [anon_sym_LPAREN] = ACTIONS(1751),
- [anon_sym_await] = ACTIONS(1753),
- [anon_sym_while] = ACTIONS(1753),
- [anon_sym_do] = ACTIONS(1753),
- [anon_sym_try] = ACTIONS(1753),
- [anon_sym_break] = ACTIONS(1753),
- [anon_sym_continue] = ACTIONS(1753),
- [anon_sym_debugger] = ACTIONS(1753),
- [anon_sym_return] = ACTIONS(1753),
- [anon_sym_throw] = ACTIONS(1753),
- [anon_sym_SEMI] = ACTIONS(1751),
- [anon_sym_case] = ACTIONS(1753),
- [anon_sym_catch] = ACTIONS(1753),
- [anon_sym_finally] = ACTIONS(1753),
- [anon_sym_yield] = ACTIONS(1753),
- [anon_sym_LBRACK] = ACTIONS(1751),
- [sym_glimmer_opening_tag] = ACTIONS(1751),
- [anon_sym_DQUOTE] = ACTIONS(1751),
- [anon_sym_SQUOTE] = ACTIONS(1751),
- [anon_sym_class] = ACTIONS(1753),
- [anon_sym_async] = ACTIONS(1753),
- [anon_sym_function] = ACTIONS(1753),
- [anon_sym_new] = ACTIONS(1753),
- [anon_sym_using] = ACTIONS(1753),
- [anon_sym_PLUS] = ACTIONS(1753),
- [anon_sym_DASH] = ACTIONS(1753),
- [anon_sym_SLASH] = ACTIONS(1753),
- [anon_sym_LT] = ACTIONS(1753),
- [anon_sym_TILDE] = ACTIONS(1751),
- [anon_sym_void] = ACTIONS(1753),
- [anon_sym_delete] = ACTIONS(1753),
- [anon_sym_PLUS_PLUS] = ACTIONS(1751),
- [anon_sym_DASH_DASH] = ACTIONS(1751),
- [sym_comment] = ACTIONS(5),
- [anon_sym_BQUOTE] = ACTIONS(1751),
- [sym_number] = ACTIONS(1751),
- [sym_private_property_identifier] = ACTIONS(1751),
- [sym_this] = ACTIONS(1753),
- [sym_super] = ACTIONS(1753),
- [sym_true] = ACTIONS(1753),
- [sym_false] = ACTIONS(1753),
- [sym_null] = ACTIONS(1753),
- [sym_undefined] = ACTIONS(1753),
- [anon_sym_AT] = ACTIONS(1751),
- [anon_sym_static] = ACTIONS(1753),
- [anon_sym_readonly] = ACTIONS(1753),
- [anon_sym_get] = ACTIONS(1753),
- [anon_sym_set] = ACTIONS(1753),
- [anon_sym_declare] = ACTIONS(1753),
- [anon_sym_public] = ACTIONS(1753),
- [anon_sym_private] = ACTIONS(1753),
- [anon_sym_protected] = ACTIONS(1753),
- [anon_sym_override] = ACTIONS(1753),
- [anon_sym_module] = ACTIONS(1753),
- [anon_sym_any] = ACTIONS(1753),
- [anon_sym_number] = ACTIONS(1753),
- [anon_sym_boolean] = ACTIONS(1753),
- [anon_sym_string] = ACTIONS(1753),
- [anon_sym_symbol] = ACTIONS(1753),
- [anon_sym_object] = ACTIONS(1753),
- [anon_sym_abstract] = ACTIONS(1753),
- [anon_sym_interface] = ACTIONS(1753),
- [anon_sym_enum] = ACTIONS(1753),
- [sym_html_comment] = ACTIONS(5),
- },
- [691] = {
- [ts_builtin_sym_end] = ACTIONS(1921),
- [sym_identifier] = ACTIONS(1923),
- [anon_sym_export] = ACTIONS(1923),
- [anon_sym_default] = ACTIONS(1923),
- [anon_sym_type] = ACTIONS(1923),
- [anon_sym_namespace] = ACTIONS(1923),
- [anon_sym_LBRACE] = ACTIONS(1921),
- [anon_sym_COMMA] = ACTIONS(1921),
- [anon_sym_RBRACE] = ACTIONS(1921),
- [anon_sym_typeof] = ACTIONS(1923),
- [anon_sym_import] = ACTIONS(1923),
- [anon_sym_with] = ACTIONS(1923),
- [anon_sym_var] = ACTIONS(1923),
- [anon_sym_let] = ACTIONS(1923),
- [anon_sym_const] = ACTIONS(1923),
- [anon_sym_BANG] = ACTIONS(1921),
- [anon_sym_else] = ACTIONS(1923),
- [anon_sym_if] = ACTIONS(1923),
- [anon_sym_switch] = ACTIONS(1923),
- [anon_sym_for] = ACTIONS(1923),
- [anon_sym_LPAREN] = ACTIONS(1921),
- [anon_sym_await] = ACTIONS(1923),
- [anon_sym_while] = ACTIONS(1923),
- [anon_sym_do] = ACTIONS(1923),
- [anon_sym_try] = ACTIONS(1923),
- [anon_sym_break] = ACTIONS(1923),
- [anon_sym_continue] = ACTIONS(1923),
- [anon_sym_debugger] = ACTIONS(1923),
- [anon_sym_return] = ACTIONS(1923),
- [anon_sym_throw] = ACTIONS(1923),
- [anon_sym_SEMI] = ACTIONS(1921),
- [anon_sym_case] = ACTIONS(1923),
- [anon_sym_yield] = ACTIONS(1923),
- [anon_sym_LBRACK] = ACTIONS(1921),
- [sym_glimmer_opening_tag] = ACTIONS(1921),
- [anon_sym_DQUOTE] = ACTIONS(1921),
- [anon_sym_SQUOTE] = ACTIONS(1921),
- [anon_sym_class] = ACTIONS(1923),
- [anon_sym_async] = ACTIONS(1923),
- [anon_sym_function] = ACTIONS(1923),
- [anon_sym_new] = ACTIONS(1923),
- [anon_sym_using] = ACTIONS(1923),
- [anon_sym_PLUS] = ACTIONS(1923),
- [anon_sym_DASH] = ACTIONS(1923),
- [anon_sym_SLASH] = ACTIONS(1923),
- [anon_sym_LT] = ACTIONS(1923),
- [anon_sym_TILDE] = ACTIONS(1921),
- [anon_sym_void] = ACTIONS(1923),
- [anon_sym_delete] = ACTIONS(1923),
- [anon_sym_PLUS_PLUS] = ACTIONS(1921),
- [anon_sym_DASH_DASH] = ACTIONS(1921),
- [sym_comment] = ACTIONS(5),
- [anon_sym_BQUOTE] = ACTIONS(1921),
- [sym_number] = ACTIONS(1921),
- [sym_private_property_identifier] = ACTIONS(1921),
- [sym_this] = ACTIONS(1923),
- [sym_super] = ACTIONS(1923),
- [sym_true] = ACTIONS(1923),
- [sym_false] = ACTIONS(1923),
- [sym_null] = ACTIONS(1923),
- [sym_undefined] = ACTIONS(1923),
- [anon_sym_AT] = ACTIONS(1921),
- [anon_sym_static] = ACTIONS(1923),
- [anon_sym_readonly] = ACTIONS(1923),
- [anon_sym_get] = ACTIONS(1923),
- [anon_sym_set] = ACTIONS(1923),
- [anon_sym_declare] = ACTIONS(1923),
- [anon_sym_public] = ACTIONS(1923),
- [anon_sym_private] = ACTIONS(1923),
- [anon_sym_protected] = ACTIONS(1923),
- [anon_sym_override] = ACTIONS(1923),
- [anon_sym_module] = ACTIONS(1923),
- [anon_sym_any] = ACTIONS(1923),
- [anon_sym_number] = ACTIONS(1923),
- [anon_sym_boolean] = ACTIONS(1923),
- [anon_sym_string] = ACTIONS(1923),
- [anon_sym_symbol] = ACTIONS(1923),
- [anon_sym_object] = ACTIONS(1923),
- [anon_sym_abstract] = ACTIONS(1923),
- [anon_sym_interface] = ACTIONS(1923),
- [anon_sym_enum] = ACTIONS(1923),
- [anon_sym_PIPE_RBRACE] = ACTIONS(1921),
- [sym__automatic_semicolon] = ACTIONS(1921),
- [sym_html_comment] = ACTIONS(5),
- },
- [692] = {
- [sym__call_signature] = STATE(5588),
- [sym_formal_parameters] = STATE(3742),
- [sym_type_parameters] = STATE(5349),
- [sym_identifier] = ACTIONS(2419),
- [anon_sym_export] = ACTIONS(2421),
- [anon_sym_STAR] = ACTIONS(122),
- [anon_sym_type] = ACTIONS(2421),
- [anon_sym_EQ] = ACTIONS(841),
- [anon_sym_as] = ACTIONS(122),
- [anon_sym_namespace] = ACTIONS(2421),
- [anon_sym_let] = ACTIONS(2421),
- [anon_sym_BANG] = ACTIONS(122),
- [anon_sym_LPAREN] = ACTIONS(2373),
- [anon_sym_in] = ACTIONS(122),
- [anon_sym_SEMI] = ACTIONS(162),
- [anon_sym_LBRACK] = ACTIONS(162),
- [anon_sym_GT] = ACTIONS(122),
- [anon_sym_DOT] = ACTIONS(162),
- [anon_sym_async] = ACTIONS(2421),
- [anon_sym_function] = ACTIONS(2389),
- [anon_sym_EQ_GT] = ACTIONS(924),
- [anon_sym_QMARK_DOT] = ACTIONS(162),
- [anon_sym_new] = ACTIONS(2421),
- [anon_sym_PLUS_EQ] = ACTIONS(168),
- [anon_sym_DASH_EQ] = ACTIONS(168),
- [anon_sym_STAR_EQ] = ACTIONS(168),
- [anon_sym_SLASH_EQ] = ACTIONS(168),
- [anon_sym_PERCENT_EQ] = ACTIONS(168),
- [anon_sym_CARET_EQ] = ACTIONS(168),
- [anon_sym_AMP_EQ] = ACTIONS(168),
- [anon_sym_PIPE_EQ] = ACTIONS(168),
- [anon_sym_GT_GT_EQ] = ACTIONS(168),
- [anon_sym_GT_GT_GT_EQ] = ACTIONS(168),
- [anon_sym_LT_LT_EQ] = ACTIONS(168),
- [anon_sym_STAR_STAR_EQ] = ACTIONS(168),
- [anon_sym_AMP_AMP_EQ] = ACTIONS(168),
- [anon_sym_PIPE_PIPE_EQ] = ACTIONS(168),
- [anon_sym_QMARK_QMARK_EQ] = ACTIONS(168),
- [anon_sym_AMP_AMP] = ACTIONS(122),
- [anon_sym_PIPE_PIPE] = ACTIONS(122),
- [anon_sym_GT_GT] = ACTIONS(122),
- [anon_sym_GT_GT_GT] = ACTIONS(122),
- [anon_sym_LT_LT] = ACTIONS(122),
- [anon_sym_AMP] = ACTIONS(122),
- [anon_sym_CARET] = ACTIONS(122),
- [anon_sym_PIPE] = ACTIONS(122),
- [anon_sym_PLUS] = ACTIONS(122),
- [anon_sym_DASH] = ACTIONS(122),
- [anon_sym_SLASH] = ACTIONS(122),
- [anon_sym_PERCENT] = ACTIONS(122),
- [anon_sym_STAR_STAR] = ACTIONS(122),
- [anon_sym_LT] = ACTIONS(2378),
- [anon_sym_LT_EQ] = ACTIONS(162),
- [anon_sym_EQ_EQ] = ACTIONS(122),
- [anon_sym_EQ_EQ_EQ] = ACTIONS(162),
- [anon_sym_BANG_EQ] = ACTIONS(122),
- [anon_sym_BANG_EQ_EQ] = ACTIONS(162),
- [anon_sym_GT_EQ] = ACTIONS(162),
- [anon_sym_QMARK_QMARK] = ACTIONS(122),
- [anon_sym_instanceof] = ACTIONS(122),
- [anon_sym_PLUS_PLUS] = ACTIONS(162),
- [anon_sym_DASH_DASH] = ACTIONS(162),
- [sym_comment] = ACTIONS(5),
- [anon_sym_BQUOTE] = ACTIONS(162),
- [anon_sym_static] = ACTIONS(2421),
- [anon_sym_readonly] = ACTIONS(2421),
- [anon_sym_get] = ACTIONS(2421),
- [anon_sym_set] = ACTIONS(2421),
- [anon_sym_declare] = ACTIONS(2421),
- [anon_sym_public] = ACTIONS(2421),
- [anon_sym_private] = ACTIONS(2421),
- [anon_sym_protected] = ACTIONS(2421),
- [anon_sym_override] = ACTIONS(2421),
- [anon_sym_module] = ACTIONS(2421),
- [anon_sym_any] = ACTIONS(2421),
- [anon_sym_number] = ACTIONS(2421),
- [anon_sym_boolean] = ACTIONS(2421),
- [anon_sym_string] = ACTIONS(2421),
- [anon_sym_symbol] = ACTIONS(2421),
- [anon_sym_object] = ACTIONS(2421),
- [anon_sym_satisfies] = ACTIONS(122),
- [sym__automatic_semicolon] = ACTIONS(162),
- [sym__ternary_qmark] = ACTIONS(162),
- [sym_html_comment] = ACTIONS(5),
- },
- [693] = {
- [sym__call_signature] = STATE(5772),
- [sym_formal_parameters] = STATE(3742),
- [sym_type_parameters] = STATE(5349),
- [sym_identifier] = ACTIONS(2397),
- [anon_sym_export] = ACTIONS(2399),
- [anon_sym_STAR] = ACTIONS(122),
- [anon_sym_type] = ACTIONS(2399),
- [anon_sym_EQ] = ACTIONS(926),
- [anon_sym_as] = ACTIONS(122),
- [anon_sym_namespace] = ACTIONS(2399),
- [anon_sym_let] = ACTIONS(2399),
- [anon_sym_BANG] = ACTIONS(122),
- [anon_sym_LPAREN] = ACTIONS(2373),
- [anon_sym_in] = ACTIONS(122),
- [anon_sym_COLON] = ACTIONS(940),
- [anon_sym_LBRACK] = ACTIONS(162),
- [anon_sym_RBRACK] = ACTIONS(162),
- [anon_sym_GT] = ACTIONS(122),
- [anon_sym_DOT] = ACTIONS(162),
- [anon_sym_async] = ACTIONS(2399),
- [anon_sym_function] = ACTIONS(2376),
- [anon_sym_EQ_GT] = ACTIONS(904),
- [anon_sym_QMARK_DOT] = ACTIONS(162),
- [anon_sym_new] = ACTIONS(2399),
- [anon_sym_PLUS_EQ] = ACTIONS(168),
- [anon_sym_DASH_EQ] = ACTIONS(168),
- [anon_sym_STAR_EQ] = ACTIONS(168),
- [anon_sym_SLASH_EQ] = ACTIONS(168),
- [anon_sym_PERCENT_EQ] = ACTIONS(168),
- [anon_sym_CARET_EQ] = ACTIONS(168),
- [anon_sym_AMP_EQ] = ACTIONS(168),
- [anon_sym_PIPE_EQ] = ACTIONS(168),
- [anon_sym_GT_GT_EQ] = ACTIONS(168),
- [anon_sym_GT_GT_GT_EQ] = ACTIONS(168),
- [anon_sym_LT_LT_EQ] = ACTIONS(168),
- [anon_sym_STAR_STAR_EQ] = ACTIONS(168),
- [anon_sym_AMP_AMP_EQ] = ACTIONS(168),
- [anon_sym_PIPE_PIPE_EQ] = ACTIONS(168),
- [anon_sym_QMARK_QMARK_EQ] = ACTIONS(168),
- [anon_sym_AMP_AMP] = ACTIONS(122),
- [anon_sym_PIPE_PIPE] = ACTIONS(122),
- [anon_sym_GT_GT] = ACTIONS(122),
- [anon_sym_GT_GT_GT] = ACTIONS(122),
- [anon_sym_LT_LT] = ACTIONS(122),
- [anon_sym_AMP] = ACTIONS(122),
- [anon_sym_CARET] = ACTIONS(122),
- [anon_sym_PIPE] = ACTIONS(122),
- [anon_sym_PLUS] = ACTIONS(122),
- [anon_sym_DASH] = ACTIONS(122),
- [anon_sym_SLASH] = ACTIONS(122),
- [anon_sym_PERCENT] = ACTIONS(122),
- [anon_sym_STAR_STAR] = ACTIONS(122),
- [anon_sym_LT] = ACTIONS(2378),
- [anon_sym_LT_EQ] = ACTIONS(162),
- [anon_sym_EQ_EQ] = ACTIONS(122),
- [anon_sym_EQ_EQ_EQ] = ACTIONS(162),
- [anon_sym_BANG_EQ] = ACTIONS(122),
- [anon_sym_BANG_EQ_EQ] = ACTIONS(162),
- [anon_sym_GT_EQ] = ACTIONS(162),
- [anon_sym_QMARK_QMARK] = ACTIONS(122),
- [anon_sym_instanceof] = ACTIONS(122),
- [anon_sym_PLUS_PLUS] = ACTIONS(162),
- [anon_sym_DASH_DASH] = ACTIONS(162),
- [sym_comment] = ACTIONS(5),
- [anon_sym_BQUOTE] = ACTIONS(162),
- [anon_sym_static] = ACTIONS(2399),
- [anon_sym_readonly] = ACTIONS(2399),
- [anon_sym_get] = ACTIONS(2399),
- [anon_sym_set] = ACTIONS(2399),
- [anon_sym_declare] = ACTIONS(2399),
- [anon_sym_public] = ACTIONS(2399),
- [anon_sym_private] = ACTIONS(2399),
- [anon_sym_protected] = ACTIONS(2399),
- [anon_sym_override] = ACTIONS(2399),
- [anon_sym_module] = ACTIONS(2399),
- [anon_sym_any] = ACTIONS(2399),
- [anon_sym_number] = ACTIONS(2399),
- [anon_sym_boolean] = ACTIONS(2399),
- [anon_sym_string] = ACTIONS(2399),
- [anon_sym_symbol] = ACTIONS(2399),
- [anon_sym_object] = ACTIONS(2399),
- [anon_sym_satisfies] = ACTIONS(122),
- [sym__ternary_qmark] = ACTIONS(162),
- [sym_html_comment] = ACTIONS(5),
- },
- [694] = {
- [ts_builtin_sym_end] = ACTIONS(1871),
- [sym_identifier] = ACTIONS(1873),
- [anon_sym_export] = ACTIONS(1873),
- [anon_sym_default] = ACTIONS(1873),
- [anon_sym_type] = ACTIONS(1873),
- [anon_sym_namespace] = ACTIONS(1873),
- [anon_sym_LBRACE] = ACTIONS(1871),
- [anon_sym_COMMA] = ACTIONS(1871),
- [anon_sym_RBRACE] = ACTIONS(1871),
- [anon_sym_typeof] = ACTIONS(1873),
- [anon_sym_import] = ACTIONS(1873),
- [anon_sym_with] = ACTIONS(1873),
- [anon_sym_var] = ACTIONS(1873),
- [anon_sym_let] = ACTIONS(1873),
- [anon_sym_const] = ACTIONS(1873),
- [anon_sym_BANG] = ACTIONS(1871),
- [anon_sym_else] = ACTIONS(1873),
- [anon_sym_if] = ACTIONS(1873),
- [anon_sym_switch] = ACTIONS(1873),
- [anon_sym_for] = ACTIONS(1873),
- [anon_sym_LPAREN] = ACTIONS(1871),
- [anon_sym_await] = ACTIONS(1873),
- [anon_sym_while] = ACTIONS(1873),
- [anon_sym_do] = ACTIONS(1873),
- [anon_sym_try] = ACTIONS(1873),
- [anon_sym_break] = ACTIONS(1873),
- [anon_sym_continue] = ACTIONS(1873),
- [anon_sym_debugger] = ACTIONS(1873),
- [anon_sym_return] = ACTIONS(1873),
- [anon_sym_throw] = ACTIONS(1873),
- [anon_sym_SEMI] = ACTIONS(1871),
- [anon_sym_case] = ACTIONS(1873),
- [anon_sym_yield] = ACTIONS(1873),
- [anon_sym_LBRACK] = ACTIONS(1871),
- [sym_glimmer_opening_tag] = ACTIONS(1871),
- [anon_sym_DQUOTE] = ACTIONS(1871),
- [anon_sym_SQUOTE] = ACTIONS(1871),
- [anon_sym_class] = ACTIONS(1873),
- [anon_sym_async] = ACTIONS(1873),
- [anon_sym_function] = ACTIONS(1873),
- [anon_sym_new] = ACTIONS(1873),
- [anon_sym_using] = ACTIONS(1873),
- [anon_sym_PLUS] = ACTIONS(1873),
- [anon_sym_DASH] = ACTIONS(1873),
- [anon_sym_SLASH] = ACTIONS(1873),
- [anon_sym_LT] = ACTIONS(1873),
- [anon_sym_TILDE] = ACTIONS(1871),
- [anon_sym_void] = ACTIONS(1873),
- [anon_sym_delete] = ACTIONS(1873),
- [anon_sym_PLUS_PLUS] = ACTIONS(1871),
- [anon_sym_DASH_DASH] = ACTIONS(1871),
- [sym_comment] = ACTIONS(5),
- [anon_sym_BQUOTE] = ACTIONS(1871),
- [sym_number] = ACTIONS(1871),
- [sym_private_property_identifier] = ACTIONS(1871),
- [sym_this] = ACTIONS(1873),
- [sym_super] = ACTIONS(1873),
- [sym_true] = ACTIONS(1873),
- [sym_false] = ACTIONS(1873),
- [sym_null] = ACTIONS(1873),
- [sym_undefined] = ACTIONS(1873),
- [anon_sym_AT] = ACTIONS(1871),
- [anon_sym_static] = ACTIONS(1873),
- [anon_sym_readonly] = ACTIONS(1873),
- [anon_sym_get] = ACTIONS(1873),
- [anon_sym_set] = ACTIONS(1873),
- [anon_sym_declare] = ACTIONS(1873),
- [anon_sym_public] = ACTIONS(1873),
- [anon_sym_private] = ACTIONS(1873),
- [anon_sym_protected] = ACTIONS(1873),
- [anon_sym_override] = ACTIONS(1873),
- [anon_sym_module] = ACTIONS(1873),
- [anon_sym_any] = ACTIONS(1873),
- [anon_sym_number] = ACTIONS(1873),
- [anon_sym_boolean] = ACTIONS(1873),
- [anon_sym_string] = ACTIONS(1873),
- [anon_sym_symbol] = ACTIONS(1873),
- [anon_sym_object] = ACTIONS(1873),
- [anon_sym_abstract] = ACTIONS(1873),
- [anon_sym_interface] = ACTIONS(1873),
- [anon_sym_enum] = ACTIONS(1873),
- [anon_sym_PIPE_RBRACE] = ACTIONS(1871),
- [sym__automatic_semicolon] = ACTIONS(2423),
- [sym_html_comment] = ACTIONS(5),
- },
- [695] = {
- [sym__call_signature] = STATE(5588),
- [sym_formal_parameters] = STATE(3742),
- [sym_type_parameters] = STATE(5349),
- [sym_identifier] = ACTIONS(2419),
- [anon_sym_export] = ACTIONS(2421),
- [anon_sym_STAR] = ACTIONS(122),
- [anon_sym_type] = ACTIONS(2421),
- [anon_sym_EQ] = ACTIONS(932),
- [anon_sym_as] = ACTIONS(122),
- [anon_sym_namespace] = ACTIONS(2421),
- [anon_sym_let] = ACTIONS(2421),
- [anon_sym_BANG] = ACTIONS(122),
- [anon_sym_LPAREN] = ACTIONS(2373),
- [anon_sym_in] = ACTIONS(122),
- [anon_sym_SEMI] = ACTIONS(162),
- [anon_sym_LBRACK] = ACTIONS(162),
- [anon_sym_GT] = ACTIONS(122),
- [anon_sym_DOT] = ACTIONS(162),
- [anon_sym_async] = ACTIONS(2421),
- [anon_sym_function] = ACTIONS(2389),
- [anon_sym_EQ_GT] = ACTIONS(924),
- [anon_sym_QMARK_DOT] = ACTIONS(162),
- [anon_sym_new] = ACTIONS(2421),
- [anon_sym_PLUS_EQ] = ACTIONS(168),
- [anon_sym_DASH_EQ] = ACTIONS(168),
- [anon_sym_STAR_EQ] = ACTIONS(168),
- [anon_sym_SLASH_EQ] = ACTIONS(168),
- [anon_sym_PERCENT_EQ] = ACTIONS(168),
- [anon_sym_CARET_EQ] = ACTIONS(168),
- [anon_sym_AMP_EQ] = ACTIONS(168),
- [anon_sym_PIPE_EQ] = ACTIONS(168),
- [anon_sym_GT_GT_EQ] = ACTIONS(168),
- [anon_sym_GT_GT_GT_EQ] = ACTIONS(168),
- [anon_sym_LT_LT_EQ] = ACTIONS(168),
- [anon_sym_STAR_STAR_EQ] = ACTIONS(168),
- [anon_sym_AMP_AMP_EQ] = ACTIONS(168),
- [anon_sym_PIPE_PIPE_EQ] = ACTIONS(168),
- [anon_sym_QMARK_QMARK_EQ] = ACTIONS(168),
- [anon_sym_AMP_AMP] = ACTIONS(122),
- [anon_sym_PIPE_PIPE] = ACTIONS(122),
- [anon_sym_GT_GT] = ACTIONS(122),
- [anon_sym_GT_GT_GT] = ACTIONS(122),
- [anon_sym_LT_LT] = ACTIONS(122),
- [anon_sym_AMP] = ACTIONS(122),
- [anon_sym_CARET] = ACTIONS(122),
- [anon_sym_PIPE] = ACTIONS(122),
- [anon_sym_PLUS] = ACTIONS(122),
- [anon_sym_DASH] = ACTIONS(122),
- [anon_sym_SLASH] = ACTIONS(122),
- [anon_sym_PERCENT] = ACTIONS(122),
- [anon_sym_STAR_STAR] = ACTIONS(122),
- [anon_sym_LT] = ACTIONS(2378),
- [anon_sym_LT_EQ] = ACTIONS(162),
- [anon_sym_EQ_EQ] = ACTIONS(122),
- [anon_sym_EQ_EQ_EQ] = ACTIONS(162),
- [anon_sym_BANG_EQ] = ACTIONS(122),
- [anon_sym_BANG_EQ_EQ] = ACTIONS(162),
- [anon_sym_GT_EQ] = ACTIONS(162),
- [anon_sym_QMARK_QMARK] = ACTIONS(122),
- [anon_sym_instanceof] = ACTIONS(122),
- [anon_sym_PLUS_PLUS] = ACTIONS(162),
- [anon_sym_DASH_DASH] = ACTIONS(162),
- [sym_comment] = ACTIONS(5),
- [anon_sym_BQUOTE] = ACTIONS(162),
- [anon_sym_static] = ACTIONS(2421),
- [anon_sym_readonly] = ACTIONS(2421),
- [anon_sym_get] = ACTIONS(2421),
- [anon_sym_set] = ACTIONS(2421),
- [anon_sym_declare] = ACTIONS(2421),
- [anon_sym_public] = ACTIONS(2421),
- [anon_sym_private] = ACTIONS(2421),
- [anon_sym_protected] = ACTIONS(2421),
- [anon_sym_override] = ACTIONS(2421),
- [anon_sym_module] = ACTIONS(2421),
- [anon_sym_any] = ACTIONS(2421),
- [anon_sym_number] = ACTIONS(2421),
- [anon_sym_boolean] = ACTIONS(2421),
- [anon_sym_string] = ACTIONS(2421),
- [anon_sym_symbol] = ACTIONS(2421),
- [anon_sym_object] = ACTIONS(2421),
- [anon_sym_satisfies] = ACTIONS(122),
- [sym__automatic_semicolon] = ACTIONS(162),
- [sym__ternary_qmark] = ACTIONS(162),
- [sym_html_comment] = ACTIONS(5),
- },
- [696] = {
- [sym__call_signature] = STATE(5588),
- [sym_formal_parameters] = STATE(3742),
- [sym_type_parameters] = STATE(5349),
- [sym_identifier] = ACTIONS(2419),
- [anon_sym_export] = ACTIONS(2421),
- [anon_sym_STAR] = ACTIONS(122),
- [anon_sym_type] = ACTIONS(2421),
- [anon_sym_EQ] = ACTIONS(932),
- [anon_sym_as] = ACTIONS(122),
- [anon_sym_namespace] = ACTIONS(2421),
- [anon_sym_let] = ACTIONS(2421),
- [anon_sym_BANG] = ACTIONS(122),
- [anon_sym_LPAREN] = ACTIONS(2373),
- [anon_sym_in] = ACTIONS(122),
- [anon_sym_SEMI] = ACTIONS(162),
- [anon_sym_LBRACK] = ACTIONS(162),
- [anon_sym_GT] = ACTIONS(122),
- [anon_sym_DOT] = ACTIONS(162),
- [anon_sym_async] = ACTIONS(2421),
- [anon_sym_function] = ACTIONS(2279),
- [anon_sym_EQ_GT] = ACTIONS(924),
- [anon_sym_QMARK_DOT] = ACTIONS(162),
- [anon_sym_new] = ACTIONS(2421),
- [anon_sym_PLUS_EQ] = ACTIONS(168),
- [anon_sym_DASH_EQ] = ACTIONS(168),
- [anon_sym_STAR_EQ] = ACTIONS(168),
- [anon_sym_SLASH_EQ] = ACTIONS(168),
- [anon_sym_PERCENT_EQ] = ACTIONS(168),
- [anon_sym_CARET_EQ] = ACTIONS(168),
- [anon_sym_AMP_EQ] = ACTIONS(168),
- [anon_sym_PIPE_EQ] = ACTIONS(168),
- [anon_sym_GT_GT_EQ] = ACTIONS(168),
- [anon_sym_GT_GT_GT_EQ] = ACTIONS(168),
- [anon_sym_LT_LT_EQ] = ACTIONS(168),
- [anon_sym_STAR_STAR_EQ] = ACTIONS(168),
- [anon_sym_AMP_AMP_EQ] = ACTIONS(168),
- [anon_sym_PIPE_PIPE_EQ] = ACTIONS(168),
- [anon_sym_QMARK_QMARK_EQ] = ACTIONS(168),
- [anon_sym_AMP_AMP] = ACTIONS(122),
- [anon_sym_PIPE_PIPE] = ACTIONS(122),
- [anon_sym_GT_GT] = ACTIONS(122),
- [anon_sym_GT_GT_GT] = ACTIONS(122),
- [anon_sym_LT_LT] = ACTIONS(122),
- [anon_sym_AMP] = ACTIONS(122),
- [anon_sym_CARET] = ACTIONS(122),
- [anon_sym_PIPE] = ACTIONS(122),
- [anon_sym_PLUS] = ACTIONS(122),
- [anon_sym_DASH] = ACTIONS(122),
- [anon_sym_SLASH] = ACTIONS(122),
- [anon_sym_PERCENT] = ACTIONS(122),
- [anon_sym_STAR_STAR] = ACTIONS(122),
- [anon_sym_LT] = ACTIONS(2378),
- [anon_sym_LT_EQ] = ACTIONS(162),
- [anon_sym_EQ_EQ] = ACTIONS(122),
- [anon_sym_EQ_EQ_EQ] = ACTIONS(162),
- [anon_sym_BANG_EQ] = ACTIONS(122),
- [anon_sym_BANG_EQ_EQ] = ACTIONS(162),
- [anon_sym_GT_EQ] = ACTIONS(162),
- [anon_sym_QMARK_QMARK] = ACTIONS(122),
- [anon_sym_instanceof] = ACTIONS(122),
- [anon_sym_PLUS_PLUS] = ACTIONS(162),
- [anon_sym_DASH_DASH] = ACTIONS(162),
- [sym_comment] = ACTIONS(5),
- [anon_sym_BQUOTE] = ACTIONS(162),
- [anon_sym_static] = ACTIONS(2421),
- [anon_sym_readonly] = ACTIONS(2421),
- [anon_sym_get] = ACTIONS(2421),
- [anon_sym_set] = ACTIONS(2421),
- [anon_sym_declare] = ACTIONS(2421),
- [anon_sym_public] = ACTIONS(2421),
- [anon_sym_private] = ACTIONS(2421),
- [anon_sym_protected] = ACTIONS(2421),
- [anon_sym_override] = ACTIONS(2421),
- [anon_sym_module] = ACTIONS(2421),
- [anon_sym_any] = ACTIONS(2421),
- [anon_sym_number] = ACTIONS(2421),
- [anon_sym_boolean] = ACTIONS(2421),
- [anon_sym_string] = ACTIONS(2421),
- [anon_sym_symbol] = ACTIONS(2421),
- [anon_sym_object] = ACTIONS(2421),
- [anon_sym_satisfies] = ACTIONS(122),
- [sym__automatic_semicolon] = ACTIONS(162),
- [sym__ternary_qmark] = ACTIONS(162),
- [sym_html_comment] = ACTIONS(5),
- },
- [697] = {
- [sym__call_signature] = STATE(5772),
- [sym_formal_parameters] = STATE(3742),
- [sym_type_parameters] = STATE(5349),
- [sym_identifier] = ACTIONS(2397),
- [anon_sym_export] = ACTIONS(2399),
- [anon_sym_STAR] = ACTIONS(122),
- [anon_sym_type] = ACTIONS(2399),
- [anon_sym_EQ] = ACTIONS(926),
- [anon_sym_as] = ACTIONS(122),
- [anon_sym_namespace] = ACTIONS(2399),
- [anon_sym_let] = ACTIONS(2399),
- [anon_sym_BANG] = ACTIONS(122),
- [anon_sym_LPAREN] = ACTIONS(2373),
- [anon_sym_in] = ACTIONS(122),
- [anon_sym_COLON] = ACTIONS(900),
- [anon_sym_LBRACK] = ACTIONS(162),
- [anon_sym_RBRACK] = ACTIONS(162),
- [anon_sym_GT] = ACTIONS(122),
- [anon_sym_DOT] = ACTIONS(162),
- [anon_sym_async] = ACTIONS(2399),
- [anon_sym_function] = ACTIONS(2376),
- [anon_sym_EQ_GT] = ACTIONS(904),
- [anon_sym_QMARK_DOT] = ACTIONS(162),
- [anon_sym_new] = ACTIONS(2399),
- [anon_sym_PLUS_EQ] = ACTIONS(168),
- [anon_sym_DASH_EQ] = ACTIONS(168),
- [anon_sym_STAR_EQ] = ACTIONS(168),
- [anon_sym_SLASH_EQ] = ACTIONS(168),
- [anon_sym_PERCENT_EQ] = ACTIONS(168),
- [anon_sym_CARET_EQ] = ACTIONS(168),
- [anon_sym_AMP_EQ] = ACTIONS(168),
- [anon_sym_PIPE_EQ] = ACTIONS(168),
- [anon_sym_GT_GT_EQ] = ACTIONS(168),
- [anon_sym_GT_GT_GT_EQ] = ACTIONS(168),
- [anon_sym_LT_LT_EQ] = ACTIONS(168),
- [anon_sym_STAR_STAR_EQ] = ACTIONS(168),
- [anon_sym_AMP_AMP_EQ] = ACTIONS(168),
- [anon_sym_PIPE_PIPE_EQ] = ACTIONS(168),
- [anon_sym_QMARK_QMARK_EQ] = ACTIONS(168),
- [anon_sym_AMP_AMP] = ACTIONS(122),
- [anon_sym_PIPE_PIPE] = ACTIONS(122),
- [anon_sym_GT_GT] = ACTIONS(122),
- [anon_sym_GT_GT_GT] = ACTIONS(122),
- [anon_sym_LT_LT] = ACTIONS(122),
- [anon_sym_AMP] = ACTIONS(122),
- [anon_sym_CARET] = ACTIONS(122),
- [anon_sym_PIPE] = ACTIONS(122),
- [anon_sym_PLUS] = ACTIONS(122),
- [anon_sym_DASH] = ACTIONS(122),
- [anon_sym_SLASH] = ACTIONS(122),
- [anon_sym_PERCENT] = ACTIONS(122),
- [anon_sym_STAR_STAR] = ACTIONS(122),
- [anon_sym_LT] = ACTIONS(2378),
- [anon_sym_LT_EQ] = ACTIONS(162),
- [anon_sym_EQ_EQ] = ACTIONS(122),
- [anon_sym_EQ_EQ_EQ] = ACTIONS(162),
- [anon_sym_BANG_EQ] = ACTIONS(122),
- [anon_sym_BANG_EQ_EQ] = ACTIONS(162),
- [anon_sym_GT_EQ] = ACTIONS(162),
- [anon_sym_QMARK_QMARK] = ACTIONS(122),
- [anon_sym_instanceof] = ACTIONS(122),
- [anon_sym_PLUS_PLUS] = ACTIONS(162),
- [anon_sym_DASH_DASH] = ACTIONS(162),
- [sym_comment] = ACTIONS(5),
- [anon_sym_BQUOTE] = ACTIONS(162),
- [anon_sym_static] = ACTIONS(2399),
- [anon_sym_readonly] = ACTIONS(2399),
- [anon_sym_get] = ACTIONS(2399),
- [anon_sym_set] = ACTIONS(2399),
- [anon_sym_declare] = ACTIONS(2399),
- [anon_sym_public] = ACTIONS(2399),
- [anon_sym_private] = ACTIONS(2399),
- [anon_sym_protected] = ACTIONS(2399),
- [anon_sym_override] = ACTIONS(2399),
- [anon_sym_module] = ACTIONS(2399),
- [anon_sym_any] = ACTIONS(2399),
- [anon_sym_number] = ACTIONS(2399),
- [anon_sym_boolean] = ACTIONS(2399),
- [anon_sym_string] = ACTIONS(2399),
- [anon_sym_symbol] = ACTIONS(2399),
- [anon_sym_object] = ACTIONS(2399),
- [anon_sym_satisfies] = ACTIONS(122),
- [sym__ternary_qmark] = ACTIONS(162),
- [sym_html_comment] = ACTIONS(5),
- },
- [698] = {
- [sym__call_signature] = STATE(5772),
- [sym_formal_parameters] = STATE(3742),
- [sym_type_parameters] = STATE(5349),
- [sym_identifier] = ACTIONS(2397),
- [anon_sym_export] = ACTIONS(2399),
- [anon_sym_STAR] = ACTIONS(122),
- [anon_sym_type] = ACTIONS(2399),
- [anon_sym_EQ] = ACTIONS(895),
- [anon_sym_as] = ACTIONS(122),
- [anon_sym_namespace] = ACTIONS(2399),
- [anon_sym_COMMA] = ACTIONS(227),
- [anon_sym_let] = ACTIONS(2399),
- [anon_sym_BANG] = ACTIONS(122),
- [anon_sym_LPAREN] = ACTIONS(2373),
- [anon_sym_in] = ACTIONS(122),
- [anon_sym_LBRACK] = ACTIONS(162),
- [anon_sym_RBRACK] = ACTIONS(128),
- [anon_sym_GT] = ACTIONS(122),
- [anon_sym_DOT] = ACTIONS(162),
- [anon_sym_async] = ACTIONS(2399),
- [anon_sym_function] = ACTIONS(2376),
- [anon_sym_EQ_GT] = ACTIONS(904),
- [anon_sym_QMARK_DOT] = ACTIONS(162),
- [anon_sym_new] = ACTIONS(2399),
- [anon_sym_PLUS_EQ] = ACTIONS(168),
- [anon_sym_DASH_EQ] = ACTIONS(168),
- [anon_sym_STAR_EQ] = ACTIONS(168),
- [anon_sym_SLASH_EQ] = ACTIONS(168),
- [anon_sym_PERCENT_EQ] = ACTIONS(168),
- [anon_sym_CARET_EQ] = ACTIONS(168),
- [anon_sym_AMP_EQ] = ACTIONS(168),
- [anon_sym_PIPE_EQ] = ACTIONS(168),
- [anon_sym_GT_GT_EQ] = ACTIONS(168),
- [anon_sym_GT_GT_GT_EQ] = ACTIONS(168),
- [anon_sym_LT_LT_EQ] = ACTIONS(168),
- [anon_sym_STAR_STAR_EQ] = ACTIONS(168),
- [anon_sym_AMP_AMP_EQ] = ACTIONS(168),
- [anon_sym_PIPE_PIPE_EQ] = ACTIONS(168),
- [anon_sym_QMARK_QMARK_EQ] = ACTIONS(168),
- [anon_sym_AMP_AMP] = ACTIONS(122),
- [anon_sym_PIPE_PIPE] = ACTIONS(122),
- [anon_sym_GT_GT] = ACTIONS(122),
- [anon_sym_GT_GT_GT] = ACTIONS(122),
- [anon_sym_LT_LT] = ACTIONS(122),
- [anon_sym_AMP] = ACTIONS(122),
- [anon_sym_CARET] = ACTIONS(122),
- [anon_sym_PIPE] = ACTIONS(122),
- [anon_sym_PLUS] = ACTIONS(122),
- [anon_sym_DASH] = ACTIONS(122),
- [anon_sym_SLASH] = ACTIONS(122),
- [anon_sym_PERCENT] = ACTIONS(122),
- [anon_sym_STAR_STAR] = ACTIONS(122),
- [anon_sym_LT] = ACTIONS(2378),
- [anon_sym_LT_EQ] = ACTIONS(162),
- [anon_sym_EQ_EQ] = ACTIONS(122),
- [anon_sym_EQ_EQ_EQ] = ACTIONS(162),
- [anon_sym_BANG_EQ] = ACTIONS(122),
- [anon_sym_BANG_EQ_EQ] = ACTIONS(162),
- [anon_sym_GT_EQ] = ACTIONS(162),
- [anon_sym_QMARK_QMARK] = ACTIONS(122),
- [anon_sym_instanceof] = ACTIONS(122),
- [anon_sym_PLUS_PLUS] = ACTIONS(162),
- [anon_sym_DASH_DASH] = ACTIONS(162),
- [sym_comment] = ACTIONS(5),
- [anon_sym_BQUOTE] = ACTIONS(162),
- [anon_sym_static] = ACTIONS(2399),
- [anon_sym_readonly] = ACTIONS(2399),
- [anon_sym_get] = ACTIONS(2399),
- [anon_sym_set] = ACTIONS(2399),
- [anon_sym_declare] = ACTIONS(2399),
- [anon_sym_public] = ACTIONS(2399),
- [anon_sym_private] = ACTIONS(2399),
- [anon_sym_protected] = ACTIONS(2399),
- [anon_sym_override] = ACTIONS(2399),
- [anon_sym_module] = ACTIONS(2399),
- [anon_sym_any] = ACTIONS(2399),
- [anon_sym_number] = ACTIONS(2399),
- [anon_sym_boolean] = ACTIONS(2399),
- [anon_sym_string] = ACTIONS(2399),
- [anon_sym_symbol] = ACTIONS(2399),
- [anon_sym_object] = ACTIONS(2399),
- [anon_sym_satisfies] = ACTIONS(122),
- [sym__ternary_qmark] = ACTIONS(162),
- [sym_html_comment] = ACTIONS(5),
- },
- [699] = {
- [ts_builtin_sym_end] = ACTIONS(1765),
- [sym_identifier] = ACTIONS(1767),
- [anon_sym_export] = ACTIONS(1767),
- [anon_sym_default] = ACTIONS(1767),
- [anon_sym_type] = ACTIONS(1767),
- [anon_sym_namespace] = ACTIONS(1767),
- [anon_sym_LBRACE] = ACTIONS(1765),
- [anon_sym_COMMA] = ACTIONS(1765),
- [anon_sym_RBRACE] = ACTIONS(1765),
- [anon_sym_typeof] = ACTIONS(1767),
- [anon_sym_import] = ACTIONS(1767),
- [anon_sym_with] = ACTIONS(1767),
- [anon_sym_var] = ACTIONS(1767),
- [anon_sym_let] = ACTIONS(1767),
- [anon_sym_const] = ACTIONS(1767),
- [anon_sym_BANG] = ACTIONS(1765),
- [anon_sym_else] = ACTIONS(1767),
- [anon_sym_if] = ACTIONS(1767),
- [anon_sym_switch] = ACTIONS(1767),
- [anon_sym_for] = ACTIONS(1767),
- [anon_sym_LPAREN] = ACTIONS(1765),
- [anon_sym_await] = ACTIONS(1767),
- [anon_sym_while] = ACTIONS(1767),
- [anon_sym_do] = ACTIONS(1767),
- [anon_sym_try] = ACTIONS(1767),
- [anon_sym_break] = ACTIONS(1767),
- [anon_sym_continue] = ACTIONS(1767),
- [anon_sym_debugger] = ACTIONS(1767),
- [anon_sym_return] = ACTIONS(1767),
- [anon_sym_throw] = ACTIONS(1767),
- [anon_sym_SEMI] = ACTIONS(1765),
- [anon_sym_case] = ACTIONS(1767),
- [anon_sym_yield] = ACTIONS(1767),
- [anon_sym_LBRACK] = ACTIONS(1765),
- [sym_glimmer_opening_tag] = ACTIONS(1765),
- [anon_sym_DQUOTE] = ACTIONS(1765),
- [anon_sym_SQUOTE] = ACTIONS(1765),
- [anon_sym_class] = ACTIONS(1767),
- [anon_sym_async] = ACTIONS(1767),
- [anon_sym_function] = ACTIONS(1767),
- [anon_sym_new] = ACTIONS(1767),
- [anon_sym_using] = ACTIONS(1767),
- [anon_sym_PLUS] = ACTIONS(1767),
- [anon_sym_DASH] = ACTIONS(1767),
- [anon_sym_SLASH] = ACTIONS(1767),
- [anon_sym_LT] = ACTIONS(1767),
- [anon_sym_TILDE] = ACTIONS(1765),
- [anon_sym_void] = ACTIONS(1767),
- [anon_sym_delete] = ACTIONS(1767),
- [anon_sym_PLUS_PLUS] = ACTIONS(1765),
- [anon_sym_DASH_DASH] = ACTIONS(1765),
- [sym_comment] = ACTIONS(5),
- [anon_sym_BQUOTE] = ACTIONS(1765),
- [sym_number] = ACTIONS(1765),
- [sym_private_property_identifier] = ACTIONS(1765),
- [sym_this] = ACTIONS(1767),
- [sym_super] = ACTIONS(1767),
- [sym_true] = ACTIONS(1767),
- [sym_false] = ACTIONS(1767),
- [sym_null] = ACTIONS(1767),
- [sym_undefined] = ACTIONS(1767),
- [anon_sym_AT] = ACTIONS(1765),
- [anon_sym_static] = ACTIONS(1767),
- [anon_sym_readonly] = ACTIONS(1767),
- [anon_sym_get] = ACTIONS(1767),
- [anon_sym_set] = ACTIONS(1767),
- [anon_sym_declare] = ACTIONS(1767),
- [anon_sym_public] = ACTIONS(1767),
- [anon_sym_private] = ACTIONS(1767),
- [anon_sym_protected] = ACTIONS(1767),
- [anon_sym_override] = ACTIONS(1767),
- [anon_sym_module] = ACTIONS(1767),
- [anon_sym_any] = ACTIONS(1767),
- [anon_sym_number] = ACTIONS(1767),
- [anon_sym_boolean] = ACTIONS(1767),
- [anon_sym_string] = ACTIONS(1767),
- [anon_sym_symbol] = ACTIONS(1767),
- [anon_sym_object] = ACTIONS(1767),
- [anon_sym_abstract] = ACTIONS(1767),
- [anon_sym_interface] = ACTIONS(1767),
- [anon_sym_enum] = ACTIONS(1767),
- [anon_sym_PIPE_RBRACE] = ACTIONS(1765),
- [sym__automatic_semicolon] = ACTIONS(1765),
- [sym_html_comment] = ACTIONS(5),
- },
- [700] = {
- [sym__call_signature] = STATE(5588),
- [sym_formal_parameters] = STATE(3742),
- [sym_type_parameters] = STATE(5349),
- [sym_identifier] = ACTIONS(2419),
- [anon_sym_export] = ACTIONS(2421),
- [anon_sym_STAR] = ACTIONS(122),
- [anon_sym_type] = ACTIONS(2421),
- [anon_sym_EQ] = ACTIONS(932),
- [anon_sym_as] = ACTIONS(122),
- [anon_sym_namespace] = ACTIONS(2421),
- [anon_sym_let] = ACTIONS(2421),
- [anon_sym_BANG] = ACTIONS(122),
- [anon_sym_LPAREN] = ACTIONS(2373),
- [anon_sym_in] = ACTIONS(122),
- [anon_sym_SEMI] = ACTIONS(162),
- [anon_sym_LBRACK] = ACTIONS(162),
- [anon_sym_GT] = ACTIONS(122),
- [anon_sym_DOT] = ACTIONS(162),
- [anon_sym_async] = ACTIONS(2421),
- [anon_sym_function] = ACTIONS(2395),
- [anon_sym_EQ_GT] = ACTIONS(924),
- [anon_sym_QMARK_DOT] = ACTIONS(162),
- [anon_sym_new] = ACTIONS(2421),
- [anon_sym_PLUS_EQ] = ACTIONS(168),
- [anon_sym_DASH_EQ] = ACTIONS(168),
- [anon_sym_STAR_EQ] = ACTIONS(168),
- [anon_sym_SLASH_EQ] = ACTIONS(168),
- [anon_sym_PERCENT_EQ] = ACTIONS(168),
- [anon_sym_CARET_EQ] = ACTIONS(168),
- [anon_sym_AMP_EQ] = ACTIONS(168),
- [anon_sym_PIPE_EQ] = ACTIONS(168),
- [anon_sym_GT_GT_EQ] = ACTIONS(168),
- [anon_sym_GT_GT_GT_EQ] = ACTIONS(168),
- [anon_sym_LT_LT_EQ] = ACTIONS(168),
- [anon_sym_STAR_STAR_EQ] = ACTIONS(168),
- [anon_sym_AMP_AMP_EQ] = ACTIONS(168),
- [anon_sym_PIPE_PIPE_EQ] = ACTIONS(168),
- [anon_sym_QMARK_QMARK_EQ] = ACTIONS(168),
- [anon_sym_AMP_AMP] = ACTIONS(122),
- [anon_sym_PIPE_PIPE] = ACTIONS(122),
- [anon_sym_GT_GT] = ACTIONS(122),
- [anon_sym_GT_GT_GT] = ACTIONS(122),
- [anon_sym_LT_LT] = ACTIONS(122),
- [anon_sym_AMP] = ACTIONS(122),
- [anon_sym_CARET] = ACTIONS(122),
- [anon_sym_PIPE] = ACTIONS(122),
- [anon_sym_PLUS] = ACTIONS(122),
- [anon_sym_DASH] = ACTIONS(122),
- [anon_sym_SLASH] = ACTIONS(122),
- [anon_sym_PERCENT] = ACTIONS(122),
- [anon_sym_STAR_STAR] = ACTIONS(122),
- [anon_sym_LT] = ACTIONS(2378),
- [anon_sym_LT_EQ] = ACTIONS(162),
- [anon_sym_EQ_EQ] = ACTIONS(122),
- [anon_sym_EQ_EQ_EQ] = ACTIONS(162),
- [anon_sym_BANG_EQ] = ACTIONS(122),
- [anon_sym_BANG_EQ_EQ] = ACTIONS(162),
- [anon_sym_GT_EQ] = ACTIONS(162),
- [anon_sym_QMARK_QMARK] = ACTIONS(122),
- [anon_sym_instanceof] = ACTIONS(122),
- [anon_sym_PLUS_PLUS] = ACTIONS(162),
- [anon_sym_DASH_DASH] = ACTIONS(162),
- [sym_comment] = ACTIONS(5),
- [anon_sym_BQUOTE] = ACTIONS(162),
- [anon_sym_static] = ACTIONS(2421),
- [anon_sym_readonly] = ACTIONS(2421),
- [anon_sym_get] = ACTIONS(2421),
- [anon_sym_set] = ACTIONS(2421),
- [anon_sym_declare] = ACTIONS(2421),
- [anon_sym_public] = ACTIONS(2421),
- [anon_sym_private] = ACTIONS(2421),
- [anon_sym_protected] = ACTIONS(2421),
- [anon_sym_override] = ACTIONS(2421),
- [anon_sym_module] = ACTIONS(2421),
- [anon_sym_any] = ACTIONS(2421),
- [anon_sym_number] = ACTIONS(2421),
- [anon_sym_boolean] = ACTIONS(2421),
- [anon_sym_string] = ACTIONS(2421),
- [anon_sym_symbol] = ACTIONS(2421),
- [anon_sym_object] = ACTIONS(2421),
- [anon_sym_satisfies] = ACTIONS(122),
- [sym__automatic_semicolon] = ACTIONS(162),
- [sym__ternary_qmark] = ACTIONS(162),
- [sym_html_comment] = ACTIONS(5),
- },
- [701] = {
- [ts_builtin_sym_end] = ACTIONS(1871),
- [sym_identifier] = ACTIONS(1873),
- [anon_sym_export] = ACTIONS(1873),
- [anon_sym_default] = ACTIONS(1873),
- [anon_sym_type] = ACTIONS(1873),
- [anon_sym_namespace] = ACTIONS(1873),
- [anon_sym_LBRACE] = ACTIONS(1871),
- [anon_sym_COMMA] = ACTIONS(1871),
- [anon_sym_RBRACE] = ACTIONS(1871),
- [anon_sym_typeof] = ACTIONS(1873),
- [anon_sym_import] = ACTIONS(1873),
- [anon_sym_with] = ACTIONS(1873),
- [anon_sym_var] = ACTIONS(1873),
- [anon_sym_let] = ACTIONS(1873),
- [anon_sym_const] = ACTIONS(1873),
- [anon_sym_BANG] = ACTIONS(1871),
- [anon_sym_else] = ACTIONS(1873),
- [anon_sym_if] = ACTIONS(1873),
- [anon_sym_switch] = ACTIONS(1873),
- [anon_sym_for] = ACTIONS(1873),
- [anon_sym_LPAREN] = ACTIONS(1871),
- [anon_sym_await] = ACTIONS(1873),
- [anon_sym_while] = ACTIONS(1873),
- [anon_sym_do] = ACTIONS(1873),
- [anon_sym_try] = ACTIONS(1873),
- [anon_sym_break] = ACTIONS(1873),
- [anon_sym_continue] = ACTIONS(1873),
- [anon_sym_debugger] = ACTIONS(1873),
- [anon_sym_return] = ACTIONS(1873),
- [anon_sym_throw] = ACTIONS(1873),
- [anon_sym_SEMI] = ACTIONS(1871),
- [anon_sym_case] = ACTIONS(1873),
- [anon_sym_catch] = ACTIONS(1873),
- [anon_sym_finally] = ACTIONS(1873),
- [anon_sym_yield] = ACTIONS(1873),
- [anon_sym_LBRACK] = ACTIONS(1871),
- [sym_glimmer_opening_tag] = ACTIONS(1871),
- [anon_sym_DQUOTE] = ACTIONS(1871),
- [anon_sym_SQUOTE] = ACTIONS(1871),
- [anon_sym_class] = ACTIONS(1873),
- [anon_sym_async] = ACTIONS(1873),
- [anon_sym_function] = ACTIONS(1873),
- [anon_sym_new] = ACTIONS(1873),
- [anon_sym_using] = ACTIONS(1873),
- [anon_sym_PLUS] = ACTIONS(1873),
- [anon_sym_DASH] = ACTIONS(1873),
- [anon_sym_SLASH] = ACTIONS(1873),
- [anon_sym_LT] = ACTIONS(1873),
- [anon_sym_TILDE] = ACTIONS(1871),
- [anon_sym_void] = ACTIONS(1873),
- [anon_sym_delete] = ACTIONS(1873),
- [anon_sym_PLUS_PLUS] = ACTIONS(1871),
- [anon_sym_DASH_DASH] = ACTIONS(1871),
- [sym_comment] = ACTIONS(5),
- [anon_sym_BQUOTE] = ACTIONS(1871),
- [sym_number] = ACTIONS(1871),
- [sym_private_property_identifier] = ACTIONS(1871),
- [sym_this] = ACTIONS(1873),
- [sym_super] = ACTIONS(1873),
- [sym_true] = ACTIONS(1873),
- [sym_false] = ACTIONS(1873),
- [sym_null] = ACTIONS(1873),
- [sym_undefined] = ACTIONS(1873),
- [anon_sym_AT] = ACTIONS(1871),
- [anon_sym_static] = ACTIONS(1873),
- [anon_sym_readonly] = ACTIONS(1873),
- [anon_sym_get] = ACTIONS(1873),
- [anon_sym_set] = ACTIONS(1873),
- [anon_sym_declare] = ACTIONS(1873),
- [anon_sym_public] = ACTIONS(1873),
- [anon_sym_private] = ACTIONS(1873),
- [anon_sym_protected] = ACTIONS(1873),
- [anon_sym_override] = ACTIONS(1873),
- [anon_sym_module] = ACTIONS(1873),
- [anon_sym_any] = ACTIONS(1873),
- [anon_sym_number] = ACTIONS(1873),
- [anon_sym_boolean] = ACTIONS(1873),
- [anon_sym_string] = ACTIONS(1873),
- [anon_sym_symbol] = ACTIONS(1873),
- [anon_sym_object] = ACTIONS(1873),
- [anon_sym_abstract] = ACTIONS(1873),
- [anon_sym_interface] = ACTIONS(1873),
- [anon_sym_enum] = ACTIONS(1873),
- [sym_html_comment] = ACTIONS(5),
- },
- [702] = {
- [sym__call_signature] = STATE(5566),
- [sym_formal_parameters] = STATE(3742),
- [sym_type_parameters] = STATE(5349),
- [sym_identifier] = ACTIONS(2415),
- [anon_sym_export] = ACTIONS(2417),
- [anon_sym_STAR] = ACTIONS(122),
- [anon_sym_type] = ACTIONS(2417),
- [anon_sym_EQ] = ACTIONS(946),
- [anon_sym_as] = ACTIONS(122),
- [anon_sym_namespace] = ACTIONS(2417),
- [anon_sym_RBRACE] = ACTIONS(162),
- [anon_sym_let] = ACTIONS(2417),
- [anon_sym_BANG] = ACTIONS(122),
- [anon_sym_LPAREN] = ACTIONS(2373),
- [anon_sym_in] = ACTIONS(122),
- [anon_sym_COLON] = ACTIONS(162),
- [anon_sym_LBRACK] = ACTIONS(162),
- [anon_sym_GT] = ACTIONS(122),
- [anon_sym_DOT] = ACTIONS(162),
- [anon_sym_async] = ACTIONS(2417),
- [anon_sym_function] = ACTIONS(2376),
- [anon_sym_EQ_GT] = ACTIONS(952),
- [anon_sym_QMARK_DOT] = ACTIONS(162),
- [anon_sym_new] = ACTIONS(2417),
- [anon_sym_PLUS_EQ] = ACTIONS(168),
- [anon_sym_DASH_EQ] = ACTIONS(168),
- [anon_sym_STAR_EQ] = ACTIONS(168),
- [anon_sym_SLASH_EQ] = ACTIONS(168),
- [anon_sym_PERCENT_EQ] = ACTIONS(168),
- [anon_sym_CARET_EQ] = ACTIONS(168),
- [anon_sym_AMP_EQ] = ACTIONS(168),
- [anon_sym_PIPE_EQ] = ACTIONS(168),
- [anon_sym_GT_GT_EQ] = ACTIONS(168),
- [anon_sym_GT_GT_GT_EQ] = ACTIONS(168),
- [anon_sym_LT_LT_EQ] = ACTIONS(168),
- [anon_sym_STAR_STAR_EQ] = ACTIONS(168),
- [anon_sym_AMP_AMP_EQ] = ACTIONS(168),
- [anon_sym_PIPE_PIPE_EQ] = ACTIONS(168),
- [anon_sym_QMARK_QMARK_EQ] = ACTIONS(168),
- [anon_sym_AMP_AMP] = ACTIONS(122),
- [anon_sym_PIPE_PIPE] = ACTIONS(122),
- [anon_sym_GT_GT] = ACTIONS(122),
- [anon_sym_GT_GT_GT] = ACTIONS(122),
- [anon_sym_LT_LT] = ACTIONS(122),
- [anon_sym_AMP] = ACTIONS(122),
- [anon_sym_CARET] = ACTIONS(122),
- [anon_sym_PIPE] = ACTIONS(122),
- [anon_sym_PLUS] = ACTIONS(122),
- [anon_sym_DASH] = ACTIONS(122),
- [anon_sym_SLASH] = ACTIONS(122),
- [anon_sym_PERCENT] = ACTIONS(122),
- [anon_sym_STAR_STAR] = ACTIONS(122),
- [anon_sym_LT] = ACTIONS(2378),
- [anon_sym_LT_EQ] = ACTIONS(162),
- [anon_sym_EQ_EQ] = ACTIONS(122),
- [anon_sym_EQ_EQ_EQ] = ACTIONS(162),
- [anon_sym_BANG_EQ] = ACTIONS(122),
- [anon_sym_BANG_EQ_EQ] = ACTIONS(162),
- [anon_sym_GT_EQ] = ACTIONS(162),
- [anon_sym_QMARK_QMARK] = ACTIONS(122),
- [anon_sym_instanceof] = ACTIONS(122),
- [anon_sym_PLUS_PLUS] = ACTIONS(162),
- [anon_sym_DASH_DASH] = ACTIONS(162),
- [sym_comment] = ACTIONS(5),
- [anon_sym_BQUOTE] = ACTIONS(162),
- [anon_sym_static] = ACTIONS(2417),
- [anon_sym_readonly] = ACTIONS(2417),
- [anon_sym_get] = ACTIONS(2417),
- [anon_sym_set] = ACTIONS(2417),
- [anon_sym_declare] = ACTIONS(2417),
- [anon_sym_public] = ACTIONS(2417),
- [anon_sym_private] = ACTIONS(2417),
- [anon_sym_protected] = ACTIONS(2417),
- [anon_sym_override] = ACTIONS(2417),
- [anon_sym_module] = ACTIONS(2417),
- [anon_sym_any] = ACTIONS(2417),
- [anon_sym_number] = ACTIONS(2417),
- [anon_sym_boolean] = ACTIONS(2417),
- [anon_sym_string] = ACTIONS(2417),
- [anon_sym_symbol] = ACTIONS(2417),
- [anon_sym_object] = ACTIONS(2417),
- [anon_sym_satisfies] = ACTIONS(122),
- [sym__ternary_qmark] = ACTIONS(162),
- [sym_html_comment] = ACTIONS(5),
- },
- [703] = {
- [ts_builtin_sym_end] = ACTIONS(1871),
- [sym_identifier] = ACTIONS(1873),
- [anon_sym_export] = ACTIONS(1873),
- [anon_sym_default] = ACTIONS(1873),
- [anon_sym_type] = ACTIONS(1873),
- [anon_sym_namespace] = ACTIONS(1873),
- [anon_sym_LBRACE] = ACTIONS(1871),
- [anon_sym_COMMA] = ACTIONS(1871),
- [anon_sym_RBRACE] = ACTIONS(1871),
- [anon_sym_typeof] = ACTIONS(1873),
- [anon_sym_import] = ACTIONS(1873),
- [anon_sym_with] = ACTIONS(1873),
- [anon_sym_var] = ACTIONS(1873),
- [anon_sym_let] = ACTIONS(1873),
- [anon_sym_const] = ACTIONS(1873),
- [anon_sym_BANG] = ACTIONS(1871),
- [anon_sym_else] = ACTIONS(1873),
- [anon_sym_if] = ACTIONS(1873),
- [anon_sym_switch] = ACTIONS(1873),
- [anon_sym_for] = ACTIONS(1873),
- [anon_sym_LPAREN] = ACTIONS(1871),
- [anon_sym_await] = ACTIONS(1873),
- [anon_sym_while] = ACTIONS(1873),
- [anon_sym_do] = ACTIONS(1873),
- [anon_sym_try] = ACTIONS(1873),
- [anon_sym_break] = ACTIONS(1873),
- [anon_sym_continue] = ACTIONS(1873),
- [anon_sym_debugger] = ACTIONS(1873),
- [anon_sym_return] = ACTIONS(1873),
- [anon_sym_throw] = ACTIONS(1873),
- [anon_sym_SEMI] = ACTIONS(1871),
- [anon_sym_case] = ACTIONS(1873),
- [anon_sym_yield] = ACTIONS(1873),
- [anon_sym_LBRACK] = ACTIONS(1871),
- [sym_glimmer_opening_tag] = ACTIONS(1871),
- [anon_sym_DQUOTE] = ACTIONS(1871),
- [anon_sym_SQUOTE] = ACTIONS(1871),
- [anon_sym_class] = ACTIONS(1873),
- [anon_sym_async] = ACTIONS(1873),
- [anon_sym_function] = ACTIONS(1873),
- [anon_sym_new] = ACTIONS(1873),
- [anon_sym_using] = ACTIONS(1873),
- [anon_sym_PLUS] = ACTIONS(1873),
- [anon_sym_DASH] = ACTIONS(1873),
- [anon_sym_SLASH] = ACTIONS(1873),
- [anon_sym_LT] = ACTIONS(1873),
- [anon_sym_TILDE] = ACTIONS(1871),
- [anon_sym_void] = ACTIONS(1873),
- [anon_sym_delete] = ACTIONS(1873),
- [anon_sym_PLUS_PLUS] = ACTIONS(1871),
- [anon_sym_DASH_DASH] = ACTIONS(1871),
- [sym_comment] = ACTIONS(5),
- [anon_sym_BQUOTE] = ACTIONS(1871),
- [sym_number] = ACTIONS(1871),
- [sym_private_property_identifier] = ACTIONS(1871),
- [sym_this] = ACTIONS(1873),
- [sym_super] = ACTIONS(1873),
- [sym_true] = ACTIONS(1873),
- [sym_false] = ACTIONS(1873),
- [sym_null] = ACTIONS(1873),
- [sym_undefined] = ACTIONS(1873),
- [anon_sym_AT] = ACTIONS(1871),
- [anon_sym_static] = ACTIONS(1873),
- [anon_sym_readonly] = ACTIONS(1873),
- [anon_sym_get] = ACTIONS(1873),
- [anon_sym_set] = ACTIONS(1873),
- [anon_sym_declare] = ACTIONS(1873),
- [anon_sym_public] = ACTIONS(1873),
- [anon_sym_private] = ACTIONS(1873),
- [anon_sym_protected] = ACTIONS(1873),
- [anon_sym_override] = ACTIONS(1873),
- [anon_sym_module] = ACTIONS(1873),
- [anon_sym_any] = ACTIONS(1873),
- [anon_sym_number] = ACTIONS(1873),
- [anon_sym_boolean] = ACTIONS(1873),
- [anon_sym_string] = ACTIONS(1873),
- [anon_sym_symbol] = ACTIONS(1873),
- [anon_sym_object] = ACTIONS(1873),
- [anon_sym_abstract] = ACTIONS(1873),
- [anon_sym_interface] = ACTIONS(1873),
- [anon_sym_enum] = ACTIONS(1873),
- [anon_sym_PIPE_RBRACE] = ACTIONS(1871),
- [sym__automatic_semicolon] = ACTIONS(1871),
- [sym_html_comment] = ACTIONS(5),
- },
- [704] = {
- [ts_builtin_sym_end] = ACTIONS(1720),
- [sym_identifier] = ACTIONS(1722),
- [anon_sym_export] = ACTIONS(1722),
- [anon_sym_default] = ACTIONS(1722),
- [anon_sym_type] = ACTIONS(1722),
- [anon_sym_namespace] = ACTIONS(1722),
- [anon_sym_LBRACE] = ACTIONS(1720),
- [anon_sym_COMMA] = ACTIONS(1720),
- [anon_sym_RBRACE] = ACTIONS(1720),
- [anon_sym_typeof] = ACTIONS(1722),
- [anon_sym_import] = ACTIONS(1722),
- [anon_sym_with] = ACTIONS(1722),
- [anon_sym_var] = ACTIONS(1722),
- [anon_sym_let] = ACTIONS(1722),
- [anon_sym_const] = ACTIONS(1722),
- [anon_sym_BANG] = ACTIONS(1720),
- [anon_sym_else] = ACTIONS(1722),
- [anon_sym_if] = ACTIONS(1722),
- [anon_sym_switch] = ACTIONS(1722),
- [anon_sym_for] = ACTIONS(1722),
- [anon_sym_LPAREN] = ACTIONS(1720),
- [anon_sym_await] = ACTIONS(1722),
- [anon_sym_while] = ACTIONS(1722),
- [anon_sym_do] = ACTIONS(1722),
- [anon_sym_try] = ACTIONS(1722),
- [anon_sym_break] = ACTIONS(1722),
- [anon_sym_continue] = ACTIONS(1722),
- [anon_sym_debugger] = ACTIONS(1722),
- [anon_sym_return] = ACTIONS(1722),
- [anon_sym_throw] = ACTIONS(1722),
- [anon_sym_SEMI] = ACTIONS(1720),
- [anon_sym_case] = ACTIONS(1722),
- [anon_sym_yield] = ACTIONS(1722),
- [anon_sym_LBRACK] = ACTIONS(1720),
- [sym_glimmer_opening_tag] = ACTIONS(1720),
- [anon_sym_DQUOTE] = ACTIONS(1720),
- [anon_sym_SQUOTE] = ACTIONS(1720),
- [anon_sym_class] = ACTIONS(1722),
- [anon_sym_async] = ACTIONS(1722),
- [anon_sym_function] = ACTIONS(1722),
- [anon_sym_new] = ACTIONS(1722),
- [anon_sym_using] = ACTIONS(1722),
- [anon_sym_PLUS] = ACTIONS(1722),
- [anon_sym_DASH] = ACTIONS(1722),
- [anon_sym_SLASH] = ACTIONS(1722),
- [anon_sym_LT] = ACTIONS(1722),
- [anon_sym_TILDE] = ACTIONS(1720),
- [anon_sym_void] = ACTIONS(1722),
- [anon_sym_delete] = ACTIONS(1722),
- [anon_sym_PLUS_PLUS] = ACTIONS(1720),
- [anon_sym_DASH_DASH] = ACTIONS(1720),
- [sym_comment] = ACTIONS(5),
- [anon_sym_BQUOTE] = ACTIONS(1720),
- [sym_number] = ACTIONS(1720),
- [sym_private_property_identifier] = ACTIONS(1720),
- [sym_this] = ACTIONS(1722),
- [sym_super] = ACTIONS(1722),
- [sym_true] = ACTIONS(1722),
- [sym_false] = ACTIONS(1722),
- [sym_null] = ACTIONS(1722),
- [sym_undefined] = ACTIONS(1722),
- [anon_sym_AT] = ACTIONS(1720),
- [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_override] = 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),
- [anon_sym_object] = ACTIONS(1722),
- [anon_sym_abstract] = ACTIONS(1722),
- [anon_sym_interface] = ACTIONS(1722),
- [anon_sym_enum] = ACTIONS(1722),
- [anon_sym_PIPE_RBRACE] = ACTIONS(1720),
- [sym__automatic_semicolon] = ACTIONS(2425),
- [sym_html_comment] = ACTIONS(5),
- },
- [705] = {
- [sym__call_signature] = STATE(5588),
- [sym_formal_parameters] = STATE(3742),
- [sym_type_parameters] = STATE(5349),
- [sym_identifier] = ACTIONS(2419),
- [anon_sym_export] = ACTIONS(2421),
- [anon_sym_STAR] = ACTIONS(122),
- [anon_sym_type] = ACTIONS(2421),
- [anon_sym_EQ] = ACTIONS(932),
- [anon_sym_as] = ACTIONS(122),
- [anon_sym_namespace] = ACTIONS(2421),
- [anon_sym_let] = ACTIONS(2421),
- [anon_sym_BANG] = ACTIONS(122),
- [anon_sym_LPAREN] = ACTIONS(2373),
- [anon_sym_in] = ACTIONS(122),
- [anon_sym_SEMI] = ACTIONS(162),
- [anon_sym_LBRACK] = ACTIONS(162),
- [anon_sym_GT] = ACTIONS(122),
- [anon_sym_DOT] = ACTIONS(162),
- [anon_sym_async] = ACTIONS(2421),
- [anon_sym_function] = ACTIONS(2427),
- [anon_sym_EQ_GT] = ACTIONS(924),
- [anon_sym_QMARK_DOT] = ACTIONS(162),
- [anon_sym_new] = ACTIONS(2421),
- [anon_sym_PLUS_EQ] = ACTIONS(168),
- [anon_sym_DASH_EQ] = ACTIONS(168),
- [anon_sym_STAR_EQ] = ACTIONS(168),
- [anon_sym_SLASH_EQ] = ACTIONS(168),
- [anon_sym_PERCENT_EQ] = ACTIONS(168),
- [anon_sym_CARET_EQ] = ACTIONS(168),
- [anon_sym_AMP_EQ] = ACTIONS(168),
- [anon_sym_PIPE_EQ] = ACTIONS(168),
- [anon_sym_GT_GT_EQ] = ACTIONS(168),
- [anon_sym_GT_GT_GT_EQ] = ACTIONS(168),
- [anon_sym_LT_LT_EQ] = ACTIONS(168),
- [anon_sym_STAR_STAR_EQ] = ACTIONS(168),
- [anon_sym_AMP_AMP_EQ] = ACTIONS(168),
- [anon_sym_PIPE_PIPE_EQ] = ACTIONS(168),
- [anon_sym_QMARK_QMARK_EQ] = ACTIONS(168),
- [anon_sym_AMP_AMP] = ACTIONS(122),
- [anon_sym_PIPE_PIPE] = ACTIONS(122),
- [anon_sym_GT_GT] = ACTIONS(122),
- [anon_sym_GT_GT_GT] = ACTIONS(122),
- [anon_sym_LT_LT] = ACTIONS(122),
- [anon_sym_AMP] = ACTIONS(122),
- [anon_sym_CARET] = ACTIONS(122),
- [anon_sym_PIPE] = ACTIONS(122),
- [anon_sym_PLUS] = ACTIONS(122),
- [anon_sym_DASH] = ACTIONS(122),
- [anon_sym_SLASH] = ACTIONS(122),
- [anon_sym_PERCENT] = ACTIONS(122),
- [anon_sym_STAR_STAR] = ACTIONS(122),
- [anon_sym_LT] = ACTIONS(2378),
- [anon_sym_LT_EQ] = ACTIONS(162),
- [anon_sym_EQ_EQ] = ACTIONS(122),
- [anon_sym_EQ_EQ_EQ] = ACTIONS(162),
- [anon_sym_BANG_EQ] = ACTIONS(122),
- [anon_sym_BANG_EQ_EQ] = ACTIONS(162),
- [anon_sym_GT_EQ] = ACTIONS(162),
- [anon_sym_QMARK_QMARK] = ACTIONS(122),
- [anon_sym_instanceof] = ACTIONS(122),
- [anon_sym_PLUS_PLUS] = ACTIONS(162),
- [anon_sym_DASH_DASH] = ACTIONS(162),
- [sym_comment] = ACTIONS(5),
- [anon_sym_BQUOTE] = ACTIONS(162),
- [anon_sym_static] = ACTIONS(2421),
- [anon_sym_readonly] = ACTIONS(2421),
- [anon_sym_get] = ACTIONS(2421),
- [anon_sym_set] = ACTIONS(2421),
- [anon_sym_declare] = ACTIONS(2421),
- [anon_sym_public] = ACTIONS(2421),
- [anon_sym_private] = ACTIONS(2421),
- [anon_sym_protected] = ACTIONS(2421),
- [anon_sym_override] = ACTIONS(2421),
- [anon_sym_module] = ACTIONS(2421),
- [anon_sym_any] = ACTIONS(2421),
- [anon_sym_number] = ACTIONS(2421),
- [anon_sym_boolean] = ACTIONS(2421),
- [anon_sym_string] = ACTIONS(2421),
- [anon_sym_symbol] = ACTIONS(2421),
- [anon_sym_object] = ACTIONS(2421),
- [anon_sym_satisfies] = ACTIONS(122),
- [sym__automatic_semicolon] = ACTIONS(162),
- [sym__ternary_qmark] = ACTIONS(162),
- [sym_html_comment] = ACTIONS(5),
- },
- [706] = {
- [sym_finally_clause] = STATE(773),
- [ts_builtin_sym_end] = ACTIONS(2429),
- [sym_identifier] = ACTIONS(2431),
- [anon_sym_export] = ACTIONS(2431),
- [anon_sym_default] = ACTIONS(2431),
- [anon_sym_type] = ACTIONS(2431),
- [anon_sym_namespace] = ACTIONS(2431),
- [anon_sym_LBRACE] = ACTIONS(2429),
- [anon_sym_RBRACE] = ACTIONS(2429),
- [anon_sym_typeof] = ACTIONS(2431),
- [anon_sym_import] = ACTIONS(2431),
- [anon_sym_with] = ACTIONS(2431),
- [anon_sym_var] = ACTIONS(2431),
- [anon_sym_let] = ACTIONS(2431),
- [anon_sym_const] = ACTIONS(2431),
- [anon_sym_BANG] = ACTIONS(2429),
- [anon_sym_else] = ACTIONS(2431),
- [anon_sym_if] = ACTIONS(2431),
- [anon_sym_switch] = ACTIONS(2431),
- [anon_sym_for] = ACTIONS(2431),
- [anon_sym_LPAREN] = ACTIONS(2429),
- [anon_sym_await] = ACTIONS(2431),
- [anon_sym_while] = ACTIONS(2431),
- [anon_sym_do] = ACTIONS(2431),
- [anon_sym_try] = ACTIONS(2431),
- [anon_sym_break] = ACTIONS(2431),
- [anon_sym_continue] = ACTIONS(2431),
- [anon_sym_debugger] = ACTIONS(2431),
- [anon_sym_return] = ACTIONS(2431),
- [anon_sym_throw] = ACTIONS(2431),
- [anon_sym_SEMI] = ACTIONS(2429),
- [anon_sym_case] = ACTIONS(2431),
- [anon_sym_finally] = ACTIONS(2411),
- [anon_sym_yield] = ACTIONS(2431),
- [anon_sym_LBRACK] = ACTIONS(2429),
- [sym_glimmer_opening_tag] = ACTIONS(2429),
- [anon_sym_DQUOTE] = ACTIONS(2429),
- [anon_sym_SQUOTE] = ACTIONS(2429),
- [anon_sym_class] = ACTIONS(2431),
- [anon_sym_async] = ACTIONS(2431),
- [anon_sym_function] = ACTIONS(2431),
- [anon_sym_new] = ACTIONS(2431),
- [anon_sym_using] = ACTIONS(2431),
- [anon_sym_PLUS] = ACTIONS(2431),
- [anon_sym_DASH] = ACTIONS(2431),
- [anon_sym_SLASH] = ACTIONS(2431),
- [anon_sym_LT] = ACTIONS(2431),
- [anon_sym_TILDE] = ACTIONS(2429),
- [anon_sym_void] = ACTIONS(2431),
- [anon_sym_delete] = ACTIONS(2431),
- [anon_sym_PLUS_PLUS] = ACTIONS(2429),
- [anon_sym_DASH_DASH] = ACTIONS(2429),
- [sym_comment] = ACTIONS(5),
- [anon_sym_BQUOTE] = ACTIONS(2429),
- [sym_number] = ACTIONS(2429),
- [sym_private_property_identifier] = ACTIONS(2429),
- [sym_this] = ACTIONS(2431),
- [sym_super] = ACTIONS(2431),
- [sym_true] = ACTIONS(2431),
- [sym_false] = ACTIONS(2431),
- [sym_null] = ACTIONS(2431),
- [sym_undefined] = ACTIONS(2431),
- [anon_sym_AT] = ACTIONS(2429),
- [anon_sym_static] = ACTIONS(2431),
- [anon_sym_readonly] = ACTIONS(2431),
- [anon_sym_get] = ACTIONS(2431),
- [anon_sym_set] = ACTIONS(2431),
- [anon_sym_declare] = ACTIONS(2431),
- [anon_sym_public] = ACTIONS(2431),
- [anon_sym_private] = ACTIONS(2431),
- [anon_sym_protected] = ACTIONS(2431),
- [anon_sym_override] = ACTIONS(2431),
- [anon_sym_module] = ACTIONS(2431),
- [anon_sym_any] = ACTIONS(2431),
- [anon_sym_number] = ACTIONS(2431),
- [anon_sym_boolean] = ACTIONS(2431),
- [anon_sym_string] = ACTIONS(2431),
- [anon_sym_symbol] = ACTIONS(2431),
- [anon_sym_object] = ACTIONS(2431),
- [anon_sym_abstract] = ACTIONS(2431),
- [anon_sym_interface] = ACTIONS(2431),
- [anon_sym_enum] = ACTIONS(2431),
- [sym_html_comment] = ACTIONS(5),
- },
- [707] = {
- [sym__call_signature] = STATE(5912),
- [sym_formal_parameters] = STATE(3742),
- [sym_type_parameters] = STATE(5349),
- [sym_identifier] = ACTIONS(2433),
- [anon_sym_export] = ACTIONS(2435),
- [anon_sym_STAR] = ACTIONS(122),
- [anon_sym_type] = ACTIONS(2435),
- [anon_sym_EQ] = ACTIONS(960),
- [anon_sym_as] = ACTIONS(122),
- [anon_sym_namespace] = ACTIONS(2435),
- [anon_sym_let] = ACTIONS(2435),
- [anon_sym_BANG] = ACTIONS(122),
- [anon_sym_LPAREN] = ACTIONS(2373),
- [anon_sym_in] = ACTIONS(122),
- [anon_sym_of] = ACTIONS(122),
- [anon_sym_LBRACK] = ACTIONS(162),
- [anon_sym_GT] = ACTIONS(122),
- [anon_sym_DOT] = ACTIONS(162),
- [anon_sym_async] = ACTIONS(2435),
- [anon_sym_function] = ACTIONS(2376),
- [anon_sym_EQ_GT] = ACTIONS(966),
- [anon_sym_QMARK_DOT] = ACTIONS(162),
- [anon_sym_new] = ACTIONS(2435),
- [anon_sym_PLUS_EQ] = ACTIONS(168),
- [anon_sym_DASH_EQ] = ACTIONS(168),
- [anon_sym_STAR_EQ] = ACTIONS(168),
- [anon_sym_SLASH_EQ] = ACTIONS(168),
- [anon_sym_PERCENT_EQ] = ACTIONS(168),
- [anon_sym_CARET_EQ] = ACTIONS(168),
- [anon_sym_AMP_EQ] = ACTIONS(168),
- [anon_sym_PIPE_EQ] = ACTIONS(168),
- [anon_sym_GT_GT_EQ] = ACTIONS(168),
- [anon_sym_GT_GT_GT_EQ] = ACTIONS(168),
- [anon_sym_LT_LT_EQ] = ACTIONS(168),
- [anon_sym_STAR_STAR_EQ] = ACTIONS(168),
- [anon_sym_AMP_AMP_EQ] = ACTIONS(168),
- [anon_sym_PIPE_PIPE_EQ] = ACTIONS(168),
- [anon_sym_QMARK_QMARK_EQ] = ACTIONS(168),
- [anon_sym_AMP_AMP] = ACTIONS(122),
- [anon_sym_PIPE_PIPE] = ACTIONS(122),
- [anon_sym_GT_GT] = ACTIONS(122),
- [anon_sym_GT_GT_GT] = ACTIONS(122),
- [anon_sym_LT_LT] = ACTIONS(122),
- [anon_sym_AMP] = ACTIONS(122),
- [anon_sym_CARET] = ACTIONS(122),
- [anon_sym_PIPE] = ACTIONS(122),
- [anon_sym_PLUS] = ACTIONS(122),
- [anon_sym_DASH] = ACTIONS(122),
- [anon_sym_SLASH] = ACTIONS(122),
- [anon_sym_PERCENT] = ACTIONS(122),
- [anon_sym_STAR_STAR] = ACTIONS(122),
- [anon_sym_LT] = ACTIONS(2378),
- [anon_sym_LT_EQ] = ACTIONS(162),
- [anon_sym_EQ_EQ] = ACTIONS(122),
- [anon_sym_EQ_EQ_EQ] = ACTIONS(162),
- [anon_sym_BANG_EQ] = ACTIONS(122),
- [anon_sym_BANG_EQ_EQ] = ACTIONS(162),
- [anon_sym_GT_EQ] = ACTIONS(162),
- [anon_sym_QMARK_QMARK] = ACTIONS(122),
- [anon_sym_instanceof] = ACTIONS(122),
- [anon_sym_PLUS_PLUS] = ACTIONS(162),
- [anon_sym_DASH_DASH] = ACTIONS(162),
- [sym_comment] = ACTIONS(5),
- [anon_sym_BQUOTE] = ACTIONS(162),
- [anon_sym_static] = ACTIONS(2435),
- [anon_sym_readonly] = ACTIONS(2435),
- [anon_sym_get] = ACTIONS(2435),
- [anon_sym_set] = ACTIONS(2435),
- [anon_sym_declare] = ACTIONS(2435),
- [anon_sym_public] = ACTIONS(2435),
- [anon_sym_private] = ACTIONS(2435),
- [anon_sym_protected] = ACTIONS(2435),
- [anon_sym_override] = ACTIONS(2435),
- [anon_sym_module] = ACTIONS(2435),
- [anon_sym_any] = ACTIONS(2435),
- [anon_sym_number] = ACTIONS(2435),
- [anon_sym_boolean] = ACTIONS(2435),
- [anon_sym_string] = ACTIONS(2435),
- [anon_sym_symbol] = ACTIONS(2435),
- [anon_sym_object] = ACTIONS(2435),
- [anon_sym_satisfies] = ACTIONS(122),
- [sym__ternary_qmark] = ACTIONS(162),
- [sym_html_comment] = ACTIONS(5),
- },
- [708] = {
- [sym__call_signature] = STATE(5772),
- [sym_formal_parameters] = STATE(3742),
- [sym_type_parameters] = STATE(5349),
- [sym_identifier] = ACTIONS(2397),
- [anon_sym_export] = ACTIONS(2399),
- [anon_sym_STAR] = ACTIONS(122),
- [anon_sym_type] = ACTIONS(2399),
- [anon_sym_EQ] = ACTIONS(841),
- [anon_sym_as] = ACTIONS(122),
- [anon_sym_namespace] = ACTIONS(2399),
- [anon_sym_let] = ACTIONS(2399),
- [anon_sym_BANG] = ACTIONS(122),
- [anon_sym_LPAREN] = ACTIONS(2373),
- [anon_sym_in] = ACTIONS(122),
- [anon_sym_LBRACK] = ACTIONS(162),
- [anon_sym_RBRACK] = ACTIONS(162),
- [anon_sym_GT] = ACTIONS(122),
- [anon_sym_DOT] = ACTIONS(162),
- [anon_sym_async] = ACTIONS(2399),
- [anon_sym_function] = ACTIONS(2376),
- [anon_sym_EQ_GT] = ACTIONS(904),
- [anon_sym_QMARK_DOT] = ACTIONS(162),
- [anon_sym_new] = ACTIONS(2399),
- [anon_sym_PLUS_EQ] = ACTIONS(168),
- [anon_sym_DASH_EQ] = ACTIONS(168),
- [anon_sym_STAR_EQ] = ACTIONS(168),
- [anon_sym_SLASH_EQ] = ACTIONS(168),
- [anon_sym_PERCENT_EQ] = ACTIONS(168),
- [anon_sym_CARET_EQ] = ACTIONS(168),
- [anon_sym_AMP_EQ] = ACTIONS(168),
- [anon_sym_PIPE_EQ] = ACTIONS(168),
- [anon_sym_GT_GT_EQ] = ACTIONS(168),
- [anon_sym_GT_GT_GT_EQ] = ACTIONS(168),
- [anon_sym_LT_LT_EQ] = ACTIONS(168),
- [anon_sym_STAR_STAR_EQ] = ACTIONS(168),
- [anon_sym_AMP_AMP_EQ] = ACTIONS(168),
- [anon_sym_PIPE_PIPE_EQ] = ACTIONS(168),
- [anon_sym_QMARK_QMARK_EQ] = ACTIONS(168),
- [anon_sym_AMP_AMP] = ACTIONS(122),
- [anon_sym_PIPE_PIPE] = ACTIONS(122),
- [anon_sym_GT_GT] = ACTIONS(122),
- [anon_sym_GT_GT_GT] = ACTIONS(122),
- [anon_sym_LT_LT] = ACTIONS(122),
- [anon_sym_AMP] = ACTIONS(122),
- [anon_sym_CARET] = ACTIONS(122),
- [anon_sym_PIPE] = ACTIONS(122),
- [anon_sym_PLUS] = ACTIONS(122),
- [anon_sym_DASH] = ACTIONS(122),
- [anon_sym_SLASH] = ACTIONS(122),
- [anon_sym_PERCENT] = ACTIONS(122),
- [anon_sym_STAR_STAR] = ACTIONS(122),
- [anon_sym_LT] = ACTIONS(2378),
- [anon_sym_LT_EQ] = ACTIONS(162),
- [anon_sym_EQ_EQ] = ACTIONS(122),
- [anon_sym_EQ_EQ_EQ] = ACTIONS(162),
- [anon_sym_BANG_EQ] = ACTIONS(122),
- [anon_sym_BANG_EQ_EQ] = ACTIONS(162),
- [anon_sym_GT_EQ] = ACTIONS(162),
- [anon_sym_QMARK_QMARK] = ACTIONS(122),
- [anon_sym_instanceof] = ACTIONS(122),
- [anon_sym_PLUS_PLUS] = ACTIONS(162),
- [anon_sym_DASH_DASH] = ACTIONS(162),
- [sym_comment] = ACTIONS(5),
- [anon_sym_BQUOTE] = ACTIONS(162),
- [anon_sym_static] = ACTIONS(2399),
- [anon_sym_readonly] = ACTIONS(2399),
- [anon_sym_get] = ACTIONS(2399),
- [anon_sym_set] = ACTIONS(2399),
- [anon_sym_declare] = ACTIONS(2399),
- [anon_sym_public] = ACTIONS(2399),
- [anon_sym_private] = ACTIONS(2399),
- [anon_sym_protected] = ACTIONS(2399),
- [anon_sym_override] = ACTIONS(2399),
- [anon_sym_module] = ACTIONS(2399),
- [anon_sym_any] = ACTIONS(2399),
- [anon_sym_number] = ACTIONS(2399),
- [anon_sym_boolean] = ACTIONS(2399),
- [anon_sym_string] = ACTIONS(2399),
- [anon_sym_symbol] = ACTIONS(2399),
- [anon_sym_object] = ACTIONS(2399),
- [anon_sym_satisfies] = ACTIONS(122),
- [sym__ternary_qmark] = ACTIONS(162),
- [sym_html_comment] = ACTIONS(5),
- },
- [709] = {
- [sym_statement_block] = STATE(862),
- [ts_builtin_sym_end] = ACTIONS(1712),
- [sym_identifier] = ACTIONS(1714),
- [anon_sym_export] = ACTIONS(1714),
- [anon_sym_default] = ACTIONS(1714),
- [anon_sym_type] = ACTIONS(1714),
- [anon_sym_namespace] = ACTIONS(1714),
- [anon_sym_LBRACE] = ACTIONS(2437),
- [anon_sym_RBRACE] = ACTIONS(1712),
- [anon_sym_typeof] = ACTIONS(1714),
- [anon_sym_import] = ACTIONS(1714),
- [anon_sym_with] = ACTIONS(1714),
- [anon_sym_var] = ACTIONS(1714),
- [anon_sym_let] = ACTIONS(1714),
- [anon_sym_const] = ACTIONS(1714),
- [anon_sym_BANG] = ACTIONS(1712),
- [anon_sym_else] = ACTIONS(1714),
- [anon_sym_if] = ACTIONS(1714),
- [anon_sym_switch] = ACTIONS(1714),
- [anon_sym_for] = ACTIONS(1714),
- [anon_sym_LPAREN] = ACTIONS(1712),
- [anon_sym_await] = ACTIONS(1714),
- [anon_sym_while] = ACTIONS(1714),
- [anon_sym_do] = ACTIONS(1714),
- [anon_sym_try] = ACTIONS(1714),
- [anon_sym_break] = ACTIONS(1714),
- [anon_sym_continue] = ACTIONS(1714),
- [anon_sym_debugger] = ACTIONS(1714),
- [anon_sym_return] = ACTIONS(1714),
- [anon_sym_throw] = ACTIONS(1714),
- [anon_sym_SEMI] = ACTIONS(1712),
- [anon_sym_case] = ACTIONS(1714),
- [anon_sym_yield] = ACTIONS(1714),
- [anon_sym_LBRACK] = ACTIONS(1712),
- [sym_glimmer_opening_tag] = ACTIONS(1712),
- [anon_sym_DOT] = ACTIONS(2439),
- [anon_sym_DQUOTE] = ACTIONS(1712),
- [anon_sym_SQUOTE] = ACTIONS(1712),
- [anon_sym_class] = ACTIONS(1714),
- [anon_sym_async] = ACTIONS(1714),
- [anon_sym_function] = ACTIONS(1714),
- [anon_sym_new] = ACTIONS(1714),
- [anon_sym_using] = ACTIONS(1714),
- [anon_sym_PLUS] = ACTIONS(1714),
- [anon_sym_DASH] = ACTIONS(1714),
- [anon_sym_SLASH] = ACTIONS(1714),
- [anon_sym_LT] = ACTIONS(1714),
- [anon_sym_TILDE] = ACTIONS(1712),
- [anon_sym_void] = ACTIONS(1714),
- [anon_sym_delete] = ACTIONS(1714),
- [anon_sym_PLUS_PLUS] = ACTIONS(1712),
- [anon_sym_DASH_DASH] = ACTIONS(1712),
- [sym_comment] = ACTIONS(5),
- [anon_sym_BQUOTE] = ACTIONS(1712),
- [sym_number] = ACTIONS(1712),
- [sym_private_property_identifier] = ACTIONS(1712),
- [sym_this] = ACTIONS(1714),
- [sym_super] = ACTIONS(1714),
- [sym_true] = ACTIONS(1714),
- [sym_false] = ACTIONS(1714),
- [sym_null] = ACTIONS(1714),
- [sym_undefined] = ACTIONS(1714),
- [anon_sym_AT] = ACTIONS(1712),
- [anon_sym_static] = ACTIONS(1714),
- [anon_sym_readonly] = ACTIONS(1714),
- [anon_sym_get] = ACTIONS(1714),
- [anon_sym_set] = ACTIONS(1714),
- [anon_sym_declare] = ACTIONS(1714),
- [anon_sym_public] = ACTIONS(1714),
- [anon_sym_private] = ACTIONS(1714),
- [anon_sym_protected] = ACTIONS(1714),
- [anon_sym_override] = ACTIONS(1714),
- [anon_sym_module] = ACTIONS(1714),
- [anon_sym_any] = ACTIONS(1714),
- [anon_sym_number] = ACTIONS(1714),
- [anon_sym_boolean] = ACTIONS(1714),
- [anon_sym_string] = ACTIONS(1714),
- [anon_sym_symbol] = ACTIONS(1714),
- [anon_sym_object] = ACTIONS(1714),
- [anon_sym_abstract] = ACTIONS(1714),
- [anon_sym_interface] = ACTIONS(1714),
- [anon_sym_enum] = ACTIONS(1714),
- [sym_html_comment] = ACTIONS(5),
- },
- [710] = {
- [sym__call_signature] = STATE(5772),
- [sym_formal_parameters] = STATE(3742),
- [sym_type_parameters] = STATE(5349),
- [sym_identifier] = ACTIONS(2397),
- [anon_sym_export] = ACTIONS(2399),
- [anon_sym_STAR] = ACTIONS(122),
- [anon_sym_type] = ACTIONS(2399),
- [anon_sym_EQ] = ACTIONS(926),
- [anon_sym_as] = ACTIONS(122),
- [anon_sym_namespace] = ACTIONS(2399),
- [anon_sym_let] = ACTIONS(2399),
- [anon_sym_BANG] = ACTIONS(122),
- [anon_sym_LPAREN] = ACTIONS(2373),
- [anon_sym_in] = ACTIONS(122),
- [anon_sym_LBRACK] = ACTIONS(162),
- [anon_sym_RBRACK] = ACTIONS(162),
- [anon_sym_GT] = ACTIONS(122),
- [anon_sym_DOT] = ACTIONS(162),
- [anon_sym_async] = ACTIONS(2399),
- [anon_sym_function] = ACTIONS(2376),
- [anon_sym_EQ_GT] = ACTIONS(904),
- [anon_sym_QMARK_DOT] = ACTIONS(162),
- [anon_sym_new] = ACTIONS(2399),
- [anon_sym_PLUS_EQ] = ACTIONS(168),
- [anon_sym_DASH_EQ] = ACTIONS(168),
- [anon_sym_STAR_EQ] = ACTIONS(168),
- [anon_sym_SLASH_EQ] = ACTIONS(168),
- [anon_sym_PERCENT_EQ] = ACTIONS(168),
- [anon_sym_CARET_EQ] = ACTIONS(168),
- [anon_sym_AMP_EQ] = ACTIONS(168),
- [anon_sym_PIPE_EQ] = ACTIONS(168),
- [anon_sym_GT_GT_EQ] = ACTIONS(168),
- [anon_sym_GT_GT_GT_EQ] = ACTIONS(168),
- [anon_sym_LT_LT_EQ] = ACTIONS(168),
- [anon_sym_STAR_STAR_EQ] = ACTIONS(168),
- [anon_sym_AMP_AMP_EQ] = ACTIONS(168),
- [anon_sym_PIPE_PIPE_EQ] = ACTIONS(168),
- [anon_sym_QMARK_QMARK_EQ] = ACTIONS(168),
- [anon_sym_AMP_AMP] = ACTIONS(122),
- [anon_sym_PIPE_PIPE] = ACTIONS(122),
- [anon_sym_GT_GT] = ACTIONS(122),
- [anon_sym_GT_GT_GT] = ACTIONS(122),
- [anon_sym_LT_LT] = ACTIONS(122),
- [anon_sym_AMP] = ACTIONS(122),
- [anon_sym_CARET] = ACTIONS(122),
- [anon_sym_PIPE] = ACTIONS(122),
- [anon_sym_PLUS] = ACTIONS(122),
- [anon_sym_DASH] = ACTIONS(122),
- [anon_sym_SLASH] = ACTIONS(122),
- [anon_sym_PERCENT] = ACTIONS(122),
- [anon_sym_STAR_STAR] = ACTIONS(122),
- [anon_sym_LT] = ACTIONS(2378),
- [anon_sym_LT_EQ] = ACTIONS(162),
- [anon_sym_EQ_EQ] = ACTIONS(122),
- [anon_sym_EQ_EQ_EQ] = ACTIONS(162),
- [anon_sym_BANG_EQ] = ACTIONS(122),
- [anon_sym_BANG_EQ_EQ] = ACTIONS(162),
- [anon_sym_GT_EQ] = ACTIONS(162),
- [anon_sym_QMARK_QMARK] = ACTIONS(122),
- [anon_sym_instanceof] = ACTIONS(122),
- [anon_sym_PLUS_PLUS] = ACTIONS(162),
- [anon_sym_DASH_DASH] = ACTIONS(162),
- [sym_comment] = ACTIONS(5),
- [anon_sym_BQUOTE] = ACTIONS(162),
- [anon_sym_static] = ACTIONS(2399),
- [anon_sym_readonly] = ACTIONS(2399),
- [anon_sym_get] = ACTIONS(2399),
- [anon_sym_set] = ACTIONS(2399),
- [anon_sym_declare] = ACTIONS(2399),
- [anon_sym_public] = ACTIONS(2399),
- [anon_sym_private] = ACTIONS(2399),
- [anon_sym_protected] = ACTIONS(2399),
- [anon_sym_override] = ACTIONS(2399),
- [anon_sym_module] = ACTIONS(2399),
- [anon_sym_any] = ACTIONS(2399),
- [anon_sym_number] = ACTIONS(2399),
- [anon_sym_boolean] = ACTIONS(2399),
- [anon_sym_string] = ACTIONS(2399),
- [anon_sym_symbol] = ACTIONS(2399),
- [anon_sym_object] = ACTIONS(2399),
- [anon_sym_satisfies] = ACTIONS(122),
- [sym__ternary_qmark] = ACTIONS(162),
- [sym_html_comment] = ACTIONS(5),
- },
- [711] = {
- [sym_statement_block] = STATE(862),
- [ts_builtin_sym_end] = ACTIONS(1712),
- [sym_identifier] = ACTIONS(1714),
- [anon_sym_export] = ACTIONS(1714),
- [anon_sym_default] = ACTIONS(1714),
- [anon_sym_type] = ACTIONS(1714),
- [anon_sym_namespace] = ACTIONS(1714),
- [anon_sym_LBRACE] = ACTIONS(2437),
- [anon_sym_RBRACE] = ACTIONS(1712),
- [anon_sym_typeof] = ACTIONS(1714),
- [anon_sym_import] = ACTIONS(1714),
- [anon_sym_with] = ACTIONS(1714),
- [anon_sym_var] = ACTIONS(1714),
- [anon_sym_let] = ACTIONS(1714),
- [anon_sym_const] = ACTIONS(1714),
- [anon_sym_BANG] = ACTIONS(1712),
- [anon_sym_else] = ACTIONS(1714),
- [anon_sym_if] = ACTIONS(1714),
- [anon_sym_switch] = ACTIONS(1714),
- [anon_sym_for] = ACTIONS(1714),
- [anon_sym_LPAREN] = ACTIONS(1712),
- [anon_sym_await] = ACTIONS(1714),
- [anon_sym_while] = ACTIONS(1714),
- [anon_sym_do] = ACTIONS(1714),
- [anon_sym_try] = ACTIONS(1714),
- [anon_sym_break] = ACTIONS(1714),
- [anon_sym_continue] = ACTIONS(1714),
- [anon_sym_debugger] = ACTIONS(1714),
- [anon_sym_return] = ACTIONS(1714),
- [anon_sym_throw] = ACTIONS(1714),
- [anon_sym_SEMI] = ACTIONS(1712),
- [anon_sym_case] = ACTIONS(1714),
- [anon_sym_yield] = ACTIONS(1714),
- [anon_sym_LBRACK] = ACTIONS(1712),
- [sym_glimmer_opening_tag] = ACTIONS(1712),
- [anon_sym_DOT] = ACTIONS(2441),
- [anon_sym_DQUOTE] = ACTIONS(1712),
- [anon_sym_SQUOTE] = ACTIONS(1712),
- [anon_sym_class] = ACTIONS(1714),
- [anon_sym_async] = ACTIONS(1714),
- [anon_sym_function] = ACTIONS(1714),
- [anon_sym_new] = ACTIONS(1714),
- [anon_sym_using] = ACTIONS(1714),
- [anon_sym_PLUS] = ACTIONS(1714),
- [anon_sym_DASH] = ACTIONS(1714),
- [anon_sym_SLASH] = ACTIONS(1714),
- [anon_sym_LT] = ACTIONS(1714),
- [anon_sym_TILDE] = ACTIONS(1712),
- [anon_sym_void] = ACTIONS(1714),
- [anon_sym_delete] = ACTIONS(1714),
- [anon_sym_PLUS_PLUS] = ACTIONS(1712),
- [anon_sym_DASH_DASH] = ACTIONS(1712),
- [sym_comment] = ACTIONS(5),
- [anon_sym_BQUOTE] = ACTIONS(1712),
- [sym_number] = ACTIONS(1712),
- [sym_private_property_identifier] = ACTIONS(1712),
- [sym_this] = ACTIONS(1714),
- [sym_super] = ACTIONS(1714),
- [sym_true] = ACTIONS(1714),
- [sym_false] = ACTIONS(1714),
- [sym_null] = ACTIONS(1714),
- [sym_undefined] = ACTIONS(1714),
- [anon_sym_AT] = ACTIONS(1712),
- [anon_sym_static] = ACTIONS(1714),
- [anon_sym_readonly] = ACTIONS(1714),
- [anon_sym_get] = ACTIONS(1714),
- [anon_sym_set] = ACTIONS(1714),
- [anon_sym_declare] = ACTIONS(1714),
- [anon_sym_public] = ACTIONS(1714),
- [anon_sym_private] = ACTIONS(1714),
- [anon_sym_protected] = ACTIONS(1714),
- [anon_sym_override] = ACTIONS(1714),
- [anon_sym_module] = ACTIONS(1714),
- [anon_sym_any] = ACTIONS(1714),
- [anon_sym_number] = ACTIONS(1714),
- [anon_sym_boolean] = ACTIONS(1714),
- [anon_sym_string] = ACTIONS(1714),
- [anon_sym_symbol] = ACTIONS(1714),
- [anon_sym_object] = ACTIONS(1714),
- [anon_sym_abstract] = ACTIONS(1714),
- [anon_sym_interface] = ACTIONS(1714),
- [anon_sym_enum] = ACTIONS(1714),
- [sym_html_comment] = ACTIONS(5),
- },
- [712] = {
- [sym__call_signature] = STATE(5912),
- [sym_formal_parameters] = STATE(3742),
- [sym_type_parameters] = STATE(5349),
- [sym_identifier] = ACTIONS(2433),
- [anon_sym_export] = ACTIONS(2435),
- [anon_sym_STAR] = ACTIONS(122),
- [anon_sym_type] = ACTIONS(2435),
- [anon_sym_EQ] = ACTIONS(841),
- [anon_sym_as] = ACTIONS(122),
- [anon_sym_namespace] = ACTIONS(2435),
- [anon_sym_let] = ACTIONS(2435),
- [anon_sym_BANG] = ACTIONS(122),
- [anon_sym_LPAREN] = ACTIONS(2373),
- [anon_sym_in] = ACTIONS(122),
- [anon_sym_of] = ACTIONS(122),
- [anon_sym_LBRACK] = ACTIONS(162),
- [anon_sym_GT] = ACTIONS(122),
- [anon_sym_DOT] = ACTIONS(162),
- [anon_sym_async] = ACTIONS(2435),
- [anon_sym_function] = ACTIONS(2376),
- [anon_sym_EQ_GT] = ACTIONS(966),
- [anon_sym_QMARK_DOT] = ACTIONS(162),
- [anon_sym_new] = ACTIONS(2435),
- [anon_sym_PLUS_EQ] = ACTIONS(168),
- [anon_sym_DASH_EQ] = ACTIONS(168),
- [anon_sym_STAR_EQ] = ACTIONS(168),
- [anon_sym_SLASH_EQ] = ACTIONS(168),
- [anon_sym_PERCENT_EQ] = ACTIONS(168),
- [anon_sym_CARET_EQ] = ACTIONS(168),
- [anon_sym_AMP_EQ] = ACTIONS(168),
- [anon_sym_PIPE_EQ] = ACTIONS(168),
- [anon_sym_GT_GT_EQ] = ACTIONS(168),
- [anon_sym_GT_GT_GT_EQ] = ACTIONS(168),
- [anon_sym_LT_LT_EQ] = ACTIONS(168),
- [anon_sym_STAR_STAR_EQ] = ACTIONS(168),
- [anon_sym_AMP_AMP_EQ] = ACTIONS(168),
- [anon_sym_PIPE_PIPE_EQ] = ACTIONS(168),
- [anon_sym_QMARK_QMARK_EQ] = ACTIONS(168),
- [anon_sym_AMP_AMP] = ACTIONS(122),
- [anon_sym_PIPE_PIPE] = ACTIONS(122),
- [anon_sym_GT_GT] = ACTIONS(122),
- [anon_sym_GT_GT_GT] = ACTIONS(122),
- [anon_sym_LT_LT] = ACTIONS(122),
- [anon_sym_AMP] = ACTIONS(122),
- [anon_sym_CARET] = ACTIONS(122),
- [anon_sym_PIPE] = ACTIONS(122),
- [anon_sym_PLUS] = ACTIONS(122),
- [anon_sym_DASH] = ACTIONS(122),
- [anon_sym_SLASH] = ACTIONS(122),
- [anon_sym_PERCENT] = ACTIONS(122),
- [anon_sym_STAR_STAR] = ACTIONS(122),
- [anon_sym_LT] = ACTIONS(2378),
- [anon_sym_LT_EQ] = ACTIONS(162),
- [anon_sym_EQ_EQ] = ACTIONS(122),
- [anon_sym_EQ_EQ_EQ] = ACTIONS(162),
- [anon_sym_BANG_EQ] = ACTIONS(122),
- [anon_sym_BANG_EQ_EQ] = ACTIONS(162),
- [anon_sym_GT_EQ] = ACTIONS(162),
- [anon_sym_QMARK_QMARK] = ACTIONS(122),
- [anon_sym_instanceof] = ACTIONS(122),
- [anon_sym_PLUS_PLUS] = ACTIONS(162),
- [anon_sym_DASH_DASH] = ACTIONS(162),
- [sym_comment] = ACTIONS(5),
- [anon_sym_BQUOTE] = ACTIONS(162),
- [anon_sym_static] = ACTIONS(2435),
- [anon_sym_readonly] = ACTIONS(2435),
- [anon_sym_get] = ACTIONS(2435),
- [anon_sym_set] = ACTIONS(2435),
- [anon_sym_declare] = ACTIONS(2435),
- [anon_sym_public] = ACTIONS(2435),
- [anon_sym_private] = ACTIONS(2435),
- [anon_sym_protected] = ACTIONS(2435),
- [anon_sym_override] = ACTIONS(2435),
- [anon_sym_module] = ACTIONS(2435),
- [anon_sym_any] = ACTIONS(2435),
- [anon_sym_number] = ACTIONS(2435),
- [anon_sym_boolean] = ACTIONS(2435),
- [anon_sym_string] = ACTIONS(2435),
- [anon_sym_symbol] = ACTIONS(2435),
- [anon_sym_object] = ACTIONS(2435),
- [anon_sym_satisfies] = ACTIONS(122),
- [sym__ternary_qmark] = ACTIONS(162),
- [sym_html_comment] = ACTIONS(5),
- },
- [713] = {
- [sym__call_signature] = STATE(5738),
- [sym_formal_parameters] = STATE(3742),
- [sym_type_parameters] = STATE(5349),
- [sym_identifier] = ACTIONS(2369),
- [anon_sym_export] = ACTIONS(2371),
- [anon_sym_STAR] = ACTIONS(122),
- [anon_sym_type] = ACTIONS(2371),
- [anon_sym_EQ] = ACTIONS(841),
- [anon_sym_as] = ACTIONS(122),
- [anon_sym_namespace] = ACTIONS(2371),
- [anon_sym_let] = ACTIONS(2371),
- [anon_sym_BANG] = ACTIONS(122),
- [anon_sym_LPAREN] = ACTIONS(2373),
- [anon_sym_in] = ACTIONS(122),
- [anon_sym_COLON] = ACTIONS(847),
- [anon_sym_LBRACK] = ACTIONS(162),
- [anon_sym_GT] = ACTIONS(122),
- [anon_sym_DOT] = ACTIONS(162),
- [anon_sym_async] = ACTIONS(2371),
- [anon_sym_function] = ACTIONS(2376),
- [anon_sym_EQ_GT] = ACTIONS(229),
- [anon_sym_QMARK_DOT] = ACTIONS(162),
- [anon_sym_new] = ACTIONS(2371),
- [anon_sym_PLUS_EQ] = ACTIONS(168),
- [anon_sym_DASH_EQ] = ACTIONS(168),
- [anon_sym_STAR_EQ] = ACTIONS(168),
- [anon_sym_SLASH_EQ] = ACTIONS(168),
- [anon_sym_PERCENT_EQ] = ACTIONS(168),
- [anon_sym_CARET_EQ] = ACTIONS(168),
- [anon_sym_AMP_EQ] = ACTIONS(168),
- [anon_sym_PIPE_EQ] = ACTIONS(168),
- [anon_sym_GT_GT_EQ] = ACTIONS(168),
- [anon_sym_GT_GT_GT_EQ] = ACTIONS(168),
- [anon_sym_LT_LT_EQ] = ACTIONS(168),
- [anon_sym_STAR_STAR_EQ] = ACTIONS(168),
- [anon_sym_AMP_AMP_EQ] = ACTIONS(168),
- [anon_sym_PIPE_PIPE_EQ] = ACTIONS(168),
- [anon_sym_QMARK_QMARK_EQ] = ACTIONS(168),
- [anon_sym_AMP_AMP] = ACTIONS(122),
- [anon_sym_PIPE_PIPE] = ACTIONS(122),
- [anon_sym_GT_GT] = ACTIONS(122),
- [anon_sym_GT_GT_GT] = ACTIONS(122),
- [anon_sym_LT_LT] = ACTIONS(122),
- [anon_sym_AMP] = ACTIONS(122),
- [anon_sym_CARET] = ACTIONS(122),
- [anon_sym_PIPE] = ACTIONS(122),
- [anon_sym_PLUS] = ACTIONS(122),
- [anon_sym_DASH] = ACTIONS(122),
- [anon_sym_SLASH] = ACTIONS(122),
- [anon_sym_PERCENT] = ACTIONS(122),
- [anon_sym_STAR_STAR] = ACTIONS(122),
- [anon_sym_LT] = ACTIONS(2378),
- [anon_sym_LT_EQ] = ACTIONS(162),
- [anon_sym_EQ_EQ] = ACTIONS(122),
- [anon_sym_EQ_EQ_EQ] = ACTIONS(162),
- [anon_sym_BANG_EQ] = ACTIONS(122),
- [anon_sym_BANG_EQ_EQ] = ACTIONS(162),
- [anon_sym_GT_EQ] = ACTIONS(162),
- [anon_sym_QMARK_QMARK] = ACTIONS(122),
- [anon_sym_instanceof] = ACTIONS(122),
- [anon_sym_PLUS_PLUS] = ACTIONS(162),
- [anon_sym_DASH_DASH] = ACTIONS(162),
- [sym_comment] = ACTIONS(5),
- [anon_sym_BQUOTE] = ACTIONS(162),
- [anon_sym_static] = ACTIONS(2371),
- [anon_sym_readonly] = ACTIONS(2371),
- [anon_sym_get] = ACTIONS(2371),
- [anon_sym_set] = ACTIONS(2371),
- [anon_sym_declare] = ACTIONS(2371),
- [anon_sym_public] = ACTIONS(2371),
- [anon_sym_private] = ACTIONS(2371),
- [anon_sym_protected] = ACTIONS(2371),
- [anon_sym_override] = ACTIONS(2371),
- [anon_sym_module] = ACTIONS(2371),
- [anon_sym_any] = ACTIONS(2371),
- [anon_sym_number] = ACTIONS(2371),
- [anon_sym_boolean] = ACTIONS(2371),
- [anon_sym_string] = ACTIONS(2371),
- [anon_sym_symbol] = ACTIONS(2371),
- [anon_sym_object] = ACTIONS(2371),
- [anon_sym_satisfies] = ACTIONS(122),
- [sym__ternary_qmark] = ACTIONS(162),
- [sym_html_comment] = ACTIONS(5),
- },
- [714] = {
- [sym__call_signature] = STATE(5738),
- [sym_formal_parameters] = STATE(3742),
- [sym_type_parameters] = STATE(5349),
- [sym_identifier] = ACTIONS(2369),
- [anon_sym_export] = ACTIONS(2371),
- [anon_sym_STAR] = ACTIONS(122),
- [anon_sym_type] = ACTIONS(2371),
- [anon_sym_EQ] = ACTIONS(841),
- [anon_sym_as] = ACTIONS(122),
- [anon_sym_namespace] = ACTIONS(2371),
- [anon_sym_let] = ACTIONS(2371),
- [anon_sym_BANG] = ACTIONS(122),
- [anon_sym_LPAREN] = ACTIONS(2373),
- [anon_sym_in] = ACTIONS(861),
- [anon_sym_of] = ACTIONS(864),
- [anon_sym_LBRACK] = ACTIONS(162),
- [anon_sym_GT] = ACTIONS(122),
- [anon_sym_DOT] = ACTIONS(162),
- [anon_sym_async] = ACTIONS(2371),
- [anon_sym_function] = ACTIONS(2376),
- [anon_sym_EQ_GT] = ACTIONS(229),
- [anon_sym_QMARK_DOT] = ACTIONS(162),
- [anon_sym_new] = ACTIONS(2371),
- [anon_sym_PLUS_EQ] = ACTIONS(168),
- [anon_sym_DASH_EQ] = ACTIONS(168),
- [anon_sym_STAR_EQ] = ACTIONS(168),
- [anon_sym_SLASH_EQ] = ACTIONS(168),
- [anon_sym_PERCENT_EQ] = ACTIONS(168),
- [anon_sym_CARET_EQ] = ACTIONS(168),
- [anon_sym_AMP_EQ] = ACTIONS(168),
- [anon_sym_PIPE_EQ] = ACTIONS(168),
- [anon_sym_GT_GT_EQ] = ACTIONS(168),
- [anon_sym_GT_GT_GT_EQ] = ACTIONS(168),
- [anon_sym_LT_LT_EQ] = ACTIONS(168),
- [anon_sym_STAR_STAR_EQ] = ACTIONS(168),
- [anon_sym_AMP_AMP_EQ] = ACTIONS(168),
- [anon_sym_PIPE_PIPE_EQ] = ACTIONS(168),
- [anon_sym_QMARK_QMARK_EQ] = ACTIONS(168),
- [anon_sym_AMP_AMP] = ACTIONS(122),
- [anon_sym_PIPE_PIPE] = ACTIONS(122),
- [anon_sym_GT_GT] = ACTIONS(122),
- [anon_sym_GT_GT_GT] = ACTIONS(122),
- [anon_sym_LT_LT] = ACTIONS(122),
- [anon_sym_AMP] = ACTIONS(122),
- [anon_sym_CARET] = ACTIONS(122),
- [anon_sym_PIPE] = ACTIONS(122),
- [anon_sym_PLUS] = ACTIONS(122),
- [anon_sym_DASH] = ACTIONS(122),
- [anon_sym_SLASH] = ACTIONS(122),
- [anon_sym_PERCENT] = ACTIONS(122),
- [anon_sym_STAR_STAR] = ACTIONS(122),
- [anon_sym_LT] = ACTIONS(2378),
- [anon_sym_LT_EQ] = ACTIONS(162),
- [anon_sym_EQ_EQ] = ACTIONS(122),
- [anon_sym_EQ_EQ_EQ] = ACTIONS(162),
- [anon_sym_BANG_EQ] = ACTIONS(122),
- [anon_sym_BANG_EQ_EQ] = ACTIONS(162),
- [anon_sym_GT_EQ] = ACTIONS(162),
- [anon_sym_QMARK_QMARK] = ACTIONS(122),
- [anon_sym_instanceof] = ACTIONS(122),
- [anon_sym_PLUS_PLUS] = ACTIONS(162),
- [anon_sym_DASH_DASH] = ACTIONS(162),
- [sym_comment] = ACTIONS(5),
- [anon_sym_BQUOTE] = ACTIONS(162),
- [anon_sym_static] = ACTIONS(2371),
- [anon_sym_readonly] = ACTIONS(2371),
- [anon_sym_get] = ACTIONS(2371),
- [anon_sym_set] = ACTIONS(2371),
- [anon_sym_declare] = ACTIONS(2371),
- [anon_sym_public] = ACTIONS(2371),
- [anon_sym_private] = ACTIONS(2371),
- [anon_sym_protected] = ACTIONS(2371),
- [anon_sym_override] = ACTIONS(2371),
- [anon_sym_module] = ACTIONS(2371),
- [anon_sym_any] = ACTIONS(2371),
- [anon_sym_number] = ACTIONS(2371),
- [anon_sym_boolean] = ACTIONS(2371),
- [anon_sym_string] = ACTIONS(2371),
- [anon_sym_symbol] = ACTIONS(2371),
- [anon_sym_object] = ACTIONS(2371),
- [anon_sym_satisfies] = ACTIONS(122),
- [sym__ternary_qmark] = ACTIONS(162),
- [sym_html_comment] = ACTIONS(5),
- },
- [715] = {
- [ts_builtin_sym_end] = ACTIONS(1859),
- [sym_identifier] = ACTIONS(1861),
- [anon_sym_export] = ACTIONS(1861),
- [anon_sym_default] = ACTIONS(1861),
- [anon_sym_type] = ACTIONS(1861),
- [anon_sym_namespace] = ACTIONS(1861),
- [anon_sym_LBRACE] = ACTIONS(1859),
- [anon_sym_RBRACE] = ACTIONS(1859),
- [anon_sym_typeof] = ACTIONS(1861),
- [anon_sym_import] = ACTIONS(1861),
- [anon_sym_with] = ACTIONS(1861),
- [anon_sym_var] = ACTIONS(1861),
- [anon_sym_let] = ACTIONS(1861),
- [anon_sym_const] = ACTIONS(1861),
- [anon_sym_BANG] = ACTIONS(1859),
- [anon_sym_else] = ACTIONS(1861),
- [anon_sym_if] = ACTIONS(1861),
- [anon_sym_switch] = ACTIONS(1861),
- [anon_sym_for] = ACTIONS(1861),
- [anon_sym_LPAREN] = ACTIONS(1859),
- [anon_sym_await] = ACTIONS(1861),
- [anon_sym_while] = ACTIONS(1861),
- [anon_sym_do] = ACTIONS(1861),
- [anon_sym_try] = ACTIONS(1861),
- [anon_sym_break] = ACTIONS(1861),
- [anon_sym_continue] = ACTIONS(1861),
- [anon_sym_debugger] = ACTIONS(1861),
- [anon_sym_return] = ACTIONS(1861),
- [anon_sym_throw] = ACTIONS(1861),
- [anon_sym_SEMI] = ACTIONS(1859),
- [anon_sym_case] = ACTIONS(1861),
- [anon_sym_yield] = ACTIONS(1861),
- [anon_sym_LBRACK] = ACTIONS(1859),
- [sym_glimmer_opening_tag] = ACTIONS(1859),
- [anon_sym_DQUOTE] = ACTIONS(1859),
- [anon_sym_SQUOTE] = ACTIONS(1859),
- [anon_sym_class] = ACTIONS(1861),
- [anon_sym_async] = ACTIONS(1861),
- [anon_sym_function] = ACTIONS(1861),
- [anon_sym_new] = ACTIONS(1861),
- [anon_sym_using] = ACTIONS(1861),
- [anon_sym_PLUS] = ACTIONS(1861),
- [anon_sym_DASH] = ACTIONS(1861),
- [anon_sym_SLASH] = ACTIONS(1861),
- [anon_sym_LT] = ACTIONS(1861),
- [anon_sym_TILDE] = ACTIONS(1859),
- [anon_sym_void] = ACTIONS(1861),
- [anon_sym_delete] = ACTIONS(1861),
- [anon_sym_PLUS_PLUS] = ACTIONS(1859),
- [anon_sym_DASH_DASH] = ACTIONS(1859),
- [sym_comment] = ACTIONS(5),
- [anon_sym_BQUOTE] = ACTIONS(1859),
- [sym_number] = ACTIONS(1859),
- [sym_private_property_identifier] = ACTIONS(1859),
- [sym_this] = ACTIONS(1861),
- [sym_super] = ACTIONS(1861),
- [sym_true] = ACTIONS(1861),
- [sym_false] = ACTIONS(1861),
- [sym_null] = ACTIONS(1861),
- [sym_undefined] = ACTIONS(1861),
- [anon_sym_AT] = ACTIONS(1859),
- [anon_sym_static] = ACTIONS(1861),
- [anon_sym_readonly] = ACTIONS(1861),
- [anon_sym_get] = ACTIONS(1861),
- [anon_sym_set] = ACTIONS(1861),
- [anon_sym_declare] = ACTIONS(1861),
- [anon_sym_public] = ACTIONS(1861),
- [anon_sym_private] = ACTIONS(1861),
- [anon_sym_protected] = ACTIONS(1861),
- [anon_sym_override] = ACTIONS(1861),
- [anon_sym_module] = ACTIONS(1861),
- [anon_sym_any] = ACTIONS(1861),
- [anon_sym_number] = ACTIONS(1861),
- [anon_sym_boolean] = ACTIONS(1861),
- [anon_sym_string] = ACTIONS(1861),
- [anon_sym_symbol] = ACTIONS(1861),
- [anon_sym_object] = ACTIONS(1861),
- [anon_sym_abstract] = ACTIONS(1861),
- [anon_sym_interface] = ACTIONS(1861),
- [anon_sym_enum] = ACTIONS(1861),
- [sym__automatic_semicolon] = ACTIONS(1867),
- [sym_html_comment] = ACTIONS(5),
- },
- [716] = {
- [ts_builtin_sym_end] = ACTIONS(1875),
- [sym_identifier] = ACTIONS(1877),
- [anon_sym_export] = ACTIONS(1877),
- [anon_sym_default] = ACTIONS(1877),
- [anon_sym_type] = ACTIONS(1877),
- [anon_sym_namespace] = ACTIONS(1877),
- [anon_sym_LBRACE] = ACTIONS(1875),
- [anon_sym_RBRACE] = ACTIONS(1875),
- [anon_sym_typeof] = ACTIONS(1877),
- [anon_sym_import] = ACTIONS(1877),
- [anon_sym_with] = ACTIONS(1877),
- [anon_sym_var] = ACTIONS(1877),
- [anon_sym_let] = ACTIONS(1877),
- [anon_sym_const] = ACTIONS(1877),
- [anon_sym_BANG] = ACTIONS(1875),
- [anon_sym_else] = ACTIONS(1877),
- [anon_sym_if] = ACTIONS(1877),
- [anon_sym_switch] = ACTIONS(1877),
- [anon_sym_for] = ACTIONS(1877),
- [anon_sym_LPAREN] = ACTIONS(1875),
- [anon_sym_await] = ACTIONS(1877),
- [anon_sym_while] = ACTIONS(1877),
- [anon_sym_do] = ACTIONS(1877),
- [anon_sym_try] = ACTIONS(1877),
- [anon_sym_break] = ACTIONS(1877),
- [anon_sym_continue] = ACTIONS(1877),
- [anon_sym_debugger] = ACTIONS(1877),
- [anon_sym_return] = ACTIONS(1877),
- [anon_sym_throw] = ACTIONS(1877),
- [anon_sym_SEMI] = ACTIONS(1875),
- [anon_sym_case] = ACTIONS(1877),
- [anon_sym_yield] = ACTIONS(1877),
- [anon_sym_LBRACK] = ACTIONS(1875),
- [sym_glimmer_opening_tag] = ACTIONS(1875),
- [anon_sym_DQUOTE] = ACTIONS(1875),
- [anon_sym_SQUOTE] = ACTIONS(1875),
- [anon_sym_class] = ACTIONS(1877),
- [anon_sym_async] = ACTIONS(1877),
- [anon_sym_function] = ACTIONS(1877),
- [anon_sym_new] = ACTIONS(1877),
- [anon_sym_using] = ACTIONS(1877),
- [anon_sym_PLUS] = ACTIONS(1877),
- [anon_sym_DASH] = ACTIONS(1877),
- [anon_sym_SLASH] = ACTIONS(1877),
- [anon_sym_LT] = ACTIONS(1877),
- [anon_sym_TILDE] = ACTIONS(1875),
- [anon_sym_void] = ACTIONS(1877),
- [anon_sym_delete] = ACTIONS(1877),
- [anon_sym_PLUS_PLUS] = ACTIONS(1875),
- [anon_sym_DASH_DASH] = ACTIONS(1875),
- [sym_comment] = ACTIONS(5),
- [anon_sym_BQUOTE] = ACTIONS(1875),
- [sym_number] = ACTIONS(1875),
- [sym_private_property_identifier] = ACTIONS(1875),
- [sym_this] = ACTIONS(1877),
- [sym_super] = ACTIONS(1877),
- [sym_true] = ACTIONS(1877),
- [sym_false] = ACTIONS(1877),
- [sym_null] = ACTIONS(1877),
- [sym_undefined] = ACTIONS(1877),
- [anon_sym_AT] = ACTIONS(1875),
- [anon_sym_static] = ACTIONS(1877),
- [anon_sym_readonly] = ACTIONS(1877),
- [anon_sym_get] = ACTIONS(1877),
- [anon_sym_set] = ACTIONS(1877),
- [anon_sym_declare] = ACTIONS(1877),
- [anon_sym_public] = ACTIONS(1877),
- [anon_sym_private] = ACTIONS(1877),
- [anon_sym_protected] = ACTIONS(1877),
- [anon_sym_override] = ACTIONS(1877),
- [anon_sym_module] = ACTIONS(1877),
- [anon_sym_any] = ACTIONS(1877),
- [anon_sym_number] = ACTIONS(1877),
- [anon_sym_boolean] = ACTIONS(1877),
- [anon_sym_string] = ACTIONS(1877),
- [anon_sym_symbol] = ACTIONS(1877),
- [anon_sym_object] = ACTIONS(1877),
- [anon_sym_abstract] = ACTIONS(1877),
- [anon_sym_interface] = ACTIONS(1877),
- [anon_sym_enum] = ACTIONS(1877),
- [sym__automatic_semicolon] = ACTIONS(1883),
- [sym_html_comment] = ACTIONS(5),
- },
- [717] = {
- [ts_builtin_sym_end] = ACTIONS(1825),
- [sym_identifier] = ACTIONS(1827),
- [anon_sym_export] = ACTIONS(1827),
- [anon_sym_default] = ACTIONS(1827),
- [anon_sym_type] = ACTIONS(1827),
- [anon_sym_namespace] = ACTIONS(1827),
- [anon_sym_LBRACE] = ACTIONS(1825),
- [anon_sym_RBRACE] = ACTIONS(1825),
- [anon_sym_typeof] = ACTIONS(1827),
- [anon_sym_import] = ACTIONS(1827),
- [anon_sym_with] = ACTIONS(1827),
- [anon_sym_var] = ACTIONS(1827),
- [anon_sym_let] = ACTIONS(1827),
- [anon_sym_const] = ACTIONS(1827),
- [anon_sym_BANG] = ACTIONS(1825),
- [anon_sym_else] = ACTIONS(1827),
- [anon_sym_if] = ACTIONS(1827),
- [anon_sym_switch] = ACTIONS(1827),
- [anon_sym_for] = ACTIONS(1827),
- [anon_sym_LPAREN] = ACTIONS(1825),
- [anon_sym_await] = ACTIONS(1827),
- [anon_sym_while] = ACTIONS(1827),
- [anon_sym_do] = ACTIONS(1827),
- [anon_sym_try] = ACTIONS(1827),
- [anon_sym_break] = ACTIONS(1827),
- [anon_sym_continue] = ACTIONS(1827),
- [anon_sym_debugger] = ACTIONS(1827),
- [anon_sym_return] = ACTIONS(1827),
- [anon_sym_throw] = ACTIONS(1827),
- [anon_sym_SEMI] = ACTIONS(1825),
- [anon_sym_case] = ACTIONS(1827),
- [anon_sym_yield] = ACTIONS(1827),
- [anon_sym_LBRACK] = ACTIONS(1825),
- [sym_glimmer_opening_tag] = ACTIONS(1825),
- [anon_sym_DQUOTE] = ACTIONS(1825),
- [anon_sym_SQUOTE] = ACTIONS(1825),
- [anon_sym_class] = ACTIONS(1827),
- [anon_sym_async] = ACTIONS(1827),
- [anon_sym_function] = ACTIONS(1827),
- [anon_sym_new] = ACTIONS(1827),
- [anon_sym_using] = ACTIONS(1827),
- [anon_sym_PLUS] = ACTIONS(1827),
- [anon_sym_DASH] = ACTIONS(1827),
- [anon_sym_SLASH] = ACTIONS(1827),
- [anon_sym_LT] = ACTIONS(1827),
- [anon_sym_TILDE] = ACTIONS(1825),
- [anon_sym_void] = ACTIONS(1827),
- [anon_sym_delete] = ACTIONS(1827),
- [anon_sym_PLUS_PLUS] = ACTIONS(1825),
- [anon_sym_DASH_DASH] = ACTIONS(1825),
- [sym_comment] = ACTIONS(5),
- [anon_sym_BQUOTE] = ACTIONS(1825),
- [sym_number] = ACTIONS(1825),
- [sym_private_property_identifier] = ACTIONS(1825),
- [sym_this] = ACTIONS(1827),
- [sym_super] = ACTIONS(1827),
- [sym_true] = ACTIONS(1827),
- [sym_false] = ACTIONS(1827),
- [sym_null] = ACTIONS(1827),
- [sym_undefined] = ACTIONS(1827),
- [anon_sym_AT] = ACTIONS(1825),
- [anon_sym_static] = ACTIONS(1827),
- [anon_sym_readonly] = ACTIONS(1827),
- [anon_sym_get] = ACTIONS(1827),
- [anon_sym_set] = ACTIONS(1827),
- [anon_sym_declare] = ACTIONS(1827),
- [anon_sym_public] = ACTIONS(1827),
- [anon_sym_private] = ACTIONS(1827),
- [anon_sym_protected] = ACTIONS(1827),
- [anon_sym_override] = ACTIONS(1827),
- [anon_sym_module] = ACTIONS(1827),
- [anon_sym_any] = ACTIONS(1827),
- [anon_sym_number] = ACTIONS(1827),
- [anon_sym_boolean] = ACTIONS(1827),
- [anon_sym_string] = ACTIONS(1827),
- [anon_sym_symbol] = ACTIONS(1827),
- [anon_sym_object] = ACTIONS(1827),
- [anon_sym_abstract] = ACTIONS(1827),
- [anon_sym_interface] = ACTIONS(1827),
- [anon_sym_enum] = ACTIONS(1827),
- [sym__automatic_semicolon] = ACTIONS(1833),
- [sym_html_comment] = ACTIONS(5),
- },
- [718] = {
- [ts_builtin_sym_end] = ACTIONS(1801),
- [sym_identifier] = ACTIONS(1803),
- [anon_sym_export] = ACTIONS(1803),
- [anon_sym_default] = ACTIONS(1803),
- [anon_sym_type] = ACTIONS(1803),
- [anon_sym_namespace] = ACTIONS(1803),
- [anon_sym_LBRACE] = ACTIONS(1801),
- [anon_sym_RBRACE] = ACTIONS(1801),
- [anon_sym_typeof] = ACTIONS(1803),
- [anon_sym_import] = ACTIONS(1803),
- [anon_sym_with] = ACTIONS(1803),
- [anon_sym_var] = ACTIONS(1803),
- [anon_sym_let] = ACTIONS(1803),
- [anon_sym_const] = ACTIONS(1803),
- [anon_sym_BANG] = ACTIONS(1801),
- [anon_sym_else] = ACTIONS(1803),
- [anon_sym_if] = ACTIONS(1803),
- [anon_sym_switch] = ACTIONS(1803),
- [anon_sym_for] = ACTIONS(1803),
- [anon_sym_LPAREN] = ACTIONS(1801),
- [anon_sym_await] = ACTIONS(1803),
- [anon_sym_while] = ACTIONS(1803),
- [anon_sym_do] = ACTIONS(1803),
- [anon_sym_try] = ACTIONS(1803),
- [anon_sym_break] = ACTIONS(1803),
- [anon_sym_continue] = ACTIONS(1803),
- [anon_sym_debugger] = ACTIONS(1803),
- [anon_sym_return] = ACTIONS(1803),
- [anon_sym_throw] = ACTIONS(1803),
- [anon_sym_SEMI] = ACTIONS(1801),
- [anon_sym_case] = ACTIONS(1803),
- [anon_sym_yield] = ACTIONS(1803),
- [anon_sym_LBRACK] = ACTIONS(1801),
- [sym_glimmer_opening_tag] = ACTIONS(1801),
- [anon_sym_DQUOTE] = ACTIONS(1801),
- [anon_sym_SQUOTE] = ACTIONS(1801),
- [anon_sym_class] = ACTIONS(1803),
- [anon_sym_async] = ACTIONS(1803),
- [anon_sym_function] = ACTIONS(1803),
- [anon_sym_new] = ACTIONS(1803),
- [anon_sym_using] = ACTIONS(1803),
- [anon_sym_PLUS] = ACTIONS(1803),
- [anon_sym_DASH] = ACTIONS(1803),
- [anon_sym_SLASH] = ACTIONS(1803),
- [anon_sym_LT] = ACTIONS(1803),
- [anon_sym_TILDE] = ACTIONS(1801),
- [anon_sym_void] = ACTIONS(1803),
- [anon_sym_delete] = ACTIONS(1803),
- [anon_sym_PLUS_PLUS] = ACTIONS(1801),
- [anon_sym_DASH_DASH] = ACTIONS(1801),
- [sym_comment] = ACTIONS(5),
- [anon_sym_BQUOTE] = ACTIONS(1801),
- [sym_number] = ACTIONS(1801),
- [sym_private_property_identifier] = ACTIONS(1801),
- [sym_this] = ACTIONS(1803),
- [sym_super] = ACTIONS(1803),
- [sym_true] = ACTIONS(1803),
- [sym_false] = ACTIONS(1803),
- [sym_null] = ACTIONS(1803),
- [sym_undefined] = ACTIONS(1803),
- [anon_sym_AT] = ACTIONS(1801),
- [anon_sym_static] = ACTIONS(1803),
- [anon_sym_readonly] = ACTIONS(1803),
- [anon_sym_get] = ACTIONS(1803),
- [anon_sym_set] = ACTIONS(1803),
- [anon_sym_declare] = ACTIONS(1803),
- [anon_sym_public] = ACTIONS(1803),
- [anon_sym_private] = ACTIONS(1803),
- [anon_sym_protected] = ACTIONS(1803),
- [anon_sym_override] = ACTIONS(1803),
- [anon_sym_module] = ACTIONS(1803),
- [anon_sym_any] = ACTIONS(1803),
- [anon_sym_number] = ACTIONS(1803),
- [anon_sym_boolean] = ACTIONS(1803),
- [anon_sym_string] = ACTIONS(1803),
- [anon_sym_symbol] = ACTIONS(1803),
- [anon_sym_object] = ACTIONS(1803),
- [anon_sym_abstract] = ACTIONS(1803),
- [anon_sym_interface] = ACTIONS(1803),
- [anon_sym_enum] = ACTIONS(1803),
- [sym__automatic_semicolon] = ACTIONS(1809),
- [sym_html_comment] = ACTIONS(5),
- },
- [719] = {
- [ts_builtin_sym_end] = ACTIONS(1734),
- [sym_identifier] = ACTIONS(1736),
- [anon_sym_export] = ACTIONS(1736),
- [anon_sym_default] = ACTIONS(1736),
- [anon_sym_type] = ACTIONS(1736),
- [anon_sym_namespace] = ACTIONS(1736),
- [anon_sym_LBRACE] = ACTIONS(1734),
- [anon_sym_RBRACE] = ACTIONS(1734),
- [anon_sym_typeof] = ACTIONS(1736),
- [anon_sym_import] = ACTIONS(1736),
- [anon_sym_with] = ACTIONS(1736),
- [anon_sym_var] = ACTIONS(1736),
- [anon_sym_let] = ACTIONS(1736),
- [anon_sym_const] = ACTIONS(1736),
- [anon_sym_BANG] = ACTIONS(1734),
- [anon_sym_else] = ACTIONS(1736),
- [anon_sym_if] = ACTIONS(1736),
- [anon_sym_switch] = ACTIONS(1736),
- [anon_sym_for] = ACTIONS(1736),
- [anon_sym_LPAREN] = ACTIONS(1734),
- [anon_sym_await] = ACTIONS(1736),
- [anon_sym_while] = ACTIONS(1736),
- [anon_sym_do] = ACTIONS(1736),
- [anon_sym_try] = ACTIONS(1736),
- [anon_sym_break] = ACTIONS(1736),
- [anon_sym_continue] = ACTIONS(1736),
- [anon_sym_debugger] = ACTIONS(1736),
- [anon_sym_return] = ACTIONS(1736),
- [anon_sym_throw] = ACTIONS(1736),
- [anon_sym_SEMI] = ACTIONS(1734),
- [anon_sym_case] = ACTIONS(1736),
- [anon_sym_yield] = ACTIONS(1736),
- [anon_sym_LBRACK] = ACTIONS(1734),
- [sym_glimmer_opening_tag] = ACTIONS(1734),
- [anon_sym_DQUOTE] = ACTIONS(1734),
- [anon_sym_SQUOTE] = ACTIONS(1734),
- [anon_sym_class] = ACTIONS(1736),
- [anon_sym_async] = ACTIONS(1736),
- [anon_sym_function] = ACTIONS(1736),
- [anon_sym_new] = ACTIONS(1736),
- [anon_sym_using] = ACTIONS(1736),
- [anon_sym_PLUS] = ACTIONS(1736),
- [anon_sym_DASH] = ACTIONS(1736),
- [anon_sym_SLASH] = ACTIONS(1736),
- [anon_sym_LT] = ACTIONS(1736),
- [anon_sym_TILDE] = ACTIONS(1734),
- [anon_sym_void] = ACTIONS(1736),
- [anon_sym_delete] = ACTIONS(1736),
- [anon_sym_PLUS_PLUS] = ACTIONS(1734),
- [anon_sym_DASH_DASH] = ACTIONS(1734),
- [sym_comment] = ACTIONS(5),
- [anon_sym_BQUOTE] = ACTIONS(1734),
- [sym_number] = ACTIONS(1734),
- [sym_private_property_identifier] = ACTIONS(1734),
- [sym_this] = ACTIONS(1736),
- [sym_super] = ACTIONS(1736),
- [sym_true] = ACTIONS(1736),
- [sym_false] = ACTIONS(1736),
- [sym_null] = ACTIONS(1736),
- [sym_undefined] = ACTIONS(1736),
- [anon_sym_AT] = ACTIONS(1734),
- [anon_sym_static] = ACTIONS(1736),
- [anon_sym_readonly] = ACTIONS(1736),
- [anon_sym_get] = ACTIONS(1736),
- [anon_sym_set] = ACTIONS(1736),
- [anon_sym_declare] = ACTIONS(1736),
- [anon_sym_public] = ACTIONS(1736),
- [anon_sym_private] = ACTIONS(1736),
- [anon_sym_protected] = ACTIONS(1736),
- [anon_sym_override] = ACTIONS(1736),
- [anon_sym_module] = ACTIONS(1736),
- [anon_sym_any] = ACTIONS(1736),
- [anon_sym_number] = ACTIONS(1736),
- [anon_sym_boolean] = ACTIONS(1736),
- [anon_sym_string] = ACTIONS(1736),
- [anon_sym_symbol] = ACTIONS(1736),
- [anon_sym_object] = ACTIONS(1736),
- [anon_sym_abstract] = ACTIONS(1736),
- [anon_sym_interface] = ACTIONS(1736),
- [anon_sym_enum] = ACTIONS(1736),
- [sym__automatic_semicolon] = ACTIONS(1742),
- [sym_html_comment] = ACTIONS(5),
- },
- [720] = {
- [ts_builtin_sym_end] = ACTIONS(2443),
- [sym_identifier] = ACTIONS(2445),
- [anon_sym_export] = ACTIONS(2445),
- [anon_sym_default] = ACTIONS(2445),
- [anon_sym_type] = ACTIONS(2445),
- [anon_sym_namespace] = ACTIONS(2445),
- [anon_sym_LBRACE] = ACTIONS(2443),
- [anon_sym_RBRACE] = ACTIONS(2443),
- [anon_sym_typeof] = ACTIONS(2445),
- [anon_sym_import] = ACTIONS(2445),
- [anon_sym_with] = ACTIONS(2445),
- [anon_sym_var] = ACTIONS(2445),
- [anon_sym_let] = ACTIONS(2445),
- [anon_sym_const] = ACTIONS(2445),
- [anon_sym_BANG] = ACTIONS(2443),
- [anon_sym_else] = ACTIONS(2445),
- [anon_sym_if] = ACTIONS(2445),
- [anon_sym_switch] = ACTIONS(2445),
- [anon_sym_for] = ACTIONS(2445),
- [anon_sym_LPAREN] = ACTIONS(2443),
- [anon_sym_await] = ACTIONS(2445),
- [anon_sym_while] = ACTIONS(2445),
- [anon_sym_do] = ACTIONS(2445),
- [anon_sym_try] = ACTIONS(2445),
- [anon_sym_break] = ACTIONS(2445),
- [anon_sym_continue] = ACTIONS(2445),
- [anon_sym_debugger] = ACTIONS(2445),
- [anon_sym_return] = ACTIONS(2445),
- [anon_sym_throw] = ACTIONS(2445),
- [anon_sym_SEMI] = ACTIONS(2443),
- [anon_sym_case] = ACTIONS(2445),
- [anon_sym_yield] = ACTIONS(2445),
- [anon_sym_LBRACK] = ACTIONS(2443),
- [sym_glimmer_opening_tag] = ACTIONS(2443),
- [anon_sym_DQUOTE] = ACTIONS(2443),
- [anon_sym_SQUOTE] = ACTIONS(2443),
- [anon_sym_class] = ACTIONS(2445),
- [anon_sym_async] = ACTIONS(2445),
- [anon_sym_function] = ACTIONS(2445),
- [anon_sym_new] = ACTIONS(2445),
- [anon_sym_using] = ACTIONS(2445),
- [anon_sym_PLUS] = ACTIONS(2445),
- [anon_sym_DASH] = ACTIONS(2445),
- [anon_sym_SLASH] = ACTIONS(2445),
- [anon_sym_LT] = ACTIONS(2445),
- [anon_sym_TILDE] = ACTIONS(2443),
- [anon_sym_void] = ACTIONS(2445),
- [anon_sym_delete] = ACTIONS(2445),
- [anon_sym_PLUS_PLUS] = ACTIONS(2443),
- [anon_sym_DASH_DASH] = ACTIONS(2443),
- [sym_comment] = ACTIONS(5),
- [anon_sym_BQUOTE] = ACTIONS(2443),
- [sym_number] = ACTIONS(2443),
- [sym_private_property_identifier] = ACTIONS(2443),
- [sym_this] = ACTIONS(2445),
- [sym_super] = ACTIONS(2445),
- [sym_true] = ACTIONS(2445),
- [sym_false] = ACTIONS(2445),
- [sym_null] = ACTIONS(2445),
- [sym_undefined] = ACTIONS(2445),
- [anon_sym_AT] = ACTIONS(2443),
- [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_override] = 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_object] = ACTIONS(2445),
- [anon_sym_abstract] = ACTIONS(2445),
- [anon_sym_interface] = ACTIONS(2445),
- [anon_sym_enum] = ACTIONS(2445),
- [sym__automatic_semicolon] = ACTIONS(2443),
- [sym_html_comment] = ACTIONS(5),
- },
- [721] = {
- [ts_builtin_sym_end] = ACTIONS(2447),
- [sym_identifier] = ACTIONS(2449),
- [anon_sym_export] = ACTIONS(2449),
- [anon_sym_default] = ACTIONS(2449),
- [anon_sym_type] = ACTIONS(2449),
- [anon_sym_namespace] = ACTIONS(2449),
- [anon_sym_LBRACE] = ACTIONS(2447),
- [anon_sym_RBRACE] = ACTIONS(2447),
- [anon_sym_typeof] = ACTIONS(2449),
- [anon_sym_import] = ACTIONS(2449),
- [anon_sym_with] = ACTIONS(2449),
- [anon_sym_var] = ACTIONS(2449),
- [anon_sym_let] = ACTIONS(2449),
- [anon_sym_const] = ACTIONS(2449),
- [anon_sym_BANG] = ACTIONS(2447),
- [anon_sym_else] = ACTIONS(2449),
- [anon_sym_if] = ACTIONS(2449),
- [anon_sym_switch] = ACTIONS(2449),
- [anon_sym_for] = ACTIONS(2449),
- [anon_sym_LPAREN] = ACTIONS(2447),
- [anon_sym_await] = ACTIONS(2449),
- [anon_sym_while] = ACTIONS(2449),
- [anon_sym_do] = ACTIONS(2449),
- [anon_sym_try] = ACTIONS(2449),
- [anon_sym_break] = ACTIONS(2449),
- [anon_sym_continue] = ACTIONS(2449),
- [anon_sym_debugger] = ACTIONS(2449),
- [anon_sym_return] = ACTIONS(2449),
- [anon_sym_throw] = ACTIONS(2449),
- [anon_sym_SEMI] = ACTIONS(2447),
- [anon_sym_case] = ACTIONS(2449),
- [anon_sym_finally] = ACTIONS(2449),
- [anon_sym_yield] = ACTIONS(2449),
- [anon_sym_LBRACK] = ACTIONS(2447),
- [sym_glimmer_opening_tag] = ACTIONS(2447),
- [anon_sym_DQUOTE] = ACTIONS(2447),
- [anon_sym_SQUOTE] = ACTIONS(2447),
- [anon_sym_class] = ACTIONS(2449),
- [anon_sym_async] = ACTIONS(2449),
- [anon_sym_function] = ACTIONS(2449),
- [anon_sym_new] = ACTIONS(2449),
- [anon_sym_using] = ACTIONS(2449),
- [anon_sym_PLUS] = ACTIONS(2449),
- [anon_sym_DASH] = ACTIONS(2449),
- [anon_sym_SLASH] = ACTIONS(2449),
- [anon_sym_LT] = ACTIONS(2449),
- [anon_sym_TILDE] = ACTIONS(2447),
- [anon_sym_void] = ACTIONS(2449),
- [anon_sym_delete] = ACTIONS(2449),
- [anon_sym_PLUS_PLUS] = ACTIONS(2447),
- [anon_sym_DASH_DASH] = ACTIONS(2447),
- [sym_comment] = ACTIONS(5),
- [anon_sym_BQUOTE] = ACTIONS(2447),
- [sym_number] = ACTIONS(2447),
- [sym_private_property_identifier] = ACTIONS(2447),
- [sym_this] = ACTIONS(2449),
- [sym_super] = ACTIONS(2449),
- [sym_true] = ACTIONS(2449),
- [sym_false] = ACTIONS(2449),
- [sym_null] = ACTIONS(2449),
- [sym_undefined] = ACTIONS(2449),
- [anon_sym_AT] = ACTIONS(2447),
- [anon_sym_static] = ACTIONS(2449),
- [anon_sym_readonly] = ACTIONS(2449),
- [anon_sym_get] = ACTIONS(2449),
- [anon_sym_set] = ACTIONS(2449),
- [anon_sym_declare] = ACTIONS(2449),
- [anon_sym_public] = ACTIONS(2449),
- [anon_sym_private] = ACTIONS(2449),
- [anon_sym_protected] = ACTIONS(2449),
- [anon_sym_override] = ACTIONS(2449),
- [anon_sym_module] = ACTIONS(2449),
- [anon_sym_any] = ACTIONS(2449),
- [anon_sym_number] = ACTIONS(2449),
- [anon_sym_boolean] = ACTIONS(2449),
- [anon_sym_string] = ACTIONS(2449),
- [anon_sym_symbol] = ACTIONS(2449),
- [anon_sym_object] = ACTIONS(2449),
- [anon_sym_abstract] = ACTIONS(2449),
- [anon_sym_interface] = ACTIONS(2449),
- [anon_sym_enum] = ACTIONS(2449),
- [sym_html_comment] = ACTIONS(5),
- },
- [722] = {
- [ts_builtin_sym_end] = ACTIONS(2451),
- [sym_identifier] = ACTIONS(2453),
- [anon_sym_export] = ACTIONS(2453),
- [anon_sym_default] = ACTIONS(2453),
- [anon_sym_type] = ACTIONS(2453),
- [anon_sym_namespace] = ACTIONS(2453),
- [anon_sym_LBRACE] = ACTIONS(2451),
- [anon_sym_RBRACE] = ACTIONS(2451),
- [anon_sym_typeof] = ACTIONS(2453),
- [anon_sym_import] = ACTIONS(2453),
- [anon_sym_with] = ACTIONS(2453),
- [anon_sym_var] = ACTIONS(2453),
- [anon_sym_let] = ACTIONS(2453),
- [anon_sym_const] = ACTIONS(2453),
- [anon_sym_BANG] = ACTIONS(2451),
- [anon_sym_else] = ACTIONS(2453),
- [anon_sym_if] = ACTIONS(2453),
- [anon_sym_switch] = ACTIONS(2453),
- [anon_sym_for] = ACTIONS(2453),
- [anon_sym_LPAREN] = ACTIONS(2451),
- [anon_sym_await] = ACTIONS(2453),
- [anon_sym_while] = ACTIONS(2453),
- [anon_sym_do] = ACTIONS(2453),
- [anon_sym_try] = ACTIONS(2453),
- [anon_sym_break] = ACTIONS(2453),
- [anon_sym_continue] = ACTIONS(2453),
- [anon_sym_debugger] = ACTIONS(2453),
- [anon_sym_return] = ACTIONS(2453),
- [anon_sym_throw] = ACTIONS(2453),
- [anon_sym_SEMI] = ACTIONS(2451),
- [anon_sym_case] = ACTIONS(2453),
- [anon_sym_finally] = ACTIONS(2453),
- [anon_sym_yield] = ACTIONS(2453),
- [anon_sym_LBRACK] = ACTIONS(2451),
- [sym_glimmer_opening_tag] = ACTIONS(2451),
- [anon_sym_DQUOTE] = ACTIONS(2451),
- [anon_sym_SQUOTE] = ACTIONS(2451),
- [anon_sym_class] = ACTIONS(2453),
- [anon_sym_async] = ACTIONS(2453),
- [anon_sym_function] = ACTIONS(2453),
- [anon_sym_new] = ACTIONS(2453),
- [anon_sym_using] = ACTIONS(2453),
- [anon_sym_PLUS] = ACTIONS(2453),
- [anon_sym_DASH] = ACTIONS(2453),
- [anon_sym_SLASH] = ACTIONS(2453),
- [anon_sym_LT] = ACTIONS(2453),
- [anon_sym_TILDE] = ACTIONS(2451),
- [anon_sym_void] = ACTIONS(2453),
- [anon_sym_delete] = ACTIONS(2453),
- [anon_sym_PLUS_PLUS] = ACTIONS(2451),
- [anon_sym_DASH_DASH] = ACTIONS(2451),
- [sym_comment] = ACTIONS(5),
- [anon_sym_BQUOTE] = ACTIONS(2451),
- [sym_number] = ACTIONS(2451),
- [sym_private_property_identifier] = ACTIONS(2451),
- [sym_this] = ACTIONS(2453),
- [sym_super] = ACTIONS(2453),
- [sym_true] = ACTIONS(2453),
- [sym_false] = ACTIONS(2453),
- [sym_null] = ACTIONS(2453),
- [sym_undefined] = ACTIONS(2453),
- [anon_sym_AT] = ACTIONS(2451),
- [anon_sym_static] = ACTIONS(2453),
- [anon_sym_readonly] = ACTIONS(2453),
- [anon_sym_get] = ACTIONS(2453),
- [anon_sym_set] = ACTIONS(2453),
- [anon_sym_declare] = ACTIONS(2453),
- [anon_sym_public] = ACTIONS(2453),
- [anon_sym_private] = ACTIONS(2453),
- [anon_sym_protected] = ACTIONS(2453),
- [anon_sym_override] = ACTIONS(2453),
- [anon_sym_module] = ACTIONS(2453),
- [anon_sym_any] = ACTIONS(2453),
- [anon_sym_number] = ACTIONS(2453),
- [anon_sym_boolean] = ACTIONS(2453),
- [anon_sym_string] = ACTIONS(2453),
- [anon_sym_symbol] = ACTIONS(2453),
- [anon_sym_object] = ACTIONS(2453),
- [anon_sym_abstract] = ACTIONS(2453),
- [anon_sym_interface] = ACTIONS(2453),
- [anon_sym_enum] = ACTIONS(2453),
- [sym_html_comment] = ACTIONS(5),
- },
- [723] = {
- [ts_builtin_sym_end] = ACTIONS(1811),
- [sym_identifier] = ACTIONS(1813),
- [anon_sym_export] = ACTIONS(1813),
- [anon_sym_default] = ACTIONS(1813),
- [anon_sym_type] = ACTIONS(1813),
- [anon_sym_namespace] = ACTIONS(1813),
- [anon_sym_LBRACE] = ACTIONS(1811),
- [anon_sym_RBRACE] = ACTIONS(1811),
- [anon_sym_typeof] = ACTIONS(1813),
- [anon_sym_import] = ACTIONS(1813),
- [anon_sym_with] = ACTIONS(1813),
- [anon_sym_var] = ACTIONS(1813),
- [anon_sym_let] = ACTIONS(1813),
- [anon_sym_const] = ACTIONS(1813),
- [anon_sym_BANG] = ACTIONS(1811),
- [anon_sym_else] = ACTIONS(1813),
- [anon_sym_if] = ACTIONS(1813),
- [anon_sym_switch] = ACTIONS(1813),
- [anon_sym_for] = ACTIONS(1813),
- [anon_sym_LPAREN] = ACTIONS(1811),
- [anon_sym_await] = ACTIONS(1813),
- [anon_sym_while] = ACTIONS(1813),
- [anon_sym_do] = ACTIONS(1813),
- [anon_sym_try] = ACTIONS(1813),
- [anon_sym_break] = ACTIONS(1813),
- [anon_sym_continue] = ACTIONS(1813),
- [anon_sym_debugger] = ACTIONS(1813),
- [anon_sym_return] = ACTIONS(1813),
- [anon_sym_throw] = ACTIONS(1813),
- [anon_sym_SEMI] = ACTIONS(1811),
- [anon_sym_case] = ACTIONS(1813),
- [anon_sym_yield] = ACTIONS(1813),
- [anon_sym_LBRACK] = ACTIONS(1811),
- [sym_glimmer_opening_tag] = ACTIONS(1811),
- [anon_sym_DQUOTE] = ACTIONS(1811),
- [anon_sym_SQUOTE] = ACTIONS(1811),
- [anon_sym_class] = ACTIONS(1813),
- [anon_sym_async] = ACTIONS(1813),
- [anon_sym_function] = ACTIONS(1813),
- [anon_sym_new] = ACTIONS(1813),
- [anon_sym_using] = ACTIONS(1813),
- [anon_sym_PLUS] = ACTIONS(1813),
- [anon_sym_DASH] = ACTIONS(1813),
- [anon_sym_SLASH] = ACTIONS(1813),
- [anon_sym_LT] = ACTIONS(1813),
- [anon_sym_TILDE] = ACTIONS(1811),
- [anon_sym_void] = ACTIONS(1813),
- [anon_sym_delete] = ACTIONS(1813),
- [anon_sym_PLUS_PLUS] = ACTIONS(1811),
- [anon_sym_DASH_DASH] = ACTIONS(1811),
- [sym_comment] = ACTIONS(5),
- [anon_sym_BQUOTE] = ACTIONS(1811),
- [sym_number] = ACTIONS(1811),
- [sym_private_property_identifier] = ACTIONS(1811),
- [sym_this] = ACTIONS(1813),
- [sym_super] = ACTIONS(1813),
- [sym_true] = ACTIONS(1813),
- [sym_false] = ACTIONS(1813),
- [sym_null] = ACTIONS(1813),
- [sym_undefined] = ACTIONS(1813),
- [anon_sym_AT] = ACTIONS(1811),
- [anon_sym_static] = ACTIONS(1813),
- [anon_sym_readonly] = ACTIONS(1813),
- [anon_sym_get] = ACTIONS(1813),
- [anon_sym_set] = ACTIONS(1813),
- [anon_sym_declare] = ACTIONS(1813),
- [anon_sym_public] = ACTIONS(1813),
- [anon_sym_private] = ACTIONS(1813),
- [anon_sym_protected] = ACTIONS(1813),
- [anon_sym_override] = ACTIONS(1813),
- [anon_sym_module] = ACTIONS(1813),
- [anon_sym_any] = ACTIONS(1813),
- [anon_sym_number] = ACTIONS(1813),
- [anon_sym_boolean] = ACTIONS(1813),
- [anon_sym_string] = ACTIONS(1813),
- [anon_sym_symbol] = ACTIONS(1813),
- [anon_sym_object] = ACTIONS(1813),
- [anon_sym_abstract] = ACTIONS(1813),
- [anon_sym_interface] = ACTIONS(1813),
- [anon_sym_enum] = ACTIONS(1813),
- [sym__automatic_semicolon] = ACTIONS(1819),
- [sym_html_comment] = ACTIONS(5),
- },
- [724] = {
- [ts_builtin_sym_end] = ACTIONS(1885),
- [sym_identifier] = ACTIONS(1887),
- [anon_sym_export] = ACTIONS(1887),
- [anon_sym_default] = ACTIONS(1887),
- [anon_sym_type] = ACTIONS(1887),
- [anon_sym_namespace] = ACTIONS(1887),
- [anon_sym_LBRACE] = ACTIONS(1885),
- [anon_sym_RBRACE] = ACTIONS(1885),
- [anon_sym_typeof] = ACTIONS(1887),
- [anon_sym_import] = ACTIONS(1887),
- [anon_sym_with] = ACTIONS(1887),
- [anon_sym_var] = ACTIONS(1887),
- [anon_sym_let] = ACTIONS(1887),
- [anon_sym_const] = ACTIONS(1887),
- [anon_sym_BANG] = ACTIONS(1885),
- [anon_sym_else] = ACTIONS(1887),
- [anon_sym_if] = ACTIONS(1887),
- [anon_sym_switch] = ACTIONS(1887),
- [anon_sym_for] = ACTIONS(1887),
- [anon_sym_LPAREN] = ACTIONS(1885),
- [anon_sym_await] = ACTIONS(1887),
- [anon_sym_while] = ACTIONS(1887),
- [anon_sym_do] = ACTIONS(1887),
- [anon_sym_try] = ACTIONS(1887),
- [anon_sym_break] = ACTIONS(1887),
- [anon_sym_continue] = ACTIONS(1887),
- [anon_sym_debugger] = ACTIONS(1887),
- [anon_sym_return] = ACTIONS(1887),
- [anon_sym_throw] = ACTIONS(1887),
- [anon_sym_SEMI] = ACTIONS(1885),
- [anon_sym_case] = ACTIONS(1887),
- [anon_sym_yield] = ACTIONS(1887),
- [anon_sym_LBRACK] = ACTIONS(1885),
- [sym_glimmer_opening_tag] = ACTIONS(1885),
- [anon_sym_DQUOTE] = ACTIONS(1885),
- [anon_sym_SQUOTE] = ACTIONS(1885),
- [anon_sym_class] = ACTIONS(1887),
- [anon_sym_async] = ACTIONS(1887),
- [anon_sym_function] = ACTIONS(1887),
- [anon_sym_new] = ACTIONS(1887),
- [anon_sym_using] = ACTIONS(1887),
- [anon_sym_PLUS] = ACTIONS(1887),
- [anon_sym_DASH] = ACTIONS(1887),
- [anon_sym_SLASH] = ACTIONS(1887),
- [anon_sym_LT] = ACTIONS(1887),
- [anon_sym_TILDE] = ACTIONS(1885),
- [anon_sym_void] = ACTIONS(1887),
- [anon_sym_delete] = ACTIONS(1887),
- [anon_sym_PLUS_PLUS] = ACTIONS(1885),
- [anon_sym_DASH_DASH] = ACTIONS(1885),
- [sym_comment] = ACTIONS(5),
- [anon_sym_BQUOTE] = ACTIONS(1885),
- [sym_number] = ACTIONS(1885),
- [sym_private_property_identifier] = ACTIONS(1885),
- [sym_this] = ACTIONS(1887),
- [sym_super] = ACTIONS(1887),
- [sym_true] = ACTIONS(1887),
- [sym_false] = ACTIONS(1887),
- [sym_null] = ACTIONS(1887),
- [sym_undefined] = ACTIONS(1887),
- [anon_sym_AT] = ACTIONS(1885),
- [anon_sym_static] = ACTIONS(1887),
- [anon_sym_readonly] = ACTIONS(1887),
- [anon_sym_get] = ACTIONS(1887),
- [anon_sym_set] = ACTIONS(1887),
- [anon_sym_declare] = ACTIONS(1887),
- [anon_sym_public] = ACTIONS(1887),
- [anon_sym_private] = ACTIONS(1887),
- [anon_sym_protected] = ACTIONS(1887),
- [anon_sym_override] = ACTIONS(1887),
- [anon_sym_module] = ACTIONS(1887),
- [anon_sym_any] = ACTIONS(1887),
- [anon_sym_number] = ACTIONS(1887),
- [anon_sym_boolean] = ACTIONS(1887),
- [anon_sym_string] = ACTIONS(1887),
- [anon_sym_symbol] = ACTIONS(1887),
- [anon_sym_object] = ACTIONS(1887),
- [anon_sym_abstract] = ACTIONS(1887),
- [anon_sym_interface] = ACTIONS(1887),
- [anon_sym_enum] = ACTIONS(1887),
- [sym__automatic_semicolon] = ACTIONS(1893),
- [sym_html_comment] = ACTIONS(5),
- },
- [725] = {
- [ts_builtin_sym_end] = ACTIONS(2455),
- [sym_identifier] = ACTIONS(2457),
- [anon_sym_export] = ACTIONS(2457),
- [anon_sym_default] = ACTIONS(2457),
- [anon_sym_type] = ACTIONS(2457),
- [anon_sym_namespace] = ACTIONS(2457),
- [anon_sym_LBRACE] = ACTIONS(2455),
- [anon_sym_RBRACE] = ACTIONS(2455),
- [anon_sym_typeof] = ACTIONS(2457),
- [anon_sym_import] = ACTIONS(2457),
- [anon_sym_with] = ACTIONS(2457),
- [anon_sym_var] = ACTIONS(2457),
- [anon_sym_let] = ACTIONS(2457),
- [anon_sym_const] = ACTIONS(2457),
- [anon_sym_BANG] = ACTIONS(2455),
- [anon_sym_else] = ACTIONS(2457),
- [anon_sym_if] = ACTIONS(2457),
- [anon_sym_switch] = ACTIONS(2457),
- [anon_sym_for] = ACTIONS(2457),
- [anon_sym_LPAREN] = ACTIONS(2455),
- [anon_sym_RPAREN] = ACTIONS(2455),
- [anon_sym_await] = ACTIONS(2457),
- [anon_sym_while] = ACTIONS(2457),
- [anon_sym_do] = ACTIONS(2457),
- [anon_sym_try] = ACTIONS(2457),
- [anon_sym_break] = ACTIONS(2457),
- [anon_sym_continue] = ACTIONS(2457),
- [anon_sym_debugger] = ACTIONS(2457),
- [anon_sym_return] = ACTIONS(2457),
- [anon_sym_throw] = ACTIONS(2457),
- [anon_sym_SEMI] = ACTIONS(2455),
- [anon_sym_case] = ACTIONS(2457),
- [anon_sym_yield] = ACTIONS(2457),
- [anon_sym_LBRACK] = ACTIONS(2455),
- [sym_glimmer_opening_tag] = ACTIONS(2455),
- [anon_sym_DQUOTE] = ACTIONS(2455),
- [anon_sym_SQUOTE] = ACTIONS(2455),
- [anon_sym_class] = ACTIONS(2457),
- [anon_sym_async] = ACTIONS(2457),
- [anon_sym_function] = ACTIONS(2457),
- [anon_sym_new] = ACTIONS(2457),
- [anon_sym_using] = ACTIONS(2457),
- [anon_sym_PLUS] = ACTIONS(2457),
- [anon_sym_DASH] = ACTIONS(2457),
- [anon_sym_SLASH] = ACTIONS(2457),
- [anon_sym_LT] = ACTIONS(2457),
- [anon_sym_TILDE] = ACTIONS(2455),
- [anon_sym_void] = ACTIONS(2457),
- [anon_sym_delete] = ACTIONS(2457),
- [anon_sym_PLUS_PLUS] = ACTIONS(2455),
- [anon_sym_DASH_DASH] = ACTIONS(2455),
- [sym_comment] = ACTIONS(5),
- [anon_sym_BQUOTE] = ACTIONS(2455),
- [sym_number] = ACTIONS(2455),
- [sym_private_property_identifier] = ACTIONS(2455),
- [sym_this] = ACTIONS(2457),
- [sym_super] = ACTIONS(2457),
- [sym_true] = ACTIONS(2457),
- [sym_false] = ACTIONS(2457),
- [sym_null] = ACTIONS(2457),
- [sym_undefined] = ACTIONS(2457),
- [anon_sym_AT] = ACTIONS(2455),
- [anon_sym_static] = ACTIONS(2457),
- [anon_sym_readonly] = ACTIONS(2457),
- [anon_sym_get] = ACTIONS(2457),
- [anon_sym_set] = ACTIONS(2457),
- [anon_sym_declare] = ACTIONS(2457),
- [anon_sym_public] = ACTIONS(2457),
- [anon_sym_private] = ACTIONS(2457),
- [anon_sym_protected] = ACTIONS(2457),
- [anon_sym_override] = ACTIONS(2457),
- [anon_sym_module] = ACTIONS(2457),
- [anon_sym_any] = ACTIONS(2457),
- [anon_sym_number] = ACTIONS(2457),
- [anon_sym_boolean] = ACTIONS(2457),
- [anon_sym_string] = ACTIONS(2457),
- [anon_sym_symbol] = ACTIONS(2457),
- [anon_sym_object] = ACTIONS(2457),
- [anon_sym_abstract] = ACTIONS(2457),
- [anon_sym_interface] = ACTIONS(2457),
- [anon_sym_enum] = ACTIONS(2457),
- [sym_html_comment] = ACTIONS(5),
- },
- [726] = {
- [sym__call_signature] = STATE(5738),
- [sym_formal_parameters] = STATE(3742),
- [sym_type_parameters] = STATE(5349),
- [sym_identifier] = ACTIONS(2369),
- [anon_sym_export] = ACTIONS(2371),
- [anon_sym_STAR] = ACTIONS(122),
- [anon_sym_type] = ACTIONS(2371),
- [anon_sym_EQ] = ACTIONS(982),
- [anon_sym_as] = ACTIONS(122),
- [anon_sym_namespace] = ACTIONS(2371),
- [anon_sym_let] = ACTIONS(2371),
- [anon_sym_BANG] = ACTIONS(122),
- [anon_sym_LPAREN] = ACTIONS(2373),
- [anon_sym_in] = ACTIONS(122),
- [anon_sym_LBRACK] = ACTIONS(162),
- [anon_sym_GT] = ACTIONS(122),
- [anon_sym_DOT] = ACTIONS(162),
- [anon_sym_async] = ACTIONS(2371),
- [anon_sym_function] = ACTIONS(2376),
- [anon_sym_EQ_GT] = ACTIONS(229),
- [anon_sym_QMARK_DOT] = ACTIONS(162),
- [anon_sym_new] = ACTIONS(2371),
- [anon_sym_PLUS_EQ] = ACTIONS(168),
- [anon_sym_DASH_EQ] = ACTIONS(168),
- [anon_sym_STAR_EQ] = ACTIONS(168),
- [anon_sym_SLASH_EQ] = ACTIONS(168),
- [anon_sym_PERCENT_EQ] = ACTIONS(168),
- [anon_sym_CARET_EQ] = ACTIONS(168),
- [anon_sym_AMP_EQ] = ACTIONS(168),
- [anon_sym_PIPE_EQ] = ACTIONS(168),
- [anon_sym_GT_GT_EQ] = ACTIONS(168),
- [anon_sym_GT_GT_GT_EQ] = ACTIONS(168),
- [anon_sym_LT_LT_EQ] = ACTIONS(168),
- [anon_sym_STAR_STAR_EQ] = ACTIONS(168),
- [anon_sym_AMP_AMP_EQ] = ACTIONS(168),
- [anon_sym_PIPE_PIPE_EQ] = ACTIONS(168),
- [anon_sym_QMARK_QMARK_EQ] = ACTIONS(168),
- [anon_sym_AMP_AMP] = ACTIONS(122),
- [anon_sym_PIPE_PIPE] = ACTIONS(122),
- [anon_sym_GT_GT] = ACTIONS(122),
- [anon_sym_GT_GT_GT] = ACTIONS(122),
- [anon_sym_LT_LT] = ACTIONS(122),
- [anon_sym_AMP] = ACTIONS(122),
- [anon_sym_CARET] = ACTIONS(122),
- [anon_sym_PIPE] = ACTIONS(122),
- [anon_sym_PLUS] = ACTIONS(122),
- [anon_sym_DASH] = ACTIONS(122),
- [anon_sym_SLASH] = ACTIONS(122),
- [anon_sym_PERCENT] = ACTIONS(122),
- [anon_sym_STAR_STAR] = ACTIONS(122),
- [anon_sym_LT] = ACTIONS(2378),
- [anon_sym_LT_EQ] = ACTIONS(162),
- [anon_sym_EQ_EQ] = ACTIONS(122),
- [anon_sym_EQ_EQ_EQ] = ACTIONS(162),
- [anon_sym_BANG_EQ] = ACTIONS(122),
- [anon_sym_BANG_EQ_EQ] = ACTIONS(162),
- [anon_sym_GT_EQ] = ACTIONS(162),
- [anon_sym_QMARK_QMARK] = ACTIONS(122),
- [anon_sym_instanceof] = ACTIONS(122),
- [anon_sym_PLUS_PLUS] = ACTIONS(162),
- [anon_sym_DASH_DASH] = ACTIONS(162),
- [sym_comment] = ACTIONS(5),
- [anon_sym_BQUOTE] = ACTIONS(162),
- [anon_sym_static] = ACTIONS(2371),
- [anon_sym_readonly] = ACTIONS(2371),
- [anon_sym_get] = ACTIONS(2371),
- [anon_sym_set] = ACTIONS(2371),
- [anon_sym_declare] = ACTIONS(2371),
- [anon_sym_public] = ACTIONS(2371),
- [anon_sym_private] = ACTIONS(2371),
- [anon_sym_protected] = ACTIONS(2371),
- [anon_sym_override] = ACTIONS(2371),
- [anon_sym_module] = ACTIONS(2371),
- [anon_sym_any] = ACTIONS(2371),
- [anon_sym_number] = ACTIONS(2371),
- [anon_sym_boolean] = ACTIONS(2371),
- [anon_sym_string] = ACTIONS(2371),
- [anon_sym_symbol] = ACTIONS(2371),
- [anon_sym_object] = ACTIONS(2371),
- [anon_sym_satisfies] = ACTIONS(122),
- [sym__ternary_qmark] = ACTIONS(162),
- [sym_html_comment] = ACTIONS(5),
- },
- [727] = {
- [sym__call_signature] = STATE(5738),
- [sym_formal_parameters] = STATE(3742),
- [sym_type_parameters] = STATE(5349),
- [sym_identifier] = ACTIONS(2369),
- [anon_sym_export] = ACTIONS(2371),
- [anon_sym_STAR] = ACTIONS(122),
- [anon_sym_type] = ACTIONS(2371),
- [anon_sym_EQ] = ACTIONS(980),
- [anon_sym_as] = ACTIONS(122),
- [anon_sym_namespace] = ACTIONS(2371),
- [anon_sym_let] = ACTIONS(2371),
- [anon_sym_BANG] = ACTIONS(122),
- [anon_sym_LPAREN] = ACTIONS(2373),
- [anon_sym_in] = ACTIONS(122),
- [anon_sym_LBRACK] = ACTIONS(162),
- [anon_sym_GT] = ACTIONS(122),
- [anon_sym_DOT] = ACTIONS(162),
- [anon_sym_async] = ACTIONS(2371),
- [anon_sym_function] = ACTIONS(2376),
- [anon_sym_EQ_GT] = ACTIONS(229),
- [anon_sym_QMARK_DOT] = ACTIONS(162),
- [anon_sym_new] = ACTIONS(2371),
- [anon_sym_PLUS_EQ] = ACTIONS(168),
- [anon_sym_DASH_EQ] = ACTIONS(168),
- [anon_sym_STAR_EQ] = ACTIONS(168),
- [anon_sym_SLASH_EQ] = ACTIONS(168),
- [anon_sym_PERCENT_EQ] = ACTIONS(168),
- [anon_sym_CARET_EQ] = ACTIONS(168),
- [anon_sym_AMP_EQ] = ACTIONS(168),
- [anon_sym_PIPE_EQ] = ACTIONS(168),
- [anon_sym_GT_GT_EQ] = ACTIONS(168),
- [anon_sym_GT_GT_GT_EQ] = ACTIONS(168),
- [anon_sym_LT_LT_EQ] = ACTIONS(168),
- [anon_sym_STAR_STAR_EQ] = ACTIONS(168),
- [anon_sym_AMP_AMP_EQ] = ACTIONS(168),
- [anon_sym_PIPE_PIPE_EQ] = ACTIONS(168),
- [anon_sym_QMARK_QMARK_EQ] = ACTIONS(168),
- [anon_sym_AMP_AMP] = ACTIONS(122),
- [anon_sym_PIPE_PIPE] = ACTIONS(122),
- [anon_sym_GT_GT] = ACTIONS(122),
- [anon_sym_GT_GT_GT] = ACTIONS(122),
- [anon_sym_LT_LT] = ACTIONS(122),
- [anon_sym_AMP] = ACTIONS(122),
- [anon_sym_CARET] = ACTIONS(122),
- [anon_sym_PIPE] = ACTIONS(122),
- [anon_sym_PLUS] = ACTIONS(122),
- [anon_sym_DASH] = ACTIONS(122),
- [anon_sym_SLASH] = ACTIONS(122),
- [anon_sym_PERCENT] = ACTIONS(122),
- [anon_sym_STAR_STAR] = ACTIONS(122),
- [anon_sym_LT] = ACTIONS(2378),
- [anon_sym_LT_EQ] = ACTIONS(162),
- [anon_sym_EQ_EQ] = ACTIONS(122),
- [anon_sym_EQ_EQ_EQ] = ACTIONS(162),
- [anon_sym_BANG_EQ] = ACTIONS(122),
- [anon_sym_BANG_EQ_EQ] = ACTIONS(162),
- [anon_sym_GT_EQ] = ACTIONS(162),
- [anon_sym_QMARK_QMARK] = ACTIONS(122),
- [anon_sym_instanceof] = ACTIONS(122),
- [anon_sym_PLUS_PLUS] = ACTIONS(162),
- [anon_sym_DASH_DASH] = ACTIONS(162),
- [sym_comment] = ACTIONS(5),
- [anon_sym_BQUOTE] = ACTIONS(162),
- [anon_sym_static] = ACTIONS(2371),
- [anon_sym_readonly] = ACTIONS(2371),
- [anon_sym_get] = ACTIONS(2371),
- [anon_sym_set] = ACTIONS(2371),
- [anon_sym_declare] = ACTIONS(2371),
- [anon_sym_public] = ACTIONS(2371),
- [anon_sym_private] = ACTIONS(2371),
- [anon_sym_protected] = ACTIONS(2371),
- [anon_sym_override] = ACTIONS(2371),
- [anon_sym_module] = ACTIONS(2371),
- [anon_sym_any] = ACTIONS(2371),
- [anon_sym_number] = ACTIONS(2371),
- [anon_sym_boolean] = ACTIONS(2371),
- [anon_sym_string] = ACTIONS(2371),
- [anon_sym_symbol] = ACTIONS(2371),
- [anon_sym_object] = ACTIONS(2371),
- [anon_sym_satisfies] = ACTIONS(122),
- [sym__ternary_qmark] = ACTIONS(162),
- [sym_html_comment] = ACTIONS(5),
- },
- [728] = {
- [ts_builtin_sym_end] = ACTIONS(1895),
- [sym_identifier] = ACTIONS(1897),
- [anon_sym_export] = ACTIONS(1897),
- [anon_sym_default] = ACTIONS(1897),
- [anon_sym_type] = ACTIONS(1897),
- [anon_sym_namespace] = ACTIONS(1897),
- [anon_sym_LBRACE] = ACTIONS(1895),
- [anon_sym_RBRACE] = ACTIONS(1895),
- [anon_sym_typeof] = ACTIONS(1897),
- [anon_sym_import] = ACTIONS(1897),
- [anon_sym_with] = ACTIONS(1897),
- [anon_sym_var] = ACTIONS(1897),
- [anon_sym_let] = ACTIONS(1897),
- [anon_sym_const] = ACTIONS(1897),
- [anon_sym_BANG] = ACTIONS(1895),
- [anon_sym_else] = ACTIONS(1897),
- [anon_sym_if] = ACTIONS(1897),
- [anon_sym_switch] = ACTIONS(1897),
- [anon_sym_for] = ACTIONS(1897),
- [anon_sym_LPAREN] = ACTIONS(1895),
- [anon_sym_await] = ACTIONS(1897),
- [anon_sym_while] = ACTIONS(1897),
- [anon_sym_do] = ACTIONS(1897),
- [anon_sym_try] = ACTIONS(1897),
- [anon_sym_break] = ACTIONS(1897),
- [anon_sym_continue] = ACTIONS(1897),
- [anon_sym_debugger] = ACTIONS(1897),
- [anon_sym_return] = ACTIONS(1897),
- [anon_sym_throw] = ACTIONS(1897),
- [anon_sym_SEMI] = ACTIONS(1895),
- [anon_sym_case] = ACTIONS(1897),
- [anon_sym_yield] = ACTIONS(1897),
- [anon_sym_LBRACK] = ACTIONS(1895),
- [sym_glimmer_opening_tag] = ACTIONS(1895),
- [anon_sym_DQUOTE] = ACTIONS(1895),
- [anon_sym_SQUOTE] = ACTIONS(1895),
- [anon_sym_class] = ACTIONS(1897),
- [anon_sym_async] = ACTIONS(1897),
- [anon_sym_function] = ACTIONS(1897),
- [anon_sym_new] = ACTIONS(1897),
- [anon_sym_using] = ACTIONS(1897),
- [anon_sym_PLUS] = ACTIONS(1897),
- [anon_sym_DASH] = ACTIONS(1897),
- [anon_sym_SLASH] = ACTIONS(1897),
- [anon_sym_LT] = ACTIONS(1897),
- [anon_sym_TILDE] = ACTIONS(1895),
- [anon_sym_void] = ACTIONS(1897),
- [anon_sym_delete] = ACTIONS(1897),
- [anon_sym_PLUS_PLUS] = ACTIONS(1895),
- [anon_sym_DASH_DASH] = ACTIONS(1895),
- [sym_comment] = ACTIONS(5),
- [anon_sym_BQUOTE] = ACTIONS(1895),
- [sym_number] = ACTIONS(1895),
- [sym_private_property_identifier] = ACTIONS(1895),
- [sym_this] = ACTIONS(1897),
- [sym_super] = ACTIONS(1897),
- [sym_true] = ACTIONS(1897),
- [sym_false] = ACTIONS(1897),
- [sym_null] = ACTIONS(1897),
- [sym_undefined] = ACTIONS(1897),
- [anon_sym_AT] = ACTIONS(1895),
- [anon_sym_static] = ACTIONS(1897),
- [anon_sym_readonly] = ACTIONS(1897),
- [anon_sym_get] = ACTIONS(1897),
- [anon_sym_set] = ACTIONS(1897),
- [anon_sym_declare] = ACTIONS(1897),
- [anon_sym_public] = ACTIONS(1897),
- [anon_sym_private] = ACTIONS(1897),
- [anon_sym_protected] = ACTIONS(1897),
- [anon_sym_override] = ACTIONS(1897),
- [anon_sym_module] = ACTIONS(1897),
- [anon_sym_any] = ACTIONS(1897),
- [anon_sym_number] = ACTIONS(1897),
- [anon_sym_boolean] = ACTIONS(1897),
- [anon_sym_string] = ACTIONS(1897),
- [anon_sym_symbol] = ACTIONS(1897),
- [anon_sym_object] = ACTIONS(1897),
- [anon_sym_abstract] = ACTIONS(1897),
- [anon_sym_interface] = ACTIONS(1897),
- [anon_sym_enum] = ACTIONS(1897),
- [sym__automatic_semicolon] = ACTIONS(1903),
- [sym_html_comment] = ACTIONS(5),
- },
- [729] = {
- [sym__call_signature] = STATE(5738),
- [sym_formal_parameters] = STATE(3742),
- [sym_type_parameters] = STATE(5349),
- [sym_identifier] = ACTIONS(2369),
- [anon_sym_export] = ACTIONS(2371),
- [anon_sym_STAR] = ACTIONS(122),
- [anon_sym_type] = ACTIONS(2371),
- [anon_sym_EQ] = ACTIONS(841),
- [anon_sym_as] = ACTIONS(122),
- [anon_sym_namespace] = ACTIONS(2371),
- [anon_sym_let] = ACTIONS(2371),
- [anon_sym_BANG] = ACTIONS(122),
- [anon_sym_LPAREN] = ACTIONS(2373),
- [anon_sym_in] = ACTIONS(122),
- [anon_sym_LBRACK] = ACTIONS(162),
- [anon_sym_GT] = ACTIONS(122),
- [anon_sym_DOT] = ACTIONS(162),
- [anon_sym_async] = ACTIONS(2371),
- [anon_sym_function] = ACTIONS(2376),
- [anon_sym_EQ_GT] = ACTIONS(229),
- [anon_sym_QMARK_DOT] = ACTIONS(162),
- [anon_sym_new] = ACTIONS(2371),
- [anon_sym_PLUS_EQ] = ACTIONS(168),
- [anon_sym_DASH_EQ] = ACTIONS(168),
- [anon_sym_STAR_EQ] = ACTIONS(168),
- [anon_sym_SLASH_EQ] = ACTIONS(168),
- [anon_sym_PERCENT_EQ] = ACTIONS(168),
- [anon_sym_CARET_EQ] = ACTIONS(168),
- [anon_sym_AMP_EQ] = ACTIONS(168),
- [anon_sym_PIPE_EQ] = ACTIONS(168),
- [anon_sym_GT_GT_EQ] = ACTIONS(168),
- [anon_sym_GT_GT_GT_EQ] = ACTIONS(168),
- [anon_sym_LT_LT_EQ] = ACTIONS(168),
- [anon_sym_STAR_STAR_EQ] = ACTIONS(168),
- [anon_sym_AMP_AMP_EQ] = ACTIONS(168),
- [anon_sym_PIPE_PIPE_EQ] = ACTIONS(168),
- [anon_sym_QMARK_QMARK_EQ] = ACTIONS(168),
- [anon_sym_AMP_AMP] = ACTIONS(122),
- [anon_sym_PIPE_PIPE] = ACTIONS(122),
- [anon_sym_GT_GT] = ACTIONS(122),
- [anon_sym_GT_GT_GT] = ACTIONS(122),
- [anon_sym_LT_LT] = ACTIONS(122),
- [anon_sym_AMP] = ACTIONS(122),
- [anon_sym_CARET] = ACTIONS(122),
- [anon_sym_PIPE] = ACTIONS(122),
- [anon_sym_PLUS] = ACTIONS(122),
- [anon_sym_DASH] = ACTIONS(122),
- [anon_sym_SLASH] = ACTIONS(122),
- [anon_sym_PERCENT] = ACTIONS(122),
- [anon_sym_STAR_STAR] = ACTIONS(122),
- [anon_sym_LT] = ACTIONS(2378),
- [anon_sym_LT_EQ] = ACTIONS(162),
- [anon_sym_EQ_EQ] = ACTIONS(122),
- [anon_sym_EQ_EQ_EQ] = ACTIONS(162),
- [anon_sym_BANG_EQ] = ACTIONS(122),
- [anon_sym_BANG_EQ_EQ] = ACTIONS(162),
- [anon_sym_GT_EQ] = ACTIONS(162),
- [anon_sym_QMARK_QMARK] = ACTIONS(122),
- [anon_sym_instanceof] = ACTIONS(122),
- [anon_sym_PLUS_PLUS] = ACTIONS(162),
- [anon_sym_DASH_DASH] = ACTIONS(162),
- [sym_comment] = ACTIONS(5),
- [anon_sym_BQUOTE] = ACTIONS(162),
- [anon_sym_static] = ACTIONS(2371),
- [anon_sym_readonly] = ACTIONS(2371),
- [anon_sym_get] = ACTIONS(2371),
- [anon_sym_set] = ACTIONS(2371),
- [anon_sym_declare] = ACTIONS(2371),
- [anon_sym_public] = ACTIONS(2371),
- [anon_sym_private] = ACTIONS(2371),
- [anon_sym_protected] = ACTIONS(2371),
- [anon_sym_override] = ACTIONS(2371),
- [anon_sym_module] = ACTIONS(2371),
- [anon_sym_any] = ACTIONS(2371),
- [anon_sym_number] = ACTIONS(2371),
- [anon_sym_boolean] = ACTIONS(2371),
- [anon_sym_string] = ACTIONS(2371),
- [anon_sym_symbol] = ACTIONS(2371),
- [anon_sym_object] = ACTIONS(2371),
- [anon_sym_satisfies] = ACTIONS(122),
- [sym__ternary_qmark] = ACTIONS(162),
- [sym_html_comment] = ACTIONS(5),
- },
- [730] = {
- [ts_builtin_sym_end] = ACTIONS(2459),
- [sym_identifier] = ACTIONS(2461),
- [anon_sym_export] = ACTIONS(2461),
- [anon_sym_default] = ACTIONS(2461),
- [anon_sym_type] = ACTIONS(2461),
- [anon_sym_namespace] = ACTIONS(2461),
- [anon_sym_LBRACE] = ACTIONS(2459),
- [anon_sym_RBRACE] = ACTIONS(2459),
- [anon_sym_typeof] = ACTIONS(2461),
- [anon_sym_import] = ACTIONS(2461),
- [anon_sym_with] = ACTIONS(2461),
- [anon_sym_var] = ACTIONS(2461),
- [anon_sym_let] = ACTIONS(2461),
- [anon_sym_const] = ACTIONS(2461),
- [anon_sym_BANG] = ACTIONS(2459),
- [anon_sym_else] = ACTIONS(2461),
- [anon_sym_if] = ACTIONS(2461),
- [anon_sym_switch] = ACTIONS(2461),
- [anon_sym_for] = ACTIONS(2461),
- [anon_sym_LPAREN] = ACTIONS(2459),
- [anon_sym_await] = ACTIONS(2461),
- [anon_sym_while] = ACTIONS(2461),
- [anon_sym_do] = ACTIONS(2461),
- [anon_sym_try] = ACTIONS(2461),
- [anon_sym_break] = ACTIONS(2461),
- [anon_sym_continue] = ACTIONS(2461),
- [anon_sym_debugger] = ACTIONS(2461),
- [anon_sym_return] = ACTIONS(2461),
- [anon_sym_throw] = ACTIONS(2461),
- [anon_sym_SEMI] = ACTIONS(2459),
- [anon_sym_case] = ACTIONS(2461),
- [anon_sym_yield] = ACTIONS(2461),
- [anon_sym_LBRACK] = ACTIONS(2459),
- [sym_glimmer_opening_tag] = ACTIONS(2459),
- [anon_sym_DQUOTE] = ACTIONS(2459),
- [anon_sym_SQUOTE] = ACTIONS(2459),
- [anon_sym_class] = ACTIONS(2461),
- [anon_sym_async] = ACTIONS(2461),
- [anon_sym_function] = ACTIONS(2461),
- [anon_sym_new] = ACTIONS(2461),
- [anon_sym_using] = ACTIONS(2461),
- [anon_sym_PLUS] = ACTIONS(2461),
- [anon_sym_DASH] = ACTIONS(2461),
- [anon_sym_SLASH] = ACTIONS(2461),
- [anon_sym_LT] = ACTIONS(2461),
- [anon_sym_TILDE] = ACTIONS(2459),
- [anon_sym_void] = ACTIONS(2461),
- [anon_sym_delete] = ACTIONS(2461),
- [anon_sym_PLUS_PLUS] = ACTIONS(2459),
- [anon_sym_DASH_DASH] = ACTIONS(2459),
- [sym_comment] = ACTIONS(5),
- [anon_sym_BQUOTE] = ACTIONS(2459),
- [sym_number] = ACTIONS(2459),
- [sym_private_property_identifier] = ACTIONS(2459),
- [sym_this] = ACTIONS(2461),
- [sym_super] = ACTIONS(2461),
- [sym_true] = ACTIONS(2461),
- [sym_false] = ACTIONS(2461),
- [sym_null] = ACTIONS(2461),
- [sym_undefined] = ACTIONS(2461),
- [anon_sym_AT] = ACTIONS(2459),
- [anon_sym_static] = ACTIONS(2461),
- [anon_sym_readonly] = ACTIONS(2461),
- [anon_sym_get] = ACTIONS(2461),
- [anon_sym_set] = ACTIONS(2461),
- [anon_sym_declare] = ACTIONS(2461),
- [anon_sym_public] = ACTIONS(2461),
- [anon_sym_private] = ACTIONS(2461),
- [anon_sym_protected] = ACTIONS(2461),
- [anon_sym_override] = ACTIONS(2461),
- [anon_sym_module] = ACTIONS(2461),
- [anon_sym_any] = ACTIONS(2461),
- [anon_sym_number] = ACTIONS(2461),
- [anon_sym_boolean] = ACTIONS(2461),
- [anon_sym_string] = ACTIONS(2461),
- [anon_sym_symbol] = ACTIONS(2461),
- [anon_sym_object] = ACTIONS(2461),
- [anon_sym_abstract] = ACTIONS(2461),
- [anon_sym_interface] = ACTIONS(2461),
- [anon_sym_enum] = ACTIONS(2461),
- [sym__automatic_semicolon] = ACTIONS(2459),
- [sym_html_comment] = ACTIONS(5),
- },
- [731] = {
- [ts_builtin_sym_end] = ACTIONS(2463),
- [sym_identifier] = ACTIONS(2465),
- [anon_sym_export] = ACTIONS(2465),
- [anon_sym_default] = ACTIONS(2465),
- [anon_sym_type] = ACTIONS(2465),
- [anon_sym_namespace] = ACTIONS(2465),
- [anon_sym_LBRACE] = ACTIONS(2463),
- [anon_sym_RBRACE] = ACTIONS(2463),
- [anon_sym_typeof] = ACTIONS(2465),
- [anon_sym_import] = ACTIONS(2465),
- [anon_sym_with] = ACTIONS(2465),
- [anon_sym_var] = ACTIONS(2465),
- [anon_sym_let] = ACTIONS(2465),
- [anon_sym_const] = ACTIONS(2465),
- [anon_sym_BANG] = ACTIONS(2463),
- [anon_sym_else] = ACTIONS(2465),
- [anon_sym_if] = ACTIONS(2465),
- [anon_sym_switch] = ACTIONS(2465),
- [anon_sym_for] = ACTIONS(2465),
- [anon_sym_LPAREN] = ACTIONS(2463),
- [anon_sym_await] = ACTIONS(2465),
- [anon_sym_while] = ACTIONS(2465),
- [anon_sym_do] = ACTIONS(2465),
- [anon_sym_try] = ACTIONS(2465),
- [anon_sym_break] = ACTIONS(2465),
- [anon_sym_continue] = ACTIONS(2465),
- [anon_sym_debugger] = ACTIONS(2465),
- [anon_sym_return] = ACTIONS(2465),
- [anon_sym_throw] = ACTIONS(2465),
- [anon_sym_SEMI] = ACTIONS(2463),
- [anon_sym_case] = ACTIONS(2465),
- [anon_sym_finally] = ACTIONS(2465),
- [anon_sym_yield] = ACTIONS(2465),
- [anon_sym_LBRACK] = ACTIONS(2463),
- [sym_glimmer_opening_tag] = ACTIONS(2463),
- [anon_sym_DQUOTE] = ACTIONS(2463),
- [anon_sym_SQUOTE] = ACTIONS(2463),
- [anon_sym_class] = ACTIONS(2465),
- [anon_sym_async] = ACTIONS(2465),
- [anon_sym_function] = ACTIONS(2465),
- [anon_sym_new] = ACTIONS(2465),
- [anon_sym_using] = ACTIONS(2465),
- [anon_sym_PLUS] = ACTIONS(2465),
- [anon_sym_DASH] = ACTIONS(2465),
- [anon_sym_SLASH] = ACTIONS(2465),
- [anon_sym_LT] = ACTIONS(2465),
- [anon_sym_TILDE] = ACTIONS(2463),
- [anon_sym_void] = ACTIONS(2465),
- [anon_sym_delete] = ACTIONS(2465),
- [anon_sym_PLUS_PLUS] = ACTIONS(2463),
- [anon_sym_DASH_DASH] = ACTIONS(2463),
- [sym_comment] = ACTIONS(5),
- [anon_sym_BQUOTE] = ACTIONS(2463),
- [sym_number] = ACTIONS(2463),
- [sym_private_property_identifier] = ACTIONS(2463),
- [sym_this] = ACTIONS(2465),
- [sym_super] = ACTIONS(2465),
- [sym_true] = ACTIONS(2465),
- [sym_false] = ACTIONS(2465),
- [sym_null] = ACTIONS(2465),
- [sym_undefined] = ACTIONS(2465),
- [anon_sym_AT] = ACTIONS(2463),
- [anon_sym_static] = ACTIONS(2465),
- [anon_sym_readonly] = ACTIONS(2465),
- [anon_sym_get] = ACTIONS(2465),
- [anon_sym_set] = ACTIONS(2465),
- [anon_sym_declare] = ACTIONS(2465),
- [anon_sym_public] = ACTIONS(2465),
- [anon_sym_private] = ACTIONS(2465),
- [anon_sym_protected] = ACTIONS(2465),
- [anon_sym_override] = ACTIONS(2465),
- [anon_sym_module] = ACTIONS(2465),
- [anon_sym_any] = ACTIONS(2465),
- [anon_sym_number] = ACTIONS(2465),
- [anon_sym_boolean] = ACTIONS(2465),
- [anon_sym_string] = ACTIONS(2465),
- [anon_sym_symbol] = ACTIONS(2465),
- [anon_sym_object] = ACTIONS(2465),
- [anon_sym_abstract] = ACTIONS(2465),
- [anon_sym_interface] = ACTIONS(2465),
- [anon_sym_enum] = ACTIONS(2465),
- [sym_html_comment] = ACTIONS(5),
- },
- [732] = {
- [ts_builtin_sym_end] = ACTIONS(2467),
- [sym_identifier] = ACTIONS(2469),
- [anon_sym_export] = ACTIONS(2469),
- [anon_sym_default] = ACTIONS(2469),
- [anon_sym_type] = ACTIONS(2469),
- [anon_sym_namespace] = ACTIONS(2469),
- [anon_sym_LBRACE] = ACTIONS(2467),
- [anon_sym_RBRACE] = ACTIONS(2467),
- [anon_sym_typeof] = ACTIONS(2469),
- [anon_sym_import] = ACTIONS(2469),
- [anon_sym_with] = ACTIONS(2469),
- [anon_sym_var] = ACTIONS(2469),
- [anon_sym_let] = ACTIONS(2469),
- [anon_sym_const] = ACTIONS(2469),
- [anon_sym_BANG] = ACTIONS(2467),
- [anon_sym_else] = ACTIONS(2469),
- [anon_sym_if] = ACTIONS(2469),
- [anon_sym_switch] = ACTIONS(2469),
- [anon_sym_for] = ACTIONS(2469),
- [anon_sym_LPAREN] = ACTIONS(2467),
- [anon_sym_await] = ACTIONS(2469),
- [anon_sym_while] = ACTIONS(2469),
- [anon_sym_do] = ACTIONS(2469),
- [anon_sym_try] = ACTIONS(2469),
- [anon_sym_break] = ACTIONS(2469),
- [anon_sym_continue] = ACTIONS(2469),
- [anon_sym_debugger] = ACTIONS(2469),
- [anon_sym_return] = ACTIONS(2469),
- [anon_sym_throw] = ACTIONS(2469),
- [anon_sym_SEMI] = ACTIONS(2471),
- [anon_sym_case] = ACTIONS(2469),
- [anon_sym_yield] = ACTIONS(2469),
- [anon_sym_LBRACK] = ACTIONS(2467),
- [sym_glimmer_opening_tag] = ACTIONS(2467),
- [anon_sym_DQUOTE] = ACTIONS(2467),
- [anon_sym_SQUOTE] = ACTIONS(2467),
- [anon_sym_class] = ACTIONS(2469),
- [anon_sym_async] = ACTIONS(2469),
- [anon_sym_function] = ACTIONS(2469),
- [anon_sym_new] = ACTIONS(2469),
- [anon_sym_using] = ACTIONS(2469),
- [anon_sym_PLUS] = ACTIONS(2469),
- [anon_sym_DASH] = ACTIONS(2469),
- [anon_sym_SLASH] = ACTIONS(2469),
- [anon_sym_LT] = ACTIONS(2469),
- [anon_sym_TILDE] = ACTIONS(2467),
- [anon_sym_void] = ACTIONS(2469),
- [anon_sym_delete] = ACTIONS(2469),
- [anon_sym_PLUS_PLUS] = ACTIONS(2467),
- [anon_sym_DASH_DASH] = ACTIONS(2467),
- [sym_comment] = ACTIONS(5),
- [anon_sym_BQUOTE] = ACTIONS(2467),
- [sym_number] = ACTIONS(2467),
- [sym_private_property_identifier] = ACTIONS(2467),
- [sym_this] = ACTIONS(2469),
- [sym_super] = ACTIONS(2469),
- [sym_true] = ACTIONS(2469),
- [sym_false] = ACTIONS(2469),
- [sym_null] = ACTIONS(2469),
- [sym_undefined] = ACTIONS(2469),
- [anon_sym_AT] = ACTIONS(2467),
- [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_override] = 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_object] = ACTIONS(2469),
- [anon_sym_abstract] = ACTIONS(2469),
- [anon_sym_interface] = ACTIONS(2469),
- [anon_sym_enum] = ACTIONS(2469),
- [sym__automatic_semicolon] = ACTIONS(2471),
- [sym_html_comment] = ACTIONS(5),
- },
- [733] = {
- [sym__call_signature] = STATE(5738),
- [sym_formal_parameters] = STATE(3742),
- [sym_type_parameters] = STATE(5349),
- [sym_identifier] = ACTIONS(2369),
- [anon_sym_export] = ACTIONS(2371),
- [anon_sym_STAR] = ACTIONS(122),
- [anon_sym_type] = ACTIONS(2371),
- [anon_sym_EQ] = ACTIONS(984),
- [anon_sym_as] = ACTIONS(122),
- [anon_sym_namespace] = ACTIONS(2371),
- [anon_sym_let] = ACTIONS(2371),
- [anon_sym_BANG] = ACTIONS(122),
- [anon_sym_LPAREN] = ACTIONS(2373),
- [anon_sym_in] = ACTIONS(122),
- [anon_sym_LBRACK] = ACTIONS(162),
- [anon_sym_GT] = ACTIONS(122),
- [anon_sym_DOT] = ACTIONS(162),
- [anon_sym_async] = ACTIONS(2371),
- [anon_sym_function] = ACTIONS(2376),
- [anon_sym_EQ_GT] = ACTIONS(229),
- [anon_sym_QMARK_DOT] = ACTIONS(162),
- [anon_sym_new] = ACTIONS(2371),
- [anon_sym_PLUS_EQ] = ACTIONS(168),
- [anon_sym_DASH_EQ] = ACTIONS(168),
- [anon_sym_STAR_EQ] = ACTIONS(168),
- [anon_sym_SLASH_EQ] = ACTIONS(168),
- [anon_sym_PERCENT_EQ] = ACTIONS(168),
- [anon_sym_CARET_EQ] = ACTIONS(168),
- [anon_sym_AMP_EQ] = ACTIONS(168),
- [anon_sym_PIPE_EQ] = ACTIONS(168),
- [anon_sym_GT_GT_EQ] = ACTIONS(168),
- [anon_sym_GT_GT_GT_EQ] = ACTIONS(168),
- [anon_sym_LT_LT_EQ] = ACTIONS(168),
- [anon_sym_STAR_STAR_EQ] = ACTIONS(168),
- [anon_sym_AMP_AMP_EQ] = ACTIONS(168),
- [anon_sym_PIPE_PIPE_EQ] = ACTIONS(168),
- [anon_sym_QMARK_QMARK_EQ] = ACTIONS(168),
- [anon_sym_AMP_AMP] = ACTIONS(122),
- [anon_sym_PIPE_PIPE] = ACTIONS(122),
- [anon_sym_GT_GT] = ACTIONS(122),
- [anon_sym_GT_GT_GT] = ACTIONS(122),
- [anon_sym_LT_LT] = ACTIONS(122),
- [anon_sym_AMP] = ACTIONS(122),
- [anon_sym_CARET] = ACTIONS(122),
- [anon_sym_PIPE] = ACTIONS(122),
- [anon_sym_PLUS] = ACTIONS(122),
- [anon_sym_DASH] = ACTIONS(122),
- [anon_sym_SLASH] = ACTIONS(122),
- [anon_sym_PERCENT] = ACTIONS(122),
- [anon_sym_STAR_STAR] = ACTIONS(122),
- [anon_sym_LT] = ACTIONS(2378),
- [anon_sym_LT_EQ] = ACTIONS(162),
- [anon_sym_EQ_EQ] = ACTIONS(122),
- [anon_sym_EQ_EQ_EQ] = ACTIONS(162),
- [anon_sym_BANG_EQ] = ACTIONS(122),
- [anon_sym_BANG_EQ_EQ] = ACTIONS(162),
- [anon_sym_GT_EQ] = ACTIONS(162),
- [anon_sym_QMARK_QMARK] = ACTIONS(122),
- [anon_sym_instanceof] = ACTIONS(122),
- [anon_sym_PLUS_PLUS] = ACTIONS(162),
- [anon_sym_DASH_DASH] = ACTIONS(162),
- [sym_comment] = ACTIONS(5),
- [anon_sym_BQUOTE] = ACTIONS(162),
- [anon_sym_static] = ACTIONS(2371),
- [anon_sym_readonly] = ACTIONS(2371),
- [anon_sym_get] = ACTIONS(2371),
- [anon_sym_set] = ACTIONS(2371),
- [anon_sym_declare] = ACTIONS(2371),
- [anon_sym_public] = ACTIONS(2371),
- [anon_sym_private] = ACTIONS(2371),
- [anon_sym_protected] = ACTIONS(2371),
- [anon_sym_override] = ACTIONS(2371),
- [anon_sym_module] = ACTIONS(2371),
- [anon_sym_any] = ACTIONS(2371),
- [anon_sym_number] = ACTIONS(2371),
- [anon_sym_boolean] = ACTIONS(2371),
- [anon_sym_string] = ACTIONS(2371),
- [anon_sym_symbol] = ACTIONS(2371),
- [anon_sym_object] = ACTIONS(2371),
- [anon_sym_satisfies] = ACTIONS(122),
- [sym__ternary_qmark] = ACTIONS(162),
- [sym_html_comment] = ACTIONS(5),
- },
- [734] = {
- [sym_else_clause] = STATE(764),
- [ts_builtin_sym_end] = ACTIONS(2473),
- [sym_identifier] = ACTIONS(2475),
- [anon_sym_export] = ACTIONS(2475),
- [anon_sym_default] = ACTIONS(2475),
- [anon_sym_type] = ACTIONS(2475),
- [anon_sym_namespace] = ACTIONS(2475),
- [anon_sym_LBRACE] = ACTIONS(2473),
- [anon_sym_RBRACE] = ACTIONS(2473),
- [anon_sym_typeof] = ACTIONS(2475),
- [anon_sym_import] = ACTIONS(2475),
- [anon_sym_with] = ACTIONS(2475),
- [anon_sym_var] = ACTIONS(2475),
- [anon_sym_let] = ACTIONS(2475),
- [anon_sym_const] = ACTIONS(2475),
- [anon_sym_BANG] = ACTIONS(2473),
- [anon_sym_else] = ACTIONS(2477),
- [anon_sym_if] = ACTIONS(2475),
- [anon_sym_switch] = ACTIONS(2475),
- [anon_sym_for] = ACTIONS(2475),
- [anon_sym_LPAREN] = ACTIONS(2473),
- [anon_sym_await] = ACTIONS(2475),
- [anon_sym_while] = ACTIONS(2475),
- [anon_sym_do] = ACTIONS(2475),
- [anon_sym_try] = ACTIONS(2475),
- [anon_sym_break] = ACTIONS(2475),
- [anon_sym_continue] = ACTIONS(2475),
- [anon_sym_debugger] = ACTIONS(2475),
- [anon_sym_return] = ACTIONS(2475),
- [anon_sym_throw] = ACTIONS(2475),
- [anon_sym_SEMI] = ACTIONS(2473),
- [anon_sym_case] = ACTIONS(2475),
- [anon_sym_yield] = ACTIONS(2475),
- [anon_sym_LBRACK] = ACTIONS(2473),
- [sym_glimmer_opening_tag] = ACTIONS(2473),
- [anon_sym_DQUOTE] = ACTIONS(2473),
- [anon_sym_SQUOTE] = ACTIONS(2473),
- [anon_sym_class] = ACTIONS(2475),
- [anon_sym_async] = ACTIONS(2475),
- [anon_sym_function] = ACTIONS(2475),
- [anon_sym_new] = ACTIONS(2475),
- [anon_sym_using] = ACTIONS(2475),
- [anon_sym_PLUS] = ACTIONS(2475),
- [anon_sym_DASH] = ACTIONS(2475),
- [anon_sym_SLASH] = ACTIONS(2475),
- [anon_sym_LT] = ACTIONS(2475),
- [anon_sym_TILDE] = ACTIONS(2473),
- [anon_sym_void] = ACTIONS(2475),
- [anon_sym_delete] = ACTIONS(2475),
- [anon_sym_PLUS_PLUS] = ACTIONS(2473),
- [anon_sym_DASH_DASH] = ACTIONS(2473),
- [sym_comment] = ACTIONS(5),
- [anon_sym_BQUOTE] = ACTIONS(2473),
- [sym_number] = ACTIONS(2473),
- [sym_private_property_identifier] = ACTIONS(2473),
- [sym_this] = ACTIONS(2475),
- [sym_super] = ACTIONS(2475),
- [sym_true] = ACTIONS(2475),
- [sym_false] = ACTIONS(2475),
- [sym_null] = ACTIONS(2475),
- [sym_undefined] = ACTIONS(2475),
- [anon_sym_AT] = ACTIONS(2473),
- [anon_sym_static] = ACTIONS(2475),
- [anon_sym_readonly] = ACTIONS(2475),
- [anon_sym_get] = ACTIONS(2475),
- [anon_sym_set] = ACTIONS(2475),
- [anon_sym_declare] = ACTIONS(2475),
- [anon_sym_public] = ACTIONS(2475),
- [anon_sym_private] = ACTIONS(2475),
- [anon_sym_protected] = ACTIONS(2475),
- [anon_sym_override] = ACTIONS(2475),
- [anon_sym_module] = ACTIONS(2475),
- [anon_sym_any] = ACTIONS(2475),
- [anon_sym_number] = ACTIONS(2475),
- [anon_sym_boolean] = ACTIONS(2475),
- [anon_sym_string] = ACTIONS(2475),
- [anon_sym_symbol] = ACTIONS(2475),
- [anon_sym_object] = ACTIONS(2475),
- [anon_sym_abstract] = ACTIONS(2475),
- [anon_sym_interface] = ACTIONS(2475),
- [anon_sym_enum] = ACTIONS(2475),
- [sym_html_comment] = ACTIONS(5),
- },
- [735] = {
- [ts_builtin_sym_end] = ACTIONS(1845),
- [sym_identifier] = ACTIONS(1847),
- [anon_sym_export] = ACTIONS(1847),
- [anon_sym_default] = ACTIONS(1847),
- [anon_sym_type] = ACTIONS(1847),
- [anon_sym_namespace] = ACTIONS(1847),
- [anon_sym_LBRACE] = ACTIONS(1845),
- [anon_sym_RBRACE] = ACTIONS(1845),
- [anon_sym_typeof] = ACTIONS(1847),
- [anon_sym_import] = ACTIONS(1847),
- [anon_sym_with] = ACTIONS(1847),
- [anon_sym_var] = ACTIONS(1847),
- [anon_sym_let] = ACTIONS(1847),
- [anon_sym_const] = ACTIONS(1847),
- [anon_sym_BANG] = ACTIONS(1845),
- [anon_sym_else] = ACTIONS(1847),
- [anon_sym_if] = ACTIONS(1847),
- [anon_sym_switch] = ACTIONS(1847),
- [anon_sym_for] = ACTIONS(1847),
- [anon_sym_LPAREN] = ACTIONS(1845),
- [anon_sym_await] = ACTIONS(1847),
- [anon_sym_while] = ACTIONS(1847),
- [anon_sym_do] = ACTIONS(1847),
- [anon_sym_try] = ACTIONS(1847),
- [anon_sym_break] = ACTIONS(1847),
- [anon_sym_continue] = ACTIONS(1847),
- [anon_sym_debugger] = ACTIONS(1847),
- [anon_sym_return] = ACTIONS(1847),
- [anon_sym_throw] = ACTIONS(1847),
- [anon_sym_SEMI] = ACTIONS(1845),
- [anon_sym_case] = ACTIONS(1847),
- [anon_sym_yield] = ACTIONS(1847),
- [anon_sym_LBRACK] = ACTIONS(1845),
- [sym_glimmer_opening_tag] = ACTIONS(1845),
- [anon_sym_DQUOTE] = ACTIONS(1845),
- [anon_sym_SQUOTE] = ACTIONS(1845),
- [anon_sym_class] = ACTIONS(1847),
- [anon_sym_async] = ACTIONS(1847),
- [anon_sym_function] = ACTIONS(1847),
- [anon_sym_new] = ACTIONS(1847),
- [anon_sym_using] = ACTIONS(1847),
- [anon_sym_PLUS] = ACTIONS(1847),
- [anon_sym_DASH] = ACTIONS(1847),
- [anon_sym_SLASH] = ACTIONS(1847),
- [anon_sym_LT] = ACTIONS(1847),
- [anon_sym_TILDE] = ACTIONS(1845),
- [anon_sym_void] = ACTIONS(1847),
- [anon_sym_delete] = ACTIONS(1847),
- [anon_sym_PLUS_PLUS] = ACTIONS(1845),
- [anon_sym_DASH_DASH] = ACTIONS(1845),
- [sym_comment] = ACTIONS(5),
- [anon_sym_BQUOTE] = ACTIONS(1845),
- [sym_number] = ACTIONS(1845),
- [sym_private_property_identifier] = ACTIONS(1845),
- [sym_this] = ACTIONS(1847),
- [sym_super] = ACTIONS(1847),
- [sym_true] = ACTIONS(1847),
- [sym_false] = ACTIONS(1847),
- [sym_null] = ACTIONS(1847),
- [sym_undefined] = ACTIONS(1847),
- [anon_sym_AT] = ACTIONS(1845),
- [anon_sym_static] = ACTIONS(1847),
- [anon_sym_readonly] = ACTIONS(1847),
- [anon_sym_get] = ACTIONS(1847),
- [anon_sym_set] = ACTIONS(1847),
- [anon_sym_declare] = ACTIONS(1847),
- [anon_sym_public] = ACTIONS(1847),
- [anon_sym_private] = ACTIONS(1847),
- [anon_sym_protected] = ACTIONS(1847),
- [anon_sym_override] = ACTIONS(1847),
- [anon_sym_module] = ACTIONS(1847),
- [anon_sym_any] = ACTIONS(1847),
- [anon_sym_number] = ACTIONS(1847),
- [anon_sym_boolean] = ACTIONS(1847),
- [anon_sym_string] = ACTIONS(1847),
- [anon_sym_symbol] = ACTIONS(1847),
- [anon_sym_object] = ACTIONS(1847),
- [anon_sym_abstract] = ACTIONS(1847),
- [anon_sym_interface] = ACTIONS(1847),
- [anon_sym_enum] = ACTIONS(1847),
- [sym__automatic_semicolon] = ACTIONS(1853),
- [sym_html_comment] = ACTIONS(5),
- },
- [736] = {
- [ts_builtin_sym_end] = ACTIONS(1835),
- [sym_identifier] = ACTIONS(1837),
- [anon_sym_export] = ACTIONS(1837),
- [anon_sym_default] = ACTIONS(1837),
- [anon_sym_type] = ACTIONS(1837),
- [anon_sym_namespace] = ACTIONS(1837),
- [anon_sym_LBRACE] = ACTIONS(1835),
- [anon_sym_RBRACE] = ACTIONS(1835),
- [anon_sym_typeof] = ACTIONS(1837),
- [anon_sym_import] = ACTIONS(1837),
- [anon_sym_with] = ACTIONS(1837),
- [anon_sym_var] = ACTIONS(1837),
- [anon_sym_let] = ACTIONS(1837),
- [anon_sym_const] = ACTIONS(1837),
- [anon_sym_BANG] = ACTIONS(1835),
- [anon_sym_else] = ACTIONS(1837),
- [anon_sym_if] = ACTIONS(1837),
- [anon_sym_switch] = ACTIONS(1837),
- [anon_sym_for] = ACTIONS(1837),
- [anon_sym_LPAREN] = ACTIONS(1835),
- [anon_sym_await] = ACTIONS(1837),
- [anon_sym_while] = ACTIONS(1837),
- [anon_sym_do] = ACTIONS(1837),
- [anon_sym_try] = ACTIONS(1837),
- [anon_sym_break] = ACTIONS(1837),
- [anon_sym_continue] = ACTIONS(1837),
- [anon_sym_debugger] = ACTIONS(1837),
- [anon_sym_return] = ACTIONS(1837),
- [anon_sym_throw] = ACTIONS(1837),
- [anon_sym_SEMI] = ACTIONS(1835),
- [anon_sym_case] = ACTIONS(1837),
- [anon_sym_yield] = ACTIONS(1837),
- [anon_sym_LBRACK] = ACTIONS(1835),
- [sym_glimmer_opening_tag] = ACTIONS(1835),
- [anon_sym_DQUOTE] = ACTIONS(1835),
- [anon_sym_SQUOTE] = ACTIONS(1835),
- [anon_sym_class] = ACTIONS(1837),
- [anon_sym_async] = ACTIONS(1837),
- [anon_sym_function] = ACTIONS(1837),
- [anon_sym_new] = ACTIONS(1837),
- [anon_sym_using] = ACTIONS(1837),
- [anon_sym_PLUS] = ACTIONS(1837),
- [anon_sym_DASH] = ACTIONS(1837),
- [anon_sym_SLASH] = ACTIONS(1837),
- [anon_sym_LT] = ACTIONS(1837),
- [anon_sym_TILDE] = ACTIONS(1835),
- [anon_sym_void] = ACTIONS(1837),
- [anon_sym_delete] = ACTIONS(1837),
- [anon_sym_PLUS_PLUS] = ACTIONS(1835),
- [anon_sym_DASH_DASH] = ACTIONS(1835),
- [sym_comment] = ACTIONS(5),
- [anon_sym_BQUOTE] = ACTIONS(1835),
- [sym_number] = ACTIONS(1835),
- [sym_private_property_identifier] = ACTIONS(1835),
- [sym_this] = ACTIONS(1837),
- [sym_super] = ACTIONS(1837),
- [sym_true] = ACTIONS(1837),
- [sym_false] = ACTIONS(1837),
- [sym_null] = ACTIONS(1837),
- [sym_undefined] = ACTIONS(1837),
- [anon_sym_AT] = ACTIONS(1835),
- [anon_sym_static] = ACTIONS(1837),
- [anon_sym_readonly] = ACTIONS(1837),
- [anon_sym_get] = ACTIONS(1837),
- [anon_sym_set] = ACTIONS(1837),
- [anon_sym_declare] = ACTIONS(1837),
- [anon_sym_public] = ACTIONS(1837),
- [anon_sym_private] = ACTIONS(1837),
- [anon_sym_protected] = ACTIONS(1837),
- [anon_sym_override] = ACTIONS(1837),
- [anon_sym_module] = ACTIONS(1837),
- [anon_sym_any] = ACTIONS(1837),
- [anon_sym_number] = ACTIONS(1837),
- [anon_sym_boolean] = ACTIONS(1837),
- [anon_sym_string] = ACTIONS(1837),
- [anon_sym_symbol] = ACTIONS(1837),
- [anon_sym_object] = ACTIONS(1837),
- [anon_sym_abstract] = ACTIONS(1837),
- [anon_sym_interface] = ACTIONS(1837),
- [anon_sym_enum] = ACTIONS(1837),
- [sym__automatic_semicolon] = ACTIONS(1843),
- [sym_html_comment] = ACTIONS(5),
- },
- [737] = {
- [ts_builtin_sym_end] = ACTIONS(1797),
- [sym_identifier] = ACTIONS(1799),
- [anon_sym_export] = ACTIONS(1799),
- [anon_sym_default] = ACTIONS(1799),
- [anon_sym_type] = ACTIONS(1799),
- [anon_sym_namespace] = ACTIONS(1799),
- [anon_sym_LBRACE] = ACTIONS(1797),
- [anon_sym_RBRACE] = ACTIONS(1797),
- [anon_sym_typeof] = ACTIONS(1799),
- [anon_sym_import] = ACTIONS(1799),
- [anon_sym_with] = ACTIONS(1799),
- [anon_sym_var] = ACTIONS(1799),
- [anon_sym_let] = ACTIONS(1799),
- [anon_sym_const] = ACTIONS(1799),
- [anon_sym_BANG] = ACTIONS(1797),
- [anon_sym_else] = ACTIONS(1799),
- [anon_sym_if] = ACTIONS(1799),
- [anon_sym_switch] = ACTIONS(1799),
- [anon_sym_for] = ACTIONS(1799),
- [anon_sym_LPAREN] = ACTIONS(1797),
- [anon_sym_await] = ACTIONS(1799),
- [anon_sym_while] = ACTIONS(1799),
- [anon_sym_do] = ACTIONS(1799),
- [anon_sym_try] = ACTIONS(1799),
- [anon_sym_break] = ACTIONS(1799),
- [anon_sym_continue] = ACTIONS(1799),
- [anon_sym_debugger] = ACTIONS(1799),
- [anon_sym_return] = ACTIONS(1799),
- [anon_sym_throw] = ACTIONS(1799),
- [anon_sym_SEMI] = ACTIONS(1797),
- [anon_sym_case] = ACTIONS(1799),
- [anon_sym_yield] = ACTIONS(1799),
- [anon_sym_LBRACK] = ACTIONS(1797),
- [sym_glimmer_opening_tag] = ACTIONS(1797),
- [anon_sym_DOT] = ACTIONS(1799),
- [anon_sym_DQUOTE] = ACTIONS(1797),
- [anon_sym_SQUOTE] = ACTIONS(1797),
- [anon_sym_class] = ACTIONS(1799),
- [anon_sym_async] = ACTIONS(1799),
- [anon_sym_function] = ACTIONS(1799),
- [anon_sym_new] = ACTIONS(1799),
- [anon_sym_using] = ACTIONS(1799),
- [anon_sym_PLUS] = ACTIONS(1799),
- [anon_sym_DASH] = ACTIONS(1799),
- [anon_sym_SLASH] = ACTIONS(1799),
- [anon_sym_LT] = ACTIONS(1799),
- [anon_sym_TILDE] = ACTIONS(1797),
- [anon_sym_void] = ACTIONS(1799),
- [anon_sym_delete] = ACTIONS(1799),
- [anon_sym_PLUS_PLUS] = ACTIONS(1797),
- [anon_sym_DASH_DASH] = ACTIONS(1797),
- [sym_comment] = ACTIONS(5),
- [anon_sym_BQUOTE] = ACTIONS(1797),
- [sym_number] = ACTIONS(1797),
- [sym_private_property_identifier] = ACTIONS(1797),
- [sym_this] = ACTIONS(1799),
- [sym_super] = ACTIONS(1799),
- [sym_true] = ACTIONS(1799),
- [sym_false] = ACTIONS(1799),
- [sym_null] = ACTIONS(1799),
- [sym_undefined] = ACTIONS(1799),
- [anon_sym_AT] = ACTIONS(1797),
- [anon_sym_static] = ACTIONS(1799),
- [anon_sym_readonly] = ACTIONS(1799),
- [anon_sym_get] = ACTIONS(1799),
- [anon_sym_set] = ACTIONS(1799),
- [anon_sym_declare] = ACTIONS(1799),
- [anon_sym_public] = ACTIONS(1799),
- [anon_sym_private] = ACTIONS(1799),
- [anon_sym_protected] = ACTIONS(1799),
- [anon_sym_override] = ACTIONS(1799),
- [anon_sym_module] = ACTIONS(1799),
- [anon_sym_any] = ACTIONS(1799),
- [anon_sym_number] = ACTIONS(1799),
- [anon_sym_boolean] = ACTIONS(1799),
- [anon_sym_string] = ACTIONS(1799),
- [anon_sym_symbol] = ACTIONS(1799),
- [anon_sym_object] = ACTIONS(1799),
- [anon_sym_abstract] = ACTIONS(1799),
- [anon_sym_interface] = ACTIONS(1799),
- [anon_sym_enum] = ACTIONS(1799),
- [sym_html_comment] = ACTIONS(5),
- },
- [738] = {
- [ts_builtin_sym_end] = ACTIONS(2479),
- [sym_identifier] = ACTIONS(2481),
- [anon_sym_export] = ACTIONS(2481),
- [anon_sym_default] = ACTIONS(2481),
- [anon_sym_type] = ACTIONS(2481),
- [anon_sym_namespace] = ACTIONS(2481),
- [anon_sym_LBRACE] = ACTIONS(2479),
- [anon_sym_RBRACE] = ACTIONS(2479),
- [anon_sym_typeof] = ACTIONS(2481),
- [anon_sym_import] = ACTIONS(2481),
- [anon_sym_with] = ACTIONS(2481),
- [anon_sym_var] = ACTIONS(2481),
- [anon_sym_let] = ACTIONS(2481),
- [anon_sym_const] = ACTIONS(2481),
- [anon_sym_BANG] = ACTIONS(2479),
- [anon_sym_else] = ACTIONS(2481),
- [anon_sym_if] = ACTIONS(2481),
- [anon_sym_switch] = ACTIONS(2481),
- [anon_sym_for] = ACTIONS(2481),
- [anon_sym_LPAREN] = ACTIONS(2479),
- [anon_sym_RPAREN] = ACTIONS(2479),
- [anon_sym_await] = ACTIONS(2481),
- [anon_sym_while] = ACTIONS(2481),
- [anon_sym_do] = ACTIONS(2481),
- [anon_sym_try] = ACTIONS(2481),
- [anon_sym_break] = ACTIONS(2481),
- [anon_sym_continue] = ACTIONS(2481),
- [anon_sym_debugger] = ACTIONS(2481),
- [anon_sym_return] = ACTIONS(2481),
- [anon_sym_throw] = ACTIONS(2481),
- [anon_sym_SEMI] = ACTIONS(2479),
- [anon_sym_case] = ACTIONS(2481),
- [anon_sym_yield] = ACTIONS(2481),
- [anon_sym_LBRACK] = ACTIONS(2479),
- [sym_glimmer_opening_tag] = ACTIONS(2479),
- [anon_sym_DQUOTE] = ACTIONS(2479),
- [anon_sym_SQUOTE] = ACTIONS(2479),
- [anon_sym_class] = ACTIONS(2481),
- [anon_sym_async] = ACTIONS(2481),
- [anon_sym_function] = ACTIONS(2481),
- [anon_sym_new] = ACTIONS(2481),
- [anon_sym_using] = ACTIONS(2481),
- [anon_sym_PLUS] = ACTIONS(2481),
- [anon_sym_DASH] = ACTIONS(2481),
- [anon_sym_SLASH] = ACTIONS(2481),
- [anon_sym_LT] = ACTIONS(2481),
- [anon_sym_TILDE] = ACTIONS(2479),
- [anon_sym_void] = ACTIONS(2481),
- [anon_sym_delete] = ACTIONS(2481),
- [anon_sym_PLUS_PLUS] = ACTIONS(2479),
- [anon_sym_DASH_DASH] = ACTIONS(2479),
- [sym_comment] = ACTIONS(5),
- [anon_sym_BQUOTE] = ACTIONS(2479),
- [sym_number] = ACTIONS(2479),
- [sym_private_property_identifier] = ACTIONS(2479),
- [sym_this] = ACTIONS(2481),
- [sym_super] = ACTIONS(2481),
- [sym_true] = ACTIONS(2481),
- [sym_false] = ACTIONS(2481),
- [sym_null] = ACTIONS(2481),
- [sym_undefined] = ACTIONS(2481),
- [anon_sym_AT] = ACTIONS(2479),
- [anon_sym_static] = ACTIONS(2481),
- [anon_sym_readonly] = ACTIONS(2481),
- [anon_sym_get] = ACTIONS(2481),
- [anon_sym_set] = ACTIONS(2481),
- [anon_sym_declare] = ACTIONS(2481),
- [anon_sym_public] = ACTIONS(2481),
- [anon_sym_private] = ACTIONS(2481),
- [anon_sym_protected] = ACTIONS(2481),
- [anon_sym_override] = ACTIONS(2481),
- [anon_sym_module] = ACTIONS(2481),
- [anon_sym_any] = ACTIONS(2481),
- [anon_sym_number] = ACTIONS(2481),
- [anon_sym_boolean] = ACTIONS(2481),
- [anon_sym_string] = ACTIONS(2481),
- [anon_sym_symbol] = ACTIONS(2481),
- [anon_sym_object] = ACTIONS(2481),
- [anon_sym_abstract] = ACTIONS(2481),
- [anon_sym_interface] = ACTIONS(2481),
- [anon_sym_enum] = ACTIONS(2481),
- [sym_html_comment] = ACTIONS(5),
- },
- [739] = {
- [ts_builtin_sym_end] = ACTIONS(1855),
- [sym_identifier] = ACTIONS(1857),
- [anon_sym_export] = ACTIONS(1857),
- [anon_sym_default] = ACTIONS(1857),
- [anon_sym_type] = ACTIONS(1857),
- [anon_sym_namespace] = ACTIONS(1857),
- [anon_sym_LBRACE] = ACTIONS(1855),
- [anon_sym_RBRACE] = ACTIONS(1855),
- [anon_sym_typeof] = ACTIONS(1857),
- [anon_sym_import] = ACTIONS(1857),
- [anon_sym_with] = ACTIONS(1857),
- [anon_sym_var] = ACTIONS(1857),
- [anon_sym_let] = ACTIONS(1857),
- [anon_sym_const] = ACTIONS(1857),
- [anon_sym_BANG] = ACTIONS(1855),
- [anon_sym_else] = ACTIONS(1857),
- [anon_sym_if] = ACTIONS(1857),
- [anon_sym_switch] = ACTIONS(1857),
- [anon_sym_for] = ACTIONS(1857),
- [anon_sym_LPAREN] = ACTIONS(1855),
- [anon_sym_await] = ACTIONS(1857),
- [anon_sym_while] = ACTIONS(1857),
- [anon_sym_do] = ACTIONS(1857),
- [anon_sym_try] = ACTIONS(1857),
- [anon_sym_break] = ACTIONS(1857),
- [anon_sym_continue] = ACTIONS(1857),
- [anon_sym_debugger] = ACTIONS(1857),
- [anon_sym_return] = ACTIONS(1857),
- [anon_sym_throw] = ACTIONS(1857),
- [anon_sym_SEMI] = ACTIONS(1855),
- [anon_sym_case] = ACTIONS(1857),
- [anon_sym_yield] = ACTIONS(1857),
- [anon_sym_LBRACK] = ACTIONS(1855),
- [sym_glimmer_opening_tag] = ACTIONS(1855),
- [anon_sym_DOT] = ACTIONS(1857),
- [anon_sym_DQUOTE] = ACTIONS(1855),
- [anon_sym_SQUOTE] = ACTIONS(1855),
- [anon_sym_class] = ACTIONS(1857),
- [anon_sym_async] = ACTIONS(1857),
- [anon_sym_function] = ACTIONS(1857),
- [anon_sym_new] = ACTIONS(1857),
- [anon_sym_using] = ACTIONS(1857),
- [anon_sym_PLUS] = ACTIONS(1857),
- [anon_sym_DASH] = ACTIONS(1857),
- [anon_sym_SLASH] = ACTIONS(1857),
- [anon_sym_LT] = ACTIONS(1857),
- [anon_sym_TILDE] = ACTIONS(1855),
- [anon_sym_void] = ACTIONS(1857),
- [anon_sym_delete] = ACTIONS(1857),
- [anon_sym_PLUS_PLUS] = ACTIONS(1855),
- [anon_sym_DASH_DASH] = ACTIONS(1855),
- [sym_comment] = ACTIONS(5),
- [anon_sym_BQUOTE] = ACTIONS(1855),
- [sym_number] = ACTIONS(1855),
- [sym_private_property_identifier] = ACTIONS(1855),
- [sym_this] = ACTIONS(1857),
- [sym_super] = ACTIONS(1857),
- [sym_true] = ACTIONS(1857),
- [sym_false] = ACTIONS(1857),
- [sym_null] = ACTIONS(1857),
- [sym_undefined] = ACTIONS(1857),
- [anon_sym_AT] = ACTIONS(1855),
- [anon_sym_static] = ACTIONS(1857),
- [anon_sym_readonly] = ACTIONS(1857),
- [anon_sym_get] = ACTIONS(1857),
- [anon_sym_set] = ACTIONS(1857),
- [anon_sym_declare] = ACTIONS(1857),
- [anon_sym_public] = ACTIONS(1857),
- [anon_sym_private] = ACTIONS(1857),
- [anon_sym_protected] = ACTIONS(1857),
- [anon_sym_override] = ACTIONS(1857),
- [anon_sym_module] = ACTIONS(1857),
- [anon_sym_any] = ACTIONS(1857),
- [anon_sym_number] = ACTIONS(1857),
- [anon_sym_boolean] = ACTIONS(1857),
- [anon_sym_string] = ACTIONS(1857),
- [anon_sym_symbol] = ACTIONS(1857),
- [anon_sym_object] = ACTIONS(1857),
- [anon_sym_abstract] = ACTIONS(1857),
- [anon_sym_interface] = ACTIONS(1857),
- [anon_sym_enum] = ACTIONS(1857),
- [sym_html_comment] = ACTIONS(5),
- },
- [740] = {
- [sym__call_signature] = STATE(5738),
- [sym_formal_parameters] = STATE(3742),
- [sym_type_parameters] = STATE(5349),
- [sym_identifier] = ACTIONS(2369),
- [anon_sym_export] = ACTIONS(2371),
- [anon_sym_STAR] = ACTIONS(122),
- [anon_sym_type] = ACTIONS(2371),
- [anon_sym_EQ] = ACTIONS(976),
- [anon_sym_as] = ACTIONS(122),
- [anon_sym_namespace] = ACTIONS(2371),
- [anon_sym_let] = ACTIONS(2371),
- [anon_sym_BANG] = ACTIONS(122),
- [anon_sym_LPAREN] = ACTIONS(2373),
- [anon_sym_in] = ACTIONS(122),
- [anon_sym_LBRACK] = ACTIONS(162),
- [anon_sym_GT] = ACTIONS(122),
- [anon_sym_DOT] = ACTIONS(162),
- [anon_sym_async] = ACTIONS(2371),
- [anon_sym_function] = ACTIONS(2376),
- [anon_sym_EQ_GT] = ACTIONS(229),
- [anon_sym_QMARK_DOT] = ACTIONS(162),
- [anon_sym_new] = ACTIONS(2371),
- [anon_sym_PLUS_EQ] = ACTIONS(168),
- [anon_sym_DASH_EQ] = ACTIONS(168),
- [anon_sym_STAR_EQ] = ACTIONS(168),
- [anon_sym_SLASH_EQ] = ACTIONS(168),
- [anon_sym_PERCENT_EQ] = ACTIONS(168),
- [anon_sym_CARET_EQ] = ACTIONS(168),
- [anon_sym_AMP_EQ] = ACTIONS(168),
- [anon_sym_PIPE_EQ] = ACTIONS(168),
- [anon_sym_GT_GT_EQ] = ACTIONS(168),
- [anon_sym_GT_GT_GT_EQ] = ACTIONS(168),
- [anon_sym_LT_LT_EQ] = ACTIONS(168),
- [anon_sym_STAR_STAR_EQ] = ACTIONS(168),
- [anon_sym_AMP_AMP_EQ] = ACTIONS(168),
- [anon_sym_PIPE_PIPE_EQ] = ACTIONS(168),
- [anon_sym_QMARK_QMARK_EQ] = ACTIONS(168),
- [anon_sym_AMP_AMP] = ACTIONS(122),
- [anon_sym_PIPE_PIPE] = ACTIONS(122),
- [anon_sym_GT_GT] = ACTIONS(122),
- [anon_sym_GT_GT_GT] = ACTIONS(122),
- [anon_sym_LT_LT] = ACTIONS(122),
- [anon_sym_AMP] = ACTIONS(122),
- [anon_sym_CARET] = ACTIONS(122),
- [anon_sym_PIPE] = ACTIONS(122),
- [anon_sym_PLUS] = ACTIONS(122),
- [anon_sym_DASH] = ACTIONS(122),
- [anon_sym_SLASH] = ACTIONS(122),
- [anon_sym_PERCENT] = ACTIONS(122),
- [anon_sym_STAR_STAR] = ACTIONS(122),
- [anon_sym_LT] = ACTIONS(2378),
- [anon_sym_LT_EQ] = ACTIONS(162),
- [anon_sym_EQ_EQ] = ACTIONS(122),
- [anon_sym_EQ_EQ_EQ] = ACTIONS(162),
- [anon_sym_BANG_EQ] = ACTIONS(122),
- [anon_sym_BANG_EQ_EQ] = ACTIONS(162),
- [anon_sym_GT_EQ] = ACTIONS(162),
- [anon_sym_QMARK_QMARK] = ACTIONS(122),
- [anon_sym_instanceof] = ACTIONS(122),
- [anon_sym_PLUS_PLUS] = ACTIONS(162),
- [anon_sym_DASH_DASH] = ACTIONS(162),
- [sym_comment] = ACTIONS(5),
- [anon_sym_BQUOTE] = ACTIONS(162),
- [anon_sym_static] = ACTIONS(2371),
- [anon_sym_readonly] = ACTIONS(2371),
- [anon_sym_get] = ACTIONS(2371),
- [anon_sym_set] = ACTIONS(2371),
- [anon_sym_declare] = ACTIONS(2371),
- [anon_sym_public] = ACTIONS(2371),
- [anon_sym_private] = ACTIONS(2371),
- [anon_sym_protected] = ACTIONS(2371),
- [anon_sym_override] = ACTIONS(2371),
- [anon_sym_module] = ACTIONS(2371),
- [anon_sym_any] = ACTIONS(2371),
- [anon_sym_number] = ACTIONS(2371),
- [anon_sym_boolean] = ACTIONS(2371),
- [anon_sym_string] = ACTIONS(2371),
- [anon_sym_symbol] = ACTIONS(2371),
- [anon_sym_object] = ACTIONS(2371),
- [anon_sym_satisfies] = ACTIONS(122),
- [sym__ternary_qmark] = ACTIONS(162),
- [sym_html_comment] = ACTIONS(5),
- },
- [741] = {
- [sym_statement_block] = STATE(862),
- [ts_builtin_sym_end] = ACTIONS(1712),
- [sym_identifier] = ACTIONS(1714),
- [anon_sym_export] = ACTIONS(1714),
- [anon_sym_default] = ACTIONS(1714),
- [anon_sym_type] = ACTIONS(1714),
- [anon_sym_namespace] = ACTIONS(1714),
- [anon_sym_LBRACE] = ACTIONS(2437),
- [anon_sym_RBRACE] = ACTIONS(1712),
- [anon_sym_typeof] = ACTIONS(1714),
- [anon_sym_import] = ACTIONS(1714),
- [anon_sym_with] = ACTIONS(1714),
- [anon_sym_var] = ACTIONS(1714),
- [anon_sym_let] = ACTIONS(1714),
- [anon_sym_const] = ACTIONS(1714),
- [anon_sym_BANG] = ACTIONS(1712),
- [anon_sym_else] = ACTIONS(1714),
- [anon_sym_if] = ACTIONS(1714),
- [anon_sym_switch] = ACTIONS(1714),
- [anon_sym_for] = ACTIONS(1714),
- [anon_sym_LPAREN] = ACTIONS(1712),
- [anon_sym_await] = ACTIONS(1714),
- [anon_sym_while] = ACTIONS(1714),
- [anon_sym_do] = ACTIONS(1714),
- [anon_sym_try] = ACTIONS(1714),
- [anon_sym_break] = ACTIONS(1714),
- [anon_sym_continue] = ACTIONS(1714),
- [anon_sym_debugger] = ACTIONS(1714),
- [anon_sym_return] = ACTIONS(1714),
- [anon_sym_throw] = ACTIONS(1714),
- [anon_sym_SEMI] = ACTIONS(1712),
- [anon_sym_case] = ACTIONS(1714),
- [anon_sym_yield] = ACTIONS(1714),
- [anon_sym_LBRACK] = ACTIONS(1712),
- [sym_glimmer_opening_tag] = ACTIONS(1712),
- [anon_sym_DQUOTE] = ACTIONS(1712),
- [anon_sym_SQUOTE] = ACTIONS(1712),
- [anon_sym_class] = ACTIONS(1714),
- [anon_sym_async] = ACTIONS(1714),
- [anon_sym_function] = ACTIONS(1714),
- [anon_sym_new] = ACTIONS(1714),
- [anon_sym_using] = ACTIONS(1714),
- [anon_sym_PLUS] = ACTIONS(1714),
- [anon_sym_DASH] = ACTIONS(1714),
- [anon_sym_SLASH] = ACTIONS(1714),
- [anon_sym_LT] = ACTIONS(1714),
- [anon_sym_TILDE] = ACTIONS(1712),
- [anon_sym_void] = ACTIONS(1714),
- [anon_sym_delete] = ACTIONS(1714),
- [anon_sym_PLUS_PLUS] = ACTIONS(1712),
- [anon_sym_DASH_DASH] = ACTIONS(1712),
- [sym_comment] = ACTIONS(5),
- [anon_sym_BQUOTE] = ACTIONS(1712),
- [sym_number] = ACTIONS(1712),
- [sym_private_property_identifier] = ACTIONS(1712),
- [sym_this] = ACTIONS(1714),
- [sym_super] = ACTIONS(1714),
- [sym_true] = ACTIONS(1714),
- [sym_false] = ACTIONS(1714),
- [sym_null] = ACTIONS(1714),
- [sym_undefined] = ACTIONS(1714),
- [anon_sym_AT] = ACTIONS(1712),
- [anon_sym_static] = ACTIONS(1714),
- [anon_sym_readonly] = ACTIONS(1714),
- [anon_sym_get] = ACTIONS(1714),
- [anon_sym_set] = ACTIONS(1714),
- [anon_sym_declare] = ACTIONS(1714),
- [anon_sym_public] = ACTIONS(1714),
- [anon_sym_private] = ACTIONS(1714),
- [anon_sym_protected] = ACTIONS(1714),
- [anon_sym_override] = ACTIONS(1714),
- [anon_sym_module] = ACTIONS(1714),
- [anon_sym_any] = ACTIONS(1714),
- [anon_sym_number] = ACTIONS(1714),
- [anon_sym_boolean] = ACTIONS(1714),
- [anon_sym_string] = ACTIONS(1714),
- [anon_sym_symbol] = ACTIONS(1714),
- [anon_sym_object] = ACTIONS(1714),
- [anon_sym_abstract] = ACTIONS(1714),
- [anon_sym_interface] = ACTIONS(1714),
- [anon_sym_enum] = ACTIONS(1714),
- [sym_html_comment] = ACTIONS(5),
- },
- [742] = {
- [sym__call_signature] = STATE(5738),
- [sym_formal_parameters] = STATE(3742),
- [sym_type_parameters] = STATE(5349),
- [sym_identifier] = ACTIONS(2369),
- [anon_sym_export] = ACTIONS(2371),
- [anon_sym_STAR] = ACTIONS(122),
- [anon_sym_type] = ACTIONS(2371),
- [anon_sym_EQ] = ACTIONS(978),
- [anon_sym_as] = ACTIONS(122),
- [anon_sym_namespace] = ACTIONS(2371),
- [anon_sym_let] = ACTIONS(2371),
- [anon_sym_BANG] = ACTIONS(122),
- [anon_sym_LPAREN] = ACTIONS(2373),
- [anon_sym_in] = ACTIONS(122),
- [anon_sym_LBRACK] = ACTIONS(162),
- [anon_sym_GT] = ACTIONS(122),
- [anon_sym_DOT] = ACTIONS(162),
- [anon_sym_async] = ACTIONS(2371),
- [anon_sym_function] = ACTIONS(2376),
- [anon_sym_EQ_GT] = ACTIONS(229),
- [anon_sym_QMARK_DOT] = ACTIONS(162),
- [anon_sym_new] = ACTIONS(2371),
- [anon_sym_PLUS_EQ] = ACTIONS(168),
- [anon_sym_DASH_EQ] = ACTIONS(168),
- [anon_sym_STAR_EQ] = ACTIONS(168),
- [anon_sym_SLASH_EQ] = ACTIONS(168),
- [anon_sym_PERCENT_EQ] = ACTIONS(168),
- [anon_sym_CARET_EQ] = ACTIONS(168),
- [anon_sym_AMP_EQ] = ACTIONS(168),
- [anon_sym_PIPE_EQ] = ACTIONS(168),
- [anon_sym_GT_GT_EQ] = ACTIONS(168),
- [anon_sym_GT_GT_GT_EQ] = ACTIONS(168),
- [anon_sym_LT_LT_EQ] = ACTIONS(168),
- [anon_sym_STAR_STAR_EQ] = ACTIONS(168),
- [anon_sym_AMP_AMP_EQ] = ACTIONS(168),
- [anon_sym_PIPE_PIPE_EQ] = ACTIONS(168),
- [anon_sym_QMARK_QMARK_EQ] = ACTIONS(168),
- [anon_sym_AMP_AMP] = ACTIONS(122),
- [anon_sym_PIPE_PIPE] = ACTIONS(122),
- [anon_sym_GT_GT] = ACTIONS(122),
- [anon_sym_GT_GT_GT] = ACTIONS(122),
- [anon_sym_LT_LT] = ACTIONS(122),
- [anon_sym_AMP] = ACTIONS(122),
- [anon_sym_CARET] = ACTIONS(122),
- [anon_sym_PIPE] = ACTIONS(122),
- [anon_sym_PLUS] = ACTIONS(122),
- [anon_sym_DASH] = ACTIONS(122),
- [anon_sym_SLASH] = ACTIONS(122),
- [anon_sym_PERCENT] = ACTIONS(122),
- [anon_sym_STAR_STAR] = ACTIONS(122),
- [anon_sym_LT] = ACTIONS(2378),
- [anon_sym_LT_EQ] = ACTIONS(162),
- [anon_sym_EQ_EQ] = ACTIONS(122),
- [anon_sym_EQ_EQ_EQ] = ACTIONS(162),
- [anon_sym_BANG_EQ] = ACTIONS(122),
- [anon_sym_BANG_EQ_EQ] = ACTIONS(162),
- [anon_sym_GT_EQ] = ACTIONS(162),
- [anon_sym_QMARK_QMARK] = ACTIONS(122),
- [anon_sym_instanceof] = ACTIONS(122),
- [anon_sym_PLUS_PLUS] = ACTIONS(162),
- [anon_sym_DASH_DASH] = ACTIONS(162),
- [sym_comment] = ACTIONS(5),
- [anon_sym_BQUOTE] = ACTIONS(162),
- [anon_sym_static] = ACTIONS(2371),
- [anon_sym_readonly] = ACTIONS(2371),
- [anon_sym_get] = ACTIONS(2371),
- [anon_sym_set] = ACTIONS(2371),
- [anon_sym_declare] = ACTIONS(2371),
- [anon_sym_public] = ACTIONS(2371),
- [anon_sym_private] = ACTIONS(2371),
- [anon_sym_protected] = ACTIONS(2371),
- [anon_sym_override] = ACTIONS(2371),
- [anon_sym_module] = ACTIONS(2371),
- [anon_sym_any] = ACTIONS(2371),
- [anon_sym_number] = ACTIONS(2371),
- [anon_sym_boolean] = ACTIONS(2371),
- [anon_sym_string] = ACTIONS(2371),
- [anon_sym_symbol] = ACTIONS(2371),
- [anon_sym_object] = ACTIONS(2371),
- [anon_sym_satisfies] = ACTIONS(122),
- [sym__ternary_qmark] = ACTIONS(162),
- [sym_html_comment] = ACTIONS(5),
- },
- [743] = {
- [sym__call_signature] = STATE(5738),
- [sym_formal_parameters] = STATE(3742),
- [sym_type_parameters] = STATE(5349),
- [sym_identifier] = ACTIONS(2369),
- [anon_sym_export] = ACTIONS(2371),
- [anon_sym_STAR] = ACTIONS(122),
- [anon_sym_type] = ACTIONS(2371),
- [anon_sym_EQ] = ACTIONS(974),
- [anon_sym_as] = ACTIONS(122),
- [anon_sym_namespace] = ACTIONS(2371),
- [anon_sym_let] = ACTIONS(2371),
- [anon_sym_BANG] = ACTIONS(122),
- [anon_sym_LPAREN] = ACTIONS(2373),
- [anon_sym_in] = ACTIONS(122),
- [anon_sym_LBRACK] = ACTIONS(162),
- [anon_sym_GT] = ACTIONS(122),
- [anon_sym_DOT] = ACTIONS(162),
- [anon_sym_async] = ACTIONS(2371),
- [anon_sym_function] = ACTIONS(2376),
- [anon_sym_EQ_GT] = ACTIONS(229),
- [anon_sym_QMARK_DOT] = ACTIONS(162),
- [anon_sym_new] = ACTIONS(2371),
- [anon_sym_PLUS_EQ] = ACTIONS(168),
- [anon_sym_DASH_EQ] = ACTIONS(168),
- [anon_sym_STAR_EQ] = ACTIONS(168),
- [anon_sym_SLASH_EQ] = ACTIONS(168),
- [anon_sym_PERCENT_EQ] = ACTIONS(168),
- [anon_sym_CARET_EQ] = ACTIONS(168),
- [anon_sym_AMP_EQ] = ACTIONS(168),
- [anon_sym_PIPE_EQ] = ACTIONS(168),
- [anon_sym_GT_GT_EQ] = ACTIONS(168),
- [anon_sym_GT_GT_GT_EQ] = ACTIONS(168),
- [anon_sym_LT_LT_EQ] = ACTIONS(168),
- [anon_sym_STAR_STAR_EQ] = ACTIONS(168),
- [anon_sym_AMP_AMP_EQ] = ACTIONS(168),
- [anon_sym_PIPE_PIPE_EQ] = ACTIONS(168),
- [anon_sym_QMARK_QMARK_EQ] = ACTIONS(168),
- [anon_sym_AMP_AMP] = ACTIONS(122),
- [anon_sym_PIPE_PIPE] = ACTIONS(122),
- [anon_sym_GT_GT] = ACTIONS(122),
- [anon_sym_GT_GT_GT] = ACTIONS(122),
- [anon_sym_LT_LT] = ACTIONS(122),
- [anon_sym_AMP] = ACTIONS(122),
- [anon_sym_CARET] = ACTIONS(122),
- [anon_sym_PIPE] = ACTIONS(122),
- [anon_sym_PLUS] = ACTIONS(122),
- [anon_sym_DASH] = ACTIONS(122),
- [anon_sym_SLASH] = ACTIONS(122),
- [anon_sym_PERCENT] = ACTIONS(122),
- [anon_sym_STAR_STAR] = ACTIONS(122),
- [anon_sym_LT] = ACTIONS(2378),
- [anon_sym_LT_EQ] = ACTIONS(162),
- [anon_sym_EQ_EQ] = ACTIONS(122),
- [anon_sym_EQ_EQ_EQ] = ACTIONS(162),
- [anon_sym_BANG_EQ] = ACTIONS(122),
- [anon_sym_BANG_EQ_EQ] = ACTIONS(162),
- [anon_sym_GT_EQ] = ACTIONS(162),
- [anon_sym_QMARK_QMARK] = ACTIONS(122),
- [anon_sym_instanceof] = ACTIONS(122),
- [anon_sym_PLUS_PLUS] = ACTIONS(162),
- [anon_sym_DASH_DASH] = ACTIONS(162),
- [sym_comment] = ACTIONS(5),
- [anon_sym_BQUOTE] = ACTIONS(162),
- [anon_sym_static] = ACTIONS(2371),
- [anon_sym_readonly] = ACTIONS(2371),
- [anon_sym_get] = ACTIONS(2371),
- [anon_sym_set] = ACTIONS(2371),
- [anon_sym_declare] = ACTIONS(2371),
- [anon_sym_public] = ACTIONS(2371),
- [anon_sym_private] = ACTIONS(2371),
- [anon_sym_protected] = ACTIONS(2371),
- [anon_sym_override] = ACTIONS(2371),
- [anon_sym_module] = ACTIONS(2371),
- [anon_sym_any] = ACTIONS(2371),
- [anon_sym_number] = ACTIONS(2371),
- [anon_sym_boolean] = ACTIONS(2371),
- [anon_sym_string] = ACTIONS(2371),
- [anon_sym_symbol] = ACTIONS(2371),
- [anon_sym_object] = ACTIONS(2371),
- [anon_sym_satisfies] = ACTIONS(122),
- [sym__ternary_qmark] = ACTIONS(162),
- [sym_html_comment] = ACTIONS(5),
- },
- [744] = {
- [sym__call_signature] = STATE(5738),
- [sym_formal_parameters] = STATE(3742),
- [sym_type_parameters] = STATE(5349),
- [sym_identifier] = ACTIONS(2369),
- [anon_sym_export] = ACTIONS(2371),
- [anon_sym_STAR] = ACTIONS(122),
- [anon_sym_type] = ACTIONS(2371),
- [anon_sym_EQ] = ACTIONS(988),
- [anon_sym_as] = ACTIONS(122),
- [anon_sym_namespace] = ACTIONS(2371),
- [anon_sym_let] = ACTIONS(2371),
- [anon_sym_BANG] = ACTIONS(122),
- [anon_sym_LPAREN] = ACTIONS(2373),
- [anon_sym_in] = ACTIONS(122),
- [anon_sym_LBRACK] = ACTIONS(162),
- [anon_sym_GT] = ACTIONS(122),
- [anon_sym_DOT] = ACTIONS(162),
- [anon_sym_async] = ACTIONS(2371),
- [anon_sym_function] = ACTIONS(2376),
- [anon_sym_EQ_GT] = ACTIONS(229),
- [anon_sym_QMARK_DOT] = ACTIONS(162),
- [anon_sym_new] = ACTIONS(2371),
- [anon_sym_PLUS_EQ] = ACTIONS(168),
- [anon_sym_DASH_EQ] = ACTIONS(168),
- [anon_sym_STAR_EQ] = ACTIONS(168),
- [anon_sym_SLASH_EQ] = ACTIONS(168),
- [anon_sym_PERCENT_EQ] = ACTIONS(168),
- [anon_sym_CARET_EQ] = ACTIONS(168),
- [anon_sym_AMP_EQ] = ACTIONS(168),
- [anon_sym_PIPE_EQ] = ACTIONS(168),
- [anon_sym_GT_GT_EQ] = ACTIONS(168),
- [anon_sym_GT_GT_GT_EQ] = ACTIONS(168),
- [anon_sym_LT_LT_EQ] = ACTIONS(168),
- [anon_sym_STAR_STAR_EQ] = ACTIONS(168),
- [anon_sym_AMP_AMP_EQ] = ACTIONS(168),
- [anon_sym_PIPE_PIPE_EQ] = ACTIONS(168),
- [anon_sym_QMARK_QMARK_EQ] = ACTIONS(168),
- [anon_sym_AMP_AMP] = ACTIONS(122),
- [anon_sym_PIPE_PIPE] = ACTIONS(122),
- [anon_sym_GT_GT] = ACTIONS(122),
- [anon_sym_GT_GT_GT] = ACTIONS(122),
- [anon_sym_LT_LT] = ACTIONS(122),
- [anon_sym_AMP] = ACTIONS(122),
- [anon_sym_CARET] = ACTIONS(122),
- [anon_sym_PIPE] = ACTIONS(122),
- [anon_sym_PLUS] = ACTIONS(122),
- [anon_sym_DASH] = ACTIONS(122),
- [anon_sym_SLASH] = ACTIONS(122),
- [anon_sym_PERCENT] = ACTIONS(122),
- [anon_sym_STAR_STAR] = ACTIONS(122),
- [anon_sym_LT] = ACTIONS(2378),
- [anon_sym_LT_EQ] = ACTIONS(162),
- [anon_sym_EQ_EQ] = ACTIONS(122),
- [anon_sym_EQ_EQ_EQ] = ACTIONS(162),
- [anon_sym_BANG_EQ] = ACTIONS(122),
- [anon_sym_BANG_EQ_EQ] = ACTIONS(162),
- [anon_sym_GT_EQ] = ACTIONS(162),
- [anon_sym_QMARK_QMARK] = ACTIONS(122),
- [anon_sym_instanceof] = ACTIONS(122),
- [anon_sym_PLUS_PLUS] = ACTIONS(162),
- [anon_sym_DASH_DASH] = ACTIONS(162),
- [sym_comment] = ACTIONS(5),
- [anon_sym_BQUOTE] = ACTIONS(162),
- [anon_sym_static] = ACTIONS(2371),
- [anon_sym_readonly] = ACTIONS(2371),
- [anon_sym_get] = ACTIONS(2371),
- [anon_sym_set] = ACTIONS(2371),
- [anon_sym_declare] = ACTIONS(2371),
- [anon_sym_public] = ACTIONS(2371),
- [anon_sym_private] = ACTIONS(2371),
- [anon_sym_protected] = ACTIONS(2371),
- [anon_sym_override] = ACTIONS(2371),
- [anon_sym_module] = ACTIONS(2371),
- [anon_sym_any] = ACTIONS(2371),
- [anon_sym_number] = ACTIONS(2371),
- [anon_sym_boolean] = ACTIONS(2371),
- [anon_sym_string] = ACTIONS(2371),
- [anon_sym_symbol] = ACTIONS(2371),
- [anon_sym_object] = ACTIONS(2371),
- [anon_sym_satisfies] = ACTIONS(122),
- [sym__ternary_qmark] = ACTIONS(162),
- [sym_html_comment] = ACTIONS(5),
- },
- [745] = {
- [sym__call_signature] = STATE(5738),
- [sym_formal_parameters] = STATE(3742),
- [sym_type_parameters] = STATE(5349),
- [sym_identifier] = ACTIONS(2369),
- [anon_sym_export] = ACTIONS(2371),
- [anon_sym_STAR] = ACTIONS(122),
- [anon_sym_type] = ACTIONS(2371),
- [anon_sym_EQ] = ACTIONS(972),
- [anon_sym_as] = ACTIONS(122),
- [anon_sym_namespace] = ACTIONS(2371),
- [anon_sym_let] = ACTIONS(2371),
- [anon_sym_BANG] = ACTIONS(122),
- [anon_sym_LPAREN] = ACTIONS(2373),
- [anon_sym_in] = ACTIONS(122),
- [anon_sym_LBRACK] = ACTIONS(162),
- [anon_sym_GT] = ACTIONS(122),
- [anon_sym_DOT] = ACTIONS(162),
- [anon_sym_async] = ACTIONS(2371),
- [anon_sym_function] = ACTIONS(2376),
- [anon_sym_EQ_GT] = ACTIONS(229),
- [anon_sym_QMARK_DOT] = ACTIONS(162),
- [anon_sym_new] = ACTIONS(2371),
- [anon_sym_PLUS_EQ] = ACTIONS(168),
- [anon_sym_DASH_EQ] = ACTIONS(168),
- [anon_sym_STAR_EQ] = ACTIONS(168),
- [anon_sym_SLASH_EQ] = ACTIONS(168),
- [anon_sym_PERCENT_EQ] = ACTIONS(168),
- [anon_sym_CARET_EQ] = ACTIONS(168),
- [anon_sym_AMP_EQ] = ACTIONS(168),
- [anon_sym_PIPE_EQ] = ACTIONS(168),
- [anon_sym_GT_GT_EQ] = ACTIONS(168),
- [anon_sym_GT_GT_GT_EQ] = ACTIONS(168),
- [anon_sym_LT_LT_EQ] = ACTIONS(168),
- [anon_sym_STAR_STAR_EQ] = ACTIONS(168),
- [anon_sym_AMP_AMP_EQ] = ACTIONS(168),
- [anon_sym_PIPE_PIPE_EQ] = ACTIONS(168),
- [anon_sym_QMARK_QMARK_EQ] = ACTIONS(168),
- [anon_sym_AMP_AMP] = ACTIONS(122),
- [anon_sym_PIPE_PIPE] = ACTIONS(122),
- [anon_sym_GT_GT] = ACTIONS(122),
- [anon_sym_GT_GT_GT] = ACTIONS(122),
- [anon_sym_LT_LT] = ACTIONS(122),
- [anon_sym_AMP] = ACTIONS(122),
- [anon_sym_CARET] = ACTIONS(122),
- [anon_sym_PIPE] = ACTIONS(122),
- [anon_sym_PLUS] = ACTIONS(122),
- [anon_sym_DASH] = ACTIONS(122),
- [anon_sym_SLASH] = ACTIONS(122),
- [anon_sym_PERCENT] = ACTIONS(122),
- [anon_sym_STAR_STAR] = ACTIONS(122),
- [anon_sym_LT] = ACTIONS(2378),
- [anon_sym_LT_EQ] = ACTIONS(162),
- [anon_sym_EQ_EQ] = ACTIONS(122),
- [anon_sym_EQ_EQ_EQ] = ACTIONS(162),
- [anon_sym_BANG_EQ] = ACTIONS(122),
- [anon_sym_BANG_EQ_EQ] = ACTIONS(162),
- [anon_sym_GT_EQ] = ACTIONS(162),
- [anon_sym_QMARK_QMARK] = ACTIONS(122),
- [anon_sym_instanceof] = ACTIONS(122),
- [anon_sym_PLUS_PLUS] = ACTIONS(162),
- [anon_sym_DASH_DASH] = ACTIONS(162),
- [sym_comment] = ACTIONS(5),
- [anon_sym_BQUOTE] = ACTIONS(162),
- [anon_sym_static] = ACTIONS(2371),
- [anon_sym_readonly] = ACTIONS(2371),
- [anon_sym_get] = ACTIONS(2371),
- [anon_sym_set] = ACTIONS(2371),
- [anon_sym_declare] = ACTIONS(2371),
- [anon_sym_public] = ACTIONS(2371),
- [anon_sym_private] = ACTIONS(2371),
- [anon_sym_protected] = ACTIONS(2371),
- [anon_sym_override] = ACTIONS(2371),
- [anon_sym_module] = ACTIONS(2371),
- [anon_sym_any] = ACTIONS(2371),
- [anon_sym_number] = ACTIONS(2371),
- [anon_sym_boolean] = ACTIONS(2371),
- [anon_sym_string] = ACTIONS(2371),
- [anon_sym_symbol] = ACTIONS(2371),
- [anon_sym_object] = ACTIONS(2371),
- [anon_sym_satisfies] = ACTIONS(122),
- [sym__ternary_qmark] = ACTIONS(162),
- [sym_html_comment] = ACTIONS(5),
- },
- [746] = {
- [ts_builtin_sym_end] = ACTIONS(1769),
- [sym_identifier] = ACTIONS(1771),
- [anon_sym_export] = ACTIONS(1771),
- [anon_sym_default] = ACTIONS(1771),
- [anon_sym_type] = ACTIONS(1771),
- [anon_sym_namespace] = ACTIONS(1771),
- [anon_sym_LBRACE] = ACTIONS(1769),
- [anon_sym_RBRACE] = ACTIONS(1769),
- [anon_sym_typeof] = ACTIONS(1771),
- [anon_sym_import] = ACTIONS(1771),
- [anon_sym_with] = ACTIONS(1771),
- [anon_sym_var] = ACTIONS(1771),
- [anon_sym_let] = ACTIONS(1771),
- [anon_sym_const] = ACTIONS(1771),
- [anon_sym_BANG] = ACTIONS(1769),
- [anon_sym_else] = ACTIONS(1771),
- [anon_sym_if] = ACTIONS(1771),
- [anon_sym_switch] = ACTIONS(1771),
- [anon_sym_for] = ACTIONS(1771),
- [anon_sym_LPAREN] = ACTIONS(1769),
- [anon_sym_await] = ACTIONS(1771),
- [anon_sym_while] = ACTIONS(1771),
- [anon_sym_do] = ACTIONS(1771),
- [anon_sym_try] = ACTIONS(1771),
- [anon_sym_break] = ACTIONS(1771),
- [anon_sym_continue] = ACTIONS(1771),
- [anon_sym_debugger] = ACTIONS(1771),
- [anon_sym_return] = ACTIONS(1771),
- [anon_sym_throw] = ACTIONS(1771),
- [anon_sym_SEMI] = ACTIONS(1769),
- [anon_sym_case] = ACTIONS(1771),
- [anon_sym_yield] = ACTIONS(1771),
- [anon_sym_LBRACK] = ACTIONS(1769),
- [sym_glimmer_opening_tag] = ACTIONS(1769),
- [anon_sym_DQUOTE] = ACTIONS(1769),
- [anon_sym_SQUOTE] = ACTIONS(1769),
- [anon_sym_class] = ACTIONS(1771),
- [anon_sym_async] = ACTIONS(1771),
- [anon_sym_function] = ACTIONS(1771),
- [anon_sym_new] = ACTIONS(1771),
- [anon_sym_using] = ACTIONS(1771),
- [anon_sym_PLUS] = ACTIONS(1771),
- [anon_sym_DASH] = ACTIONS(1771),
- [anon_sym_SLASH] = ACTIONS(1771),
- [anon_sym_LT] = ACTIONS(1771),
- [anon_sym_TILDE] = ACTIONS(1769),
- [anon_sym_void] = ACTIONS(1771),
- [anon_sym_delete] = ACTIONS(1771),
- [anon_sym_PLUS_PLUS] = ACTIONS(1769),
- [anon_sym_DASH_DASH] = ACTIONS(1769),
- [sym_comment] = ACTIONS(5),
- [anon_sym_BQUOTE] = ACTIONS(1769),
- [sym_number] = ACTIONS(1769),
- [sym_private_property_identifier] = ACTIONS(1769),
- [sym_this] = ACTIONS(1771),
- [sym_super] = ACTIONS(1771),
- [sym_true] = ACTIONS(1771),
- [sym_false] = ACTIONS(1771),
- [sym_null] = ACTIONS(1771),
- [sym_undefined] = ACTIONS(1771),
- [anon_sym_AT] = ACTIONS(1769),
- [anon_sym_static] = ACTIONS(1771),
- [anon_sym_readonly] = ACTIONS(1771),
- [anon_sym_get] = ACTIONS(1771),
- [anon_sym_set] = ACTIONS(1771),
- [anon_sym_declare] = ACTIONS(1771),
- [anon_sym_public] = ACTIONS(1771),
- [anon_sym_private] = ACTIONS(1771),
- [anon_sym_protected] = ACTIONS(1771),
- [anon_sym_override] = ACTIONS(1771),
- [anon_sym_module] = ACTIONS(1771),
- [anon_sym_any] = ACTIONS(1771),
- [anon_sym_number] = ACTIONS(1771),
- [anon_sym_boolean] = ACTIONS(1771),
- [anon_sym_string] = ACTIONS(1771),
- [anon_sym_symbol] = ACTIONS(1771),
- [anon_sym_object] = ACTIONS(1771),
- [anon_sym_abstract] = ACTIONS(1771),
- [anon_sym_interface] = ACTIONS(1771),
- [anon_sym_enum] = ACTIONS(1771),
- [sym__automatic_semicolon] = ACTIONS(1777),
- [sym_html_comment] = ACTIONS(5),
- },
- [747] = {
- [sym__call_signature] = STATE(5738),
- [sym_formal_parameters] = STATE(3742),
- [sym_type_parameters] = STATE(5349),
- [sym_identifier] = ACTIONS(2369),
- [anon_sym_export] = ACTIONS(2371),
- [anon_sym_STAR] = ACTIONS(122),
- [anon_sym_type] = ACTIONS(2371),
- [anon_sym_EQ] = ACTIONS(986),
- [anon_sym_as] = ACTIONS(122),
- [anon_sym_namespace] = ACTIONS(2371),
- [anon_sym_let] = ACTIONS(2371),
- [anon_sym_BANG] = ACTIONS(122),
- [anon_sym_LPAREN] = ACTIONS(2373),
- [anon_sym_in] = ACTIONS(122),
- [anon_sym_LBRACK] = ACTIONS(162),
- [anon_sym_GT] = ACTIONS(122),
- [anon_sym_DOT] = ACTIONS(162),
- [anon_sym_async] = ACTIONS(2371),
- [anon_sym_function] = ACTIONS(2376),
- [anon_sym_EQ_GT] = ACTIONS(229),
- [anon_sym_QMARK_DOT] = ACTIONS(162),
- [anon_sym_new] = ACTIONS(2371),
- [anon_sym_PLUS_EQ] = ACTIONS(168),
- [anon_sym_DASH_EQ] = ACTIONS(168),
- [anon_sym_STAR_EQ] = ACTIONS(168),
- [anon_sym_SLASH_EQ] = ACTIONS(168),
- [anon_sym_PERCENT_EQ] = ACTIONS(168),
- [anon_sym_CARET_EQ] = ACTIONS(168),
- [anon_sym_AMP_EQ] = ACTIONS(168),
- [anon_sym_PIPE_EQ] = ACTIONS(168),
- [anon_sym_GT_GT_EQ] = ACTIONS(168),
- [anon_sym_GT_GT_GT_EQ] = ACTIONS(168),
- [anon_sym_LT_LT_EQ] = ACTIONS(168),
- [anon_sym_STAR_STAR_EQ] = ACTIONS(168),
- [anon_sym_AMP_AMP_EQ] = ACTIONS(168),
- [anon_sym_PIPE_PIPE_EQ] = ACTIONS(168),
- [anon_sym_QMARK_QMARK_EQ] = ACTIONS(168),
- [anon_sym_AMP_AMP] = ACTIONS(122),
- [anon_sym_PIPE_PIPE] = ACTIONS(122),
- [anon_sym_GT_GT] = ACTIONS(122),
- [anon_sym_GT_GT_GT] = ACTIONS(122),
- [anon_sym_LT_LT] = ACTIONS(122),
- [anon_sym_AMP] = ACTIONS(122),
- [anon_sym_CARET] = ACTIONS(122),
- [anon_sym_PIPE] = ACTIONS(122),
- [anon_sym_PLUS] = ACTIONS(122),
- [anon_sym_DASH] = ACTIONS(122),
- [anon_sym_SLASH] = ACTIONS(122),
- [anon_sym_PERCENT] = ACTIONS(122),
- [anon_sym_STAR_STAR] = ACTIONS(122),
- [anon_sym_LT] = ACTIONS(2378),
- [anon_sym_LT_EQ] = ACTIONS(162),
- [anon_sym_EQ_EQ] = ACTIONS(122),
- [anon_sym_EQ_EQ_EQ] = ACTIONS(162),
- [anon_sym_BANG_EQ] = ACTIONS(122),
- [anon_sym_BANG_EQ_EQ] = ACTIONS(162),
- [anon_sym_GT_EQ] = ACTIONS(162),
- [anon_sym_QMARK_QMARK] = ACTIONS(122),
- [anon_sym_instanceof] = ACTIONS(122),
- [anon_sym_PLUS_PLUS] = ACTIONS(162),
- [anon_sym_DASH_DASH] = ACTIONS(162),
- [sym_comment] = ACTIONS(5),
- [anon_sym_BQUOTE] = ACTIONS(162),
- [anon_sym_static] = ACTIONS(2371),
- [anon_sym_readonly] = ACTIONS(2371),
- [anon_sym_get] = ACTIONS(2371),
- [anon_sym_set] = ACTIONS(2371),
- [anon_sym_declare] = ACTIONS(2371),
- [anon_sym_public] = ACTIONS(2371),
- [anon_sym_private] = ACTIONS(2371),
- [anon_sym_protected] = ACTIONS(2371),
- [anon_sym_override] = ACTIONS(2371),
- [anon_sym_module] = ACTIONS(2371),
- [anon_sym_any] = ACTIONS(2371),
- [anon_sym_number] = ACTIONS(2371),
- [anon_sym_boolean] = ACTIONS(2371),
- [anon_sym_string] = ACTIONS(2371),
- [anon_sym_symbol] = ACTIONS(2371),
- [anon_sym_object] = ACTIONS(2371),
- [anon_sym_satisfies] = ACTIONS(122),
- [sym__ternary_qmark] = ACTIONS(162),
- [sym_html_comment] = ACTIONS(5),
- },
- [748] = {
- [ts_builtin_sym_end] = ACTIONS(1755),
- [sym_identifier] = ACTIONS(1757),
- [anon_sym_export] = ACTIONS(1757),
- [anon_sym_default] = ACTIONS(1757),
- [anon_sym_type] = ACTIONS(1757),
- [anon_sym_namespace] = ACTIONS(1757),
- [anon_sym_LBRACE] = ACTIONS(1755),
- [anon_sym_RBRACE] = ACTIONS(1755),
- [anon_sym_typeof] = ACTIONS(1757),
- [anon_sym_import] = ACTIONS(1757),
- [anon_sym_with] = ACTIONS(1757),
- [anon_sym_var] = ACTIONS(1757),
- [anon_sym_let] = ACTIONS(1757),
- [anon_sym_const] = ACTIONS(1757),
- [anon_sym_BANG] = ACTIONS(1755),
- [anon_sym_else] = ACTIONS(1757),
- [anon_sym_if] = ACTIONS(1757),
- [anon_sym_switch] = ACTIONS(1757),
- [anon_sym_for] = ACTIONS(1757),
- [anon_sym_LPAREN] = ACTIONS(1755),
- [anon_sym_await] = ACTIONS(1757),
- [anon_sym_while] = ACTIONS(1757),
- [anon_sym_do] = ACTIONS(1757),
- [anon_sym_try] = ACTIONS(1757),
- [anon_sym_break] = ACTIONS(1757),
- [anon_sym_continue] = ACTIONS(1757),
- [anon_sym_debugger] = ACTIONS(1757),
- [anon_sym_return] = ACTIONS(1757),
- [anon_sym_throw] = ACTIONS(1757),
- [anon_sym_SEMI] = ACTIONS(1755),
- [anon_sym_case] = ACTIONS(1757),
- [anon_sym_yield] = ACTIONS(1757),
- [anon_sym_LBRACK] = ACTIONS(1755),
- [sym_glimmer_opening_tag] = ACTIONS(1755),
- [anon_sym_DQUOTE] = ACTIONS(1755),
- [anon_sym_SQUOTE] = ACTIONS(1755),
- [anon_sym_class] = ACTIONS(1757),
- [anon_sym_async] = ACTIONS(1757),
- [anon_sym_function] = ACTIONS(1757),
- [anon_sym_new] = ACTIONS(1757),
- [anon_sym_using] = ACTIONS(1757),
- [anon_sym_PLUS] = ACTIONS(1757),
- [anon_sym_DASH] = ACTIONS(1757),
- [anon_sym_SLASH] = ACTIONS(1757),
- [anon_sym_LT] = ACTIONS(1757),
- [anon_sym_TILDE] = ACTIONS(1755),
- [anon_sym_void] = ACTIONS(1757),
- [anon_sym_delete] = ACTIONS(1757),
- [anon_sym_PLUS_PLUS] = ACTIONS(1755),
- [anon_sym_DASH_DASH] = ACTIONS(1755),
- [sym_comment] = ACTIONS(5),
- [anon_sym_BQUOTE] = ACTIONS(1755),
- [sym_number] = ACTIONS(1755),
- [sym_private_property_identifier] = ACTIONS(1755),
- [sym_this] = ACTIONS(1757),
- [sym_super] = ACTIONS(1757),
- [sym_true] = ACTIONS(1757),
- [sym_false] = ACTIONS(1757),
- [sym_null] = ACTIONS(1757),
- [sym_undefined] = ACTIONS(1757),
- [anon_sym_AT] = ACTIONS(1755),
- [anon_sym_static] = ACTIONS(1757),
- [anon_sym_readonly] = ACTIONS(1757),
- [anon_sym_get] = ACTIONS(1757),
- [anon_sym_set] = ACTIONS(1757),
- [anon_sym_declare] = ACTIONS(1757),
- [anon_sym_public] = ACTIONS(1757),
- [anon_sym_private] = ACTIONS(1757),
- [anon_sym_protected] = ACTIONS(1757),
- [anon_sym_override] = ACTIONS(1757),
- [anon_sym_module] = ACTIONS(1757),
- [anon_sym_any] = ACTIONS(1757),
- [anon_sym_number] = ACTIONS(1757),
- [anon_sym_boolean] = ACTIONS(1757),
- [anon_sym_string] = ACTIONS(1757),
- [anon_sym_symbol] = ACTIONS(1757),
- [anon_sym_object] = ACTIONS(1757),
- [anon_sym_abstract] = ACTIONS(1757),
- [anon_sym_interface] = ACTIONS(1757),
- [anon_sym_enum] = ACTIONS(1757),
- [sym__automatic_semicolon] = ACTIONS(1763),
- [sym_html_comment] = ACTIONS(5),
- },
- [749] = {
- [ts_builtin_sym_end] = ACTIONS(2483),
- [sym_identifier] = ACTIONS(2485),
- [anon_sym_export] = ACTIONS(2485),
- [anon_sym_default] = ACTIONS(2485),
- [anon_sym_type] = ACTIONS(2485),
- [anon_sym_namespace] = ACTIONS(2485),
- [anon_sym_LBRACE] = ACTIONS(2483),
- [anon_sym_RBRACE] = ACTIONS(2483),
- [anon_sym_typeof] = ACTIONS(2485),
- [anon_sym_import] = ACTIONS(2485),
- [anon_sym_with] = ACTIONS(2485),
- [anon_sym_var] = ACTIONS(2485),
- [anon_sym_let] = ACTIONS(2485),
- [anon_sym_const] = ACTIONS(2485),
- [anon_sym_BANG] = ACTIONS(2483),
- [anon_sym_else] = ACTIONS(2485),
- [anon_sym_if] = ACTIONS(2485),
- [anon_sym_switch] = ACTIONS(2485),
- [anon_sym_for] = ACTIONS(2485),
- [anon_sym_LPAREN] = ACTIONS(2483),
- [anon_sym_await] = ACTIONS(2485),
- [anon_sym_while] = ACTIONS(2485),
- [anon_sym_do] = ACTIONS(2485),
- [anon_sym_try] = ACTIONS(2485),
- [anon_sym_break] = ACTIONS(2485),
- [anon_sym_continue] = ACTIONS(2485),
- [anon_sym_debugger] = ACTIONS(2485),
- [anon_sym_return] = ACTIONS(2485),
- [anon_sym_throw] = ACTIONS(2485),
- [anon_sym_SEMI] = ACTIONS(2483),
- [anon_sym_case] = ACTIONS(2485),
- [anon_sym_yield] = ACTIONS(2485),
- [anon_sym_LBRACK] = ACTIONS(2483),
- [sym_glimmer_opening_tag] = ACTIONS(2483),
- [anon_sym_DQUOTE] = ACTIONS(2483),
- [anon_sym_SQUOTE] = ACTIONS(2483),
- [anon_sym_class] = ACTIONS(2485),
- [anon_sym_async] = ACTIONS(2485),
- [anon_sym_function] = ACTIONS(2485),
- [anon_sym_new] = ACTIONS(2485),
- [anon_sym_using] = ACTIONS(2485),
- [anon_sym_PLUS] = ACTIONS(2485),
- [anon_sym_DASH] = ACTIONS(2485),
- [anon_sym_SLASH] = ACTIONS(2485),
- [anon_sym_LT] = ACTIONS(2485),
- [anon_sym_TILDE] = ACTIONS(2483),
- [anon_sym_void] = ACTIONS(2485),
- [anon_sym_delete] = ACTIONS(2485),
- [anon_sym_PLUS_PLUS] = ACTIONS(2483),
- [anon_sym_DASH_DASH] = ACTIONS(2483),
- [sym_comment] = ACTIONS(5),
- [anon_sym_BQUOTE] = ACTIONS(2483),
- [sym_number] = ACTIONS(2483),
- [sym_private_property_identifier] = ACTIONS(2483),
- [sym_this] = ACTIONS(2485),
- [sym_super] = ACTIONS(2485),
- [sym_true] = ACTIONS(2485),
- [sym_false] = ACTIONS(2485),
- [sym_null] = ACTIONS(2485),
- [sym_undefined] = ACTIONS(2485),
- [anon_sym_AT] = ACTIONS(2483),
- [anon_sym_static] = ACTIONS(2485),
- [anon_sym_readonly] = ACTIONS(2485),
- [anon_sym_get] = ACTIONS(2485),
- [anon_sym_set] = ACTIONS(2485),
- [anon_sym_declare] = ACTIONS(2485),
- [anon_sym_public] = ACTIONS(2485),
- [anon_sym_private] = ACTIONS(2485),
- [anon_sym_protected] = ACTIONS(2485),
- [anon_sym_override] = ACTIONS(2485),
- [anon_sym_module] = ACTIONS(2485),
- [anon_sym_any] = ACTIONS(2485),
- [anon_sym_number] = ACTIONS(2485),
- [anon_sym_boolean] = ACTIONS(2485),
- [anon_sym_string] = ACTIONS(2485),
- [anon_sym_symbol] = ACTIONS(2485),
- [anon_sym_object] = ACTIONS(2485),
- [anon_sym_abstract] = ACTIONS(2485),
- [anon_sym_interface] = ACTIONS(2485),
- [anon_sym_enum] = ACTIONS(2485),
- [sym_html_comment] = ACTIONS(5),
- },
- [750] = {
- [ts_builtin_sym_end] = ACTIONS(2487),
- [sym_identifier] = ACTIONS(2489),
- [anon_sym_export] = ACTIONS(2489),
- [anon_sym_default] = ACTIONS(2489),
- [anon_sym_type] = ACTIONS(2489),
- [anon_sym_namespace] = ACTIONS(2489),
- [anon_sym_LBRACE] = ACTIONS(2487),
- [anon_sym_RBRACE] = ACTIONS(2487),
- [anon_sym_typeof] = ACTIONS(2489),
- [anon_sym_import] = ACTIONS(2489),
- [anon_sym_with] = ACTIONS(2489),
- [anon_sym_var] = ACTIONS(2489),
- [anon_sym_let] = ACTIONS(2489),
- [anon_sym_const] = ACTIONS(2489),
- [anon_sym_BANG] = ACTIONS(2487),
- [anon_sym_else] = ACTIONS(2489),
- [anon_sym_if] = ACTIONS(2489),
- [anon_sym_switch] = ACTIONS(2489),
- [anon_sym_for] = ACTIONS(2489),
- [anon_sym_LPAREN] = ACTIONS(2487),
- [anon_sym_await] = ACTIONS(2489),
- [anon_sym_while] = ACTIONS(2489),
- [anon_sym_do] = ACTIONS(2489),
- [anon_sym_try] = ACTIONS(2489),
- [anon_sym_break] = ACTIONS(2489),
- [anon_sym_continue] = ACTIONS(2489),
- [anon_sym_debugger] = ACTIONS(2489),
- [anon_sym_return] = ACTIONS(2489),
- [anon_sym_throw] = ACTIONS(2489),
- [anon_sym_SEMI] = ACTIONS(2487),
- [anon_sym_case] = ACTIONS(2489),
- [anon_sym_yield] = ACTIONS(2489),
- [anon_sym_LBRACK] = ACTIONS(2487),
- [sym_glimmer_opening_tag] = ACTIONS(2487),
- [anon_sym_DQUOTE] = ACTIONS(2487),
- [anon_sym_SQUOTE] = ACTIONS(2487),
- [anon_sym_class] = ACTIONS(2489),
- [anon_sym_async] = ACTIONS(2489),
- [anon_sym_function] = ACTIONS(2489),
- [anon_sym_new] = ACTIONS(2489),
- [anon_sym_using] = ACTIONS(2489),
- [anon_sym_PLUS] = ACTIONS(2489),
- [anon_sym_DASH] = ACTIONS(2489),
- [anon_sym_SLASH] = ACTIONS(2489),
- [anon_sym_LT] = ACTIONS(2489),
- [anon_sym_TILDE] = ACTIONS(2487),
- [anon_sym_void] = ACTIONS(2489),
- [anon_sym_delete] = ACTIONS(2489),
- [anon_sym_PLUS_PLUS] = ACTIONS(2487),
- [anon_sym_DASH_DASH] = ACTIONS(2487),
- [sym_comment] = ACTIONS(5),
- [anon_sym_BQUOTE] = ACTIONS(2487),
- [sym_number] = ACTIONS(2487),
- [sym_private_property_identifier] = ACTIONS(2487),
- [sym_this] = ACTIONS(2489),
- [sym_super] = ACTIONS(2489),
- [sym_true] = ACTIONS(2489),
- [sym_false] = ACTIONS(2489),
- [sym_null] = ACTIONS(2489),
- [sym_undefined] = ACTIONS(2489),
- [anon_sym_AT] = ACTIONS(2487),
- [anon_sym_static] = ACTIONS(2489),
- [anon_sym_readonly] = ACTIONS(2489),
- [anon_sym_get] = ACTIONS(2489),
- [anon_sym_set] = ACTIONS(2489),
- [anon_sym_declare] = ACTIONS(2489),
- [anon_sym_public] = ACTIONS(2489),
- [anon_sym_private] = ACTIONS(2489),
- [anon_sym_protected] = ACTIONS(2489),
- [anon_sym_override] = ACTIONS(2489),
- [anon_sym_module] = ACTIONS(2489),
- [anon_sym_any] = ACTIONS(2489),
- [anon_sym_number] = ACTIONS(2489),
- [anon_sym_boolean] = ACTIONS(2489),
- [anon_sym_string] = ACTIONS(2489),
- [anon_sym_symbol] = ACTIONS(2489),
- [anon_sym_object] = ACTIONS(2489),
- [anon_sym_abstract] = ACTIONS(2489),
- [anon_sym_interface] = ACTIONS(2489),
- [anon_sym_enum] = ACTIONS(2489),
- [sym_html_comment] = ACTIONS(5),
- },
- [751] = {
- [ts_builtin_sym_end] = ACTIONS(2487),
- [sym_identifier] = ACTIONS(2489),
- [anon_sym_export] = ACTIONS(2489),
- [anon_sym_default] = ACTIONS(2489),
- [anon_sym_type] = ACTIONS(2489),
- [anon_sym_namespace] = ACTIONS(2489),
- [anon_sym_LBRACE] = ACTIONS(2487),
- [anon_sym_RBRACE] = ACTIONS(2487),
- [anon_sym_typeof] = ACTIONS(2489),
- [anon_sym_import] = ACTIONS(2489),
- [anon_sym_with] = ACTIONS(2489),
- [anon_sym_var] = ACTIONS(2489),
- [anon_sym_let] = ACTIONS(2489),
- [anon_sym_const] = ACTIONS(2489),
- [anon_sym_BANG] = ACTIONS(2487),
- [anon_sym_else] = ACTIONS(2489),
- [anon_sym_if] = ACTIONS(2489),
- [anon_sym_switch] = ACTIONS(2489),
- [anon_sym_for] = ACTIONS(2489),
- [anon_sym_LPAREN] = ACTIONS(2487),
- [anon_sym_await] = ACTIONS(2489),
- [anon_sym_while] = ACTIONS(2489),
- [anon_sym_do] = ACTIONS(2489),
- [anon_sym_try] = ACTIONS(2489),
- [anon_sym_break] = ACTIONS(2489),
- [anon_sym_continue] = ACTIONS(2489),
- [anon_sym_debugger] = ACTIONS(2489),
- [anon_sym_return] = ACTIONS(2489),
- [anon_sym_throw] = ACTIONS(2489),
- [anon_sym_SEMI] = ACTIONS(2487),
- [anon_sym_case] = ACTIONS(2489),
- [anon_sym_yield] = ACTIONS(2489),
- [anon_sym_LBRACK] = ACTIONS(2487),
- [sym_glimmer_opening_tag] = ACTIONS(2487),
- [anon_sym_DQUOTE] = ACTIONS(2487),
- [anon_sym_SQUOTE] = ACTIONS(2487),
- [anon_sym_class] = ACTIONS(2489),
- [anon_sym_async] = ACTIONS(2489),
- [anon_sym_function] = ACTIONS(2489),
- [anon_sym_new] = ACTIONS(2489),
- [anon_sym_using] = ACTIONS(2489),
- [anon_sym_PLUS] = ACTIONS(2489),
- [anon_sym_DASH] = ACTIONS(2489),
- [anon_sym_SLASH] = ACTIONS(2489),
- [anon_sym_LT] = ACTIONS(2489),
- [anon_sym_TILDE] = ACTIONS(2487),
- [anon_sym_void] = ACTIONS(2489),
- [anon_sym_delete] = ACTIONS(2489),
- [anon_sym_PLUS_PLUS] = ACTIONS(2487),
- [anon_sym_DASH_DASH] = ACTIONS(2487),
- [sym_comment] = ACTIONS(5),
- [anon_sym_BQUOTE] = ACTIONS(2487),
- [sym_number] = ACTIONS(2487),
- [sym_private_property_identifier] = ACTIONS(2487),
- [sym_this] = ACTIONS(2489),
- [sym_super] = ACTIONS(2489),
- [sym_true] = ACTIONS(2489),
- [sym_false] = ACTIONS(2489),
- [sym_null] = ACTIONS(2489),
- [sym_undefined] = ACTIONS(2489),
- [anon_sym_AT] = ACTIONS(2487),
- [anon_sym_static] = ACTIONS(2489),
- [anon_sym_readonly] = ACTIONS(2489),
- [anon_sym_get] = ACTIONS(2489),
- [anon_sym_set] = ACTIONS(2489),
- [anon_sym_declare] = ACTIONS(2489),
- [anon_sym_public] = ACTIONS(2489),
- [anon_sym_private] = ACTIONS(2489),
- [anon_sym_protected] = ACTIONS(2489),
- [anon_sym_override] = ACTIONS(2489),
- [anon_sym_module] = ACTIONS(2489),
- [anon_sym_any] = ACTIONS(2489),
- [anon_sym_number] = ACTIONS(2489),
- [anon_sym_boolean] = ACTIONS(2489),
- [anon_sym_string] = ACTIONS(2489),
- [anon_sym_symbol] = ACTIONS(2489),
- [anon_sym_object] = ACTIONS(2489),
- [anon_sym_abstract] = ACTIONS(2489),
- [anon_sym_interface] = ACTIONS(2489),
- [anon_sym_enum] = ACTIONS(2489),
- [sym_html_comment] = ACTIONS(5),
- },
- [752] = {
- [ts_builtin_sym_end] = ACTIONS(2491),
- [sym_identifier] = ACTIONS(2493),
- [anon_sym_export] = ACTIONS(2493),
- [anon_sym_default] = ACTIONS(2493),
- [anon_sym_type] = ACTIONS(2493),
- [anon_sym_namespace] = ACTIONS(2493),
- [anon_sym_LBRACE] = ACTIONS(2491),
- [anon_sym_RBRACE] = ACTIONS(2491),
- [anon_sym_typeof] = ACTIONS(2493),
- [anon_sym_import] = ACTIONS(2493),
- [anon_sym_with] = ACTIONS(2493),
- [anon_sym_var] = ACTIONS(2493),
- [anon_sym_let] = ACTIONS(2493),
- [anon_sym_const] = ACTIONS(2493),
- [anon_sym_BANG] = ACTIONS(2491),
- [anon_sym_else] = ACTIONS(2493),
- [anon_sym_if] = ACTIONS(2493),
- [anon_sym_switch] = ACTIONS(2493),
- [anon_sym_for] = ACTIONS(2493),
- [anon_sym_LPAREN] = ACTIONS(2491),
- [anon_sym_await] = ACTIONS(2493),
- [anon_sym_while] = ACTIONS(2493),
- [anon_sym_do] = ACTIONS(2493),
- [anon_sym_try] = ACTIONS(2493),
- [anon_sym_break] = ACTIONS(2493),
- [anon_sym_continue] = ACTIONS(2493),
- [anon_sym_debugger] = ACTIONS(2493),
- [anon_sym_return] = ACTIONS(2493),
- [anon_sym_throw] = ACTIONS(2493),
- [anon_sym_SEMI] = ACTIONS(2491),
- [anon_sym_case] = ACTIONS(2493),
- [anon_sym_yield] = ACTIONS(2493),
- [anon_sym_LBRACK] = ACTIONS(2491),
- [sym_glimmer_opening_tag] = ACTIONS(2491),
- [anon_sym_DQUOTE] = ACTIONS(2491),
- [anon_sym_SQUOTE] = ACTIONS(2491),
- [anon_sym_class] = ACTIONS(2493),
- [anon_sym_async] = ACTIONS(2493),
- [anon_sym_function] = ACTIONS(2493),
- [anon_sym_new] = ACTIONS(2493),
- [anon_sym_using] = ACTIONS(2493),
- [anon_sym_PLUS] = ACTIONS(2493),
- [anon_sym_DASH] = ACTIONS(2493),
- [anon_sym_SLASH] = ACTIONS(2493),
- [anon_sym_LT] = ACTIONS(2493),
- [anon_sym_TILDE] = ACTIONS(2491),
- [anon_sym_void] = ACTIONS(2493),
- [anon_sym_delete] = ACTIONS(2493),
- [anon_sym_PLUS_PLUS] = ACTIONS(2491),
- [anon_sym_DASH_DASH] = ACTIONS(2491),
- [sym_comment] = ACTIONS(5),
- [anon_sym_BQUOTE] = ACTIONS(2491),
- [sym_number] = ACTIONS(2491),
- [sym_private_property_identifier] = ACTIONS(2491),
- [sym_this] = ACTIONS(2493),
- [sym_super] = ACTIONS(2493),
- [sym_true] = ACTIONS(2493),
- [sym_false] = ACTIONS(2493),
- [sym_null] = ACTIONS(2493),
- [sym_undefined] = ACTIONS(2493),
- [anon_sym_AT] = ACTIONS(2491),
- [anon_sym_static] = ACTIONS(2493),
- [anon_sym_readonly] = ACTIONS(2493),
- [anon_sym_get] = ACTIONS(2493),
- [anon_sym_set] = ACTIONS(2493),
- [anon_sym_declare] = ACTIONS(2493),
- [anon_sym_public] = ACTIONS(2493),
- [anon_sym_private] = ACTIONS(2493),
- [anon_sym_protected] = ACTIONS(2493),
- [anon_sym_override] = ACTIONS(2493),
- [anon_sym_module] = ACTIONS(2493),
- [anon_sym_any] = ACTIONS(2493),
- [anon_sym_number] = ACTIONS(2493),
- [anon_sym_boolean] = ACTIONS(2493),
- [anon_sym_string] = ACTIONS(2493),
- [anon_sym_symbol] = ACTIONS(2493),
- [anon_sym_object] = ACTIONS(2493),
- [anon_sym_abstract] = ACTIONS(2493),
- [anon_sym_interface] = ACTIONS(2493),
- [anon_sym_enum] = ACTIONS(2493),
- [sym_html_comment] = ACTIONS(5),
- },
- [753] = {
- [ts_builtin_sym_end] = ACTIONS(2495),
- [sym_identifier] = ACTIONS(2497),
- [anon_sym_export] = ACTIONS(2497),
- [anon_sym_default] = ACTIONS(2497),
- [anon_sym_type] = ACTIONS(2497),
- [anon_sym_namespace] = ACTIONS(2497),
- [anon_sym_LBRACE] = ACTIONS(2495),
- [anon_sym_RBRACE] = ACTIONS(2495),
- [anon_sym_typeof] = ACTIONS(2497),
- [anon_sym_import] = ACTIONS(2497),
- [anon_sym_with] = ACTIONS(2497),
- [anon_sym_var] = ACTIONS(2497),
- [anon_sym_let] = ACTIONS(2497),
- [anon_sym_const] = ACTIONS(2497),
- [anon_sym_BANG] = ACTIONS(2495),
- [anon_sym_else] = ACTIONS(2497),
- [anon_sym_if] = ACTIONS(2497),
- [anon_sym_switch] = ACTIONS(2497),
- [anon_sym_for] = ACTIONS(2497),
- [anon_sym_LPAREN] = ACTIONS(2495),
- [anon_sym_await] = ACTIONS(2497),
- [anon_sym_while] = ACTIONS(2497),
- [anon_sym_do] = ACTIONS(2497),
- [anon_sym_try] = ACTIONS(2497),
- [anon_sym_break] = ACTIONS(2497),
- [anon_sym_continue] = ACTIONS(2497),
- [anon_sym_debugger] = ACTIONS(2497),
- [anon_sym_return] = ACTIONS(2497),
- [anon_sym_throw] = ACTIONS(2497),
- [anon_sym_SEMI] = ACTIONS(2495),
- [anon_sym_case] = ACTIONS(2497),
- [anon_sym_yield] = ACTIONS(2497),
- [anon_sym_LBRACK] = ACTIONS(2495),
- [sym_glimmer_opening_tag] = ACTIONS(2495),
- [anon_sym_DQUOTE] = ACTIONS(2495),
- [anon_sym_SQUOTE] = ACTIONS(2495),
- [anon_sym_class] = ACTIONS(2497),
- [anon_sym_async] = ACTIONS(2497),
- [anon_sym_function] = ACTIONS(2497),
- [anon_sym_new] = ACTIONS(2497),
- [anon_sym_using] = ACTIONS(2497),
- [anon_sym_PLUS] = ACTIONS(2497),
- [anon_sym_DASH] = ACTIONS(2497),
- [anon_sym_SLASH] = ACTIONS(2497),
- [anon_sym_LT] = ACTIONS(2497),
- [anon_sym_TILDE] = ACTIONS(2495),
- [anon_sym_void] = ACTIONS(2497),
- [anon_sym_delete] = ACTIONS(2497),
- [anon_sym_PLUS_PLUS] = ACTIONS(2495),
- [anon_sym_DASH_DASH] = ACTIONS(2495),
- [sym_comment] = ACTIONS(5),
- [anon_sym_BQUOTE] = ACTIONS(2495),
- [sym_number] = ACTIONS(2495),
- [sym_private_property_identifier] = ACTIONS(2495),
- [sym_this] = ACTIONS(2497),
- [sym_super] = ACTIONS(2497),
- [sym_true] = ACTIONS(2497),
- [sym_false] = ACTIONS(2497),
- [sym_null] = ACTIONS(2497),
- [sym_undefined] = ACTIONS(2497),
- [anon_sym_AT] = ACTIONS(2495),
- [anon_sym_static] = ACTIONS(2497),
- [anon_sym_readonly] = ACTIONS(2497),
- [anon_sym_get] = ACTIONS(2497),
- [anon_sym_set] = ACTIONS(2497),
- [anon_sym_declare] = ACTIONS(2497),
- [anon_sym_public] = ACTIONS(2497),
- [anon_sym_private] = ACTIONS(2497),
- [anon_sym_protected] = ACTIONS(2497),
- [anon_sym_override] = ACTIONS(2497),
- [anon_sym_module] = ACTIONS(2497),
- [anon_sym_any] = ACTIONS(2497),
- [anon_sym_number] = ACTIONS(2497),
- [anon_sym_boolean] = ACTIONS(2497),
- [anon_sym_string] = ACTIONS(2497),
- [anon_sym_symbol] = ACTIONS(2497),
- [anon_sym_object] = ACTIONS(2497),
- [anon_sym_abstract] = ACTIONS(2497),
- [anon_sym_interface] = ACTIONS(2497),
- [anon_sym_enum] = ACTIONS(2497),
- [sym_html_comment] = ACTIONS(5),
- },
- [754] = {
- [ts_builtin_sym_end] = ACTIONS(2499),
- [sym_identifier] = ACTIONS(2501),
- [anon_sym_export] = ACTIONS(2501),
- [anon_sym_default] = ACTIONS(2501),
- [anon_sym_type] = ACTIONS(2501),
- [anon_sym_namespace] = ACTIONS(2501),
- [anon_sym_LBRACE] = ACTIONS(2499),
- [anon_sym_RBRACE] = ACTIONS(2499),
- [anon_sym_typeof] = ACTIONS(2501),
- [anon_sym_import] = ACTIONS(2501),
- [anon_sym_with] = ACTIONS(2501),
- [anon_sym_var] = ACTIONS(2501),
- [anon_sym_let] = ACTIONS(2501),
- [anon_sym_const] = ACTIONS(2501),
- [anon_sym_BANG] = ACTIONS(2499),
- [anon_sym_else] = ACTIONS(2501),
- [anon_sym_if] = ACTIONS(2501),
- [anon_sym_switch] = ACTIONS(2501),
- [anon_sym_for] = ACTIONS(2501),
- [anon_sym_LPAREN] = ACTIONS(2499),
- [anon_sym_await] = ACTIONS(2501),
- [anon_sym_while] = ACTIONS(2501),
- [anon_sym_do] = ACTIONS(2501),
- [anon_sym_try] = ACTIONS(2501),
- [anon_sym_break] = ACTIONS(2501),
- [anon_sym_continue] = ACTIONS(2501),
- [anon_sym_debugger] = ACTIONS(2501),
- [anon_sym_return] = ACTIONS(2501),
- [anon_sym_throw] = ACTIONS(2501),
- [anon_sym_SEMI] = ACTIONS(2499),
- [anon_sym_case] = ACTIONS(2501),
- [anon_sym_yield] = ACTIONS(2501),
- [anon_sym_LBRACK] = ACTIONS(2499),
- [sym_glimmer_opening_tag] = ACTIONS(2499),
- [anon_sym_DQUOTE] = ACTIONS(2499),
- [anon_sym_SQUOTE] = ACTIONS(2499),
- [anon_sym_class] = ACTIONS(2501),
- [anon_sym_async] = ACTIONS(2501),
- [anon_sym_function] = ACTIONS(2501),
- [anon_sym_new] = ACTIONS(2501),
- [anon_sym_using] = ACTIONS(2501),
- [anon_sym_PLUS] = ACTIONS(2501),
- [anon_sym_DASH] = ACTIONS(2501),
- [anon_sym_SLASH] = ACTIONS(2501),
- [anon_sym_LT] = ACTIONS(2501),
- [anon_sym_TILDE] = ACTIONS(2499),
- [anon_sym_void] = ACTIONS(2501),
- [anon_sym_delete] = ACTIONS(2501),
- [anon_sym_PLUS_PLUS] = ACTIONS(2499),
- [anon_sym_DASH_DASH] = ACTIONS(2499),
- [sym_comment] = ACTIONS(5),
- [anon_sym_BQUOTE] = ACTIONS(2499),
- [sym_number] = ACTIONS(2499),
- [sym_private_property_identifier] = ACTIONS(2499),
- [sym_this] = ACTIONS(2501),
- [sym_super] = ACTIONS(2501),
- [sym_true] = ACTIONS(2501),
- [sym_false] = ACTIONS(2501),
- [sym_null] = ACTIONS(2501),
- [sym_undefined] = ACTIONS(2501),
- [anon_sym_AT] = ACTIONS(2499),
- [anon_sym_static] = ACTIONS(2501),
- [anon_sym_readonly] = ACTIONS(2501),
- [anon_sym_get] = ACTIONS(2501),
- [anon_sym_set] = ACTIONS(2501),
- [anon_sym_declare] = ACTIONS(2501),
- [anon_sym_public] = ACTIONS(2501),
- [anon_sym_private] = ACTIONS(2501),
- [anon_sym_protected] = ACTIONS(2501),
- [anon_sym_override] = ACTIONS(2501),
- [anon_sym_module] = ACTIONS(2501),
- [anon_sym_any] = ACTIONS(2501),
- [anon_sym_number] = ACTIONS(2501),
- [anon_sym_boolean] = ACTIONS(2501),
- [anon_sym_string] = ACTIONS(2501),
- [anon_sym_symbol] = ACTIONS(2501),
- [anon_sym_object] = ACTIONS(2501),
- [anon_sym_abstract] = ACTIONS(2501),
- [anon_sym_interface] = ACTIONS(2501),
- [anon_sym_enum] = ACTIONS(2501),
- [sym_html_comment] = ACTIONS(5),
- },
- [755] = {
- [ts_builtin_sym_end] = ACTIONS(2499),
- [sym_identifier] = ACTIONS(2501),
- [anon_sym_export] = ACTIONS(2501),
- [anon_sym_default] = ACTIONS(2501),
- [anon_sym_type] = ACTIONS(2501),
- [anon_sym_namespace] = ACTIONS(2501),
- [anon_sym_LBRACE] = ACTIONS(2499),
- [anon_sym_RBRACE] = ACTIONS(2499),
- [anon_sym_typeof] = ACTIONS(2501),
- [anon_sym_import] = ACTIONS(2501),
- [anon_sym_with] = ACTIONS(2501),
- [anon_sym_var] = ACTIONS(2501),
- [anon_sym_let] = ACTIONS(2501),
- [anon_sym_const] = ACTIONS(2501),
- [anon_sym_BANG] = ACTIONS(2499),
- [anon_sym_else] = ACTIONS(2501),
- [anon_sym_if] = ACTIONS(2501),
- [anon_sym_switch] = ACTIONS(2501),
- [anon_sym_for] = ACTIONS(2501),
- [anon_sym_LPAREN] = ACTIONS(2499),
- [anon_sym_await] = ACTIONS(2501),
- [anon_sym_while] = ACTIONS(2501),
- [anon_sym_do] = ACTIONS(2501),
- [anon_sym_try] = ACTIONS(2501),
- [anon_sym_break] = ACTIONS(2501),
- [anon_sym_continue] = ACTIONS(2501),
- [anon_sym_debugger] = ACTIONS(2501),
- [anon_sym_return] = ACTIONS(2501),
- [anon_sym_throw] = ACTIONS(2501),
- [anon_sym_SEMI] = ACTIONS(2499),
- [anon_sym_case] = ACTIONS(2501),
- [anon_sym_yield] = ACTIONS(2501),
- [anon_sym_LBRACK] = ACTIONS(2499),
- [sym_glimmer_opening_tag] = ACTIONS(2499),
- [anon_sym_DQUOTE] = ACTIONS(2499),
- [anon_sym_SQUOTE] = ACTIONS(2499),
- [anon_sym_class] = ACTIONS(2501),
- [anon_sym_async] = ACTIONS(2501),
- [anon_sym_function] = ACTIONS(2501),
- [anon_sym_new] = ACTIONS(2501),
- [anon_sym_using] = ACTIONS(2501),
- [anon_sym_PLUS] = ACTIONS(2501),
- [anon_sym_DASH] = ACTIONS(2501),
- [anon_sym_SLASH] = ACTIONS(2501),
- [anon_sym_LT] = ACTIONS(2501),
- [anon_sym_TILDE] = ACTIONS(2499),
- [anon_sym_void] = ACTIONS(2501),
- [anon_sym_delete] = ACTIONS(2501),
- [anon_sym_PLUS_PLUS] = ACTIONS(2499),
- [anon_sym_DASH_DASH] = ACTIONS(2499),
- [sym_comment] = ACTIONS(5),
- [anon_sym_BQUOTE] = ACTIONS(2499),
- [sym_number] = ACTIONS(2499),
- [sym_private_property_identifier] = ACTIONS(2499),
- [sym_this] = ACTIONS(2501),
- [sym_super] = ACTIONS(2501),
- [sym_true] = ACTIONS(2501),
- [sym_false] = ACTIONS(2501),
- [sym_null] = ACTIONS(2501),
- [sym_undefined] = ACTIONS(2501),
- [anon_sym_AT] = ACTIONS(2499),
- [anon_sym_static] = ACTIONS(2501),
- [anon_sym_readonly] = ACTIONS(2501),
- [anon_sym_get] = ACTIONS(2501),
- [anon_sym_set] = ACTIONS(2501),
- [anon_sym_declare] = ACTIONS(2501),
- [anon_sym_public] = ACTIONS(2501),
- [anon_sym_private] = ACTIONS(2501),
- [anon_sym_protected] = ACTIONS(2501),
- [anon_sym_override] = ACTIONS(2501),
- [anon_sym_module] = ACTIONS(2501),
- [anon_sym_any] = ACTIONS(2501),
- [anon_sym_number] = ACTIONS(2501),
- [anon_sym_boolean] = ACTIONS(2501),
- [anon_sym_string] = ACTIONS(2501),
- [anon_sym_symbol] = ACTIONS(2501),
- [anon_sym_object] = ACTIONS(2501),
- [anon_sym_abstract] = ACTIONS(2501),
- [anon_sym_interface] = ACTIONS(2501),
- [anon_sym_enum] = ACTIONS(2501),
- [sym_html_comment] = ACTIONS(5),
- },
- [756] = {
- [ts_builtin_sym_end] = ACTIONS(2503),
- [sym_identifier] = ACTIONS(2505),
- [anon_sym_export] = ACTIONS(2505),
- [anon_sym_default] = ACTIONS(2505),
- [anon_sym_type] = ACTIONS(2505),
- [anon_sym_namespace] = ACTIONS(2505),
- [anon_sym_LBRACE] = ACTIONS(2503),
- [anon_sym_RBRACE] = ACTIONS(2503),
- [anon_sym_typeof] = ACTIONS(2505),
- [anon_sym_import] = ACTIONS(2505),
- [anon_sym_with] = ACTIONS(2505),
- [anon_sym_var] = ACTIONS(2505),
- [anon_sym_let] = ACTIONS(2505),
- [anon_sym_const] = ACTIONS(2505),
- [anon_sym_BANG] = ACTIONS(2503),
- [anon_sym_else] = ACTIONS(2505),
- [anon_sym_if] = ACTIONS(2505),
- [anon_sym_switch] = ACTIONS(2505),
- [anon_sym_for] = ACTIONS(2505),
- [anon_sym_LPAREN] = ACTIONS(2503),
- [anon_sym_await] = ACTIONS(2505),
- [anon_sym_while] = ACTIONS(2505),
- [anon_sym_do] = ACTIONS(2505),
- [anon_sym_try] = ACTIONS(2505),
- [anon_sym_break] = ACTIONS(2505),
- [anon_sym_continue] = ACTIONS(2505),
- [anon_sym_debugger] = ACTIONS(2505),
- [anon_sym_return] = ACTIONS(2505),
- [anon_sym_throw] = ACTIONS(2505),
- [anon_sym_SEMI] = ACTIONS(2503),
- [anon_sym_case] = ACTIONS(2505),
- [anon_sym_yield] = ACTIONS(2505),
- [anon_sym_LBRACK] = ACTIONS(2503),
- [sym_glimmer_opening_tag] = ACTIONS(2503),
- [anon_sym_DQUOTE] = ACTIONS(2503),
- [anon_sym_SQUOTE] = ACTIONS(2503),
- [anon_sym_class] = ACTIONS(2505),
- [anon_sym_async] = ACTIONS(2505),
- [anon_sym_function] = ACTIONS(2505),
- [anon_sym_new] = ACTIONS(2505),
- [anon_sym_using] = ACTIONS(2505),
- [anon_sym_PLUS] = ACTIONS(2505),
- [anon_sym_DASH] = ACTIONS(2505),
- [anon_sym_SLASH] = ACTIONS(2505),
- [anon_sym_LT] = ACTIONS(2505),
- [anon_sym_TILDE] = ACTIONS(2503),
- [anon_sym_void] = ACTIONS(2505),
- [anon_sym_delete] = ACTIONS(2505),
- [anon_sym_PLUS_PLUS] = ACTIONS(2503),
- [anon_sym_DASH_DASH] = ACTIONS(2503),
- [sym_comment] = ACTIONS(5),
- [anon_sym_BQUOTE] = ACTIONS(2503),
- [sym_number] = ACTIONS(2503),
- [sym_private_property_identifier] = ACTIONS(2503),
- [sym_this] = ACTIONS(2505),
- [sym_super] = ACTIONS(2505),
- [sym_true] = ACTIONS(2505),
- [sym_false] = ACTIONS(2505),
- [sym_null] = ACTIONS(2505),
- [sym_undefined] = ACTIONS(2505),
- [anon_sym_AT] = ACTIONS(2503),
- [anon_sym_static] = ACTIONS(2505),
- [anon_sym_readonly] = ACTIONS(2505),
- [anon_sym_get] = ACTIONS(2505),
- [anon_sym_set] = ACTIONS(2505),
- [anon_sym_declare] = ACTIONS(2505),
- [anon_sym_public] = ACTIONS(2505),
- [anon_sym_private] = ACTIONS(2505),
- [anon_sym_protected] = ACTIONS(2505),
- [anon_sym_override] = ACTIONS(2505),
- [anon_sym_module] = ACTIONS(2505),
- [anon_sym_any] = ACTIONS(2505),
- [anon_sym_number] = ACTIONS(2505),
- [anon_sym_boolean] = ACTIONS(2505),
- [anon_sym_string] = ACTIONS(2505),
- [anon_sym_symbol] = ACTIONS(2505),
- [anon_sym_object] = ACTIONS(2505),
- [anon_sym_abstract] = ACTIONS(2505),
- [anon_sym_interface] = ACTIONS(2505),
- [anon_sym_enum] = ACTIONS(2505),
- [sym_html_comment] = ACTIONS(5),
- },
- [757] = {
- [ts_builtin_sym_end] = ACTIONS(2507),
- [sym_identifier] = ACTIONS(2509),
- [anon_sym_export] = ACTIONS(2509),
- [anon_sym_default] = ACTIONS(2509),
- [anon_sym_type] = ACTIONS(2509),
- [anon_sym_namespace] = ACTIONS(2509),
- [anon_sym_LBRACE] = ACTIONS(2507),
- [anon_sym_RBRACE] = ACTIONS(2507),
- [anon_sym_typeof] = ACTIONS(2509),
- [anon_sym_import] = ACTIONS(2509),
- [anon_sym_with] = ACTIONS(2509),
- [anon_sym_var] = ACTIONS(2509),
- [anon_sym_let] = ACTIONS(2509),
- [anon_sym_const] = ACTIONS(2509),
- [anon_sym_BANG] = ACTIONS(2507),
- [anon_sym_else] = ACTIONS(2509),
- [anon_sym_if] = ACTIONS(2509),
- [anon_sym_switch] = ACTIONS(2509),
- [anon_sym_for] = ACTIONS(2509),
- [anon_sym_LPAREN] = ACTIONS(2507),
- [anon_sym_await] = ACTIONS(2509),
- [anon_sym_while] = ACTIONS(2509),
- [anon_sym_do] = ACTIONS(2509),
- [anon_sym_try] = ACTIONS(2509),
- [anon_sym_break] = ACTIONS(2509),
- [anon_sym_continue] = ACTIONS(2509),
- [anon_sym_debugger] = ACTIONS(2509),
- [anon_sym_return] = ACTIONS(2509),
- [anon_sym_throw] = ACTIONS(2509),
- [anon_sym_SEMI] = ACTIONS(2507),
- [anon_sym_case] = ACTIONS(2509),
- [anon_sym_yield] = ACTIONS(2509),
- [anon_sym_LBRACK] = ACTIONS(2507),
- [sym_glimmer_opening_tag] = ACTIONS(2507),
- [anon_sym_DQUOTE] = ACTIONS(2507),
- [anon_sym_SQUOTE] = ACTIONS(2507),
- [anon_sym_class] = ACTIONS(2509),
- [anon_sym_async] = ACTIONS(2509),
- [anon_sym_function] = ACTIONS(2509),
- [anon_sym_new] = ACTIONS(2509),
- [anon_sym_using] = ACTIONS(2509),
- [anon_sym_PLUS] = ACTIONS(2509),
- [anon_sym_DASH] = ACTIONS(2509),
- [anon_sym_SLASH] = ACTIONS(2509),
- [anon_sym_LT] = ACTIONS(2509),
- [anon_sym_TILDE] = ACTIONS(2507),
- [anon_sym_void] = ACTIONS(2509),
- [anon_sym_delete] = ACTIONS(2509),
- [anon_sym_PLUS_PLUS] = ACTIONS(2507),
- [anon_sym_DASH_DASH] = ACTIONS(2507),
- [sym_comment] = ACTIONS(5),
- [anon_sym_BQUOTE] = ACTIONS(2507),
- [sym_number] = ACTIONS(2507),
- [sym_private_property_identifier] = ACTIONS(2507),
- [sym_this] = ACTIONS(2509),
- [sym_super] = ACTIONS(2509),
- [sym_true] = ACTIONS(2509),
- [sym_false] = ACTIONS(2509),
- [sym_null] = ACTIONS(2509),
- [sym_undefined] = ACTIONS(2509),
- [anon_sym_AT] = ACTIONS(2507),
- [anon_sym_static] = ACTIONS(2509),
- [anon_sym_readonly] = ACTIONS(2509),
- [anon_sym_get] = ACTIONS(2509),
- [anon_sym_set] = ACTIONS(2509),
- [anon_sym_declare] = ACTIONS(2509),
- [anon_sym_public] = ACTIONS(2509),
- [anon_sym_private] = ACTIONS(2509),
- [anon_sym_protected] = ACTIONS(2509),
- [anon_sym_override] = ACTIONS(2509),
- [anon_sym_module] = ACTIONS(2509),
- [anon_sym_any] = ACTIONS(2509),
- [anon_sym_number] = ACTIONS(2509),
- [anon_sym_boolean] = ACTIONS(2509),
- [anon_sym_string] = ACTIONS(2509),
- [anon_sym_symbol] = ACTIONS(2509),
- [anon_sym_object] = ACTIONS(2509),
- [anon_sym_abstract] = ACTIONS(2509),
- [anon_sym_interface] = ACTIONS(2509),
- [anon_sym_enum] = ACTIONS(2509),
- [sym_html_comment] = ACTIONS(5),
- },
- [758] = {
- [ts_builtin_sym_end] = ACTIONS(2511),
- [sym_identifier] = ACTIONS(2513),
- [anon_sym_export] = ACTIONS(2513),
- [anon_sym_default] = ACTIONS(2513),
- [anon_sym_type] = ACTIONS(2513),
- [anon_sym_namespace] = ACTIONS(2513),
- [anon_sym_LBRACE] = ACTIONS(2511),
- [anon_sym_RBRACE] = ACTIONS(2511),
- [anon_sym_typeof] = ACTIONS(2513),
- [anon_sym_import] = ACTIONS(2513),
- [anon_sym_with] = ACTIONS(2513),
- [anon_sym_var] = ACTIONS(2513),
- [anon_sym_let] = ACTIONS(2513),
- [anon_sym_const] = ACTIONS(2513),
- [anon_sym_BANG] = ACTIONS(2511),
- [anon_sym_else] = ACTIONS(2513),
- [anon_sym_if] = ACTIONS(2513),
- [anon_sym_switch] = ACTIONS(2513),
- [anon_sym_for] = ACTIONS(2513),
- [anon_sym_LPAREN] = ACTIONS(2511),
- [anon_sym_await] = ACTIONS(2513),
- [anon_sym_while] = ACTIONS(2513),
- [anon_sym_do] = ACTIONS(2513),
- [anon_sym_try] = ACTIONS(2513),
- [anon_sym_break] = ACTIONS(2513),
- [anon_sym_continue] = ACTIONS(2513),
- [anon_sym_debugger] = ACTIONS(2513),
- [anon_sym_return] = ACTIONS(2513),
- [anon_sym_throw] = ACTIONS(2513),
- [anon_sym_SEMI] = ACTIONS(2511),
- [anon_sym_case] = ACTIONS(2513),
- [anon_sym_yield] = ACTIONS(2513),
- [anon_sym_LBRACK] = ACTIONS(2511),
- [sym_glimmer_opening_tag] = ACTIONS(2511),
- [anon_sym_DQUOTE] = ACTIONS(2511),
- [anon_sym_SQUOTE] = ACTIONS(2511),
- [anon_sym_class] = ACTIONS(2513),
- [anon_sym_async] = ACTIONS(2513),
- [anon_sym_function] = ACTIONS(2513),
- [anon_sym_new] = ACTIONS(2513),
- [anon_sym_using] = ACTIONS(2513),
- [anon_sym_PLUS] = ACTIONS(2513),
- [anon_sym_DASH] = ACTIONS(2513),
- [anon_sym_SLASH] = ACTIONS(2513),
- [anon_sym_LT] = ACTIONS(2513),
- [anon_sym_TILDE] = ACTIONS(2511),
- [anon_sym_void] = ACTIONS(2513),
- [anon_sym_delete] = ACTIONS(2513),
- [anon_sym_PLUS_PLUS] = ACTIONS(2511),
- [anon_sym_DASH_DASH] = ACTIONS(2511),
- [sym_comment] = ACTIONS(5),
- [anon_sym_BQUOTE] = ACTIONS(2511),
- [sym_number] = ACTIONS(2511),
- [sym_private_property_identifier] = ACTIONS(2511),
- [sym_this] = ACTIONS(2513),
- [sym_super] = ACTIONS(2513),
- [sym_true] = ACTIONS(2513),
- [sym_false] = ACTIONS(2513),
- [sym_null] = ACTIONS(2513),
- [sym_undefined] = ACTIONS(2513),
- [anon_sym_AT] = ACTIONS(2511),
- [anon_sym_static] = ACTIONS(2513),
- [anon_sym_readonly] = ACTIONS(2513),
- [anon_sym_get] = ACTIONS(2513),
- [anon_sym_set] = ACTIONS(2513),
- [anon_sym_declare] = ACTIONS(2513),
- [anon_sym_public] = ACTIONS(2513),
- [anon_sym_private] = ACTIONS(2513),
- [anon_sym_protected] = ACTIONS(2513),
- [anon_sym_override] = ACTIONS(2513),
- [anon_sym_module] = ACTIONS(2513),
- [anon_sym_any] = ACTIONS(2513),
- [anon_sym_number] = ACTIONS(2513),
- [anon_sym_boolean] = ACTIONS(2513),
- [anon_sym_string] = ACTIONS(2513),
- [anon_sym_symbol] = ACTIONS(2513),
- [anon_sym_object] = ACTIONS(2513),
- [anon_sym_abstract] = ACTIONS(2513),
- [anon_sym_interface] = ACTIONS(2513),
- [anon_sym_enum] = ACTIONS(2513),
- [sym_html_comment] = ACTIONS(5),
- },
- [759] = {
- [ts_builtin_sym_end] = ACTIONS(2515),
- [sym_identifier] = ACTIONS(2517),
- [anon_sym_export] = ACTIONS(2517),
- [anon_sym_default] = ACTIONS(2517),
- [anon_sym_type] = ACTIONS(2517),
- [anon_sym_namespace] = ACTIONS(2517),
- [anon_sym_LBRACE] = ACTIONS(2515),
- [anon_sym_RBRACE] = ACTIONS(2515),
- [anon_sym_typeof] = ACTIONS(2517),
- [anon_sym_import] = ACTIONS(2517),
- [anon_sym_with] = ACTIONS(2517),
- [anon_sym_var] = ACTIONS(2517),
- [anon_sym_let] = ACTIONS(2517),
- [anon_sym_const] = ACTIONS(2517),
- [anon_sym_BANG] = ACTIONS(2515),
- [anon_sym_else] = ACTIONS(2517),
- [anon_sym_if] = ACTIONS(2517),
- [anon_sym_switch] = ACTIONS(2517),
- [anon_sym_for] = ACTIONS(2517),
- [anon_sym_LPAREN] = ACTIONS(2515),
- [anon_sym_await] = ACTIONS(2517),
- [anon_sym_while] = ACTIONS(2517),
- [anon_sym_do] = ACTIONS(2517),
- [anon_sym_try] = ACTIONS(2517),
- [anon_sym_break] = ACTIONS(2517),
- [anon_sym_continue] = ACTIONS(2517),
- [anon_sym_debugger] = ACTIONS(2517),
- [anon_sym_return] = ACTIONS(2517),
- [anon_sym_throw] = ACTIONS(2517),
- [anon_sym_SEMI] = ACTIONS(2515),
- [anon_sym_case] = ACTIONS(2517),
- [anon_sym_yield] = ACTIONS(2517),
- [anon_sym_LBRACK] = ACTIONS(2515),
- [sym_glimmer_opening_tag] = ACTIONS(2515),
- [anon_sym_DQUOTE] = ACTIONS(2515),
- [anon_sym_SQUOTE] = ACTIONS(2515),
- [anon_sym_class] = ACTIONS(2517),
- [anon_sym_async] = ACTIONS(2517),
- [anon_sym_function] = ACTIONS(2517),
- [anon_sym_new] = ACTIONS(2517),
- [anon_sym_using] = ACTIONS(2517),
- [anon_sym_PLUS] = ACTIONS(2517),
- [anon_sym_DASH] = ACTIONS(2517),
- [anon_sym_SLASH] = ACTIONS(2517),
- [anon_sym_LT] = ACTIONS(2517),
- [anon_sym_TILDE] = ACTIONS(2515),
- [anon_sym_void] = ACTIONS(2517),
- [anon_sym_delete] = ACTIONS(2517),
- [anon_sym_PLUS_PLUS] = ACTIONS(2515),
- [anon_sym_DASH_DASH] = ACTIONS(2515),
- [sym_comment] = ACTIONS(5),
- [anon_sym_BQUOTE] = ACTIONS(2515),
- [sym_number] = ACTIONS(2515),
- [sym_private_property_identifier] = ACTIONS(2515),
- [sym_this] = ACTIONS(2517),
- [sym_super] = ACTIONS(2517),
- [sym_true] = ACTIONS(2517),
- [sym_false] = ACTIONS(2517),
- [sym_null] = ACTIONS(2517),
- [sym_undefined] = ACTIONS(2517),
- [anon_sym_AT] = ACTIONS(2515),
- [anon_sym_static] = ACTIONS(2517),
- [anon_sym_readonly] = ACTIONS(2517),
- [anon_sym_get] = ACTIONS(2517),
- [anon_sym_set] = ACTIONS(2517),
- [anon_sym_declare] = ACTIONS(2517),
- [anon_sym_public] = ACTIONS(2517),
- [anon_sym_private] = ACTIONS(2517),
- [anon_sym_protected] = ACTIONS(2517),
- [anon_sym_override] = ACTIONS(2517),
- [anon_sym_module] = ACTIONS(2517),
- [anon_sym_any] = ACTIONS(2517),
- [anon_sym_number] = ACTIONS(2517),
- [anon_sym_boolean] = ACTIONS(2517),
- [anon_sym_string] = ACTIONS(2517),
- [anon_sym_symbol] = ACTIONS(2517),
- [anon_sym_object] = ACTIONS(2517),
- [anon_sym_abstract] = ACTIONS(2517),
- [anon_sym_interface] = ACTIONS(2517),
- [anon_sym_enum] = ACTIONS(2517),
- [sym_html_comment] = ACTIONS(5),
- },
- [760] = {
- [ts_builtin_sym_end] = ACTIONS(2519),
- [sym_identifier] = ACTIONS(2521),
- [anon_sym_export] = ACTIONS(2521),
- [anon_sym_default] = ACTIONS(2521),
- [anon_sym_type] = ACTIONS(2521),
- [anon_sym_namespace] = ACTIONS(2521),
- [anon_sym_LBRACE] = ACTIONS(2519),
- [anon_sym_RBRACE] = ACTIONS(2519),
- [anon_sym_typeof] = ACTIONS(2521),
- [anon_sym_import] = ACTIONS(2521),
- [anon_sym_with] = ACTIONS(2521),
- [anon_sym_var] = ACTIONS(2521),
- [anon_sym_let] = ACTIONS(2521),
- [anon_sym_const] = ACTIONS(2521),
- [anon_sym_BANG] = ACTIONS(2519),
- [anon_sym_else] = ACTIONS(2521),
- [anon_sym_if] = ACTIONS(2521),
- [anon_sym_switch] = ACTIONS(2521),
- [anon_sym_for] = ACTIONS(2521),
- [anon_sym_LPAREN] = ACTIONS(2519),
- [anon_sym_await] = ACTIONS(2521),
- [anon_sym_while] = ACTIONS(2521),
- [anon_sym_do] = ACTIONS(2521),
- [anon_sym_try] = ACTIONS(2521),
- [anon_sym_break] = ACTIONS(2521),
- [anon_sym_continue] = ACTIONS(2521),
- [anon_sym_debugger] = ACTIONS(2521),
- [anon_sym_return] = ACTIONS(2521),
- [anon_sym_throw] = ACTIONS(2521),
- [anon_sym_SEMI] = ACTIONS(2519),
- [anon_sym_case] = ACTIONS(2521),
- [anon_sym_yield] = ACTIONS(2521),
- [anon_sym_LBRACK] = ACTIONS(2519),
- [sym_glimmer_opening_tag] = ACTIONS(2519),
- [anon_sym_DQUOTE] = ACTIONS(2519),
- [anon_sym_SQUOTE] = ACTIONS(2519),
- [anon_sym_class] = ACTIONS(2521),
- [anon_sym_async] = ACTIONS(2521),
- [anon_sym_function] = ACTIONS(2521),
- [anon_sym_new] = ACTIONS(2521),
- [anon_sym_using] = ACTIONS(2521),
- [anon_sym_PLUS] = ACTIONS(2521),
- [anon_sym_DASH] = ACTIONS(2521),
- [anon_sym_SLASH] = ACTIONS(2521),
- [anon_sym_LT] = ACTIONS(2521),
- [anon_sym_TILDE] = ACTIONS(2519),
- [anon_sym_void] = ACTIONS(2521),
- [anon_sym_delete] = ACTIONS(2521),
- [anon_sym_PLUS_PLUS] = ACTIONS(2519),
- [anon_sym_DASH_DASH] = ACTIONS(2519),
- [sym_comment] = ACTIONS(5),
- [anon_sym_BQUOTE] = ACTIONS(2519),
- [sym_number] = ACTIONS(2519),
- [sym_private_property_identifier] = ACTIONS(2519),
- [sym_this] = ACTIONS(2521),
- [sym_super] = ACTIONS(2521),
- [sym_true] = ACTIONS(2521),
- [sym_false] = ACTIONS(2521),
- [sym_null] = ACTIONS(2521),
- [sym_undefined] = ACTIONS(2521),
- [anon_sym_AT] = ACTIONS(2519),
- [anon_sym_static] = ACTIONS(2521),
- [anon_sym_readonly] = ACTIONS(2521),
- [anon_sym_get] = ACTIONS(2521),
- [anon_sym_set] = ACTIONS(2521),
- [anon_sym_declare] = ACTIONS(2521),
- [anon_sym_public] = ACTIONS(2521),
- [anon_sym_private] = ACTIONS(2521),
- [anon_sym_protected] = ACTIONS(2521),
- [anon_sym_override] = ACTIONS(2521),
- [anon_sym_module] = ACTIONS(2521),
- [anon_sym_any] = ACTIONS(2521),
- [anon_sym_number] = ACTIONS(2521),
- [anon_sym_boolean] = ACTIONS(2521),
- [anon_sym_string] = ACTIONS(2521),
- [anon_sym_symbol] = ACTIONS(2521),
- [anon_sym_object] = ACTIONS(2521),
- [anon_sym_abstract] = ACTIONS(2521),
- [anon_sym_interface] = ACTIONS(2521),
- [anon_sym_enum] = ACTIONS(2521),
- [sym_html_comment] = ACTIONS(5),
- },
- [761] = {
- [ts_builtin_sym_end] = ACTIONS(2523),
- [sym_identifier] = ACTIONS(2525),
- [anon_sym_export] = ACTIONS(2525),
- [anon_sym_default] = ACTIONS(2525),
- [anon_sym_type] = ACTIONS(2525),
- [anon_sym_namespace] = ACTIONS(2525),
- [anon_sym_LBRACE] = ACTIONS(2523),
- [anon_sym_RBRACE] = ACTIONS(2523),
- [anon_sym_typeof] = ACTIONS(2525),
- [anon_sym_import] = ACTIONS(2525),
- [anon_sym_with] = ACTIONS(2525),
- [anon_sym_var] = ACTIONS(2525),
- [anon_sym_let] = ACTIONS(2525),
- [anon_sym_const] = ACTIONS(2525),
- [anon_sym_BANG] = ACTIONS(2523),
- [anon_sym_else] = ACTIONS(2525),
- [anon_sym_if] = ACTIONS(2525),
- [anon_sym_switch] = ACTIONS(2525),
- [anon_sym_for] = ACTIONS(2525),
- [anon_sym_LPAREN] = ACTIONS(2523),
- [anon_sym_await] = ACTIONS(2525),
- [anon_sym_while] = ACTIONS(2525),
- [anon_sym_do] = ACTIONS(2525),
- [anon_sym_try] = ACTIONS(2525),
- [anon_sym_break] = ACTIONS(2525),
- [anon_sym_continue] = ACTIONS(2525),
- [anon_sym_debugger] = ACTIONS(2525),
- [anon_sym_return] = ACTIONS(2525),
- [anon_sym_throw] = ACTIONS(2525),
- [anon_sym_SEMI] = ACTIONS(2523),
- [anon_sym_case] = ACTIONS(2525),
- [anon_sym_yield] = ACTIONS(2525),
- [anon_sym_LBRACK] = ACTIONS(2523),
- [sym_glimmer_opening_tag] = ACTIONS(2523),
- [anon_sym_DQUOTE] = ACTIONS(2523),
- [anon_sym_SQUOTE] = ACTIONS(2523),
- [anon_sym_class] = ACTIONS(2525),
- [anon_sym_async] = ACTIONS(2525),
- [anon_sym_function] = ACTIONS(2525),
- [anon_sym_new] = ACTIONS(2525),
- [anon_sym_using] = ACTIONS(2525),
- [anon_sym_PLUS] = ACTIONS(2525),
- [anon_sym_DASH] = ACTIONS(2525),
- [anon_sym_SLASH] = ACTIONS(2525),
- [anon_sym_LT] = ACTIONS(2525),
- [anon_sym_TILDE] = ACTIONS(2523),
- [anon_sym_void] = ACTIONS(2525),
- [anon_sym_delete] = ACTIONS(2525),
- [anon_sym_PLUS_PLUS] = ACTIONS(2523),
- [anon_sym_DASH_DASH] = ACTIONS(2523),
- [sym_comment] = ACTIONS(5),
- [anon_sym_BQUOTE] = ACTIONS(2523),
- [sym_number] = ACTIONS(2523),
- [sym_private_property_identifier] = ACTIONS(2523),
- [sym_this] = ACTIONS(2525),
- [sym_super] = ACTIONS(2525),
- [sym_true] = ACTIONS(2525),
- [sym_false] = ACTIONS(2525),
- [sym_null] = ACTIONS(2525),
- [sym_undefined] = ACTIONS(2525),
- [anon_sym_AT] = ACTIONS(2523),
- [anon_sym_static] = ACTIONS(2525),
- [anon_sym_readonly] = ACTIONS(2525),
- [anon_sym_get] = ACTIONS(2525),
- [anon_sym_set] = ACTIONS(2525),
- [anon_sym_declare] = ACTIONS(2525),
- [anon_sym_public] = ACTIONS(2525),
- [anon_sym_private] = ACTIONS(2525),
- [anon_sym_protected] = ACTIONS(2525),
- [anon_sym_override] = ACTIONS(2525),
- [anon_sym_module] = ACTIONS(2525),
- [anon_sym_any] = ACTIONS(2525),
- [anon_sym_number] = ACTIONS(2525),
- [anon_sym_boolean] = ACTIONS(2525),
- [anon_sym_string] = ACTIONS(2525),
- [anon_sym_symbol] = ACTIONS(2525),
- [anon_sym_object] = ACTIONS(2525),
- [anon_sym_abstract] = ACTIONS(2525),
- [anon_sym_interface] = ACTIONS(2525),
- [anon_sym_enum] = ACTIONS(2525),
- [sym_html_comment] = ACTIONS(5),
- },
- [762] = {
- [ts_builtin_sym_end] = ACTIONS(1921),
- [sym_identifier] = ACTIONS(1923),
- [anon_sym_export] = ACTIONS(1923),
- [anon_sym_default] = ACTIONS(1923),
- [anon_sym_type] = ACTIONS(1923),
- [anon_sym_namespace] = ACTIONS(1923),
- [anon_sym_LBRACE] = ACTIONS(1921),
- [anon_sym_RBRACE] = ACTIONS(1921),
- [anon_sym_typeof] = ACTIONS(1923),
- [anon_sym_import] = ACTIONS(1923),
- [anon_sym_with] = ACTIONS(1923),
- [anon_sym_var] = ACTIONS(1923),
- [anon_sym_let] = ACTIONS(1923),
- [anon_sym_const] = ACTIONS(1923),
- [anon_sym_BANG] = ACTIONS(1921),
- [anon_sym_else] = ACTIONS(1923),
- [anon_sym_if] = ACTIONS(1923),
- [anon_sym_switch] = ACTIONS(1923),
- [anon_sym_for] = ACTIONS(1923),
- [anon_sym_LPAREN] = ACTIONS(1921),
- [anon_sym_await] = ACTIONS(1923),
- [anon_sym_while] = ACTIONS(1923),
- [anon_sym_do] = ACTIONS(1923),
- [anon_sym_try] = ACTIONS(1923),
- [anon_sym_break] = ACTIONS(1923),
- [anon_sym_continue] = ACTIONS(1923),
- [anon_sym_debugger] = ACTIONS(1923),
- [anon_sym_return] = ACTIONS(1923),
- [anon_sym_throw] = ACTIONS(1923),
- [anon_sym_SEMI] = ACTIONS(1921),
- [anon_sym_case] = ACTIONS(1923),
- [anon_sym_yield] = ACTIONS(1923),
- [anon_sym_LBRACK] = ACTIONS(1921),
- [sym_glimmer_opening_tag] = ACTIONS(1921),
- [anon_sym_DQUOTE] = ACTIONS(1921),
- [anon_sym_SQUOTE] = ACTIONS(1921),
- [anon_sym_class] = ACTIONS(1923),
- [anon_sym_async] = ACTIONS(1923),
- [anon_sym_function] = ACTIONS(1923),
- [anon_sym_new] = ACTIONS(1923),
- [anon_sym_using] = ACTIONS(1923),
- [anon_sym_PLUS] = ACTIONS(1923),
- [anon_sym_DASH] = ACTIONS(1923),
- [anon_sym_SLASH] = ACTIONS(1923),
- [anon_sym_LT] = ACTIONS(1923),
- [anon_sym_TILDE] = ACTIONS(1921),
- [anon_sym_void] = ACTIONS(1923),
- [anon_sym_delete] = ACTIONS(1923),
- [anon_sym_PLUS_PLUS] = ACTIONS(1921),
- [anon_sym_DASH_DASH] = ACTIONS(1921),
- [sym_comment] = ACTIONS(5),
- [anon_sym_BQUOTE] = ACTIONS(1921),
- [sym_number] = ACTIONS(1921),
- [sym_private_property_identifier] = ACTIONS(1921),
- [sym_this] = ACTIONS(1923),
- [sym_super] = ACTIONS(1923),
- [sym_true] = ACTIONS(1923),
- [sym_false] = ACTIONS(1923),
- [sym_null] = ACTIONS(1923),
- [sym_undefined] = ACTIONS(1923),
- [anon_sym_AT] = ACTIONS(1921),
- [anon_sym_static] = ACTIONS(1923),
- [anon_sym_readonly] = ACTIONS(1923),
- [anon_sym_get] = ACTIONS(1923),
- [anon_sym_set] = ACTIONS(1923),
- [anon_sym_declare] = ACTIONS(1923),
- [anon_sym_public] = ACTIONS(1923),
- [anon_sym_private] = ACTIONS(1923),
- [anon_sym_protected] = ACTIONS(1923),
- [anon_sym_override] = ACTIONS(1923),
- [anon_sym_module] = ACTIONS(1923),
- [anon_sym_any] = ACTIONS(1923),
- [anon_sym_number] = ACTIONS(1923),
- [anon_sym_boolean] = ACTIONS(1923),
- [anon_sym_string] = ACTIONS(1923),
- [anon_sym_symbol] = ACTIONS(1923),
- [anon_sym_object] = ACTIONS(1923),
- [anon_sym_abstract] = ACTIONS(1923),
- [anon_sym_interface] = ACTIONS(1923),
- [anon_sym_enum] = ACTIONS(1923),
- [sym_html_comment] = ACTIONS(5),
- },
- [763] = {
- [ts_builtin_sym_end] = ACTIONS(1765),
- [sym_identifier] = ACTIONS(1767),
- [anon_sym_export] = ACTIONS(1767),
- [anon_sym_default] = ACTIONS(1767),
- [anon_sym_type] = ACTIONS(1767),
- [anon_sym_namespace] = ACTIONS(1767),
- [anon_sym_LBRACE] = ACTIONS(1765),
- [anon_sym_RBRACE] = ACTIONS(1765),
- [anon_sym_typeof] = ACTIONS(1767),
- [anon_sym_import] = ACTIONS(1767),
- [anon_sym_with] = ACTIONS(1767),
- [anon_sym_var] = ACTIONS(1767),
- [anon_sym_let] = ACTIONS(1767),
- [anon_sym_const] = ACTIONS(1767),
- [anon_sym_BANG] = ACTIONS(1765),
- [anon_sym_else] = ACTIONS(1767),
- [anon_sym_if] = ACTIONS(1767),
- [anon_sym_switch] = ACTIONS(1767),
- [anon_sym_for] = ACTIONS(1767),
- [anon_sym_LPAREN] = ACTIONS(1765),
- [anon_sym_await] = ACTIONS(1767),
- [anon_sym_while] = ACTIONS(1767),
- [anon_sym_do] = ACTIONS(1767),
- [anon_sym_try] = ACTIONS(1767),
- [anon_sym_break] = ACTIONS(1767),
- [anon_sym_continue] = ACTIONS(1767),
- [anon_sym_debugger] = ACTIONS(1767),
- [anon_sym_return] = ACTIONS(1767),
- [anon_sym_throw] = ACTIONS(1767),
- [anon_sym_SEMI] = ACTIONS(1765),
- [anon_sym_case] = ACTIONS(1767),
- [anon_sym_yield] = ACTIONS(1767),
- [anon_sym_LBRACK] = ACTIONS(1765),
- [sym_glimmer_opening_tag] = ACTIONS(1765),
- [anon_sym_DQUOTE] = ACTIONS(1765),
- [anon_sym_SQUOTE] = ACTIONS(1765),
- [anon_sym_class] = ACTIONS(1767),
- [anon_sym_async] = ACTIONS(1767),
- [anon_sym_function] = ACTIONS(1767),
- [anon_sym_new] = ACTIONS(1767),
- [anon_sym_using] = ACTIONS(1767),
- [anon_sym_PLUS] = ACTIONS(1767),
- [anon_sym_DASH] = ACTIONS(1767),
- [anon_sym_SLASH] = ACTIONS(1767),
- [anon_sym_LT] = ACTIONS(1767),
- [anon_sym_TILDE] = ACTIONS(1765),
- [anon_sym_void] = ACTIONS(1767),
- [anon_sym_delete] = ACTIONS(1767),
- [anon_sym_PLUS_PLUS] = ACTIONS(1765),
- [anon_sym_DASH_DASH] = ACTIONS(1765),
- [sym_comment] = ACTIONS(5),
- [anon_sym_BQUOTE] = ACTIONS(1765),
- [sym_number] = ACTIONS(1765),
- [sym_private_property_identifier] = ACTIONS(1765),
- [sym_this] = ACTIONS(1767),
- [sym_super] = ACTIONS(1767),
- [sym_true] = ACTIONS(1767),
- [sym_false] = ACTIONS(1767),
- [sym_null] = ACTIONS(1767),
- [sym_undefined] = ACTIONS(1767),
- [anon_sym_AT] = ACTIONS(1765),
- [anon_sym_static] = ACTIONS(1767),
- [anon_sym_readonly] = ACTIONS(1767),
- [anon_sym_get] = ACTIONS(1767),
- [anon_sym_set] = ACTIONS(1767),
- [anon_sym_declare] = ACTIONS(1767),
- [anon_sym_public] = ACTIONS(1767),
- [anon_sym_private] = ACTIONS(1767),
- [anon_sym_protected] = ACTIONS(1767),
- [anon_sym_override] = ACTIONS(1767),
- [anon_sym_module] = ACTIONS(1767),
- [anon_sym_any] = ACTIONS(1767),
- [anon_sym_number] = ACTIONS(1767),
- [anon_sym_boolean] = ACTIONS(1767),
- [anon_sym_string] = ACTIONS(1767),
- [anon_sym_symbol] = ACTIONS(1767),
- [anon_sym_object] = ACTIONS(1767),
- [anon_sym_abstract] = ACTIONS(1767),
- [anon_sym_interface] = ACTIONS(1767),
- [anon_sym_enum] = ACTIONS(1767),
- [sym_html_comment] = ACTIONS(5),
- },
- [764] = {
- [ts_builtin_sym_end] = ACTIONS(2527),
- [sym_identifier] = ACTIONS(2529),
- [anon_sym_export] = ACTIONS(2529),
- [anon_sym_default] = ACTIONS(2529),
- [anon_sym_type] = ACTIONS(2529),
- [anon_sym_namespace] = ACTIONS(2529),
- [anon_sym_LBRACE] = ACTIONS(2527),
- [anon_sym_RBRACE] = ACTIONS(2527),
- [anon_sym_typeof] = ACTIONS(2529),
- [anon_sym_import] = ACTIONS(2529),
- [anon_sym_with] = ACTIONS(2529),
- [anon_sym_var] = ACTIONS(2529),
- [anon_sym_let] = ACTIONS(2529),
- [anon_sym_const] = ACTIONS(2529),
- [anon_sym_BANG] = ACTIONS(2527),
- [anon_sym_else] = ACTIONS(2529),
- [anon_sym_if] = ACTIONS(2529),
- [anon_sym_switch] = ACTIONS(2529),
- [anon_sym_for] = ACTIONS(2529),
- [anon_sym_LPAREN] = ACTIONS(2527),
- [anon_sym_await] = ACTIONS(2529),
- [anon_sym_while] = ACTIONS(2529),
- [anon_sym_do] = ACTIONS(2529),
- [anon_sym_try] = ACTIONS(2529),
- [anon_sym_break] = ACTIONS(2529),
- [anon_sym_continue] = ACTIONS(2529),
- [anon_sym_debugger] = ACTIONS(2529),
- [anon_sym_return] = ACTIONS(2529),
- [anon_sym_throw] = ACTIONS(2529),
- [anon_sym_SEMI] = ACTIONS(2527),
- [anon_sym_case] = ACTIONS(2529),
- [anon_sym_yield] = ACTIONS(2529),
- [anon_sym_LBRACK] = ACTIONS(2527),
- [sym_glimmer_opening_tag] = ACTIONS(2527),
- [anon_sym_DQUOTE] = ACTIONS(2527),
- [anon_sym_SQUOTE] = ACTIONS(2527),
- [anon_sym_class] = ACTIONS(2529),
- [anon_sym_async] = ACTIONS(2529),
- [anon_sym_function] = ACTIONS(2529),
- [anon_sym_new] = ACTIONS(2529),
- [anon_sym_using] = ACTIONS(2529),
- [anon_sym_PLUS] = ACTIONS(2529),
- [anon_sym_DASH] = ACTIONS(2529),
- [anon_sym_SLASH] = ACTIONS(2529),
- [anon_sym_LT] = ACTIONS(2529),
- [anon_sym_TILDE] = ACTIONS(2527),
- [anon_sym_void] = ACTIONS(2529),
- [anon_sym_delete] = ACTIONS(2529),
- [anon_sym_PLUS_PLUS] = ACTIONS(2527),
- [anon_sym_DASH_DASH] = ACTIONS(2527),
- [sym_comment] = ACTIONS(5),
- [anon_sym_BQUOTE] = ACTIONS(2527),
- [sym_number] = ACTIONS(2527),
- [sym_private_property_identifier] = ACTIONS(2527),
- [sym_this] = ACTIONS(2529),
- [sym_super] = ACTIONS(2529),
- [sym_true] = ACTIONS(2529),
- [sym_false] = ACTIONS(2529),
- [sym_null] = ACTIONS(2529),
- [sym_undefined] = ACTIONS(2529),
- [anon_sym_AT] = ACTIONS(2527),
- [anon_sym_static] = ACTIONS(2529),
- [anon_sym_readonly] = ACTIONS(2529),
- [anon_sym_get] = ACTIONS(2529),
- [anon_sym_set] = ACTIONS(2529),
- [anon_sym_declare] = ACTIONS(2529),
- [anon_sym_public] = ACTIONS(2529),
- [anon_sym_private] = ACTIONS(2529),
- [anon_sym_protected] = ACTIONS(2529),
- [anon_sym_override] = ACTIONS(2529),
- [anon_sym_module] = ACTIONS(2529),
- [anon_sym_any] = ACTIONS(2529),
- [anon_sym_number] = ACTIONS(2529),
- [anon_sym_boolean] = ACTIONS(2529),
- [anon_sym_string] = ACTIONS(2529),
- [anon_sym_symbol] = ACTIONS(2529),
- [anon_sym_object] = ACTIONS(2529),
- [anon_sym_abstract] = ACTIONS(2529),
- [anon_sym_interface] = ACTIONS(2529),
- [anon_sym_enum] = ACTIONS(2529),
- [sym_html_comment] = ACTIONS(5),
- },
- [765] = {
- [ts_builtin_sym_end] = ACTIONS(2531),
- [sym_identifier] = ACTIONS(2533),
- [anon_sym_export] = ACTIONS(2533),
- [anon_sym_default] = ACTIONS(2533),
- [anon_sym_type] = ACTIONS(2533),
- [anon_sym_namespace] = ACTIONS(2533),
- [anon_sym_LBRACE] = ACTIONS(2531),
- [anon_sym_RBRACE] = ACTIONS(2531),
- [anon_sym_typeof] = ACTIONS(2533),
- [anon_sym_import] = ACTIONS(2533),
- [anon_sym_with] = ACTIONS(2533),
- [anon_sym_var] = ACTIONS(2533),
- [anon_sym_let] = ACTIONS(2533),
- [anon_sym_const] = ACTIONS(2533),
- [anon_sym_BANG] = ACTIONS(2531),
- [anon_sym_else] = ACTIONS(2533),
- [anon_sym_if] = ACTIONS(2533),
- [anon_sym_switch] = ACTIONS(2533),
- [anon_sym_for] = ACTIONS(2533),
- [anon_sym_LPAREN] = ACTIONS(2531),
- [anon_sym_await] = ACTIONS(2533),
- [anon_sym_while] = ACTIONS(2533),
- [anon_sym_do] = ACTIONS(2533),
- [anon_sym_try] = ACTIONS(2533),
- [anon_sym_break] = ACTIONS(2533),
- [anon_sym_continue] = ACTIONS(2533),
- [anon_sym_debugger] = ACTIONS(2533),
- [anon_sym_return] = ACTIONS(2533),
- [anon_sym_throw] = ACTIONS(2533),
- [anon_sym_SEMI] = ACTIONS(2531),
- [anon_sym_case] = ACTIONS(2533),
- [anon_sym_yield] = ACTIONS(2533),
- [anon_sym_LBRACK] = ACTIONS(2531),
- [sym_glimmer_opening_tag] = ACTIONS(2531),
- [anon_sym_DQUOTE] = ACTIONS(2531),
- [anon_sym_SQUOTE] = ACTIONS(2531),
- [anon_sym_class] = ACTIONS(2533),
- [anon_sym_async] = ACTIONS(2533),
- [anon_sym_function] = ACTIONS(2533),
- [anon_sym_new] = ACTIONS(2533),
- [anon_sym_using] = ACTIONS(2533),
- [anon_sym_PLUS] = ACTIONS(2533),
- [anon_sym_DASH] = ACTIONS(2533),
- [anon_sym_SLASH] = ACTIONS(2533),
- [anon_sym_LT] = ACTIONS(2533),
- [anon_sym_TILDE] = ACTIONS(2531),
- [anon_sym_void] = ACTIONS(2533),
- [anon_sym_delete] = ACTIONS(2533),
- [anon_sym_PLUS_PLUS] = ACTIONS(2531),
- [anon_sym_DASH_DASH] = ACTIONS(2531),
- [sym_comment] = ACTIONS(5),
- [anon_sym_BQUOTE] = ACTIONS(2531),
- [sym_number] = ACTIONS(2531),
- [sym_private_property_identifier] = ACTIONS(2531),
- [sym_this] = ACTIONS(2533),
- [sym_super] = ACTIONS(2533),
- [sym_true] = ACTIONS(2533),
- [sym_false] = ACTIONS(2533),
- [sym_null] = ACTIONS(2533),
- [sym_undefined] = ACTIONS(2533),
- [anon_sym_AT] = ACTIONS(2531),
- [anon_sym_static] = ACTIONS(2533),
- [anon_sym_readonly] = ACTIONS(2533),
- [anon_sym_get] = ACTIONS(2533),
- [anon_sym_set] = ACTIONS(2533),
- [anon_sym_declare] = ACTIONS(2533),
- [anon_sym_public] = ACTIONS(2533),
- [anon_sym_private] = ACTIONS(2533),
- [anon_sym_protected] = ACTIONS(2533),
- [anon_sym_override] = ACTIONS(2533),
- [anon_sym_module] = ACTIONS(2533),
- [anon_sym_any] = ACTIONS(2533),
- [anon_sym_number] = ACTIONS(2533),
- [anon_sym_boolean] = ACTIONS(2533),
- [anon_sym_string] = ACTIONS(2533),
- [anon_sym_symbol] = ACTIONS(2533),
- [anon_sym_object] = ACTIONS(2533),
- [anon_sym_abstract] = ACTIONS(2533),
- [anon_sym_interface] = ACTIONS(2533),
- [anon_sym_enum] = ACTIONS(2533),
- [sym_html_comment] = ACTIONS(5),
- },
- [766] = {
- [ts_builtin_sym_end] = ACTIONS(2535),
- [sym_identifier] = ACTIONS(2537),
- [anon_sym_export] = ACTIONS(2537),
- [anon_sym_default] = ACTIONS(2537),
- [anon_sym_type] = ACTIONS(2537),
- [anon_sym_namespace] = ACTIONS(2537),
- [anon_sym_LBRACE] = ACTIONS(2535),
- [anon_sym_RBRACE] = ACTIONS(2535),
- [anon_sym_typeof] = ACTIONS(2537),
- [anon_sym_import] = ACTIONS(2537),
- [anon_sym_with] = ACTIONS(2537),
- [anon_sym_var] = ACTIONS(2537),
- [anon_sym_let] = ACTIONS(2537),
- [anon_sym_const] = ACTIONS(2537),
- [anon_sym_BANG] = ACTIONS(2535),
- [anon_sym_else] = ACTIONS(2537),
- [anon_sym_if] = ACTIONS(2537),
- [anon_sym_switch] = ACTIONS(2537),
- [anon_sym_for] = ACTIONS(2537),
- [anon_sym_LPAREN] = ACTIONS(2535),
- [anon_sym_await] = ACTIONS(2537),
- [anon_sym_while] = ACTIONS(2537),
- [anon_sym_do] = ACTIONS(2537),
- [anon_sym_try] = ACTIONS(2537),
- [anon_sym_break] = ACTIONS(2537),
- [anon_sym_continue] = ACTIONS(2537),
- [anon_sym_debugger] = ACTIONS(2537),
- [anon_sym_return] = ACTIONS(2537),
- [anon_sym_throw] = ACTIONS(2537),
- [anon_sym_SEMI] = ACTIONS(2535),
- [anon_sym_case] = ACTIONS(2537),
- [anon_sym_yield] = ACTIONS(2537),
- [anon_sym_LBRACK] = ACTIONS(2535),
- [sym_glimmer_opening_tag] = ACTIONS(2535),
- [anon_sym_DQUOTE] = ACTIONS(2535),
- [anon_sym_SQUOTE] = ACTIONS(2535),
- [anon_sym_class] = ACTIONS(2537),
- [anon_sym_async] = ACTIONS(2537),
- [anon_sym_function] = ACTIONS(2537),
- [anon_sym_new] = ACTIONS(2537),
- [anon_sym_using] = ACTIONS(2537),
- [anon_sym_PLUS] = ACTIONS(2537),
- [anon_sym_DASH] = ACTIONS(2537),
- [anon_sym_SLASH] = ACTIONS(2537),
- [anon_sym_LT] = ACTIONS(2537),
- [anon_sym_TILDE] = ACTIONS(2535),
- [anon_sym_void] = ACTIONS(2537),
- [anon_sym_delete] = ACTIONS(2537),
- [anon_sym_PLUS_PLUS] = ACTIONS(2535),
- [anon_sym_DASH_DASH] = ACTIONS(2535),
- [sym_comment] = ACTIONS(5),
- [anon_sym_BQUOTE] = ACTIONS(2535),
- [sym_number] = ACTIONS(2535),
- [sym_private_property_identifier] = ACTIONS(2535),
- [sym_this] = ACTIONS(2537),
- [sym_super] = ACTIONS(2537),
- [sym_true] = ACTIONS(2537),
- [sym_false] = ACTIONS(2537),
- [sym_null] = ACTIONS(2537),
- [sym_undefined] = ACTIONS(2537),
- [anon_sym_AT] = ACTIONS(2535),
- [anon_sym_static] = ACTIONS(2537),
- [anon_sym_readonly] = ACTIONS(2537),
- [anon_sym_get] = ACTIONS(2537),
- [anon_sym_set] = ACTIONS(2537),
- [anon_sym_declare] = ACTIONS(2537),
- [anon_sym_public] = ACTIONS(2537),
- [anon_sym_private] = ACTIONS(2537),
- [anon_sym_protected] = ACTIONS(2537),
- [anon_sym_override] = ACTIONS(2537),
- [anon_sym_module] = ACTIONS(2537),
- [anon_sym_any] = ACTIONS(2537),
- [anon_sym_number] = ACTIONS(2537),
- [anon_sym_boolean] = ACTIONS(2537),
- [anon_sym_string] = ACTIONS(2537),
- [anon_sym_symbol] = ACTIONS(2537),
- [anon_sym_object] = ACTIONS(2537),
- [anon_sym_abstract] = ACTIONS(2537),
- [anon_sym_interface] = ACTIONS(2537),
- [anon_sym_enum] = ACTIONS(2537),
- [sym_html_comment] = ACTIONS(5),
- },
- [767] = {
- [ts_builtin_sym_end] = ACTIONS(2539),
- [sym_identifier] = ACTIONS(2541),
- [anon_sym_export] = ACTIONS(2541),
- [anon_sym_default] = ACTIONS(2541),
- [anon_sym_type] = ACTIONS(2541),
- [anon_sym_namespace] = ACTIONS(2541),
- [anon_sym_LBRACE] = ACTIONS(2539),
- [anon_sym_RBRACE] = ACTIONS(2539),
- [anon_sym_typeof] = ACTIONS(2541),
- [anon_sym_import] = ACTIONS(2541),
- [anon_sym_with] = ACTIONS(2541),
- [anon_sym_var] = ACTIONS(2541),
- [anon_sym_let] = ACTIONS(2541),
- [anon_sym_const] = ACTIONS(2541),
- [anon_sym_BANG] = ACTIONS(2539),
- [anon_sym_else] = ACTIONS(2541),
- [anon_sym_if] = ACTIONS(2541),
- [anon_sym_switch] = ACTIONS(2541),
- [anon_sym_for] = ACTIONS(2541),
- [anon_sym_LPAREN] = ACTIONS(2539),
- [anon_sym_await] = ACTIONS(2541),
- [anon_sym_while] = ACTIONS(2541),
- [anon_sym_do] = ACTIONS(2541),
- [anon_sym_try] = ACTIONS(2541),
- [anon_sym_break] = ACTIONS(2541),
- [anon_sym_continue] = ACTIONS(2541),
- [anon_sym_debugger] = ACTIONS(2541),
- [anon_sym_return] = ACTIONS(2541),
- [anon_sym_throw] = ACTIONS(2541),
- [anon_sym_SEMI] = ACTIONS(2539),
- [anon_sym_case] = ACTIONS(2541),
- [anon_sym_yield] = ACTIONS(2541),
- [anon_sym_LBRACK] = ACTIONS(2539),
- [sym_glimmer_opening_tag] = ACTIONS(2539),
- [anon_sym_DQUOTE] = ACTIONS(2539),
- [anon_sym_SQUOTE] = ACTIONS(2539),
- [anon_sym_class] = ACTIONS(2541),
- [anon_sym_async] = ACTIONS(2541),
- [anon_sym_function] = ACTIONS(2541),
- [anon_sym_new] = ACTIONS(2541),
- [anon_sym_using] = ACTIONS(2541),
- [anon_sym_PLUS] = ACTIONS(2541),
- [anon_sym_DASH] = ACTIONS(2541),
- [anon_sym_SLASH] = ACTIONS(2541),
- [anon_sym_LT] = ACTIONS(2541),
- [anon_sym_TILDE] = ACTIONS(2539),
- [anon_sym_void] = ACTIONS(2541),
- [anon_sym_delete] = ACTIONS(2541),
- [anon_sym_PLUS_PLUS] = ACTIONS(2539),
- [anon_sym_DASH_DASH] = ACTIONS(2539),
- [sym_comment] = ACTIONS(5),
- [anon_sym_BQUOTE] = ACTIONS(2539),
- [sym_number] = ACTIONS(2539),
- [sym_private_property_identifier] = ACTIONS(2539),
- [sym_this] = ACTIONS(2541),
- [sym_super] = ACTIONS(2541),
- [sym_true] = ACTIONS(2541),
- [sym_false] = ACTIONS(2541),
- [sym_null] = ACTIONS(2541),
- [sym_undefined] = ACTIONS(2541),
- [anon_sym_AT] = ACTIONS(2539),
- [anon_sym_static] = ACTIONS(2541),
- [anon_sym_readonly] = ACTIONS(2541),
- [anon_sym_get] = ACTIONS(2541),
- [anon_sym_set] = ACTIONS(2541),
- [anon_sym_declare] = ACTIONS(2541),
- [anon_sym_public] = ACTIONS(2541),
- [anon_sym_private] = ACTIONS(2541),
- [anon_sym_protected] = ACTIONS(2541),
- [anon_sym_override] = ACTIONS(2541),
- [anon_sym_module] = ACTIONS(2541),
- [anon_sym_any] = ACTIONS(2541),
- [anon_sym_number] = ACTIONS(2541),
- [anon_sym_boolean] = ACTIONS(2541),
- [anon_sym_string] = ACTIONS(2541),
- [anon_sym_symbol] = ACTIONS(2541),
- [anon_sym_object] = ACTIONS(2541),
- [anon_sym_abstract] = ACTIONS(2541),
- [anon_sym_interface] = ACTIONS(2541),
- [anon_sym_enum] = ACTIONS(2541),
- [sym_html_comment] = ACTIONS(5),
- },
- [768] = {
- [ts_builtin_sym_end] = ACTIONS(2543),
- [sym_identifier] = ACTIONS(2545),
- [anon_sym_export] = ACTIONS(2545),
- [anon_sym_default] = ACTIONS(2545),
- [anon_sym_type] = ACTIONS(2545),
- [anon_sym_namespace] = ACTIONS(2545),
- [anon_sym_LBRACE] = ACTIONS(2543),
- [anon_sym_RBRACE] = ACTIONS(2543),
- [anon_sym_typeof] = ACTIONS(2545),
- [anon_sym_import] = ACTIONS(2545),
- [anon_sym_with] = ACTIONS(2545),
- [anon_sym_var] = ACTIONS(2545),
- [anon_sym_let] = ACTIONS(2545),
- [anon_sym_const] = ACTIONS(2545),
- [anon_sym_BANG] = ACTIONS(2543),
- [anon_sym_else] = ACTIONS(2545),
- [anon_sym_if] = ACTIONS(2545),
- [anon_sym_switch] = ACTIONS(2545),
- [anon_sym_for] = ACTIONS(2545),
- [anon_sym_LPAREN] = ACTIONS(2543),
- [anon_sym_await] = ACTIONS(2545),
- [anon_sym_while] = ACTIONS(2545),
- [anon_sym_do] = ACTIONS(2545),
- [anon_sym_try] = ACTIONS(2545),
- [anon_sym_break] = ACTIONS(2545),
- [anon_sym_continue] = ACTIONS(2545),
- [anon_sym_debugger] = ACTIONS(2545),
- [anon_sym_return] = ACTIONS(2545),
- [anon_sym_throw] = ACTIONS(2545),
- [anon_sym_SEMI] = ACTIONS(2543),
- [anon_sym_case] = ACTIONS(2545),
- [anon_sym_yield] = ACTIONS(2545),
- [anon_sym_LBRACK] = ACTIONS(2543),
- [sym_glimmer_opening_tag] = ACTIONS(2543),
- [anon_sym_DQUOTE] = ACTIONS(2543),
- [anon_sym_SQUOTE] = ACTIONS(2543),
- [anon_sym_class] = ACTIONS(2545),
- [anon_sym_async] = ACTIONS(2545),
- [anon_sym_function] = ACTIONS(2545),
- [anon_sym_new] = ACTIONS(2545),
- [anon_sym_using] = ACTIONS(2545),
- [anon_sym_PLUS] = ACTIONS(2545),
- [anon_sym_DASH] = ACTIONS(2545),
- [anon_sym_SLASH] = ACTIONS(2545),
- [anon_sym_LT] = ACTIONS(2545),
- [anon_sym_TILDE] = ACTIONS(2543),
- [anon_sym_void] = ACTIONS(2545),
- [anon_sym_delete] = ACTIONS(2545),
- [anon_sym_PLUS_PLUS] = ACTIONS(2543),
- [anon_sym_DASH_DASH] = ACTIONS(2543),
- [sym_comment] = ACTIONS(5),
- [anon_sym_BQUOTE] = ACTIONS(2543),
- [sym_number] = ACTIONS(2543),
- [sym_private_property_identifier] = ACTIONS(2543),
- [sym_this] = ACTIONS(2545),
- [sym_super] = ACTIONS(2545),
- [sym_true] = ACTIONS(2545),
- [sym_false] = ACTIONS(2545),
- [sym_null] = ACTIONS(2545),
- [sym_undefined] = ACTIONS(2545),
- [anon_sym_AT] = ACTIONS(2543),
- [anon_sym_static] = ACTIONS(2545),
- [anon_sym_readonly] = ACTIONS(2545),
- [anon_sym_get] = ACTIONS(2545),
- [anon_sym_set] = ACTIONS(2545),
- [anon_sym_declare] = ACTIONS(2545),
- [anon_sym_public] = ACTIONS(2545),
- [anon_sym_private] = ACTIONS(2545),
- [anon_sym_protected] = ACTIONS(2545),
- [anon_sym_override] = ACTIONS(2545),
- [anon_sym_module] = ACTIONS(2545),
- [anon_sym_any] = ACTIONS(2545),
- [anon_sym_number] = ACTIONS(2545),
- [anon_sym_boolean] = ACTIONS(2545),
- [anon_sym_string] = ACTIONS(2545),
- [anon_sym_symbol] = ACTIONS(2545),
- [anon_sym_object] = ACTIONS(2545),
- [anon_sym_abstract] = ACTIONS(2545),
- [anon_sym_interface] = ACTIONS(2545),
- [anon_sym_enum] = ACTIONS(2545),
- [sym_html_comment] = ACTIONS(5),
- },
- [769] = {
- [ts_builtin_sym_end] = ACTIONS(2547),
- [sym_identifier] = ACTIONS(2549),
- [anon_sym_export] = ACTIONS(2549),
- [anon_sym_default] = ACTIONS(2549),
- [anon_sym_type] = ACTIONS(2549),
- [anon_sym_namespace] = ACTIONS(2549),
- [anon_sym_LBRACE] = ACTIONS(2547),
- [anon_sym_RBRACE] = ACTIONS(2547),
- [anon_sym_typeof] = ACTIONS(2549),
- [anon_sym_import] = ACTIONS(2549),
- [anon_sym_with] = ACTIONS(2549),
- [anon_sym_var] = ACTIONS(2549),
- [anon_sym_let] = ACTIONS(2549),
- [anon_sym_const] = ACTIONS(2549),
- [anon_sym_BANG] = ACTIONS(2547),
- [anon_sym_else] = ACTIONS(2549),
- [anon_sym_if] = ACTIONS(2549),
- [anon_sym_switch] = ACTIONS(2549),
- [anon_sym_for] = ACTIONS(2549),
- [anon_sym_LPAREN] = ACTIONS(2547),
- [anon_sym_await] = ACTIONS(2549),
- [anon_sym_while] = ACTIONS(2549),
- [anon_sym_do] = ACTIONS(2549),
- [anon_sym_try] = ACTIONS(2549),
- [anon_sym_break] = ACTIONS(2549),
- [anon_sym_continue] = ACTIONS(2549),
- [anon_sym_debugger] = ACTIONS(2549),
- [anon_sym_return] = ACTIONS(2549),
- [anon_sym_throw] = ACTIONS(2549),
- [anon_sym_SEMI] = ACTIONS(2547),
- [anon_sym_case] = ACTIONS(2549),
- [anon_sym_yield] = ACTIONS(2549),
- [anon_sym_LBRACK] = ACTIONS(2547),
- [sym_glimmer_opening_tag] = ACTIONS(2547),
- [anon_sym_DQUOTE] = ACTIONS(2547),
- [anon_sym_SQUOTE] = ACTIONS(2547),
- [anon_sym_class] = ACTIONS(2549),
- [anon_sym_async] = ACTIONS(2549),
- [anon_sym_function] = ACTIONS(2549),
- [anon_sym_new] = ACTIONS(2549),
- [anon_sym_using] = ACTIONS(2549),
- [anon_sym_PLUS] = ACTIONS(2549),
- [anon_sym_DASH] = ACTIONS(2549),
- [anon_sym_SLASH] = ACTIONS(2549),
- [anon_sym_LT] = ACTIONS(2549),
- [anon_sym_TILDE] = ACTIONS(2547),
- [anon_sym_void] = ACTIONS(2549),
- [anon_sym_delete] = ACTIONS(2549),
- [anon_sym_PLUS_PLUS] = ACTIONS(2547),
- [anon_sym_DASH_DASH] = ACTIONS(2547),
- [sym_comment] = ACTIONS(5),
- [anon_sym_BQUOTE] = ACTIONS(2547),
- [sym_number] = ACTIONS(2547),
- [sym_private_property_identifier] = ACTIONS(2547),
- [sym_this] = ACTIONS(2549),
- [sym_super] = ACTIONS(2549),
- [sym_true] = ACTIONS(2549),
- [sym_false] = ACTIONS(2549),
- [sym_null] = ACTIONS(2549),
- [sym_undefined] = ACTIONS(2549),
- [anon_sym_AT] = ACTIONS(2547),
- [anon_sym_static] = ACTIONS(2549),
- [anon_sym_readonly] = ACTIONS(2549),
- [anon_sym_get] = ACTIONS(2549),
- [anon_sym_set] = ACTIONS(2549),
- [anon_sym_declare] = ACTIONS(2549),
- [anon_sym_public] = ACTIONS(2549),
- [anon_sym_private] = ACTIONS(2549),
- [anon_sym_protected] = ACTIONS(2549),
- [anon_sym_override] = ACTIONS(2549),
- [anon_sym_module] = ACTIONS(2549),
- [anon_sym_any] = ACTIONS(2549),
- [anon_sym_number] = ACTIONS(2549),
- [anon_sym_boolean] = ACTIONS(2549),
- [anon_sym_string] = ACTIONS(2549),
- [anon_sym_symbol] = ACTIONS(2549),
- [anon_sym_object] = ACTIONS(2549),
- [anon_sym_abstract] = ACTIONS(2549),
- [anon_sym_interface] = ACTIONS(2549),
- [anon_sym_enum] = ACTIONS(2549),
- [sym_html_comment] = ACTIONS(5),
- },
- [770] = {
- [ts_builtin_sym_end] = ACTIONS(2551),
- [sym_identifier] = ACTIONS(2553),
- [anon_sym_export] = ACTIONS(2553),
- [anon_sym_default] = ACTIONS(2553),
- [anon_sym_type] = ACTIONS(2553),
- [anon_sym_namespace] = ACTIONS(2553),
- [anon_sym_LBRACE] = ACTIONS(2551),
- [anon_sym_RBRACE] = ACTIONS(2551),
- [anon_sym_typeof] = ACTIONS(2553),
- [anon_sym_import] = ACTIONS(2553),
- [anon_sym_with] = ACTIONS(2553),
- [anon_sym_var] = ACTIONS(2553),
- [anon_sym_let] = ACTIONS(2553),
- [anon_sym_const] = ACTIONS(2553),
- [anon_sym_BANG] = ACTIONS(2551),
- [anon_sym_else] = ACTIONS(2553),
- [anon_sym_if] = ACTIONS(2553),
- [anon_sym_switch] = ACTIONS(2553),
- [anon_sym_for] = ACTIONS(2553),
- [anon_sym_LPAREN] = ACTIONS(2551),
- [anon_sym_await] = ACTIONS(2553),
- [anon_sym_while] = ACTIONS(2553),
- [anon_sym_do] = ACTIONS(2553),
- [anon_sym_try] = ACTIONS(2553),
- [anon_sym_break] = ACTIONS(2553),
- [anon_sym_continue] = ACTIONS(2553),
- [anon_sym_debugger] = ACTIONS(2553),
- [anon_sym_return] = ACTIONS(2553),
- [anon_sym_throw] = ACTIONS(2553),
- [anon_sym_SEMI] = ACTIONS(2551),
- [anon_sym_case] = ACTIONS(2553),
- [anon_sym_yield] = ACTIONS(2553),
- [anon_sym_LBRACK] = ACTIONS(2551),
- [sym_glimmer_opening_tag] = ACTIONS(2551),
- [anon_sym_DQUOTE] = ACTIONS(2551),
- [anon_sym_SQUOTE] = ACTIONS(2551),
- [anon_sym_class] = ACTIONS(2553),
- [anon_sym_async] = ACTIONS(2553),
- [anon_sym_function] = ACTIONS(2553),
- [anon_sym_new] = ACTIONS(2553),
- [anon_sym_using] = ACTIONS(2553),
- [anon_sym_PLUS] = ACTIONS(2553),
- [anon_sym_DASH] = ACTIONS(2553),
- [anon_sym_SLASH] = ACTIONS(2553),
- [anon_sym_LT] = ACTIONS(2553),
- [anon_sym_TILDE] = ACTIONS(2551),
- [anon_sym_void] = ACTIONS(2553),
- [anon_sym_delete] = ACTIONS(2553),
- [anon_sym_PLUS_PLUS] = ACTIONS(2551),
- [anon_sym_DASH_DASH] = ACTIONS(2551),
- [sym_comment] = ACTIONS(5),
- [anon_sym_BQUOTE] = ACTIONS(2551),
- [sym_number] = ACTIONS(2551),
- [sym_private_property_identifier] = ACTIONS(2551),
- [sym_this] = ACTIONS(2553),
- [sym_super] = ACTIONS(2553),
- [sym_true] = ACTIONS(2553),
- [sym_false] = ACTIONS(2553),
- [sym_null] = ACTIONS(2553),
- [sym_undefined] = ACTIONS(2553),
- [anon_sym_AT] = ACTIONS(2551),
- [anon_sym_static] = ACTIONS(2553),
- [anon_sym_readonly] = ACTIONS(2553),
- [anon_sym_get] = ACTIONS(2553),
- [anon_sym_set] = ACTIONS(2553),
- [anon_sym_declare] = ACTIONS(2553),
- [anon_sym_public] = ACTIONS(2553),
- [anon_sym_private] = ACTIONS(2553),
- [anon_sym_protected] = ACTIONS(2553),
- [anon_sym_override] = ACTIONS(2553),
- [anon_sym_module] = ACTIONS(2553),
- [anon_sym_any] = ACTIONS(2553),
- [anon_sym_number] = ACTIONS(2553),
- [anon_sym_boolean] = ACTIONS(2553),
- [anon_sym_string] = ACTIONS(2553),
- [anon_sym_symbol] = ACTIONS(2553),
- [anon_sym_object] = ACTIONS(2553),
- [anon_sym_abstract] = ACTIONS(2553),
- [anon_sym_interface] = ACTIONS(2553),
- [anon_sym_enum] = ACTIONS(2553),
- [sym_html_comment] = ACTIONS(5),
- },
- [771] = {
- [ts_builtin_sym_end] = ACTIONS(2555),
- [sym_identifier] = ACTIONS(2557),
- [anon_sym_export] = ACTIONS(2557),
- [anon_sym_default] = ACTIONS(2557),
- [anon_sym_type] = ACTIONS(2557),
- [anon_sym_namespace] = ACTIONS(2557),
- [anon_sym_LBRACE] = ACTIONS(2555),
- [anon_sym_RBRACE] = ACTIONS(2555),
- [anon_sym_typeof] = ACTIONS(2557),
- [anon_sym_import] = ACTIONS(2557),
- [anon_sym_with] = ACTIONS(2557),
- [anon_sym_var] = ACTIONS(2557),
- [anon_sym_let] = ACTIONS(2557),
- [anon_sym_const] = ACTIONS(2557),
- [anon_sym_BANG] = ACTIONS(2555),
- [anon_sym_else] = ACTIONS(2557),
- [anon_sym_if] = ACTIONS(2557),
- [anon_sym_switch] = ACTIONS(2557),
- [anon_sym_for] = ACTIONS(2557),
- [anon_sym_LPAREN] = ACTIONS(2555),
- [anon_sym_await] = ACTIONS(2557),
- [anon_sym_while] = ACTIONS(2557),
- [anon_sym_do] = ACTIONS(2557),
- [anon_sym_try] = ACTIONS(2557),
- [anon_sym_break] = ACTIONS(2557),
- [anon_sym_continue] = ACTIONS(2557),
- [anon_sym_debugger] = ACTIONS(2557),
- [anon_sym_return] = ACTIONS(2557),
- [anon_sym_throw] = ACTIONS(2557),
- [anon_sym_SEMI] = ACTIONS(2555),
- [anon_sym_case] = ACTIONS(2557),
- [anon_sym_yield] = ACTIONS(2557),
- [anon_sym_LBRACK] = ACTIONS(2555),
- [sym_glimmer_opening_tag] = ACTIONS(2555),
- [anon_sym_DQUOTE] = ACTIONS(2555),
- [anon_sym_SQUOTE] = ACTIONS(2555),
- [anon_sym_class] = ACTIONS(2557),
- [anon_sym_async] = ACTIONS(2557),
- [anon_sym_function] = ACTIONS(2557),
- [anon_sym_new] = ACTIONS(2557),
- [anon_sym_using] = ACTIONS(2557),
- [anon_sym_PLUS] = ACTIONS(2557),
- [anon_sym_DASH] = ACTIONS(2557),
- [anon_sym_SLASH] = ACTIONS(2557),
- [anon_sym_LT] = ACTIONS(2557),
- [anon_sym_TILDE] = ACTIONS(2555),
- [anon_sym_void] = ACTIONS(2557),
- [anon_sym_delete] = ACTIONS(2557),
- [anon_sym_PLUS_PLUS] = ACTIONS(2555),
- [anon_sym_DASH_DASH] = ACTIONS(2555),
- [sym_comment] = ACTIONS(5),
- [anon_sym_BQUOTE] = ACTIONS(2555),
- [sym_number] = ACTIONS(2555),
- [sym_private_property_identifier] = ACTIONS(2555),
- [sym_this] = ACTIONS(2557),
- [sym_super] = ACTIONS(2557),
- [sym_true] = ACTIONS(2557),
- [sym_false] = ACTIONS(2557),
- [sym_null] = ACTIONS(2557),
- [sym_undefined] = ACTIONS(2557),
- [anon_sym_AT] = ACTIONS(2555),
- [anon_sym_static] = ACTIONS(2557),
- [anon_sym_readonly] = ACTIONS(2557),
- [anon_sym_get] = ACTIONS(2557),
- [anon_sym_set] = ACTIONS(2557),
- [anon_sym_declare] = ACTIONS(2557),
- [anon_sym_public] = ACTIONS(2557),
- [anon_sym_private] = ACTIONS(2557),
- [anon_sym_protected] = ACTIONS(2557),
- [anon_sym_override] = ACTIONS(2557),
- [anon_sym_module] = ACTIONS(2557),
- [anon_sym_any] = ACTIONS(2557),
- [anon_sym_number] = ACTIONS(2557),
- [anon_sym_boolean] = ACTIONS(2557),
- [anon_sym_string] = ACTIONS(2557),
- [anon_sym_symbol] = ACTIONS(2557),
- [anon_sym_object] = ACTIONS(2557),
- [anon_sym_abstract] = ACTIONS(2557),
- [anon_sym_interface] = ACTIONS(2557),
- [anon_sym_enum] = ACTIONS(2557),
- [sym_html_comment] = ACTIONS(5),
- },
- [772] = {
- [ts_builtin_sym_end] = ACTIONS(2559),
- [sym_identifier] = ACTIONS(2561),
- [anon_sym_export] = ACTIONS(2561),
- [anon_sym_default] = ACTIONS(2561),
- [anon_sym_type] = ACTIONS(2561),
- [anon_sym_namespace] = ACTIONS(2561),
- [anon_sym_LBRACE] = ACTIONS(2559),
- [anon_sym_RBRACE] = ACTIONS(2559),
- [anon_sym_typeof] = ACTIONS(2561),
- [anon_sym_import] = ACTIONS(2561),
- [anon_sym_with] = ACTIONS(2561),
- [anon_sym_var] = ACTIONS(2561),
- [anon_sym_let] = ACTIONS(2561),
- [anon_sym_const] = ACTIONS(2561),
- [anon_sym_BANG] = ACTIONS(2559),
- [anon_sym_else] = ACTIONS(2561),
- [anon_sym_if] = ACTIONS(2561),
- [anon_sym_switch] = ACTIONS(2561),
- [anon_sym_for] = ACTIONS(2561),
- [anon_sym_LPAREN] = ACTIONS(2559),
- [anon_sym_await] = ACTIONS(2561),
- [anon_sym_while] = ACTIONS(2561),
- [anon_sym_do] = ACTIONS(2561),
- [anon_sym_try] = ACTIONS(2561),
- [anon_sym_break] = ACTIONS(2561),
- [anon_sym_continue] = ACTIONS(2561),
- [anon_sym_debugger] = ACTIONS(2561),
- [anon_sym_return] = ACTIONS(2561),
- [anon_sym_throw] = ACTIONS(2561),
- [anon_sym_SEMI] = ACTIONS(2559),
- [anon_sym_case] = ACTIONS(2561),
- [anon_sym_yield] = ACTIONS(2561),
- [anon_sym_LBRACK] = ACTIONS(2559),
- [sym_glimmer_opening_tag] = ACTIONS(2559),
- [anon_sym_DQUOTE] = ACTIONS(2559),
- [anon_sym_SQUOTE] = ACTIONS(2559),
- [anon_sym_class] = ACTIONS(2561),
- [anon_sym_async] = ACTIONS(2561),
- [anon_sym_function] = ACTIONS(2561),
- [anon_sym_new] = ACTIONS(2561),
- [anon_sym_using] = ACTIONS(2561),
- [anon_sym_PLUS] = ACTIONS(2561),
- [anon_sym_DASH] = ACTIONS(2561),
- [anon_sym_SLASH] = ACTIONS(2561),
- [anon_sym_LT] = ACTIONS(2561),
- [anon_sym_TILDE] = ACTIONS(2559),
- [anon_sym_void] = ACTIONS(2561),
- [anon_sym_delete] = ACTIONS(2561),
- [anon_sym_PLUS_PLUS] = ACTIONS(2559),
- [anon_sym_DASH_DASH] = ACTIONS(2559),
- [sym_comment] = ACTIONS(5),
- [anon_sym_BQUOTE] = ACTIONS(2559),
- [sym_number] = ACTIONS(2559),
- [sym_private_property_identifier] = ACTIONS(2559),
- [sym_this] = ACTIONS(2561),
- [sym_super] = ACTIONS(2561),
- [sym_true] = ACTIONS(2561),
- [sym_false] = ACTIONS(2561),
- [sym_null] = ACTIONS(2561),
- [sym_undefined] = ACTIONS(2561),
- [anon_sym_AT] = ACTIONS(2559),
- [anon_sym_static] = ACTIONS(2561),
- [anon_sym_readonly] = ACTIONS(2561),
- [anon_sym_get] = ACTIONS(2561),
- [anon_sym_set] = ACTIONS(2561),
- [anon_sym_declare] = ACTIONS(2561),
- [anon_sym_public] = ACTIONS(2561),
- [anon_sym_private] = ACTIONS(2561),
- [anon_sym_protected] = ACTIONS(2561),
- [anon_sym_override] = ACTIONS(2561),
- [anon_sym_module] = ACTIONS(2561),
- [anon_sym_any] = ACTIONS(2561),
- [anon_sym_number] = ACTIONS(2561),
- [anon_sym_boolean] = ACTIONS(2561),
- [anon_sym_string] = ACTIONS(2561),
- [anon_sym_symbol] = ACTIONS(2561),
- [anon_sym_object] = ACTIONS(2561),
- [anon_sym_abstract] = ACTIONS(2561),
- [anon_sym_interface] = ACTIONS(2561),
- [anon_sym_enum] = ACTIONS(2561),
- [sym_html_comment] = ACTIONS(5),
- },
- [773] = {
- [ts_builtin_sym_end] = ACTIONS(2563),
- [sym_identifier] = ACTIONS(2565),
- [anon_sym_export] = ACTIONS(2565),
- [anon_sym_default] = ACTIONS(2565),
- [anon_sym_type] = ACTIONS(2565),
- [anon_sym_namespace] = ACTIONS(2565),
- [anon_sym_LBRACE] = ACTIONS(2563),
- [anon_sym_RBRACE] = ACTIONS(2563),
- [anon_sym_typeof] = ACTIONS(2565),
- [anon_sym_import] = ACTIONS(2565),
- [anon_sym_with] = ACTIONS(2565),
- [anon_sym_var] = ACTIONS(2565),
- [anon_sym_let] = ACTIONS(2565),
- [anon_sym_const] = ACTIONS(2565),
- [anon_sym_BANG] = ACTIONS(2563),
- [anon_sym_else] = ACTIONS(2565),
- [anon_sym_if] = ACTIONS(2565),
- [anon_sym_switch] = ACTIONS(2565),
- [anon_sym_for] = ACTIONS(2565),
- [anon_sym_LPAREN] = ACTIONS(2563),
- [anon_sym_await] = ACTIONS(2565),
- [anon_sym_while] = ACTIONS(2565),
- [anon_sym_do] = ACTIONS(2565),
- [anon_sym_try] = ACTIONS(2565),
- [anon_sym_break] = ACTIONS(2565),
- [anon_sym_continue] = ACTIONS(2565),
- [anon_sym_debugger] = ACTIONS(2565),
- [anon_sym_return] = ACTIONS(2565),
- [anon_sym_throw] = ACTIONS(2565),
- [anon_sym_SEMI] = ACTIONS(2563),
- [anon_sym_case] = ACTIONS(2565),
- [anon_sym_yield] = ACTIONS(2565),
- [anon_sym_LBRACK] = ACTIONS(2563),
- [sym_glimmer_opening_tag] = ACTIONS(2563),
- [anon_sym_DQUOTE] = ACTIONS(2563),
- [anon_sym_SQUOTE] = ACTIONS(2563),
- [anon_sym_class] = ACTIONS(2565),
- [anon_sym_async] = ACTIONS(2565),
- [anon_sym_function] = ACTIONS(2565),
- [anon_sym_new] = ACTIONS(2565),
- [anon_sym_using] = ACTIONS(2565),
- [anon_sym_PLUS] = ACTIONS(2565),
- [anon_sym_DASH] = ACTIONS(2565),
- [anon_sym_SLASH] = ACTIONS(2565),
- [anon_sym_LT] = ACTIONS(2565),
- [anon_sym_TILDE] = ACTIONS(2563),
- [anon_sym_void] = ACTIONS(2565),
- [anon_sym_delete] = ACTIONS(2565),
- [anon_sym_PLUS_PLUS] = ACTIONS(2563),
- [anon_sym_DASH_DASH] = ACTIONS(2563),
- [sym_comment] = ACTIONS(5),
- [anon_sym_BQUOTE] = ACTIONS(2563),
- [sym_number] = ACTIONS(2563),
- [sym_private_property_identifier] = ACTIONS(2563),
- [sym_this] = ACTIONS(2565),
- [sym_super] = ACTIONS(2565),
- [sym_true] = ACTIONS(2565),
- [sym_false] = ACTIONS(2565),
- [sym_null] = ACTIONS(2565),
- [sym_undefined] = ACTIONS(2565),
- [anon_sym_AT] = ACTIONS(2563),
- [anon_sym_static] = ACTIONS(2565),
- [anon_sym_readonly] = ACTIONS(2565),
- [anon_sym_get] = ACTIONS(2565),
- [anon_sym_set] = ACTIONS(2565),
- [anon_sym_declare] = ACTIONS(2565),
- [anon_sym_public] = ACTIONS(2565),
- [anon_sym_private] = ACTIONS(2565),
- [anon_sym_protected] = ACTIONS(2565),
- [anon_sym_override] = ACTIONS(2565),
- [anon_sym_module] = ACTIONS(2565),
- [anon_sym_any] = ACTIONS(2565),
- [anon_sym_number] = ACTIONS(2565),
- [anon_sym_boolean] = ACTIONS(2565),
- [anon_sym_string] = ACTIONS(2565),
- [anon_sym_symbol] = ACTIONS(2565),
- [anon_sym_object] = ACTIONS(2565),
- [anon_sym_abstract] = ACTIONS(2565),
- [anon_sym_interface] = ACTIONS(2565),
- [anon_sym_enum] = ACTIONS(2565),
- [sym_html_comment] = ACTIONS(5),
- },
- [774] = {
- [ts_builtin_sym_end] = ACTIONS(2567),
- [sym_identifier] = ACTIONS(2569),
- [anon_sym_export] = ACTIONS(2569),
- [anon_sym_default] = ACTIONS(2569),
- [anon_sym_type] = ACTIONS(2569),
- [anon_sym_namespace] = ACTIONS(2569),
- [anon_sym_LBRACE] = ACTIONS(2567),
- [anon_sym_RBRACE] = ACTIONS(2567),
- [anon_sym_typeof] = ACTIONS(2569),
- [anon_sym_import] = ACTIONS(2569),
- [anon_sym_with] = ACTIONS(2569),
- [anon_sym_var] = ACTIONS(2569),
- [anon_sym_let] = ACTIONS(2569),
- [anon_sym_const] = ACTIONS(2569),
- [anon_sym_BANG] = ACTIONS(2567),
- [anon_sym_else] = ACTIONS(2569),
- [anon_sym_if] = ACTIONS(2569),
- [anon_sym_switch] = ACTIONS(2569),
- [anon_sym_for] = ACTIONS(2569),
- [anon_sym_LPAREN] = ACTIONS(2567),
- [anon_sym_await] = ACTIONS(2569),
- [anon_sym_while] = ACTIONS(2569),
- [anon_sym_do] = ACTIONS(2569),
- [anon_sym_try] = ACTIONS(2569),
- [anon_sym_break] = ACTIONS(2569),
- [anon_sym_continue] = ACTIONS(2569),
- [anon_sym_debugger] = ACTIONS(2569),
- [anon_sym_return] = ACTIONS(2569),
- [anon_sym_throw] = ACTIONS(2569),
- [anon_sym_SEMI] = ACTIONS(2567),
- [anon_sym_case] = ACTIONS(2569),
- [anon_sym_yield] = ACTIONS(2569),
- [anon_sym_LBRACK] = ACTIONS(2567),
- [sym_glimmer_opening_tag] = ACTIONS(2567),
- [anon_sym_DQUOTE] = ACTIONS(2567),
- [anon_sym_SQUOTE] = ACTIONS(2567),
- [anon_sym_class] = ACTIONS(2569),
- [anon_sym_async] = ACTIONS(2569),
- [anon_sym_function] = ACTIONS(2569),
- [anon_sym_new] = ACTIONS(2569),
- [anon_sym_using] = ACTIONS(2569),
- [anon_sym_PLUS] = ACTIONS(2569),
- [anon_sym_DASH] = ACTIONS(2569),
- [anon_sym_SLASH] = ACTIONS(2569),
- [anon_sym_LT] = ACTIONS(2569),
- [anon_sym_TILDE] = ACTIONS(2567),
- [anon_sym_void] = ACTIONS(2569),
- [anon_sym_delete] = ACTIONS(2569),
- [anon_sym_PLUS_PLUS] = ACTIONS(2567),
- [anon_sym_DASH_DASH] = ACTIONS(2567),
- [sym_comment] = ACTIONS(5),
- [anon_sym_BQUOTE] = ACTIONS(2567),
- [sym_number] = ACTIONS(2567),
- [sym_private_property_identifier] = ACTIONS(2567),
- [sym_this] = ACTIONS(2569),
- [sym_super] = ACTIONS(2569),
- [sym_true] = ACTIONS(2569),
- [sym_false] = ACTIONS(2569),
- [sym_null] = ACTIONS(2569),
- [sym_undefined] = ACTIONS(2569),
- [anon_sym_AT] = ACTIONS(2567),
- [anon_sym_static] = ACTIONS(2569),
- [anon_sym_readonly] = ACTIONS(2569),
- [anon_sym_get] = ACTIONS(2569),
- [anon_sym_set] = ACTIONS(2569),
- [anon_sym_declare] = ACTIONS(2569),
- [anon_sym_public] = ACTIONS(2569),
- [anon_sym_private] = ACTIONS(2569),
- [anon_sym_protected] = ACTIONS(2569),
- [anon_sym_override] = ACTIONS(2569),
- [anon_sym_module] = ACTIONS(2569),
- [anon_sym_any] = ACTIONS(2569),
- [anon_sym_number] = ACTIONS(2569),
- [anon_sym_boolean] = ACTIONS(2569),
- [anon_sym_string] = ACTIONS(2569),
- [anon_sym_symbol] = ACTIONS(2569),
- [anon_sym_object] = ACTIONS(2569),
- [anon_sym_abstract] = ACTIONS(2569),
- [anon_sym_interface] = ACTIONS(2569),
- [anon_sym_enum] = ACTIONS(2569),
- [sym_html_comment] = ACTIONS(5),
- },
- [775] = {
- [sym_import] = STATE(4753),
- [sym_nested_identifier] = STATE(5707),
- [sym_string] = STATE(2889),
- [sym_formal_parameters] = STATE(5626),
- [sym_rest_pattern] = STATE(5377),
- [sym_nested_type_identifier] = STATE(2828),
- [sym__type_query_member_expression_in_type_annotation] = STATE(3228),
- [sym__type_query_call_expression_in_type_annotation] = STATE(2850),
- [sym_type] = STATE(3859),
- [sym_tuple_parameter] = STATE(4770),
- [sym_optional_tuple_parameter] = STATE(4770),
- [sym_optional_type] = STATE(4770),
- [sym_rest_type] = STATE(4770),
- [sym__tuple_type_member] = STATE(4770),
- [sym_constructor_type] = STATE(2896),
- [sym_primary_type] = STATE(2897),
- [sym_template_literal_type] = STATE(2885),
- [sym_infer_type] = STATE(2896),
- [sym_conditional_type] = STATE(2885),
- [sym_generic_type] = STATE(2885),
- [sym_type_query] = STATE(2885),
- [sym_index_type_query] = STATE(2885),
- [sym_lookup_type] = STATE(2885),
- [sym_literal_type] = STATE(2885),
- [sym__number] = STATE(2903),
- [sym_existential_type] = STATE(2885),
- [sym_flow_maybe_type] = STATE(2885),
- [sym_parenthesized_type] = STATE(2885),
- [sym_predefined_type] = STATE(2885),
- [sym_object_type] = STATE(2885),
- [sym_type_parameters] = STATE(5517),
- [sym_array_type] = STATE(2885),
- [sym_tuple_type] = STATE(2885),
- [sym_readonly_type] = STATE(2896),
- [sym_union_type] = STATE(2885),
- [sym_intersection_type] = STATE(2885),
- [sym_function_type] = STATE(2896),
- [sym_identifier] = ACTIONS(2571),
- [anon_sym_STAR] = ACTIONS(612),
- [anon_sym_LBRACE] = ACTIONS(1498),
- [anon_sym_COMMA] = ACTIONS(2573),
- [anon_sym_typeof] = ACTIONS(1500),
- [anon_sym_import] = ACTIONS(133),
- [anon_sym_const] = ACTIONS(135),
- [anon_sym_LPAREN] = ACTIONS(1502),
- [anon_sym_LBRACK] = ACTIONS(1504),
- [anon_sym_RBRACK] = ACTIONS(2575),
- [anon_sym_DQUOTE] = ACTIONS(1506),
- [anon_sym_SQUOTE] = ACTIONS(1508),
- [anon_sym_new] = ACTIONS(1572),
- [anon_sym_DOT_DOT_DOT] = ACTIONS(2577),
- [anon_sym_AMP] = ACTIONS(640),
- [anon_sym_PIPE] = ACTIONS(642),
- [anon_sym_PLUS] = ACTIONS(2579),
- [anon_sym_DASH] = ACTIONS(2579),
- [anon_sym_LT] = ACTIONS(2581),
- [anon_sym_void] = ACTIONS(220),
- [sym_comment] = ACTIONS(5),
- [anon_sym_BQUOTE] = ACTIONS(1516),
- [sym_number] = ACTIONS(1518),
- [sym_this] = ACTIONS(1520),
- [sym_true] = ACTIONS(1522),
- [sym_false] = ACTIONS(1522),
- [sym_null] = ACTIONS(1522),
- [sym_undefined] = ACTIONS(1522),
- [anon_sym_readonly] = ACTIONS(1578),
- [anon_sym_QMARK] = ACTIONS(662),
- [anon_sym_any] = ACTIONS(220),
- [anon_sym_number] = ACTIONS(220),
- [anon_sym_boolean] = ACTIONS(220),
- [anon_sym_string] = ACTIONS(220),
- [anon_sym_symbol] = ACTIONS(220),
- [anon_sym_object] = ACTIONS(220),
- [anon_sym_abstract] = ACTIONS(666),
- [anon_sym_infer] = ACTIONS(668),
- [anon_sym_keyof] = ACTIONS(670),
- [anon_sym_unique] = ACTIONS(218),
- [anon_sym_unknown] = ACTIONS(220),
- [anon_sym_never] = ACTIONS(220),
- [anon_sym_LBRACE_PIPE] = ACTIONS(222),
- [sym_html_comment] = ACTIONS(5),
- },
- [776] = {
- [ts_builtin_sym_end] = ACTIONS(2583),
- [sym_identifier] = ACTIONS(2585),
- [anon_sym_export] = ACTIONS(2585),
- [anon_sym_default] = ACTIONS(2585),
- [anon_sym_type] = ACTIONS(2585),
- [anon_sym_namespace] = ACTIONS(2585),
- [anon_sym_LBRACE] = ACTIONS(2583),
- [anon_sym_RBRACE] = ACTIONS(2583),
- [anon_sym_typeof] = ACTIONS(2585),
- [anon_sym_import] = ACTIONS(2585),
- [anon_sym_with] = ACTIONS(2585),
- [anon_sym_var] = ACTIONS(2585),
- [anon_sym_let] = ACTIONS(2585),
- [anon_sym_const] = ACTIONS(2585),
- [anon_sym_BANG] = ACTIONS(2583),
- [anon_sym_else] = ACTIONS(2585),
- [anon_sym_if] = ACTIONS(2585),
- [anon_sym_switch] = ACTIONS(2585),
- [anon_sym_for] = ACTIONS(2585),
- [anon_sym_LPAREN] = ACTIONS(2583),
- [anon_sym_await] = ACTIONS(2585),
- [anon_sym_while] = ACTIONS(2585),
- [anon_sym_do] = ACTIONS(2585),
- [anon_sym_try] = ACTIONS(2585),
- [anon_sym_break] = ACTIONS(2585),
- [anon_sym_continue] = ACTIONS(2585),
- [anon_sym_debugger] = ACTIONS(2585),
- [anon_sym_return] = ACTIONS(2585),
- [anon_sym_throw] = ACTIONS(2585),
- [anon_sym_SEMI] = ACTIONS(2583),
- [anon_sym_case] = ACTIONS(2585),
- [anon_sym_yield] = ACTIONS(2585),
- [anon_sym_LBRACK] = ACTIONS(2583),
- [sym_glimmer_opening_tag] = ACTIONS(2583),
- [anon_sym_DQUOTE] = ACTIONS(2583),
- [anon_sym_SQUOTE] = ACTIONS(2583),
- [anon_sym_class] = ACTIONS(2585),
- [anon_sym_async] = ACTIONS(2585),
- [anon_sym_function] = ACTIONS(2585),
- [anon_sym_new] = ACTIONS(2585),
- [anon_sym_using] = ACTIONS(2585),
- [anon_sym_PLUS] = ACTIONS(2585),
- [anon_sym_DASH] = ACTIONS(2585),
- [anon_sym_SLASH] = ACTIONS(2585),
- [anon_sym_LT] = ACTIONS(2585),
- [anon_sym_TILDE] = ACTIONS(2583),
- [anon_sym_void] = ACTIONS(2585),
- [anon_sym_delete] = ACTIONS(2585),
- [anon_sym_PLUS_PLUS] = ACTIONS(2583),
- [anon_sym_DASH_DASH] = ACTIONS(2583),
- [sym_comment] = ACTIONS(5),
- [anon_sym_BQUOTE] = ACTIONS(2583),
- [sym_number] = ACTIONS(2583),
- [sym_private_property_identifier] = ACTIONS(2583),
- [sym_this] = ACTIONS(2585),
- [sym_super] = ACTIONS(2585),
- [sym_true] = ACTIONS(2585),
- [sym_false] = ACTIONS(2585),
- [sym_null] = ACTIONS(2585),
- [sym_undefined] = ACTIONS(2585),
- [anon_sym_AT] = ACTIONS(2583),
- [anon_sym_static] = ACTIONS(2585),
- [anon_sym_readonly] = ACTIONS(2585),
- [anon_sym_get] = ACTIONS(2585),
- [anon_sym_set] = ACTIONS(2585),
- [anon_sym_declare] = ACTIONS(2585),
- [anon_sym_public] = ACTIONS(2585),
- [anon_sym_private] = ACTIONS(2585),
- [anon_sym_protected] = ACTIONS(2585),
- [anon_sym_override] = ACTIONS(2585),
- [anon_sym_module] = ACTIONS(2585),
- [anon_sym_any] = ACTIONS(2585),
- [anon_sym_number] = ACTIONS(2585),
- [anon_sym_boolean] = ACTIONS(2585),
- [anon_sym_string] = ACTIONS(2585),
- [anon_sym_symbol] = ACTIONS(2585),
- [anon_sym_object] = ACTIONS(2585),
- [anon_sym_abstract] = ACTIONS(2585),
- [anon_sym_interface] = ACTIONS(2585),
- [anon_sym_enum] = ACTIONS(2585),
- [sym_html_comment] = ACTIONS(5),
- },
- [777] = {
- [ts_builtin_sym_end] = ACTIONS(2583),
- [sym_identifier] = ACTIONS(2585),
- [anon_sym_export] = ACTIONS(2585),
- [anon_sym_default] = ACTIONS(2585),
- [anon_sym_type] = ACTIONS(2585),
- [anon_sym_namespace] = ACTIONS(2585),
- [anon_sym_LBRACE] = ACTIONS(2583),
- [anon_sym_RBRACE] = ACTIONS(2583),
- [anon_sym_typeof] = ACTIONS(2585),
- [anon_sym_import] = ACTIONS(2585),
- [anon_sym_with] = ACTIONS(2585),
- [anon_sym_var] = ACTIONS(2585),
- [anon_sym_let] = ACTIONS(2585),
- [anon_sym_const] = ACTIONS(2585),
- [anon_sym_BANG] = ACTIONS(2583),
- [anon_sym_else] = ACTIONS(2585),
- [anon_sym_if] = ACTIONS(2585),
- [anon_sym_switch] = ACTIONS(2585),
- [anon_sym_for] = ACTIONS(2585),
- [anon_sym_LPAREN] = ACTIONS(2583),
- [anon_sym_await] = ACTIONS(2585),
- [anon_sym_while] = ACTIONS(2585),
- [anon_sym_do] = ACTIONS(2585),
- [anon_sym_try] = ACTIONS(2585),
- [anon_sym_break] = ACTIONS(2585),
- [anon_sym_continue] = ACTIONS(2585),
- [anon_sym_debugger] = ACTIONS(2585),
- [anon_sym_return] = ACTIONS(2585),
- [anon_sym_throw] = ACTIONS(2585),
- [anon_sym_SEMI] = ACTIONS(2583),
- [anon_sym_case] = ACTIONS(2585),
- [anon_sym_yield] = ACTIONS(2585),
- [anon_sym_LBRACK] = ACTIONS(2583),
- [sym_glimmer_opening_tag] = ACTIONS(2583),
- [anon_sym_DQUOTE] = ACTIONS(2583),
- [anon_sym_SQUOTE] = ACTIONS(2583),
- [anon_sym_class] = ACTIONS(2585),
- [anon_sym_async] = ACTIONS(2585),
- [anon_sym_function] = ACTIONS(2585),
- [anon_sym_new] = ACTIONS(2585),
- [anon_sym_using] = ACTIONS(2585),
- [anon_sym_PLUS] = ACTIONS(2585),
- [anon_sym_DASH] = ACTIONS(2585),
- [anon_sym_SLASH] = ACTIONS(2585),
- [anon_sym_LT] = ACTIONS(2585),
- [anon_sym_TILDE] = ACTIONS(2583),
- [anon_sym_void] = ACTIONS(2585),
- [anon_sym_delete] = ACTIONS(2585),
- [anon_sym_PLUS_PLUS] = ACTIONS(2583),
- [anon_sym_DASH_DASH] = ACTIONS(2583),
- [sym_comment] = ACTIONS(5),
- [anon_sym_BQUOTE] = ACTIONS(2583),
- [sym_number] = ACTIONS(2583),
- [sym_private_property_identifier] = ACTIONS(2583),
- [sym_this] = ACTIONS(2585),
- [sym_super] = ACTIONS(2585),
- [sym_true] = ACTIONS(2585),
- [sym_false] = ACTIONS(2585),
- [sym_null] = ACTIONS(2585),
- [sym_undefined] = ACTIONS(2585),
- [anon_sym_AT] = ACTIONS(2583),
- [anon_sym_static] = ACTIONS(2585),
- [anon_sym_readonly] = ACTIONS(2585),
- [anon_sym_get] = ACTIONS(2585),
- [anon_sym_set] = ACTIONS(2585),
- [anon_sym_declare] = ACTIONS(2585),
- [anon_sym_public] = ACTIONS(2585),
- [anon_sym_private] = ACTIONS(2585),
- [anon_sym_protected] = ACTIONS(2585),
- [anon_sym_override] = ACTIONS(2585),
- [anon_sym_module] = ACTIONS(2585),
- [anon_sym_any] = ACTIONS(2585),
- [anon_sym_number] = ACTIONS(2585),
- [anon_sym_boolean] = ACTIONS(2585),
- [anon_sym_string] = ACTIONS(2585),
- [anon_sym_symbol] = ACTIONS(2585),
- [anon_sym_object] = ACTIONS(2585),
- [anon_sym_abstract] = ACTIONS(2585),
- [anon_sym_interface] = ACTIONS(2585),
- [anon_sym_enum] = ACTIONS(2585),
- [sym_html_comment] = ACTIONS(5),
- },
- [778] = {
- [ts_builtin_sym_end] = ACTIONS(2583),
- [sym_identifier] = ACTIONS(2585),
- [anon_sym_export] = ACTIONS(2585),
- [anon_sym_default] = ACTIONS(2585),
- [anon_sym_type] = ACTIONS(2585),
- [anon_sym_namespace] = ACTIONS(2585),
- [anon_sym_LBRACE] = ACTIONS(2583),
- [anon_sym_RBRACE] = ACTIONS(2583),
- [anon_sym_typeof] = ACTIONS(2585),
- [anon_sym_import] = ACTIONS(2585),
- [anon_sym_with] = ACTIONS(2585),
- [anon_sym_var] = ACTIONS(2585),
- [anon_sym_let] = ACTIONS(2585),
- [anon_sym_const] = ACTIONS(2585),
- [anon_sym_BANG] = ACTIONS(2583),
- [anon_sym_else] = ACTIONS(2585),
- [anon_sym_if] = ACTIONS(2585),
- [anon_sym_switch] = ACTIONS(2585),
- [anon_sym_for] = ACTIONS(2585),
- [anon_sym_LPAREN] = ACTIONS(2583),
- [anon_sym_await] = ACTIONS(2585),
- [anon_sym_while] = ACTIONS(2585),
- [anon_sym_do] = ACTIONS(2585),
- [anon_sym_try] = ACTIONS(2585),
- [anon_sym_break] = ACTIONS(2585),
- [anon_sym_continue] = ACTIONS(2585),
- [anon_sym_debugger] = ACTIONS(2585),
- [anon_sym_return] = ACTIONS(2585),
- [anon_sym_throw] = ACTIONS(2585),
- [anon_sym_SEMI] = ACTIONS(2583),
- [anon_sym_case] = ACTIONS(2585),
- [anon_sym_yield] = ACTIONS(2585),
- [anon_sym_LBRACK] = ACTIONS(2583),
- [sym_glimmer_opening_tag] = ACTIONS(2583),
- [anon_sym_DQUOTE] = ACTIONS(2583),
- [anon_sym_SQUOTE] = ACTIONS(2583),
- [anon_sym_class] = ACTIONS(2585),
- [anon_sym_async] = ACTIONS(2585),
- [anon_sym_function] = ACTIONS(2585),
- [anon_sym_new] = ACTIONS(2585),
- [anon_sym_using] = ACTIONS(2585),
- [anon_sym_PLUS] = ACTIONS(2585),
- [anon_sym_DASH] = ACTIONS(2585),
- [anon_sym_SLASH] = ACTIONS(2585),
- [anon_sym_LT] = ACTIONS(2585),
- [anon_sym_TILDE] = ACTIONS(2583),
- [anon_sym_void] = ACTIONS(2585),
- [anon_sym_delete] = ACTIONS(2585),
- [anon_sym_PLUS_PLUS] = ACTIONS(2583),
- [anon_sym_DASH_DASH] = ACTIONS(2583),
- [sym_comment] = ACTIONS(5),
- [anon_sym_BQUOTE] = ACTIONS(2583),
- [sym_number] = ACTIONS(2583),
- [sym_private_property_identifier] = ACTIONS(2583),
- [sym_this] = ACTIONS(2585),
- [sym_super] = ACTIONS(2585),
- [sym_true] = ACTIONS(2585),
- [sym_false] = ACTIONS(2585),
- [sym_null] = ACTIONS(2585),
- [sym_undefined] = ACTIONS(2585),
- [anon_sym_AT] = ACTIONS(2583),
- [anon_sym_static] = ACTIONS(2585),
- [anon_sym_readonly] = ACTIONS(2585),
- [anon_sym_get] = ACTIONS(2585),
- [anon_sym_set] = ACTIONS(2585),
- [anon_sym_declare] = ACTIONS(2585),
- [anon_sym_public] = ACTIONS(2585),
- [anon_sym_private] = ACTIONS(2585),
- [anon_sym_protected] = ACTIONS(2585),
- [anon_sym_override] = ACTIONS(2585),
- [anon_sym_module] = ACTIONS(2585),
- [anon_sym_any] = ACTIONS(2585),
- [anon_sym_number] = ACTIONS(2585),
- [anon_sym_boolean] = ACTIONS(2585),
- [anon_sym_string] = ACTIONS(2585),
- [anon_sym_symbol] = ACTIONS(2585),
- [anon_sym_object] = ACTIONS(2585),
- [anon_sym_abstract] = ACTIONS(2585),
- [anon_sym_interface] = ACTIONS(2585),
- [anon_sym_enum] = ACTIONS(2585),
- [sym_html_comment] = ACTIONS(5),
- },
- [779] = {
- [ts_builtin_sym_end] = ACTIONS(2587),
- [sym_identifier] = ACTIONS(2589),
- [anon_sym_export] = ACTIONS(2589),
- [anon_sym_default] = ACTIONS(2589),
- [anon_sym_type] = ACTIONS(2589),
- [anon_sym_namespace] = ACTIONS(2589),
- [anon_sym_LBRACE] = ACTIONS(2587),
- [anon_sym_RBRACE] = ACTIONS(2587),
- [anon_sym_typeof] = ACTIONS(2589),
- [anon_sym_import] = ACTIONS(2589),
- [anon_sym_with] = ACTIONS(2589),
- [anon_sym_var] = ACTIONS(2589),
- [anon_sym_let] = ACTIONS(2589),
- [anon_sym_const] = ACTIONS(2589),
- [anon_sym_BANG] = ACTIONS(2587),
- [anon_sym_else] = ACTIONS(2589),
- [anon_sym_if] = ACTIONS(2589),
- [anon_sym_switch] = ACTIONS(2589),
- [anon_sym_for] = ACTIONS(2589),
- [anon_sym_LPAREN] = ACTIONS(2587),
- [anon_sym_await] = ACTIONS(2589),
- [anon_sym_while] = ACTIONS(2589),
- [anon_sym_do] = ACTIONS(2589),
- [anon_sym_try] = ACTIONS(2589),
- [anon_sym_break] = ACTIONS(2589),
- [anon_sym_continue] = ACTIONS(2589),
- [anon_sym_debugger] = ACTIONS(2589),
- [anon_sym_return] = ACTIONS(2589),
- [anon_sym_throw] = ACTIONS(2589),
- [anon_sym_SEMI] = ACTIONS(2587),
- [anon_sym_case] = ACTIONS(2589),
- [anon_sym_yield] = ACTIONS(2589),
- [anon_sym_LBRACK] = ACTIONS(2587),
- [sym_glimmer_opening_tag] = ACTIONS(2587),
- [anon_sym_DQUOTE] = ACTIONS(2587),
- [anon_sym_SQUOTE] = ACTIONS(2587),
- [anon_sym_class] = ACTIONS(2589),
- [anon_sym_async] = ACTIONS(2589),
- [anon_sym_function] = ACTIONS(2589),
- [anon_sym_new] = ACTIONS(2589),
- [anon_sym_using] = ACTIONS(2589),
- [anon_sym_PLUS] = ACTIONS(2589),
- [anon_sym_DASH] = ACTIONS(2589),
- [anon_sym_SLASH] = ACTIONS(2589),
- [anon_sym_LT] = ACTIONS(2589),
- [anon_sym_TILDE] = ACTIONS(2587),
- [anon_sym_void] = ACTIONS(2589),
- [anon_sym_delete] = ACTIONS(2589),
- [anon_sym_PLUS_PLUS] = ACTIONS(2587),
- [anon_sym_DASH_DASH] = ACTIONS(2587),
- [sym_comment] = ACTIONS(5),
- [anon_sym_BQUOTE] = ACTIONS(2587),
- [sym_number] = ACTIONS(2587),
- [sym_private_property_identifier] = ACTIONS(2587),
- [sym_this] = ACTIONS(2589),
- [sym_super] = ACTIONS(2589),
- [sym_true] = ACTIONS(2589),
- [sym_false] = ACTIONS(2589),
- [sym_null] = ACTIONS(2589),
- [sym_undefined] = ACTIONS(2589),
- [anon_sym_AT] = ACTIONS(2587),
- [anon_sym_static] = ACTIONS(2589),
- [anon_sym_readonly] = ACTIONS(2589),
- [anon_sym_get] = ACTIONS(2589),
- [anon_sym_set] = ACTIONS(2589),
- [anon_sym_declare] = ACTIONS(2589),
- [anon_sym_public] = ACTIONS(2589),
- [anon_sym_private] = ACTIONS(2589),
- [anon_sym_protected] = ACTIONS(2589),
- [anon_sym_override] = ACTIONS(2589),
- [anon_sym_module] = ACTIONS(2589),
- [anon_sym_any] = ACTIONS(2589),
- [anon_sym_number] = ACTIONS(2589),
- [anon_sym_boolean] = ACTIONS(2589),
- [anon_sym_string] = ACTIONS(2589),
- [anon_sym_symbol] = ACTIONS(2589),
- [anon_sym_object] = ACTIONS(2589),
- [anon_sym_abstract] = ACTIONS(2589),
- [anon_sym_interface] = ACTIONS(2589),
- [anon_sym_enum] = ACTIONS(2589),
- [sym_html_comment] = ACTIONS(5),
- },
- [780] = {
- [ts_builtin_sym_end] = ACTIONS(2591),
- [sym_identifier] = ACTIONS(2593),
- [anon_sym_export] = ACTIONS(2593),
- [anon_sym_default] = ACTIONS(2593),
- [anon_sym_type] = ACTIONS(2593),
- [anon_sym_namespace] = ACTIONS(2593),
- [anon_sym_LBRACE] = ACTIONS(2591),
- [anon_sym_RBRACE] = ACTIONS(2591),
- [anon_sym_typeof] = ACTIONS(2593),
- [anon_sym_import] = ACTIONS(2593),
- [anon_sym_with] = ACTIONS(2593),
- [anon_sym_var] = ACTIONS(2593),
- [anon_sym_let] = ACTIONS(2593),
- [anon_sym_const] = ACTIONS(2593),
- [anon_sym_BANG] = ACTIONS(2591),
- [anon_sym_else] = ACTIONS(2593),
- [anon_sym_if] = ACTIONS(2593),
- [anon_sym_switch] = ACTIONS(2593),
- [anon_sym_for] = ACTIONS(2593),
- [anon_sym_LPAREN] = ACTIONS(2591),
- [anon_sym_await] = ACTIONS(2593),
- [anon_sym_while] = ACTIONS(2593),
- [anon_sym_do] = ACTIONS(2593),
- [anon_sym_try] = ACTIONS(2593),
- [anon_sym_break] = ACTIONS(2593),
- [anon_sym_continue] = ACTIONS(2593),
- [anon_sym_debugger] = ACTIONS(2593),
- [anon_sym_return] = ACTIONS(2593),
- [anon_sym_throw] = ACTIONS(2593),
- [anon_sym_SEMI] = ACTIONS(2591),
- [anon_sym_case] = ACTIONS(2593),
- [anon_sym_yield] = ACTIONS(2593),
- [anon_sym_LBRACK] = ACTIONS(2591),
- [sym_glimmer_opening_tag] = ACTIONS(2591),
- [anon_sym_DQUOTE] = ACTIONS(2591),
- [anon_sym_SQUOTE] = ACTIONS(2591),
- [anon_sym_class] = ACTIONS(2593),
- [anon_sym_async] = ACTIONS(2593),
- [anon_sym_function] = ACTIONS(2593),
- [anon_sym_new] = ACTIONS(2593),
- [anon_sym_using] = ACTIONS(2593),
- [anon_sym_PLUS] = ACTIONS(2593),
- [anon_sym_DASH] = ACTIONS(2593),
- [anon_sym_SLASH] = ACTIONS(2593),
- [anon_sym_LT] = ACTIONS(2593),
- [anon_sym_TILDE] = ACTIONS(2591),
- [anon_sym_void] = ACTIONS(2593),
- [anon_sym_delete] = ACTIONS(2593),
- [anon_sym_PLUS_PLUS] = ACTIONS(2591),
- [anon_sym_DASH_DASH] = ACTIONS(2591),
- [sym_comment] = ACTIONS(5),
- [anon_sym_BQUOTE] = ACTIONS(2591),
- [sym_number] = ACTIONS(2591),
- [sym_private_property_identifier] = ACTIONS(2591),
- [sym_this] = ACTIONS(2593),
- [sym_super] = ACTIONS(2593),
- [sym_true] = ACTIONS(2593),
- [sym_false] = ACTIONS(2593),
- [sym_null] = ACTIONS(2593),
- [sym_undefined] = ACTIONS(2593),
- [anon_sym_AT] = ACTIONS(2591),
- [anon_sym_static] = ACTIONS(2593),
- [anon_sym_readonly] = ACTIONS(2593),
- [anon_sym_get] = ACTIONS(2593),
- [anon_sym_set] = ACTIONS(2593),
- [anon_sym_declare] = ACTIONS(2593),
- [anon_sym_public] = ACTIONS(2593),
- [anon_sym_private] = ACTIONS(2593),
- [anon_sym_protected] = ACTIONS(2593),
- [anon_sym_override] = ACTIONS(2593),
- [anon_sym_module] = ACTIONS(2593),
- [anon_sym_any] = ACTIONS(2593),
- [anon_sym_number] = ACTIONS(2593),
- [anon_sym_boolean] = ACTIONS(2593),
- [anon_sym_string] = ACTIONS(2593),
- [anon_sym_symbol] = ACTIONS(2593),
- [anon_sym_object] = ACTIONS(2593),
- [anon_sym_abstract] = ACTIONS(2593),
- [anon_sym_interface] = ACTIONS(2593),
- [anon_sym_enum] = ACTIONS(2593),
- [sym_html_comment] = ACTIONS(5),
- },
- [781] = {
- [ts_builtin_sym_end] = ACTIONS(2595),
- [sym_identifier] = ACTIONS(2597),
- [anon_sym_export] = ACTIONS(2597),
- [anon_sym_default] = ACTIONS(2597),
- [anon_sym_type] = ACTIONS(2597),
- [anon_sym_namespace] = ACTIONS(2597),
- [anon_sym_LBRACE] = ACTIONS(2595),
- [anon_sym_RBRACE] = ACTIONS(2595),
- [anon_sym_typeof] = ACTIONS(2597),
- [anon_sym_import] = ACTIONS(2597),
- [anon_sym_with] = ACTIONS(2597),
- [anon_sym_var] = ACTIONS(2597),
- [anon_sym_let] = ACTIONS(2597),
- [anon_sym_const] = ACTIONS(2597),
- [anon_sym_BANG] = ACTIONS(2595),
- [anon_sym_else] = ACTIONS(2597),
- [anon_sym_if] = ACTIONS(2597),
- [anon_sym_switch] = ACTIONS(2597),
- [anon_sym_for] = ACTIONS(2597),
- [anon_sym_LPAREN] = ACTIONS(2595),
- [anon_sym_await] = ACTIONS(2597),
- [anon_sym_while] = ACTIONS(2597),
- [anon_sym_do] = ACTIONS(2597),
- [anon_sym_try] = ACTIONS(2597),
- [anon_sym_break] = ACTIONS(2597),
- [anon_sym_continue] = ACTIONS(2597),
- [anon_sym_debugger] = ACTIONS(2597),
- [anon_sym_return] = ACTIONS(2597),
- [anon_sym_throw] = ACTIONS(2597),
- [anon_sym_SEMI] = ACTIONS(2595),
- [anon_sym_case] = ACTIONS(2597),
- [anon_sym_yield] = ACTIONS(2597),
- [anon_sym_LBRACK] = ACTIONS(2595),
- [sym_glimmer_opening_tag] = ACTIONS(2595),
- [anon_sym_DQUOTE] = ACTIONS(2595),
- [anon_sym_SQUOTE] = ACTIONS(2595),
- [anon_sym_class] = ACTIONS(2597),
- [anon_sym_async] = ACTIONS(2597),
- [anon_sym_function] = ACTIONS(2597),
- [anon_sym_new] = ACTIONS(2597),
- [anon_sym_using] = ACTIONS(2597),
- [anon_sym_PLUS] = ACTIONS(2597),
- [anon_sym_DASH] = ACTIONS(2597),
- [anon_sym_SLASH] = ACTIONS(2597),
- [anon_sym_LT] = ACTIONS(2597),
- [anon_sym_TILDE] = ACTIONS(2595),
- [anon_sym_void] = ACTIONS(2597),
- [anon_sym_delete] = ACTIONS(2597),
- [anon_sym_PLUS_PLUS] = ACTIONS(2595),
- [anon_sym_DASH_DASH] = ACTIONS(2595),
- [sym_comment] = ACTIONS(5),
- [anon_sym_BQUOTE] = ACTIONS(2595),
- [sym_number] = ACTIONS(2595),
- [sym_private_property_identifier] = ACTIONS(2595),
- [sym_this] = ACTIONS(2597),
- [sym_super] = ACTIONS(2597),
- [sym_true] = ACTIONS(2597),
- [sym_false] = ACTIONS(2597),
- [sym_null] = ACTIONS(2597),
- [sym_undefined] = ACTIONS(2597),
- [anon_sym_AT] = ACTIONS(2595),
- [anon_sym_static] = ACTIONS(2597),
- [anon_sym_readonly] = ACTIONS(2597),
- [anon_sym_get] = ACTIONS(2597),
- [anon_sym_set] = ACTIONS(2597),
- [anon_sym_declare] = ACTIONS(2597),
- [anon_sym_public] = ACTIONS(2597),
- [anon_sym_private] = ACTIONS(2597),
- [anon_sym_protected] = ACTIONS(2597),
- [anon_sym_override] = ACTIONS(2597),
- [anon_sym_module] = ACTIONS(2597),
- [anon_sym_any] = ACTIONS(2597),
- [anon_sym_number] = ACTIONS(2597),
- [anon_sym_boolean] = ACTIONS(2597),
- [anon_sym_string] = ACTIONS(2597),
- [anon_sym_symbol] = ACTIONS(2597),
- [anon_sym_object] = ACTIONS(2597),
- [anon_sym_abstract] = ACTIONS(2597),
- [anon_sym_interface] = ACTIONS(2597),
- [anon_sym_enum] = ACTIONS(2597),
- [sym_html_comment] = ACTIONS(5),
- },
- [782] = {
- [ts_builtin_sym_end] = ACTIONS(2599),
- [sym_identifier] = ACTIONS(2601),
- [anon_sym_export] = ACTIONS(2601),
- [anon_sym_default] = ACTIONS(2601),
- [anon_sym_type] = ACTIONS(2601),
- [anon_sym_namespace] = ACTIONS(2601),
- [anon_sym_LBRACE] = ACTIONS(2599),
- [anon_sym_RBRACE] = ACTIONS(2599),
- [anon_sym_typeof] = ACTIONS(2601),
- [anon_sym_import] = ACTIONS(2601),
- [anon_sym_with] = ACTIONS(2601),
- [anon_sym_var] = ACTIONS(2601),
- [anon_sym_let] = ACTIONS(2601),
- [anon_sym_const] = ACTIONS(2601),
- [anon_sym_BANG] = ACTIONS(2599),
- [anon_sym_else] = ACTIONS(2601),
- [anon_sym_if] = ACTIONS(2601),
- [anon_sym_switch] = ACTIONS(2601),
- [anon_sym_for] = ACTIONS(2601),
- [anon_sym_LPAREN] = ACTIONS(2599),
- [anon_sym_await] = ACTIONS(2601),
- [anon_sym_while] = ACTIONS(2601),
- [anon_sym_do] = ACTIONS(2601),
- [anon_sym_try] = ACTIONS(2601),
- [anon_sym_break] = ACTIONS(2601),
- [anon_sym_continue] = ACTIONS(2601),
- [anon_sym_debugger] = ACTIONS(2601),
- [anon_sym_return] = ACTIONS(2601),
- [anon_sym_throw] = ACTIONS(2601),
- [anon_sym_SEMI] = ACTIONS(2599),
- [anon_sym_case] = ACTIONS(2601),
- [anon_sym_yield] = ACTIONS(2601),
- [anon_sym_LBRACK] = ACTIONS(2599),
- [sym_glimmer_opening_tag] = ACTIONS(2599),
- [anon_sym_DQUOTE] = ACTIONS(2599),
- [anon_sym_SQUOTE] = ACTIONS(2599),
- [anon_sym_class] = ACTIONS(2601),
- [anon_sym_async] = ACTIONS(2601),
- [anon_sym_function] = ACTIONS(2601),
- [anon_sym_new] = ACTIONS(2601),
- [anon_sym_using] = ACTIONS(2601),
- [anon_sym_PLUS] = ACTIONS(2601),
- [anon_sym_DASH] = ACTIONS(2601),
- [anon_sym_SLASH] = ACTIONS(2601),
- [anon_sym_LT] = ACTIONS(2601),
- [anon_sym_TILDE] = ACTIONS(2599),
- [anon_sym_void] = ACTIONS(2601),
- [anon_sym_delete] = ACTIONS(2601),
- [anon_sym_PLUS_PLUS] = ACTIONS(2599),
- [anon_sym_DASH_DASH] = ACTIONS(2599),
- [sym_comment] = ACTIONS(5),
- [anon_sym_BQUOTE] = ACTIONS(2599),
- [sym_number] = ACTIONS(2599),
- [sym_private_property_identifier] = ACTIONS(2599),
- [sym_this] = ACTIONS(2601),
- [sym_super] = ACTIONS(2601),
- [sym_true] = ACTIONS(2601),
- [sym_false] = ACTIONS(2601),
- [sym_null] = ACTIONS(2601),
- [sym_undefined] = ACTIONS(2601),
- [anon_sym_AT] = ACTIONS(2599),
- [anon_sym_static] = ACTIONS(2601),
- [anon_sym_readonly] = ACTIONS(2601),
- [anon_sym_get] = ACTIONS(2601),
- [anon_sym_set] = ACTIONS(2601),
- [anon_sym_declare] = ACTIONS(2601),
- [anon_sym_public] = ACTIONS(2601),
- [anon_sym_private] = ACTIONS(2601),
- [anon_sym_protected] = ACTIONS(2601),
- [anon_sym_override] = ACTIONS(2601),
- [anon_sym_module] = ACTIONS(2601),
- [anon_sym_any] = ACTIONS(2601),
- [anon_sym_number] = ACTIONS(2601),
- [anon_sym_boolean] = ACTIONS(2601),
- [anon_sym_string] = ACTIONS(2601),
- [anon_sym_symbol] = ACTIONS(2601),
- [anon_sym_object] = ACTIONS(2601),
- [anon_sym_abstract] = ACTIONS(2601),
- [anon_sym_interface] = ACTIONS(2601),
- [anon_sym_enum] = ACTIONS(2601),
- [sym_html_comment] = ACTIONS(5),
- },
- [783] = {
- [sym_import] = STATE(4753),
- [sym_nested_identifier] = STATE(5707),
- [sym_string] = STATE(2889),
- [sym_formal_parameters] = STATE(5626),
- [sym_rest_pattern] = STATE(5377),
- [sym_nested_type_identifier] = STATE(2828),
- [sym__type_query_member_expression_in_type_annotation] = STATE(3228),
- [sym__type_query_call_expression_in_type_annotation] = STATE(2850),
- [sym_type] = STATE(3859),
- [sym_tuple_parameter] = STATE(4889),
- [sym_optional_tuple_parameter] = STATE(4889),
- [sym_optional_type] = STATE(4889),
- [sym_rest_type] = STATE(4889),
- [sym__tuple_type_member] = STATE(4889),
- [sym_constructor_type] = STATE(2896),
- [sym_primary_type] = STATE(2897),
- [sym_template_literal_type] = STATE(2885),
- [sym_infer_type] = STATE(2896),
- [sym_conditional_type] = STATE(2885),
- [sym_generic_type] = STATE(2885),
- [sym_type_query] = STATE(2885),
- [sym_index_type_query] = STATE(2885),
- [sym_lookup_type] = STATE(2885),
- [sym_literal_type] = STATE(2885),
- [sym__number] = STATE(2903),
- [sym_existential_type] = STATE(2885),
- [sym_flow_maybe_type] = STATE(2885),
- [sym_parenthesized_type] = STATE(2885),
- [sym_predefined_type] = STATE(2885),
- [sym_object_type] = STATE(2885),
- [sym_type_parameters] = STATE(5517),
- [sym_array_type] = STATE(2885),
- [sym_tuple_type] = STATE(2885),
- [sym_readonly_type] = STATE(2896),
- [sym_union_type] = STATE(2885),
- [sym_intersection_type] = STATE(2885),
- [sym_function_type] = STATE(2896),
- [sym_identifier] = ACTIONS(2571),
- [anon_sym_STAR] = ACTIONS(612),
- [anon_sym_LBRACE] = ACTIONS(1498),
- [anon_sym_COMMA] = ACTIONS(2603),
- [anon_sym_typeof] = ACTIONS(1500),
- [anon_sym_import] = ACTIONS(133),
- [anon_sym_const] = ACTIONS(135),
- [anon_sym_LPAREN] = ACTIONS(1502),
- [anon_sym_LBRACK] = ACTIONS(1504),
- [anon_sym_RBRACK] = ACTIONS(2605),
- [anon_sym_DQUOTE] = ACTIONS(1506),
- [anon_sym_SQUOTE] = ACTIONS(1508),
- [anon_sym_new] = ACTIONS(1572),
- [anon_sym_DOT_DOT_DOT] = ACTIONS(2577),
- [anon_sym_AMP] = ACTIONS(640),
- [anon_sym_PIPE] = ACTIONS(642),
- [anon_sym_PLUS] = ACTIONS(2579),
- [anon_sym_DASH] = ACTIONS(2579),
- [anon_sym_LT] = ACTIONS(2581),
- [anon_sym_void] = ACTIONS(220),
- [sym_comment] = ACTIONS(5),
- [anon_sym_BQUOTE] = ACTIONS(1516),
- [sym_number] = ACTIONS(1518),
- [sym_this] = ACTIONS(1520),
- [sym_true] = ACTIONS(1522),
- [sym_false] = ACTIONS(1522),
- [sym_null] = ACTIONS(1522),
- [sym_undefined] = ACTIONS(1522),
- [anon_sym_readonly] = ACTIONS(1578),
- [anon_sym_QMARK] = ACTIONS(662),
- [anon_sym_any] = ACTIONS(220),
- [anon_sym_number] = ACTIONS(220),
- [anon_sym_boolean] = ACTIONS(220),
- [anon_sym_string] = ACTIONS(220),
- [anon_sym_symbol] = ACTIONS(220),
- [anon_sym_object] = ACTIONS(220),
- [anon_sym_abstract] = ACTIONS(666),
- [anon_sym_infer] = ACTIONS(668),
- [anon_sym_keyof] = ACTIONS(670),
- [anon_sym_unique] = ACTIONS(218),
- [anon_sym_unknown] = ACTIONS(220),
- [anon_sym_never] = ACTIONS(220),
- [anon_sym_LBRACE_PIPE] = ACTIONS(222),
- [sym_html_comment] = ACTIONS(5),
- },
- [784] = {
- [ts_builtin_sym_end] = ACTIONS(2607),
- [sym_identifier] = ACTIONS(2609),
- [anon_sym_export] = ACTIONS(2609),
- [anon_sym_default] = ACTIONS(2609),
- [anon_sym_type] = ACTIONS(2609),
- [anon_sym_namespace] = ACTIONS(2609),
- [anon_sym_LBRACE] = ACTIONS(2607),
- [anon_sym_RBRACE] = ACTIONS(2607),
- [anon_sym_typeof] = ACTIONS(2609),
- [anon_sym_import] = ACTIONS(2609),
- [anon_sym_with] = ACTIONS(2609),
- [anon_sym_var] = ACTIONS(2609),
- [anon_sym_let] = ACTIONS(2609),
- [anon_sym_const] = ACTIONS(2609),
- [anon_sym_BANG] = ACTIONS(2607),
- [anon_sym_else] = ACTIONS(2609),
- [anon_sym_if] = ACTIONS(2609),
- [anon_sym_switch] = ACTIONS(2609),
- [anon_sym_for] = ACTIONS(2609),
- [anon_sym_LPAREN] = ACTIONS(2607),
- [anon_sym_await] = ACTIONS(2609),
- [anon_sym_while] = ACTIONS(2609),
- [anon_sym_do] = ACTIONS(2609),
- [anon_sym_try] = ACTIONS(2609),
- [anon_sym_break] = ACTIONS(2609),
- [anon_sym_continue] = ACTIONS(2609),
- [anon_sym_debugger] = ACTIONS(2609),
- [anon_sym_return] = ACTIONS(2609),
- [anon_sym_throw] = ACTIONS(2609),
- [anon_sym_SEMI] = ACTIONS(2607),
- [anon_sym_case] = ACTIONS(2609),
- [anon_sym_yield] = ACTIONS(2609),
- [anon_sym_LBRACK] = ACTIONS(2607),
- [sym_glimmer_opening_tag] = ACTIONS(2607),
- [anon_sym_DQUOTE] = ACTIONS(2607),
- [anon_sym_SQUOTE] = ACTIONS(2607),
- [anon_sym_class] = ACTIONS(2609),
- [anon_sym_async] = ACTIONS(2609),
- [anon_sym_function] = ACTIONS(2609),
- [anon_sym_new] = ACTIONS(2609),
- [anon_sym_using] = ACTIONS(2609),
- [anon_sym_PLUS] = ACTIONS(2609),
- [anon_sym_DASH] = ACTIONS(2609),
- [anon_sym_SLASH] = ACTIONS(2609),
- [anon_sym_LT] = ACTIONS(2609),
- [anon_sym_TILDE] = ACTIONS(2607),
- [anon_sym_void] = ACTIONS(2609),
- [anon_sym_delete] = ACTIONS(2609),
- [anon_sym_PLUS_PLUS] = ACTIONS(2607),
- [anon_sym_DASH_DASH] = ACTIONS(2607),
- [sym_comment] = ACTIONS(5),
- [anon_sym_BQUOTE] = ACTIONS(2607),
- [sym_number] = ACTIONS(2607),
- [sym_private_property_identifier] = ACTIONS(2607),
- [sym_this] = ACTIONS(2609),
- [sym_super] = ACTIONS(2609),
- [sym_true] = ACTIONS(2609),
- [sym_false] = ACTIONS(2609),
- [sym_null] = ACTIONS(2609),
- [sym_undefined] = ACTIONS(2609),
- [anon_sym_AT] = ACTIONS(2607),
- [anon_sym_static] = ACTIONS(2609),
- [anon_sym_readonly] = ACTIONS(2609),
- [anon_sym_get] = ACTIONS(2609),
- [anon_sym_set] = ACTIONS(2609),
- [anon_sym_declare] = ACTIONS(2609),
- [anon_sym_public] = ACTIONS(2609),
- [anon_sym_private] = ACTIONS(2609),
- [anon_sym_protected] = ACTIONS(2609),
- [anon_sym_override] = ACTIONS(2609),
- [anon_sym_module] = ACTIONS(2609),
- [anon_sym_any] = ACTIONS(2609),
- [anon_sym_number] = ACTIONS(2609),
- [anon_sym_boolean] = ACTIONS(2609),
- [anon_sym_string] = ACTIONS(2609),
- [anon_sym_symbol] = ACTIONS(2609),
- [anon_sym_object] = ACTIONS(2609),
- [anon_sym_abstract] = ACTIONS(2609),
- [anon_sym_interface] = ACTIONS(2609),
- [anon_sym_enum] = ACTIONS(2609),
- [sym_html_comment] = ACTIONS(5),
- },
- [785] = {
- [ts_builtin_sym_end] = ACTIONS(2611),
- [sym_identifier] = ACTIONS(2613),
- [anon_sym_export] = ACTIONS(2613),
- [anon_sym_default] = ACTIONS(2613),
- [anon_sym_type] = ACTIONS(2613),
- [anon_sym_namespace] = ACTIONS(2613),
- [anon_sym_LBRACE] = ACTIONS(2611),
- [anon_sym_RBRACE] = ACTIONS(2611),
- [anon_sym_typeof] = ACTIONS(2613),
- [anon_sym_import] = ACTIONS(2613),
- [anon_sym_with] = ACTIONS(2613),
- [anon_sym_var] = ACTIONS(2613),
- [anon_sym_let] = ACTIONS(2613),
- [anon_sym_const] = ACTIONS(2613),
- [anon_sym_BANG] = ACTIONS(2611),
- [anon_sym_else] = ACTIONS(2613),
- [anon_sym_if] = ACTIONS(2613),
- [anon_sym_switch] = ACTIONS(2613),
- [anon_sym_for] = ACTIONS(2613),
- [anon_sym_LPAREN] = ACTIONS(2611),
- [anon_sym_await] = ACTIONS(2613),
- [anon_sym_while] = ACTIONS(2613),
- [anon_sym_do] = ACTIONS(2613),
- [anon_sym_try] = ACTIONS(2613),
- [anon_sym_break] = ACTIONS(2613),
- [anon_sym_continue] = ACTIONS(2613),
- [anon_sym_debugger] = ACTIONS(2613),
- [anon_sym_return] = ACTIONS(2613),
- [anon_sym_throw] = ACTIONS(2613),
- [anon_sym_SEMI] = ACTIONS(2611),
- [anon_sym_case] = ACTIONS(2613),
- [anon_sym_yield] = ACTIONS(2613),
- [anon_sym_LBRACK] = ACTIONS(2611),
- [sym_glimmer_opening_tag] = ACTIONS(2611),
- [anon_sym_DQUOTE] = ACTIONS(2611),
- [anon_sym_SQUOTE] = ACTIONS(2611),
- [anon_sym_class] = ACTIONS(2613),
- [anon_sym_async] = ACTIONS(2613),
- [anon_sym_function] = ACTIONS(2613),
- [anon_sym_new] = ACTIONS(2613),
- [anon_sym_using] = ACTIONS(2613),
- [anon_sym_PLUS] = ACTIONS(2613),
- [anon_sym_DASH] = ACTIONS(2613),
- [anon_sym_SLASH] = ACTIONS(2613),
- [anon_sym_LT] = ACTIONS(2613),
- [anon_sym_TILDE] = ACTIONS(2611),
- [anon_sym_void] = ACTIONS(2613),
- [anon_sym_delete] = ACTIONS(2613),
- [anon_sym_PLUS_PLUS] = ACTIONS(2611),
- [anon_sym_DASH_DASH] = ACTIONS(2611),
- [sym_comment] = ACTIONS(5),
- [anon_sym_BQUOTE] = ACTIONS(2611),
- [sym_number] = ACTIONS(2611),
- [sym_private_property_identifier] = ACTIONS(2611),
- [sym_this] = ACTIONS(2613),
- [sym_super] = ACTIONS(2613),
- [sym_true] = ACTIONS(2613),
- [sym_false] = ACTIONS(2613),
- [sym_null] = ACTIONS(2613),
- [sym_undefined] = ACTIONS(2613),
- [anon_sym_AT] = ACTIONS(2611),
- [anon_sym_static] = ACTIONS(2613),
- [anon_sym_readonly] = ACTIONS(2613),
- [anon_sym_get] = ACTIONS(2613),
- [anon_sym_set] = ACTIONS(2613),
- [anon_sym_declare] = ACTIONS(2613),
- [anon_sym_public] = ACTIONS(2613),
- [anon_sym_private] = ACTIONS(2613),
- [anon_sym_protected] = ACTIONS(2613),
- [anon_sym_override] = ACTIONS(2613),
- [anon_sym_module] = ACTIONS(2613),
- [anon_sym_any] = ACTIONS(2613),
- [anon_sym_number] = ACTIONS(2613),
- [anon_sym_boolean] = ACTIONS(2613),
- [anon_sym_string] = ACTIONS(2613),
- [anon_sym_symbol] = ACTIONS(2613),
- [anon_sym_object] = ACTIONS(2613),
- [anon_sym_abstract] = ACTIONS(2613),
- [anon_sym_interface] = ACTIONS(2613),
- [anon_sym_enum] = ACTIONS(2613),
- [sym_html_comment] = ACTIONS(5),
- },
- [786] = {
- [sym_import] = STATE(4753),
- [sym_nested_identifier] = STATE(5707),
- [sym_string] = STATE(2889),
- [sym_formal_parameters] = STATE(5626),
- [sym_rest_pattern] = STATE(5377),
- [sym_nested_type_identifier] = STATE(2828),
- [sym__type_query_member_expression_in_type_annotation] = STATE(3228),
- [sym__type_query_call_expression_in_type_annotation] = STATE(2850),
- [sym_type] = STATE(3859),
- [sym_tuple_parameter] = STATE(4619),
- [sym_optional_tuple_parameter] = STATE(4619),
- [sym_optional_type] = STATE(4619),
- [sym_rest_type] = STATE(4619),
- [sym__tuple_type_member] = STATE(4619),
- [sym_constructor_type] = STATE(2896),
- [sym_primary_type] = STATE(2897),
- [sym_template_literal_type] = STATE(2885),
- [sym_infer_type] = STATE(2896),
- [sym_conditional_type] = STATE(2885),
- [sym_generic_type] = STATE(2885),
- [sym_type_query] = STATE(2885),
- [sym_index_type_query] = STATE(2885),
- [sym_lookup_type] = STATE(2885),
- [sym_literal_type] = STATE(2885),
- [sym__number] = STATE(2903),
- [sym_existential_type] = STATE(2885),
- [sym_flow_maybe_type] = STATE(2885),
- [sym_parenthesized_type] = STATE(2885),
- [sym_predefined_type] = STATE(2885),
- [sym_object_type] = STATE(2885),
- [sym_type_parameters] = STATE(5517),
- [sym_array_type] = STATE(2885),
- [sym_tuple_type] = STATE(2885),
- [sym_readonly_type] = STATE(2896),
- [sym_union_type] = STATE(2885),
- [sym_intersection_type] = STATE(2885),
- [sym_function_type] = STATE(2896),
- [sym_identifier] = ACTIONS(2571),
- [anon_sym_STAR] = ACTIONS(612),
- [anon_sym_LBRACE] = ACTIONS(1498),
- [anon_sym_COMMA] = ACTIONS(2615),
- [anon_sym_typeof] = ACTIONS(1500),
- [anon_sym_import] = ACTIONS(133),
- [anon_sym_const] = ACTIONS(135),
- [anon_sym_LPAREN] = ACTIONS(1502),
- [anon_sym_LBRACK] = ACTIONS(1504),
- [anon_sym_RBRACK] = ACTIONS(2617),
- [anon_sym_DQUOTE] = ACTIONS(1506),
- [anon_sym_SQUOTE] = ACTIONS(1508),
- [anon_sym_new] = ACTIONS(1572),
- [anon_sym_DOT_DOT_DOT] = ACTIONS(2577),
- [anon_sym_AMP] = ACTIONS(640),
- [anon_sym_PIPE] = ACTIONS(642),
- [anon_sym_PLUS] = ACTIONS(2579),
- [anon_sym_DASH] = ACTIONS(2579),
- [anon_sym_LT] = ACTIONS(2581),
- [anon_sym_void] = ACTIONS(220),
- [sym_comment] = ACTIONS(5),
- [anon_sym_BQUOTE] = ACTIONS(1516),
- [sym_number] = ACTIONS(1518),
- [sym_this] = ACTIONS(1520),
- [sym_true] = ACTIONS(1522),
- [sym_false] = ACTIONS(1522),
- [sym_null] = ACTIONS(1522),
- [sym_undefined] = ACTIONS(1522),
- [anon_sym_readonly] = ACTIONS(1578),
- [anon_sym_QMARK] = ACTIONS(662),
- [anon_sym_any] = ACTIONS(220),
- [anon_sym_number] = ACTIONS(220),
- [anon_sym_boolean] = ACTIONS(220),
- [anon_sym_string] = ACTIONS(220),
- [anon_sym_symbol] = ACTIONS(220),
- [anon_sym_object] = ACTIONS(220),
- [anon_sym_abstract] = ACTIONS(666),
- [anon_sym_infer] = ACTIONS(668),
- [anon_sym_keyof] = ACTIONS(670),
- [anon_sym_unique] = ACTIONS(218),
- [anon_sym_unknown] = ACTIONS(220),
- [anon_sym_never] = ACTIONS(220),
- [anon_sym_LBRACE_PIPE] = ACTIONS(222),
- [sym_html_comment] = ACTIONS(5),
- },
- [787] = {
- [ts_builtin_sym_end] = ACTIONS(2619),
- [sym_identifier] = ACTIONS(2621),
- [anon_sym_export] = ACTIONS(2621),
- [anon_sym_default] = ACTIONS(2621),
- [anon_sym_type] = ACTIONS(2621),
- [anon_sym_namespace] = ACTIONS(2621),
- [anon_sym_LBRACE] = ACTIONS(2619),
- [anon_sym_RBRACE] = ACTIONS(2619),
- [anon_sym_typeof] = ACTIONS(2621),
- [anon_sym_import] = ACTIONS(2621),
- [anon_sym_with] = ACTIONS(2621),
- [anon_sym_var] = ACTIONS(2621),
- [anon_sym_let] = ACTIONS(2621),
- [anon_sym_const] = ACTIONS(2621),
- [anon_sym_BANG] = ACTIONS(2619),
- [anon_sym_else] = ACTIONS(2621),
- [anon_sym_if] = ACTIONS(2621),
- [anon_sym_switch] = ACTIONS(2621),
- [anon_sym_for] = ACTIONS(2621),
- [anon_sym_LPAREN] = ACTIONS(2619),
- [anon_sym_await] = ACTIONS(2621),
- [anon_sym_while] = ACTIONS(2621),
- [anon_sym_do] = ACTIONS(2621),
- [anon_sym_try] = ACTIONS(2621),
- [anon_sym_break] = ACTIONS(2621),
- [anon_sym_continue] = ACTIONS(2621),
- [anon_sym_debugger] = ACTIONS(2621),
- [anon_sym_return] = ACTIONS(2621),
- [anon_sym_throw] = ACTIONS(2621),
- [anon_sym_SEMI] = ACTIONS(2619),
- [anon_sym_case] = ACTIONS(2621),
- [anon_sym_yield] = ACTIONS(2621),
- [anon_sym_LBRACK] = ACTIONS(2619),
- [sym_glimmer_opening_tag] = ACTIONS(2619),
- [anon_sym_DQUOTE] = ACTIONS(2619),
- [anon_sym_SQUOTE] = ACTIONS(2619),
- [anon_sym_class] = ACTIONS(2621),
- [anon_sym_async] = ACTIONS(2621),
- [anon_sym_function] = ACTIONS(2621),
- [anon_sym_new] = ACTIONS(2621),
- [anon_sym_using] = ACTIONS(2621),
- [anon_sym_PLUS] = ACTIONS(2621),
- [anon_sym_DASH] = ACTIONS(2621),
- [anon_sym_SLASH] = ACTIONS(2621),
- [anon_sym_LT] = ACTIONS(2621),
- [anon_sym_TILDE] = ACTIONS(2619),
- [anon_sym_void] = ACTIONS(2621),
- [anon_sym_delete] = ACTIONS(2621),
- [anon_sym_PLUS_PLUS] = ACTIONS(2619),
- [anon_sym_DASH_DASH] = ACTIONS(2619),
- [sym_comment] = ACTIONS(5),
- [anon_sym_BQUOTE] = ACTIONS(2619),
- [sym_number] = ACTIONS(2619),
- [sym_private_property_identifier] = ACTIONS(2619),
- [sym_this] = ACTIONS(2621),
- [sym_super] = ACTIONS(2621),
- [sym_true] = ACTIONS(2621),
- [sym_false] = ACTIONS(2621),
- [sym_null] = ACTIONS(2621),
- [sym_undefined] = ACTIONS(2621),
- [anon_sym_AT] = ACTIONS(2619),
- [anon_sym_static] = ACTIONS(2621),
- [anon_sym_readonly] = ACTIONS(2621),
- [anon_sym_get] = ACTIONS(2621),
- [anon_sym_set] = ACTIONS(2621),
- [anon_sym_declare] = ACTIONS(2621),
- [anon_sym_public] = ACTIONS(2621),
- [anon_sym_private] = ACTIONS(2621),
- [anon_sym_protected] = ACTIONS(2621),
- [anon_sym_override] = ACTIONS(2621),
- [anon_sym_module] = ACTIONS(2621),
- [anon_sym_any] = ACTIONS(2621),
- [anon_sym_number] = ACTIONS(2621),
- [anon_sym_boolean] = ACTIONS(2621),
- [anon_sym_string] = ACTIONS(2621),
- [anon_sym_symbol] = ACTIONS(2621),
- [anon_sym_object] = ACTIONS(2621),
- [anon_sym_abstract] = ACTIONS(2621),
- [anon_sym_interface] = ACTIONS(2621),
- [anon_sym_enum] = ACTIONS(2621),
- [sym_html_comment] = ACTIONS(5),
- },
- [788] = {
- [ts_builtin_sym_end] = ACTIONS(2623),
- [sym_identifier] = ACTIONS(2625),
- [anon_sym_export] = ACTIONS(2625),
- [anon_sym_default] = ACTIONS(2625),
- [anon_sym_type] = ACTIONS(2625),
- [anon_sym_namespace] = ACTIONS(2625),
- [anon_sym_LBRACE] = ACTIONS(2623),
- [anon_sym_RBRACE] = ACTIONS(2623),
- [anon_sym_typeof] = ACTIONS(2625),
- [anon_sym_import] = ACTIONS(2625),
- [anon_sym_with] = ACTIONS(2625),
- [anon_sym_var] = ACTIONS(2625),
- [anon_sym_let] = ACTIONS(2625),
- [anon_sym_const] = ACTIONS(2625),
- [anon_sym_BANG] = ACTIONS(2623),
- [anon_sym_else] = ACTIONS(2625),
- [anon_sym_if] = ACTIONS(2625),
- [anon_sym_switch] = ACTIONS(2625),
- [anon_sym_for] = ACTIONS(2625),
- [anon_sym_LPAREN] = ACTIONS(2623),
- [anon_sym_await] = ACTIONS(2625),
- [anon_sym_while] = ACTIONS(2625),
- [anon_sym_do] = ACTIONS(2625),
- [anon_sym_try] = ACTIONS(2625),
- [anon_sym_break] = ACTIONS(2625),
- [anon_sym_continue] = ACTIONS(2625),
- [anon_sym_debugger] = ACTIONS(2625),
- [anon_sym_return] = ACTIONS(2625),
- [anon_sym_throw] = ACTIONS(2625),
- [anon_sym_SEMI] = ACTIONS(2623),
- [anon_sym_case] = ACTIONS(2625),
- [anon_sym_yield] = ACTIONS(2625),
- [anon_sym_LBRACK] = ACTIONS(2623),
- [sym_glimmer_opening_tag] = ACTIONS(2623),
- [anon_sym_DQUOTE] = ACTIONS(2623),
- [anon_sym_SQUOTE] = ACTIONS(2623),
- [anon_sym_class] = ACTIONS(2625),
- [anon_sym_async] = ACTIONS(2625),
- [anon_sym_function] = ACTIONS(2625),
- [anon_sym_new] = ACTIONS(2625),
- [anon_sym_using] = ACTIONS(2625),
- [anon_sym_PLUS] = ACTIONS(2625),
- [anon_sym_DASH] = ACTIONS(2625),
- [anon_sym_SLASH] = ACTIONS(2625),
- [anon_sym_LT] = ACTIONS(2625),
- [anon_sym_TILDE] = ACTIONS(2623),
- [anon_sym_void] = ACTIONS(2625),
- [anon_sym_delete] = ACTIONS(2625),
- [anon_sym_PLUS_PLUS] = ACTIONS(2623),
- [anon_sym_DASH_DASH] = ACTIONS(2623),
- [sym_comment] = ACTIONS(5),
- [anon_sym_BQUOTE] = ACTIONS(2623),
- [sym_number] = ACTIONS(2623),
- [sym_private_property_identifier] = ACTIONS(2623),
- [sym_this] = ACTIONS(2625),
- [sym_super] = ACTIONS(2625),
- [sym_true] = ACTIONS(2625),
- [sym_false] = ACTIONS(2625),
- [sym_null] = ACTIONS(2625),
- [sym_undefined] = ACTIONS(2625),
- [anon_sym_AT] = ACTIONS(2623),
- [anon_sym_static] = ACTIONS(2625),
- [anon_sym_readonly] = ACTIONS(2625),
- [anon_sym_get] = ACTIONS(2625),
- [anon_sym_set] = ACTIONS(2625),
- [anon_sym_declare] = ACTIONS(2625),
- [anon_sym_public] = ACTIONS(2625),
- [anon_sym_private] = ACTIONS(2625),
- [anon_sym_protected] = ACTIONS(2625),
- [anon_sym_override] = ACTIONS(2625),
- [anon_sym_module] = ACTIONS(2625),
- [anon_sym_any] = ACTIONS(2625),
- [anon_sym_number] = ACTIONS(2625),
- [anon_sym_boolean] = ACTIONS(2625),
- [anon_sym_string] = ACTIONS(2625),
- [anon_sym_symbol] = ACTIONS(2625),
- [anon_sym_object] = ACTIONS(2625),
- [anon_sym_abstract] = ACTIONS(2625),
- [anon_sym_interface] = ACTIONS(2625),
- [anon_sym_enum] = ACTIONS(2625),
- [sym_html_comment] = ACTIONS(5),
- },
- [789] = {
- [ts_builtin_sym_end] = ACTIONS(2627),
- [sym_identifier] = ACTIONS(2629),
- [anon_sym_export] = ACTIONS(2629),
- [anon_sym_default] = ACTIONS(2629),
- [anon_sym_type] = ACTIONS(2629),
- [anon_sym_namespace] = ACTIONS(2629),
- [anon_sym_LBRACE] = ACTIONS(2627),
- [anon_sym_RBRACE] = ACTIONS(2627),
- [anon_sym_typeof] = ACTIONS(2629),
- [anon_sym_import] = ACTIONS(2629),
- [anon_sym_with] = ACTIONS(2629),
- [anon_sym_var] = ACTIONS(2629),
- [anon_sym_let] = ACTIONS(2629),
- [anon_sym_const] = ACTIONS(2629),
- [anon_sym_BANG] = ACTIONS(2627),
- [anon_sym_else] = ACTIONS(2629),
- [anon_sym_if] = ACTIONS(2629),
- [anon_sym_switch] = ACTIONS(2629),
- [anon_sym_for] = ACTIONS(2629),
- [anon_sym_LPAREN] = ACTIONS(2627),
- [anon_sym_await] = ACTIONS(2629),
- [anon_sym_while] = ACTIONS(2629),
- [anon_sym_do] = ACTIONS(2629),
- [anon_sym_try] = ACTIONS(2629),
- [anon_sym_break] = ACTIONS(2629),
- [anon_sym_continue] = ACTIONS(2629),
- [anon_sym_debugger] = ACTIONS(2629),
- [anon_sym_return] = ACTIONS(2629),
- [anon_sym_throw] = ACTIONS(2629),
- [anon_sym_SEMI] = ACTIONS(2627),
- [anon_sym_case] = ACTIONS(2629),
- [anon_sym_yield] = ACTIONS(2629),
- [anon_sym_LBRACK] = ACTIONS(2627),
- [sym_glimmer_opening_tag] = ACTIONS(2627),
- [anon_sym_DQUOTE] = ACTIONS(2627),
- [anon_sym_SQUOTE] = ACTIONS(2627),
- [anon_sym_class] = ACTIONS(2629),
- [anon_sym_async] = ACTIONS(2629),
- [anon_sym_function] = ACTIONS(2629),
- [anon_sym_new] = ACTIONS(2629),
- [anon_sym_using] = ACTIONS(2629),
- [anon_sym_PLUS] = ACTIONS(2629),
- [anon_sym_DASH] = ACTIONS(2629),
- [anon_sym_SLASH] = ACTIONS(2629),
- [anon_sym_LT] = ACTIONS(2629),
- [anon_sym_TILDE] = ACTIONS(2627),
- [anon_sym_void] = ACTIONS(2629),
- [anon_sym_delete] = ACTIONS(2629),
- [anon_sym_PLUS_PLUS] = ACTIONS(2627),
- [anon_sym_DASH_DASH] = ACTIONS(2627),
- [sym_comment] = ACTIONS(5),
- [anon_sym_BQUOTE] = ACTIONS(2627),
- [sym_number] = ACTIONS(2627),
- [sym_private_property_identifier] = ACTIONS(2627),
- [sym_this] = ACTIONS(2629),
- [sym_super] = ACTIONS(2629),
- [sym_true] = ACTIONS(2629),
- [sym_false] = ACTIONS(2629),
- [sym_null] = ACTIONS(2629),
- [sym_undefined] = ACTIONS(2629),
- [anon_sym_AT] = ACTIONS(2627),
- [anon_sym_static] = ACTIONS(2629),
- [anon_sym_readonly] = ACTIONS(2629),
- [anon_sym_get] = ACTIONS(2629),
- [anon_sym_set] = ACTIONS(2629),
- [anon_sym_declare] = ACTIONS(2629),
- [anon_sym_public] = ACTIONS(2629),
- [anon_sym_private] = ACTIONS(2629),
- [anon_sym_protected] = ACTIONS(2629),
- [anon_sym_override] = ACTIONS(2629),
- [anon_sym_module] = ACTIONS(2629),
- [anon_sym_any] = ACTIONS(2629),
- [anon_sym_number] = ACTIONS(2629),
- [anon_sym_boolean] = ACTIONS(2629),
- [anon_sym_string] = ACTIONS(2629),
- [anon_sym_symbol] = ACTIONS(2629),
- [anon_sym_object] = ACTIONS(2629),
- [anon_sym_abstract] = ACTIONS(2629),
- [anon_sym_interface] = ACTIONS(2629),
- [anon_sym_enum] = ACTIONS(2629),
- [sym_html_comment] = ACTIONS(5),
- },
- [790] = {
- [ts_builtin_sym_end] = ACTIONS(2627),
- [sym_identifier] = ACTIONS(2629),
- [anon_sym_export] = ACTIONS(2629),
- [anon_sym_default] = ACTIONS(2629),
- [anon_sym_type] = ACTIONS(2629),
- [anon_sym_namespace] = ACTIONS(2629),
- [anon_sym_LBRACE] = ACTIONS(2627),
- [anon_sym_RBRACE] = ACTIONS(2627),
- [anon_sym_typeof] = ACTIONS(2629),
- [anon_sym_import] = ACTIONS(2629),
- [anon_sym_with] = ACTIONS(2629),
- [anon_sym_var] = ACTIONS(2629),
- [anon_sym_let] = ACTIONS(2629),
- [anon_sym_const] = ACTIONS(2629),
- [anon_sym_BANG] = ACTIONS(2627),
- [anon_sym_else] = ACTIONS(2629),
- [anon_sym_if] = ACTIONS(2629),
- [anon_sym_switch] = ACTIONS(2629),
- [anon_sym_for] = ACTIONS(2629),
- [anon_sym_LPAREN] = ACTIONS(2627),
- [anon_sym_await] = ACTIONS(2629),
- [anon_sym_while] = ACTIONS(2629),
- [anon_sym_do] = ACTIONS(2629),
- [anon_sym_try] = ACTIONS(2629),
- [anon_sym_break] = ACTIONS(2629),
- [anon_sym_continue] = ACTIONS(2629),
- [anon_sym_debugger] = ACTIONS(2629),
- [anon_sym_return] = ACTIONS(2629),
- [anon_sym_throw] = ACTIONS(2629),
- [anon_sym_SEMI] = ACTIONS(2627),
- [anon_sym_case] = ACTIONS(2629),
- [anon_sym_yield] = ACTIONS(2629),
- [anon_sym_LBRACK] = ACTIONS(2627),
- [sym_glimmer_opening_tag] = ACTIONS(2627),
- [anon_sym_DQUOTE] = ACTIONS(2627),
- [anon_sym_SQUOTE] = ACTIONS(2627),
- [anon_sym_class] = ACTIONS(2629),
- [anon_sym_async] = ACTIONS(2629),
- [anon_sym_function] = ACTIONS(2629),
- [anon_sym_new] = ACTIONS(2629),
- [anon_sym_using] = ACTIONS(2629),
- [anon_sym_PLUS] = ACTIONS(2629),
- [anon_sym_DASH] = ACTIONS(2629),
- [anon_sym_SLASH] = ACTIONS(2629),
- [anon_sym_LT] = ACTIONS(2629),
- [anon_sym_TILDE] = ACTIONS(2627),
- [anon_sym_void] = ACTIONS(2629),
- [anon_sym_delete] = ACTIONS(2629),
- [anon_sym_PLUS_PLUS] = ACTIONS(2627),
- [anon_sym_DASH_DASH] = ACTIONS(2627),
- [sym_comment] = ACTIONS(5),
- [anon_sym_BQUOTE] = ACTIONS(2627),
- [sym_number] = ACTIONS(2627),
- [sym_private_property_identifier] = ACTIONS(2627),
- [sym_this] = ACTIONS(2629),
- [sym_super] = ACTIONS(2629),
- [sym_true] = ACTIONS(2629),
- [sym_false] = ACTIONS(2629),
- [sym_null] = ACTIONS(2629),
- [sym_undefined] = ACTIONS(2629),
- [anon_sym_AT] = ACTIONS(2627),
- [anon_sym_static] = ACTIONS(2629),
- [anon_sym_readonly] = ACTIONS(2629),
- [anon_sym_get] = ACTIONS(2629),
- [anon_sym_set] = ACTIONS(2629),
- [anon_sym_declare] = ACTIONS(2629),
- [anon_sym_public] = ACTIONS(2629),
- [anon_sym_private] = ACTIONS(2629),
- [anon_sym_protected] = ACTIONS(2629),
- [anon_sym_override] = ACTIONS(2629),
- [anon_sym_module] = ACTIONS(2629),
- [anon_sym_any] = ACTIONS(2629),
- [anon_sym_number] = ACTIONS(2629),
- [anon_sym_boolean] = ACTIONS(2629),
- [anon_sym_string] = ACTIONS(2629),
- [anon_sym_symbol] = ACTIONS(2629),
- [anon_sym_object] = ACTIONS(2629),
- [anon_sym_abstract] = ACTIONS(2629),
- [anon_sym_interface] = ACTIONS(2629),
- [anon_sym_enum] = ACTIONS(2629),
- [sym_html_comment] = ACTIONS(5),
- },
- [791] = {
- [sym_import] = STATE(4753),
- [sym_nested_identifier] = STATE(5707),
- [sym_string] = STATE(2889),
- [sym_formal_parameters] = STATE(5626),
- [sym_rest_pattern] = STATE(5377),
- [sym_nested_type_identifier] = STATE(2828),
- [sym__type_query_member_expression_in_type_annotation] = STATE(3228),
- [sym__type_query_call_expression_in_type_annotation] = STATE(2850),
- [sym_type] = STATE(3859),
- [sym_tuple_parameter] = STATE(4650),
- [sym_optional_tuple_parameter] = STATE(4650),
- [sym_optional_type] = STATE(4650),
- [sym_rest_type] = STATE(4650),
- [sym__tuple_type_member] = STATE(4650),
- [sym_constructor_type] = STATE(2896),
- [sym_primary_type] = STATE(2897),
- [sym_template_literal_type] = STATE(2885),
- [sym_infer_type] = STATE(2896),
- [sym_conditional_type] = STATE(2885),
- [sym_generic_type] = STATE(2885),
- [sym_type_query] = STATE(2885),
- [sym_index_type_query] = STATE(2885),
- [sym_lookup_type] = STATE(2885),
- [sym_literal_type] = STATE(2885),
- [sym__number] = STATE(2903),
- [sym_existential_type] = STATE(2885),
- [sym_flow_maybe_type] = STATE(2885),
- [sym_parenthesized_type] = STATE(2885),
- [sym_predefined_type] = STATE(2885),
- [sym_object_type] = STATE(2885),
- [sym_type_parameters] = STATE(5517),
- [sym_array_type] = STATE(2885),
- [sym_tuple_type] = STATE(2885),
- [sym_readonly_type] = STATE(2896),
- [sym_union_type] = STATE(2885),
- [sym_intersection_type] = STATE(2885),
- [sym_function_type] = STATE(2896),
- [sym_identifier] = ACTIONS(2571),
- [anon_sym_STAR] = ACTIONS(612),
- [anon_sym_LBRACE] = ACTIONS(1498),
- [anon_sym_COMMA] = ACTIONS(2631),
- [anon_sym_typeof] = ACTIONS(1500),
- [anon_sym_import] = ACTIONS(133),
- [anon_sym_const] = ACTIONS(135),
- [anon_sym_LPAREN] = ACTIONS(1502),
- [anon_sym_LBRACK] = ACTIONS(1504),
- [anon_sym_RBRACK] = ACTIONS(2633),
- [anon_sym_DQUOTE] = ACTIONS(1506),
- [anon_sym_SQUOTE] = ACTIONS(1508),
- [anon_sym_new] = ACTIONS(1572),
- [anon_sym_DOT_DOT_DOT] = ACTIONS(2577),
- [anon_sym_AMP] = ACTIONS(640),
- [anon_sym_PIPE] = ACTIONS(642),
- [anon_sym_PLUS] = ACTIONS(2579),
- [anon_sym_DASH] = ACTIONS(2579),
- [anon_sym_LT] = ACTIONS(2581),
- [anon_sym_void] = ACTIONS(220),
- [sym_comment] = ACTIONS(5),
- [anon_sym_BQUOTE] = ACTIONS(1516),
- [sym_number] = ACTIONS(1518),
- [sym_this] = ACTIONS(1520),
- [sym_true] = ACTIONS(1522),
- [sym_false] = ACTIONS(1522),
- [sym_null] = ACTIONS(1522),
- [sym_undefined] = ACTIONS(1522),
- [anon_sym_readonly] = ACTIONS(1578),
- [anon_sym_QMARK] = ACTIONS(662),
- [anon_sym_any] = ACTIONS(220),
- [anon_sym_number] = ACTIONS(220),
- [anon_sym_boolean] = ACTIONS(220),
- [anon_sym_string] = ACTIONS(220),
- [anon_sym_symbol] = ACTIONS(220),
- [anon_sym_object] = ACTIONS(220),
- [anon_sym_abstract] = ACTIONS(666),
- [anon_sym_infer] = ACTIONS(668),
- [anon_sym_keyof] = ACTIONS(670),
- [anon_sym_unique] = ACTIONS(218),
- [anon_sym_unknown] = ACTIONS(220),
- [anon_sym_never] = ACTIONS(220),
- [anon_sym_LBRACE_PIPE] = ACTIONS(222),
- [sym_html_comment] = ACTIONS(5),
- },
- [792] = {
- [ts_builtin_sym_end] = ACTIONS(2635),
- [sym_identifier] = ACTIONS(2637),
- [anon_sym_export] = ACTIONS(2637),
- [anon_sym_default] = ACTIONS(2637),
- [anon_sym_type] = ACTIONS(2637),
- [anon_sym_namespace] = ACTIONS(2637),
- [anon_sym_LBRACE] = ACTIONS(2635),
- [anon_sym_RBRACE] = ACTIONS(2635),
- [anon_sym_typeof] = ACTIONS(2637),
- [anon_sym_import] = ACTIONS(2637),
- [anon_sym_with] = ACTIONS(2637),
- [anon_sym_var] = ACTIONS(2637),
- [anon_sym_let] = ACTIONS(2637),
- [anon_sym_const] = ACTIONS(2637),
- [anon_sym_BANG] = ACTIONS(2635),
- [anon_sym_else] = ACTIONS(2637),
- [anon_sym_if] = ACTIONS(2637),
- [anon_sym_switch] = ACTIONS(2637),
- [anon_sym_for] = ACTIONS(2637),
- [anon_sym_LPAREN] = ACTIONS(2635),
- [anon_sym_await] = ACTIONS(2637),
- [anon_sym_while] = ACTIONS(2637),
- [anon_sym_do] = ACTIONS(2637),
- [anon_sym_try] = ACTIONS(2637),
- [anon_sym_break] = ACTIONS(2637),
- [anon_sym_continue] = ACTIONS(2637),
- [anon_sym_debugger] = ACTIONS(2637),
- [anon_sym_return] = ACTIONS(2637),
- [anon_sym_throw] = ACTIONS(2637),
- [anon_sym_SEMI] = ACTIONS(2635),
- [anon_sym_case] = ACTIONS(2637),
- [anon_sym_yield] = ACTIONS(2637),
- [anon_sym_LBRACK] = ACTIONS(2635),
- [sym_glimmer_opening_tag] = ACTIONS(2635),
- [anon_sym_DQUOTE] = ACTIONS(2635),
- [anon_sym_SQUOTE] = ACTIONS(2635),
- [anon_sym_class] = ACTIONS(2637),
- [anon_sym_async] = ACTIONS(2637),
- [anon_sym_function] = ACTIONS(2637),
- [anon_sym_new] = ACTIONS(2637),
- [anon_sym_using] = ACTIONS(2637),
- [anon_sym_PLUS] = ACTIONS(2637),
- [anon_sym_DASH] = ACTIONS(2637),
- [anon_sym_SLASH] = ACTIONS(2637),
- [anon_sym_LT] = ACTIONS(2637),
- [anon_sym_TILDE] = ACTIONS(2635),
- [anon_sym_void] = ACTIONS(2637),
- [anon_sym_delete] = ACTIONS(2637),
- [anon_sym_PLUS_PLUS] = ACTIONS(2635),
- [anon_sym_DASH_DASH] = ACTIONS(2635),
- [sym_comment] = ACTIONS(5),
- [anon_sym_BQUOTE] = ACTIONS(2635),
- [sym_number] = ACTIONS(2635),
- [sym_private_property_identifier] = ACTIONS(2635),
- [sym_this] = ACTIONS(2637),
- [sym_super] = ACTIONS(2637),
- [sym_true] = ACTIONS(2637),
- [sym_false] = ACTIONS(2637),
- [sym_null] = ACTIONS(2637),
- [sym_undefined] = ACTIONS(2637),
- [anon_sym_AT] = ACTIONS(2635),
- [anon_sym_static] = ACTIONS(2637),
- [anon_sym_readonly] = ACTIONS(2637),
- [anon_sym_get] = ACTIONS(2637),
- [anon_sym_set] = ACTIONS(2637),
- [anon_sym_declare] = ACTIONS(2637),
- [anon_sym_public] = ACTIONS(2637),
- [anon_sym_private] = ACTIONS(2637),
- [anon_sym_protected] = ACTIONS(2637),
- [anon_sym_override] = ACTIONS(2637),
- [anon_sym_module] = ACTIONS(2637),
- [anon_sym_any] = ACTIONS(2637),
- [anon_sym_number] = ACTIONS(2637),
- [anon_sym_boolean] = ACTIONS(2637),
- [anon_sym_string] = ACTIONS(2637),
- [anon_sym_symbol] = ACTIONS(2637),
- [anon_sym_object] = ACTIONS(2637),
- [anon_sym_abstract] = ACTIONS(2637),
- [anon_sym_interface] = ACTIONS(2637),
- [anon_sym_enum] = ACTIONS(2637),
- [sym_html_comment] = ACTIONS(5),
- },
- [793] = {
- [ts_builtin_sym_end] = ACTIONS(2639),
- [sym_identifier] = ACTIONS(2641),
- [anon_sym_export] = ACTIONS(2641),
- [anon_sym_default] = ACTIONS(2641),
- [anon_sym_type] = ACTIONS(2641),
- [anon_sym_namespace] = ACTIONS(2641),
- [anon_sym_LBRACE] = ACTIONS(2639),
- [anon_sym_RBRACE] = ACTIONS(2639),
- [anon_sym_typeof] = ACTIONS(2641),
- [anon_sym_import] = ACTIONS(2641),
- [anon_sym_with] = ACTIONS(2641),
- [anon_sym_var] = ACTIONS(2641),
- [anon_sym_let] = ACTIONS(2641),
- [anon_sym_const] = ACTIONS(2641),
- [anon_sym_BANG] = ACTIONS(2639),
- [anon_sym_else] = ACTIONS(2641),
- [anon_sym_if] = ACTIONS(2641),
- [anon_sym_switch] = ACTIONS(2641),
- [anon_sym_for] = ACTIONS(2641),
- [anon_sym_LPAREN] = ACTIONS(2639),
- [anon_sym_await] = ACTIONS(2641),
- [anon_sym_while] = ACTIONS(2641),
- [anon_sym_do] = ACTIONS(2641),
- [anon_sym_try] = ACTIONS(2641),
- [anon_sym_break] = ACTIONS(2641),
- [anon_sym_continue] = ACTIONS(2641),
- [anon_sym_debugger] = ACTIONS(2641),
- [anon_sym_return] = ACTIONS(2641),
- [anon_sym_throw] = ACTIONS(2641),
- [anon_sym_SEMI] = ACTIONS(2639),
- [anon_sym_case] = ACTIONS(2641),
- [anon_sym_yield] = ACTIONS(2641),
- [anon_sym_LBRACK] = ACTIONS(2639),
- [sym_glimmer_opening_tag] = ACTIONS(2639),
- [anon_sym_DQUOTE] = ACTIONS(2639),
- [anon_sym_SQUOTE] = ACTIONS(2639),
- [anon_sym_class] = ACTIONS(2641),
- [anon_sym_async] = ACTIONS(2641),
- [anon_sym_function] = ACTIONS(2641),
- [anon_sym_new] = ACTIONS(2641),
- [anon_sym_using] = ACTIONS(2641),
- [anon_sym_PLUS] = ACTIONS(2641),
- [anon_sym_DASH] = ACTIONS(2641),
- [anon_sym_SLASH] = ACTIONS(2641),
- [anon_sym_LT] = ACTIONS(2641),
- [anon_sym_TILDE] = ACTIONS(2639),
- [anon_sym_void] = ACTIONS(2641),
- [anon_sym_delete] = ACTIONS(2641),
- [anon_sym_PLUS_PLUS] = ACTIONS(2639),
- [anon_sym_DASH_DASH] = ACTIONS(2639),
- [sym_comment] = ACTIONS(5),
- [anon_sym_BQUOTE] = ACTIONS(2639),
- [sym_number] = ACTIONS(2639),
- [sym_private_property_identifier] = ACTIONS(2639),
- [sym_this] = ACTIONS(2641),
- [sym_super] = ACTIONS(2641),
- [sym_true] = ACTIONS(2641),
- [sym_false] = ACTIONS(2641),
- [sym_null] = ACTIONS(2641),
- [sym_undefined] = ACTIONS(2641),
- [anon_sym_AT] = ACTIONS(2639),
- [anon_sym_static] = ACTIONS(2641),
- [anon_sym_readonly] = ACTIONS(2641),
- [anon_sym_get] = ACTIONS(2641),
- [anon_sym_set] = ACTIONS(2641),
- [anon_sym_declare] = ACTIONS(2641),
- [anon_sym_public] = ACTIONS(2641),
- [anon_sym_private] = ACTIONS(2641),
- [anon_sym_protected] = ACTIONS(2641),
- [anon_sym_override] = ACTIONS(2641),
- [anon_sym_module] = ACTIONS(2641),
- [anon_sym_any] = ACTIONS(2641),
- [anon_sym_number] = ACTIONS(2641),
- [anon_sym_boolean] = ACTIONS(2641),
- [anon_sym_string] = ACTIONS(2641),
- [anon_sym_symbol] = ACTIONS(2641),
- [anon_sym_object] = ACTIONS(2641),
- [anon_sym_abstract] = ACTIONS(2641),
- [anon_sym_interface] = ACTIONS(2641),
- [anon_sym_enum] = ACTIONS(2641),
- [sym_html_comment] = ACTIONS(5),
- },
- [794] = {
- [ts_builtin_sym_end] = ACTIONS(2643),
- [sym_identifier] = ACTIONS(2645),
- [anon_sym_export] = ACTIONS(2645),
- [anon_sym_default] = ACTIONS(2645),
- [anon_sym_type] = ACTIONS(2645),
- [anon_sym_namespace] = ACTIONS(2645),
- [anon_sym_LBRACE] = ACTIONS(2643),
- [anon_sym_RBRACE] = ACTIONS(2643),
- [anon_sym_typeof] = ACTIONS(2645),
- [anon_sym_import] = ACTIONS(2645),
- [anon_sym_with] = ACTIONS(2645),
- [anon_sym_var] = ACTIONS(2645),
- [anon_sym_let] = ACTIONS(2645),
- [anon_sym_const] = ACTIONS(2645),
- [anon_sym_BANG] = ACTIONS(2643),
- [anon_sym_else] = ACTIONS(2645),
- [anon_sym_if] = ACTIONS(2645),
- [anon_sym_switch] = ACTIONS(2645),
- [anon_sym_for] = ACTIONS(2645),
- [anon_sym_LPAREN] = ACTIONS(2643),
- [anon_sym_await] = ACTIONS(2645),
- [anon_sym_while] = ACTIONS(2645),
- [anon_sym_do] = ACTIONS(2645),
- [anon_sym_try] = ACTIONS(2645),
- [anon_sym_break] = ACTIONS(2645),
- [anon_sym_continue] = ACTIONS(2645),
- [anon_sym_debugger] = ACTIONS(2645),
- [anon_sym_return] = ACTIONS(2645),
- [anon_sym_throw] = ACTIONS(2645),
- [anon_sym_SEMI] = ACTIONS(2643),
- [anon_sym_case] = ACTIONS(2645),
- [anon_sym_yield] = ACTIONS(2645),
- [anon_sym_LBRACK] = ACTIONS(2643),
- [sym_glimmer_opening_tag] = ACTIONS(2643),
- [anon_sym_DQUOTE] = ACTIONS(2643),
- [anon_sym_SQUOTE] = ACTIONS(2643),
- [anon_sym_class] = ACTIONS(2645),
- [anon_sym_async] = ACTIONS(2645),
- [anon_sym_function] = ACTIONS(2645),
- [anon_sym_new] = ACTIONS(2645),
- [anon_sym_using] = ACTIONS(2645),
- [anon_sym_PLUS] = ACTIONS(2645),
- [anon_sym_DASH] = ACTIONS(2645),
- [anon_sym_SLASH] = ACTIONS(2645),
- [anon_sym_LT] = ACTIONS(2645),
- [anon_sym_TILDE] = ACTIONS(2643),
- [anon_sym_void] = ACTIONS(2645),
- [anon_sym_delete] = ACTIONS(2645),
- [anon_sym_PLUS_PLUS] = ACTIONS(2643),
- [anon_sym_DASH_DASH] = ACTIONS(2643),
- [sym_comment] = ACTIONS(5),
- [anon_sym_BQUOTE] = ACTIONS(2643),
- [sym_number] = ACTIONS(2643),
- [sym_private_property_identifier] = ACTIONS(2643),
- [sym_this] = ACTIONS(2645),
- [sym_super] = ACTIONS(2645),
- [sym_true] = ACTIONS(2645),
- [sym_false] = ACTIONS(2645),
- [sym_null] = ACTIONS(2645),
- [sym_undefined] = ACTIONS(2645),
- [anon_sym_AT] = ACTIONS(2643),
- [anon_sym_static] = ACTIONS(2645),
- [anon_sym_readonly] = ACTIONS(2645),
- [anon_sym_get] = ACTIONS(2645),
- [anon_sym_set] = ACTIONS(2645),
- [anon_sym_declare] = ACTIONS(2645),
- [anon_sym_public] = ACTIONS(2645),
- [anon_sym_private] = ACTIONS(2645),
- [anon_sym_protected] = ACTIONS(2645),
- [anon_sym_override] = ACTIONS(2645),
- [anon_sym_module] = ACTIONS(2645),
- [anon_sym_any] = ACTIONS(2645),
- [anon_sym_number] = ACTIONS(2645),
- [anon_sym_boolean] = ACTIONS(2645),
- [anon_sym_string] = ACTIONS(2645),
- [anon_sym_symbol] = ACTIONS(2645),
- [anon_sym_object] = ACTIONS(2645),
- [anon_sym_abstract] = ACTIONS(2645),
- [anon_sym_interface] = ACTIONS(2645),
- [anon_sym_enum] = ACTIONS(2645),
- [sym_html_comment] = ACTIONS(5),
- },
- [795] = {
- [ts_builtin_sym_end] = ACTIONS(2647),
- [sym_identifier] = ACTIONS(2649),
- [anon_sym_export] = ACTIONS(2649),
- [anon_sym_default] = ACTIONS(2649),
- [anon_sym_type] = ACTIONS(2649),
- [anon_sym_namespace] = ACTIONS(2649),
- [anon_sym_LBRACE] = ACTIONS(2647),
- [anon_sym_RBRACE] = ACTIONS(2647),
- [anon_sym_typeof] = ACTIONS(2649),
- [anon_sym_import] = ACTIONS(2649),
- [anon_sym_with] = ACTIONS(2649),
- [anon_sym_var] = ACTIONS(2649),
- [anon_sym_let] = ACTIONS(2649),
- [anon_sym_const] = ACTIONS(2649),
- [anon_sym_BANG] = ACTIONS(2647),
- [anon_sym_else] = ACTIONS(2649),
- [anon_sym_if] = ACTIONS(2649),
- [anon_sym_switch] = ACTIONS(2649),
- [anon_sym_for] = ACTIONS(2649),
- [anon_sym_LPAREN] = ACTIONS(2647),
- [anon_sym_await] = ACTIONS(2649),
- [anon_sym_while] = ACTIONS(2649),
- [anon_sym_do] = ACTIONS(2649),
- [anon_sym_try] = ACTIONS(2649),
- [anon_sym_break] = ACTIONS(2649),
- [anon_sym_continue] = ACTIONS(2649),
- [anon_sym_debugger] = ACTIONS(2649),
- [anon_sym_return] = ACTIONS(2649),
- [anon_sym_throw] = ACTIONS(2649),
- [anon_sym_SEMI] = ACTIONS(2647),
- [anon_sym_case] = ACTIONS(2649),
- [anon_sym_yield] = ACTIONS(2649),
- [anon_sym_LBRACK] = ACTIONS(2647),
- [sym_glimmer_opening_tag] = ACTIONS(2647),
- [anon_sym_DQUOTE] = ACTIONS(2647),
- [anon_sym_SQUOTE] = ACTIONS(2647),
- [anon_sym_class] = ACTIONS(2649),
- [anon_sym_async] = ACTIONS(2649),
- [anon_sym_function] = ACTIONS(2649),
- [anon_sym_new] = ACTIONS(2649),
- [anon_sym_using] = ACTIONS(2649),
- [anon_sym_PLUS] = ACTIONS(2649),
- [anon_sym_DASH] = ACTIONS(2649),
- [anon_sym_SLASH] = ACTIONS(2649),
- [anon_sym_LT] = ACTIONS(2649),
- [anon_sym_TILDE] = ACTIONS(2647),
- [anon_sym_void] = ACTIONS(2649),
- [anon_sym_delete] = ACTIONS(2649),
- [anon_sym_PLUS_PLUS] = ACTIONS(2647),
- [anon_sym_DASH_DASH] = ACTIONS(2647),
- [sym_comment] = ACTIONS(5),
- [anon_sym_BQUOTE] = ACTIONS(2647),
- [sym_number] = ACTIONS(2647),
- [sym_private_property_identifier] = ACTIONS(2647),
- [sym_this] = ACTIONS(2649),
- [sym_super] = ACTIONS(2649),
- [sym_true] = ACTIONS(2649),
- [sym_false] = ACTIONS(2649),
- [sym_null] = ACTIONS(2649),
- [sym_undefined] = ACTIONS(2649),
- [anon_sym_AT] = ACTIONS(2647),
- [anon_sym_static] = ACTIONS(2649),
- [anon_sym_readonly] = ACTIONS(2649),
- [anon_sym_get] = ACTIONS(2649),
- [anon_sym_set] = ACTIONS(2649),
- [anon_sym_declare] = ACTIONS(2649),
- [anon_sym_public] = ACTIONS(2649),
- [anon_sym_private] = ACTIONS(2649),
- [anon_sym_protected] = ACTIONS(2649),
- [anon_sym_override] = ACTIONS(2649),
- [anon_sym_module] = ACTIONS(2649),
- [anon_sym_any] = ACTIONS(2649),
- [anon_sym_number] = ACTIONS(2649),
- [anon_sym_boolean] = ACTIONS(2649),
- [anon_sym_string] = ACTIONS(2649),
- [anon_sym_symbol] = ACTIONS(2649),
- [anon_sym_object] = ACTIONS(2649),
- [anon_sym_abstract] = ACTIONS(2649),
- [anon_sym_interface] = ACTIONS(2649),
- [anon_sym_enum] = ACTIONS(2649),
- [sym_html_comment] = ACTIONS(5),
- },
- [796] = {
- [ts_builtin_sym_end] = ACTIONS(2651),
- [sym_identifier] = ACTIONS(2653),
- [anon_sym_export] = ACTIONS(2653),
- [anon_sym_default] = ACTIONS(2653),
- [anon_sym_type] = ACTIONS(2653),
- [anon_sym_namespace] = ACTIONS(2653),
- [anon_sym_LBRACE] = ACTIONS(2651),
- [anon_sym_RBRACE] = ACTIONS(2651),
- [anon_sym_typeof] = ACTIONS(2653),
- [anon_sym_import] = ACTIONS(2653),
- [anon_sym_with] = ACTIONS(2653),
- [anon_sym_var] = ACTIONS(2653),
- [anon_sym_let] = ACTIONS(2653),
- [anon_sym_const] = ACTIONS(2653),
- [anon_sym_BANG] = ACTIONS(2651),
- [anon_sym_else] = ACTIONS(2653),
- [anon_sym_if] = ACTIONS(2653),
- [anon_sym_switch] = ACTIONS(2653),
- [anon_sym_for] = ACTIONS(2653),
- [anon_sym_LPAREN] = ACTIONS(2651),
- [anon_sym_await] = ACTIONS(2653),
- [anon_sym_while] = ACTIONS(2653),
- [anon_sym_do] = ACTIONS(2653),
- [anon_sym_try] = ACTIONS(2653),
- [anon_sym_break] = ACTIONS(2653),
- [anon_sym_continue] = ACTIONS(2653),
- [anon_sym_debugger] = ACTIONS(2653),
- [anon_sym_return] = ACTIONS(2653),
- [anon_sym_throw] = ACTIONS(2653),
- [anon_sym_SEMI] = ACTIONS(2651),
- [anon_sym_case] = ACTIONS(2653),
- [anon_sym_yield] = ACTIONS(2653),
- [anon_sym_LBRACK] = ACTIONS(2651),
- [sym_glimmer_opening_tag] = ACTIONS(2651),
- [anon_sym_DQUOTE] = ACTIONS(2651),
- [anon_sym_SQUOTE] = ACTIONS(2651),
- [anon_sym_class] = ACTIONS(2653),
- [anon_sym_async] = ACTIONS(2653),
- [anon_sym_function] = ACTIONS(2653),
- [anon_sym_new] = ACTIONS(2653),
- [anon_sym_using] = ACTIONS(2653),
- [anon_sym_PLUS] = ACTIONS(2653),
- [anon_sym_DASH] = ACTIONS(2653),
- [anon_sym_SLASH] = ACTIONS(2653),
- [anon_sym_LT] = ACTIONS(2653),
- [anon_sym_TILDE] = ACTIONS(2651),
- [anon_sym_void] = ACTIONS(2653),
- [anon_sym_delete] = ACTIONS(2653),
- [anon_sym_PLUS_PLUS] = ACTIONS(2651),
- [anon_sym_DASH_DASH] = ACTIONS(2651),
- [sym_comment] = ACTIONS(5),
- [anon_sym_BQUOTE] = ACTIONS(2651),
- [sym_number] = ACTIONS(2651),
- [sym_private_property_identifier] = ACTIONS(2651),
- [sym_this] = ACTIONS(2653),
- [sym_super] = ACTIONS(2653),
- [sym_true] = ACTIONS(2653),
- [sym_false] = ACTIONS(2653),
- [sym_null] = ACTIONS(2653),
- [sym_undefined] = ACTIONS(2653),
- [anon_sym_AT] = ACTIONS(2651),
- [anon_sym_static] = ACTIONS(2653),
- [anon_sym_readonly] = ACTIONS(2653),
- [anon_sym_get] = ACTIONS(2653),
- [anon_sym_set] = ACTIONS(2653),
- [anon_sym_declare] = ACTIONS(2653),
- [anon_sym_public] = ACTIONS(2653),
- [anon_sym_private] = ACTIONS(2653),
- [anon_sym_protected] = ACTIONS(2653),
- [anon_sym_override] = ACTIONS(2653),
- [anon_sym_module] = ACTIONS(2653),
- [anon_sym_any] = ACTIONS(2653),
- [anon_sym_number] = ACTIONS(2653),
- [anon_sym_boolean] = ACTIONS(2653),
- [anon_sym_string] = ACTIONS(2653),
- [anon_sym_symbol] = ACTIONS(2653),
- [anon_sym_object] = ACTIONS(2653),
- [anon_sym_abstract] = ACTIONS(2653),
- [anon_sym_interface] = ACTIONS(2653),
- [anon_sym_enum] = ACTIONS(2653),
- [sym_html_comment] = ACTIONS(5),
- },
- [797] = {
- [ts_builtin_sym_end] = ACTIONS(2655),
- [sym_identifier] = ACTIONS(2657),
- [anon_sym_export] = ACTIONS(2657),
- [anon_sym_default] = ACTIONS(2657),
- [anon_sym_type] = ACTIONS(2657),
- [anon_sym_namespace] = ACTIONS(2657),
- [anon_sym_LBRACE] = ACTIONS(2655),
- [anon_sym_RBRACE] = ACTIONS(2655),
- [anon_sym_typeof] = ACTIONS(2657),
- [anon_sym_import] = ACTIONS(2657),
- [anon_sym_with] = ACTIONS(2657),
- [anon_sym_var] = ACTIONS(2657),
- [anon_sym_let] = ACTIONS(2657),
- [anon_sym_const] = ACTIONS(2657),
- [anon_sym_BANG] = ACTIONS(2655),
- [anon_sym_else] = ACTIONS(2657),
- [anon_sym_if] = ACTIONS(2657),
- [anon_sym_switch] = ACTIONS(2657),
- [anon_sym_for] = ACTIONS(2657),
- [anon_sym_LPAREN] = ACTIONS(2655),
- [anon_sym_await] = ACTIONS(2657),
- [anon_sym_while] = ACTIONS(2657),
- [anon_sym_do] = ACTIONS(2657),
- [anon_sym_try] = ACTIONS(2657),
- [anon_sym_break] = ACTIONS(2657),
- [anon_sym_continue] = ACTIONS(2657),
- [anon_sym_debugger] = ACTIONS(2657),
- [anon_sym_return] = ACTIONS(2657),
- [anon_sym_throw] = ACTIONS(2657),
- [anon_sym_SEMI] = ACTIONS(2655),
- [anon_sym_case] = ACTIONS(2657),
- [anon_sym_yield] = ACTIONS(2657),
- [anon_sym_LBRACK] = ACTIONS(2655),
- [sym_glimmer_opening_tag] = ACTIONS(2655),
- [anon_sym_DQUOTE] = ACTIONS(2655),
- [anon_sym_SQUOTE] = ACTIONS(2655),
- [anon_sym_class] = ACTIONS(2657),
- [anon_sym_async] = ACTIONS(2657),
- [anon_sym_function] = ACTIONS(2657),
- [anon_sym_new] = ACTIONS(2657),
- [anon_sym_using] = ACTIONS(2657),
- [anon_sym_PLUS] = ACTIONS(2657),
- [anon_sym_DASH] = ACTIONS(2657),
- [anon_sym_SLASH] = ACTIONS(2657),
- [anon_sym_LT] = ACTIONS(2657),
- [anon_sym_TILDE] = ACTIONS(2655),
- [anon_sym_void] = ACTIONS(2657),
- [anon_sym_delete] = ACTIONS(2657),
- [anon_sym_PLUS_PLUS] = ACTIONS(2655),
- [anon_sym_DASH_DASH] = ACTIONS(2655),
- [sym_comment] = ACTIONS(5),
- [anon_sym_BQUOTE] = ACTIONS(2655),
- [sym_number] = ACTIONS(2655),
- [sym_private_property_identifier] = ACTIONS(2655),
- [sym_this] = ACTIONS(2657),
- [sym_super] = ACTIONS(2657),
- [sym_true] = ACTIONS(2657),
- [sym_false] = ACTIONS(2657),
- [sym_null] = ACTIONS(2657),
- [sym_undefined] = ACTIONS(2657),
- [anon_sym_AT] = ACTIONS(2655),
- [anon_sym_static] = ACTIONS(2657),
- [anon_sym_readonly] = ACTIONS(2657),
- [anon_sym_get] = ACTIONS(2657),
- [anon_sym_set] = ACTIONS(2657),
- [anon_sym_declare] = ACTIONS(2657),
- [anon_sym_public] = ACTIONS(2657),
- [anon_sym_private] = ACTIONS(2657),
- [anon_sym_protected] = ACTIONS(2657),
- [anon_sym_override] = ACTIONS(2657),
- [anon_sym_module] = ACTIONS(2657),
- [anon_sym_any] = ACTIONS(2657),
- [anon_sym_number] = ACTIONS(2657),
- [anon_sym_boolean] = ACTIONS(2657),
- [anon_sym_string] = ACTIONS(2657),
- [anon_sym_symbol] = ACTIONS(2657),
- [anon_sym_object] = ACTIONS(2657),
- [anon_sym_abstract] = ACTIONS(2657),
- [anon_sym_interface] = ACTIONS(2657),
- [anon_sym_enum] = ACTIONS(2657),
- [sym_html_comment] = ACTIONS(5),
- },
- [798] = {
- [ts_builtin_sym_end] = ACTIONS(2655),
- [sym_identifier] = ACTIONS(2657),
- [anon_sym_export] = ACTIONS(2657),
- [anon_sym_default] = ACTIONS(2657),
- [anon_sym_type] = ACTIONS(2657),
- [anon_sym_namespace] = ACTIONS(2657),
- [anon_sym_LBRACE] = ACTIONS(2655),
- [anon_sym_RBRACE] = ACTIONS(2655),
- [anon_sym_typeof] = ACTIONS(2657),
- [anon_sym_import] = ACTIONS(2657),
- [anon_sym_with] = ACTIONS(2657),
- [anon_sym_var] = ACTIONS(2657),
- [anon_sym_let] = ACTIONS(2657),
- [anon_sym_const] = ACTIONS(2657),
- [anon_sym_BANG] = ACTIONS(2655),
- [anon_sym_else] = ACTIONS(2657),
- [anon_sym_if] = ACTIONS(2657),
- [anon_sym_switch] = ACTIONS(2657),
- [anon_sym_for] = ACTIONS(2657),
- [anon_sym_LPAREN] = ACTIONS(2655),
- [anon_sym_await] = ACTIONS(2657),
- [anon_sym_while] = ACTIONS(2657),
- [anon_sym_do] = ACTIONS(2657),
- [anon_sym_try] = ACTIONS(2657),
- [anon_sym_break] = ACTIONS(2657),
- [anon_sym_continue] = ACTIONS(2657),
- [anon_sym_debugger] = ACTIONS(2657),
- [anon_sym_return] = ACTIONS(2657),
- [anon_sym_throw] = ACTIONS(2657),
- [anon_sym_SEMI] = ACTIONS(2655),
- [anon_sym_case] = ACTIONS(2657),
- [anon_sym_yield] = ACTIONS(2657),
- [anon_sym_LBRACK] = ACTIONS(2655),
- [sym_glimmer_opening_tag] = ACTIONS(2655),
- [anon_sym_DQUOTE] = ACTIONS(2655),
- [anon_sym_SQUOTE] = ACTIONS(2655),
- [anon_sym_class] = ACTIONS(2657),
- [anon_sym_async] = ACTIONS(2657),
- [anon_sym_function] = ACTIONS(2657),
- [anon_sym_new] = ACTIONS(2657),
- [anon_sym_using] = ACTIONS(2657),
- [anon_sym_PLUS] = ACTIONS(2657),
- [anon_sym_DASH] = ACTIONS(2657),
- [anon_sym_SLASH] = ACTIONS(2657),
- [anon_sym_LT] = ACTIONS(2657),
- [anon_sym_TILDE] = ACTIONS(2655),
- [anon_sym_void] = ACTIONS(2657),
- [anon_sym_delete] = ACTIONS(2657),
- [anon_sym_PLUS_PLUS] = ACTIONS(2655),
- [anon_sym_DASH_DASH] = ACTIONS(2655),
- [sym_comment] = ACTIONS(5),
- [anon_sym_BQUOTE] = ACTIONS(2655),
- [sym_number] = ACTIONS(2655),
- [sym_private_property_identifier] = ACTIONS(2655),
- [sym_this] = ACTIONS(2657),
- [sym_super] = ACTIONS(2657),
- [sym_true] = ACTIONS(2657),
- [sym_false] = ACTIONS(2657),
- [sym_null] = ACTIONS(2657),
- [sym_undefined] = ACTIONS(2657),
- [anon_sym_AT] = ACTIONS(2655),
- [anon_sym_static] = ACTIONS(2657),
- [anon_sym_readonly] = ACTIONS(2657),
- [anon_sym_get] = ACTIONS(2657),
- [anon_sym_set] = ACTIONS(2657),
- [anon_sym_declare] = ACTIONS(2657),
- [anon_sym_public] = ACTIONS(2657),
- [anon_sym_private] = ACTIONS(2657),
- [anon_sym_protected] = ACTIONS(2657),
- [anon_sym_override] = ACTIONS(2657),
- [anon_sym_module] = ACTIONS(2657),
- [anon_sym_any] = ACTIONS(2657),
- [anon_sym_number] = ACTIONS(2657),
- [anon_sym_boolean] = ACTIONS(2657),
- [anon_sym_string] = ACTIONS(2657),
- [anon_sym_symbol] = ACTIONS(2657),
- [anon_sym_object] = ACTIONS(2657),
- [anon_sym_abstract] = ACTIONS(2657),
- [anon_sym_interface] = ACTIONS(2657),
- [anon_sym_enum] = ACTIONS(2657),
- [sym_html_comment] = ACTIONS(5),
- },
- [799] = {
- [ts_builtin_sym_end] = ACTIONS(2659),
- [sym_identifier] = ACTIONS(2661),
- [anon_sym_export] = ACTIONS(2661),
- [anon_sym_default] = ACTIONS(2661),
- [anon_sym_type] = ACTIONS(2661),
- [anon_sym_namespace] = ACTIONS(2661),
- [anon_sym_LBRACE] = ACTIONS(2659),
- [anon_sym_RBRACE] = ACTIONS(2659),
- [anon_sym_typeof] = ACTIONS(2661),
- [anon_sym_import] = ACTIONS(2661),
- [anon_sym_with] = ACTIONS(2661),
- [anon_sym_var] = ACTIONS(2661),
- [anon_sym_let] = ACTIONS(2661),
- [anon_sym_const] = ACTIONS(2661),
- [anon_sym_BANG] = ACTIONS(2659),
- [anon_sym_else] = ACTIONS(2661),
- [anon_sym_if] = ACTIONS(2661),
- [anon_sym_switch] = ACTIONS(2661),
- [anon_sym_for] = ACTIONS(2661),
- [anon_sym_LPAREN] = ACTIONS(2659),
- [anon_sym_await] = ACTIONS(2661),
- [anon_sym_while] = ACTIONS(2661),
- [anon_sym_do] = ACTIONS(2661),
- [anon_sym_try] = ACTIONS(2661),
- [anon_sym_break] = ACTIONS(2661),
- [anon_sym_continue] = ACTIONS(2661),
- [anon_sym_debugger] = ACTIONS(2661),
- [anon_sym_return] = ACTIONS(2661),
- [anon_sym_throw] = ACTIONS(2661),
- [anon_sym_SEMI] = ACTIONS(2659),
- [anon_sym_case] = ACTIONS(2661),
- [anon_sym_yield] = ACTIONS(2661),
- [anon_sym_LBRACK] = ACTIONS(2659),
- [sym_glimmer_opening_tag] = ACTIONS(2659),
- [anon_sym_DQUOTE] = ACTIONS(2659),
- [anon_sym_SQUOTE] = ACTIONS(2659),
- [anon_sym_class] = ACTIONS(2661),
- [anon_sym_async] = ACTIONS(2661),
- [anon_sym_function] = ACTIONS(2661),
- [anon_sym_new] = ACTIONS(2661),
- [anon_sym_using] = ACTIONS(2661),
- [anon_sym_PLUS] = ACTIONS(2661),
- [anon_sym_DASH] = ACTIONS(2661),
- [anon_sym_SLASH] = ACTIONS(2661),
- [anon_sym_LT] = ACTIONS(2661),
- [anon_sym_TILDE] = ACTIONS(2659),
- [anon_sym_void] = ACTIONS(2661),
- [anon_sym_delete] = ACTIONS(2661),
- [anon_sym_PLUS_PLUS] = ACTIONS(2659),
- [anon_sym_DASH_DASH] = ACTIONS(2659),
- [sym_comment] = ACTIONS(5),
- [anon_sym_BQUOTE] = ACTIONS(2659),
- [sym_number] = ACTIONS(2659),
- [sym_private_property_identifier] = ACTIONS(2659),
- [sym_this] = ACTIONS(2661),
- [sym_super] = ACTIONS(2661),
- [sym_true] = ACTIONS(2661),
- [sym_false] = ACTIONS(2661),
- [sym_null] = ACTIONS(2661),
- [sym_undefined] = ACTIONS(2661),
- [anon_sym_AT] = ACTIONS(2659),
- [anon_sym_static] = ACTIONS(2661),
- [anon_sym_readonly] = ACTIONS(2661),
- [anon_sym_get] = ACTIONS(2661),
- [anon_sym_set] = ACTIONS(2661),
- [anon_sym_declare] = ACTIONS(2661),
- [anon_sym_public] = ACTIONS(2661),
- [anon_sym_private] = ACTIONS(2661),
- [anon_sym_protected] = ACTIONS(2661),
- [anon_sym_override] = ACTIONS(2661),
- [anon_sym_module] = ACTIONS(2661),
- [anon_sym_any] = ACTIONS(2661),
- [anon_sym_number] = ACTIONS(2661),
- [anon_sym_boolean] = ACTIONS(2661),
- [anon_sym_string] = ACTIONS(2661),
- [anon_sym_symbol] = ACTIONS(2661),
- [anon_sym_object] = ACTIONS(2661),
- [anon_sym_abstract] = ACTIONS(2661),
- [anon_sym_interface] = ACTIONS(2661),
- [anon_sym_enum] = ACTIONS(2661),
- [sym_html_comment] = ACTIONS(5),
- },
- [800] = {
- [ts_builtin_sym_end] = ACTIONS(2663),
- [sym_identifier] = ACTIONS(2665),
- [anon_sym_export] = ACTIONS(2665),
- [anon_sym_default] = ACTIONS(2665),
- [anon_sym_type] = ACTIONS(2665),
- [anon_sym_namespace] = ACTIONS(2665),
- [anon_sym_LBRACE] = ACTIONS(2663),
- [anon_sym_RBRACE] = ACTIONS(2663),
- [anon_sym_typeof] = ACTIONS(2665),
- [anon_sym_import] = ACTIONS(2665),
- [anon_sym_with] = ACTIONS(2665),
- [anon_sym_var] = ACTIONS(2665),
- [anon_sym_let] = ACTIONS(2665),
- [anon_sym_const] = ACTIONS(2665),
- [anon_sym_BANG] = ACTIONS(2663),
- [anon_sym_else] = ACTIONS(2665),
- [anon_sym_if] = ACTIONS(2665),
- [anon_sym_switch] = ACTIONS(2665),
- [anon_sym_for] = ACTIONS(2665),
- [anon_sym_LPAREN] = ACTIONS(2663),
- [anon_sym_await] = ACTIONS(2665),
- [anon_sym_while] = ACTIONS(2665),
- [anon_sym_do] = ACTIONS(2665),
- [anon_sym_try] = ACTIONS(2665),
- [anon_sym_break] = ACTIONS(2665),
- [anon_sym_continue] = ACTIONS(2665),
- [anon_sym_debugger] = ACTIONS(2665),
- [anon_sym_return] = ACTIONS(2665),
- [anon_sym_throw] = ACTIONS(2665),
- [anon_sym_SEMI] = ACTIONS(2663),
- [anon_sym_case] = ACTIONS(2665),
- [anon_sym_yield] = ACTIONS(2665),
- [anon_sym_LBRACK] = ACTIONS(2663),
- [sym_glimmer_opening_tag] = ACTIONS(2663),
- [anon_sym_DQUOTE] = ACTIONS(2663),
- [anon_sym_SQUOTE] = ACTIONS(2663),
- [anon_sym_class] = ACTIONS(2665),
- [anon_sym_async] = ACTIONS(2665),
- [anon_sym_function] = ACTIONS(2665),
- [anon_sym_new] = ACTIONS(2665),
- [anon_sym_using] = ACTIONS(2665),
- [anon_sym_PLUS] = ACTIONS(2665),
- [anon_sym_DASH] = ACTIONS(2665),
- [anon_sym_SLASH] = ACTIONS(2665),
- [anon_sym_LT] = ACTIONS(2665),
- [anon_sym_TILDE] = ACTIONS(2663),
- [anon_sym_void] = ACTIONS(2665),
- [anon_sym_delete] = ACTIONS(2665),
- [anon_sym_PLUS_PLUS] = ACTIONS(2663),
- [anon_sym_DASH_DASH] = ACTIONS(2663),
- [sym_comment] = ACTIONS(5),
- [anon_sym_BQUOTE] = ACTIONS(2663),
- [sym_number] = ACTIONS(2663),
- [sym_private_property_identifier] = ACTIONS(2663),
- [sym_this] = ACTIONS(2665),
- [sym_super] = ACTIONS(2665),
- [sym_true] = ACTIONS(2665),
- [sym_false] = ACTIONS(2665),
- [sym_null] = ACTIONS(2665),
- [sym_undefined] = ACTIONS(2665),
- [anon_sym_AT] = ACTIONS(2663),
- [anon_sym_static] = ACTIONS(2665),
- [anon_sym_readonly] = ACTIONS(2665),
- [anon_sym_get] = ACTIONS(2665),
- [anon_sym_set] = ACTIONS(2665),
- [anon_sym_declare] = ACTIONS(2665),
- [anon_sym_public] = ACTIONS(2665),
- [anon_sym_private] = ACTIONS(2665),
- [anon_sym_protected] = ACTIONS(2665),
- [anon_sym_override] = ACTIONS(2665),
- [anon_sym_module] = ACTIONS(2665),
- [anon_sym_any] = ACTIONS(2665),
- [anon_sym_number] = ACTIONS(2665),
- [anon_sym_boolean] = ACTIONS(2665),
- [anon_sym_string] = ACTIONS(2665),
- [anon_sym_symbol] = ACTIONS(2665),
- [anon_sym_object] = ACTIONS(2665),
- [anon_sym_abstract] = ACTIONS(2665),
- [anon_sym_interface] = ACTIONS(2665),
- [anon_sym_enum] = ACTIONS(2665),
- [sym_html_comment] = ACTIONS(5),
- },
- [801] = {
- [ts_builtin_sym_end] = ACTIONS(2667),
- [sym_identifier] = ACTIONS(2669),
- [anon_sym_export] = ACTIONS(2669),
- [anon_sym_default] = ACTIONS(2669),
- [anon_sym_type] = ACTIONS(2669),
- [anon_sym_namespace] = ACTIONS(2669),
- [anon_sym_LBRACE] = ACTIONS(2667),
- [anon_sym_RBRACE] = ACTIONS(2667),
- [anon_sym_typeof] = ACTIONS(2669),
- [anon_sym_import] = ACTIONS(2669),
- [anon_sym_with] = ACTIONS(2669),
- [anon_sym_var] = ACTIONS(2669),
- [anon_sym_let] = ACTIONS(2669),
- [anon_sym_const] = ACTIONS(2669),
- [anon_sym_BANG] = ACTIONS(2667),
- [anon_sym_else] = ACTIONS(2669),
- [anon_sym_if] = ACTIONS(2669),
- [anon_sym_switch] = ACTIONS(2669),
- [anon_sym_for] = ACTIONS(2669),
- [anon_sym_LPAREN] = ACTIONS(2667),
- [anon_sym_await] = ACTIONS(2669),
- [anon_sym_while] = ACTIONS(2669),
- [anon_sym_do] = ACTIONS(2669),
- [anon_sym_try] = ACTIONS(2669),
- [anon_sym_break] = ACTIONS(2669),
- [anon_sym_continue] = ACTIONS(2669),
- [anon_sym_debugger] = ACTIONS(2669),
- [anon_sym_return] = ACTIONS(2669),
- [anon_sym_throw] = ACTIONS(2669),
- [anon_sym_SEMI] = ACTIONS(2667),
- [anon_sym_case] = ACTIONS(2669),
- [anon_sym_yield] = ACTIONS(2669),
- [anon_sym_LBRACK] = ACTIONS(2667),
- [sym_glimmer_opening_tag] = ACTIONS(2667),
- [anon_sym_DQUOTE] = ACTIONS(2667),
- [anon_sym_SQUOTE] = ACTIONS(2667),
- [anon_sym_class] = ACTIONS(2669),
- [anon_sym_async] = ACTIONS(2669),
- [anon_sym_function] = ACTIONS(2669),
- [anon_sym_new] = ACTIONS(2669),
- [anon_sym_using] = ACTIONS(2669),
- [anon_sym_PLUS] = ACTIONS(2669),
- [anon_sym_DASH] = ACTIONS(2669),
- [anon_sym_SLASH] = ACTIONS(2669),
- [anon_sym_LT] = ACTIONS(2669),
- [anon_sym_TILDE] = ACTIONS(2667),
- [anon_sym_void] = ACTIONS(2669),
- [anon_sym_delete] = ACTIONS(2669),
- [anon_sym_PLUS_PLUS] = ACTIONS(2667),
- [anon_sym_DASH_DASH] = ACTIONS(2667),
- [sym_comment] = ACTIONS(5),
- [anon_sym_BQUOTE] = ACTIONS(2667),
- [sym_number] = ACTIONS(2667),
- [sym_private_property_identifier] = ACTIONS(2667),
- [sym_this] = ACTIONS(2669),
- [sym_super] = ACTIONS(2669),
- [sym_true] = ACTIONS(2669),
- [sym_false] = ACTIONS(2669),
- [sym_null] = ACTIONS(2669),
- [sym_undefined] = ACTIONS(2669),
- [anon_sym_AT] = ACTIONS(2667),
- [anon_sym_static] = ACTIONS(2669),
- [anon_sym_readonly] = ACTIONS(2669),
- [anon_sym_get] = ACTIONS(2669),
- [anon_sym_set] = ACTIONS(2669),
- [anon_sym_declare] = ACTIONS(2669),
- [anon_sym_public] = ACTIONS(2669),
- [anon_sym_private] = ACTIONS(2669),
- [anon_sym_protected] = ACTIONS(2669),
- [anon_sym_override] = ACTIONS(2669),
- [anon_sym_module] = ACTIONS(2669),
- [anon_sym_any] = ACTIONS(2669),
- [anon_sym_number] = ACTIONS(2669),
- [anon_sym_boolean] = ACTIONS(2669),
- [anon_sym_string] = ACTIONS(2669),
- [anon_sym_symbol] = ACTIONS(2669),
- [anon_sym_object] = ACTIONS(2669),
- [anon_sym_abstract] = ACTIONS(2669),
- [anon_sym_interface] = ACTIONS(2669),
- [anon_sym_enum] = ACTIONS(2669),
- [sym_html_comment] = ACTIONS(5),
- },
- [802] = {
- [ts_builtin_sym_end] = ACTIONS(2671),
- [sym_identifier] = ACTIONS(2673),
- [anon_sym_export] = ACTIONS(2673),
- [anon_sym_default] = ACTIONS(2673),
- [anon_sym_type] = ACTIONS(2673),
- [anon_sym_namespace] = ACTIONS(2673),
- [anon_sym_LBRACE] = ACTIONS(2671),
- [anon_sym_RBRACE] = ACTIONS(2671),
- [anon_sym_typeof] = ACTIONS(2673),
- [anon_sym_import] = ACTIONS(2673),
- [anon_sym_with] = ACTIONS(2673),
- [anon_sym_var] = ACTIONS(2673),
- [anon_sym_let] = ACTIONS(2673),
- [anon_sym_const] = ACTIONS(2673),
- [anon_sym_BANG] = ACTIONS(2671),
- [anon_sym_else] = ACTIONS(2673),
- [anon_sym_if] = ACTIONS(2673),
- [anon_sym_switch] = ACTIONS(2673),
- [anon_sym_for] = ACTIONS(2673),
- [anon_sym_LPAREN] = ACTIONS(2671),
- [anon_sym_await] = ACTIONS(2673),
- [anon_sym_while] = ACTIONS(2673),
- [anon_sym_do] = ACTIONS(2673),
- [anon_sym_try] = ACTIONS(2673),
- [anon_sym_break] = ACTIONS(2673),
- [anon_sym_continue] = ACTIONS(2673),
- [anon_sym_debugger] = ACTIONS(2673),
- [anon_sym_return] = ACTIONS(2673),
- [anon_sym_throw] = ACTIONS(2673),
- [anon_sym_SEMI] = ACTIONS(2671),
- [anon_sym_case] = ACTIONS(2673),
- [anon_sym_yield] = ACTIONS(2673),
- [anon_sym_LBRACK] = ACTIONS(2671),
- [sym_glimmer_opening_tag] = ACTIONS(2671),
- [anon_sym_DQUOTE] = ACTIONS(2671),
- [anon_sym_SQUOTE] = ACTIONS(2671),
- [anon_sym_class] = ACTIONS(2673),
- [anon_sym_async] = ACTIONS(2673),
- [anon_sym_function] = ACTIONS(2673),
- [anon_sym_new] = ACTIONS(2673),
- [anon_sym_using] = ACTIONS(2673),
- [anon_sym_PLUS] = ACTIONS(2673),
- [anon_sym_DASH] = ACTIONS(2673),
- [anon_sym_SLASH] = ACTIONS(2673),
- [anon_sym_LT] = ACTIONS(2673),
- [anon_sym_TILDE] = ACTIONS(2671),
- [anon_sym_void] = ACTIONS(2673),
- [anon_sym_delete] = ACTIONS(2673),
- [anon_sym_PLUS_PLUS] = ACTIONS(2671),
- [anon_sym_DASH_DASH] = ACTIONS(2671),
- [sym_comment] = ACTIONS(5),
- [anon_sym_BQUOTE] = ACTIONS(2671),
- [sym_number] = ACTIONS(2671),
- [sym_private_property_identifier] = ACTIONS(2671),
- [sym_this] = ACTIONS(2673),
- [sym_super] = ACTIONS(2673),
- [sym_true] = ACTIONS(2673),
- [sym_false] = ACTIONS(2673),
- [sym_null] = ACTIONS(2673),
- [sym_undefined] = ACTIONS(2673),
- [anon_sym_AT] = ACTIONS(2671),
- [anon_sym_static] = ACTIONS(2673),
- [anon_sym_readonly] = ACTIONS(2673),
- [anon_sym_get] = ACTIONS(2673),
- [anon_sym_set] = ACTIONS(2673),
- [anon_sym_declare] = ACTIONS(2673),
- [anon_sym_public] = ACTIONS(2673),
- [anon_sym_private] = ACTIONS(2673),
- [anon_sym_protected] = ACTIONS(2673),
- [anon_sym_override] = ACTIONS(2673),
- [anon_sym_module] = ACTIONS(2673),
- [anon_sym_any] = ACTIONS(2673),
- [anon_sym_number] = ACTIONS(2673),
- [anon_sym_boolean] = ACTIONS(2673),
- [anon_sym_string] = ACTIONS(2673),
- [anon_sym_symbol] = ACTIONS(2673),
- [anon_sym_object] = ACTIONS(2673),
- [anon_sym_abstract] = ACTIONS(2673),
- [anon_sym_interface] = ACTIONS(2673),
- [anon_sym_enum] = ACTIONS(2673),
- [sym_html_comment] = ACTIONS(5),
- },
- [803] = {
- [ts_builtin_sym_end] = ACTIONS(2671),
- [sym_identifier] = ACTIONS(2673),
- [anon_sym_export] = ACTIONS(2673),
- [anon_sym_default] = ACTIONS(2673),
- [anon_sym_type] = ACTIONS(2673),
- [anon_sym_namespace] = ACTIONS(2673),
- [anon_sym_LBRACE] = ACTIONS(2671),
- [anon_sym_RBRACE] = ACTIONS(2671),
- [anon_sym_typeof] = ACTIONS(2673),
- [anon_sym_import] = ACTIONS(2673),
- [anon_sym_with] = ACTIONS(2673),
- [anon_sym_var] = ACTIONS(2673),
- [anon_sym_let] = ACTIONS(2673),
- [anon_sym_const] = ACTIONS(2673),
- [anon_sym_BANG] = ACTIONS(2671),
- [anon_sym_else] = ACTIONS(2673),
- [anon_sym_if] = ACTIONS(2673),
- [anon_sym_switch] = ACTIONS(2673),
- [anon_sym_for] = ACTIONS(2673),
- [anon_sym_LPAREN] = ACTIONS(2671),
- [anon_sym_await] = ACTIONS(2673),
- [anon_sym_while] = ACTIONS(2673),
- [anon_sym_do] = ACTIONS(2673),
- [anon_sym_try] = ACTIONS(2673),
- [anon_sym_break] = ACTIONS(2673),
- [anon_sym_continue] = ACTIONS(2673),
- [anon_sym_debugger] = ACTIONS(2673),
- [anon_sym_return] = ACTIONS(2673),
- [anon_sym_throw] = ACTIONS(2673),
- [anon_sym_SEMI] = ACTIONS(2671),
- [anon_sym_case] = ACTIONS(2673),
- [anon_sym_yield] = ACTIONS(2673),
- [anon_sym_LBRACK] = ACTIONS(2671),
- [sym_glimmer_opening_tag] = ACTIONS(2671),
- [anon_sym_DQUOTE] = ACTIONS(2671),
- [anon_sym_SQUOTE] = ACTIONS(2671),
- [anon_sym_class] = ACTIONS(2673),
- [anon_sym_async] = ACTIONS(2673),
- [anon_sym_function] = ACTIONS(2673),
- [anon_sym_new] = ACTIONS(2673),
- [anon_sym_using] = ACTIONS(2673),
- [anon_sym_PLUS] = ACTIONS(2673),
- [anon_sym_DASH] = ACTIONS(2673),
- [anon_sym_SLASH] = ACTIONS(2673),
- [anon_sym_LT] = ACTIONS(2673),
- [anon_sym_TILDE] = ACTIONS(2671),
- [anon_sym_void] = ACTIONS(2673),
- [anon_sym_delete] = ACTIONS(2673),
- [anon_sym_PLUS_PLUS] = ACTIONS(2671),
- [anon_sym_DASH_DASH] = ACTIONS(2671),
- [sym_comment] = ACTIONS(5),
- [anon_sym_BQUOTE] = ACTIONS(2671),
- [sym_number] = ACTIONS(2671),
- [sym_private_property_identifier] = ACTIONS(2671),
- [sym_this] = ACTIONS(2673),
- [sym_super] = ACTIONS(2673),
- [sym_true] = ACTIONS(2673),
- [sym_false] = ACTIONS(2673),
- [sym_null] = ACTIONS(2673),
- [sym_undefined] = ACTIONS(2673),
- [anon_sym_AT] = ACTIONS(2671),
- [anon_sym_static] = ACTIONS(2673),
- [anon_sym_readonly] = ACTIONS(2673),
- [anon_sym_get] = ACTIONS(2673),
- [anon_sym_set] = ACTIONS(2673),
- [anon_sym_declare] = ACTIONS(2673),
- [anon_sym_public] = ACTIONS(2673),
- [anon_sym_private] = ACTIONS(2673),
- [anon_sym_protected] = ACTIONS(2673),
- [anon_sym_override] = ACTIONS(2673),
- [anon_sym_module] = ACTIONS(2673),
- [anon_sym_any] = ACTIONS(2673),
- [anon_sym_number] = ACTIONS(2673),
- [anon_sym_boolean] = ACTIONS(2673),
- [anon_sym_string] = ACTIONS(2673),
- [anon_sym_symbol] = ACTIONS(2673),
- [anon_sym_object] = ACTIONS(2673),
- [anon_sym_abstract] = ACTIONS(2673),
- [anon_sym_interface] = ACTIONS(2673),
- [anon_sym_enum] = ACTIONS(2673),
- [sym_html_comment] = ACTIONS(5),
- },
- [804] = {
- [ts_builtin_sym_end] = ACTIONS(2675),
- [sym_identifier] = ACTIONS(2677),
- [anon_sym_export] = ACTIONS(2677),
- [anon_sym_default] = ACTIONS(2677),
- [anon_sym_type] = ACTIONS(2677),
- [anon_sym_namespace] = ACTIONS(2677),
- [anon_sym_LBRACE] = ACTIONS(2675),
- [anon_sym_RBRACE] = ACTIONS(2675),
- [anon_sym_typeof] = ACTIONS(2677),
- [anon_sym_import] = ACTIONS(2677),
- [anon_sym_with] = ACTIONS(2677),
- [anon_sym_var] = ACTIONS(2677),
- [anon_sym_let] = ACTIONS(2677),
- [anon_sym_const] = ACTIONS(2677),
- [anon_sym_BANG] = ACTIONS(2675),
- [anon_sym_else] = ACTIONS(2677),
- [anon_sym_if] = ACTIONS(2677),
- [anon_sym_switch] = ACTIONS(2677),
- [anon_sym_for] = ACTIONS(2677),
- [anon_sym_LPAREN] = ACTIONS(2675),
- [anon_sym_await] = ACTIONS(2677),
- [anon_sym_while] = ACTIONS(2677),
- [anon_sym_do] = ACTIONS(2677),
- [anon_sym_try] = ACTIONS(2677),
- [anon_sym_break] = ACTIONS(2677),
- [anon_sym_continue] = ACTIONS(2677),
- [anon_sym_debugger] = ACTIONS(2677),
- [anon_sym_return] = ACTIONS(2677),
- [anon_sym_throw] = ACTIONS(2677),
- [anon_sym_SEMI] = ACTIONS(2675),
- [anon_sym_case] = ACTIONS(2677),
- [anon_sym_yield] = ACTIONS(2677),
- [anon_sym_LBRACK] = ACTIONS(2675),
- [sym_glimmer_opening_tag] = ACTIONS(2675),
- [anon_sym_DQUOTE] = ACTIONS(2675),
- [anon_sym_SQUOTE] = ACTIONS(2675),
- [anon_sym_class] = ACTIONS(2677),
- [anon_sym_async] = ACTIONS(2677),
- [anon_sym_function] = ACTIONS(2677),
- [anon_sym_new] = ACTIONS(2677),
- [anon_sym_using] = ACTIONS(2677),
- [anon_sym_PLUS] = ACTIONS(2677),
- [anon_sym_DASH] = ACTIONS(2677),
- [anon_sym_SLASH] = ACTIONS(2677),
- [anon_sym_LT] = ACTIONS(2677),
- [anon_sym_TILDE] = ACTIONS(2675),
- [anon_sym_void] = ACTIONS(2677),
- [anon_sym_delete] = ACTIONS(2677),
- [anon_sym_PLUS_PLUS] = ACTIONS(2675),
- [anon_sym_DASH_DASH] = ACTIONS(2675),
- [sym_comment] = ACTIONS(5),
- [anon_sym_BQUOTE] = ACTIONS(2675),
- [sym_number] = ACTIONS(2675),
- [sym_private_property_identifier] = ACTIONS(2675),
- [sym_this] = ACTIONS(2677),
- [sym_super] = ACTIONS(2677),
- [sym_true] = ACTIONS(2677),
- [sym_false] = ACTIONS(2677),
- [sym_null] = ACTIONS(2677),
- [sym_undefined] = ACTIONS(2677),
- [anon_sym_AT] = ACTIONS(2675),
- [anon_sym_static] = ACTIONS(2677),
- [anon_sym_readonly] = ACTIONS(2677),
- [anon_sym_get] = ACTIONS(2677),
- [anon_sym_set] = ACTIONS(2677),
- [anon_sym_declare] = ACTIONS(2677),
- [anon_sym_public] = ACTIONS(2677),
- [anon_sym_private] = ACTIONS(2677),
- [anon_sym_protected] = ACTIONS(2677),
- [anon_sym_override] = ACTIONS(2677),
- [anon_sym_module] = ACTIONS(2677),
- [anon_sym_any] = ACTIONS(2677),
- [anon_sym_number] = ACTIONS(2677),
- [anon_sym_boolean] = ACTIONS(2677),
- [anon_sym_string] = ACTIONS(2677),
- [anon_sym_symbol] = ACTIONS(2677),
- [anon_sym_object] = ACTIONS(2677),
- [anon_sym_abstract] = ACTIONS(2677),
- [anon_sym_interface] = ACTIONS(2677),
- [anon_sym_enum] = ACTIONS(2677),
- [sym_html_comment] = ACTIONS(5),
- },
- [805] = {
- [ts_builtin_sym_end] = ACTIONS(2679),
- [sym_identifier] = ACTIONS(2681),
- [anon_sym_export] = ACTIONS(2681),
- [anon_sym_default] = ACTIONS(2681),
- [anon_sym_type] = ACTIONS(2681),
- [anon_sym_namespace] = ACTIONS(2681),
- [anon_sym_LBRACE] = ACTIONS(2679),
- [anon_sym_RBRACE] = ACTIONS(2679),
- [anon_sym_typeof] = ACTIONS(2681),
- [anon_sym_import] = ACTIONS(2681),
- [anon_sym_with] = ACTIONS(2681),
- [anon_sym_var] = ACTIONS(2681),
- [anon_sym_let] = ACTIONS(2681),
- [anon_sym_const] = ACTIONS(2681),
- [anon_sym_BANG] = ACTIONS(2679),
- [anon_sym_else] = ACTIONS(2681),
- [anon_sym_if] = ACTIONS(2681),
- [anon_sym_switch] = ACTIONS(2681),
- [anon_sym_for] = ACTIONS(2681),
- [anon_sym_LPAREN] = ACTIONS(2679),
- [anon_sym_await] = ACTIONS(2681),
- [anon_sym_while] = ACTIONS(2681),
- [anon_sym_do] = ACTIONS(2681),
- [anon_sym_try] = ACTIONS(2681),
- [anon_sym_break] = ACTIONS(2681),
- [anon_sym_continue] = ACTIONS(2681),
- [anon_sym_debugger] = ACTIONS(2681),
- [anon_sym_return] = ACTIONS(2681),
- [anon_sym_throw] = ACTIONS(2681),
- [anon_sym_SEMI] = ACTIONS(2679),
- [anon_sym_case] = ACTIONS(2681),
- [anon_sym_yield] = ACTIONS(2681),
- [anon_sym_LBRACK] = ACTIONS(2679),
- [sym_glimmer_opening_tag] = ACTIONS(2679),
- [anon_sym_DQUOTE] = ACTIONS(2679),
- [anon_sym_SQUOTE] = ACTIONS(2679),
- [anon_sym_class] = ACTIONS(2681),
- [anon_sym_async] = ACTIONS(2681),
- [anon_sym_function] = ACTIONS(2681),
- [anon_sym_new] = ACTIONS(2681),
- [anon_sym_using] = ACTIONS(2681),
- [anon_sym_PLUS] = ACTIONS(2681),
- [anon_sym_DASH] = ACTIONS(2681),
- [anon_sym_SLASH] = ACTIONS(2681),
- [anon_sym_LT] = ACTIONS(2681),
- [anon_sym_TILDE] = ACTIONS(2679),
- [anon_sym_void] = ACTIONS(2681),
- [anon_sym_delete] = ACTIONS(2681),
- [anon_sym_PLUS_PLUS] = ACTIONS(2679),
- [anon_sym_DASH_DASH] = ACTIONS(2679),
- [sym_comment] = ACTIONS(5),
- [anon_sym_BQUOTE] = ACTIONS(2679),
- [sym_number] = ACTIONS(2679),
- [sym_private_property_identifier] = ACTIONS(2679),
- [sym_this] = ACTIONS(2681),
- [sym_super] = ACTIONS(2681),
- [sym_true] = ACTIONS(2681),
- [sym_false] = ACTIONS(2681),
- [sym_null] = ACTIONS(2681),
- [sym_undefined] = ACTIONS(2681),
- [anon_sym_AT] = ACTIONS(2679),
- [anon_sym_static] = ACTIONS(2681),
- [anon_sym_readonly] = ACTIONS(2681),
- [anon_sym_get] = ACTIONS(2681),
- [anon_sym_set] = ACTIONS(2681),
- [anon_sym_declare] = ACTIONS(2681),
- [anon_sym_public] = ACTIONS(2681),
- [anon_sym_private] = ACTIONS(2681),
- [anon_sym_protected] = ACTIONS(2681),
- [anon_sym_override] = ACTIONS(2681),
- [anon_sym_module] = ACTIONS(2681),
- [anon_sym_any] = ACTIONS(2681),
- [anon_sym_number] = ACTIONS(2681),
- [anon_sym_boolean] = ACTIONS(2681),
- [anon_sym_string] = ACTIONS(2681),
- [anon_sym_symbol] = ACTIONS(2681),
- [anon_sym_object] = ACTIONS(2681),
- [anon_sym_abstract] = ACTIONS(2681),
- [anon_sym_interface] = ACTIONS(2681),
- [anon_sym_enum] = ACTIONS(2681),
- [sym_html_comment] = ACTIONS(5),
- },
- [806] = {
- [ts_builtin_sym_end] = ACTIONS(2683),
- [sym_identifier] = ACTIONS(2685),
- [anon_sym_export] = ACTIONS(2685),
- [anon_sym_default] = ACTIONS(2685),
- [anon_sym_type] = ACTIONS(2685),
- [anon_sym_namespace] = ACTIONS(2685),
- [anon_sym_LBRACE] = ACTIONS(2683),
- [anon_sym_RBRACE] = ACTIONS(2683),
- [anon_sym_typeof] = ACTIONS(2685),
- [anon_sym_import] = ACTIONS(2685),
- [anon_sym_with] = ACTIONS(2685),
- [anon_sym_var] = ACTIONS(2685),
- [anon_sym_let] = ACTIONS(2685),
- [anon_sym_const] = ACTIONS(2685),
- [anon_sym_BANG] = ACTIONS(2683),
- [anon_sym_else] = ACTIONS(2685),
- [anon_sym_if] = ACTIONS(2685),
- [anon_sym_switch] = ACTIONS(2685),
- [anon_sym_for] = ACTIONS(2685),
- [anon_sym_LPAREN] = ACTIONS(2683),
- [anon_sym_await] = ACTIONS(2685),
- [anon_sym_while] = ACTIONS(2685),
- [anon_sym_do] = ACTIONS(2685),
- [anon_sym_try] = ACTIONS(2685),
- [anon_sym_break] = ACTIONS(2685),
- [anon_sym_continue] = ACTIONS(2685),
- [anon_sym_debugger] = ACTIONS(2685),
- [anon_sym_return] = ACTIONS(2685),
- [anon_sym_throw] = ACTIONS(2685),
- [anon_sym_SEMI] = ACTIONS(2683),
- [anon_sym_case] = ACTIONS(2685),
- [anon_sym_yield] = ACTIONS(2685),
- [anon_sym_LBRACK] = ACTIONS(2683),
- [sym_glimmer_opening_tag] = ACTIONS(2683),
- [anon_sym_DQUOTE] = ACTIONS(2683),
- [anon_sym_SQUOTE] = ACTIONS(2683),
- [anon_sym_class] = ACTIONS(2685),
- [anon_sym_async] = ACTIONS(2685),
- [anon_sym_function] = ACTIONS(2685),
- [anon_sym_new] = ACTIONS(2685),
- [anon_sym_using] = ACTIONS(2685),
- [anon_sym_PLUS] = ACTIONS(2685),
- [anon_sym_DASH] = ACTIONS(2685),
- [anon_sym_SLASH] = ACTIONS(2685),
- [anon_sym_LT] = ACTIONS(2685),
- [anon_sym_TILDE] = ACTIONS(2683),
- [anon_sym_void] = ACTIONS(2685),
- [anon_sym_delete] = ACTIONS(2685),
- [anon_sym_PLUS_PLUS] = ACTIONS(2683),
- [anon_sym_DASH_DASH] = ACTIONS(2683),
- [sym_comment] = ACTIONS(5),
- [anon_sym_BQUOTE] = ACTIONS(2683),
- [sym_number] = ACTIONS(2683),
- [sym_private_property_identifier] = ACTIONS(2683),
- [sym_this] = ACTIONS(2685),
- [sym_super] = ACTIONS(2685),
- [sym_true] = ACTIONS(2685),
- [sym_false] = ACTIONS(2685),
- [sym_null] = ACTIONS(2685),
- [sym_undefined] = ACTIONS(2685),
- [anon_sym_AT] = ACTIONS(2683),
- [anon_sym_static] = ACTIONS(2685),
- [anon_sym_readonly] = ACTIONS(2685),
- [anon_sym_get] = ACTIONS(2685),
- [anon_sym_set] = ACTIONS(2685),
- [anon_sym_declare] = ACTIONS(2685),
- [anon_sym_public] = ACTIONS(2685),
- [anon_sym_private] = ACTIONS(2685),
- [anon_sym_protected] = ACTIONS(2685),
- [anon_sym_override] = ACTIONS(2685),
- [anon_sym_module] = ACTIONS(2685),
- [anon_sym_any] = ACTIONS(2685),
- [anon_sym_number] = ACTIONS(2685),
- [anon_sym_boolean] = ACTIONS(2685),
- [anon_sym_string] = ACTIONS(2685),
- [anon_sym_symbol] = ACTIONS(2685),
- [anon_sym_object] = ACTIONS(2685),
- [anon_sym_abstract] = ACTIONS(2685),
- [anon_sym_interface] = ACTIONS(2685),
- [anon_sym_enum] = ACTIONS(2685),
- [sym_html_comment] = ACTIONS(5),
- },
- [807] = {
- [ts_builtin_sym_end] = ACTIONS(2687),
- [sym_identifier] = ACTIONS(2689),
- [anon_sym_export] = ACTIONS(2689),
- [anon_sym_default] = ACTIONS(2689),
- [anon_sym_type] = ACTIONS(2689),
- [anon_sym_namespace] = ACTIONS(2689),
- [anon_sym_LBRACE] = ACTIONS(2687),
- [anon_sym_RBRACE] = ACTIONS(2687),
- [anon_sym_typeof] = ACTIONS(2689),
- [anon_sym_import] = ACTIONS(2689),
- [anon_sym_with] = ACTIONS(2689),
- [anon_sym_var] = ACTIONS(2689),
- [anon_sym_let] = ACTIONS(2689),
- [anon_sym_const] = ACTIONS(2689),
- [anon_sym_BANG] = ACTIONS(2687),
- [anon_sym_else] = ACTIONS(2689),
- [anon_sym_if] = ACTIONS(2689),
- [anon_sym_switch] = ACTIONS(2689),
- [anon_sym_for] = ACTIONS(2689),
- [anon_sym_LPAREN] = ACTIONS(2687),
- [anon_sym_await] = ACTIONS(2689),
- [anon_sym_while] = ACTIONS(2689),
- [anon_sym_do] = ACTIONS(2689),
- [anon_sym_try] = ACTIONS(2689),
- [anon_sym_break] = ACTIONS(2689),
- [anon_sym_continue] = ACTIONS(2689),
- [anon_sym_debugger] = ACTIONS(2689),
- [anon_sym_return] = ACTIONS(2689),
- [anon_sym_throw] = ACTIONS(2689),
- [anon_sym_SEMI] = ACTIONS(2687),
- [anon_sym_case] = ACTIONS(2689),
- [anon_sym_yield] = ACTIONS(2689),
- [anon_sym_LBRACK] = ACTIONS(2687),
- [sym_glimmer_opening_tag] = ACTIONS(2687),
- [anon_sym_DQUOTE] = ACTIONS(2687),
- [anon_sym_SQUOTE] = ACTIONS(2687),
- [anon_sym_class] = ACTIONS(2689),
- [anon_sym_async] = ACTIONS(2689),
- [anon_sym_function] = ACTIONS(2689),
- [anon_sym_new] = ACTIONS(2689),
- [anon_sym_using] = ACTIONS(2689),
- [anon_sym_PLUS] = ACTIONS(2689),
- [anon_sym_DASH] = ACTIONS(2689),
- [anon_sym_SLASH] = ACTIONS(2689),
- [anon_sym_LT] = ACTIONS(2689),
- [anon_sym_TILDE] = ACTIONS(2687),
- [anon_sym_void] = ACTIONS(2689),
- [anon_sym_delete] = ACTIONS(2689),
- [anon_sym_PLUS_PLUS] = ACTIONS(2687),
- [anon_sym_DASH_DASH] = ACTIONS(2687),
- [sym_comment] = ACTIONS(5),
- [anon_sym_BQUOTE] = ACTIONS(2687),
- [sym_number] = ACTIONS(2687),
- [sym_private_property_identifier] = ACTIONS(2687),
- [sym_this] = ACTIONS(2689),
- [sym_super] = ACTIONS(2689),
- [sym_true] = ACTIONS(2689),
- [sym_false] = ACTIONS(2689),
- [sym_null] = ACTIONS(2689),
- [sym_undefined] = ACTIONS(2689),
- [anon_sym_AT] = ACTIONS(2687),
- [anon_sym_static] = ACTIONS(2689),
- [anon_sym_readonly] = ACTIONS(2689),
- [anon_sym_get] = ACTIONS(2689),
- [anon_sym_set] = ACTIONS(2689),
- [anon_sym_declare] = ACTIONS(2689),
- [anon_sym_public] = ACTIONS(2689),
- [anon_sym_private] = ACTIONS(2689),
- [anon_sym_protected] = ACTIONS(2689),
- [anon_sym_override] = ACTIONS(2689),
- [anon_sym_module] = ACTIONS(2689),
- [anon_sym_any] = ACTIONS(2689),
- [anon_sym_number] = ACTIONS(2689),
- [anon_sym_boolean] = ACTIONS(2689),
- [anon_sym_string] = ACTIONS(2689),
- [anon_sym_symbol] = ACTIONS(2689),
- [anon_sym_object] = ACTIONS(2689),
- [anon_sym_abstract] = ACTIONS(2689),
- [anon_sym_interface] = ACTIONS(2689),
- [anon_sym_enum] = ACTIONS(2689),
- [sym_html_comment] = ACTIONS(5),
- },
- [808] = {
- [ts_builtin_sym_end] = ACTIONS(2487),
- [sym_identifier] = ACTIONS(2489),
- [anon_sym_export] = ACTIONS(2489),
- [anon_sym_default] = ACTIONS(2489),
- [anon_sym_type] = ACTIONS(2489),
- [anon_sym_namespace] = ACTIONS(2489),
- [anon_sym_LBRACE] = ACTIONS(2487),
- [anon_sym_RBRACE] = ACTIONS(2487),
- [anon_sym_typeof] = ACTIONS(2489),
- [anon_sym_import] = ACTIONS(2489),
- [anon_sym_with] = ACTIONS(2489),
- [anon_sym_var] = ACTIONS(2489),
- [anon_sym_let] = ACTIONS(2489),
- [anon_sym_const] = ACTIONS(2489),
- [anon_sym_BANG] = ACTIONS(2487),
- [anon_sym_else] = ACTIONS(2489),
- [anon_sym_if] = ACTIONS(2489),
- [anon_sym_switch] = ACTIONS(2489),
- [anon_sym_for] = ACTIONS(2489),
- [anon_sym_LPAREN] = ACTIONS(2487),
- [anon_sym_await] = ACTIONS(2489),
- [anon_sym_while] = ACTIONS(2489),
- [anon_sym_do] = ACTIONS(2489),
- [anon_sym_try] = ACTIONS(2489),
- [anon_sym_break] = ACTIONS(2489),
- [anon_sym_continue] = ACTIONS(2489),
- [anon_sym_debugger] = ACTIONS(2489),
- [anon_sym_return] = ACTIONS(2489),
- [anon_sym_throw] = ACTIONS(2489),
- [anon_sym_SEMI] = ACTIONS(2487),
- [anon_sym_case] = ACTIONS(2489),
- [anon_sym_yield] = ACTIONS(2489),
- [anon_sym_LBRACK] = ACTIONS(2487),
- [sym_glimmer_opening_tag] = ACTIONS(2487),
- [anon_sym_DQUOTE] = ACTIONS(2487),
- [anon_sym_SQUOTE] = ACTIONS(2487),
- [anon_sym_class] = ACTIONS(2489),
- [anon_sym_async] = ACTIONS(2489),
- [anon_sym_function] = ACTIONS(2489),
- [anon_sym_new] = ACTIONS(2489),
- [anon_sym_using] = ACTIONS(2489),
- [anon_sym_PLUS] = ACTIONS(2489),
- [anon_sym_DASH] = ACTIONS(2489),
- [anon_sym_SLASH] = ACTIONS(2489),
- [anon_sym_LT] = ACTIONS(2489),
- [anon_sym_TILDE] = ACTIONS(2487),
- [anon_sym_void] = ACTIONS(2489),
- [anon_sym_delete] = ACTIONS(2489),
- [anon_sym_PLUS_PLUS] = ACTIONS(2487),
- [anon_sym_DASH_DASH] = ACTIONS(2487),
- [sym_comment] = ACTIONS(5),
- [anon_sym_BQUOTE] = ACTIONS(2487),
- [sym_number] = ACTIONS(2487),
- [sym_private_property_identifier] = ACTIONS(2487),
- [sym_this] = ACTIONS(2489),
- [sym_super] = ACTIONS(2489),
- [sym_true] = ACTIONS(2489),
- [sym_false] = ACTIONS(2489),
- [sym_null] = ACTIONS(2489),
- [sym_undefined] = ACTIONS(2489),
- [anon_sym_AT] = ACTIONS(2487),
- [anon_sym_static] = ACTIONS(2489),
- [anon_sym_readonly] = ACTIONS(2489),
- [anon_sym_get] = ACTIONS(2489),
- [anon_sym_set] = ACTIONS(2489),
- [anon_sym_declare] = ACTIONS(2489),
- [anon_sym_public] = ACTIONS(2489),
- [anon_sym_private] = ACTIONS(2489),
- [anon_sym_protected] = ACTIONS(2489),
- [anon_sym_override] = ACTIONS(2489),
- [anon_sym_module] = ACTIONS(2489),
- [anon_sym_any] = ACTIONS(2489),
- [anon_sym_number] = ACTIONS(2489),
- [anon_sym_boolean] = ACTIONS(2489),
- [anon_sym_string] = ACTIONS(2489),
- [anon_sym_symbol] = ACTIONS(2489),
- [anon_sym_object] = ACTIONS(2489),
- [anon_sym_abstract] = ACTIONS(2489),
- [anon_sym_interface] = ACTIONS(2489),
- [anon_sym_enum] = ACTIONS(2489),
- [sym_html_comment] = ACTIONS(5),
- },
- [809] = {
- [ts_builtin_sym_end] = ACTIONS(2691),
- [sym_identifier] = ACTIONS(2693),
- [anon_sym_export] = ACTIONS(2693),
- [anon_sym_default] = ACTIONS(2693),
- [anon_sym_type] = ACTIONS(2693),
- [anon_sym_namespace] = ACTIONS(2693),
- [anon_sym_LBRACE] = ACTIONS(2691),
- [anon_sym_RBRACE] = ACTIONS(2691),
- [anon_sym_typeof] = ACTIONS(2693),
- [anon_sym_import] = ACTIONS(2693),
- [anon_sym_with] = ACTIONS(2693),
- [anon_sym_var] = ACTIONS(2693),
- [anon_sym_let] = ACTIONS(2693),
- [anon_sym_const] = ACTIONS(2693),
- [anon_sym_BANG] = ACTIONS(2691),
- [anon_sym_else] = ACTIONS(2693),
- [anon_sym_if] = ACTIONS(2693),
- [anon_sym_switch] = ACTIONS(2693),
- [anon_sym_for] = ACTIONS(2693),
- [anon_sym_LPAREN] = ACTIONS(2691),
- [anon_sym_await] = ACTIONS(2693),
- [anon_sym_while] = ACTIONS(2693),
- [anon_sym_do] = ACTIONS(2693),
- [anon_sym_try] = ACTIONS(2693),
- [anon_sym_break] = ACTIONS(2693),
- [anon_sym_continue] = ACTIONS(2693),
- [anon_sym_debugger] = ACTIONS(2693),
- [anon_sym_return] = ACTIONS(2693),
- [anon_sym_throw] = ACTIONS(2693),
- [anon_sym_SEMI] = ACTIONS(2691),
- [anon_sym_case] = ACTIONS(2693),
- [anon_sym_yield] = ACTIONS(2693),
- [anon_sym_LBRACK] = ACTIONS(2691),
- [sym_glimmer_opening_tag] = ACTIONS(2691),
- [anon_sym_DQUOTE] = ACTIONS(2691),
- [anon_sym_SQUOTE] = ACTIONS(2691),
- [anon_sym_class] = ACTIONS(2693),
- [anon_sym_async] = ACTIONS(2693),
- [anon_sym_function] = ACTIONS(2693),
- [anon_sym_new] = ACTIONS(2693),
- [anon_sym_using] = ACTIONS(2693),
- [anon_sym_PLUS] = ACTIONS(2693),
- [anon_sym_DASH] = ACTIONS(2693),
- [anon_sym_SLASH] = ACTIONS(2693),
- [anon_sym_LT] = ACTIONS(2693),
- [anon_sym_TILDE] = ACTIONS(2691),
- [anon_sym_void] = ACTIONS(2693),
- [anon_sym_delete] = ACTIONS(2693),
- [anon_sym_PLUS_PLUS] = ACTIONS(2691),
- [anon_sym_DASH_DASH] = ACTIONS(2691),
- [sym_comment] = ACTIONS(5),
- [anon_sym_BQUOTE] = ACTIONS(2691),
- [sym_number] = ACTIONS(2691),
- [sym_private_property_identifier] = ACTIONS(2691),
- [sym_this] = ACTIONS(2693),
- [sym_super] = ACTIONS(2693),
- [sym_true] = ACTIONS(2693),
- [sym_false] = ACTIONS(2693),
- [sym_null] = ACTIONS(2693),
- [sym_undefined] = ACTIONS(2693),
- [anon_sym_AT] = ACTIONS(2691),
- [anon_sym_static] = ACTIONS(2693),
- [anon_sym_readonly] = ACTIONS(2693),
- [anon_sym_get] = ACTIONS(2693),
- [anon_sym_set] = ACTIONS(2693),
- [anon_sym_declare] = ACTIONS(2693),
- [anon_sym_public] = ACTIONS(2693),
- [anon_sym_private] = ACTIONS(2693),
- [anon_sym_protected] = ACTIONS(2693),
- [anon_sym_override] = ACTIONS(2693),
- [anon_sym_module] = ACTIONS(2693),
- [anon_sym_any] = ACTIONS(2693),
- [anon_sym_number] = ACTIONS(2693),
- [anon_sym_boolean] = ACTIONS(2693),
- [anon_sym_string] = ACTIONS(2693),
- [anon_sym_symbol] = ACTIONS(2693),
- [anon_sym_object] = ACTIONS(2693),
- [anon_sym_abstract] = ACTIONS(2693),
- [anon_sym_interface] = ACTIONS(2693),
- [anon_sym_enum] = ACTIONS(2693),
- [sym_html_comment] = ACTIONS(5),
- },
- [810] = {
- [ts_builtin_sym_end] = ACTIONS(2695),
- [sym_identifier] = ACTIONS(2697),
- [anon_sym_export] = ACTIONS(2697),
- [anon_sym_default] = ACTIONS(2697),
- [anon_sym_type] = ACTIONS(2697),
- [anon_sym_namespace] = ACTIONS(2697),
- [anon_sym_LBRACE] = ACTIONS(2695),
- [anon_sym_RBRACE] = ACTIONS(2695),
- [anon_sym_typeof] = ACTIONS(2697),
- [anon_sym_import] = ACTIONS(2697),
- [anon_sym_with] = ACTIONS(2697),
- [anon_sym_var] = ACTIONS(2697),
- [anon_sym_let] = ACTIONS(2697),
- [anon_sym_const] = ACTIONS(2697),
- [anon_sym_BANG] = ACTIONS(2695),
- [anon_sym_else] = ACTIONS(2697),
- [anon_sym_if] = ACTIONS(2697),
- [anon_sym_switch] = ACTIONS(2697),
- [anon_sym_for] = ACTIONS(2697),
- [anon_sym_LPAREN] = ACTIONS(2695),
- [anon_sym_await] = ACTIONS(2697),
- [anon_sym_while] = ACTIONS(2697),
- [anon_sym_do] = ACTIONS(2697),
- [anon_sym_try] = ACTIONS(2697),
- [anon_sym_break] = ACTIONS(2697),
- [anon_sym_continue] = ACTIONS(2697),
- [anon_sym_debugger] = ACTIONS(2697),
- [anon_sym_return] = ACTIONS(2697),
- [anon_sym_throw] = ACTIONS(2697),
- [anon_sym_SEMI] = ACTIONS(2695),
- [anon_sym_case] = ACTIONS(2697),
- [anon_sym_yield] = ACTIONS(2697),
- [anon_sym_LBRACK] = ACTIONS(2695),
- [sym_glimmer_opening_tag] = ACTIONS(2695),
- [anon_sym_DQUOTE] = ACTIONS(2695),
- [anon_sym_SQUOTE] = ACTIONS(2695),
- [anon_sym_class] = ACTIONS(2697),
- [anon_sym_async] = ACTIONS(2697),
- [anon_sym_function] = ACTIONS(2697),
- [anon_sym_new] = ACTIONS(2697),
- [anon_sym_using] = ACTIONS(2697),
- [anon_sym_PLUS] = ACTIONS(2697),
- [anon_sym_DASH] = ACTIONS(2697),
- [anon_sym_SLASH] = ACTIONS(2697),
- [anon_sym_LT] = ACTIONS(2697),
- [anon_sym_TILDE] = ACTIONS(2695),
- [anon_sym_void] = ACTIONS(2697),
- [anon_sym_delete] = ACTIONS(2697),
- [anon_sym_PLUS_PLUS] = ACTIONS(2695),
- [anon_sym_DASH_DASH] = ACTIONS(2695),
- [sym_comment] = ACTIONS(5),
- [anon_sym_BQUOTE] = ACTIONS(2695),
- [sym_number] = ACTIONS(2695),
- [sym_private_property_identifier] = ACTIONS(2695),
- [sym_this] = ACTIONS(2697),
- [sym_super] = ACTIONS(2697),
- [sym_true] = ACTIONS(2697),
- [sym_false] = ACTIONS(2697),
- [sym_null] = ACTIONS(2697),
- [sym_undefined] = ACTIONS(2697),
- [anon_sym_AT] = ACTIONS(2695),
- [anon_sym_static] = ACTIONS(2697),
- [anon_sym_readonly] = ACTIONS(2697),
- [anon_sym_get] = ACTIONS(2697),
- [anon_sym_set] = ACTIONS(2697),
- [anon_sym_declare] = ACTIONS(2697),
- [anon_sym_public] = ACTIONS(2697),
- [anon_sym_private] = ACTIONS(2697),
- [anon_sym_protected] = ACTIONS(2697),
- [anon_sym_override] = ACTIONS(2697),
- [anon_sym_module] = ACTIONS(2697),
- [anon_sym_any] = ACTIONS(2697),
- [anon_sym_number] = ACTIONS(2697),
- [anon_sym_boolean] = ACTIONS(2697),
- [anon_sym_string] = ACTIONS(2697),
- [anon_sym_symbol] = ACTIONS(2697),
- [anon_sym_object] = ACTIONS(2697),
- [anon_sym_abstract] = ACTIONS(2697),
- [anon_sym_interface] = ACTIONS(2697),
- [anon_sym_enum] = ACTIONS(2697),
- [sym_html_comment] = ACTIONS(5),
- },
- [811] = {
- [ts_builtin_sym_end] = ACTIONS(2695),
- [sym_identifier] = ACTIONS(2697),
- [anon_sym_export] = ACTIONS(2697),
- [anon_sym_default] = ACTIONS(2697),
- [anon_sym_type] = ACTIONS(2697),
- [anon_sym_namespace] = ACTIONS(2697),
- [anon_sym_LBRACE] = ACTIONS(2695),
- [anon_sym_RBRACE] = ACTIONS(2695),
- [anon_sym_typeof] = ACTIONS(2697),
- [anon_sym_import] = ACTIONS(2697),
- [anon_sym_with] = ACTIONS(2697),
- [anon_sym_var] = ACTIONS(2697),
- [anon_sym_let] = ACTIONS(2697),
- [anon_sym_const] = ACTIONS(2697),
- [anon_sym_BANG] = ACTIONS(2695),
- [anon_sym_else] = ACTIONS(2697),
- [anon_sym_if] = ACTIONS(2697),
- [anon_sym_switch] = ACTIONS(2697),
- [anon_sym_for] = ACTIONS(2697),
- [anon_sym_LPAREN] = ACTIONS(2695),
- [anon_sym_await] = ACTIONS(2697),
- [anon_sym_while] = ACTIONS(2697),
- [anon_sym_do] = ACTIONS(2697),
- [anon_sym_try] = ACTIONS(2697),
- [anon_sym_break] = ACTIONS(2697),
- [anon_sym_continue] = ACTIONS(2697),
- [anon_sym_debugger] = ACTIONS(2697),
- [anon_sym_return] = ACTIONS(2697),
- [anon_sym_throw] = ACTIONS(2697),
- [anon_sym_SEMI] = ACTIONS(2695),
- [anon_sym_case] = ACTIONS(2697),
- [anon_sym_yield] = ACTIONS(2697),
- [anon_sym_LBRACK] = ACTIONS(2695),
- [sym_glimmer_opening_tag] = ACTIONS(2695),
- [anon_sym_DQUOTE] = ACTIONS(2695),
- [anon_sym_SQUOTE] = ACTIONS(2695),
- [anon_sym_class] = ACTIONS(2697),
- [anon_sym_async] = ACTIONS(2697),
- [anon_sym_function] = ACTIONS(2697),
- [anon_sym_new] = ACTIONS(2697),
- [anon_sym_using] = ACTIONS(2697),
- [anon_sym_PLUS] = ACTIONS(2697),
- [anon_sym_DASH] = ACTIONS(2697),
- [anon_sym_SLASH] = ACTIONS(2697),
- [anon_sym_LT] = ACTIONS(2697),
- [anon_sym_TILDE] = ACTIONS(2695),
- [anon_sym_void] = ACTIONS(2697),
- [anon_sym_delete] = ACTIONS(2697),
- [anon_sym_PLUS_PLUS] = ACTIONS(2695),
- [anon_sym_DASH_DASH] = ACTIONS(2695),
- [sym_comment] = ACTIONS(5),
- [anon_sym_BQUOTE] = ACTIONS(2695),
- [sym_number] = ACTIONS(2695),
- [sym_private_property_identifier] = ACTIONS(2695),
- [sym_this] = ACTIONS(2697),
- [sym_super] = ACTIONS(2697),
- [sym_true] = ACTIONS(2697),
- [sym_false] = ACTIONS(2697),
- [sym_null] = ACTIONS(2697),
- [sym_undefined] = ACTIONS(2697),
- [anon_sym_AT] = ACTIONS(2695),
- [anon_sym_static] = ACTIONS(2697),
- [anon_sym_readonly] = ACTIONS(2697),
- [anon_sym_get] = ACTIONS(2697),
- [anon_sym_set] = ACTIONS(2697),
- [anon_sym_declare] = ACTIONS(2697),
- [anon_sym_public] = ACTIONS(2697),
- [anon_sym_private] = ACTIONS(2697),
- [anon_sym_protected] = ACTIONS(2697),
- [anon_sym_override] = ACTIONS(2697),
- [anon_sym_module] = ACTIONS(2697),
- [anon_sym_any] = ACTIONS(2697),
- [anon_sym_number] = ACTIONS(2697),
- [anon_sym_boolean] = ACTIONS(2697),
- [anon_sym_string] = ACTIONS(2697),
- [anon_sym_symbol] = ACTIONS(2697),
- [anon_sym_object] = ACTIONS(2697),
- [anon_sym_abstract] = ACTIONS(2697),
- [anon_sym_interface] = ACTIONS(2697),
- [anon_sym_enum] = ACTIONS(2697),
- [sym_html_comment] = ACTIONS(5),
- },
- [812] = {
- [ts_builtin_sym_end] = ACTIONS(2695),
- [sym_identifier] = ACTIONS(2697),
- [anon_sym_export] = ACTIONS(2697),
- [anon_sym_default] = ACTIONS(2697),
- [anon_sym_type] = ACTIONS(2697),
- [anon_sym_namespace] = ACTIONS(2697),
- [anon_sym_LBRACE] = ACTIONS(2695),
- [anon_sym_RBRACE] = ACTIONS(2695),
- [anon_sym_typeof] = ACTIONS(2697),
- [anon_sym_import] = ACTIONS(2697),
- [anon_sym_with] = ACTIONS(2697),
- [anon_sym_var] = ACTIONS(2697),
- [anon_sym_let] = ACTIONS(2697),
- [anon_sym_const] = ACTIONS(2697),
- [anon_sym_BANG] = ACTIONS(2695),
- [anon_sym_else] = ACTIONS(2697),
- [anon_sym_if] = ACTIONS(2697),
- [anon_sym_switch] = ACTIONS(2697),
- [anon_sym_for] = ACTIONS(2697),
- [anon_sym_LPAREN] = ACTIONS(2695),
- [anon_sym_await] = ACTIONS(2697),
- [anon_sym_while] = ACTIONS(2697),
- [anon_sym_do] = ACTIONS(2697),
- [anon_sym_try] = ACTIONS(2697),
- [anon_sym_break] = ACTIONS(2697),
- [anon_sym_continue] = ACTIONS(2697),
- [anon_sym_debugger] = ACTIONS(2697),
- [anon_sym_return] = ACTIONS(2697),
- [anon_sym_throw] = ACTIONS(2697),
- [anon_sym_SEMI] = ACTIONS(2695),
- [anon_sym_case] = ACTIONS(2697),
- [anon_sym_yield] = ACTIONS(2697),
- [anon_sym_LBRACK] = ACTIONS(2695),
- [sym_glimmer_opening_tag] = ACTIONS(2695),
- [anon_sym_DQUOTE] = ACTIONS(2695),
- [anon_sym_SQUOTE] = ACTIONS(2695),
- [anon_sym_class] = ACTIONS(2697),
- [anon_sym_async] = ACTIONS(2697),
- [anon_sym_function] = ACTIONS(2697),
- [anon_sym_new] = ACTIONS(2697),
- [anon_sym_using] = ACTIONS(2697),
- [anon_sym_PLUS] = ACTIONS(2697),
- [anon_sym_DASH] = ACTIONS(2697),
- [anon_sym_SLASH] = ACTIONS(2697),
- [anon_sym_LT] = ACTIONS(2697),
- [anon_sym_TILDE] = ACTIONS(2695),
- [anon_sym_void] = ACTIONS(2697),
- [anon_sym_delete] = ACTIONS(2697),
- [anon_sym_PLUS_PLUS] = ACTIONS(2695),
- [anon_sym_DASH_DASH] = ACTIONS(2695),
- [sym_comment] = ACTIONS(5),
- [anon_sym_BQUOTE] = ACTIONS(2695),
- [sym_number] = ACTIONS(2695),
- [sym_private_property_identifier] = ACTIONS(2695),
- [sym_this] = ACTIONS(2697),
- [sym_super] = ACTIONS(2697),
- [sym_true] = ACTIONS(2697),
- [sym_false] = ACTIONS(2697),
- [sym_null] = ACTIONS(2697),
- [sym_undefined] = ACTIONS(2697),
- [anon_sym_AT] = ACTIONS(2695),
- [anon_sym_static] = ACTIONS(2697),
- [anon_sym_readonly] = ACTIONS(2697),
- [anon_sym_get] = ACTIONS(2697),
- [anon_sym_set] = ACTIONS(2697),
- [anon_sym_declare] = ACTIONS(2697),
- [anon_sym_public] = ACTIONS(2697),
- [anon_sym_private] = ACTIONS(2697),
- [anon_sym_protected] = ACTIONS(2697),
- [anon_sym_override] = ACTIONS(2697),
- [anon_sym_module] = ACTIONS(2697),
- [anon_sym_any] = ACTIONS(2697),
- [anon_sym_number] = ACTIONS(2697),
- [anon_sym_boolean] = ACTIONS(2697),
- [anon_sym_string] = ACTIONS(2697),
- [anon_sym_symbol] = ACTIONS(2697),
- [anon_sym_object] = ACTIONS(2697),
- [anon_sym_abstract] = ACTIONS(2697),
- [anon_sym_interface] = ACTIONS(2697),
- [anon_sym_enum] = ACTIONS(2697),
- [sym_html_comment] = ACTIONS(5),
- },
- [813] = {
- [ts_builtin_sym_end] = ACTIONS(2699),
- [sym_identifier] = ACTIONS(2701),
- [anon_sym_export] = ACTIONS(2701),
- [anon_sym_default] = ACTIONS(2701),
- [anon_sym_type] = ACTIONS(2701),
- [anon_sym_namespace] = ACTIONS(2701),
- [anon_sym_LBRACE] = ACTIONS(2699),
- [anon_sym_RBRACE] = ACTIONS(2699),
- [anon_sym_typeof] = ACTIONS(2701),
- [anon_sym_import] = ACTIONS(2701),
- [anon_sym_with] = ACTIONS(2701),
- [anon_sym_var] = ACTIONS(2701),
- [anon_sym_let] = ACTIONS(2701),
- [anon_sym_const] = ACTIONS(2701),
- [anon_sym_BANG] = ACTIONS(2699),
- [anon_sym_else] = ACTIONS(2701),
- [anon_sym_if] = ACTIONS(2701),
- [anon_sym_switch] = ACTIONS(2701),
- [anon_sym_for] = ACTIONS(2701),
- [anon_sym_LPAREN] = ACTIONS(2699),
- [anon_sym_await] = ACTIONS(2701),
- [anon_sym_while] = ACTIONS(2701),
- [anon_sym_do] = ACTIONS(2701),
- [anon_sym_try] = ACTIONS(2701),
- [anon_sym_break] = ACTIONS(2701),
- [anon_sym_continue] = ACTIONS(2701),
- [anon_sym_debugger] = ACTIONS(2701),
- [anon_sym_return] = ACTIONS(2701),
- [anon_sym_throw] = ACTIONS(2701),
- [anon_sym_SEMI] = ACTIONS(2699),
- [anon_sym_case] = ACTIONS(2701),
- [anon_sym_yield] = ACTIONS(2701),
- [anon_sym_LBRACK] = ACTIONS(2699),
- [sym_glimmer_opening_tag] = ACTIONS(2699),
- [anon_sym_DQUOTE] = ACTIONS(2699),
- [anon_sym_SQUOTE] = ACTIONS(2699),
- [anon_sym_class] = ACTIONS(2701),
- [anon_sym_async] = ACTIONS(2701),
- [anon_sym_function] = ACTIONS(2701),
- [anon_sym_new] = ACTIONS(2701),
- [anon_sym_using] = ACTIONS(2701),
- [anon_sym_PLUS] = ACTIONS(2701),
- [anon_sym_DASH] = ACTIONS(2701),
- [anon_sym_SLASH] = ACTIONS(2701),
- [anon_sym_LT] = ACTIONS(2701),
- [anon_sym_TILDE] = ACTIONS(2699),
- [anon_sym_void] = ACTIONS(2701),
- [anon_sym_delete] = ACTIONS(2701),
- [anon_sym_PLUS_PLUS] = ACTIONS(2699),
- [anon_sym_DASH_DASH] = ACTIONS(2699),
- [sym_comment] = ACTIONS(5),
- [anon_sym_BQUOTE] = ACTIONS(2699),
- [sym_number] = ACTIONS(2699),
- [sym_private_property_identifier] = ACTIONS(2699),
- [sym_this] = ACTIONS(2701),
- [sym_super] = ACTIONS(2701),
- [sym_true] = ACTIONS(2701),
- [sym_false] = ACTIONS(2701),
- [sym_null] = ACTIONS(2701),
- [sym_undefined] = ACTIONS(2701),
- [anon_sym_AT] = ACTIONS(2699),
- [anon_sym_static] = ACTIONS(2701),
- [anon_sym_readonly] = ACTIONS(2701),
- [anon_sym_get] = ACTIONS(2701),
- [anon_sym_set] = ACTIONS(2701),
- [anon_sym_declare] = ACTIONS(2701),
- [anon_sym_public] = ACTIONS(2701),
- [anon_sym_private] = ACTIONS(2701),
- [anon_sym_protected] = ACTIONS(2701),
- [anon_sym_override] = ACTIONS(2701),
- [anon_sym_module] = ACTIONS(2701),
- [anon_sym_any] = ACTIONS(2701),
- [anon_sym_number] = ACTIONS(2701),
- [anon_sym_boolean] = ACTIONS(2701),
- [anon_sym_string] = ACTIONS(2701),
- [anon_sym_symbol] = ACTIONS(2701),
- [anon_sym_object] = ACTIONS(2701),
- [anon_sym_abstract] = ACTIONS(2701),
- [anon_sym_interface] = ACTIONS(2701),
- [anon_sym_enum] = ACTIONS(2701),
- [sym_html_comment] = ACTIONS(5),
- },
- [814] = {
- [ts_builtin_sym_end] = ACTIONS(2703),
- [sym_identifier] = ACTIONS(2705),
- [anon_sym_export] = ACTIONS(2705),
- [anon_sym_default] = ACTIONS(2705),
- [anon_sym_type] = ACTIONS(2705),
- [anon_sym_namespace] = ACTIONS(2705),
- [anon_sym_LBRACE] = ACTIONS(2703),
- [anon_sym_RBRACE] = ACTIONS(2703),
- [anon_sym_typeof] = ACTIONS(2705),
- [anon_sym_import] = ACTIONS(2705),
- [anon_sym_with] = ACTIONS(2705),
- [anon_sym_var] = ACTIONS(2705),
- [anon_sym_let] = ACTIONS(2705),
- [anon_sym_const] = ACTIONS(2705),
- [anon_sym_BANG] = ACTIONS(2703),
- [anon_sym_else] = ACTIONS(2705),
- [anon_sym_if] = ACTIONS(2705),
- [anon_sym_switch] = ACTIONS(2705),
- [anon_sym_for] = ACTIONS(2705),
- [anon_sym_LPAREN] = ACTIONS(2703),
- [anon_sym_await] = ACTIONS(2705),
- [anon_sym_while] = ACTIONS(2705),
- [anon_sym_do] = ACTIONS(2705),
- [anon_sym_try] = ACTIONS(2705),
- [anon_sym_break] = ACTIONS(2705),
- [anon_sym_continue] = ACTIONS(2705),
- [anon_sym_debugger] = ACTIONS(2705),
- [anon_sym_return] = ACTIONS(2705),
- [anon_sym_throw] = ACTIONS(2705),
- [anon_sym_SEMI] = ACTIONS(2703),
- [anon_sym_case] = ACTIONS(2705),
- [anon_sym_yield] = ACTIONS(2705),
- [anon_sym_LBRACK] = ACTIONS(2703),
- [sym_glimmer_opening_tag] = ACTIONS(2703),
- [anon_sym_DQUOTE] = ACTIONS(2703),
- [anon_sym_SQUOTE] = ACTIONS(2703),
- [anon_sym_class] = ACTIONS(2705),
- [anon_sym_async] = ACTIONS(2705),
- [anon_sym_function] = ACTIONS(2705),
- [anon_sym_new] = ACTIONS(2705),
- [anon_sym_using] = ACTIONS(2705),
- [anon_sym_PLUS] = ACTIONS(2705),
- [anon_sym_DASH] = ACTIONS(2705),
- [anon_sym_SLASH] = ACTIONS(2705),
- [anon_sym_LT] = ACTIONS(2705),
- [anon_sym_TILDE] = ACTIONS(2703),
- [anon_sym_void] = ACTIONS(2705),
- [anon_sym_delete] = ACTIONS(2705),
- [anon_sym_PLUS_PLUS] = ACTIONS(2703),
- [anon_sym_DASH_DASH] = ACTIONS(2703),
- [sym_comment] = ACTIONS(5),
- [anon_sym_BQUOTE] = ACTIONS(2703),
- [sym_number] = ACTIONS(2703),
- [sym_private_property_identifier] = ACTIONS(2703),
- [sym_this] = ACTIONS(2705),
- [sym_super] = ACTIONS(2705),
- [sym_true] = ACTIONS(2705),
- [sym_false] = ACTIONS(2705),
- [sym_null] = ACTIONS(2705),
- [sym_undefined] = ACTIONS(2705),
- [anon_sym_AT] = ACTIONS(2703),
- [anon_sym_static] = ACTIONS(2705),
- [anon_sym_readonly] = ACTIONS(2705),
- [anon_sym_get] = ACTIONS(2705),
- [anon_sym_set] = ACTIONS(2705),
- [anon_sym_declare] = ACTIONS(2705),
- [anon_sym_public] = ACTIONS(2705),
- [anon_sym_private] = ACTIONS(2705),
- [anon_sym_protected] = ACTIONS(2705),
- [anon_sym_override] = ACTIONS(2705),
- [anon_sym_module] = ACTIONS(2705),
- [anon_sym_any] = ACTIONS(2705),
- [anon_sym_number] = ACTIONS(2705),
- [anon_sym_boolean] = ACTIONS(2705),
- [anon_sym_string] = ACTIONS(2705),
- [anon_sym_symbol] = ACTIONS(2705),
- [anon_sym_object] = ACTIONS(2705),
- [anon_sym_abstract] = ACTIONS(2705),
- [anon_sym_interface] = ACTIONS(2705),
- [anon_sym_enum] = ACTIONS(2705),
- [sym_html_comment] = ACTIONS(5),
- },
- [815] = {
- [ts_builtin_sym_end] = ACTIONS(2707),
- [sym_identifier] = ACTIONS(2709),
- [anon_sym_export] = ACTIONS(2709),
- [anon_sym_default] = ACTIONS(2709),
- [anon_sym_type] = ACTIONS(2709),
- [anon_sym_namespace] = ACTIONS(2709),
- [anon_sym_LBRACE] = ACTIONS(2707),
- [anon_sym_RBRACE] = ACTIONS(2707),
- [anon_sym_typeof] = ACTIONS(2709),
- [anon_sym_import] = ACTIONS(2709),
- [anon_sym_with] = ACTIONS(2709),
- [anon_sym_var] = ACTIONS(2709),
- [anon_sym_let] = ACTIONS(2709),
- [anon_sym_const] = ACTIONS(2709),
- [anon_sym_BANG] = ACTIONS(2707),
- [anon_sym_else] = ACTIONS(2709),
- [anon_sym_if] = ACTIONS(2709),
- [anon_sym_switch] = ACTIONS(2709),
- [anon_sym_for] = ACTIONS(2709),
- [anon_sym_LPAREN] = ACTIONS(2707),
- [anon_sym_await] = ACTIONS(2709),
- [anon_sym_while] = ACTIONS(2709),
- [anon_sym_do] = ACTIONS(2709),
- [anon_sym_try] = ACTIONS(2709),
- [anon_sym_break] = ACTIONS(2709),
- [anon_sym_continue] = ACTIONS(2709),
- [anon_sym_debugger] = ACTIONS(2709),
- [anon_sym_return] = ACTIONS(2709),
- [anon_sym_throw] = ACTIONS(2709),
- [anon_sym_SEMI] = ACTIONS(2707),
- [anon_sym_case] = ACTIONS(2709),
- [anon_sym_yield] = ACTIONS(2709),
- [anon_sym_LBRACK] = ACTIONS(2707),
- [sym_glimmer_opening_tag] = ACTIONS(2707),
- [anon_sym_DQUOTE] = ACTIONS(2707),
- [anon_sym_SQUOTE] = ACTIONS(2707),
- [anon_sym_class] = ACTIONS(2709),
- [anon_sym_async] = ACTIONS(2709),
- [anon_sym_function] = ACTIONS(2709),
- [anon_sym_new] = ACTIONS(2709),
- [anon_sym_using] = ACTIONS(2709),
- [anon_sym_PLUS] = ACTIONS(2709),
- [anon_sym_DASH] = ACTIONS(2709),
- [anon_sym_SLASH] = ACTIONS(2709),
- [anon_sym_LT] = ACTIONS(2709),
- [anon_sym_TILDE] = ACTIONS(2707),
- [anon_sym_void] = ACTIONS(2709),
- [anon_sym_delete] = ACTIONS(2709),
- [anon_sym_PLUS_PLUS] = ACTIONS(2707),
- [anon_sym_DASH_DASH] = ACTIONS(2707),
- [sym_comment] = ACTIONS(5),
- [anon_sym_BQUOTE] = ACTIONS(2707),
- [sym_number] = ACTIONS(2707),
- [sym_private_property_identifier] = ACTIONS(2707),
- [sym_this] = ACTIONS(2709),
- [sym_super] = ACTIONS(2709),
- [sym_true] = ACTIONS(2709),
- [sym_false] = ACTIONS(2709),
- [sym_null] = ACTIONS(2709),
- [sym_undefined] = ACTIONS(2709),
- [anon_sym_AT] = ACTIONS(2707),
- [anon_sym_static] = ACTIONS(2709),
- [anon_sym_readonly] = ACTIONS(2709),
- [anon_sym_get] = ACTIONS(2709),
- [anon_sym_set] = ACTIONS(2709),
- [anon_sym_declare] = ACTIONS(2709),
- [anon_sym_public] = ACTIONS(2709),
- [anon_sym_private] = ACTIONS(2709),
- [anon_sym_protected] = ACTIONS(2709),
- [anon_sym_override] = ACTIONS(2709),
- [anon_sym_module] = ACTIONS(2709),
- [anon_sym_any] = ACTIONS(2709),
- [anon_sym_number] = ACTIONS(2709),
- [anon_sym_boolean] = ACTIONS(2709),
- [anon_sym_string] = ACTIONS(2709),
- [anon_sym_symbol] = ACTIONS(2709),
- [anon_sym_object] = ACTIONS(2709),
- [anon_sym_abstract] = ACTIONS(2709),
- [anon_sym_interface] = ACTIONS(2709),
- [anon_sym_enum] = ACTIONS(2709),
- [sym_html_comment] = ACTIONS(5),
- },
- [816] = {
- [ts_builtin_sym_end] = ACTIONS(2711),
- [sym_identifier] = ACTIONS(2713),
- [anon_sym_export] = ACTIONS(2713),
- [anon_sym_default] = ACTIONS(2713),
- [anon_sym_type] = ACTIONS(2713),
- [anon_sym_namespace] = ACTIONS(2713),
- [anon_sym_LBRACE] = ACTIONS(2711),
- [anon_sym_RBRACE] = ACTIONS(2711),
- [anon_sym_typeof] = ACTIONS(2713),
- [anon_sym_import] = ACTIONS(2713),
- [anon_sym_with] = ACTIONS(2713),
- [anon_sym_var] = ACTIONS(2713),
- [anon_sym_let] = ACTIONS(2713),
- [anon_sym_const] = ACTIONS(2713),
- [anon_sym_BANG] = ACTIONS(2711),
- [anon_sym_else] = ACTIONS(2713),
- [anon_sym_if] = ACTIONS(2713),
- [anon_sym_switch] = ACTIONS(2713),
- [anon_sym_for] = ACTIONS(2713),
- [anon_sym_LPAREN] = ACTIONS(2711),
- [anon_sym_await] = ACTIONS(2713),
- [anon_sym_while] = ACTIONS(2713),
- [anon_sym_do] = ACTIONS(2713),
- [anon_sym_try] = ACTIONS(2713),
- [anon_sym_break] = ACTIONS(2713),
- [anon_sym_continue] = ACTIONS(2713),
- [anon_sym_debugger] = ACTIONS(2713),
- [anon_sym_return] = ACTIONS(2713),
- [anon_sym_throw] = ACTIONS(2713),
- [anon_sym_SEMI] = ACTIONS(2711),
- [anon_sym_case] = ACTIONS(2713),
- [anon_sym_yield] = ACTIONS(2713),
- [anon_sym_LBRACK] = ACTIONS(2711),
- [sym_glimmer_opening_tag] = ACTIONS(2711),
- [anon_sym_DQUOTE] = ACTIONS(2711),
- [anon_sym_SQUOTE] = ACTIONS(2711),
- [anon_sym_class] = ACTIONS(2713),
- [anon_sym_async] = ACTIONS(2713),
- [anon_sym_function] = ACTIONS(2713),
- [anon_sym_new] = ACTIONS(2713),
- [anon_sym_using] = ACTIONS(2713),
- [anon_sym_PLUS] = ACTIONS(2713),
- [anon_sym_DASH] = ACTIONS(2713),
- [anon_sym_SLASH] = ACTIONS(2713),
- [anon_sym_LT] = ACTIONS(2713),
- [anon_sym_TILDE] = ACTIONS(2711),
- [anon_sym_void] = ACTIONS(2713),
- [anon_sym_delete] = ACTIONS(2713),
- [anon_sym_PLUS_PLUS] = ACTIONS(2711),
- [anon_sym_DASH_DASH] = ACTIONS(2711),
- [sym_comment] = ACTIONS(5),
- [anon_sym_BQUOTE] = ACTIONS(2711),
- [sym_number] = ACTIONS(2711),
- [sym_private_property_identifier] = ACTIONS(2711),
- [sym_this] = ACTIONS(2713),
- [sym_super] = ACTIONS(2713),
- [sym_true] = ACTIONS(2713),
- [sym_false] = ACTIONS(2713),
- [sym_null] = ACTIONS(2713),
- [sym_undefined] = ACTIONS(2713),
- [anon_sym_AT] = ACTIONS(2711),
- [anon_sym_static] = ACTIONS(2713),
- [anon_sym_readonly] = ACTIONS(2713),
- [anon_sym_get] = ACTIONS(2713),
- [anon_sym_set] = ACTIONS(2713),
- [anon_sym_declare] = ACTIONS(2713),
- [anon_sym_public] = ACTIONS(2713),
- [anon_sym_private] = ACTIONS(2713),
- [anon_sym_protected] = ACTIONS(2713),
- [anon_sym_override] = ACTIONS(2713),
- [anon_sym_module] = ACTIONS(2713),
- [anon_sym_any] = ACTIONS(2713),
- [anon_sym_number] = ACTIONS(2713),
- [anon_sym_boolean] = ACTIONS(2713),
- [anon_sym_string] = ACTIONS(2713),
- [anon_sym_symbol] = ACTIONS(2713),
- [anon_sym_object] = ACTIONS(2713),
- [anon_sym_abstract] = ACTIONS(2713),
- [anon_sym_interface] = ACTIONS(2713),
- [anon_sym_enum] = ACTIONS(2713),
- [sym_html_comment] = ACTIONS(5),
- },
- [817] = {
- [ts_builtin_sym_end] = ACTIONS(2715),
- [sym_identifier] = ACTIONS(2717),
- [anon_sym_export] = ACTIONS(2717),
- [anon_sym_default] = ACTIONS(2717),
- [anon_sym_type] = ACTIONS(2717),
- [anon_sym_namespace] = ACTIONS(2717),
- [anon_sym_LBRACE] = ACTIONS(2715),
- [anon_sym_RBRACE] = ACTIONS(2715),
- [anon_sym_typeof] = ACTIONS(2717),
- [anon_sym_import] = ACTIONS(2717),
- [anon_sym_with] = ACTIONS(2717),
- [anon_sym_var] = ACTIONS(2717),
- [anon_sym_let] = ACTIONS(2717),
- [anon_sym_const] = ACTIONS(2717),
- [anon_sym_BANG] = ACTIONS(2715),
- [anon_sym_else] = ACTIONS(2717),
- [anon_sym_if] = ACTIONS(2717),
- [anon_sym_switch] = ACTIONS(2717),
- [anon_sym_for] = ACTIONS(2717),
- [anon_sym_LPAREN] = ACTIONS(2715),
- [anon_sym_await] = ACTIONS(2717),
- [anon_sym_while] = ACTIONS(2717),
- [anon_sym_do] = ACTIONS(2717),
- [anon_sym_try] = ACTIONS(2717),
- [anon_sym_break] = ACTIONS(2717),
- [anon_sym_continue] = ACTIONS(2717),
- [anon_sym_debugger] = ACTIONS(2717),
- [anon_sym_return] = ACTIONS(2717),
- [anon_sym_throw] = ACTIONS(2717),
- [anon_sym_SEMI] = ACTIONS(2715),
- [anon_sym_case] = ACTIONS(2717),
- [anon_sym_yield] = ACTIONS(2717),
- [anon_sym_LBRACK] = ACTIONS(2715),
- [sym_glimmer_opening_tag] = ACTIONS(2715),
- [anon_sym_DQUOTE] = ACTIONS(2715),
- [anon_sym_SQUOTE] = ACTIONS(2715),
- [anon_sym_class] = ACTIONS(2717),
- [anon_sym_async] = ACTIONS(2717),
- [anon_sym_function] = ACTIONS(2717),
- [anon_sym_new] = ACTIONS(2717),
- [anon_sym_using] = ACTIONS(2717),
- [anon_sym_PLUS] = ACTIONS(2717),
- [anon_sym_DASH] = ACTIONS(2717),
- [anon_sym_SLASH] = ACTIONS(2717),
- [anon_sym_LT] = ACTIONS(2717),
- [anon_sym_TILDE] = ACTIONS(2715),
- [anon_sym_void] = ACTIONS(2717),
- [anon_sym_delete] = ACTIONS(2717),
- [anon_sym_PLUS_PLUS] = ACTIONS(2715),
- [anon_sym_DASH_DASH] = ACTIONS(2715),
- [sym_comment] = ACTIONS(5),
- [anon_sym_BQUOTE] = ACTIONS(2715),
- [sym_number] = ACTIONS(2715),
- [sym_private_property_identifier] = ACTIONS(2715),
- [sym_this] = ACTIONS(2717),
- [sym_super] = ACTIONS(2717),
- [sym_true] = ACTIONS(2717),
- [sym_false] = ACTIONS(2717),
- [sym_null] = ACTIONS(2717),
- [sym_undefined] = ACTIONS(2717),
- [anon_sym_AT] = ACTIONS(2715),
- [anon_sym_static] = ACTIONS(2717),
- [anon_sym_readonly] = ACTIONS(2717),
- [anon_sym_get] = ACTIONS(2717),
- [anon_sym_set] = ACTIONS(2717),
- [anon_sym_declare] = ACTIONS(2717),
- [anon_sym_public] = ACTIONS(2717),
- [anon_sym_private] = ACTIONS(2717),
- [anon_sym_protected] = ACTIONS(2717),
- [anon_sym_override] = ACTIONS(2717),
- [anon_sym_module] = ACTIONS(2717),
- [anon_sym_any] = ACTIONS(2717),
- [anon_sym_number] = ACTIONS(2717),
- [anon_sym_boolean] = ACTIONS(2717),
- [anon_sym_string] = ACTIONS(2717),
- [anon_sym_symbol] = ACTIONS(2717),
- [anon_sym_object] = ACTIONS(2717),
- [anon_sym_abstract] = ACTIONS(2717),
- [anon_sym_interface] = ACTIONS(2717),
- [anon_sym_enum] = ACTIONS(2717),
- [sym_html_comment] = ACTIONS(5),
- },
- [818] = {
- [ts_builtin_sym_end] = ACTIONS(2719),
- [sym_identifier] = ACTIONS(2721),
- [anon_sym_export] = ACTIONS(2721),
- [anon_sym_default] = ACTIONS(2721),
- [anon_sym_type] = ACTIONS(2721),
- [anon_sym_namespace] = ACTIONS(2721),
- [anon_sym_LBRACE] = ACTIONS(2719),
- [anon_sym_RBRACE] = ACTIONS(2719),
- [anon_sym_typeof] = ACTIONS(2721),
- [anon_sym_import] = ACTIONS(2721),
- [anon_sym_with] = ACTIONS(2721),
- [anon_sym_var] = ACTIONS(2721),
- [anon_sym_let] = ACTIONS(2721),
- [anon_sym_const] = ACTIONS(2721),
- [anon_sym_BANG] = ACTIONS(2719),
- [anon_sym_else] = ACTIONS(2721),
- [anon_sym_if] = ACTIONS(2721),
- [anon_sym_switch] = ACTIONS(2721),
- [anon_sym_for] = ACTIONS(2721),
- [anon_sym_LPAREN] = ACTIONS(2719),
- [anon_sym_await] = ACTIONS(2721),
- [anon_sym_while] = ACTIONS(2721),
- [anon_sym_do] = ACTIONS(2721),
- [anon_sym_try] = ACTIONS(2721),
- [anon_sym_break] = ACTIONS(2721),
- [anon_sym_continue] = ACTIONS(2721),
- [anon_sym_debugger] = ACTIONS(2721),
- [anon_sym_return] = ACTIONS(2721),
- [anon_sym_throw] = ACTIONS(2721),
- [anon_sym_SEMI] = ACTIONS(2719),
- [anon_sym_case] = ACTIONS(2721),
- [anon_sym_yield] = ACTIONS(2721),
- [anon_sym_LBRACK] = ACTIONS(2719),
- [sym_glimmer_opening_tag] = ACTIONS(2719),
- [anon_sym_DQUOTE] = ACTIONS(2719),
- [anon_sym_SQUOTE] = ACTIONS(2719),
- [anon_sym_class] = ACTIONS(2721),
- [anon_sym_async] = ACTIONS(2721),
- [anon_sym_function] = ACTIONS(2721),
- [anon_sym_new] = ACTIONS(2721),
- [anon_sym_using] = ACTIONS(2721),
- [anon_sym_PLUS] = ACTIONS(2721),
- [anon_sym_DASH] = ACTIONS(2721),
- [anon_sym_SLASH] = ACTIONS(2721),
- [anon_sym_LT] = ACTIONS(2721),
- [anon_sym_TILDE] = ACTIONS(2719),
- [anon_sym_void] = ACTIONS(2721),
- [anon_sym_delete] = ACTIONS(2721),
- [anon_sym_PLUS_PLUS] = ACTIONS(2719),
- [anon_sym_DASH_DASH] = ACTIONS(2719),
- [sym_comment] = ACTIONS(5),
- [anon_sym_BQUOTE] = ACTIONS(2719),
- [sym_number] = ACTIONS(2719),
- [sym_private_property_identifier] = ACTIONS(2719),
- [sym_this] = ACTIONS(2721),
- [sym_super] = ACTIONS(2721),
- [sym_true] = ACTIONS(2721),
- [sym_false] = ACTIONS(2721),
- [sym_null] = ACTIONS(2721),
- [sym_undefined] = ACTIONS(2721),
- [anon_sym_AT] = ACTIONS(2719),
- [anon_sym_static] = ACTIONS(2721),
- [anon_sym_readonly] = ACTIONS(2721),
- [anon_sym_get] = ACTIONS(2721),
- [anon_sym_set] = ACTIONS(2721),
- [anon_sym_declare] = ACTIONS(2721),
- [anon_sym_public] = ACTIONS(2721),
- [anon_sym_private] = ACTIONS(2721),
- [anon_sym_protected] = ACTIONS(2721),
- [anon_sym_override] = ACTIONS(2721),
- [anon_sym_module] = ACTIONS(2721),
- [anon_sym_any] = ACTIONS(2721),
- [anon_sym_number] = ACTIONS(2721),
- [anon_sym_boolean] = ACTIONS(2721),
- [anon_sym_string] = ACTIONS(2721),
- [anon_sym_symbol] = ACTIONS(2721),
- [anon_sym_object] = ACTIONS(2721),
- [anon_sym_abstract] = ACTIONS(2721),
- [anon_sym_interface] = ACTIONS(2721),
- [anon_sym_enum] = ACTIONS(2721),
- [sym_html_comment] = ACTIONS(5),
- },
- [819] = {
- [ts_builtin_sym_end] = ACTIONS(2723),
- [sym_identifier] = ACTIONS(2725),
- [anon_sym_export] = ACTIONS(2725),
- [anon_sym_default] = ACTIONS(2725),
- [anon_sym_type] = ACTIONS(2725),
- [anon_sym_namespace] = ACTIONS(2725),
- [anon_sym_LBRACE] = ACTIONS(2723),
- [anon_sym_RBRACE] = ACTIONS(2723),
- [anon_sym_typeof] = ACTIONS(2725),
- [anon_sym_import] = ACTIONS(2725),
- [anon_sym_with] = ACTIONS(2725),
- [anon_sym_var] = ACTIONS(2725),
- [anon_sym_let] = ACTIONS(2725),
- [anon_sym_const] = ACTIONS(2725),
- [anon_sym_BANG] = ACTIONS(2723),
- [anon_sym_else] = ACTIONS(2725),
- [anon_sym_if] = ACTIONS(2725),
- [anon_sym_switch] = ACTIONS(2725),
- [anon_sym_for] = ACTIONS(2725),
- [anon_sym_LPAREN] = ACTIONS(2723),
- [anon_sym_await] = ACTIONS(2725),
- [anon_sym_while] = ACTIONS(2725),
- [anon_sym_do] = ACTIONS(2725),
- [anon_sym_try] = ACTIONS(2725),
- [anon_sym_break] = ACTIONS(2725),
- [anon_sym_continue] = ACTIONS(2725),
- [anon_sym_debugger] = ACTIONS(2725),
- [anon_sym_return] = ACTIONS(2725),
- [anon_sym_throw] = ACTIONS(2725),
- [anon_sym_SEMI] = ACTIONS(2723),
- [anon_sym_case] = ACTIONS(2725),
- [anon_sym_yield] = ACTIONS(2725),
- [anon_sym_LBRACK] = ACTIONS(2723),
- [sym_glimmer_opening_tag] = ACTIONS(2723),
- [anon_sym_DQUOTE] = ACTIONS(2723),
- [anon_sym_SQUOTE] = ACTIONS(2723),
- [anon_sym_class] = ACTIONS(2725),
- [anon_sym_async] = ACTIONS(2725),
- [anon_sym_function] = ACTIONS(2725),
- [anon_sym_new] = ACTIONS(2725),
- [anon_sym_using] = ACTIONS(2725),
- [anon_sym_PLUS] = ACTIONS(2725),
- [anon_sym_DASH] = ACTIONS(2725),
- [anon_sym_SLASH] = ACTIONS(2725),
- [anon_sym_LT] = ACTIONS(2725),
- [anon_sym_TILDE] = ACTIONS(2723),
- [anon_sym_void] = ACTIONS(2725),
- [anon_sym_delete] = ACTIONS(2725),
- [anon_sym_PLUS_PLUS] = ACTIONS(2723),
- [anon_sym_DASH_DASH] = ACTIONS(2723),
- [sym_comment] = ACTIONS(5),
- [anon_sym_BQUOTE] = ACTIONS(2723),
- [sym_number] = ACTIONS(2723),
- [sym_private_property_identifier] = ACTIONS(2723),
- [sym_this] = ACTIONS(2725),
- [sym_super] = ACTIONS(2725),
- [sym_true] = ACTIONS(2725),
- [sym_false] = ACTIONS(2725),
- [sym_null] = ACTIONS(2725),
- [sym_undefined] = ACTIONS(2725),
- [anon_sym_AT] = ACTIONS(2723),
- [anon_sym_static] = ACTIONS(2725),
- [anon_sym_readonly] = ACTIONS(2725),
- [anon_sym_get] = ACTIONS(2725),
- [anon_sym_set] = ACTIONS(2725),
- [anon_sym_declare] = ACTIONS(2725),
- [anon_sym_public] = ACTIONS(2725),
- [anon_sym_private] = ACTIONS(2725),
- [anon_sym_protected] = ACTIONS(2725),
- [anon_sym_override] = ACTIONS(2725),
- [anon_sym_module] = ACTIONS(2725),
- [anon_sym_any] = ACTIONS(2725),
- [anon_sym_number] = ACTIONS(2725),
- [anon_sym_boolean] = ACTIONS(2725),
- [anon_sym_string] = ACTIONS(2725),
- [anon_sym_symbol] = ACTIONS(2725),
- [anon_sym_object] = ACTIONS(2725),
- [anon_sym_abstract] = ACTIONS(2725),
- [anon_sym_interface] = ACTIONS(2725),
- [anon_sym_enum] = ACTIONS(2725),
- [sym_html_comment] = ACTIONS(5),
- },
- [820] = {
- [ts_builtin_sym_end] = ACTIONS(2727),
- [sym_identifier] = ACTIONS(2729),
- [anon_sym_export] = ACTIONS(2729),
- [anon_sym_default] = ACTIONS(2729),
- [anon_sym_type] = ACTIONS(2729),
- [anon_sym_namespace] = ACTIONS(2729),
- [anon_sym_LBRACE] = ACTIONS(2727),
- [anon_sym_RBRACE] = ACTIONS(2727),
- [anon_sym_typeof] = ACTIONS(2729),
- [anon_sym_import] = ACTIONS(2729),
- [anon_sym_with] = ACTIONS(2729),
- [anon_sym_var] = ACTIONS(2729),
- [anon_sym_let] = ACTIONS(2729),
- [anon_sym_const] = ACTIONS(2729),
- [anon_sym_BANG] = ACTIONS(2727),
- [anon_sym_else] = ACTIONS(2729),
- [anon_sym_if] = ACTIONS(2729),
- [anon_sym_switch] = ACTIONS(2729),
- [anon_sym_for] = ACTIONS(2729),
- [anon_sym_LPAREN] = ACTIONS(2727),
- [anon_sym_await] = ACTIONS(2729),
- [anon_sym_while] = ACTIONS(2729),
- [anon_sym_do] = ACTIONS(2729),
- [anon_sym_try] = ACTIONS(2729),
- [anon_sym_break] = ACTIONS(2729),
- [anon_sym_continue] = ACTIONS(2729),
- [anon_sym_debugger] = ACTIONS(2729),
- [anon_sym_return] = ACTIONS(2729),
- [anon_sym_throw] = ACTIONS(2729),
- [anon_sym_SEMI] = ACTIONS(2727),
- [anon_sym_case] = ACTIONS(2729),
- [anon_sym_yield] = ACTIONS(2729),
- [anon_sym_LBRACK] = ACTIONS(2727),
- [sym_glimmer_opening_tag] = ACTIONS(2727),
- [anon_sym_DQUOTE] = ACTIONS(2727),
- [anon_sym_SQUOTE] = ACTIONS(2727),
- [anon_sym_class] = ACTIONS(2729),
- [anon_sym_async] = ACTIONS(2729),
- [anon_sym_function] = ACTIONS(2729),
- [anon_sym_new] = ACTIONS(2729),
- [anon_sym_using] = ACTIONS(2729),
- [anon_sym_PLUS] = ACTIONS(2729),
- [anon_sym_DASH] = ACTIONS(2729),
- [anon_sym_SLASH] = ACTIONS(2729),
- [anon_sym_LT] = ACTIONS(2729),
- [anon_sym_TILDE] = ACTIONS(2727),
- [anon_sym_void] = ACTIONS(2729),
- [anon_sym_delete] = ACTIONS(2729),
- [anon_sym_PLUS_PLUS] = ACTIONS(2727),
- [anon_sym_DASH_DASH] = ACTIONS(2727),
- [sym_comment] = ACTIONS(5),
- [anon_sym_BQUOTE] = ACTIONS(2727),
- [sym_number] = ACTIONS(2727),
- [sym_private_property_identifier] = ACTIONS(2727),
- [sym_this] = ACTIONS(2729),
- [sym_super] = ACTIONS(2729),
- [sym_true] = ACTIONS(2729),
- [sym_false] = ACTIONS(2729),
- [sym_null] = ACTIONS(2729),
- [sym_undefined] = ACTIONS(2729),
- [anon_sym_AT] = ACTIONS(2727),
- [anon_sym_static] = ACTIONS(2729),
- [anon_sym_readonly] = ACTIONS(2729),
- [anon_sym_get] = ACTIONS(2729),
- [anon_sym_set] = ACTIONS(2729),
- [anon_sym_declare] = ACTIONS(2729),
- [anon_sym_public] = ACTIONS(2729),
- [anon_sym_private] = ACTIONS(2729),
- [anon_sym_protected] = ACTIONS(2729),
- [anon_sym_override] = ACTIONS(2729),
- [anon_sym_module] = ACTIONS(2729),
- [anon_sym_any] = ACTIONS(2729),
- [anon_sym_number] = ACTIONS(2729),
- [anon_sym_boolean] = ACTIONS(2729),
- [anon_sym_string] = ACTIONS(2729),
- [anon_sym_symbol] = ACTIONS(2729),
- [anon_sym_object] = ACTIONS(2729),
- [anon_sym_abstract] = ACTIONS(2729),
- [anon_sym_interface] = ACTIONS(2729),
- [anon_sym_enum] = ACTIONS(2729),
- [sym_html_comment] = ACTIONS(5),
- },
- [821] = {
- [ts_builtin_sym_end] = ACTIONS(2727),
- [sym_identifier] = ACTIONS(2729),
- [anon_sym_export] = ACTIONS(2729),
- [anon_sym_default] = ACTIONS(2729),
- [anon_sym_type] = ACTIONS(2729),
- [anon_sym_namespace] = ACTIONS(2729),
- [anon_sym_LBRACE] = ACTIONS(2727),
- [anon_sym_RBRACE] = ACTIONS(2727),
- [anon_sym_typeof] = ACTIONS(2729),
- [anon_sym_import] = ACTIONS(2729),
- [anon_sym_with] = ACTIONS(2729),
- [anon_sym_var] = ACTIONS(2729),
- [anon_sym_let] = ACTIONS(2729),
- [anon_sym_const] = ACTIONS(2729),
- [anon_sym_BANG] = ACTIONS(2727),
- [anon_sym_else] = ACTIONS(2729),
- [anon_sym_if] = ACTIONS(2729),
- [anon_sym_switch] = ACTIONS(2729),
- [anon_sym_for] = ACTIONS(2729),
- [anon_sym_LPAREN] = ACTIONS(2727),
- [anon_sym_await] = ACTIONS(2729),
- [anon_sym_while] = ACTIONS(2729),
- [anon_sym_do] = ACTIONS(2729),
- [anon_sym_try] = ACTIONS(2729),
- [anon_sym_break] = ACTIONS(2729),
- [anon_sym_continue] = ACTIONS(2729),
- [anon_sym_debugger] = ACTIONS(2729),
- [anon_sym_return] = ACTIONS(2729),
- [anon_sym_throw] = ACTIONS(2729),
- [anon_sym_SEMI] = ACTIONS(2727),
- [anon_sym_case] = ACTIONS(2729),
- [anon_sym_yield] = ACTIONS(2729),
- [anon_sym_LBRACK] = ACTIONS(2727),
- [sym_glimmer_opening_tag] = ACTIONS(2727),
- [anon_sym_DQUOTE] = ACTIONS(2727),
- [anon_sym_SQUOTE] = ACTIONS(2727),
- [anon_sym_class] = ACTIONS(2729),
- [anon_sym_async] = ACTIONS(2729),
- [anon_sym_function] = ACTIONS(2729),
- [anon_sym_new] = ACTIONS(2729),
- [anon_sym_using] = ACTIONS(2729),
- [anon_sym_PLUS] = ACTIONS(2729),
- [anon_sym_DASH] = ACTIONS(2729),
- [anon_sym_SLASH] = ACTIONS(2729),
- [anon_sym_LT] = ACTIONS(2729),
- [anon_sym_TILDE] = ACTIONS(2727),
- [anon_sym_void] = ACTIONS(2729),
- [anon_sym_delete] = ACTIONS(2729),
- [anon_sym_PLUS_PLUS] = ACTIONS(2727),
- [anon_sym_DASH_DASH] = ACTIONS(2727),
- [sym_comment] = ACTIONS(5),
- [anon_sym_BQUOTE] = ACTIONS(2727),
- [sym_number] = ACTIONS(2727),
- [sym_private_property_identifier] = ACTIONS(2727),
- [sym_this] = ACTIONS(2729),
- [sym_super] = ACTIONS(2729),
- [sym_true] = ACTIONS(2729),
- [sym_false] = ACTIONS(2729),
- [sym_null] = ACTIONS(2729),
- [sym_undefined] = ACTIONS(2729),
- [anon_sym_AT] = ACTIONS(2727),
- [anon_sym_static] = ACTIONS(2729),
- [anon_sym_readonly] = ACTIONS(2729),
- [anon_sym_get] = ACTIONS(2729),
- [anon_sym_set] = ACTIONS(2729),
- [anon_sym_declare] = ACTIONS(2729),
- [anon_sym_public] = ACTIONS(2729),
- [anon_sym_private] = ACTIONS(2729),
- [anon_sym_protected] = ACTIONS(2729),
- [anon_sym_override] = ACTIONS(2729),
- [anon_sym_module] = ACTIONS(2729),
- [anon_sym_any] = ACTIONS(2729),
- [anon_sym_number] = ACTIONS(2729),
- [anon_sym_boolean] = ACTIONS(2729),
- [anon_sym_string] = ACTIONS(2729),
- [anon_sym_symbol] = ACTIONS(2729),
- [anon_sym_object] = ACTIONS(2729),
- [anon_sym_abstract] = ACTIONS(2729),
- [anon_sym_interface] = ACTIONS(2729),
- [anon_sym_enum] = ACTIONS(2729),
- [sym_html_comment] = ACTIONS(5),
- },
- [822] = {
- [ts_builtin_sym_end] = ACTIONS(2731),
- [sym_identifier] = ACTIONS(2733),
- [anon_sym_export] = ACTIONS(2733),
- [anon_sym_default] = ACTIONS(2733),
- [anon_sym_type] = ACTIONS(2733),
- [anon_sym_namespace] = ACTIONS(2733),
- [anon_sym_LBRACE] = ACTIONS(2731),
- [anon_sym_RBRACE] = ACTIONS(2731),
- [anon_sym_typeof] = ACTIONS(2733),
- [anon_sym_import] = ACTIONS(2733),
- [anon_sym_with] = ACTIONS(2733),
- [anon_sym_var] = ACTIONS(2733),
- [anon_sym_let] = ACTIONS(2733),
- [anon_sym_const] = ACTIONS(2733),
- [anon_sym_BANG] = ACTIONS(2731),
- [anon_sym_else] = ACTIONS(2733),
- [anon_sym_if] = ACTIONS(2733),
- [anon_sym_switch] = ACTIONS(2733),
- [anon_sym_for] = ACTIONS(2733),
- [anon_sym_LPAREN] = ACTIONS(2731),
- [anon_sym_await] = ACTIONS(2733),
- [anon_sym_while] = ACTIONS(2733),
- [anon_sym_do] = ACTIONS(2733),
- [anon_sym_try] = ACTIONS(2733),
- [anon_sym_break] = ACTIONS(2733),
- [anon_sym_continue] = ACTIONS(2733),
- [anon_sym_debugger] = ACTIONS(2733),
- [anon_sym_return] = ACTIONS(2733),
- [anon_sym_throw] = ACTIONS(2733),
- [anon_sym_SEMI] = ACTIONS(2731),
- [anon_sym_case] = ACTIONS(2733),
- [anon_sym_yield] = ACTIONS(2733),
- [anon_sym_LBRACK] = ACTIONS(2731),
- [sym_glimmer_opening_tag] = ACTIONS(2731),
- [anon_sym_DQUOTE] = ACTIONS(2731),
- [anon_sym_SQUOTE] = ACTIONS(2731),
- [anon_sym_class] = ACTIONS(2733),
- [anon_sym_async] = ACTIONS(2733),
- [anon_sym_function] = ACTIONS(2733),
- [anon_sym_new] = ACTIONS(2733),
- [anon_sym_using] = ACTIONS(2733),
- [anon_sym_PLUS] = ACTIONS(2733),
- [anon_sym_DASH] = ACTIONS(2733),
- [anon_sym_SLASH] = ACTIONS(2733),
- [anon_sym_LT] = ACTIONS(2733),
- [anon_sym_TILDE] = ACTIONS(2731),
- [anon_sym_void] = ACTIONS(2733),
- [anon_sym_delete] = ACTIONS(2733),
- [anon_sym_PLUS_PLUS] = ACTIONS(2731),
- [anon_sym_DASH_DASH] = ACTIONS(2731),
- [sym_comment] = ACTIONS(5),
- [anon_sym_BQUOTE] = ACTIONS(2731),
- [sym_number] = ACTIONS(2731),
- [sym_private_property_identifier] = ACTIONS(2731),
- [sym_this] = ACTIONS(2733),
- [sym_super] = ACTIONS(2733),
- [sym_true] = ACTIONS(2733),
- [sym_false] = ACTIONS(2733),
- [sym_null] = ACTIONS(2733),
- [sym_undefined] = ACTIONS(2733),
- [anon_sym_AT] = ACTIONS(2731),
- [anon_sym_static] = ACTIONS(2733),
- [anon_sym_readonly] = ACTIONS(2733),
- [anon_sym_get] = ACTIONS(2733),
- [anon_sym_set] = ACTIONS(2733),
- [anon_sym_declare] = ACTIONS(2733),
- [anon_sym_public] = ACTIONS(2733),
- [anon_sym_private] = ACTIONS(2733),
- [anon_sym_protected] = ACTIONS(2733),
- [anon_sym_override] = ACTIONS(2733),
- [anon_sym_module] = ACTIONS(2733),
- [anon_sym_any] = ACTIONS(2733),
- [anon_sym_number] = ACTIONS(2733),
- [anon_sym_boolean] = ACTIONS(2733),
- [anon_sym_string] = ACTIONS(2733),
- [anon_sym_symbol] = ACTIONS(2733),
- [anon_sym_object] = ACTIONS(2733),
- [anon_sym_abstract] = ACTIONS(2733),
- [anon_sym_interface] = ACTIONS(2733),
- [anon_sym_enum] = ACTIONS(2733),
- [sym_html_comment] = ACTIONS(5),
- },
- [823] = {
- [ts_builtin_sym_end] = ACTIONS(2735),
- [sym_identifier] = ACTIONS(2737),
- [anon_sym_export] = ACTIONS(2737),
- [anon_sym_default] = ACTIONS(2737),
- [anon_sym_type] = ACTIONS(2737),
- [anon_sym_namespace] = ACTIONS(2737),
- [anon_sym_LBRACE] = ACTIONS(2735),
- [anon_sym_RBRACE] = ACTIONS(2735),
- [anon_sym_typeof] = ACTIONS(2737),
- [anon_sym_import] = ACTIONS(2737),
- [anon_sym_with] = ACTIONS(2737),
- [anon_sym_var] = ACTIONS(2737),
- [anon_sym_let] = ACTIONS(2737),
- [anon_sym_const] = ACTIONS(2737),
- [anon_sym_BANG] = ACTIONS(2735),
- [anon_sym_else] = ACTIONS(2737),
- [anon_sym_if] = ACTIONS(2737),
- [anon_sym_switch] = ACTIONS(2737),
- [anon_sym_for] = ACTIONS(2737),
- [anon_sym_LPAREN] = ACTIONS(2735),
- [anon_sym_await] = ACTIONS(2737),
- [anon_sym_while] = ACTIONS(2737),
- [anon_sym_do] = ACTIONS(2737),
- [anon_sym_try] = ACTIONS(2737),
- [anon_sym_break] = ACTIONS(2737),
- [anon_sym_continue] = ACTIONS(2737),
- [anon_sym_debugger] = ACTIONS(2737),
- [anon_sym_return] = ACTIONS(2737),
- [anon_sym_throw] = ACTIONS(2737),
- [anon_sym_SEMI] = ACTIONS(2735),
- [anon_sym_case] = ACTIONS(2737),
- [anon_sym_yield] = ACTIONS(2737),
- [anon_sym_LBRACK] = ACTIONS(2735),
- [sym_glimmer_opening_tag] = ACTIONS(2735),
- [anon_sym_DQUOTE] = ACTIONS(2735),
- [anon_sym_SQUOTE] = ACTIONS(2735),
- [anon_sym_class] = ACTIONS(2737),
- [anon_sym_async] = ACTIONS(2737),
- [anon_sym_function] = ACTIONS(2737),
- [anon_sym_new] = ACTIONS(2737),
- [anon_sym_using] = ACTIONS(2737),
- [anon_sym_PLUS] = ACTIONS(2737),
- [anon_sym_DASH] = ACTIONS(2737),
- [anon_sym_SLASH] = ACTIONS(2737),
- [anon_sym_LT] = ACTIONS(2737),
- [anon_sym_TILDE] = ACTIONS(2735),
- [anon_sym_void] = ACTIONS(2737),
- [anon_sym_delete] = ACTIONS(2737),
- [anon_sym_PLUS_PLUS] = ACTIONS(2735),
- [anon_sym_DASH_DASH] = ACTIONS(2735),
- [sym_comment] = ACTIONS(5),
- [anon_sym_BQUOTE] = ACTIONS(2735),
- [sym_number] = ACTIONS(2735),
- [sym_private_property_identifier] = ACTIONS(2735),
- [sym_this] = ACTIONS(2737),
- [sym_super] = ACTIONS(2737),
- [sym_true] = ACTIONS(2737),
- [sym_false] = ACTIONS(2737),
- [sym_null] = ACTIONS(2737),
- [sym_undefined] = ACTIONS(2737),
- [anon_sym_AT] = ACTIONS(2735),
- [anon_sym_static] = ACTIONS(2737),
- [anon_sym_readonly] = ACTIONS(2737),
- [anon_sym_get] = ACTIONS(2737),
- [anon_sym_set] = ACTIONS(2737),
- [anon_sym_declare] = ACTIONS(2737),
- [anon_sym_public] = ACTIONS(2737),
- [anon_sym_private] = ACTIONS(2737),
- [anon_sym_protected] = ACTIONS(2737),
- [anon_sym_override] = ACTIONS(2737),
- [anon_sym_module] = ACTIONS(2737),
- [anon_sym_any] = ACTIONS(2737),
- [anon_sym_number] = ACTIONS(2737),
- [anon_sym_boolean] = ACTIONS(2737),
- [anon_sym_string] = ACTIONS(2737),
- [anon_sym_symbol] = ACTIONS(2737),
- [anon_sym_object] = ACTIONS(2737),
- [anon_sym_abstract] = ACTIONS(2737),
- [anon_sym_interface] = ACTIONS(2737),
- [anon_sym_enum] = ACTIONS(2737),
- [sym_html_comment] = ACTIONS(5),
- },
- [824] = {
- [ts_builtin_sym_end] = ACTIONS(2739),
- [sym_identifier] = ACTIONS(2741),
- [anon_sym_export] = ACTIONS(2741),
- [anon_sym_default] = ACTIONS(2741),
- [anon_sym_type] = ACTIONS(2741),
- [anon_sym_namespace] = ACTIONS(2741),
- [anon_sym_LBRACE] = ACTIONS(2739),
- [anon_sym_RBRACE] = ACTIONS(2739),
- [anon_sym_typeof] = ACTIONS(2741),
- [anon_sym_import] = ACTIONS(2741),
- [anon_sym_with] = ACTIONS(2741),
- [anon_sym_var] = ACTIONS(2741),
- [anon_sym_let] = ACTIONS(2741),
- [anon_sym_const] = ACTIONS(2741),
- [anon_sym_BANG] = ACTIONS(2739),
- [anon_sym_else] = ACTIONS(2741),
- [anon_sym_if] = ACTIONS(2741),
- [anon_sym_switch] = ACTIONS(2741),
- [anon_sym_for] = ACTIONS(2741),
- [anon_sym_LPAREN] = ACTIONS(2739),
- [anon_sym_await] = ACTIONS(2741),
- [anon_sym_while] = ACTIONS(2741),
- [anon_sym_do] = ACTIONS(2741),
- [anon_sym_try] = ACTIONS(2741),
- [anon_sym_break] = ACTIONS(2741),
- [anon_sym_continue] = ACTIONS(2741),
- [anon_sym_debugger] = ACTIONS(2741),
- [anon_sym_return] = ACTIONS(2741),
- [anon_sym_throw] = ACTIONS(2741),
- [anon_sym_SEMI] = ACTIONS(2739),
- [anon_sym_case] = ACTIONS(2741),
- [anon_sym_yield] = ACTIONS(2741),
- [anon_sym_LBRACK] = ACTIONS(2739),
- [sym_glimmer_opening_tag] = ACTIONS(2739),
- [anon_sym_DQUOTE] = ACTIONS(2739),
- [anon_sym_SQUOTE] = ACTIONS(2739),
- [anon_sym_class] = ACTIONS(2741),
- [anon_sym_async] = ACTIONS(2741),
- [anon_sym_function] = ACTIONS(2741),
- [anon_sym_new] = ACTIONS(2741),
- [anon_sym_using] = ACTIONS(2741),
- [anon_sym_PLUS] = ACTIONS(2741),
- [anon_sym_DASH] = ACTIONS(2741),
- [anon_sym_SLASH] = ACTIONS(2741),
- [anon_sym_LT] = ACTIONS(2741),
- [anon_sym_TILDE] = ACTIONS(2739),
- [anon_sym_void] = ACTIONS(2741),
- [anon_sym_delete] = ACTIONS(2741),
- [anon_sym_PLUS_PLUS] = ACTIONS(2739),
- [anon_sym_DASH_DASH] = ACTIONS(2739),
- [sym_comment] = ACTIONS(5),
- [anon_sym_BQUOTE] = ACTIONS(2739),
- [sym_number] = ACTIONS(2739),
- [sym_private_property_identifier] = ACTIONS(2739),
- [sym_this] = ACTIONS(2741),
- [sym_super] = ACTIONS(2741),
- [sym_true] = ACTIONS(2741),
- [sym_false] = ACTIONS(2741),
- [sym_null] = ACTIONS(2741),
- [sym_undefined] = ACTIONS(2741),
- [anon_sym_AT] = ACTIONS(2739),
- [anon_sym_static] = ACTIONS(2741),
- [anon_sym_readonly] = ACTIONS(2741),
- [anon_sym_get] = ACTIONS(2741),
- [anon_sym_set] = ACTIONS(2741),
- [anon_sym_declare] = ACTIONS(2741),
- [anon_sym_public] = ACTIONS(2741),
- [anon_sym_private] = ACTIONS(2741),
- [anon_sym_protected] = ACTIONS(2741),
- [anon_sym_override] = ACTIONS(2741),
- [anon_sym_module] = ACTIONS(2741),
- [anon_sym_any] = ACTIONS(2741),
- [anon_sym_number] = ACTIONS(2741),
- [anon_sym_boolean] = ACTIONS(2741),
- [anon_sym_string] = ACTIONS(2741),
- [anon_sym_symbol] = ACTIONS(2741),
- [anon_sym_object] = ACTIONS(2741),
- [anon_sym_abstract] = ACTIONS(2741),
- [anon_sym_interface] = ACTIONS(2741),
- [anon_sym_enum] = ACTIONS(2741),
- [sym_html_comment] = ACTIONS(5),
- },
- [825] = {
- [ts_builtin_sym_end] = ACTIONS(2743),
- [sym_identifier] = ACTIONS(2745),
- [anon_sym_export] = ACTIONS(2745),
- [anon_sym_default] = ACTIONS(2745),
- [anon_sym_type] = ACTIONS(2745),
- [anon_sym_namespace] = ACTIONS(2745),
- [anon_sym_LBRACE] = ACTIONS(2743),
- [anon_sym_RBRACE] = ACTIONS(2743),
- [anon_sym_typeof] = ACTIONS(2745),
- [anon_sym_import] = ACTIONS(2745),
- [anon_sym_with] = ACTIONS(2745),
- [anon_sym_var] = ACTIONS(2745),
- [anon_sym_let] = ACTIONS(2745),
- [anon_sym_const] = ACTIONS(2745),
- [anon_sym_BANG] = ACTIONS(2743),
- [anon_sym_else] = ACTIONS(2745),
- [anon_sym_if] = ACTIONS(2745),
- [anon_sym_switch] = ACTIONS(2745),
- [anon_sym_for] = ACTIONS(2745),
- [anon_sym_LPAREN] = ACTIONS(2743),
- [anon_sym_await] = ACTIONS(2745),
- [anon_sym_while] = ACTIONS(2745),
- [anon_sym_do] = ACTIONS(2745),
- [anon_sym_try] = ACTIONS(2745),
- [anon_sym_break] = ACTIONS(2745),
- [anon_sym_continue] = ACTIONS(2745),
- [anon_sym_debugger] = ACTIONS(2745),
- [anon_sym_return] = ACTIONS(2745),
- [anon_sym_throw] = ACTIONS(2745),
- [anon_sym_SEMI] = ACTIONS(2743),
- [anon_sym_case] = ACTIONS(2745),
- [anon_sym_yield] = ACTIONS(2745),
- [anon_sym_LBRACK] = ACTIONS(2743),
- [sym_glimmer_opening_tag] = ACTIONS(2743),
- [anon_sym_DQUOTE] = ACTIONS(2743),
- [anon_sym_SQUOTE] = ACTIONS(2743),
- [anon_sym_class] = ACTIONS(2745),
- [anon_sym_async] = ACTIONS(2745),
- [anon_sym_function] = ACTIONS(2745),
- [anon_sym_new] = ACTIONS(2745),
- [anon_sym_using] = ACTIONS(2745),
- [anon_sym_PLUS] = ACTIONS(2745),
- [anon_sym_DASH] = ACTIONS(2745),
- [anon_sym_SLASH] = ACTIONS(2745),
- [anon_sym_LT] = ACTIONS(2745),
- [anon_sym_TILDE] = ACTIONS(2743),
- [anon_sym_void] = ACTIONS(2745),
- [anon_sym_delete] = ACTIONS(2745),
- [anon_sym_PLUS_PLUS] = ACTIONS(2743),
- [anon_sym_DASH_DASH] = ACTIONS(2743),
- [sym_comment] = ACTIONS(5),
- [anon_sym_BQUOTE] = ACTIONS(2743),
- [sym_number] = ACTIONS(2743),
- [sym_private_property_identifier] = ACTIONS(2743),
- [sym_this] = ACTIONS(2745),
- [sym_super] = ACTIONS(2745),
- [sym_true] = ACTIONS(2745),
- [sym_false] = ACTIONS(2745),
- [sym_null] = ACTIONS(2745),
- [sym_undefined] = ACTIONS(2745),
- [anon_sym_AT] = ACTIONS(2743),
- [anon_sym_static] = ACTIONS(2745),
- [anon_sym_readonly] = ACTIONS(2745),
- [anon_sym_get] = ACTIONS(2745),
- [anon_sym_set] = ACTIONS(2745),
- [anon_sym_declare] = ACTIONS(2745),
- [anon_sym_public] = ACTIONS(2745),
- [anon_sym_private] = ACTIONS(2745),
- [anon_sym_protected] = ACTIONS(2745),
- [anon_sym_override] = ACTIONS(2745),
- [anon_sym_module] = ACTIONS(2745),
- [anon_sym_any] = ACTIONS(2745),
- [anon_sym_number] = ACTIONS(2745),
- [anon_sym_boolean] = ACTIONS(2745),
- [anon_sym_string] = ACTIONS(2745),
- [anon_sym_symbol] = ACTIONS(2745),
- [anon_sym_object] = ACTIONS(2745),
- [anon_sym_abstract] = ACTIONS(2745),
- [anon_sym_interface] = ACTIONS(2745),
- [anon_sym_enum] = ACTIONS(2745),
- [sym_html_comment] = ACTIONS(5),
- },
- [826] = {
- [ts_builtin_sym_end] = ACTIONS(2747),
- [sym_identifier] = ACTIONS(2749),
- [anon_sym_export] = ACTIONS(2749),
- [anon_sym_default] = ACTIONS(2749),
- [anon_sym_type] = ACTIONS(2749),
- [anon_sym_namespace] = ACTIONS(2749),
- [anon_sym_LBRACE] = ACTIONS(2747),
- [anon_sym_RBRACE] = ACTIONS(2747),
- [anon_sym_typeof] = ACTIONS(2749),
- [anon_sym_import] = ACTIONS(2749),
- [anon_sym_with] = ACTIONS(2749),
- [anon_sym_var] = ACTIONS(2749),
- [anon_sym_let] = ACTIONS(2749),
- [anon_sym_const] = ACTIONS(2749),
- [anon_sym_BANG] = ACTIONS(2747),
- [anon_sym_else] = ACTIONS(2749),
- [anon_sym_if] = ACTIONS(2749),
- [anon_sym_switch] = ACTIONS(2749),
- [anon_sym_for] = ACTIONS(2749),
- [anon_sym_LPAREN] = ACTIONS(2747),
- [anon_sym_await] = ACTIONS(2749),
- [anon_sym_while] = ACTIONS(2749),
- [anon_sym_do] = ACTIONS(2749),
- [anon_sym_try] = ACTIONS(2749),
- [anon_sym_break] = ACTIONS(2749),
- [anon_sym_continue] = ACTIONS(2749),
- [anon_sym_debugger] = ACTIONS(2749),
- [anon_sym_return] = ACTIONS(2749),
- [anon_sym_throw] = ACTIONS(2749),
- [anon_sym_SEMI] = ACTIONS(2747),
- [anon_sym_case] = ACTIONS(2749),
- [anon_sym_yield] = ACTIONS(2749),
- [anon_sym_LBRACK] = ACTIONS(2747),
- [sym_glimmer_opening_tag] = ACTIONS(2747),
- [anon_sym_DQUOTE] = ACTIONS(2747),
- [anon_sym_SQUOTE] = ACTIONS(2747),
- [anon_sym_class] = ACTIONS(2749),
- [anon_sym_async] = ACTIONS(2749),
- [anon_sym_function] = ACTIONS(2749),
- [anon_sym_new] = ACTIONS(2749),
- [anon_sym_using] = ACTIONS(2749),
- [anon_sym_PLUS] = ACTIONS(2749),
- [anon_sym_DASH] = ACTIONS(2749),
- [anon_sym_SLASH] = ACTIONS(2749),
- [anon_sym_LT] = ACTIONS(2749),
- [anon_sym_TILDE] = ACTIONS(2747),
- [anon_sym_void] = ACTIONS(2749),
- [anon_sym_delete] = ACTIONS(2749),
- [anon_sym_PLUS_PLUS] = ACTIONS(2747),
- [anon_sym_DASH_DASH] = ACTIONS(2747),
- [sym_comment] = ACTIONS(5),
- [anon_sym_BQUOTE] = ACTIONS(2747),
- [sym_number] = ACTIONS(2747),
- [sym_private_property_identifier] = ACTIONS(2747),
- [sym_this] = ACTIONS(2749),
- [sym_super] = ACTIONS(2749),
- [sym_true] = ACTIONS(2749),
- [sym_false] = ACTIONS(2749),
- [sym_null] = ACTIONS(2749),
- [sym_undefined] = ACTIONS(2749),
- [anon_sym_AT] = ACTIONS(2747),
- [anon_sym_static] = ACTIONS(2749),
- [anon_sym_readonly] = ACTIONS(2749),
- [anon_sym_get] = ACTIONS(2749),
- [anon_sym_set] = ACTIONS(2749),
- [anon_sym_declare] = ACTIONS(2749),
- [anon_sym_public] = ACTIONS(2749),
- [anon_sym_private] = ACTIONS(2749),
- [anon_sym_protected] = ACTIONS(2749),
- [anon_sym_override] = ACTIONS(2749),
- [anon_sym_module] = ACTIONS(2749),
- [anon_sym_any] = ACTIONS(2749),
- [anon_sym_number] = ACTIONS(2749),
- [anon_sym_boolean] = ACTIONS(2749),
- [anon_sym_string] = ACTIONS(2749),
- [anon_sym_symbol] = ACTIONS(2749),
- [anon_sym_object] = ACTIONS(2749),
- [anon_sym_abstract] = ACTIONS(2749),
- [anon_sym_interface] = ACTIONS(2749),
- [anon_sym_enum] = ACTIONS(2749),
- [sym_html_comment] = ACTIONS(5),
- },
- [827] = {
- [ts_builtin_sym_end] = ACTIONS(2751),
- [sym_identifier] = ACTIONS(2753),
- [anon_sym_export] = ACTIONS(2753),
- [anon_sym_default] = ACTIONS(2753),
- [anon_sym_type] = ACTIONS(2753),
- [anon_sym_namespace] = ACTIONS(2753),
- [anon_sym_LBRACE] = ACTIONS(2751),
- [anon_sym_RBRACE] = ACTIONS(2751),
- [anon_sym_typeof] = ACTIONS(2753),
- [anon_sym_import] = ACTIONS(2753),
- [anon_sym_with] = ACTIONS(2753),
- [anon_sym_var] = ACTIONS(2753),
- [anon_sym_let] = ACTIONS(2753),
- [anon_sym_const] = ACTIONS(2753),
- [anon_sym_BANG] = ACTIONS(2751),
- [anon_sym_else] = ACTIONS(2753),
- [anon_sym_if] = ACTIONS(2753),
- [anon_sym_switch] = ACTIONS(2753),
- [anon_sym_for] = ACTIONS(2753),
- [anon_sym_LPAREN] = ACTIONS(2751),
- [anon_sym_await] = ACTIONS(2753),
- [anon_sym_while] = ACTIONS(2753),
- [anon_sym_do] = ACTIONS(2753),
- [anon_sym_try] = ACTIONS(2753),
- [anon_sym_break] = ACTIONS(2753),
- [anon_sym_continue] = ACTIONS(2753),
- [anon_sym_debugger] = ACTIONS(2753),
- [anon_sym_return] = ACTIONS(2753),
- [anon_sym_throw] = ACTIONS(2753),
- [anon_sym_SEMI] = ACTIONS(2751),
- [anon_sym_case] = ACTIONS(2753),
- [anon_sym_yield] = ACTIONS(2753),
- [anon_sym_LBRACK] = ACTIONS(2751),
- [sym_glimmer_opening_tag] = ACTIONS(2751),
- [anon_sym_DQUOTE] = ACTIONS(2751),
- [anon_sym_SQUOTE] = ACTIONS(2751),
- [anon_sym_class] = ACTIONS(2753),
- [anon_sym_async] = ACTIONS(2753),
- [anon_sym_function] = ACTIONS(2753),
- [anon_sym_new] = ACTIONS(2753),
- [anon_sym_using] = ACTIONS(2753),
- [anon_sym_PLUS] = ACTIONS(2753),
- [anon_sym_DASH] = ACTIONS(2753),
- [anon_sym_SLASH] = ACTIONS(2753),
- [anon_sym_LT] = ACTIONS(2753),
- [anon_sym_TILDE] = ACTIONS(2751),
- [anon_sym_void] = ACTIONS(2753),
- [anon_sym_delete] = ACTIONS(2753),
- [anon_sym_PLUS_PLUS] = ACTIONS(2751),
- [anon_sym_DASH_DASH] = ACTIONS(2751),
- [sym_comment] = ACTIONS(5),
- [anon_sym_BQUOTE] = ACTIONS(2751),
- [sym_number] = ACTIONS(2751),
- [sym_private_property_identifier] = ACTIONS(2751),
- [sym_this] = ACTIONS(2753),
- [sym_super] = ACTIONS(2753),
- [sym_true] = ACTIONS(2753),
- [sym_false] = ACTIONS(2753),
- [sym_null] = ACTIONS(2753),
- [sym_undefined] = ACTIONS(2753),
- [anon_sym_AT] = ACTIONS(2751),
- [anon_sym_static] = ACTIONS(2753),
- [anon_sym_readonly] = ACTIONS(2753),
- [anon_sym_get] = ACTIONS(2753),
- [anon_sym_set] = ACTIONS(2753),
- [anon_sym_declare] = ACTIONS(2753),
- [anon_sym_public] = ACTIONS(2753),
- [anon_sym_private] = ACTIONS(2753),
- [anon_sym_protected] = ACTIONS(2753),
- [anon_sym_override] = ACTIONS(2753),
- [anon_sym_module] = ACTIONS(2753),
- [anon_sym_any] = ACTIONS(2753),
- [anon_sym_number] = ACTIONS(2753),
- [anon_sym_boolean] = ACTIONS(2753),
- [anon_sym_string] = ACTIONS(2753),
- [anon_sym_symbol] = ACTIONS(2753),
- [anon_sym_object] = ACTIONS(2753),
- [anon_sym_abstract] = ACTIONS(2753),
- [anon_sym_interface] = ACTIONS(2753),
- [anon_sym_enum] = ACTIONS(2753),
- [sym_html_comment] = ACTIONS(5),
- },
- [828] = {
- [ts_builtin_sym_end] = ACTIONS(2755),
- [sym_identifier] = ACTIONS(2757),
- [anon_sym_export] = ACTIONS(2757),
- [anon_sym_default] = ACTIONS(2757),
- [anon_sym_type] = ACTIONS(2757),
- [anon_sym_namespace] = ACTIONS(2757),
- [anon_sym_LBRACE] = ACTIONS(2755),
- [anon_sym_RBRACE] = ACTIONS(2755),
- [anon_sym_typeof] = ACTIONS(2757),
- [anon_sym_import] = ACTIONS(2757),
- [anon_sym_with] = ACTIONS(2757),
- [anon_sym_var] = ACTIONS(2757),
- [anon_sym_let] = ACTIONS(2757),
- [anon_sym_const] = ACTIONS(2757),
- [anon_sym_BANG] = ACTIONS(2755),
- [anon_sym_else] = ACTIONS(2757),
- [anon_sym_if] = ACTIONS(2757),
- [anon_sym_switch] = ACTIONS(2757),
- [anon_sym_for] = ACTIONS(2757),
- [anon_sym_LPAREN] = ACTIONS(2755),
- [anon_sym_await] = ACTIONS(2757),
- [anon_sym_while] = ACTIONS(2757),
- [anon_sym_do] = ACTIONS(2757),
- [anon_sym_try] = ACTIONS(2757),
- [anon_sym_break] = ACTIONS(2757),
- [anon_sym_continue] = ACTIONS(2757),
- [anon_sym_debugger] = ACTIONS(2757),
- [anon_sym_return] = ACTIONS(2757),
- [anon_sym_throw] = ACTIONS(2757),
- [anon_sym_SEMI] = ACTIONS(2755),
- [anon_sym_case] = ACTIONS(2757),
- [anon_sym_yield] = ACTIONS(2757),
- [anon_sym_LBRACK] = ACTIONS(2755),
- [sym_glimmer_opening_tag] = ACTIONS(2755),
- [anon_sym_DQUOTE] = ACTIONS(2755),
- [anon_sym_SQUOTE] = ACTIONS(2755),
- [anon_sym_class] = ACTIONS(2757),
- [anon_sym_async] = ACTIONS(2757),
- [anon_sym_function] = ACTIONS(2757),
- [anon_sym_new] = ACTIONS(2757),
- [anon_sym_using] = ACTIONS(2757),
- [anon_sym_PLUS] = ACTIONS(2757),
- [anon_sym_DASH] = ACTIONS(2757),
- [anon_sym_SLASH] = ACTIONS(2757),
- [anon_sym_LT] = ACTIONS(2757),
- [anon_sym_TILDE] = ACTIONS(2755),
- [anon_sym_void] = ACTIONS(2757),
- [anon_sym_delete] = ACTIONS(2757),
- [anon_sym_PLUS_PLUS] = ACTIONS(2755),
- [anon_sym_DASH_DASH] = ACTIONS(2755),
- [sym_comment] = ACTIONS(5),
- [anon_sym_BQUOTE] = ACTIONS(2755),
- [sym_number] = ACTIONS(2755),
- [sym_private_property_identifier] = ACTIONS(2755),
- [sym_this] = ACTIONS(2757),
- [sym_super] = ACTIONS(2757),
- [sym_true] = ACTIONS(2757),
- [sym_false] = ACTIONS(2757),
- [sym_null] = ACTIONS(2757),
- [sym_undefined] = ACTIONS(2757),
- [anon_sym_AT] = ACTIONS(2755),
- [anon_sym_static] = ACTIONS(2757),
- [anon_sym_readonly] = ACTIONS(2757),
- [anon_sym_get] = ACTIONS(2757),
- [anon_sym_set] = ACTIONS(2757),
- [anon_sym_declare] = ACTIONS(2757),
- [anon_sym_public] = ACTIONS(2757),
- [anon_sym_private] = ACTIONS(2757),
- [anon_sym_protected] = ACTIONS(2757),
- [anon_sym_override] = ACTIONS(2757),
- [anon_sym_module] = ACTIONS(2757),
- [anon_sym_any] = ACTIONS(2757),
- [anon_sym_number] = ACTIONS(2757),
- [anon_sym_boolean] = ACTIONS(2757),
- [anon_sym_string] = ACTIONS(2757),
- [anon_sym_symbol] = ACTIONS(2757),
- [anon_sym_object] = ACTIONS(2757),
- [anon_sym_abstract] = ACTIONS(2757),
- [anon_sym_interface] = ACTIONS(2757),
- [anon_sym_enum] = ACTIONS(2757),
- [sym_html_comment] = ACTIONS(5),
- },
- [829] = {
- [ts_builtin_sym_end] = ACTIONS(2759),
- [sym_identifier] = ACTIONS(2761),
- [anon_sym_export] = ACTIONS(2761),
- [anon_sym_default] = ACTIONS(2761),
- [anon_sym_type] = ACTIONS(2761),
- [anon_sym_namespace] = ACTIONS(2761),
- [anon_sym_LBRACE] = ACTIONS(2759),
- [anon_sym_RBRACE] = ACTIONS(2759),
- [anon_sym_typeof] = ACTIONS(2761),
- [anon_sym_import] = ACTIONS(2761),
- [anon_sym_with] = ACTIONS(2761),
- [anon_sym_var] = ACTIONS(2761),
- [anon_sym_let] = ACTIONS(2761),
- [anon_sym_const] = ACTIONS(2761),
- [anon_sym_BANG] = ACTIONS(2759),
- [anon_sym_else] = ACTIONS(2761),
- [anon_sym_if] = ACTIONS(2761),
- [anon_sym_switch] = ACTIONS(2761),
- [anon_sym_for] = ACTIONS(2761),
- [anon_sym_LPAREN] = ACTIONS(2759),
- [anon_sym_await] = ACTIONS(2761),
- [anon_sym_while] = ACTIONS(2761),
- [anon_sym_do] = ACTIONS(2761),
- [anon_sym_try] = ACTIONS(2761),
- [anon_sym_break] = ACTIONS(2761),
- [anon_sym_continue] = ACTIONS(2761),
- [anon_sym_debugger] = ACTIONS(2761),
- [anon_sym_return] = ACTIONS(2761),
- [anon_sym_throw] = ACTIONS(2761),
- [anon_sym_SEMI] = ACTIONS(2759),
- [anon_sym_case] = ACTIONS(2761),
- [anon_sym_yield] = ACTIONS(2761),
- [anon_sym_LBRACK] = ACTIONS(2759),
- [sym_glimmer_opening_tag] = ACTIONS(2759),
- [anon_sym_DQUOTE] = ACTIONS(2759),
- [anon_sym_SQUOTE] = ACTIONS(2759),
- [anon_sym_class] = ACTIONS(2761),
- [anon_sym_async] = ACTIONS(2761),
- [anon_sym_function] = ACTIONS(2761),
- [anon_sym_new] = ACTIONS(2761),
- [anon_sym_using] = ACTIONS(2761),
- [anon_sym_PLUS] = ACTIONS(2761),
- [anon_sym_DASH] = ACTIONS(2761),
- [anon_sym_SLASH] = ACTIONS(2761),
- [anon_sym_LT] = ACTIONS(2761),
- [anon_sym_TILDE] = ACTIONS(2759),
- [anon_sym_void] = ACTIONS(2761),
- [anon_sym_delete] = ACTIONS(2761),
- [anon_sym_PLUS_PLUS] = ACTIONS(2759),
- [anon_sym_DASH_DASH] = ACTIONS(2759),
- [sym_comment] = ACTIONS(5),
- [anon_sym_BQUOTE] = ACTIONS(2759),
- [sym_number] = ACTIONS(2759),
- [sym_private_property_identifier] = ACTIONS(2759),
- [sym_this] = ACTIONS(2761),
- [sym_super] = ACTIONS(2761),
- [sym_true] = ACTIONS(2761),
- [sym_false] = ACTIONS(2761),
- [sym_null] = ACTIONS(2761),
- [sym_undefined] = ACTIONS(2761),
- [anon_sym_AT] = ACTIONS(2759),
- [anon_sym_static] = ACTIONS(2761),
- [anon_sym_readonly] = ACTIONS(2761),
- [anon_sym_get] = ACTIONS(2761),
- [anon_sym_set] = ACTIONS(2761),
- [anon_sym_declare] = ACTIONS(2761),
- [anon_sym_public] = ACTIONS(2761),
- [anon_sym_private] = ACTIONS(2761),
- [anon_sym_protected] = ACTIONS(2761),
- [anon_sym_override] = ACTIONS(2761),
- [anon_sym_module] = ACTIONS(2761),
- [anon_sym_any] = ACTIONS(2761),
- [anon_sym_number] = ACTIONS(2761),
- [anon_sym_boolean] = ACTIONS(2761),
- [anon_sym_string] = ACTIONS(2761),
- [anon_sym_symbol] = ACTIONS(2761),
- [anon_sym_object] = ACTIONS(2761),
- [anon_sym_abstract] = ACTIONS(2761),
- [anon_sym_interface] = ACTIONS(2761),
- [anon_sym_enum] = ACTIONS(2761),
- [sym_html_comment] = ACTIONS(5),
- },
- [830] = {
- [ts_builtin_sym_end] = ACTIONS(2759),
- [sym_identifier] = ACTIONS(2761),
- [anon_sym_export] = ACTIONS(2761),
- [anon_sym_default] = ACTIONS(2761),
- [anon_sym_type] = ACTIONS(2761),
- [anon_sym_namespace] = ACTIONS(2761),
- [anon_sym_LBRACE] = ACTIONS(2759),
- [anon_sym_RBRACE] = ACTIONS(2759),
- [anon_sym_typeof] = ACTIONS(2761),
- [anon_sym_import] = ACTIONS(2761),
- [anon_sym_with] = ACTIONS(2761),
- [anon_sym_var] = ACTIONS(2761),
- [anon_sym_let] = ACTIONS(2761),
- [anon_sym_const] = ACTIONS(2761),
- [anon_sym_BANG] = ACTIONS(2759),
- [anon_sym_else] = ACTIONS(2761),
- [anon_sym_if] = ACTIONS(2761),
- [anon_sym_switch] = ACTIONS(2761),
- [anon_sym_for] = ACTIONS(2761),
- [anon_sym_LPAREN] = ACTIONS(2759),
- [anon_sym_await] = ACTIONS(2761),
- [anon_sym_while] = ACTIONS(2761),
- [anon_sym_do] = ACTIONS(2761),
- [anon_sym_try] = ACTIONS(2761),
- [anon_sym_break] = ACTIONS(2761),
- [anon_sym_continue] = ACTIONS(2761),
- [anon_sym_debugger] = ACTIONS(2761),
- [anon_sym_return] = ACTIONS(2761),
- [anon_sym_throw] = ACTIONS(2761),
- [anon_sym_SEMI] = ACTIONS(2759),
- [anon_sym_case] = ACTIONS(2761),
- [anon_sym_yield] = ACTIONS(2761),
- [anon_sym_LBRACK] = ACTIONS(2759),
- [sym_glimmer_opening_tag] = ACTIONS(2759),
- [anon_sym_DQUOTE] = ACTIONS(2759),
- [anon_sym_SQUOTE] = ACTIONS(2759),
- [anon_sym_class] = ACTIONS(2761),
- [anon_sym_async] = ACTIONS(2761),
- [anon_sym_function] = ACTIONS(2761),
- [anon_sym_new] = ACTIONS(2761),
- [anon_sym_using] = ACTIONS(2761),
- [anon_sym_PLUS] = ACTIONS(2761),
- [anon_sym_DASH] = ACTIONS(2761),
- [anon_sym_SLASH] = ACTIONS(2761),
- [anon_sym_LT] = ACTIONS(2761),
- [anon_sym_TILDE] = ACTIONS(2759),
- [anon_sym_void] = ACTIONS(2761),
- [anon_sym_delete] = ACTIONS(2761),
- [anon_sym_PLUS_PLUS] = ACTIONS(2759),
- [anon_sym_DASH_DASH] = ACTIONS(2759),
- [sym_comment] = ACTIONS(5),
- [anon_sym_BQUOTE] = ACTIONS(2759),
- [sym_number] = ACTIONS(2759),
- [sym_private_property_identifier] = ACTIONS(2759),
- [sym_this] = ACTIONS(2761),
- [sym_super] = ACTIONS(2761),
- [sym_true] = ACTIONS(2761),
- [sym_false] = ACTIONS(2761),
- [sym_null] = ACTIONS(2761),
- [sym_undefined] = ACTIONS(2761),
- [anon_sym_AT] = ACTIONS(2759),
- [anon_sym_static] = ACTIONS(2761),
- [anon_sym_readonly] = ACTIONS(2761),
- [anon_sym_get] = ACTIONS(2761),
- [anon_sym_set] = ACTIONS(2761),
- [anon_sym_declare] = ACTIONS(2761),
- [anon_sym_public] = ACTIONS(2761),
- [anon_sym_private] = ACTIONS(2761),
- [anon_sym_protected] = ACTIONS(2761),
- [anon_sym_override] = ACTIONS(2761),
- [anon_sym_module] = ACTIONS(2761),
- [anon_sym_any] = ACTIONS(2761),
- [anon_sym_number] = ACTIONS(2761),
- [anon_sym_boolean] = ACTIONS(2761),
- [anon_sym_string] = ACTIONS(2761),
- [anon_sym_symbol] = ACTIONS(2761),
- [anon_sym_object] = ACTIONS(2761),
- [anon_sym_abstract] = ACTIONS(2761),
- [anon_sym_interface] = ACTIONS(2761),
- [anon_sym_enum] = ACTIONS(2761),
- [sym_html_comment] = ACTIONS(5),
- },
- [831] = {
- [ts_builtin_sym_end] = ACTIONS(2763),
- [sym_identifier] = ACTIONS(2765),
- [anon_sym_export] = ACTIONS(2765),
- [anon_sym_default] = ACTIONS(2765),
- [anon_sym_type] = ACTIONS(2765),
- [anon_sym_namespace] = ACTIONS(2765),
- [anon_sym_LBRACE] = ACTIONS(2763),
- [anon_sym_RBRACE] = ACTIONS(2763),
- [anon_sym_typeof] = ACTIONS(2765),
- [anon_sym_import] = ACTIONS(2765),
- [anon_sym_with] = ACTIONS(2765),
- [anon_sym_var] = ACTIONS(2765),
- [anon_sym_let] = ACTIONS(2765),
- [anon_sym_const] = ACTIONS(2765),
- [anon_sym_BANG] = ACTIONS(2763),
- [anon_sym_else] = ACTIONS(2765),
- [anon_sym_if] = ACTIONS(2765),
- [anon_sym_switch] = ACTIONS(2765),
- [anon_sym_for] = ACTIONS(2765),
- [anon_sym_LPAREN] = ACTIONS(2763),
- [anon_sym_await] = ACTIONS(2765),
- [anon_sym_while] = ACTIONS(2765),
- [anon_sym_do] = ACTIONS(2765),
- [anon_sym_try] = ACTIONS(2765),
- [anon_sym_break] = ACTIONS(2765),
- [anon_sym_continue] = ACTIONS(2765),
- [anon_sym_debugger] = ACTIONS(2765),
- [anon_sym_return] = ACTIONS(2765),
- [anon_sym_throw] = ACTIONS(2765),
- [anon_sym_SEMI] = ACTIONS(2763),
- [anon_sym_case] = ACTIONS(2765),
- [anon_sym_yield] = ACTIONS(2765),
- [anon_sym_LBRACK] = ACTIONS(2763),
- [sym_glimmer_opening_tag] = ACTIONS(2763),
- [anon_sym_DQUOTE] = ACTIONS(2763),
- [anon_sym_SQUOTE] = ACTIONS(2763),
- [anon_sym_class] = ACTIONS(2765),
- [anon_sym_async] = ACTIONS(2765),
- [anon_sym_function] = ACTIONS(2765),
- [anon_sym_new] = ACTIONS(2765),
- [anon_sym_using] = ACTIONS(2765),
- [anon_sym_PLUS] = ACTIONS(2765),
- [anon_sym_DASH] = ACTIONS(2765),
- [anon_sym_SLASH] = ACTIONS(2765),
- [anon_sym_LT] = ACTIONS(2765),
- [anon_sym_TILDE] = ACTIONS(2763),
- [anon_sym_void] = ACTIONS(2765),
- [anon_sym_delete] = ACTIONS(2765),
- [anon_sym_PLUS_PLUS] = ACTIONS(2763),
- [anon_sym_DASH_DASH] = ACTIONS(2763),
- [sym_comment] = ACTIONS(5),
- [anon_sym_BQUOTE] = ACTIONS(2763),
- [sym_number] = ACTIONS(2763),
- [sym_private_property_identifier] = ACTIONS(2763),
- [sym_this] = ACTIONS(2765),
- [sym_super] = ACTIONS(2765),
- [sym_true] = ACTIONS(2765),
- [sym_false] = ACTIONS(2765),
- [sym_null] = ACTIONS(2765),
- [sym_undefined] = ACTIONS(2765),
- [anon_sym_AT] = ACTIONS(2763),
- [anon_sym_static] = ACTIONS(2765),
- [anon_sym_readonly] = ACTIONS(2765),
- [anon_sym_get] = ACTIONS(2765),
- [anon_sym_set] = ACTIONS(2765),
- [anon_sym_declare] = ACTIONS(2765),
- [anon_sym_public] = ACTIONS(2765),
- [anon_sym_private] = ACTIONS(2765),
- [anon_sym_protected] = ACTIONS(2765),
- [anon_sym_override] = ACTIONS(2765),
- [anon_sym_module] = ACTIONS(2765),
- [anon_sym_any] = ACTIONS(2765),
- [anon_sym_number] = ACTIONS(2765),
- [anon_sym_boolean] = ACTIONS(2765),
- [anon_sym_string] = ACTIONS(2765),
- [anon_sym_symbol] = ACTIONS(2765),
- [anon_sym_object] = ACTIONS(2765),
- [anon_sym_abstract] = ACTIONS(2765),
- [anon_sym_interface] = ACTIONS(2765),
- [anon_sym_enum] = ACTIONS(2765),
- [sym_html_comment] = ACTIONS(5),
- },
- [832] = {
- [ts_builtin_sym_end] = ACTIONS(2767),
- [sym_identifier] = ACTIONS(2769),
- [anon_sym_export] = ACTIONS(2769),
- [anon_sym_default] = ACTIONS(2769),
- [anon_sym_type] = ACTIONS(2769),
- [anon_sym_namespace] = ACTIONS(2769),
- [anon_sym_LBRACE] = ACTIONS(2767),
- [anon_sym_RBRACE] = ACTIONS(2767),
- [anon_sym_typeof] = ACTIONS(2769),
- [anon_sym_import] = ACTIONS(2769),
- [anon_sym_with] = ACTIONS(2769),
- [anon_sym_var] = ACTIONS(2769),
- [anon_sym_let] = ACTIONS(2769),
- [anon_sym_const] = ACTIONS(2769),
- [anon_sym_BANG] = ACTIONS(2767),
- [anon_sym_else] = ACTIONS(2769),
- [anon_sym_if] = ACTIONS(2769),
- [anon_sym_switch] = ACTIONS(2769),
- [anon_sym_for] = ACTIONS(2769),
- [anon_sym_LPAREN] = ACTIONS(2767),
- [anon_sym_await] = ACTIONS(2769),
- [anon_sym_while] = ACTIONS(2769),
- [anon_sym_do] = ACTIONS(2769),
- [anon_sym_try] = ACTIONS(2769),
- [anon_sym_break] = ACTIONS(2769),
- [anon_sym_continue] = ACTIONS(2769),
- [anon_sym_debugger] = ACTIONS(2769),
- [anon_sym_return] = ACTIONS(2769),
- [anon_sym_throw] = ACTIONS(2769),
- [anon_sym_SEMI] = ACTIONS(2767),
- [anon_sym_case] = ACTIONS(2769),
- [anon_sym_yield] = ACTIONS(2769),
- [anon_sym_LBRACK] = ACTIONS(2767),
- [sym_glimmer_opening_tag] = ACTIONS(2767),
- [anon_sym_DQUOTE] = ACTIONS(2767),
- [anon_sym_SQUOTE] = ACTIONS(2767),
- [anon_sym_class] = ACTIONS(2769),
- [anon_sym_async] = ACTIONS(2769),
- [anon_sym_function] = ACTIONS(2769),
- [anon_sym_new] = ACTIONS(2769),
- [anon_sym_using] = ACTIONS(2769),
- [anon_sym_PLUS] = ACTIONS(2769),
- [anon_sym_DASH] = ACTIONS(2769),
- [anon_sym_SLASH] = ACTIONS(2769),
- [anon_sym_LT] = ACTIONS(2769),
- [anon_sym_TILDE] = ACTIONS(2767),
- [anon_sym_void] = ACTIONS(2769),
- [anon_sym_delete] = ACTIONS(2769),
- [anon_sym_PLUS_PLUS] = ACTIONS(2767),
- [anon_sym_DASH_DASH] = ACTIONS(2767),
- [sym_comment] = ACTIONS(5),
- [anon_sym_BQUOTE] = ACTIONS(2767),
- [sym_number] = ACTIONS(2767),
- [sym_private_property_identifier] = ACTIONS(2767),
- [sym_this] = ACTIONS(2769),
- [sym_super] = ACTIONS(2769),
- [sym_true] = ACTIONS(2769),
- [sym_false] = ACTIONS(2769),
- [sym_null] = ACTIONS(2769),
- [sym_undefined] = ACTIONS(2769),
- [anon_sym_AT] = ACTIONS(2767),
- [anon_sym_static] = ACTIONS(2769),
- [anon_sym_readonly] = ACTIONS(2769),
- [anon_sym_get] = ACTIONS(2769),
- [anon_sym_set] = ACTIONS(2769),
- [anon_sym_declare] = ACTIONS(2769),
- [anon_sym_public] = ACTIONS(2769),
- [anon_sym_private] = ACTIONS(2769),
- [anon_sym_protected] = ACTIONS(2769),
- [anon_sym_override] = ACTIONS(2769),
- [anon_sym_module] = ACTIONS(2769),
- [anon_sym_any] = ACTIONS(2769),
- [anon_sym_number] = ACTIONS(2769),
- [anon_sym_boolean] = ACTIONS(2769),
- [anon_sym_string] = ACTIONS(2769),
- [anon_sym_symbol] = ACTIONS(2769),
- [anon_sym_object] = ACTIONS(2769),
- [anon_sym_abstract] = ACTIONS(2769),
- [anon_sym_interface] = ACTIONS(2769),
- [anon_sym_enum] = ACTIONS(2769),
- [sym_html_comment] = ACTIONS(5),
- },
- [833] = {
- [ts_builtin_sym_end] = ACTIONS(2771),
- [sym_identifier] = ACTIONS(2773),
- [anon_sym_export] = ACTIONS(2773),
- [anon_sym_default] = ACTIONS(2773),
- [anon_sym_type] = ACTIONS(2773),
- [anon_sym_namespace] = ACTIONS(2773),
- [anon_sym_LBRACE] = ACTIONS(2771),
- [anon_sym_RBRACE] = ACTIONS(2771),
- [anon_sym_typeof] = ACTIONS(2773),
- [anon_sym_import] = ACTIONS(2773),
- [anon_sym_with] = ACTIONS(2773),
- [anon_sym_var] = ACTIONS(2773),
- [anon_sym_let] = ACTIONS(2773),
- [anon_sym_const] = ACTIONS(2773),
- [anon_sym_BANG] = ACTIONS(2771),
- [anon_sym_else] = ACTIONS(2773),
- [anon_sym_if] = ACTIONS(2773),
- [anon_sym_switch] = ACTIONS(2773),
- [anon_sym_for] = ACTIONS(2773),
- [anon_sym_LPAREN] = ACTIONS(2771),
- [anon_sym_await] = ACTIONS(2773),
- [anon_sym_while] = ACTIONS(2773),
- [anon_sym_do] = ACTIONS(2773),
- [anon_sym_try] = ACTIONS(2773),
- [anon_sym_break] = ACTIONS(2773),
- [anon_sym_continue] = ACTIONS(2773),
- [anon_sym_debugger] = ACTIONS(2773),
- [anon_sym_return] = ACTIONS(2773),
- [anon_sym_throw] = ACTIONS(2773),
- [anon_sym_SEMI] = ACTIONS(2771),
- [anon_sym_case] = ACTIONS(2773),
- [anon_sym_yield] = ACTIONS(2773),
- [anon_sym_LBRACK] = ACTIONS(2771),
- [sym_glimmer_opening_tag] = ACTIONS(2771),
- [anon_sym_DQUOTE] = ACTIONS(2771),
- [anon_sym_SQUOTE] = ACTIONS(2771),
- [anon_sym_class] = ACTIONS(2773),
- [anon_sym_async] = ACTIONS(2773),
- [anon_sym_function] = ACTIONS(2773),
- [anon_sym_new] = ACTIONS(2773),
- [anon_sym_using] = ACTIONS(2773),
- [anon_sym_PLUS] = ACTIONS(2773),
- [anon_sym_DASH] = ACTIONS(2773),
- [anon_sym_SLASH] = ACTIONS(2773),
- [anon_sym_LT] = ACTIONS(2773),
- [anon_sym_TILDE] = ACTIONS(2771),
- [anon_sym_void] = ACTIONS(2773),
- [anon_sym_delete] = ACTIONS(2773),
- [anon_sym_PLUS_PLUS] = ACTIONS(2771),
- [anon_sym_DASH_DASH] = ACTIONS(2771),
- [sym_comment] = ACTIONS(5),
- [anon_sym_BQUOTE] = ACTIONS(2771),
- [sym_number] = ACTIONS(2771),
- [sym_private_property_identifier] = ACTIONS(2771),
- [sym_this] = ACTIONS(2773),
- [sym_super] = ACTIONS(2773),
- [sym_true] = ACTIONS(2773),
- [sym_false] = ACTIONS(2773),
- [sym_null] = ACTIONS(2773),
- [sym_undefined] = ACTIONS(2773),
- [anon_sym_AT] = ACTIONS(2771),
- [anon_sym_static] = ACTIONS(2773),
- [anon_sym_readonly] = ACTIONS(2773),
- [anon_sym_get] = ACTIONS(2773),
- [anon_sym_set] = ACTIONS(2773),
- [anon_sym_declare] = ACTIONS(2773),
- [anon_sym_public] = ACTIONS(2773),
- [anon_sym_private] = ACTIONS(2773),
- [anon_sym_protected] = ACTIONS(2773),
- [anon_sym_override] = ACTIONS(2773),
- [anon_sym_module] = ACTIONS(2773),
- [anon_sym_any] = ACTIONS(2773),
- [anon_sym_number] = ACTIONS(2773),
- [anon_sym_boolean] = ACTIONS(2773),
- [anon_sym_string] = ACTIONS(2773),
- [anon_sym_symbol] = ACTIONS(2773),
- [anon_sym_object] = ACTIONS(2773),
- [anon_sym_abstract] = ACTIONS(2773),
- [anon_sym_interface] = ACTIONS(2773),
- [anon_sym_enum] = ACTIONS(2773),
- [sym_html_comment] = ACTIONS(5),
- },
- [834] = {
- [ts_builtin_sym_end] = ACTIONS(2775),
- [sym_identifier] = ACTIONS(2777),
- [anon_sym_export] = ACTIONS(2777),
- [anon_sym_default] = ACTIONS(2777),
- [anon_sym_type] = ACTIONS(2777),
- [anon_sym_namespace] = ACTIONS(2777),
- [anon_sym_LBRACE] = ACTIONS(2775),
- [anon_sym_RBRACE] = ACTIONS(2775),
- [anon_sym_typeof] = ACTIONS(2777),
- [anon_sym_import] = ACTIONS(2777),
- [anon_sym_with] = ACTIONS(2777),
- [anon_sym_var] = ACTIONS(2777),
- [anon_sym_let] = ACTIONS(2777),
- [anon_sym_const] = ACTIONS(2777),
- [anon_sym_BANG] = ACTIONS(2775),
- [anon_sym_else] = ACTIONS(2777),
- [anon_sym_if] = ACTIONS(2777),
- [anon_sym_switch] = ACTIONS(2777),
- [anon_sym_for] = ACTIONS(2777),
- [anon_sym_LPAREN] = ACTIONS(2775),
- [anon_sym_await] = ACTIONS(2777),
- [anon_sym_while] = ACTIONS(2777),
- [anon_sym_do] = ACTIONS(2777),
- [anon_sym_try] = ACTIONS(2777),
- [anon_sym_break] = ACTIONS(2777),
- [anon_sym_continue] = ACTIONS(2777),
- [anon_sym_debugger] = ACTIONS(2777),
- [anon_sym_return] = ACTIONS(2777),
- [anon_sym_throw] = ACTIONS(2777),
- [anon_sym_SEMI] = ACTIONS(2775),
- [anon_sym_case] = ACTIONS(2777),
- [anon_sym_yield] = ACTIONS(2777),
- [anon_sym_LBRACK] = ACTIONS(2775),
- [sym_glimmer_opening_tag] = ACTIONS(2775),
- [anon_sym_DQUOTE] = ACTIONS(2775),
- [anon_sym_SQUOTE] = ACTIONS(2775),
- [anon_sym_class] = ACTIONS(2777),
- [anon_sym_async] = ACTIONS(2777),
- [anon_sym_function] = ACTIONS(2777),
- [anon_sym_new] = ACTIONS(2777),
- [anon_sym_using] = ACTIONS(2777),
- [anon_sym_PLUS] = ACTIONS(2777),
- [anon_sym_DASH] = ACTIONS(2777),
- [anon_sym_SLASH] = ACTIONS(2777),
- [anon_sym_LT] = ACTIONS(2777),
- [anon_sym_TILDE] = ACTIONS(2775),
- [anon_sym_void] = ACTIONS(2777),
- [anon_sym_delete] = ACTIONS(2777),
- [anon_sym_PLUS_PLUS] = ACTIONS(2775),
- [anon_sym_DASH_DASH] = ACTIONS(2775),
- [sym_comment] = ACTIONS(5),
- [anon_sym_BQUOTE] = ACTIONS(2775),
- [sym_number] = ACTIONS(2775),
- [sym_private_property_identifier] = ACTIONS(2775),
- [sym_this] = ACTIONS(2777),
- [sym_super] = ACTIONS(2777),
- [sym_true] = ACTIONS(2777),
- [sym_false] = ACTIONS(2777),
- [sym_null] = ACTIONS(2777),
- [sym_undefined] = ACTIONS(2777),
- [anon_sym_AT] = ACTIONS(2775),
- [anon_sym_static] = ACTIONS(2777),
- [anon_sym_readonly] = ACTIONS(2777),
- [anon_sym_get] = ACTIONS(2777),
- [anon_sym_set] = ACTIONS(2777),
- [anon_sym_declare] = ACTIONS(2777),
- [anon_sym_public] = ACTIONS(2777),
- [anon_sym_private] = ACTIONS(2777),
- [anon_sym_protected] = ACTIONS(2777),
- [anon_sym_override] = ACTIONS(2777),
- [anon_sym_module] = ACTIONS(2777),
- [anon_sym_any] = ACTIONS(2777),
- [anon_sym_number] = ACTIONS(2777),
- [anon_sym_boolean] = ACTIONS(2777),
- [anon_sym_string] = ACTIONS(2777),
- [anon_sym_symbol] = ACTIONS(2777),
- [anon_sym_object] = ACTIONS(2777),
- [anon_sym_abstract] = ACTIONS(2777),
- [anon_sym_interface] = ACTIONS(2777),
- [anon_sym_enum] = ACTIONS(2777),
- [sym_html_comment] = ACTIONS(5),
- },
- [835] = {
- [ts_builtin_sym_end] = ACTIONS(2779),
- [sym_identifier] = ACTIONS(2781),
- [anon_sym_export] = ACTIONS(2781),
- [anon_sym_default] = ACTIONS(2781),
- [anon_sym_type] = ACTIONS(2781),
- [anon_sym_namespace] = ACTIONS(2781),
- [anon_sym_LBRACE] = ACTIONS(2779),
- [anon_sym_RBRACE] = ACTIONS(2779),
- [anon_sym_typeof] = ACTIONS(2781),
- [anon_sym_import] = ACTIONS(2781),
- [anon_sym_with] = ACTIONS(2781),
- [anon_sym_var] = ACTIONS(2781),
- [anon_sym_let] = ACTIONS(2781),
- [anon_sym_const] = ACTIONS(2781),
- [anon_sym_BANG] = ACTIONS(2779),
- [anon_sym_else] = ACTIONS(2781),
- [anon_sym_if] = ACTIONS(2781),
- [anon_sym_switch] = ACTIONS(2781),
- [anon_sym_for] = ACTIONS(2781),
- [anon_sym_LPAREN] = ACTIONS(2779),
- [anon_sym_await] = ACTIONS(2781),
- [anon_sym_while] = ACTIONS(2781),
- [anon_sym_do] = ACTIONS(2781),
- [anon_sym_try] = ACTIONS(2781),
- [anon_sym_break] = ACTIONS(2781),
- [anon_sym_continue] = ACTIONS(2781),
- [anon_sym_debugger] = ACTIONS(2781),
- [anon_sym_return] = ACTIONS(2781),
- [anon_sym_throw] = ACTIONS(2781),
- [anon_sym_SEMI] = ACTIONS(2779),
- [anon_sym_case] = ACTIONS(2781),
- [anon_sym_yield] = ACTIONS(2781),
- [anon_sym_LBRACK] = ACTIONS(2779),
- [sym_glimmer_opening_tag] = ACTIONS(2779),
- [anon_sym_DQUOTE] = ACTIONS(2779),
- [anon_sym_SQUOTE] = ACTIONS(2779),
- [anon_sym_class] = ACTIONS(2781),
- [anon_sym_async] = ACTIONS(2781),
- [anon_sym_function] = ACTIONS(2781),
- [anon_sym_new] = ACTIONS(2781),
- [anon_sym_using] = ACTIONS(2781),
- [anon_sym_PLUS] = ACTIONS(2781),
- [anon_sym_DASH] = ACTIONS(2781),
- [anon_sym_SLASH] = ACTIONS(2781),
- [anon_sym_LT] = ACTIONS(2781),
- [anon_sym_TILDE] = ACTIONS(2779),
- [anon_sym_void] = ACTIONS(2781),
- [anon_sym_delete] = ACTIONS(2781),
- [anon_sym_PLUS_PLUS] = ACTIONS(2779),
- [anon_sym_DASH_DASH] = ACTIONS(2779),
- [sym_comment] = ACTIONS(5),
- [anon_sym_BQUOTE] = ACTIONS(2779),
- [sym_number] = ACTIONS(2779),
- [sym_private_property_identifier] = ACTIONS(2779),
- [sym_this] = ACTIONS(2781),
- [sym_super] = ACTIONS(2781),
- [sym_true] = ACTIONS(2781),
- [sym_false] = ACTIONS(2781),
- [sym_null] = ACTIONS(2781),
- [sym_undefined] = ACTIONS(2781),
- [anon_sym_AT] = ACTIONS(2779),
- [anon_sym_static] = ACTIONS(2781),
- [anon_sym_readonly] = ACTIONS(2781),
- [anon_sym_get] = ACTIONS(2781),
- [anon_sym_set] = ACTIONS(2781),
- [anon_sym_declare] = ACTIONS(2781),
- [anon_sym_public] = ACTIONS(2781),
- [anon_sym_private] = ACTIONS(2781),
- [anon_sym_protected] = ACTIONS(2781),
- [anon_sym_override] = ACTIONS(2781),
- [anon_sym_module] = ACTIONS(2781),
- [anon_sym_any] = ACTIONS(2781),
- [anon_sym_number] = ACTIONS(2781),
- [anon_sym_boolean] = ACTIONS(2781),
- [anon_sym_string] = ACTIONS(2781),
- [anon_sym_symbol] = ACTIONS(2781),
- [anon_sym_object] = ACTIONS(2781),
- [anon_sym_abstract] = ACTIONS(2781),
- [anon_sym_interface] = ACTIONS(2781),
- [anon_sym_enum] = ACTIONS(2781),
- [sym_html_comment] = ACTIONS(5),
- },
- [836] = {
- [ts_builtin_sym_end] = ACTIONS(2783),
- [sym_identifier] = ACTIONS(2785),
- [anon_sym_export] = ACTIONS(2785),
- [anon_sym_default] = ACTIONS(2785),
- [anon_sym_type] = ACTIONS(2785),
- [anon_sym_namespace] = ACTIONS(2785),
- [anon_sym_LBRACE] = ACTIONS(2783),
- [anon_sym_RBRACE] = ACTIONS(2783),
- [anon_sym_typeof] = ACTIONS(2785),
- [anon_sym_import] = ACTIONS(2785),
- [anon_sym_with] = ACTIONS(2785),
- [anon_sym_var] = ACTIONS(2785),
- [anon_sym_let] = ACTIONS(2785),
- [anon_sym_const] = ACTIONS(2785),
- [anon_sym_BANG] = ACTIONS(2783),
- [anon_sym_else] = ACTIONS(2785),
- [anon_sym_if] = ACTIONS(2785),
- [anon_sym_switch] = ACTIONS(2785),
- [anon_sym_for] = ACTIONS(2785),
- [anon_sym_LPAREN] = ACTIONS(2783),
- [anon_sym_await] = ACTIONS(2785),
- [anon_sym_while] = ACTIONS(2785),
- [anon_sym_do] = ACTIONS(2785),
- [anon_sym_try] = ACTIONS(2785),
- [anon_sym_break] = ACTIONS(2785),
- [anon_sym_continue] = ACTIONS(2785),
- [anon_sym_debugger] = ACTIONS(2785),
- [anon_sym_return] = ACTIONS(2785),
- [anon_sym_throw] = ACTIONS(2785),
- [anon_sym_SEMI] = ACTIONS(2783),
- [anon_sym_case] = ACTIONS(2785),
- [anon_sym_yield] = ACTIONS(2785),
- [anon_sym_LBRACK] = ACTIONS(2783),
- [sym_glimmer_opening_tag] = ACTIONS(2783),
- [anon_sym_DQUOTE] = ACTIONS(2783),
- [anon_sym_SQUOTE] = ACTIONS(2783),
- [anon_sym_class] = ACTIONS(2785),
- [anon_sym_async] = ACTIONS(2785),
- [anon_sym_function] = ACTIONS(2785),
- [anon_sym_new] = ACTIONS(2785),
- [anon_sym_using] = ACTIONS(2785),
- [anon_sym_PLUS] = ACTIONS(2785),
- [anon_sym_DASH] = ACTIONS(2785),
- [anon_sym_SLASH] = ACTIONS(2785),
- [anon_sym_LT] = ACTIONS(2785),
- [anon_sym_TILDE] = ACTIONS(2783),
- [anon_sym_void] = ACTIONS(2785),
- [anon_sym_delete] = ACTIONS(2785),
- [anon_sym_PLUS_PLUS] = ACTIONS(2783),
- [anon_sym_DASH_DASH] = ACTIONS(2783),
- [sym_comment] = ACTIONS(5),
- [anon_sym_BQUOTE] = ACTIONS(2783),
- [sym_number] = ACTIONS(2783),
- [sym_private_property_identifier] = ACTIONS(2783),
- [sym_this] = ACTIONS(2785),
- [sym_super] = ACTIONS(2785),
- [sym_true] = ACTIONS(2785),
- [sym_false] = ACTIONS(2785),
- [sym_null] = ACTIONS(2785),
- [sym_undefined] = ACTIONS(2785),
- [anon_sym_AT] = ACTIONS(2783),
- [anon_sym_static] = ACTIONS(2785),
- [anon_sym_readonly] = ACTIONS(2785),
- [anon_sym_get] = ACTIONS(2785),
- [anon_sym_set] = ACTIONS(2785),
- [anon_sym_declare] = ACTIONS(2785),
- [anon_sym_public] = ACTIONS(2785),
- [anon_sym_private] = ACTIONS(2785),
- [anon_sym_protected] = ACTIONS(2785),
- [anon_sym_override] = ACTIONS(2785),
- [anon_sym_module] = ACTIONS(2785),
- [anon_sym_any] = ACTIONS(2785),
- [anon_sym_number] = ACTIONS(2785),
- [anon_sym_boolean] = ACTIONS(2785),
- [anon_sym_string] = ACTIONS(2785),
- [anon_sym_symbol] = ACTIONS(2785),
- [anon_sym_object] = ACTIONS(2785),
- [anon_sym_abstract] = ACTIONS(2785),
- [anon_sym_interface] = ACTIONS(2785),
- [anon_sym_enum] = ACTIONS(2785),
- [sym_html_comment] = ACTIONS(5),
- },
- [837] = {
- [ts_builtin_sym_end] = ACTIONS(2787),
- [sym_identifier] = ACTIONS(2789),
- [anon_sym_export] = ACTIONS(2789),
- [anon_sym_default] = ACTIONS(2789),
- [anon_sym_type] = ACTIONS(2789),
- [anon_sym_namespace] = ACTIONS(2789),
- [anon_sym_LBRACE] = ACTIONS(2787),
- [anon_sym_RBRACE] = ACTIONS(2787),
- [anon_sym_typeof] = ACTIONS(2789),
- [anon_sym_import] = ACTIONS(2789),
- [anon_sym_with] = ACTIONS(2789),
- [anon_sym_var] = ACTIONS(2789),
- [anon_sym_let] = ACTIONS(2789),
- [anon_sym_const] = ACTIONS(2789),
- [anon_sym_BANG] = ACTIONS(2787),
- [anon_sym_else] = ACTIONS(2789),
- [anon_sym_if] = ACTIONS(2789),
- [anon_sym_switch] = ACTIONS(2789),
- [anon_sym_for] = ACTIONS(2789),
- [anon_sym_LPAREN] = ACTIONS(2787),
- [anon_sym_await] = ACTIONS(2789),
- [anon_sym_while] = ACTIONS(2789),
- [anon_sym_do] = ACTIONS(2789),
- [anon_sym_try] = ACTIONS(2789),
- [anon_sym_break] = ACTIONS(2789),
- [anon_sym_continue] = ACTIONS(2789),
- [anon_sym_debugger] = ACTIONS(2789),
- [anon_sym_return] = ACTIONS(2789),
- [anon_sym_throw] = ACTIONS(2789),
- [anon_sym_SEMI] = ACTIONS(2787),
- [anon_sym_case] = ACTIONS(2789),
- [anon_sym_yield] = ACTIONS(2789),
- [anon_sym_LBRACK] = ACTIONS(2787),
- [sym_glimmer_opening_tag] = ACTIONS(2787),
- [anon_sym_DQUOTE] = ACTIONS(2787),
- [anon_sym_SQUOTE] = ACTIONS(2787),
- [anon_sym_class] = ACTIONS(2789),
- [anon_sym_async] = ACTIONS(2789),
- [anon_sym_function] = ACTIONS(2789),
- [anon_sym_new] = ACTIONS(2789),
- [anon_sym_using] = ACTIONS(2789),
- [anon_sym_PLUS] = ACTIONS(2789),
- [anon_sym_DASH] = ACTIONS(2789),
- [anon_sym_SLASH] = ACTIONS(2789),
- [anon_sym_LT] = ACTIONS(2789),
- [anon_sym_TILDE] = ACTIONS(2787),
- [anon_sym_void] = ACTIONS(2789),
- [anon_sym_delete] = ACTIONS(2789),
- [anon_sym_PLUS_PLUS] = ACTIONS(2787),
- [anon_sym_DASH_DASH] = ACTIONS(2787),
- [sym_comment] = ACTIONS(5),
- [anon_sym_BQUOTE] = ACTIONS(2787),
- [sym_number] = ACTIONS(2787),
- [sym_private_property_identifier] = ACTIONS(2787),
- [sym_this] = ACTIONS(2789),
- [sym_super] = ACTIONS(2789),
- [sym_true] = ACTIONS(2789),
- [sym_false] = ACTIONS(2789),
- [sym_null] = ACTIONS(2789),
- [sym_undefined] = ACTIONS(2789),
- [anon_sym_AT] = ACTIONS(2787),
- [anon_sym_static] = ACTIONS(2789),
- [anon_sym_readonly] = ACTIONS(2789),
- [anon_sym_get] = ACTIONS(2789),
- [anon_sym_set] = ACTIONS(2789),
- [anon_sym_declare] = ACTIONS(2789),
- [anon_sym_public] = ACTIONS(2789),
- [anon_sym_private] = ACTIONS(2789),
- [anon_sym_protected] = ACTIONS(2789),
- [anon_sym_override] = ACTIONS(2789),
- [anon_sym_module] = ACTIONS(2789),
- [anon_sym_any] = ACTIONS(2789),
- [anon_sym_number] = ACTIONS(2789),
- [anon_sym_boolean] = ACTIONS(2789),
- [anon_sym_string] = ACTIONS(2789),
- [anon_sym_symbol] = ACTIONS(2789),
- [anon_sym_object] = ACTIONS(2789),
- [anon_sym_abstract] = ACTIONS(2789),
- [anon_sym_interface] = ACTIONS(2789),
- [anon_sym_enum] = ACTIONS(2789),
- [sym_html_comment] = ACTIONS(5),
- },
- [838] = {
- [ts_builtin_sym_end] = ACTIONS(2791),
- [sym_identifier] = ACTIONS(2793),
- [anon_sym_export] = ACTIONS(2793),
- [anon_sym_default] = ACTIONS(2793),
- [anon_sym_type] = ACTIONS(2793),
- [anon_sym_namespace] = ACTIONS(2793),
- [anon_sym_LBRACE] = ACTIONS(2791),
- [anon_sym_RBRACE] = ACTIONS(2791),
- [anon_sym_typeof] = ACTIONS(2793),
- [anon_sym_import] = ACTIONS(2793),
- [anon_sym_with] = ACTIONS(2793),
- [anon_sym_var] = ACTIONS(2793),
- [anon_sym_let] = ACTIONS(2793),
- [anon_sym_const] = ACTIONS(2793),
- [anon_sym_BANG] = ACTIONS(2791),
- [anon_sym_else] = ACTIONS(2793),
- [anon_sym_if] = ACTIONS(2793),
- [anon_sym_switch] = ACTIONS(2793),
- [anon_sym_for] = ACTIONS(2793),
- [anon_sym_LPAREN] = ACTIONS(2791),
- [anon_sym_await] = ACTIONS(2793),
- [anon_sym_while] = ACTIONS(2793),
- [anon_sym_do] = ACTIONS(2793),
- [anon_sym_try] = ACTIONS(2793),
- [anon_sym_break] = ACTIONS(2793),
- [anon_sym_continue] = ACTIONS(2793),
- [anon_sym_debugger] = ACTIONS(2793),
- [anon_sym_return] = ACTIONS(2793),
- [anon_sym_throw] = ACTIONS(2793),
- [anon_sym_SEMI] = ACTIONS(2791),
- [anon_sym_case] = ACTIONS(2793),
- [anon_sym_yield] = ACTIONS(2793),
- [anon_sym_LBRACK] = ACTIONS(2791),
- [sym_glimmer_opening_tag] = ACTIONS(2791),
- [anon_sym_DQUOTE] = ACTIONS(2791),
- [anon_sym_SQUOTE] = ACTIONS(2791),
- [anon_sym_class] = ACTIONS(2793),
- [anon_sym_async] = ACTIONS(2793),
- [anon_sym_function] = ACTIONS(2793),
- [anon_sym_new] = ACTIONS(2793),
- [anon_sym_using] = ACTIONS(2793),
- [anon_sym_PLUS] = ACTIONS(2793),
- [anon_sym_DASH] = ACTIONS(2793),
- [anon_sym_SLASH] = ACTIONS(2793),
- [anon_sym_LT] = ACTIONS(2793),
- [anon_sym_TILDE] = ACTIONS(2791),
- [anon_sym_void] = ACTIONS(2793),
- [anon_sym_delete] = ACTIONS(2793),
- [anon_sym_PLUS_PLUS] = ACTIONS(2791),
- [anon_sym_DASH_DASH] = ACTIONS(2791),
- [sym_comment] = ACTIONS(5),
- [anon_sym_BQUOTE] = ACTIONS(2791),
- [sym_number] = ACTIONS(2791),
- [sym_private_property_identifier] = ACTIONS(2791),
- [sym_this] = ACTIONS(2793),
- [sym_super] = ACTIONS(2793),
- [sym_true] = ACTIONS(2793),
- [sym_false] = ACTIONS(2793),
- [sym_null] = ACTIONS(2793),
- [sym_undefined] = ACTIONS(2793),
- [anon_sym_AT] = ACTIONS(2791),
- [anon_sym_static] = ACTIONS(2793),
- [anon_sym_readonly] = ACTIONS(2793),
- [anon_sym_get] = ACTIONS(2793),
- [anon_sym_set] = ACTIONS(2793),
- [anon_sym_declare] = ACTIONS(2793),
- [anon_sym_public] = ACTIONS(2793),
- [anon_sym_private] = ACTIONS(2793),
- [anon_sym_protected] = ACTIONS(2793),
- [anon_sym_override] = ACTIONS(2793),
- [anon_sym_module] = ACTIONS(2793),
- [anon_sym_any] = ACTIONS(2793),
- [anon_sym_number] = ACTIONS(2793),
- [anon_sym_boolean] = ACTIONS(2793),
- [anon_sym_string] = ACTIONS(2793),
- [anon_sym_symbol] = ACTIONS(2793),
- [anon_sym_object] = ACTIONS(2793),
- [anon_sym_abstract] = ACTIONS(2793),
- [anon_sym_interface] = ACTIONS(2793),
- [anon_sym_enum] = ACTIONS(2793),
- [sym_html_comment] = ACTIONS(5),
- },
- [839] = {
- [ts_builtin_sym_end] = ACTIONS(2795),
- [sym_identifier] = ACTIONS(2797),
- [anon_sym_export] = ACTIONS(2797),
- [anon_sym_default] = ACTIONS(2797),
- [anon_sym_type] = ACTIONS(2797),
- [anon_sym_namespace] = ACTIONS(2797),
- [anon_sym_LBRACE] = ACTIONS(2795),
- [anon_sym_RBRACE] = ACTIONS(2795),
- [anon_sym_typeof] = ACTIONS(2797),
- [anon_sym_import] = ACTIONS(2797),
- [anon_sym_with] = ACTIONS(2797),
- [anon_sym_var] = ACTIONS(2797),
- [anon_sym_let] = ACTIONS(2797),
- [anon_sym_const] = ACTIONS(2797),
- [anon_sym_BANG] = ACTIONS(2795),
- [anon_sym_else] = ACTIONS(2797),
- [anon_sym_if] = ACTIONS(2797),
- [anon_sym_switch] = ACTIONS(2797),
- [anon_sym_for] = ACTIONS(2797),
- [anon_sym_LPAREN] = ACTIONS(2795),
- [anon_sym_await] = ACTIONS(2797),
- [anon_sym_while] = ACTIONS(2797),
- [anon_sym_do] = ACTIONS(2797),
- [anon_sym_try] = ACTIONS(2797),
- [anon_sym_break] = ACTIONS(2797),
- [anon_sym_continue] = ACTIONS(2797),
- [anon_sym_debugger] = ACTIONS(2797),
- [anon_sym_return] = ACTIONS(2797),
- [anon_sym_throw] = ACTIONS(2797),
- [anon_sym_SEMI] = ACTIONS(2795),
- [anon_sym_case] = ACTIONS(2797),
- [anon_sym_yield] = ACTIONS(2797),
- [anon_sym_LBRACK] = ACTIONS(2795),
- [sym_glimmer_opening_tag] = ACTIONS(2795),
- [anon_sym_DQUOTE] = ACTIONS(2795),
- [anon_sym_SQUOTE] = ACTIONS(2795),
- [anon_sym_class] = ACTIONS(2797),
- [anon_sym_async] = ACTIONS(2797),
- [anon_sym_function] = ACTIONS(2797),
- [anon_sym_new] = ACTIONS(2797),
- [anon_sym_using] = ACTIONS(2797),
- [anon_sym_PLUS] = ACTIONS(2797),
- [anon_sym_DASH] = ACTIONS(2797),
- [anon_sym_SLASH] = ACTIONS(2797),
- [anon_sym_LT] = ACTIONS(2797),
- [anon_sym_TILDE] = ACTIONS(2795),
- [anon_sym_void] = ACTIONS(2797),
- [anon_sym_delete] = ACTIONS(2797),
- [anon_sym_PLUS_PLUS] = ACTIONS(2795),
- [anon_sym_DASH_DASH] = ACTIONS(2795),
- [sym_comment] = ACTIONS(5),
- [anon_sym_BQUOTE] = ACTIONS(2795),
- [sym_number] = ACTIONS(2795),
- [sym_private_property_identifier] = ACTIONS(2795),
- [sym_this] = ACTIONS(2797),
- [sym_super] = ACTIONS(2797),
- [sym_true] = ACTIONS(2797),
- [sym_false] = ACTIONS(2797),
- [sym_null] = ACTIONS(2797),
- [sym_undefined] = ACTIONS(2797),
- [anon_sym_AT] = ACTIONS(2795),
- [anon_sym_static] = ACTIONS(2797),
- [anon_sym_readonly] = ACTIONS(2797),
- [anon_sym_get] = ACTIONS(2797),
- [anon_sym_set] = ACTIONS(2797),
- [anon_sym_declare] = ACTIONS(2797),
- [anon_sym_public] = ACTIONS(2797),
- [anon_sym_private] = ACTIONS(2797),
- [anon_sym_protected] = ACTIONS(2797),
- [anon_sym_override] = ACTIONS(2797),
- [anon_sym_module] = ACTIONS(2797),
- [anon_sym_any] = ACTIONS(2797),
- [anon_sym_number] = ACTIONS(2797),
- [anon_sym_boolean] = ACTIONS(2797),
- [anon_sym_string] = ACTIONS(2797),
- [anon_sym_symbol] = ACTIONS(2797),
- [anon_sym_object] = ACTIONS(2797),
- [anon_sym_abstract] = ACTIONS(2797),
- [anon_sym_interface] = ACTIONS(2797),
- [anon_sym_enum] = ACTIONS(2797),
- [sym_html_comment] = ACTIONS(5),
- },
- [840] = {
- [ts_builtin_sym_end] = ACTIONS(2799),
- [sym_identifier] = ACTIONS(2801),
- [anon_sym_export] = ACTIONS(2801),
- [anon_sym_default] = ACTIONS(2801),
- [anon_sym_type] = ACTIONS(2801),
- [anon_sym_namespace] = ACTIONS(2801),
- [anon_sym_LBRACE] = ACTIONS(2799),
- [anon_sym_RBRACE] = ACTIONS(2799),
- [anon_sym_typeof] = ACTIONS(2801),
- [anon_sym_import] = ACTIONS(2801),
- [anon_sym_with] = ACTIONS(2801),
- [anon_sym_var] = ACTIONS(2801),
- [anon_sym_let] = ACTIONS(2801),
- [anon_sym_const] = ACTIONS(2801),
- [anon_sym_BANG] = ACTIONS(2799),
- [anon_sym_else] = ACTIONS(2801),
- [anon_sym_if] = ACTIONS(2801),
- [anon_sym_switch] = ACTIONS(2801),
- [anon_sym_for] = ACTIONS(2801),
- [anon_sym_LPAREN] = ACTIONS(2799),
- [anon_sym_await] = ACTIONS(2801),
- [anon_sym_while] = ACTIONS(2801),
- [anon_sym_do] = ACTIONS(2801),
- [anon_sym_try] = ACTIONS(2801),
- [anon_sym_break] = ACTIONS(2801),
- [anon_sym_continue] = ACTIONS(2801),
- [anon_sym_debugger] = ACTIONS(2801),
- [anon_sym_return] = ACTIONS(2801),
- [anon_sym_throw] = ACTIONS(2801),
- [anon_sym_SEMI] = ACTIONS(2799),
- [anon_sym_case] = ACTIONS(2801),
- [anon_sym_yield] = ACTIONS(2801),
- [anon_sym_LBRACK] = ACTIONS(2799),
- [sym_glimmer_opening_tag] = ACTIONS(2799),
- [anon_sym_DQUOTE] = ACTIONS(2799),
- [anon_sym_SQUOTE] = ACTIONS(2799),
- [anon_sym_class] = ACTIONS(2801),
- [anon_sym_async] = ACTIONS(2801),
- [anon_sym_function] = ACTIONS(2801),
- [anon_sym_new] = ACTIONS(2801),
- [anon_sym_using] = ACTIONS(2801),
- [anon_sym_PLUS] = ACTIONS(2801),
- [anon_sym_DASH] = ACTIONS(2801),
- [anon_sym_SLASH] = ACTIONS(2801),
- [anon_sym_LT] = ACTIONS(2801),
- [anon_sym_TILDE] = ACTIONS(2799),
- [anon_sym_void] = ACTIONS(2801),
- [anon_sym_delete] = ACTIONS(2801),
- [anon_sym_PLUS_PLUS] = ACTIONS(2799),
- [anon_sym_DASH_DASH] = ACTIONS(2799),
- [sym_comment] = ACTIONS(5),
- [anon_sym_BQUOTE] = ACTIONS(2799),
- [sym_number] = ACTIONS(2799),
- [sym_private_property_identifier] = ACTIONS(2799),
- [sym_this] = ACTIONS(2801),
- [sym_super] = ACTIONS(2801),
- [sym_true] = ACTIONS(2801),
- [sym_false] = ACTIONS(2801),
- [sym_null] = ACTIONS(2801),
- [sym_undefined] = ACTIONS(2801),
- [anon_sym_AT] = ACTIONS(2799),
- [anon_sym_static] = ACTIONS(2801),
- [anon_sym_readonly] = ACTIONS(2801),
- [anon_sym_get] = ACTIONS(2801),
- [anon_sym_set] = ACTIONS(2801),
- [anon_sym_declare] = ACTIONS(2801),
- [anon_sym_public] = ACTIONS(2801),
- [anon_sym_private] = ACTIONS(2801),
- [anon_sym_protected] = ACTIONS(2801),
- [anon_sym_override] = ACTIONS(2801),
- [anon_sym_module] = ACTIONS(2801),
- [anon_sym_any] = ACTIONS(2801),
- [anon_sym_number] = ACTIONS(2801),
- [anon_sym_boolean] = ACTIONS(2801),
- [anon_sym_string] = ACTIONS(2801),
- [anon_sym_symbol] = ACTIONS(2801),
- [anon_sym_object] = ACTIONS(2801),
- [anon_sym_abstract] = ACTIONS(2801),
- [anon_sym_interface] = ACTIONS(2801),
- [anon_sym_enum] = ACTIONS(2801),
- [sym_html_comment] = ACTIONS(5),
- },
- [841] = {
- [ts_builtin_sym_end] = ACTIONS(2803),
- [sym_identifier] = ACTIONS(2805),
- [anon_sym_export] = ACTIONS(2805),
- [anon_sym_default] = ACTIONS(2805),
- [anon_sym_type] = ACTIONS(2805),
- [anon_sym_namespace] = ACTIONS(2805),
- [anon_sym_LBRACE] = ACTIONS(2803),
- [anon_sym_RBRACE] = ACTIONS(2803),
- [anon_sym_typeof] = ACTIONS(2805),
- [anon_sym_import] = ACTIONS(2805),
- [anon_sym_with] = ACTIONS(2805),
- [anon_sym_var] = ACTIONS(2805),
- [anon_sym_let] = ACTIONS(2805),
- [anon_sym_const] = ACTIONS(2805),
- [anon_sym_BANG] = ACTIONS(2803),
- [anon_sym_else] = ACTIONS(2805),
- [anon_sym_if] = ACTIONS(2805),
- [anon_sym_switch] = ACTIONS(2805),
- [anon_sym_for] = ACTIONS(2805),
- [anon_sym_LPAREN] = ACTIONS(2803),
- [anon_sym_await] = ACTIONS(2805),
- [anon_sym_while] = ACTIONS(2805),
- [anon_sym_do] = ACTIONS(2805),
- [anon_sym_try] = ACTIONS(2805),
- [anon_sym_break] = ACTIONS(2805),
- [anon_sym_continue] = ACTIONS(2805),
- [anon_sym_debugger] = ACTIONS(2805),
- [anon_sym_return] = ACTIONS(2805),
- [anon_sym_throw] = ACTIONS(2805),
- [anon_sym_SEMI] = ACTIONS(2803),
- [anon_sym_case] = ACTIONS(2805),
- [anon_sym_yield] = ACTIONS(2805),
- [anon_sym_LBRACK] = ACTIONS(2803),
- [sym_glimmer_opening_tag] = ACTIONS(2803),
- [anon_sym_DQUOTE] = ACTIONS(2803),
- [anon_sym_SQUOTE] = ACTIONS(2803),
- [anon_sym_class] = ACTIONS(2805),
- [anon_sym_async] = ACTIONS(2805),
- [anon_sym_function] = ACTIONS(2805),
- [anon_sym_new] = ACTIONS(2805),
- [anon_sym_using] = ACTIONS(2805),
- [anon_sym_PLUS] = ACTIONS(2805),
- [anon_sym_DASH] = ACTIONS(2805),
- [anon_sym_SLASH] = ACTIONS(2805),
- [anon_sym_LT] = ACTIONS(2805),
- [anon_sym_TILDE] = ACTIONS(2803),
- [anon_sym_void] = ACTIONS(2805),
- [anon_sym_delete] = ACTIONS(2805),
- [anon_sym_PLUS_PLUS] = ACTIONS(2803),
- [anon_sym_DASH_DASH] = ACTIONS(2803),
- [sym_comment] = ACTIONS(5),
- [anon_sym_BQUOTE] = ACTIONS(2803),
- [sym_number] = ACTIONS(2803),
- [sym_private_property_identifier] = ACTIONS(2803),
- [sym_this] = ACTIONS(2805),
- [sym_super] = ACTIONS(2805),
- [sym_true] = ACTIONS(2805),
- [sym_false] = ACTIONS(2805),
- [sym_null] = ACTIONS(2805),
- [sym_undefined] = ACTIONS(2805),
- [anon_sym_AT] = ACTIONS(2803),
- [anon_sym_static] = ACTIONS(2805),
- [anon_sym_readonly] = ACTIONS(2805),
- [anon_sym_get] = ACTIONS(2805),
- [anon_sym_set] = ACTIONS(2805),
- [anon_sym_declare] = ACTIONS(2805),
- [anon_sym_public] = ACTIONS(2805),
- [anon_sym_private] = ACTIONS(2805),
- [anon_sym_protected] = ACTIONS(2805),
- [anon_sym_override] = ACTIONS(2805),
- [anon_sym_module] = ACTIONS(2805),
- [anon_sym_any] = ACTIONS(2805),
- [anon_sym_number] = ACTIONS(2805),
- [anon_sym_boolean] = ACTIONS(2805),
- [anon_sym_string] = ACTIONS(2805),
- [anon_sym_symbol] = ACTIONS(2805),
- [anon_sym_object] = ACTIONS(2805),
- [anon_sym_abstract] = ACTIONS(2805),
- [anon_sym_interface] = ACTIONS(2805),
- [anon_sym_enum] = ACTIONS(2805),
- [sym_html_comment] = ACTIONS(5),
- },
- [842] = {
- [ts_builtin_sym_end] = ACTIONS(2807),
- [sym_identifier] = ACTIONS(2809),
- [anon_sym_export] = ACTIONS(2809),
- [anon_sym_default] = ACTIONS(2809),
- [anon_sym_type] = ACTIONS(2809),
- [anon_sym_namespace] = ACTIONS(2809),
- [anon_sym_LBRACE] = ACTIONS(2807),
- [anon_sym_RBRACE] = ACTIONS(2807),
- [anon_sym_typeof] = ACTIONS(2809),
- [anon_sym_import] = ACTIONS(2809),
- [anon_sym_with] = ACTIONS(2809),
- [anon_sym_var] = ACTIONS(2809),
- [anon_sym_let] = ACTIONS(2809),
- [anon_sym_const] = ACTIONS(2809),
- [anon_sym_BANG] = ACTIONS(2807),
- [anon_sym_else] = ACTIONS(2809),
- [anon_sym_if] = ACTIONS(2809),
- [anon_sym_switch] = ACTIONS(2809),
- [anon_sym_for] = ACTIONS(2809),
- [anon_sym_LPAREN] = ACTIONS(2807),
- [anon_sym_await] = ACTIONS(2809),
- [anon_sym_while] = ACTIONS(2809),
- [anon_sym_do] = ACTIONS(2809),
- [anon_sym_try] = ACTIONS(2809),
- [anon_sym_break] = ACTIONS(2809),
- [anon_sym_continue] = ACTIONS(2809),
- [anon_sym_debugger] = ACTIONS(2809),
- [anon_sym_return] = ACTIONS(2809),
- [anon_sym_throw] = ACTIONS(2809),
- [anon_sym_SEMI] = ACTIONS(2807),
- [anon_sym_case] = ACTIONS(2809),
- [anon_sym_yield] = ACTIONS(2809),
- [anon_sym_LBRACK] = ACTIONS(2807),
- [sym_glimmer_opening_tag] = ACTIONS(2807),
- [anon_sym_DQUOTE] = ACTIONS(2807),
- [anon_sym_SQUOTE] = ACTIONS(2807),
- [anon_sym_class] = ACTIONS(2809),
- [anon_sym_async] = ACTIONS(2809),
- [anon_sym_function] = ACTIONS(2809),
- [anon_sym_new] = ACTIONS(2809),
- [anon_sym_using] = ACTIONS(2809),
- [anon_sym_PLUS] = ACTIONS(2809),
- [anon_sym_DASH] = ACTIONS(2809),
- [anon_sym_SLASH] = ACTIONS(2809),
- [anon_sym_LT] = ACTIONS(2809),
- [anon_sym_TILDE] = ACTIONS(2807),
- [anon_sym_void] = ACTIONS(2809),
- [anon_sym_delete] = ACTIONS(2809),
- [anon_sym_PLUS_PLUS] = ACTIONS(2807),
- [anon_sym_DASH_DASH] = ACTIONS(2807),
- [sym_comment] = ACTIONS(5),
- [anon_sym_BQUOTE] = ACTIONS(2807),
- [sym_number] = ACTIONS(2807),
- [sym_private_property_identifier] = ACTIONS(2807),
- [sym_this] = ACTIONS(2809),
- [sym_super] = ACTIONS(2809),
- [sym_true] = ACTIONS(2809),
- [sym_false] = ACTIONS(2809),
- [sym_null] = ACTIONS(2809),
- [sym_undefined] = ACTIONS(2809),
- [anon_sym_AT] = ACTIONS(2807),
- [anon_sym_static] = ACTIONS(2809),
- [anon_sym_readonly] = ACTIONS(2809),
- [anon_sym_get] = ACTIONS(2809),
- [anon_sym_set] = ACTIONS(2809),
- [anon_sym_declare] = ACTIONS(2809),
- [anon_sym_public] = ACTIONS(2809),
- [anon_sym_private] = ACTIONS(2809),
- [anon_sym_protected] = ACTIONS(2809),
- [anon_sym_override] = ACTIONS(2809),
- [anon_sym_module] = ACTIONS(2809),
- [anon_sym_any] = ACTIONS(2809),
- [anon_sym_number] = ACTIONS(2809),
- [anon_sym_boolean] = ACTIONS(2809),
- [anon_sym_string] = ACTIONS(2809),
- [anon_sym_symbol] = ACTIONS(2809),
- [anon_sym_object] = ACTIONS(2809),
- [anon_sym_abstract] = ACTIONS(2809),
- [anon_sym_interface] = ACTIONS(2809),
- [anon_sym_enum] = ACTIONS(2809),
- [sym_html_comment] = ACTIONS(5),
- },
- [843] = {
- [ts_builtin_sym_end] = ACTIONS(2811),
- [sym_identifier] = ACTIONS(2813),
- [anon_sym_export] = ACTIONS(2813),
- [anon_sym_default] = ACTIONS(2813),
- [anon_sym_type] = ACTIONS(2813),
- [anon_sym_namespace] = ACTIONS(2813),
- [anon_sym_LBRACE] = ACTIONS(2811),
- [anon_sym_RBRACE] = ACTIONS(2811),
- [anon_sym_typeof] = ACTIONS(2813),
- [anon_sym_import] = ACTIONS(2813),
- [anon_sym_with] = ACTIONS(2813),
- [anon_sym_var] = ACTIONS(2813),
- [anon_sym_let] = ACTIONS(2813),
- [anon_sym_const] = ACTIONS(2813),
- [anon_sym_BANG] = ACTIONS(2811),
- [anon_sym_else] = ACTIONS(2813),
- [anon_sym_if] = ACTIONS(2813),
- [anon_sym_switch] = ACTIONS(2813),
- [anon_sym_for] = ACTIONS(2813),
- [anon_sym_LPAREN] = ACTIONS(2811),
- [anon_sym_await] = ACTIONS(2813),
- [anon_sym_while] = ACTIONS(2813),
- [anon_sym_do] = ACTIONS(2813),
- [anon_sym_try] = ACTIONS(2813),
- [anon_sym_break] = ACTIONS(2813),
- [anon_sym_continue] = ACTIONS(2813),
- [anon_sym_debugger] = ACTIONS(2813),
- [anon_sym_return] = ACTIONS(2813),
- [anon_sym_throw] = ACTIONS(2813),
- [anon_sym_SEMI] = ACTIONS(2811),
- [anon_sym_case] = ACTIONS(2813),
- [anon_sym_yield] = ACTIONS(2813),
- [anon_sym_LBRACK] = ACTIONS(2811),
- [sym_glimmer_opening_tag] = ACTIONS(2811),
- [anon_sym_DQUOTE] = ACTIONS(2811),
- [anon_sym_SQUOTE] = ACTIONS(2811),
- [anon_sym_class] = ACTIONS(2813),
- [anon_sym_async] = ACTIONS(2813),
- [anon_sym_function] = ACTIONS(2813),
- [anon_sym_new] = ACTIONS(2813),
- [anon_sym_using] = ACTIONS(2813),
- [anon_sym_PLUS] = ACTIONS(2813),
- [anon_sym_DASH] = ACTIONS(2813),
- [anon_sym_SLASH] = ACTIONS(2813),
- [anon_sym_LT] = ACTIONS(2813),
- [anon_sym_TILDE] = ACTIONS(2811),
- [anon_sym_void] = ACTIONS(2813),
- [anon_sym_delete] = ACTIONS(2813),
- [anon_sym_PLUS_PLUS] = ACTIONS(2811),
- [anon_sym_DASH_DASH] = ACTIONS(2811),
- [sym_comment] = ACTIONS(5),
- [anon_sym_BQUOTE] = ACTIONS(2811),
- [sym_number] = ACTIONS(2811),
- [sym_private_property_identifier] = ACTIONS(2811),
- [sym_this] = ACTIONS(2813),
- [sym_super] = ACTIONS(2813),
- [sym_true] = ACTIONS(2813),
- [sym_false] = ACTIONS(2813),
- [sym_null] = ACTIONS(2813),
- [sym_undefined] = ACTIONS(2813),
- [anon_sym_AT] = ACTIONS(2811),
- [anon_sym_static] = ACTIONS(2813),
- [anon_sym_readonly] = ACTIONS(2813),
- [anon_sym_get] = ACTIONS(2813),
- [anon_sym_set] = ACTIONS(2813),
- [anon_sym_declare] = ACTIONS(2813),
- [anon_sym_public] = ACTIONS(2813),
- [anon_sym_private] = ACTIONS(2813),
- [anon_sym_protected] = ACTIONS(2813),
- [anon_sym_override] = ACTIONS(2813),
- [anon_sym_module] = ACTIONS(2813),
- [anon_sym_any] = ACTIONS(2813),
- [anon_sym_number] = ACTIONS(2813),
- [anon_sym_boolean] = ACTIONS(2813),
- [anon_sym_string] = ACTIONS(2813),
- [anon_sym_symbol] = ACTIONS(2813),
- [anon_sym_object] = ACTIONS(2813),
- [anon_sym_abstract] = ACTIONS(2813),
- [anon_sym_interface] = ACTIONS(2813),
- [anon_sym_enum] = ACTIONS(2813),
- [sym_html_comment] = ACTIONS(5),
- },
- [844] = {
- [ts_builtin_sym_end] = ACTIONS(2815),
- [sym_identifier] = ACTIONS(2817),
- [anon_sym_export] = ACTIONS(2817),
- [anon_sym_default] = ACTIONS(2817),
- [anon_sym_type] = ACTIONS(2817),
- [anon_sym_namespace] = ACTIONS(2817),
- [anon_sym_LBRACE] = ACTIONS(2815),
- [anon_sym_RBRACE] = ACTIONS(2815),
- [anon_sym_typeof] = ACTIONS(2817),
- [anon_sym_import] = ACTIONS(2817),
- [anon_sym_with] = ACTIONS(2817),
- [anon_sym_var] = ACTIONS(2817),
- [anon_sym_let] = ACTIONS(2817),
- [anon_sym_const] = ACTIONS(2817),
- [anon_sym_BANG] = ACTIONS(2815),
- [anon_sym_else] = ACTIONS(2817),
- [anon_sym_if] = ACTIONS(2817),
- [anon_sym_switch] = ACTIONS(2817),
- [anon_sym_for] = ACTIONS(2817),
- [anon_sym_LPAREN] = ACTIONS(2815),
- [anon_sym_await] = ACTIONS(2817),
- [anon_sym_while] = ACTIONS(2817),
- [anon_sym_do] = ACTIONS(2817),
- [anon_sym_try] = ACTIONS(2817),
- [anon_sym_break] = ACTIONS(2817),
- [anon_sym_continue] = ACTIONS(2817),
- [anon_sym_debugger] = ACTIONS(2817),
- [anon_sym_return] = ACTIONS(2817),
- [anon_sym_throw] = ACTIONS(2817),
- [anon_sym_SEMI] = ACTIONS(2815),
- [anon_sym_case] = ACTIONS(2817),
- [anon_sym_yield] = ACTIONS(2817),
- [anon_sym_LBRACK] = ACTIONS(2815),
- [sym_glimmer_opening_tag] = ACTIONS(2815),
- [anon_sym_DQUOTE] = ACTIONS(2815),
- [anon_sym_SQUOTE] = ACTIONS(2815),
- [anon_sym_class] = ACTIONS(2817),
- [anon_sym_async] = ACTIONS(2817),
- [anon_sym_function] = ACTIONS(2817),
- [anon_sym_new] = ACTIONS(2817),
- [anon_sym_using] = ACTIONS(2817),
- [anon_sym_PLUS] = ACTIONS(2817),
- [anon_sym_DASH] = ACTIONS(2817),
- [anon_sym_SLASH] = ACTIONS(2817),
- [anon_sym_LT] = ACTIONS(2817),
- [anon_sym_TILDE] = ACTIONS(2815),
- [anon_sym_void] = ACTIONS(2817),
- [anon_sym_delete] = ACTIONS(2817),
- [anon_sym_PLUS_PLUS] = ACTIONS(2815),
- [anon_sym_DASH_DASH] = ACTIONS(2815),
- [sym_comment] = ACTIONS(5),
- [anon_sym_BQUOTE] = ACTIONS(2815),
- [sym_number] = ACTIONS(2815),
- [sym_private_property_identifier] = ACTIONS(2815),
- [sym_this] = ACTIONS(2817),
- [sym_super] = ACTIONS(2817),
- [sym_true] = ACTIONS(2817),
- [sym_false] = ACTIONS(2817),
- [sym_null] = ACTIONS(2817),
- [sym_undefined] = ACTIONS(2817),
- [anon_sym_AT] = ACTIONS(2815),
- [anon_sym_static] = ACTIONS(2817),
- [anon_sym_readonly] = ACTIONS(2817),
- [anon_sym_get] = ACTIONS(2817),
- [anon_sym_set] = ACTIONS(2817),
- [anon_sym_declare] = ACTIONS(2817),
- [anon_sym_public] = ACTIONS(2817),
- [anon_sym_private] = ACTIONS(2817),
- [anon_sym_protected] = ACTIONS(2817),
- [anon_sym_override] = ACTIONS(2817),
- [anon_sym_module] = ACTIONS(2817),
- [anon_sym_any] = ACTIONS(2817),
- [anon_sym_number] = ACTIONS(2817),
- [anon_sym_boolean] = ACTIONS(2817),
- [anon_sym_string] = ACTIONS(2817),
- [anon_sym_symbol] = ACTIONS(2817),
- [anon_sym_object] = ACTIONS(2817),
- [anon_sym_abstract] = ACTIONS(2817),
- [anon_sym_interface] = ACTIONS(2817),
- [anon_sym_enum] = ACTIONS(2817),
- [sym_html_comment] = ACTIONS(5),
- },
- [845] = {
- [ts_builtin_sym_end] = ACTIONS(2819),
- [sym_identifier] = ACTIONS(2821),
- [anon_sym_export] = ACTIONS(2821),
- [anon_sym_default] = ACTIONS(2821),
- [anon_sym_type] = ACTIONS(2821),
- [anon_sym_namespace] = ACTIONS(2821),
- [anon_sym_LBRACE] = ACTIONS(2819),
- [anon_sym_RBRACE] = ACTIONS(2819),
- [anon_sym_typeof] = ACTIONS(2821),
- [anon_sym_import] = ACTIONS(2821),
- [anon_sym_with] = ACTIONS(2821),
- [anon_sym_var] = ACTIONS(2821),
- [anon_sym_let] = ACTIONS(2821),
- [anon_sym_const] = ACTIONS(2821),
- [anon_sym_BANG] = ACTIONS(2819),
- [anon_sym_else] = ACTIONS(2821),
- [anon_sym_if] = ACTIONS(2821),
- [anon_sym_switch] = ACTIONS(2821),
- [anon_sym_for] = ACTIONS(2821),
- [anon_sym_LPAREN] = ACTIONS(2819),
- [anon_sym_await] = ACTIONS(2821),
- [anon_sym_while] = ACTIONS(2821),
- [anon_sym_do] = ACTIONS(2821),
- [anon_sym_try] = ACTIONS(2821),
- [anon_sym_break] = ACTIONS(2821),
- [anon_sym_continue] = ACTIONS(2821),
- [anon_sym_debugger] = ACTIONS(2821),
- [anon_sym_return] = ACTIONS(2821),
- [anon_sym_throw] = ACTIONS(2821),
- [anon_sym_SEMI] = ACTIONS(2819),
- [anon_sym_case] = ACTIONS(2821),
- [anon_sym_yield] = ACTIONS(2821),
- [anon_sym_LBRACK] = ACTIONS(2819),
- [sym_glimmer_opening_tag] = ACTIONS(2819),
- [anon_sym_DQUOTE] = ACTIONS(2819),
- [anon_sym_SQUOTE] = ACTIONS(2819),
- [anon_sym_class] = ACTIONS(2821),
- [anon_sym_async] = ACTIONS(2821),
- [anon_sym_function] = ACTIONS(2821),
- [anon_sym_new] = ACTIONS(2821),
- [anon_sym_using] = ACTIONS(2821),
- [anon_sym_PLUS] = ACTIONS(2821),
- [anon_sym_DASH] = ACTIONS(2821),
- [anon_sym_SLASH] = ACTIONS(2821),
- [anon_sym_LT] = ACTIONS(2821),
- [anon_sym_TILDE] = ACTIONS(2819),
- [anon_sym_void] = ACTIONS(2821),
- [anon_sym_delete] = ACTIONS(2821),
- [anon_sym_PLUS_PLUS] = ACTIONS(2819),
- [anon_sym_DASH_DASH] = ACTIONS(2819),
- [sym_comment] = ACTIONS(5),
- [anon_sym_BQUOTE] = ACTIONS(2819),
- [sym_number] = ACTIONS(2819),
- [sym_private_property_identifier] = ACTIONS(2819),
- [sym_this] = ACTIONS(2821),
- [sym_super] = ACTIONS(2821),
- [sym_true] = ACTIONS(2821),
- [sym_false] = ACTIONS(2821),
- [sym_null] = ACTIONS(2821),
- [sym_undefined] = ACTIONS(2821),
- [anon_sym_AT] = ACTIONS(2819),
- [anon_sym_static] = ACTIONS(2821),
- [anon_sym_readonly] = ACTIONS(2821),
- [anon_sym_get] = ACTIONS(2821),
- [anon_sym_set] = ACTIONS(2821),
- [anon_sym_declare] = ACTIONS(2821),
- [anon_sym_public] = ACTIONS(2821),
- [anon_sym_private] = ACTIONS(2821),
- [anon_sym_protected] = ACTIONS(2821),
- [anon_sym_override] = ACTIONS(2821),
- [anon_sym_module] = ACTIONS(2821),
- [anon_sym_any] = ACTIONS(2821),
- [anon_sym_number] = ACTIONS(2821),
- [anon_sym_boolean] = ACTIONS(2821),
- [anon_sym_string] = ACTIONS(2821),
- [anon_sym_symbol] = ACTIONS(2821),
- [anon_sym_object] = ACTIONS(2821),
- [anon_sym_abstract] = ACTIONS(2821),
- [anon_sym_interface] = ACTIONS(2821),
- [anon_sym_enum] = ACTIONS(2821),
- [sym_html_comment] = ACTIONS(5),
- },
- [846] = {
- [ts_builtin_sym_end] = ACTIONS(2823),
- [sym_identifier] = ACTIONS(2825),
- [anon_sym_export] = ACTIONS(2825),
- [anon_sym_default] = ACTIONS(2825),
- [anon_sym_type] = ACTIONS(2825),
- [anon_sym_namespace] = ACTIONS(2825),
- [anon_sym_LBRACE] = ACTIONS(2823),
- [anon_sym_RBRACE] = ACTIONS(2823),
- [anon_sym_typeof] = ACTIONS(2825),
- [anon_sym_import] = ACTIONS(2825),
- [anon_sym_with] = ACTIONS(2825),
- [anon_sym_var] = ACTIONS(2825),
- [anon_sym_let] = ACTIONS(2825),
- [anon_sym_const] = ACTIONS(2825),
- [anon_sym_BANG] = ACTIONS(2823),
- [anon_sym_else] = ACTIONS(2825),
- [anon_sym_if] = ACTIONS(2825),
- [anon_sym_switch] = ACTIONS(2825),
- [anon_sym_for] = ACTIONS(2825),
- [anon_sym_LPAREN] = ACTIONS(2823),
- [anon_sym_await] = ACTIONS(2825),
- [anon_sym_while] = ACTIONS(2825),
- [anon_sym_do] = ACTIONS(2825),
- [anon_sym_try] = ACTIONS(2825),
- [anon_sym_break] = ACTIONS(2825),
- [anon_sym_continue] = ACTIONS(2825),
- [anon_sym_debugger] = ACTIONS(2825),
- [anon_sym_return] = ACTIONS(2825),
- [anon_sym_throw] = ACTIONS(2825),
- [anon_sym_SEMI] = ACTIONS(2823),
- [anon_sym_case] = ACTIONS(2825),
- [anon_sym_yield] = ACTIONS(2825),
- [anon_sym_LBRACK] = ACTIONS(2823),
- [sym_glimmer_opening_tag] = ACTIONS(2823),
- [anon_sym_DQUOTE] = ACTIONS(2823),
- [anon_sym_SQUOTE] = ACTIONS(2823),
- [anon_sym_class] = ACTIONS(2825),
- [anon_sym_async] = ACTIONS(2825),
- [anon_sym_function] = ACTIONS(2825),
- [anon_sym_new] = ACTIONS(2825),
- [anon_sym_using] = ACTIONS(2825),
- [anon_sym_PLUS] = ACTIONS(2825),
- [anon_sym_DASH] = ACTIONS(2825),
- [anon_sym_SLASH] = ACTIONS(2825),
- [anon_sym_LT] = ACTIONS(2825),
- [anon_sym_TILDE] = ACTIONS(2823),
- [anon_sym_void] = ACTIONS(2825),
- [anon_sym_delete] = ACTIONS(2825),
- [anon_sym_PLUS_PLUS] = ACTIONS(2823),
- [anon_sym_DASH_DASH] = ACTIONS(2823),
- [sym_comment] = ACTIONS(5),
- [anon_sym_BQUOTE] = ACTIONS(2823),
- [sym_number] = ACTIONS(2823),
- [sym_private_property_identifier] = ACTIONS(2823),
- [sym_this] = ACTIONS(2825),
- [sym_super] = ACTIONS(2825),
- [sym_true] = ACTIONS(2825),
- [sym_false] = ACTIONS(2825),
- [sym_null] = ACTIONS(2825),
- [sym_undefined] = ACTIONS(2825),
- [anon_sym_AT] = ACTIONS(2823),
- [anon_sym_static] = ACTIONS(2825),
- [anon_sym_readonly] = ACTIONS(2825),
- [anon_sym_get] = ACTIONS(2825),
- [anon_sym_set] = ACTIONS(2825),
- [anon_sym_declare] = ACTIONS(2825),
- [anon_sym_public] = ACTIONS(2825),
- [anon_sym_private] = ACTIONS(2825),
- [anon_sym_protected] = ACTIONS(2825),
- [anon_sym_override] = ACTIONS(2825),
- [anon_sym_module] = ACTIONS(2825),
- [anon_sym_any] = ACTIONS(2825),
- [anon_sym_number] = ACTIONS(2825),
- [anon_sym_boolean] = ACTIONS(2825),
- [anon_sym_string] = ACTIONS(2825),
- [anon_sym_symbol] = ACTIONS(2825),
- [anon_sym_object] = ACTIONS(2825),
- [anon_sym_abstract] = ACTIONS(2825),
- [anon_sym_interface] = ACTIONS(2825),
- [anon_sym_enum] = ACTIONS(2825),
- [sym_html_comment] = ACTIONS(5),
- },
- [847] = {
- [sym_import] = STATE(4753),
- [sym_nested_identifier] = STATE(5707),
- [sym_string] = STATE(2889),
- [sym_formal_parameters] = STATE(5626),
- [sym_rest_pattern] = STATE(5377),
- [sym_nested_type_identifier] = STATE(2828),
- [sym__type_query_member_expression_in_type_annotation] = STATE(3228),
- [sym__type_query_call_expression_in_type_annotation] = STATE(2850),
- [sym_type] = STATE(3859),
- [sym_tuple_parameter] = STATE(5049),
- [sym_optional_tuple_parameter] = STATE(5049),
- [sym_optional_type] = STATE(5049),
- [sym_rest_type] = STATE(5049),
- [sym__tuple_type_member] = STATE(5049),
- [sym_constructor_type] = STATE(2896),
- [sym_primary_type] = STATE(2897),
- [sym_template_literal_type] = STATE(2885),
- [sym_infer_type] = STATE(2896),
- [sym_conditional_type] = STATE(2885),
- [sym_generic_type] = STATE(2885),
- [sym_type_query] = STATE(2885),
- [sym_index_type_query] = STATE(2885),
- [sym_lookup_type] = STATE(2885),
- [sym_literal_type] = STATE(2885),
- [sym__number] = STATE(2903),
- [sym_existential_type] = STATE(2885),
- [sym_flow_maybe_type] = STATE(2885),
- [sym_parenthesized_type] = STATE(2885),
- [sym_predefined_type] = STATE(2885),
- [sym_object_type] = STATE(2885),
- [sym_type_parameters] = STATE(5517),
- [sym_array_type] = STATE(2885),
- [sym_tuple_type] = STATE(2885),
- [sym_readonly_type] = STATE(2896),
- [sym_union_type] = STATE(2885),
- [sym_intersection_type] = STATE(2885),
- [sym_function_type] = STATE(2896),
- [sym_identifier] = ACTIONS(2571),
- [anon_sym_STAR] = ACTIONS(612),
- [anon_sym_LBRACE] = ACTIONS(1498),
- [anon_sym_COMMA] = ACTIONS(2827),
- [anon_sym_typeof] = ACTIONS(1500),
- [anon_sym_import] = ACTIONS(133),
- [anon_sym_const] = ACTIONS(135),
- [anon_sym_LPAREN] = ACTIONS(1502),
- [anon_sym_LBRACK] = ACTIONS(1504),
- [anon_sym_RBRACK] = ACTIONS(2829),
- [anon_sym_DQUOTE] = ACTIONS(1506),
- [anon_sym_SQUOTE] = ACTIONS(1508),
- [anon_sym_new] = ACTIONS(1572),
- [anon_sym_DOT_DOT_DOT] = ACTIONS(2577),
- [anon_sym_AMP] = ACTIONS(640),
- [anon_sym_PIPE] = ACTIONS(642),
- [anon_sym_PLUS] = ACTIONS(2579),
- [anon_sym_DASH] = ACTIONS(2579),
- [anon_sym_LT] = ACTIONS(2581),
- [anon_sym_void] = ACTIONS(220),
- [sym_comment] = ACTIONS(5),
- [anon_sym_BQUOTE] = ACTIONS(1516),
- [sym_number] = ACTIONS(1518),
- [sym_this] = ACTIONS(1520),
- [sym_true] = ACTIONS(1522),
- [sym_false] = ACTIONS(1522),
- [sym_null] = ACTIONS(1522),
- [sym_undefined] = ACTIONS(1522),
- [anon_sym_readonly] = ACTIONS(1578),
- [anon_sym_QMARK] = ACTIONS(662),
- [anon_sym_any] = ACTIONS(220),
- [anon_sym_number] = ACTIONS(220),
- [anon_sym_boolean] = ACTIONS(220),
- [anon_sym_string] = ACTIONS(220),
- [anon_sym_symbol] = ACTIONS(220),
- [anon_sym_object] = ACTIONS(220),
- [anon_sym_abstract] = ACTIONS(666),
- [anon_sym_infer] = ACTIONS(668),
- [anon_sym_keyof] = ACTIONS(670),
- [anon_sym_unique] = ACTIONS(218),
- [anon_sym_unknown] = ACTIONS(220),
- [anon_sym_never] = ACTIONS(220),
- [anon_sym_LBRACE_PIPE] = ACTIONS(222),
- [sym_html_comment] = ACTIONS(5),
- },
- [848] = {
- [ts_builtin_sym_end] = ACTIONS(2831),
- [sym_identifier] = ACTIONS(2833),
- [anon_sym_export] = ACTIONS(2833),
- [anon_sym_default] = ACTIONS(2833),
- [anon_sym_type] = ACTIONS(2833),
- [anon_sym_namespace] = ACTIONS(2833),
- [anon_sym_LBRACE] = ACTIONS(2831),
- [anon_sym_RBRACE] = ACTIONS(2831),
- [anon_sym_typeof] = ACTIONS(2833),
- [anon_sym_import] = ACTIONS(2833),
- [anon_sym_with] = ACTIONS(2833),
- [anon_sym_var] = ACTIONS(2833),
- [anon_sym_let] = ACTIONS(2833),
- [anon_sym_const] = ACTIONS(2833),
- [anon_sym_BANG] = ACTIONS(2831),
- [anon_sym_else] = ACTIONS(2833),
- [anon_sym_if] = ACTIONS(2833),
- [anon_sym_switch] = ACTIONS(2833),
- [anon_sym_for] = ACTIONS(2833),
- [anon_sym_LPAREN] = ACTIONS(2831),
- [anon_sym_await] = ACTIONS(2833),
- [anon_sym_while] = ACTIONS(2833),
- [anon_sym_do] = ACTIONS(2833),
- [anon_sym_try] = ACTIONS(2833),
- [anon_sym_break] = ACTIONS(2833),
- [anon_sym_continue] = ACTIONS(2833),
- [anon_sym_debugger] = ACTIONS(2833),
- [anon_sym_return] = ACTIONS(2833),
- [anon_sym_throw] = ACTIONS(2833),
- [anon_sym_SEMI] = ACTIONS(2831),
- [anon_sym_case] = ACTIONS(2833),
- [anon_sym_yield] = ACTIONS(2833),
- [anon_sym_LBRACK] = ACTIONS(2831),
- [sym_glimmer_opening_tag] = ACTIONS(2831),
- [anon_sym_DQUOTE] = ACTIONS(2831),
- [anon_sym_SQUOTE] = ACTIONS(2831),
- [anon_sym_class] = ACTIONS(2833),
- [anon_sym_async] = ACTIONS(2833),
- [anon_sym_function] = ACTIONS(2833),
- [anon_sym_new] = ACTIONS(2833),
- [anon_sym_using] = ACTIONS(2833),
- [anon_sym_PLUS] = ACTIONS(2833),
- [anon_sym_DASH] = ACTIONS(2833),
- [anon_sym_SLASH] = ACTIONS(2833),
- [anon_sym_LT] = ACTIONS(2833),
- [anon_sym_TILDE] = ACTIONS(2831),
- [anon_sym_void] = ACTIONS(2833),
- [anon_sym_delete] = ACTIONS(2833),
- [anon_sym_PLUS_PLUS] = ACTIONS(2831),
- [anon_sym_DASH_DASH] = ACTIONS(2831),
- [sym_comment] = ACTIONS(5),
- [anon_sym_BQUOTE] = ACTIONS(2831),
- [sym_number] = ACTIONS(2831),
- [sym_private_property_identifier] = ACTIONS(2831),
- [sym_this] = ACTIONS(2833),
- [sym_super] = ACTIONS(2833),
- [sym_true] = ACTIONS(2833),
- [sym_false] = ACTIONS(2833),
- [sym_null] = ACTIONS(2833),
- [sym_undefined] = ACTIONS(2833),
- [anon_sym_AT] = ACTIONS(2831),
- [anon_sym_static] = ACTIONS(2833),
- [anon_sym_readonly] = ACTIONS(2833),
- [anon_sym_get] = ACTIONS(2833),
- [anon_sym_set] = ACTIONS(2833),
- [anon_sym_declare] = ACTIONS(2833),
- [anon_sym_public] = ACTIONS(2833),
- [anon_sym_private] = ACTIONS(2833),
- [anon_sym_protected] = ACTIONS(2833),
- [anon_sym_override] = ACTIONS(2833),
- [anon_sym_module] = ACTIONS(2833),
- [anon_sym_any] = ACTIONS(2833),
- [anon_sym_number] = ACTIONS(2833),
- [anon_sym_boolean] = ACTIONS(2833),
- [anon_sym_string] = ACTIONS(2833),
- [anon_sym_symbol] = ACTIONS(2833),
- [anon_sym_object] = ACTIONS(2833),
- [anon_sym_abstract] = ACTIONS(2833),
- [anon_sym_interface] = ACTIONS(2833),
- [anon_sym_enum] = ACTIONS(2833),
- [sym_html_comment] = ACTIONS(5),
- },
- [849] = {
- [ts_builtin_sym_end] = ACTIONS(2835),
- [sym_identifier] = ACTIONS(2837),
- [anon_sym_export] = ACTIONS(2837),
- [anon_sym_default] = ACTIONS(2837),
- [anon_sym_type] = ACTIONS(2837),
- [anon_sym_namespace] = ACTIONS(2837),
- [anon_sym_LBRACE] = ACTIONS(2835),
- [anon_sym_RBRACE] = ACTIONS(2835),
- [anon_sym_typeof] = ACTIONS(2837),
- [anon_sym_import] = ACTIONS(2837),
- [anon_sym_with] = ACTIONS(2837),
- [anon_sym_var] = ACTIONS(2837),
- [anon_sym_let] = ACTIONS(2837),
- [anon_sym_const] = ACTIONS(2837),
- [anon_sym_BANG] = ACTIONS(2835),
- [anon_sym_else] = ACTIONS(2837),
- [anon_sym_if] = ACTIONS(2837),
- [anon_sym_switch] = ACTIONS(2837),
- [anon_sym_for] = ACTIONS(2837),
- [anon_sym_LPAREN] = ACTIONS(2835),
- [anon_sym_await] = ACTIONS(2837),
- [anon_sym_while] = ACTIONS(2837),
- [anon_sym_do] = ACTIONS(2837),
- [anon_sym_try] = ACTIONS(2837),
- [anon_sym_break] = ACTIONS(2837),
- [anon_sym_continue] = ACTIONS(2837),
- [anon_sym_debugger] = ACTIONS(2837),
- [anon_sym_return] = ACTIONS(2837),
- [anon_sym_throw] = ACTIONS(2837),
- [anon_sym_SEMI] = ACTIONS(2835),
- [anon_sym_case] = ACTIONS(2837),
- [anon_sym_yield] = ACTIONS(2837),
- [anon_sym_LBRACK] = ACTIONS(2835),
- [sym_glimmer_opening_tag] = ACTIONS(2835),
- [anon_sym_DQUOTE] = ACTIONS(2835),
- [anon_sym_SQUOTE] = ACTIONS(2835),
- [anon_sym_class] = ACTIONS(2837),
- [anon_sym_async] = ACTIONS(2837),
- [anon_sym_function] = ACTIONS(2837),
- [anon_sym_new] = ACTIONS(2837),
- [anon_sym_using] = ACTIONS(2837),
- [anon_sym_PLUS] = ACTIONS(2837),
- [anon_sym_DASH] = ACTIONS(2837),
- [anon_sym_SLASH] = ACTIONS(2837),
- [anon_sym_LT] = ACTIONS(2837),
- [anon_sym_TILDE] = ACTIONS(2835),
- [anon_sym_void] = ACTIONS(2837),
- [anon_sym_delete] = ACTIONS(2837),
- [anon_sym_PLUS_PLUS] = ACTIONS(2835),
- [anon_sym_DASH_DASH] = ACTIONS(2835),
- [sym_comment] = ACTIONS(5),
- [anon_sym_BQUOTE] = ACTIONS(2835),
- [sym_number] = ACTIONS(2835),
- [sym_private_property_identifier] = ACTIONS(2835),
- [sym_this] = ACTIONS(2837),
- [sym_super] = ACTIONS(2837),
- [sym_true] = ACTIONS(2837),
- [sym_false] = ACTIONS(2837),
- [sym_null] = ACTIONS(2837),
- [sym_undefined] = ACTIONS(2837),
- [anon_sym_AT] = ACTIONS(2835),
- [anon_sym_static] = ACTIONS(2837),
- [anon_sym_readonly] = ACTIONS(2837),
- [anon_sym_get] = ACTIONS(2837),
- [anon_sym_set] = ACTIONS(2837),
- [anon_sym_declare] = ACTIONS(2837),
- [anon_sym_public] = ACTIONS(2837),
- [anon_sym_private] = ACTIONS(2837),
- [anon_sym_protected] = ACTIONS(2837),
- [anon_sym_override] = ACTIONS(2837),
- [anon_sym_module] = ACTIONS(2837),
- [anon_sym_any] = ACTIONS(2837),
- [anon_sym_number] = ACTIONS(2837),
- [anon_sym_boolean] = ACTIONS(2837),
- [anon_sym_string] = ACTIONS(2837),
- [anon_sym_symbol] = ACTIONS(2837),
- [anon_sym_object] = ACTIONS(2837),
- [anon_sym_abstract] = ACTIONS(2837),
- [anon_sym_interface] = ACTIONS(2837),
- [anon_sym_enum] = ACTIONS(2837),
- [sym_html_comment] = ACTIONS(5),
- },
- [850] = {
- [ts_builtin_sym_end] = ACTIONS(2839),
- [sym_identifier] = ACTIONS(2841),
- [anon_sym_export] = ACTIONS(2841),
- [anon_sym_default] = ACTIONS(2841),
- [anon_sym_type] = ACTIONS(2841),
- [anon_sym_namespace] = ACTIONS(2841),
- [anon_sym_LBRACE] = ACTIONS(2839),
- [anon_sym_RBRACE] = ACTIONS(2839),
- [anon_sym_typeof] = ACTIONS(2841),
- [anon_sym_import] = ACTIONS(2841),
- [anon_sym_with] = ACTIONS(2841),
- [anon_sym_var] = ACTIONS(2841),
- [anon_sym_let] = ACTIONS(2841),
- [anon_sym_const] = ACTIONS(2841),
- [anon_sym_BANG] = ACTIONS(2839),
- [anon_sym_else] = ACTIONS(2841),
- [anon_sym_if] = ACTIONS(2841),
- [anon_sym_switch] = ACTIONS(2841),
- [anon_sym_for] = ACTIONS(2841),
- [anon_sym_LPAREN] = ACTIONS(2839),
- [anon_sym_await] = ACTIONS(2841),
- [anon_sym_while] = ACTIONS(2841),
- [anon_sym_do] = ACTIONS(2841),
- [anon_sym_try] = ACTIONS(2841),
- [anon_sym_break] = ACTIONS(2841),
- [anon_sym_continue] = ACTIONS(2841),
- [anon_sym_debugger] = ACTIONS(2841),
- [anon_sym_return] = ACTIONS(2841),
- [anon_sym_throw] = ACTIONS(2841),
- [anon_sym_SEMI] = ACTIONS(2839),
- [anon_sym_case] = ACTIONS(2841),
- [anon_sym_yield] = ACTIONS(2841),
- [anon_sym_LBRACK] = ACTIONS(2839),
- [sym_glimmer_opening_tag] = ACTIONS(2839),
- [anon_sym_DQUOTE] = ACTIONS(2839),
- [anon_sym_SQUOTE] = ACTIONS(2839),
- [anon_sym_class] = ACTIONS(2841),
- [anon_sym_async] = ACTIONS(2841),
- [anon_sym_function] = ACTIONS(2841),
- [anon_sym_new] = ACTIONS(2841),
- [anon_sym_using] = ACTIONS(2841),
- [anon_sym_PLUS] = ACTIONS(2841),
- [anon_sym_DASH] = ACTIONS(2841),
- [anon_sym_SLASH] = ACTIONS(2841),
- [anon_sym_LT] = ACTIONS(2841),
- [anon_sym_TILDE] = ACTIONS(2839),
- [anon_sym_void] = ACTIONS(2841),
- [anon_sym_delete] = ACTIONS(2841),
- [anon_sym_PLUS_PLUS] = ACTIONS(2839),
- [anon_sym_DASH_DASH] = ACTIONS(2839),
- [sym_comment] = ACTIONS(5),
- [anon_sym_BQUOTE] = ACTIONS(2839),
- [sym_number] = ACTIONS(2839),
- [sym_private_property_identifier] = ACTIONS(2839),
- [sym_this] = ACTIONS(2841),
- [sym_super] = ACTIONS(2841),
- [sym_true] = ACTIONS(2841),
- [sym_false] = ACTIONS(2841),
- [sym_null] = ACTIONS(2841),
- [sym_undefined] = ACTIONS(2841),
- [anon_sym_AT] = ACTIONS(2839),
- [anon_sym_static] = ACTIONS(2841),
- [anon_sym_readonly] = ACTIONS(2841),
- [anon_sym_get] = ACTIONS(2841),
- [anon_sym_set] = ACTIONS(2841),
- [anon_sym_declare] = ACTIONS(2841),
- [anon_sym_public] = ACTIONS(2841),
- [anon_sym_private] = ACTIONS(2841),
- [anon_sym_protected] = ACTIONS(2841),
- [anon_sym_override] = ACTIONS(2841),
- [anon_sym_module] = ACTIONS(2841),
- [anon_sym_any] = ACTIONS(2841),
- [anon_sym_number] = ACTIONS(2841),
- [anon_sym_boolean] = ACTIONS(2841),
- [anon_sym_string] = ACTIONS(2841),
- [anon_sym_symbol] = ACTIONS(2841),
- [anon_sym_object] = ACTIONS(2841),
- [anon_sym_abstract] = ACTIONS(2841),
- [anon_sym_interface] = ACTIONS(2841),
- [anon_sym_enum] = ACTIONS(2841),
- [sym_html_comment] = ACTIONS(5),
- },
- [851] = {
- [ts_builtin_sym_end] = ACTIONS(2843),
- [sym_identifier] = ACTIONS(2845),
- [anon_sym_export] = ACTIONS(2845),
- [anon_sym_default] = ACTIONS(2845),
- [anon_sym_type] = ACTIONS(2845),
- [anon_sym_namespace] = ACTIONS(2845),
- [anon_sym_LBRACE] = ACTIONS(2843),
- [anon_sym_RBRACE] = ACTIONS(2843),
- [anon_sym_typeof] = ACTIONS(2845),
- [anon_sym_import] = ACTIONS(2845),
- [anon_sym_with] = ACTIONS(2845),
- [anon_sym_var] = ACTIONS(2845),
- [anon_sym_let] = ACTIONS(2845),
- [anon_sym_const] = ACTIONS(2845),
- [anon_sym_BANG] = ACTIONS(2843),
- [anon_sym_else] = ACTIONS(2845),
- [anon_sym_if] = ACTIONS(2845),
- [anon_sym_switch] = ACTIONS(2845),
- [anon_sym_for] = ACTIONS(2845),
- [anon_sym_LPAREN] = ACTIONS(2843),
- [anon_sym_await] = ACTIONS(2845),
- [anon_sym_while] = ACTIONS(2845),
- [anon_sym_do] = ACTIONS(2845),
- [anon_sym_try] = ACTIONS(2845),
- [anon_sym_break] = ACTIONS(2845),
- [anon_sym_continue] = ACTIONS(2845),
- [anon_sym_debugger] = ACTIONS(2845),
- [anon_sym_return] = ACTIONS(2845),
- [anon_sym_throw] = ACTIONS(2845),
- [anon_sym_SEMI] = ACTIONS(2843),
- [anon_sym_case] = ACTIONS(2845),
- [anon_sym_yield] = ACTIONS(2845),
- [anon_sym_LBRACK] = ACTIONS(2843),
- [sym_glimmer_opening_tag] = ACTIONS(2843),
- [anon_sym_DQUOTE] = ACTIONS(2843),
- [anon_sym_SQUOTE] = ACTIONS(2843),
- [anon_sym_class] = ACTIONS(2845),
- [anon_sym_async] = ACTIONS(2845),
- [anon_sym_function] = ACTIONS(2845),
- [anon_sym_new] = ACTIONS(2845),
- [anon_sym_using] = ACTIONS(2845),
- [anon_sym_PLUS] = ACTIONS(2845),
- [anon_sym_DASH] = ACTIONS(2845),
- [anon_sym_SLASH] = ACTIONS(2845),
- [anon_sym_LT] = ACTIONS(2845),
- [anon_sym_TILDE] = ACTIONS(2843),
- [anon_sym_void] = ACTIONS(2845),
- [anon_sym_delete] = ACTIONS(2845),
- [anon_sym_PLUS_PLUS] = ACTIONS(2843),
- [anon_sym_DASH_DASH] = ACTIONS(2843),
- [sym_comment] = ACTIONS(5),
- [anon_sym_BQUOTE] = ACTIONS(2843),
- [sym_number] = ACTIONS(2843),
- [sym_private_property_identifier] = ACTIONS(2843),
- [sym_this] = ACTIONS(2845),
- [sym_super] = ACTIONS(2845),
- [sym_true] = ACTIONS(2845),
- [sym_false] = ACTIONS(2845),
- [sym_null] = ACTIONS(2845),
- [sym_undefined] = ACTIONS(2845),
- [anon_sym_AT] = ACTIONS(2843),
- [anon_sym_static] = ACTIONS(2845),
- [anon_sym_readonly] = ACTIONS(2845),
- [anon_sym_get] = ACTIONS(2845),
- [anon_sym_set] = ACTIONS(2845),
- [anon_sym_declare] = ACTIONS(2845),
- [anon_sym_public] = ACTIONS(2845),
- [anon_sym_private] = ACTIONS(2845),
- [anon_sym_protected] = ACTIONS(2845),
- [anon_sym_override] = ACTIONS(2845),
- [anon_sym_module] = ACTIONS(2845),
- [anon_sym_any] = ACTIONS(2845),
- [anon_sym_number] = ACTIONS(2845),
- [anon_sym_boolean] = ACTIONS(2845),
- [anon_sym_string] = ACTIONS(2845),
- [anon_sym_symbol] = ACTIONS(2845),
- [anon_sym_object] = ACTIONS(2845),
- [anon_sym_abstract] = ACTIONS(2845),
- [anon_sym_interface] = ACTIONS(2845),
- [anon_sym_enum] = ACTIONS(2845),
- [sym_html_comment] = ACTIONS(5),
- },
- [852] = {
- [ts_builtin_sym_end] = ACTIONS(2847),
- [sym_identifier] = ACTIONS(2849),
- [anon_sym_export] = ACTIONS(2849),
- [anon_sym_default] = ACTIONS(2849),
- [anon_sym_type] = ACTIONS(2849),
- [anon_sym_namespace] = ACTIONS(2849),
- [anon_sym_LBRACE] = ACTIONS(2847),
- [anon_sym_RBRACE] = ACTIONS(2847),
- [anon_sym_typeof] = ACTIONS(2849),
- [anon_sym_import] = ACTIONS(2849),
- [anon_sym_with] = ACTIONS(2849),
- [anon_sym_var] = ACTIONS(2849),
- [anon_sym_let] = ACTIONS(2849),
- [anon_sym_const] = ACTIONS(2849),
- [anon_sym_BANG] = ACTIONS(2847),
- [anon_sym_else] = ACTIONS(2849),
- [anon_sym_if] = ACTIONS(2849),
- [anon_sym_switch] = ACTIONS(2849),
- [anon_sym_for] = ACTIONS(2849),
- [anon_sym_LPAREN] = ACTIONS(2847),
- [anon_sym_await] = ACTIONS(2849),
- [anon_sym_while] = ACTIONS(2849),
- [anon_sym_do] = ACTIONS(2849),
- [anon_sym_try] = ACTIONS(2849),
- [anon_sym_break] = ACTIONS(2849),
- [anon_sym_continue] = ACTIONS(2849),
- [anon_sym_debugger] = ACTIONS(2849),
- [anon_sym_return] = ACTIONS(2849),
- [anon_sym_throw] = ACTIONS(2849),
- [anon_sym_SEMI] = ACTIONS(2847),
- [anon_sym_case] = ACTIONS(2849),
- [anon_sym_yield] = ACTIONS(2849),
- [anon_sym_LBRACK] = ACTIONS(2847),
- [sym_glimmer_opening_tag] = ACTIONS(2847),
- [anon_sym_DQUOTE] = ACTIONS(2847),
- [anon_sym_SQUOTE] = ACTIONS(2847),
- [anon_sym_class] = ACTIONS(2849),
- [anon_sym_async] = ACTIONS(2849),
- [anon_sym_function] = ACTIONS(2849),
- [anon_sym_new] = ACTIONS(2849),
- [anon_sym_using] = ACTIONS(2849),
- [anon_sym_PLUS] = ACTIONS(2849),
- [anon_sym_DASH] = ACTIONS(2849),
- [anon_sym_SLASH] = ACTIONS(2849),
- [anon_sym_LT] = ACTIONS(2849),
- [anon_sym_TILDE] = ACTIONS(2847),
- [anon_sym_void] = ACTIONS(2849),
- [anon_sym_delete] = ACTIONS(2849),
- [anon_sym_PLUS_PLUS] = ACTIONS(2847),
- [anon_sym_DASH_DASH] = ACTIONS(2847),
- [sym_comment] = ACTIONS(5),
- [anon_sym_BQUOTE] = ACTIONS(2847),
- [sym_number] = ACTIONS(2847),
- [sym_private_property_identifier] = ACTIONS(2847),
- [sym_this] = ACTIONS(2849),
- [sym_super] = ACTIONS(2849),
- [sym_true] = ACTIONS(2849),
- [sym_false] = ACTIONS(2849),
- [sym_null] = ACTIONS(2849),
- [sym_undefined] = ACTIONS(2849),
- [anon_sym_AT] = ACTIONS(2847),
- [anon_sym_static] = ACTIONS(2849),
- [anon_sym_readonly] = ACTIONS(2849),
- [anon_sym_get] = ACTIONS(2849),
- [anon_sym_set] = ACTIONS(2849),
- [anon_sym_declare] = ACTIONS(2849),
- [anon_sym_public] = ACTIONS(2849),
- [anon_sym_private] = ACTIONS(2849),
- [anon_sym_protected] = ACTIONS(2849),
- [anon_sym_override] = ACTIONS(2849),
- [anon_sym_module] = ACTIONS(2849),
- [anon_sym_any] = ACTIONS(2849),
- [anon_sym_number] = ACTIONS(2849),
- [anon_sym_boolean] = ACTIONS(2849),
- [anon_sym_string] = ACTIONS(2849),
- [anon_sym_symbol] = ACTIONS(2849),
- [anon_sym_object] = ACTIONS(2849),
- [anon_sym_abstract] = ACTIONS(2849),
- [anon_sym_interface] = ACTIONS(2849),
- [anon_sym_enum] = ACTIONS(2849),
- [sym_html_comment] = ACTIONS(5),
- },
- [853] = {
- [ts_builtin_sym_end] = ACTIONS(2851),
- [sym_identifier] = ACTIONS(2853),
- [anon_sym_export] = ACTIONS(2853),
- [anon_sym_default] = ACTIONS(2853),
- [anon_sym_type] = ACTIONS(2853),
- [anon_sym_namespace] = ACTIONS(2853),
- [anon_sym_LBRACE] = ACTIONS(2851),
- [anon_sym_RBRACE] = ACTIONS(2851),
- [anon_sym_typeof] = ACTIONS(2853),
- [anon_sym_import] = ACTIONS(2853),
- [anon_sym_with] = ACTIONS(2853),
- [anon_sym_var] = ACTIONS(2853),
- [anon_sym_let] = ACTIONS(2853),
- [anon_sym_const] = ACTIONS(2853),
- [anon_sym_BANG] = ACTIONS(2851),
- [anon_sym_else] = ACTIONS(2853),
- [anon_sym_if] = ACTIONS(2853),
- [anon_sym_switch] = ACTIONS(2853),
- [anon_sym_for] = ACTIONS(2853),
- [anon_sym_LPAREN] = ACTIONS(2851),
- [anon_sym_await] = ACTIONS(2853),
- [anon_sym_while] = ACTIONS(2853),
- [anon_sym_do] = ACTIONS(2853),
- [anon_sym_try] = ACTIONS(2853),
- [anon_sym_break] = ACTIONS(2853),
- [anon_sym_continue] = ACTIONS(2853),
- [anon_sym_debugger] = ACTIONS(2853),
- [anon_sym_return] = ACTIONS(2853),
- [anon_sym_throw] = ACTIONS(2853),
- [anon_sym_SEMI] = ACTIONS(2851),
- [anon_sym_case] = ACTIONS(2853),
- [anon_sym_yield] = ACTIONS(2853),
- [anon_sym_LBRACK] = ACTIONS(2851),
- [sym_glimmer_opening_tag] = ACTIONS(2851),
- [anon_sym_DQUOTE] = ACTIONS(2851),
- [anon_sym_SQUOTE] = ACTIONS(2851),
- [anon_sym_class] = ACTIONS(2853),
- [anon_sym_async] = ACTIONS(2853),
- [anon_sym_function] = ACTIONS(2853),
- [anon_sym_new] = ACTIONS(2853),
- [anon_sym_using] = ACTIONS(2853),
- [anon_sym_PLUS] = ACTIONS(2853),
- [anon_sym_DASH] = ACTIONS(2853),
- [anon_sym_SLASH] = ACTIONS(2853),
- [anon_sym_LT] = ACTIONS(2853),
- [anon_sym_TILDE] = ACTIONS(2851),
- [anon_sym_void] = ACTIONS(2853),
- [anon_sym_delete] = ACTIONS(2853),
- [anon_sym_PLUS_PLUS] = ACTIONS(2851),
- [anon_sym_DASH_DASH] = ACTIONS(2851),
- [sym_comment] = ACTIONS(5),
- [anon_sym_BQUOTE] = ACTIONS(2851),
- [sym_number] = ACTIONS(2851),
- [sym_private_property_identifier] = ACTIONS(2851),
- [sym_this] = ACTIONS(2853),
- [sym_super] = ACTIONS(2853),
- [sym_true] = ACTIONS(2853),
- [sym_false] = ACTIONS(2853),
- [sym_null] = ACTIONS(2853),
- [sym_undefined] = ACTIONS(2853),
- [anon_sym_AT] = ACTIONS(2851),
- [anon_sym_static] = ACTIONS(2853),
- [anon_sym_readonly] = ACTIONS(2853),
- [anon_sym_get] = ACTIONS(2853),
- [anon_sym_set] = ACTIONS(2853),
- [anon_sym_declare] = ACTIONS(2853),
- [anon_sym_public] = ACTIONS(2853),
- [anon_sym_private] = ACTIONS(2853),
- [anon_sym_protected] = ACTIONS(2853),
- [anon_sym_override] = ACTIONS(2853),
- [anon_sym_module] = ACTIONS(2853),
- [anon_sym_any] = ACTIONS(2853),
- [anon_sym_number] = ACTIONS(2853),
- [anon_sym_boolean] = ACTIONS(2853),
- [anon_sym_string] = ACTIONS(2853),
- [anon_sym_symbol] = ACTIONS(2853),
- [anon_sym_object] = ACTIONS(2853),
- [anon_sym_abstract] = ACTIONS(2853),
- [anon_sym_interface] = ACTIONS(2853),
- [anon_sym_enum] = ACTIONS(2853),
- [sym_html_comment] = ACTIONS(5),
- },
- [854] = {
- [ts_builtin_sym_end] = ACTIONS(2855),
- [sym_identifier] = ACTIONS(2857),
- [anon_sym_export] = ACTIONS(2857),
- [anon_sym_default] = ACTIONS(2857),
- [anon_sym_type] = ACTIONS(2857),
- [anon_sym_namespace] = ACTIONS(2857),
- [anon_sym_LBRACE] = ACTIONS(2855),
- [anon_sym_RBRACE] = ACTIONS(2855),
- [anon_sym_typeof] = ACTIONS(2857),
- [anon_sym_import] = ACTIONS(2857),
- [anon_sym_with] = ACTIONS(2857),
- [anon_sym_var] = ACTIONS(2857),
- [anon_sym_let] = ACTIONS(2857),
- [anon_sym_const] = ACTIONS(2857),
- [anon_sym_BANG] = ACTIONS(2855),
- [anon_sym_else] = ACTIONS(2857),
- [anon_sym_if] = ACTIONS(2857),
- [anon_sym_switch] = ACTIONS(2857),
- [anon_sym_for] = ACTIONS(2857),
- [anon_sym_LPAREN] = ACTIONS(2855),
- [anon_sym_await] = ACTIONS(2857),
- [anon_sym_while] = ACTIONS(2857),
- [anon_sym_do] = ACTIONS(2857),
- [anon_sym_try] = ACTIONS(2857),
- [anon_sym_break] = ACTIONS(2857),
- [anon_sym_continue] = ACTIONS(2857),
- [anon_sym_debugger] = ACTIONS(2857),
- [anon_sym_return] = ACTIONS(2857),
- [anon_sym_throw] = ACTIONS(2857),
- [anon_sym_SEMI] = ACTIONS(2855),
- [anon_sym_case] = ACTIONS(2857),
- [anon_sym_yield] = ACTIONS(2857),
- [anon_sym_LBRACK] = ACTIONS(2855),
- [sym_glimmer_opening_tag] = ACTIONS(2855),
- [anon_sym_DQUOTE] = ACTIONS(2855),
- [anon_sym_SQUOTE] = ACTIONS(2855),
- [anon_sym_class] = ACTIONS(2857),
- [anon_sym_async] = ACTIONS(2857),
- [anon_sym_function] = ACTIONS(2857),
- [anon_sym_new] = ACTIONS(2857),
- [anon_sym_using] = ACTIONS(2857),
- [anon_sym_PLUS] = ACTIONS(2857),
- [anon_sym_DASH] = ACTIONS(2857),
- [anon_sym_SLASH] = ACTIONS(2857),
- [anon_sym_LT] = ACTIONS(2857),
- [anon_sym_TILDE] = ACTIONS(2855),
- [anon_sym_void] = ACTIONS(2857),
- [anon_sym_delete] = ACTIONS(2857),
- [anon_sym_PLUS_PLUS] = ACTIONS(2855),
- [anon_sym_DASH_DASH] = ACTIONS(2855),
- [sym_comment] = ACTIONS(5),
- [anon_sym_BQUOTE] = ACTIONS(2855),
- [sym_number] = ACTIONS(2855),
- [sym_private_property_identifier] = ACTIONS(2855),
- [sym_this] = ACTIONS(2857),
- [sym_super] = ACTIONS(2857),
- [sym_true] = ACTIONS(2857),
- [sym_false] = ACTIONS(2857),
- [sym_null] = ACTIONS(2857),
- [sym_undefined] = ACTIONS(2857),
- [anon_sym_AT] = ACTIONS(2855),
- [anon_sym_static] = ACTIONS(2857),
- [anon_sym_readonly] = ACTIONS(2857),
- [anon_sym_get] = ACTIONS(2857),
- [anon_sym_set] = ACTIONS(2857),
- [anon_sym_declare] = ACTIONS(2857),
- [anon_sym_public] = ACTIONS(2857),
- [anon_sym_private] = ACTIONS(2857),
- [anon_sym_protected] = ACTIONS(2857),
- [anon_sym_override] = ACTIONS(2857),
- [anon_sym_module] = ACTIONS(2857),
- [anon_sym_any] = ACTIONS(2857),
- [anon_sym_number] = ACTIONS(2857),
- [anon_sym_boolean] = ACTIONS(2857),
- [anon_sym_string] = ACTIONS(2857),
- [anon_sym_symbol] = ACTIONS(2857),
- [anon_sym_object] = ACTIONS(2857),
- [anon_sym_abstract] = ACTIONS(2857),
- [anon_sym_interface] = ACTIONS(2857),
- [anon_sym_enum] = ACTIONS(2857),
- [sym_html_comment] = ACTIONS(5),
- },
- [855] = {
- [ts_builtin_sym_end] = ACTIONS(1925),
- [sym_identifier] = ACTIONS(1927),
- [anon_sym_export] = ACTIONS(1927),
- [anon_sym_default] = ACTIONS(1927),
- [anon_sym_type] = ACTIONS(1927),
- [anon_sym_namespace] = ACTIONS(1927),
- [anon_sym_LBRACE] = ACTIONS(1925),
- [anon_sym_RBRACE] = ACTIONS(1925),
- [anon_sym_typeof] = ACTIONS(1927),
- [anon_sym_import] = ACTIONS(1927),
- [anon_sym_with] = ACTIONS(1927),
- [anon_sym_var] = ACTIONS(1927),
- [anon_sym_let] = ACTIONS(1927),
- [anon_sym_const] = ACTIONS(1927),
- [anon_sym_BANG] = ACTIONS(1925),
- [anon_sym_else] = ACTIONS(1927),
- [anon_sym_if] = ACTIONS(1927),
- [anon_sym_switch] = ACTIONS(1927),
- [anon_sym_for] = ACTIONS(1927),
- [anon_sym_LPAREN] = ACTIONS(1925),
- [anon_sym_await] = ACTIONS(1927),
- [anon_sym_while] = ACTIONS(1927),
- [anon_sym_do] = ACTIONS(1927),
- [anon_sym_try] = ACTIONS(1927),
- [anon_sym_break] = ACTIONS(1927),
- [anon_sym_continue] = ACTIONS(1927),
- [anon_sym_debugger] = ACTIONS(1927),
- [anon_sym_return] = ACTIONS(1927),
- [anon_sym_throw] = ACTIONS(1927),
- [anon_sym_SEMI] = ACTIONS(1925),
- [anon_sym_case] = ACTIONS(1927),
- [anon_sym_yield] = ACTIONS(1927),
- [anon_sym_LBRACK] = ACTIONS(1925),
- [sym_glimmer_opening_tag] = ACTIONS(1925),
- [anon_sym_DQUOTE] = ACTIONS(1925),
- [anon_sym_SQUOTE] = ACTIONS(1925),
- [anon_sym_class] = ACTIONS(1927),
- [anon_sym_async] = ACTIONS(1927),
- [anon_sym_function] = ACTIONS(1927),
- [anon_sym_new] = ACTIONS(1927),
- [anon_sym_using] = ACTIONS(1927),
- [anon_sym_PLUS] = ACTIONS(1927),
- [anon_sym_DASH] = ACTIONS(1927),
- [anon_sym_SLASH] = ACTIONS(1927),
- [anon_sym_LT] = ACTIONS(1927),
- [anon_sym_TILDE] = ACTIONS(1925),
- [anon_sym_void] = ACTIONS(1927),
- [anon_sym_delete] = ACTIONS(1927),
- [anon_sym_PLUS_PLUS] = ACTIONS(1925),
- [anon_sym_DASH_DASH] = ACTIONS(1925),
- [sym_comment] = ACTIONS(5),
- [anon_sym_BQUOTE] = ACTIONS(1925),
- [sym_number] = ACTIONS(1925),
- [sym_private_property_identifier] = ACTIONS(1925),
- [sym_this] = ACTIONS(1927),
- [sym_super] = ACTIONS(1927),
- [sym_true] = ACTIONS(1927),
- [sym_false] = ACTIONS(1927),
- [sym_null] = ACTIONS(1927),
- [sym_undefined] = ACTIONS(1927),
- [anon_sym_AT] = ACTIONS(1925),
- [anon_sym_static] = ACTIONS(1927),
- [anon_sym_readonly] = ACTIONS(1927),
- [anon_sym_get] = ACTIONS(1927),
- [anon_sym_set] = ACTIONS(1927),
- [anon_sym_declare] = ACTIONS(1927),
- [anon_sym_public] = ACTIONS(1927),
- [anon_sym_private] = ACTIONS(1927),
- [anon_sym_protected] = ACTIONS(1927),
- [anon_sym_override] = ACTIONS(1927),
- [anon_sym_module] = ACTIONS(1927),
- [anon_sym_any] = ACTIONS(1927),
- [anon_sym_number] = ACTIONS(1927),
- [anon_sym_boolean] = ACTIONS(1927),
- [anon_sym_string] = ACTIONS(1927),
- [anon_sym_symbol] = ACTIONS(1927),
- [anon_sym_object] = ACTIONS(1927),
- [anon_sym_abstract] = ACTIONS(1927),
- [anon_sym_interface] = ACTIONS(1927),
- [anon_sym_enum] = ACTIONS(1927),
- [sym_html_comment] = ACTIONS(5),
- },
- [856] = {
- [ts_builtin_sym_end] = ACTIONS(2859),
- [sym_identifier] = ACTIONS(2861),
- [anon_sym_export] = ACTIONS(2861),
- [anon_sym_default] = ACTIONS(2861),
- [anon_sym_type] = ACTIONS(2861),
- [anon_sym_namespace] = ACTIONS(2861),
- [anon_sym_LBRACE] = ACTIONS(2859),
- [anon_sym_RBRACE] = ACTIONS(2859),
- [anon_sym_typeof] = ACTIONS(2861),
- [anon_sym_import] = ACTIONS(2861),
- [anon_sym_with] = ACTIONS(2861),
- [anon_sym_var] = ACTIONS(2861),
- [anon_sym_let] = ACTIONS(2861),
- [anon_sym_const] = ACTIONS(2861),
- [anon_sym_BANG] = ACTIONS(2859),
- [anon_sym_else] = ACTIONS(2861),
- [anon_sym_if] = ACTIONS(2861),
- [anon_sym_switch] = ACTIONS(2861),
- [anon_sym_for] = ACTIONS(2861),
- [anon_sym_LPAREN] = ACTIONS(2859),
- [anon_sym_await] = ACTIONS(2861),
- [anon_sym_while] = ACTIONS(2861),
- [anon_sym_do] = ACTIONS(2861),
- [anon_sym_try] = ACTIONS(2861),
- [anon_sym_break] = ACTIONS(2861),
- [anon_sym_continue] = ACTIONS(2861),
- [anon_sym_debugger] = ACTIONS(2861),
- [anon_sym_return] = ACTIONS(2861),
- [anon_sym_throw] = ACTIONS(2861),
- [anon_sym_SEMI] = ACTIONS(2859),
- [anon_sym_case] = ACTIONS(2861),
- [anon_sym_yield] = ACTIONS(2861),
- [anon_sym_LBRACK] = ACTIONS(2859),
- [sym_glimmer_opening_tag] = ACTIONS(2859),
- [anon_sym_DQUOTE] = ACTIONS(2859),
- [anon_sym_SQUOTE] = ACTIONS(2859),
- [anon_sym_class] = ACTIONS(2861),
- [anon_sym_async] = ACTIONS(2861),
- [anon_sym_function] = ACTIONS(2861),
- [anon_sym_new] = ACTIONS(2861),
- [anon_sym_using] = ACTIONS(2861),
- [anon_sym_PLUS] = ACTIONS(2861),
- [anon_sym_DASH] = ACTIONS(2861),
- [anon_sym_SLASH] = ACTIONS(2861),
- [anon_sym_LT] = ACTIONS(2861),
- [anon_sym_TILDE] = ACTIONS(2859),
- [anon_sym_void] = ACTIONS(2861),
- [anon_sym_delete] = ACTIONS(2861),
- [anon_sym_PLUS_PLUS] = ACTIONS(2859),
- [anon_sym_DASH_DASH] = ACTIONS(2859),
- [sym_comment] = ACTIONS(5),
- [anon_sym_BQUOTE] = ACTIONS(2859),
- [sym_number] = ACTIONS(2859),
- [sym_private_property_identifier] = ACTIONS(2859),
- [sym_this] = ACTIONS(2861),
- [sym_super] = ACTIONS(2861),
- [sym_true] = ACTIONS(2861),
- [sym_false] = ACTIONS(2861),
- [sym_null] = ACTIONS(2861),
- [sym_undefined] = ACTIONS(2861),
- [anon_sym_AT] = ACTIONS(2859),
- [anon_sym_static] = ACTIONS(2861),
- [anon_sym_readonly] = ACTIONS(2861),
- [anon_sym_get] = ACTIONS(2861),
- [anon_sym_set] = ACTIONS(2861),
- [anon_sym_declare] = ACTIONS(2861),
- [anon_sym_public] = ACTIONS(2861),
- [anon_sym_private] = ACTIONS(2861),
- [anon_sym_protected] = ACTIONS(2861),
- [anon_sym_override] = ACTIONS(2861),
- [anon_sym_module] = ACTIONS(2861),
- [anon_sym_any] = ACTIONS(2861),
- [anon_sym_number] = ACTIONS(2861),
- [anon_sym_boolean] = ACTIONS(2861),
- [anon_sym_string] = ACTIONS(2861),
- [anon_sym_symbol] = ACTIONS(2861),
- [anon_sym_object] = ACTIONS(2861),
- [anon_sym_abstract] = ACTIONS(2861),
- [anon_sym_interface] = ACTIONS(2861),
- [anon_sym_enum] = ACTIONS(2861),
- [sym_html_comment] = ACTIONS(5),
- },
- [857] = {
- [ts_builtin_sym_end] = ACTIONS(2863),
- [sym_identifier] = ACTIONS(2865),
- [anon_sym_export] = ACTIONS(2865),
- [anon_sym_default] = ACTIONS(2865),
- [anon_sym_type] = ACTIONS(2865),
- [anon_sym_namespace] = ACTIONS(2865),
- [anon_sym_LBRACE] = ACTIONS(2863),
- [anon_sym_RBRACE] = ACTIONS(2863),
- [anon_sym_typeof] = ACTIONS(2865),
- [anon_sym_import] = ACTIONS(2865),
- [anon_sym_with] = ACTIONS(2865),
- [anon_sym_var] = ACTIONS(2865),
- [anon_sym_let] = ACTIONS(2865),
- [anon_sym_const] = ACTIONS(2865),
- [anon_sym_BANG] = ACTIONS(2863),
- [anon_sym_else] = ACTIONS(2865),
- [anon_sym_if] = ACTIONS(2865),
- [anon_sym_switch] = ACTIONS(2865),
- [anon_sym_for] = ACTIONS(2865),
- [anon_sym_LPAREN] = ACTIONS(2863),
- [anon_sym_await] = ACTIONS(2865),
- [anon_sym_while] = ACTIONS(2865),
- [anon_sym_do] = ACTIONS(2865),
- [anon_sym_try] = ACTIONS(2865),
- [anon_sym_break] = ACTIONS(2865),
- [anon_sym_continue] = ACTIONS(2865),
- [anon_sym_debugger] = ACTIONS(2865),
- [anon_sym_return] = ACTIONS(2865),
- [anon_sym_throw] = ACTIONS(2865),
- [anon_sym_SEMI] = ACTIONS(2863),
- [anon_sym_case] = ACTIONS(2865),
- [anon_sym_yield] = ACTIONS(2865),
- [anon_sym_LBRACK] = ACTIONS(2863),
- [sym_glimmer_opening_tag] = ACTIONS(2863),
- [anon_sym_DQUOTE] = ACTIONS(2863),
- [anon_sym_SQUOTE] = ACTIONS(2863),
- [anon_sym_class] = ACTIONS(2865),
- [anon_sym_async] = ACTIONS(2865),
- [anon_sym_function] = ACTIONS(2865),
- [anon_sym_new] = ACTIONS(2865),
- [anon_sym_using] = ACTIONS(2865),
- [anon_sym_PLUS] = ACTIONS(2865),
- [anon_sym_DASH] = ACTIONS(2865),
- [anon_sym_SLASH] = ACTIONS(2865),
- [anon_sym_LT] = ACTIONS(2865),
- [anon_sym_TILDE] = ACTIONS(2863),
- [anon_sym_void] = ACTIONS(2865),
- [anon_sym_delete] = ACTIONS(2865),
- [anon_sym_PLUS_PLUS] = ACTIONS(2863),
- [anon_sym_DASH_DASH] = ACTIONS(2863),
- [sym_comment] = ACTIONS(5),
- [anon_sym_BQUOTE] = ACTIONS(2863),
- [sym_number] = ACTIONS(2863),
- [sym_private_property_identifier] = ACTIONS(2863),
- [sym_this] = ACTIONS(2865),
- [sym_super] = ACTIONS(2865),
- [sym_true] = ACTIONS(2865),
- [sym_false] = ACTIONS(2865),
- [sym_null] = ACTIONS(2865),
- [sym_undefined] = ACTIONS(2865),
- [anon_sym_AT] = ACTIONS(2863),
- [anon_sym_static] = ACTIONS(2865),
- [anon_sym_readonly] = ACTIONS(2865),
- [anon_sym_get] = ACTIONS(2865),
- [anon_sym_set] = ACTIONS(2865),
- [anon_sym_declare] = ACTIONS(2865),
- [anon_sym_public] = ACTIONS(2865),
- [anon_sym_private] = ACTIONS(2865),
- [anon_sym_protected] = ACTIONS(2865),
- [anon_sym_override] = ACTIONS(2865),
- [anon_sym_module] = ACTIONS(2865),
- [anon_sym_any] = ACTIONS(2865),
- [anon_sym_number] = ACTIONS(2865),
- [anon_sym_boolean] = ACTIONS(2865),
- [anon_sym_string] = ACTIONS(2865),
- [anon_sym_symbol] = ACTIONS(2865),
- [anon_sym_object] = ACTIONS(2865),
- [anon_sym_abstract] = ACTIONS(2865),
- [anon_sym_interface] = ACTIONS(2865),
- [anon_sym_enum] = ACTIONS(2865),
- [sym_html_comment] = ACTIONS(5),
- },
- [858] = {
- [ts_builtin_sym_end] = ACTIONS(2867),
- [sym_identifier] = ACTIONS(2869),
- [anon_sym_export] = ACTIONS(2869),
- [anon_sym_default] = ACTIONS(2869),
- [anon_sym_type] = ACTIONS(2869),
- [anon_sym_namespace] = ACTIONS(2869),
- [anon_sym_LBRACE] = ACTIONS(2867),
- [anon_sym_RBRACE] = ACTIONS(2867),
- [anon_sym_typeof] = ACTIONS(2869),
- [anon_sym_import] = ACTIONS(2869),
- [anon_sym_with] = ACTIONS(2869),
- [anon_sym_var] = ACTIONS(2869),
- [anon_sym_let] = ACTIONS(2869),
- [anon_sym_const] = ACTIONS(2869),
- [anon_sym_BANG] = ACTIONS(2867),
- [anon_sym_else] = ACTIONS(2869),
- [anon_sym_if] = ACTIONS(2869),
- [anon_sym_switch] = ACTIONS(2869),
- [anon_sym_for] = ACTIONS(2869),
- [anon_sym_LPAREN] = ACTIONS(2867),
- [anon_sym_await] = ACTIONS(2869),
- [anon_sym_while] = ACTIONS(2869),
- [anon_sym_do] = ACTIONS(2869),
- [anon_sym_try] = ACTIONS(2869),
- [anon_sym_break] = ACTIONS(2869),
- [anon_sym_continue] = ACTIONS(2869),
- [anon_sym_debugger] = ACTIONS(2869),
- [anon_sym_return] = ACTIONS(2869),
- [anon_sym_throw] = ACTIONS(2869),
- [anon_sym_SEMI] = ACTIONS(2867),
- [anon_sym_case] = ACTIONS(2869),
- [anon_sym_yield] = ACTIONS(2869),
- [anon_sym_LBRACK] = ACTIONS(2867),
- [sym_glimmer_opening_tag] = ACTIONS(2867),
- [anon_sym_DQUOTE] = ACTIONS(2867),
- [anon_sym_SQUOTE] = ACTIONS(2867),
- [anon_sym_class] = ACTIONS(2869),
- [anon_sym_async] = ACTIONS(2869),
- [anon_sym_function] = ACTIONS(2869),
- [anon_sym_new] = ACTIONS(2869),
- [anon_sym_using] = ACTIONS(2869),
- [anon_sym_PLUS] = ACTIONS(2869),
- [anon_sym_DASH] = ACTIONS(2869),
- [anon_sym_SLASH] = ACTIONS(2869),
- [anon_sym_LT] = ACTIONS(2869),
- [anon_sym_TILDE] = ACTIONS(2867),
- [anon_sym_void] = ACTIONS(2869),
- [anon_sym_delete] = ACTIONS(2869),
- [anon_sym_PLUS_PLUS] = ACTIONS(2867),
- [anon_sym_DASH_DASH] = ACTIONS(2867),
- [sym_comment] = ACTIONS(5),
- [anon_sym_BQUOTE] = ACTIONS(2867),
- [sym_number] = ACTIONS(2867),
- [sym_private_property_identifier] = ACTIONS(2867),
- [sym_this] = ACTIONS(2869),
- [sym_super] = ACTIONS(2869),
- [sym_true] = ACTIONS(2869),
- [sym_false] = ACTIONS(2869),
- [sym_null] = ACTIONS(2869),
- [sym_undefined] = ACTIONS(2869),
- [anon_sym_AT] = ACTIONS(2867),
- [anon_sym_static] = ACTIONS(2869),
- [anon_sym_readonly] = ACTIONS(2869),
- [anon_sym_get] = ACTIONS(2869),
- [anon_sym_set] = ACTIONS(2869),
- [anon_sym_declare] = ACTIONS(2869),
- [anon_sym_public] = ACTIONS(2869),
- [anon_sym_private] = ACTIONS(2869),
- [anon_sym_protected] = ACTIONS(2869),
- [anon_sym_override] = ACTIONS(2869),
- [anon_sym_module] = ACTIONS(2869),
- [anon_sym_any] = ACTIONS(2869),
- [anon_sym_number] = ACTIONS(2869),
- [anon_sym_boolean] = ACTIONS(2869),
- [anon_sym_string] = ACTIONS(2869),
- [anon_sym_symbol] = ACTIONS(2869),
- [anon_sym_object] = ACTIONS(2869),
- [anon_sym_abstract] = ACTIONS(2869),
- [anon_sym_interface] = ACTIONS(2869),
- [anon_sym_enum] = ACTIONS(2869),
- [sym_html_comment] = ACTIONS(5),
- },
- [859] = {
- [ts_builtin_sym_end] = ACTIONS(2871),
- [sym_identifier] = ACTIONS(2873),
- [anon_sym_export] = ACTIONS(2873),
- [anon_sym_default] = ACTIONS(2873),
- [anon_sym_type] = ACTIONS(2873),
- [anon_sym_namespace] = ACTIONS(2873),
- [anon_sym_LBRACE] = ACTIONS(2871),
- [anon_sym_RBRACE] = ACTIONS(2871),
- [anon_sym_typeof] = ACTIONS(2873),
- [anon_sym_import] = ACTIONS(2873),
- [anon_sym_with] = ACTIONS(2873),
- [anon_sym_var] = ACTIONS(2873),
- [anon_sym_let] = ACTIONS(2873),
- [anon_sym_const] = ACTIONS(2873),
- [anon_sym_BANG] = ACTIONS(2871),
- [anon_sym_else] = ACTIONS(2873),
- [anon_sym_if] = ACTIONS(2873),
- [anon_sym_switch] = ACTIONS(2873),
- [anon_sym_for] = ACTIONS(2873),
- [anon_sym_LPAREN] = ACTIONS(2871),
- [anon_sym_await] = ACTIONS(2873),
- [anon_sym_while] = ACTIONS(2873),
- [anon_sym_do] = ACTIONS(2873),
- [anon_sym_try] = ACTIONS(2873),
- [anon_sym_break] = ACTIONS(2873),
- [anon_sym_continue] = ACTIONS(2873),
- [anon_sym_debugger] = ACTIONS(2873),
- [anon_sym_return] = ACTIONS(2873),
- [anon_sym_throw] = ACTIONS(2873),
- [anon_sym_SEMI] = ACTIONS(2871),
- [anon_sym_case] = ACTIONS(2873),
- [anon_sym_yield] = ACTIONS(2873),
- [anon_sym_LBRACK] = ACTIONS(2871),
- [sym_glimmer_opening_tag] = ACTIONS(2871),
- [anon_sym_DQUOTE] = ACTIONS(2871),
- [anon_sym_SQUOTE] = ACTIONS(2871),
- [anon_sym_class] = ACTIONS(2873),
- [anon_sym_async] = ACTIONS(2873),
- [anon_sym_function] = ACTIONS(2873),
- [anon_sym_new] = ACTIONS(2873),
- [anon_sym_using] = ACTIONS(2873),
- [anon_sym_PLUS] = ACTIONS(2873),
- [anon_sym_DASH] = ACTIONS(2873),
- [anon_sym_SLASH] = ACTIONS(2873),
- [anon_sym_LT] = ACTIONS(2873),
- [anon_sym_TILDE] = ACTIONS(2871),
- [anon_sym_void] = ACTIONS(2873),
- [anon_sym_delete] = ACTIONS(2873),
- [anon_sym_PLUS_PLUS] = ACTIONS(2871),
- [anon_sym_DASH_DASH] = ACTIONS(2871),
- [sym_comment] = ACTIONS(5),
- [anon_sym_BQUOTE] = ACTIONS(2871),
- [sym_number] = ACTIONS(2871),
- [sym_private_property_identifier] = ACTIONS(2871),
- [sym_this] = ACTIONS(2873),
- [sym_super] = ACTIONS(2873),
- [sym_true] = ACTIONS(2873),
- [sym_false] = ACTIONS(2873),
- [sym_null] = ACTIONS(2873),
- [sym_undefined] = ACTIONS(2873),
- [anon_sym_AT] = ACTIONS(2871),
- [anon_sym_static] = ACTIONS(2873),
- [anon_sym_readonly] = ACTIONS(2873),
- [anon_sym_get] = ACTIONS(2873),
- [anon_sym_set] = ACTIONS(2873),
- [anon_sym_declare] = ACTIONS(2873),
- [anon_sym_public] = ACTIONS(2873),
- [anon_sym_private] = ACTIONS(2873),
- [anon_sym_protected] = ACTIONS(2873),
- [anon_sym_override] = ACTIONS(2873),
- [anon_sym_module] = ACTIONS(2873),
- [anon_sym_any] = ACTIONS(2873),
- [anon_sym_number] = ACTIONS(2873),
- [anon_sym_boolean] = ACTIONS(2873),
- [anon_sym_string] = ACTIONS(2873),
- [anon_sym_symbol] = ACTIONS(2873),
- [anon_sym_object] = ACTIONS(2873),
- [anon_sym_abstract] = ACTIONS(2873),
- [anon_sym_interface] = ACTIONS(2873),
- [anon_sym_enum] = ACTIONS(2873),
- [sym_html_comment] = ACTIONS(5),
- },
- [860] = {
- [ts_builtin_sym_end] = ACTIONS(1783),
- [sym_identifier] = ACTIONS(1785),
- [anon_sym_export] = ACTIONS(1785),
- [anon_sym_default] = ACTIONS(1785),
- [anon_sym_type] = ACTIONS(1785),
- [anon_sym_namespace] = ACTIONS(1785),
- [anon_sym_LBRACE] = ACTIONS(1783),
- [anon_sym_RBRACE] = ACTIONS(1783),
- [anon_sym_typeof] = ACTIONS(1785),
- [anon_sym_import] = ACTIONS(1785),
- [anon_sym_with] = ACTIONS(1785),
- [anon_sym_var] = ACTIONS(1785),
- [anon_sym_let] = ACTIONS(1785),
- [anon_sym_const] = ACTIONS(1785),
- [anon_sym_BANG] = ACTIONS(1783),
- [anon_sym_else] = ACTIONS(1785),
- [anon_sym_if] = ACTIONS(1785),
- [anon_sym_switch] = ACTIONS(1785),
- [anon_sym_for] = ACTIONS(1785),
- [anon_sym_LPAREN] = ACTIONS(1783),
- [anon_sym_await] = ACTIONS(1785),
- [anon_sym_while] = ACTIONS(1785),
- [anon_sym_do] = ACTIONS(1785),
- [anon_sym_try] = ACTIONS(1785),
- [anon_sym_break] = ACTIONS(1785),
- [anon_sym_continue] = ACTIONS(1785),
- [anon_sym_debugger] = ACTIONS(1785),
- [anon_sym_return] = ACTIONS(1785),
- [anon_sym_throw] = ACTIONS(1785),
- [anon_sym_SEMI] = ACTIONS(1783),
- [anon_sym_case] = ACTIONS(1785),
- [anon_sym_yield] = ACTIONS(1785),
- [anon_sym_LBRACK] = ACTIONS(1783),
- [sym_glimmer_opening_tag] = ACTIONS(1783),
- [anon_sym_DQUOTE] = ACTIONS(1783),
- [anon_sym_SQUOTE] = ACTIONS(1783),
- [anon_sym_class] = ACTIONS(1785),
- [anon_sym_async] = ACTIONS(1785),
- [anon_sym_function] = ACTIONS(1785),
- [anon_sym_new] = ACTIONS(1785),
- [anon_sym_using] = ACTIONS(1785),
- [anon_sym_PLUS] = ACTIONS(1785),
- [anon_sym_DASH] = ACTIONS(1785),
- [anon_sym_SLASH] = ACTIONS(1785),
- [anon_sym_LT] = ACTIONS(1785),
- [anon_sym_TILDE] = ACTIONS(1783),
- [anon_sym_void] = ACTIONS(1785),
- [anon_sym_delete] = ACTIONS(1785),
- [anon_sym_PLUS_PLUS] = ACTIONS(1783),
- [anon_sym_DASH_DASH] = ACTIONS(1783),
- [sym_comment] = ACTIONS(5),
- [anon_sym_BQUOTE] = ACTIONS(1783),
- [sym_number] = ACTIONS(1783),
- [sym_private_property_identifier] = ACTIONS(1783),
- [sym_this] = ACTIONS(1785),
- [sym_super] = ACTIONS(1785),
- [sym_true] = ACTIONS(1785),
- [sym_false] = ACTIONS(1785),
- [sym_null] = ACTIONS(1785),
- [sym_undefined] = ACTIONS(1785),
- [anon_sym_AT] = ACTIONS(1783),
- [anon_sym_static] = ACTIONS(1785),
- [anon_sym_readonly] = ACTIONS(1785),
- [anon_sym_get] = ACTIONS(1785),
- [anon_sym_set] = ACTIONS(1785),
- [anon_sym_declare] = ACTIONS(1785),
- [anon_sym_public] = ACTIONS(1785),
- [anon_sym_private] = ACTIONS(1785),
- [anon_sym_protected] = ACTIONS(1785),
- [anon_sym_override] = ACTIONS(1785),
- [anon_sym_module] = ACTIONS(1785),
- [anon_sym_any] = ACTIONS(1785),
- [anon_sym_number] = ACTIONS(1785),
- [anon_sym_boolean] = ACTIONS(1785),
- [anon_sym_string] = ACTIONS(1785),
- [anon_sym_symbol] = ACTIONS(1785),
- [anon_sym_object] = ACTIONS(1785),
- [anon_sym_abstract] = ACTIONS(1785),
- [anon_sym_interface] = ACTIONS(1785),
- [anon_sym_enum] = ACTIONS(1785),
- [sym_html_comment] = ACTIONS(5),
- },
- [861] = {
- [ts_builtin_sym_end] = ACTIONS(1783),
- [sym_identifier] = ACTIONS(1785),
- [anon_sym_export] = ACTIONS(1785),
- [anon_sym_default] = ACTIONS(1785),
- [anon_sym_type] = ACTIONS(1785),
- [anon_sym_namespace] = ACTIONS(1785),
- [anon_sym_LBRACE] = ACTIONS(1783),
- [anon_sym_RBRACE] = ACTIONS(1783),
- [anon_sym_typeof] = ACTIONS(1785),
- [anon_sym_import] = ACTIONS(1785),
- [anon_sym_with] = ACTIONS(1785),
- [anon_sym_var] = ACTIONS(1785),
- [anon_sym_let] = ACTIONS(1785),
- [anon_sym_const] = ACTIONS(1785),
- [anon_sym_BANG] = ACTIONS(1783),
- [anon_sym_else] = ACTIONS(1785),
- [anon_sym_if] = ACTIONS(1785),
- [anon_sym_switch] = ACTIONS(1785),
- [anon_sym_for] = ACTIONS(1785),
- [anon_sym_LPAREN] = ACTIONS(1783),
- [anon_sym_await] = ACTIONS(1785),
- [anon_sym_while] = ACTIONS(1785),
- [anon_sym_do] = ACTIONS(1785),
- [anon_sym_try] = ACTIONS(1785),
- [anon_sym_break] = ACTIONS(1785),
- [anon_sym_continue] = ACTIONS(1785),
- [anon_sym_debugger] = ACTIONS(1785),
- [anon_sym_return] = ACTIONS(1785),
- [anon_sym_throw] = ACTIONS(1785),
- [anon_sym_SEMI] = ACTIONS(1783),
- [anon_sym_case] = ACTIONS(1785),
- [anon_sym_yield] = ACTIONS(1785),
- [anon_sym_LBRACK] = ACTIONS(1783),
- [sym_glimmer_opening_tag] = ACTIONS(1783),
- [anon_sym_DQUOTE] = ACTIONS(1783),
- [anon_sym_SQUOTE] = ACTIONS(1783),
- [anon_sym_class] = ACTIONS(1785),
- [anon_sym_async] = ACTIONS(1785),
- [anon_sym_function] = ACTIONS(1785),
- [anon_sym_new] = ACTIONS(1785),
- [anon_sym_using] = ACTIONS(1785),
- [anon_sym_PLUS] = ACTIONS(1785),
- [anon_sym_DASH] = ACTIONS(1785),
- [anon_sym_SLASH] = ACTIONS(1785),
- [anon_sym_LT] = ACTIONS(1785),
- [anon_sym_TILDE] = ACTIONS(1783),
- [anon_sym_void] = ACTIONS(1785),
- [anon_sym_delete] = ACTIONS(1785),
- [anon_sym_PLUS_PLUS] = ACTIONS(1783),
- [anon_sym_DASH_DASH] = ACTIONS(1783),
- [sym_comment] = ACTIONS(5),
- [anon_sym_BQUOTE] = ACTIONS(1783),
- [sym_number] = ACTIONS(1783),
- [sym_private_property_identifier] = ACTIONS(1783),
- [sym_this] = ACTIONS(1785),
- [sym_super] = ACTIONS(1785),
- [sym_true] = ACTIONS(1785),
- [sym_false] = ACTIONS(1785),
- [sym_null] = ACTIONS(1785),
- [sym_undefined] = ACTIONS(1785),
- [anon_sym_AT] = ACTIONS(1783),
- [anon_sym_static] = ACTIONS(1785),
- [anon_sym_readonly] = ACTIONS(1785),
- [anon_sym_get] = ACTIONS(1785),
- [anon_sym_set] = ACTIONS(1785),
- [anon_sym_declare] = ACTIONS(1785),
- [anon_sym_public] = ACTIONS(1785),
- [anon_sym_private] = ACTIONS(1785),
- [anon_sym_protected] = ACTIONS(1785),
- [anon_sym_override] = ACTIONS(1785),
- [anon_sym_module] = ACTIONS(1785),
- [anon_sym_any] = ACTIONS(1785),
- [anon_sym_number] = ACTIONS(1785),
- [anon_sym_boolean] = ACTIONS(1785),
- [anon_sym_string] = ACTIONS(1785),
- [anon_sym_symbol] = ACTIONS(1785),
- [anon_sym_object] = ACTIONS(1785),
- [anon_sym_abstract] = ACTIONS(1785),
- [anon_sym_interface] = ACTIONS(1785),
- [anon_sym_enum] = ACTIONS(1785),
- [sym_html_comment] = ACTIONS(5),
- },
- [862] = {
- [ts_builtin_sym_end] = ACTIONS(1779),
- [sym_identifier] = ACTIONS(1781),
- [anon_sym_export] = ACTIONS(1781),
- [anon_sym_default] = ACTIONS(1781),
- [anon_sym_type] = ACTIONS(1781),
- [anon_sym_namespace] = ACTIONS(1781),
- [anon_sym_LBRACE] = ACTIONS(1779),
- [anon_sym_RBRACE] = ACTIONS(1779),
- [anon_sym_typeof] = ACTIONS(1781),
- [anon_sym_import] = ACTIONS(1781),
- [anon_sym_with] = ACTIONS(1781),
- [anon_sym_var] = ACTIONS(1781),
- [anon_sym_let] = ACTIONS(1781),
- [anon_sym_const] = ACTIONS(1781),
- [anon_sym_BANG] = ACTIONS(1779),
- [anon_sym_else] = ACTIONS(1781),
- [anon_sym_if] = ACTIONS(1781),
- [anon_sym_switch] = ACTIONS(1781),
- [anon_sym_for] = ACTIONS(1781),
- [anon_sym_LPAREN] = ACTIONS(1779),
- [anon_sym_await] = ACTIONS(1781),
- [anon_sym_while] = ACTIONS(1781),
- [anon_sym_do] = ACTIONS(1781),
- [anon_sym_try] = ACTIONS(1781),
- [anon_sym_break] = ACTIONS(1781),
- [anon_sym_continue] = ACTIONS(1781),
- [anon_sym_debugger] = ACTIONS(1781),
- [anon_sym_return] = ACTIONS(1781),
- [anon_sym_throw] = ACTIONS(1781),
- [anon_sym_SEMI] = ACTIONS(1779),
- [anon_sym_case] = ACTIONS(1781),
- [anon_sym_yield] = ACTIONS(1781),
- [anon_sym_LBRACK] = ACTIONS(1779),
- [sym_glimmer_opening_tag] = ACTIONS(1779),
- [anon_sym_DQUOTE] = ACTIONS(1779),
- [anon_sym_SQUOTE] = ACTIONS(1779),
- [anon_sym_class] = ACTIONS(1781),
- [anon_sym_async] = ACTIONS(1781),
- [anon_sym_function] = ACTIONS(1781),
- [anon_sym_new] = ACTIONS(1781),
- [anon_sym_using] = ACTIONS(1781),
- [anon_sym_PLUS] = ACTIONS(1781),
- [anon_sym_DASH] = ACTIONS(1781),
- [anon_sym_SLASH] = ACTIONS(1781),
- [anon_sym_LT] = ACTIONS(1781),
- [anon_sym_TILDE] = ACTIONS(1779),
- [anon_sym_void] = ACTIONS(1781),
- [anon_sym_delete] = ACTIONS(1781),
- [anon_sym_PLUS_PLUS] = ACTIONS(1779),
- [anon_sym_DASH_DASH] = ACTIONS(1779),
- [sym_comment] = ACTIONS(5),
- [anon_sym_BQUOTE] = ACTIONS(1779),
- [sym_number] = ACTIONS(1779),
- [sym_private_property_identifier] = ACTIONS(1779),
- [sym_this] = ACTIONS(1781),
- [sym_super] = ACTIONS(1781),
- [sym_true] = ACTIONS(1781),
- [sym_false] = ACTIONS(1781),
- [sym_null] = ACTIONS(1781),
- [sym_undefined] = ACTIONS(1781),
- [anon_sym_AT] = ACTIONS(1779),
- [anon_sym_static] = ACTIONS(1781),
- [anon_sym_readonly] = ACTIONS(1781),
- [anon_sym_get] = ACTIONS(1781),
- [anon_sym_set] = ACTIONS(1781),
- [anon_sym_declare] = ACTIONS(1781),
- [anon_sym_public] = ACTIONS(1781),
- [anon_sym_private] = ACTIONS(1781),
- [anon_sym_protected] = ACTIONS(1781),
- [anon_sym_override] = ACTIONS(1781),
- [anon_sym_module] = ACTIONS(1781),
- [anon_sym_any] = ACTIONS(1781),
- [anon_sym_number] = ACTIONS(1781),
- [anon_sym_boolean] = ACTIONS(1781),
- [anon_sym_string] = ACTIONS(1781),
- [anon_sym_symbol] = ACTIONS(1781),
- [anon_sym_object] = ACTIONS(1781),
- [anon_sym_abstract] = ACTIONS(1781),
- [anon_sym_interface] = ACTIONS(1781),
- [anon_sym_enum] = ACTIONS(1781),
- [sym_html_comment] = ACTIONS(5),
- },
- [863] = {
- [ts_builtin_sym_end] = ACTIONS(2875),
- [sym_identifier] = ACTIONS(2877),
- [anon_sym_export] = ACTIONS(2877),
- [anon_sym_default] = ACTIONS(2877),
- [anon_sym_type] = ACTIONS(2877),
- [anon_sym_namespace] = ACTIONS(2877),
- [anon_sym_LBRACE] = ACTIONS(2875),
- [anon_sym_RBRACE] = ACTIONS(2875),
- [anon_sym_typeof] = ACTIONS(2877),
- [anon_sym_import] = ACTIONS(2877),
- [anon_sym_with] = ACTIONS(2877),
- [anon_sym_var] = ACTIONS(2877),
- [anon_sym_let] = ACTIONS(2877),
- [anon_sym_const] = ACTIONS(2877),
- [anon_sym_BANG] = ACTIONS(2875),
- [anon_sym_else] = ACTIONS(2877),
- [anon_sym_if] = ACTIONS(2877),
- [anon_sym_switch] = ACTIONS(2877),
- [anon_sym_for] = ACTIONS(2877),
- [anon_sym_LPAREN] = ACTIONS(2875),
- [anon_sym_await] = ACTIONS(2877),
- [anon_sym_while] = ACTIONS(2877),
- [anon_sym_do] = ACTIONS(2877),
- [anon_sym_try] = ACTIONS(2877),
- [anon_sym_break] = ACTIONS(2877),
- [anon_sym_continue] = ACTIONS(2877),
- [anon_sym_debugger] = ACTIONS(2877),
- [anon_sym_return] = ACTIONS(2877),
- [anon_sym_throw] = ACTIONS(2877),
- [anon_sym_SEMI] = ACTIONS(2875),
- [anon_sym_case] = ACTIONS(2877),
- [anon_sym_yield] = ACTIONS(2877),
- [anon_sym_LBRACK] = ACTIONS(2875),
- [sym_glimmer_opening_tag] = ACTIONS(2875),
- [anon_sym_DQUOTE] = ACTIONS(2875),
- [anon_sym_SQUOTE] = ACTIONS(2875),
- [anon_sym_class] = ACTIONS(2877),
- [anon_sym_async] = ACTIONS(2877),
- [anon_sym_function] = ACTIONS(2877),
- [anon_sym_new] = ACTIONS(2877),
- [anon_sym_using] = ACTIONS(2877),
- [anon_sym_PLUS] = ACTIONS(2877),
- [anon_sym_DASH] = ACTIONS(2877),
- [anon_sym_SLASH] = ACTIONS(2877),
- [anon_sym_LT] = ACTIONS(2877),
- [anon_sym_TILDE] = ACTIONS(2875),
- [anon_sym_void] = ACTIONS(2877),
- [anon_sym_delete] = ACTIONS(2877),
- [anon_sym_PLUS_PLUS] = ACTIONS(2875),
- [anon_sym_DASH_DASH] = ACTIONS(2875),
- [sym_comment] = ACTIONS(5),
- [anon_sym_BQUOTE] = ACTIONS(2875),
- [sym_number] = ACTIONS(2875),
- [sym_private_property_identifier] = ACTIONS(2875),
- [sym_this] = ACTIONS(2877),
- [sym_super] = ACTIONS(2877),
- [sym_true] = ACTIONS(2877),
- [sym_false] = ACTIONS(2877),
- [sym_null] = ACTIONS(2877),
- [sym_undefined] = ACTIONS(2877),
- [anon_sym_AT] = ACTIONS(2875),
- [anon_sym_static] = ACTIONS(2877),
- [anon_sym_readonly] = ACTIONS(2877),
- [anon_sym_get] = ACTIONS(2877),
- [anon_sym_set] = ACTIONS(2877),
- [anon_sym_declare] = ACTIONS(2877),
- [anon_sym_public] = ACTIONS(2877),
- [anon_sym_private] = ACTIONS(2877),
- [anon_sym_protected] = ACTIONS(2877),
- [anon_sym_override] = ACTIONS(2877),
- [anon_sym_module] = ACTIONS(2877),
- [anon_sym_any] = ACTIONS(2877),
- [anon_sym_number] = ACTIONS(2877),
- [anon_sym_boolean] = ACTIONS(2877),
- [anon_sym_string] = ACTIONS(2877),
- [anon_sym_symbol] = ACTIONS(2877),
- [anon_sym_object] = ACTIONS(2877),
- [anon_sym_abstract] = ACTIONS(2877),
- [anon_sym_interface] = ACTIONS(2877),
- [anon_sym_enum] = ACTIONS(2877),
- [sym_html_comment] = ACTIONS(5),
- },
- [864] = {
- [ts_builtin_sym_end] = ACTIONS(2487),
- [sym_identifier] = ACTIONS(2489),
- [anon_sym_export] = ACTIONS(2489),
- [anon_sym_default] = ACTIONS(2489),
- [anon_sym_type] = ACTIONS(2489),
- [anon_sym_namespace] = ACTIONS(2489),
- [anon_sym_LBRACE] = ACTIONS(2487),
- [anon_sym_RBRACE] = ACTIONS(2487),
- [anon_sym_typeof] = ACTIONS(2489),
- [anon_sym_import] = ACTIONS(2489),
- [anon_sym_with] = ACTIONS(2489),
- [anon_sym_var] = ACTIONS(2489),
- [anon_sym_let] = ACTIONS(2489),
- [anon_sym_const] = ACTIONS(2489),
- [anon_sym_BANG] = ACTIONS(2487),
- [anon_sym_else] = ACTIONS(2489),
- [anon_sym_if] = ACTIONS(2489),
- [anon_sym_switch] = ACTIONS(2489),
- [anon_sym_for] = ACTIONS(2489),
- [anon_sym_LPAREN] = ACTIONS(2487),
- [anon_sym_await] = ACTIONS(2489),
- [anon_sym_while] = ACTIONS(2489),
- [anon_sym_do] = ACTIONS(2489),
- [anon_sym_try] = ACTIONS(2489),
- [anon_sym_break] = ACTIONS(2489),
- [anon_sym_continue] = ACTIONS(2489),
- [anon_sym_debugger] = ACTIONS(2489),
- [anon_sym_return] = ACTIONS(2489),
- [anon_sym_throw] = ACTIONS(2489),
- [anon_sym_SEMI] = ACTIONS(2487),
- [anon_sym_case] = ACTIONS(2489),
- [anon_sym_yield] = ACTIONS(2489),
- [anon_sym_LBRACK] = ACTIONS(2487),
- [sym_glimmer_opening_tag] = ACTIONS(2487),
- [anon_sym_DQUOTE] = ACTIONS(2487),
- [anon_sym_SQUOTE] = ACTIONS(2487),
- [anon_sym_class] = ACTIONS(2489),
- [anon_sym_async] = ACTIONS(2489),
- [anon_sym_function] = ACTIONS(2489),
- [anon_sym_new] = ACTIONS(2489),
- [anon_sym_using] = ACTIONS(2489),
- [anon_sym_PLUS] = ACTIONS(2489),
- [anon_sym_DASH] = ACTIONS(2489),
- [anon_sym_SLASH] = ACTIONS(2489),
- [anon_sym_LT] = ACTIONS(2489),
- [anon_sym_TILDE] = ACTIONS(2487),
- [anon_sym_void] = ACTIONS(2489),
- [anon_sym_delete] = ACTIONS(2489),
- [anon_sym_PLUS_PLUS] = ACTIONS(2487),
- [anon_sym_DASH_DASH] = ACTIONS(2487),
- [sym_comment] = ACTIONS(5),
- [anon_sym_BQUOTE] = ACTIONS(2487),
- [sym_number] = ACTIONS(2487),
- [sym_private_property_identifier] = ACTIONS(2487),
- [sym_this] = ACTIONS(2489),
- [sym_super] = ACTIONS(2489),
- [sym_true] = ACTIONS(2489),
- [sym_false] = ACTIONS(2489),
- [sym_null] = ACTIONS(2489),
- [sym_undefined] = ACTIONS(2489),
- [anon_sym_AT] = ACTIONS(2487),
- [anon_sym_static] = ACTIONS(2489),
- [anon_sym_readonly] = ACTIONS(2489),
- [anon_sym_get] = ACTIONS(2489),
- [anon_sym_set] = ACTIONS(2489),
- [anon_sym_declare] = ACTIONS(2489),
- [anon_sym_public] = ACTIONS(2489),
- [anon_sym_private] = ACTIONS(2489),
- [anon_sym_protected] = ACTIONS(2489),
- [anon_sym_override] = ACTIONS(2489),
- [anon_sym_module] = ACTIONS(2489),
- [anon_sym_any] = ACTIONS(2489),
- [anon_sym_number] = ACTIONS(2489),
- [anon_sym_boolean] = ACTIONS(2489),
- [anon_sym_string] = ACTIONS(2489),
- [anon_sym_symbol] = ACTIONS(2489),
- [anon_sym_object] = ACTIONS(2489),
- [anon_sym_abstract] = ACTIONS(2489),
- [anon_sym_interface] = ACTIONS(2489),
- [anon_sym_enum] = ACTIONS(2489),
- [sym_html_comment] = ACTIONS(5),
- },
- [865] = {
- [ts_builtin_sym_end] = ACTIONS(2487),
- [sym_identifier] = ACTIONS(2489),
- [anon_sym_export] = ACTIONS(2489),
- [anon_sym_default] = ACTIONS(2489),
- [anon_sym_type] = ACTIONS(2489),
- [anon_sym_namespace] = ACTIONS(2489),
- [anon_sym_LBRACE] = ACTIONS(2487),
- [anon_sym_RBRACE] = ACTIONS(2487),
- [anon_sym_typeof] = ACTIONS(2489),
- [anon_sym_import] = ACTIONS(2489),
- [anon_sym_with] = ACTIONS(2489),
- [anon_sym_var] = ACTIONS(2489),
- [anon_sym_let] = ACTIONS(2489),
- [anon_sym_const] = ACTIONS(2489),
- [anon_sym_BANG] = ACTIONS(2487),
- [anon_sym_else] = ACTIONS(2489),
- [anon_sym_if] = ACTIONS(2489),
- [anon_sym_switch] = ACTIONS(2489),
- [anon_sym_for] = ACTIONS(2489),
- [anon_sym_LPAREN] = ACTIONS(2487),
- [anon_sym_await] = ACTIONS(2489),
- [anon_sym_while] = ACTIONS(2489),
- [anon_sym_do] = ACTIONS(2489),
- [anon_sym_try] = ACTIONS(2489),
- [anon_sym_break] = ACTIONS(2489),
- [anon_sym_continue] = ACTIONS(2489),
- [anon_sym_debugger] = ACTIONS(2489),
- [anon_sym_return] = ACTIONS(2489),
- [anon_sym_throw] = ACTIONS(2489),
- [anon_sym_SEMI] = ACTIONS(2487),
- [anon_sym_case] = ACTIONS(2489),
- [anon_sym_yield] = ACTIONS(2489),
- [anon_sym_LBRACK] = ACTIONS(2487),
- [sym_glimmer_opening_tag] = ACTIONS(2487),
- [anon_sym_DQUOTE] = ACTIONS(2487),
- [anon_sym_SQUOTE] = ACTIONS(2487),
- [anon_sym_class] = ACTIONS(2489),
- [anon_sym_async] = ACTIONS(2489),
- [anon_sym_function] = ACTIONS(2489),
- [anon_sym_new] = ACTIONS(2489),
- [anon_sym_using] = ACTIONS(2489),
- [anon_sym_PLUS] = ACTIONS(2489),
- [anon_sym_DASH] = ACTIONS(2489),
- [anon_sym_SLASH] = ACTIONS(2489),
- [anon_sym_LT] = ACTIONS(2489),
- [anon_sym_TILDE] = ACTIONS(2487),
- [anon_sym_void] = ACTIONS(2489),
- [anon_sym_delete] = ACTIONS(2489),
- [anon_sym_PLUS_PLUS] = ACTIONS(2487),
- [anon_sym_DASH_DASH] = ACTIONS(2487),
- [sym_comment] = ACTIONS(5),
- [anon_sym_BQUOTE] = ACTIONS(2487),
- [sym_number] = ACTIONS(2487),
- [sym_private_property_identifier] = ACTIONS(2487),
- [sym_this] = ACTIONS(2489),
- [sym_super] = ACTIONS(2489),
- [sym_true] = ACTIONS(2489),
- [sym_false] = ACTIONS(2489),
- [sym_null] = ACTIONS(2489),
- [sym_undefined] = ACTIONS(2489),
- [anon_sym_AT] = ACTIONS(2487),
- [anon_sym_static] = ACTIONS(2489),
- [anon_sym_readonly] = ACTIONS(2489),
- [anon_sym_get] = ACTIONS(2489),
- [anon_sym_set] = ACTIONS(2489),
- [anon_sym_declare] = ACTIONS(2489),
- [anon_sym_public] = ACTIONS(2489),
- [anon_sym_private] = ACTIONS(2489),
- [anon_sym_protected] = ACTIONS(2489),
- [anon_sym_override] = ACTIONS(2489),
- [anon_sym_module] = ACTIONS(2489),
- [anon_sym_any] = ACTIONS(2489),
- [anon_sym_number] = ACTIONS(2489),
- [anon_sym_boolean] = ACTIONS(2489),
- [anon_sym_string] = ACTIONS(2489),
- [anon_sym_symbol] = ACTIONS(2489),
- [anon_sym_object] = ACTIONS(2489),
- [anon_sym_abstract] = ACTIONS(2489),
- [anon_sym_interface] = ACTIONS(2489),
- [anon_sym_enum] = ACTIONS(2489),
- [sym_html_comment] = ACTIONS(5),
- },
- [866] = {
- [ts_builtin_sym_end] = ACTIONS(2879),
- [sym_identifier] = ACTIONS(2881),
- [anon_sym_export] = ACTIONS(2881),
- [anon_sym_default] = ACTIONS(2881),
- [anon_sym_type] = ACTIONS(2881),
- [anon_sym_namespace] = ACTIONS(2881),
- [anon_sym_LBRACE] = ACTIONS(2879),
- [anon_sym_RBRACE] = ACTIONS(2879),
- [anon_sym_typeof] = ACTIONS(2881),
- [anon_sym_import] = ACTIONS(2881),
- [anon_sym_with] = ACTIONS(2881),
- [anon_sym_var] = ACTIONS(2881),
- [anon_sym_let] = ACTIONS(2881),
- [anon_sym_const] = ACTIONS(2881),
- [anon_sym_BANG] = ACTIONS(2879),
- [anon_sym_else] = ACTIONS(2881),
- [anon_sym_if] = ACTIONS(2881),
- [anon_sym_switch] = ACTIONS(2881),
- [anon_sym_for] = ACTIONS(2881),
- [anon_sym_LPAREN] = ACTIONS(2879),
- [anon_sym_await] = ACTIONS(2881),
- [anon_sym_while] = ACTIONS(2881),
- [anon_sym_do] = ACTIONS(2881),
- [anon_sym_try] = ACTIONS(2881),
- [anon_sym_break] = ACTIONS(2881),
- [anon_sym_continue] = ACTIONS(2881),
- [anon_sym_debugger] = ACTIONS(2881),
- [anon_sym_return] = ACTIONS(2881),
- [anon_sym_throw] = ACTIONS(2881),
- [anon_sym_SEMI] = ACTIONS(2879),
- [anon_sym_case] = ACTIONS(2881),
- [anon_sym_yield] = ACTIONS(2881),
- [anon_sym_LBRACK] = ACTIONS(2879),
- [sym_glimmer_opening_tag] = ACTIONS(2879),
- [anon_sym_DQUOTE] = ACTIONS(2879),
- [anon_sym_SQUOTE] = ACTIONS(2879),
- [anon_sym_class] = ACTIONS(2881),
- [anon_sym_async] = ACTIONS(2881),
- [anon_sym_function] = ACTIONS(2881),
- [anon_sym_new] = ACTIONS(2881),
- [anon_sym_using] = ACTIONS(2881),
- [anon_sym_PLUS] = ACTIONS(2881),
- [anon_sym_DASH] = ACTIONS(2881),
- [anon_sym_SLASH] = ACTIONS(2881),
- [anon_sym_LT] = ACTIONS(2881),
- [anon_sym_TILDE] = ACTIONS(2879),
- [anon_sym_void] = ACTIONS(2881),
- [anon_sym_delete] = ACTIONS(2881),
- [anon_sym_PLUS_PLUS] = ACTIONS(2879),
- [anon_sym_DASH_DASH] = ACTIONS(2879),
- [sym_comment] = ACTIONS(5),
- [anon_sym_BQUOTE] = ACTIONS(2879),
- [sym_number] = ACTIONS(2879),
- [sym_private_property_identifier] = ACTIONS(2879),
- [sym_this] = ACTIONS(2881),
- [sym_super] = ACTIONS(2881),
- [sym_true] = ACTIONS(2881),
- [sym_false] = ACTIONS(2881),
- [sym_null] = ACTIONS(2881),
- [sym_undefined] = ACTIONS(2881),
- [anon_sym_AT] = ACTIONS(2879),
- [anon_sym_static] = ACTIONS(2881),
- [anon_sym_readonly] = ACTIONS(2881),
- [anon_sym_get] = ACTIONS(2881),
- [anon_sym_set] = ACTIONS(2881),
- [anon_sym_declare] = ACTIONS(2881),
- [anon_sym_public] = ACTIONS(2881),
- [anon_sym_private] = ACTIONS(2881),
- [anon_sym_protected] = ACTIONS(2881),
- [anon_sym_override] = ACTIONS(2881),
- [anon_sym_module] = ACTIONS(2881),
- [anon_sym_any] = ACTIONS(2881),
- [anon_sym_number] = ACTIONS(2881),
- [anon_sym_boolean] = ACTIONS(2881),
- [anon_sym_string] = ACTIONS(2881),
- [anon_sym_symbol] = ACTIONS(2881),
- [anon_sym_object] = ACTIONS(2881),
- [anon_sym_abstract] = ACTIONS(2881),
- [anon_sym_interface] = ACTIONS(2881),
- [anon_sym_enum] = ACTIONS(2881),
- [sym_html_comment] = ACTIONS(5),
- },
- [867] = {
- [ts_builtin_sym_end] = ACTIONS(2883),
- [sym_identifier] = ACTIONS(2885),
- [anon_sym_export] = ACTIONS(2885),
- [anon_sym_default] = ACTIONS(2885),
- [anon_sym_type] = ACTIONS(2885),
- [anon_sym_namespace] = ACTIONS(2885),
- [anon_sym_LBRACE] = ACTIONS(2883),
- [anon_sym_RBRACE] = ACTIONS(2883),
- [anon_sym_typeof] = ACTIONS(2885),
- [anon_sym_import] = ACTIONS(2885),
- [anon_sym_with] = ACTIONS(2885),
- [anon_sym_var] = ACTIONS(2885),
- [anon_sym_let] = ACTIONS(2885),
- [anon_sym_const] = ACTIONS(2885),
- [anon_sym_BANG] = ACTIONS(2883),
- [anon_sym_else] = ACTIONS(2885),
- [anon_sym_if] = ACTIONS(2885),
- [anon_sym_switch] = ACTIONS(2885),
- [anon_sym_for] = ACTIONS(2885),
- [anon_sym_LPAREN] = ACTIONS(2883),
- [anon_sym_await] = ACTIONS(2885),
- [anon_sym_while] = ACTIONS(2885),
- [anon_sym_do] = ACTIONS(2885),
- [anon_sym_try] = ACTIONS(2885),
- [anon_sym_break] = ACTIONS(2885),
- [anon_sym_continue] = ACTIONS(2885),
- [anon_sym_debugger] = ACTIONS(2885),
- [anon_sym_return] = ACTIONS(2885),
- [anon_sym_throw] = ACTIONS(2885),
- [anon_sym_SEMI] = ACTIONS(2883),
- [anon_sym_case] = ACTIONS(2885),
- [anon_sym_yield] = ACTIONS(2885),
- [anon_sym_LBRACK] = ACTIONS(2883),
- [sym_glimmer_opening_tag] = ACTIONS(2883),
- [anon_sym_DQUOTE] = ACTIONS(2883),
- [anon_sym_SQUOTE] = ACTIONS(2883),
- [anon_sym_class] = ACTIONS(2885),
- [anon_sym_async] = ACTIONS(2885),
- [anon_sym_function] = ACTIONS(2885),
- [anon_sym_new] = ACTIONS(2885),
- [anon_sym_using] = ACTIONS(2885),
- [anon_sym_PLUS] = ACTIONS(2885),
- [anon_sym_DASH] = ACTIONS(2885),
- [anon_sym_SLASH] = ACTIONS(2885),
- [anon_sym_LT] = ACTIONS(2885),
- [anon_sym_TILDE] = ACTIONS(2883),
- [anon_sym_void] = ACTIONS(2885),
- [anon_sym_delete] = ACTIONS(2885),
- [anon_sym_PLUS_PLUS] = ACTIONS(2883),
- [anon_sym_DASH_DASH] = ACTIONS(2883),
- [sym_comment] = ACTIONS(5),
- [anon_sym_BQUOTE] = ACTIONS(2883),
- [sym_number] = ACTIONS(2883),
- [sym_private_property_identifier] = ACTIONS(2883),
- [sym_this] = ACTIONS(2885),
- [sym_super] = ACTIONS(2885),
- [sym_true] = ACTIONS(2885),
- [sym_false] = ACTIONS(2885),
- [sym_null] = ACTIONS(2885),
- [sym_undefined] = ACTIONS(2885),
- [anon_sym_AT] = ACTIONS(2883),
- [anon_sym_static] = ACTIONS(2885),
- [anon_sym_readonly] = ACTIONS(2885),
- [anon_sym_get] = ACTIONS(2885),
- [anon_sym_set] = ACTIONS(2885),
- [anon_sym_declare] = ACTIONS(2885),
- [anon_sym_public] = ACTIONS(2885),
- [anon_sym_private] = ACTIONS(2885),
- [anon_sym_protected] = ACTIONS(2885),
- [anon_sym_override] = ACTIONS(2885),
- [anon_sym_module] = ACTIONS(2885),
- [anon_sym_any] = ACTIONS(2885),
- [anon_sym_number] = ACTIONS(2885),
- [anon_sym_boolean] = ACTIONS(2885),
- [anon_sym_string] = ACTIONS(2885),
- [anon_sym_symbol] = ACTIONS(2885),
- [anon_sym_object] = ACTIONS(2885),
- [anon_sym_abstract] = ACTIONS(2885),
- [anon_sym_interface] = ACTIONS(2885),
- [anon_sym_enum] = ACTIONS(2885),
- [sym_html_comment] = ACTIONS(5),
- },
- [868] = {
- [ts_builtin_sym_end] = ACTIONS(2487),
- [sym_identifier] = ACTIONS(2489),
- [anon_sym_export] = ACTIONS(2489),
- [anon_sym_default] = ACTIONS(2489),
- [anon_sym_type] = ACTIONS(2489),
- [anon_sym_namespace] = ACTIONS(2489),
- [anon_sym_LBRACE] = ACTIONS(2487),
- [anon_sym_RBRACE] = ACTIONS(2487),
- [anon_sym_typeof] = ACTIONS(2489),
- [anon_sym_import] = ACTIONS(2489),
- [anon_sym_with] = ACTIONS(2489),
- [anon_sym_var] = ACTIONS(2489),
- [anon_sym_let] = ACTIONS(2489),
- [anon_sym_const] = ACTIONS(2489),
- [anon_sym_BANG] = ACTIONS(2487),
- [anon_sym_else] = ACTIONS(2489),
- [anon_sym_if] = ACTIONS(2489),
- [anon_sym_switch] = ACTIONS(2489),
- [anon_sym_for] = ACTIONS(2489),
- [anon_sym_LPAREN] = ACTIONS(2487),
- [anon_sym_await] = ACTIONS(2489),
- [anon_sym_while] = ACTIONS(2489),
- [anon_sym_do] = ACTIONS(2489),
- [anon_sym_try] = ACTIONS(2489),
- [anon_sym_break] = ACTIONS(2489),
- [anon_sym_continue] = ACTIONS(2489),
- [anon_sym_debugger] = ACTIONS(2489),
- [anon_sym_return] = ACTIONS(2489),
- [anon_sym_throw] = ACTIONS(2489),
- [anon_sym_SEMI] = ACTIONS(2487),
- [anon_sym_case] = ACTIONS(2489),
- [anon_sym_yield] = ACTIONS(2489),
- [anon_sym_LBRACK] = ACTIONS(2487),
- [sym_glimmer_opening_tag] = ACTIONS(2487),
- [anon_sym_DQUOTE] = ACTIONS(2487),
- [anon_sym_SQUOTE] = ACTIONS(2487),
- [anon_sym_class] = ACTIONS(2489),
- [anon_sym_async] = ACTIONS(2489),
- [anon_sym_function] = ACTIONS(2489),
- [anon_sym_new] = ACTIONS(2489),
- [anon_sym_using] = ACTIONS(2489),
- [anon_sym_PLUS] = ACTIONS(2489),
- [anon_sym_DASH] = ACTIONS(2489),
- [anon_sym_SLASH] = ACTIONS(2489),
- [anon_sym_LT] = ACTIONS(2489),
- [anon_sym_TILDE] = ACTIONS(2487),
- [anon_sym_void] = ACTIONS(2489),
- [anon_sym_delete] = ACTIONS(2489),
- [anon_sym_PLUS_PLUS] = ACTIONS(2487),
- [anon_sym_DASH_DASH] = ACTIONS(2487),
- [sym_comment] = ACTIONS(5),
- [anon_sym_BQUOTE] = ACTIONS(2487),
- [sym_number] = ACTIONS(2487),
- [sym_private_property_identifier] = ACTIONS(2487),
- [sym_this] = ACTIONS(2489),
- [sym_super] = ACTIONS(2489),
- [sym_true] = ACTIONS(2489),
- [sym_false] = ACTIONS(2489),
- [sym_null] = ACTIONS(2489),
- [sym_undefined] = ACTIONS(2489),
- [anon_sym_AT] = ACTIONS(2487),
- [anon_sym_static] = ACTIONS(2489),
- [anon_sym_readonly] = ACTIONS(2489),
- [anon_sym_get] = ACTIONS(2489),
- [anon_sym_set] = ACTIONS(2489),
- [anon_sym_declare] = ACTIONS(2489),
- [anon_sym_public] = ACTIONS(2489),
- [anon_sym_private] = ACTIONS(2489),
- [anon_sym_protected] = ACTIONS(2489),
- [anon_sym_override] = ACTIONS(2489),
- [anon_sym_module] = ACTIONS(2489),
- [anon_sym_any] = ACTIONS(2489),
- [anon_sym_number] = ACTIONS(2489),
- [anon_sym_boolean] = ACTIONS(2489),
- [anon_sym_string] = ACTIONS(2489),
- [anon_sym_symbol] = ACTIONS(2489),
- [anon_sym_object] = ACTIONS(2489),
- [anon_sym_abstract] = ACTIONS(2489),
- [anon_sym_interface] = ACTIONS(2489),
- [anon_sym_enum] = ACTIONS(2489),
- [sym_html_comment] = ACTIONS(5),
- },
- [869] = {
- [ts_builtin_sym_end] = ACTIONS(2887),
- [sym_identifier] = ACTIONS(2889),
- [anon_sym_export] = ACTIONS(2889),
- [anon_sym_default] = ACTIONS(2889),
- [anon_sym_type] = ACTIONS(2889),
- [anon_sym_namespace] = ACTIONS(2889),
- [anon_sym_LBRACE] = ACTIONS(2887),
- [anon_sym_RBRACE] = ACTIONS(2887),
- [anon_sym_typeof] = ACTIONS(2889),
- [anon_sym_import] = ACTIONS(2889),
- [anon_sym_with] = ACTIONS(2889),
- [anon_sym_var] = ACTIONS(2889),
- [anon_sym_let] = ACTIONS(2889),
- [anon_sym_const] = ACTIONS(2889),
- [anon_sym_BANG] = ACTIONS(2887),
- [anon_sym_else] = ACTIONS(2889),
- [anon_sym_if] = ACTIONS(2889),
- [anon_sym_switch] = ACTIONS(2889),
- [anon_sym_for] = ACTIONS(2889),
- [anon_sym_LPAREN] = ACTIONS(2887),
- [anon_sym_await] = ACTIONS(2889),
- [anon_sym_while] = ACTIONS(2889),
- [anon_sym_do] = ACTIONS(2889),
- [anon_sym_try] = ACTIONS(2889),
- [anon_sym_break] = ACTIONS(2889),
- [anon_sym_continue] = ACTIONS(2889),
- [anon_sym_debugger] = ACTIONS(2889),
- [anon_sym_return] = ACTIONS(2889),
- [anon_sym_throw] = ACTIONS(2889),
- [anon_sym_SEMI] = ACTIONS(2887),
- [anon_sym_case] = ACTIONS(2889),
- [anon_sym_yield] = ACTIONS(2889),
- [anon_sym_LBRACK] = ACTIONS(2887),
- [sym_glimmer_opening_tag] = ACTIONS(2887),
- [anon_sym_DQUOTE] = ACTIONS(2887),
- [anon_sym_SQUOTE] = ACTIONS(2887),
- [anon_sym_class] = ACTIONS(2889),
- [anon_sym_async] = ACTIONS(2889),
- [anon_sym_function] = ACTIONS(2889),
- [anon_sym_new] = ACTIONS(2889),
- [anon_sym_using] = ACTIONS(2889),
- [anon_sym_PLUS] = ACTIONS(2889),
- [anon_sym_DASH] = ACTIONS(2889),
- [anon_sym_SLASH] = ACTIONS(2889),
- [anon_sym_LT] = ACTIONS(2889),
- [anon_sym_TILDE] = ACTIONS(2887),
- [anon_sym_void] = ACTIONS(2889),
- [anon_sym_delete] = ACTIONS(2889),
- [anon_sym_PLUS_PLUS] = ACTIONS(2887),
- [anon_sym_DASH_DASH] = ACTIONS(2887),
- [sym_comment] = ACTIONS(5),
- [anon_sym_BQUOTE] = ACTIONS(2887),
- [sym_number] = ACTIONS(2887),
- [sym_private_property_identifier] = ACTIONS(2887),
- [sym_this] = ACTIONS(2889),
- [sym_super] = ACTIONS(2889),
- [sym_true] = ACTIONS(2889),
- [sym_false] = ACTIONS(2889),
- [sym_null] = ACTIONS(2889),
- [sym_undefined] = ACTIONS(2889),
- [anon_sym_AT] = ACTIONS(2887),
- [anon_sym_static] = ACTIONS(2889),
- [anon_sym_readonly] = ACTIONS(2889),
- [anon_sym_get] = ACTIONS(2889),
- [anon_sym_set] = ACTIONS(2889),
- [anon_sym_declare] = ACTIONS(2889),
- [anon_sym_public] = ACTIONS(2889),
- [anon_sym_private] = ACTIONS(2889),
- [anon_sym_protected] = ACTIONS(2889),
- [anon_sym_override] = ACTIONS(2889),
- [anon_sym_module] = ACTIONS(2889),
- [anon_sym_any] = ACTIONS(2889),
- [anon_sym_number] = ACTIONS(2889),
- [anon_sym_boolean] = ACTIONS(2889),
- [anon_sym_string] = ACTIONS(2889),
- [anon_sym_symbol] = ACTIONS(2889),
- [anon_sym_object] = ACTIONS(2889),
- [anon_sym_abstract] = ACTIONS(2889),
- [anon_sym_interface] = ACTIONS(2889),
- [anon_sym_enum] = ACTIONS(2889),
- [sym_html_comment] = ACTIONS(5),
- },
- [870] = {
- [sym_import] = STATE(4753),
- [sym_nested_identifier] = STATE(5707),
- [sym_string] = STATE(2889),
- [sym_formal_parameters] = STATE(5626),
- [sym_rest_pattern] = STATE(5377),
- [sym_nested_type_identifier] = STATE(2828),
- [sym__type_query_member_expression_in_type_annotation] = STATE(3228),
- [sym__type_query_call_expression_in_type_annotation] = STATE(2850),
- [sym_type] = STATE(3859),
- [sym_tuple_parameter] = STATE(5447),
- [sym_optional_tuple_parameter] = STATE(5447),
- [sym_optional_type] = STATE(5447),
- [sym_rest_type] = STATE(5447),
- [sym__tuple_type_member] = STATE(5447),
- [sym_constructor_type] = STATE(2896),
- [sym_primary_type] = STATE(2897),
- [sym_template_literal_type] = STATE(2885),
- [sym_infer_type] = STATE(2896),
- [sym_conditional_type] = STATE(2885),
- [sym_generic_type] = STATE(2885),
- [sym_type_query] = STATE(2885),
- [sym_index_type_query] = STATE(2885),
- [sym_lookup_type] = STATE(2885),
- [sym_literal_type] = STATE(2885),
- [sym__number] = STATE(2903),
- [sym_existential_type] = STATE(2885),
- [sym_flow_maybe_type] = STATE(2885),
- [sym_parenthesized_type] = STATE(2885),
- [sym_predefined_type] = STATE(2885),
- [sym_object_type] = STATE(2885),
- [sym_type_parameters] = STATE(5517),
- [sym_array_type] = STATE(2885),
- [sym_tuple_type] = STATE(2885),
- [sym_readonly_type] = STATE(2896),
- [sym_union_type] = STATE(2885),
- [sym_intersection_type] = STATE(2885),
- [sym_function_type] = STATE(2896),
- [sym_identifier] = ACTIONS(2571),
- [anon_sym_STAR] = ACTIONS(612),
- [anon_sym_LBRACE] = ACTIONS(1498),
- [anon_sym_typeof] = ACTIONS(1500),
- [anon_sym_import] = ACTIONS(133),
- [anon_sym_const] = ACTIONS(135),
- [anon_sym_LPAREN] = ACTIONS(1502),
- [anon_sym_LBRACK] = ACTIONS(1504),
- [anon_sym_RBRACK] = ACTIONS(2891),
- [anon_sym_DQUOTE] = ACTIONS(1506),
- [anon_sym_SQUOTE] = ACTIONS(1508),
- [anon_sym_new] = ACTIONS(1572),
- [anon_sym_DOT_DOT_DOT] = ACTIONS(2577),
- [anon_sym_AMP] = ACTIONS(640),
- [anon_sym_PIPE] = ACTIONS(642),
- [anon_sym_PLUS] = ACTIONS(2579),
- [anon_sym_DASH] = ACTIONS(2579),
- [anon_sym_LT] = ACTIONS(2581),
- [anon_sym_void] = ACTIONS(220),
- [sym_comment] = ACTIONS(5),
- [anon_sym_BQUOTE] = ACTIONS(1516),
- [sym_number] = ACTIONS(1518),
- [sym_this] = ACTIONS(1520),
- [sym_true] = ACTIONS(1522),
- [sym_false] = ACTIONS(1522),
- [sym_null] = ACTIONS(1522),
- [sym_undefined] = ACTIONS(1522),
- [anon_sym_readonly] = ACTIONS(1578),
- [anon_sym_QMARK] = ACTIONS(662),
- [anon_sym_any] = ACTIONS(220),
- [anon_sym_number] = ACTIONS(220),
- [anon_sym_boolean] = ACTIONS(220),
- [anon_sym_string] = ACTIONS(220),
- [anon_sym_symbol] = ACTIONS(220),
- [anon_sym_object] = ACTIONS(220),
- [anon_sym_abstract] = ACTIONS(666),
- [anon_sym_infer] = ACTIONS(668),
- [anon_sym_keyof] = ACTIONS(670),
- [anon_sym_unique] = ACTIONS(218),
- [anon_sym_unknown] = ACTIONS(220),
- [anon_sym_never] = ACTIONS(220),
- [anon_sym_LBRACE_PIPE] = ACTIONS(222),
- [sym_html_comment] = ACTIONS(5),
- },
- [871] = {
- [sym_import] = STATE(4753),
- [sym_nested_identifier] = STATE(5707),
- [sym_string] = STATE(2889),
- [sym_formal_parameters] = STATE(5626),
- [sym_rest_pattern] = STATE(5377),
- [sym_nested_type_identifier] = STATE(2828),
- [sym__type_query_member_expression_in_type_annotation] = STATE(3228),
- [sym__type_query_call_expression_in_type_annotation] = STATE(2850),
- [sym_type] = STATE(3859),
- [sym_tuple_parameter] = STATE(5447),
- [sym_optional_tuple_parameter] = STATE(5447),
- [sym_optional_type] = STATE(5447),
- [sym_rest_type] = STATE(5447),
- [sym__tuple_type_member] = STATE(5447),
- [sym_constructor_type] = STATE(2896),
- [sym_primary_type] = STATE(2897),
- [sym_template_literal_type] = STATE(2885),
- [sym_infer_type] = STATE(2896),
- [sym_conditional_type] = STATE(2885),
- [sym_generic_type] = STATE(2885),
- [sym_type_query] = STATE(2885),
- [sym_index_type_query] = STATE(2885),
- [sym_lookup_type] = STATE(2885),
- [sym_literal_type] = STATE(2885),
- [sym__number] = STATE(2903),
- [sym_existential_type] = STATE(2885),
- [sym_flow_maybe_type] = STATE(2885),
- [sym_parenthesized_type] = STATE(2885),
- [sym_predefined_type] = STATE(2885),
- [sym_object_type] = STATE(2885),
- [sym_type_parameters] = STATE(5517),
- [sym_array_type] = STATE(2885),
- [sym_tuple_type] = STATE(2885),
- [sym_readonly_type] = STATE(2896),
- [sym_union_type] = STATE(2885),
- [sym_intersection_type] = STATE(2885),
- [sym_function_type] = STATE(2896),
- [sym_identifier] = ACTIONS(2571),
- [anon_sym_STAR] = ACTIONS(612),
- [anon_sym_LBRACE] = ACTIONS(1498),
- [anon_sym_typeof] = ACTIONS(1500),
- [anon_sym_import] = ACTIONS(133),
- [anon_sym_const] = ACTIONS(135),
- [anon_sym_LPAREN] = ACTIONS(1502),
- [anon_sym_LBRACK] = ACTIONS(1504),
- [anon_sym_RBRACK] = ACTIONS(2893),
- [anon_sym_DQUOTE] = ACTIONS(1506),
- [anon_sym_SQUOTE] = ACTIONS(1508),
- [anon_sym_new] = ACTIONS(1572),
- [anon_sym_DOT_DOT_DOT] = ACTIONS(2577),
- [anon_sym_AMP] = ACTIONS(640),
- [anon_sym_PIPE] = ACTIONS(642),
- [anon_sym_PLUS] = ACTIONS(2579),
- [anon_sym_DASH] = ACTIONS(2579),
- [anon_sym_LT] = ACTIONS(2581),
- [anon_sym_void] = ACTIONS(220),
- [sym_comment] = ACTIONS(5),
- [anon_sym_BQUOTE] = ACTIONS(1516),
- [sym_number] = ACTIONS(1518),
- [sym_this] = ACTIONS(1520),
- [sym_true] = ACTIONS(1522),
- [sym_false] = ACTIONS(1522),
- [sym_null] = ACTIONS(1522),
- [sym_undefined] = ACTIONS(1522),
- [anon_sym_readonly] = ACTIONS(1578),
- [anon_sym_QMARK] = ACTIONS(662),
- [anon_sym_any] = ACTIONS(220),
- [anon_sym_number] = ACTIONS(220),
- [anon_sym_boolean] = ACTIONS(220),
- [anon_sym_string] = ACTIONS(220),
- [anon_sym_symbol] = ACTIONS(220),
- [anon_sym_object] = ACTIONS(220),
- [anon_sym_abstract] = ACTIONS(666),
- [anon_sym_infer] = ACTIONS(668),
- [anon_sym_keyof] = ACTIONS(670),
- [anon_sym_unique] = ACTIONS(218),
- [anon_sym_unknown] = ACTIONS(220),
- [anon_sym_never] = ACTIONS(220),
- [anon_sym_LBRACE_PIPE] = ACTIONS(222),
- [sym_html_comment] = ACTIONS(5),
- },
- [872] = {
- [sym_import] = STATE(4753),
- [sym_nested_identifier] = STATE(5707),
- [sym_string] = STATE(2889),
- [sym_formal_parameters] = STATE(5626),
- [sym_rest_pattern] = STATE(5377),
- [sym_nested_type_identifier] = STATE(2828),
- [sym__type_query_member_expression_in_type_annotation] = STATE(3228),
- [sym__type_query_call_expression_in_type_annotation] = STATE(2850),
- [sym_type] = STATE(3859),
- [sym_tuple_parameter] = STATE(5447),
- [sym_optional_tuple_parameter] = STATE(5447),
- [sym_optional_type] = STATE(5447),
- [sym_rest_type] = STATE(5447),
- [sym__tuple_type_member] = STATE(5447),
- [sym_constructor_type] = STATE(2896),
- [sym_primary_type] = STATE(2897),
- [sym_template_literal_type] = STATE(2885),
- [sym_infer_type] = STATE(2896),
- [sym_conditional_type] = STATE(2885),
- [sym_generic_type] = STATE(2885),
- [sym_type_query] = STATE(2885),
- [sym_index_type_query] = STATE(2885),
- [sym_lookup_type] = STATE(2885),
- [sym_literal_type] = STATE(2885),
- [sym__number] = STATE(2903),
- [sym_existential_type] = STATE(2885),
- [sym_flow_maybe_type] = STATE(2885),
- [sym_parenthesized_type] = STATE(2885),
- [sym_predefined_type] = STATE(2885),
- [sym_object_type] = STATE(2885),
- [sym_type_parameters] = STATE(5517),
- [sym_array_type] = STATE(2885),
- [sym_tuple_type] = STATE(2885),
- [sym_readonly_type] = STATE(2896),
- [sym_union_type] = STATE(2885),
- [sym_intersection_type] = STATE(2885),
- [sym_function_type] = STATE(2896),
- [sym_identifier] = ACTIONS(2571),
- [anon_sym_STAR] = ACTIONS(612),
- [anon_sym_LBRACE] = ACTIONS(1498),
- [anon_sym_typeof] = ACTIONS(1500),
- [anon_sym_import] = ACTIONS(133),
- [anon_sym_const] = ACTIONS(135),
- [anon_sym_LPAREN] = ACTIONS(1502),
- [anon_sym_LBRACK] = ACTIONS(1504),
- [anon_sym_RBRACK] = ACTIONS(2895),
- [anon_sym_DQUOTE] = ACTIONS(1506),
- [anon_sym_SQUOTE] = ACTIONS(1508),
- [anon_sym_new] = ACTIONS(1572),
- [anon_sym_DOT_DOT_DOT] = ACTIONS(2577),
- [anon_sym_AMP] = ACTIONS(640),
- [anon_sym_PIPE] = ACTIONS(642),
- [anon_sym_PLUS] = ACTIONS(2579),
- [anon_sym_DASH] = ACTIONS(2579),
- [anon_sym_LT] = ACTIONS(2581),
- [anon_sym_void] = ACTIONS(220),
- [sym_comment] = ACTIONS(5),
- [anon_sym_BQUOTE] = ACTIONS(1516),
- [sym_number] = ACTIONS(1518),
- [sym_this] = ACTIONS(1520),
- [sym_true] = ACTIONS(1522),
- [sym_false] = ACTIONS(1522),
- [sym_null] = ACTIONS(1522),
- [sym_undefined] = ACTIONS(1522),
- [anon_sym_readonly] = ACTIONS(1578),
- [anon_sym_QMARK] = ACTIONS(662),
- [anon_sym_any] = ACTIONS(220),
- [anon_sym_number] = ACTIONS(220),
- [anon_sym_boolean] = ACTIONS(220),
- [anon_sym_string] = ACTIONS(220),
- [anon_sym_symbol] = ACTIONS(220),
- [anon_sym_object] = ACTIONS(220),
- [anon_sym_abstract] = ACTIONS(666),
- [anon_sym_infer] = ACTIONS(668),
- [anon_sym_keyof] = ACTIONS(670),
- [anon_sym_unique] = ACTIONS(218),
- [anon_sym_unknown] = ACTIONS(220),
- [anon_sym_never] = ACTIONS(220),
- [anon_sym_LBRACE_PIPE] = ACTIONS(222),
- [sym_html_comment] = ACTIONS(5),
- },
- [873] = {
- [sym_import] = STATE(4753),
- [sym_nested_identifier] = STATE(5707),
- [sym_string] = STATE(2889),
- [sym_formal_parameters] = STATE(5626),
- [sym_rest_pattern] = STATE(5377),
- [sym_nested_type_identifier] = STATE(2828),
- [sym__type_query_member_expression_in_type_annotation] = STATE(3228),
- [sym__type_query_call_expression_in_type_annotation] = STATE(2850),
- [sym_type] = STATE(3859),
- [sym_tuple_parameter] = STATE(5447),
- [sym_optional_tuple_parameter] = STATE(5447),
- [sym_optional_type] = STATE(5447),
- [sym_rest_type] = STATE(5447),
- [sym__tuple_type_member] = STATE(5447),
- [sym_constructor_type] = STATE(2896),
- [sym_primary_type] = STATE(2897),
- [sym_template_literal_type] = STATE(2885),
- [sym_infer_type] = STATE(2896),
- [sym_conditional_type] = STATE(2885),
- [sym_generic_type] = STATE(2885),
- [sym_type_query] = STATE(2885),
- [sym_index_type_query] = STATE(2885),
- [sym_lookup_type] = STATE(2885),
- [sym_literal_type] = STATE(2885),
- [sym__number] = STATE(2903),
- [sym_existential_type] = STATE(2885),
- [sym_flow_maybe_type] = STATE(2885),
- [sym_parenthesized_type] = STATE(2885),
- [sym_predefined_type] = STATE(2885),
- [sym_object_type] = STATE(2885),
- [sym_type_parameters] = STATE(5517),
- [sym_array_type] = STATE(2885),
- [sym_tuple_type] = STATE(2885),
- [sym_readonly_type] = STATE(2896),
- [sym_union_type] = STATE(2885),
- [sym_intersection_type] = STATE(2885),
- [sym_function_type] = STATE(2896),
- [sym_identifier] = ACTIONS(2571),
- [anon_sym_STAR] = ACTIONS(612),
- [anon_sym_LBRACE] = ACTIONS(1498),
- [anon_sym_typeof] = ACTIONS(1500),
- [anon_sym_import] = ACTIONS(133),
- [anon_sym_const] = ACTIONS(135),
- [anon_sym_LPAREN] = ACTIONS(1502),
- [anon_sym_LBRACK] = ACTIONS(1504),
- [anon_sym_RBRACK] = ACTIONS(2897),
- [anon_sym_DQUOTE] = ACTIONS(1506),
- [anon_sym_SQUOTE] = ACTIONS(1508),
- [anon_sym_new] = ACTIONS(1572),
- [anon_sym_DOT_DOT_DOT] = ACTIONS(2577),
- [anon_sym_AMP] = ACTIONS(640),
- [anon_sym_PIPE] = ACTIONS(642),
- [anon_sym_PLUS] = ACTIONS(2579),
- [anon_sym_DASH] = ACTIONS(2579),
- [anon_sym_LT] = ACTIONS(2581),
- [anon_sym_void] = ACTIONS(220),
- [sym_comment] = ACTIONS(5),
- [anon_sym_BQUOTE] = ACTIONS(1516),
- [sym_number] = ACTIONS(1518),
- [sym_this] = ACTIONS(1520),
- [sym_true] = ACTIONS(1522),
- [sym_false] = ACTIONS(1522),
- [sym_null] = ACTIONS(1522),
- [sym_undefined] = ACTIONS(1522),
- [anon_sym_readonly] = ACTIONS(1578),
- [anon_sym_QMARK] = ACTIONS(662),
- [anon_sym_any] = ACTIONS(220),
- [anon_sym_number] = ACTIONS(220),
- [anon_sym_boolean] = ACTIONS(220),
- [anon_sym_string] = ACTIONS(220),
- [anon_sym_symbol] = ACTIONS(220),
- [anon_sym_object] = ACTIONS(220),
- [anon_sym_abstract] = ACTIONS(666),
- [anon_sym_infer] = ACTIONS(668),
- [anon_sym_keyof] = ACTIONS(670),
- [anon_sym_unique] = ACTIONS(218),
- [anon_sym_unknown] = ACTIONS(220),
- [anon_sym_never] = ACTIONS(220),
- [anon_sym_LBRACE_PIPE] = ACTIONS(222),
- [sym_html_comment] = ACTIONS(5),
- },
- [874] = {
- [sym_import] = STATE(4753),
- [sym_nested_identifier] = STATE(5707),
- [sym_string] = STATE(2889),
- [sym_formal_parameters] = STATE(5626),
- [sym_rest_pattern] = STATE(5377),
- [sym_nested_type_identifier] = STATE(2828),
- [sym__type_query_member_expression_in_type_annotation] = STATE(3228),
- [sym__type_query_call_expression_in_type_annotation] = STATE(2850),
- [sym_type] = STATE(3859),
- [sym_tuple_parameter] = STATE(5447),
- [sym_optional_tuple_parameter] = STATE(5447),
- [sym_optional_type] = STATE(5447),
- [sym_rest_type] = STATE(5447),
- [sym__tuple_type_member] = STATE(5447),
- [sym_constructor_type] = STATE(2896),
- [sym_primary_type] = STATE(2897),
- [sym_template_literal_type] = STATE(2885),
- [sym_infer_type] = STATE(2896),
- [sym_conditional_type] = STATE(2885),
- [sym_generic_type] = STATE(2885),
- [sym_type_query] = STATE(2885),
- [sym_index_type_query] = STATE(2885),
- [sym_lookup_type] = STATE(2885),
- [sym_literal_type] = STATE(2885),
- [sym__number] = STATE(2903),
- [sym_existential_type] = STATE(2885),
- [sym_flow_maybe_type] = STATE(2885),
- [sym_parenthesized_type] = STATE(2885),
- [sym_predefined_type] = STATE(2885),
- [sym_object_type] = STATE(2885),
- [sym_type_parameters] = STATE(5517),
- [sym_array_type] = STATE(2885),
- [sym_tuple_type] = STATE(2885),
- [sym_readonly_type] = STATE(2896),
- [sym_union_type] = STATE(2885),
- [sym_intersection_type] = STATE(2885),
- [sym_function_type] = STATE(2896),
- [sym_identifier] = ACTIONS(2571),
- [anon_sym_STAR] = ACTIONS(612),
- [anon_sym_LBRACE] = ACTIONS(1498),
- [anon_sym_typeof] = ACTIONS(1500),
- [anon_sym_import] = ACTIONS(133),
- [anon_sym_const] = ACTIONS(135),
- [anon_sym_LPAREN] = ACTIONS(1502),
- [anon_sym_LBRACK] = ACTIONS(1504),
- [anon_sym_RBRACK] = ACTIONS(2899),
- [anon_sym_DQUOTE] = ACTIONS(1506),
- [anon_sym_SQUOTE] = ACTIONS(1508),
- [anon_sym_new] = ACTIONS(1572),
- [anon_sym_DOT_DOT_DOT] = ACTIONS(2577),
- [anon_sym_AMP] = ACTIONS(640),
- [anon_sym_PIPE] = ACTIONS(642),
- [anon_sym_PLUS] = ACTIONS(2579),
- [anon_sym_DASH] = ACTIONS(2579),
- [anon_sym_LT] = ACTIONS(2581),
- [anon_sym_void] = ACTIONS(220),
- [sym_comment] = ACTIONS(5),
- [anon_sym_BQUOTE] = ACTIONS(1516),
- [sym_number] = ACTIONS(1518),
- [sym_this] = ACTIONS(1520),
- [sym_true] = ACTIONS(1522),
- [sym_false] = ACTIONS(1522),
- [sym_null] = ACTIONS(1522),
- [sym_undefined] = ACTIONS(1522),
- [anon_sym_readonly] = ACTIONS(1578),
- [anon_sym_QMARK] = ACTIONS(662),
- [anon_sym_any] = ACTIONS(220),
- [anon_sym_number] = ACTIONS(220),
- [anon_sym_boolean] = ACTIONS(220),
- [anon_sym_string] = ACTIONS(220),
- [anon_sym_symbol] = ACTIONS(220),
- [anon_sym_object] = ACTIONS(220),
- [anon_sym_abstract] = ACTIONS(666),
- [anon_sym_infer] = ACTIONS(668),
- [anon_sym_keyof] = ACTIONS(670),
- [anon_sym_unique] = ACTIONS(218),
- [anon_sym_unknown] = ACTIONS(220),
- [anon_sym_never] = ACTIONS(220),
- [anon_sym_LBRACE_PIPE] = ACTIONS(222),
- [sym_html_comment] = ACTIONS(5),
- },
- [875] = {
- [sym_import] = STATE(4753),
- [sym_nested_identifier] = STATE(5707),
- [sym_string] = STATE(2889),
- [sym_formal_parameters] = STATE(5626),
- [sym_rest_pattern] = STATE(5377),
- [sym_nested_type_identifier] = STATE(2828),
- [sym__type_query_member_expression_in_type_annotation] = STATE(3228),
- [sym__type_query_call_expression_in_type_annotation] = STATE(2850),
- [sym_type] = STATE(3859),
- [sym_tuple_parameter] = STATE(5447),
- [sym_optional_tuple_parameter] = STATE(5447),
- [sym_optional_type] = STATE(5447),
- [sym_rest_type] = STATE(5447),
- [sym__tuple_type_member] = STATE(5447),
- [sym_constructor_type] = STATE(2896),
- [sym_primary_type] = STATE(2897),
- [sym_template_literal_type] = STATE(2885),
- [sym_infer_type] = STATE(2896),
- [sym_conditional_type] = STATE(2885),
- [sym_generic_type] = STATE(2885),
- [sym_type_query] = STATE(2885),
- [sym_index_type_query] = STATE(2885),
- [sym_lookup_type] = STATE(2885),
- [sym_literal_type] = STATE(2885),
- [sym__number] = STATE(2903),
- [sym_existential_type] = STATE(2885),
- [sym_flow_maybe_type] = STATE(2885),
- [sym_parenthesized_type] = STATE(2885),
- [sym_predefined_type] = STATE(2885),
- [sym_object_type] = STATE(2885),
- [sym_type_parameters] = STATE(5517),
- [sym_array_type] = STATE(2885),
- [sym_tuple_type] = STATE(2885),
- [sym_readonly_type] = STATE(2896),
- [sym_union_type] = STATE(2885),
- [sym_intersection_type] = STATE(2885),
- [sym_function_type] = STATE(2896),
- [sym_identifier] = ACTIONS(2571),
- [anon_sym_STAR] = ACTIONS(612),
- [anon_sym_LBRACE] = ACTIONS(1498),
- [anon_sym_typeof] = ACTIONS(1500),
- [anon_sym_import] = ACTIONS(133),
- [anon_sym_const] = ACTIONS(135),
- [anon_sym_LPAREN] = ACTIONS(1502),
- [anon_sym_LBRACK] = ACTIONS(1504),
- [anon_sym_RBRACK] = ACTIONS(2901),
- [anon_sym_DQUOTE] = ACTIONS(1506),
- [anon_sym_SQUOTE] = ACTIONS(1508),
- [anon_sym_new] = ACTIONS(1572),
- [anon_sym_DOT_DOT_DOT] = ACTIONS(2577),
- [anon_sym_AMP] = ACTIONS(640),
- [anon_sym_PIPE] = ACTIONS(642),
- [anon_sym_PLUS] = ACTIONS(2579),
- [anon_sym_DASH] = ACTIONS(2579),
- [anon_sym_LT] = ACTIONS(2581),
- [anon_sym_void] = ACTIONS(220),
- [sym_comment] = ACTIONS(5),
- [anon_sym_BQUOTE] = ACTIONS(1516),
- [sym_number] = ACTIONS(1518),
- [sym_this] = ACTIONS(1520),
- [sym_true] = ACTIONS(1522),
- [sym_false] = ACTIONS(1522),
- [sym_null] = ACTIONS(1522),
- [sym_undefined] = ACTIONS(1522),
- [anon_sym_readonly] = ACTIONS(1578),
- [anon_sym_QMARK] = ACTIONS(662),
- [anon_sym_any] = ACTIONS(220),
- [anon_sym_number] = ACTIONS(220),
- [anon_sym_boolean] = ACTIONS(220),
- [anon_sym_string] = ACTIONS(220),
- [anon_sym_symbol] = ACTIONS(220),
- [anon_sym_object] = ACTIONS(220),
- [anon_sym_abstract] = ACTIONS(666),
- [anon_sym_infer] = ACTIONS(668),
- [anon_sym_keyof] = ACTIONS(670),
- [anon_sym_unique] = ACTIONS(218),
- [anon_sym_unknown] = ACTIONS(220),
- [anon_sym_never] = ACTIONS(220),
- [anon_sym_LBRACE_PIPE] = ACTIONS(222),
- [sym_html_comment] = ACTIONS(5),
- },
- [876] = {
- [sym_import] = STATE(4753),
- [sym_nested_identifier] = STATE(5707),
- [sym_string] = STATE(2889),
- [sym_formal_parameters] = STATE(5626),
- [sym_rest_pattern] = STATE(5377),
- [sym_nested_type_identifier] = STATE(2828),
- [sym__type_query_member_expression_in_type_annotation] = STATE(3228),
- [sym__type_query_call_expression_in_type_annotation] = STATE(2850),
- [sym_type] = STATE(3859),
- [sym_tuple_parameter] = STATE(5447),
- [sym_optional_tuple_parameter] = STATE(5447),
- [sym_optional_type] = STATE(5447),
- [sym_rest_type] = STATE(5447),
- [sym__tuple_type_member] = STATE(5447),
- [sym_constructor_type] = STATE(2896),
- [sym_primary_type] = STATE(2897),
- [sym_template_literal_type] = STATE(2885),
- [sym_infer_type] = STATE(2896),
- [sym_conditional_type] = STATE(2885),
- [sym_generic_type] = STATE(2885),
- [sym_type_query] = STATE(2885),
- [sym_index_type_query] = STATE(2885),
- [sym_lookup_type] = STATE(2885),
- [sym_literal_type] = STATE(2885),
- [sym__number] = STATE(2903),
- [sym_existential_type] = STATE(2885),
- [sym_flow_maybe_type] = STATE(2885),
- [sym_parenthesized_type] = STATE(2885),
- [sym_predefined_type] = STATE(2885),
- [sym_object_type] = STATE(2885),
- [sym_type_parameters] = STATE(5517),
- [sym_array_type] = STATE(2885),
- [sym_tuple_type] = STATE(2885),
- [sym_readonly_type] = STATE(2896),
- [sym_union_type] = STATE(2885),
- [sym_intersection_type] = STATE(2885),
- [sym_function_type] = STATE(2896),
- [sym_identifier] = ACTIONS(2571),
- [anon_sym_STAR] = ACTIONS(612),
- [anon_sym_LBRACE] = ACTIONS(1498),
- [anon_sym_typeof] = ACTIONS(1500),
- [anon_sym_import] = ACTIONS(133),
- [anon_sym_const] = ACTIONS(135),
- [anon_sym_LPAREN] = ACTIONS(1502),
- [anon_sym_LBRACK] = ACTIONS(1504),
- [anon_sym_RBRACK] = ACTIONS(2903),
- [anon_sym_DQUOTE] = ACTIONS(1506),
- [anon_sym_SQUOTE] = ACTIONS(1508),
- [anon_sym_new] = ACTIONS(1572),
- [anon_sym_DOT_DOT_DOT] = ACTIONS(2577),
- [anon_sym_AMP] = ACTIONS(640),
- [anon_sym_PIPE] = ACTIONS(642),
- [anon_sym_PLUS] = ACTIONS(2579),
- [anon_sym_DASH] = ACTIONS(2579),
- [anon_sym_LT] = ACTIONS(2581),
- [anon_sym_void] = ACTIONS(220),
- [sym_comment] = ACTIONS(5),
- [anon_sym_BQUOTE] = ACTIONS(1516),
- [sym_number] = ACTIONS(1518),
- [sym_this] = ACTIONS(1520),
- [sym_true] = ACTIONS(1522),
- [sym_false] = ACTIONS(1522),
- [sym_null] = ACTIONS(1522),
- [sym_undefined] = ACTIONS(1522),
- [anon_sym_readonly] = ACTIONS(1578),
- [anon_sym_QMARK] = ACTIONS(662),
- [anon_sym_any] = ACTIONS(220),
- [anon_sym_number] = ACTIONS(220),
- [anon_sym_boolean] = ACTIONS(220),
- [anon_sym_string] = ACTIONS(220),
- [anon_sym_symbol] = ACTIONS(220),
- [anon_sym_object] = ACTIONS(220),
- [anon_sym_abstract] = ACTIONS(666),
- [anon_sym_infer] = ACTIONS(668),
- [anon_sym_keyof] = ACTIONS(670),
- [anon_sym_unique] = ACTIONS(218),
- [anon_sym_unknown] = ACTIONS(220),
- [anon_sym_never] = ACTIONS(220),
- [anon_sym_LBRACE_PIPE] = ACTIONS(222),
- [sym_html_comment] = ACTIONS(5),
- },
- [877] = {
- [sym_import] = STATE(4753),
- [sym_nested_identifier] = STATE(5707),
- [sym_string] = STATE(2889),
- [sym_formal_parameters] = STATE(5626),
- [sym_rest_pattern] = STATE(5377),
- [sym_nested_type_identifier] = STATE(2828),
- [sym__type_query_member_expression_in_type_annotation] = STATE(3228),
- [sym__type_query_call_expression_in_type_annotation] = STATE(2850),
- [sym_type] = STATE(3859),
- [sym_tuple_parameter] = STATE(5447),
- [sym_optional_tuple_parameter] = STATE(5447),
- [sym_optional_type] = STATE(5447),
- [sym_rest_type] = STATE(5447),
- [sym__tuple_type_member] = STATE(5447),
- [sym_constructor_type] = STATE(2896),
- [sym_primary_type] = STATE(2897),
- [sym_template_literal_type] = STATE(2885),
- [sym_infer_type] = STATE(2896),
- [sym_conditional_type] = STATE(2885),
- [sym_generic_type] = STATE(2885),
- [sym_type_query] = STATE(2885),
- [sym_index_type_query] = STATE(2885),
- [sym_lookup_type] = STATE(2885),
- [sym_literal_type] = STATE(2885),
- [sym__number] = STATE(2903),
- [sym_existential_type] = STATE(2885),
- [sym_flow_maybe_type] = STATE(2885),
- [sym_parenthesized_type] = STATE(2885),
- [sym_predefined_type] = STATE(2885),
- [sym_object_type] = STATE(2885),
- [sym_type_parameters] = STATE(5517),
- [sym_array_type] = STATE(2885),
- [sym_tuple_type] = STATE(2885),
- [sym_readonly_type] = STATE(2896),
- [sym_union_type] = STATE(2885),
- [sym_intersection_type] = STATE(2885),
- [sym_function_type] = STATE(2896),
- [sym_identifier] = ACTIONS(2571),
- [anon_sym_STAR] = ACTIONS(612),
- [anon_sym_LBRACE] = ACTIONS(1498),
- [anon_sym_typeof] = ACTIONS(1500),
- [anon_sym_import] = ACTIONS(133),
- [anon_sym_const] = ACTIONS(135),
- [anon_sym_LPAREN] = ACTIONS(1502),
- [anon_sym_LBRACK] = ACTIONS(1504),
- [anon_sym_RBRACK] = ACTIONS(2905),
- [anon_sym_DQUOTE] = ACTIONS(1506),
- [anon_sym_SQUOTE] = ACTIONS(1508),
- [anon_sym_new] = ACTIONS(1572),
- [anon_sym_DOT_DOT_DOT] = ACTIONS(2577),
- [anon_sym_AMP] = ACTIONS(640),
- [anon_sym_PIPE] = ACTIONS(642),
- [anon_sym_PLUS] = ACTIONS(2579),
- [anon_sym_DASH] = ACTIONS(2579),
- [anon_sym_LT] = ACTIONS(2581),
- [anon_sym_void] = ACTIONS(220),
- [sym_comment] = ACTIONS(5),
- [anon_sym_BQUOTE] = ACTIONS(1516),
- [sym_number] = ACTIONS(1518),
- [sym_this] = ACTIONS(1520),
- [sym_true] = ACTIONS(1522),
- [sym_false] = ACTIONS(1522),
- [sym_null] = ACTIONS(1522),
- [sym_undefined] = ACTIONS(1522),
- [anon_sym_readonly] = ACTIONS(1578),
- [anon_sym_QMARK] = ACTIONS(662),
- [anon_sym_any] = ACTIONS(220),
- [anon_sym_number] = ACTIONS(220),
- [anon_sym_boolean] = ACTIONS(220),
- [anon_sym_string] = ACTIONS(220),
- [anon_sym_symbol] = ACTIONS(220),
- [anon_sym_object] = ACTIONS(220),
- [anon_sym_abstract] = ACTIONS(666),
- [anon_sym_infer] = ACTIONS(668),
- [anon_sym_keyof] = ACTIONS(670),
- [anon_sym_unique] = ACTIONS(218),
- [anon_sym_unknown] = ACTIONS(220),
- [anon_sym_never] = ACTIONS(220),
- [anon_sym_LBRACE_PIPE] = ACTIONS(222),
- [sym_html_comment] = ACTIONS(5),
- },
- [878] = {
- [sym_import] = STATE(4753),
- [sym_nested_identifier] = STATE(5707),
- [sym_string] = STATE(2889),
- [sym_formal_parameters] = STATE(5626),
- [sym_rest_pattern] = STATE(5377),
- [sym_nested_type_identifier] = STATE(2828),
- [sym__type_query_member_expression_in_type_annotation] = STATE(3228),
- [sym__type_query_call_expression_in_type_annotation] = STATE(2850),
- [sym_type] = STATE(3859),
- [sym_tuple_parameter] = STATE(5447),
- [sym_optional_tuple_parameter] = STATE(5447),
- [sym_optional_type] = STATE(5447),
- [sym_rest_type] = STATE(5447),
- [sym__tuple_type_member] = STATE(5447),
- [sym_constructor_type] = STATE(2896),
- [sym_primary_type] = STATE(2897),
- [sym_template_literal_type] = STATE(2885),
- [sym_infer_type] = STATE(2896),
- [sym_conditional_type] = STATE(2885),
- [sym_generic_type] = STATE(2885),
- [sym_type_query] = STATE(2885),
- [sym_index_type_query] = STATE(2885),
- [sym_lookup_type] = STATE(2885),
- [sym_literal_type] = STATE(2885),
- [sym__number] = STATE(2903),
- [sym_existential_type] = STATE(2885),
- [sym_flow_maybe_type] = STATE(2885),
- [sym_parenthesized_type] = STATE(2885),
- [sym_predefined_type] = STATE(2885),
- [sym_object_type] = STATE(2885),
- [sym_type_parameters] = STATE(5517),
- [sym_array_type] = STATE(2885),
- [sym_tuple_type] = STATE(2885),
- [sym_readonly_type] = STATE(2896),
- [sym_union_type] = STATE(2885),
- [sym_intersection_type] = STATE(2885),
- [sym_function_type] = STATE(2896),
- [sym_identifier] = ACTIONS(2571),
- [anon_sym_STAR] = ACTIONS(612),
- [anon_sym_LBRACE] = ACTIONS(1498),
- [anon_sym_typeof] = ACTIONS(1500),
- [anon_sym_import] = ACTIONS(133),
- [anon_sym_const] = ACTIONS(135),
- [anon_sym_LPAREN] = ACTIONS(1502),
- [anon_sym_LBRACK] = ACTIONS(1504),
- [anon_sym_RBRACK] = ACTIONS(2907),
- [anon_sym_DQUOTE] = ACTIONS(1506),
- [anon_sym_SQUOTE] = ACTIONS(1508),
- [anon_sym_new] = ACTIONS(1572),
- [anon_sym_DOT_DOT_DOT] = ACTIONS(2577),
- [anon_sym_AMP] = ACTIONS(640),
- [anon_sym_PIPE] = ACTIONS(642),
- [anon_sym_PLUS] = ACTIONS(2579),
- [anon_sym_DASH] = ACTIONS(2579),
- [anon_sym_LT] = ACTIONS(2581),
- [anon_sym_void] = ACTIONS(220),
- [sym_comment] = ACTIONS(5),
- [anon_sym_BQUOTE] = ACTIONS(1516),
- [sym_number] = ACTIONS(1518),
- [sym_this] = ACTIONS(1520),
- [sym_true] = ACTIONS(1522),
- [sym_false] = ACTIONS(1522),
- [sym_null] = ACTIONS(1522),
- [sym_undefined] = ACTIONS(1522),
- [anon_sym_readonly] = ACTIONS(1578),
- [anon_sym_QMARK] = ACTIONS(662),
- [anon_sym_any] = ACTIONS(220),
- [anon_sym_number] = ACTIONS(220),
- [anon_sym_boolean] = ACTIONS(220),
- [anon_sym_string] = ACTIONS(220),
- [anon_sym_symbol] = ACTIONS(220),
- [anon_sym_object] = ACTIONS(220),
- [anon_sym_abstract] = ACTIONS(666),
- [anon_sym_infer] = ACTIONS(668),
- [anon_sym_keyof] = ACTIONS(670),
- [anon_sym_unique] = ACTIONS(218),
- [anon_sym_unknown] = ACTIONS(220),
- [anon_sym_never] = ACTIONS(220),
- [anon_sym_LBRACE_PIPE] = ACTIONS(222),
- [sym_html_comment] = ACTIONS(5),
- },
- [879] = {
- [sym_import] = STATE(4753),
- [sym_nested_identifier] = STATE(5707),
- [sym_string] = STATE(2889),
- [sym_formal_parameters] = STATE(5626),
- [sym_rest_pattern] = STATE(5377),
- [sym_nested_type_identifier] = STATE(2828),
- [sym__type_query_member_expression_in_type_annotation] = STATE(3228),
- [sym__type_query_call_expression_in_type_annotation] = STATE(2850),
- [sym_type] = STATE(3859),
- [sym_tuple_parameter] = STATE(5447),
- [sym_optional_tuple_parameter] = STATE(5447),
- [sym_optional_type] = STATE(5447),
- [sym_rest_type] = STATE(5447),
- [sym__tuple_type_member] = STATE(5447),
- [sym_constructor_type] = STATE(2896),
- [sym_primary_type] = STATE(2897),
- [sym_template_literal_type] = STATE(2885),
- [sym_infer_type] = STATE(2896),
- [sym_conditional_type] = STATE(2885),
- [sym_generic_type] = STATE(2885),
- [sym_type_query] = STATE(2885),
- [sym_index_type_query] = STATE(2885),
- [sym_lookup_type] = STATE(2885),
- [sym_literal_type] = STATE(2885),
- [sym__number] = STATE(2903),
- [sym_existential_type] = STATE(2885),
- [sym_flow_maybe_type] = STATE(2885),
- [sym_parenthesized_type] = STATE(2885),
- [sym_predefined_type] = STATE(2885),
- [sym_object_type] = STATE(2885),
- [sym_type_parameters] = STATE(5517),
- [sym_array_type] = STATE(2885),
- [sym_tuple_type] = STATE(2885),
- [sym_readonly_type] = STATE(2896),
- [sym_union_type] = STATE(2885),
- [sym_intersection_type] = STATE(2885),
- [sym_function_type] = STATE(2896),
- [sym_identifier] = ACTIONS(2571),
- [anon_sym_STAR] = ACTIONS(612),
- [anon_sym_LBRACE] = ACTIONS(1498),
- [anon_sym_typeof] = ACTIONS(1500),
- [anon_sym_import] = ACTIONS(133),
- [anon_sym_const] = ACTIONS(135),
- [anon_sym_LPAREN] = ACTIONS(1502),
- [anon_sym_LBRACK] = ACTIONS(1504),
- [anon_sym_RBRACK] = ACTIONS(2909),
- [anon_sym_DQUOTE] = ACTIONS(1506),
- [anon_sym_SQUOTE] = ACTIONS(1508),
- [anon_sym_new] = ACTIONS(1572),
- [anon_sym_DOT_DOT_DOT] = ACTIONS(2577),
- [anon_sym_AMP] = ACTIONS(640),
- [anon_sym_PIPE] = ACTIONS(642),
- [anon_sym_PLUS] = ACTIONS(2579),
- [anon_sym_DASH] = ACTIONS(2579),
- [anon_sym_LT] = ACTIONS(2581),
- [anon_sym_void] = ACTIONS(220),
- [sym_comment] = ACTIONS(5),
- [anon_sym_BQUOTE] = ACTIONS(1516),
- [sym_number] = ACTIONS(1518),
- [sym_this] = ACTIONS(1520),
- [sym_true] = ACTIONS(1522),
- [sym_false] = ACTIONS(1522),
- [sym_null] = ACTIONS(1522),
- [sym_undefined] = ACTIONS(1522),
- [anon_sym_readonly] = ACTIONS(1578),
- [anon_sym_QMARK] = ACTIONS(662),
- [anon_sym_any] = ACTIONS(220),
- [anon_sym_number] = ACTIONS(220),
- [anon_sym_boolean] = ACTIONS(220),
- [anon_sym_string] = ACTIONS(220),
- [anon_sym_symbol] = ACTIONS(220),
- [anon_sym_object] = ACTIONS(220),
- [anon_sym_abstract] = ACTIONS(666),
- [anon_sym_infer] = ACTIONS(668),
- [anon_sym_keyof] = ACTIONS(670),
- [anon_sym_unique] = ACTIONS(218),
- [anon_sym_unknown] = ACTIONS(220),
- [anon_sym_never] = ACTIONS(220),
- [anon_sym_LBRACE_PIPE] = ACTIONS(222),
- [sym_html_comment] = ACTIONS(5),
- },
- [880] = {
- [sym_import] = STATE(4753),
- [sym_nested_identifier] = STATE(5707),
- [sym_string] = STATE(2889),
- [sym_formal_parameters] = STATE(5626),
- [sym_rest_pattern] = STATE(5377),
- [sym_nested_type_identifier] = STATE(2828),
- [sym__type_query_member_expression_in_type_annotation] = STATE(3228),
- [sym__type_query_call_expression_in_type_annotation] = STATE(2850),
- [sym_type] = STATE(3859),
- [sym_tuple_parameter] = STATE(5447),
- [sym_optional_tuple_parameter] = STATE(5447),
- [sym_optional_type] = STATE(5447),
- [sym_rest_type] = STATE(5447),
- [sym__tuple_type_member] = STATE(5447),
- [sym_constructor_type] = STATE(2896),
- [sym_primary_type] = STATE(2897),
- [sym_template_literal_type] = STATE(2885),
- [sym_infer_type] = STATE(2896),
- [sym_conditional_type] = STATE(2885),
- [sym_generic_type] = STATE(2885),
- [sym_type_query] = STATE(2885),
- [sym_index_type_query] = STATE(2885),
- [sym_lookup_type] = STATE(2885),
- [sym_literal_type] = STATE(2885),
- [sym__number] = STATE(2903),
- [sym_existential_type] = STATE(2885),
- [sym_flow_maybe_type] = STATE(2885),
- [sym_parenthesized_type] = STATE(2885),
- [sym_predefined_type] = STATE(2885),
- [sym_object_type] = STATE(2885),
- [sym_type_parameters] = STATE(5517),
- [sym_array_type] = STATE(2885),
- [sym_tuple_type] = STATE(2885),
- [sym_readonly_type] = STATE(2896),
- [sym_union_type] = STATE(2885),
- [sym_intersection_type] = STATE(2885),
- [sym_function_type] = STATE(2896),
- [sym_identifier] = ACTIONS(2571),
- [anon_sym_STAR] = ACTIONS(612),
- [anon_sym_LBRACE] = ACTIONS(1498),
- [anon_sym_typeof] = ACTIONS(1500),
- [anon_sym_import] = ACTIONS(133),
- [anon_sym_const] = ACTIONS(135),
- [anon_sym_LPAREN] = ACTIONS(1502),
- [anon_sym_LBRACK] = ACTIONS(1504),
- [anon_sym_DQUOTE] = ACTIONS(1506),
- [anon_sym_SQUOTE] = ACTIONS(1508),
- [anon_sym_new] = ACTIONS(1572),
- [anon_sym_DOT_DOT_DOT] = ACTIONS(2577),
- [anon_sym_AMP] = ACTIONS(640),
- [anon_sym_PIPE] = ACTIONS(642),
- [anon_sym_PLUS] = ACTIONS(2579),
- [anon_sym_DASH] = ACTIONS(2579),
- [anon_sym_LT] = ACTIONS(2581),
- [anon_sym_void] = ACTIONS(220),
- [sym_comment] = ACTIONS(5),
- [anon_sym_BQUOTE] = ACTIONS(1516),
- [sym_number] = ACTIONS(1518),
- [sym_this] = ACTIONS(1520),
- [sym_true] = ACTIONS(1522),
- [sym_false] = ACTIONS(1522),
- [sym_null] = ACTIONS(1522),
- [sym_undefined] = ACTIONS(1522),
- [anon_sym_readonly] = ACTIONS(1578),
- [anon_sym_QMARK] = ACTIONS(662),
- [anon_sym_any] = ACTIONS(220),
- [anon_sym_number] = ACTIONS(220),
- [anon_sym_boolean] = ACTIONS(220),
- [anon_sym_string] = ACTIONS(220),
- [anon_sym_symbol] = ACTIONS(220),
- [anon_sym_object] = ACTIONS(220),
- [anon_sym_abstract] = ACTIONS(666),
- [anon_sym_infer] = ACTIONS(668),
- [anon_sym_keyof] = ACTIONS(670),
- [anon_sym_unique] = ACTIONS(218),
- [anon_sym_unknown] = ACTIONS(220),
- [anon_sym_never] = ACTIONS(220),
- [anon_sym_LBRACE_PIPE] = ACTIONS(222),
- [sym_html_comment] = ACTIONS(5),
- },
- [881] = {
- [sym_identifier] = ACTIONS(2911),
- [anon_sym_export] = ACTIONS(2911),
- [anon_sym_type] = ACTIONS(2911),
- [anon_sym_namespace] = ACTIONS(2911),
- [anon_sym_LBRACE] = ACTIONS(2913),
- [anon_sym_typeof] = ACTIONS(2911),
- [anon_sym_import] = ACTIONS(2911),
- [anon_sym_with] = ACTIONS(2911),
- [anon_sym_var] = ACTIONS(2911),
- [anon_sym_let] = ACTIONS(2911),
- [anon_sym_const] = ACTIONS(2911),
- [anon_sym_BANG] = ACTIONS(2913),
- [anon_sym_if] = ACTIONS(2911),
- [anon_sym_switch] = ACTIONS(2911),
- [anon_sym_for] = ACTIONS(2911),
- [anon_sym_LPAREN] = ACTIONS(2913),
- [anon_sym_await] = ACTIONS(2911),
- [anon_sym_while] = ACTIONS(2911),
- [anon_sym_do] = ACTIONS(2911),
- [anon_sym_try] = ACTIONS(2911),
- [anon_sym_break] = ACTIONS(2911),
- [anon_sym_continue] = ACTIONS(2911),
- [anon_sym_debugger] = ACTIONS(2911),
- [anon_sym_return] = ACTIONS(2911),
- [anon_sym_throw] = ACTIONS(2911),
- [anon_sym_SEMI] = ACTIONS(2913),
- [anon_sym_yield] = ACTIONS(2911),
- [anon_sym_LBRACK] = ACTIONS(2913),
- [sym_glimmer_opening_tag] = ACTIONS(2913),
- [anon_sym_DQUOTE] = ACTIONS(2913),
- [anon_sym_SQUOTE] = ACTIONS(2913),
- [anon_sym_class] = ACTIONS(2911),
- [anon_sym_async] = ACTIONS(2911),
- [anon_sym_function] = ACTIONS(2911),
- [anon_sym_new] = ACTIONS(2911),
- [anon_sym_using] = ACTIONS(2911),
- [anon_sym_PLUS] = ACTIONS(2911),
- [anon_sym_DASH] = ACTIONS(2911),
- [anon_sym_SLASH] = ACTIONS(2911),
- [anon_sym_LT] = ACTIONS(2911),
- [anon_sym_TILDE] = ACTIONS(2913),
- [anon_sym_void] = ACTIONS(2911),
- [anon_sym_delete] = ACTIONS(2911),
- [anon_sym_PLUS_PLUS] = ACTIONS(2913),
- [anon_sym_DASH_DASH] = ACTIONS(2913),
- [sym_comment] = ACTIONS(5),
- [anon_sym_BQUOTE] = ACTIONS(2913),
- [sym_number] = ACTIONS(2913),
- [sym_private_property_identifier] = ACTIONS(2913),
- [sym_this] = ACTIONS(2911),
- [sym_super] = ACTIONS(2911),
- [sym_true] = ACTIONS(2911),
- [sym_false] = ACTIONS(2911),
- [sym_null] = ACTIONS(2911),
- [sym_undefined] = ACTIONS(2911),
- [anon_sym_AT] = ACTIONS(2913),
- [anon_sym_static] = ACTIONS(2911),
- [anon_sym_readonly] = ACTIONS(2911),
- [anon_sym_get] = ACTIONS(2911),
- [anon_sym_set] = ACTIONS(2911),
- [anon_sym_declare] = ACTIONS(2911),
- [anon_sym_public] = ACTIONS(2911),
- [anon_sym_private] = ACTIONS(2911),
- [anon_sym_protected] = ACTIONS(2911),
- [anon_sym_override] = ACTIONS(2911),
- [anon_sym_module] = ACTIONS(2911),
- [anon_sym_any] = ACTIONS(2911),
- [anon_sym_number] = ACTIONS(2911),
- [anon_sym_boolean] = ACTIONS(2911),
- [anon_sym_string] = ACTIONS(2911),
- [anon_sym_symbol] = ACTIONS(2911),
- [anon_sym_object] = ACTIONS(2911),
- [anon_sym_abstract] = ACTIONS(2911),
- [anon_sym_interface] = ACTIONS(2911),
- [anon_sym_enum] = ACTIONS(2911),
- [sym_html_comment] = ACTIONS(5),
- },
- [882] = {
- [sym_identifier] = ACTIONS(2445),
- [anon_sym_export] = ACTIONS(2445),
- [anon_sym_type] = ACTIONS(2445),
- [anon_sym_namespace] = ACTIONS(2445),
- [anon_sym_LBRACE] = ACTIONS(2443),
- [anon_sym_typeof] = ACTIONS(2445),
- [anon_sym_import] = ACTIONS(2445),
- [anon_sym_with] = ACTIONS(2445),
- [anon_sym_var] = ACTIONS(2445),
- [anon_sym_let] = ACTIONS(2445),
- [anon_sym_const] = ACTIONS(2445),
- [anon_sym_BANG] = ACTIONS(2443),
- [anon_sym_if] = ACTIONS(2445),
- [anon_sym_switch] = ACTIONS(2445),
- [anon_sym_for] = ACTIONS(2445),
- [anon_sym_LPAREN] = ACTIONS(2443),
- [anon_sym_await] = ACTIONS(2445),
- [anon_sym_while] = ACTIONS(2445),
- [anon_sym_do] = ACTIONS(2445),
- [anon_sym_try] = ACTIONS(2445),
- [anon_sym_break] = ACTIONS(2445),
- [anon_sym_continue] = ACTIONS(2445),
- [anon_sym_debugger] = ACTIONS(2445),
- [anon_sym_return] = ACTIONS(2445),
- [anon_sym_throw] = ACTIONS(2445),
- [anon_sym_SEMI] = ACTIONS(2443),
- [anon_sym_yield] = ACTIONS(2445),
- [anon_sym_LBRACK] = ACTIONS(2443),
- [sym_glimmer_opening_tag] = ACTIONS(2443),
- [anon_sym_DQUOTE] = ACTIONS(2443),
- [anon_sym_SQUOTE] = ACTIONS(2443),
- [anon_sym_class] = ACTIONS(2445),
- [anon_sym_async] = ACTIONS(2445),
- [anon_sym_function] = ACTIONS(2445),
- [anon_sym_new] = ACTIONS(2445),
- [anon_sym_using] = ACTIONS(2445),
- [anon_sym_PLUS] = ACTIONS(2445),
- [anon_sym_DASH] = ACTIONS(2445),
- [anon_sym_SLASH] = ACTIONS(2445),
- [anon_sym_LT] = ACTIONS(2445),
- [anon_sym_TILDE] = ACTIONS(2443),
- [anon_sym_void] = ACTIONS(2445),
- [anon_sym_delete] = ACTIONS(2445),
- [anon_sym_PLUS_PLUS] = ACTIONS(2443),
- [anon_sym_DASH_DASH] = ACTIONS(2443),
- [sym_comment] = ACTIONS(5),
- [anon_sym_BQUOTE] = ACTIONS(2443),
- [sym_number] = ACTIONS(2443),
- [sym_private_property_identifier] = ACTIONS(2443),
- [sym_this] = ACTIONS(2445),
- [sym_super] = ACTIONS(2445),
- [sym_true] = ACTIONS(2445),
- [sym_false] = ACTIONS(2445),
- [sym_null] = ACTIONS(2445),
- [sym_undefined] = ACTIONS(2445),
- [anon_sym_AT] = ACTIONS(2443),
- [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_override] = 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_object] = ACTIONS(2445),
- [anon_sym_abstract] = ACTIONS(2445),
- [anon_sym_interface] = ACTIONS(2445),
- [anon_sym_enum] = ACTIONS(2445),
- [sym_html_comment] = ACTIONS(5),
- },
- [883] = {
- [sym_identifier] = ACTIONS(2915),
- [anon_sym_export] = ACTIONS(2915),
- [anon_sym_type] = ACTIONS(2915),
- [anon_sym_namespace] = ACTIONS(2915),
- [anon_sym_LBRACE] = ACTIONS(2917),
- [anon_sym_typeof] = ACTIONS(2915),
- [anon_sym_import] = ACTIONS(2915),
- [anon_sym_with] = ACTIONS(2915),
- [anon_sym_var] = ACTIONS(2915),
- [anon_sym_let] = ACTIONS(2915),
- [anon_sym_const] = ACTIONS(2915),
- [anon_sym_BANG] = ACTIONS(2917),
- [anon_sym_if] = ACTIONS(2915),
- [anon_sym_switch] = ACTIONS(2915),
- [anon_sym_for] = ACTIONS(2915),
- [anon_sym_LPAREN] = ACTIONS(2917),
- [anon_sym_await] = ACTIONS(2915),
- [anon_sym_while] = ACTIONS(2915),
- [anon_sym_do] = ACTIONS(2915),
- [anon_sym_try] = ACTIONS(2915),
- [anon_sym_break] = ACTIONS(2915),
- [anon_sym_continue] = ACTIONS(2915),
- [anon_sym_debugger] = ACTIONS(2915),
- [anon_sym_return] = ACTIONS(2915),
- [anon_sym_throw] = ACTIONS(2915),
- [anon_sym_SEMI] = ACTIONS(2917),
- [anon_sym_yield] = ACTIONS(2915),
- [anon_sym_LBRACK] = ACTIONS(2917),
- [sym_glimmer_opening_tag] = ACTIONS(2917),
- [anon_sym_DQUOTE] = ACTIONS(2917),
- [anon_sym_SQUOTE] = ACTIONS(2917),
- [anon_sym_class] = ACTIONS(2915),
- [anon_sym_async] = ACTIONS(2915),
- [anon_sym_function] = ACTIONS(2915),
- [anon_sym_new] = ACTIONS(2915),
- [anon_sym_using] = ACTIONS(2915),
- [anon_sym_PLUS] = ACTIONS(2915),
- [anon_sym_DASH] = ACTIONS(2915),
- [anon_sym_SLASH] = ACTIONS(2915),
- [anon_sym_LT] = ACTIONS(2915),
- [anon_sym_TILDE] = ACTIONS(2917),
- [anon_sym_void] = ACTIONS(2915),
- [anon_sym_delete] = ACTIONS(2915),
- [anon_sym_PLUS_PLUS] = ACTIONS(2917),
- [anon_sym_DASH_DASH] = ACTIONS(2917),
- [sym_comment] = ACTIONS(5),
- [anon_sym_BQUOTE] = ACTIONS(2917),
- [sym_number] = ACTIONS(2917),
- [sym_private_property_identifier] = ACTIONS(2917),
- [sym_this] = ACTIONS(2915),
- [sym_super] = ACTIONS(2915),
- [sym_true] = ACTIONS(2915),
- [sym_false] = ACTIONS(2915),
- [sym_null] = ACTIONS(2915),
- [sym_undefined] = ACTIONS(2915),
- [anon_sym_AT] = ACTIONS(2917),
- [anon_sym_static] = ACTIONS(2915),
- [anon_sym_readonly] = ACTIONS(2915),
- [anon_sym_get] = ACTIONS(2915),
- [anon_sym_set] = ACTIONS(2915),
- [anon_sym_declare] = ACTIONS(2915),
- [anon_sym_public] = ACTIONS(2915),
- [anon_sym_private] = ACTIONS(2915),
- [anon_sym_protected] = ACTIONS(2915),
- [anon_sym_override] = ACTIONS(2915),
- [anon_sym_module] = ACTIONS(2915),
- [anon_sym_any] = ACTIONS(2915),
- [anon_sym_number] = ACTIONS(2915),
- [anon_sym_boolean] = ACTIONS(2915),
- [anon_sym_string] = ACTIONS(2915),
- [anon_sym_symbol] = ACTIONS(2915),
- [anon_sym_object] = ACTIONS(2915),
- [anon_sym_abstract] = ACTIONS(2915),
- [anon_sym_interface] = ACTIONS(2915),
- [anon_sym_enum] = ACTIONS(2915),
- [sym_html_comment] = ACTIONS(5),
- },
- [884] = {
- [sym_identifier] = ACTIONS(2911),
- [anon_sym_export] = ACTIONS(2911),
- [anon_sym_type] = ACTIONS(2911),
- [anon_sym_namespace] = ACTIONS(2911),
- [anon_sym_LBRACE] = ACTIONS(2913),
- [anon_sym_typeof] = ACTIONS(2911),
- [anon_sym_import] = ACTIONS(2911),
- [anon_sym_with] = ACTIONS(2911),
- [anon_sym_var] = ACTIONS(2911),
- [anon_sym_let] = ACTIONS(2911),
- [anon_sym_const] = ACTIONS(2911),
- [anon_sym_BANG] = ACTIONS(2913),
- [anon_sym_if] = ACTIONS(2911),
- [anon_sym_switch] = ACTIONS(2911),
- [anon_sym_for] = ACTIONS(2911),
- [anon_sym_LPAREN] = ACTIONS(2913),
- [anon_sym_await] = ACTIONS(2911),
- [anon_sym_while] = ACTIONS(2911),
- [anon_sym_do] = ACTIONS(2911),
- [anon_sym_try] = ACTIONS(2911),
- [anon_sym_break] = ACTIONS(2911),
- [anon_sym_continue] = ACTIONS(2911),
- [anon_sym_debugger] = ACTIONS(2911),
- [anon_sym_return] = ACTIONS(2911),
- [anon_sym_throw] = ACTIONS(2911),
- [anon_sym_SEMI] = ACTIONS(2913),
- [anon_sym_yield] = ACTIONS(2911),
- [anon_sym_LBRACK] = ACTIONS(2913),
- [sym_glimmer_opening_tag] = ACTIONS(2913),
- [anon_sym_DQUOTE] = ACTIONS(2913),
- [anon_sym_SQUOTE] = ACTIONS(2913),
- [anon_sym_class] = ACTIONS(2911),
- [anon_sym_async] = ACTIONS(2911),
- [anon_sym_function] = ACTIONS(2911),
- [anon_sym_new] = ACTIONS(2911),
- [anon_sym_using] = ACTIONS(2911),
- [anon_sym_PLUS] = ACTIONS(2911),
- [anon_sym_DASH] = ACTIONS(2911),
- [anon_sym_SLASH] = ACTIONS(2911),
- [anon_sym_LT] = ACTIONS(2911),
- [anon_sym_TILDE] = ACTIONS(2913),
- [anon_sym_void] = ACTIONS(2911),
- [anon_sym_delete] = ACTIONS(2911),
- [anon_sym_PLUS_PLUS] = ACTIONS(2913),
- [anon_sym_DASH_DASH] = ACTIONS(2913),
- [sym_comment] = ACTIONS(5),
- [anon_sym_BQUOTE] = ACTIONS(2913),
- [sym_number] = ACTIONS(2913),
- [sym_private_property_identifier] = ACTIONS(2913),
- [sym_this] = ACTIONS(2911),
- [sym_super] = ACTIONS(2911),
- [sym_true] = ACTIONS(2911),
- [sym_false] = ACTIONS(2911),
- [sym_null] = ACTIONS(2911),
- [sym_undefined] = ACTIONS(2911),
- [anon_sym_AT] = ACTIONS(2913),
- [anon_sym_static] = ACTIONS(2911),
- [anon_sym_readonly] = ACTIONS(2911),
- [anon_sym_get] = ACTIONS(2911),
- [anon_sym_set] = ACTIONS(2911),
- [anon_sym_declare] = ACTIONS(2911),
- [anon_sym_public] = ACTIONS(2911),
- [anon_sym_private] = ACTIONS(2911),
- [anon_sym_protected] = ACTIONS(2911),
- [anon_sym_override] = ACTIONS(2911),
- [anon_sym_module] = ACTIONS(2911),
- [anon_sym_any] = ACTIONS(2911),
- [anon_sym_number] = ACTIONS(2911),
- [anon_sym_boolean] = ACTIONS(2911),
- [anon_sym_string] = ACTIONS(2911),
- [anon_sym_symbol] = ACTIONS(2911),
- [anon_sym_object] = ACTIONS(2911),
- [anon_sym_abstract] = ACTIONS(2911),
- [anon_sym_interface] = ACTIONS(2911),
- [anon_sym_enum] = ACTIONS(2911),
- [sym_html_comment] = ACTIONS(5),
- },
- [885] = {
- [sym_identifier] = ACTIONS(2911),
- [anon_sym_export] = ACTIONS(2911),
- [anon_sym_type] = ACTIONS(2911),
- [anon_sym_namespace] = ACTIONS(2911),
- [anon_sym_LBRACE] = ACTIONS(2913),
- [anon_sym_typeof] = ACTIONS(2911),
- [anon_sym_import] = ACTIONS(2911),
- [anon_sym_with] = ACTIONS(2911),
- [anon_sym_var] = ACTIONS(2911),
- [anon_sym_let] = ACTIONS(2911),
- [anon_sym_const] = ACTIONS(2911),
- [anon_sym_BANG] = ACTIONS(2913),
- [anon_sym_if] = ACTIONS(2911),
- [anon_sym_switch] = ACTIONS(2911),
- [anon_sym_for] = ACTIONS(2911),
- [anon_sym_LPAREN] = ACTIONS(2913),
- [anon_sym_await] = ACTIONS(2911),
- [anon_sym_while] = ACTIONS(2911),
- [anon_sym_do] = ACTIONS(2911),
- [anon_sym_try] = ACTIONS(2911),
- [anon_sym_break] = ACTIONS(2911),
- [anon_sym_continue] = ACTIONS(2911),
- [anon_sym_debugger] = ACTIONS(2911),
- [anon_sym_return] = ACTIONS(2911),
- [anon_sym_throw] = ACTIONS(2911),
- [anon_sym_SEMI] = ACTIONS(2913),
- [anon_sym_yield] = ACTIONS(2911),
- [anon_sym_LBRACK] = ACTIONS(2913),
- [sym_glimmer_opening_tag] = ACTIONS(2913),
- [anon_sym_DQUOTE] = ACTIONS(2913),
- [anon_sym_SQUOTE] = ACTIONS(2913),
- [anon_sym_class] = ACTIONS(2911),
- [anon_sym_async] = ACTIONS(2911),
- [anon_sym_function] = ACTIONS(2911),
- [anon_sym_new] = ACTIONS(2911),
- [anon_sym_using] = ACTIONS(2911),
- [anon_sym_PLUS] = ACTIONS(2911),
- [anon_sym_DASH] = ACTIONS(2911),
- [anon_sym_SLASH] = ACTIONS(2911),
- [anon_sym_LT] = ACTIONS(2911),
- [anon_sym_TILDE] = ACTIONS(2913),
- [anon_sym_void] = ACTIONS(2911),
- [anon_sym_delete] = ACTIONS(2911),
- [anon_sym_PLUS_PLUS] = ACTIONS(2913),
- [anon_sym_DASH_DASH] = ACTIONS(2913),
- [sym_comment] = ACTIONS(5),
- [anon_sym_BQUOTE] = ACTIONS(2913),
- [sym_number] = ACTIONS(2913),
- [sym_private_property_identifier] = ACTIONS(2913),
- [sym_this] = ACTIONS(2911),
- [sym_super] = ACTIONS(2911),
- [sym_true] = ACTIONS(2911),
- [sym_false] = ACTIONS(2911),
- [sym_null] = ACTIONS(2911),
- [sym_undefined] = ACTIONS(2911),
- [anon_sym_AT] = ACTIONS(2913),
- [anon_sym_static] = ACTIONS(2911),
- [anon_sym_readonly] = ACTIONS(2911),
- [anon_sym_get] = ACTIONS(2911),
- [anon_sym_set] = ACTIONS(2911),
- [anon_sym_declare] = ACTIONS(2911),
- [anon_sym_public] = ACTIONS(2911),
- [anon_sym_private] = ACTIONS(2911),
- [anon_sym_protected] = ACTIONS(2911),
- [anon_sym_override] = ACTIONS(2911),
- [anon_sym_module] = ACTIONS(2911),
- [anon_sym_any] = ACTIONS(2911),
- [anon_sym_number] = ACTIONS(2911),
- [anon_sym_boolean] = ACTIONS(2911),
- [anon_sym_string] = ACTIONS(2911),
- [anon_sym_symbol] = ACTIONS(2911),
- [anon_sym_object] = ACTIONS(2911),
- [anon_sym_abstract] = ACTIONS(2911),
- [anon_sym_interface] = ACTIONS(2911),
- [anon_sym_enum] = ACTIONS(2911),
- [sym_html_comment] = ACTIONS(5),
- },
- [886] = {
- [sym_identifier] = ACTIONS(2911),
- [anon_sym_export] = ACTIONS(2911),
- [anon_sym_type] = ACTIONS(2911),
- [anon_sym_namespace] = ACTIONS(2911),
- [anon_sym_LBRACE] = ACTIONS(2913),
- [anon_sym_typeof] = ACTIONS(2911),
- [anon_sym_import] = ACTIONS(2911),
- [anon_sym_with] = ACTIONS(2911),
- [anon_sym_var] = ACTIONS(2911),
- [anon_sym_let] = ACTIONS(2911),
- [anon_sym_const] = ACTIONS(2911),
- [anon_sym_BANG] = ACTIONS(2913),
- [anon_sym_if] = ACTIONS(2911),
- [anon_sym_switch] = ACTIONS(2911),
- [anon_sym_for] = ACTIONS(2911),
- [anon_sym_LPAREN] = ACTIONS(2913),
- [anon_sym_await] = ACTIONS(2911),
- [anon_sym_while] = ACTIONS(2911),
- [anon_sym_do] = ACTIONS(2911),
- [anon_sym_try] = ACTIONS(2911),
- [anon_sym_break] = ACTIONS(2911),
- [anon_sym_continue] = ACTIONS(2911),
- [anon_sym_debugger] = ACTIONS(2911),
- [anon_sym_return] = ACTIONS(2911),
- [anon_sym_throw] = ACTIONS(2911),
- [anon_sym_SEMI] = ACTIONS(2913),
- [anon_sym_yield] = ACTIONS(2911),
- [anon_sym_LBRACK] = ACTIONS(2913),
- [sym_glimmer_opening_tag] = ACTIONS(2913),
- [anon_sym_DQUOTE] = ACTIONS(2913),
- [anon_sym_SQUOTE] = ACTIONS(2913),
- [anon_sym_class] = ACTIONS(2911),
- [anon_sym_async] = ACTIONS(2911),
- [anon_sym_function] = ACTIONS(2911),
- [anon_sym_new] = ACTIONS(2911),
- [anon_sym_using] = ACTIONS(2911),
- [anon_sym_PLUS] = ACTIONS(2911),
- [anon_sym_DASH] = ACTIONS(2911),
- [anon_sym_SLASH] = ACTIONS(2911),
- [anon_sym_LT] = ACTIONS(2911),
- [anon_sym_TILDE] = ACTIONS(2913),
- [anon_sym_void] = ACTIONS(2911),
- [anon_sym_delete] = ACTIONS(2911),
- [anon_sym_PLUS_PLUS] = ACTIONS(2913),
- [anon_sym_DASH_DASH] = ACTIONS(2913),
- [sym_comment] = ACTIONS(5),
- [anon_sym_BQUOTE] = ACTIONS(2913),
- [sym_number] = ACTIONS(2913),
- [sym_private_property_identifier] = ACTIONS(2913),
- [sym_this] = ACTIONS(2911),
- [sym_super] = ACTIONS(2911),
- [sym_true] = ACTIONS(2911),
- [sym_false] = ACTIONS(2911),
- [sym_null] = ACTIONS(2911),
- [sym_undefined] = ACTIONS(2911),
- [anon_sym_AT] = ACTIONS(2913),
- [anon_sym_static] = ACTIONS(2911),
- [anon_sym_readonly] = ACTIONS(2911),
- [anon_sym_get] = ACTIONS(2911),
- [anon_sym_set] = ACTIONS(2911),
- [anon_sym_declare] = ACTIONS(2911),
- [anon_sym_public] = ACTIONS(2911),
- [anon_sym_private] = ACTIONS(2911),
- [anon_sym_protected] = ACTIONS(2911),
- [anon_sym_override] = ACTIONS(2911),
- [anon_sym_module] = ACTIONS(2911),
- [anon_sym_any] = ACTIONS(2911),
- [anon_sym_number] = ACTIONS(2911),
- [anon_sym_boolean] = ACTIONS(2911),
- [anon_sym_string] = ACTIONS(2911),
- [anon_sym_symbol] = ACTIONS(2911),
- [anon_sym_object] = ACTIONS(2911),
- [anon_sym_abstract] = ACTIONS(2911),
- [anon_sym_interface] = ACTIONS(2911),
- [anon_sym_enum] = ACTIONS(2911),
- [sym_html_comment] = ACTIONS(5),
- },
- [887] = {
- [sym_identifier] = ACTIONS(2911),
- [anon_sym_export] = ACTIONS(2911),
- [anon_sym_type] = ACTIONS(2911),
- [anon_sym_namespace] = ACTIONS(2911),
- [anon_sym_LBRACE] = ACTIONS(2913),
- [anon_sym_typeof] = ACTIONS(2911),
- [anon_sym_import] = ACTIONS(2911),
- [anon_sym_with] = ACTIONS(2911),
- [anon_sym_var] = ACTIONS(2911),
- [anon_sym_let] = ACTIONS(2911),
- [anon_sym_const] = ACTIONS(2911),
- [anon_sym_BANG] = ACTIONS(2913),
- [anon_sym_if] = ACTIONS(2911),
- [anon_sym_switch] = ACTIONS(2911),
- [anon_sym_for] = ACTIONS(2911),
- [anon_sym_LPAREN] = ACTIONS(2913),
- [anon_sym_await] = ACTIONS(2911),
- [anon_sym_while] = ACTIONS(2911),
- [anon_sym_do] = ACTIONS(2911),
- [anon_sym_try] = ACTIONS(2911),
- [anon_sym_break] = ACTIONS(2911),
- [anon_sym_continue] = ACTIONS(2911),
- [anon_sym_debugger] = ACTIONS(2911),
- [anon_sym_return] = ACTIONS(2911),
- [anon_sym_throw] = ACTIONS(2911),
- [anon_sym_SEMI] = ACTIONS(2913),
- [anon_sym_yield] = ACTIONS(2911),
- [anon_sym_LBRACK] = ACTIONS(2913),
- [sym_glimmer_opening_tag] = ACTIONS(2913),
- [anon_sym_DQUOTE] = ACTIONS(2913),
- [anon_sym_SQUOTE] = ACTIONS(2913),
- [anon_sym_class] = ACTIONS(2911),
- [anon_sym_async] = ACTIONS(2911),
- [anon_sym_function] = ACTIONS(2911),
- [anon_sym_new] = ACTIONS(2911),
- [anon_sym_using] = ACTIONS(2911),
- [anon_sym_PLUS] = ACTIONS(2911),
- [anon_sym_DASH] = ACTIONS(2911),
- [anon_sym_SLASH] = ACTIONS(2911),
- [anon_sym_LT] = ACTIONS(2911),
- [anon_sym_TILDE] = ACTIONS(2913),
- [anon_sym_void] = ACTIONS(2911),
- [anon_sym_delete] = ACTIONS(2911),
- [anon_sym_PLUS_PLUS] = ACTIONS(2913),
- [anon_sym_DASH_DASH] = ACTIONS(2913),
- [sym_comment] = ACTIONS(5),
- [anon_sym_BQUOTE] = ACTIONS(2913),
- [sym_number] = ACTIONS(2913),
- [sym_private_property_identifier] = ACTIONS(2913),
- [sym_this] = ACTIONS(2911),
- [sym_super] = ACTIONS(2911),
- [sym_true] = ACTIONS(2911),
- [sym_false] = ACTIONS(2911),
- [sym_null] = ACTIONS(2911),
- [sym_undefined] = ACTIONS(2911),
- [anon_sym_AT] = ACTIONS(2913),
- [anon_sym_static] = ACTIONS(2911),
- [anon_sym_readonly] = ACTIONS(2911),
- [anon_sym_get] = ACTIONS(2911),
- [anon_sym_set] = ACTIONS(2911),
- [anon_sym_declare] = ACTIONS(2911),
- [anon_sym_public] = ACTIONS(2911),
- [anon_sym_private] = ACTIONS(2911),
- [anon_sym_protected] = ACTIONS(2911),
- [anon_sym_override] = ACTIONS(2911),
- [anon_sym_module] = ACTIONS(2911),
- [anon_sym_any] = ACTIONS(2911),
- [anon_sym_number] = ACTIONS(2911),
- [anon_sym_boolean] = ACTIONS(2911),
- [anon_sym_string] = ACTIONS(2911),
- [anon_sym_symbol] = ACTIONS(2911),
- [anon_sym_object] = ACTIONS(2911),
- [anon_sym_abstract] = ACTIONS(2911),
- [anon_sym_interface] = ACTIONS(2911),
- [anon_sym_enum] = ACTIONS(2911),
- [sym_html_comment] = ACTIONS(5),
- },
- [888] = {
- [sym_identifier] = ACTIONS(2911),
- [anon_sym_export] = ACTIONS(2911),
- [anon_sym_type] = ACTIONS(2911),
- [anon_sym_namespace] = ACTIONS(2911),
- [anon_sym_LBRACE] = ACTIONS(2913),
- [anon_sym_typeof] = ACTIONS(2911),
- [anon_sym_import] = ACTIONS(2911),
- [anon_sym_with] = ACTIONS(2911),
- [anon_sym_var] = ACTIONS(2911),
- [anon_sym_let] = ACTIONS(2911),
- [anon_sym_const] = ACTIONS(2911),
- [anon_sym_BANG] = ACTIONS(2913),
- [anon_sym_if] = ACTIONS(2911),
- [anon_sym_switch] = ACTIONS(2911),
- [anon_sym_for] = ACTIONS(2911),
- [anon_sym_LPAREN] = ACTIONS(2913),
- [anon_sym_await] = ACTIONS(2911),
- [anon_sym_while] = ACTIONS(2911),
- [anon_sym_do] = ACTIONS(2911),
- [anon_sym_try] = ACTIONS(2911),
- [anon_sym_break] = ACTIONS(2911),
- [anon_sym_continue] = ACTIONS(2911),
- [anon_sym_debugger] = ACTIONS(2911),
- [anon_sym_return] = ACTIONS(2911),
- [anon_sym_throw] = ACTIONS(2911),
- [anon_sym_SEMI] = ACTIONS(2913),
- [anon_sym_yield] = ACTIONS(2911),
- [anon_sym_LBRACK] = ACTIONS(2913),
- [sym_glimmer_opening_tag] = ACTIONS(2913),
- [anon_sym_DQUOTE] = ACTIONS(2913),
- [anon_sym_SQUOTE] = ACTIONS(2913),
- [anon_sym_class] = ACTIONS(2911),
- [anon_sym_async] = ACTIONS(2911),
- [anon_sym_function] = ACTIONS(2911),
- [anon_sym_new] = ACTIONS(2911),
- [anon_sym_using] = ACTIONS(2911),
- [anon_sym_PLUS] = ACTIONS(2911),
- [anon_sym_DASH] = ACTIONS(2911),
- [anon_sym_SLASH] = ACTIONS(2911),
- [anon_sym_LT] = ACTIONS(2911),
- [anon_sym_TILDE] = ACTIONS(2913),
- [anon_sym_void] = ACTIONS(2911),
- [anon_sym_delete] = ACTIONS(2911),
- [anon_sym_PLUS_PLUS] = ACTIONS(2913),
- [anon_sym_DASH_DASH] = ACTIONS(2913),
- [sym_comment] = ACTIONS(5),
- [anon_sym_BQUOTE] = ACTIONS(2913),
- [sym_number] = ACTIONS(2913),
- [sym_private_property_identifier] = ACTIONS(2913),
- [sym_this] = ACTIONS(2911),
- [sym_super] = ACTIONS(2911),
- [sym_true] = ACTIONS(2911),
- [sym_false] = ACTIONS(2911),
- [sym_null] = ACTIONS(2911),
- [sym_undefined] = ACTIONS(2911),
- [anon_sym_AT] = ACTIONS(2913),
- [anon_sym_static] = ACTIONS(2911),
- [anon_sym_readonly] = ACTIONS(2911),
- [anon_sym_get] = ACTIONS(2911),
- [anon_sym_set] = ACTIONS(2911),
- [anon_sym_declare] = ACTIONS(2911),
- [anon_sym_public] = ACTIONS(2911),
- [anon_sym_private] = ACTIONS(2911),
- [anon_sym_protected] = ACTIONS(2911),
- [anon_sym_override] = ACTIONS(2911),
- [anon_sym_module] = ACTIONS(2911),
- [anon_sym_any] = ACTIONS(2911),
- [anon_sym_number] = ACTIONS(2911),
- [anon_sym_boolean] = ACTIONS(2911),
- [anon_sym_string] = ACTIONS(2911),
- [anon_sym_symbol] = ACTIONS(2911),
- [anon_sym_object] = ACTIONS(2911),
- [anon_sym_abstract] = ACTIONS(2911),
- [anon_sym_interface] = ACTIONS(2911),
- [anon_sym_enum] = ACTIONS(2911),
- [sym_html_comment] = ACTIONS(5),
- },
- [889] = {
- [sym_identifier] = ACTIONS(2911),
- [anon_sym_export] = ACTIONS(2911),
- [anon_sym_type] = ACTIONS(2911),
- [anon_sym_namespace] = ACTIONS(2911),
- [anon_sym_LBRACE] = ACTIONS(2913),
- [anon_sym_typeof] = ACTIONS(2911),
- [anon_sym_import] = ACTIONS(2911),
- [anon_sym_with] = ACTIONS(2911),
- [anon_sym_var] = ACTIONS(2911),
- [anon_sym_let] = ACTIONS(2911),
- [anon_sym_const] = ACTIONS(2911),
- [anon_sym_BANG] = ACTIONS(2913),
- [anon_sym_if] = ACTIONS(2911),
- [anon_sym_switch] = ACTIONS(2911),
- [anon_sym_for] = ACTIONS(2911),
- [anon_sym_LPAREN] = ACTIONS(2913),
- [anon_sym_await] = ACTIONS(2911),
- [anon_sym_while] = ACTIONS(2911),
- [anon_sym_do] = ACTIONS(2911),
- [anon_sym_try] = ACTIONS(2911),
- [anon_sym_break] = ACTIONS(2911),
- [anon_sym_continue] = ACTIONS(2911),
- [anon_sym_debugger] = ACTIONS(2911),
- [anon_sym_return] = ACTIONS(2911),
- [anon_sym_throw] = ACTIONS(2911),
- [anon_sym_SEMI] = ACTIONS(2913),
- [anon_sym_yield] = ACTIONS(2911),
- [anon_sym_LBRACK] = ACTIONS(2913),
- [sym_glimmer_opening_tag] = ACTIONS(2913),
- [anon_sym_DQUOTE] = ACTIONS(2913),
- [anon_sym_SQUOTE] = ACTIONS(2913),
- [anon_sym_class] = ACTIONS(2911),
- [anon_sym_async] = ACTIONS(2911),
- [anon_sym_function] = ACTIONS(2911),
- [anon_sym_new] = ACTIONS(2911),
- [anon_sym_using] = ACTIONS(2911),
- [anon_sym_PLUS] = ACTIONS(2911),
- [anon_sym_DASH] = ACTIONS(2911),
- [anon_sym_SLASH] = ACTIONS(2911),
- [anon_sym_LT] = ACTIONS(2911),
- [anon_sym_TILDE] = ACTIONS(2913),
- [anon_sym_void] = ACTIONS(2911),
- [anon_sym_delete] = ACTIONS(2911),
- [anon_sym_PLUS_PLUS] = ACTIONS(2913),
- [anon_sym_DASH_DASH] = ACTIONS(2913),
- [sym_comment] = ACTIONS(5),
- [anon_sym_BQUOTE] = ACTIONS(2913),
- [sym_number] = ACTIONS(2913),
- [sym_private_property_identifier] = ACTIONS(2913),
- [sym_this] = ACTIONS(2911),
- [sym_super] = ACTIONS(2911),
- [sym_true] = ACTIONS(2911),
- [sym_false] = ACTIONS(2911),
- [sym_null] = ACTIONS(2911),
- [sym_undefined] = ACTIONS(2911),
- [anon_sym_AT] = ACTIONS(2913),
- [anon_sym_static] = ACTIONS(2911),
- [anon_sym_readonly] = ACTIONS(2911),
- [anon_sym_get] = ACTIONS(2911),
- [anon_sym_set] = ACTIONS(2911),
- [anon_sym_declare] = ACTIONS(2911),
- [anon_sym_public] = ACTIONS(2911),
- [anon_sym_private] = ACTIONS(2911),
- [anon_sym_protected] = ACTIONS(2911),
- [anon_sym_override] = ACTIONS(2911),
- [anon_sym_module] = ACTIONS(2911),
- [anon_sym_any] = ACTIONS(2911),
- [anon_sym_number] = ACTIONS(2911),
- [anon_sym_boolean] = ACTIONS(2911),
- [anon_sym_string] = ACTIONS(2911),
- [anon_sym_symbol] = ACTIONS(2911),
- [anon_sym_object] = ACTIONS(2911),
- [anon_sym_abstract] = ACTIONS(2911),
- [anon_sym_interface] = ACTIONS(2911),
- [anon_sym_enum] = ACTIONS(2911),
- [sym_html_comment] = ACTIONS(5),
- },
- [890] = {
- [sym_identifier] = ACTIONS(2911),
- [anon_sym_export] = ACTIONS(2911),
- [anon_sym_type] = ACTIONS(2911),
- [anon_sym_namespace] = ACTIONS(2911),
- [anon_sym_LBRACE] = ACTIONS(2913),
- [anon_sym_typeof] = ACTIONS(2911),
- [anon_sym_import] = ACTIONS(2911),
- [anon_sym_with] = ACTIONS(2911),
- [anon_sym_var] = ACTIONS(2911),
- [anon_sym_let] = ACTIONS(2911),
- [anon_sym_const] = ACTIONS(2911),
- [anon_sym_BANG] = ACTIONS(2913),
- [anon_sym_if] = ACTIONS(2911),
- [anon_sym_switch] = ACTIONS(2911),
- [anon_sym_for] = ACTIONS(2911),
- [anon_sym_LPAREN] = ACTIONS(2913),
- [anon_sym_await] = ACTIONS(2911),
- [anon_sym_while] = ACTIONS(2911),
- [anon_sym_do] = ACTIONS(2911),
- [anon_sym_try] = ACTIONS(2911),
- [anon_sym_break] = ACTIONS(2911),
- [anon_sym_continue] = ACTIONS(2911),
- [anon_sym_debugger] = ACTIONS(2911),
- [anon_sym_return] = ACTIONS(2911),
- [anon_sym_throw] = ACTIONS(2911),
- [anon_sym_SEMI] = ACTIONS(2913),
- [anon_sym_yield] = ACTIONS(2911),
- [anon_sym_LBRACK] = ACTIONS(2913),
- [sym_glimmer_opening_tag] = ACTIONS(2913),
- [anon_sym_DQUOTE] = ACTIONS(2913),
- [anon_sym_SQUOTE] = ACTIONS(2913),
- [anon_sym_class] = ACTIONS(2911),
- [anon_sym_async] = ACTIONS(2911),
- [anon_sym_function] = ACTIONS(2911),
- [anon_sym_new] = ACTIONS(2911),
- [anon_sym_using] = ACTIONS(2911),
- [anon_sym_PLUS] = ACTIONS(2911),
- [anon_sym_DASH] = ACTIONS(2911),
- [anon_sym_SLASH] = ACTIONS(2911),
- [anon_sym_LT] = ACTIONS(2911),
- [anon_sym_TILDE] = ACTIONS(2913),
- [anon_sym_void] = ACTIONS(2911),
- [anon_sym_delete] = ACTIONS(2911),
- [anon_sym_PLUS_PLUS] = ACTIONS(2913),
- [anon_sym_DASH_DASH] = ACTIONS(2913),
- [sym_comment] = ACTIONS(5),
- [anon_sym_BQUOTE] = ACTIONS(2913),
- [sym_number] = ACTIONS(2913),
- [sym_private_property_identifier] = ACTIONS(2913),
- [sym_this] = ACTIONS(2911),
- [sym_super] = ACTIONS(2911),
- [sym_true] = ACTIONS(2911),
- [sym_false] = ACTIONS(2911),
- [sym_null] = ACTIONS(2911),
- [sym_undefined] = ACTIONS(2911),
- [anon_sym_AT] = ACTIONS(2913),
- [anon_sym_static] = ACTIONS(2911),
- [anon_sym_readonly] = ACTIONS(2911),
- [anon_sym_get] = ACTIONS(2911),
- [anon_sym_set] = ACTIONS(2911),
- [anon_sym_declare] = ACTIONS(2911),
- [anon_sym_public] = ACTIONS(2911),
- [anon_sym_private] = ACTIONS(2911),
- [anon_sym_protected] = ACTIONS(2911),
- [anon_sym_override] = ACTIONS(2911),
- [anon_sym_module] = ACTIONS(2911),
- [anon_sym_any] = ACTIONS(2911),
- [anon_sym_number] = ACTIONS(2911),
- [anon_sym_boolean] = ACTIONS(2911),
- [anon_sym_string] = ACTIONS(2911),
- [anon_sym_symbol] = ACTIONS(2911),
- [anon_sym_object] = ACTIONS(2911),
- [anon_sym_abstract] = ACTIONS(2911),
- [anon_sym_interface] = ACTIONS(2911),
- [anon_sym_enum] = ACTIONS(2911),
- [sym_html_comment] = ACTIONS(5),
- },
- [891] = {
- [sym_identifier] = ACTIONS(2919),
- [anon_sym_export] = ACTIONS(2919),
- [anon_sym_type] = ACTIONS(2919),
- [anon_sym_namespace] = ACTIONS(2919),
- [anon_sym_LBRACE] = ACTIONS(2921),
- [anon_sym_typeof] = ACTIONS(2919),
- [anon_sym_import] = ACTIONS(2919),
- [anon_sym_with] = ACTIONS(2919),
- [anon_sym_var] = ACTIONS(2919),
- [anon_sym_let] = ACTIONS(2919),
- [anon_sym_const] = ACTIONS(2919),
- [anon_sym_BANG] = ACTIONS(2921),
- [anon_sym_if] = ACTIONS(2919),
- [anon_sym_switch] = ACTIONS(2919),
- [anon_sym_for] = ACTIONS(2919),
- [anon_sym_LPAREN] = ACTIONS(2921),
- [anon_sym_await] = ACTIONS(2919),
- [anon_sym_while] = ACTIONS(2919),
- [anon_sym_do] = ACTIONS(2919),
- [anon_sym_try] = ACTIONS(2919),
- [anon_sym_break] = ACTIONS(2919),
- [anon_sym_continue] = ACTIONS(2919),
- [anon_sym_debugger] = ACTIONS(2919),
- [anon_sym_return] = ACTIONS(2919),
- [anon_sym_throw] = ACTIONS(2919),
- [anon_sym_SEMI] = ACTIONS(2921),
- [anon_sym_yield] = ACTIONS(2919),
- [anon_sym_LBRACK] = ACTIONS(2921),
- [sym_glimmer_opening_tag] = ACTIONS(2921),
- [anon_sym_DQUOTE] = ACTIONS(2921),
- [anon_sym_SQUOTE] = ACTIONS(2921),
- [anon_sym_class] = ACTIONS(2919),
- [anon_sym_async] = ACTIONS(2919),
- [anon_sym_function] = ACTIONS(2919),
- [anon_sym_new] = ACTIONS(2919),
- [anon_sym_using] = ACTIONS(2919),
- [anon_sym_PLUS] = ACTIONS(2919),
- [anon_sym_DASH] = ACTIONS(2919),
- [anon_sym_SLASH] = ACTIONS(2919),
- [anon_sym_LT] = ACTIONS(2919),
- [anon_sym_TILDE] = ACTIONS(2921),
- [anon_sym_void] = ACTIONS(2919),
- [anon_sym_delete] = ACTIONS(2919),
- [anon_sym_PLUS_PLUS] = ACTIONS(2921),
- [anon_sym_DASH_DASH] = ACTIONS(2921),
- [sym_comment] = ACTIONS(5),
- [anon_sym_BQUOTE] = ACTIONS(2921),
- [sym_number] = ACTIONS(2921),
- [sym_private_property_identifier] = ACTIONS(2921),
- [sym_this] = ACTIONS(2919),
- [sym_super] = ACTIONS(2919),
- [sym_true] = ACTIONS(2919),
- [sym_false] = ACTIONS(2919),
- [sym_null] = ACTIONS(2919),
- [sym_undefined] = ACTIONS(2919),
- [anon_sym_AT] = ACTIONS(2921),
- [anon_sym_static] = ACTIONS(2919),
- [anon_sym_readonly] = ACTIONS(2919),
- [anon_sym_get] = ACTIONS(2919),
- [anon_sym_set] = ACTIONS(2919),
- [anon_sym_declare] = ACTIONS(2919),
- [anon_sym_public] = ACTIONS(2919),
- [anon_sym_private] = ACTIONS(2919),
- [anon_sym_protected] = ACTIONS(2919),
- [anon_sym_override] = ACTIONS(2919),
- [anon_sym_module] = ACTIONS(2919),
- [anon_sym_any] = ACTIONS(2919),
- [anon_sym_number] = ACTIONS(2919),
- [anon_sym_boolean] = ACTIONS(2919),
- [anon_sym_string] = ACTIONS(2919),
- [anon_sym_symbol] = ACTIONS(2919),
- [anon_sym_object] = ACTIONS(2919),
- [anon_sym_abstract] = ACTIONS(2919),
- [anon_sym_interface] = ACTIONS(2919),
- [anon_sym_enum] = ACTIONS(2919),
- [sym_html_comment] = ACTIONS(5),
- },
- [892] = {
- [sym_identifier] = ACTIONS(2461),
- [anon_sym_export] = ACTIONS(2461),
- [anon_sym_type] = ACTIONS(2461),
- [anon_sym_namespace] = ACTIONS(2461),
- [anon_sym_LBRACE] = ACTIONS(2459),
- [anon_sym_typeof] = ACTIONS(2461),
- [anon_sym_import] = ACTIONS(2461),
- [anon_sym_with] = ACTIONS(2461),
- [anon_sym_var] = ACTIONS(2461),
- [anon_sym_let] = ACTIONS(2461),
- [anon_sym_const] = ACTIONS(2461),
- [anon_sym_BANG] = ACTIONS(2459),
- [anon_sym_if] = ACTIONS(2461),
- [anon_sym_switch] = ACTIONS(2461),
- [anon_sym_for] = ACTIONS(2461),
- [anon_sym_LPAREN] = ACTIONS(2459),
- [anon_sym_await] = ACTIONS(2461),
- [anon_sym_while] = ACTIONS(2461),
- [anon_sym_do] = ACTIONS(2461),
- [anon_sym_try] = ACTIONS(2461),
- [anon_sym_break] = ACTIONS(2461),
- [anon_sym_continue] = ACTIONS(2461),
- [anon_sym_debugger] = ACTIONS(2461),
- [anon_sym_return] = ACTIONS(2461),
- [anon_sym_throw] = ACTIONS(2461),
- [anon_sym_SEMI] = ACTIONS(2459),
- [anon_sym_yield] = ACTIONS(2461),
- [anon_sym_LBRACK] = ACTIONS(2459),
- [sym_glimmer_opening_tag] = ACTIONS(2459),
- [anon_sym_DQUOTE] = ACTIONS(2459),
- [anon_sym_SQUOTE] = ACTIONS(2459),
- [anon_sym_class] = ACTIONS(2461),
- [anon_sym_async] = ACTIONS(2461),
- [anon_sym_function] = ACTIONS(2461),
- [anon_sym_new] = ACTIONS(2461),
- [anon_sym_using] = ACTIONS(2461),
- [anon_sym_PLUS] = ACTIONS(2461),
- [anon_sym_DASH] = ACTIONS(2461),
- [anon_sym_SLASH] = ACTIONS(2461),
- [anon_sym_LT] = ACTIONS(2461),
- [anon_sym_TILDE] = ACTIONS(2459),
- [anon_sym_void] = ACTIONS(2461),
- [anon_sym_delete] = ACTIONS(2461),
- [anon_sym_PLUS_PLUS] = ACTIONS(2459),
- [anon_sym_DASH_DASH] = ACTIONS(2459),
- [sym_comment] = ACTIONS(5),
- [anon_sym_BQUOTE] = ACTIONS(2459),
- [sym_number] = ACTIONS(2459),
- [sym_private_property_identifier] = ACTIONS(2459),
- [sym_this] = ACTIONS(2461),
- [sym_super] = ACTIONS(2461),
- [sym_true] = ACTIONS(2461),
- [sym_false] = ACTIONS(2461),
- [sym_null] = ACTIONS(2461),
- [sym_undefined] = ACTIONS(2461),
- [anon_sym_AT] = ACTIONS(2459),
- [anon_sym_static] = ACTIONS(2461),
- [anon_sym_readonly] = ACTIONS(2461),
- [anon_sym_get] = ACTIONS(2461),
- [anon_sym_set] = ACTIONS(2461),
- [anon_sym_declare] = ACTIONS(2461),
- [anon_sym_public] = ACTIONS(2461),
- [anon_sym_private] = ACTIONS(2461),
- [anon_sym_protected] = ACTIONS(2461),
- [anon_sym_override] = ACTIONS(2461),
- [anon_sym_module] = ACTIONS(2461),
- [anon_sym_any] = ACTIONS(2461),
- [anon_sym_number] = ACTIONS(2461),
- [anon_sym_boolean] = ACTIONS(2461),
- [anon_sym_string] = ACTIONS(2461),
- [anon_sym_symbol] = ACTIONS(2461),
- [anon_sym_object] = ACTIONS(2461),
- [anon_sym_abstract] = ACTIONS(2461),
- [anon_sym_interface] = ACTIONS(2461),
- [anon_sym_enum] = ACTIONS(2461),
- [sym_html_comment] = ACTIONS(5),
- },
- [893] = {
- [sym_identifier] = ACTIONS(2923),
- [anon_sym_export] = ACTIONS(2923),
- [anon_sym_type] = ACTIONS(2923),
- [anon_sym_namespace] = ACTIONS(2923),
- [anon_sym_LBRACE] = ACTIONS(2925),
- [anon_sym_typeof] = ACTIONS(2923),
- [anon_sym_import] = ACTIONS(2923),
- [anon_sym_with] = ACTIONS(2923),
- [anon_sym_var] = ACTIONS(2923),
- [anon_sym_let] = ACTIONS(2923),
- [anon_sym_const] = ACTIONS(2923),
- [anon_sym_BANG] = ACTIONS(2925),
- [anon_sym_if] = ACTIONS(2923),
- [anon_sym_switch] = ACTIONS(2923),
- [anon_sym_for] = ACTIONS(2923),
- [anon_sym_LPAREN] = ACTIONS(2925),
- [anon_sym_await] = ACTIONS(2923),
- [anon_sym_while] = ACTIONS(2923),
- [anon_sym_do] = ACTIONS(2923),
- [anon_sym_try] = ACTIONS(2923),
- [anon_sym_break] = ACTIONS(2923),
- [anon_sym_continue] = ACTIONS(2923),
- [anon_sym_debugger] = ACTIONS(2923),
- [anon_sym_return] = ACTIONS(2923),
- [anon_sym_throw] = ACTIONS(2923),
- [anon_sym_SEMI] = ACTIONS(2925),
- [anon_sym_yield] = ACTIONS(2923),
- [anon_sym_LBRACK] = ACTIONS(2925),
- [sym_glimmer_opening_tag] = ACTIONS(2925),
- [anon_sym_DQUOTE] = ACTIONS(2925),
- [anon_sym_SQUOTE] = ACTIONS(2925),
- [anon_sym_class] = ACTIONS(2923),
- [anon_sym_async] = ACTIONS(2923),
- [anon_sym_function] = ACTIONS(2923),
- [anon_sym_new] = ACTIONS(2923),
- [anon_sym_using] = ACTIONS(2923),
- [anon_sym_PLUS] = ACTIONS(2923),
- [anon_sym_DASH] = ACTIONS(2923),
- [anon_sym_SLASH] = ACTIONS(2923),
- [anon_sym_LT] = ACTIONS(2923),
- [anon_sym_TILDE] = ACTIONS(2925),
- [anon_sym_void] = ACTIONS(2923),
- [anon_sym_delete] = ACTIONS(2923),
- [anon_sym_PLUS_PLUS] = ACTIONS(2925),
- [anon_sym_DASH_DASH] = ACTIONS(2925),
- [sym_comment] = ACTIONS(5),
- [anon_sym_BQUOTE] = ACTIONS(2925),
- [sym_number] = ACTIONS(2925),
- [sym_private_property_identifier] = ACTIONS(2925),
- [sym_this] = ACTIONS(2923),
- [sym_super] = ACTIONS(2923),
- [sym_true] = ACTIONS(2923),
- [sym_false] = ACTIONS(2923),
- [sym_null] = ACTIONS(2923),
- [sym_undefined] = ACTIONS(2923),
- [anon_sym_AT] = ACTIONS(2925),
- [anon_sym_static] = ACTIONS(2923),
- [anon_sym_readonly] = ACTIONS(2923),
- [anon_sym_get] = ACTIONS(2923),
- [anon_sym_set] = ACTIONS(2923),
- [anon_sym_declare] = ACTIONS(2923),
- [anon_sym_public] = ACTIONS(2923),
- [anon_sym_private] = ACTIONS(2923),
- [anon_sym_protected] = ACTIONS(2923),
- [anon_sym_override] = ACTIONS(2923),
- [anon_sym_module] = ACTIONS(2923),
- [anon_sym_any] = ACTIONS(2923),
- [anon_sym_number] = ACTIONS(2923),
- [anon_sym_boolean] = ACTIONS(2923),
- [anon_sym_string] = ACTIONS(2923),
- [anon_sym_symbol] = ACTIONS(2923),
- [anon_sym_object] = ACTIONS(2923),
- [anon_sym_abstract] = ACTIONS(2923),
- [anon_sym_interface] = ACTIONS(2923),
- [anon_sym_enum] = ACTIONS(2923),
- [sym_html_comment] = ACTIONS(5),
- },
- [894] = {
- [sym_import] = STATE(4618),
- [sym_nested_identifier] = STATE(5906),
- [sym_string] = STATE(1947),
- [sym_formal_parameters] = STATE(5651),
- [sym_nested_type_identifier] = STATE(1799),
- [sym__type_query_member_expression_in_type_annotation] = STATE(1800),
- [sym__type_query_call_expression_in_type_annotation] = STATE(1928),
- [sym_asserts] = STATE(1894),
- [sym_type] = STATE(1895),
- [sym_constructor_type] = STATE(1929),
- [sym_primary_type] = STATE(1931),
- [sym_template_literal_type] = STATE(1936),
- [sym_infer_type] = STATE(1929),
- [sym_conditional_type] = STATE(1936),
- [sym_generic_type] = STATE(1936),
- [sym_type_predicate] = STATE(1894),
- [sym_type_query] = STATE(1936),
- [sym_index_type_query] = STATE(1936),
- [sym_lookup_type] = STATE(1936),
- [sym_literal_type] = STATE(1936),
- [sym__number] = STATE(1932),
- [sym_existential_type] = STATE(1936),
- [sym_flow_maybe_type] = STATE(1936),
- [sym_parenthesized_type] = STATE(1936),
- [sym_predefined_type] = STATE(1811),
- [sym_object_type] = STATE(1936),
- [sym_type_parameters] = STATE(5347),
- [sym_array_type] = STATE(1936),
- [sym_tuple_type] = STATE(1936),
- [sym_readonly_type] = STATE(1929),
- [sym_union_type] = STATE(1936),
- [sym_intersection_type] = STATE(1936),
- [sym_function_type] = STATE(1929),
- [sym_identifier] = ACTIONS(2927),
- [anon_sym_STAR] = ACTIONS(2929),
- [anon_sym_LBRACE] = ACTIONS(2931),
- [anon_sym_typeof] = ACTIONS(2933),
- [anon_sym_import] = ACTIONS(133),
- [anon_sym_const] = ACTIONS(2935),
- [anon_sym_LPAREN] = ACTIONS(2937),
- [anon_sym_LBRACK] = ACTIONS(2939),
- [anon_sym_DQUOTE] = ACTIONS(69),
- [anon_sym_SQUOTE] = ACTIONS(71),
- [anon_sym_new] = ACTIONS(2941),
- [anon_sym_AMP] = ACTIONS(2943),
- [anon_sym_PIPE] = ACTIONS(2945),
- [anon_sym_PLUS] = ACTIONS(2947),
- [anon_sym_DASH] = ACTIONS(2947),
- [anon_sym_LT] = ACTIONS(2581),
- [anon_sym_void] = ACTIONS(2949),
- [sym_comment] = ACTIONS(5),
- [anon_sym_BQUOTE] = ACTIONS(2951),
- [sym_number] = ACTIONS(2953),
- [sym_this] = ACTIONS(2955),
- [sym_true] = ACTIONS(2957),
- [sym_false] = ACTIONS(2957),
- [sym_null] = ACTIONS(2957),
- [sym_undefined] = ACTIONS(2957),
- [anon_sym_readonly] = ACTIONS(2959),
- [anon_sym_QMARK] = ACTIONS(2961),
- [anon_sym_any] = ACTIONS(2949),
- [anon_sym_number] = ACTIONS(2949),
- [anon_sym_boolean] = ACTIONS(2949),
- [anon_sym_string] = ACTIONS(2949),
- [anon_sym_symbol] = ACTIONS(2949),
- [anon_sym_object] = ACTIONS(2949),
- [anon_sym_abstract] = ACTIONS(2963),
- [anon_sym_asserts] = ACTIONS(2965),
- [anon_sym_infer] = ACTIONS(2967),
- [anon_sym_keyof] = ACTIONS(2969),
- [anon_sym_unique] = ACTIONS(2971),
- [anon_sym_unknown] = ACTIONS(2949),
- [anon_sym_never] = ACTIONS(2949),
- [anon_sym_LBRACE_PIPE] = ACTIONS(2973),
- [sym_html_comment] = ACTIONS(5),
- },
- [895] = {
- [sym_import] = STATE(5139),
- [sym_nested_identifier] = STATE(5610),
- [sym_string] = STATE(3160),
- [sym_formal_parameters] = STATE(5827),
- [sym_nested_type_identifier] = STATE(3047),
- [sym__type_query_member_expression_in_type_annotation] = STATE(2958),
- [sym__type_query_call_expression_in_type_annotation] = STATE(3113),
- [sym_asserts] = STATE(3174),
- [sym_type] = STATE(3175),
- [sym_constructor_type] = STATE(3205),
- [sym_primary_type] = STATE(3150),
- [sym_template_literal_type] = STATE(3195),
- [sym_infer_type] = STATE(3205),
- [sym_conditional_type] = STATE(3195),
- [sym_generic_type] = STATE(3195),
- [sym_type_predicate] = STATE(3174),
- [sym_type_query] = STATE(3195),
- [sym_index_type_query] = STATE(3195),
- [sym_lookup_type] = STATE(3195),
- [sym_literal_type] = STATE(3195),
- [sym__number] = STATE(3154),
- [sym_existential_type] = STATE(3195),
- [sym_flow_maybe_type] = STATE(3195),
- [sym_parenthesized_type] = STATE(3195),
- [sym_predefined_type] = STATE(3112),
- [sym_object_type] = STATE(3195),
- [sym_type_parameters] = STATE(5228),
- [sym_array_type] = STATE(3195),
- [sym_tuple_type] = STATE(3195),
- [sym_readonly_type] = STATE(3205),
- [sym_union_type] = STATE(3195),
- [sym_intersection_type] = STATE(3195),
- [sym_function_type] = STATE(3205),
- [sym_identifier] = ACTIONS(2975),
- [anon_sym_STAR] = ACTIONS(992),
- [anon_sym_LBRACE] = ACTIONS(1586),
- [anon_sym_typeof] = ACTIONS(1588),
- [anon_sym_import] = ACTIONS(133),
- [anon_sym_const] = ACTIONS(998),
- [anon_sym_LPAREN] = ACTIONS(1590),
- [anon_sym_LBRACK] = ACTIONS(1592),
- [anon_sym_DQUOTE] = ACTIONS(1594),
- [anon_sym_SQUOTE] = ACTIONS(1596),
- [anon_sym_new] = ACTIONS(1598),
- [anon_sym_AMP] = ACTIONS(1006),
- [anon_sym_PIPE] = ACTIONS(1008),
- [anon_sym_PLUS] = ACTIONS(2977),
- [anon_sym_DASH] = ACTIONS(2977),
- [anon_sym_LT] = ACTIONS(2581),
- [anon_sym_void] = ACTIONS(1038),
- [sym_comment] = ACTIONS(5),
- [anon_sym_BQUOTE] = ACTIONS(1606),
- [sym_number] = ACTIONS(1608),
- [sym_this] = ACTIONS(2979),
- [sym_true] = ACTIONS(1612),
- [sym_false] = ACTIONS(1612),
- [sym_null] = ACTIONS(1612),
- [sym_undefined] = ACTIONS(1612),
- [anon_sym_readonly] = ACTIONS(1614),
- [anon_sym_QMARK] = ACTIONS(1026),
- [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_object] = ACTIONS(1038),
- [anon_sym_abstract] = ACTIONS(1030),
- [anon_sym_asserts] = ACTIONS(2981),
- [anon_sym_infer] = ACTIONS(1032),
- [anon_sym_keyof] = ACTIONS(1034),
- [anon_sym_unique] = ACTIONS(1036),
- [anon_sym_unknown] = ACTIONS(1038),
- [anon_sym_never] = ACTIONS(1038),
- [anon_sym_LBRACE_PIPE] = ACTIONS(1040),
- [sym_html_comment] = ACTIONS(5),
- },
- [896] = {
- [sym_import] = STATE(4642),
- [sym_nested_identifier] = STATE(5541),
- [sym_string] = STATE(3272),
- [sym_formal_parameters] = STATE(5632),
- [sym_nested_type_identifier] = STATE(3198),
- [sym__type_query_member_expression_in_type_annotation] = STATE(3138),
- [sym__type_query_call_expression_in_type_annotation] = STATE(3223),
- [sym_asserts] = STATE(3299),
- [sym_type] = STATE(3317),
- [sym_constructor_type] = STATE(3280),
- [sym_primary_type] = STATE(3281),
- [sym_template_literal_type] = STATE(3257),
- [sym_infer_type] = STATE(3280),
- [sym_conditional_type] = STATE(3257),
- [sym_generic_type] = STATE(3257),
- [sym_type_predicate] = STATE(3299),
- [sym_type_query] = STATE(3257),
- [sym_index_type_query] = STATE(3257),
- [sym_lookup_type] = STATE(3257),
- [sym_literal_type] = STATE(3257),
- [sym__number] = STATE(3285),
- [sym_existential_type] = STATE(3257),
- [sym_flow_maybe_type] = STATE(3257),
- [sym_parenthesized_type] = STATE(3257),
- [sym_predefined_type] = STATE(3227),
- [sym_object_type] = STATE(3257),
- [sym_type_parameters] = STATE(5324),
- [sym_array_type] = STATE(3257),
- [sym_tuple_type] = STATE(3257),
- [sym_readonly_type] = STATE(3280),
- [sym_union_type] = STATE(3257),
- [sym_intersection_type] = STATE(3257),
- [sym_function_type] = STATE(3280),
- [sym_identifier] = ACTIONS(2983),
- [anon_sym_STAR] = ACTIONS(2985),
- [anon_sym_LBRACE] = ACTIONS(2987),
- [anon_sym_typeof] = ACTIONS(2989),
- [anon_sym_import] = ACTIONS(133),
- [anon_sym_const] = ACTIONS(2991),
- [anon_sym_LPAREN] = ACTIONS(2993),
- [anon_sym_LBRACK] = ACTIONS(2995),
- [anon_sym_DQUOTE] = ACTIONS(2997),
- [anon_sym_SQUOTE] = ACTIONS(2999),
- [anon_sym_new] = ACTIONS(3001),
- [anon_sym_AMP] = ACTIONS(3003),
- [anon_sym_PIPE] = ACTIONS(3005),
- [anon_sym_PLUS] = ACTIONS(3007),
- [anon_sym_DASH] = ACTIONS(3007),
- [anon_sym_LT] = ACTIONS(2581),
- [anon_sym_void] = ACTIONS(3009),
- [sym_comment] = ACTIONS(5),
- [anon_sym_BQUOTE] = ACTIONS(3011),
- [sym_number] = ACTIONS(3013),
- [sym_this] = ACTIONS(3015),
- [sym_true] = ACTIONS(3017),
- [sym_false] = ACTIONS(3017),
- [sym_null] = ACTIONS(3017),
- [sym_undefined] = ACTIONS(3017),
- [anon_sym_readonly] = ACTIONS(3019),
- [anon_sym_QMARK] = ACTIONS(3021),
- [anon_sym_any] = ACTIONS(3009),
- [anon_sym_number] = ACTIONS(3009),
- [anon_sym_boolean] = ACTIONS(3009),
- [anon_sym_string] = ACTIONS(3009),
- [anon_sym_symbol] = ACTIONS(3009),
- [anon_sym_object] = ACTIONS(3009),
- [anon_sym_abstract] = ACTIONS(3023),
- [anon_sym_asserts] = ACTIONS(3025),
- [anon_sym_infer] = ACTIONS(3027),
- [anon_sym_keyof] = ACTIONS(3029),
- [anon_sym_unique] = ACTIONS(3031),
- [anon_sym_unknown] = ACTIONS(3009),
- [anon_sym_never] = ACTIONS(3009),
- [anon_sym_LBRACE_PIPE] = ACTIONS(3033),
- [sym_html_comment] = ACTIONS(5),
- },
- [897] = {
- [sym_import] = STATE(5087),
- [sym_nested_identifier] = STATE(5707),
- [sym_string] = STATE(2889),
- [sym_formal_parameters] = STATE(5709),
- [sym_nested_type_identifier] = STATE(2828),
- [sym__type_query_member_expression_in_type_annotation] = STATE(2846),
- [sym__type_query_call_expression_in_type_annotation] = STATE(2850),
- [sym_asserts] = STATE(2926),
- [sym_type] = STATE(3059),
- [sym_constructor_type] = STATE(2896),
- [sym_primary_type] = STATE(2897),
- [sym_template_literal_type] = STATE(2885),
- [sym_infer_type] = STATE(2896),
- [sym_conditional_type] = STATE(2885),
- [sym_generic_type] = STATE(2885),
- [sym_type_predicate] = STATE(2926),
- [sym_type_query] = STATE(2885),
- [sym_index_type_query] = STATE(2885),
- [sym_lookup_type] = STATE(2885),
- [sym_literal_type] = STATE(2885),
- [sym__number] = STATE(2903),
- [sym_existential_type] = STATE(2885),
- [sym_flow_maybe_type] = STATE(2885),
- [sym_parenthesized_type] = STATE(2885),
- [sym_predefined_type] = STATE(2995),
- [sym_object_type] = STATE(2885),
- [sym_type_parameters] = STATE(5435),
- [sym_array_type] = STATE(2885),
- [sym_tuple_type] = STATE(2885),
- [sym_readonly_type] = STATE(2896),
- [sym_union_type] = STATE(2885),
- [sym_intersection_type] = STATE(2885),
- [sym_function_type] = STATE(2896),
- [sym_identifier] = ACTIONS(3035),
- [anon_sym_STAR] = ACTIONS(612),
- [anon_sym_LBRACE] = ACTIONS(1498),
- [anon_sym_typeof] = ACTIONS(1500),
- [anon_sym_import] = ACTIONS(133),
- [anon_sym_const] = ACTIONS(135),
- [anon_sym_LPAREN] = ACTIONS(1502),
- [anon_sym_LBRACK] = ACTIONS(1504),
- [anon_sym_DQUOTE] = ACTIONS(1506),
- [anon_sym_SQUOTE] = ACTIONS(1508),
- [anon_sym_new] = ACTIONS(1510),
- [anon_sym_AMP] = ACTIONS(741),
- [anon_sym_PIPE] = ACTIONS(743),
- [anon_sym_PLUS] = ACTIONS(2579),
- [anon_sym_DASH] = ACTIONS(2579),
- [anon_sym_LT] = ACTIONS(2581),
- [anon_sym_void] = ACTIONS(220),
- [sym_comment] = ACTIONS(5),
- [anon_sym_BQUOTE] = ACTIONS(1516),
- [sym_number] = ACTIONS(1518),
- [sym_this] = ACTIONS(3037),
- [sym_true] = ACTIONS(1522),
- [sym_false] = ACTIONS(1522),
- [sym_null] = ACTIONS(1522),
- [sym_undefined] = ACTIONS(1522),
- [anon_sym_readonly] = ACTIONS(1524),
- [anon_sym_QMARK] = ACTIONS(761),
- [anon_sym_any] = ACTIONS(220),
- [anon_sym_number] = ACTIONS(220),
- [anon_sym_boolean] = ACTIONS(220),
- [anon_sym_string] = ACTIONS(220),
- [anon_sym_symbol] = ACTIONS(220),
- [anon_sym_object] = ACTIONS(220),
- [anon_sym_abstract] = ACTIONS(212),
- [anon_sym_asserts] = ACTIONS(3039),
- [anon_sym_infer] = ACTIONS(214),
- [anon_sym_keyof] = ACTIONS(216),
- [anon_sym_unique] = ACTIONS(218),
- [anon_sym_unknown] = ACTIONS(220),
- [anon_sym_never] = ACTIONS(220),
- [anon_sym_LBRACE_PIPE] = ACTIONS(222),
- [sym_html_comment] = ACTIONS(5),
- },
- [898] = {
- [sym_import] = STATE(4903),
- [sym_nested_identifier] = STATE(5707),
- [sym_string] = STATE(2889),
- [sym_formal_parameters] = STATE(5916),
- [sym_nested_type_identifier] = STATE(2828),
- [sym__type_query_member_expression_in_type_annotation] = STATE(3332),
- [sym__type_query_call_expression_in_type_annotation] = STATE(2850),
- [sym_asserts] = STATE(2926),
- [sym_type] = STATE(3829),
- [sym_constructor_type] = STATE(2896),
- [sym_primary_type] = STATE(2897),
- [sym_template_literal_type] = STATE(2885),
- [sym_infer_type] = STATE(2896),
- [sym_conditional_type] = STATE(2885),
- [sym_generic_type] = STATE(2885),
- [sym_type_predicate] = STATE(2926),
- [sym_type_query] = STATE(2885),
- [sym_index_type_query] = STATE(2885),
- [sym_lookup_type] = STATE(2885),
- [sym_literal_type] = STATE(2885),
- [sym__number] = STATE(2903),
- [sym_existential_type] = STATE(2885),
- [sym_flow_maybe_type] = STATE(2885),
- [sym_parenthesized_type] = STATE(2885),
- [sym_predefined_type] = STATE(3590),
- [sym_object_type] = STATE(2885),
- [sym_type_parameters] = STATE(5386),
- [sym_array_type] = STATE(2885),
- [sym_tuple_type] = STATE(2885),
- [sym_readonly_type] = STATE(2896),
- [sym_union_type] = STATE(2885),
- [sym_intersection_type] = STATE(2885),
- [sym_function_type] = STATE(2896),
- [sym_identifier] = ACTIONS(3041),
- [anon_sym_STAR] = ACTIONS(612),
- [anon_sym_LBRACE] = ACTIONS(3043),
- [anon_sym_typeof] = ACTIONS(3045),
- [anon_sym_import] = ACTIONS(133),
- [anon_sym_const] = ACTIONS(135),
- [anon_sym_LPAREN] = ACTIONS(1502),
- [anon_sym_LBRACK] = ACTIONS(1504),
- [anon_sym_DQUOTE] = ACTIONS(2275),
- [anon_sym_SQUOTE] = ACTIONS(2277),
- [anon_sym_new] = ACTIONS(3047),
- [anon_sym_AMP] = ACTIONS(3049),
- [anon_sym_PIPE] = ACTIONS(3051),
- [anon_sym_PLUS] = ACTIONS(2579),
- [anon_sym_DASH] = ACTIONS(2579),
- [anon_sym_LT] = ACTIONS(2581),
- [anon_sym_void] = ACTIONS(220),
- [sym_comment] = ACTIONS(5),
- [anon_sym_BQUOTE] = ACTIONS(1516),
- [sym_number] = ACTIONS(1518),
- [sym_this] = ACTIONS(3053),
- [sym_true] = ACTIONS(1522),
- [sym_false] = ACTIONS(1522),
- [sym_null] = ACTIONS(1522),
- [sym_undefined] = ACTIONS(1522),
- [anon_sym_readonly] = ACTIONS(3055),
- [anon_sym_QMARK] = ACTIONS(3057),
- [anon_sym_any] = ACTIONS(220),
- [anon_sym_number] = ACTIONS(220),
- [anon_sym_boolean] = ACTIONS(220),
- [anon_sym_string] = ACTIONS(220),
- [anon_sym_symbol] = ACTIONS(220),
- [anon_sym_object] = ACTIONS(220),
- [anon_sym_abstract] = ACTIONS(3059),
- [anon_sym_asserts] = ACTIONS(3061),
- [anon_sym_infer] = ACTIONS(3063),
- [anon_sym_keyof] = ACTIONS(3065),
- [anon_sym_unique] = ACTIONS(218),
- [anon_sym_unknown] = ACTIONS(220),
- [anon_sym_never] = ACTIONS(220),
- [anon_sym_LBRACE_PIPE] = ACTIONS(3067),
- [sym_html_comment] = ACTIONS(5),
- },
- [899] = {
- [sym_import] = STATE(5139),
- [sym_nested_identifier] = STATE(5610),
- [sym_string] = STATE(3160),
- [sym_formal_parameters] = STATE(5827),
- [sym_nested_type_identifier] = STATE(3047),
- [sym__type_query_member_expression_in_type_annotation] = STATE(2958),
- [sym__type_query_call_expression_in_type_annotation] = STATE(3113),
- [sym_asserts] = STATE(3208),
- [sym_type] = STATE(3152),
- [sym_constructor_type] = STATE(3205),
- [sym_primary_type] = STATE(3150),
- [sym_template_literal_type] = STATE(3195),
- [sym_infer_type] = STATE(3205),
- [sym_conditional_type] = STATE(3195),
- [sym_generic_type] = STATE(3195),
- [sym_type_predicate] = STATE(3208),
- [sym_type_query] = STATE(3195),
- [sym_index_type_query] = STATE(3195),
- [sym_lookup_type] = STATE(3195),
- [sym_literal_type] = STATE(3195),
- [sym__number] = STATE(3154),
- [sym_existential_type] = STATE(3195),
- [sym_flow_maybe_type] = STATE(3195),
- [sym_parenthesized_type] = STATE(3195),
- [sym_predefined_type] = STATE(3112),
- [sym_object_type] = STATE(3195),
- [sym_type_parameters] = STATE(5228),
- [sym_array_type] = STATE(3195),
- [sym_tuple_type] = STATE(3195),
- [sym_readonly_type] = STATE(3205),
- [sym_union_type] = STATE(3195),
- [sym_intersection_type] = STATE(3195),
- [sym_function_type] = STATE(3205),
- [sym_identifier] = ACTIONS(2975),
- [anon_sym_STAR] = ACTIONS(992),
- [anon_sym_LBRACE] = ACTIONS(1586),
- [anon_sym_typeof] = ACTIONS(1588),
- [anon_sym_import] = ACTIONS(133),
- [anon_sym_const] = ACTIONS(998),
- [anon_sym_LPAREN] = ACTIONS(1590),
- [anon_sym_LBRACK] = ACTIONS(1592),
- [anon_sym_DQUOTE] = ACTIONS(1594),
- [anon_sym_SQUOTE] = ACTIONS(1596),
- [anon_sym_new] = ACTIONS(1598),
- [anon_sym_AMP] = ACTIONS(1006),
- [anon_sym_PIPE] = ACTIONS(1008),
- [anon_sym_PLUS] = ACTIONS(2977),
- [anon_sym_DASH] = ACTIONS(2977),
- [anon_sym_LT] = ACTIONS(2581),
- [anon_sym_void] = ACTIONS(1038),
- [sym_comment] = ACTIONS(5),
- [anon_sym_BQUOTE] = ACTIONS(1606),
- [sym_number] = ACTIONS(1608),
- [sym_this] = ACTIONS(2979),
- [sym_true] = ACTIONS(1612),
- [sym_false] = ACTIONS(1612),
- [sym_null] = ACTIONS(1612),
- [sym_undefined] = ACTIONS(1612),
- [anon_sym_readonly] = ACTIONS(1614),
- [anon_sym_QMARK] = ACTIONS(1026),
- [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_object] = ACTIONS(1038),
- [anon_sym_abstract] = ACTIONS(1030),
- [anon_sym_asserts] = ACTIONS(2981),
- [anon_sym_infer] = ACTIONS(1032),
- [anon_sym_keyof] = ACTIONS(1034),
- [anon_sym_unique] = ACTIONS(1036),
- [anon_sym_unknown] = ACTIONS(1038),
- [anon_sym_never] = ACTIONS(1038),
- [anon_sym_LBRACE_PIPE] = ACTIONS(1040),
- [sym_html_comment] = ACTIONS(5),
- },
- [900] = {
- [sym_import] = STATE(4642),
- [sym_nested_identifier] = STATE(5541),
- [sym_string] = STATE(3272),
- [sym_formal_parameters] = STATE(5632),
- [sym_nested_type_identifier] = STATE(3198),
- [sym__type_query_member_expression_in_type_annotation] = STATE(3138),
- [sym__type_query_call_expression_in_type_annotation] = STATE(3223),
- [sym_asserts] = STATE(3419),
- [sym_type] = STATE(3421),
- [sym_constructor_type] = STATE(3280),
- [sym_primary_type] = STATE(3281),
- [sym_template_literal_type] = STATE(3257),
- [sym_infer_type] = STATE(3280),
- [sym_conditional_type] = STATE(3257),
- [sym_generic_type] = STATE(3257),
- [sym_type_predicate] = STATE(3419),
- [sym_type_query] = STATE(3257),
- [sym_index_type_query] = STATE(3257),
- [sym_lookup_type] = STATE(3257),
- [sym_literal_type] = STATE(3257),
- [sym__number] = STATE(3285),
- [sym_existential_type] = STATE(3257),
- [sym_flow_maybe_type] = STATE(3257),
- [sym_parenthesized_type] = STATE(3257),
- [sym_predefined_type] = STATE(3227),
- [sym_object_type] = STATE(3257),
- [sym_type_parameters] = STATE(5324),
- [sym_array_type] = STATE(3257),
- [sym_tuple_type] = STATE(3257),
- [sym_readonly_type] = STATE(3280),
- [sym_union_type] = STATE(3257),
- [sym_intersection_type] = STATE(3257),
- [sym_function_type] = STATE(3280),
- [sym_identifier] = ACTIONS(2983),
- [anon_sym_STAR] = ACTIONS(2985),
- [anon_sym_LBRACE] = ACTIONS(2987),
- [anon_sym_typeof] = ACTIONS(2989),
- [anon_sym_import] = ACTIONS(133),
- [anon_sym_const] = ACTIONS(2991),
- [anon_sym_LPAREN] = ACTIONS(2993),
- [anon_sym_LBRACK] = ACTIONS(2995),
- [anon_sym_DQUOTE] = ACTIONS(2997),
- [anon_sym_SQUOTE] = ACTIONS(2999),
- [anon_sym_new] = ACTIONS(3001),
- [anon_sym_AMP] = ACTIONS(3003),
- [anon_sym_PIPE] = ACTIONS(3005),
- [anon_sym_PLUS] = ACTIONS(3007),
- [anon_sym_DASH] = ACTIONS(3007),
- [anon_sym_LT] = ACTIONS(2581),
- [anon_sym_void] = ACTIONS(3009),
- [sym_comment] = ACTIONS(5),
- [anon_sym_BQUOTE] = ACTIONS(3011),
- [sym_number] = ACTIONS(3013),
- [sym_this] = ACTIONS(3015),
- [sym_true] = ACTIONS(3017),
- [sym_false] = ACTIONS(3017),
- [sym_null] = ACTIONS(3017),
- [sym_undefined] = ACTIONS(3017),
- [anon_sym_readonly] = ACTIONS(3019),
- [anon_sym_QMARK] = ACTIONS(3021),
- [anon_sym_any] = ACTIONS(3009),
- [anon_sym_number] = ACTIONS(3009),
- [anon_sym_boolean] = ACTIONS(3009),
- [anon_sym_string] = ACTIONS(3009),
- [anon_sym_symbol] = ACTIONS(3009),
- [anon_sym_object] = ACTIONS(3009),
- [anon_sym_abstract] = ACTIONS(3023),
- [anon_sym_asserts] = ACTIONS(3025),
- [anon_sym_infer] = ACTIONS(3027),
- [anon_sym_keyof] = ACTIONS(3029),
- [anon_sym_unique] = ACTIONS(3031),
- [anon_sym_unknown] = ACTIONS(3009),
- [anon_sym_never] = ACTIONS(3009),
- [anon_sym_LBRACE_PIPE] = ACTIONS(3033),
- [sym_html_comment] = ACTIONS(5),
- },
- [901] = {
- [sym_import] = STATE(5087),
- [sym_nested_identifier] = STATE(5707),
- [sym_string] = STATE(2889),
- [sym_formal_parameters] = STATE(5709),
- [sym_nested_type_identifier] = STATE(2828),
- [sym__type_query_member_expression_in_type_annotation] = STATE(2846),
- [sym__type_query_call_expression_in_type_annotation] = STATE(2850),
- [sym_asserts] = STATE(5487),
- [sym_type] = STATE(3333),
- [sym_constructor_type] = STATE(2896),
- [sym_primary_type] = STATE(2897),
- [sym_template_literal_type] = STATE(2885),
- [sym_infer_type] = STATE(2896),
- [sym_conditional_type] = STATE(2885),
- [sym_generic_type] = STATE(2885),
- [sym_type_predicate] = STATE(5492),
- [sym_type_query] = STATE(2885),
- [sym_index_type_query] = STATE(2885),
- [sym_lookup_type] = STATE(2885),
- [sym_literal_type] = STATE(2885),
- [sym__number] = STATE(2903),
- [sym_existential_type] = STATE(2885),
- [sym_flow_maybe_type] = STATE(2885),
- [sym_parenthesized_type] = STATE(2885),
- [sym_predefined_type] = STATE(2995),
- [sym_object_type] = STATE(2885),
- [sym_type_parameters] = STATE(5435),
- [sym_array_type] = STATE(2885),
- [sym_tuple_type] = STATE(2885),
- [sym_readonly_type] = STATE(2896),
- [sym_union_type] = STATE(2885),
- [sym_intersection_type] = STATE(2885),
- [sym_function_type] = STATE(2896),
- [sym_identifier] = ACTIONS(3035),
- [anon_sym_STAR] = ACTIONS(612),
- [anon_sym_LBRACE] = ACTIONS(1498),
- [anon_sym_typeof] = ACTIONS(1500),
- [anon_sym_import] = ACTIONS(133),
- [anon_sym_const] = ACTIONS(135),
- [anon_sym_LPAREN] = ACTIONS(1502),
- [anon_sym_LBRACK] = ACTIONS(1504),
- [anon_sym_DQUOTE] = ACTIONS(1506),
- [anon_sym_SQUOTE] = ACTIONS(1508),
- [anon_sym_new] = ACTIONS(1510),
- [anon_sym_AMP] = ACTIONS(741),
- [anon_sym_PIPE] = ACTIONS(743),
- [anon_sym_PLUS] = ACTIONS(2579),
- [anon_sym_DASH] = ACTIONS(2579),
- [anon_sym_LT] = ACTIONS(2581),
- [anon_sym_void] = ACTIONS(220),
- [sym_comment] = ACTIONS(5),
- [anon_sym_BQUOTE] = ACTIONS(1516),
- [sym_number] = ACTIONS(1518),
- [sym_this] = ACTIONS(3037),
- [sym_true] = ACTIONS(1522),
- [sym_false] = ACTIONS(1522),
- [sym_null] = ACTIONS(1522),
- [sym_undefined] = ACTIONS(1522),
- [anon_sym_readonly] = ACTIONS(1524),
- [anon_sym_QMARK] = ACTIONS(761),
- [anon_sym_any] = ACTIONS(220),
- [anon_sym_number] = ACTIONS(220),
- [anon_sym_boolean] = ACTIONS(220),
- [anon_sym_string] = ACTIONS(220),
- [anon_sym_symbol] = ACTIONS(220),
- [anon_sym_object] = ACTIONS(220),
- [anon_sym_abstract] = ACTIONS(212),
- [anon_sym_asserts] = ACTIONS(3039),
- [anon_sym_infer] = ACTIONS(214),
- [anon_sym_keyof] = ACTIONS(216),
- [anon_sym_unique] = ACTIONS(218),
- [anon_sym_unknown] = ACTIONS(220),
- [anon_sym_never] = ACTIONS(220),
- [anon_sym_LBRACE_PIPE] = ACTIONS(222),
- [sym_html_comment] = ACTIONS(5),
- },
- [902] = {
- [sym_import] = STATE(4642),
- [sym_nested_identifier] = STATE(5541),
- [sym_string] = STATE(3272),
- [sym_formal_parameters] = STATE(5632),
- [sym_nested_type_identifier] = STATE(3198),
- [sym__type_query_member_expression_in_type_annotation] = STATE(3138),
- [sym__type_query_call_expression_in_type_annotation] = STATE(3223),
- [sym_asserts] = STATE(3933),
- [sym_type] = STATE(3454),
- [sym_constructor_type] = STATE(3280),
- [sym_primary_type] = STATE(3281),
- [sym_template_literal_type] = STATE(3257),
- [sym_infer_type] = STATE(3280),
- [sym_conditional_type] = STATE(3257),
- [sym_generic_type] = STATE(3257),
- [sym_type_predicate] = STATE(3935),
- [sym_type_query] = STATE(3257),
- [sym_index_type_query] = STATE(3257),
- [sym_lookup_type] = STATE(3257),
- [sym_literal_type] = STATE(3257),
- [sym__number] = STATE(3285),
- [sym_existential_type] = STATE(3257),
- [sym_flow_maybe_type] = STATE(3257),
- [sym_parenthesized_type] = STATE(3257),
- [sym_predefined_type] = STATE(3227),
- [sym_object_type] = STATE(3257),
- [sym_type_parameters] = STATE(5324),
- [sym_array_type] = STATE(3257),
- [sym_tuple_type] = STATE(3257),
- [sym_readonly_type] = STATE(3280),
- [sym_union_type] = STATE(3257),
- [sym_intersection_type] = STATE(3257),
- [sym_function_type] = STATE(3280),
- [sym_identifier] = ACTIONS(2983),
- [anon_sym_STAR] = ACTIONS(2985),
- [anon_sym_LBRACE] = ACTIONS(2987),
- [anon_sym_typeof] = ACTIONS(2989),
- [anon_sym_import] = ACTIONS(133),
- [anon_sym_const] = ACTIONS(2991),
- [anon_sym_LPAREN] = ACTIONS(2993),
- [anon_sym_LBRACK] = ACTIONS(2995),
- [anon_sym_DQUOTE] = ACTIONS(2997),
- [anon_sym_SQUOTE] = ACTIONS(2999),
- [anon_sym_new] = ACTIONS(3001),
- [anon_sym_AMP] = ACTIONS(3003),
- [anon_sym_PIPE] = ACTIONS(3005),
- [anon_sym_PLUS] = ACTIONS(3007),
- [anon_sym_DASH] = ACTIONS(3007),
- [anon_sym_LT] = ACTIONS(2581),
- [anon_sym_void] = ACTIONS(3009),
- [sym_comment] = ACTIONS(5),
- [anon_sym_BQUOTE] = ACTIONS(3011),
- [sym_number] = ACTIONS(3013),
- [sym_this] = ACTIONS(3015),
- [sym_true] = ACTIONS(3017),
- [sym_false] = ACTIONS(3017),
- [sym_null] = ACTIONS(3017),
- [sym_undefined] = ACTIONS(3017),
- [anon_sym_readonly] = ACTIONS(3019),
- [anon_sym_QMARK] = ACTIONS(3021),
- [anon_sym_any] = ACTIONS(3009),
- [anon_sym_number] = ACTIONS(3009),
- [anon_sym_boolean] = ACTIONS(3009),
- [anon_sym_string] = ACTIONS(3009),
- [anon_sym_symbol] = ACTIONS(3009),
- [anon_sym_object] = ACTIONS(3009),
- [anon_sym_abstract] = ACTIONS(3023),
- [anon_sym_asserts] = ACTIONS(3025),
- [anon_sym_infer] = ACTIONS(3027),
- [anon_sym_keyof] = ACTIONS(3029),
- [anon_sym_unique] = ACTIONS(3031),
- [anon_sym_unknown] = ACTIONS(3009),
- [anon_sym_never] = ACTIONS(3009),
- [anon_sym_LBRACE_PIPE] = ACTIONS(3033),
- [sym_html_comment] = ACTIONS(5),
- },
- [903] = {
- [sym_import] = STATE(4606),
- [sym_nested_identifier] = STATE(5653),
- [sym_string] = STATE(1545),
- [sym_formal_parameters] = STATE(5840),
- [sym_nested_type_identifier] = STATE(1441),
- [sym__type_query_member_expression_in_type_annotation] = STATE(1440),
- [sym__type_query_call_expression_in_type_annotation] = STATE(1555),
- [sym_asserts] = STATE(1457),
- [sym_type] = STATE(1458),
- [sym_constructor_type] = STATE(1556),
- [sym_primary_type] = STATE(1565),
- [sym_template_literal_type] = STATE(1540),
- [sym_infer_type] = STATE(1556),
- [sym_conditional_type] = STATE(1540),
- [sym_generic_type] = STATE(1540),
- [sym_type_predicate] = STATE(1457),
- [sym_type_query] = STATE(1540),
- [sym_index_type_query] = STATE(1540),
- [sym_lookup_type] = STATE(1540),
- [sym_literal_type] = STATE(1540),
- [sym__number] = STATE(1566),
- [sym_existential_type] = STATE(1540),
- [sym_flow_maybe_type] = STATE(1540),
- [sym_parenthesized_type] = STATE(1540),
- [sym_predefined_type] = STATE(1450),
- [sym_object_type] = STATE(1540),
- [sym_type_parameters] = STATE(5295),
- [sym_array_type] = STATE(1540),
- [sym_tuple_type] = STATE(1540),
- [sym_readonly_type] = STATE(1556),
- [sym_union_type] = STATE(1540),
- [sym_intersection_type] = STATE(1540),
- [sym_function_type] = STATE(1556),
- [sym_identifier] = ACTIONS(3069),
- [anon_sym_STAR] = ACTIONS(3071),
- [anon_sym_LBRACE] = ACTIONS(3073),
- [anon_sym_typeof] = ACTIONS(3075),
- [anon_sym_import] = ACTIONS(133),
- [anon_sym_const] = ACTIONS(3077),
- [anon_sym_LPAREN] = ACTIONS(3079),
- [anon_sym_LBRACK] = ACTIONS(3081),
- [anon_sym_DQUOTE] = ACTIONS(150),
- [anon_sym_SQUOTE] = ACTIONS(152),
- [anon_sym_new] = ACTIONS(3083),
- [anon_sym_AMP] = ACTIONS(3085),
- [anon_sym_PIPE] = ACTIONS(3087),
- [anon_sym_PLUS] = ACTIONS(3089),
- [anon_sym_DASH] = ACTIONS(3089),
- [anon_sym_LT] = ACTIONS(2581),
- [anon_sym_void] = ACTIONS(3091),
- [sym_comment] = ACTIONS(5),
- [anon_sym_BQUOTE] = ACTIONS(3093),
- [sym_number] = ACTIONS(3095),
- [sym_this] = ACTIONS(3097),
- [sym_true] = ACTIONS(3099),
- [sym_false] = ACTIONS(3099),
- [sym_null] = ACTIONS(3099),
- [sym_undefined] = ACTIONS(3099),
- [anon_sym_readonly] = ACTIONS(3101),
- [anon_sym_QMARK] = ACTIONS(3103),
- [anon_sym_any] = ACTIONS(3091),
- [anon_sym_number] = ACTIONS(3091),
- [anon_sym_boolean] = ACTIONS(3091),
- [anon_sym_string] = ACTIONS(3091),
- [anon_sym_symbol] = ACTIONS(3091),
- [anon_sym_object] = ACTIONS(3091),
- [anon_sym_abstract] = ACTIONS(3105),
- [anon_sym_asserts] = ACTIONS(3107),
- [anon_sym_infer] = ACTIONS(3109),
- [anon_sym_keyof] = ACTIONS(3111),
- [anon_sym_unique] = ACTIONS(3113),
- [anon_sym_unknown] = ACTIONS(3091),
- [anon_sym_never] = ACTIONS(3091),
- [anon_sym_LBRACE_PIPE] = ACTIONS(3115),
- [sym_html_comment] = ACTIONS(5),
- },
- [904] = {
- [sym_import] = STATE(4903),
- [sym_nested_identifier] = STATE(5707),
- [sym_string] = STATE(2889),
- [sym_formal_parameters] = STATE(5916),
- [sym_nested_type_identifier] = STATE(2828),
- [sym__type_query_member_expression_in_type_annotation] = STATE(3332),
- [sym__type_query_call_expression_in_type_annotation] = STATE(2850),
- [sym_asserts] = STATE(2874),
- [sym_type] = STATE(3812),
- [sym_constructor_type] = STATE(2896),
- [sym_primary_type] = STATE(2897),
- [sym_template_literal_type] = STATE(2885),
- [sym_infer_type] = STATE(2896),
- [sym_conditional_type] = STATE(2885),
- [sym_generic_type] = STATE(2885),
- [sym_type_predicate] = STATE(2874),
- [sym_type_query] = STATE(2885),
- [sym_index_type_query] = STATE(2885),
- [sym_lookup_type] = STATE(2885),
- [sym_literal_type] = STATE(2885),
- [sym__number] = STATE(2903),
- [sym_existential_type] = STATE(2885),
- [sym_flow_maybe_type] = STATE(2885),
- [sym_parenthesized_type] = STATE(2885),
- [sym_predefined_type] = STATE(3590),
- [sym_object_type] = STATE(2885),
- [sym_type_parameters] = STATE(5386),
- [sym_array_type] = STATE(2885),
- [sym_tuple_type] = STATE(2885),
- [sym_readonly_type] = STATE(2896),
- [sym_union_type] = STATE(2885),
- [sym_intersection_type] = STATE(2885),
- [sym_function_type] = STATE(2896),
- [sym_identifier] = ACTIONS(3041),
- [anon_sym_STAR] = ACTIONS(612),
- [anon_sym_LBRACE] = ACTIONS(3043),
- [anon_sym_typeof] = ACTIONS(3045),
- [anon_sym_import] = ACTIONS(133),
- [anon_sym_const] = ACTIONS(135),
- [anon_sym_LPAREN] = ACTIONS(1502),
- [anon_sym_LBRACK] = ACTIONS(1504),
- [anon_sym_DQUOTE] = ACTIONS(2275),
- [anon_sym_SQUOTE] = ACTIONS(2277),
- [anon_sym_new] = ACTIONS(3047),
- [anon_sym_AMP] = ACTIONS(3049),
- [anon_sym_PIPE] = ACTIONS(3051),
- [anon_sym_PLUS] = ACTIONS(2579),
- [anon_sym_DASH] = ACTIONS(2579),
- [anon_sym_LT] = ACTIONS(2581),
- [anon_sym_void] = ACTIONS(220),
- [sym_comment] = ACTIONS(5),
- [anon_sym_BQUOTE] = ACTIONS(1516),
- [sym_number] = ACTIONS(1518),
- [sym_this] = ACTIONS(3053),
- [sym_true] = ACTIONS(1522),
- [sym_false] = ACTIONS(1522),
- [sym_null] = ACTIONS(1522),
- [sym_undefined] = ACTIONS(1522),
- [anon_sym_readonly] = ACTIONS(3055),
- [anon_sym_QMARK] = ACTIONS(3057),
- [anon_sym_any] = ACTIONS(220),
- [anon_sym_number] = ACTIONS(220),
- [anon_sym_boolean] = ACTIONS(220),
- [anon_sym_string] = ACTIONS(220),
- [anon_sym_symbol] = ACTIONS(220),
- [anon_sym_object] = ACTIONS(220),
- [anon_sym_abstract] = ACTIONS(3059),
- [anon_sym_asserts] = ACTIONS(3061),
- [anon_sym_infer] = ACTIONS(3063),
- [anon_sym_keyof] = ACTIONS(3065),
- [anon_sym_unique] = ACTIONS(218),
- [anon_sym_unknown] = ACTIONS(220),
- [anon_sym_never] = ACTIONS(220),
- [anon_sym_LBRACE_PIPE] = ACTIONS(3067),
- [sym_html_comment] = ACTIONS(5),
- },
- [905] = {
- [sym_import] = STATE(4753),
- [sym_nested_identifier] = STATE(5707),
- [sym_string] = STATE(2889),
- [sym_formal_parameters] = STATE(5626),
- [sym_nested_type_identifier] = STATE(2828),
- [sym__type_query_member_expression_in_type_annotation] = STATE(3228),
- [sym__type_query_call_expression_in_type_annotation] = STATE(2850),
- [sym_asserts] = STATE(2874),
- [sym_type] = STATE(3623),
- [sym_constructor_type] = STATE(2896),
- [sym_primary_type] = STATE(2897),
- [sym_template_literal_type] = STATE(2885),
- [sym_infer_type] = STATE(2896),
- [sym_conditional_type] = STATE(2885),
- [sym_generic_type] = STATE(2885),
- [sym_type_predicate] = STATE(2874),
- [sym_type_query] = STATE(2885),
- [sym_index_type_query] = STATE(2885),
- [sym_lookup_type] = STATE(2885),
- [sym_literal_type] = STATE(2885),
- [sym__number] = STATE(2903),
- [sym_existential_type] = STATE(2885),
- [sym_flow_maybe_type] = STATE(2885),
- [sym_parenthesized_type] = STATE(2885),
- [sym_predefined_type] = STATE(3472),
- [sym_object_type] = STATE(2885),
- [sym_type_parameters] = STATE(5517),
- [sym_array_type] = STATE(2885),
- [sym_tuple_type] = STATE(2885),
- [sym_readonly_type] = STATE(2896),
- [sym_union_type] = STATE(2885),
- [sym_intersection_type] = STATE(2885),
- [sym_function_type] = STATE(2896),
- [sym_identifier] = ACTIONS(3117),
- [anon_sym_STAR] = ACTIONS(612),
- [anon_sym_LBRACE] = ACTIONS(1498),
- [anon_sym_typeof] = ACTIONS(1500),
- [anon_sym_import] = ACTIONS(133),
- [anon_sym_const] = ACTIONS(135),
- [anon_sym_LPAREN] = ACTIONS(1502),
- [anon_sym_LBRACK] = ACTIONS(1504),
- [anon_sym_DQUOTE] = ACTIONS(1506),
- [anon_sym_SQUOTE] = ACTIONS(1508),
- [anon_sym_new] = ACTIONS(1572),
- [anon_sym_AMP] = ACTIONS(640),
- [anon_sym_PIPE] = ACTIONS(642),
- [anon_sym_PLUS] = ACTIONS(2579),
- [anon_sym_DASH] = ACTIONS(2579),
- [anon_sym_LT] = ACTIONS(2581),
- [anon_sym_void] = ACTIONS(220),
- [sym_comment] = ACTIONS(5),
- [anon_sym_BQUOTE] = ACTIONS(1516),
- [sym_number] = ACTIONS(1518),
- [sym_this] = ACTIONS(3119),
- [sym_true] = ACTIONS(1522),
- [sym_false] = ACTIONS(1522),
- [sym_null] = ACTIONS(1522),
- [sym_undefined] = ACTIONS(1522),
- [anon_sym_readonly] = ACTIONS(1578),
- [anon_sym_QMARK] = ACTIONS(662),
- [anon_sym_any] = ACTIONS(220),
- [anon_sym_number] = ACTIONS(220),
- [anon_sym_boolean] = ACTIONS(220),
- [anon_sym_string] = ACTIONS(220),
- [anon_sym_symbol] = ACTIONS(220),
- [anon_sym_object] = ACTIONS(220),
- [anon_sym_abstract] = ACTIONS(666),
- [anon_sym_asserts] = ACTIONS(3121),
- [anon_sym_infer] = ACTIONS(668),
- [anon_sym_keyof] = ACTIONS(670),
- [anon_sym_unique] = ACTIONS(218),
- [anon_sym_unknown] = ACTIONS(220),
- [anon_sym_never] = ACTIONS(220),
- [anon_sym_LBRACE_PIPE] = ACTIONS(222),
- [sym_html_comment] = ACTIONS(5),
- },
- [906] = {
- [sym_import] = STATE(4753),
- [sym_nested_identifier] = STATE(5707),
- [sym_string] = STATE(2889),
- [sym_formal_parameters] = STATE(5626),
- [sym_nested_type_identifier] = STATE(2828),
- [sym__type_query_member_expression_in_type_annotation] = STATE(3228),
- [sym__type_query_call_expression_in_type_annotation] = STATE(2850),
- [sym_asserts] = STATE(2926),
- [sym_type] = STATE(3651),
- [sym_constructor_type] = STATE(2896),
- [sym_primary_type] = STATE(2897),
- [sym_template_literal_type] = STATE(2885),
- [sym_infer_type] = STATE(2896),
- [sym_conditional_type] = STATE(2885),
- [sym_generic_type] = STATE(2885),
- [sym_type_predicate] = STATE(2926),
- [sym_type_query] = STATE(2885),
- [sym_index_type_query] = STATE(2885),
- [sym_lookup_type] = STATE(2885),
- [sym_literal_type] = STATE(2885),
- [sym__number] = STATE(2903),
- [sym_existential_type] = STATE(2885),
- [sym_flow_maybe_type] = STATE(2885),
- [sym_parenthesized_type] = STATE(2885),
- [sym_predefined_type] = STATE(3472),
- [sym_object_type] = STATE(2885),
- [sym_type_parameters] = STATE(5517),
- [sym_array_type] = STATE(2885),
- [sym_tuple_type] = STATE(2885),
- [sym_readonly_type] = STATE(2896),
- [sym_union_type] = STATE(2885),
- [sym_intersection_type] = STATE(2885),
- [sym_function_type] = STATE(2896),
- [sym_identifier] = ACTIONS(3117),
- [anon_sym_STAR] = ACTIONS(612),
- [anon_sym_LBRACE] = ACTIONS(1498),
- [anon_sym_typeof] = ACTIONS(1500),
- [anon_sym_import] = ACTIONS(133),
- [anon_sym_const] = ACTIONS(135),
- [anon_sym_LPAREN] = ACTIONS(1502),
- [anon_sym_LBRACK] = ACTIONS(1504),
- [anon_sym_DQUOTE] = ACTIONS(1506),
- [anon_sym_SQUOTE] = ACTIONS(1508),
- [anon_sym_new] = ACTIONS(1572),
- [anon_sym_AMP] = ACTIONS(640),
- [anon_sym_PIPE] = ACTIONS(642),
- [anon_sym_PLUS] = ACTIONS(2579),
- [anon_sym_DASH] = ACTIONS(2579),
- [anon_sym_LT] = ACTIONS(2581),
- [anon_sym_void] = ACTIONS(220),
- [sym_comment] = ACTIONS(5),
- [anon_sym_BQUOTE] = ACTIONS(1516),
- [sym_number] = ACTIONS(1518),
- [sym_this] = ACTIONS(3119),
- [sym_true] = ACTIONS(1522),
- [sym_false] = ACTIONS(1522),
- [sym_null] = ACTIONS(1522),
- [sym_undefined] = ACTIONS(1522),
- [anon_sym_readonly] = ACTIONS(1578),
- [anon_sym_QMARK] = ACTIONS(662),
- [anon_sym_any] = ACTIONS(220),
- [anon_sym_number] = ACTIONS(220),
- [anon_sym_boolean] = ACTIONS(220),
- [anon_sym_string] = ACTIONS(220),
- [anon_sym_symbol] = ACTIONS(220),
- [anon_sym_object] = ACTIONS(220),
- [anon_sym_abstract] = ACTIONS(666),
- [anon_sym_asserts] = ACTIONS(3121),
- [anon_sym_infer] = ACTIONS(668),
- [anon_sym_keyof] = ACTIONS(670),
- [anon_sym_unique] = ACTIONS(218),
- [anon_sym_unknown] = ACTIONS(220),
- [anon_sym_never] = ACTIONS(220),
- [anon_sym_LBRACE_PIPE] = ACTIONS(222),
- [sym_html_comment] = ACTIONS(5),
- },
- [907] = {
- [sym_import] = STATE(5139),
- [sym_nested_identifier] = STATE(5610),
- [sym_string] = STATE(3160),
- [sym_formal_parameters] = STATE(5827),
- [sym_nested_type_identifier] = STATE(3047),
- [sym__type_query_member_expression_in_type_annotation] = STATE(2958),
- [sym__type_query_call_expression_in_type_annotation] = STATE(3113),
- [sym_asserts] = STATE(3896),
- [sym_type] = STATE(3226),
- [sym_constructor_type] = STATE(3205),
- [sym_primary_type] = STATE(3150),
- [sym_template_literal_type] = STATE(3195),
- [sym_infer_type] = STATE(3205),
- [sym_conditional_type] = STATE(3195),
- [sym_generic_type] = STATE(3195),
- [sym_type_predicate] = STATE(3900),
- [sym_type_query] = STATE(3195),
- [sym_index_type_query] = STATE(3195),
- [sym_lookup_type] = STATE(3195),
- [sym_literal_type] = STATE(3195),
- [sym__number] = STATE(3154),
- [sym_existential_type] = STATE(3195),
- [sym_flow_maybe_type] = STATE(3195),
- [sym_parenthesized_type] = STATE(3195),
- [sym_predefined_type] = STATE(3112),
- [sym_object_type] = STATE(3195),
- [sym_type_parameters] = STATE(5228),
- [sym_array_type] = STATE(3195),
- [sym_tuple_type] = STATE(3195),
- [sym_readonly_type] = STATE(3205),
- [sym_union_type] = STATE(3195),
- [sym_intersection_type] = STATE(3195),
- [sym_function_type] = STATE(3205),
- [sym_identifier] = ACTIONS(2975),
- [anon_sym_STAR] = ACTIONS(992),
- [anon_sym_LBRACE] = ACTIONS(1586),
- [anon_sym_typeof] = ACTIONS(1588),
- [anon_sym_import] = ACTIONS(133),
- [anon_sym_const] = ACTIONS(998),
- [anon_sym_LPAREN] = ACTIONS(1590),
- [anon_sym_LBRACK] = ACTIONS(1592),
- [anon_sym_DQUOTE] = ACTIONS(1594),
- [anon_sym_SQUOTE] = ACTIONS(1596),
- [anon_sym_new] = ACTIONS(1598),
- [anon_sym_AMP] = ACTIONS(1006),
- [anon_sym_PIPE] = ACTIONS(1008),
- [anon_sym_PLUS] = ACTIONS(2977),
- [anon_sym_DASH] = ACTIONS(2977),
- [anon_sym_LT] = ACTIONS(2581),
- [anon_sym_void] = ACTIONS(1038),
- [sym_comment] = ACTIONS(5),
- [anon_sym_BQUOTE] = ACTIONS(1606),
- [sym_number] = ACTIONS(1608),
- [sym_this] = ACTIONS(2979),
- [sym_true] = ACTIONS(1612),
- [sym_false] = ACTIONS(1612),
- [sym_null] = ACTIONS(1612),
- [sym_undefined] = ACTIONS(1612),
- [anon_sym_readonly] = ACTIONS(1614),
- [anon_sym_QMARK] = ACTIONS(1026),
- [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_object] = ACTIONS(1038),
- [anon_sym_abstract] = ACTIONS(1030),
- [anon_sym_asserts] = ACTIONS(2981),
- [anon_sym_infer] = ACTIONS(1032),
- [anon_sym_keyof] = ACTIONS(1034),
- [anon_sym_unique] = ACTIONS(1036),
- [anon_sym_unknown] = ACTIONS(1038),
- [anon_sym_never] = ACTIONS(1038),
- [anon_sym_LBRACE_PIPE] = ACTIONS(1040),
- [sym_html_comment] = ACTIONS(5),
- },
- [908] = {
- [sym_import] = STATE(5087),
- [sym_nested_identifier] = STATE(5707),
- [sym_string] = STATE(2889),
- [sym_formal_parameters] = STATE(5709),
- [sym_nested_type_identifier] = STATE(2828),
- [sym__type_query_member_expression_in_type_annotation] = STATE(2846),
- [sym__type_query_call_expression_in_type_annotation] = STATE(2850),
- [sym_asserts] = STATE(2874),
- [sym_type] = STATE(3006),
- [sym_constructor_type] = STATE(2896),
- [sym_primary_type] = STATE(2897),
- [sym_template_literal_type] = STATE(2885),
- [sym_infer_type] = STATE(2896),
- [sym_conditional_type] = STATE(2885),
- [sym_generic_type] = STATE(2885),
- [sym_type_predicate] = STATE(2874),
- [sym_type_query] = STATE(2885),
- [sym_index_type_query] = STATE(2885),
- [sym_lookup_type] = STATE(2885),
- [sym_literal_type] = STATE(2885),
- [sym__number] = STATE(2903),
- [sym_existential_type] = STATE(2885),
- [sym_flow_maybe_type] = STATE(2885),
- [sym_parenthesized_type] = STATE(2885),
- [sym_predefined_type] = STATE(2995),
- [sym_object_type] = STATE(2885),
- [sym_type_parameters] = STATE(5435),
- [sym_array_type] = STATE(2885),
- [sym_tuple_type] = STATE(2885),
- [sym_readonly_type] = STATE(2896),
- [sym_union_type] = STATE(2885),
- [sym_intersection_type] = STATE(2885),
- [sym_function_type] = STATE(2896),
- [sym_identifier] = ACTIONS(3035),
- [anon_sym_STAR] = ACTIONS(612),
- [anon_sym_LBRACE] = ACTIONS(1498),
- [anon_sym_typeof] = ACTIONS(1500),
- [anon_sym_import] = ACTIONS(133),
- [anon_sym_const] = ACTIONS(135),
- [anon_sym_LPAREN] = ACTIONS(1502),
- [anon_sym_LBRACK] = ACTIONS(1504),
- [anon_sym_DQUOTE] = ACTIONS(1506),
- [anon_sym_SQUOTE] = ACTIONS(1508),
- [anon_sym_new] = ACTIONS(1510),
- [anon_sym_AMP] = ACTIONS(741),
- [anon_sym_PIPE] = ACTIONS(743),
- [anon_sym_PLUS] = ACTIONS(2579),
- [anon_sym_DASH] = ACTIONS(2579),
- [anon_sym_LT] = ACTIONS(2581),
- [anon_sym_void] = ACTIONS(220),
- [sym_comment] = ACTIONS(5),
- [anon_sym_BQUOTE] = ACTIONS(1516),
- [sym_number] = ACTIONS(1518),
- [sym_this] = ACTIONS(3037),
- [sym_true] = ACTIONS(1522),
- [sym_false] = ACTIONS(1522),
- [sym_null] = ACTIONS(1522),
- [sym_undefined] = ACTIONS(1522),
- [anon_sym_readonly] = ACTIONS(1524),
- [anon_sym_QMARK] = ACTIONS(761),
- [anon_sym_any] = ACTIONS(220),
- [anon_sym_number] = ACTIONS(220),
- [anon_sym_boolean] = ACTIONS(220),
- [anon_sym_string] = ACTIONS(220),
- [anon_sym_symbol] = ACTIONS(220),
- [anon_sym_object] = ACTIONS(220),
- [anon_sym_abstract] = ACTIONS(212),
- [anon_sym_asserts] = ACTIONS(3039),
- [anon_sym_infer] = ACTIONS(214),
- [anon_sym_keyof] = ACTIONS(216),
- [anon_sym_unique] = ACTIONS(218),
- [anon_sym_unknown] = ACTIONS(220),
- [anon_sym_never] = ACTIONS(220),
- [anon_sym_LBRACE_PIPE] = ACTIONS(222),
- [sym_html_comment] = ACTIONS(5),
- },
- [909] = {
- [sym_import] = STATE(4618),
- [sym_nested_identifier] = STATE(5906),
- [sym_string] = STATE(1947),
- [sym_formal_parameters] = STATE(5651),
- [sym_nested_type_identifier] = STATE(1799),
- [sym__type_query_member_expression_in_type_annotation] = STATE(1800),
- [sym__type_query_call_expression_in_type_annotation] = STATE(1928),
- [sym_asserts] = STATE(2096),
- [sym_type] = STATE(2097),
- [sym_constructor_type] = STATE(1929),
- [sym_primary_type] = STATE(1931),
- [sym_template_literal_type] = STATE(1936),
- [sym_infer_type] = STATE(1929),
- [sym_conditional_type] = STATE(1936),
- [sym_generic_type] = STATE(1936),
- [sym_type_predicate] = STATE(2096),
- [sym_type_query] = STATE(1936),
- [sym_index_type_query] = STATE(1936),
- [sym_lookup_type] = STATE(1936),
- [sym_literal_type] = STATE(1936),
- [sym__number] = STATE(1932),
- [sym_existential_type] = STATE(1936),
- [sym_flow_maybe_type] = STATE(1936),
- [sym_parenthesized_type] = STATE(1936),
- [sym_predefined_type] = STATE(1811),
- [sym_object_type] = STATE(1936),
- [sym_type_parameters] = STATE(5347),
- [sym_array_type] = STATE(1936),
- [sym_tuple_type] = STATE(1936),
- [sym_readonly_type] = STATE(1929),
- [sym_union_type] = STATE(1936),
- [sym_intersection_type] = STATE(1936),
- [sym_function_type] = STATE(1929),
- [sym_identifier] = ACTIONS(2927),
- [anon_sym_STAR] = ACTIONS(2929),
- [anon_sym_LBRACE] = ACTIONS(2931),
- [anon_sym_typeof] = ACTIONS(2933),
- [anon_sym_import] = ACTIONS(133),
- [anon_sym_const] = ACTIONS(2935),
- [anon_sym_LPAREN] = ACTIONS(2937),
- [anon_sym_LBRACK] = ACTIONS(2939),
- [anon_sym_DQUOTE] = ACTIONS(69),
- [anon_sym_SQUOTE] = ACTIONS(71),
- [anon_sym_new] = ACTIONS(2941),
- [anon_sym_AMP] = ACTIONS(2943),
- [anon_sym_PIPE] = ACTIONS(2945),
- [anon_sym_PLUS] = ACTIONS(2947),
- [anon_sym_DASH] = ACTIONS(2947),
- [anon_sym_LT] = ACTIONS(2581),
- [anon_sym_void] = ACTIONS(2949),
- [sym_comment] = ACTIONS(5),
- [anon_sym_BQUOTE] = ACTIONS(2951),
- [sym_number] = ACTIONS(2953),
- [sym_this] = ACTIONS(2955),
- [sym_true] = ACTIONS(2957),
- [sym_false] = ACTIONS(2957),
- [sym_null] = ACTIONS(2957),
- [sym_undefined] = ACTIONS(2957),
- [anon_sym_readonly] = ACTIONS(2959),
- [anon_sym_QMARK] = ACTIONS(2961),
- [anon_sym_any] = ACTIONS(2949),
- [anon_sym_number] = ACTIONS(2949),
- [anon_sym_boolean] = ACTIONS(2949),
- [anon_sym_string] = ACTIONS(2949),
- [anon_sym_symbol] = ACTIONS(2949),
- [anon_sym_object] = ACTIONS(2949),
- [anon_sym_abstract] = ACTIONS(2963),
- [anon_sym_asserts] = ACTIONS(2965),
- [anon_sym_infer] = ACTIONS(2967),
- [anon_sym_keyof] = ACTIONS(2969),
- [anon_sym_unique] = ACTIONS(2971),
- [anon_sym_unknown] = ACTIONS(2949),
- [anon_sym_never] = ACTIONS(2949),
- [anon_sym_LBRACE_PIPE] = ACTIONS(2973),
- [sym_html_comment] = ACTIONS(5),
- },
- [910] = {
- [sym_import] = STATE(4606),
- [sym_nested_identifier] = STATE(5653),
- [sym_string] = STATE(1545),
- [sym_formal_parameters] = STATE(5840),
- [sym_nested_type_identifier] = STATE(1441),
- [sym__type_query_member_expression_in_type_annotation] = STATE(1440),
- [sym__type_query_call_expression_in_type_annotation] = STATE(1555),
- [sym_asserts] = STATE(1491),
- [sym_type] = STATE(1492),
- [sym_constructor_type] = STATE(1556),
- [sym_primary_type] = STATE(1565),
- [sym_template_literal_type] = STATE(1540),
- [sym_infer_type] = STATE(1556),
- [sym_conditional_type] = STATE(1540),
- [sym_generic_type] = STATE(1540),
- [sym_type_predicate] = STATE(1491),
- [sym_type_query] = STATE(1540),
- [sym_index_type_query] = STATE(1540),
- [sym_lookup_type] = STATE(1540),
- [sym_literal_type] = STATE(1540),
- [sym__number] = STATE(1566),
- [sym_existential_type] = STATE(1540),
- [sym_flow_maybe_type] = STATE(1540),
- [sym_parenthesized_type] = STATE(1540),
- [sym_predefined_type] = STATE(1450),
- [sym_object_type] = STATE(1540),
- [sym_type_parameters] = STATE(5295),
- [sym_array_type] = STATE(1540),
- [sym_tuple_type] = STATE(1540),
- [sym_readonly_type] = STATE(1556),
- [sym_union_type] = STATE(1540),
- [sym_intersection_type] = STATE(1540),
- [sym_function_type] = STATE(1556),
- [sym_identifier] = ACTIONS(3069),
- [anon_sym_STAR] = ACTIONS(3071),
- [anon_sym_LBRACE] = ACTIONS(3073),
- [anon_sym_typeof] = ACTIONS(3075),
- [anon_sym_import] = ACTIONS(133),
- [anon_sym_const] = ACTIONS(3077),
- [anon_sym_LPAREN] = ACTIONS(3079),
- [anon_sym_LBRACK] = ACTIONS(3081),
- [anon_sym_DQUOTE] = ACTIONS(150),
- [anon_sym_SQUOTE] = ACTIONS(152),
- [anon_sym_new] = ACTIONS(3083),
- [anon_sym_AMP] = ACTIONS(3085),
- [anon_sym_PIPE] = ACTIONS(3087),
- [anon_sym_PLUS] = ACTIONS(3089),
- [anon_sym_DASH] = ACTIONS(3089),
- [anon_sym_LT] = ACTIONS(2581),
- [anon_sym_void] = ACTIONS(3091),
- [sym_comment] = ACTIONS(5),
- [anon_sym_BQUOTE] = ACTIONS(3093),
- [sym_number] = ACTIONS(3095),
- [sym_this] = ACTIONS(3097),
- [sym_true] = ACTIONS(3099),
- [sym_false] = ACTIONS(3099),
- [sym_null] = ACTIONS(3099),
- [sym_undefined] = ACTIONS(3099),
- [anon_sym_readonly] = ACTIONS(3101),
- [anon_sym_QMARK] = ACTIONS(3103),
- [anon_sym_any] = ACTIONS(3091),
- [anon_sym_number] = ACTIONS(3091),
- [anon_sym_boolean] = ACTIONS(3091),
- [anon_sym_string] = ACTIONS(3091),
- [anon_sym_symbol] = ACTIONS(3091),
- [anon_sym_object] = ACTIONS(3091),
- [anon_sym_abstract] = ACTIONS(3105),
- [anon_sym_asserts] = ACTIONS(3107),
- [anon_sym_infer] = ACTIONS(3109),
- [anon_sym_keyof] = ACTIONS(3111),
- [anon_sym_unique] = ACTIONS(3113),
- [anon_sym_unknown] = ACTIONS(3091),
- [anon_sym_never] = ACTIONS(3091),
- [anon_sym_LBRACE_PIPE] = ACTIONS(3115),
- [sym_html_comment] = ACTIONS(5),
- },
- [911] = {
- [sym_identifier] = ACTIONS(3123),
- [anon_sym_export] = ACTIONS(3123),
- [anon_sym_type] = ACTIONS(3123),
- [anon_sym_EQ] = ACTIONS(3123),
- [anon_sym_namespace] = ACTIONS(3123),
- [anon_sym_LBRACE] = ACTIONS(3125),
- [anon_sym_COMMA] = ACTIONS(3125),
- [anon_sym_RBRACE] = ACTIONS(3125),
- [anon_sym_typeof] = ACTIONS(3123),
- [anon_sym_import] = ACTIONS(3123),
- [anon_sym_let] = ACTIONS(3123),
- [anon_sym_BANG] = ACTIONS(3125),
- [anon_sym_LPAREN] = ACTIONS(3125),
- [anon_sym_RPAREN] = ACTIONS(3125),
- [anon_sym_await] = ACTIONS(3123),
- [anon_sym_COLON] = ACTIONS(3125),
- [anon_sym_yield] = ACTIONS(3123),
- [anon_sym_LBRACK] = ACTIONS(3125),
- [anon_sym_RBRACK] = ACTIONS(3125),
- [sym_glimmer_opening_tag] = ACTIONS(3125),
- [anon_sym_GT] = ACTIONS(3125),
- [anon_sym_DOT] = ACTIONS(3123),
- [anon_sym_DQUOTE] = ACTIONS(3125),
- [anon_sym_SQUOTE] = ACTIONS(3125),
- [anon_sym_class] = ACTIONS(3123),
- [anon_sym_async] = ACTIONS(3123),
- [anon_sym_function] = ACTIONS(3123),
- [anon_sym_EQ_GT] = ACTIONS(3125),
- [anon_sym_QMARK_DOT] = ACTIONS(3125),
- [anon_sym_new] = ACTIONS(3123),
- [anon_sym_using] = ACTIONS(3123),
- [anon_sym_DOT_DOT_DOT] = ACTIONS(3125),
- [anon_sym_AMP] = ACTIONS(3125),
- [anon_sym_PIPE] = ACTIONS(3125),
- [anon_sym_PLUS] = ACTIONS(3123),
- [anon_sym_DASH] = ACTIONS(3123),
- [anon_sym_SLASH] = ACTIONS(3123),
- [anon_sym_LT] = ACTIONS(3123),
- [anon_sym_TILDE] = ACTIONS(3125),
- [anon_sym_void] = ACTIONS(3123),
- [anon_sym_delete] = ACTIONS(3123),
- [anon_sym_PLUS_PLUS] = ACTIONS(3125),
- [anon_sym_DASH_DASH] = ACTIONS(3125),
- [sym_comment] = ACTIONS(5),
- [anon_sym_BQUOTE] = ACTIONS(3125),
- [sym_number] = ACTIONS(3125),
- [sym_private_property_identifier] = ACTIONS(3125),
- [sym_this] = ACTIONS(3123),
- [sym_super] = ACTIONS(3123),
- [sym_true] = ACTIONS(3123),
- [sym_false] = ACTIONS(3123),
- [sym_null] = ACTIONS(3123),
- [sym_undefined] = ACTIONS(3123),
- [anon_sym_AT] = ACTIONS(3125),
- [anon_sym_static] = ACTIONS(3123),
- [anon_sym_readonly] = ACTIONS(3123),
- [anon_sym_get] = ACTIONS(3123),
- [anon_sym_set] = ACTIONS(3123),
- [anon_sym_QMARK] = ACTIONS(3123),
- [anon_sym_declare] = ACTIONS(3123),
- [anon_sym_public] = ACTIONS(3123),
- [anon_sym_private] = ACTIONS(3123),
- [anon_sym_protected] = ACTIONS(3123),
- [anon_sym_override] = ACTIONS(3123),
- [anon_sym_module] = ACTIONS(3123),
- [anon_sym_any] = ACTIONS(3123),
- [anon_sym_number] = ACTIONS(3123),
- [anon_sym_boolean] = ACTIONS(3123),
- [anon_sym_string] = ACTIONS(3123),
- [anon_sym_symbol] = ACTIONS(3123),
- [anon_sym_object] = ACTIONS(3123),
- [anon_sym_abstract] = ACTIONS(3123),
- [anon_sym_extends] = ACTIONS(3123),
- [sym_html_comment] = ACTIONS(5),
- },
- [912] = {
- [sym_identifier] = ACTIONS(3127),
- [anon_sym_export] = ACTIONS(3127),
- [anon_sym_type] = ACTIONS(3127),
- [anon_sym_EQ] = ACTIONS(3127),
- [anon_sym_namespace] = ACTIONS(3127),
- [anon_sym_LBRACE] = ACTIONS(3129),
- [anon_sym_COMMA] = ACTIONS(3129),
- [anon_sym_RBRACE] = ACTIONS(3129),
- [anon_sym_typeof] = ACTIONS(3127),
- [anon_sym_import] = ACTIONS(3127),
- [anon_sym_let] = ACTIONS(3127),
- [anon_sym_BANG] = ACTIONS(3129),
- [anon_sym_LPAREN] = ACTIONS(3129),
- [anon_sym_RPAREN] = ACTIONS(3129),
- [anon_sym_await] = ACTIONS(3127),
- [anon_sym_COLON] = ACTIONS(3129),
- [anon_sym_yield] = ACTIONS(3127),
- [anon_sym_LBRACK] = ACTIONS(3129),
- [anon_sym_RBRACK] = ACTIONS(3129),
- [sym_glimmer_opening_tag] = ACTIONS(3129),
- [anon_sym_GT] = ACTIONS(3129),
- [anon_sym_DOT] = ACTIONS(3127),
- [anon_sym_DQUOTE] = ACTIONS(3129),
- [anon_sym_SQUOTE] = ACTIONS(3129),
- [anon_sym_class] = ACTIONS(3127),
- [anon_sym_async] = ACTIONS(3127),
- [anon_sym_function] = ACTIONS(3127),
- [anon_sym_EQ_GT] = ACTIONS(3129),
- [anon_sym_QMARK_DOT] = ACTIONS(3129),
- [anon_sym_new] = ACTIONS(3127),
- [anon_sym_using] = ACTIONS(3127),
- [anon_sym_DOT_DOT_DOT] = ACTIONS(3129),
- [anon_sym_AMP] = ACTIONS(3129),
- [anon_sym_PIPE] = ACTIONS(3129),
- [anon_sym_PLUS] = ACTIONS(3127),
- [anon_sym_DASH] = ACTIONS(3127),
- [anon_sym_SLASH] = ACTIONS(3127),
- [anon_sym_LT] = ACTIONS(3127),
- [anon_sym_TILDE] = ACTIONS(3129),
- [anon_sym_void] = ACTIONS(3127),
- [anon_sym_delete] = ACTIONS(3127),
- [anon_sym_PLUS_PLUS] = ACTIONS(3129),
- [anon_sym_DASH_DASH] = ACTIONS(3129),
- [sym_comment] = ACTIONS(5),
- [anon_sym_BQUOTE] = ACTIONS(3129),
- [sym_number] = ACTIONS(3129),
- [sym_private_property_identifier] = ACTIONS(3129),
- [sym_this] = ACTIONS(3127),
- [sym_super] = ACTIONS(3127),
- [sym_true] = ACTIONS(3127),
- [sym_false] = ACTIONS(3127),
- [sym_null] = ACTIONS(3127),
- [sym_undefined] = ACTIONS(3127),
- [anon_sym_AT] = ACTIONS(3129),
- [anon_sym_static] = ACTIONS(3127),
- [anon_sym_readonly] = ACTIONS(3127),
- [anon_sym_get] = ACTIONS(3127),
- [anon_sym_set] = ACTIONS(3127),
- [anon_sym_QMARK] = ACTIONS(3127),
- [anon_sym_declare] = ACTIONS(3127),
- [anon_sym_public] = ACTIONS(3127),
- [anon_sym_private] = ACTIONS(3127),
- [anon_sym_protected] = ACTIONS(3127),
- [anon_sym_override] = ACTIONS(3127),
- [anon_sym_module] = ACTIONS(3127),
- [anon_sym_any] = ACTIONS(3127),
- [anon_sym_number] = ACTIONS(3127),
- [anon_sym_boolean] = ACTIONS(3127),
- [anon_sym_string] = ACTIONS(3127),
- [anon_sym_symbol] = ACTIONS(3127),
- [anon_sym_object] = ACTIONS(3127),
- [anon_sym_abstract] = ACTIONS(3127),
- [anon_sym_extends] = ACTIONS(3127),
- [sym_html_comment] = ACTIONS(5),
- },
- [913] = {
- [sym_identifier] = ACTIONS(3131),
- [anon_sym_export] = ACTIONS(3131),
- [anon_sym_type] = ACTIONS(3131),
- [anon_sym_EQ] = ACTIONS(3131),
- [anon_sym_namespace] = ACTIONS(3131),
- [anon_sym_LBRACE] = ACTIONS(3133),
- [anon_sym_COMMA] = ACTIONS(3133),
- [anon_sym_RBRACE] = ACTIONS(3133),
- [anon_sym_typeof] = ACTIONS(3131),
- [anon_sym_import] = ACTIONS(3131),
- [anon_sym_let] = ACTIONS(3131),
- [anon_sym_BANG] = ACTIONS(3133),
- [anon_sym_LPAREN] = ACTIONS(3133),
- [anon_sym_RPAREN] = ACTIONS(3133),
- [anon_sym_await] = ACTIONS(3131),
- [anon_sym_COLON] = ACTIONS(3133),
- [anon_sym_yield] = ACTIONS(3131),
- [anon_sym_LBRACK] = ACTIONS(3133),
- [anon_sym_RBRACK] = ACTIONS(3133),
- [sym_glimmer_opening_tag] = ACTIONS(3133),
- [anon_sym_GT] = ACTIONS(3133),
- [anon_sym_DOT] = ACTIONS(3131),
- [anon_sym_DQUOTE] = ACTIONS(3133),
- [anon_sym_SQUOTE] = ACTIONS(3133),
- [anon_sym_class] = ACTIONS(3131),
- [anon_sym_async] = ACTIONS(3131),
- [anon_sym_function] = ACTIONS(3131),
- [anon_sym_EQ_GT] = ACTIONS(3133),
- [anon_sym_QMARK_DOT] = ACTIONS(3133),
- [anon_sym_new] = ACTIONS(3131),
- [anon_sym_using] = ACTIONS(3131),
- [anon_sym_DOT_DOT_DOT] = ACTIONS(3133),
- [anon_sym_AMP] = ACTIONS(3133),
- [anon_sym_PIPE] = ACTIONS(3133),
- [anon_sym_PLUS] = ACTIONS(3131),
- [anon_sym_DASH] = ACTIONS(3131),
- [anon_sym_SLASH] = ACTIONS(3131),
- [anon_sym_LT] = ACTIONS(3131),
- [anon_sym_TILDE] = ACTIONS(3133),
- [anon_sym_void] = ACTIONS(3131),
- [anon_sym_delete] = ACTIONS(3131),
- [anon_sym_PLUS_PLUS] = ACTIONS(3133),
- [anon_sym_DASH_DASH] = ACTIONS(3133),
- [sym_comment] = ACTIONS(5),
- [anon_sym_BQUOTE] = ACTIONS(3133),
- [sym_number] = ACTIONS(3133),
- [sym_private_property_identifier] = ACTIONS(3133),
- [sym_this] = ACTIONS(3131),
- [sym_super] = ACTIONS(3131),
- [sym_true] = ACTIONS(3131),
- [sym_false] = ACTIONS(3131),
- [sym_null] = ACTIONS(3131),
- [sym_undefined] = ACTIONS(3131),
- [anon_sym_AT] = ACTIONS(3133),
- [anon_sym_static] = ACTIONS(3131),
- [anon_sym_readonly] = ACTIONS(3131),
- [anon_sym_get] = ACTIONS(3131),
- [anon_sym_set] = ACTIONS(3131),
- [anon_sym_QMARK] = ACTIONS(3131),
- [anon_sym_declare] = ACTIONS(3131),
- [anon_sym_public] = ACTIONS(3131),
- [anon_sym_private] = ACTIONS(3131),
- [anon_sym_protected] = ACTIONS(3131),
- [anon_sym_override] = ACTIONS(3131),
- [anon_sym_module] = ACTIONS(3131),
- [anon_sym_any] = ACTIONS(3131),
- [anon_sym_number] = ACTIONS(3131),
- [anon_sym_boolean] = ACTIONS(3131),
- [anon_sym_string] = ACTIONS(3131),
- [anon_sym_symbol] = ACTIONS(3131),
- [anon_sym_object] = ACTIONS(3131),
- [anon_sym_abstract] = ACTIONS(3131),
- [anon_sym_extends] = ACTIONS(3131),
- [sym_html_comment] = ACTIONS(5),
- },
- [914] = {
- [sym_import] = STATE(5087),
- [sym_nested_identifier] = STATE(5707),
- [sym_string] = STATE(2889),
- [sym_formal_parameters] = STATE(5709),
- [sym_nested_type_identifier] = STATE(2828),
- [sym__type_query_member_expression_in_type_annotation] = STATE(2846),
- [sym__type_query_call_expression_in_type_annotation] = STATE(2850),
- [sym_type] = STATE(3750),
- [sym_constructor_type] = STATE(2896),
- [sym_primary_type] = STATE(2897),
- [sym_template_literal_type] = STATE(2885),
- [sym_infer_type] = STATE(2896),
- [sym_conditional_type] = STATE(2885),
- [sym_generic_type] = STATE(2885),
- [sym_type_query] = STATE(2885),
- [sym_index_type_query] = STATE(2885),
- [sym_lookup_type] = STATE(2885),
- [sym_literal_type] = STATE(2885),
- [sym__number] = STATE(2903),
- [sym_existential_type] = STATE(2885),
- [sym_flow_maybe_type] = STATE(2885),
- [sym_parenthesized_type] = STATE(2885),
- [sym_predefined_type] = STATE(2885),
- [sym_object_type] = STATE(2885),
- [sym_type_parameters] = STATE(5435),
- [sym_array_type] = STATE(2885),
- [sym_tuple_type] = STATE(2885),
- [sym_readonly_type] = STATE(2896),
- [sym_union_type] = STATE(2885),
- [sym_intersection_type] = STATE(2885),
- [sym_function_type] = STATE(2896),
- [sym_identifier] = ACTIONS(1496),
- [anon_sym_STAR] = ACTIONS(612),
- [anon_sym_LBRACE] = ACTIONS(1498),
- [anon_sym_typeof] = ACTIONS(1500),
- [anon_sym_import] = ACTIONS(133),
- [anon_sym_const] = ACTIONS(135),
- [anon_sym_LPAREN] = ACTIONS(1502),
- [anon_sym_LBRACK] = ACTIONS(1504),
- [anon_sym_GT] = ACTIONS(3135),
- [anon_sym_DQUOTE] = ACTIONS(1506),
- [anon_sym_SQUOTE] = ACTIONS(1508),
- [anon_sym_new] = ACTIONS(1510),
- [anon_sym_AMP] = ACTIONS(741),
- [anon_sym_PIPE] = ACTIONS(743),
- [anon_sym_PLUS] = ACTIONS(2579),
- [anon_sym_DASH] = ACTIONS(2579),
- [anon_sym_LT] = ACTIONS(2581),
- [anon_sym_void] = ACTIONS(220),
- [sym_comment] = ACTIONS(5),
- [anon_sym_BQUOTE] = ACTIONS(1516),
- [sym_number] = ACTIONS(1518),
- [sym_this] = ACTIONS(1520),
- [sym_true] = ACTIONS(1522),
- [sym_false] = ACTIONS(1522),
- [sym_null] = ACTIONS(1522),
- [sym_undefined] = ACTIONS(1522),
- [anon_sym_readonly] = ACTIONS(1524),
- [anon_sym_QMARK] = ACTIONS(761),
- [anon_sym_any] = ACTIONS(220),
- [anon_sym_number] = ACTIONS(220),
- [anon_sym_boolean] = ACTIONS(220),
- [anon_sym_string] = ACTIONS(220),
- [anon_sym_symbol] = ACTIONS(220),
- [anon_sym_object] = ACTIONS(220),
- [anon_sym_abstract] = ACTIONS(212),
- [anon_sym_infer] = ACTIONS(214),
- [anon_sym_keyof] = ACTIONS(216),
- [anon_sym_unique] = ACTIONS(218),
- [anon_sym_unknown] = ACTIONS(220),
- [anon_sym_never] = ACTIONS(220),
- [anon_sym_LBRACE_PIPE] = ACTIONS(222),
- [sym_html_comment] = ACTIONS(5),
- },
- [915] = {
- [sym_import] = STATE(5087),
- [sym_nested_identifier] = STATE(5707),
- [sym_string] = STATE(2889),
- [sym_formal_parameters] = STATE(5709),
- [sym_nested_type_identifier] = STATE(2828),
- [sym__type_query_member_expression_in_type_annotation] = STATE(2846),
- [sym__type_query_call_expression_in_type_annotation] = STATE(2850),
- [sym_type] = STATE(3750),
- [sym_constructor_type] = STATE(2896),
- [sym_primary_type] = STATE(2897),
- [sym_template_literal_type] = STATE(2885),
- [sym_infer_type] = STATE(2896),
- [sym_conditional_type] = STATE(2885),
- [sym_generic_type] = STATE(2885),
- [sym_type_query] = STATE(2885),
- [sym_index_type_query] = STATE(2885),
- [sym_lookup_type] = STATE(2885),
- [sym_literal_type] = STATE(2885),
- [sym__number] = STATE(2903),
- [sym_existential_type] = STATE(2885),
- [sym_flow_maybe_type] = STATE(2885),
- [sym_parenthesized_type] = STATE(2885),
- [sym_predefined_type] = STATE(2885),
- [sym_object_type] = STATE(2885),
- [sym_type_parameters] = STATE(5435),
- [sym_array_type] = STATE(2885),
- [sym_tuple_type] = STATE(2885),
- [sym_readonly_type] = STATE(2896),
- [sym_union_type] = STATE(2885),
- [sym_intersection_type] = STATE(2885),
- [sym_function_type] = STATE(2896),
- [sym_identifier] = ACTIONS(1496),
- [anon_sym_STAR] = ACTIONS(612),
- [anon_sym_LBRACE] = ACTIONS(1498),
- [anon_sym_typeof] = ACTIONS(1500),
- [anon_sym_import] = ACTIONS(133),
- [anon_sym_const] = ACTIONS(135),
- [anon_sym_LPAREN] = ACTIONS(1502),
- [anon_sym_LBRACK] = ACTIONS(1504),
- [anon_sym_GT] = ACTIONS(3137),
- [anon_sym_DQUOTE] = ACTIONS(1506),
- [anon_sym_SQUOTE] = ACTIONS(1508),
- [anon_sym_new] = ACTIONS(1510),
- [anon_sym_AMP] = ACTIONS(741),
- [anon_sym_PIPE] = ACTIONS(743),
- [anon_sym_PLUS] = ACTIONS(2579),
- [anon_sym_DASH] = ACTIONS(2579),
- [anon_sym_LT] = ACTIONS(2581),
- [anon_sym_void] = ACTIONS(220),
- [sym_comment] = ACTIONS(5),
- [anon_sym_BQUOTE] = ACTIONS(1516),
- [sym_number] = ACTIONS(1518),
- [sym_this] = ACTIONS(1520),
- [sym_true] = ACTIONS(1522),
- [sym_false] = ACTIONS(1522),
- [sym_null] = ACTIONS(1522),
- [sym_undefined] = ACTIONS(1522),
- [anon_sym_readonly] = ACTIONS(1524),
- [anon_sym_QMARK] = ACTIONS(761),
- [anon_sym_any] = ACTIONS(220),
- [anon_sym_number] = ACTIONS(220),
- [anon_sym_boolean] = ACTIONS(220),
- [anon_sym_string] = ACTIONS(220),
- [anon_sym_symbol] = ACTIONS(220),
- [anon_sym_object] = ACTIONS(220),
- [anon_sym_abstract] = ACTIONS(212),
- [anon_sym_infer] = ACTIONS(214),
- [anon_sym_keyof] = ACTIONS(216),
- [anon_sym_unique] = ACTIONS(218),
- [anon_sym_unknown] = ACTIONS(220),
- [anon_sym_never] = ACTIONS(220),
- [anon_sym_LBRACE_PIPE] = ACTIONS(222),
- [sym_html_comment] = ACTIONS(5),
- },
- [916] = {
- [sym_import] = STATE(5087),
- [sym_nested_identifier] = STATE(5707),
- [sym_string] = STATE(2889),
- [sym_formal_parameters] = STATE(5709),
- [sym_nested_type_identifier] = STATE(2828),
- [sym__type_query_member_expression_in_type_annotation] = STATE(2846),
- [sym__type_query_call_expression_in_type_annotation] = STATE(2850),
- [sym_type] = STATE(3750),
- [sym_constructor_type] = STATE(2896),
- [sym_primary_type] = STATE(2897),
- [sym_template_literal_type] = STATE(2885),
- [sym_infer_type] = STATE(2896),
- [sym_conditional_type] = STATE(2885),
- [sym_generic_type] = STATE(2885),
- [sym_type_query] = STATE(2885),
- [sym_index_type_query] = STATE(2885),
- [sym_lookup_type] = STATE(2885),
- [sym_literal_type] = STATE(2885),
- [sym__number] = STATE(2903),
- [sym_existential_type] = STATE(2885),
- [sym_flow_maybe_type] = STATE(2885),
- [sym_parenthesized_type] = STATE(2885),
- [sym_predefined_type] = STATE(2885),
- [sym_object_type] = STATE(2885),
- [sym_type_parameters] = STATE(5435),
- [sym_array_type] = STATE(2885),
- [sym_tuple_type] = STATE(2885),
- [sym_readonly_type] = STATE(2896),
- [sym_union_type] = STATE(2885),
- [sym_intersection_type] = STATE(2885),
- [sym_function_type] = STATE(2896),
- [sym_identifier] = ACTIONS(1496),
- [anon_sym_STAR] = ACTIONS(612),
- [anon_sym_LBRACE] = ACTIONS(1498),
- [anon_sym_typeof] = ACTIONS(1500),
- [anon_sym_import] = ACTIONS(133),
- [anon_sym_const] = ACTIONS(135),
- [anon_sym_LPAREN] = ACTIONS(1502),
- [anon_sym_LBRACK] = ACTIONS(1504),
- [anon_sym_GT] = ACTIONS(3139),
- [anon_sym_DQUOTE] = ACTIONS(1506),
- [anon_sym_SQUOTE] = ACTIONS(1508),
- [anon_sym_new] = ACTIONS(1510),
- [anon_sym_AMP] = ACTIONS(741),
- [anon_sym_PIPE] = ACTIONS(743),
- [anon_sym_PLUS] = ACTIONS(2579),
- [anon_sym_DASH] = ACTIONS(2579),
- [anon_sym_LT] = ACTIONS(2581),
- [anon_sym_void] = ACTIONS(220),
- [sym_comment] = ACTIONS(5),
- [anon_sym_BQUOTE] = ACTIONS(1516),
- [sym_number] = ACTIONS(1518),
- [sym_this] = ACTIONS(1520),
- [sym_true] = ACTIONS(1522),
- [sym_false] = ACTIONS(1522),
- [sym_null] = ACTIONS(1522),
- [sym_undefined] = ACTIONS(1522),
- [anon_sym_readonly] = ACTIONS(1524),
- [anon_sym_QMARK] = ACTIONS(761),
- [anon_sym_any] = ACTIONS(220),
- [anon_sym_number] = ACTIONS(220),
- [anon_sym_boolean] = ACTIONS(220),
- [anon_sym_string] = ACTIONS(220),
- [anon_sym_symbol] = ACTIONS(220),
- [anon_sym_object] = ACTIONS(220),
- [anon_sym_abstract] = ACTIONS(212),
- [anon_sym_infer] = ACTIONS(214),
- [anon_sym_keyof] = ACTIONS(216),
- [anon_sym_unique] = ACTIONS(218),
- [anon_sym_unknown] = ACTIONS(220),
- [anon_sym_never] = ACTIONS(220),
- [anon_sym_LBRACE_PIPE] = ACTIONS(222),
- [sym_html_comment] = ACTIONS(5),
- },
- [917] = {
- [sym_import] = STATE(5087),
- [sym_nested_identifier] = STATE(5707),
- [sym_string] = STATE(2889),
- [sym_formal_parameters] = STATE(5709),
- [sym_nested_type_identifier] = STATE(2828),
- [sym__type_query_member_expression_in_type_annotation] = STATE(2846),
- [sym__type_query_call_expression_in_type_annotation] = STATE(2850),
- [sym_type] = STATE(4534),
- [sym_constructor_type] = STATE(2896),
- [sym_primary_type] = STATE(2897),
- [sym_template_literal_type] = STATE(2885),
- [sym_infer_type] = STATE(2896),
- [sym_conditional_type] = STATE(2885),
- [sym_generic_type] = STATE(2885),
- [sym_type_query] = STATE(2885),
- [sym_index_type_query] = STATE(2885),
- [sym_lookup_type] = STATE(2885),
- [sym_literal_type] = STATE(2885),
- [sym__number] = STATE(2903),
- [sym_existential_type] = STATE(2885),
- [sym_flow_maybe_type] = STATE(2885),
- [sym_parenthesized_type] = STATE(2885),
- [sym_predefined_type] = STATE(2885),
- [sym_object_type] = STATE(2885),
- [sym_type_parameters] = STATE(5435),
- [sym_array_type] = STATE(2885),
- [sym_tuple_type] = STATE(2885),
- [sym_readonly_type] = STATE(2896),
- [sym_union_type] = STATE(2885),
- [sym_intersection_type] = STATE(2885),
- [sym_function_type] = STATE(2896),
- [sym_identifier] = ACTIONS(1496),
- [anon_sym_STAR] = ACTIONS(612),
- [anon_sym_LBRACE] = ACTIONS(1498),
- [anon_sym_typeof] = ACTIONS(1500),
- [anon_sym_import] = ACTIONS(133),
- [anon_sym_const] = ACTIONS(135),
- [anon_sym_LPAREN] = ACTIONS(1502),
- [anon_sym_LBRACK] = ACTIONS(1504),
- [anon_sym_RBRACK] = ACTIONS(3141),
- [anon_sym_DQUOTE] = ACTIONS(1506),
- [anon_sym_SQUOTE] = ACTIONS(1508),
- [anon_sym_new] = ACTIONS(1510),
- [anon_sym_AMP] = ACTIONS(741),
- [anon_sym_PIPE] = ACTIONS(743),
- [anon_sym_PLUS] = ACTIONS(2579),
- [anon_sym_DASH] = ACTIONS(2579),
- [anon_sym_LT] = ACTIONS(2581),
- [anon_sym_void] = ACTIONS(220),
- [sym_comment] = ACTIONS(5),
- [anon_sym_BQUOTE] = ACTIONS(1516),
- [sym_number] = ACTIONS(1518),
- [sym_this] = ACTIONS(1520),
- [sym_true] = ACTIONS(1522),
- [sym_false] = ACTIONS(1522),
- [sym_null] = ACTIONS(1522),
- [sym_undefined] = ACTIONS(1522),
- [anon_sym_readonly] = ACTIONS(1524),
- [anon_sym_QMARK] = ACTIONS(761),
- [anon_sym_any] = ACTIONS(220),
- [anon_sym_number] = ACTIONS(220),
- [anon_sym_boolean] = ACTIONS(220),
- [anon_sym_string] = ACTIONS(220),
- [anon_sym_symbol] = ACTIONS(220),
- [anon_sym_object] = ACTIONS(220),
- [anon_sym_abstract] = ACTIONS(212),
- [anon_sym_infer] = ACTIONS(214),
- [anon_sym_keyof] = ACTIONS(216),
- [anon_sym_unique] = ACTIONS(218),
- [anon_sym_unknown] = ACTIONS(220),
- [anon_sym_never] = ACTIONS(220),
- [anon_sym_LBRACE_PIPE] = ACTIONS(222),
- [sym_html_comment] = ACTIONS(5),
- },
- [918] = {
- [sym_import] = STATE(5087),
- [sym_nested_identifier] = STATE(5707),
- [sym_string] = STATE(2889),
- [sym_formal_parameters] = STATE(5709),
- [sym_nested_type_identifier] = STATE(2828),
- [sym__type_query_member_expression_in_type_annotation] = STATE(2846),
- [sym__type_query_call_expression_in_type_annotation] = STATE(2850),
- [sym_type] = STATE(3738),
- [sym_constructor_type] = STATE(2896),
- [sym_primary_type] = STATE(2897),
- [sym_template_literal_type] = STATE(2885),
- [sym_infer_type] = STATE(2896),
- [sym_conditional_type] = STATE(2885),
- [sym_generic_type] = STATE(2885),
- [sym_type_query] = STATE(2885),
- [sym_index_type_query] = STATE(2885),
- [sym_lookup_type] = STATE(2885),
- [sym_literal_type] = STATE(2885),
- [sym__number] = STATE(2903),
- [sym_existential_type] = STATE(2885),
- [sym_flow_maybe_type] = STATE(2885),
- [sym_parenthesized_type] = STATE(2885),
- [sym_predefined_type] = STATE(2885),
- [sym_object_type] = STATE(2885),
- [sym_type_parameters] = STATE(5435),
- [sym_array_type] = STATE(2885),
- [sym_tuple_type] = STATE(2885),
- [sym_readonly_type] = STATE(2896),
- [sym_union_type] = STATE(2885),
- [sym_intersection_type] = STATE(2885),
- [sym_function_type] = STATE(2896),
- [sym_identifier] = ACTIONS(3143),
- [anon_sym_STAR] = ACTIONS(612),
- [anon_sym_LBRACE] = ACTIONS(1498),
- [anon_sym_typeof] = ACTIONS(1500),
- [anon_sym_import] = ACTIONS(133),
- [anon_sym_const] = ACTIONS(135),
- [anon_sym_LPAREN] = ACTIONS(1502),
- [anon_sym_LBRACK] = ACTIONS(1504),
- [sym_jsx_identifier] = ACTIONS(3145),
- [anon_sym_DQUOTE] = ACTIONS(1506),
- [anon_sym_SQUOTE] = ACTIONS(1508),
- [anon_sym_new] = ACTIONS(1510),
- [anon_sym_AMP] = ACTIONS(741),
- [anon_sym_PIPE] = ACTIONS(743),
- [anon_sym_PLUS] = ACTIONS(2579),
- [anon_sym_DASH] = ACTIONS(2579),
- [anon_sym_LT] = ACTIONS(2581),
- [anon_sym_void] = ACTIONS(220),
- [sym_comment] = ACTIONS(5),
- [anon_sym_BQUOTE] = ACTIONS(1516),
- [sym_number] = ACTIONS(1518),
- [sym_this] = ACTIONS(1520),
- [sym_true] = ACTIONS(1522),
- [sym_false] = ACTIONS(1522),
- [sym_null] = ACTIONS(1522),
- [sym_undefined] = ACTIONS(1522),
- [anon_sym_readonly] = ACTIONS(1524),
- [anon_sym_QMARK] = ACTIONS(761),
- [anon_sym_any] = ACTIONS(220),
- [anon_sym_number] = ACTIONS(220),
- [anon_sym_boolean] = ACTIONS(220),
- [anon_sym_string] = ACTIONS(220),
- [anon_sym_symbol] = ACTIONS(220),
- [anon_sym_object] = ACTIONS(220),
- [anon_sym_abstract] = ACTIONS(212),
- [anon_sym_infer] = ACTIONS(214),
- [anon_sym_keyof] = ACTIONS(216),
- [anon_sym_unique] = ACTIONS(218),
- [anon_sym_unknown] = ACTIONS(220),
- [anon_sym_never] = ACTIONS(220),
- [anon_sym_LBRACE_PIPE] = ACTIONS(222),
- [sym_html_comment] = ACTIONS(5),
- },
- [919] = {
- [sym_import] = STATE(5087),
- [sym_nested_identifier] = STATE(5707),
- [sym_string] = STATE(2889),
- [sym_formal_parameters] = STATE(5709),
- [sym_nested_type_identifier] = STATE(2828),
- [sym__type_query_member_expression_in_type_annotation] = STATE(2846),
- [sym__type_query_call_expression_in_type_annotation] = STATE(2850),
- [sym_type] = STATE(4432),
- [sym_constructor_type] = STATE(2896),
- [sym_primary_type] = STATE(2897),
- [sym_template_literal_type] = STATE(2885),
- [sym_infer_type] = STATE(2896),
- [sym_conditional_type] = STATE(2885),
- [sym_generic_type] = STATE(2885),
- [sym_type_query] = STATE(2885),
- [sym_index_type_query] = STATE(2885),
- [sym_lookup_type] = STATE(2885),
- [sym_literal_type] = STATE(2885),
- [sym__number] = STATE(2903),
- [sym_existential_type] = STATE(2885),
- [sym_flow_maybe_type] = STATE(2885),
- [sym_parenthesized_type] = STATE(2885),
- [sym_predefined_type] = STATE(2885),
- [sym_object_type] = STATE(2885),
- [sym_type_parameters] = STATE(5435),
- [sym_array_type] = STATE(2885),
- [sym_tuple_type] = STATE(2885),
- [sym_readonly_type] = STATE(2896),
- [sym_union_type] = STATE(2885),
- [sym_intersection_type] = STATE(2885),
- [sym_function_type] = STATE(2896),
- [sym_identifier] = ACTIONS(1496),
- [anon_sym_STAR] = ACTIONS(612),
- [anon_sym_LBRACE] = ACTIONS(1498),
- [anon_sym_typeof] = ACTIONS(1500),
- [anon_sym_import] = ACTIONS(133),
- [anon_sym_const] = ACTIONS(135),
- [anon_sym_LPAREN] = ACTIONS(1502),
- [anon_sym_LBRACK] = ACTIONS(1504),
- [anon_sym_RBRACK] = ACTIONS(3147),
- [anon_sym_DQUOTE] = ACTIONS(1506),
- [anon_sym_SQUOTE] = ACTIONS(1508),
- [anon_sym_new] = ACTIONS(1510),
- [anon_sym_AMP] = ACTIONS(741),
- [anon_sym_PIPE] = ACTIONS(743),
- [anon_sym_PLUS] = ACTIONS(2579),
- [anon_sym_DASH] = ACTIONS(2579),
- [anon_sym_LT] = ACTIONS(2581),
- [anon_sym_void] = ACTIONS(220),
- [sym_comment] = ACTIONS(5),
- [anon_sym_BQUOTE] = ACTIONS(1516),
- [sym_number] = ACTIONS(1518),
- [sym_this] = ACTIONS(1520),
- [sym_true] = ACTIONS(1522),
- [sym_false] = ACTIONS(1522),
- [sym_null] = ACTIONS(1522),
- [sym_undefined] = ACTIONS(1522),
- [anon_sym_readonly] = ACTIONS(1524),
- [anon_sym_QMARK] = ACTIONS(761),
- [anon_sym_any] = ACTIONS(220),
- [anon_sym_number] = ACTIONS(220),
- [anon_sym_boolean] = ACTIONS(220),
- [anon_sym_string] = ACTIONS(220),
- [anon_sym_symbol] = ACTIONS(220),
- [anon_sym_object] = ACTIONS(220),
- [anon_sym_abstract] = ACTIONS(212),
- [anon_sym_infer] = ACTIONS(214),
- [anon_sym_keyof] = ACTIONS(216),
- [anon_sym_unique] = ACTIONS(218),
- [anon_sym_unknown] = ACTIONS(220),
- [anon_sym_never] = ACTIONS(220),
- [anon_sym_LBRACE_PIPE] = ACTIONS(222),
- [sym_html_comment] = ACTIONS(5),
- },
- [920] = {
- [sym_import] = STATE(5087),
- [sym_nested_identifier] = STATE(5707),
- [sym_string] = STATE(2889),
- [sym_formal_parameters] = STATE(5709),
- [sym_nested_type_identifier] = STATE(2828),
- [sym__type_query_member_expression_in_type_annotation] = STATE(2846),
- [sym__type_query_call_expression_in_type_annotation] = STATE(2850),
- [sym_type] = STATE(4446),
- [sym_constructor_type] = STATE(2896),
- [sym_primary_type] = STATE(2897),
- [sym_template_literal_type] = STATE(2885),
- [sym_infer_type] = STATE(2896),
- [sym_conditional_type] = STATE(2885),
- [sym_generic_type] = STATE(2885),
- [sym_type_query] = STATE(2885),
- [sym_index_type_query] = STATE(2885),
- [sym_lookup_type] = STATE(2885),
- [sym_literal_type] = STATE(2885),
- [sym__number] = STATE(2903),
- [sym_existential_type] = STATE(2885),
- [sym_flow_maybe_type] = STATE(2885),
- [sym_parenthesized_type] = STATE(2885),
- [sym_predefined_type] = STATE(2885),
- [sym_object_type] = STATE(2885),
- [sym_type_parameters] = STATE(5435),
- [sym_array_type] = STATE(2885),
- [sym_tuple_type] = STATE(2885),
- [sym_readonly_type] = STATE(2896),
- [sym_union_type] = STATE(2885),
- [sym_intersection_type] = STATE(2885),
- [sym_function_type] = STATE(2896),
- [sym_identifier] = ACTIONS(1496),
- [anon_sym_STAR] = ACTIONS(612),
- [anon_sym_LBRACE] = ACTIONS(1498),
- [anon_sym_typeof] = ACTIONS(1500),
- [anon_sym_import] = ACTIONS(133),
- [anon_sym_const] = ACTIONS(135),
- [anon_sym_LPAREN] = ACTIONS(1502),
- [anon_sym_LBRACK] = ACTIONS(1504),
- [anon_sym_RBRACK] = ACTIONS(3149),
- [anon_sym_DQUOTE] = ACTIONS(1506),
- [anon_sym_SQUOTE] = ACTIONS(1508),
- [anon_sym_new] = ACTIONS(1510),
- [anon_sym_AMP] = ACTIONS(741),
- [anon_sym_PIPE] = ACTIONS(743),
- [anon_sym_PLUS] = ACTIONS(2579),
- [anon_sym_DASH] = ACTIONS(2579),
- [anon_sym_LT] = ACTIONS(2581),
- [anon_sym_void] = ACTIONS(220),
- [sym_comment] = ACTIONS(5),
- [anon_sym_BQUOTE] = ACTIONS(1516),
- [sym_number] = ACTIONS(1518),
- [sym_this] = ACTIONS(1520),
- [sym_true] = ACTIONS(1522),
- [sym_false] = ACTIONS(1522),
- [sym_null] = ACTIONS(1522),
- [sym_undefined] = ACTIONS(1522),
- [anon_sym_readonly] = ACTIONS(1524),
- [anon_sym_QMARK] = ACTIONS(761),
- [anon_sym_any] = ACTIONS(220),
- [anon_sym_number] = ACTIONS(220),
- [anon_sym_boolean] = ACTIONS(220),
- [anon_sym_string] = ACTIONS(220),
- [anon_sym_symbol] = ACTIONS(220),
- [anon_sym_object] = ACTIONS(220),
- [anon_sym_abstract] = ACTIONS(212),
- [anon_sym_infer] = ACTIONS(214),
- [anon_sym_keyof] = ACTIONS(216),
- [anon_sym_unique] = ACTIONS(218),
- [anon_sym_unknown] = ACTIONS(220),
- [anon_sym_never] = ACTIONS(220),
- [anon_sym_LBRACE_PIPE] = ACTIONS(222),
- [sym_html_comment] = ACTIONS(5),
- },
- [921] = {
- [sym_import] = STATE(5087),
- [sym_nested_identifier] = STATE(5707),
- [sym_string] = STATE(2889),
- [sym_formal_parameters] = STATE(5709),
- [sym_nested_type_identifier] = STATE(2828),
- [sym__type_query_member_expression_in_type_annotation] = STATE(2846),
- [sym__type_query_call_expression_in_type_annotation] = STATE(2850),
- [sym_type] = STATE(4494),
- [sym_constructor_type] = STATE(2896),
- [sym_primary_type] = STATE(2897),
- [sym_template_literal_type] = STATE(2885),
- [sym_infer_type] = STATE(2896),
- [sym_conditional_type] = STATE(2885),
- [sym_generic_type] = STATE(2885),
- [sym_type_query] = STATE(2885),
- [sym_index_type_query] = STATE(2885),
- [sym_lookup_type] = STATE(2885),
- [sym_literal_type] = STATE(2885),
- [sym__number] = STATE(2903),
- [sym_existential_type] = STATE(2885),
- [sym_flow_maybe_type] = STATE(2885),
- [sym_parenthesized_type] = STATE(2885),
- [sym_predefined_type] = STATE(2885),
- [sym_object_type] = STATE(2885),
- [sym_type_parameters] = STATE(5435),
- [sym_array_type] = STATE(2885),
- [sym_tuple_type] = STATE(2885),
- [sym_readonly_type] = STATE(2896),
- [sym_union_type] = STATE(2885),
- [sym_intersection_type] = STATE(2885),
- [sym_function_type] = STATE(2896),
- [sym_identifier] = ACTIONS(1496),
- [anon_sym_STAR] = ACTIONS(612),
- [anon_sym_LBRACE] = ACTIONS(1498),
- [anon_sym_typeof] = ACTIONS(1500),
- [anon_sym_import] = ACTIONS(133),
- [anon_sym_const] = ACTIONS(135),
- [anon_sym_LPAREN] = ACTIONS(1502),
- [anon_sym_LBRACK] = ACTIONS(1504),
- [anon_sym_RBRACK] = ACTIONS(3151),
- [anon_sym_DQUOTE] = ACTIONS(1506),
- [anon_sym_SQUOTE] = ACTIONS(1508),
- [anon_sym_new] = ACTIONS(1510),
- [anon_sym_AMP] = ACTIONS(741),
- [anon_sym_PIPE] = ACTIONS(743),
- [anon_sym_PLUS] = ACTIONS(2579),
- [anon_sym_DASH] = ACTIONS(2579),
- [anon_sym_LT] = ACTIONS(2581),
- [anon_sym_void] = ACTIONS(220),
- [sym_comment] = ACTIONS(5),
- [anon_sym_BQUOTE] = ACTIONS(1516),
- [sym_number] = ACTIONS(1518),
- [sym_this] = ACTIONS(1520),
- [sym_true] = ACTIONS(1522),
- [sym_false] = ACTIONS(1522),
- [sym_null] = ACTIONS(1522),
- [sym_undefined] = ACTIONS(1522),
- [anon_sym_readonly] = ACTIONS(1524),
- [anon_sym_QMARK] = ACTIONS(761),
- [anon_sym_any] = ACTIONS(220),
- [anon_sym_number] = ACTIONS(220),
- [anon_sym_boolean] = ACTIONS(220),
- [anon_sym_string] = ACTIONS(220),
- [anon_sym_symbol] = ACTIONS(220),
- [anon_sym_object] = ACTIONS(220),
- [anon_sym_abstract] = ACTIONS(212),
- [anon_sym_infer] = ACTIONS(214),
- [anon_sym_keyof] = ACTIONS(216),
- [anon_sym_unique] = ACTIONS(218),
- [anon_sym_unknown] = ACTIONS(220),
- [anon_sym_never] = ACTIONS(220),
- [anon_sym_LBRACE_PIPE] = ACTIONS(222),
- [sym_html_comment] = ACTIONS(5),
- },
- [922] = {
- [sym_import] = STATE(5087),
- [sym_nested_identifier] = STATE(5707),
- [sym_string] = STATE(2889),
- [sym_formal_parameters] = STATE(5709),
- [sym_nested_type_identifier] = STATE(2828),
- [sym__type_query_member_expression_in_type_annotation] = STATE(2846),
- [sym__type_query_call_expression_in_type_annotation] = STATE(2850),
- [sym_type] = STATE(3750),
- [sym_constructor_type] = STATE(2896),
- [sym_primary_type] = STATE(2897),
- [sym_template_literal_type] = STATE(2885),
- [sym_infer_type] = STATE(2896),
- [sym_conditional_type] = STATE(2885),
- [sym_generic_type] = STATE(2885),
- [sym_type_query] = STATE(2885),
- [sym_index_type_query] = STATE(2885),
- [sym_lookup_type] = STATE(2885),
- [sym_literal_type] = STATE(2885),
- [sym__number] = STATE(2903),
- [sym_existential_type] = STATE(2885),
- [sym_flow_maybe_type] = STATE(2885),
- [sym_parenthesized_type] = STATE(2885),
- [sym_predefined_type] = STATE(2885),
- [sym_object_type] = STATE(2885),
- [sym_type_parameters] = STATE(5435),
- [sym_array_type] = STATE(2885),
- [sym_tuple_type] = STATE(2885),
- [sym_readonly_type] = STATE(2896),
- [sym_union_type] = STATE(2885),
- [sym_intersection_type] = STATE(2885),
- [sym_function_type] = STATE(2896),
- [sym_identifier] = ACTIONS(1496),
- [anon_sym_STAR] = ACTIONS(612),
- [anon_sym_LBRACE] = ACTIONS(1498),
- [anon_sym_typeof] = ACTIONS(1500),
- [anon_sym_import] = ACTIONS(133),
- [anon_sym_const] = ACTIONS(135),
- [anon_sym_LPAREN] = ACTIONS(1502),
- [anon_sym_LBRACK] = ACTIONS(1504),
- [anon_sym_GT] = ACTIONS(3153),
- [anon_sym_DQUOTE] = ACTIONS(1506),
- [anon_sym_SQUOTE] = ACTIONS(1508),
- [anon_sym_new] = ACTIONS(1510),
- [anon_sym_AMP] = ACTIONS(741),
- [anon_sym_PIPE] = ACTIONS(743),
- [anon_sym_PLUS] = ACTIONS(2579),
- [anon_sym_DASH] = ACTIONS(2579),
- [anon_sym_LT] = ACTIONS(2581),
- [anon_sym_void] = ACTIONS(220),
- [sym_comment] = ACTIONS(5),
- [anon_sym_BQUOTE] = ACTIONS(1516),
- [sym_number] = ACTIONS(1518),
- [sym_this] = ACTIONS(1520),
- [sym_true] = ACTIONS(1522),
- [sym_false] = ACTIONS(1522),
- [sym_null] = ACTIONS(1522),
- [sym_undefined] = ACTIONS(1522),
- [anon_sym_readonly] = ACTIONS(1524),
- [anon_sym_QMARK] = ACTIONS(761),
- [anon_sym_any] = ACTIONS(220),
- [anon_sym_number] = ACTIONS(220),
- [anon_sym_boolean] = ACTIONS(220),
- [anon_sym_string] = ACTIONS(220),
- [anon_sym_symbol] = ACTIONS(220),
- [anon_sym_object] = ACTIONS(220),
- [anon_sym_abstract] = ACTIONS(212),
- [anon_sym_infer] = ACTIONS(214),
- [anon_sym_keyof] = ACTIONS(216),
- [anon_sym_unique] = ACTIONS(218),
- [anon_sym_unknown] = ACTIONS(220),
- [anon_sym_never] = ACTIONS(220),
- [anon_sym_LBRACE_PIPE] = ACTIONS(222),
- [sym_html_comment] = ACTIONS(5),
- },
- [923] = {
- [sym_import] = STATE(5087),
- [sym_nested_identifier] = STATE(5707),
- [sym_string] = STATE(2889),
- [sym_formal_parameters] = STATE(5709),
- [sym_nested_type_identifier] = STATE(2828),
- [sym__type_query_member_expression_in_type_annotation] = STATE(2846),
- [sym__type_query_call_expression_in_type_annotation] = STATE(2850),
- [sym_type] = STATE(3750),
- [sym_constructor_type] = STATE(2896),
- [sym_primary_type] = STATE(2897),
- [sym_template_literal_type] = STATE(2885),
- [sym_infer_type] = STATE(2896),
- [sym_conditional_type] = STATE(2885),
- [sym_generic_type] = STATE(2885),
- [sym_type_query] = STATE(2885),
- [sym_index_type_query] = STATE(2885),
- [sym_lookup_type] = STATE(2885),
- [sym_literal_type] = STATE(2885),
- [sym__number] = STATE(2903),
- [sym_existential_type] = STATE(2885),
- [sym_flow_maybe_type] = STATE(2885),
- [sym_parenthesized_type] = STATE(2885),
- [sym_predefined_type] = STATE(2885),
- [sym_object_type] = STATE(2885),
- [sym_type_parameters] = STATE(5435),
- [sym_array_type] = STATE(2885),
- [sym_tuple_type] = STATE(2885),
- [sym_readonly_type] = STATE(2896),
- [sym_union_type] = STATE(2885),
- [sym_intersection_type] = STATE(2885),
- [sym_function_type] = STATE(2896),
- [sym_identifier] = ACTIONS(1496),
- [anon_sym_STAR] = ACTIONS(612),
- [anon_sym_LBRACE] = ACTIONS(1498),
- [anon_sym_typeof] = ACTIONS(1500),
- [anon_sym_import] = ACTIONS(133),
- [anon_sym_const] = ACTIONS(135),
- [anon_sym_LPAREN] = ACTIONS(1502),
- [anon_sym_LBRACK] = ACTIONS(1504),
- [anon_sym_GT] = ACTIONS(3155),
- [anon_sym_DQUOTE] = ACTIONS(1506),
- [anon_sym_SQUOTE] = ACTIONS(1508),
- [anon_sym_new] = ACTIONS(1510),
- [anon_sym_AMP] = ACTIONS(741),
- [anon_sym_PIPE] = ACTIONS(743),
- [anon_sym_PLUS] = ACTIONS(2579),
- [anon_sym_DASH] = ACTIONS(2579),
- [anon_sym_LT] = ACTIONS(2581),
- [anon_sym_void] = ACTIONS(220),
- [sym_comment] = ACTIONS(5),
- [anon_sym_BQUOTE] = ACTIONS(1516),
- [sym_number] = ACTIONS(1518),
- [sym_this] = ACTIONS(1520),
- [sym_true] = ACTIONS(1522),
- [sym_false] = ACTIONS(1522),
- [sym_null] = ACTIONS(1522),
- [sym_undefined] = ACTIONS(1522),
- [anon_sym_readonly] = ACTIONS(1524),
- [anon_sym_QMARK] = ACTIONS(761),
- [anon_sym_any] = ACTIONS(220),
- [anon_sym_number] = ACTIONS(220),
- [anon_sym_boolean] = ACTIONS(220),
- [anon_sym_string] = ACTIONS(220),
- [anon_sym_symbol] = ACTIONS(220),
- [anon_sym_object] = ACTIONS(220),
- [anon_sym_abstract] = ACTIONS(212),
- [anon_sym_infer] = ACTIONS(214),
- [anon_sym_keyof] = ACTIONS(216),
- [anon_sym_unique] = ACTIONS(218),
- [anon_sym_unknown] = ACTIONS(220),
- [anon_sym_never] = ACTIONS(220),
- [anon_sym_LBRACE_PIPE] = ACTIONS(222),
- [sym_html_comment] = ACTIONS(5),
- },
- [924] = {
- [sym_import] = STATE(5087),
- [sym_nested_identifier] = STATE(5707),
- [sym_string] = STATE(2889),
- [sym_formal_parameters] = STATE(5709),
- [sym_nested_type_identifier] = STATE(2828),
- [sym__type_query_member_expression_in_type_annotation] = STATE(2846),
- [sym__type_query_call_expression_in_type_annotation] = STATE(2850),
- [sym_type] = STATE(3750),
- [sym_constructor_type] = STATE(2896),
- [sym_primary_type] = STATE(2897),
- [sym_template_literal_type] = STATE(2885),
- [sym_infer_type] = STATE(2896),
- [sym_conditional_type] = STATE(2885),
- [sym_generic_type] = STATE(2885),
- [sym_type_query] = STATE(2885),
- [sym_index_type_query] = STATE(2885),
- [sym_lookup_type] = STATE(2885),
- [sym_literal_type] = STATE(2885),
- [sym__number] = STATE(2903),
- [sym_existential_type] = STATE(2885),
- [sym_flow_maybe_type] = STATE(2885),
- [sym_parenthesized_type] = STATE(2885),
- [sym_predefined_type] = STATE(2885),
- [sym_object_type] = STATE(2885),
- [sym_type_parameters] = STATE(5435),
- [sym_array_type] = STATE(2885),
- [sym_tuple_type] = STATE(2885),
- [sym_readonly_type] = STATE(2896),
- [sym_union_type] = STATE(2885),
- [sym_intersection_type] = STATE(2885),
- [sym_function_type] = STATE(2896),
- [sym_identifier] = ACTIONS(1496),
- [anon_sym_STAR] = ACTIONS(612),
- [anon_sym_LBRACE] = ACTIONS(1498),
- [anon_sym_typeof] = ACTIONS(1500),
- [anon_sym_import] = ACTIONS(133),
- [anon_sym_const] = ACTIONS(135),
- [anon_sym_LPAREN] = ACTIONS(1502),
- [anon_sym_LBRACK] = ACTIONS(1504),
- [anon_sym_GT] = ACTIONS(3157),
- [anon_sym_DQUOTE] = ACTIONS(1506),
- [anon_sym_SQUOTE] = ACTIONS(1508),
- [anon_sym_new] = ACTIONS(1510),
- [anon_sym_AMP] = ACTIONS(741),
- [anon_sym_PIPE] = ACTIONS(743),
- [anon_sym_PLUS] = ACTIONS(2579),
- [anon_sym_DASH] = ACTIONS(2579),
- [anon_sym_LT] = ACTIONS(2581),
- [anon_sym_void] = ACTIONS(220),
- [sym_comment] = ACTIONS(5),
- [anon_sym_BQUOTE] = ACTIONS(1516),
- [sym_number] = ACTIONS(1518),
- [sym_this] = ACTIONS(1520),
- [sym_true] = ACTIONS(1522),
- [sym_false] = ACTIONS(1522),
- [sym_null] = ACTIONS(1522),
- [sym_undefined] = ACTIONS(1522),
- [anon_sym_readonly] = ACTIONS(1524),
- [anon_sym_QMARK] = ACTIONS(761),
- [anon_sym_any] = ACTIONS(220),
- [anon_sym_number] = ACTIONS(220),
- [anon_sym_boolean] = ACTIONS(220),
- [anon_sym_string] = ACTIONS(220),
- [anon_sym_symbol] = ACTIONS(220),
- [anon_sym_object] = ACTIONS(220),
- [anon_sym_abstract] = ACTIONS(212),
- [anon_sym_infer] = ACTIONS(214),
- [anon_sym_keyof] = ACTIONS(216),
- [anon_sym_unique] = ACTIONS(218),
- [anon_sym_unknown] = ACTIONS(220),
- [anon_sym_never] = ACTIONS(220),
- [anon_sym_LBRACE_PIPE] = ACTIONS(222),
- [sym_html_comment] = ACTIONS(5),
- },
- [925] = {
- [sym_import] = STATE(5087),
- [sym_nested_identifier] = STATE(5707),
- [sym_string] = STATE(2889),
- [sym_formal_parameters] = STATE(5709),
- [sym_nested_type_identifier] = STATE(2828),
- [sym__type_query_member_expression_in_type_annotation] = STATE(2846),
- [sym__type_query_call_expression_in_type_annotation] = STATE(2850),
- [sym_type] = STATE(3750),
- [sym_constructor_type] = STATE(2896),
- [sym_primary_type] = STATE(2897),
- [sym_template_literal_type] = STATE(2885),
- [sym_infer_type] = STATE(2896),
- [sym_conditional_type] = STATE(2885),
- [sym_generic_type] = STATE(2885),
- [sym_type_query] = STATE(2885),
- [sym_index_type_query] = STATE(2885),
- [sym_lookup_type] = STATE(2885),
- [sym_literal_type] = STATE(2885),
- [sym__number] = STATE(2903),
- [sym_existential_type] = STATE(2885),
- [sym_flow_maybe_type] = STATE(2885),
- [sym_parenthesized_type] = STATE(2885),
- [sym_predefined_type] = STATE(2885),
- [sym_object_type] = STATE(2885),
- [sym_type_parameters] = STATE(5435),
- [sym_array_type] = STATE(2885),
- [sym_tuple_type] = STATE(2885),
- [sym_readonly_type] = STATE(2896),
- [sym_union_type] = STATE(2885),
- [sym_intersection_type] = STATE(2885),
- [sym_function_type] = STATE(2896),
- [sym_identifier] = ACTIONS(1496),
- [anon_sym_STAR] = ACTIONS(612),
- [anon_sym_LBRACE] = ACTIONS(1498),
- [anon_sym_typeof] = ACTIONS(1500),
- [anon_sym_import] = ACTIONS(133),
- [anon_sym_const] = ACTIONS(135),
- [anon_sym_LPAREN] = ACTIONS(1502),
- [anon_sym_LBRACK] = ACTIONS(1504),
- [anon_sym_GT] = ACTIONS(3159),
- [anon_sym_DQUOTE] = ACTIONS(1506),
- [anon_sym_SQUOTE] = ACTIONS(1508),
- [anon_sym_new] = ACTIONS(1510),
- [anon_sym_AMP] = ACTIONS(741),
- [anon_sym_PIPE] = ACTIONS(743),
- [anon_sym_PLUS] = ACTIONS(2579),
- [anon_sym_DASH] = ACTIONS(2579),
- [anon_sym_LT] = ACTIONS(2581),
- [anon_sym_void] = ACTIONS(220),
- [sym_comment] = ACTIONS(5),
- [anon_sym_BQUOTE] = ACTIONS(1516),
- [sym_number] = ACTIONS(1518),
- [sym_this] = ACTIONS(1520),
- [sym_true] = ACTIONS(1522),
- [sym_false] = ACTIONS(1522),
- [sym_null] = ACTIONS(1522),
- [sym_undefined] = ACTIONS(1522),
- [anon_sym_readonly] = ACTIONS(1524),
- [anon_sym_QMARK] = ACTIONS(761),
- [anon_sym_any] = ACTIONS(220),
- [anon_sym_number] = ACTIONS(220),
- [anon_sym_boolean] = ACTIONS(220),
- [anon_sym_string] = ACTIONS(220),
- [anon_sym_symbol] = ACTIONS(220),
- [anon_sym_object] = ACTIONS(220),
- [anon_sym_abstract] = ACTIONS(212),
- [anon_sym_infer] = ACTIONS(214),
- [anon_sym_keyof] = ACTIONS(216),
- [anon_sym_unique] = ACTIONS(218),
- [anon_sym_unknown] = ACTIONS(220),
- [anon_sym_never] = ACTIONS(220),
- [anon_sym_LBRACE_PIPE] = ACTIONS(222),
- [sym_html_comment] = ACTIONS(5),
- },
- [926] = {
- [sym_import] = STATE(5087),
- [sym_nested_identifier] = STATE(5707),
- [sym_string] = STATE(2889),
- [sym_formal_parameters] = STATE(5709),
- [sym_nested_type_identifier] = STATE(2828),
- [sym__type_query_member_expression_in_type_annotation] = STATE(2846),
- [sym__type_query_call_expression_in_type_annotation] = STATE(2850),
- [sym_type] = STATE(3750),
- [sym_constructor_type] = STATE(2896),
- [sym_primary_type] = STATE(2897),
- [sym_template_literal_type] = STATE(2885),
- [sym_infer_type] = STATE(2896),
- [sym_conditional_type] = STATE(2885),
- [sym_generic_type] = STATE(2885),
- [sym_type_query] = STATE(2885),
- [sym_index_type_query] = STATE(2885),
- [sym_lookup_type] = STATE(2885),
- [sym_literal_type] = STATE(2885),
- [sym__number] = STATE(2903),
- [sym_existential_type] = STATE(2885),
- [sym_flow_maybe_type] = STATE(2885),
- [sym_parenthesized_type] = STATE(2885),
- [sym_predefined_type] = STATE(2885),
- [sym_object_type] = STATE(2885),
- [sym_type_parameters] = STATE(5435),
- [sym_array_type] = STATE(2885),
- [sym_tuple_type] = STATE(2885),
- [sym_readonly_type] = STATE(2896),
- [sym_union_type] = STATE(2885),
- [sym_intersection_type] = STATE(2885),
- [sym_function_type] = STATE(2896),
- [sym_identifier] = ACTIONS(1496),
- [anon_sym_STAR] = ACTIONS(612),
- [anon_sym_LBRACE] = ACTIONS(1498),
- [anon_sym_typeof] = ACTIONS(1500),
- [anon_sym_import] = ACTIONS(133),
- [anon_sym_const] = ACTIONS(135),
- [anon_sym_LPAREN] = ACTIONS(1502),
- [anon_sym_LBRACK] = ACTIONS(1504),
- [anon_sym_GT] = ACTIONS(3161),
- [anon_sym_DQUOTE] = ACTIONS(1506),
- [anon_sym_SQUOTE] = ACTIONS(1508),
- [anon_sym_new] = ACTIONS(1510),
- [anon_sym_AMP] = ACTIONS(741),
- [anon_sym_PIPE] = ACTIONS(743),
- [anon_sym_PLUS] = ACTIONS(2579),
- [anon_sym_DASH] = ACTIONS(2579),
- [anon_sym_LT] = ACTIONS(2581),
- [anon_sym_void] = ACTIONS(220),
- [sym_comment] = ACTIONS(5),
- [anon_sym_BQUOTE] = ACTIONS(1516),
- [sym_number] = ACTIONS(1518),
- [sym_this] = ACTIONS(1520),
- [sym_true] = ACTIONS(1522),
- [sym_false] = ACTIONS(1522),
- [sym_null] = ACTIONS(1522),
- [sym_undefined] = ACTIONS(1522),
- [anon_sym_readonly] = ACTIONS(1524),
- [anon_sym_QMARK] = ACTIONS(761),
- [anon_sym_any] = ACTIONS(220),
- [anon_sym_number] = ACTIONS(220),
- [anon_sym_boolean] = ACTIONS(220),
- [anon_sym_string] = ACTIONS(220),
- [anon_sym_symbol] = ACTIONS(220),
- [anon_sym_object] = ACTIONS(220),
- [anon_sym_abstract] = ACTIONS(212),
- [anon_sym_infer] = ACTIONS(214),
- [anon_sym_keyof] = ACTIONS(216),
- [anon_sym_unique] = ACTIONS(218),
- [anon_sym_unknown] = ACTIONS(220),
- [anon_sym_never] = ACTIONS(220),
- [anon_sym_LBRACE_PIPE] = ACTIONS(222),
- [sym_html_comment] = ACTIONS(5),
- },
- [927] = {
- [sym_import] = STATE(5087),
- [sym_nested_identifier] = STATE(5707),
- [sym_string] = STATE(2889),
- [sym_formal_parameters] = STATE(5709),
- [sym_nested_type_identifier] = STATE(2828),
- [sym__type_query_member_expression_in_type_annotation] = STATE(2846),
- [sym__type_query_call_expression_in_type_annotation] = STATE(2850),
- [sym_type] = STATE(3750),
- [sym_constructor_type] = STATE(2896),
- [sym_primary_type] = STATE(2897),
- [sym_template_literal_type] = STATE(2885),
- [sym_infer_type] = STATE(2896),
- [sym_conditional_type] = STATE(2885),
- [sym_generic_type] = STATE(2885),
- [sym_type_query] = STATE(2885),
- [sym_index_type_query] = STATE(2885),
- [sym_lookup_type] = STATE(2885),
- [sym_literal_type] = STATE(2885),
- [sym__number] = STATE(2903),
- [sym_existential_type] = STATE(2885),
- [sym_flow_maybe_type] = STATE(2885),
- [sym_parenthesized_type] = STATE(2885),
- [sym_predefined_type] = STATE(2885),
- [sym_object_type] = STATE(2885),
- [sym_type_parameters] = STATE(5435),
- [sym_array_type] = STATE(2885),
- [sym_tuple_type] = STATE(2885),
- [sym_readonly_type] = STATE(2896),
- [sym_union_type] = STATE(2885),
- [sym_intersection_type] = STATE(2885),
- [sym_function_type] = STATE(2896),
- [sym_identifier] = ACTIONS(1496),
- [anon_sym_STAR] = ACTIONS(612),
- [anon_sym_LBRACE] = ACTIONS(1498),
- [anon_sym_typeof] = ACTIONS(1500),
- [anon_sym_import] = ACTIONS(133),
- [anon_sym_const] = ACTIONS(135),
- [anon_sym_LPAREN] = ACTIONS(1502),
- [anon_sym_LBRACK] = ACTIONS(1504),
- [anon_sym_GT] = ACTIONS(3163),
- [anon_sym_DQUOTE] = ACTIONS(1506),
- [anon_sym_SQUOTE] = ACTIONS(1508),
- [anon_sym_new] = ACTIONS(1510),
- [anon_sym_AMP] = ACTIONS(741),
- [anon_sym_PIPE] = ACTIONS(743),
- [anon_sym_PLUS] = ACTIONS(2579),
- [anon_sym_DASH] = ACTIONS(2579),
- [anon_sym_LT] = ACTIONS(2581),
- [anon_sym_void] = ACTIONS(220),
- [sym_comment] = ACTIONS(5),
- [anon_sym_BQUOTE] = ACTIONS(1516),
- [sym_number] = ACTIONS(1518),
- [sym_this] = ACTIONS(1520),
- [sym_true] = ACTIONS(1522),
- [sym_false] = ACTIONS(1522),
- [sym_null] = ACTIONS(1522),
- [sym_undefined] = ACTIONS(1522),
- [anon_sym_readonly] = ACTIONS(1524),
- [anon_sym_QMARK] = ACTIONS(761),
- [anon_sym_any] = ACTIONS(220),
- [anon_sym_number] = ACTIONS(220),
- [anon_sym_boolean] = ACTIONS(220),
- [anon_sym_string] = ACTIONS(220),
- [anon_sym_symbol] = ACTIONS(220),
- [anon_sym_object] = ACTIONS(220),
- [anon_sym_abstract] = ACTIONS(212),
- [anon_sym_infer] = ACTIONS(214),
- [anon_sym_keyof] = ACTIONS(216),
- [anon_sym_unique] = ACTIONS(218),
- [anon_sym_unknown] = ACTIONS(220),
- [anon_sym_never] = ACTIONS(220),
- [anon_sym_LBRACE_PIPE] = ACTIONS(222),
- [sym_html_comment] = ACTIONS(5),
- },
- [928] = {
- [sym_import] = STATE(5087),
- [sym_nested_identifier] = STATE(5707),
- [sym_string] = STATE(2889),
- [sym_formal_parameters] = STATE(5709),
- [sym_nested_type_identifier] = STATE(2828),
- [sym__type_query_member_expression_in_type_annotation] = STATE(2846),
- [sym__type_query_call_expression_in_type_annotation] = STATE(2850),
- [sym_type] = STATE(3750),
- [sym_constructor_type] = STATE(2896),
- [sym_primary_type] = STATE(2897),
- [sym_template_literal_type] = STATE(2885),
- [sym_infer_type] = STATE(2896),
- [sym_conditional_type] = STATE(2885),
- [sym_generic_type] = STATE(2885),
- [sym_type_query] = STATE(2885),
- [sym_index_type_query] = STATE(2885),
- [sym_lookup_type] = STATE(2885),
- [sym_literal_type] = STATE(2885),
- [sym__number] = STATE(2903),
- [sym_existential_type] = STATE(2885),
- [sym_flow_maybe_type] = STATE(2885),
- [sym_parenthesized_type] = STATE(2885),
- [sym_predefined_type] = STATE(2885),
- [sym_object_type] = STATE(2885),
- [sym_type_parameters] = STATE(5435),
- [sym_array_type] = STATE(2885),
- [sym_tuple_type] = STATE(2885),
- [sym_readonly_type] = STATE(2896),
- [sym_union_type] = STATE(2885),
- [sym_intersection_type] = STATE(2885),
- [sym_function_type] = STATE(2896),
- [sym_identifier] = ACTIONS(1496),
- [anon_sym_STAR] = ACTIONS(612),
- [anon_sym_LBRACE] = ACTIONS(1498),
- [anon_sym_typeof] = ACTIONS(1500),
- [anon_sym_import] = ACTIONS(133),
- [anon_sym_const] = ACTIONS(135),
- [anon_sym_LPAREN] = ACTIONS(1502),
- [anon_sym_LBRACK] = ACTIONS(1504),
- [anon_sym_GT] = ACTIONS(3165),
- [anon_sym_DQUOTE] = ACTIONS(1506),
- [anon_sym_SQUOTE] = ACTIONS(1508),
- [anon_sym_new] = ACTIONS(1510),
- [anon_sym_AMP] = ACTIONS(741),
- [anon_sym_PIPE] = ACTIONS(743),
- [anon_sym_PLUS] = ACTIONS(2579),
- [anon_sym_DASH] = ACTIONS(2579),
- [anon_sym_LT] = ACTIONS(2581),
- [anon_sym_void] = ACTIONS(220),
- [sym_comment] = ACTIONS(5),
- [anon_sym_BQUOTE] = ACTIONS(1516),
- [sym_number] = ACTIONS(1518),
- [sym_this] = ACTIONS(1520),
- [sym_true] = ACTIONS(1522),
- [sym_false] = ACTIONS(1522),
- [sym_null] = ACTIONS(1522),
- [sym_undefined] = ACTIONS(1522),
- [anon_sym_readonly] = ACTIONS(1524),
- [anon_sym_QMARK] = ACTIONS(761),
- [anon_sym_any] = ACTIONS(220),
- [anon_sym_number] = ACTIONS(220),
- [anon_sym_boolean] = ACTIONS(220),
- [anon_sym_string] = ACTIONS(220),
- [anon_sym_symbol] = ACTIONS(220),
- [anon_sym_object] = ACTIONS(220),
- [anon_sym_abstract] = ACTIONS(212),
- [anon_sym_infer] = ACTIONS(214),
- [anon_sym_keyof] = ACTIONS(216),
- [anon_sym_unique] = ACTIONS(218),
- [anon_sym_unknown] = ACTIONS(220),
- [anon_sym_never] = ACTIONS(220),
- [anon_sym_LBRACE_PIPE] = ACTIONS(222),
- [sym_html_comment] = ACTIONS(5),
- },
- [929] = {
- [sym_import] = STATE(5087),
- [sym_nested_identifier] = STATE(5707),
- [sym_string] = STATE(2889),
- [sym_formal_parameters] = STATE(5709),
- [sym_nested_type_identifier] = STATE(2828),
- [sym__type_query_member_expression_in_type_annotation] = STATE(2846),
- [sym__type_query_call_expression_in_type_annotation] = STATE(2850),
- [sym_type] = STATE(3750),
- [sym_constructor_type] = STATE(2896),
- [sym_primary_type] = STATE(2897),
- [sym_template_literal_type] = STATE(2885),
- [sym_infer_type] = STATE(2896),
- [sym_conditional_type] = STATE(2885),
- [sym_generic_type] = STATE(2885),
- [sym_type_query] = STATE(2885),
- [sym_index_type_query] = STATE(2885),
- [sym_lookup_type] = STATE(2885),
- [sym_literal_type] = STATE(2885),
- [sym__number] = STATE(2903),
- [sym_existential_type] = STATE(2885),
- [sym_flow_maybe_type] = STATE(2885),
- [sym_parenthesized_type] = STATE(2885),
- [sym_predefined_type] = STATE(2885),
- [sym_object_type] = STATE(2885),
- [sym_type_parameters] = STATE(5435),
- [sym_array_type] = STATE(2885),
- [sym_tuple_type] = STATE(2885),
- [sym_readonly_type] = STATE(2896),
- [sym_union_type] = STATE(2885),
- [sym_intersection_type] = STATE(2885),
- [sym_function_type] = STATE(2896),
- [sym_identifier] = ACTIONS(1496),
- [anon_sym_STAR] = ACTIONS(612),
- [anon_sym_LBRACE] = ACTIONS(1498),
- [anon_sym_typeof] = ACTIONS(1500),
- [anon_sym_import] = ACTIONS(133),
- [anon_sym_const] = ACTIONS(135),
- [anon_sym_LPAREN] = ACTIONS(1502),
- [anon_sym_LBRACK] = ACTIONS(1504),
- [anon_sym_GT] = ACTIONS(3167),
- [anon_sym_DQUOTE] = ACTIONS(1506),
- [anon_sym_SQUOTE] = ACTIONS(1508),
- [anon_sym_new] = ACTIONS(1510),
- [anon_sym_AMP] = ACTIONS(741),
- [anon_sym_PIPE] = ACTIONS(743),
- [anon_sym_PLUS] = ACTIONS(2579),
- [anon_sym_DASH] = ACTIONS(2579),
- [anon_sym_LT] = ACTIONS(2581),
- [anon_sym_void] = ACTIONS(220),
- [sym_comment] = ACTIONS(5),
- [anon_sym_BQUOTE] = ACTIONS(1516),
- [sym_number] = ACTIONS(1518),
- [sym_this] = ACTIONS(1520),
- [sym_true] = ACTIONS(1522),
- [sym_false] = ACTIONS(1522),
- [sym_null] = ACTIONS(1522),
- [sym_undefined] = ACTIONS(1522),
- [anon_sym_readonly] = ACTIONS(1524),
- [anon_sym_QMARK] = ACTIONS(761),
- [anon_sym_any] = ACTIONS(220),
- [anon_sym_number] = ACTIONS(220),
- [anon_sym_boolean] = ACTIONS(220),
- [anon_sym_string] = ACTIONS(220),
- [anon_sym_symbol] = ACTIONS(220),
- [anon_sym_object] = ACTIONS(220),
- [anon_sym_abstract] = ACTIONS(212),
- [anon_sym_infer] = ACTIONS(214),
- [anon_sym_keyof] = ACTIONS(216),
- [anon_sym_unique] = ACTIONS(218),
- [anon_sym_unknown] = ACTIONS(220),
- [anon_sym_never] = ACTIONS(220),
- [anon_sym_LBRACE_PIPE] = ACTIONS(222),
- [sym_html_comment] = ACTIONS(5),
- },
- [930] = {
- [sym_import] = STATE(5087),
- [sym_nested_identifier] = STATE(5707),
- [sym_string] = STATE(2889),
- [sym_formal_parameters] = STATE(5709),
- [sym_nested_type_identifier] = STATE(2828),
- [sym__type_query_member_expression_in_type_annotation] = STATE(2846),
- [sym__type_query_call_expression_in_type_annotation] = STATE(2850),
- [sym_type] = STATE(4514),
- [sym_constructor_type] = STATE(2896),
- [sym_primary_type] = STATE(2897),
- [sym_template_literal_type] = STATE(2885),
- [sym_infer_type] = STATE(2896),
- [sym_conditional_type] = STATE(2885),
- [sym_generic_type] = STATE(2885),
- [sym_type_query] = STATE(2885),
- [sym_index_type_query] = STATE(2885),
- [sym_lookup_type] = STATE(2885),
- [sym_literal_type] = STATE(2885),
- [sym__number] = STATE(2903),
- [sym_existential_type] = STATE(2885),
- [sym_flow_maybe_type] = STATE(2885),
- [sym_parenthesized_type] = STATE(2885),
- [sym_predefined_type] = STATE(2885),
- [sym_object_type] = STATE(2885),
- [sym_type_parameters] = STATE(5435),
- [sym_array_type] = STATE(2885),
- [sym_tuple_type] = STATE(2885),
- [sym_readonly_type] = STATE(2896),
- [sym_union_type] = STATE(2885),
- [sym_intersection_type] = STATE(2885),
- [sym_function_type] = STATE(2896),
- [sym_identifier] = ACTIONS(1496),
- [anon_sym_STAR] = ACTIONS(612),
- [anon_sym_LBRACE] = ACTIONS(1498),
- [anon_sym_typeof] = ACTIONS(1500),
- [anon_sym_import] = ACTIONS(133),
- [anon_sym_const] = ACTIONS(135),
- [anon_sym_LPAREN] = ACTIONS(1502),
- [anon_sym_LBRACK] = ACTIONS(1504),
- [anon_sym_RBRACK] = ACTIONS(3169),
- [anon_sym_DQUOTE] = ACTIONS(1506),
- [anon_sym_SQUOTE] = ACTIONS(1508),
- [anon_sym_new] = ACTIONS(1510),
- [anon_sym_AMP] = ACTIONS(741),
- [anon_sym_PIPE] = ACTIONS(743),
- [anon_sym_PLUS] = ACTIONS(2579),
- [anon_sym_DASH] = ACTIONS(2579),
- [anon_sym_LT] = ACTIONS(2581),
- [anon_sym_void] = ACTIONS(220),
- [sym_comment] = ACTIONS(5),
- [anon_sym_BQUOTE] = ACTIONS(1516),
- [sym_number] = ACTIONS(1518),
- [sym_this] = ACTIONS(1520),
- [sym_true] = ACTIONS(1522),
- [sym_false] = ACTIONS(1522),
- [sym_null] = ACTIONS(1522),
- [sym_undefined] = ACTIONS(1522),
- [anon_sym_readonly] = ACTIONS(1524),
- [anon_sym_QMARK] = ACTIONS(761),
- [anon_sym_any] = ACTIONS(220),
- [anon_sym_number] = ACTIONS(220),
- [anon_sym_boolean] = ACTIONS(220),
- [anon_sym_string] = ACTIONS(220),
- [anon_sym_symbol] = ACTIONS(220),
- [anon_sym_object] = ACTIONS(220),
- [anon_sym_abstract] = ACTIONS(212),
- [anon_sym_infer] = ACTIONS(214),
- [anon_sym_keyof] = ACTIONS(216),
- [anon_sym_unique] = ACTIONS(218),
- [anon_sym_unknown] = ACTIONS(220),
- [anon_sym_never] = ACTIONS(220),
- [anon_sym_LBRACE_PIPE] = ACTIONS(222),
- [sym_html_comment] = ACTIONS(5),
- },
- [931] = {
- [sym_import] = STATE(5087),
- [sym_nested_identifier] = STATE(5707),
- [sym_string] = STATE(2889),
- [sym_formal_parameters] = STATE(5709),
- [sym_nested_type_identifier] = STATE(2828),
- [sym__type_query_member_expression_in_type_annotation] = STATE(2846),
- [sym__type_query_call_expression_in_type_annotation] = STATE(2850),
- [sym_type] = STATE(3750),
- [sym_constructor_type] = STATE(2896),
- [sym_primary_type] = STATE(2897),
- [sym_template_literal_type] = STATE(2885),
- [sym_infer_type] = STATE(2896),
- [sym_conditional_type] = STATE(2885),
- [sym_generic_type] = STATE(2885),
- [sym_type_query] = STATE(2885),
- [sym_index_type_query] = STATE(2885),
- [sym_lookup_type] = STATE(2885),
- [sym_literal_type] = STATE(2885),
- [sym__number] = STATE(2903),
- [sym_existential_type] = STATE(2885),
- [sym_flow_maybe_type] = STATE(2885),
- [sym_parenthesized_type] = STATE(2885),
- [sym_predefined_type] = STATE(2885),
- [sym_object_type] = STATE(2885),
- [sym_type_parameters] = STATE(5435),
- [sym_array_type] = STATE(2885),
- [sym_tuple_type] = STATE(2885),
- [sym_readonly_type] = STATE(2896),
- [sym_union_type] = STATE(2885),
- [sym_intersection_type] = STATE(2885),
- [sym_function_type] = STATE(2896),
- [sym_identifier] = ACTIONS(1496),
- [anon_sym_STAR] = ACTIONS(612),
- [anon_sym_LBRACE] = ACTIONS(1498),
- [anon_sym_typeof] = ACTIONS(1500),
- [anon_sym_import] = ACTIONS(133),
- [anon_sym_const] = ACTIONS(135),
- [anon_sym_LPAREN] = ACTIONS(1502),
- [anon_sym_LBRACK] = ACTIONS(1504),
- [anon_sym_GT] = ACTIONS(3171),
- [anon_sym_DQUOTE] = ACTIONS(1506),
- [anon_sym_SQUOTE] = ACTIONS(1508),
- [anon_sym_new] = ACTIONS(1510),
- [anon_sym_AMP] = ACTIONS(741),
- [anon_sym_PIPE] = ACTIONS(743),
- [anon_sym_PLUS] = ACTIONS(2579),
- [anon_sym_DASH] = ACTIONS(2579),
- [anon_sym_LT] = ACTIONS(2581),
- [anon_sym_void] = ACTIONS(220),
- [sym_comment] = ACTIONS(5),
- [anon_sym_BQUOTE] = ACTIONS(1516),
- [sym_number] = ACTIONS(1518),
- [sym_this] = ACTIONS(1520),
- [sym_true] = ACTIONS(1522),
- [sym_false] = ACTIONS(1522),
- [sym_null] = ACTIONS(1522),
- [sym_undefined] = ACTIONS(1522),
- [anon_sym_readonly] = ACTIONS(1524),
- [anon_sym_QMARK] = ACTIONS(761),
- [anon_sym_any] = ACTIONS(220),
- [anon_sym_number] = ACTIONS(220),
- [anon_sym_boolean] = ACTIONS(220),
- [anon_sym_string] = ACTIONS(220),
- [anon_sym_symbol] = ACTIONS(220),
- [anon_sym_object] = ACTIONS(220),
- [anon_sym_abstract] = ACTIONS(212),
- [anon_sym_infer] = ACTIONS(214),
- [anon_sym_keyof] = ACTIONS(216),
- [anon_sym_unique] = ACTIONS(218),
- [anon_sym_unknown] = ACTIONS(220),
- [anon_sym_never] = ACTIONS(220),
- [anon_sym_LBRACE_PIPE] = ACTIONS(222),
- [sym_html_comment] = ACTIONS(5),
- },
- [932] = {
- [sym_import] = STATE(5087),
- [sym_nested_identifier] = STATE(5707),
- [sym_string] = STATE(2889),
- [sym_formal_parameters] = STATE(5709),
- [sym_nested_type_identifier] = STATE(2828),
- [sym__type_query_member_expression_in_type_annotation] = STATE(2846),
- [sym__type_query_call_expression_in_type_annotation] = STATE(2850),
- [sym_type] = STATE(3750),
- [sym_constructor_type] = STATE(2896),
- [sym_primary_type] = STATE(2897),
- [sym_template_literal_type] = STATE(2885),
- [sym_infer_type] = STATE(2896),
- [sym_conditional_type] = STATE(2885),
- [sym_generic_type] = STATE(2885),
- [sym_type_query] = STATE(2885),
- [sym_index_type_query] = STATE(2885),
- [sym_lookup_type] = STATE(2885),
- [sym_literal_type] = STATE(2885),
- [sym__number] = STATE(2903),
- [sym_existential_type] = STATE(2885),
- [sym_flow_maybe_type] = STATE(2885),
- [sym_parenthesized_type] = STATE(2885),
- [sym_predefined_type] = STATE(2885),
- [sym_object_type] = STATE(2885),
- [sym_type_parameters] = STATE(5435),
- [sym_array_type] = STATE(2885),
- [sym_tuple_type] = STATE(2885),
- [sym_readonly_type] = STATE(2896),
- [sym_union_type] = STATE(2885),
- [sym_intersection_type] = STATE(2885),
- [sym_function_type] = STATE(2896),
- [sym_identifier] = ACTIONS(1496),
- [anon_sym_STAR] = ACTIONS(612),
- [anon_sym_LBRACE] = ACTIONS(1498),
- [anon_sym_typeof] = ACTIONS(1500),
- [anon_sym_import] = ACTIONS(133),
- [anon_sym_const] = ACTIONS(135),
- [anon_sym_LPAREN] = ACTIONS(1502),
- [anon_sym_LBRACK] = ACTIONS(1504),
- [anon_sym_GT] = ACTIONS(3173),
- [anon_sym_DQUOTE] = ACTIONS(1506),
- [anon_sym_SQUOTE] = ACTIONS(1508),
- [anon_sym_new] = ACTIONS(1510),
- [anon_sym_AMP] = ACTIONS(741),
- [anon_sym_PIPE] = ACTIONS(743),
- [anon_sym_PLUS] = ACTIONS(2579),
- [anon_sym_DASH] = ACTIONS(2579),
- [anon_sym_LT] = ACTIONS(2581),
- [anon_sym_void] = ACTIONS(220),
- [sym_comment] = ACTIONS(5),
- [anon_sym_BQUOTE] = ACTIONS(1516),
- [sym_number] = ACTIONS(1518),
- [sym_this] = ACTIONS(1520),
- [sym_true] = ACTIONS(1522),
- [sym_false] = ACTIONS(1522),
- [sym_null] = ACTIONS(1522),
- [sym_undefined] = ACTIONS(1522),
- [anon_sym_readonly] = ACTIONS(1524),
- [anon_sym_QMARK] = ACTIONS(761),
- [anon_sym_any] = ACTIONS(220),
- [anon_sym_number] = ACTIONS(220),
- [anon_sym_boolean] = ACTIONS(220),
- [anon_sym_string] = ACTIONS(220),
- [anon_sym_symbol] = ACTIONS(220),
- [anon_sym_object] = ACTIONS(220),
- [anon_sym_abstract] = ACTIONS(212),
- [anon_sym_infer] = ACTIONS(214),
- [anon_sym_keyof] = ACTIONS(216),
- [anon_sym_unique] = ACTIONS(218),
- [anon_sym_unknown] = ACTIONS(220),
- [anon_sym_never] = ACTIONS(220),
- [anon_sym_LBRACE_PIPE] = ACTIONS(222),
- [sym_html_comment] = ACTIONS(5),
- },
- [933] = {
- [sym_import] = STATE(5087),
- [sym_nested_identifier] = STATE(5707),
- [sym_string] = STATE(2889),
- [sym_formal_parameters] = STATE(5709),
- [sym_nested_type_identifier] = STATE(2828),
- [sym__type_query_member_expression_in_type_annotation] = STATE(2846),
- [sym__type_query_call_expression_in_type_annotation] = STATE(2850),
- [sym_type] = STATE(3750),
- [sym_constructor_type] = STATE(2896),
- [sym_primary_type] = STATE(2897),
- [sym_template_literal_type] = STATE(2885),
- [sym_infer_type] = STATE(2896),
- [sym_conditional_type] = STATE(2885),
- [sym_generic_type] = STATE(2885),
- [sym_type_query] = STATE(2885),
- [sym_index_type_query] = STATE(2885),
- [sym_lookup_type] = STATE(2885),
- [sym_literal_type] = STATE(2885),
- [sym__number] = STATE(2903),
- [sym_existential_type] = STATE(2885),
- [sym_flow_maybe_type] = STATE(2885),
- [sym_parenthesized_type] = STATE(2885),
- [sym_predefined_type] = STATE(2885),
- [sym_object_type] = STATE(2885),
- [sym_type_parameters] = STATE(5435),
- [sym_array_type] = STATE(2885),
- [sym_tuple_type] = STATE(2885),
- [sym_readonly_type] = STATE(2896),
- [sym_union_type] = STATE(2885),
- [sym_intersection_type] = STATE(2885),
- [sym_function_type] = STATE(2896),
- [sym_identifier] = ACTIONS(1496),
- [anon_sym_STAR] = ACTIONS(612),
- [anon_sym_LBRACE] = ACTIONS(1498),
- [anon_sym_typeof] = ACTIONS(1500),
- [anon_sym_import] = ACTIONS(133),
- [anon_sym_const] = ACTIONS(135),
- [anon_sym_LPAREN] = ACTIONS(1502),
- [anon_sym_LBRACK] = ACTIONS(1504),
- [anon_sym_GT] = ACTIONS(3175),
- [anon_sym_DQUOTE] = ACTIONS(1506),
- [anon_sym_SQUOTE] = ACTIONS(1508),
- [anon_sym_new] = ACTIONS(1510),
- [anon_sym_AMP] = ACTIONS(741),
- [anon_sym_PIPE] = ACTIONS(743),
- [anon_sym_PLUS] = ACTIONS(2579),
- [anon_sym_DASH] = ACTIONS(2579),
- [anon_sym_LT] = ACTIONS(2581),
- [anon_sym_void] = ACTIONS(220),
- [sym_comment] = ACTIONS(5),
- [anon_sym_BQUOTE] = ACTIONS(1516),
- [sym_number] = ACTIONS(1518),
- [sym_this] = ACTIONS(1520),
- [sym_true] = ACTIONS(1522),
- [sym_false] = ACTIONS(1522),
- [sym_null] = ACTIONS(1522),
- [sym_undefined] = ACTIONS(1522),
- [anon_sym_readonly] = ACTIONS(1524),
- [anon_sym_QMARK] = ACTIONS(761),
- [anon_sym_any] = ACTIONS(220),
- [anon_sym_number] = ACTIONS(220),
- [anon_sym_boolean] = ACTIONS(220),
- [anon_sym_string] = ACTIONS(220),
- [anon_sym_symbol] = ACTIONS(220),
- [anon_sym_object] = ACTIONS(220),
- [anon_sym_abstract] = ACTIONS(212),
- [anon_sym_infer] = ACTIONS(214),
- [anon_sym_keyof] = ACTIONS(216),
- [anon_sym_unique] = ACTIONS(218),
- [anon_sym_unknown] = ACTIONS(220),
- [anon_sym_never] = ACTIONS(220),
- [anon_sym_LBRACE_PIPE] = ACTIONS(222),
- [sym_html_comment] = ACTIONS(5),
- },
- [934] = {
- [sym_import] = STATE(4753),
- [sym_nested_identifier] = STATE(5707),
- [sym_string] = STATE(2889),
- [sym_formal_parameters] = STATE(5626),
- [sym_nested_type_identifier] = STATE(2828),
- [sym__type_query_member_expression_in_type_annotation] = STATE(3228),
- [sym__type_query_call_expression_in_type_annotation] = STATE(2850),
- [sym_type] = STATE(4561),
- [sym_constructor_type] = STATE(2896),
- [sym_primary_type] = STATE(2897),
- [sym_template_literal_type] = STATE(2885),
- [sym_infer_type] = STATE(2896),
- [sym_conditional_type] = STATE(2885),
- [sym_generic_type] = STATE(2885),
- [sym_type_query] = STATE(2885),
- [sym_index_type_query] = STATE(2885),
- [sym_lookup_type] = STATE(2885),
- [sym_literal_type] = STATE(2885),
- [sym__number] = STATE(2903),
- [sym_existential_type] = STATE(2885),
- [sym_flow_maybe_type] = STATE(2885),
- [sym_parenthesized_type] = STATE(2885),
- [sym_predefined_type] = STATE(2885),
- [sym_object_type] = STATE(2885),
- [sym_type_parameters] = STATE(5517),
- [sym_array_type] = STATE(2885),
- [sym_tuple_type] = STATE(2885),
- [sym_readonly_type] = STATE(2896),
- [sym_union_type] = STATE(2885),
- [sym_intersection_type] = STATE(2885),
- [sym_function_type] = STATE(2896),
- [sym_identifier] = ACTIONS(1496),
- [anon_sym_STAR] = ACTIONS(612),
- [anon_sym_LBRACE] = ACTIONS(1498),
- [anon_sym_typeof] = ACTIONS(1500),
- [anon_sym_import] = ACTIONS(133),
- [anon_sym_const] = ACTIONS(135),
- [anon_sym_LPAREN] = ACTIONS(1502),
- [anon_sym_LBRACK] = ACTIONS(1504),
- [anon_sym_DQUOTE] = ACTIONS(1506),
- [anon_sym_SQUOTE] = ACTIONS(1508),
- [anon_sym_new] = ACTIONS(1572),
- [anon_sym_AMP] = ACTIONS(640),
- [anon_sym_PIPE] = ACTIONS(642),
- [anon_sym_PLUS] = ACTIONS(2579),
- [anon_sym_DASH] = ACTIONS(2579),
- [anon_sym_LT] = ACTIONS(2581),
- [anon_sym_void] = ACTIONS(220),
- [sym_comment] = ACTIONS(5),
- [anon_sym_BQUOTE] = ACTIONS(1516),
- [sym_number] = ACTIONS(1518),
- [sym_this] = ACTIONS(1520),
- [sym_true] = ACTIONS(1522),
- [sym_false] = ACTIONS(1522),
- [sym_null] = ACTIONS(1522),
- [sym_undefined] = ACTIONS(1522),
- [anon_sym_readonly] = ACTIONS(1578),
- [anon_sym_QMARK] = ACTIONS(662),
- [anon_sym_any] = ACTIONS(220),
- [anon_sym_number] = ACTIONS(220),
- [anon_sym_boolean] = ACTIONS(220),
- [anon_sym_string] = ACTIONS(220),
- [anon_sym_symbol] = ACTIONS(220),
- [anon_sym_object] = ACTIONS(220),
- [anon_sym_abstract] = ACTIONS(666),
- [anon_sym_infer] = ACTIONS(668),
- [anon_sym_keyof] = ACTIONS(670),
- [anon_sym_unique] = ACTIONS(218),
- [anon_sym_unknown] = ACTIONS(220),
- [anon_sym_never] = ACTIONS(220),
- [anon_sym_LBRACE_PIPE] = ACTIONS(222),
- [sym_html_comment] = ACTIONS(5),
- },
- [935] = {
- [sym_import] = STATE(4903),
- [sym_nested_identifier] = STATE(5707),
- [sym_string] = STATE(2889),
- [sym_formal_parameters] = STATE(5916),
- [sym_nested_type_identifier] = STATE(2828),
- [sym__type_query_member_expression_in_type_annotation] = STATE(3332),
- [sym__type_query_call_expression_in_type_annotation] = STATE(2850),
- [sym_type] = STATE(3784),
- [sym_constructor_type] = STATE(2896),
- [sym_primary_type] = STATE(2897),
- [sym_template_literal_type] = STATE(2885),
- [sym_infer_type] = STATE(2896),
- [sym_conditional_type] = STATE(2885),
- [sym_generic_type] = STATE(2885),
- [sym_type_query] = STATE(2885),
- [sym_index_type_query] = STATE(2885),
- [sym_lookup_type] = STATE(2885),
- [sym_literal_type] = STATE(2885),
- [sym__number] = STATE(2903),
- [sym_existential_type] = STATE(2885),
- [sym_flow_maybe_type] = STATE(2885),
- [sym_parenthesized_type] = STATE(2885),
- [sym_predefined_type] = STATE(2885),
- [sym_object_type] = STATE(2885),
- [sym_type_parameters] = STATE(5386),
- [sym_array_type] = STATE(2885),
- [sym_tuple_type] = STATE(2885),
- [sym_readonly_type] = STATE(2896),
- [sym_union_type] = STATE(2885),
- [sym_intersection_type] = STATE(2885),
- [sym_function_type] = STATE(2896),
- [sym_identifier] = ACTIONS(1496),
- [anon_sym_STAR] = ACTIONS(612),
- [anon_sym_LBRACE] = ACTIONS(3043),
- [anon_sym_typeof] = ACTIONS(3045),
- [anon_sym_import] = ACTIONS(133),
- [anon_sym_const] = ACTIONS(135),
- [anon_sym_LPAREN] = ACTIONS(1502),
- [anon_sym_LBRACK] = ACTIONS(1504),
- [anon_sym_DQUOTE] = ACTIONS(2275),
- [anon_sym_SQUOTE] = ACTIONS(2277),
- [anon_sym_new] = ACTIONS(3047),
- [anon_sym_AMP] = ACTIONS(3049),
- [anon_sym_PIPE] = ACTIONS(3051),
- [anon_sym_PLUS] = ACTIONS(2579),
- [anon_sym_DASH] = ACTIONS(2579),
- [anon_sym_LT] = ACTIONS(2581),
- [anon_sym_void] = ACTIONS(220),
- [sym_comment] = ACTIONS(5),
- [anon_sym_BQUOTE] = ACTIONS(1516),
- [sym_number] = ACTIONS(1518),
- [sym_this] = ACTIONS(1520),
- [sym_true] = ACTIONS(1522),
- [sym_false] = ACTIONS(1522),
- [sym_null] = ACTIONS(1522),
- [sym_undefined] = ACTIONS(1522),
- [anon_sym_readonly] = ACTIONS(3055),
- [anon_sym_QMARK] = ACTIONS(3057),
- [anon_sym_any] = ACTIONS(220),
- [anon_sym_number] = ACTIONS(220),
- [anon_sym_boolean] = ACTIONS(220),
- [anon_sym_string] = ACTIONS(220),
- [anon_sym_symbol] = ACTIONS(220),
- [anon_sym_object] = ACTIONS(220),
- [anon_sym_abstract] = ACTIONS(3059),
- [anon_sym_infer] = ACTIONS(3063),
- [anon_sym_keyof] = ACTIONS(3065),
- [anon_sym_unique] = ACTIONS(218),
- [anon_sym_unknown] = ACTIONS(220),
- [anon_sym_never] = ACTIONS(220),
- [anon_sym_LBRACE_PIPE] = ACTIONS(3067),
- [sym_html_comment] = ACTIONS(5),
- },
- [936] = {
- [sym_import] = STATE(5087),
- [sym_nested_identifier] = STATE(5707),
- [sym_string] = STATE(2889),
- [sym_formal_parameters] = STATE(5709),
- [sym_nested_type_identifier] = STATE(2828),
- [sym__type_query_member_expression_in_type_annotation] = STATE(2846),
- [sym__type_query_call_expression_in_type_annotation] = STATE(2850),
- [sym_type] = STATE(4791),
- [sym_constructor_type] = STATE(2896),
- [sym_primary_type] = STATE(2858),
- [sym_template_literal_type] = STATE(2885),
- [sym_infer_type] = STATE(2896),
- [sym_conditional_type] = STATE(2885),
- [sym_generic_type] = STATE(2885),
- [sym_type_query] = STATE(2885),
- [sym_index_type_query] = STATE(2885),
- [sym_lookup_type] = STATE(2885),
- [sym_literal_type] = STATE(2885),
- [sym__number] = STATE(2903),
- [sym_existential_type] = STATE(2885),
- [sym_flow_maybe_type] = STATE(2885),
- [sym_parenthesized_type] = STATE(2885),
- [sym_predefined_type] = STATE(2885),
- [sym_object_type] = STATE(2885),
- [sym_type_parameters] = STATE(5435),
- [sym_array_type] = STATE(2885),
- [sym_tuple_type] = STATE(2885),
- [sym_readonly_type] = STATE(2896),
- [sym_union_type] = STATE(2885),
- [sym_intersection_type] = STATE(2885),
- [sym_function_type] = STATE(2896),
- [sym_identifier] = ACTIONS(1496),
- [anon_sym_STAR] = ACTIONS(612),
- [anon_sym_LBRACE] = ACTIONS(3043),
- [anon_sym_typeof] = ACTIONS(3045),
- [anon_sym_import] = ACTIONS(133),
- [anon_sym_const] = ACTIONS(135),
- [anon_sym_LPAREN] = ACTIONS(1502),
- [anon_sym_LBRACK] = ACTIONS(1504),
- [anon_sym_DQUOTE] = ACTIONS(2275),
- [anon_sym_SQUOTE] = ACTIONS(2277),
- [anon_sym_new] = ACTIONS(1510),
- [anon_sym_AMP] = ACTIONS(3049),
- [anon_sym_PIPE] = ACTIONS(3051),
- [anon_sym_PLUS] = ACTIONS(2579),
- [anon_sym_DASH] = ACTIONS(2579),
- [anon_sym_LT] = ACTIONS(2581),
- [anon_sym_void] = ACTIONS(220),
- [sym_comment] = ACTIONS(5),
- [anon_sym_BQUOTE] = ACTIONS(1516),
- [sym_number] = ACTIONS(1518),
- [sym_this] = ACTIONS(1520),
- [sym_true] = ACTIONS(1522),
- [sym_false] = ACTIONS(1522),
- [sym_null] = ACTIONS(1522),
- [sym_undefined] = ACTIONS(1522),
- [anon_sym_readonly] = ACTIONS(1524),
- [anon_sym_QMARK] = ACTIONS(3057),
- [anon_sym_any] = ACTIONS(220),
- [anon_sym_number] = ACTIONS(220),
- [anon_sym_boolean] = ACTIONS(220),
- [anon_sym_string] = ACTIONS(220),
- [anon_sym_symbol] = ACTIONS(220),
- [anon_sym_object] = ACTIONS(220),
- [anon_sym_abstract] = ACTIONS(212),
- [anon_sym_infer] = ACTIONS(214),
- [anon_sym_keyof] = ACTIONS(3065),
- [anon_sym_unique] = ACTIONS(218),
- [anon_sym_unknown] = ACTIONS(220),
- [anon_sym_never] = ACTIONS(220),
- [anon_sym_LBRACE_PIPE] = ACTIONS(3067),
- [sym_html_comment] = ACTIONS(5),
- },
- [937] = {
- [sym_import] = STATE(5087),
- [sym_nested_identifier] = STATE(5707),
- [sym_string] = STATE(2889),
- [sym_formal_parameters] = STATE(5709),
- [sym_nested_type_identifier] = STATE(2828),
- [sym__type_query_member_expression_in_type_annotation] = STATE(2846),
- [sym__type_query_call_expression_in_type_annotation] = STATE(2850),
- [sym_type] = STATE(4791),
- [sym_constructor_type] = STATE(2896),
- [sym_primary_type] = STATE(2860),
- [sym_template_literal_type] = STATE(2885),
- [sym_infer_type] = STATE(2896),
- [sym_conditional_type] = STATE(2885),
- [sym_generic_type] = STATE(2885),
- [sym_type_query] = STATE(2885),
- [sym_index_type_query] = STATE(2885),
- [sym_lookup_type] = STATE(2885),
- [sym_literal_type] = STATE(2885),
- [sym__number] = STATE(2903),
- [sym_existential_type] = STATE(2885),
- [sym_flow_maybe_type] = STATE(2885),
- [sym_parenthesized_type] = STATE(2885),
- [sym_predefined_type] = STATE(2885),
- [sym_object_type] = STATE(2885),
- [sym_type_parameters] = STATE(5435),
- [sym_array_type] = STATE(2885),
- [sym_tuple_type] = STATE(2885),
- [sym_readonly_type] = STATE(2896),
- [sym_union_type] = STATE(2885),
- [sym_intersection_type] = STATE(2885),
- [sym_function_type] = STATE(2896),
- [sym_identifier] = ACTIONS(1496),
- [anon_sym_STAR] = ACTIONS(612),
- [anon_sym_LBRACE] = ACTIONS(3043),
- [anon_sym_typeof] = ACTIONS(3045),
- [anon_sym_import] = ACTIONS(133),
- [anon_sym_const] = ACTIONS(135),
- [anon_sym_LPAREN] = ACTIONS(1502),
- [anon_sym_LBRACK] = ACTIONS(1504),
- [anon_sym_DQUOTE] = ACTIONS(2275),
- [anon_sym_SQUOTE] = ACTIONS(2277),
- [anon_sym_new] = ACTIONS(1510),
- [anon_sym_AMP] = ACTIONS(3049),
- [anon_sym_PIPE] = ACTIONS(3051),
- [anon_sym_PLUS] = ACTIONS(2579),
- [anon_sym_DASH] = ACTIONS(2579),
- [anon_sym_LT] = ACTIONS(2581),
- [anon_sym_void] = ACTIONS(220),
- [sym_comment] = ACTIONS(5),
- [anon_sym_BQUOTE] = ACTIONS(1516),
- [sym_number] = ACTIONS(1518),
- [sym_this] = ACTIONS(1520),
- [sym_true] = ACTIONS(1522),
- [sym_false] = ACTIONS(1522),
- [sym_null] = ACTIONS(1522),
- [sym_undefined] = ACTIONS(1522),
- [anon_sym_readonly] = ACTIONS(1524),
- [anon_sym_QMARK] = ACTIONS(3057),
- [anon_sym_any] = ACTIONS(220),
- [anon_sym_number] = ACTIONS(220),
- [anon_sym_boolean] = ACTIONS(220),
- [anon_sym_string] = ACTIONS(220),
- [anon_sym_symbol] = ACTIONS(220),
- [anon_sym_object] = ACTIONS(220),
- [anon_sym_abstract] = ACTIONS(212),
- [anon_sym_infer] = ACTIONS(214),
- [anon_sym_keyof] = ACTIONS(3065),
- [anon_sym_unique] = ACTIONS(218),
- [anon_sym_unknown] = ACTIONS(220),
- [anon_sym_never] = ACTIONS(220),
- [anon_sym_LBRACE_PIPE] = ACTIONS(3067),
- [sym_html_comment] = ACTIONS(5),
- },
- [938] = {
- [sym_import] = STATE(4903),
- [sym_nested_identifier] = STATE(5707),
- [sym_string] = STATE(2889),
- [sym_formal_parameters] = STATE(5916),
- [sym_nested_type_identifier] = STATE(2828),
- [sym__type_query_member_expression_in_type_annotation] = STATE(3332),
- [sym__type_query_call_expression_in_type_annotation] = STATE(2850),
- [sym_type] = STATE(2876),
- [sym_constructor_type] = STATE(2896),
- [sym_primary_type] = STATE(2897),
- [sym_template_literal_type] = STATE(2885),
- [sym_infer_type] = STATE(2896),
- [sym_conditional_type] = STATE(2885),
- [sym_generic_type] = STATE(2885),
- [sym_type_query] = STATE(2885),
- [sym_index_type_query] = STATE(2885),
- [sym_lookup_type] = STATE(2885),
- [sym_literal_type] = STATE(2885),
- [sym__number] = STATE(2903),
- [sym_existential_type] = STATE(2885),
- [sym_flow_maybe_type] = STATE(2885),
- [sym_parenthesized_type] = STATE(2885),
- [sym_predefined_type] = STATE(2885),
- [sym_object_type] = STATE(2885),
- [sym_type_parameters] = STATE(5386),
- [sym_array_type] = STATE(2885),
- [sym_tuple_type] = STATE(2885),
- [sym_readonly_type] = STATE(2896),
- [sym_union_type] = STATE(2885),
- [sym_intersection_type] = STATE(2885),
- [sym_function_type] = STATE(2896),
- [sym_identifier] = ACTIONS(1496),
- [anon_sym_STAR] = ACTIONS(612),
- [anon_sym_LBRACE] = ACTIONS(3043),
- [anon_sym_typeof] = ACTIONS(3045),
- [anon_sym_import] = ACTIONS(133),
- [anon_sym_const] = ACTIONS(135),
- [anon_sym_LPAREN] = ACTIONS(1502),
- [anon_sym_LBRACK] = ACTIONS(1504),
- [anon_sym_DQUOTE] = ACTIONS(2275),
- [anon_sym_SQUOTE] = ACTIONS(2277),
- [anon_sym_new] = ACTIONS(3047),
- [anon_sym_AMP] = ACTIONS(3049),
- [anon_sym_PIPE] = ACTIONS(3051),
- [anon_sym_PLUS] = ACTIONS(2579),
- [anon_sym_DASH] = ACTIONS(2579),
- [anon_sym_LT] = ACTIONS(2581),
- [anon_sym_void] = ACTIONS(220),
- [sym_comment] = ACTIONS(5),
- [anon_sym_BQUOTE] = ACTIONS(1516),
- [sym_number] = ACTIONS(1518),
- [sym_this] = ACTIONS(1520),
- [sym_true] = ACTIONS(1522),
- [sym_false] = ACTIONS(1522),
- [sym_null] = ACTIONS(1522),
- [sym_undefined] = ACTIONS(1522),
- [anon_sym_readonly] = ACTIONS(3055),
- [anon_sym_QMARK] = ACTIONS(3057),
- [anon_sym_any] = ACTIONS(220),
- [anon_sym_number] = ACTIONS(220),
- [anon_sym_boolean] = ACTIONS(220),
- [anon_sym_string] = ACTIONS(220),
- [anon_sym_symbol] = ACTIONS(220),
- [anon_sym_object] = ACTIONS(220),
- [anon_sym_abstract] = ACTIONS(3059),
- [anon_sym_infer] = ACTIONS(3063),
- [anon_sym_keyof] = ACTIONS(3065),
- [anon_sym_unique] = ACTIONS(218),
- [anon_sym_unknown] = ACTIONS(220),
- [anon_sym_never] = ACTIONS(220),
- [anon_sym_LBRACE_PIPE] = ACTIONS(3067),
- [sym_html_comment] = ACTIONS(5),
- },
- [939] = {
- [sym_import] = STATE(4903),
- [sym_nested_identifier] = STATE(5707),
- [sym_string] = STATE(2889),
- [sym_formal_parameters] = STATE(5916),
- [sym_nested_type_identifier] = STATE(2828),
- [sym__type_query_member_expression_in_type_annotation] = STATE(3332),
- [sym__type_query_call_expression_in_type_annotation] = STATE(2850),
- [sym_type] = STATE(3813),
- [sym_constructor_type] = STATE(2896),
- [sym_primary_type] = STATE(2897),
- [sym_template_literal_type] = STATE(2885),
- [sym_infer_type] = STATE(2896),
- [sym_conditional_type] = STATE(2885),
- [sym_generic_type] = STATE(2885),
- [sym_type_query] = STATE(2885),
- [sym_index_type_query] = STATE(2885),
- [sym_lookup_type] = STATE(2885),
- [sym_literal_type] = STATE(2885),
- [sym__number] = STATE(2903),
- [sym_existential_type] = STATE(2885),
- [sym_flow_maybe_type] = STATE(2885),
- [sym_parenthesized_type] = STATE(2885),
- [sym_predefined_type] = STATE(2885),
- [sym_object_type] = STATE(2885),
- [sym_type_parameters] = STATE(5386),
- [sym_array_type] = STATE(2885),
- [sym_tuple_type] = STATE(2885),
- [sym_readonly_type] = STATE(2896),
- [sym_union_type] = STATE(2885),
- [sym_intersection_type] = STATE(2885),
- [sym_function_type] = STATE(2896),
- [sym_identifier] = ACTIONS(1496),
- [anon_sym_STAR] = ACTIONS(612),
- [anon_sym_LBRACE] = ACTIONS(3043),
- [anon_sym_typeof] = ACTIONS(3045),
- [anon_sym_import] = ACTIONS(133),
- [anon_sym_const] = ACTIONS(135),
- [anon_sym_LPAREN] = ACTIONS(1502),
- [anon_sym_LBRACK] = ACTIONS(1504),
- [anon_sym_DQUOTE] = ACTIONS(2275),
- [anon_sym_SQUOTE] = ACTIONS(2277),
- [anon_sym_new] = ACTIONS(3047),
- [anon_sym_AMP] = ACTIONS(3049),
- [anon_sym_PIPE] = ACTIONS(3051),
- [anon_sym_PLUS] = ACTIONS(2579),
- [anon_sym_DASH] = ACTIONS(2579),
- [anon_sym_LT] = ACTIONS(2581),
- [anon_sym_void] = ACTIONS(220),
- [sym_comment] = ACTIONS(5),
- [anon_sym_BQUOTE] = ACTIONS(1516),
- [sym_number] = ACTIONS(1518),
- [sym_this] = ACTIONS(1520),
- [sym_true] = ACTIONS(1522),
- [sym_false] = ACTIONS(1522),
- [sym_null] = ACTIONS(1522),
- [sym_undefined] = ACTIONS(1522),
- [anon_sym_readonly] = ACTIONS(3055),
- [anon_sym_QMARK] = ACTIONS(3057),
- [anon_sym_any] = ACTIONS(220),
- [anon_sym_number] = ACTIONS(220),
- [anon_sym_boolean] = ACTIONS(220),
- [anon_sym_string] = ACTIONS(220),
- [anon_sym_symbol] = ACTIONS(220),
- [anon_sym_object] = ACTIONS(220),
- [anon_sym_abstract] = ACTIONS(3059),
- [anon_sym_infer] = ACTIONS(3063),
- [anon_sym_keyof] = ACTIONS(3065),
- [anon_sym_unique] = ACTIONS(218),
- [anon_sym_unknown] = ACTIONS(220),
- [anon_sym_never] = ACTIONS(220),
- [anon_sym_LBRACE_PIPE] = ACTIONS(3067),
- [sym_html_comment] = ACTIONS(5),
- },
- [940] = {
- [sym_import] = STATE(5087),
- [sym_nested_identifier] = STATE(5707),
- [sym_string] = STATE(2889),
- [sym_formal_parameters] = STATE(5709),
- [sym_nested_type_identifier] = STATE(2828),
- [sym__type_query_member_expression_in_type_annotation] = STATE(2846),
- [sym__type_query_call_expression_in_type_annotation] = STATE(2850),
- [sym_type] = STATE(5076),
- [sym_constructor_type] = STATE(2896),
- [sym_primary_type] = STATE(4232),
- [sym_template_literal_type] = STATE(2885),
- [sym_infer_type] = STATE(4437),
- [sym_conditional_type] = STATE(2885),
- [sym_generic_type] = STATE(2885),
- [sym_type_query] = STATE(2885),
- [sym_index_type_query] = STATE(2885),
- [sym_lookup_type] = STATE(2885),
- [sym_literal_type] = STATE(2885),
- [sym__number] = STATE(2903),
- [sym_existential_type] = STATE(2885),
- [sym_flow_maybe_type] = STATE(2885),
- [sym_parenthesized_type] = STATE(2885),
- [sym_predefined_type] = STATE(2885),
- [sym_object_type] = STATE(2885),
- [sym_type_parameters] = STATE(5435),
- [sym_array_type] = STATE(2885),
- [sym_tuple_type] = STATE(2885),
- [sym_readonly_type] = STATE(2896),
- [sym_union_type] = STATE(2885),
- [sym_intersection_type] = STATE(2885),
- [sym_function_type] = STATE(2896),
- [sym_identifier] = ACTIONS(1496),
- [anon_sym_STAR] = ACTIONS(612),
- [anon_sym_LBRACE] = ACTIONS(1498),
- [anon_sym_typeof] = ACTIONS(1500),
- [anon_sym_import] = ACTIONS(133),
- [anon_sym_const] = ACTIONS(135),
- [anon_sym_LPAREN] = ACTIONS(1502),
- [anon_sym_LBRACK] = ACTIONS(1504),
- [anon_sym_DQUOTE] = ACTIONS(1506),
- [anon_sym_SQUOTE] = ACTIONS(1508),
- [anon_sym_new] = ACTIONS(1510),
- [anon_sym_AMP] = ACTIONS(741),
- [anon_sym_PIPE] = ACTIONS(743),
- [anon_sym_PLUS] = ACTIONS(2579),
- [anon_sym_DASH] = ACTIONS(2579),
- [anon_sym_LT] = ACTIONS(2581),
- [anon_sym_void] = ACTIONS(220),
- [sym_comment] = ACTIONS(5),
- [anon_sym_BQUOTE] = ACTIONS(1516),
- [sym_number] = ACTIONS(1518),
- [sym_this] = ACTIONS(1520),
- [sym_true] = ACTIONS(1522),
- [sym_false] = ACTIONS(1522),
- [sym_null] = ACTIONS(1522),
- [sym_undefined] = ACTIONS(1522),
- [anon_sym_readonly] = ACTIONS(1524),
- [anon_sym_QMARK] = ACTIONS(761),
- [anon_sym_any] = ACTIONS(220),
- [anon_sym_number] = ACTIONS(220),
- [anon_sym_boolean] = ACTIONS(220),
- [anon_sym_string] = ACTIONS(220),
- [anon_sym_symbol] = ACTIONS(220),
- [anon_sym_object] = ACTIONS(220),
- [anon_sym_abstract] = ACTIONS(212),
- [anon_sym_infer] = ACTIONS(214),
- [anon_sym_keyof] = ACTIONS(216),
- [anon_sym_unique] = ACTIONS(218),
- [anon_sym_unknown] = ACTIONS(220),
- [anon_sym_never] = ACTIONS(220),
- [anon_sym_LBRACE_PIPE] = ACTIONS(222),
- [sym_html_comment] = ACTIONS(5),
- },
- [941] = {
- [sym_import] = STATE(4903),
- [sym_nested_identifier] = STATE(5707),
- [sym_string] = STATE(2889),
- [sym_formal_parameters] = STATE(5916),
- [sym_nested_type_identifier] = STATE(2828),
- [sym__type_query_member_expression_in_type_annotation] = STATE(3332),
- [sym__type_query_call_expression_in_type_annotation] = STATE(2850),
- [sym_type] = STATE(3819),
- [sym_constructor_type] = STATE(2896),
- [sym_primary_type] = STATE(2897),
- [sym_template_literal_type] = STATE(2885),
- [sym_infer_type] = STATE(2896),
- [sym_conditional_type] = STATE(2885),
- [sym_generic_type] = STATE(2885),
- [sym_type_query] = STATE(2885),
- [sym_index_type_query] = STATE(2885),
- [sym_lookup_type] = STATE(2885),
- [sym_literal_type] = STATE(2885),
- [sym__number] = STATE(2903),
- [sym_existential_type] = STATE(2885),
- [sym_flow_maybe_type] = STATE(2885),
- [sym_parenthesized_type] = STATE(2885),
- [sym_predefined_type] = STATE(2885),
- [sym_object_type] = STATE(2885),
- [sym_type_parameters] = STATE(5386),
- [sym_array_type] = STATE(2885),
- [sym_tuple_type] = STATE(2885),
- [sym_readonly_type] = STATE(2896),
- [sym_union_type] = STATE(2885),
- [sym_intersection_type] = STATE(2885),
- [sym_function_type] = STATE(2896),
- [sym_identifier] = ACTIONS(1496),
- [anon_sym_STAR] = ACTIONS(612),
- [anon_sym_LBRACE] = ACTIONS(3043),
- [anon_sym_typeof] = ACTIONS(3045),
- [anon_sym_import] = ACTIONS(133),
- [anon_sym_const] = ACTIONS(135),
- [anon_sym_LPAREN] = ACTIONS(1502),
- [anon_sym_LBRACK] = ACTIONS(1504),
- [anon_sym_DQUOTE] = ACTIONS(2275),
- [anon_sym_SQUOTE] = ACTIONS(2277),
- [anon_sym_new] = ACTIONS(3047),
- [anon_sym_AMP] = ACTIONS(3049),
- [anon_sym_PIPE] = ACTIONS(3051),
- [anon_sym_PLUS] = ACTIONS(2579),
- [anon_sym_DASH] = ACTIONS(2579),
- [anon_sym_LT] = ACTIONS(2581),
- [anon_sym_void] = ACTIONS(220),
- [sym_comment] = ACTIONS(5),
- [anon_sym_BQUOTE] = ACTIONS(1516),
- [sym_number] = ACTIONS(1518),
- [sym_this] = ACTIONS(1520),
- [sym_true] = ACTIONS(1522),
- [sym_false] = ACTIONS(1522),
- [sym_null] = ACTIONS(1522),
- [sym_undefined] = ACTIONS(1522),
- [anon_sym_readonly] = ACTIONS(3055),
- [anon_sym_QMARK] = ACTIONS(3057),
- [anon_sym_any] = ACTIONS(220),
- [anon_sym_number] = ACTIONS(220),
- [anon_sym_boolean] = ACTIONS(220),
- [anon_sym_string] = ACTIONS(220),
- [anon_sym_symbol] = ACTIONS(220),
- [anon_sym_object] = ACTIONS(220),
- [anon_sym_abstract] = ACTIONS(3059),
- [anon_sym_infer] = ACTIONS(3063),
- [anon_sym_keyof] = ACTIONS(3065),
- [anon_sym_unique] = ACTIONS(218),
- [anon_sym_unknown] = ACTIONS(220),
- [anon_sym_never] = ACTIONS(220),
- [anon_sym_LBRACE_PIPE] = ACTIONS(3067),
- [sym_html_comment] = ACTIONS(5),
- },
- [942] = {
- [sym_import] = STATE(4903),
- [sym_nested_identifier] = STATE(5707),
- [sym_string] = STATE(2889),
- [sym_formal_parameters] = STATE(5916),
- [sym_nested_type_identifier] = STATE(2828),
- [sym__type_query_member_expression_in_type_annotation] = STATE(3332),
- [sym__type_query_call_expression_in_type_annotation] = STATE(2850),
- [sym_type] = STATE(3820),
- [sym_constructor_type] = STATE(2896),
- [sym_primary_type] = STATE(2897),
- [sym_template_literal_type] = STATE(2885),
- [sym_infer_type] = STATE(2896),
- [sym_conditional_type] = STATE(2885),
- [sym_generic_type] = STATE(2885),
- [sym_type_query] = STATE(2885),
- [sym_index_type_query] = STATE(2885),
- [sym_lookup_type] = STATE(2885),
- [sym_literal_type] = STATE(2885),
- [sym__number] = STATE(2903),
- [sym_existential_type] = STATE(2885),
- [sym_flow_maybe_type] = STATE(2885),
- [sym_parenthesized_type] = STATE(2885),
- [sym_predefined_type] = STATE(2885),
- [sym_object_type] = STATE(2885),
- [sym_type_parameters] = STATE(5386),
- [sym_array_type] = STATE(2885),
- [sym_tuple_type] = STATE(2885),
- [sym_readonly_type] = STATE(2896),
- [sym_union_type] = STATE(2885),
- [sym_intersection_type] = STATE(2885),
- [sym_function_type] = STATE(2896),
- [sym_identifier] = ACTIONS(1496),
- [anon_sym_STAR] = ACTIONS(612),
- [anon_sym_LBRACE] = ACTIONS(3043),
- [anon_sym_typeof] = ACTIONS(3045),
- [anon_sym_import] = ACTIONS(133),
- [anon_sym_const] = ACTIONS(135),
- [anon_sym_LPAREN] = ACTIONS(1502),
- [anon_sym_LBRACK] = ACTIONS(1504),
- [anon_sym_DQUOTE] = ACTIONS(2275),
- [anon_sym_SQUOTE] = ACTIONS(2277),
- [anon_sym_new] = ACTIONS(3047),
- [anon_sym_AMP] = ACTIONS(3049),
- [anon_sym_PIPE] = ACTIONS(3051),
- [anon_sym_PLUS] = ACTIONS(2579),
- [anon_sym_DASH] = ACTIONS(2579),
- [anon_sym_LT] = ACTIONS(2581),
- [anon_sym_void] = ACTIONS(220),
- [sym_comment] = ACTIONS(5),
- [anon_sym_BQUOTE] = ACTIONS(1516),
- [sym_number] = ACTIONS(1518),
- [sym_this] = ACTIONS(1520),
- [sym_true] = ACTIONS(1522),
- [sym_false] = ACTIONS(1522),
- [sym_null] = ACTIONS(1522),
- [sym_undefined] = ACTIONS(1522),
- [anon_sym_readonly] = ACTIONS(3055),
- [anon_sym_QMARK] = ACTIONS(3057),
- [anon_sym_any] = ACTIONS(220),
- [anon_sym_number] = ACTIONS(220),
- [anon_sym_boolean] = ACTIONS(220),
- [anon_sym_string] = ACTIONS(220),
- [anon_sym_symbol] = ACTIONS(220),
- [anon_sym_object] = ACTIONS(220),
- [anon_sym_abstract] = ACTIONS(3059),
- [anon_sym_infer] = ACTIONS(3063),
- [anon_sym_keyof] = ACTIONS(3065),
- [anon_sym_unique] = ACTIONS(218),
- [anon_sym_unknown] = ACTIONS(220),
- [anon_sym_never] = ACTIONS(220),
- [anon_sym_LBRACE_PIPE] = ACTIONS(3067),
- [sym_html_comment] = ACTIONS(5),
- },
- [943] = {
- [sym_import] = STATE(4903),
- [sym_nested_identifier] = STATE(5707),
- [sym_string] = STATE(2889),
- [sym_formal_parameters] = STATE(5916),
- [sym_nested_type_identifier] = STATE(2828),
- [sym__type_query_member_expression_in_type_annotation] = STATE(3332),
- [sym__type_query_call_expression_in_type_annotation] = STATE(2850),
- [sym_type] = STATE(2921),
- [sym_constructor_type] = STATE(2896),
- [sym_primary_type] = STATE(2897),
- [sym_template_literal_type] = STATE(2885),
- [sym_infer_type] = STATE(2896),
- [sym_conditional_type] = STATE(2885),
- [sym_generic_type] = STATE(2885),
- [sym_type_query] = STATE(2885),
- [sym_index_type_query] = STATE(2885),
- [sym_lookup_type] = STATE(2885),
- [sym_literal_type] = STATE(2885),
- [sym__number] = STATE(2903),
- [sym_existential_type] = STATE(2885),
- [sym_flow_maybe_type] = STATE(2885),
- [sym_parenthesized_type] = STATE(2885),
- [sym_predefined_type] = STATE(2885),
- [sym_object_type] = STATE(2885),
- [sym_type_parameters] = STATE(5386),
- [sym_array_type] = STATE(2885),
- [sym_tuple_type] = STATE(2885),
- [sym_readonly_type] = STATE(2896),
- [sym_union_type] = STATE(2885),
- [sym_intersection_type] = STATE(2885),
- [sym_function_type] = STATE(2896),
- [sym_identifier] = ACTIONS(1496),
- [anon_sym_STAR] = ACTIONS(612),
- [anon_sym_LBRACE] = ACTIONS(3043),
- [anon_sym_typeof] = ACTIONS(3045),
- [anon_sym_import] = ACTIONS(133),
- [anon_sym_const] = ACTIONS(135),
- [anon_sym_LPAREN] = ACTIONS(1502),
- [anon_sym_LBRACK] = ACTIONS(1504),
- [anon_sym_DQUOTE] = ACTIONS(2275),
- [anon_sym_SQUOTE] = ACTIONS(2277),
- [anon_sym_new] = ACTIONS(3047),
- [anon_sym_AMP] = ACTIONS(3049),
- [anon_sym_PIPE] = ACTIONS(3051),
- [anon_sym_PLUS] = ACTIONS(2579),
- [anon_sym_DASH] = ACTIONS(2579),
- [anon_sym_LT] = ACTIONS(2581),
- [anon_sym_void] = ACTIONS(220),
- [sym_comment] = ACTIONS(5),
- [anon_sym_BQUOTE] = ACTIONS(1516),
- [sym_number] = ACTIONS(1518),
- [sym_this] = ACTIONS(1520),
- [sym_true] = ACTIONS(1522),
- [sym_false] = ACTIONS(1522),
- [sym_null] = ACTIONS(1522),
- [sym_undefined] = ACTIONS(1522),
- [anon_sym_readonly] = ACTIONS(3055),
- [anon_sym_QMARK] = ACTIONS(3057),
- [anon_sym_any] = ACTIONS(220),
- [anon_sym_number] = ACTIONS(220),
- [anon_sym_boolean] = ACTIONS(220),
- [anon_sym_string] = ACTIONS(220),
- [anon_sym_symbol] = ACTIONS(220),
- [anon_sym_object] = ACTIONS(220),
- [anon_sym_abstract] = ACTIONS(3059),
- [anon_sym_infer] = ACTIONS(3063),
- [anon_sym_keyof] = ACTIONS(3065),
- [anon_sym_unique] = ACTIONS(218),
- [anon_sym_unknown] = ACTIONS(220),
- [anon_sym_never] = ACTIONS(220),
- [anon_sym_LBRACE_PIPE] = ACTIONS(3067),
- [sym_html_comment] = ACTIONS(5),
- },
- [944] = {
- [sym_import] = STATE(4903),
- [sym_nested_identifier] = STATE(5707),
- [sym_string] = STATE(2889),
- [sym_formal_parameters] = STATE(5916),
- [sym_nested_type_identifier] = STATE(2828),
- [sym__type_query_member_expression_in_type_annotation] = STATE(3332),
- [sym__type_query_call_expression_in_type_annotation] = STATE(2850),
- [sym_type] = STATE(3828),
- [sym_constructor_type] = STATE(2896),
- [sym_primary_type] = STATE(2897),
- [sym_template_literal_type] = STATE(2885),
- [sym_infer_type] = STATE(2896),
- [sym_conditional_type] = STATE(2885),
- [sym_generic_type] = STATE(2885),
- [sym_type_query] = STATE(2885),
- [sym_index_type_query] = STATE(2885),
- [sym_lookup_type] = STATE(2885),
- [sym_literal_type] = STATE(2885),
- [sym__number] = STATE(2903),
- [sym_existential_type] = STATE(2885),
- [sym_flow_maybe_type] = STATE(2885),
- [sym_parenthesized_type] = STATE(2885),
- [sym_predefined_type] = STATE(2885),
- [sym_object_type] = STATE(2885),
- [sym_type_parameters] = STATE(5386),
- [sym_array_type] = STATE(2885),
- [sym_tuple_type] = STATE(2885),
- [sym_readonly_type] = STATE(2896),
- [sym_union_type] = STATE(2885),
- [sym_intersection_type] = STATE(2885),
- [sym_function_type] = STATE(2896),
- [sym_identifier] = ACTIONS(1496),
- [anon_sym_STAR] = ACTIONS(612),
- [anon_sym_LBRACE] = ACTIONS(3043),
- [anon_sym_typeof] = ACTIONS(3045),
- [anon_sym_import] = ACTIONS(133),
- [anon_sym_const] = ACTIONS(135),
- [anon_sym_LPAREN] = ACTIONS(1502),
- [anon_sym_LBRACK] = ACTIONS(1504),
- [anon_sym_DQUOTE] = ACTIONS(2275),
- [anon_sym_SQUOTE] = ACTIONS(2277),
- [anon_sym_new] = ACTIONS(3047),
- [anon_sym_AMP] = ACTIONS(3049),
- [anon_sym_PIPE] = ACTIONS(3051),
- [anon_sym_PLUS] = ACTIONS(2579),
- [anon_sym_DASH] = ACTIONS(2579),
- [anon_sym_LT] = ACTIONS(2581),
- [anon_sym_void] = ACTIONS(220),
- [sym_comment] = ACTIONS(5),
- [anon_sym_BQUOTE] = ACTIONS(1516),
- [sym_number] = ACTIONS(1518),
- [sym_this] = ACTIONS(1520),
- [sym_true] = ACTIONS(1522),
- [sym_false] = ACTIONS(1522),
- [sym_null] = ACTIONS(1522),
- [sym_undefined] = ACTIONS(1522),
- [anon_sym_readonly] = ACTIONS(3055),
- [anon_sym_QMARK] = ACTIONS(3057),
- [anon_sym_any] = ACTIONS(220),
- [anon_sym_number] = ACTIONS(220),
- [anon_sym_boolean] = ACTIONS(220),
- [anon_sym_string] = ACTIONS(220),
- [anon_sym_symbol] = ACTIONS(220),
- [anon_sym_object] = ACTIONS(220),
- [anon_sym_abstract] = ACTIONS(3059),
- [anon_sym_infer] = ACTIONS(3063),
- [anon_sym_keyof] = ACTIONS(3065),
- [anon_sym_unique] = ACTIONS(218),
- [anon_sym_unknown] = ACTIONS(220),
- [anon_sym_never] = ACTIONS(220),
- [anon_sym_LBRACE_PIPE] = ACTIONS(3067),
- [sym_html_comment] = ACTIONS(5),
- },
- [945] = {
- [sym_import] = STATE(5139),
- [sym_nested_identifier] = STATE(5610),
- [sym_string] = STATE(3160),
- [sym_formal_parameters] = STATE(5827),
- [sym_nested_type_identifier] = STATE(3047),
- [sym__type_query_member_expression_in_type_annotation] = STATE(2958),
- [sym__type_query_call_expression_in_type_annotation] = STATE(3113),
- [sym_type] = STATE(3171),
- [sym_constructor_type] = STATE(3205),
- [sym_primary_type] = STATE(3150),
- [sym_template_literal_type] = STATE(3195),
- [sym_infer_type] = STATE(3205),
- [sym_conditional_type] = STATE(3195),
- [sym_generic_type] = STATE(3195),
- [sym_type_query] = STATE(3195),
- [sym_index_type_query] = STATE(3195),
- [sym_lookup_type] = STATE(3195),
- [sym_literal_type] = STATE(3195),
- [sym__number] = STATE(3154),
- [sym_existential_type] = STATE(3195),
- [sym_flow_maybe_type] = STATE(3195),
- [sym_parenthesized_type] = STATE(3195),
- [sym_predefined_type] = STATE(3195),
- [sym_object_type] = STATE(3195),
- [sym_type_parameters] = STATE(5228),
- [sym_array_type] = STATE(3195),
- [sym_tuple_type] = STATE(3195),
- [sym_readonly_type] = STATE(3205),
- [sym_union_type] = STATE(3195),
- [sym_intersection_type] = STATE(3195),
- [sym_function_type] = STATE(3205),
- [sym_identifier] = ACTIONS(1582),
- [anon_sym_STAR] = ACTIONS(992),
- [anon_sym_LBRACE] = ACTIONS(1586),
- [anon_sym_typeof] = ACTIONS(1588),
- [anon_sym_import] = ACTIONS(133),
- [anon_sym_const] = ACTIONS(998),
- [anon_sym_LPAREN] = ACTIONS(1590),
- [anon_sym_LBRACK] = ACTIONS(1592),
- [anon_sym_DQUOTE] = ACTIONS(1594),
- [anon_sym_SQUOTE] = ACTIONS(1596),
- [anon_sym_new] = ACTIONS(1598),
- [anon_sym_AMP] = ACTIONS(1006),
- [anon_sym_PIPE] = ACTIONS(1008),
- [anon_sym_PLUS] = ACTIONS(2977),
- [anon_sym_DASH] = ACTIONS(2977),
- [anon_sym_LT] = ACTIONS(2581),
- [anon_sym_void] = ACTIONS(1038),
- [sym_comment] = ACTIONS(5),
- [anon_sym_BQUOTE] = ACTIONS(1606),
- [sym_number] = ACTIONS(1608),
- [sym_this] = ACTIONS(1610),
- [sym_true] = ACTIONS(1612),
- [sym_false] = ACTIONS(1612),
- [sym_null] = ACTIONS(1612),
- [sym_undefined] = ACTIONS(1612),
- [anon_sym_readonly] = ACTIONS(1614),
- [anon_sym_QMARK] = ACTIONS(1026),
- [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_object] = ACTIONS(1038),
- [anon_sym_abstract] = ACTIONS(1030),
- [anon_sym_infer] = ACTIONS(1032),
- [anon_sym_keyof] = ACTIONS(1034),
- [anon_sym_unique] = ACTIONS(1036),
- [anon_sym_unknown] = ACTIONS(1038),
- [anon_sym_never] = ACTIONS(1038),
- [anon_sym_LBRACE_PIPE] = ACTIONS(1040),
- [sym_html_comment] = ACTIONS(5),
- },
- [946] = {
- [sym_import] = STATE(5087),
- [sym_nested_identifier] = STATE(5707),
- [sym_string] = STATE(2889),
- [sym_formal_parameters] = STATE(5709),
- [sym_nested_type_identifier] = STATE(2828),
- [sym__type_query_member_expression_in_type_annotation] = STATE(2846),
- [sym__type_query_call_expression_in_type_annotation] = STATE(2850),
- [sym_type] = STATE(3750),
- [sym_constructor_type] = STATE(2896),
- [sym_primary_type] = STATE(2897),
- [sym_template_literal_type] = STATE(2885),
- [sym_infer_type] = STATE(2896),
- [sym_conditional_type] = STATE(2885),
- [sym_generic_type] = STATE(2885),
- [sym_type_query] = STATE(2885),
- [sym_index_type_query] = STATE(2885),
- [sym_lookup_type] = STATE(2885),
- [sym_literal_type] = STATE(2885),
- [sym__number] = STATE(2903),
- [sym_existential_type] = STATE(2885),
- [sym_flow_maybe_type] = STATE(2885),
- [sym_parenthesized_type] = STATE(2885),
- [sym_predefined_type] = STATE(2885),
- [sym_object_type] = STATE(2885),
- [sym_type_parameters] = STATE(5435),
- [sym_array_type] = STATE(2885),
- [sym_tuple_type] = STATE(2885),
- [sym_readonly_type] = STATE(2896),
- [sym_union_type] = STATE(2885),
- [sym_intersection_type] = STATE(2885),
- [sym_function_type] = STATE(2896),
- [sym_identifier] = ACTIONS(1496),
- [anon_sym_STAR] = ACTIONS(612),
- [anon_sym_LBRACE] = ACTIONS(1498),
- [anon_sym_typeof] = ACTIONS(1500),
- [anon_sym_import] = ACTIONS(133),
- [anon_sym_const] = ACTIONS(135),
- [anon_sym_LPAREN] = ACTIONS(1502),
- [anon_sym_LBRACK] = ACTIONS(1504),
- [anon_sym_DQUOTE] = ACTIONS(1506),
- [anon_sym_SQUOTE] = ACTIONS(1508),
- [anon_sym_new] = ACTIONS(1510),
- [anon_sym_AMP] = ACTIONS(741),
- [anon_sym_PIPE] = ACTIONS(743),
- [anon_sym_PLUS] = ACTIONS(2579),
- [anon_sym_DASH] = ACTIONS(2579),
- [anon_sym_LT] = ACTIONS(2581),
- [anon_sym_void] = ACTIONS(220),
- [sym_comment] = ACTIONS(5),
- [anon_sym_BQUOTE] = ACTIONS(1516),
- [sym_number] = ACTIONS(1518),
- [sym_this] = ACTIONS(1520),
- [sym_true] = ACTIONS(1522),
- [sym_false] = ACTIONS(1522),
- [sym_null] = ACTIONS(1522),
- [sym_undefined] = ACTIONS(1522),
- [anon_sym_readonly] = ACTIONS(1524),
- [anon_sym_QMARK] = ACTIONS(761),
- [anon_sym_any] = ACTIONS(220),
- [anon_sym_number] = ACTIONS(220),
- [anon_sym_boolean] = ACTIONS(220),
- [anon_sym_string] = ACTIONS(220),
- [anon_sym_symbol] = ACTIONS(220),
- [anon_sym_object] = ACTIONS(220),
- [anon_sym_abstract] = ACTIONS(212),
- [anon_sym_infer] = ACTIONS(214),
- [anon_sym_keyof] = ACTIONS(216),
- [anon_sym_unique] = ACTIONS(218),
- [anon_sym_unknown] = ACTIONS(220),
- [anon_sym_never] = ACTIONS(220),
- [anon_sym_LBRACE_PIPE] = ACTIONS(222),
- [sym_html_comment] = ACTIONS(5),
- },
- [947] = {
- [sym_import] = STATE(5139),
- [sym_nested_identifier] = STATE(5610),
- [sym_string] = STATE(3160),
- [sym_formal_parameters] = STATE(5827),
- [sym_nested_type_identifier] = STATE(3047),
- [sym__type_query_member_expression_in_type_annotation] = STATE(2958),
- [sym__type_query_call_expression_in_type_annotation] = STATE(3113),
- [sym_type] = STATE(3176),
- [sym_constructor_type] = STATE(3205),
- [sym_primary_type] = STATE(3150),
- [sym_template_literal_type] = STATE(3195),
- [sym_infer_type] = STATE(3205),
- [sym_conditional_type] = STATE(3195),
- [sym_generic_type] = STATE(3195),
- [sym_type_query] = STATE(3195),
- [sym_index_type_query] = STATE(3195),
- [sym_lookup_type] = STATE(3195),
- [sym_literal_type] = STATE(3195),
- [sym__number] = STATE(3154),
- [sym_existential_type] = STATE(3195),
- [sym_flow_maybe_type] = STATE(3195),
- [sym_parenthesized_type] = STATE(3195),
- [sym_predefined_type] = STATE(3195),
- [sym_object_type] = STATE(3195),
- [sym_type_parameters] = STATE(5228),
- [sym_array_type] = STATE(3195),
- [sym_tuple_type] = STATE(3195),
- [sym_readonly_type] = STATE(3205),
- [sym_union_type] = STATE(3195),
- [sym_intersection_type] = STATE(3195),
- [sym_function_type] = STATE(3205),
- [sym_identifier] = ACTIONS(1582),
- [anon_sym_STAR] = ACTIONS(992),
- [anon_sym_LBRACE] = ACTIONS(1586),
- [anon_sym_typeof] = ACTIONS(1588),
- [anon_sym_import] = ACTIONS(133),
- [anon_sym_const] = ACTIONS(998),
- [anon_sym_LPAREN] = ACTIONS(1590),
- [anon_sym_LBRACK] = ACTIONS(1592),
- [anon_sym_DQUOTE] = ACTIONS(1594),
- [anon_sym_SQUOTE] = ACTIONS(1596),
- [anon_sym_new] = ACTIONS(1598),
- [anon_sym_AMP] = ACTIONS(1006),
- [anon_sym_PIPE] = ACTIONS(1008),
- [anon_sym_PLUS] = ACTIONS(2977),
- [anon_sym_DASH] = ACTIONS(2977),
- [anon_sym_LT] = ACTIONS(2581),
- [anon_sym_void] = ACTIONS(1038),
- [sym_comment] = ACTIONS(5),
- [anon_sym_BQUOTE] = ACTIONS(1606),
- [sym_number] = ACTIONS(1608),
- [sym_this] = ACTIONS(1610),
- [sym_true] = ACTIONS(1612),
- [sym_false] = ACTIONS(1612),
- [sym_null] = ACTIONS(1612),
- [sym_undefined] = ACTIONS(1612),
- [anon_sym_readonly] = ACTIONS(1614),
- [anon_sym_QMARK] = ACTIONS(1026),
- [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_object] = ACTIONS(1038),
- [anon_sym_abstract] = ACTIONS(1030),
- [anon_sym_infer] = ACTIONS(1032),
- [anon_sym_keyof] = ACTIONS(1034),
- [anon_sym_unique] = ACTIONS(1036),
- [anon_sym_unknown] = ACTIONS(1038),
- [anon_sym_never] = ACTIONS(1038),
- [anon_sym_LBRACE_PIPE] = ACTIONS(1040),
- [sym_html_comment] = ACTIONS(5),
- },
- [948] = {
- [sym_import] = STATE(4903),
- [sym_nested_identifier] = STATE(5707),
- [sym_string] = STATE(2889),
- [sym_formal_parameters] = STATE(5916),
- [sym_nested_type_identifier] = STATE(2828),
- [sym__type_query_member_expression_in_type_annotation] = STATE(3332),
- [sym__type_query_call_expression_in_type_annotation] = STATE(2850),
- [sym_type] = STATE(2854),
- [sym_constructor_type] = STATE(2896),
- [sym_primary_type] = STATE(2897),
- [sym_template_literal_type] = STATE(2885),
- [sym_infer_type] = STATE(2896),
- [sym_conditional_type] = STATE(2885),
- [sym_generic_type] = STATE(2885),
- [sym_type_query] = STATE(2885),
- [sym_index_type_query] = STATE(2885),
- [sym_lookup_type] = STATE(2885),
- [sym_literal_type] = STATE(2885),
- [sym__number] = STATE(2903),
- [sym_existential_type] = STATE(2885),
- [sym_flow_maybe_type] = STATE(2885),
- [sym_parenthesized_type] = STATE(2885),
- [sym_predefined_type] = STATE(2885),
- [sym_object_type] = STATE(2885),
- [sym_type_parameters] = STATE(5386),
- [sym_array_type] = STATE(2885),
- [sym_tuple_type] = STATE(2885),
- [sym_readonly_type] = STATE(2896),
- [sym_union_type] = STATE(2885),
- [sym_intersection_type] = STATE(2885),
- [sym_function_type] = STATE(2896),
- [sym_identifier] = ACTIONS(1496),
- [anon_sym_STAR] = ACTIONS(612),
- [anon_sym_LBRACE] = ACTIONS(3043),
- [anon_sym_typeof] = ACTIONS(3045),
- [anon_sym_import] = ACTIONS(133),
- [anon_sym_const] = ACTIONS(135),
- [anon_sym_LPAREN] = ACTIONS(1502),
- [anon_sym_LBRACK] = ACTIONS(1504),
- [anon_sym_DQUOTE] = ACTIONS(2275),
- [anon_sym_SQUOTE] = ACTIONS(2277),
- [anon_sym_new] = ACTIONS(3047),
- [anon_sym_AMP] = ACTIONS(3049),
- [anon_sym_PIPE] = ACTIONS(3051),
- [anon_sym_PLUS] = ACTIONS(2579),
- [anon_sym_DASH] = ACTIONS(2579),
- [anon_sym_LT] = ACTIONS(2581),
- [anon_sym_void] = ACTIONS(220),
- [sym_comment] = ACTIONS(5),
- [anon_sym_BQUOTE] = ACTIONS(1516),
- [sym_number] = ACTIONS(1518),
- [sym_this] = ACTIONS(1520),
- [sym_true] = ACTIONS(1522),
- [sym_false] = ACTIONS(1522),
- [sym_null] = ACTIONS(1522),
- [sym_undefined] = ACTIONS(1522),
- [anon_sym_readonly] = ACTIONS(3055),
- [anon_sym_QMARK] = ACTIONS(3057),
- [anon_sym_any] = ACTIONS(220),
- [anon_sym_number] = ACTIONS(220),
- [anon_sym_boolean] = ACTIONS(220),
- [anon_sym_string] = ACTIONS(220),
- [anon_sym_symbol] = ACTIONS(220),
- [anon_sym_object] = ACTIONS(220),
- [anon_sym_abstract] = ACTIONS(3059),
- [anon_sym_infer] = ACTIONS(3063),
- [anon_sym_keyof] = ACTIONS(3065),
- [anon_sym_unique] = ACTIONS(218),
- [anon_sym_unknown] = ACTIONS(220),
- [anon_sym_never] = ACTIONS(220),
- [anon_sym_LBRACE_PIPE] = ACTIONS(3067),
- [sym_html_comment] = ACTIONS(5),
- },
- [949] = {
- [sym_import] = STATE(4903),
- [sym_nested_identifier] = STATE(5707),
- [sym_string] = STATE(2889),
- [sym_formal_parameters] = STATE(5916),
- [sym_nested_type_identifier] = STATE(2828),
- [sym__type_query_member_expression_in_type_annotation] = STATE(3332),
- [sym__type_query_call_expression_in_type_annotation] = STATE(2850),
- [sym_type] = STATE(2859),
- [sym_constructor_type] = STATE(2896),
- [sym_primary_type] = STATE(2897),
- [sym_template_literal_type] = STATE(2885),
- [sym_infer_type] = STATE(2896),
- [sym_conditional_type] = STATE(2885),
- [sym_generic_type] = STATE(2885),
- [sym_type_query] = STATE(2885),
- [sym_index_type_query] = STATE(2885),
- [sym_lookup_type] = STATE(2885),
- [sym_literal_type] = STATE(2885),
- [sym__number] = STATE(2903),
- [sym_existential_type] = STATE(2885),
- [sym_flow_maybe_type] = STATE(2885),
- [sym_parenthesized_type] = STATE(2885),
- [sym_predefined_type] = STATE(2885),
- [sym_object_type] = STATE(2885),
- [sym_type_parameters] = STATE(5386),
- [sym_array_type] = STATE(2885),
- [sym_tuple_type] = STATE(2885),
- [sym_readonly_type] = STATE(2896),
- [sym_union_type] = STATE(2885),
- [sym_intersection_type] = STATE(2885),
- [sym_function_type] = STATE(2896),
- [sym_identifier] = ACTIONS(1496),
- [anon_sym_STAR] = ACTIONS(612),
- [anon_sym_LBRACE] = ACTIONS(3043),
- [anon_sym_typeof] = ACTIONS(3045),
- [anon_sym_import] = ACTIONS(133),
- [anon_sym_const] = ACTIONS(135),
- [anon_sym_LPAREN] = ACTIONS(1502),
- [anon_sym_LBRACK] = ACTIONS(1504),
- [anon_sym_DQUOTE] = ACTIONS(2275),
- [anon_sym_SQUOTE] = ACTIONS(2277),
- [anon_sym_new] = ACTIONS(3047),
- [anon_sym_AMP] = ACTIONS(3049),
- [anon_sym_PIPE] = ACTIONS(3051),
- [anon_sym_PLUS] = ACTIONS(2579),
- [anon_sym_DASH] = ACTIONS(2579),
- [anon_sym_LT] = ACTIONS(2581),
- [anon_sym_void] = ACTIONS(220),
- [sym_comment] = ACTIONS(5),
- [anon_sym_BQUOTE] = ACTIONS(1516),
- [sym_number] = ACTIONS(1518),
- [sym_this] = ACTIONS(1520),
- [sym_true] = ACTIONS(1522),
- [sym_false] = ACTIONS(1522),
- [sym_null] = ACTIONS(1522),
- [sym_undefined] = ACTIONS(1522),
- [anon_sym_readonly] = ACTIONS(3055),
- [anon_sym_QMARK] = ACTIONS(3057),
- [anon_sym_any] = ACTIONS(220),
- [anon_sym_number] = ACTIONS(220),
- [anon_sym_boolean] = ACTIONS(220),
- [anon_sym_string] = ACTIONS(220),
- [anon_sym_symbol] = ACTIONS(220),
- [anon_sym_object] = ACTIONS(220),
- [anon_sym_abstract] = ACTIONS(3059),
- [anon_sym_infer] = ACTIONS(3063),
- [anon_sym_keyof] = ACTIONS(3065),
- [anon_sym_unique] = ACTIONS(218),
- [anon_sym_unknown] = ACTIONS(220),
- [anon_sym_never] = ACTIONS(220),
- [anon_sym_LBRACE_PIPE] = ACTIONS(3067),
- [sym_html_comment] = ACTIONS(5),
- },
- [950] = {
- [sym_import] = STATE(4903),
- [sym_nested_identifier] = STATE(5707),
- [sym_string] = STATE(2889),
- [sym_formal_parameters] = STATE(5916),
- [sym_nested_type_identifier] = STATE(2828),
- [sym__type_query_member_expression_in_type_annotation] = STATE(3332),
- [sym__type_query_call_expression_in_type_annotation] = STATE(2850),
- [sym_type] = STATE(2857),
- [sym_constructor_type] = STATE(2896),
- [sym_primary_type] = STATE(2897),
- [sym_template_literal_type] = STATE(2885),
- [sym_infer_type] = STATE(2896),
- [sym_conditional_type] = STATE(2885),
- [sym_generic_type] = STATE(2885),
- [sym_type_query] = STATE(2885),
- [sym_index_type_query] = STATE(2885),
- [sym_lookup_type] = STATE(2885),
- [sym_literal_type] = STATE(2885),
- [sym__number] = STATE(2903),
- [sym_existential_type] = STATE(2885),
- [sym_flow_maybe_type] = STATE(2885),
- [sym_parenthesized_type] = STATE(2885),
- [sym_predefined_type] = STATE(2885),
- [sym_object_type] = STATE(2885),
- [sym_type_parameters] = STATE(5386),
- [sym_array_type] = STATE(2885),
- [sym_tuple_type] = STATE(2885),
- [sym_readonly_type] = STATE(2896),
- [sym_union_type] = STATE(2885),
- [sym_intersection_type] = STATE(2885),
- [sym_function_type] = STATE(2896),
- [sym_identifier] = ACTIONS(1496),
- [anon_sym_STAR] = ACTIONS(612),
- [anon_sym_LBRACE] = ACTIONS(3043),
- [anon_sym_typeof] = ACTIONS(3045),
- [anon_sym_import] = ACTIONS(133),
- [anon_sym_const] = ACTIONS(135),
- [anon_sym_LPAREN] = ACTIONS(1502),
- [anon_sym_LBRACK] = ACTIONS(1504),
- [anon_sym_DQUOTE] = ACTIONS(2275),
- [anon_sym_SQUOTE] = ACTIONS(2277),
- [anon_sym_new] = ACTIONS(3047),
- [anon_sym_AMP] = ACTIONS(3049),
- [anon_sym_PIPE] = ACTIONS(3051),
- [anon_sym_PLUS] = ACTIONS(2579),
- [anon_sym_DASH] = ACTIONS(2579),
- [anon_sym_LT] = ACTIONS(2581),
- [anon_sym_void] = ACTIONS(220),
- [sym_comment] = ACTIONS(5),
- [anon_sym_BQUOTE] = ACTIONS(1516),
- [sym_number] = ACTIONS(1518),
- [sym_this] = ACTIONS(1520),
- [sym_true] = ACTIONS(1522),
- [sym_false] = ACTIONS(1522),
- [sym_null] = ACTIONS(1522),
- [sym_undefined] = ACTIONS(1522),
- [anon_sym_readonly] = ACTIONS(3055),
- [anon_sym_QMARK] = ACTIONS(3057),
- [anon_sym_any] = ACTIONS(220),
- [anon_sym_number] = ACTIONS(220),
- [anon_sym_boolean] = ACTIONS(220),
- [anon_sym_string] = ACTIONS(220),
- [anon_sym_symbol] = ACTIONS(220),
- [anon_sym_object] = ACTIONS(220),
- [anon_sym_abstract] = ACTIONS(3059),
- [anon_sym_infer] = ACTIONS(3063),
- [anon_sym_keyof] = ACTIONS(3065),
- [anon_sym_unique] = ACTIONS(218),
- [anon_sym_unknown] = ACTIONS(220),
- [anon_sym_never] = ACTIONS(220),
- [anon_sym_LBRACE_PIPE] = ACTIONS(3067),
- [sym_html_comment] = ACTIONS(5),
- },
- [951] = {
- [sym_import] = STATE(4903),
- [sym_nested_identifier] = STATE(5707),
- [sym_string] = STATE(2889),
- [sym_formal_parameters] = STATE(5916),
- [sym_nested_type_identifier] = STATE(2828),
- [sym__type_query_member_expression_in_type_annotation] = STATE(3332),
- [sym__type_query_call_expression_in_type_annotation] = STATE(2850),
- [sym_type] = STATE(3837),
- [sym_constructor_type] = STATE(2896),
- [sym_primary_type] = STATE(2897),
- [sym_template_literal_type] = STATE(2885),
- [sym_infer_type] = STATE(2896),
- [sym_conditional_type] = STATE(2885),
- [sym_generic_type] = STATE(2885),
- [sym_type_query] = STATE(2885),
- [sym_index_type_query] = STATE(2885),
- [sym_lookup_type] = STATE(2885),
- [sym_literal_type] = STATE(2885),
- [sym__number] = STATE(2903),
- [sym_existential_type] = STATE(2885),
- [sym_flow_maybe_type] = STATE(2885),
- [sym_parenthesized_type] = STATE(2885),
- [sym_predefined_type] = STATE(2885),
- [sym_object_type] = STATE(2885),
- [sym_type_parameters] = STATE(5386),
- [sym_array_type] = STATE(2885),
- [sym_tuple_type] = STATE(2885),
- [sym_readonly_type] = STATE(2896),
- [sym_union_type] = STATE(2885),
- [sym_intersection_type] = STATE(2885),
- [sym_function_type] = STATE(2896),
- [sym_identifier] = ACTIONS(1496),
- [anon_sym_STAR] = ACTIONS(612),
- [anon_sym_LBRACE] = ACTIONS(3043),
- [anon_sym_typeof] = ACTIONS(3045),
- [anon_sym_import] = ACTIONS(133),
- [anon_sym_const] = ACTIONS(135),
- [anon_sym_LPAREN] = ACTIONS(1502),
- [anon_sym_LBRACK] = ACTIONS(1504),
- [anon_sym_DQUOTE] = ACTIONS(2275),
- [anon_sym_SQUOTE] = ACTIONS(2277),
- [anon_sym_new] = ACTIONS(3047),
- [anon_sym_AMP] = ACTIONS(3049),
- [anon_sym_PIPE] = ACTIONS(3051),
- [anon_sym_PLUS] = ACTIONS(2579),
- [anon_sym_DASH] = ACTIONS(2579),
- [anon_sym_LT] = ACTIONS(2581),
- [anon_sym_void] = ACTIONS(220),
- [sym_comment] = ACTIONS(5),
- [anon_sym_BQUOTE] = ACTIONS(1516),
- [sym_number] = ACTIONS(1518),
- [sym_this] = ACTIONS(1520),
- [sym_true] = ACTIONS(1522),
- [sym_false] = ACTIONS(1522),
- [sym_null] = ACTIONS(1522),
- [sym_undefined] = ACTIONS(1522),
- [anon_sym_readonly] = ACTIONS(3055),
- [anon_sym_QMARK] = ACTIONS(3057),
- [anon_sym_any] = ACTIONS(220),
- [anon_sym_number] = ACTIONS(220),
- [anon_sym_boolean] = ACTIONS(220),
- [anon_sym_string] = ACTIONS(220),
- [anon_sym_symbol] = ACTIONS(220),
- [anon_sym_object] = ACTIONS(220),
- [anon_sym_abstract] = ACTIONS(3059),
- [anon_sym_infer] = ACTIONS(3063),
- [anon_sym_keyof] = ACTIONS(3065),
- [anon_sym_unique] = ACTIONS(218),
- [anon_sym_unknown] = ACTIONS(220),
- [anon_sym_never] = ACTIONS(220),
- [anon_sym_LBRACE_PIPE] = ACTIONS(3067),
- [sym_html_comment] = ACTIONS(5),
- },
- [952] = {
- [sym_import] = STATE(5087),
- [sym_nested_identifier] = STATE(5707),
- [sym_string] = STATE(2889),
- [sym_formal_parameters] = STATE(5709),
- [sym_nested_type_identifier] = STATE(2828),
- [sym__type_query_member_expression_in_type_annotation] = STATE(2846),
- [sym__type_query_call_expression_in_type_annotation] = STATE(2850),
- [sym_type] = STATE(2876),
- [sym_constructor_type] = STATE(2896),
- [sym_primary_type] = STATE(2897),
- [sym_template_literal_type] = STATE(2885),
- [sym_infer_type] = STATE(2896),
- [sym_conditional_type] = STATE(2885),
- [sym_generic_type] = STATE(2885),
- [sym_type_query] = STATE(2885),
- [sym_index_type_query] = STATE(2885),
- [sym_lookup_type] = STATE(2885),
- [sym_literal_type] = STATE(2885),
- [sym__number] = STATE(2903),
- [sym_existential_type] = STATE(2885),
- [sym_flow_maybe_type] = STATE(2885),
- [sym_parenthesized_type] = STATE(2885),
- [sym_predefined_type] = STATE(2885),
- [sym_object_type] = STATE(2885),
- [sym_type_parameters] = STATE(5435),
- [sym_array_type] = STATE(2885),
- [sym_tuple_type] = STATE(2885),
- [sym_readonly_type] = STATE(2896),
- [sym_union_type] = STATE(2885),
- [sym_intersection_type] = STATE(2885),
- [sym_function_type] = STATE(2896),
- [sym_identifier] = ACTIONS(1496),
- [anon_sym_STAR] = ACTIONS(612),
- [anon_sym_LBRACE] = ACTIONS(1498),
- [anon_sym_typeof] = ACTIONS(1500),
- [anon_sym_import] = ACTIONS(133),
- [anon_sym_const] = ACTIONS(135),
- [anon_sym_LPAREN] = ACTIONS(1502),
- [anon_sym_LBRACK] = ACTIONS(1504),
- [anon_sym_DQUOTE] = ACTIONS(1506),
- [anon_sym_SQUOTE] = ACTIONS(1508),
- [anon_sym_new] = ACTIONS(1510),
- [anon_sym_AMP] = ACTIONS(741),
- [anon_sym_PIPE] = ACTIONS(743),
- [anon_sym_PLUS] = ACTIONS(2579),
- [anon_sym_DASH] = ACTIONS(2579),
- [anon_sym_LT] = ACTIONS(2581),
- [anon_sym_void] = ACTIONS(220),
- [sym_comment] = ACTIONS(5),
- [anon_sym_BQUOTE] = ACTIONS(1516),
- [sym_number] = ACTIONS(1518),
- [sym_this] = ACTIONS(1520),
- [sym_true] = ACTIONS(1522),
- [sym_false] = ACTIONS(1522),
- [sym_null] = ACTIONS(1522),
- [sym_undefined] = ACTIONS(1522),
- [anon_sym_readonly] = ACTIONS(1524),
- [anon_sym_QMARK] = ACTIONS(761),
- [anon_sym_any] = ACTIONS(220),
- [anon_sym_number] = ACTIONS(220),
- [anon_sym_boolean] = ACTIONS(220),
- [anon_sym_string] = ACTIONS(220),
- [anon_sym_symbol] = ACTIONS(220),
- [anon_sym_object] = ACTIONS(220),
- [anon_sym_abstract] = ACTIONS(212),
- [anon_sym_infer] = ACTIONS(214),
- [anon_sym_keyof] = ACTIONS(216),
- [anon_sym_unique] = ACTIONS(218),
- [anon_sym_unknown] = ACTIONS(220),
- [anon_sym_never] = ACTIONS(220),
- [anon_sym_LBRACE_PIPE] = ACTIONS(222),
- [sym_html_comment] = ACTIONS(5),
- },
- [953] = {
- [sym_import] = STATE(5087),
- [sym_nested_identifier] = STATE(5707),
- [sym_string] = STATE(2889),
- [sym_formal_parameters] = STATE(5709),
- [sym_nested_type_identifier] = STATE(2828),
- [sym__type_query_member_expression_in_type_annotation] = STATE(2846),
- [sym__type_query_call_expression_in_type_annotation] = STATE(2850),
- [sym_type] = STATE(3017),
- [sym_constructor_type] = STATE(2896),
- [sym_primary_type] = STATE(2897),
- [sym_template_literal_type] = STATE(2885),
- [sym_infer_type] = STATE(2896),
- [sym_conditional_type] = STATE(2885),
- [sym_generic_type] = STATE(2885),
- [sym_type_query] = STATE(2885),
- [sym_index_type_query] = STATE(2885),
- [sym_lookup_type] = STATE(2885),
- [sym_literal_type] = STATE(2885),
- [sym__number] = STATE(2903),
- [sym_existential_type] = STATE(2885),
- [sym_flow_maybe_type] = STATE(2885),
- [sym_parenthesized_type] = STATE(2885),
- [sym_predefined_type] = STATE(2885),
- [sym_object_type] = STATE(2885),
- [sym_type_parameters] = STATE(5435),
- [sym_array_type] = STATE(2885),
- [sym_tuple_type] = STATE(2885),
- [sym_readonly_type] = STATE(2896),
- [sym_union_type] = STATE(2885),
- [sym_intersection_type] = STATE(2885),
- [sym_function_type] = STATE(2896),
- [sym_identifier] = ACTIONS(1496),
- [anon_sym_STAR] = ACTIONS(612),
- [anon_sym_LBRACE] = ACTIONS(1498),
- [anon_sym_typeof] = ACTIONS(1500),
- [anon_sym_import] = ACTIONS(133),
- [anon_sym_const] = ACTIONS(135),
- [anon_sym_LPAREN] = ACTIONS(1502),
- [anon_sym_LBRACK] = ACTIONS(1504),
- [anon_sym_DQUOTE] = ACTIONS(1506),
- [anon_sym_SQUOTE] = ACTIONS(1508),
- [anon_sym_new] = ACTIONS(1510),
- [anon_sym_AMP] = ACTIONS(741),
- [anon_sym_PIPE] = ACTIONS(743),
- [anon_sym_PLUS] = ACTIONS(2579),
- [anon_sym_DASH] = ACTIONS(2579),
- [anon_sym_LT] = ACTIONS(2581),
- [anon_sym_void] = ACTIONS(220),
- [sym_comment] = ACTIONS(5),
- [anon_sym_BQUOTE] = ACTIONS(1516),
- [sym_number] = ACTIONS(1518),
- [sym_this] = ACTIONS(1520),
- [sym_true] = ACTIONS(1522),
- [sym_false] = ACTIONS(1522),
- [sym_null] = ACTIONS(1522),
- [sym_undefined] = ACTIONS(1522),
- [anon_sym_readonly] = ACTIONS(1524),
- [anon_sym_QMARK] = ACTIONS(761),
- [anon_sym_any] = ACTIONS(220),
- [anon_sym_number] = ACTIONS(220),
- [anon_sym_boolean] = ACTIONS(220),
- [anon_sym_string] = ACTIONS(220),
- [anon_sym_symbol] = ACTIONS(220),
- [anon_sym_object] = ACTIONS(220),
- [anon_sym_abstract] = ACTIONS(212),
- [anon_sym_infer] = ACTIONS(214),
- [anon_sym_keyof] = ACTIONS(216),
- [anon_sym_unique] = ACTIONS(218),
- [anon_sym_unknown] = ACTIONS(220),
- [anon_sym_never] = ACTIONS(220),
- [anon_sym_LBRACE_PIPE] = ACTIONS(222),
- [sym_html_comment] = ACTIONS(5),
- },
- [954] = {
- [sym_import] = STATE(4753),
- [sym_nested_identifier] = STATE(5707),
- [sym_string] = STATE(2889),
- [sym_formal_parameters] = STATE(5626),
- [sym_nested_type_identifier] = STATE(2828),
- [sym__type_query_member_expression_in_type_annotation] = STATE(3228),
- [sym__type_query_call_expression_in_type_annotation] = STATE(2850),
- [sym_type] = STATE(4444),
- [sym_constructor_type] = STATE(2896),
- [sym_primary_type] = STATE(2897),
- [sym_template_literal_type] = STATE(2885),
- [sym_infer_type] = STATE(2896),
- [sym_conditional_type] = STATE(2885),
- [sym_generic_type] = STATE(2885),
- [sym_type_query] = STATE(2885),
- [sym_index_type_query] = STATE(2885),
- [sym_lookup_type] = STATE(2885),
- [sym_literal_type] = STATE(2885),
- [sym__number] = STATE(2903),
- [sym_existential_type] = STATE(2885),
- [sym_flow_maybe_type] = STATE(2885),
- [sym_parenthesized_type] = STATE(2885),
- [sym_predefined_type] = STATE(2885),
- [sym_object_type] = STATE(2885),
- [sym_type_parameters] = STATE(5517),
- [sym_array_type] = STATE(2885),
- [sym_tuple_type] = STATE(2885),
- [sym_readonly_type] = STATE(2896),
- [sym_union_type] = STATE(2885),
- [sym_intersection_type] = STATE(2885),
- [sym_function_type] = STATE(2896),
- [sym_identifier] = ACTIONS(1496),
- [anon_sym_STAR] = ACTIONS(612),
- [anon_sym_LBRACE] = ACTIONS(1498),
- [anon_sym_typeof] = ACTIONS(1500),
- [anon_sym_import] = ACTIONS(133),
- [anon_sym_const] = ACTIONS(135),
- [anon_sym_LPAREN] = ACTIONS(1502),
- [anon_sym_LBRACK] = ACTIONS(1504),
- [anon_sym_DQUOTE] = ACTIONS(1506),
- [anon_sym_SQUOTE] = ACTIONS(1508),
- [anon_sym_new] = ACTIONS(1572),
- [anon_sym_AMP] = ACTIONS(640),
- [anon_sym_PIPE] = ACTIONS(642),
- [anon_sym_PLUS] = ACTIONS(2579),
- [anon_sym_DASH] = ACTIONS(2579),
- [anon_sym_LT] = ACTIONS(2581),
- [anon_sym_void] = ACTIONS(220),
- [sym_comment] = ACTIONS(5),
- [anon_sym_BQUOTE] = ACTIONS(1516),
- [sym_number] = ACTIONS(1518),
- [sym_this] = ACTIONS(1520),
- [sym_true] = ACTIONS(1522),
- [sym_false] = ACTIONS(1522),
- [sym_null] = ACTIONS(1522),
- [sym_undefined] = ACTIONS(1522),
- [anon_sym_readonly] = ACTIONS(1578),
- [anon_sym_QMARK] = ACTIONS(662),
- [anon_sym_any] = ACTIONS(220),
- [anon_sym_number] = ACTIONS(220),
- [anon_sym_boolean] = ACTIONS(220),
- [anon_sym_string] = ACTIONS(220),
- [anon_sym_symbol] = ACTIONS(220),
- [anon_sym_object] = ACTIONS(220),
- [anon_sym_abstract] = ACTIONS(666),
- [anon_sym_infer] = ACTIONS(668),
- [anon_sym_keyof] = ACTIONS(670),
- [anon_sym_unique] = ACTIONS(218),
- [anon_sym_unknown] = ACTIONS(220),
- [anon_sym_never] = ACTIONS(220),
- [anon_sym_LBRACE_PIPE] = ACTIONS(222),
- [sym_html_comment] = ACTIONS(5),
- },
- [955] = {
- [sym_import] = STATE(5139),
- [sym_nested_identifier] = STATE(5610),
- [sym_string] = STATE(3160),
- [sym_formal_parameters] = STATE(5827),
- [sym_nested_type_identifier] = STATE(3047),
- [sym__type_query_member_expression_in_type_annotation] = STATE(2958),
- [sym__type_query_call_expression_in_type_annotation] = STATE(3113),
- [sym_type] = STATE(3201),
- [sym_constructor_type] = STATE(3205),
- [sym_primary_type] = STATE(3150),
- [sym_template_literal_type] = STATE(3195),
- [sym_infer_type] = STATE(3205),
- [sym_conditional_type] = STATE(3195),
- [sym_generic_type] = STATE(3195),
- [sym_type_query] = STATE(3195),
- [sym_index_type_query] = STATE(3195),
- [sym_lookup_type] = STATE(3195),
- [sym_literal_type] = STATE(3195),
- [sym__number] = STATE(3154),
- [sym_existential_type] = STATE(3195),
- [sym_flow_maybe_type] = STATE(3195),
- [sym_parenthesized_type] = STATE(3195),
- [sym_predefined_type] = STATE(3195),
- [sym_object_type] = STATE(3195),
- [sym_type_parameters] = STATE(5228),
- [sym_array_type] = STATE(3195),
- [sym_tuple_type] = STATE(3195),
- [sym_readonly_type] = STATE(3205),
- [sym_union_type] = STATE(3195),
- [sym_intersection_type] = STATE(3195),
- [sym_function_type] = STATE(3205),
- [sym_identifier] = ACTIONS(1582),
- [anon_sym_STAR] = ACTIONS(992),
- [anon_sym_LBRACE] = ACTIONS(1586),
- [anon_sym_typeof] = ACTIONS(1588),
- [anon_sym_import] = ACTIONS(133),
- [anon_sym_const] = ACTIONS(998),
- [anon_sym_LPAREN] = ACTIONS(1590),
- [anon_sym_LBRACK] = ACTIONS(1592),
- [anon_sym_DQUOTE] = ACTIONS(1594),
- [anon_sym_SQUOTE] = ACTIONS(1596),
- [anon_sym_new] = ACTIONS(1598),
- [anon_sym_AMP] = ACTIONS(1006),
- [anon_sym_PIPE] = ACTIONS(1008),
- [anon_sym_PLUS] = ACTIONS(2977),
- [anon_sym_DASH] = ACTIONS(2977),
- [anon_sym_LT] = ACTIONS(2581),
- [anon_sym_void] = ACTIONS(1038),
- [sym_comment] = ACTIONS(5),
- [anon_sym_BQUOTE] = ACTIONS(1606),
- [sym_number] = ACTIONS(1608),
- [sym_this] = ACTIONS(1610),
- [sym_true] = ACTIONS(1612),
- [sym_false] = ACTIONS(1612),
- [sym_null] = ACTIONS(1612),
- [sym_undefined] = ACTIONS(1612),
- [anon_sym_readonly] = ACTIONS(1614),
- [anon_sym_QMARK] = ACTIONS(1026),
- [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_object] = ACTIONS(1038),
- [anon_sym_abstract] = ACTIONS(1030),
- [anon_sym_infer] = ACTIONS(1032),
- [anon_sym_keyof] = ACTIONS(1034),
- [anon_sym_unique] = ACTIONS(1036),
- [anon_sym_unknown] = ACTIONS(1038),
- [anon_sym_never] = ACTIONS(1038),
- [anon_sym_LBRACE_PIPE] = ACTIONS(1040),
- [sym_html_comment] = ACTIONS(5),
- },
- [956] = {
- [sym_import] = STATE(5139),
- [sym_nested_identifier] = STATE(5610),
- [sym_string] = STATE(3160),
- [sym_formal_parameters] = STATE(5827),
- [sym_nested_type_identifier] = STATE(3047),
- [sym__type_query_member_expression_in_type_annotation] = STATE(2958),
- [sym__type_query_call_expression_in_type_annotation] = STATE(3113),
- [sym_type] = STATE(3168),
- [sym_constructor_type] = STATE(3205),
- [sym_primary_type] = STATE(3150),
- [sym_template_literal_type] = STATE(3195),
- [sym_infer_type] = STATE(3205),
- [sym_conditional_type] = STATE(3195),
- [sym_generic_type] = STATE(3195),
- [sym_type_query] = STATE(3195),
- [sym_index_type_query] = STATE(3195),
- [sym_lookup_type] = STATE(3195),
- [sym_literal_type] = STATE(3195),
- [sym__number] = STATE(3154),
- [sym_existential_type] = STATE(3195),
- [sym_flow_maybe_type] = STATE(3195),
- [sym_parenthesized_type] = STATE(3195),
- [sym_predefined_type] = STATE(3195),
- [sym_object_type] = STATE(3195),
- [sym_type_parameters] = STATE(5228),
- [sym_array_type] = STATE(3195),
- [sym_tuple_type] = STATE(3195),
- [sym_readonly_type] = STATE(3205),
- [sym_union_type] = STATE(3195),
- [sym_intersection_type] = STATE(3195),
- [sym_function_type] = STATE(3205),
- [sym_identifier] = ACTIONS(1582),
- [anon_sym_STAR] = ACTIONS(992),
- [anon_sym_LBRACE] = ACTIONS(1586),
- [anon_sym_typeof] = ACTIONS(1588),
- [anon_sym_import] = ACTIONS(133),
- [anon_sym_const] = ACTIONS(998),
- [anon_sym_LPAREN] = ACTIONS(1590),
- [anon_sym_LBRACK] = ACTIONS(1592),
- [anon_sym_DQUOTE] = ACTIONS(1594),
- [anon_sym_SQUOTE] = ACTIONS(1596),
- [anon_sym_new] = ACTIONS(1598),
- [anon_sym_AMP] = ACTIONS(1006),
- [anon_sym_PIPE] = ACTIONS(1008),
- [anon_sym_PLUS] = ACTIONS(2977),
- [anon_sym_DASH] = ACTIONS(2977),
- [anon_sym_LT] = ACTIONS(2581),
- [anon_sym_void] = ACTIONS(1038),
- [sym_comment] = ACTIONS(5),
- [anon_sym_BQUOTE] = ACTIONS(1606),
- [sym_number] = ACTIONS(1608),
- [sym_this] = ACTIONS(1610),
- [sym_true] = ACTIONS(1612),
- [sym_false] = ACTIONS(1612),
- [sym_null] = ACTIONS(1612),
- [sym_undefined] = ACTIONS(1612),
- [anon_sym_readonly] = ACTIONS(1614),
- [anon_sym_QMARK] = ACTIONS(1026),
- [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_object] = ACTIONS(1038),
- [anon_sym_abstract] = ACTIONS(1030),
- [anon_sym_infer] = ACTIONS(1032),
- [anon_sym_keyof] = ACTIONS(1034),
- [anon_sym_unique] = ACTIONS(1036),
- [anon_sym_unknown] = ACTIONS(1038),
- [anon_sym_never] = ACTIONS(1038),
- [anon_sym_LBRACE_PIPE] = ACTIONS(1040),
- [sym_html_comment] = ACTIONS(5),
- },
- [957] = {
- [sym_import] = STATE(4618),
- [sym_nested_identifier] = STATE(5906),
- [sym_string] = STATE(1947),
- [sym_formal_parameters] = STATE(5651),
- [sym_nested_type_identifier] = STATE(1799),
- [sym__type_query_member_expression_in_type_annotation] = STATE(1800),
- [sym__type_query_call_expression_in_type_annotation] = STATE(1928),
- [sym_type] = STATE(1909),
- [sym_constructor_type] = STATE(1929),
- [sym_primary_type] = STATE(1931),
- [sym_template_literal_type] = STATE(1936),
- [sym_infer_type] = STATE(1929),
- [sym_conditional_type] = STATE(1936),
- [sym_generic_type] = STATE(1936),
- [sym_type_query] = STATE(1936),
- [sym_index_type_query] = STATE(1936),
- [sym_lookup_type] = STATE(1936),
- [sym_literal_type] = STATE(1936),
- [sym__number] = STATE(1932),
- [sym_existential_type] = STATE(1936),
- [sym_flow_maybe_type] = STATE(1936),
- [sym_parenthesized_type] = STATE(1936),
- [sym_predefined_type] = STATE(1936),
- [sym_object_type] = STATE(1936),
- [sym_type_parameters] = STATE(5347),
- [sym_array_type] = STATE(1936),
- [sym_tuple_type] = STATE(1936),
- [sym_readonly_type] = STATE(1929),
- [sym_union_type] = STATE(1936),
- [sym_intersection_type] = STATE(1936),
- [sym_function_type] = STATE(1929),
- [sym_identifier] = ACTIONS(3177),
- [anon_sym_STAR] = ACTIONS(2929),
- [anon_sym_LBRACE] = ACTIONS(2931),
- [anon_sym_typeof] = ACTIONS(2933),
- [anon_sym_import] = ACTIONS(133),
- [anon_sym_const] = ACTIONS(2935),
- [anon_sym_LPAREN] = ACTIONS(2937),
- [anon_sym_LBRACK] = ACTIONS(2939),
- [anon_sym_DQUOTE] = ACTIONS(69),
- [anon_sym_SQUOTE] = ACTIONS(71),
- [anon_sym_new] = ACTIONS(2941),
- [anon_sym_AMP] = ACTIONS(2943),
- [anon_sym_PIPE] = ACTIONS(2945),
- [anon_sym_PLUS] = ACTIONS(2947),
- [anon_sym_DASH] = ACTIONS(2947),
- [anon_sym_LT] = ACTIONS(2581),
- [anon_sym_void] = ACTIONS(2949),
- [sym_comment] = ACTIONS(5),
- [anon_sym_BQUOTE] = ACTIONS(2951),
- [sym_number] = ACTIONS(2953),
- [sym_this] = ACTIONS(3179),
- [sym_true] = ACTIONS(2957),
- [sym_false] = ACTIONS(2957),
- [sym_null] = ACTIONS(2957),
- [sym_undefined] = ACTIONS(2957),
- [anon_sym_readonly] = ACTIONS(2959),
- [anon_sym_QMARK] = ACTIONS(2961),
- [anon_sym_any] = ACTIONS(2949),
- [anon_sym_number] = ACTIONS(2949),
- [anon_sym_boolean] = ACTIONS(2949),
- [anon_sym_string] = ACTIONS(2949),
- [anon_sym_symbol] = ACTIONS(2949),
- [anon_sym_object] = ACTIONS(2949),
- [anon_sym_abstract] = ACTIONS(2963),
- [anon_sym_infer] = ACTIONS(2967),
- [anon_sym_keyof] = ACTIONS(2969),
- [anon_sym_unique] = ACTIONS(2971),
- [anon_sym_unknown] = ACTIONS(2949),
- [anon_sym_never] = ACTIONS(2949),
- [anon_sym_LBRACE_PIPE] = ACTIONS(2973),
- [sym_html_comment] = ACTIONS(5),
- },
- [958] = {
- [sym_import] = STATE(4618),
- [sym_nested_identifier] = STATE(5906),
- [sym_string] = STATE(1947),
- [sym_formal_parameters] = STATE(5651),
- [sym_nested_type_identifier] = STATE(1799),
- [sym__type_query_member_expression_in_type_annotation] = STATE(1800),
- [sym__type_query_call_expression_in_type_annotation] = STATE(1928),
- [sym_type] = STATE(1939),
- [sym_constructor_type] = STATE(1929),
- [sym_primary_type] = STATE(1931),
- [sym_template_literal_type] = STATE(1936),
- [sym_infer_type] = STATE(1929),
- [sym_conditional_type] = STATE(1936),
- [sym_generic_type] = STATE(1936),
- [sym_type_query] = STATE(1936),
- [sym_index_type_query] = STATE(1936),
- [sym_lookup_type] = STATE(1936),
- [sym_literal_type] = STATE(1936),
- [sym__number] = STATE(1932),
- [sym_existential_type] = STATE(1936),
- [sym_flow_maybe_type] = STATE(1936),
- [sym_parenthesized_type] = STATE(1936),
- [sym_predefined_type] = STATE(1936),
- [sym_object_type] = STATE(1936),
- [sym_type_parameters] = STATE(5347),
- [sym_array_type] = STATE(1936),
- [sym_tuple_type] = STATE(1936),
- [sym_readonly_type] = STATE(1929),
- [sym_union_type] = STATE(1936),
- [sym_intersection_type] = STATE(1936),
- [sym_function_type] = STATE(1929),
- [sym_identifier] = ACTIONS(3177),
- [anon_sym_STAR] = ACTIONS(2929),
- [anon_sym_LBRACE] = ACTIONS(2931),
- [anon_sym_typeof] = ACTIONS(2933),
- [anon_sym_import] = ACTIONS(133),
- [anon_sym_const] = ACTIONS(2935),
- [anon_sym_LPAREN] = ACTIONS(2937),
- [anon_sym_LBRACK] = ACTIONS(2939),
- [anon_sym_DQUOTE] = ACTIONS(69),
- [anon_sym_SQUOTE] = ACTIONS(71),
- [anon_sym_new] = ACTIONS(2941),
- [anon_sym_AMP] = ACTIONS(2943),
- [anon_sym_PIPE] = ACTIONS(2945),
- [anon_sym_PLUS] = ACTIONS(2947),
- [anon_sym_DASH] = ACTIONS(2947),
- [anon_sym_LT] = ACTIONS(2581),
- [anon_sym_void] = ACTIONS(2949),
- [sym_comment] = ACTIONS(5),
- [anon_sym_BQUOTE] = ACTIONS(2951),
- [sym_number] = ACTIONS(2953),
- [sym_this] = ACTIONS(3179),
- [sym_true] = ACTIONS(2957),
- [sym_false] = ACTIONS(2957),
- [sym_null] = ACTIONS(2957),
- [sym_undefined] = ACTIONS(2957),
- [anon_sym_readonly] = ACTIONS(2959),
- [anon_sym_QMARK] = ACTIONS(2961),
- [anon_sym_any] = ACTIONS(2949),
- [anon_sym_number] = ACTIONS(2949),
- [anon_sym_boolean] = ACTIONS(2949),
- [anon_sym_string] = ACTIONS(2949),
- [anon_sym_symbol] = ACTIONS(2949),
- [anon_sym_object] = ACTIONS(2949),
- [anon_sym_abstract] = ACTIONS(2963),
- [anon_sym_infer] = ACTIONS(2967),
- [anon_sym_keyof] = ACTIONS(2969),
- [anon_sym_unique] = ACTIONS(2971),
- [anon_sym_unknown] = ACTIONS(2949),
- [anon_sym_never] = ACTIONS(2949),
- [anon_sym_LBRACE_PIPE] = ACTIONS(2973),
- [sym_html_comment] = ACTIONS(5),
- },
- [959] = {
- [sym_import] = STATE(4618),
- [sym_nested_identifier] = STATE(5906),
- [sym_string] = STATE(1947),
- [sym_formal_parameters] = STATE(5651),
- [sym_nested_type_identifier] = STATE(1799),
- [sym__type_query_member_expression_in_type_annotation] = STATE(1800),
- [sym__type_query_call_expression_in_type_annotation] = STATE(1928),
- [sym_type] = STATE(1940),
- [sym_constructor_type] = STATE(1929),
- [sym_primary_type] = STATE(1931),
- [sym_template_literal_type] = STATE(1936),
- [sym_infer_type] = STATE(1929),
- [sym_conditional_type] = STATE(1936),
- [sym_generic_type] = STATE(1936),
- [sym_type_query] = STATE(1936),
- [sym_index_type_query] = STATE(1936),
- [sym_lookup_type] = STATE(1936),
- [sym_literal_type] = STATE(1936),
- [sym__number] = STATE(1932),
- [sym_existential_type] = STATE(1936),
- [sym_flow_maybe_type] = STATE(1936),
- [sym_parenthesized_type] = STATE(1936),
- [sym_predefined_type] = STATE(1936),
- [sym_object_type] = STATE(1936),
- [sym_type_parameters] = STATE(5347),
- [sym_array_type] = STATE(1936),
- [sym_tuple_type] = STATE(1936),
- [sym_readonly_type] = STATE(1929),
- [sym_union_type] = STATE(1936),
- [sym_intersection_type] = STATE(1936),
- [sym_function_type] = STATE(1929),
- [sym_identifier] = ACTIONS(3177),
- [anon_sym_STAR] = ACTIONS(2929),
- [anon_sym_LBRACE] = ACTIONS(2931),
- [anon_sym_typeof] = ACTIONS(2933),
- [anon_sym_import] = ACTIONS(133),
- [anon_sym_const] = ACTIONS(2935),
- [anon_sym_LPAREN] = ACTIONS(2937),
- [anon_sym_LBRACK] = ACTIONS(2939),
- [anon_sym_DQUOTE] = ACTIONS(69),
- [anon_sym_SQUOTE] = ACTIONS(71),
- [anon_sym_new] = ACTIONS(2941),
- [anon_sym_AMP] = ACTIONS(2943),
- [anon_sym_PIPE] = ACTIONS(2945),
- [anon_sym_PLUS] = ACTIONS(2947),
- [anon_sym_DASH] = ACTIONS(2947),
- [anon_sym_LT] = ACTIONS(2581),
- [anon_sym_void] = ACTIONS(2949),
- [sym_comment] = ACTIONS(5),
- [anon_sym_BQUOTE] = ACTIONS(2951),
- [sym_number] = ACTIONS(2953),
- [sym_this] = ACTIONS(3179),
- [sym_true] = ACTIONS(2957),
- [sym_false] = ACTIONS(2957),
- [sym_null] = ACTIONS(2957),
- [sym_undefined] = ACTIONS(2957),
- [anon_sym_readonly] = ACTIONS(2959),
- [anon_sym_QMARK] = ACTIONS(2961),
- [anon_sym_any] = ACTIONS(2949),
- [anon_sym_number] = ACTIONS(2949),
- [anon_sym_boolean] = ACTIONS(2949),
- [anon_sym_string] = ACTIONS(2949),
- [anon_sym_symbol] = ACTIONS(2949),
- [anon_sym_object] = ACTIONS(2949),
- [anon_sym_abstract] = ACTIONS(2963),
- [anon_sym_infer] = ACTIONS(2967),
- [anon_sym_keyof] = ACTIONS(2969),
- [anon_sym_unique] = ACTIONS(2971),
- [anon_sym_unknown] = ACTIONS(2949),
- [anon_sym_never] = ACTIONS(2949),
- [anon_sym_LBRACE_PIPE] = ACTIONS(2973),
- [sym_html_comment] = ACTIONS(5),
- },
- [960] = {
- [sym_import] = STATE(5139),
- [sym_nested_identifier] = STATE(5610),
- [sym_string] = STATE(3160),
- [sym_formal_parameters] = STATE(5827),
- [sym_nested_type_identifier] = STATE(3047),
- [sym__type_query_member_expression_in_type_annotation] = STATE(2958),
- [sym__type_query_call_expression_in_type_annotation] = STATE(3113),
- [sym_type] = STATE(3170),
- [sym_constructor_type] = STATE(3205),
- [sym_primary_type] = STATE(3150),
- [sym_template_literal_type] = STATE(3195),
- [sym_infer_type] = STATE(3205),
- [sym_conditional_type] = STATE(3195),
- [sym_generic_type] = STATE(3195),
- [sym_type_query] = STATE(3195),
- [sym_index_type_query] = STATE(3195),
- [sym_lookup_type] = STATE(3195),
- [sym_literal_type] = STATE(3195),
- [sym__number] = STATE(3154),
- [sym_existential_type] = STATE(3195),
- [sym_flow_maybe_type] = STATE(3195),
- [sym_parenthesized_type] = STATE(3195),
- [sym_predefined_type] = STATE(3195),
- [sym_object_type] = STATE(3195),
- [sym_type_parameters] = STATE(5228),
- [sym_array_type] = STATE(3195),
- [sym_tuple_type] = STATE(3195),
- [sym_readonly_type] = STATE(3205),
- [sym_union_type] = STATE(3195),
- [sym_intersection_type] = STATE(3195),
- [sym_function_type] = STATE(3205),
- [sym_identifier] = ACTIONS(1582),
- [anon_sym_STAR] = ACTIONS(992),
- [anon_sym_LBRACE] = ACTIONS(1586),
- [anon_sym_typeof] = ACTIONS(1588),
- [anon_sym_import] = ACTIONS(133),
- [anon_sym_const] = ACTIONS(998),
- [anon_sym_LPAREN] = ACTIONS(1590),
- [anon_sym_LBRACK] = ACTIONS(1592),
- [anon_sym_DQUOTE] = ACTIONS(1594),
- [anon_sym_SQUOTE] = ACTIONS(1596),
- [anon_sym_new] = ACTIONS(1598),
- [anon_sym_AMP] = ACTIONS(1006),
- [anon_sym_PIPE] = ACTIONS(1008),
- [anon_sym_PLUS] = ACTIONS(2977),
- [anon_sym_DASH] = ACTIONS(2977),
- [anon_sym_LT] = ACTIONS(2581),
- [anon_sym_void] = ACTIONS(1038),
- [sym_comment] = ACTIONS(5),
- [anon_sym_BQUOTE] = ACTIONS(1606),
- [sym_number] = ACTIONS(1608),
- [sym_this] = ACTIONS(1610),
- [sym_true] = ACTIONS(1612),
- [sym_false] = ACTIONS(1612),
- [sym_null] = ACTIONS(1612),
- [sym_undefined] = ACTIONS(1612),
- [anon_sym_readonly] = ACTIONS(1614),
- [anon_sym_QMARK] = ACTIONS(1026),
- [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_object] = ACTIONS(1038),
- [anon_sym_abstract] = ACTIONS(1030),
- [anon_sym_infer] = ACTIONS(1032),
- [anon_sym_keyof] = ACTIONS(1034),
- [anon_sym_unique] = ACTIONS(1036),
- [anon_sym_unknown] = ACTIONS(1038),
- [anon_sym_never] = ACTIONS(1038),
- [anon_sym_LBRACE_PIPE] = ACTIONS(1040),
- [sym_html_comment] = ACTIONS(5),
- },
- [961] = {
- [sym_import] = STATE(5139),
- [sym_nested_identifier] = STATE(5610),
- [sym_string] = STATE(3160),
- [sym_formal_parameters] = STATE(5827),
- [sym_nested_type_identifier] = STATE(3047),
- [sym__type_query_member_expression_in_type_annotation] = STATE(2958),
- [sym__type_query_call_expression_in_type_annotation] = STATE(3113),
- [sym_type] = STATE(3172),
- [sym_constructor_type] = STATE(3205),
- [sym_primary_type] = STATE(3150),
- [sym_template_literal_type] = STATE(3195),
- [sym_infer_type] = STATE(3205),
- [sym_conditional_type] = STATE(3195),
- [sym_generic_type] = STATE(3195),
- [sym_type_query] = STATE(3195),
- [sym_index_type_query] = STATE(3195),
- [sym_lookup_type] = STATE(3195),
- [sym_literal_type] = STATE(3195),
- [sym__number] = STATE(3154),
- [sym_existential_type] = STATE(3195),
- [sym_flow_maybe_type] = STATE(3195),
- [sym_parenthesized_type] = STATE(3195),
- [sym_predefined_type] = STATE(3195),
- [sym_object_type] = STATE(3195),
- [sym_type_parameters] = STATE(5228),
- [sym_array_type] = STATE(3195),
- [sym_tuple_type] = STATE(3195),
- [sym_readonly_type] = STATE(3205),
- [sym_union_type] = STATE(3195),
- [sym_intersection_type] = STATE(3195),
- [sym_function_type] = STATE(3205),
- [sym_identifier] = ACTIONS(1582),
- [anon_sym_STAR] = ACTIONS(992),
- [anon_sym_LBRACE] = ACTIONS(1586),
- [anon_sym_typeof] = ACTIONS(1588),
- [anon_sym_import] = ACTIONS(133),
- [anon_sym_const] = ACTIONS(998),
- [anon_sym_LPAREN] = ACTIONS(1590),
- [anon_sym_LBRACK] = ACTIONS(1592),
- [anon_sym_DQUOTE] = ACTIONS(1594),
- [anon_sym_SQUOTE] = ACTIONS(1596),
- [anon_sym_new] = ACTIONS(1598),
- [anon_sym_AMP] = ACTIONS(1006),
- [anon_sym_PIPE] = ACTIONS(1008),
- [anon_sym_PLUS] = ACTIONS(2977),
- [anon_sym_DASH] = ACTIONS(2977),
- [anon_sym_LT] = ACTIONS(2581),
- [anon_sym_void] = ACTIONS(1038),
- [sym_comment] = ACTIONS(5),
- [anon_sym_BQUOTE] = ACTIONS(1606),
- [sym_number] = ACTIONS(1608),
- [sym_this] = ACTIONS(1610),
- [sym_true] = ACTIONS(1612),
- [sym_false] = ACTIONS(1612),
- [sym_null] = ACTIONS(1612),
- [sym_undefined] = ACTIONS(1612),
- [anon_sym_readonly] = ACTIONS(1614),
- [anon_sym_QMARK] = ACTIONS(1026),
- [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_object] = ACTIONS(1038),
- [anon_sym_abstract] = ACTIONS(1030),
- [anon_sym_infer] = ACTIONS(1032),
- [anon_sym_keyof] = ACTIONS(1034),
- [anon_sym_unique] = ACTIONS(1036),
- [anon_sym_unknown] = ACTIONS(1038),
- [anon_sym_never] = ACTIONS(1038),
- [anon_sym_LBRACE_PIPE] = ACTIONS(1040),
- [sym_html_comment] = ACTIONS(5),
- },
- [962] = {
- [sym_import] = STATE(4618),
- [sym_nested_identifier] = STATE(5906),
- [sym_string] = STATE(1947),
- [sym_formal_parameters] = STATE(5651),
- [sym_nested_type_identifier] = STATE(1799),
- [sym__type_query_member_expression_in_type_annotation] = STATE(1800),
- [sym__type_query_call_expression_in_type_annotation] = STATE(1928),
- [sym_type] = STATE(1910),
- [sym_constructor_type] = STATE(1929),
- [sym_primary_type] = STATE(1931),
- [sym_template_literal_type] = STATE(1936),
- [sym_infer_type] = STATE(1929),
- [sym_conditional_type] = STATE(1936),
- [sym_generic_type] = STATE(1936),
- [sym_type_query] = STATE(1936),
- [sym_index_type_query] = STATE(1936),
- [sym_lookup_type] = STATE(1936),
- [sym_literal_type] = STATE(1936),
- [sym__number] = STATE(1932),
- [sym_existential_type] = STATE(1936),
- [sym_flow_maybe_type] = STATE(1936),
- [sym_parenthesized_type] = STATE(1936),
- [sym_predefined_type] = STATE(1936),
- [sym_object_type] = STATE(1936),
- [sym_type_parameters] = STATE(5347),
- [sym_array_type] = STATE(1936),
- [sym_tuple_type] = STATE(1936),
- [sym_readonly_type] = STATE(1929),
- [sym_union_type] = STATE(1936),
- [sym_intersection_type] = STATE(1936),
- [sym_function_type] = STATE(1929),
- [sym_identifier] = ACTIONS(3177),
- [anon_sym_STAR] = ACTIONS(2929),
- [anon_sym_LBRACE] = ACTIONS(2931),
- [anon_sym_typeof] = ACTIONS(2933),
- [anon_sym_import] = ACTIONS(133),
- [anon_sym_const] = ACTIONS(2935),
- [anon_sym_LPAREN] = ACTIONS(2937),
- [anon_sym_LBRACK] = ACTIONS(2939),
- [anon_sym_DQUOTE] = ACTIONS(69),
- [anon_sym_SQUOTE] = ACTIONS(71),
- [anon_sym_new] = ACTIONS(2941),
- [anon_sym_AMP] = ACTIONS(2943),
- [anon_sym_PIPE] = ACTIONS(2945),
- [anon_sym_PLUS] = ACTIONS(2947),
- [anon_sym_DASH] = ACTIONS(2947),
- [anon_sym_LT] = ACTIONS(2581),
- [anon_sym_void] = ACTIONS(2949),
- [sym_comment] = ACTIONS(5),
- [anon_sym_BQUOTE] = ACTIONS(2951),
- [sym_number] = ACTIONS(2953),
- [sym_this] = ACTIONS(3179),
- [sym_true] = ACTIONS(2957),
- [sym_false] = ACTIONS(2957),
- [sym_null] = ACTIONS(2957),
- [sym_undefined] = ACTIONS(2957),
- [anon_sym_readonly] = ACTIONS(2959),
- [anon_sym_QMARK] = ACTIONS(2961),
- [anon_sym_any] = ACTIONS(2949),
- [anon_sym_number] = ACTIONS(2949),
- [anon_sym_boolean] = ACTIONS(2949),
- [anon_sym_string] = ACTIONS(2949),
- [anon_sym_symbol] = ACTIONS(2949),
- [anon_sym_object] = ACTIONS(2949),
- [anon_sym_abstract] = ACTIONS(2963),
- [anon_sym_infer] = ACTIONS(2967),
- [anon_sym_keyof] = ACTIONS(2969),
- [anon_sym_unique] = ACTIONS(2971),
- [anon_sym_unknown] = ACTIONS(2949),
- [anon_sym_never] = ACTIONS(2949),
- [anon_sym_LBRACE_PIPE] = ACTIONS(2973),
- [sym_html_comment] = ACTIONS(5),
- },
- [963] = {
- [sym_import] = STATE(5087),
- [sym_nested_identifier] = STATE(5707),
- [sym_string] = STATE(2889),
- [sym_formal_parameters] = STATE(5709),
- [sym_nested_type_identifier] = STATE(2828),
- [sym__type_query_member_expression_in_type_annotation] = STATE(2846),
- [sym__type_query_call_expression_in_type_annotation] = STATE(2850),
- [sym_type] = STATE(3833),
- [sym_constructor_type] = STATE(2896),
- [sym_primary_type] = STATE(2897),
- [sym_template_literal_type] = STATE(2885),
- [sym_infer_type] = STATE(2896),
- [sym_conditional_type] = STATE(2885),
- [sym_generic_type] = STATE(2885),
- [sym_type_query] = STATE(2885),
- [sym_index_type_query] = STATE(2885),
- [sym_lookup_type] = STATE(2885),
- [sym_literal_type] = STATE(2885),
- [sym__number] = STATE(2903),
- [sym_existential_type] = STATE(2885),
- [sym_flow_maybe_type] = STATE(2885),
- [sym_parenthesized_type] = STATE(2885),
- [sym_predefined_type] = STATE(2885),
- [sym_object_type] = STATE(2885),
- [sym_type_parameters] = STATE(5435),
- [sym_array_type] = STATE(2885),
- [sym_tuple_type] = STATE(2885),
- [sym_readonly_type] = STATE(2896),
- [sym_union_type] = STATE(2885),
- [sym_intersection_type] = STATE(2885),
- [sym_function_type] = STATE(2896),
- [sym_identifier] = ACTIONS(1496),
- [anon_sym_STAR] = ACTIONS(612),
- [anon_sym_LBRACE] = ACTIONS(1498),
- [anon_sym_typeof] = ACTIONS(1500),
- [anon_sym_import] = ACTIONS(133),
- [anon_sym_const] = ACTIONS(135),
- [anon_sym_LPAREN] = ACTIONS(1502),
- [anon_sym_LBRACK] = ACTIONS(1504),
- [anon_sym_DQUOTE] = ACTIONS(1506),
- [anon_sym_SQUOTE] = ACTIONS(1508),
- [anon_sym_new] = ACTIONS(1510),
- [anon_sym_AMP] = ACTIONS(741),
- [anon_sym_PIPE] = ACTIONS(743),
- [anon_sym_PLUS] = ACTIONS(2579),
- [anon_sym_DASH] = ACTIONS(2579),
- [anon_sym_LT] = ACTIONS(2581),
- [anon_sym_void] = ACTIONS(220),
- [sym_comment] = ACTIONS(5),
- [anon_sym_BQUOTE] = ACTIONS(1516),
- [sym_number] = ACTIONS(1518),
- [sym_this] = ACTIONS(1520),
- [sym_true] = ACTIONS(1522),
- [sym_false] = ACTIONS(1522),
- [sym_null] = ACTIONS(1522),
- [sym_undefined] = ACTIONS(1522),
- [anon_sym_readonly] = ACTIONS(1524),
- [anon_sym_QMARK] = ACTIONS(761),
- [anon_sym_any] = ACTIONS(220),
- [anon_sym_number] = ACTIONS(220),
- [anon_sym_boolean] = ACTIONS(220),
- [anon_sym_string] = ACTIONS(220),
- [anon_sym_symbol] = ACTIONS(220),
- [anon_sym_object] = ACTIONS(220),
- [anon_sym_abstract] = ACTIONS(212),
- [anon_sym_infer] = ACTIONS(214),
- [anon_sym_keyof] = ACTIONS(216),
- [anon_sym_unique] = ACTIONS(218),
- [anon_sym_unknown] = ACTIONS(220),
- [anon_sym_never] = ACTIONS(220),
- [anon_sym_LBRACE_PIPE] = ACTIONS(222),
- [sym_html_comment] = ACTIONS(5),
- },
- [964] = {
- [sym_import] = STATE(4618),
- [sym_nested_identifier] = STATE(5906),
- [sym_string] = STATE(1947),
- [sym_formal_parameters] = STATE(5651),
- [sym_nested_type_identifier] = STATE(1799),
- [sym__type_query_member_expression_in_type_annotation] = STATE(1800),
- [sym__type_query_call_expression_in_type_annotation] = STATE(1928),
- [sym_type] = STATE(1922),
- [sym_constructor_type] = STATE(1929),
- [sym_primary_type] = STATE(1931),
- [sym_template_literal_type] = STATE(1936),
- [sym_infer_type] = STATE(1929),
- [sym_conditional_type] = STATE(1936),
- [sym_generic_type] = STATE(1936),
- [sym_type_query] = STATE(1936),
- [sym_index_type_query] = STATE(1936),
- [sym_lookup_type] = STATE(1936),
- [sym_literal_type] = STATE(1936),
- [sym__number] = STATE(1932),
- [sym_existential_type] = STATE(1936),
- [sym_flow_maybe_type] = STATE(1936),
- [sym_parenthesized_type] = STATE(1936),
- [sym_predefined_type] = STATE(1936),
- [sym_object_type] = STATE(1936),
- [sym_type_parameters] = STATE(5347),
- [sym_array_type] = STATE(1936),
- [sym_tuple_type] = STATE(1936),
- [sym_readonly_type] = STATE(1929),
- [sym_union_type] = STATE(1936),
- [sym_intersection_type] = STATE(1936),
- [sym_function_type] = STATE(1929),
- [sym_identifier] = ACTIONS(3177),
- [anon_sym_STAR] = ACTIONS(2929),
- [anon_sym_LBRACE] = ACTIONS(2931),
- [anon_sym_typeof] = ACTIONS(2933),
- [anon_sym_import] = ACTIONS(133),
- [anon_sym_const] = ACTIONS(2935),
- [anon_sym_LPAREN] = ACTIONS(2937),
- [anon_sym_LBRACK] = ACTIONS(2939),
- [anon_sym_DQUOTE] = ACTIONS(69),
- [anon_sym_SQUOTE] = ACTIONS(71),
- [anon_sym_new] = ACTIONS(2941),
- [anon_sym_AMP] = ACTIONS(2943),
- [anon_sym_PIPE] = ACTIONS(2945),
- [anon_sym_PLUS] = ACTIONS(2947),
- [anon_sym_DASH] = ACTIONS(2947),
- [anon_sym_LT] = ACTIONS(2581),
- [anon_sym_void] = ACTIONS(2949),
- [sym_comment] = ACTIONS(5),
- [anon_sym_BQUOTE] = ACTIONS(2951),
- [sym_number] = ACTIONS(2953),
- [sym_this] = ACTIONS(3179),
- [sym_true] = ACTIONS(2957),
- [sym_false] = ACTIONS(2957),
- [sym_null] = ACTIONS(2957),
- [sym_undefined] = ACTIONS(2957),
- [anon_sym_readonly] = ACTIONS(2959),
- [anon_sym_QMARK] = ACTIONS(2961),
- [anon_sym_any] = ACTIONS(2949),
- [anon_sym_number] = ACTIONS(2949),
- [anon_sym_boolean] = ACTIONS(2949),
- [anon_sym_string] = ACTIONS(2949),
- [anon_sym_symbol] = ACTIONS(2949),
- [anon_sym_object] = ACTIONS(2949),
- [anon_sym_abstract] = ACTIONS(2963),
- [anon_sym_infer] = ACTIONS(2967),
- [anon_sym_keyof] = ACTIONS(2969),
- [anon_sym_unique] = ACTIONS(2971),
- [anon_sym_unknown] = ACTIONS(2949),
- [anon_sym_never] = ACTIONS(2949),
- [anon_sym_LBRACE_PIPE] = ACTIONS(2973),
- [sym_html_comment] = ACTIONS(5),
- },
- [965] = {
- [sym_import] = STATE(5139),
- [sym_nested_identifier] = STATE(5610),
- [sym_string] = STATE(3160),
- [sym_formal_parameters] = STATE(5827),
- [sym_nested_type_identifier] = STATE(3047),
- [sym__type_query_member_expression_in_type_annotation] = STATE(2958),
- [sym__type_query_call_expression_in_type_annotation] = STATE(3113),
- [sym_type] = STATE(3191),
- [sym_constructor_type] = STATE(3205),
- [sym_primary_type] = STATE(3150),
- [sym_template_literal_type] = STATE(3195),
- [sym_infer_type] = STATE(3205),
- [sym_conditional_type] = STATE(3195),
- [sym_generic_type] = STATE(3195),
- [sym_type_query] = STATE(3195),
- [sym_index_type_query] = STATE(3195),
- [sym_lookup_type] = STATE(3195),
- [sym_literal_type] = STATE(3195),
- [sym__number] = STATE(3154),
- [sym_existential_type] = STATE(3195),
- [sym_flow_maybe_type] = STATE(3195),
- [sym_parenthesized_type] = STATE(3195),
- [sym_predefined_type] = STATE(3195),
- [sym_object_type] = STATE(3195),
- [sym_type_parameters] = STATE(5228),
- [sym_array_type] = STATE(3195),
- [sym_tuple_type] = STATE(3195),
- [sym_readonly_type] = STATE(3205),
- [sym_union_type] = STATE(3195),
- [sym_intersection_type] = STATE(3195),
- [sym_function_type] = STATE(3205),
- [sym_identifier] = ACTIONS(1582),
- [anon_sym_STAR] = ACTIONS(992),
- [anon_sym_LBRACE] = ACTIONS(1586),
- [anon_sym_typeof] = ACTIONS(1588),
- [anon_sym_import] = ACTIONS(133),
- [anon_sym_const] = ACTIONS(998),
- [anon_sym_LPAREN] = ACTIONS(1590),
- [anon_sym_LBRACK] = ACTIONS(1592),
- [anon_sym_DQUOTE] = ACTIONS(1594),
- [anon_sym_SQUOTE] = ACTIONS(1596),
- [anon_sym_new] = ACTIONS(1598),
- [anon_sym_AMP] = ACTIONS(1006),
- [anon_sym_PIPE] = ACTIONS(1008),
- [anon_sym_PLUS] = ACTIONS(2977),
- [anon_sym_DASH] = ACTIONS(2977),
- [anon_sym_LT] = ACTIONS(2581),
- [anon_sym_void] = ACTIONS(1038),
- [sym_comment] = ACTIONS(5),
- [anon_sym_BQUOTE] = ACTIONS(1606),
- [sym_number] = ACTIONS(1608),
- [sym_this] = ACTIONS(1610),
- [sym_true] = ACTIONS(1612),
- [sym_false] = ACTIONS(1612),
- [sym_null] = ACTIONS(1612),
- [sym_undefined] = ACTIONS(1612),
- [anon_sym_readonly] = ACTIONS(1614),
- [anon_sym_QMARK] = ACTIONS(1026),
- [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_object] = ACTIONS(1038),
- [anon_sym_abstract] = ACTIONS(1030),
- [anon_sym_infer] = ACTIONS(1032),
- [anon_sym_keyof] = ACTIONS(1034),
- [anon_sym_unique] = ACTIONS(1036),
- [anon_sym_unknown] = ACTIONS(1038),
- [anon_sym_never] = ACTIONS(1038),
- [anon_sym_LBRACE_PIPE] = ACTIONS(1040),
- [sym_html_comment] = ACTIONS(5),
- },
- [966] = {
- [sym_import] = STATE(5139),
- [sym_nested_identifier] = STATE(5610),
- [sym_string] = STATE(3160),
- [sym_formal_parameters] = STATE(5827),
- [sym_nested_type_identifier] = STATE(3047),
- [sym__type_query_member_expression_in_type_annotation] = STATE(2958),
- [sym__type_query_call_expression_in_type_annotation] = STATE(3113),
- [sym_type] = STATE(3192),
- [sym_constructor_type] = STATE(3205),
- [sym_primary_type] = STATE(3150),
- [sym_template_literal_type] = STATE(3195),
- [sym_infer_type] = STATE(3205),
- [sym_conditional_type] = STATE(3195),
- [sym_generic_type] = STATE(3195),
- [sym_type_query] = STATE(3195),
- [sym_index_type_query] = STATE(3195),
- [sym_lookup_type] = STATE(3195),
- [sym_literal_type] = STATE(3195),
- [sym__number] = STATE(3154),
- [sym_existential_type] = STATE(3195),
- [sym_flow_maybe_type] = STATE(3195),
- [sym_parenthesized_type] = STATE(3195),
- [sym_predefined_type] = STATE(3195),
- [sym_object_type] = STATE(3195),
- [sym_type_parameters] = STATE(5228),
- [sym_array_type] = STATE(3195),
- [sym_tuple_type] = STATE(3195),
- [sym_readonly_type] = STATE(3205),
- [sym_union_type] = STATE(3195),
- [sym_intersection_type] = STATE(3195),
- [sym_function_type] = STATE(3205),
- [sym_identifier] = ACTIONS(1582),
- [anon_sym_STAR] = ACTIONS(992),
- [anon_sym_LBRACE] = ACTIONS(1586),
- [anon_sym_typeof] = ACTIONS(1588),
- [anon_sym_import] = ACTIONS(133),
- [anon_sym_const] = ACTIONS(998),
- [anon_sym_LPAREN] = ACTIONS(1590),
- [anon_sym_LBRACK] = ACTIONS(1592),
- [anon_sym_DQUOTE] = ACTIONS(1594),
- [anon_sym_SQUOTE] = ACTIONS(1596),
- [anon_sym_new] = ACTIONS(1598),
- [anon_sym_AMP] = ACTIONS(1006),
- [anon_sym_PIPE] = ACTIONS(1008),
- [anon_sym_PLUS] = ACTIONS(2977),
- [anon_sym_DASH] = ACTIONS(2977),
- [anon_sym_LT] = ACTIONS(2581),
- [anon_sym_void] = ACTIONS(1038),
- [sym_comment] = ACTIONS(5),
- [anon_sym_BQUOTE] = ACTIONS(1606),
- [sym_number] = ACTIONS(1608),
- [sym_this] = ACTIONS(1610),
- [sym_true] = ACTIONS(1612),
- [sym_false] = ACTIONS(1612),
- [sym_null] = ACTIONS(1612),
- [sym_undefined] = ACTIONS(1612),
- [anon_sym_readonly] = ACTIONS(1614),
- [anon_sym_QMARK] = ACTIONS(1026),
- [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_object] = ACTIONS(1038),
- [anon_sym_abstract] = ACTIONS(1030),
- [anon_sym_infer] = ACTIONS(1032),
- [anon_sym_keyof] = ACTIONS(1034),
- [anon_sym_unique] = ACTIONS(1036),
- [anon_sym_unknown] = ACTIONS(1038),
- [anon_sym_never] = ACTIONS(1038),
- [anon_sym_LBRACE_PIPE] = ACTIONS(1040),
- [sym_html_comment] = ACTIONS(5),
- },
- [967] = {
- [sym_import] = STATE(5139),
- [sym_nested_identifier] = STATE(5610),
- [sym_string] = STATE(3160),
- [sym_formal_parameters] = STATE(5827),
- [sym_nested_type_identifier] = STATE(3047),
- [sym__type_query_member_expression_in_type_annotation] = STATE(2958),
- [sym__type_query_call_expression_in_type_annotation] = STATE(3113),
- [sym_type] = STATE(3210),
- [sym_constructor_type] = STATE(3205),
- [sym_primary_type] = STATE(3150),
- [sym_template_literal_type] = STATE(3195),
- [sym_infer_type] = STATE(3205),
- [sym_conditional_type] = STATE(3195),
- [sym_generic_type] = STATE(3195),
- [sym_type_query] = STATE(3195),
- [sym_index_type_query] = STATE(3195),
- [sym_lookup_type] = STATE(3195),
- [sym_literal_type] = STATE(3195),
- [sym__number] = STATE(3154),
- [sym_existential_type] = STATE(3195),
- [sym_flow_maybe_type] = STATE(3195),
- [sym_parenthesized_type] = STATE(3195),
- [sym_predefined_type] = STATE(3195),
- [sym_object_type] = STATE(3195),
- [sym_type_parameters] = STATE(5228),
- [sym_array_type] = STATE(3195),
- [sym_tuple_type] = STATE(3195),
- [sym_readonly_type] = STATE(3205),
- [sym_union_type] = STATE(3195),
- [sym_intersection_type] = STATE(3195),
- [sym_function_type] = STATE(3205),
- [sym_identifier] = ACTIONS(1582),
- [anon_sym_STAR] = ACTIONS(992),
- [anon_sym_LBRACE] = ACTIONS(1586),
- [anon_sym_typeof] = ACTIONS(1588),
- [anon_sym_import] = ACTIONS(133),
- [anon_sym_const] = ACTIONS(998),
- [anon_sym_LPAREN] = ACTIONS(1590),
- [anon_sym_LBRACK] = ACTIONS(1592),
- [anon_sym_DQUOTE] = ACTIONS(1594),
- [anon_sym_SQUOTE] = ACTIONS(1596),
- [anon_sym_new] = ACTIONS(1598),
- [anon_sym_AMP] = ACTIONS(1006),
- [anon_sym_PIPE] = ACTIONS(1008),
- [anon_sym_PLUS] = ACTIONS(2977),
- [anon_sym_DASH] = ACTIONS(2977),
- [anon_sym_LT] = ACTIONS(2581),
- [anon_sym_void] = ACTIONS(1038),
- [sym_comment] = ACTIONS(5),
- [anon_sym_BQUOTE] = ACTIONS(1606),
- [sym_number] = ACTIONS(1608),
- [sym_this] = ACTIONS(1610),
- [sym_true] = ACTIONS(1612),
- [sym_false] = ACTIONS(1612),
- [sym_null] = ACTIONS(1612),
- [sym_undefined] = ACTIONS(1612),
- [anon_sym_readonly] = ACTIONS(1614),
- [anon_sym_QMARK] = ACTIONS(1026),
- [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_object] = ACTIONS(1038),
- [anon_sym_abstract] = ACTIONS(1030),
- [anon_sym_infer] = ACTIONS(1032),
- [anon_sym_keyof] = ACTIONS(1034),
- [anon_sym_unique] = ACTIONS(1036),
- [anon_sym_unknown] = ACTIONS(1038),
- [anon_sym_never] = ACTIONS(1038),
- [anon_sym_LBRACE_PIPE] = ACTIONS(1040),
- [sym_html_comment] = ACTIONS(5),
- },
- [968] = {
- [sym_import] = STATE(5139),
- [sym_nested_identifier] = STATE(5610),
- [sym_string] = STATE(3160),
- [sym_formal_parameters] = STATE(5827),
- [sym_nested_type_identifier] = STATE(3047),
- [sym__type_query_member_expression_in_type_annotation] = STATE(2958),
- [sym__type_query_call_expression_in_type_annotation] = STATE(3113),
- [sym_type] = STATE(3211),
- [sym_constructor_type] = STATE(3205),
- [sym_primary_type] = STATE(3150),
- [sym_template_literal_type] = STATE(3195),
- [sym_infer_type] = STATE(3205),
- [sym_conditional_type] = STATE(3195),
- [sym_generic_type] = STATE(3195),
- [sym_type_query] = STATE(3195),
- [sym_index_type_query] = STATE(3195),
- [sym_lookup_type] = STATE(3195),
- [sym_literal_type] = STATE(3195),
- [sym__number] = STATE(3154),
- [sym_existential_type] = STATE(3195),
- [sym_flow_maybe_type] = STATE(3195),
- [sym_parenthesized_type] = STATE(3195),
- [sym_predefined_type] = STATE(3195),
- [sym_object_type] = STATE(3195),
- [sym_type_parameters] = STATE(5228),
- [sym_array_type] = STATE(3195),
- [sym_tuple_type] = STATE(3195),
- [sym_readonly_type] = STATE(3205),
- [sym_union_type] = STATE(3195),
- [sym_intersection_type] = STATE(3195),
- [sym_function_type] = STATE(3205),
- [sym_identifier] = ACTIONS(1582),
- [anon_sym_STAR] = ACTIONS(992),
- [anon_sym_LBRACE] = ACTIONS(1586),
- [anon_sym_typeof] = ACTIONS(1588),
- [anon_sym_import] = ACTIONS(133),
- [anon_sym_const] = ACTIONS(998),
- [anon_sym_LPAREN] = ACTIONS(1590),
- [anon_sym_LBRACK] = ACTIONS(1592),
- [anon_sym_DQUOTE] = ACTIONS(1594),
- [anon_sym_SQUOTE] = ACTIONS(1596),
- [anon_sym_new] = ACTIONS(1598),
- [anon_sym_AMP] = ACTIONS(1006),
- [anon_sym_PIPE] = ACTIONS(1008),
- [anon_sym_PLUS] = ACTIONS(2977),
- [anon_sym_DASH] = ACTIONS(2977),
- [anon_sym_LT] = ACTIONS(2581),
- [anon_sym_void] = ACTIONS(1038),
- [sym_comment] = ACTIONS(5),
- [anon_sym_BQUOTE] = ACTIONS(1606),
- [sym_number] = ACTIONS(1608),
- [sym_this] = ACTIONS(1610),
- [sym_true] = ACTIONS(1612),
- [sym_false] = ACTIONS(1612),
- [sym_null] = ACTIONS(1612),
- [sym_undefined] = ACTIONS(1612),
- [anon_sym_readonly] = ACTIONS(1614),
- [anon_sym_QMARK] = ACTIONS(1026),
- [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_object] = ACTIONS(1038),
- [anon_sym_abstract] = ACTIONS(1030),
- [anon_sym_infer] = ACTIONS(1032),
- [anon_sym_keyof] = ACTIONS(1034),
- [anon_sym_unique] = ACTIONS(1036),
- [anon_sym_unknown] = ACTIONS(1038),
- [anon_sym_never] = ACTIONS(1038),
- [anon_sym_LBRACE_PIPE] = ACTIONS(1040),
- [sym_html_comment] = ACTIONS(5),
- },
- [969] = {
- [sym_import] = STATE(4606),
- [sym_nested_identifier] = STATE(5653),
- [sym_string] = STATE(1545),
- [sym_formal_parameters] = STATE(5840),
- [sym_nested_type_identifier] = STATE(1441),
- [sym__type_query_member_expression_in_type_annotation] = STATE(1440),
- [sym__type_query_call_expression_in_type_annotation] = STATE(1555),
- [sym_type] = STATE(1563),
- [sym_constructor_type] = STATE(1556),
- [sym_primary_type] = STATE(1565),
- [sym_template_literal_type] = STATE(1540),
- [sym_infer_type] = STATE(1556),
- [sym_conditional_type] = STATE(1540),
- [sym_generic_type] = STATE(1540),
- [sym_type_query] = STATE(1540),
- [sym_index_type_query] = STATE(1540),
- [sym_lookup_type] = STATE(1540),
- [sym_literal_type] = STATE(1540),
- [sym__number] = STATE(1566),
- [sym_existential_type] = STATE(1540),
- [sym_flow_maybe_type] = STATE(1540),
- [sym_parenthesized_type] = STATE(1540),
- [sym_predefined_type] = STATE(1540),
- [sym_object_type] = STATE(1540),
- [sym_type_parameters] = STATE(5295),
- [sym_array_type] = STATE(1540),
- [sym_tuple_type] = STATE(1540),
- [sym_readonly_type] = STATE(1556),
- [sym_union_type] = STATE(1540),
- [sym_intersection_type] = STATE(1540),
- [sym_function_type] = STATE(1556),
- [sym_identifier] = ACTIONS(3181),
- [anon_sym_STAR] = ACTIONS(3071),
- [anon_sym_LBRACE] = ACTIONS(3073),
- [anon_sym_typeof] = ACTIONS(3075),
- [anon_sym_import] = ACTIONS(133),
- [anon_sym_const] = ACTIONS(3077),
- [anon_sym_LPAREN] = ACTIONS(3079),
- [anon_sym_LBRACK] = ACTIONS(3081),
- [anon_sym_DQUOTE] = ACTIONS(150),
- [anon_sym_SQUOTE] = ACTIONS(152),
- [anon_sym_new] = ACTIONS(3083),
- [anon_sym_AMP] = ACTIONS(3085),
- [anon_sym_PIPE] = ACTIONS(3087),
- [anon_sym_PLUS] = ACTIONS(3089),
- [anon_sym_DASH] = ACTIONS(3089),
- [anon_sym_LT] = ACTIONS(2581),
- [anon_sym_void] = ACTIONS(3091),
- [sym_comment] = ACTIONS(5),
- [anon_sym_BQUOTE] = ACTIONS(3093),
- [sym_number] = ACTIONS(3095),
- [sym_this] = ACTIONS(3183),
- [sym_true] = ACTIONS(3099),
- [sym_false] = ACTIONS(3099),
- [sym_null] = ACTIONS(3099),
- [sym_undefined] = ACTIONS(3099),
- [anon_sym_readonly] = ACTIONS(3101),
- [anon_sym_QMARK] = ACTIONS(3103),
- [anon_sym_any] = ACTIONS(3091),
- [anon_sym_number] = ACTIONS(3091),
- [anon_sym_boolean] = ACTIONS(3091),
- [anon_sym_string] = ACTIONS(3091),
- [anon_sym_symbol] = ACTIONS(3091),
- [anon_sym_object] = ACTIONS(3091),
- [anon_sym_abstract] = ACTIONS(3105),
- [anon_sym_infer] = ACTIONS(3109),
- [anon_sym_keyof] = ACTIONS(3111),
- [anon_sym_unique] = ACTIONS(3113),
- [anon_sym_unknown] = ACTIONS(3091),
- [anon_sym_never] = ACTIONS(3091),
- [anon_sym_LBRACE_PIPE] = ACTIONS(3115),
- [sym_html_comment] = ACTIONS(5),
- },
- [970] = {
- [sym_import] = STATE(4606),
- [sym_nested_identifier] = STATE(5653),
- [sym_string] = STATE(1545),
- [sym_formal_parameters] = STATE(5840),
- [sym_nested_type_identifier] = STATE(1441),
- [sym__type_query_member_expression_in_type_annotation] = STATE(1440),
- [sym__type_query_call_expression_in_type_annotation] = STATE(1555),
- [sym_type] = STATE(1564),
- [sym_constructor_type] = STATE(1556),
- [sym_primary_type] = STATE(1565),
- [sym_template_literal_type] = STATE(1540),
- [sym_infer_type] = STATE(1556),
- [sym_conditional_type] = STATE(1540),
- [sym_generic_type] = STATE(1540),
- [sym_type_query] = STATE(1540),
- [sym_index_type_query] = STATE(1540),
- [sym_lookup_type] = STATE(1540),
- [sym_literal_type] = STATE(1540),
- [sym__number] = STATE(1566),
- [sym_existential_type] = STATE(1540),
- [sym_flow_maybe_type] = STATE(1540),
- [sym_parenthesized_type] = STATE(1540),
- [sym_predefined_type] = STATE(1540),
- [sym_object_type] = STATE(1540),
- [sym_type_parameters] = STATE(5295),
- [sym_array_type] = STATE(1540),
- [sym_tuple_type] = STATE(1540),
- [sym_readonly_type] = STATE(1556),
- [sym_union_type] = STATE(1540),
- [sym_intersection_type] = STATE(1540),
- [sym_function_type] = STATE(1556),
- [sym_identifier] = ACTIONS(3181),
- [anon_sym_STAR] = ACTIONS(3071),
- [anon_sym_LBRACE] = ACTIONS(3073),
- [anon_sym_typeof] = ACTIONS(3075),
- [anon_sym_import] = ACTIONS(133),
- [anon_sym_const] = ACTIONS(3077),
- [anon_sym_LPAREN] = ACTIONS(3079),
- [anon_sym_LBRACK] = ACTIONS(3081),
- [anon_sym_DQUOTE] = ACTIONS(150),
- [anon_sym_SQUOTE] = ACTIONS(152),
- [anon_sym_new] = ACTIONS(3083),
- [anon_sym_AMP] = ACTIONS(3085),
- [anon_sym_PIPE] = ACTIONS(3087),
- [anon_sym_PLUS] = ACTIONS(3089),
- [anon_sym_DASH] = ACTIONS(3089),
- [anon_sym_LT] = ACTIONS(2581),
- [anon_sym_void] = ACTIONS(3091),
- [sym_comment] = ACTIONS(5),
- [anon_sym_BQUOTE] = ACTIONS(3093),
- [sym_number] = ACTIONS(3095),
- [sym_this] = ACTIONS(3183),
- [sym_true] = ACTIONS(3099),
- [sym_false] = ACTIONS(3099),
- [sym_null] = ACTIONS(3099),
- [sym_undefined] = ACTIONS(3099),
- [anon_sym_readonly] = ACTIONS(3101),
- [anon_sym_QMARK] = ACTIONS(3103),
- [anon_sym_any] = ACTIONS(3091),
- [anon_sym_number] = ACTIONS(3091),
- [anon_sym_boolean] = ACTIONS(3091),
- [anon_sym_string] = ACTIONS(3091),
- [anon_sym_symbol] = ACTIONS(3091),
- [anon_sym_object] = ACTIONS(3091),
- [anon_sym_abstract] = ACTIONS(3105),
- [anon_sym_infer] = ACTIONS(3109),
- [anon_sym_keyof] = ACTIONS(3111),
- [anon_sym_unique] = ACTIONS(3113),
- [anon_sym_unknown] = ACTIONS(3091),
- [anon_sym_never] = ACTIONS(3091),
- [anon_sym_LBRACE_PIPE] = ACTIONS(3115),
- [sym_html_comment] = ACTIONS(5),
- },
- [971] = {
- [sym_import] = STATE(4618),
- [sym_nested_identifier] = STATE(5906),
- [sym_string] = STATE(1947),
- [sym_formal_parameters] = STATE(5651),
- [sym_nested_type_identifier] = STATE(1799),
- [sym__type_query_member_expression_in_type_annotation] = STATE(1800),
- [sym__type_query_call_expression_in_type_annotation] = STATE(1928),
- [sym_type] = STATE(1923),
- [sym_constructor_type] = STATE(1929),
- [sym_primary_type] = STATE(1931),
- [sym_template_literal_type] = STATE(1936),
- [sym_infer_type] = STATE(1929),
- [sym_conditional_type] = STATE(1936),
- [sym_generic_type] = STATE(1936),
- [sym_type_query] = STATE(1936),
- [sym_index_type_query] = STATE(1936),
- [sym_lookup_type] = STATE(1936),
- [sym_literal_type] = STATE(1936),
- [sym__number] = STATE(1932),
- [sym_existential_type] = STATE(1936),
- [sym_flow_maybe_type] = STATE(1936),
- [sym_parenthesized_type] = STATE(1936),
- [sym_predefined_type] = STATE(1936),
- [sym_object_type] = STATE(1936),
- [sym_type_parameters] = STATE(5347),
- [sym_array_type] = STATE(1936),
- [sym_tuple_type] = STATE(1936),
- [sym_readonly_type] = STATE(1929),
- [sym_union_type] = STATE(1936),
- [sym_intersection_type] = STATE(1936),
- [sym_function_type] = STATE(1929),
- [sym_identifier] = ACTIONS(3177),
- [anon_sym_STAR] = ACTIONS(2929),
- [anon_sym_LBRACE] = ACTIONS(2931),
- [anon_sym_typeof] = ACTIONS(2933),
- [anon_sym_import] = ACTIONS(133),
- [anon_sym_const] = ACTIONS(2935),
- [anon_sym_LPAREN] = ACTIONS(2937),
- [anon_sym_LBRACK] = ACTIONS(2939),
- [anon_sym_DQUOTE] = ACTIONS(69),
- [anon_sym_SQUOTE] = ACTIONS(71),
- [anon_sym_new] = ACTIONS(2941),
- [anon_sym_AMP] = ACTIONS(2943),
- [anon_sym_PIPE] = ACTIONS(2945),
- [anon_sym_PLUS] = ACTIONS(2947),
- [anon_sym_DASH] = ACTIONS(2947),
- [anon_sym_LT] = ACTIONS(2581),
- [anon_sym_void] = ACTIONS(2949),
- [sym_comment] = ACTIONS(5),
- [anon_sym_BQUOTE] = ACTIONS(2951),
- [sym_number] = ACTIONS(2953),
- [sym_this] = ACTIONS(3179),
- [sym_true] = ACTIONS(2957),
- [sym_false] = ACTIONS(2957),
- [sym_null] = ACTIONS(2957),
- [sym_undefined] = ACTIONS(2957),
- [anon_sym_readonly] = ACTIONS(2959),
- [anon_sym_QMARK] = ACTIONS(2961),
- [anon_sym_any] = ACTIONS(2949),
- [anon_sym_number] = ACTIONS(2949),
- [anon_sym_boolean] = ACTIONS(2949),
- [anon_sym_string] = ACTIONS(2949),
- [anon_sym_symbol] = ACTIONS(2949),
- [anon_sym_object] = ACTIONS(2949),
- [anon_sym_abstract] = ACTIONS(2963),
- [anon_sym_infer] = ACTIONS(2967),
- [anon_sym_keyof] = ACTIONS(2969),
- [anon_sym_unique] = ACTIONS(2971),
- [anon_sym_unknown] = ACTIONS(2949),
- [anon_sym_never] = ACTIONS(2949),
- [anon_sym_LBRACE_PIPE] = ACTIONS(2973),
- [sym_html_comment] = ACTIONS(5),
- },
- [972] = {
- [sym_import] = STATE(4606),
- [sym_nested_identifier] = STATE(5653),
- [sym_string] = STATE(1545),
- [sym_formal_parameters] = STATE(5840),
- [sym_nested_type_identifier] = STATE(1441),
- [sym__type_query_member_expression_in_type_annotation] = STATE(1440),
- [sym__type_query_call_expression_in_type_annotation] = STATE(1555),
- [sym_type] = STATE(1580),
- [sym_constructor_type] = STATE(1556),
- [sym_primary_type] = STATE(1565),
- [sym_template_literal_type] = STATE(1540),
- [sym_infer_type] = STATE(1556),
- [sym_conditional_type] = STATE(1540),
- [sym_generic_type] = STATE(1540),
- [sym_type_query] = STATE(1540),
- [sym_index_type_query] = STATE(1540),
- [sym_lookup_type] = STATE(1540),
- [sym_literal_type] = STATE(1540),
- [sym__number] = STATE(1566),
- [sym_existential_type] = STATE(1540),
- [sym_flow_maybe_type] = STATE(1540),
- [sym_parenthesized_type] = STATE(1540),
- [sym_predefined_type] = STATE(1540),
- [sym_object_type] = STATE(1540),
- [sym_type_parameters] = STATE(5295),
- [sym_array_type] = STATE(1540),
- [sym_tuple_type] = STATE(1540),
- [sym_readonly_type] = STATE(1556),
- [sym_union_type] = STATE(1540),
- [sym_intersection_type] = STATE(1540),
- [sym_function_type] = STATE(1556),
- [sym_identifier] = ACTIONS(3181),
- [anon_sym_STAR] = ACTIONS(3071),
- [anon_sym_LBRACE] = ACTIONS(3073),
- [anon_sym_typeof] = ACTIONS(3075),
- [anon_sym_import] = ACTIONS(133),
- [anon_sym_const] = ACTIONS(3077),
- [anon_sym_LPAREN] = ACTIONS(3079),
- [anon_sym_LBRACK] = ACTIONS(3081),
- [anon_sym_DQUOTE] = ACTIONS(150),
- [anon_sym_SQUOTE] = ACTIONS(152),
- [anon_sym_new] = ACTIONS(3083),
- [anon_sym_AMP] = ACTIONS(3085),
- [anon_sym_PIPE] = ACTIONS(3087),
- [anon_sym_PLUS] = ACTIONS(3089),
- [anon_sym_DASH] = ACTIONS(3089),
- [anon_sym_LT] = ACTIONS(2581),
- [anon_sym_void] = ACTIONS(3091),
- [sym_comment] = ACTIONS(5),
- [anon_sym_BQUOTE] = ACTIONS(3093),
- [sym_number] = ACTIONS(3095),
- [sym_this] = ACTIONS(3183),
- [sym_true] = ACTIONS(3099),
- [sym_false] = ACTIONS(3099),
- [sym_null] = ACTIONS(3099),
- [sym_undefined] = ACTIONS(3099),
- [anon_sym_readonly] = ACTIONS(3101),
- [anon_sym_QMARK] = ACTIONS(3103),
- [anon_sym_any] = ACTIONS(3091),
- [anon_sym_number] = ACTIONS(3091),
- [anon_sym_boolean] = ACTIONS(3091),
- [anon_sym_string] = ACTIONS(3091),
- [anon_sym_symbol] = ACTIONS(3091),
- [anon_sym_object] = ACTIONS(3091),
- [anon_sym_abstract] = ACTIONS(3105),
- [anon_sym_infer] = ACTIONS(3109),
- [anon_sym_keyof] = ACTIONS(3111),
- [anon_sym_unique] = ACTIONS(3113),
- [anon_sym_unknown] = ACTIONS(3091),
- [anon_sym_never] = ACTIONS(3091),
- [anon_sym_LBRACE_PIPE] = ACTIONS(3115),
- [sym_html_comment] = ACTIONS(5),
- },
- [973] = {
- [sym_import] = STATE(4606),
- [sym_nested_identifier] = STATE(5653),
- [sym_string] = STATE(1545),
- [sym_formal_parameters] = STATE(5840),
- [sym_nested_type_identifier] = STATE(1441),
- [sym__type_query_member_expression_in_type_annotation] = STATE(1440),
- [sym__type_query_call_expression_in_type_annotation] = STATE(1555),
- [sym_type] = STATE(1581),
- [sym_constructor_type] = STATE(1556),
- [sym_primary_type] = STATE(1565),
- [sym_template_literal_type] = STATE(1540),
- [sym_infer_type] = STATE(1556),
- [sym_conditional_type] = STATE(1540),
- [sym_generic_type] = STATE(1540),
- [sym_type_query] = STATE(1540),
- [sym_index_type_query] = STATE(1540),
- [sym_lookup_type] = STATE(1540),
- [sym_literal_type] = STATE(1540),
- [sym__number] = STATE(1566),
- [sym_existential_type] = STATE(1540),
- [sym_flow_maybe_type] = STATE(1540),
- [sym_parenthesized_type] = STATE(1540),
- [sym_predefined_type] = STATE(1540),
- [sym_object_type] = STATE(1540),
- [sym_type_parameters] = STATE(5295),
- [sym_array_type] = STATE(1540),
- [sym_tuple_type] = STATE(1540),
- [sym_readonly_type] = STATE(1556),
- [sym_union_type] = STATE(1540),
- [sym_intersection_type] = STATE(1540),
- [sym_function_type] = STATE(1556),
- [sym_identifier] = ACTIONS(3181),
- [anon_sym_STAR] = ACTIONS(3071),
- [anon_sym_LBRACE] = ACTIONS(3073),
- [anon_sym_typeof] = ACTIONS(3075),
- [anon_sym_import] = ACTIONS(133),
- [anon_sym_const] = ACTIONS(3077),
- [anon_sym_LPAREN] = ACTIONS(3079),
- [anon_sym_LBRACK] = ACTIONS(3081),
- [anon_sym_DQUOTE] = ACTIONS(150),
- [anon_sym_SQUOTE] = ACTIONS(152),
- [anon_sym_new] = ACTIONS(3083),
- [anon_sym_AMP] = ACTIONS(3085),
- [anon_sym_PIPE] = ACTIONS(3087),
- [anon_sym_PLUS] = ACTIONS(3089),
- [anon_sym_DASH] = ACTIONS(3089),
- [anon_sym_LT] = ACTIONS(2581),
- [anon_sym_void] = ACTIONS(3091),
- [sym_comment] = ACTIONS(5),
- [anon_sym_BQUOTE] = ACTIONS(3093),
- [sym_number] = ACTIONS(3095),
- [sym_this] = ACTIONS(3183),
- [sym_true] = ACTIONS(3099),
- [sym_false] = ACTIONS(3099),
- [sym_null] = ACTIONS(3099),
- [sym_undefined] = ACTIONS(3099),
- [anon_sym_readonly] = ACTIONS(3101),
- [anon_sym_QMARK] = ACTIONS(3103),
- [anon_sym_any] = ACTIONS(3091),
- [anon_sym_number] = ACTIONS(3091),
- [anon_sym_boolean] = ACTIONS(3091),
- [anon_sym_string] = ACTIONS(3091),
- [anon_sym_symbol] = ACTIONS(3091),
- [anon_sym_object] = ACTIONS(3091),
- [anon_sym_abstract] = ACTIONS(3105),
- [anon_sym_infer] = ACTIONS(3109),
- [anon_sym_keyof] = ACTIONS(3111),
- [anon_sym_unique] = ACTIONS(3113),
- [anon_sym_unknown] = ACTIONS(3091),
- [anon_sym_never] = ACTIONS(3091),
- [anon_sym_LBRACE_PIPE] = ACTIONS(3115),
- [sym_html_comment] = ACTIONS(5),
- },
- [974] = {
- [sym_import] = STATE(5087),
- [sym_nested_identifier] = STATE(5707),
- [sym_string] = STATE(2889),
- [sym_formal_parameters] = STATE(5709),
- [sym_nested_type_identifier] = STATE(2828),
- [sym__type_query_member_expression_in_type_annotation] = STATE(2846),
- [sym__type_query_call_expression_in_type_annotation] = STATE(2850),
- [sym_type] = STATE(3000),
- [sym_constructor_type] = STATE(2896),
- [sym_primary_type] = STATE(2897),
- [sym_template_literal_type] = STATE(2885),
- [sym_infer_type] = STATE(2896),
- [sym_conditional_type] = STATE(2885),
- [sym_generic_type] = STATE(2885),
- [sym_type_query] = STATE(2885),
- [sym_index_type_query] = STATE(2885),
- [sym_lookup_type] = STATE(2885),
- [sym_literal_type] = STATE(2885),
- [sym__number] = STATE(2903),
- [sym_existential_type] = STATE(2885),
- [sym_flow_maybe_type] = STATE(2885),
- [sym_parenthesized_type] = STATE(2885),
- [sym_predefined_type] = STATE(2885),
- [sym_object_type] = STATE(2885),
- [sym_type_parameters] = STATE(5435),
- [sym_array_type] = STATE(2885),
- [sym_tuple_type] = STATE(2885),
- [sym_readonly_type] = STATE(2896),
- [sym_union_type] = STATE(2885),
- [sym_intersection_type] = STATE(2885),
- [sym_function_type] = STATE(2896),
- [sym_identifier] = ACTIONS(1496),
- [anon_sym_STAR] = ACTIONS(612),
- [anon_sym_LBRACE] = ACTIONS(1498),
- [anon_sym_typeof] = ACTIONS(1500),
- [anon_sym_import] = ACTIONS(133),
- [anon_sym_const] = ACTIONS(135),
- [anon_sym_LPAREN] = ACTIONS(1502),
- [anon_sym_LBRACK] = ACTIONS(1504),
- [anon_sym_DQUOTE] = ACTIONS(1506),
- [anon_sym_SQUOTE] = ACTIONS(1508),
- [anon_sym_new] = ACTIONS(1510),
- [anon_sym_AMP] = ACTIONS(741),
- [anon_sym_PIPE] = ACTIONS(743),
- [anon_sym_PLUS] = ACTIONS(2579),
- [anon_sym_DASH] = ACTIONS(2579),
- [anon_sym_LT] = ACTIONS(2581),
- [anon_sym_void] = ACTIONS(220),
- [sym_comment] = ACTIONS(5),
- [anon_sym_BQUOTE] = ACTIONS(1516),
- [sym_number] = ACTIONS(1518),
- [sym_this] = ACTIONS(1520),
- [sym_true] = ACTIONS(1522),
- [sym_false] = ACTIONS(1522),
- [sym_null] = ACTIONS(1522),
- [sym_undefined] = ACTIONS(1522),
- [anon_sym_readonly] = ACTIONS(1524),
- [anon_sym_QMARK] = ACTIONS(761),
- [anon_sym_any] = ACTIONS(220),
- [anon_sym_number] = ACTIONS(220),
- [anon_sym_boolean] = ACTIONS(220),
- [anon_sym_string] = ACTIONS(220),
- [anon_sym_symbol] = ACTIONS(220),
- [anon_sym_object] = ACTIONS(220),
- [anon_sym_abstract] = ACTIONS(212),
- [anon_sym_infer] = ACTIONS(214),
- [anon_sym_keyof] = ACTIONS(216),
- [anon_sym_unique] = ACTIONS(218),
- [anon_sym_unknown] = ACTIONS(220),
- [anon_sym_never] = ACTIONS(220),
- [anon_sym_LBRACE_PIPE] = ACTIONS(222),
- [sym_html_comment] = ACTIONS(5),
- },
- [975] = {
- [sym_import] = STATE(5087),
- [sym_nested_identifier] = STATE(5707),
- [sym_string] = STATE(2889),
- [sym_formal_parameters] = STATE(5709),
- [sym_nested_type_identifier] = STATE(2828),
- [sym__type_query_member_expression_in_type_annotation] = STATE(2846),
- [sym__type_query_call_expression_in_type_annotation] = STATE(2850),
- [sym_type] = STATE(3001),
- [sym_constructor_type] = STATE(2896),
- [sym_primary_type] = STATE(2897),
- [sym_template_literal_type] = STATE(2885),
- [sym_infer_type] = STATE(2896),
- [sym_conditional_type] = STATE(2885),
- [sym_generic_type] = STATE(2885),
- [sym_type_query] = STATE(2885),
- [sym_index_type_query] = STATE(2885),
- [sym_lookup_type] = STATE(2885),
- [sym_literal_type] = STATE(2885),
- [sym__number] = STATE(2903),
- [sym_existential_type] = STATE(2885),
- [sym_flow_maybe_type] = STATE(2885),
- [sym_parenthesized_type] = STATE(2885),
- [sym_predefined_type] = STATE(2885),
- [sym_object_type] = STATE(2885),
- [sym_type_parameters] = STATE(5435),
- [sym_array_type] = STATE(2885),
- [sym_tuple_type] = STATE(2885),
- [sym_readonly_type] = STATE(2896),
- [sym_union_type] = STATE(2885),
- [sym_intersection_type] = STATE(2885),
- [sym_function_type] = STATE(2896),
- [sym_identifier] = ACTIONS(1496),
- [anon_sym_STAR] = ACTIONS(612),
- [anon_sym_LBRACE] = ACTIONS(1498),
- [anon_sym_typeof] = ACTIONS(1500),
- [anon_sym_import] = ACTIONS(133),
- [anon_sym_const] = ACTIONS(135),
- [anon_sym_LPAREN] = ACTIONS(1502),
- [anon_sym_LBRACK] = ACTIONS(1504),
- [anon_sym_DQUOTE] = ACTIONS(1506),
- [anon_sym_SQUOTE] = ACTIONS(1508),
- [anon_sym_new] = ACTIONS(1510),
- [anon_sym_AMP] = ACTIONS(741),
- [anon_sym_PIPE] = ACTIONS(743),
- [anon_sym_PLUS] = ACTIONS(2579),
- [anon_sym_DASH] = ACTIONS(2579),
- [anon_sym_LT] = ACTIONS(2581),
- [anon_sym_void] = ACTIONS(220),
- [sym_comment] = ACTIONS(5),
- [anon_sym_BQUOTE] = ACTIONS(1516),
- [sym_number] = ACTIONS(1518),
- [sym_this] = ACTIONS(1520),
- [sym_true] = ACTIONS(1522),
- [sym_false] = ACTIONS(1522),
- [sym_null] = ACTIONS(1522),
- [sym_undefined] = ACTIONS(1522),
- [anon_sym_readonly] = ACTIONS(1524),
- [anon_sym_QMARK] = ACTIONS(761),
- [anon_sym_any] = ACTIONS(220),
- [anon_sym_number] = ACTIONS(220),
- [anon_sym_boolean] = ACTIONS(220),
- [anon_sym_string] = ACTIONS(220),
- [anon_sym_symbol] = ACTIONS(220),
- [anon_sym_object] = ACTIONS(220),
- [anon_sym_abstract] = ACTIONS(212),
- [anon_sym_infer] = ACTIONS(214),
- [anon_sym_keyof] = ACTIONS(216),
- [anon_sym_unique] = ACTIONS(218),
- [anon_sym_unknown] = ACTIONS(220),
- [anon_sym_never] = ACTIONS(220),
- [anon_sym_LBRACE_PIPE] = ACTIONS(222),
- [sym_html_comment] = ACTIONS(5),
- },
- [976] = {
- [sym_import] = STATE(4606),
- [sym_nested_identifier] = STATE(5653),
- [sym_string] = STATE(1545),
- [sym_formal_parameters] = STATE(5840),
- [sym_nested_type_identifier] = STATE(1441),
- [sym__type_query_member_expression_in_type_annotation] = STATE(1440),
- [sym__type_query_call_expression_in_type_annotation] = STATE(1555),
- [sym_type] = STATE(1586),
- [sym_constructor_type] = STATE(1556),
- [sym_primary_type] = STATE(1565),
- [sym_template_literal_type] = STATE(1540),
- [sym_infer_type] = STATE(1556),
- [sym_conditional_type] = STATE(1540),
- [sym_generic_type] = STATE(1540),
- [sym_type_query] = STATE(1540),
- [sym_index_type_query] = STATE(1540),
- [sym_lookup_type] = STATE(1540),
- [sym_literal_type] = STATE(1540),
- [sym__number] = STATE(1566),
- [sym_existential_type] = STATE(1540),
- [sym_flow_maybe_type] = STATE(1540),
- [sym_parenthesized_type] = STATE(1540),
- [sym_predefined_type] = STATE(1540),
- [sym_object_type] = STATE(1540),
- [sym_type_parameters] = STATE(5295),
- [sym_array_type] = STATE(1540),
- [sym_tuple_type] = STATE(1540),
- [sym_readonly_type] = STATE(1556),
- [sym_union_type] = STATE(1540),
- [sym_intersection_type] = STATE(1540),
- [sym_function_type] = STATE(1556),
- [sym_identifier] = ACTIONS(3181),
- [anon_sym_STAR] = ACTIONS(3071),
- [anon_sym_LBRACE] = ACTIONS(3073),
- [anon_sym_typeof] = ACTIONS(3075),
- [anon_sym_import] = ACTIONS(133),
- [anon_sym_const] = ACTIONS(3077),
- [anon_sym_LPAREN] = ACTIONS(3079),
- [anon_sym_LBRACK] = ACTIONS(3081),
- [anon_sym_DQUOTE] = ACTIONS(150),
- [anon_sym_SQUOTE] = ACTIONS(152),
- [anon_sym_new] = ACTIONS(3083),
- [anon_sym_AMP] = ACTIONS(3085),
- [anon_sym_PIPE] = ACTIONS(3087),
- [anon_sym_PLUS] = ACTIONS(3089),
- [anon_sym_DASH] = ACTIONS(3089),
- [anon_sym_LT] = ACTIONS(2581),
- [anon_sym_void] = ACTIONS(3091),
- [sym_comment] = ACTIONS(5),
- [anon_sym_BQUOTE] = ACTIONS(3093),
- [sym_number] = ACTIONS(3095),
- [sym_this] = ACTIONS(3183),
- [sym_true] = ACTIONS(3099),
- [sym_false] = ACTIONS(3099),
- [sym_null] = ACTIONS(3099),
- [sym_undefined] = ACTIONS(3099),
- [anon_sym_readonly] = ACTIONS(3101),
- [anon_sym_QMARK] = ACTIONS(3103),
- [anon_sym_any] = ACTIONS(3091),
- [anon_sym_number] = ACTIONS(3091),
- [anon_sym_boolean] = ACTIONS(3091),
- [anon_sym_string] = ACTIONS(3091),
- [anon_sym_symbol] = ACTIONS(3091),
- [anon_sym_object] = ACTIONS(3091),
- [anon_sym_abstract] = ACTIONS(3105),
- [anon_sym_infer] = ACTIONS(3109),
- [anon_sym_keyof] = ACTIONS(3111),
- [anon_sym_unique] = ACTIONS(3113),
- [anon_sym_unknown] = ACTIONS(3091),
- [anon_sym_never] = ACTIONS(3091),
- [anon_sym_LBRACE_PIPE] = ACTIONS(3115),
- [sym_html_comment] = ACTIONS(5),
- },
- [977] = {
- [sym_import] = STATE(5087),
- [sym_nested_identifier] = STATE(5653),
- [sym_string] = STATE(1545),
- [sym_formal_parameters] = STATE(5709),
- [sym_nested_type_identifier] = STATE(1441),
- [sym__type_query_member_expression_in_type_annotation] = STATE(2846),
- [sym__type_query_call_expression_in_type_annotation] = STATE(2850),
- [sym_type] = STATE(4620),
- [sym_constructor_type] = STATE(2896),
- [sym_primary_type] = STATE(1587),
- [sym_template_literal_type] = STATE(1540),
- [sym_infer_type] = STATE(2896),
- [sym_conditional_type] = STATE(1540),
- [sym_generic_type] = STATE(1540),
- [sym_type_query] = STATE(1540),
- [sym_index_type_query] = STATE(1540),
- [sym_lookup_type] = STATE(1540),
- [sym_literal_type] = STATE(1540),
- [sym__number] = STATE(1566),
- [sym_existential_type] = STATE(1540),
- [sym_flow_maybe_type] = STATE(1540),
- [sym_parenthesized_type] = STATE(1540),
- [sym_predefined_type] = STATE(1540),
- [sym_object_type] = STATE(1540),
- [sym_type_parameters] = STATE(5435),
- [sym_array_type] = STATE(1540),
- [sym_tuple_type] = STATE(1540),
- [sym_readonly_type] = STATE(2896),
- [sym_union_type] = STATE(1540),
- [sym_intersection_type] = STATE(1540),
- [sym_function_type] = STATE(2896),
- [sym_identifier] = ACTIONS(3181),
- [anon_sym_STAR] = ACTIONS(3071),
- [anon_sym_LBRACE] = ACTIONS(3073),
- [anon_sym_typeof] = ACTIONS(3075),
- [anon_sym_import] = ACTIONS(133),
- [anon_sym_const] = ACTIONS(3077),
- [anon_sym_LPAREN] = ACTIONS(3079),
- [anon_sym_LBRACK] = ACTIONS(3081),
- [anon_sym_DQUOTE] = ACTIONS(150),
- [anon_sym_SQUOTE] = ACTIONS(152),
- [anon_sym_new] = ACTIONS(1510),
- [anon_sym_AMP] = ACTIONS(3085),
- [anon_sym_PIPE] = ACTIONS(3087),
- [anon_sym_PLUS] = ACTIONS(3089),
- [anon_sym_DASH] = ACTIONS(3089),
- [anon_sym_LT] = ACTIONS(2581),
- [anon_sym_void] = ACTIONS(3091),
- [sym_comment] = ACTIONS(5),
- [anon_sym_BQUOTE] = ACTIONS(3093),
- [sym_number] = ACTIONS(3095),
- [sym_this] = ACTIONS(3183),
- [sym_true] = ACTIONS(3099),
- [sym_false] = ACTIONS(3099),
- [sym_null] = ACTIONS(3099),
- [sym_undefined] = ACTIONS(3099),
- [anon_sym_readonly] = ACTIONS(1524),
- [anon_sym_QMARK] = ACTIONS(3103),
- [anon_sym_any] = ACTIONS(3091),
- [anon_sym_number] = ACTIONS(3091),
- [anon_sym_boolean] = ACTIONS(3091),
- [anon_sym_string] = ACTIONS(3091),
- [anon_sym_symbol] = ACTIONS(3091),
- [anon_sym_object] = ACTIONS(3091),
- [anon_sym_abstract] = ACTIONS(212),
- [anon_sym_infer] = ACTIONS(214),
- [anon_sym_keyof] = ACTIONS(3111),
- [anon_sym_unique] = ACTIONS(3113),
- [anon_sym_unknown] = ACTIONS(3091),
- [anon_sym_never] = ACTIONS(3091),
- [anon_sym_LBRACE_PIPE] = ACTIONS(3115),
- [sym_html_comment] = ACTIONS(5),
- },
- [978] = {
- [sym_import] = STATE(5087),
- [sym_nested_identifier] = STATE(5653),
- [sym_string] = STATE(1545),
- [sym_formal_parameters] = STATE(5709),
- [sym_nested_type_identifier] = STATE(1441),
- [sym__type_query_member_expression_in_type_annotation] = STATE(2846),
- [sym__type_query_call_expression_in_type_annotation] = STATE(2850),
- [sym_type] = STATE(4620),
- [sym_constructor_type] = STATE(2896),
- [sym_primary_type] = STATE(1590),
- [sym_template_literal_type] = STATE(1540),
- [sym_infer_type] = STATE(2896),
- [sym_conditional_type] = STATE(1540),
- [sym_generic_type] = STATE(1540),
- [sym_type_query] = STATE(1540),
- [sym_index_type_query] = STATE(1540),
- [sym_lookup_type] = STATE(1540),
- [sym_literal_type] = STATE(1540),
- [sym__number] = STATE(1566),
- [sym_existential_type] = STATE(1540),
- [sym_flow_maybe_type] = STATE(1540),
- [sym_parenthesized_type] = STATE(1540),
- [sym_predefined_type] = STATE(1540),
- [sym_object_type] = STATE(1540),
- [sym_type_parameters] = STATE(5435),
- [sym_array_type] = STATE(1540),
- [sym_tuple_type] = STATE(1540),
- [sym_readonly_type] = STATE(2896),
- [sym_union_type] = STATE(1540),
- [sym_intersection_type] = STATE(1540),
- [sym_function_type] = STATE(2896),
- [sym_identifier] = ACTIONS(3181),
- [anon_sym_STAR] = ACTIONS(3071),
- [anon_sym_LBRACE] = ACTIONS(3073),
- [anon_sym_typeof] = ACTIONS(3075),
- [anon_sym_import] = ACTIONS(133),
- [anon_sym_const] = ACTIONS(3077),
- [anon_sym_LPAREN] = ACTIONS(3079),
- [anon_sym_LBRACK] = ACTIONS(3081),
- [anon_sym_DQUOTE] = ACTIONS(150),
- [anon_sym_SQUOTE] = ACTIONS(152),
- [anon_sym_new] = ACTIONS(1510),
- [anon_sym_AMP] = ACTIONS(3085),
- [anon_sym_PIPE] = ACTIONS(3087),
- [anon_sym_PLUS] = ACTIONS(3089),
- [anon_sym_DASH] = ACTIONS(3089),
- [anon_sym_LT] = ACTIONS(2581),
- [anon_sym_void] = ACTIONS(3091),
- [sym_comment] = ACTIONS(5),
- [anon_sym_BQUOTE] = ACTIONS(3093),
- [sym_number] = ACTIONS(3095),
- [sym_this] = ACTIONS(3183),
- [sym_true] = ACTIONS(3099),
- [sym_false] = ACTIONS(3099),
- [sym_null] = ACTIONS(3099),
- [sym_undefined] = ACTIONS(3099),
- [anon_sym_readonly] = ACTIONS(1524),
- [anon_sym_QMARK] = ACTIONS(3103),
- [anon_sym_any] = ACTIONS(3091),
- [anon_sym_number] = ACTIONS(3091),
- [anon_sym_boolean] = ACTIONS(3091),
- [anon_sym_string] = ACTIONS(3091),
- [anon_sym_symbol] = ACTIONS(3091),
- [anon_sym_object] = ACTIONS(3091),
- [anon_sym_abstract] = ACTIONS(212),
- [anon_sym_infer] = ACTIONS(214),
- [anon_sym_keyof] = ACTIONS(3111),
- [anon_sym_unique] = ACTIONS(3113),
- [anon_sym_unknown] = ACTIONS(3091),
- [anon_sym_never] = ACTIONS(3091),
- [anon_sym_LBRACE_PIPE] = ACTIONS(3115),
- [sym_html_comment] = ACTIONS(5),
- },
- [979] = {
- [sym_import] = STATE(5139),
- [sym_nested_identifier] = STATE(5610),
- [sym_string] = STATE(3160),
- [sym_formal_parameters] = STATE(5827),
- [sym_nested_type_identifier] = STATE(3047),
- [sym__type_query_member_expression_in_type_annotation] = STATE(2958),
- [sym__type_query_call_expression_in_type_annotation] = STATE(3113),
- [sym_type] = STATE(3226),
- [sym_constructor_type] = STATE(3205),
- [sym_primary_type] = STATE(3150),
- [sym_template_literal_type] = STATE(3195),
- [sym_infer_type] = STATE(3205),
- [sym_conditional_type] = STATE(3195),
- [sym_generic_type] = STATE(3195),
- [sym_type_query] = STATE(3195),
- [sym_index_type_query] = STATE(3195),
- [sym_lookup_type] = STATE(3195),
- [sym_literal_type] = STATE(3195),
- [sym__number] = STATE(3154),
- [sym_existential_type] = STATE(3195),
- [sym_flow_maybe_type] = STATE(3195),
- [sym_parenthesized_type] = STATE(3195),
- [sym_predefined_type] = STATE(3195),
- [sym_object_type] = STATE(3195),
- [sym_type_parameters] = STATE(5228),
- [sym_array_type] = STATE(3195),
- [sym_tuple_type] = STATE(3195),
- [sym_readonly_type] = STATE(3205),
- [sym_union_type] = STATE(3195),
- [sym_intersection_type] = STATE(3195),
- [sym_function_type] = STATE(3205),
- [sym_identifier] = ACTIONS(1582),
- [anon_sym_STAR] = ACTIONS(992),
- [anon_sym_LBRACE] = ACTIONS(1586),
- [anon_sym_typeof] = ACTIONS(1588),
- [anon_sym_import] = ACTIONS(133),
- [anon_sym_const] = ACTIONS(998),
- [anon_sym_LPAREN] = ACTIONS(1590),
- [anon_sym_LBRACK] = ACTIONS(1592),
- [anon_sym_DQUOTE] = ACTIONS(1594),
- [anon_sym_SQUOTE] = ACTIONS(1596),
- [anon_sym_new] = ACTIONS(1598),
- [anon_sym_AMP] = ACTIONS(1006),
- [anon_sym_PIPE] = ACTIONS(1008),
- [anon_sym_PLUS] = ACTIONS(2977),
- [anon_sym_DASH] = ACTIONS(2977),
- [anon_sym_LT] = ACTIONS(2581),
- [anon_sym_void] = ACTIONS(1038),
- [sym_comment] = ACTIONS(5),
- [anon_sym_BQUOTE] = ACTIONS(1606),
- [sym_number] = ACTIONS(1608),
- [sym_this] = ACTIONS(1610),
- [sym_true] = ACTIONS(1612),
- [sym_false] = ACTIONS(1612),
- [sym_null] = ACTIONS(1612),
- [sym_undefined] = ACTIONS(1612),
- [anon_sym_readonly] = ACTIONS(1614),
- [anon_sym_QMARK] = ACTIONS(1026),
- [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_object] = ACTIONS(1038),
- [anon_sym_abstract] = ACTIONS(1030),
- [anon_sym_infer] = ACTIONS(1032),
- [anon_sym_keyof] = ACTIONS(1034),
- [anon_sym_unique] = ACTIONS(1036),
- [anon_sym_unknown] = ACTIONS(1038),
- [anon_sym_never] = ACTIONS(1038),
- [anon_sym_LBRACE_PIPE] = ACTIONS(1040),
- [sym_html_comment] = ACTIONS(5),
- },
- [980] = {
- [sym_import] = STATE(4606),
- [sym_nested_identifier] = STATE(5653),
- [sym_string] = STATE(1545),
- [sym_formal_parameters] = STATE(5840),
- [sym_nested_type_identifier] = STATE(1441),
- [sym__type_query_member_expression_in_type_annotation] = STATE(1440),
- [sym__type_query_call_expression_in_type_annotation] = STATE(1555),
- [sym_type] = STATE(1463),
- [sym_constructor_type] = STATE(1556),
- [sym_primary_type] = STATE(1565),
- [sym_template_literal_type] = STATE(1540),
- [sym_infer_type] = STATE(1556),
- [sym_conditional_type] = STATE(1540),
- [sym_generic_type] = STATE(1540),
- [sym_type_query] = STATE(1540),
- [sym_index_type_query] = STATE(1540),
- [sym_lookup_type] = STATE(1540),
- [sym_literal_type] = STATE(1540),
- [sym__number] = STATE(1566),
- [sym_existential_type] = STATE(1540),
- [sym_flow_maybe_type] = STATE(1540),
- [sym_parenthesized_type] = STATE(1540),
- [sym_predefined_type] = STATE(1540),
- [sym_object_type] = STATE(1540),
- [sym_type_parameters] = STATE(5295),
- [sym_array_type] = STATE(1540),
- [sym_tuple_type] = STATE(1540),
- [sym_readonly_type] = STATE(1556),
- [sym_union_type] = STATE(1540),
- [sym_intersection_type] = STATE(1540),
- [sym_function_type] = STATE(1556),
- [sym_identifier] = ACTIONS(3181),
- [anon_sym_STAR] = ACTIONS(3071),
- [anon_sym_LBRACE] = ACTIONS(3073),
- [anon_sym_typeof] = ACTIONS(3075),
- [anon_sym_import] = ACTIONS(133),
- [anon_sym_const] = ACTIONS(3077),
- [anon_sym_LPAREN] = ACTIONS(3079),
- [anon_sym_LBRACK] = ACTIONS(3081),
- [anon_sym_DQUOTE] = ACTIONS(150),
- [anon_sym_SQUOTE] = ACTIONS(152),
- [anon_sym_new] = ACTIONS(3083),
- [anon_sym_AMP] = ACTIONS(3085),
- [anon_sym_PIPE] = ACTIONS(3087),
- [anon_sym_PLUS] = ACTIONS(3089),
- [anon_sym_DASH] = ACTIONS(3089),
- [anon_sym_LT] = ACTIONS(2581),
- [anon_sym_void] = ACTIONS(3091),
- [sym_comment] = ACTIONS(5),
- [anon_sym_BQUOTE] = ACTIONS(3093),
- [sym_number] = ACTIONS(3095),
- [sym_this] = ACTIONS(3183),
- [sym_true] = ACTIONS(3099),
- [sym_false] = ACTIONS(3099),
- [sym_null] = ACTIONS(3099),
- [sym_undefined] = ACTIONS(3099),
- [anon_sym_readonly] = ACTIONS(3101),
- [anon_sym_QMARK] = ACTIONS(3103),
- [anon_sym_any] = ACTIONS(3091),
- [anon_sym_number] = ACTIONS(3091),
- [anon_sym_boolean] = ACTIONS(3091),
- [anon_sym_string] = ACTIONS(3091),
- [anon_sym_symbol] = ACTIONS(3091),
- [anon_sym_object] = ACTIONS(3091),
- [anon_sym_abstract] = ACTIONS(3105),
- [anon_sym_infer] = ACTIONS(3109),
- [anon_sym_keyof] = ACTIONS(3111),
- [anon_sym_unique] = ACTIONS(3113),
- [anon_sym_unknown] = ACTIONS(3091),
- [anon_sym_never] = ACTIONS(3091),
- [anon_sym_LBRACE_PIPE] = ACTIONS(3115),
- [sym_html_comment] = ACTIONS(5),
- },
- [981] = {
- [sym_import] = STATE(4606),
- [sym_nested_identifier] = STATE(5653),
- [sym_string] = STATE(1545),
- [sym_formal_parameters] = STATE(5840),
- [sym_nested_type_identifier] = STATE(1441),
- [sym__type_query_member_expression_in_type_annotation] = STATE(1440),
- [sym__type_query_call_expression_in_type_annotation] = STATE(1555),
- [sym_type] = STATE(1464),
- [sym_constructor_type] = STATE(1556),
- [sym_primary_type] = STATE(1565),
- [sym_template_literal_type] = STATE(1540),
- [sym_infer_type] = STATE(1556),
- [sym_conditional_type] = STATE(1540),
- [sym_generic_type] = STATE(1540),
- [sym_type_query] = STATE(1540),
- [sym_index_type_query] = STATE(1540),
- [sym_lookup_type] = STATE(1540),
- [sym_literal_type] = STATE(1540),
- [sym__number] = STATE(1566),
- [sym_existential_type] = STATE(1540),
- [sym_flow_maybe_type] = STATE(1540),
- [sym_parenthesized_type] = STATE(1540),
- [sym_predefined_type] = STATE(1540),
- [sym_object_type] = STATE(1540),
- [sym_type_parameters] = STATE(5295),
- [sym_array_type] = STATE(1540),
- [sym_tuple_type] = STATE(1540),
- [sym_readonly_type] = STATE(1556),
- [sym_union_type] = STATE(1540),
- [sym_intersection_type] = STATE(1540),
- [sym_function_type] = STATE(1556),
- [sym_identifier] = ACTIONS(3181),
- [anon_sym_STAR] = ACTIONS(3071),
- [anon_sym_LBRACE] = ACTIONS(3073),
- [anon_sym_typeof] = ACTIONS(3075),
- [anon_sym_import] = ACTIONS(133),
- [anon_sym_const] = ACTIONS(3077),
- [anon_sym_LPAREN] = ACTIONS(3079),
- [anon_sym_LBRACK] = ACTIONS(3081),
- [anon_sym_DQUOTE] = ACTIONS(150),
- [anon_sym_SQUOTE] = ACTIONS(152),
- [anon_sym_new] = ACTIONS(3083),
- [anon_sym_AMP] = ACTIONS(3085),
- [anon_sym_PIPE] = ACTIONS(3087),
- [anon_sym_PLUS] = ACTIONS(3089),
- [anon_sym_DASH] = ACTIONS(3089),
- [anon_sym_LT] = ACTIONS(2581),
- [anon_sym_void] = ACTIONS(3091),
- [sym_comment] = ACTIONS(5),
- [anon_sym_BQUOTE] = ACTIONS(3093),
- [sym_number] = ACTIONS(3095),
- [sym_this] = ACTIONS(3183),
- [sym_true] = ACTIONS(3099),
- [sym_false] = ACTIONS(3099),
- [sym_null] = ACTIONS(3099),
- [sym_undefined] = ACTIONS(3099),
- [anon_sym_readonly] = ACTIONS(3101),
- [anon_sym_QMARK] = ACTIONS(3103),
- [anon_sym_any] = ACTIONS(3091),
- [anon_sym_number] = ACTIONS(3091),
- [anon_sym_boolean] = ACTIONS(3091),
- [anon_sym_string] = ACTIONS(3091),
- [anon_sym_symbol] = ACTIONS(3091),
- [anon_sym_object] = ACTIONS(3091),
- [anon_sym_abstract] = ACTIONS(3105),
- [anon_sym_infer] = ACTIONS(3109),
- [anon_sym_keyof] = ACTIONS(3111),
- [anon_sym_unique] = ACTIONS(3113),
- [anon_sym_unknown] = ACTIONS(3091),
- [anon_sym_never] = ACTIONS(3091),
- [anon_sym_LBRACE_PIPE] = ACTIONS(3115),
- [sym_html_comment] = ACTIONS(5),
- },
- [982] = {
- [sym_import] = STATE(4606),
- [sym_nested_identifier] = STATE(5653),
- [sym_string] = STATE(1545),
- [sym_formal_parameters] = STATE(5840),
- [sym_nested_type_identifier] = STATE(1441),
- [sym__type_query_member_expression_in_type_annotation] = STATE(1440),
- [sym__type_query_call_expression_in_type_annotation] = STATE(1555),
- [sym_type] = STATE(1484),
- [sym_constructor_type] = STATE(1556),
- [sym_primary_type] = STATE(1565),
- [sym_template_literal_type] = STATE(1540),
- [sym_infer_type] = STATE(1556),
- [sym_conditional_type] = STATE(1540),
- [sym_generic_type] = STATE(1540),
- [sym_type_query] = STATE(1540),
- [sym_index_type_query] = STATE(1540),
- [sym_lookup_type] = STATE(1540),
- [sym_literal_type] = STATE(1540),
- [sym__number] = STATE(1566),
- [sym_existential_type] = STATE(1540),
- [sym_flow_maybe_type] = STATE(1540),
- [sym_parenthesized_type] = STATE(1540),
- [sym_predefined_type] = STATE(1540),
- [sym_object_type] = STATE(1540),
- [sym_type_parameters] = STATE(5295),
- [sym_array_type] = STATE(1540),
- [sym_tuple_type] = STATE(1540),
- [sym_readonly_type] = STATE(1556),
- [sym_union_type] = STATE(1540),
- [sym_intersection_type] = STATE(1540),
- [sym_function_type] = STATE(1556),
- [sym_identifier] = ACTIONS(3181),
- [anon_sym_STAR] = ACTIONS(3071),
- [anon_sym_LBRACE] = ACTIONS(3073),
- [anon_sym_typeof] = ACTIONS(3075),
- [anon_sym_import] = ACTIONS(133),
- [anon_sym_const] = ACTIONS(3077),
- [anon_sym_LPAREN] = ACTIONS(3079),
- [anon_sym_LBRACK] = ACTIONS(3081),
- [anon_sym_DQUOTE] = ACTIONS(150),
- [anon_sym_SQUOTE] = ACTIONS(152),
- [anon_sym_new] = ACTIONS(3083),
- [anon_sym_AMP] = ACTIONS(3085),
- [anon_sym_PIPE] = ACTIONS(3087),
- [anon_sym_PLUS] = ACTIONS(3089),
- [anon_sym_DASH] = ACTIONS(3089),
- [anon_sym_LT] = ACTIONS(2581),
- [anon_sym_void] = ACTIONS(3091),
- [sym_comment] = ACTIONS(5),
- [anon_sym_BQUOTE] = ACTIONS(3093),
- [sym_number] = ACTIONS(3095),
- [sym_this] = ACTIONS(3183),
- [sym_true] = ACTIONS(3099),
- [sym_false] = ACTIONS(3099),
- [sym_null] = ACTIONS(3099),
- [sym_undefined] = ACTIONS(3099),
- [anon_sym_readonly] = ACTIONS(3101),
- [anon_sym_QMARK] = ACTIONS(3103),
- [anon_sym_any] = ACTIONS(3091),
- [anon_sym_number] = ACTIONS(3091),
- [anon_sym_boolean] = ACTIONS(3091),
- [anon_sym_string] = ACTIONS(3091),
- [anon_sym_symbol] = ACTIONS(3091),
- [anon_sym_object] = ACTIONS(3091),
- [anon_sym_abstract] = ACTIONS(3105),
- [anon_sym_infer] = ACTIONS(3109),
- [anon_sym_keyof] = ACTIONS(3111),
- [anon_sym_unique] = ACTIONS(3113),
- [anon_sym_unknown] = ACTIONS(3091),
- [anon_sym_never] = ACTIONS(3091),
- [anon_sym_LBRACE_PIPE] = ACTIONS(3115),
- [sym_html_comment] = ACTIONS(5),
- },
- [983] = {
- [sym_import] = STATE(4606),
- [sym_nested_identifier] = STATE(5653),
- [sym_string] = STATE(1545),
- [sym_formal_parameters] = STATE(5840),
- [sym_nested_type_identifier] = STATE(1441),
- [sym__type_query_member_expression_in_type_annotation] = STATE(1440),
- [sym__type_query_call_expression_in_type_annotation] = STATE(1555),
- [sym_type] = STATE(1487),
- [sym_constructor_type] = STATE(1556),
- [sym_primary_type] = STATE(1565),
- [sym_template_literal_type] = STATE(1540),
- [sym_infer_type] = STATE(1556),
- [sym_conditional_type] = STATE(1540),
- [sym_generic_type] = STATE(1540),
- [sym_type_query] = STATE(1540),
- [sym_index_type_query] = STATE(1540),
- [sym_lookup_type] = STATE(1540),
- [sym_literal_type] = STATE(1540),
- [sym__number] = STATE(1566),
- [sym_existential_type] = STATE(1540),
- [sym_flow_maybe_type] = STATE(1540),
- [sym_parenthesized_type] = STATE(1540),
- [sym_predefined_type] = STATE(1540),
- [sym_object_type] = STATE(1540),
- [sym_type_parameters] = STATE(5295),
- [sym_array_type] = STATE(1540),
- [sym_tuple_type] = STATE(1540),
- [sym_readonly_type] = STATE(1556),
- [sym_union_type] = STATE(1540),
- [sym_intersection_type] = STATE(1540),
- [sym_function_type] = STATE(1556),
- [sym_identifier] = ACTIONS(3181),
- [anon_sym_STAR] = ACTIONS(3071),
- [anon_sym_LBRACE] = ACTIONS(3073),
- [anon_sym_typeof] = ACTIONS(3075),
- [anon_sym_import] = ACTIONS(133),
- [anon_sym_const] = ACTIONS(3077),
- [anon_sym_LPAREN] = ACTIONS(3079),
- [anon_sym_LBRACK] = ACTIONS(3081),
- [anon_sym_DQUOTE] = ACTIONS(150),
- [anon_sym_SQUOTE] = ACTIONS(152),
- [anon_sym_new] = ACTIONS(3083),
- [anon_sym_AMP] = ACTIONS(3085),
- [anon_sym_PIPE] = ACTIONS(3087),
- [anon_sym_PLUS] = ACTIONS(3089),
- [anon_sym_DASH] = ACTIONS(3089),
- [anon_sym_LT] = ACTIONS(2581),
- [anon_sym_void] = ACTIONS(3091),
- [sym_comment] = ACTIONS(5),
- [anon_sym_BQUOTE] = ACTIONS(3093),
- [sym_number] = ACTIONS(3095),
- [sym_this] = ACTIONS(3183),
- [sym_true] = ACTIONS(3099),
- [sym_false] = ACTIONS(3099),
- [sym_null] = ACTIONS(3099),
- [sym_undefined] = ACTIONS(3099),
- [anon_sym_readonly] = ACTIONS(3101),
- [anon_sym_QMARK] = ACTIONS(3103),
- [anon_sym_any] = ACTIONS(3091),
- [anon_sym_number] = ACTIONS(3091),
- [anon_sym_boolean] = ACTIONS(3091),
- [anon_sym_string] = ACTIONS(3091),
- [anon_sym_symbol] = ACTIONS(3091),
- [anon_sym_object] = ACTIONS(3091),
- [anon_sym_abstract] = ACTIONS(3105),
- [anon_sym_infer] = ACTIONS(3109),
- [anon_sym_keyof] = ACTIONS(3111),
- [anon_sym_unique] = ACTIONS(3113),
- [anon_sym_unknown] = ACTIONS(3091),
- [anon_sym_never] = ACTIONS(3091),
- [anon_sym_LBRACE_PIPE] = ACTIONS(3115),
- [sym_html_comment] = ACTIONS(5),
- },
- [984] = {
- [sym_import] = STATE(4618),
- [sym_nested_identifier] = STATE(5906),
- [sym_string] = STATE(1947),
- [sym_formal_parameters] = STATE(5651),
- [sym_nested_type_identifier] = STATE(1799),
- [sym__type_query_member_expression_in_type_annotation] = STATE(1800),
- [sym__type_query_call_expression_in_type_annotation] = STATE(1928),
- [sym_type] = STATE(2019),
- [sym_constructor_type] = STATE(1929),
- [sym_primary_type] = STATE(1931),
- [sym_template_literal_type] = STATE(1936),
- [sym_infer_type] = STATE(1929),
- [sym_conditional_type] = STATE(1936),
- [sym_generic_type] = STATE(1936),
- [sym_type_query] = STATE(1936),
- [sym_index_type_query] = STATE(1936),
- [sym_lookup_type] = STATE(1936),
- [sym_literal_type] = STATE(1936),
- [sym__number] = STATE(1932),
- [sym_existential_type] = STATE(1936),
- [sym_flow_maybe_type] = STATE(1936),
- [sym_parenthesized_type] = STATE(1936),
- [sym_predefined_type] = STATE(1936),
- [sym_object_type] = STATE(1936),
- [sym_type_parameters] = STATE(5347),
- [sym_array_type] = STATE(1936),
- [sym_tuple_type] = STATE(1936),
- [sym_readonly_type] = STATE(1929),
- [sym_union_type] = STATE(1936),
- [sym_intersection_type] = STATE(1936),
- [sym_function_type] = STATE(1929),
- [sym_identifier] = ACTIONS(3177),
- [anon_sym_STAR] = ACTIONS(2929),
- [anon_sym_LBRACE] = ACTIONS(2931),
- [anon_sym_typeof] = ACTIONS(2933),
- [anon_sym_import] = ACTIONS(133),
- [anon_sym_const] = ACTIONS(2935),
- [anon_sym_LPAREN] = ACTIONS(2937),
- [anon_sym_LBRACK] = ACTIONS(2939),
- [anon_sym_DQUOTE] = ACTIONS(69),
- [anon_sym_SQUOTE] = ACTIONS(71),
- [anon_sym_new] = ACTIONS(2941),
- [anon_sym_AMP] = ACTIONS(2943),
- [anon_sym_PIPE] = ACTIONS(2945),
- [anon_sym_PLUS] = ACTIONS(2947),
- [anon_sym_DASH] = ACTIONS(2947),
- [anon_sym_LT] = ACTIONS(2581),
- [anon_sym_void] = ACTIONS(2949),
- [sym_comment] = ACTIONS(5),
- [anon_sym_BQUOTE] = ACTIONS(2951),
- [sym_number] = ACTIONS(2953),
- [sym_this] = ACTIONS(3179),
- [sym_true] = ACTIONS(2957),
- [sym_false] = ACTIONS(2957),
- [sym_null] = ACTIONS(2957),
- [sym_undefined] = ACTIONS(2957),
- [anon_sym_readonly] = ACTIONS(2959),
- [anon_sym_QMARK] = ACTIONS(2961),
- [anon_sym_any] = ACTIONS(2949),
- [anon_sym_number] = ACTIONS(2949),
- [anon_sym_boolean] = ACTIONS(2949),
- [anon_sym_string] = ACTIONS(2949),
- [anon_sym_symbol] = ACTIONS(2949),
- [anon_sym_object] = ACTIONS(2949),
- [anon_sym_abstract] = ACTIONS(2963),
- [anon_sym_infer] = ACTIONS(2967),
- [anon_sym_keyof] = ACTIONS(2969),
- [anon_sym_unique] = ACTIONS(2971),
- [anon_sym_unknown] = ACTIONS(2949),
- [anon_sym_never] = ACTIONS(2949),
- [anon_sym_LBRACE_PIPE] = ACTIONS(2973),
- [sym_html_comment] = ACTIONS(5),
- },
- [985] = {
- [sym_import] = STATE(4606),
- [sym_nested_identifier] = STATE(5653),
- [sym_string] = STATE(1545),
- [sym_formal_parameters] = STATE(5840),
- [sym_nested_type_identifier] = STATE(1441),
- [sym__type_query_member_expression_in_type_annotation] = STATE(1440),
- [sym__type_query_call_expression_in_type_annotation] = STATE(1555),
- [sym_type] = STATE(1510),
- [sym_constructor_type] = STATE(1556),
- [sym_primary_type] = STATE(1565),
- [sym_template_literal_type] = STATE(1540),
- [sym_infer_type] = STATE(1556),
- [sym_conditional_type] = STATE(1540),
- [sym_generic_type] = STATE(1540),
- [sym_type_query] = STATE(1540),
- [sym_index_type_query] = STATE(1540),
- [sym_lookup_type] = STATE(1540),
- [sym_literal_type] = STATE(1540),
- [sym__number] = STATE(1566),
- [sym_existential_type] = STATE(1540),
- [sym_flow_maybe_type] = STATE(1540),
- [sym_parenthesized_type] = STATE(1540),
- [sym_predefined_type] = STATE(1540),
- [sym_object_type] = STATE(1540),
- [sym_type_parameters] = STATE(5295),
- [sym_array_type] = STATE(1540),
- [sym_tuple_type] = STATE(1540),
- [sym_readonly_type] = STATE(1556),
- [sym_union_type] = STATE(1540),
- [sym_intersection_type] = STATE(1540),
- [sym_function_type] = STATE(1556),
- [sym_identifier] = ACTIONS(3181),
- [anon_sym_STAR] = ACTIONS(3071),
- [anon_sym_LBRACE] = ACTIONS(3073),
- [anon_sym_typeof] = ACTIONS(3075),
- [anon_sym_import] = ACTIONS(133),
- [anon_sym_const] = ACTIONS(3077),
- [anon_sym_LPAREN] = ACTIONS(3079),
- [anon_sym_LBRACK] = ACTIONS(3081),
- [anon_sym_DQUOTE] = ACTIONS(150),
- [anon_sym_SQUOTE] = ACTIONS(152),
- [anon_sym_new] = ACTIONS(3083),
- [anon_sym_AMP] = ACTIONS(3085),
- [anon_sym_PIPE] = ACTIONS(3087),
- [anon_sym_PLUS] = ACTIONS(3089),
- [anon_sym_DASH] = ACTIONS(3089),
- [anon_sym_LT] = ACTIONS(2581),
- [anon_sym_void] = ACTIONS(3091),
- [sym_comment] = ACTIONS(5),
- [anon_sym_BQUOTE] = ACTIONS(3093),
- [sym_number] = ACTIONS(3095),
- [sym_this] = ACTIONS(3183),
- [sym_true] = ACTIONS(3099),
- [sym_false] = ACTIONS(3099),
- [sym_null] = ACTIONS(3099),
- [sym_undefined] = ACTIONS(3099),
- [anon_sym_readonly] = ACTIONS(3101),
- [anon_sym_QMARK] = ACTIONS(3103),
- [anon_sym_any] = ACTIONS(3091),
- [anon_sym_number] = ACTIONS(3091),
- [anon_sym_boolean] = ACTIONS(3091),
- [anon_sym_string] = ACTIONS(3091),
- [anon_sym_symbol] = ACTIONS(3091),
- [anon_sym_object] = ACTIONS(3091),
- [anon_sym_abstract] = ACTIONS(3105),
- [anon_sym_infer] = ACTIONS(3109),
- [anon_sym_keyof] = ACTIONS(3111),
- [anon_sym_unique] = ACTIONS(3113),
- [anon_sym_unknown] = ACTIONS(3091),
- [anon_sym_never] = ACTIONS(3091),
- [anon_sym_LBRACE_PIPE] = ACTIONS(3115),
- [sym_html_comment] = ACTIONS(5),
- },
- [986] = {
- [sym_import] = STATE(4606),
- [sym_nested_identifier] = STATE(5653),
- [sym_string] = STATE(1545),
- [sym_formal_parameters] = STATE(5840),
- [sym_nested_type_identifier] = STATE(1441),
- [sym__type_query_member_expression_in_type_annotation] = STATE(1440),
- [sym__type_query_call_expression_in_type_annotation] = STATE(1555),
- [sym_type] = STATE(1512),
- [sym_constructor_type] = STATE(1556),
- [sym_primary_type] = STATE(1565),
- [sym_template_literal_type] = STATE(1540),
- [sym_infer_type] = STATE(1556),
- [sym_conditional_type] = STATE(1540),
- [sym_generic_type] = STATE(1540),
- [sym_type_query] = STATE(1540),
- [sym_index_type_query] = STATE(1540),
- [sym_lookup_type] = STATE(1540),
- [sym_literal_type] = STATE(1540),
- [sym__number] = STATE(1566),
- [sym_existential_type] = STATE(1540),
- [sym_flow_maybe_type] = STATE(1540),
- [sym_parenthesized_type] = STATE(1540),
- [sym_predefined_type] = STATE(1540),
- [sym_object_type] = STATE(1540),
- [sym_type_parameters] = STATE(5295),
- [sym_array_type] = STATE(1540),
- [sym_tuple_type] = STATE(1540),
- [sym_readonly_type] = STATE(1556),
- [sym_union_type] = STATE(1540),
- [sym_intersection_type] = STATE(1540),
- [sym_function_type] = STATE(1556),
- [sym_identifier] = ACTIONS(3181),
- [anon_sym_STAR] = ACTIONS(3071),
- [anon_sym_LBRACE] = ACTIONS(3073),
- [anon_sym_typeof] = ACTIONS(3075),
- [anon_sym_import] = ACTIONS(133),
- [anon_sym_const] = ACTIONS(3077),
- [anon_sym_LPAREN] = ACTIONS(3079),
- [anon_sym_LBRACK] = ACTIONS(3081),
- [anon_sym_DQUOTE] = ACTIONS(150),
- [anon_sym_SQUOTE] = ACTIONS(152),
- [anon_sym_new] = ACTIONS(3083),
- [anon_sym_AMP] = ACTIONS(3085),
- [anon_sym_PIPE] = ACTIONS(3087),
- [anon_sym_PLUS] = ACTIONS(3089),
- [anon_sym_DASH] = ACTIONS(3089),
- [anon_sym_LT] = ACTIONS(2581),
- [anon_sym_void] = ACTIONS(3091),
- [sym_comment] = ACTIONS(5),
- [anon_sym_BQUOTE] = ACTIONS(3093),
- [sym_number] = ACTIONS(3095),
- [sym_this] = ACTIONS(3183),
- [sym_true] = ACTIONS(3099),
- [sym_false] = ACTIONS(3099),
- [sym_null] = ACTIONS(3099),
- [sym_undefined] = ACTIONS(3099),
- [anon_sym_readonly] = ACTIONS(3101),
- [anon_sym_QMARK] = ACTIONS(3103),
- [anon_sym_any] = ACTIONS(3091),
- [anon_sym_number] = ACTIONS(3091),
- [anon_sym_boolean] = ACTIONS(3091),
- [anon_sym_string] = ACTIONS(3091),
- [anon_sym_symbol] = ACTIONS(3091),
- [anon_sym_object] = ACTIONS(3091),
- [anon_sym_abstract] = ACTIONS(3105),
- [anon_sym_infer] = ACTIONS(3109),
- [anon_sym_keyof] = ACTIONS(3111),
- [anon_sym_unique] = ACTIONS(3113),
- [anon_sym_unknown] = ACTIONS(3091),
- [anon_sym_never] = ACTIONS(3091),
- [anon_sym_LBRACE_PIPE] = ACTIONS(3115),
- [sym_html_comment] = ACTIONS(5),
- },
- [987] = {
- [sym_import] = STATE(4606),
- [sym_nested_identifier] = STATE(5653),
- [sym_string] = STATE(1545),
- [sym_formal_parameters] = STATE(5840),
- [sym_nested_type_identifier] = STATE(1441),
- [sym__type_query_member_expression_in_type_annotation] = STATE(1440),
- [sym__type_query_call_expression_in_type_annotation] = STATE(1555),
- [sym_type] = STATE(1529),
- [sym_constructor_type] = STATE(1556),
- [sym_primary_type] = STATE(1565),
- [sym_template_literal_type] = STATE(1540),
- [sym_infer_type] = STATE(1556),
- [sym_conditional_type] = STATE(1540),
- [sym_generic_type] = STATE(1540),
- [sym_type_query] = STATE(1540),
- [sym_index_type_query] = STATE(1540),
- [sym_lookup_type] = STATE(1540),
- [sym_literal_type] = STATE(1540),
- [sym__number] = STATE(1566),
- [sym_existential_type] = STATE(1540),
- [sym_flow_maybe_type] = STATE(1540),
- [sym_parenthesized_type] = STATE(1540),
- [sym_predefined_type] = STATE(1540),
- [sym_object_type] = STATE(1540),
- [sym_type_parameters] = STATE(5295),
- [sym_array_type] = STATE(1540),
- [sym_tuple_type] = STATE(1540),
- [sym_readonly_type] = STATE(1556),
- [sym_union_type] = STATE(1540),
- [sym_intersection_type] = STATE(1540),
- [sym_function_type] = STATE(1556),
- [sym_identifier] = ACTIONS(3181),
- [anon_sym_STAR] = ACTIONS(3071),
- [anon_sym_LBRACE] = ACTIONS(3073),
- [anon_sym_typeof] = ACTIONS(3075),
- [anon_sym_import] = ACTIONS(133),
- [anon_sym_const] = ACTIONS(3077),
- [anon_sym_LPAREN] = ACTIONS(3079),
- [anon_sym_LBRACK] = ACTIONS(3081),
- [anon_sym_DQUOTE] = ACTIONS(150),
- [anon_sym_SQUOTE] = ACTIONS(152),
- [anon_sym_new] = ACTIONS(3083),
- [anon_sym_AMP] = ACTIONS(3085),
- [anon_sym_PIPE] = ACTIONS(3087),
- [anon_sym_PLUS] = ACTIONS(3089),
- [anon_sym_DASH] = ACTIONS(3089),
- [anon_sym_LT] = ACTIONS(2581),
- [anon_sym_void] = ACTIONS(3091),
- [sym_comment] = ACTIONS(5),
- [anon_sym_BQUOTE] = ACTIONS(3093),
- [sym_number] = ACTIONS(3095),
- [sym_this] = ACTIONS(3183),
- [sym_true] = ACTIONS(3099),
- [sym_false] = ACTIONS(3099),
- [sym_null] = ACTIONS(3099),
- [sym_undefined] = ACTIONS(3099),
- [anon_sym_readonly] = ACTIONS(3101),
- [anon_sym_QMARK] = ACTIONS(3103),
- [anon_sym_any] = ACTIONS(3091),
- [anon_sym_number] = ACTIONS(3091),
- [anon_sym_boolean] = ACTIONS(3091),
- [anon_sym_string] = ACTIONS(3091),
- [anon_sym_symbol] = ACTIONS(3091),
- [anon_sym_object] = ACTIONS(3091),
- [anon_sym_abstract] = ACTIONS(3105),
- [anon_sym_infer] = ACTIONS(3109),
- [anon_sym_keyof] = ACTIONS(3111),
- [anon_sym_unique] = ACTIONS(3113),
- [anon_sym_unknown] = ACTIONS(3091),
- [anon_sym_never] = ACTIONS(3091),
- [anon_sym_LBRACE_PIPE] = ACTIONS(3115),
- [sym_html_comment] = ACTIONS(5),
- },
- [988] = {
- [sym_import] = STATE(5087),
- [sym_nested_identifier] = STATE(5707),
- [sym_string] = STATE(2889),
- [sym_formal_parameters] = STATE(5709),
- [sym_nested_type_identifier] = STATE(2828),
- [sym__type_query_member_expression_in_type_annotation] = STATE(2846),
- [sym__type_query_call_expression_in_type_annotation] = STATE(2850),
- [sym_type] = STATE(4541),
- [sym_constructor_type] = STATE(2896),
- [sym_primary_type] = STATE(2897),
- [sym_template_literal_type] = STATE(2885),
- [sym_infer_type] = STATE(2896),
- [sym_conditional_type] = STATE(2885),
- [sym_generic_type] = STATE(2885),
- [sym_type_query] = STATE(2885),
- [sym_index_type_query] = STATE(2885),
- [sym_lookup_type] = STATE(2885),
- [sym_literal_type] = STATE(2885),
- [sym__number] = STATE(2903),
- [sym_existential_type] = STATE(2885),
- [sym_flow_maybe_type] = STATE(2885),
- [sym_parenthesized_type] = STATE(2885),
- [sym_predefined_type] = STATE(2885),
- [sym_object_type] = STATE(2885),
- [sym_type_parameters] = STATE(5435),
- [sym_array_type] = STATE(2885),
- [sym_tuple_type] = STATE(2885),
- [sym_readonly_type] = STATE(2896),
- [sym_union_type] = STATE(2885),
- [sym_intersection_type] = STATE(2885),
- [sym_function_type] = STATE(2896),
- [sym_identifier] = ACTIONS(1496),
- [anon_sym_STAR] = ACTIONS(612),
- [anon_sym_LBRACE] = ACTIONS(1498),
- [anon_sym_typeof] = ACTIONS(1500),
- [anon_sym_import] = ACTIONS(133),
- [anon_sym_const] = ACTIONS(135),
- [anon_sym_LPAREN] = ACTIONS(1502),
- [anon_sym_LBRACK] = ACTIONS(1504),
- [anon_sym_DQUOTE] = ACTIONS(1506),
- [anon_sym_SQUOTE] = ACTIONS(1508),
- [anon_sym_new] = ACTIONS(1510),
- [anon_sym_AMP] = ACTIONS(741),
- [anon_sym_PIPE] = ACTIONS(743),
- [anon_sym_PLUS] = ACTIONS(2579),
- [anon_sym_DASH] = ACTIONS(2579),
- [anon_sym_LT] = ACTIONS(2581),
- [anon_sym_void] = ACTIONS(220),
- [sym_comment] = ACTIONS(5),
- [anon_sym_BQUOTE] = ACTIONS(1516),
- [sym_number] = ACTIONS(1518),
- [sym_this] = ACTIONS(1520),
- [sym_true] = ACTIONS(1522),
- [sym_false] = ACTIONS(1522),
- [sym_null] = ACTIONS(1522),
- [sym_undefined] = ACTIONS(1522),
- [anon_sym_readonly] = ACTIONS(1524),
- [anon_sym_QMARK] = ACTIONS(761),
- [anon_sym_any] = ACTIONS(220),
- [anon_sym_number] = ACTIONS(220),
- [anon_sym_boolean] = ACTIONS(220),
- [anon_sym_string] = ACTIONS(220),
- [anon_sym_symbol] = ACTIONS(220),
- [anon_sym_object] = ACTIONS(220),
- [anon_sym_abstract] = ACTIONS(212),
- [anon_sym_infer] = ACTIONS(214),
- [anon_sym_keyof] = ACTIONS(216),
- [anon_sym_unique] = ACTIONS(218),
- [anon_sym_unknown] = ACTIONS(220),
- [anon_sym_never] = ACTIONS(220),
- [anon_sym_LBRACE_PIPE] = ACTIONS(222),
- [sym_html_comment] = ACTIONS(5),
- },
- [989] = {
- [sym_import] = STATE(4903),
- [sym_nested_identifier] = STATE(5707),
- [sym_string] = STATE(2889),
- [sym_formal_parameters] = STATE(5916),
- [sym_nested_type_identifier] = STATE(2828),
- [sym__type_query_member_expression_in_type_annotation] = STATE(3332),
- [sym__type_query_call_expression_in_type_annotation] = STATE(2850),
- [sym_type] = STATE(4298),
- [sym_constructor_type] = STATE(2896),
- [sym_primary_type] = STATE(2897),
- [sym_template_literal_type] = STATE(2885),
- [sym_infer_type] = STATE(2896),
- [sym_conditional_type] = STATE(2885),
- [sym_generic_type] = STATE(2885),
- [sym_type_query] = STATE(2885),
- [sym_index_type_query] = STATE(2885),
- [sym_lookup_type] = STATE(2885),
- [sym_literal_type] = STATE(2885),
- [sym__number] = STATE(2903),
- [sym_existential_type] = STATE(2885),
- [sym_flow_maybe_type] = STATE(2885),
- [sym_parenthesized_type] = STATE(2885),
- [sym_predefined_type] = STATE(2885),
- [sym_object_type] = STATE(2885),
- [sym_type_parameters] = STATE(5386),
- [sym_array_type] = STATE(2885),
- [sym_tuple_type] = STATE(2885),
- [sym_readonly_type] = STATE(2896),
- [sym_union_type] = STATE(2885),
- [sym_intersection_type] = STATE(2885),
- [sym_function_type] = STATE(2896),
- [sym_identifier] = ACTIONS(1496),
- [anon_sym_STAR] = ACTIONS(612),
- [anon_sym_LBRACE] = ACTIONS(3043),
- [anon_sym_typeof] = ACTIONS(3045),
- [anon_sym_import] = ACTIONS(133),
- [anon_sym_const] = ACTIONS(135),
- [anon_sym_LPAREN] = ACTIONS(1502),
- [anon_sym_LBRACK] = ACTIONS(1504),
- [anon_sym_DQUOTE] = ACTIONS(2275),
- [anon_sym_SQUOTE] = ACTIONS(2277),
- [anon_sym_new] = ACTIONS(3047),
- [anon_sym_AMP] = ACTIONS(3049),
- [anon_sym_PIPE] = ACTIONS(3051),
- [anon_sym_PLUS] = ACTIONS(2579),
- [anon_sym_DASH] = ACTIONS(2579),
- [anon_sym_LT] = ACTIONS(2581),
- [anon_sym_void] = ACTIONS(220),
- [sym_comment] = ACTIONS(5),
- [anon_sym_BQUOTE] = ACTIONS(1516),
- [sym_number] = ACTIONS(1518),
- [sym_this] = ACTIONS(1520),
- [sym_true] = ACTIONS(1522),
- [sym_false] = ACTIONS(1522),
- [sym_null] = ACTIONS(1522),
- [sym_undefined] = ACTIONS(1522),
- [anon_sym_readonly] = ACTIONS(3055),
- [anon_sym_QMARK] = ACTIONS(3057),
- [anon_sym_any] = ACTIONS(220),
- [anon_sym_number] = ACTIONS(220),
- [anon_sym_boolean] = ACTIONS(220),
- [anon_sym_string] = ACTIONS(220),
- [anon_sym_symbol] = ACTIONS(220),
- [anon_sym_object] = ACTIONS(220),
- [anon_sym_abstract] = ACTIONS(3059),
- [anon_sym_infer] = ACTIONS(3063),
- [anon_sym_keyof] = ACTIONS(3065),
- [anon_sym_unique] = ACTIONS(218),
- [anon_sym_unknown] = ACTIONS(220),
- [anon_sym_never] = ACTIONS(220),
- [anon_sym_LBRACE_PIPE] = ACTIONS(3067),
- [sym_html_comment] = ACTIONS(5),
- },
- [990] = {
- [sym_import] = STATE(5087),
- [sym_nested_identifier] = STATE(5707),
- [sym_string] = STATE(2889),
- [sym_formal_parameters] = STATE(5709),
- [sym_nested_type_identifier] = STATE(2828),
- [sym__type_query_member_expression_in_type_annotation] = STATE(2846),
- [sym__type_query_call_expression_in_type_annotation] = STATE(2850),
- [sym_type] = STATE(4546),
- [sym_constructor_type] = STATE(2896),
- [sym_primary_type] = STATE(2897),
- [sym_template_literal_type] = STATE(2885),
- [sym_infer_type] = STATE(2896),
- [sym_conditional_type] = STATE(2885),
- [sym_generic_type] = STATE(2885),
- [sym_type_query] = STATE(2885),
- [sym_index_type_query] = STATE(2885),
- [sym_lookup_type] = STATE(2885),
- [sym_literal_type] = STATE(2885),
- [sym__number] = STATE(2903),
- [sym_existential_type] = STATE(2885),
- [sym_flow_maybe_type] = STATE(2885),
- [sym_parenthesized_type] = STATE(2885),
- [sym_predefined_type] = STATE(2885),
- [sym_object_type] = STATE(2885),
- [sym_type_parameters] = STATE(5435),
- [sym_array_type] = STATE(2885),
- [sym_tuple_type] = STATE(2885),
- [sym_readonly_type] = STATE(2896),
- [sym_union_type] = STATE(2885),
- [sym_intersection_type] = STATE(2885),
- [sym_function_type] = STATE(2896),
- [sym_identifier] = ACTIONS(1496),
- [anon_sym_STAR] = ACTIONS(612),
- [anon_sym_LBRACE] = ACTIONS(1498),
- [anon_sym_typeof] = ACTIONS(1500),
- [anon_sym_import] = ACTIONS(133),
- [anon_sym_const] = ACTIONS(135),
- [anon_sym_LPAREN] = ACTIONS(1502),
- [anon_sym_LBRACK] = ACTIONS(1504),
- [anon_sym_DQUOTE] = ACTIONS(1506),
- [anon_sym_SQUOTE] = ACTIONS(1508),
- [anon_sym_new] = ACTIONS(1510),
- [anon_sym_AMP] = ACTIONS(741),
- [anon_sym_PIPE] = ACTIONS(743),
- [anon_sym_PLUS] = ACTIONS(2579),
- [anon_sym_DASH] = ACTIONS(2579),
- [anon_sym_LT] = ACTIONS(2581),
- [anon_sym_void] = ACTIONS(220),
- [sym_comment] = ACTIONS(5),
- [anon_sym_BQUOTE] = ACTIONS(1516),
- [sym_number] = ACTIONS(1518),
- [sym_this] = ACTIONS(1520),
- [sym_true] = ACTIONS(1522),
- [sym_false] = ACTIONS(1522),
- [sym_null] = ACTIONS(1522),
- [sym_undefined] = ACTIONS(1522),
- [anon_sym_readonly] = ACTIONS(1524),
- [anon_sym_QMARK] = ACTIONS(761),
- [anon_sym_any] = ACTIONS(220),
- [anon_sym_number] = ACTIONS(220),
- [anon_sym_boolean] = ACTIONS(220),
- [anon_sym_string] = ACTIONS(220),
- [anon_sym_symbol] = ACTIONS(220),
- [anon_sym_object] = ACTIONS(220),
- [anon_sym_abstract] = ACTIONS(212),
- [anon_sym_infer] = ACTIONS(214),
- [anon_sym_keyof] = ACTIONS(216),
- [anon_sym_unique] = ACTIONS(218),
- [anon_sym_unknown] = ACTIONS(220),
- [anon_sym_never] = ACTIONS(220),
- [anon_sym_LBRACE_PIPE] = ACTIONS(222),
- [sym_html_comment] = ACTIONS(5),
- },
- [991] = {
- [sym_import] = STATE(4606),
- [sym_nested_identifier] = STATE(5653),
- [sym_string] = STATE(1545),
- [sym_formal_parameters] = STATE(5840),
- [sym_nested_type_identifier] = STATE(1441),
- [sym__type_query_member_expression_in_type_annotation] = STATE(1440),
- [sym__type_query_call_expression_in_type_annotation] = STATE(1555),
- [sym_type] = STATE(1531),
- [sym_constructor_type] = STATE(1556),
- [sym_primary_type] = STATE(1565),
- [sym_template_literal_type] = STATE(1540),
- [sym_infer_type] = STATE(1556),
- [sym_conditional_type] = STATE(1540),
- [sym_generic_type] = STATE(1540),
- [sym_type_query] = STATE(1540),
- [sym_index_type_query] = STATE(1540),
- [sym_lookup_type] = STATE(1540),
- [sym_literal_type] = STATE(1540),
- [sym__number] = STATE(1566),
- [sym_existential_type] = STATE(1540),
- [sym_flow_maybe_type] = STATE(1540),
- [sym_parenthesized_type] = STATE(1540),
- [sym_predefined_type] = STATE(1540),
- [sym_object_type] = STATE(1540),
- [sym_type_parameters] = STATE(5295),
- [sym_array_type] = STATE(1540),
- [sym_tuple_type] = STATE(1540),
- [sym_readonly_type] = STATE(1556),
- [sym_union_type] = STATE(1540),
- [sym_intersection_type] = STATE(1540),
- [sym_function_type] = STATE(1556),
- [sym_identifier] = ACTIONS(3181),
- [anon_sym_STAR] = ACTIONS(3071),
- [anon_sym_LBRACE] = ACTIONS(3073),
- [anon_sym_typeof] = ACTIONS(3075),
- [anon_sym_import] = ACTIONS(133),
- [anon_sym_const] = ACTIONS(3077),
- [anon_sym_LPAREN] = ACTIONS(3079),
- [anon_sym_LBRACK] = ACTIONS(3081),
- [anon_sym_DQUOTE] = ACTIONS(150),
- [anon_sym_SQUOTE] = ACTIONS(152),
- [anon_sym_new] = ACTIONS(3083),
- [anon_sym_AMP] = ACTIONS(3085),
- [anon_sym_PIPE] = ACTIONS(3087),
- [anon_sym_PLUS] = ACTIONS(3089),
- [anon_sym_DASH] = ACTIONS(3089),
- [anon_sym_LT] = ACTIONS(2581),
- [anon_sym_void] = ACTIONS(3091),
- [sym_comment] = ACTIONS(5),
- [anon_sym_BQUOTE] = ACTIONS(3093),
- [sym_number] = ACTIONS(3095),
- [sym_this] = ACTIONS(3183),
- [sym_true] = ACTIONS(3099),
- [sym_false] = ACTIONS(3099),
- [sym_null] = ACTIONS(3099),
- [sym_undefined] = ACTIONS(3099),
- [anon_sym_readonly] = ACTIONS(3101),
- [anon_sym_QMARK] = ACTIONS(3103),
- [anon_sym_any] = ACTIONS(3091),
- [anon_sym_number] = ACTIONS(3091),
- [anon_sym_boolean] = ACTIONS(3091),
- [anon_sym_string] = ACTIONS(3091),
- [anon_sym_symbol] = ACTIONS(3091),
- [anon_sym_object] = ACTIONS(3091),
- [anon_sym_abstract] = ACTIONS(3105),
- [anon_sym_infer] = ACTIONS(3109),
- [anon_sym_keyof] = ACTIONS(3111),
- [anon_sym_unique] = ACTIONS(3113),
- [anon_sym_unknown] = ACTIONS(3091),
- [anon_sym_never] = ACTIONS(3091),
- [anon_sym_LBRACE_PIPE] = ACTIONS(3115),
- [sym_html_comment] = ACTIONS(5),
- },
- [992] = {
- [sym_import] = STATE(5139),
- [sym_nested_identifier] = STATE(5610),
- [sym_string] = STATE(3160),
- [sym_formal_parameters] = STATE(5827),
- [sym_nested_type_identifier] = STATE(3047),
- [sym__type_query_member_expression_in_type_annotation] = STATE(2958),
- [sym__type_query_call_expression_in_type_annotation] = STATE(3113),
- [sym_type] = STATE(4094),
- [sym_constructor_type] = STATE(3205),
- [sym_primary_type] = STATE(3150),
- [sym_template_literal_type] = STATE(3195),
- [sym_infer_type] = STATE(3205),
- [sym_conditional_type] = STATE(3195),
- [sym_generic_type] = STATE(3195),
- [sym_type_query] = STATE(3195),
- [sym_index_type_query] = STATE(3195),
- [sym_lookup_type] = STATE(3195),
- [sym_literal_type] = STATE(3195),
- [sym__number] = STATE(3154),
- [sym_existential_type] = STATE(3195),
- [sym_flow_maybe_type] = STATE(3195),
- [sym_parenthesized_type] = STATE(3195),
- [sym_predefined_type] = STATE(3195),
- [sym_object_type] = STATE(3195),
- [sym_type_parameters] = STATE(5228),
- [sym_array_type] = STATE(3195),
- [sym_tuple_type] = STATE(3195),
- [sym_readonly_type] = STATE(3205),
- [sym_union_type] = STATE(3195),
- [sym_intersection_type] = STATE(3195),
- [sym_function_type] = STATE(3205),
- [sym_identifier] = ACTIONS(1582),
- [anon_sym_STAR] = ACTIONS(992),
- [anon_sym_LBRACE] = ACTIONS(1586),
- [anon_sym_typeof] = ACTIONS(1588),
- [anon_sym_import] = ACTIONS(133),
- [anon_sym_const] = ACTIONS(998),
- [anon_sym_LPAREN] = ACTIONS(1590),
- [anon_sym_LBRACK] = ACTIONS(1592),
- [anon_sym_DQUOTE] = ACTIONS(1594),
- [anon_sym_SQUOTE] = ACTIONS(1596),
- [anon_sym_new] = ACTIONS(1598),
- [anon_sym_AMP] = ACTIONS(1006),
- [anon_sym_PIPE] = ACTIONS(1008),
- [anon_sym_PLUS] = ACTIONS(2977),
- [anon_sym_DASH] = ACTIONS(2977),
- [anon_sym_LT] = ACTIONS(2581),
- [anon_sym_void] = ACTIONS(1038),
- [sym_comment] = ACTIONS(5),
- [anon_sym_BQUOTE] = ACTIONS(1606),
- [sym_number] = ACTIONS(1608),
- [sym_this] = ACTIONS(1610),
- [sym_true] = ACTIONS(1612),
- [sym_false] = ACTIONS(1612),
- [sym_null] = ACTIONS(1612),
- [sym_undefined] = ACTIONS(1612),
- [anon_sym_readonly] = ACTIONS(1614),
- [anon_sym_QMARK] = ACTIONS(1026),
- [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_object] = ACTIONS(1038),
- [anon_sym_abstract] = ACTIONS(1030),
- [anon_sym_infer] = ACTIONS(1032),
- [anon_sym_keyof] = ACTIONS(1034),
- [anon_sym_unique] = ACTIONS(1036),
- [anon_sym_unknown] = ACTIONS(1038),
- [anon_sym_never] = ACTIONS(1038),
- [anon_sym_LBRACE_PIPE] = ACTIONS(1040),
- [sym_html_comment] = ACTIONS(5),
- },
- [993] = {
- [sym_import] = STATE(5087),
- [sym_nested_identifier] = STATE(5707),
- [sym_string] = STATE(2889),
- [sym_formal_parameters] = STATE(5709),
- [sym_nested_type_identifier] = STATE(2828),
- [sym__type_query_member_expression_in_type_annotation] = STATE(2846),
- [sym__type_query_call_expression_in_type_annotation] = STATE(2850),
- [sym_type] = STATE(3906),
- [sym_constructor_type] = STATE(2896),
- [sym_primary_type] = STATE(2897),
- [sym_template_literal_type] = STATE(2885),
- [sym_infer_type] = STATE(2896),
- [sym_conditional_type] = STATE(2885),
- [sym_generic_type] = STATE(2885),
- [sym_type_query] = STATE(2885),
- [sym_index_type_query] = STATE(2885),
- [sym_lookup_type] = STATE(2885),
- [sym_literal_type] = STATE(2885),
- [sym__number] = STATE(2903),
- [sym_existential_type] = STATE(2885),
- [sym_flow_maybe_type] = STATE(2885),
- [sym_parenthesized_type] = STATE(2885),
- [sym_predefined_type] = STATE(2885),
- [sym_object_type] = STATE(2885),
- [sym_type_parameters] = STATE(5435),
- [sym_array_type] = STATE(2885),
- [sym_tuple_type] = STATE(2885),
- [sym_readonly_type] = STATE(2896),
- [sym_union_type] = STATE(2885),
- [sym_intersection_type] = STATE(2885),
- [sym_function_type] = STATE(2896),
- [sym_identifier] = ACTIONS(1496),
- [anon_sym_STAR] = ACTIONS(612),
- [anon_sym_LBRACE] = ACTIONS(1498),
- [anon_sym_typeof] = ACTIONS(1500),
- [anon_sym_import] = ACTIONS(133),
- [anon_sym_const] = ACTIONS(135),
- [anon_sym_LPAREN] = ACTIONS(1502),
- [anon_sym_LBRACK] = ACTIONS(1504),
- [anon_sym_DQUOTE] = ACTIONS(1506),
- [anon_sym_SQUOTE] = ACTIONS(1508),
- [anon_sym_new] = ACTIONS(1510),
- [anon_sym_AMP] = ACTIONS(741),
- [anon_sym_PIPE] = ACTIONS(743),
- [anon_sym_PLUS] = ACTIONS(2579),
- [anon_sym_DASH] = ACTIONS(2579),
- [anon_sym_LT] = ACTIONS(2581),
- [anon_sym_void] = ACTIONS(220),
- [sym_comment] = ACTIONS(5),
- [anon_sym_BQUOTE] = ACTIONS(1516),
- [sym_number] = ACTIONS(1518),
- [sym_this] = ACTIONS(1520),
- [sym_true] = ACTIONS(1522),
- [sym_false] = ACTIONS(1522),
- [sym_null] = ACTIONS(1522),
- [sym_undefined] = ACTIONS(1522),
- [anon_sym_readonly] = ACTIONS(1524),
- [anon_sym_QMARK] = ACTIONS(761),
- [anon_sym_any] = ACTIONS(220),
- [anon_sym_number] = ACTIONS(220),
- [anon_sym_boolean] = ACTIONS(220),
- [anon_sym_string] = ACTIONS(220),
- [anon_sym_symbol] = ACTIONS(220),
- [anon_sym_object] = ACTIONS(220),
- [anon_sym_abstract] = ACTIONS(212),
- [anon_sym_infer] = ACTIONS(214),
- [anon_sym_keyof] = ACTIONS(216),
- [anon_sym_unique] = ACTIONS(218),
- [anon_sym_unknown] = ACTIONS(220),
- [anon_sym_never] = ACTIONS(220),
- [anon_sym_LBRACE_PIPE] = ACTIONS(222),
- [sym_html_comment] = ACTIONS(5),
- },
- [994] = {
- [sym_import] = STATE(5087),
- [sym_nested_identifier] = STATE(5707),
- [sym_string] = STATE(2889),
- [sym_formal_parameters] = STATE(5709),
- [sym_nested_type_identifier] = STATE(2828),
- [sym__type_query_member_expression_in_type_annotation] = STATE(2846),
- [sym__type_query_call_expression_in_type_annotation] = STATE(2850),
- [sym_type] = STATE(2921),
- [sym_constructor_type] = STATE(2896),
- [sym_primary_type] = STATE(2897),
- [sym_template_literal_type] = STATE(2885),
- [sym_infer_type] = STATE(2896),
- [sym_conditional_type] = STATE(2885),
- [sym_generic_type] = STATE(2885),
- [sym_type_query] = STATE(2885),
- [sym_index_type_query] = STATE(2885),
- [sym_lookup_type] = STATE(2885),
- [sym_literal_type] = STATE(2885),
- [sym__number] = STATE(2903),
- [sym_existential_type] = STATE(2885),
- [sym_flow_maybe_type] = STATE(2885),
- [sym_parenthesized_type] = STATE(2885),
- [sym_predefined_type] = STATE(2885),
- [sym_object_type] = STATE(2885),
- [sym_type_parameters] = STATE(5435),
- [sym_array_type] = STATE(2885),
- [sym_tuple_type] = STATE(2885),
- [sym_readonly_type] = STATE(2896),
- [sym_union_type] = STATE(2885),
- [sym_intersection_type] = STATE(2885),
- [sym_function_type] = STATE(2896),
- [sym_identifier] = ACTIONS(1496),
- [anon_sym_STAR] = ACTIONS(612),
- [anon_sym_LBRACE] = ACTIONS(1498),
- [anon_sym_typeof] = ACTIONS(1500),
- [anon_sym_import] = ACTIONS(133),
- [anon_sym_const] = ACTIONS(135),
- [anon_sym_LPAREN] = ACTIONS(1502),
- [anon_sym_LBRACK] = ACTIONS(1504),
- [anon_sym_DQUOTE] = ACTIONS(1506),
- [anon_sym_SQUOTE] = ACTIONS(1508),
- [anon_sym_new] = ACTIONS(1510),
- [anon_sym_AMP] = ACTIONS(741),
- [anon_sym_PIPE] = ACTIONS(743),
- [anon_sym_PLUS] = ACTIONS(2579),
- [anon_sym_DASH] = ACTIONS(2579),
- [anon_sym_LT] = ACTIONS(2581),
- [anon_sym_void] = ACTIONS(220),
- [sym_comment] = ACTIONS(5),
- [anon_sym_BQUOTE] = ACTIONS(1516),
- [sym_number] = ACTIONS(1518),
- [sym_this] = ACTIONS(1520),
- [sym_true] = ACTIONS(1522),
- [sym_false] = ACTIONS(1522),
- [sym_null] = ACTIONS(1522),
- [sym_undefined] = ACTIONS(1522),
- [anon_sym_readonly] = ACTIONS(1524),
- [anon_sym_QMARK] = ACTIONS(761),
- [anon_sym_any] = ACTIONS(220),
- [anon_sym_number] = ACTIONS(220),
- [anon_sym_boolean] = ACTIONS(220),
- [anon_sym_string] = ACTIONS(220),
- [anon_sym_symbol] = ACTIONS(220),
- [anon_sym_object] = ACTIONS(220),
- [anon_sym_abstract] = ACTIONS(212),
- [anon_sym_infer] = ACTIONS(214),
- [anon_sym_keyof] = ACTIONS(216),
- [anon_sym_unique] = ACTIONS(218),
- [anon_sym_unknown] = ACTIONS(220),
- [anon_sym_never] = ACTIONS(220),
- [anon_sym_LBRACE_PIPE] = ACTIONS(222),
- [sym_html_comment] = ACTIONS(5),
- },
- [995] = {
- [sym_import] = STATE(5087),
- [sym_nested_identifier] = STATE(5707),
- [sym_string] = STATE(2889),
- [sym_formal_parameters] = STATE(5709),
- [sym_nested_type_identifier] = STATE(2828),
- [sym__type_query_member_expression_in_type_annotation] = STATE(2846),
- [sym__type_query_call_expression_in_type_annotation] = STATE(2850),
- [sym_type] = STATE(3054),
- [sym_constructor_type] = STATE(2896),
- [sym_primary_type] = STATE(2897),
- [sym_template_literal_type] = STATE(2885),
- [sym_infer_type] = STATE(2896),
- [sym_conditional_type] = STATE(2885),
- [sym_generic_type] = STATE(2885),
- [sym_type_query] = STATE(2885),
- [sym_index_type_query] = STATE(2885),
- [sym_lookup_type] = STATE(2885),
- [sym_literal_type] = STATE(2885),
- [sym__number] = STATE(2903),
- [sym_existential_type] = STATE(2885),
- [sym_flow_maybe_type] = STATE(2885),
- [sym_parenthesized_type] = STATE(2885),
- [sym_predefined_type] = STATE(2885),
- [sym_object_type] = STATE(2885),
- [sym_type_parameters] = STATE(5435),
- [sym_array_type] = STATE(2885),
- [sym_tuple_type] = STATE(2885),
- [sym_readonly_type] = STATE(2896),
- [sym_union_type] = STATE(2885),
- [sym_intersection_type] = STATE(2885),
- [sym_function_type] = STATE(2896),
- [sym_identifier] = ACTIONS(1496),
- [anon_sym_STAR] = ACTIONS(612),
- [anon_sym_LBRACE] = ACTIONS(1498),
- [anon_sym_typeof] = ACTIONS(1500),
- [anon_sym_import] = ACTIONS(133),
- [anon_sym_const] = ACTIONS(135),
- [anon_sym_LPAREN] = ACTIONS(1502),
- [anon_sym_LBRACK] = ACTIONS(1504),
- [anon_sym_DQUOTE] = ACTIONS(1506),
- [anon_sym_SQUOTE] = ACTIONS(1508),
- [anon_sym_new] = ACTIONS(1510),
- [anon_sym_AMP] = ACTIONS(741),
- [anon_sym_PIPE] = ACTIONS(743),
- [anon_sym_PLUS] = ACTIONS(2579),
- [anon_sym_DASH] = ACTIONS(2579),
- [anon_sym_LT] = ACTIONS(2581),
- [anon_sym_void] = ACTIONS(220),
- [sym_comment] = ACTIONS(5),
- [anon_sym_BQUOTE] = ACTIONS(1516),
- [sym_number] = ACTIONS(1518),
- [sym_this] = ACTIONS(1520),
- [sym_true] = ACTIONS(1522),
- [sym_false] = ACTIONS(1522),
- [sym_null] = ACTIONS(1522),
- [sym_undefined] = ACTIONS(1522),
- [anon_sym_readonly] = ACTIONS(1524),
- [anon_sym_QMARK] = ACTIONS(761),
- [anon_sym_any] = ACTIONS(220),
- [anon_sym_number] = ACTIONS(220),
- [anon_sym_boolean] = ACTIONS(220),
- [anon_sym_string] = ACTIONS(220),
- [anon_sym_symbol] = ACTIONS(220),
- [anon_sym_object] = ACTIONS(220),
- [anon_sym_abstract] = ACTIONS(212),
- [anon_sym_infer] = ACTIONS(214),
- [anon_sym_keyof] = ACTIONS(216),
- [anon_sym_unique] = ACTIONS(218),
- [anon_sym_unknown] = ACTIONS(220),
- [anon_sym_never] = ACTIONS(220),
- [anon_sym_LBRACE_PIPE] = ACTIONS(222),
- [sym_html_comment] = ACTIONS(5),
- },
- [996] = {
- [sym_import] = STATE(4642),
- [sym_nested_identifier] = STATE(5541),
- [sym_string] = STATE(3272),
- [sym_formal_parameters] = STATE(5632),
- [sym_nested_type_identifier] = STATE(3198),
- [sym__type_query_member_expression_in_type_annotation] = STATE(3138),
- [sym__type_query_call_expression_in_type_annotation] = STATE(3223),
- [sym_type] = STATE(3329),
- [sym_constructor_type] = STATE(3280),
- [sym_primary_type] = STATE(3281),
- [sym_template_literal_type] = STATE(3257),
- [sym_infer_type] = STATE(3280),
- [sym_conditional_type] = STATE(3257),
- [sym_generic_type] = STATE(3257),
- [sym_type_query] = STATE(3257),
- [sym_index_type_query] = STATE(3257),
- [sym_lookup_type] = STATE(3257),
- [sym_literal_type] = STATE(3257),
- [sym__number] = STATE(3285),
- [sym_existential_type] = STATE(3257),
- [sym_flow_maybe_type] = STATE(3257),
- [sym_parenthesized_type] = STATE(3257),
- [sym_predefined_type] = STATE(3257),
- [sym_object_type] = STATE(3257),
- [sym_type_parameters] = STATE(5324),
- [sym_array_type] = STATE(3257),
- [sym_tuple_type] = STATE(3257),
- [sym_readonly_type] = STATE(3280),
- [sym_union_type] = STATE(3257),
- [sym_intersection_type] = STATE(3257),
- [sym_function_type] = STATE(3280),
- [sym_identifier] = ACTIONS(3185),
- [anon_sym_STAR] = ACTIONS(2985),
- [anon_sym_LBRACE] = ACTIONS(2987),
- [anon_sym_typeof] = ACTIONS(2989),
- [anon_sym_import] = ACTIONS(133),
- [anon_sym_const] = ACTIONS(2991),
- [anon_sym_LPAREN] = ACTIONS(2993),
- [anon_sym_LBRACK] = ACTIONS(2995),
- [anon_sym_DQUOTE] = ACTIONS(2997),
- [anon_sym_SQUOTE] = ACTIONS(2999),
- [anon_sym_new] = ACTIONS(3001),
- [anon_sym_AMP] = ACTIONS(3003),
- [anon_sym_PIPE] = ACTIONS(3005),
- [anon_sym_PLUS] = ACTIONS(3007),
- [anon_sym_DASH] = ACTIONS(3007),
- [anon_sym_LT] = ACTIONS(2581),
- [anon_sym_void] = ACTIONS(3009),
- [sym_comment] = ACTIONS(5),
- [anon_sym_BQUOTE] = ACTIONS(3011),
- [sym_number] = ACTIONS(3013),
- [sym_this] = ACTIONS(3187),
- [sym_true] = ACTIONS(3017),
- [sym_false] = ACTIONS(3017),
- [sym_null] = ACTIONS(3017),
- [sym_undefined] = ACTIONS(3017),
- [anon_sym_readonly] = ACTIONS(3019),
- [anon_sym_QMARK] = ACTIONS(3021),
- [anon_sym_any] = ACTIONS(3009),
- [anon_sym_number] = ACTIONS(3009),
- [anon_sym_boolean] = ACTIONS(3009),
- [anon_sym_string] = ACTIONS(3009),
- [anon_sym_symbol] = ACTIONS(3009),
- [anon_sym_object] = ACTIONS(3009),
- [anon_sym_abstract] = ACTIONS(3023),
- [anon_sym_infer] = ACTIONS(3027),
- [anon_sym_keyof] = ACTIONS(3029),
- [anon_sym_unique] = ACTIONS(3031),
- [anon_sym_unknown] = ACTIONS(3009),
- [anon_sym_never] = ACTIONS(3009),
- [anon_sym_LBRACE_PIPE] = ACTIONS(3033),
- [sym_html_comment] = ACTIONS(5),
- },
- [997] = {
- [sym_import] = STATE(4642),
- [sym_nested_identifier] = STATE(5541),
- [sym_string] = STATE(3272),
- [sym_formal_parameters] = STATE(5632),
- [sym_nested_type_identifier] = STATE(3198),
- [sym__type_query_member_expression_in_type_annotation] = STATE(3138),
- [sym__type_query_call_expression_in_type_annotation] = STATE(3223),
- [sym_type] = STATE(3330),
- [sym_constructor_type] = STATE(3280),
- [sym_primary_type] = STATE(3281),
- [sym_template_literal_type] = STATE(3257),
- [sym_infer_type] = STATE(3280),
- [sym_conditional_type] = STATE(3257),
- [sym_generic_type] = STATE(3257),
- [sym_type_query] = STATE(3257),
- [sym_index_type_query] = STATE(3257),
- [sym_lookup_type] = STATE(3257),
- [sym_literal_type] = STATE(3257),
- [sym__number] = STATE(3285),
- [sym_existential_type] = STATE(3257),
- [sym_flow_maybe_type] = STATE(3257),
- [sym_parenthesized_type] = STATE(3257),
- [sym_predefined_type] = STATE(3257),
- [sym_object_type] = STATE(3257),
- [sym_type_parameters] = STATE(5324),
- [sym_array_type] = STATE(3257),
- [sym_tuple_type] = STATE(3257),
- [sym_readonly_type] = STATE(3280),
- [sym_union_type] = STATE(3257),
- [sym_intersection_type] = STATE(3257),
- [sym_function_type] = STATE(3280),
- [sym_identifier] = ACTIONS(3185),
- [anon_sym_STAR] = ACTIONS(2985),
- [anon_sym_LBRACE] = ACTIONS(2987),
- [anon_sym_typeof] = ACTIONS(2989),
- [anon_sym_import] = ACTIONS(133),
- [anon_sym_const] = ACTIONS(2991),
- [anon_sym_LPAREN] = ACTIONS(2993),
- [anon_sym_LBRACK] = ACTIONS(2995),
- [anon_sym_DQUOTE] = ACTIONS(2997),
- [anon_sym_SQUOTE] = ACTIONS(2999),
- [anon_sym_new] = ACTIONS(3001),
- [anon_sym_AMP] = ACTIONS(3003),
- [anon_sym_PIPE] = ACTIONS(3005),
- [anon_sym_PLUS] = ACTIONS(3007),
- [anon_sym_DASH] = ACTIONS(3007),
- [anon_sym_LT] = ACTIONS(2581),
- [anon_sym_void] = ACTIONS(3009),
- [sym_comment] = ACTIONS(5),
- [anon_sym_BQUOTE] = ACTIONS(3011),
- [sym_number] = ACTIONS(3013),
- [sym_this] = ACTIONS(3187),
- [sym_true] = ACTIONS(3017),
- [sym_false] = ACTIONS(3017),
- [sym_null] = ACTIONS(3017),
- [sym_undefined] = ACTIONS(3017),
- [anon_sym_readonly] = ACTIONS(3019),
- [anon_sym_QMARK] = ACTIONS(3021),
- [anon_sym_any] = ACTIONS(3009),
- [anon_sym_number] = ACTIONS(3009),
- [anon_sym_boolean] = ACTIONS(3009),
- [anon_sym_string] = ACTIONS(3009),
- [anon_sym_symbol] = ACTIONS(3009),
- [anon_sym_object] = ACTIONS(3009),
- [anon_sym_abstract] = ACTIONS(3023),
- [anon_sym_infer] = ACTIONS(3027),
- [anon_sym_keyof] = ACTIONS(3029),
- [anon_sym_unique] = ACTIONS(3031),
- [anon_sym_unknown] = ACTIONS(3009),
- [anon_sym_never] = ACTIONS(3009),
- [anon_sym_LBRACE_PIPE] = ACTIONS(3033),
- [sym_html_comment] = ACTIONS(5),
- },
- [998] = {
- [sym_import] = STATE(4642),
- [sym_nested_identifier] = STATE(5541),
- [sym_string] = STATE(3272),
- [sym_formal_parameters] = STATE(5632),
- [sym_nested_type_identifier] = STATE(3198),
- [sym__type_query_member_expression_in_type_annotation] = STATE(3138),
- [sym__type_query_call_expression_in_type_annotation] = STATE(3223),
- [sym_type] = STATE(3337),
- [sym_constructor_type] = STATE(3280),
- [sym_primary_type] = STATE(3281),
- [sym_template_literal_type] = STATE(3257),
- [sym_infer_type] = STATE(3280),
- [sym_conditional_type] = STATE(3257),
- [sym_generic_type] = STATE(3257),
- [sym_type_query] = STATE(3257),
- [sym_index_type_query] = STATE(3257),
- [sym_lookup_type] = STATE(3257),
- [sym_literal_type] = STATE(3257),
- [sym__number] = STATE(3285),
- [sym_existential_type] = STATE(3257),
- [sym_flow_maybe_type] = STATE(3257),
- [sym_parenthesized_type] = STATE(3257),
- [sym_predefined_type] = STATE(3257),
- [sym_object_type] = STATE(3257),
- [sym_type_parameters] = STATE(5324),
- [sym_array_type] = STATE(3257),
- [sym_tuple_type] = STATE(3257),
- [sym_readonly_type] = STATE(3280),
- [sym_union_type] = STATE(3257),
- [sym_intersection_type] = STATE(3257),
- [sym_function_type] = STATE(3280),
- [sym_identifier] = ACTIONS(3185),
- [anon_sym_STAR] = ACTIONS(2985),
- [anon_sym_LBRACE] = ACTIONS(2987),
- [anon_sym_typeof] = ACTIONS(2989),
- [anon_sym_import] = ACTIONS(133),
- [anon_sym_const] = ACTIONS(2991),
- [anon_sym_LPAREN] = ACTIONS(2993),
- [anon_sym_LBRACK] = ACTIONS(2995),
- [anon_sym_DQUOTE] = ACTIONS(2997),
- [anon_sym_SQUOTE] = ACTIONS(2999),
- [anon_sym_new] = ACTIONS(3001),
- [anon_sym_AMP] = ACTIONS(3003),
- [anon_sym_PIPE] = ACTIONS(3005),
- [anon_sym_PLUS] = ACTIONS(3007),
- [anon_sym_DASH] = ACTIONS(3007),
- [anon_sym_LT] = ACTIONS(2581),
- [anon_sym_void] = ACTIONS(3009),
- [sym_comment] = ACTIONS(5),
- [anon_sym_BQUOTE] = ACTIONS(3011),
- [sym_number] = ACTIONS(3013),
- [sym_this] = ACTIONS(3187),
- [sym_true] = ACTIONS(3017),
- [sym_false] = ACTIONS(3017),
- [sym_null] = ACTIONS(3017),
- [sym_undefined] = ACTIONS(3017),
- [anon_sym_readonly] = ACTIONS(3019),
- [anon_sym_QMARK] = ACTIONS(3021),
- [anon_sym_any] = ACTIONS(3009),
- [anon_sym_number] = ACTIONS(3009),
- [anon_sym_boolean] = ACTIONS(3009),
- [anon_sym_string] = ACTIONS(3009),
- [anon_sym_symbol] = ACTIONS(3009),
- [anon_sym_object] = ACTIONS(3009),
- [anon_sym_abstract] = ACTIONS(3023),
- [anon_sym_infer] = ACTIONS(3027),
- [anon_sym_keyof] = ACTIONS(3029),
- [anon_sym_unique] = ACTIONS(3031),
- [anon_sym_unknown] = ACTIONS(3009),
- [anon_sym_never] = ACTIONS(3009),
- [anon_sym_LBRACE_PIPE] = ACTIONS(3033),
- [sym_html_comment] = ACTIONS(5),
- },
- [999] = {
- [sym_import] = STATE(5087),
- [sym_nested_identifier] = STATE(5541),
- [sym_string] = STATE(3272),
- [sym_formal_parameters] = STATE(5709),
- [sym_nested_type_identifier] = STATE(3198),
- [sym__type_query_member_expression_in_type_annotation] = STATE(2846),
- [sym__type_query_call_expression_in_type_annotation] = STATE(2850),
- [sym_type] = STATE(4651),
- [sym_constructor_type] = STATE(2896),
- [sym_primary_type] = STATE(3338),
- [sym_template_literal_type] = STATE(3257),
- [sym_infer_type] = STATE(2896),
- [sym_conditional_type] = STATE(3257),
- [sym_generic_type] = STATE(3257),
- [sym_type_query] = STATE(3257),
- [sym_index_type_query] = STATE(3257),
- [sym_lookup_type] = STATE(3257),
- [sym_literal_type] = STATE(3257),
- [sym__number] = STATE(3285),
- [sym_existential_type] = STATE(3257),
- [sym_flow_maybe_type] = STATE(3257),
- [sym_parenthesized_type] = STATE(3257),
- [sym_predefined_type] = STATE(3257),
- [sym_object_type] = STATE(3257),
- [sym_type_parameters] = STATE(5435),
- [sym_array_type] = STATE(3257),
- [sym_tuple_type] = STATE(3257),
- [sym_readonly_type] = STATE(2896),
- [sym_union_type] = STATE(3257),
- [sym_intersection_type] = STATE(3257),
- [sym_function_type] = STATE(2896),
- [sym_identifier] = ACTIONS(3185),
- [anon_sym_STAR] = ACTIONS(2985),
- [anon_sym_LBRACE] = ACTIONS(2987),
- [anon_sym_typeof] = ACTIONS(2989),
- [anon_sym_import] = ACTIONS(133),
- [anon_sym_const] = ACTIONS(2991),
- [anon_sym_LPAREN] = ACTIONS(2993),
- [anon_sym_LBRACK] = ACTIONS(2995),
- [anon_sym_DQUOTE] = ACTIONS(2997),
- [anon_sym_SQUOTE] = ACTIONS(2999),
- [anon_sym_new] = ACTIONS(1510),
- [anon_sym_AMP] = ACTIONS(3003),
- [anon_sym_PIPE] = ACTIONS(3005),
- [anon_sym_PLUS] = ACTIONS(3007),
- [anon_sym_DASH] = ACTIONS(3007),
- [anon_sym_LT] = ACTIONS(2581),
- [anon_sym_void] = ACTIONS(3009),
- [sym_comment] = ACTIONS(5),
- [anon_sym_BQUOTE] = ACTIONS(3011),
- [sym_number] = ACTIONS(3013),
- [sym_this] = ACTIONS(3187),
- [sym_true] = ACTIONS(3017),
- [sym_false] = ACTIONS(3017),
- [sym_null] = ACTIONS(3017),
- [sym_undefined] = ACTIONS(3017),
- [anon_sym_readonly] = ACTIONS(1524),
- [anon_sym_QMARK] = ACTIONS(3021),
- [anon_sym_any] = ACTIONS(3009),
- [anon_sym_number] = ACTIONS(3009),
- [anon_sym_boolean] = ACTIONS(3009),
- [anon_sym_string] = ACTIONS(3009),
- [anon_sym_symbol] = ACTIONS(3009),
- [anon_sym_object] = ACTIONS(3009),
- [anon_sym_abstract] = ACTIONS(212),
- [anon_sym_infer] = ACTIONS(214),
- [anon_sym_keyof] = ACTIONS(3029),
- [anon_sym_unique] = ACTIONS(3031),
- [anon_sym_unknown] = ACTIONS(3009),
- [anon_sym_never] = ACTIONS(3009),
- [anon_sym_LBRACE_PIPE] = ACTIONS(3033),
- [sym_html_comment] = ACTIONS(5),
- },
- [1000] = {
- [sym_import] = STATE(5087),
- [sym_nested_identifier] = STATE(5541),
- [sym_string] = STATE(3272),
- [sym_formal_parameters] = STATE(5709),
- [sym_nested_type_identifier] = STATE(3198),
- [sym__type_query_member_expression_in_type_annotation] = STATE(2846),
- [sym__type_query_call_expression_in_type_annotation] = STATE(2850),
- [sym_type] = STATE(4651),
- [sym_constructor_type] = STATE(2896),
- [sym_primary_type] = STATE(3346),
- [sym_template_literal_type] = STATE(3257),
- [sym_infer_type] = STATE(2896),
- [sym_conditional_type] = STATE(3257),
- [sym_generic_type] = STATE(3257),
- [sym_type_query] = STATE(3257),
- [sym_index_type_query] = STATE(3257),
- [sym_lookup_type] = STATE(3257),
- [sym_literal_type] = STATE(3257),
- [sym__number] = STATE(3285),
- [sym_existential_type] = STATE(3257),
- [sym_flow_maybe_type] = STATE(3257),
- [sym_parenthesized_type] = STATE(3257),
- [sym_predefined_type] = STATE(3257),
- [sym_object_type] = STATE(3257),
- [sym_type_parameters] = STATE(5435),
- [sym_array_type] = STATE(3257),
- [sym_tuple_type] = STATE(3257),
- [sym_readonly_type] = STATE(2896),
- [sym_union_type] = STATE(3257),
- [sym_intersection_type] = STATE(3257),
- [sym_function_type] = STATE(2896),
- [sym_identifier] = ACTIONS(3185),
- [anon_sym_STAR] = ACTIONS(2985),
- [anon_sym_LBRACE] = ACTIONS(2987),
- [anon_sym_typeof] = ACTIONS(2989),
- [anon_sym_import] = ACTIONS(133),
- [anon_sym_const] = ACTIONS(2991),
- [anon_sym_LPAREN] = ACTIONS(2993),
- [anon_sym_LBRACK] = ACTIONS(2995),
- [anon_sym_DQUOTE] = ACTIONS(2997),
- [anon_sym_SQUOTE] = ACTIONS(2999),
- [anon_sym_new] = ACTIONS(1510),
- [anon_sym_AMP] = ACTIONS(3003),
- [anon_sym_PIPE] = ACTIONS(3005),
- [anon_sym_PLUS] = ACTIONS(3007),
- [anon_sym_DASH] = ACTIONS(3007),
- [anon_sym_LT] = ACTIONS(2581),
- [anon_sym_void] = ACTIONS(3009),
- [sym_comment] = ACTIONS(5),
- [anon_sym_BQUOTE] = ACTIONS(3011),
- [sym_number] = ACTIONS(3013),
- [sym_this] = ACTIONS(3187),
- [sym_true] = ACTIONS(3017),
- [sym_false] = ACTIONS(3017),
- [sym_null] = ACTIONS(3017),
- [sym_undefined] = ACTIONS(3017),
- [anon_sym_readonly] = ACTIONS(1524),
- [anon_sym_QMARK] = ACTIONS(3021),
- [anon_sym_any] = ACTIONS(3009),
- [anon_sym_number] = ACTIONS(3009),
- [anon_sym_boolean] = ACTIONS(3009),
- [anon_sym_string] = ACTIONS(3009),
- [anon_sym_symbol] = ACTIONS(3009),
- [anon_sym_object] = ACTIONS(3009),
- [anon_sym_abstract] = ACTIONS(212),
- [anon_sym_infer] = ACTIONS(214),
- [anon_sym_keyof] = ACTIONS(3029),
- [anon_sym_unique] = ACTIONS(3031),
- [anon_sym_unknown] = ACTIONS(3009),
- [anon_sym_never] = ACTIONS(3009),
- [anon_sym_LBRACE_PIPE] = ACTIONS(3033),
- [sym_html_comment] = ACTIONS(5),
- },
- [1001] = {
- [sym_import] = STATE(5139),
- [sym_nested_identifier] = STATE(5610),
- [sym_string] = STATE(3160),
- [sym_formal_parameters] = STATE(5827),
- [sym_nested_type_identifier] = STATE(3047),
- [sym__type_query_member_expression_in_type_annotation] = STATE(2958),
- [sym__type_query_call_expression_in_type_annotation] = STATE(3113),
- [sym_type] = STATE(4011),
- [sym_constructor_type] = STATE(3205),
- [sym_primary_type] = STATE(3150),
- [sym_template_literal_type] = STATE(3195),
- [sym_infer_type] = STATE(3205),
- [sym_conditional_type] = STATE(3195),
- [sym_generic_type] = STATE(3195),
- [sym_type_query] = STATE(3195),
- [sym_index_type_query] = STATE(3195),
- [sym_lookup_type] = STATE(3195),
- [sym_literal_type] = STATE(3195),
- [sym__number] = STATE(3154),
- [sym_existential_type] = STATE(3195),
- [sym_flow_maybe_type] = STATE(3195),
- [sym_parenthesized_type] = STATE(3195),
- [sym_predefined_type] = STATE(3195),
- [sym_object_type] = STATE(3195),
- [sym_type_parameters] = STATE(5228),
- [sym_array_type] = STATE(3195),
- [sym_tuple_type] = STATE(3195),
- [sym_readonly_type] = STATE(3205),
- [sym_union_type] = STATE(3195),
- [sym_intersection_type] = STATE(3195),
- [sym_function_type] = STATE(3205),
- [sym_identifier] = ACTIONS(1582),
- [anon_sym_STAR] = ACTIONS(992),
- [anon_sym_LBRACE] = ACTIONS(1586),
- [anon_sym_typeof] = ACTIONS(1588),
- [anon_sym_import] = ACTIONS(133),
- [anon_sym_const] = ACTIONS(998),
- [anon_sym_LPAREN] = ACTIONS(1590),
- [anon_sym_LBRACK] = ACTIONS(1592),
- [anon_sym_DQUOTE] = ACTIONS(1594),
- [anon_sym_SQUOTE] = ACTIONS(1596),
- [anon_sym_new] = ACTIONS(1598),
- [anon_sym_AMP] = ACTIONS(1006),
- [anon_sym_PIPE] = ACTIONS(1008),
- [anon_sym_PLUS] = ACTIONS(2977),
- [anon_sym_DASH] = ACTIONS(2977),
- [anon_sym_LT] = ACTIONS(2581),
- [anon_sym_void] = ACTIONS(1038),
- [sym_comment] = ACTIONS(5),
- [anon_sym_BQUOTE] = ACTIONS(1606),
- [sym_number] = ACTIONS(1608),
- [sym_this] = ACTIONS(1610),
- [sym_true] = ACTIONS(1612),
- [sym_false] = ACTIONS(1612),
- [sym_null] = ACTIONS(1612),
- [sym_undefined] = ACTIONS(1612),
- [anon_sym_readonly] = ACTIONS(1614),
- [anon_sym_QMARK] = ACTIONS(1026),
- [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_object] = ACTIONS(1038),
- [anon_sym_abstract] = ACTIONS(1030),
- [anon_sym_infer] = ACTIONS(1032),
- [anon_sym_keyof] = ACTIONS(1034),
- [anon_sym_unique] = ACTIONS(1036),
- [anon_sym_unknown] = ACTIONS(1038),
- [anon_sym_never] = ACTIONS(1038),
- [anon_sym_LBRACE_PIPE] = ACTIONS(1040),
- [sym_html_comment] = ACTIONS(5),
- },
- [1002] = {
- [sym_import] = STATE(5139),
- [sym_nested_identifier] = STATE(5610),
- [sym_string] = STATE(3160),
- [sym_formal_parameters] = STATE(5827),
- [sym_nested_type_identifier] = STATE(3047),
- [sym__type_query_member_expression_in_type_annotation] = STATE(2958),
- [sym__type_query_call_expression_in_type_annotation] = STATE(3113),
- [sym_type] = STATE(4393),
- [sym_constructor_type] = STATE(3205),
- [sym_primary_type] = STATE(3150),
- [sym_template_literal_type] = STATE(3195),
- [sym_infer_type] = STATE(3205),
- [sym_conditional_type] = STATE(3195),
- [sym_generic_type] = STATE(3195),
- [sym_type_query] = STATE(3195),
- [sym_index_type_query] = STATE(3195),
- [sym_lookup_type] = STATE(3195),
- [sym_literal_type] = STATE(3195),
- [sym__number] = STATE(3154),
- [sym_existential_type] = STATE(3195),
- [sym_flow_maybe_type] = STATE(3195),
- [sym_parenthesized_type] = STATE(3195),
- [sym_predefined_type] = STATE(3195),
- [sym_object_type] = STATE(3195),
- [sym_type_parameters] = STATE(5228),
- [sym_array_type] = STATE(3195),
- [sym_tuple_type] = STATE(3195),
- [sym_readonly_type] = STATE(3205),
- [sym_union_type] = STATE(3195),
- [sym_intersection_type] = STATE(3195),
- [sym_function_type] = STATE(3205),
- [sym_identifier] = ACTIONS(1582),
- [anon_sym_STAR] = ACTIONS(992),
- [anon_sym_LBRACE] = ACTIONS(1586),
- [anon_sym_typeof] = ACTIONS(1588),
- [anon_sym_import] = ACTIONS(133),
- [anon_sym_const] = ACTIONS(998),
- [anon_sym_LPAREN] = ACTIONS(1590),
- [anon_sym_LBRACK] = ACTIONS(1592),
- [anon_sym_DQUOTE] = ACTIONS(1594),
- [anon_sym_SQUOTE] = ACTIONS(1596),
- [anon_sym_new] = ACTIONS(1598),
- [anon_sym_AMP] = ACTIONS(1006),
- [anon_sym_PIPE] = ACTIONS(1008),
- [anon_sym_PLUS] = ACTIONS(2977),
- [anon_sym_DASH] = ACTIONS(2977),
- [anon_sym_LT] = ACTIONS(2581),
- [anon_sym_void] = ACTIONS(1038),
- [sym_comment] = ACTIONS(5),
- [anon_sym_BQUOTE] = ACTIONS(1606),
- [sym_number] = ACTIONS(1608),
- [sym_this] = ACTIONS(1610),
- [sym_true] = ACTIONS(1612),
- [sym_false] = ACTIONS(1612),
- [sym_null] = ACTIONS(1612),
- [sym_undefined] = ACTIONS(1612),
- [anon_sym_readonly] = ACTIONS(1614),
- [anon_sym_QMARK] = ACTIONS(1026),
- [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_object] = ACTIONS(1038),
- [anon_sym_abstract] = ACTIONS(1030),
- [anon_sym_infer] = ACTIONS(1032),
- [anon_sym_keyof] = ACTIONS(1034),
- [anon_sym_unique] = ACTIONS(1036),
- [anon_sym_unknown] = ACTIONS(1038),
- [anon_sym_never] = ACTIONS(1038),
- [anon_sym_LBRACE_PIPE] = ACTIONS(1040),
- [sym_html_comment] = ACTIONS(5),
- },
- [1003] = {
- [sym_import] = STATE(5139),
- [sym_nested_identifier] = STATE(5610),
- [sym_string] = STATE(3160),
- [sym_formal_parameters] = STATE(5827),
- [sym_nested_type_identifier] = STATE(3047),
- [sym__type_query_member_expression_in_type_annotation] = STATE(2958),
- [sym__type_query_call_expression_in_type_annotation] = STATE(3113),
- [sym_type] = STATE(4033),
- [sym_constructor_type] = STATE(3205),
- [sym_primary_type] = STATE(3150),
- [sym_template_literal_type] = STATE(3195),
- [sym_infer_type] = STATE(3205),
- [sym_conditional_type] = STATE(3195),
- [sym_generic_type] = STATE(3195),
- [sym_type_query] = STATE(3195),
- [sym_index_type_query] = STATE(3195),
- [sym_lookup_type] = STATE(3195),
- [sym_literal_type] = STATE(3195),
- [sym__number] = STATE(3154),
- [sym_existential_type] = STATE(3195),
- [sym_flow_maybe_type] = STATE(3195),
- [sym_parenthesized_type] = STATE(3195),
- [sym_predefined_type] = STATE(3195),
- [sym_object_type] = STATE(3195),
- [sym_type_parameters] = STATE(5228),
- [sym_array_type] = STATE(3195),
- [sym_tuple_type] = STATE(3195),
- [sym_readonly_type] = STATE(3205),
- [sym_union_type] = STATE(3195),
- [sym_intersection_type] = STATE(3195),
- [sym_function_type] = STATE(3205),
- [sym_identifier] = ACTIONS(1582),
- [anon_sym_STAR] = ACTIONS(992),
- [anon_sym_LBRACE] = ACTIONS(1586),
- [anon_sym_typeof] = ACTIONS(1588),
- [anon_sym_import] = ACTIONS(133),
- [anon_sym_const] = ACTIONS(998),
- [anon_sym_LPAREN] = ACTIONS(1590),
- [anon_sym_LBRACK] = ACTIONS(1592),
- [anon_sym_DQUOTE] = ACTIONS(1594),
- [anon_sym_SQUOTE] = ACTIONS(1596),
- [anon_sym_new] = ACTIONS(1598),
- [anon_sym_AMP] = ACTIONS(1006),
- [anon_sym_PIPE] = ACTIONS(1008),
- [anon_sym_PLUS] = ACTIONS(2977),
- [anon_sym_DASH] = ACTIONS(2977),
- [anon_sym_LT] = ACTIONS(2581),
- [anon_sym_void] = ACTIONS(1038),
- [sym_comment] = ACTIONS(5),
- [anon_sym_BQUOTE] = ACTIONS(1606),
- [sym_number] = ACTIONS(1608),
- [sym_this] = ACTIONS(1610),
- [sym_true] = ACTIONS(1612),
- [sym_false] = ACTIONS(1612),
- [sym_null] = ACTIONS(1612),
- [sym_undefined] = ACTIONS(1612),
- [anon_sym_readonly] = ACTIONS(1614),
- [anon_sym_QMARK] = ACTIONS(1026),
- [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_object] = ACTIONS(1038),
- [anon_sym_abstract] = ACTIONS(1030),
- [anon_sym_infer] = ACTIONS(1032),
- [anon_sym_keyof] = ACTIONS(1034),
- [anon_sym_unique] = ACTIONS(1036),
- [anon_sym_unknown] = ACTIONS(1038),
- [anon_sym_never] = ACTIONS(1038),
- [anon_sym_LBRACE_PIPE] = ACTIONS(1040),
- [sym_html_comment] = ACTIONS(5),
- },
- [1004] = {
- [sym_import] = STATE(4618),
- [sym_nested_identifier] = STATE(5906),
- [sym_string] = STATE(1947),
- [sym_formal_parameters] = STATE(5651),
- [sym_nested_type_identifier] = STATE(1799),
- [sym__type_query_member_expression_in_type_annotation] = STATE(1800),
- [sym__type_query_call_expression_in_type_annotation] = STATE(1928),
- [sym_type] = STATE(1892),
- [sym_constructor_type] = STATE(1929),
- [sym_primary_type] = STATE(1931),
- [sym_template_literal_type] = STATE(1936),
- [sym_infer_type] = STATE(1929),
- [sym_conditional_type] = STATE(1936),
- [sym_generic_type] = STATE(1936),
- [sym_type_query] = STATE(1936),
- [sym_index_type_query] = STATE(1936),
- [sym_lookup_type] = STATE(1936),
- [sym_literal_type] = STATE(1936),
- [sym__number] = STATE(1932),
- [sym_existential_type] = STATE(1936),
- [sym_flow_maybe_type] = STATE(1936),
- [sym_parenthesized_type] = STATE(1936),
- [sym_predefined_type] = STATE(1936),
- [sym_object_type] = STATE(1936),
- [sym_type_parameters] = STATE(5347),
- [sym_array_type] = STATE(1936),
- [sym_tuple_type] = STATE(1936),
- [sym_readonly_type] = STATE(1929),
- [sym_union_type] = STATE(1936),
- [sym_intersection_type] = STATE(1936),
- [sym_function_type] = STATE(1929),
- [sym_identifier] = ACTIONS(3177),
- [anon_sym_STAR] = ACTIONS(2929),
- [anon_sym_LBRACE] = ACTIONS(2931),
- [anon_sym_typeof] = ACTIONS(2933),
- [anon_sym_import] = ACTIONS(133),
- [anon_sym_const] = ACTIONS(2935),
- [anon_sym_LPAREN] = ACTIONS(2937),
- [anon_sym_LBRACK] = ACTIONS(2939),
- [anon_sym_DQUOTE] = ACTIONS(69),
- [anon_sym_SQUOTE] = ACTIONS(71),
- [anon_sym_new] = ACTIONS(2941),
- [anon_sym_AMP] = ACTIONS(2943),
- [anon_sym_PIPE] = ACTIONS(2945),
- [anon_sym_PLUS] = ACTIONS(2947),
- [anon_sym_DASH] = ACTIONS(2947),
- [anon_sym_LT] = ACTIONS(2581),
- [anon_sym_void] = ACTIONS(2949),
- [sym_comment] = ACTIONS(5),
- [anon_sym_BQUOTE] = ACTIONS(2951),
- [sym_number] = ACTIONS(2953),
- [sym_this] = ACTIONS(3179),
- [sym_true] = ACTIONS(2957),
- [sym_false] = ACTIONS(2957),
- [sym_null] = ACTIONS(2957),
- [sym_undefined] = ACTIONS(2957),
- [anon_sym_readonly] = ACTIONS(2959),
- [anon_sym_QMARK] = ACTIONS(2961),
- [anon_sym_any] = ACTIONS(2949),
- [anon_sym_number] = ACTIONS(2949),
- [anon_sym_boolean] = ACTIONS(2949),
- [anon_sym_string] = ACTIONS(2949),
- [anon_sym_symbol] = ACTIONS(2949),
- [anon_sym_object] = ACTIONS(2949),
- [anon_sym_abstract] = ACTIONS(2963),
- [anon_sym_infer] = ACTIONS(2967),
- [anon_sym_keyof] = ACTIONS(2969),
- [anon_sym_unique] = ACTIONS(2971),
- [anon_sym_unknown] = ACTIONS(2949),
- [anon_sym_never] = ACTIONS(2949),
- [anon_sym_LBRACE_PIPE] = ACTIONS(2973),
- [sym_html_comment] = ACTIONS(5),
- },
- [1005] = {
- [sym_import] = STATE(4753),
- [sym_nested_identifier] = STATE(5707),
- [sym_string] = STATE(2889),
- [sym_formal_parameters] = STATE(5626),
- [sym_nested_type_identifier] = STATE(2828),
- [sym__type_query_member_expression_in_type_annotation] = STATE(3228),
- [sym__type_query_call_expression_in_type_annotation] = STATE(2850),
- [sym_type] = STATE(2876),
- [sym_constructor_type] = STATE(2896),
- [sym_primary_type] = STATE(2897),
- [sym_template_literal_type] = STATE(2885),
- [sym_infer_type] = STATE(2896),
- [sym_conditional_type] = STATE(2885),
- [sym_generic_type] = STATE(2885),
- [sym_type_query] = STATE(2885),
- [sym_index_type_query] = STATE(2885),
- [sym_lookup_type] = STATE(2885),
- [sym_literal_type] = STATE(2885),
- [sym__number] = STATE(2903),
- [sym_existential_type] = STATE(2885),
- [sym_flow_maybe_type] = STATE(2885),
- [sym_parenthesized_type] = STATE(2885),
- [sym_predefined_type] = STATE(2885),
- [sym_object_type] = STATE(2885),
- [sym_type_parameters] = STATE(5517),
- [sym_array_type] = STATE(2885),
- [sym_tuple_type] = STATE(2885),
- [sym_readonly_type] = STATE(2896),
- [sym_union_type] = STATE(2885),
- [sym_intersection_type] = STATE(2885),
- [sym_function_type] = STATE(2896),
- [sym_identifier] = ACTIONS(1496),
- [anon_sym_STAR] = ACTIONS(612),
- [anon_sym_LBRACE] = ACTIONS(1498),
- [anon_sym_typeof] = ACTIONS(1500),
- [anon_sym_import] = ACTIONS(133),
- [anon_sym_const] = ACTIONS(135),
- [anon_sym_LPAREN] = ACTIONS(1502),
- [anon_sym_LBRACK] = ACTIONS(1504),
- [anon_sym_DQUOTE] = ACTIONS(1506),
- [anon_sym_SQUOTE] = ACTIONS(1508),
- [anon_sym_new] = ACTIONS(1572),
- [anon_sym_AMP] = ACTIONS(640),
- [anon_sym_PIPE] = ACTIONS(642),
- [anon_sym_PLUS] = ACTIONS(2579),
- [anon_sym_DASH] = ACTIONS(2579),
- [anon_sym_LT] = ACTIONS(2581),
- [anon_sym_void] = ACTIONS(220),
- [sym_comment] = ACTIONS(5),
- [anon_sym_BQUOTE] = ACTIONS(1516),
- [sym_number] = ACTIONS(1518),
- [sym_this] = ACTIONS(1520),
- [sym_true] = ACTIONS(1522),
- [sym_false] = ACTIONS(1522),
- [sym_null] = ACTIONS(1522),
- [sym_undefined] = ACTIONS(1522),
- [anon_sym_readonly] = ACTIONS(1578),
- [anon_sym_QMARK] = ACTIONS(662),
- [anon_sym_any] = ACTIONS(220),
- [anon_sym_number] = ACTIONS(220),
- [anon_sym_boolean] = ACTIONS(220),
- [anon_sym_string] = ACTIONS(220),
- [anon_sym_symbol] = ACTIONS(220),
- [anon_sym_object] = ACTIONS(220),
- [anon_sym_abstract] = ACTIONS(666),
- [anon_sym_infer] = ACTIONS(668),
- [anon_sym_keyof] = ACTIONS(670),
- [anon_sym_unique] = ACTIONS(218),
- [anon_sym_unknown] = ACTIONS(220),
- [anon_sym_never] = ACTIONS(220),
- [anon_sym_LBRACE_PIPE] = ACTIONS(222),
- [sym_html_comment] = ACTIONS(5),
- },
- [1006] = {
- [sym_import] = STATE(4753),
- [sym_nested_identifier] = STATE(5707),
- [sym_string] = STATE(2889),
- [sym_formal_parameters] = STATE(5626),
- [sym_nested_type_identifier] = STATE(2828),
- [sym__type_query_member_expression_in_type_annotation] = STATE(3228),
- [sym__type_query_call_expression_in_type_annotation] = STATE(2850),
- [sym_type] = STATE(3625),
- [sym_constructor_type] = STATE(2896),
- [sym_primary_type] = STATE(2897),
- [sym_template_literal_type] = STATE(2885),
- [sym_infer_type] = STATE(2896),
- [sym_conditional_type] = STATE(2885),
- [sym_generic_type] = STATE(2885),
- [sym_type_query] = STATE(2885),
- [sym_index_type_query] = STATE(2885),
- [sym_lookup_type] = STATE(2885),
- [sym_literal_type] = STATE(2885),
- [sym__number] = STATE(2903),
- [sym_existential_type] = STATE(2885),
- [sym_flow_maybe_type] = STATE(2885),
- [sym_parenthesized_type] = STATE(2885),
- [sym_predefined_type] = STATE(2885),
- [sym_object_type] = STATE(2885),
- [sym_type_parameters] = STATE(5517),
- [sym_array_type] = STATE(2885),
- [sym_tuple_type] = STATE(2885),
- [sym_readonly_type] = STATE(2896),
- [sym_union_type] = STATE(2885),
- [sym_intersection_type] = STATE(2885),
- [sym_function_type] = STATE(2896),
- [sym_identifier] = ACTIONS(1496),
- [anon_sym_STAR] = ACTIONS(612),
- [anon_sym_LBRACE] = ACTIONS(1498),
- [anon_sym_typeof] = ACTIONS(1500),
- [anon_sym_import] = ACTIONS(133),
- [anon_sym_const] = ACTIONS(135),
- [anon_sym_LPAREN] = ACTIONS(1502),
- [anon_sym_LBRACK] = ACTIONS(1504),
- [anon_sym_DQUOTE] = ACTIONS(1506),
- [anon_sym_SQUOTE] = ACTIONS(1508),
- [anon_sym_new] = ACTIONS(1572),
- [anon_sym_AMP] = ACTIONS(640),
- [anon_sym_PIPE] = ACTIONS(642),
- [anon_sym_PLUS] = ACTIONS(2579),
- [anon_sym_DASH] = ACTIONS(2579),
- [anon_sym_LT] = ACTIONS(2581),
- [anon_sym_void] = ACTIONS(220),
- [sym_comment] = ACTIONS(5),
- [anon_sym_BQUOTE] = ACTIONS(1516),
- [sym_number] = ACTIONS(1518),
- [sym_this] = ACTIONS(1520),
- [sym_true] = ACTIONS(1522),
- [sym_false] = ACTIONS(1522),
- [sym_null] = ACTIONS(1522),
- [sym_undefined] = ACTIONS(1522),
- [anon_sym_readonly] = ACTIONS(1578),
- [anon_sym_QMARK] = ACTIONS(662),
- [anon_sym_any] = ACTIONS(220),
- [anon_sym_number] = ACTIONS(220),
- [anon_sym_boolean] = ACTIONS(220),
- [anon_sym_string] = ACTIONS(220),
- [anon_sym_symbol] = ACTIONS(220),
- [anon_sym_object] = ACTIONS(220),
- [anon_sym_abstract] = ACTIONS(666),
- [anon_sym_infer] = ACTIONS(668),
- [anon_sym_keyof] = ACTIONS(670),
- [anon_sym_unique] = ACTIONS(218),
- [anon_sym_unknown] = ACTIONS(220),
- [anon_sym_never] = ACTIONS(220),
- [anon_sym_LBRACE_PIPE] = ACTIONS(222),
- [sym_html_comment] = ACTIONS(5),
- },
- [1007] = {
- [sym_import] = STATE(4642),
- [sym_nested_identifier] = STATE(5541),
- [sym_string] = STATE(3272),
- [sym_formal_parameters] = STATE(5632),
- [sym_nested_type_identifier] = STATE(3198),
- [sym__type_query_member_expression_in_type_annotation] = STATE(3138),
- [sym__type_query_call_expression_in_type_annotation] = STATE(3223),
- [sym_type] = STATE(3427),
- [sym_constructor_type] = STATE(3280),
- [sym_primary_type] = STATE(3281),
- [sym_template_literal_type] = STATE(3257),
- [sym_infer_type] = STATE(3280),
- [sym_conditional_type] = STATE(3257),
- [sym_generic_type] = STATE(3257),
- [sym_type_query] = STATE(3257),
- [sym_index_type_query] = STATE(3257),
- [sym_lookup_type] = STATE(3257),
- [sym_literal_type] = STATE(3257),
- [sym__number] = STATE(3285),
- [sym_existential_type] = STATE(3257),
- [sym_flow_maybe_type] = STATE(3257),
- [sym_parenthesized_type] = STATE(3257),
- [sym_predefined_type] = STATE(3257),
- [sym_object_type] = STATE(3257),
- [sym_type_parameters] = STATE(5324),
- [sym_array_type] = STATE(3257),
- [sym_tuple_type] = STATE(3257),
- [sym_readonly_type] = STATE(3280),
- [sym_union_type] = STATE(3257),
- [sym_intersection_type] = STATE(3257),
- [sym_function_type] = STATE(3280),
- [sym_identifier] = ACTIONS(3185),
- [anon_sym_STAR] = ACTIONS(2985),
- [anon_sym_LBRACE] = ACTIONS(2987),
- [anon_sym_typeof] = ACTIONS(2989),
- [anon_sym_import] = ACTIONS(133),
- [anon_sym_const] = ACTIONS(2991),
- [anon_sym_LPAREN] = ACTIONS(2993),
- [anon_sym_LBRACK] = ACTIONS(2995),
- [anon_sym_DQUOTE] = ACTIONS(2997),
- [anon_sym_SQUOTE] = ACTIONS(2999),
- [anon_sym_new] = ACTIONS(3001),
- [anon_sym_AMP] = ACTIONS(3003),
- [anon_sym_PIPE] = ACTIONS(3005),
- [anon_sym_PLUS] = ACTIONS(3007),
- [anon_sym_DASH] = ACTIONS(3007),
- [anon_sym_LT] = ACTIONS(2581),
- [anon_sym_void] = ACTIONS(3009),
- [sym_comment] = ACTIONS(5),
- [anon_sym_BQUOTE] = ACTIONS(3011),
- [sym_number] = ACTIONS(3013),
- [sym_this] = ACTIONS(3187),
- [sym_true] = ACTIONS(3017),
- [sym_false] = ACTIONS(3017),
- [sym_null] = ACTIONS(3017),
- [sym_undefined] = ACTIONS(3017),
- [anon_sym_readonly] = ACTIONS(3019),
- [anon_sym_QMARK] = ACTIONS(3021),
- [anon_sym_any] = ACTIONS(3009),
- [anon_sym_number] = ACTIONS(3009),
- [anon_sym_boolean] = ACTIONS(3009),
- [anon_sym_string] = ACTIONS(3009),
- [anon_sym_symbol] = ACTIONS(3009),
- [anon_sym_object] = ACTIONS(3009),
- [anon_sym_abstract] = ACTIONS(3023),
- [anon_sym_infer] = ACTIONS(3027),
- [anon_sym_keyof] = ACTIONS(3029),
- [anon_sym_unique] = ACTIONS(3031),
- [anon_sym_unknown] = ACTIONS(3009),
- [anon_sym_never] = ACTIONS(3009),
- [anon_sym_LBRACE_PIPE] = ACTIONS(3033),
- [sym_html_comment] = ACTIONS(5),
- },
- [1008] = {
- [sym_import] = STATE(4753),
- [sym_nested_identifier] = STATE(5707),
- [sym_string] = STATE(2889),
- [sym_formal_parameters] = STATE(5626),
- [sym_nested_type_identifier] = STATE(2828),
- [sym__type_query_member_expression_in_type_annotation] = STATE(3228),
- [sym__type_query_call_expression_in_type_annotation] = STATE(2850),
- [sym_type] = STATE(3629),
- [sym_constructor_type] = STATE(2896),
- [sym_primary_type] = STATE(2897),
- [sym_template_literal_type] = STATE(2885),
- [sym_infer_type] = STATE(2896),
- [sym_conditional_type] = STATE(2885),
- [sym_generic_type] = STATE(2885),
- [sym_type_query] = STATE(2885),
- [sym_index_type_query] = STATE(2885),
- [sym_lookup_type] = STATE(2885),
- [sym_literal_type] = STATE(2885),
- [sym__number] = STATE(2903),
- [sym_existential_type] = STATE(2885),
- [sym_flow_maybe_type] = STATE(2885),
- [sym_parenthesized_type] = STATE(2885),
- [sym_predefined_type] = STATE(2885),
- [sym_object_type] = STATE(2885),
- [sym_type_parameters] = STATE(5517),
- [sym_array_type] = STATE(2885),
- [sym_tuple_type] = STATE(2885),
- [sym_readonly_type] = STATE(2896),
- [sym_union_type] = STATE(2885),
- [sym_intersection_type] = STATE(2885),
- [sym_function_type] = STATE(2896),
- [sym_identifier] = ACTIONS(1496),
- [anon_sym_STAR] = ACTIONS(612),
- [anon_sym_LBRACE] = ACTIONS(1498),
- [anon_sym_typeof] = ACTIONS(1500),
- [anon_sym_import] = ACTIONS(133),
- [anon_sym_const] = ACTIONS(135),
- [anon_sym_LPAREN] = ACTIONS(1502),
- [anon_sym_LBRACK] = ACTIONS(1504),
- [anon_sym_DQUOTE] = ACTIONS(1506),
- [anon_sym_SQUOTE] = ACTIONS(1508),
- [anon_sym_new] = ACTIONS(1572),
- [anon_sym_AMP] = ACTIONS(640),
- [anon_sym_PIPE] = ACTIONS(642),
- [anon_sym_PLUS] = ACTIONS(2579),
- [anon_sym_DASH] = ACTIONS(2579),
- [anon_sym_LT] = ACTIONS(2581),
- [anon_sym_void] = ACTIONS(220),
- [sym_comment] = ACTIONS(5),
- [anon_sym_BQUOTE] = ACTIONS(1516),
- [sym_number] = ACTIONS(1518),
- [sym_this] = ACTIONS(1520),
- [sym_true] = ACTIONS(1522),
- [sym_false] = ACTIONS(1522),
- [sym_null] = ACTIONS(1522),
- [sym_undefined] = ACTIONS(1522),
- [anon_sym_readonly] = ACTIONS(1578),
- [anon_sym_QMARK] = ACTIONS(662),
- [anon_sym_any] = ACTIONS(220),
- [anon_sym_number] = ACTIONS(220),
- [anon_sym_boolean] = ACTIONS(220),
- [anon_sym_string] = ACTIONS(220),
- [anon_sym_symbol] = ACTIONS(220),
- [anon_sym_object] = ACTIONS(220),
- [anon_sym_abstract] = ACTIONS(666),
- [anon_sym_infer] = ACTIONS(668),
- [anon_sym_keyof] = ACTIONS(670),
- [anon_sym_unique] = ACTIONS(218),
- [anon_sym_unknown] = ACTIONS(220),
- [anon_sym_never] = ACTIONS(220),
- [anon_sym_LBRACE_PIPE] = ACTIONS(222),
- [sym_html_comment] = ACTIONS(5),
- },
- [1009] = {
- [sym_import] = STATE(4753),
- [sym_nested_identifier] = STATE(5707),
- [sym_string] = STATE(2889),
- [sym_formal_parameters] = STATE(5626),
- [sym_nested_type_identifier] = STATE(2828),
- [sym__type_query_member_expression_in_type_annotation] = STATE(3228),
- [sym__type_query_call_expression_in_type_annotation] = STATE(2850),
- [sym_type] = STATE(3630),
- [sym_constructor_type] = STATE(2896),
- [sym_primary_type] = STATE(2897),
- [sym_template_literal_type] = STATE(2885),
- [sym_infer_type] = STATE(2896),
- [sym_conditional_type] = STATE(2885),
- [sym_generic_type] = STATE(2885),
- [sym_type_query] = STATE(2885),
- [sym_index_type_query] = STATE(2885),
- [sym_lookup_type] = STATE(2885),
- [sym_literal_type] = STATE(2885),
- [sym__number] = STATE(2903),
- [sym_existential_type] = STATE(2885),
- [sym_flow_maybe_type] = STATE(2885),
- [sym_parenthesized_type] = STATE(2885),
- [sym_predefined_type] = STATE(2885),
- [sym_object_type] = STATE(2885),
- [sym_type_parameters] = STATE(5517),
- [sym_array_type] = STATE(2885),
- [sym_tuple_type] = STATE(2885),
- [sym_readonly_type] = STATE(2896),
- [sym_union_type] = STATE(2885),
- [sym_intersection_type] = STATE(2885),
- [sym_function_type] = STATE(2896),
- [sym_identifier] = ACTIONS(1496),
- [anon_sym_STAR] = ACTIONS(612),
- [anon_sym_LBRACE] = ACTIONS(1498),
- [anon_sym_typeof] = ACTIONS(1500),
- [anon_sym_import] = ACTIONS(133),
- [anon_sym_const] = ACTIONS(135),
- [anon_sym_LPAREN] = ACTIONS(1502),
- [anon_sym_LBRACK] = ACTIONS(1504),
- [anon_sym_DQUOTE] = ACTIONS(1506),
- [anon_sym_SQUOTE] = ACTIONS(1508),
- [anon_sym_new] = ACTIONS(1572),
- [anon_sym_AMP] = ACTIONS(640),
- [anon_sym_PIPE] = ACTIONS(642),
- [anon_sym_PLUS] = ACTIONS(2579),
- [anon_sym_DASH] = ACTIONS(2579),
- [anon_sym_LT] = ACTIONS(2581),
- [anon_sym_void] = ACTIONS(220),
- [sym_comment] = ACTIONS(5),
- [anon_sym_BQUOTE] = ACTIONS(1516),
- [sym_number] = ACTIONS(1518),
- [sym_this] = ACTIONS(1520),
- [sym_true] = ACTIONS(1522),
- [sym_false] = ACTIONS(1522),
- [sym_null] = ACTIONS(1522),
- [sym_undefined] = ACTIONS(1522),
- [anon_sym_readonly] = ACTIONS(1578),
- [anon_sym_QMARK] = ACTIONS(662),
- [anon_sym_any] = ACTIONS(220),
- [anon_sym_number] = ACTIONS(220),
- [anon_sym_boolean] = ACTIONS(220),
- [anon_sym_string] = ACTIONS(220),
- [anon_sym_symbol] = ACTIONS(220),
- [anon_sym_object] = ACTIONS(220),
- [anon_sym_abstract] = ACTIONS(666),
- [anon_sym_infer] = ACTIONS(668),
- [anon_sym_keyof] = ACTIONS(670),
- [anon_sym_unique] = ACTIONS(218),
- [anon_sym_unknown] = ACTIONS(220),
- [anon_sym_never] = ACTIONS(220),
- [anon_sym_LBRACE_PIPE] = ACTIONS(222),
- [sym_html_comment] = ACTIONS(5),
- },
- [1010] = {
- [sym_import] = STATE(4753),
- [sym_nested_identifier] = STATE(5707),
- [sym_string] = STATE(2889),
- [sym_formal_parameters] = STATE(5626),
- [sym_nested_type_identifier] = STATE(2828),
- [sym__type_query_member_expression_in_type_annotation] = STATE(3228),
- [sym__type_query_call_expression_in_type_annotation] = STATE(2850),
- [sym_type] = STATE(2921),
- [sym_constructor_type] = STATE(2896),
- [sym_primary_type] = STATE(2897),
- [sym_template_literal_type] = STATE(2885),
- [sym_infer_type] = STATE(2896),
- [sym_conditional_type] = STATE(2885),
- [sym_generic_type] = STATE(2885),
- [sym_type_query] = STATE(2885),
- [sym_index_type_query] = STATE(2885),
- [sym_lookup_type] = STATE(2885),
- [sym_literal_type] = STATE(2885),
- [sym__number] = STATE(2903),
- [sym_existential_type] = STATE(2885),
- [sym_flow_maybe_type] = STATE(2885),
- [sym_parenthesized_type] = STATE(2885),
- [sym_predefined_type] = STATE(2885),
- [sym_object_type] = STATE(2885),
- [sym_type_parameters] = STATE(5517),
- [sym_array_type] = STATE(2885),
- [sym_tuple_type] = STATE(2885),
- [sym_readonly_type] = STATE(2896),
- [sym_union_type] = STATE(2885),
- [sym_intersection_type] = STATE(2885),
- [sym_function_type] = STATE(2896),
- [sym_identifier] = ACTIONS(1496),
- [anon_sym_STAR] = ACTIONS(612),
- [anon_sym_LBRACE] = ACTIONS(1498),
- [anon_sym_typeof] = ACTIONS(1500),
- [anon_sym_import] = ACTIONS(133),
- [anon_sym_const] = ACTIONS(135),
- [anon_sym_LPAREN] = ACTIONS(1502),
- [anon_sym_LBRACK] = ACTIONS(1504),
- [anon_sym_DQUOTE] = ACTIONS(1506),
- [anon_sym_SQUOTE] = ACTIONS(1508),
- [anon_sym_new] = ACTIONS(1572),
- [anon_sym_AMP] = ACTIONS(640),
- [anon_sym_PIPE] = ACTIONS(642),
- [anon_sym_PLUS] = ACTIONS(2579),
- [anon_sym_DASH] = ACTIONS(2579),
- [anon_sym_LT] = ACTIONS(2581),
- [anon_sym_void] = ACTIONS(220),
- [sym_comment] = ACTIONS(5),
- [anon_sym_BQUOTE] = ACTIONS(1516),
- [sym_number] = ACTIONS(1518),
- [sym_this] = ACTIONS(1520),
- [sym_true] = ACTIONS(1522),
- [sym_false] = ACTIONS(1522),
- [sym_null] = ACTIONS(1522),
- [sym_undefined] = ACTIONS(1522),
- [anon_sym_readonly] = ACTIONS(1578),
- [anon_sym_QMARK] = ACTIONS(662),
- [anon_sym_any] = ACTIONS(220),
- [anon_sym_number] = ACTIONS(220),
- [anon_sym_boolean] = ACTIONS(220),
- [anon_sym_string] = ACTIONS(220),
- [anon_sym_symbol] = ACTIONS(220),
- [anon_sym_object] = ACTIONS(220),
- [anon_sym_abstract] = ACTIONS(666),
- [anon_sym_infer] = ACTIONS(668),
- [anon_sym_keyof] = ACTIONS(670),
- [anon_sym_unique] = ACTIONS(218),
- [anon_sym_unknown] = ACTIONS(220),
- [anon_sym_never] = ACTIONS(220),
- [anon_sym_LBRACE_PIPE] = ACTIONS(222),
- [sym_html_comment] = ACTIONS(5),
- },
- [1011] = {
- [sym_import] = STATE(4753),
- [sym_nested_identifier] = STATE(5707),
- [sym_string] = STATE(2889),
- [sym_formal_parameters] = STATE(5626),
- [sym_nested_type_identifier] = STATE(2828),
- [sym__type_query_member_expression_in_type_annotation] = STATE(3228),
- [sym__type_query_call_expression_in_type_annotation] = STATE(2850),
- [sym_type] = STATE(3646),
- [sym_constructor_type] = STATE(2896),
- [sym_primary_type] = STATE(2897),
- [sym_template_literal_type] = STATE(2885),
- [sym_infer_type] = STATE(2896),
- [sym_conditional_type] = STATE(2885),
- [sym_generic_type] = STATE(2885),
- [sym_type_query] = STATE(2885),
- [sym_index_type_query] = STATE(2885),
- [sym_lookup_type] = STATE(2885),
- [sym_literal_type] = STATE(2885),
- [sym__number] = STATE(2903),
- [sym_existential_type] = STATE(2885),
- [sym_flow_maybe_type] = STATE(2885),
- [sym_parenthesized_type] = STATE(2885),
- [sym_predefined_type] = STATE(2885),
- [sym_object_type] = STATE(2885),
- [sym_type_parameters] = STATE(5517),
- [sym_array_type] = STATE(2885),
- [sym_tuple_type] = STATE(2885),
- [sym_readonly_type] = STATE(2896),
- [sym_union_type] = STATE(2885),
- [sym_intersection_type] = STATE(2885),
- [sym_function_type] = STATE(2896),
- [sym_identifier] = ACTIONS(1496),
- [anon_sym_STAR] = ACTIONS(612),
- [anon_sym_LBRACE] = ACTIONS(1498),
- [anon_sym_typeof] = ACTIONS(1500),
- [anon_sym_import] = ACTIONS(133),
- [anon_sym_const] = ACTIONS(135),
- [anon_sym_LPAREN] = ACTIONS(1502),
- [anon_sym_LBRACK] = ACTIONS(1504),
- [anon_sym_DQUOTE] = ACTIONS(1506),
- [anon_sym_SQUOTE] = ACTIONS(1508),
- [anon_sym_new] = ACTIONS(1572),
- [anon_sym_AMP] = ACTIONS(640),
- [anon_sym_PIPE] = ACTIONS(642),
- [anon_sym_PLUS] = ACTIONS(2579),
- [anon_sym_DASH] = ACTIONS(2579),
- [anon_sym_LT] = ACTIONS(2581),
- [anon_sym_void] = ACTIONS(220),
- [sym_comment] = ACTIONS(5),
- [anon_sym_BQUOTE] = ACTIONS(1516),
- [sym_number] = ACTIONS(1518),
- [sym_this] = ACTIONS(1520),
- [sym_true] = ACTIONS(1522),
- [sym_false] = ACTIONS(1522),
- [sym_null] = ACTIONS(1522),
- [sym_undefined] = ACTIONS(1522),
- [anon_sym_readonly] = ACTIONS(1578),
- [anon_sym_QMARK] = ACTIONS(662),
- [anon_sym_any] = ACTIONS(220),
- [anon_sym_number] = ACTIONS(220),
- [anon_sym_boolean] = ACTIONS(220),
- [anon_sym_string] = ACTIONS(220),
- [anon_sym_symbol] = ACTIONS(220),
- [anon_sym_object] = ACTIONS(220),
- [anon_sym_abstract] = ACTIONS(666),
- [anon_sym_infer] = ACTIONS(668),
- [anon_sym_keyof] = ACTIONS(670),
- [anon_sym_unique] = ACTIONS(218),
- [anon_sym_unknown] = ACTIONS(220),
- [anon_sym_never] = ACTIONS(220),
- [anon_sym_LBRACE_PIPE] = ACTIONS(222),
- [sym_html_comment] = ACTIONS(5),
- },
- [1012] = {
- [sym_import] = STATE(4642),
- [sym_nested_identifier] = STATE(5541),
- [sym_string] = STATE(3272),
- [sym_formal_parameters] = STATE(5632),
- [sym_nested_type_identifier] = STATE(3198),
- [sym__type_query_member_expression_in_type_annotation] = STATE(3138),
- [sym__type_query_call_expression_in_type_annotation] = STATE(3223),
- [sym_type] = STATE(3428),
- [sym_constructor_type] = STATE(3280),
- [sym_primary_type] = STATE(3281),
- [sym_template_literal_type] = STATE(3257),
- [sym_infer_type] = STATE(3280),
- [sym_conditional_type] = STATE(3257),
- [sym_generic_type] = STATE(3257),
- [sym_type_query] = STATE(3257),
- [sym_index_type_query] = STATE(3257),
- [sym_lookup_type] = STATE(3257),
- [sym_literal_type] = STATE(3257),
- [sym__number] = STATE(3285),
- [sym_existential_type] = STATE(3257),
- [sym_flow_maybe_type] = STATE(3257),
- [sym_parenthesized_type] = STATE(3257),
- [sym_predefined_type] = STATE(3257),
- [sym_object_type] = STATE(3257),
- [sym_type_parameters] = STATE(5324),
- [sym_array_type] = STATE(3257),
- [sym_tuple_type] = STATE(3257),
- [sym_readonly_type] = STATE(3280),
- [sym_union_type] = STATE(3257),
- [sym_intersection_type] = STATE(3257),
- [sym_function_type] = STATE(3280),
- [sym_identifier] = ACTIONS(3185),
- [anon_sym_STAR] = ACTIONS(2985),
- [anon_sym_LBRACE] = ACTIONS(2987),
- [anon_sym_typeof] = ACTIONS(2989),
- [anon_sym_import] = ACTIONS(133),
- [anon_sym_const] = ACTIONS(2991),
- [anon_sym_LPAREN] = ACTIONS(2993),
- [anon_sym_LBRACK] = ACTIONS(2995),
- [anon_sym_DQUOTE] = ACTIONS(2997),
- [anon_sym_SQUOTE] = ACTIONS(2999),
- [anon_sym_new] = ACTIONS(3001),
- [anon_sym_AMP] = ACTIONS(3003),
- [anon_sym_PIPE] = ACTIONS(3005),
- [anon_sym_PLUS] = ACTIONS(3007),
- [anon_sym_DASH] = ACTIONS(3007),
- [anon_sym_LT] = ACTIONS(2581),
- [anon_sym_void] = ACTIONS(3009),
- [sym_comment] = ACTIONS(5),
- [anon_sym_BQUOTE] = ACTIONS(3011),
- [sym_number] = ACTIONS(3013),
- [sym_this] = ACTIONS(3187),
- [sym_true] = ACTIONS(3017),
- [sym_false] = ACTIONS(3017),
- [sym_null] = ACTIONS(3017),
- [sym_undefined] = ACTIONS(3017),
- [anon_sym_readonly] = ACTIONS(3019),
- [anon_sym_QMARK] = ACTIONS(3021),
- [anon_sym_any] = ACTIONS(3009),
- [anon_sym_number] = ACTIONS(3009),
- [anon_sym_boolean] = ACTIONS(3009),
- [anon_sym_string] = ACTIONS(3009),
- [anon_sym_symbol] = ACTIONS(3009),
- [anon_sym_object] = ACTIONS(3009),
- [anon_sym_abstract] = ACTIONS(3023),
- [anon_sym_infer] = ACTIONS(3027),
- [anon_sym_keyof] = ACTIONS(3029),
- [anon_sym_unique] = ACTIONS(3031),
- [anon_sym_unknown] = ACTIONS(3009),
- [anon_sym_never] = ACTIONS(3009),
- [anon_sym_LBRACE_PIPE] = ACTIONS(3033),
- [sym_html_comment] = ACTIONS(5),
- },
- [1013] = {
- [sym_import] = STATE(5139),
- [sym_nested_identifier] = STATE(5610),
- [sym_string] = STATE(3160),
- [sym_formal_parameters] = STATE(5827),
- [sym_nested_type_identifier] = STATE(3047),
- [sym__type_query_member_expression_in_type_annotation] = STATE(2958),
- [sym__type_query_call_expression_in_type_annotation] = STATE(3113),
- [sym_type] = STATE(4058),
- [sym_constructor_type] = STATE(3205),
- [sym_primary_type] = STATE(3150),
- [sym_template_literal_type] = STATE(3195),
- [sym_infer_type] = STATE(3205),
- [sym_conditional_type] = STATE(3195),
- [sym_generic_type] = STATE(3195),
- [sym_type_query] = STATE(3195),
- [sym_index_type_query] = STATE(3195),
- [sym_lookup_type] = STATE(3195),
- [sym_literal_type] = STATE(3195),
- [sym__number] = STATE(3154),
- [sym_existential_type] = STATE(3195),
- [sym_flow_maybe_type] = STATE(3195),
- [sym_parenthesized_type] = STATE(3195),
- [sym_predefined_type] = STATE(3195),
- [sym_object_type] = STATE(3195),
- [sym_type_parameters] = STATE(5228),
- [sym_array_type] = STATE(3195),
- [sym_tuple_type] = STATE(3195),
- [sym_readonly_type] = STATE(3205),
- [sym_union_type] = STATE(3195),
- [sym_intersection_type] = STATE(3195),
- [sym_function_type] = STATE(3205),
- [sym_identifier] = ACTIONS(1582),
- [anon_sym_STAR] = ACTIONS(992),
- [anon_sym_LBRACE] = ACTIONS(1586),
- [anon_sym_typeof] = ACTIONS(1588),
- [anon_sym_import] = ACTIONS(133),
- [anon_sym_const] = ACTIONS(998),
- [anon_sym_LPAREN] = ACTIONS(1590),
- [anon_sym_LBRACK] = ACTIONS(1592),
- [anon_sym_DQUOTE] = ACTIONS(1594),
- [anon_sym_SQUOTE] = ACTIONS(1596),
- [anon_sym_new] = ACTIONS(1598),
- [anon_sym_AMP] = ACTIONS(1006),
- [anon_sym_PIPE] = ACTIONS(1008),
- [anon_sym_PLUS] = ACTIONS(2977),
- [anon_sym_DASH] = ACTIONS(2977),
- [anon_sym_LT] = ACTIONS(2581),
- [anon_sym_void] = ACTIONS(1038),
- [sym_comment] = ACTIONS(5),
- [anon_sym_BQUOTE] = ACTIONS(1606),
- [sym_number] = ACTIONS(1608),
- [sym_this] = ACTIONS(1610),
- [sym_true] = ACTIONS(1612),
- [sym_false] = ACTIONS(1612),
- [sym_null] = ACTIONS(1612),
- [sym_undefined] = ACTIONS(1612),
- [anon_sym_readonly] = ACTIONS(1614),
- [anon_sym_QMARK] = ACTIONS(1026),
- [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_object] = ACTIONS(1038),
- [anon_sym_abstract] = ACTIONS(1030),
- [anon_sym_infer] = ACTIONS(1032),
- [anon_sym_keyof] = ACTIONS(1034),
- [anon_sym_unique] = ACTIONS(1036),
- [anon_sym_unknown] = ACTIONS(1038),
- [anon_sym_never] = ACTIONS(1038),
- [anon_sym_LBRACE_PIPE] = ACTIONS(1040),
- [sym_html_comment] = ACTIONS(5),
- },
- [1014] = {
- [sym_import] = STATE(4753),
- [sym_nested_identifier] = STATE(5707),
- [sym_string] = STATE(2889),
- [sym_formal_parameters] = STATE(5626),
- [sym_nested_type_identifier] = STATE(2828),
- [sym__type_query_member_expression_in_type_annotation] = STATE(3228),
- [sym__type_query_call_expression_in_type_annotation] = STATE(2850),
- [sym_type] = STATE(2854),
- [sym_constructor_type] = STATE(2896),
- [sym_primary_type] = STATE(2897),
- [sym_template_literal_type] = STATE(2885),
- [sym_infer_type] = STATE(2896),
- [sym_conditional_type] = STATE(2885),
- [sym_generic_type] = STATE(2885),
- [sym_type_query] = STATE(2885),
- [sym_index_type_query] = STATE(2885),
- [sym_lookup_type] = STATE(2885),
- [sym_literal_type] = STATE(2885),
- [sym__number] = STATE(2903),
- [sym_existential_type] = STATE(2885),
- [sym_flow_maybe_type] = STATE(2885),
- [sym_parenthesized_type] = STATE(2885),
- [sym_predefined_type] = STATE(2885),
- [sym_object_type] = STATE(2885),
- [sym_type_parameters] = STATE(5517),
- [sym_array_type] = STATE(2885),
- [sym_tuple_type] = STATE(2885),
- [sym_readonly_type] = STATE(2896),
- [sym_union_type] = STATE(2885),
- [sym_intersection_type] = STATE(2885),
- [sym_function_type] = STATE(2896),
- [sym_identifier] = ACTIONS(1496),
- [anon_sym_STAR] = ACTIONS(612),
- [anon_sym_LBRACE] = ACTIONS(1498),
- [anon_sym_typeof] = ACTIONS(1500),
- [anon_sym_import] = ACTIONS(133),
- [anon_sym_const] = ACTIONS(135),
- [anon_sym_LPAREN] = ACTIONS(1502),
- [anon_sym_LBRACK] = ACTIONS(1504),
- [anon_sym_DQUOTE] = ACTIONS(1506),
- [anon_sym_SQUOTE] = ACTIONS(1508),
- [anon_sym_new] = ACTIONS(1572),
- [anon_sym_AMP] = ACTIONS(640),
- [anon_sym_PIPE] = ACTIONS(642),
- [anon_sym_PLUS] = ACTIONS(2579),
- [anon_sym_DASH] = ACTIONS(2579),
- [anon_sym_LT] = ACTIONS(2581),
- [anon_sym_void] = ACTIONS(220),
- [sym_comment] = ACTIONS(5),
- [anon_sym_BQUOTE] = ACTIONS(1516),
- [sym_number] = ACTIONS(1518),
- [sym_this] = ACTIONS(1520),
- [sym_true] = ACTIONS(1522),
- [sym_false] = ACTIONS(1522),
- [sym_null] = ACTIONS(1522),
- [sym_undefined] = ACTIONS(1522),
- [anon_sym_readonly] = ACTIONS(1578),
- [anon_sym_QMARK] = ACTIONS(662),
- [anon_sym_any] = ACTIONS(220),
- [anon_sym_number] = ACTIONS(220),
- [anon_sym_boolean] = ACTIONS(220),
- [anon_sym_string] = ACTIONS(220),
- [anon_sym_symbol] = ACTIONS(220),
- [anon_sym_object] = ACTIONS(220),
- [anon_sym_abstract] = ACTIONS(666),
- [anon_sym_infer] = ACTIONS(668),
- [anon_sym_keyof] = ACTIONS(670),
- [anon_sym_unique] = ACTIONS(218),
- [anon_sym_unknown] = ACTIONS(220),
- [anon_sym_never] = ACTIONS(220),
- [anon_sym_LBRACE_PIPE] = ACTIONS(222),
- [sym_html_comment] = ACTIONS(5),
- },
- [1015] = {
- [sym_import] = STATE(4753),
- [sym_nested_identifier] = STATE(5707),
- [sym_string] = STATE(2889),
- [sym_formal_parameters] = STATE(5626),
- [sym_nested_type_identifier] = STATE(2828),
- [sym__type_query_member_expression_in_type_annotation] = STATE(3228),
- [sym__type_query_call_expression_in_type_annotation] = STATE(2850),
- [sym_type] = STATE(2859),
- [sym_constructor_type] = STATE(2896),
- [sym_primary_type] = STATE(2897),
- [sym_template_literal_type] = STATE(2885),
- [sym_infer_type] = STATE(2896),
- [sym_conditional_type] = STATE(2885),
- [sym_generic_type] = STATE(2885),
- [sym_type_query] = STATE(2885),
- [sym_index_type_query] = STATE(2885),
- [sym_lookup_type] = STATE(2885),
- [sym_literal_type] = STATE(2885),
- [sym__number] = STATE(2903),
- [sym_existential_type] = STATE(2885),
- [sym_flow_maybe_type] = STATE(2885),
- [sym_parenthesized_type] = STATE(2885),
- [sym_predefined_type] = STATE(2885),
- [sym_object_type] = STATE(2885),
- [sym_type_parameters] = STATE(5517),
- [sym_array_type] = STATE(2885),
- [sym_tuple_type] = STATE(2885),
- [sym_readonly_type] = STATE(2896),
- [sym_union_type] = STATE(2885),
- [sym_intersection_type] = STATE(2885),
- [sym_function_type] = STATE(2896),
- [sym_identifier] = ACTIONS(1496),
- [anon_sym_STAR] = ACTIONS(612),
- [anon_sym_LBRACE] = ACTIONS(1498),
- [anon_sym_typeof] = ACTIONS(1500),
- [anon_sym_import] = ACTIONS(133),
- [anon_sym_const] = ACTIONS(135),
- [anon_sym_LPAREN] = ACTIONS(1502),
- [anon_sym_LBRACK] = ACTIONS(1504),
- [anon_sym_DQUOTE] = ACTIONS(1506),
- [anon_sym_SQUOTE] = ACTIONS(1508),
- [anon_sym_new] = ACTIONS(1572),
- [anon_sym_AMP] = ACTIONS(640),
- [anon_sym_PIPE] = ACTIONS(642),
- [anon_sym_PLUS] = ACTIONS(2579),
- [anon_sym_DASH] = ACTIONS(2579),
- [anon_sym_LT] = ACTIONS(2581),
- [anon_sym_void] = ACTIONS(220),
- [sym_comment] = ACTIONS(5),
- [anon_sym_BQUOTE] = ACTIONS(1516),
- [sym_number] = ACTIONS(1518),
- [sym_this] = ACTIONS(1520),
- [sym_true] = ACTIONS(1522),
- [sym_false] = ACTIONS(1522),
- [sym_null] = ACTIONS(1522),
- [sym_undefined] = ACTIONS(1522),
- [anon_sym_readonly] = ACTIONS(1578),
- [anon_sym_QMARK] = ACTIONS(662),
- [anon_sym_any] = ACTIONS(220),
- [anon_sym_number] = ACTIONS(220),
- [anon_sym_boolean] = ACTIONS(220),
- [anon_sym_string] = ACTIONS(220),
- [anon_sym_symbol] = ACTIONS(220),
- [anon_sym_object] = ACTIONS(220),
- [anon_sym_abstract] = ACTIONS(666),
- [anon_sym_infer] = ACTIONS(668),
- [anon_sym_keyof] = ACTIONS(670),
- [anon_sym_unique] = ACTIONS(218),
- [anon_sym_unknown] = ACTIONS(220),
- [anon_sym_never] = ACTIONS(220),
- [anon_sym_LBRACE_PIPE] = ACTIONS(222),
- [sym_html_comment] = ACTIONS(5),
- },
- [1016] = {
- [sym_import] = STATE(5087),
- [sym_nested_identifier] = STATE(5707),
- [sym_string] = STATE(2889),
- [sym_formal_parameters] = STATE(5709),
- [sym_nested_type_identifier] = STATE(2828),
- [sym__type_query_member_expression_in_type_annotation] = STATE(2846),
- [sym__type_query_call_expression_in_type_annotation] = STATE(2850),
- [sym_type] = STATE(4485),
- [sym_constructor_type] = STATE(2896),
- [sym_primary_type] = STATE(2897),
- [sym_template_literal_type] = STATE(2885),
- [sym_infer_type] = STATE(2896),
- [sym_conditional_type] = STATE(2885),
- [sym_generic_type] = STATE(2885),
- [sym_type_query] = STATE(2885),
- [sym_index_type_query] = STATE(2885),
- [sym_lookup_type] = STATE(2885),
- [sym_literal_type] = STATE(2885),
- [sym__number] = STATE(2903),
- [sym_existential_type] = STATE(2885),
- [sym_flow_maybe_type] = STATE(2885),
- [sym_parenthesized_type] = STATE(2885),
- [sym_predefined_type] = STATE(2885),
- [sym_object_type] = STATE(2885),
- [sym_type_parameters] = STATE(5435),
- [sym_array_type] = STATE(2885),
- [sym_tuple_type] = STATE(2885),
- [sym_readonly_type] = STATE(2896),
- [sym_union_type] = STATE(2885),
- [sym_intersection_type] = STATE(2885),
- [sym_function_type] = STATE(2896),
- [sym_identifier] = ACTIONS(1496),
- [anon_sym_STAR] = ACTIONS(612),
- [anon_sym_LBRACE] = ACTIONS(1498),
- [anon_sym_typeof] = ACTIONS(1500),
- [anon_sym_import] = ACTIONS(133),
- [anon_sym_const] = ACTIONS(135),
- [anon_sym_LPAREN] = ACTIONS(1502),
- [anon_sym_LBRACK] = ACTIONS(1504),
- [anon_sym_DQUOTE] = ACTIONS(1506),
- [anon_sym_SQUOTE] = ACTIONS(1508),
- [anon_sym_new] = ACTIONS(1510),
- [anon_sym_AMP] = ACTIONS(741),
- [anon_sym_PIPE] = ACTIONS(743),
- [anon_sym_PLUS] = ACTIONS(2579),
- [anon_sym_DASH] = ACTIONS(2579),
- [anon_sym_LT] = ACTIONS(2581),
- [anon_sym_void] = ACTIONS(220),
- [sym_comment] = ACTIONS(5),
- [anon_sym_BQUOTE] = ACTIONS(1516),
- [sym_number] = ACTIONS(1518),
- [sym_this] = ACTIONS(1520),
- [sym_true] = ACTIONS(1522),
- [sym_false] = ACTIONS(1522),
- [sym_null] = ACTIONS(1522),
- [sym_undefined] = ACTIONS(1522),
- [anon_sym_readonly] = ACTIONS(1524),
- [anon_sym_QMARK] = ACTIONS(761),
- [anon_sym_any] = ACTIONS(220),
- [anon_sym_number] = ACTIONS(220),
- [anon_sym_boolean] = ACTIONS(220),
- [anon_sym_string] = ACTIONS(220),
- [anon_sym_symbol] = ACTIONS(220),
- [anon_sym_object] = ACTIONS(220),
- [anon_sym_abstract] = ACTIONS(212),
- [anon_sym_infer] = ACTIONS(214),
- [anon_sym_keyof] = ACTIONS(216),
- [anon_sym_unique] = ACTIONS(218),
- [anon_sym_unknown] = ACTIONS(220),
- [anon_sym_never] = ACTIONS(220),
- [anon_sym_LBRACE_PIPE] = ACTIONS(222),
- [sym_html_comment] = ACTIONS(5),
- },
- [1017] = {
- [sym_import] = STATE(4753),
- [sym_nested_identifier] = STATE(5707),
- [sym_string] = STATE(2889),
- [sym_formal_parameters] = STATE(5626),
- [sym_nested_type_identifier] = STATE(2828),
- [sym__type_query_member_expression_in_type_annotation] = STATE(3228),
- [sym__type_query_call_expression_in_type_annotation] = STATE(2850),
- [sym_type] = STATE(2857),
- [sym_constructor_type] = STATE(2896),
- [sym_primary_type] = STATE(2897),
- [sym_template_literal_type] = STATE(2885),
- [sym_infer_type] = STATE(2896),
- [sym_conditional_type] = STATE(2885),
- [sym_generic_type] = STATE(2885),
- [sym_type_query] = STATE(2885),
- [sym_index_type_query] = STATE(2885),
- [sym_lookup_type] = STATE(2885),
- [sym_literal_type] = STATE(2885),
- [sym__number] = STATE(2903),
- [sym_existential_type] = STATE(2885),
- [sym_flow_maybe_type] = STATE(2885),
- [sym_parenthesized_type] = STATE(2885),
- [sym_predefined_type] = STATE(2885),
- [sym_object_type] = STATE(2885),
- [sym_type_parameters] = STATE(5517),
- [sym_array_type] = STATE(2885),
- [sym_tuple_type] = STATE(2885),
- [sym_readonly_type] = STATE(2896),
- [sym_union_type] = STATE(2885),
- [sym_intersection_type] = STATE(2885),
- [sym_function_type] = STATE(2896),
- [sym_identifier] = ACTIONS(1496),
- [anon_sym_STAR] = ACTIONS(612),
- [anon_sym_LBRACE] = ACTIONS(1498),
- [anon_sym_typeof] = ACTIONS(1500),
- [anon_sym_import] = ACTIONS(133),
- [anon_sym_const] = ACTIONS(135),
- [anon_sym_LPAREN] = ACTIONS(1502),
- [anon_sym_LBRACK] = ACTIONS(1504),
- [anon_sym_DQUOTE] = ACTIONS(1506),
- [anon_sym_SQUOTE] = ACTIONS(1508),
- [anon_sym_new] = ACTIONS(1572),
- [anon_sym_AMP] = ACTIONS(640),
- [anon_sym_PIPE] = ACTIONS(642),
- [anon_sym_PLUS] = ACTIONS(2579),
- [anon_sym_DASH] = ACTIONS(2579),
- [anon_sym_LT] = ACTIONS(2581),
- [anon_sym_void] = ACTIONS(220),
- [sym_comment] = ACTIONS(5),
- [anon_sym_BQUOTE] = ACTIONS(1516),
- [sym_number] = ACTIONS(1518),
- [sym_this] = ACTIONS(1520),
- [sym_true] = ACTIONS(1522),
- [sym_false] = ACTIONS(1522),
- [sym_null] = ACTIONS(1522),
- [sym_undefined] = ACTIONS(1522),
- [anon_sym_readonly] = ACTIONS(1578),
- [anon_sym_QMARK] = ACTIONS(662),
- [anon_sym_any] = ACTIONS(220),
- [anon_sym_number] = ACTIONS(220),
- [anon_sym_boolean] = ACTIONS(220),
- [anon_sym_string] = ACTIONS(220),
- [anon_sym_symbol] = ACTIONS(220),
- [anon_sym_object] = ACTIONS(220),
- [anon_sym_abstract] = ACTIONS(666),
- [anon_sym_infer] = ACTIONS(668),
- [anon_sym_keyof] = ACTIONS(670),
- [anon_sym_unique] = ACTIONS(218),
- [anon_sym_unknown] = ACTIONS(220),
- [anon_sym_never] = ACTIONS(220),
- [anon_sym_LBRACE_PIPE] = ACTIONS(222),
- [sym_html_comment] = ACTIONS(5),
- },
- [1018] = {
- [sym_import] = STATE(4753),
- [sym_nested_identifier] = STATE(5707),
- [sym_string] = STATE(2889),
- [sym_formal_parameters] = STATE(5626),
- [sym_nested_type_identifier] = STATE(2828),
- [sym__type_query_member_expression_in_type_annotation] = STATE(3228),
- [sym__type_query_call_expression_in_type_annotation] = STATE(2850),
- [sym_type] = STATE(3666),
- [sym_constructor_type] = STATE(2896),
- [sym_primary_type] = STATE(2897),
- [sym_template_literal_type] = STATE(2885),
- [sym_infer_type] = STATE(2896),
- [sym_conditional_type] = STATE(2885),
- [sym_generic_type] = STATE(2885),
- [sym_type_query] = STATE(2885),
- [sym_index_type_query] = STATE(2885),
- [sym_lookup_type] = STATE(2885),
- [sym_literal_type] = STATE(2885),
- [sym__number] = STATE(2903),
- [sym_existential_type] = STATE(2885),
- [sym_flow_maybe_type] = STATE(2885),
- [sym_parenthesized_type] = STATE(2885),
- [sym_predefined_type] = STATE(2885),
- [sym_object_type] = STATE(2885),
- [sym_type_parameters] = STATE(5517),
- [sym_array_type] = STATE(2885),
- [sym_tuple_type] = STATE(2885),
- [sym_readonly_type] = STATE(2896),
- [sym_union_type] = STATE(2885),
- [sym_intersection_type] = STATE(2885),
- [sym_function_type] = STATE(2896),
- [sym_identifier] = ACTIONS(1496),
- [anon_sym_STAR] = ACTIONS(612),
- [anon_sym_LBRACE] = ACTIONS(1498),
- [anon_sym_typeof] = ACTIONS(1500),
- [anon_sym_import] = ACTIONS(133),
- [anon_sym_const] = ACTIONS(135),
- [anon_sym_LPAREN] = ACTIONS(1502),
- [anon_sym_LBRACK] = ACTIONS(1504),
- [anon_sym_DQUOTE] = ACTIONS(1506),
- [anon_sym_SQUOTE] = ACTIONS(1508),
- [anon_sym_new] = ACTIONS(1572),
- [anon_sym_AMP] = ACTIONS(640),
- [anon_sym_PIPE] = ACTIONS(642),
- [anon_sym_PLUS] = ACTIONS(2579),
- [anon_sym_DASH] = ACTIONS(2579),
- [anon_sym_LT] = ACTIONS(2581),
- [anon_sym_void] = ACTIONS(220),
- [sym_comment] = ACTIONS(5),
- [anon_sym_BQUOTE] = ACTIONS(1516),
- [sym_number] = ACTIONS(1518),
- [sym_this] = ACTIONS(1520),
- [sym_true] = ACTIONS(1522),
- [sym_false] = ACTIONS(1522),
- [sym_null] = ACTIONS(1522),
- [sym_undefined] = ACTIONS(1522),
- [anon_sym_readonly] = ACTIONS(1578),
- [anon_sym_QMARK] = ACTIONS(662),
- [anon_sym_any] = ACTIONS(220),
- [anon_sym_number] = ACTIONS(220),
- [anon_sym_boolean] = ACTIONS(220),
- [anon_sym_string] = ACTIONS(220),
- [anon_sym_symbol] = ACTIONS(220),
- [anon_sym_object] = ACTIONS(220),
- [anon_sym_abstract] = ACTIONS(666),
- [anon_sym_infer] = ACTIONS(668),
- [anon_sym_keyof] = ACTIONS(670),
- [anon_sym_unique] = ACTIONS(218),
- [anon_sym_unknown] = ACTIONS(220),
- [anon_sym_never] = ACTIONS(220),
- [anon_sym_LBRACE_PIPE] = ACTIONS(222),
- [sym_html_comment] = ACTIONS(5),
- },
- [1019] = {
- [sym_import] = STATE(4642),
- [sym_nested_identifier] = STATE(5541),
- [sym_string] = STATE(3272),
- [sym_formal_parameters] = STATE(5632),
- [sym_nested_type_identifier] = STATE(3198),
- [sym__type_query_member_expression_in_type_annotation] = STATE(3138),
- [sym__type_query_call_expression_in_type_annotation] = STATE(3223),
- [sym_type] = STATE(3251),
- [sym_constructor_type] = STATE(3280),
- [sym_primary_type] = STATE(3281),
- [sym_template_literal_type] = STATE(3257),
- [sym_infer_type] = STATE(3280),
- [sym_conditional_type] = STATE(3257),
- [sym_generic_type] = STATE(3257),
- [sym_type_query] = STATE(3257),
- [sym_index_type_query] = STATE(3257),
- [sym_lookup_type] = STATE(3257),
- [sym_literal_type] = STATE(3257),
- [sym__number] = STATE(3285),
- [sym_existential_type] = STATE(3257),
- [sym_flow_maybe_type] = STATE(3257),
- [sym_parenthesized_type] = STATE(3257),
- [sym_predefined_type] = STATE(3257),
- [sym_object_type] = STATE(3257),
- [sym_type_parameters] = STATE(5324),
- [sym_array_type] = STATE(3257),
- [sym_tuple_type] = STATE(3257),
- [sym_readonly_type] = STATE(3280),
- [sym_union_type] = STATE(3257),
- [sym_intersection_type] = STATE(3257),
- [sym_function_type] = STATE(3280),
- [sym_identifier] = ACTIONS(3185),
- [anon_sym_STAR] = ACTIONS(2985),
- [anon_sym_LBRACE] = ACTIONS(2987),
- [anon_sym_typeof] = ACTIONS(2989),
- [anon_sym_import] = ACTIONS(133),
- [anon_sym_const] = ACTIONS(2991),
- [anon_sym_LPAREN] = ACTIONS(2993),
- [anon_sym_LBRACK] = ACTIONS(2995),
- [anon_sym_DQUOTE] = ACTIONS(2997),
- [anon_sym_SQUOTE] = ACTIONS(2999),
- [anon_sym_new] = ACTIONS(3001),
- [anon_sym_AMP] = ACTIONS(3003),
- [anon_sym_PIPE] = ACTIONS(3005),
- [anon_sym_PLUS] = ACTIONS(3007),
- [anon_sym_DASH] = ACTIONS(3007),
- [anon_sym_LT] = ACTIONS(2581),
- [anon_sym_void] = ACTIONS(3009),
- [sym_comment] = ACTIONS(5),
- [anon_sym_BQUOTE] = ACTIONS(3011),
- [sym_number] = ACTIONS(3013),
- [sym_this] = ACTIONS(3187),
- [sym_true] = ACTIONS(3017),
- [sym_false] = ACTIONS(3017),
- [sym_null] = ACTIONS(3017),
- [sym_undefined] = ACTIONS(3017),
- [anon_sym_readonly] = ACTIONS(3019),
- [anon_sym_QMARK] = ACTIONS(3021),
- [anon_sym_any] = ACTIONS(3009),
- [anon_sym_number] = ACTIONS(3009),
- [anon_sym_boolean] = ACTIONS(3009),
- [anon_sym_string] = ACTIONS(3009),
- [anon_sym_symbol] = ACTIONS(3009),
- [anon_sym_object] = ACTIONS(3009),
- [anon_sym_abstract] = ACTIONS(3023),
- [anon_sym_infer] = ACTIONS(3027),
- [anon_sym_keyof] = ACTIONS(3029),
- [anon_sym_unique] = ACTIONS(3031),
- [anon_sym_unknown] = ACTIONS(3009),
- [anon_sym_never] = ACTIONS(3009),
- [anon_sym_LBRACE_PIPE] = ACTIONS(3033),
- [sym_html_comment] = ACTIONS(5),
- },
- [1020] = {
- [sym_import] = STATE(4642),
- [sym_nested_identifier] = STATE(5541),
- [sym_string] = STATE(3272),
- [sym_formal_parameters] = STATE(5632),
- [sym_nested_type_identifier] = STATE(3198),
- [sym__type_query_member_expression_in_type_annotation] = STATE(3138),
- [sym__type_query_call_expression_in_type_annotation] = STATE(3223),
- [sym_type] = STATE(3260),
- [sym_constructor_type] = STATE(3280),
- [sym_primary_type] = STATE(3281),
- [sym_template_literal_type] = STATE(3257),
- [sym_infer_type] = STATE(3280),
- [sym_conditional_type] = STATE(3257),
- [sym_generic_type] = STATE(3257),
- [sym_type_query] = STATE(3257),
- [sym_index_type_query] = STATE(3257),
- [sym_lookup_type] = STATE(3257),
- [sym_literal_type] = STATE(3257),
- [sym__number] = STATE(3285),
- [sym_existential_type] = STATE(3257),
- [sym_flow_maybe_type] = STATE(3257),
- [sym_parenthesized_type] = STATE(3257),
- [sym_predefined_type] = STATE(3257),
- [sym_object_type] = STATE(3257),
- [sym_type_parameters] = STATE(5324),
- [sym_array_type] = STATE(3257),
- [sym_tuple_type] = STATE(3257),
- [sym_readonly_type] = STATE(3280),
- [sym_union_type] = STATE(3257),
- [sym_intersection_type] = STATE(3257),
- [sym_function_type] = STATE(3280),
- [sym_identifier] = ACTIONS(3185),
- [anon_sym_STAR] = ACTIONS(2985),
- [anon_sym_LBRACE] = ACTIONS(2987),
- [anon_sym_typeof] = ACTIONS(2989),
- [anon_sym_import] = ACTIONS(133),
- [anon_sym_const] = ACTIONS(2991),
- [anon_sym_LPAREN] = ACTIONS(2993),
- [anon_sym_LBRACK] = ACTIONS(2995),
- [anon_sym_DQUOTE] = ACTIONS(2997),
- [anon_sym_SQUOTE] = ACTIONS(2999),
- [anon_sym_new] = ACTIONS(3001),
- [anon_sym_AMP] = ACTIONS(3003),
- [anon_sym_PIPE] = ACTIONS(3005),
- [anon_sym_PLUS] = ACTIONS(3007),
- [anon_sym_DASH] = ACTIONS(3007),
- [anon_sym_LT] = ACTIONS(2581),
- [anon_sym_void] = ACTIONS(3009),
- [sym_comment] = ACTIONS(5),
- [anon_sym_BQUOTE] = ACTIONS(3011),
- [sym_number] = ACTIONS(3013),
- [sym_this] = ACTIONS(3187),
- [sym_true] = ACTIONS(3017),
- [sym_false] = ACTIONS(3017),
- [sym_null] = ACTIONS(3017),
- [sym_undefined] = ACTIONS(3017),
- [anon_sym_readonly] = ACTIONS(3019),
- [anon_sym_QMARK] = ACTIONS(3021),
- [anon_sym_any] = ACTIONS(3009),
- [anon_sym_number] = ACTIONS(3009),
- [anon_sym_boolean] = ACTIONS(3009),
- [anon_sym_string] = ACTIONS(3009),
- [anon_sym_symbol] = ACTIONS(3009),
- [anon_sym_object] = ACTIONS(3009),
- [anon_sym_abstract] = ACTIONS(3023),
- [anon_sym_infer] = ACTIONS(3027),
- [anon_sym_keyof] = ACTIONS(3029),
- [anon_sym_unique] = ACTIONS(3031),
- [anon_sym_unknown] = ACTIONS(3009),
- [anon_sym_never] = ACTIONS(3009),
- [anon_sym_LBRACE_PIPE] = ACTIONS(3033),
- [sym_html_comment] = ACTIONS(5),
- },
- [1021] = {
- [sym_import] = STATE(5087),
- [sym_nested_identifier] = STATE(5707),
- [sym_string] = STATE(2889),
- [sym_formal_parameters] = STATE(5709),
- [sym_nested_type_identifier] = STATE(2828),
- [sym__type_query_member_expression_in_type_annotation] = STATE(2846),
- [sym__type_query_call_expression_in_type_annotation] = STATE(2850),
- [sym_type] = STATE(3889),
- [sym_constructor_type] = STATE(2896),
- [sym_primary_type] = STATE(2897),
- [sym_template_literal_type] = STATE(2885),
- [sym_infer_type] = STATE(2896),
- [sym_conditional_type] = STATE(2885),
- [sym_generic_type] = STATE(2885),
- [sym_type_query] = STATE(2885),
- [sym_index_type_query] = STATE(2885),
- [sym_lookup_type] = STATE(2885),
- [sym_literal_type] = STATE(2885),
- [sym__number] = STATE(2903),
- [sym_existential_type] = STATE(2885),
- [sym_flow_maybe_type] = STATE(2885),
- [sym_parenthesized_type] = STATE(2885),
- [sym_predefined_type] = STATE(2885),
- [sym_object_type] = STATE(2885),
- [sym_type_parameters] = STATE(5435),
- [sym_array_type] = STATE(2885),
- [sym_tuple_type] = STATE(2885),
- [sym_readonly_type] = STATE(2896),
- [sym_union_type] = STATE(2885),
- [sym_intersection_type] = STATE(2885),
- [sym_function_type] = STATE(2896),
- [sym_identifier] = ACTIONS(1496),
- [anon_sym_STAR] = ACTIONS(612),
- [anon_sym_LBRACE] = ACTIONS(1498),
- [anon_sym_typeof] = ACTIONS(1500),
- [anon_sym_import] = ACTIONS(133),
- [anon_sym_const] = ACTIONS(135),
- [anon_sym_LPAREN] = ACTIONS(1502),
- [anon_sym_LBRACK] = ACTIONS(1504),
- [anon_sym_DQUOTE] = ACTIONS(1506),
- [anon_sym_SQUOTE] = ACTIONS(1508),
- [anon_sym_new] = ACTIONS(1510),
- [anon_sym_AMP] = ACTIONS(741),
- [anon_sym_PIPE] = ACTIONS(743),
- [anon_sym_PLUS] = ACTIONS(2579),
- [anon_sym_DASH] = ACTIONS(2579),
- [anon_sym_LT] = ACTIONS(2581),
- [anon_sym_void] = ACTIONS(220),
- [sym_comment] = ACTIONS(5),
- [anon_sym_BQUOTE] = ACTIONS(1516),
- [sym_number] = ACTIONS(1518),
- [sym_this] = ACTIONS(1520),
- [sym_true] = ACTIONS(1522),
- [sym_false] = ACTIONS(1522),
- [sym_null] = ACTIONS(1522),
- [sym_undefined] = ACTIONS(1522),
- [anon_sym_readonly] = ACTIONS(1524),
- [anon_sym_QMARK] = ACTIONS(761),
- [anon_sym_any] = ACTIONS(220),
- [anon_sym_number] = ACTIONS(220),
- [anon_sym_boolean] = ACTIONS(220),
- [anon_sym_string] = ACTIONS(220),
- [anon_sym_symbol] = ACTIONS(220),
- [anon_sym_object] = ACTIONS(220),
- [anon_sym_abstract] = ACTIONS(212),
- [anon_sym_infer] = ACTIONS(214),
- [anon_sym_keyof] = ACTIONS(216),
- [anon_sym_unique] = ACTIONS(218),
- [anon_sym_unknown] = ACTIONS(220),
- [anon_sym_never] = ACTIONS(220),
- [anon_sym_LBRACE_PIPE] = ACTIONS(222),
- [sym_html_comment] = ACTIONS(5),
- },
- [1022] = {
- [sym_import] = STATE(4642),
- [sym_nested_identifier] = STATE(5541),
- [sym_string] = STATE(3272),
- [sym_formal_parameters] = STATE(5632),
- [sym_nested_type_identifier] = STATE(3198),
- [sym__type_query_member_expression_in_type_annotation] = STATE(3138),
- [sym__type_query_call_expression_in_type_annotation] = STATE(3223),
- [sym_type] = STATE(3268),
- [sym_constructor_type] = STATE(3280),
- [sym_primary_type] = STATE(3281),
- [sym_template_literal_type] = STATE(3257),
- [sym_infer_type] = STATE(3280),
- [sym_conditional_type] = STATE(3257),
- [sym_generic_type] = STATE(3257),
- [sym_type_query] = STATE(3257),
- [sym_index_type_query] = STATE(3257),
- [sym_lookup_type] = STATE(3257),
- [sym_literal_type] = STATE(3257),
- [sym__number] = STATE(3285),
- [sym_existential_type] = STATE(3257),
- [sym_flow_maybe_type] = STATE(3257),
- [sym_parenthesized_type] = STATE(3257),
- [sym_predefined_type] = STATE(3257),
- [sym_object_type] = STATE(3257),
- [sym_type_parameters] = STATE(5324),
- [sym_array_type] = STATE(3257),
- [sym_tuple_type] = STATE(3257),
- [sym_readonly_type] = STATE(3280),
- [sym_union_type] = STATE(3257),
- [sym_intersection_type] = STATE(3257),
- [sym_function_type] = STATE(3280),
- [sym_identifier] = ACTIONS(3185),
- [anon_sym_STAR] = ACTIONS(2985),
- [anon_sym_LBRACE] = ACTIONS(2987),
- [anon_sym_typeof] = ACTIONS(2989),
- [anon_sym_import] = ACTIONS(133),
- [anon_sym_const] = ACTIONS(2991),
- [anon_sym_LPAREN] = ACTIONS(2993),
- [anon_sym_LBRACK] = ACTIONS(2995),
- [anon_sym_DQUOTE] = ACTIONS(2997),
- [anon_sym_SQUOTE] = ACTIONS(2999),
- [anon_sym_new] = ACTIONS(3001),
- [anon_sym_AMP] = ACTIONS(3003),
- [anon_sym_PIPE] = ACTIONS(3005),
- [anon_sym_PLUS] = ACTIONS(3007),
- [anon_sym_DASH] = ACTIONS(3007),
- [anon_sym_LT] = ACTIONS(2581),
- [anon_sym_void] = ACTIONS(3009),
- [sym_comment] = ACTIONS(5),
- [anon_sym_BQUOTE] = ACTIONS(3011),
- [sym_number] = ACTIONS(3013),
- [sym_this] = ACTIONS(3187),
- [sym_true] = ACTIONS(3017),
- [sym_false] = ACTIONS(3017),
- [sym_null] = ACTIONS(3017),
- [sym_undefined] = ACTIONS(3017),
- [anon_sym_readonly] = ACTIONS(3019),
- [anon_sym_QMARK] = ACTIONS(3021),
- [anon_sym_any] = ACTIONS(3009),
- [anon_sym_number] = ACTIONS(3009),
- [anon_sym_boolean] = ACTIONS(3009),
- [anon_sym_string] = ACTIONS(3009),
- [anon_sym_symbol] = ACTIONS(3009),
- [anon_sym_object] = ACTIONS(3009),
- [anon_sym_abstract] = ACTIONS(3023),
- [anon_sym_infer] = ACTIONS(3027),
- [anon_sym_keyof] = ACTIONS(3029),
- [anon_sym_unique] = ACTIONS(3031),
- [anon_sym_unknown] = ACTIONS(3009),
- [anon_sym_never] = ACTIONS(3009),
- [anon_sym_LBRACE_PIPE] = ACTIONS(3033),
- [sym_html_comment] = ACTIONS(5),
- },
- [1023] = {
- [sym_import] = STATE(4642),
- [sym_nested_identifier] = STATE(5541),
- [sym_string] = STATE(3272),
- [sym_formal_parameters] = STATE(5632),
- [sym_nested_type_identifier] = STATE(3198),
- [sym__type_query_member_expression_in_type_annotation] = STATE(3138),
- [sym__type_query_call_expression_in_type_annotation] = STATE(3223),
- [sym_type] = STATE(3269),
- [sym_constructor_type] = STATE(3280),
- [sym_primary_type] = STATE(3281),
- [sym_template_literal_type] = STATE(3257),
- [sym_infer_type] = STATE(3280),
- [sym_conditional_type] = STATE(3257),
- [sym_generic_type] = STATE(3257),
- [sym_type_query] = STATE(3257),
- [sym_index_type_query] = STATE(3257),
- [sym_lookup_type] = STATE(3257),
- [sym_literal_type] = STATE(3257),
- [sym__number] = STATE(3285),
- [sym_existential_type] = STATE(3257),
- [sym_flow_maybe_type] = STATE(3257),
- [sym_parenthesized_type] = STATE(3257),
- [sym_predefined_type] = STATE(3257),
- [sym_object_type] = STATE(3257),
- [sym_type_parameters] = STATE(5324),
- [sym_array_type] = STATE(3257),
- [sym_tuple_type] = STATE(3257),
- [sym_readonly_type] = STATE(3280),
- [sym_union_type] = STATE(3257),
- [sym_intersection_type] = STATE(3257),
- [sym_function_type] = STATE(3280),
- [sym_identifier] = ACTIONS(3185),
- [anon_sym_STAR] = ACTIONS(2985),
- [anon_sym_LBRACE] = ACTIONS(2987),
- [anon_sym_typeof] = ACTIONS(2989),
- [anon_sym_import] = ACTIONS(133),
- [anon_sym_const] = ACTIONS(2991),
- [anon_sym_LPAREN] = ACTIONS(2993),
- [anon_sym_LBRACK] = ACTIONS(2995),
- [anon_sym_DQUOTE] = ACTIONS(2997),
- [anon_sym_SQUOTE] = ACTIONS(2999),
- [anon_sym_new] = ACTIONS(3001),
- [anon_sym_AMP] = ACTIONS(3003),
- [anon_sym_PIPE] = ACTIONS(3005),
- [anon_sym_PLUS] = ACTIONS(3007),
- [anon_sym_DASH] = ACTIONS(3007),
- [anon_sym_LT] = ACTIONS(2581),
- [anon_sym_void] = ACTIONS(3009),
- [sym_comment] = ACTIONS(5),
- [anon_sym_BQUOTE] = ACTIONS(3011),
- [sym_number] = ACTIONS(3013),
- [sym_this] = ACTIONS(3187),
- [sym_true] = ACTIONS(3017),
- [sym_false] = ACTIONS(3017),
- [sym_null] = ACTIONS(3017),
- [sym_undefined] = ACTIONS(3017),
- [anon_sym_readonly] = ACTIONS(3019),
- [anon_sym_QMARK] = ACTIONS(3021),
- [anon_sym_any] = ACTIONS(3009),
- [anon_sym_number] = ACTIONS(3009),
- [anon_sym_boolean] = ACTIONS(3009),
- [anon_sym_string] = ACTIONS(3009),
- [anon_sym_symbol] = ACTIONS(3009),
- [anon_sym_object] = ACTIONS(3009),
- [anon_sym_abstract] = ACTIONS(3023),
- [anon_sym_infer] = ACTIONS(3027),
- [anon_sym_keyof] = ACTIONS(3029),
- [anon_sym_unique] = ACTIONS(3031),
- [anon_sym_unknown] = ACTIONS(3009),
- [anon_sym_never] = ACTIONS(3009),
- [anon_sym_LBRACE_PIPE] = ACTIONS(3033),
- [sym_html_comment] = ACTIONS(5),
- },
- [1024] = {
- [sym_import] = STATE(4642),
- [sym_nested_identifier] = STATE(5541),
- [sym_string] = STATE(3272),
- [sym_formal_parameters] = STATE(5632),
- [sym_nested_type_identifier] = STATE(3198),
- [sym__type_query_member_expression_in_type_annotation] = STATE(3138),
- [sym__type_query_call_expression_in_type_annotation] = STATE(3223),
- [sym_type] = STATE(3282),
- [sym_constructor_type] = STATE(3280),
- [sym_primary_type] = STATE(3281),
- [sym_template_literal_type] = STATE(3257),
- [sym_infer_type] = STATE(3280),
- [sym_conditional_type] = STATE(3257),
- [sym_generic_type] = STATE(3257),
- [sym_type_query] = STATE(3257),
- [sym_index_type_query] = STATE(3257),
- [sym_lookup_type] = STATE(3257),
- [sym_literal_type] = STATE(3257),
- [sym__number] = STATE(3285),
- [sym_existential_type] = STATE(3257),
- [sym_flow_maybe_type] = STATE(3257),
- [sym_parenthesized_type] = STATE(3257),
- [sym_predefined_type] = STATE(3257),
- [sym_object_type] = STATE(3257),
- [sym_type_parameters] = STATE(5324),
- [sym_array_type] = STATE(3257),
- [sym_tuple_type] = STATE(3257),
- [sym_readonly_type] = STATE(3280),
- [sym_union_type] = STATE(3257),
- [sym_intersection_type] = STATE(3257),
- [sym_function_type] = STATE(3280),
- [sym_identifier] = ACTIONS(3185),
- [anon_sym_STAR] = ACTIONS(2985),
- [anon_sym_LBRACE] = ACTIONS(2987),
- [anon_sym_typeof] = ACTIONS(2989),
- [anon_sym_import] = ACTIONS(133),
- [anon_sym_const] = ACTIONS(2991),
- [anon_sym_LPAREN] = ACTIONS(2993),
- [anon_sym_LBRACK] = ACTIONS(2995),
- [anon_sym_DQUOTE] = ACTIONS(2997),
- [anon_sym_SQUOTE] = ACTIONS(2999),
- [anon_sym_new] = ACTIONS(3001),
- [anon_sym_AMP] = ACTIONS(3003),
- [anon_sym_PIPE] = ACTIONS(3005),
- [anon_sym_PLUS] = ACTIONS(3007),
- [anon_sym_DASH] = ACTIONS(3007),
- [anon_sym_LT] = ACTIONS(2581),
- [anon_sym_void] = ACTIONS(3009),
- [sym_comment] = ACTIONS(5),
- [anon_sym_BQUOTE] = ACTIONS(3011),
- [sym_number] = ACTIONS(3013),
- [sym_this] = ACTIONS(3187),
- [sym_true] = ACTIONS(3017),
- [sym_false] = ACTIONS(3017),
- [sym_null] = ACTIONS(3017),
- [sym_undefined] = ACTIONS(3017),
- [anon_sym_readonly] = ACTIONS(3019),
- [anon_sym_QMARK] = ACTIONS(3021),
- [anon_sym_any] = ACTIONS(3009),
- [anon_sym_number] = ACTIONS(3009),
- [anon_sym_boolean] = ACTIONS(3009),
- [anon_sym_string] = ACTIONS(3009),
- [anon_sym_symbol] = ACTIONS(3009),
- [anon_sym_object] = ACTIONS(3009),
- [anon_sym_abstract] = ACTIONS(3023),
- [anon_sym_infer] = ACTIONS(3027),
- [anon_sym_keyof] = ACTIONS(3029),
- [anon_sym_unique] = ACTIONS(3031),
- [anon_sym_unknown] = ACTIONS(3009),
- [anon_sym_never] = ACTIONS(3009),
- [anon_sym_LBRACE_PIPE] = ACTIONS(3033),
- [sym_html_comment] = ACTIONS(5),
- },
- [1025] = {
- [sym_import] = STATE(4903),
- [sym_nested_identifier] = STATE(5707),
- [sym_string] = STATE(2889),
- [sym_formal_parameters] = STATE(5916),
- [sym_nested_type_identifier] = STATE(2828),
- [sym__type_query_member_expression_in_type_annotation] = STATE(3332),
- [sym__type_query_call_expression_in_type_annotation] = STATE(2850),
- [sym_type] = STATE(3782),
- [sym_constructor_type] = STATE(2896),
- [sym_primary_type] = STATE(2897),
- [sym_template_literal_type] = STATE(2885),
- [sym_infer_type] = STATE(2896),
- [sym_conditional_type] = STATE(2885),
- [sym_generic_type] = STATE(2885),
- [sym_type_query] = STATE(2885),
- [sym_index_type_query] = STATE(2885),
- [sym_lookup_type] = STATE(2885),
- [sym_literal_type] = STATE(2885),
- [sym__number] = STATE(2903),
- [sym_existential_type] = STATE(2885),
- [sym_flow_maybe_type] = STATE(2885),
- [sym_parenthesized_type] = STATE(2885),
- [sym_predefined_type] = STATE(2885),
- [sym_object_type] = STATE(2885),
- [sym_type_parameters] = STATE(5386),
- [sym_array_type] = STATE(2885),
- [sym_tuple_type] = STATE(2885),
- [sym_readonly_type] = STATE(2896),
- [sym_union_type] = STATE(2885),
- [sym_intersection_type] = STATE(2885),
- [sym_function_type] = STATE(2896),
- [sym_identifier] = ACTIONS(1496),
- [anon_sym_STAR] = ACTIONS(612),
- [anon_sym_LBRACE] = ACTIONS(3043),
- [anon_sym_typeof] = ACTIONS(3045),
- [anon_sym_import] = ACTIONS(133),
- [anon_sym_const] = ACTIONS(135),
- [anon_sym_LPAREN] = ACTIONS(1502),
- [anon_sym_LBRACK] = ACTIONS(1504),
- [anon_sym_DQUOTE] = ACTIONS(2275),
- [anon_sym_SQUOTE] = ACTIONS(2277),
- [anon_sym_new] = ACTIONS(3047),
- [anon_sym_AMP] = ACTIONS(3049),
- [anon_sym_PIPE] = ACTIONS(3051),
- [anon_sym_PLUS] = ACTIONS(2579),
- [anon_sym_DASH] = ACTIONS(2579),
- [anon_sym_LT] = ACTIONS(2581),
- [anon_sym_void] = ACTIONS(220),
- [sym_comment] = ACTIONS(5),
- [anon_sym_BQUOTE] = ACTIONS(1516),
- [sym_number] = ACTIONS(1518),
- [sym_this] = ACTIONS(1520),
- [sym_true] = ACTIONS(1522),
- [sym_false] = ACTIONS(1522),
- [sym_null] = ACTIONS(1522),
- [sym_undefined] = ACTIONS(1522),
- [anon_sym_readonly] = ACTIONS(3055),
- [anon_sym_QMARK] = ACTIONS(3057),
- [anon_sym_any] = ACTIONS(220),
- [anon_sym_number] = ACTIONS(220),
- [anon_sym_boolean] = ACTIONS(220),
- [anon_sym_string] = ACTIONS(220),
- [anon_sym_symbol] = ACTIONS(220),
- [anon_sym_object] = ACTIONS(220),
- [anon_sym_abstract] = ACTIONS(3059),
- [anon_sym_infer] = ACTIONS(3063),
- [anon_sym_keyof] = ACTIONS(3065),
- [anon_sym_unique] = ACTIONS(218),
- [anon_sym_unknown] = ACTIONS(220),
- [anon_sym_never] = ACTIONS(220),
- [anon_sym_LBRACE_PIPE] = ACTIONS(3067),
- [sym_html_comment] = ACTIONS(5),
- },
- [1026] = {
- [sym_import] = STATE(5139),
- [sym_nested_identifier] = STATE(5610),
- [sym_string] = STATE(3160),
- [sym_formal_parameters] = STATE(5827),
- [sym_nested_type_identifier] = STATE(3047),
- [sym__type_query_member_expression_in_type_annotation] = STATE(2958),
- [sym__type_query_call_expression_in_type_annotation] = STATE(3113),
- [sym_type] = STATE(3469),
- [sym_constructor_type] = STATE(3205),
- [sym_primary_type] = STATE(3150),
- [sym_template_literal_type] = STATE(3195),
- [sym_infer_type] = STATE(3205),
- [sym_conditional_type] = STATE(3195),
- [sym_generic_type] = STATE(3195),
- [sym_type_query] = STATE(3195),
- [sym_index_type_query] = STATE(3195),
- [sym_lookup_type] = STATE(3195),
- [sym_literal_type] = STATE(3195),
- [sym__number] = STATE(3154),
- [sym_existential_type] = STATE(3195),
- [sym_flow_maybe_type] = STATE(3195),
- [sym_parenthesized_type] = STATE(3195),
- [sym_predefined_type] = STATE(3195),
- [sym_object_type] = STATE(3195),
- [sym_type_parameters] = STATE(5228),
- [sym_array_type] = STATE(3195),
- [sym_tuple_type] = STATE(3195),
- [sym_readonly_type] = STATE(3205),
- [sym_union_type] = STATE(3195),
- [sym_intersection_type] = STATE(3195),
- [sym_function_type] = STATE(3205),
- [sym_identifier] = ACTIONS(1582),
- [anon_sym_STAR] = ACTIONS(992),
- [anon_sym_LBRACE] = ACTIONS(1586),
- [anon_sym_typeof] = ACTIONS(1588),
- [anon_sym_import] = ACTIONS(133),
- [anon_sym_const] = ACTIONS(998),
- [anon_sym_LPAREN] = ACTIONS(1590),
- [anon_sym_LBRACK] = ACTIONS(1592),
- [anon_sym_DQUOTE] = ACTIONS(1594),
- [anon_sym_SQUOTE] = ACTIONS(1596),
- [anon_sym_new] = ACTIONS(1598),
- [anon_sym_AMP] = ACTIONS(1006),
- [anon_sym_PIPE] = ACTIONS(1008),
- [anon_sym_PLUS] = ACTIONS(2977),
- [anon_sym_DASH] = ACTIONS(2977),
- [anon_sym_LT] = ACTIONS(2581),
- [anon_sym_void] = ACTIONS(1038),
- [sym_comment] = ACTIONS(5),
- [anon_sym_BQUOTE] = ACTIONS(1606),
- [sym_number] = ACTIONS(1608),
- [sym_this] = ACTIONS(1610),
- [sym_true] = ACTIONS(1612),
- [sym_false] = ACTIONS(1612),
- [sym_null] = ACTIONS(1612),
- [sym_undefined] = ACTIONS(1612),
- [anon_sym_readonly] = ACTIONS(1614),
- [anon_sym_QMARK] = ACTIONS(1026),
- [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_object] = ACTIONS(1038),
- [anon_sym_abstract] = ACTIONS(1030),
- [anon_sym_infer] = ACTIONS(1032),
- [anon_sym_keyof] = ACTIONS(1034),
- [anon_sym_unique] = ACTIONS(1036),
- [anon_sym_unknown] = ACTIONS(1038),
- [anon_sym_never] = ACTIONS(1038),
- [anon_sym_LBRACE_PIPE] = ACTIONS(1040),
- [sym_html_comment] = ACTIONS(5),
- },
- [1027] = {
- [sym_import] = STATE(5139),
- [sym_nested_identifier] = STATE(5610),
- [sym_string] = STATE(3160),
- [sym_formal_parameters] = STATE(5827),
- [sym_nested_type_identifier] = STATE(3047),
- [sym__type_query_member_expression_in_type_annotation] = STATE(2958),
- [sym__type_query_call_expression_in_type_annotation] = STATE(3113),
- [sym_type] = STATE(3456),
- [sym_constructor_type] = STATE(3205),
- [sym_primary_type] = STATE(3150),
- [sym_template_literal_type] = STATE(3195),
- [sym_infer_type] = STATE(3205),
- [sym_conditional_type] = STATE(3195),
- [sym_generic_type] = STATE(3195),
- [sym_type_query] = STATE(3195),
- [sym_index_type_query] = STATE(3195),
- [sym_lookup_type] = STATE(3195),
- [sym_literal_type] = STATE(3195),
- [sym__number] = STATE(3154),
- [sym_existential_type] = STATE(3195),
- [sym_flow_maybe_type] = STATE(3195),
- [sym_parenthesized_type] = STATE(3195),
- [sym_predefined_type] = STATE(3195),
- [sym_object_type] = STATE(3195),
- [sym_type_parameters] = STATE(5228),
- [sym_array_type] = STATE(3195),
- [sym_tuple_type] = STATE(3195),
- [sym_readonly_type] = STATE(3205),
- [sym_union_type] = STATE(3195),
- [sym_intersection_type] = STATE(3195),
- [sym_function_type] = STATE(3205),
- [sym_identifier] = ACTIONS(1582),
- [anon_sym_STAR] = ACTIONS(992),
- [anon_sym_LBRACE] = ACTIONS(1586),
- [anon_sym_typeof] = ACTIONS(1588),
- [anon_sym_import] = ACTIONS(133),
- [anon_sym_const] = ACTIONS(998),
- [anon_sym_LPAREN] = ACTIONS(1590),
- [anon_sym_LBRACK] = ACTIONS(1592),
- [anon_sym_DQUOTE] = ACTIONS(1594),
- [anon_sym_SQUOTE] = ACTIONS(1596),
- [anon_sym_new] = ACTIONS(1598),
- [anon_sym_AMP] = ACTIONS(1006),
- [anon_sym_PIPE] = ACTIONS(1008),
- [anon_sym_PLUS] = ACTIONS(2977),
- [anon_sym_DASH] = ACTIONS(2977),
- [anon_sym_LT] = ACTIONS(2581),
- [anon_sym_void] = ACTIONS(1038),
- [sym_comment] = ACTIONS(5),
- [anon_sym_BQUOTE] = ACTIONS(1606),
- [sym_number] = ACTIONS(1608),
- [sym_this] = ACTIONS(1610),
- [sym_true] = ACTIONS(1612),
- [sym_false] = ACTIONS(1612),
- [sym_null] = ACTIONS(1612),
- [sym_undefined] = ACTIONS(1612),
- [anon_sym_readonly] = ACTIONS(1614),
- [anon_sym_QMARK] = ACTIONS(1026),
- [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_object] = ACTIONS(1038),
- [anon_sym_abstract] = ACTIONS(1030),
- [anon_sym_infer] = ACTIONS(1032),
- [anon_sym_keyof] = ACTIONS(1034),
- [anon_sym_unique] = ACTIONS(1036),
- [anon_sym_unknown] = ACTIONS(1038),
- [anon_sym_never] = ACTIONS(1038),
- [anon_sym_LBRACE_PIPE] = ACTIONS(1040),
- [sym_html_comment] = ACTIONS(5),
- },
- [1028] = {
- [sym_import] = STATE(5139),
- [sym_nested_identifier] = STATE(5610),
- [sym_string] = STATE(3160),
- [sym_formal_parameters] = STATE(5827),
- [sym_nested_type_identifier] = STATE(3047),
- [sym__type_query_member_expression_in_type_annotation] = STATE(2958),
- [sym__type_query_call_expression_in_type_annotation] = STATE(3113),
- [sym_type] = STATE(3475),
- [sym_constructor_type] = STATE(3205),
- [sym_primary_type] = STATE(3150),
- [sym_template_literal_type] = STATE(3195),
- [sym_infer_type] = STATE(3205),
- [sym_conditional_type] = STATE(3195),
- [sym_generic_type] = STATE(3195),
- [sym_type_query] = STATE(3195),
- [sym_index_type_query] = STATE(3195),
- [sym_lookup_type] = STATE(3195),
- [sym_literal_type] = STATE(3195),
- [sym__number] = STATE(3154),
- [sym_existential_type] = STATE(3195),
- [sym_flow_maybe_type] = STATE(3195),
- [sym_parenthesized_type] = STATE(3195),
- [sym_predefined_type] = STATE(3195),
- [sym_object_type] = STATE(3195),
- [sym_type_parameters] = STATE(5228),
- [sym_array_type] = STATE(3195),
- [sym_tuple_type] = STATE(3195),
- [sym_readonly_type] = STATE(3205),
- [sym_union_type] = STATE(3195),
- [sym_intersection_type] = STATE(3195),
- [sym_function_type] = STATE(3205),
- [sym_identifier] = ACTIONS(1582),
- [anon_sym_STAR] = ACTIONS(992),
- [anon_sym_LBRACE] = ACTIONS(1586),
- [anon_sym_typeof] = ACTIONS(1588),
- [anon_sym_import] = ACTIONS(133),
- [anon_sym_const] = ACTIONS(998),
- [anon_sym_LPAREN] = ACTIONS(1590),
- [anon_sym_LBRACK] = ACTIONS(1592),
- [anon_sym_DQUOTE] = ACTIONS(1594),
- [anon_sym_SQUOTE] = ACTIONS(1596),
- [anon_sym_new] = ACTIONS(1598),
- [anon_sym_AMP] = ACTIONS(1006),
- [anon_sym_PIPE] = ACTIONS(1008),
- [anon_sym_PLUS] = ACTIONS(2977),
- [anon_sym_DASH] = ACTIONS(2977),
- [anon_sym_LT] = ACTIONS(2581),
- [anon_sym_void] = ACTIONS(1038),
- [sym_comment] = ACTIONS(5),
- [anon_sym_BQUOTE] = ACTIONS(1606),
- [sym_number] = ACTIONS(1608),
- [sym_this] = ACTIONS(1610),
- [sym_true] = ACTIONS(1612),
- [sym_false] = ACTIONS(1612),
- [sym_null] = ACTIONS(1612),
- [sym_undefined] = ACTIONS(1612),
- [anon_sym_readonly] = ACTIONS(1614),
- [anon_sym_QMARK] = ACTIONS(1026),
- [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_object] = ACTIONS(1038),
- [anon_sym_abstract] = ACTIONS(1030),
- [anon_sym_infer] = ACTIONS(1032),
- [anon_sym_keyof] = ACTIONS(1034),
- [anon_sym_unique] = ACTIONS(1036),
- [anon_sym_unknown] = ACTIONS(1038),
- [anon_sym_never] = ACTIONS(1038),
- [anon_sym_LBRACE_PIPE] = ACTIONS(1040),
- [sym_html_comment] = ACTIONS(5),
- },
- [1029] = {
- [sym_import] = STATE(5087),
- [sym_nested_identifier] = STATE(5707),
- [sym_string] = STATE(2889),
- [sym_formal_parameters] = STATE(5709),
- [sym_nested_type_identifier] = STATE(2828),
- [sym__type_query_member_expression_in_type_annotation] = STATE(2846),
- [sym__type_query_call_expression_in_type_annotation] = STATE(2850),
- [sym_type] = STATE(4466),
- [sym_constructor_type] = STATE(2896),
- [sym_primary_type] = STATE(2897),
- [sym_template_literal_type] = STATE(2885),
- [sym_infer_type] = STATE(2896),
- [sym_conditional_type] = STATE(2885),
- [sym_generic_type] = STATE(2885),
- [sym_type_query] = STATE(2885),
- [sym_index_type_query] = STATE(2885),
- [sym_lookup_type] = STATE(2885),
- [sym_literal_type] = STATE(2885),
- [sym__number] = STATE(2903),
- [sym_existential_type] = STATE(2885),
- [sym_flow_maybe_type] = STATE(2885),
- [sym_parenthesized_type] = STATE(2885),
- [sym_predefined_type] = STATE(2885),
- [sym_object_type] = STATE(2885),
- [sym_type_parameters] = STATE(5435),
- [sym_array_type] = STATE(2885),
- [sym_tuple_type] = STATE(2885),
- [sym_readonly_type] = STATE(2896),
- [sym_union_type] = STATE(2885),
- [sym_intersection_type] = STATE(2885),
- [sym_function_type] = STATE(2896),
- [sym_identifier] = ACTIONS(1496),
- [anon_sym_STAR] = ACTIONS(612),
- [anon_sym_LBRACE] = ACTIONS(1498),
- [anon_sym_typeof] = ACTIONS(1500),
- [anon_sym_import] = ACTIONS(133),
- [anon_sym_const] = ACTIONS(135),
- [anon_sym_LPAREN] = ACTIONS(1502),
- [anon_sym_LBRACK] = ACTIONS(1504),
- [anon_sym_DQUOTE] = ACTIONS(1506),
- [anon_sym_SQUOTE] = ACTIONS(1508),
- [anon_sym_new] = ACTIONS(1510),
- [anon_sym_AMP] = ACTIONS(741),
- [anon_sym_PIPE] = ACTIONS(743),
- [anon_sym_PLUS] = ACTIONS(2579),
- [anon_sym_DASH] = ACTIONS(2579),
- [anon_sym_LT] = ACTIONS(2581),
- [anon_sym_void] = ACTIONS(220),
- [sym_comment] = ACTIONS(5),
- [anon_sym_BQUOTE] = ACTIONS(1516),
- [sym_number] = ACTIONS(1518),
- [sym_this] = ACTIONS(1520),
- [sym_true] = ACTIONS(1522),
- [sym_false] = ACTIONS(1522),
- [sym_null] = ACTIONS(1522),
- [sym_undefined] = ACTIONS(1522),
- [anon_sym_readonly] = ACTIONS(1524),
- [anon_sym_QMARK] = ACTIONS(761),
- [anon_sym_any] = ACTIONS(220),
- [anon_sym_number] = ACTIONS(220),
- [anon_sym_boolean] = ACTIONS(220),
- [anon_sym_string] = ACTIONS(220),
- [anon_sym_symbol] = ACTIONS(220),
- [anon_sym_object] = ACTIONS(220),
- [anon_sym_abstract] = ACTIONS(212),
- [anon_sym_infer] = ACTIONS(214),
- [anon_sym_keyof] = ACTIONS(216),
- [anon_sym_unique] = ACTIONS(218),
- [anon_sym_unknown] = ACTIONS(220),
- [anon_sym_never] = ACTIONS(220),
- [anon_sym_LBRACE_PIPE] = ACTIONS(222),
- [sym_html_comment] = ACTIONS(5),
- },
- [1030] = {
- [sym_import] = STATE(5087),
- [sym_nested_identifier] = STATE(5707),
- [sym_string] = STATE(2889),
- [sym_formal_parameters] = STATE(5709),
- [sym_nested_type_identifier] = STATE(2828),
- [sym__type_query_member_expression_in_type_annotation] = STATE(2846),
- [sym__type_query_call_expression_in_type_annotation] = STATE(2850),
- [sym_type] = STATE(4537),
- [sym_constructor_type] = STATE(2896),
- [sym_primary_type] = STATE(2897),
- [sym_template_literal_type] = STATE(2885),
- [sym_infer_type] = STATE(2896),
- [sym_conditional_type] = STATE(2885),
- [sym_generic_type] = STATE(2885),
- [sym_type_query] = STATE(2885),
- [sym_index_type_query] = STATE(2885),
- [sym_lookup_type] = STATE(2885),
- [sym_literal_type] = STATE(2885),
- [sym__number] = STATE(2903),
- [sym_existential_type] = STATE(2885),
- [sym_flow_maybe_type] = STATE(2885),
- [sym_parenthesized_type] = STATE(2885),
- [sym_predefined_type] = STATE(2885),
- [sym_object_type] = STATE(2885),
- [sym_type_parameters] = STATE(5435),
- [sym_array_type] = STATE(2885),
- [sym_tuple_type] = STATE(2885),
- [sym_readonly_type] = STATE(2896),
- [sym_union_type] = STATE(2885),
- [sym_intersection_type] = STATE(2885),
- [sym_function_type] = STATE(2896),
- [sym_identifier] = ACTIONS(1496),
- [anon_sym_STAR] = ACTIONS(612),
- [anon_sym_LBRACE] = ACTIONS(1498),
- [anon_sym_typeof] = ACTIONS(1500),
- [anon_sym_import] = ACTIONS(133),
- [anon_sym_const] = ACTIONS(135),
- [anon_sym_LPAREN] = ACTIONS(1502),
- [anon_sym_LBRACK] = ACTIONS(1504),
- [anon_sym_DQUOTE] = ACTIONS(1506),
- [anon_sym_SQUOTE] = ACTIONS(1508),
- [anon_sym_new] = ACTIONS(1510),
- [anon_sym_AMP] = ACTIONS(741),
- [anon_sym_PIPE] = ACTIONS(743),
- [anon_sym_PLUS] = ACTIONS(2579),
- [anon_sym_DASH] = ACTIONS(2579),
- [anon_sym_LT] = ACTIONS(2581),
- [anon_sym_void] = ACTIONS(220),
- [sym_comment] = ACTIONS(5),
- [anon_sym_BQUOTE] = ACTIONS(1516),
- [sym_number] = ACTIONS(1518),
- [sym_this] = ACTIONS(1520),
- [sym_true] = ACTIONS(1522),
- [sym_false] = ACTIONS(1522),
- [sym_null] = ACTIONS(1522),
- [sym_undefined] = ACTIONS(1522),
- [anon_sym_readonly] = ACTIONS(1524),
- [anon_sym_QMARK] = ACTIONS(761),
- [anon_sym_any] = ACTIONS(220),
- [anon_sym_number] = ACTIONS(220),
- [anon_sym_boolean] = ACTIONS(220),
- [anon_sym_string] = ACTIONS(220),
- [anon_sym_symbol] = ACTIONS(220),
- [anon_sym_object] = ACTIONS(220),
- [anon_sym_abstract] = ACTIONS(212),
- [anon_sym_infer] = ACTIONS(214),
- [anon_sym_keyof] = ACTIONS(216),
- [anon_sym_unique] = ACTIONS(218),
- [anon_sym_unknown] = ACTIONS(220),
- [anon_sym_never] = ACTIONS(220),
- [anon_sym_LBRACE_PIPE] = ACTIONS(222),
- [sym_html_comment] = ACTIONS(5),
- },
- [1031] = {
- [sym_import] = STATE(5087),
- [sym_nested_identifier] = STATE(5707),
- [sym_string] = STATE(2889),
- [sym_formal_parameters] = STATE(5709),
- [sym_nested_type_identifier] = STATE(2828),
- [sym__type_query_member_expression_in_type_annotation] = STATE(2846),
- [sym__type_query_call_expression_in_type_annotation] = STATE(2850),
- [sym_type] = STATE(2854),
- [sym_constructor_type] = STATE(2896),
- [sym_primary_type] = STATE(2897),
- [sym_template_literal_type] = STATE(2885),
- [sym_infer_type] = STATE(2896),
- [sym_conditional_type] = STATE(2885),
- [sym_generic_type] = STATE(2885),
- [sym_type_query] = STATE(2885),
- [sym_index_type_query] = STATE(2885),
- [sym_lookup_type] = STATE(2885),
- [sym_literal_type] = STATE(2885),
- [sym__number] = STATE(2903),
- [sym_existential_type] = STATE(2885),
- [sym_flow_maybe_type] = STATE(2885),
- [sym_parenthesized_type] = STATE(2885),
- [sym_predefined_type] = STATE(2885),
- [sym_object_type] = STATE(2885),
- [sym_type_parameters] = STATE(5435),
- [sym_array_type] = STATE(2885),
- [sym_tuple_type] = STATE(2885),
- [sym_readonly_type] = STATE(2896),
- [sym_union_type] = STATE(2885),
- [sym_intersection_type] = STATE(2885),
- [sym_function_type] = STATE(2896),
- [sym_identifier] = ACTIONS(1496),
- [anon_sym_STAR] = ACTIONS(612),
- [anon_sym_LBRACE] = ACTIONS(1498),
- [anon_sym_typeof] = ACTIONS(1500),
- [anon_sym_import] = ACTIONS(133),
- [anon_sym_const] = ACTIONS(135),
- [anon_sym_LPAREN] = ACTIONS(1502),
- [anon_sym_LBRACK] = ACTIONS(1504),
- [anon_sym_DQUOTE] = ACTIONS(1506),
- [anon_sym_SQUOTE] = ACTIONS(1508),
- [anon_sym_new] = ACTIONS(1510),
- [anon_sym_AMP] = ACTIONS(741),
- [anon_sym_PIPE] = ACTIONS(743),
- [anon_sym_PLUS] = ACTIONS(2579),
- [anon_sym_DASH] = ACTIONS(2579),
- [anon_sym_LT] = ACTIONS(2581),
- [anon_sym_void] = ACTIONS(220),
- [sym_comment] = ACTIONS(5),
- [anon_sym_BQUOTE] = ACTIONS(1516),
- [sym_number] = ACTIONS(1518),
- [sym_this] = ACTIONS(1520),
- [sym_true] = ACTIONS(1522),
- [sym_false] = ACTIONS(1522),
- [sym_null] = ACTIONS(1522),
- [sym_undefined] = ACTIONS(1522),
- [anon_sym_readonly] = ACTIONS(1524),
- [anon_sym_QMARK] = ACTIONS(761),
- [anon_sym_any] = ACTIONS(220),
- [anon_sym_number] = ACTIONS(220),
- [anon_sym_boolean] = ACTIONS(220),
- [anon_sym_string] = ACTIONS(220),
- [anon_sym_symbol] = ACTIONS(220),
- [anon_sym_object] = ACTIONS(220),
- [anon_sym_abstract] = ACTIONS(212),
- [anon_sym_infer] = ACTIONS(214),
- [anon_sym_keyof] = ACTIONS(216),
- [anon_sym_unique] = ACTIONS(218),
- [anon_sym_unknown] = ACTIONS(220),
- [anon_sym_never] = ACTIONS(220),
- [anon_sym_LBRACE_PIPE] = ACTIONS(222),
- [sym_html_comment] = ACTIONS(5),
- },
- [1032] = {
- [sym_import] = STATE(5087),
- [sym_nested_identifier] = STATE(5707),
- [sym_string] = STATE(2889),
- [sym_formal_parameters] = STATE(5709),
- [sym_nested_type_identifier] = STATE(2828),
- [sym__type_query_member_expression_in_type_annotation] = STATE(2846),
- [sym__type_query_call_expression_in_type_annotation] = STATE(2850),
- [sym_type] = STATE(2859),
- [sym_constructor_type] = STATE(2896),
- [sym_primary_type] = STATE(2897),
- [sym_template_literal_type] = STATE(2885),
- [sym_infer_type] = STATE(2896),
- [sym_conditional_type] = STATE(2885),
- [sym_generic_type] = STATE(2885),
- [sym_type_query] = STATE(2885),
- [sym_index_type_query] = STATE(2885),
- [sym_lookup_type] = STATE(2885),
- [sym_literal_type] = STATE(2885),
- [sym__number] = STATE(2903),
- [sym_existential_type] = STATE(2885),
- [sym_flow_maybe_type] = STATE(2885),
- [sym_parenthesized_type] = STATE(2885),
- [sym_predefined_type] = STATE(2885),
- [sym_object_type] = STATE(2885),
- [sym_type_parameters] = STATE(5435),
- [sym_array_type] = STATE(2885),
- [sym_tuple_type] = STATE(2885),
- [sym_readonly_type] = STATE(2896),
- [sym_union_type] = STATE(2885),
- [sym_intersection_type] = STATE(2885),
- [sym_function_type] = STATE(2896),
- [sym_identifier] = ACTIONS(1496),
- [anon_sym_STAR] = ACTIONS(612),
- [anon_sym_LBRACE] = ACTIONS(1498),
- [anon_sym_typeof] = ACTIONS(1500),
- [anon_sym_import] = ACTIONS(133),
- [anon_sym_const] = ACTIONS(135),
- [anon_sym_LPAREN] = ACTIONS(1502),
- [anon_sym_LBRACK] = ACTIONS(1504),
- [anon_sym_DQUOTE] = ACTIONS(1506),
- [anon_sym_SQUOTE] = ACTIONS(1508),
- [anon_sym_new] = ACTIONS(1510),
- [anon_sym_AMP] = ACTIONS(741),
- [anon_sym_PIPE] = ACTIONS(743),
- [anon_sym_PLUS] = ACTIONS(2579),
- [anon_sym_DASH] = ACTIONS(2579),
- [anon_sym_LT] = ACTIONS(2581),
- [anon_sym_void] = ACTIONS(220),
- [sym_comment] = ACTIONS(5),
- [anon_sym_BQUOTE] = ACTIONS(1516),
- [sym_number] = ACTIONS(1518),
- [sym_this] = ACTIONS(1520),
- [sym_true] = ACTIONS(1522),
- [sym_false] = ACTIONS(1522),
- [sym_null] = ACTIONS(1522),
- [sym_undefined] = ACTIONS(1522),
- [anon_sym_readonly] = ACTIONS(1524),
- [anon_sym_QMARK] = ACTIONS(761),
- [anon_sym_any] = ACTIONS(220),
- [anon_sym_number] = ACTIONS(220),
- [anon_sym_boolean] = ACTIONS(220),
- [anon_sym_string] = ACTIONS(220),
- [anon_sym_symbol] = ACTIONS(220),
- [anon_sym_object] = ACTIONS(220),
- [anon_sym_abstract] = ACTIONS(212),
- [anon_sym_infer] = ACTIONS(214),
- [anon_sym_keyof] = ACTIONS(216),
- [anon_sym_unique] = ACTIONS(218),
- [anon_sym_unknown] = ACTIONS(220),
- [anon_sym_never] = ACTIONS(220),
- [anon_sym_LBRACE_PIPE] = ACTIONS(222),
- [sym_html_comment] = ACTIONS(5),
- },
- [1033] = {
- [sym_import] = STATE(5087),
- [sym_nested_identifier] = STATE(5707),
- [sym_string] = STATE(2889),
- [sym_formal_parameters] = STATE(5709),
- [sym_nested_type_identifier] = STATE(2828),
- [sym__type_query_member_expression_in_type_annotation] = STATE(2846),
- [sym__type_query_call_expression_in_type_annotation] = STATE(2850),
- [sym_type] = STATE(4476),
- [sym_constructor_type] = STATE(2896),
- [sym_primary_type] = STATE(2897),
- [sym_template_literal_type] = STATE(2885),
- [sym_infer_type] = STATE(2896),
- [sym_conditional_type] = STATE(2885),
- [sym_generic_type] = STATE(2885),
- [sym_type_query] = STATE(2885),
- [sym_index_type_query] = STATE(2885),
- [sym_lookup_type] = STATE(2885),
- [sym_literal_type] = STATE(2885),
- [sym__number] = STATE(2903),
- [sym_existential_type] = STATE(2885),
- [sym_flow_maybe_type] = STATE(2885),
- [sym_parenthesized_type] = STATE(2885),
- [sym_predefined_type] = STATE(2885),
- [sym_object_type] = STATE(2885),
- [sym_type_parameters] = STATE(5435),
- [sym_array_type] = STATE(2885),
- [sym_tuple_type] = STATE(2885),
- [sym_readonly_type] = STATE(2896),
- [sym_union_type] = STATE(2885),
- [sym_intersection_type] = STATE(2885),
- [sym_function_type] = STATE(2896),
- [sym_identifier] = ACTIONS(1496),
- [anon_sym_STAR] = ACTIONS(612),
- [anon_sym_LBRACE] = ACTIONS(1498),
- [anon_sym_typeof] = ACTIONS(1500),
- [anon_sym_import] = ACTIONS(133),
- [anon_sym_const] = ACTIONS(135),
- [anon_sym_LPAREN] = ACTIONS(1502),
- [anon_sym_LBRACK] = ACTIONS(1504),
- [anon_sym_DQUOTE] = ACTIONS(1506),
- [anon_sym_SQUOTE] = ACTIONS(1508),
- [anon_sym_new] = ACTIONS(1510),
- [anon_sym_AMP] = ACTIONS(741),
- [anon_sym_PIPE] = ACTIONS(743),
- [anon_sym_PLUS] = ACTIONS(2579),
- [anon_sym_DASH] = ACTIONS(2579),
- [anon_sym_LT] = ACTIONS(2581),
- [anon_sym_void] = ACTIONS(220),
- [sym_comment] = ACTIONS(5),
- [anon_sym_BQUOTE] = ACTIONS(1516),
- [sym_number] = ACTIONS(1518),
- [sym_this] = ACTIONS(1520),
- [sym_true] = ACTIONS(1522),
- [sym_false] = ACTIONS(1522),
- [sym_null] = ACTIONS(1522),
- [sym_undefined] = ACTIONS(1522),
- [anon_sym_readonly] = ACTIONS(1524),
- [anon_sym_QMARK] = ACTIONS(761),
- [anon_sym_any] = ACTIONS(220),
- [anon_sym_number] = ACTIONS(220),
- [anon_sym_boolean] = ACTIONS(220),
- [anon_sym_string] = ACTIONS(220),
- [anon_sym_symbol] = ACTIONS(220),
- [anon_sym_object] = ACTIONS(220),
- [anon_sym_abstract] = ACTIONS(212),
- [anon_sym_infer] = ACTIONS(214),
- [anon_sym_keyof] = ACTIONS(216),
- [anon_sym_unique] = ACTIONS(218),
- [anon_sym_unknown] = ACTIONS(220),
- [anon_sym_never] = ACTIONS(220),
- [anon_sym_LBRACE_PIPE] = ACTIONS(222),
- [sym_html_comment] = ACTIONS(5),
- },
- [1034] = {
- [sym_import] = STATE(5139),
- [sym_nested_identifier] = STATE(5610),
- [sym_string] = STATE(3160),
- [sym_formal_parameters] = STATE(5827),
- [sym_nested_type_identifier] = STATE(3047),
- [sym__type_query_member_expression_in_type_annotation] = STATE(2958),
- [sym__type_query_call_expression_in_type_annotation] = STATE(3113),
- [sym_type] = STATE(3165),
- [sym_constructor_type] = STATE(3205),
- [sym_primary_type] = STATE(3150),
- [sym_template_literal_type] = STATE(3195),
- [sym_infer_type] = STATE(3205),
- [sym_conditional_type] = STATE(3195),
- [sym_generic_type] = STATE(3195),
- [sym_type_query] = STATE(3195),
- [sym_index_type_query] = STATE(3195),
- [sym_lookup_type] = STATE(3195),
- [sym_literal_type] = STATE(3195),
- [sym__number] = STATE(3154),
- [sym_existential_type] = STATE(3195),
- [sym_flow_maybe_type] = STATE(3195),
- [sym_parenthesized_type] = STATE(3195),
- [sym_predefined_type] = STATE(3195),
- [sym_object_type] = STATE(3195),
- [sym_type_parameters] = STATE(5228),
- [sym_array_type] = STATE(3195),
- [sym_tuple_type] = STATE(3195),
- [sym_readonly_type] = STATE(3205),
- [sym_union_type] = STATE(3195),
- [sym_intersection_type] = STATE(3195),
- [sym_function_type] = STATE(3205),
- [sym_identifier] = ACTIONS(1582),
- [anon_sym_STAR] = ACTIONS(992),
- [anon_sym_LBRACE] = ACTIONS(1586),
- [anon_sym_typeof] = ACTIONS(1588),
- [anon_sym_import] = ACTIONS(133),
- [anon_sym_const] = ACTIONS(998),
- [anon_sym_LPAREN] = ACTIONS(1590),
- [anon_sym_LBRACK] = ACTIONS(1592),
- [anon_sym_DQUOTE] = ACTIONS(1594),
- [anon_sym_SQUOTE] = ACTIONS(1596),
- [anon_sym_new] = ACTIONS(1598),
- [anon_sym_AMP] = ACTIONS(1006),
- [anon_sym_PIPE] = ACTIONS(1008),
- [anon_sym_PLUS] = ACTIONS(2977),
- [anon_sym_DASH] = ACTIONS(2977),
- [anon_sym_LT] = ACTIONS(2581),
- [anon_sym_void] = ACTIONS(1038),
- [sym_comment] = ACTIONS(5),
- [anon_sym_BQUOTE] = ACTIONS(1606),
- [sym_number] = ACTIONS(1608),
- [sym_this] = ACTIONS(1610),
- [sym_true] = ACTIONS(1612),
- [sym_false] = ACTIONS(1612),
- [sym_null] = ACTIONS(1612),
- [sym_undefined] = ACTIONS(1612),
- [anon_sym_readonly] = ACTIONS(1614),
- [anon_sym_QMARK] = ACTIONS(1026),
- [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_object] = ACTIONS(1038),
- [anon_sym_abstract] = ACTIONS(1030),
- [anon_sym_infer] = ACTIONS(1032),
- [anon_sym_keyof] = ACTIONS(1034),
- [anon_sym_unique] = ACTIONS(1036),
- [anon_sym_unknown] = ACTIONS(1038),
- [anon_sym_never] = ACTIONS(1038),
- [anon_sym_LBRACE_PIPE] = ACTIONS(1040),
- [sym_html_comment] = ACTIONS(5),
- },
- [1035] = {
- [sym_import] = STATE(5139),
- [sym_nested_identifier] = STATE(5610),
- [sym_string] = STATE(3160),
- [sym_formal_parameters] = STATE(5827),
- [sym_nested_type_identifier] = STATE(3047),
- [sym__type_query_member_expression_in_type_annotation] = STATE(2958),
- [sym__type_query_call_expression_in_type_annotation] = STATE(3113),
- [sym_type] = STATE(3177),
- [sym_constructor_type] = STATE(3205),
- [sym_primary_type] = STATE(3150),
- [sym_template_literal_type] = STATE(3195),
- [sym_infer_type] = STATE(3205),
- [sym_conditional_type] = STATE(3195),
- [sym_generic_type] = STATE(3195),
- [sym_type_query] = STATE(3195),
- [sym_index_type_query] = STATE(3195),
- [sym_lookup_type] = STATE(3195),
- [sym_literal_type] = STATE(3195),
- [sym__number] = STATE(3154),
- [sym_existential_type] = STATE(3195),
- [sym_flow_maybe_type] = STATE(3195),
- [sym_parenthesized_type] = STATE(3195),
- [sym_predefined_type] = STATE(3195),
- [sym_object_type] = STATE(3195),
- [sym_type_parameters] = STATE(5228),
- [sym_array_type] = STATE(3195),
- [sym_tuple_type] = STATE(3195),
- [sym_readonly_type] = STATE(3205),
- [sym_union_type] = STATE(3195),
- [sym_intersection_type] = STATE(3195),
- [sym_function_type] = STATE(3205),
- [sym_identifier] = ACTIONS(1582),
- [anon_sym_STAR] = ACTIONS(992),
- [anon_sym_LBRACE] = ACTIONS(1586),
- [anon_sym_typeof] = ACTIONS(1588),
- [anon_sym_import] = ACTIONS(133),
- [anon_sym_const] = ACTIONS(998),
- [anon_sym_LPAREN] = ACTIONS(1590),
- [anon_sym_LBRACK] = ACTIONS(1592),
- [anon_sym_DQUOTE] = ACTIONS(1594),
- [anon_sym_SQUOTE] = ACTIONS(1596),
- [anon_sym_new] = ACTIONS(1598),
- [anon_sym_AMP] = ACTIONS(1006),
- [anon_sym_PIPE] = ACTIONS(1008),
- [anon_sym_PLUS] = ACTIONS(2977),
- [anon_sym_DASH] = ACTIONS(2977),
- [anon_sym_LT] = ACTIONS(2581),
- [anon_sym_void] = ACTIONS(1038),
- [sym_comment] = ACTIONS(5),
- [anon_sym_BQUOTE] = ACTIONS(1606),
- [sym_number] = ACTIONS(1608),
- [sym_this] = ACTIONS(1610),
- [sym_true] = ACTIONS(1612),
- [sym_false] = ACTIONS(1612),
- [sym_null] = ACTIONS(1612),
- [sym_undefined] = ACTIONS(1612),
- [anon_sym_readonly] = ACTIONS(1614),
- [anon_sym_QMARK] = ACTIONS(1026),
- [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_object] = ACTIONS(1038),
- [anon_sym_abstract] = ACTIONS(1030),
- [anon_sym_infer] = ACTIONS(1032),
- [anon_sym_keyof] = ACTIONS(1034),
- [anon_sym_unique] = ACTIONS(1036),
- [anon_sym_unknown] = ACTIONS(1038),
- [anon_sym_never] = ACTIONS(1038),
- [anon_sym_LBRACE_PIPE] = ACTIONS(1040),
- [sym_html_comment] = ACTIONS(5),
- },
- [1036] = {
- [sym_import] = STATE(5087),
- [sym_nested_identifier] = STATE(5707),
- [sym_string] = STATE(2889),
- [sym_formal_parameters] = STATE(5709),
- [sym_nested_type_identifier] = STATE(2828),
- [sym__type_query_member_expression_in_type_annotation] = STATE(2846),
- [sym__type_query_call_expression_in_type_annotation] = STATE(2850),
- [sym_type] = STATE(3737),
- [sym_constructor_type] = STATE(2896),
- [sym_primary_type] = STATE(2897),
- [sym_template_literal_type] = STATE(2885),
- [sym_infer_type] = STATE(2896),
- [sym_conditional_type] = STATE(2885),
- [sym_generic_type] = STATE(2885),
- [sym_type_query] = STATE(2885),
- [sym_index_type_query] = STATE(2885),
- [sym_lookup_type] = STATE(2885),
- [sym_literal_type] = STATE(2885),
- [sym__number] = STATE(2903),
- [sym_existential_type] = STATE(2885),
- [sym_flow_maybe_type] = STATE(2885),
- [sym_parenthesized_type] = STATE(2885),
- [sym_predefined_type] = STATE(2885),
- [sym_object_type] = STATE(2885),
- [sym_type_parameters] = STATE(5435),
- [sym_array_type] = STATE(2885),
- [sym_tuple_type] = STATE(2885),
- [sym_readonly_type] = STATE(2896),
- [sym_union_type] = STATE(2885),
- [sym_intersection_type] = STATE(2885),
- [sym_function_type] = STATE(2896),
- [sym_identifier] = ACTIONS(1496),
- [anon_sym_STAR] = ACTIONS(612),
- [anon_sym_LBRACE] = ACTIONS(1498),
- [anon_sym_typeof] = ACTIONS(1500),
- [anon_sym_import] = ACTIONS(133),
- [anon_sym_const] = ACTIONS(135),
- [anon_sym_LPAREN] = ACTIONS(1502),
- [anon_sym_LBRACK] = ACTIONS(1504),
- [anon_sym_DQUOTE] = ACTIONS(1506),
- [anon_sym_SQUOTE] = ACTIONS(1508),
- [anon_sym_new] = ACTIONS(1510),
- [anon_sym_AMP] = ACTIONS(741),
- [anon_sym_PIPE] = ACTIONS(743),
- [anon_sym_PLUS] = ACTIONS(2579),
- [anon_sym_DASH] = ACTIONS(2579),
- [anon_sym_LT] = ACTIONS(2581),
- [anon_sym_void] = ACTIONS(220),
- [sym_comment] = ACTIONS(5),
- [anon_sym_BQUOTE] = ACTIONS(1516),
- [sym_number] = ACTIONS(1518),
- [sym_this] = ACTIONS(1520),
- [sym_true] = ACTIONS(1522),
- [sym_false] = ACTIONS(1522),
- [sym_null] = ACTIONS(1522),
- [sym_undefined] = ACTIONS(1522),
- [anon_sym_readonly] = ACTIONS(1524),
- [anon_sym_QMARK] = ACTIONS(761),
- [anon_sym_any] = ACTIONS(220),
- [anon_sym_number] = ACTIONS(220),
- [anon_sym_boolean] = ACTIONS(220),
- [anon_sym_string] = ACTIONS(220),
- [anon_sym_symbol] = ACTIONS(220),
- [anon_sym_object] = ACTIONS(220),
- [anon_sym_abstract] = ACTIONS(212),
- [anon_sym_infer] = ACTIONS(214),
- [anon_sym_keyof] = ACTIONS(216),
- [anon_sym_unique] = ACTIONS(218),
- [anon_sym_unknown] = ACTIONS(220),
- [anon_sym_never] = ACTIONS(220),
- [anon_sym_LBRACE_PIPE] = ACTIONS(222),
- [sym_html_comment] = ACTIONS(5),
- },
- [1037] = {
- [sym_import] = STATE(4618),
- [sym_nested_identifier] = STATE(5906),
- [sym_string] = STATE(1947),
- [sym_formal_parameters] = STATE(5651),
- [sym_nested_type_identifier] = STATE(1799),
- [sym__type_query_member_expression_in_type_annotation] = STATE(1800),
- [sym__type_query_call_expression_in_type_annotation] = STATE(1928),
- [sym_type] = STATE(1941),
- [sym_constructor_type] = STATE(1929),
- [sym_primary_type] = STATE(1931),
- [sym_template_literal_type] = STATE(1936),
- [sym_infer_type] = STATE(1929),
- [sym_conditional_type] = STATE(1936),
- [sym_generic_type] = STATE(1936),
- [sym_type_query] = STATE(1936),
- [sym_index_type_query] = STATE(1936),
- [sym_lookup_type] = STATE(1936),
- [sym_literal_type] = STATE(1936),
- [sym__number] = STATE(1932),
- [sym_existential_type] = STATE(1936),
- [sym_flow_maybe_type] = STATE(1936),
- [sym_parenthesized_type] = STATE(1936),
- [sym_predefined_type] = STATE(1936),
- [sym_object_type] = STATE(1936),
- [sym_type_parameters] = STATE(5347),
- [sym_array_type] = STATE(1936),
- [sym_tuple_type] = STATE(1936),
- [sym_readonly_type] = STATE(1929),
- [sym_union_type] = STATE(1936),
- [sym_intersection_type] = STATE(1936),
- [sym_function_type] = STATE(1929),
- [sym_identifier] = ACTIONS(3177),
- [anon_sym_STAR] = ACTIONS(2929),
- [anon_sym_LBRACE] = ACTIONS(2931),
- [anon_sym_typeof] = ACTIONS(2933),
- [anon_sym_import] = ACTIONS(133),
- [anon_sym_const] = ACTIONS(3189),
- [anon_sym_LPAREN] = ACTIONS(2937),
- [anon_sym_LBRACK] = ACTIONS(2939),
- [anon_sym_DQUOTE] = ACTIONS(69),
- [anon_sym_SQUOTE] = ACTIONS(71),
- [anon_sym_new] = ACTIONS(2941),
- [anon_sym_AMP] = ACTIONS(2943),
- [anon_sym_PIPE] = ACTIONS(2945),
- [anon_sym_PLUS] = ACTIONS(2947),
- [anon_sym_DASH] = ACTIONS(2947),
- [anon_sym_LT] = ACTIONS(2581),
- [anon_sym_void] = ACTIONS(2949),
- [sym_comment] = ACTIONS(5),
- [anon_sym_BQUOTE] = ACTIONS(2951),
- [sym_number] = ACTIONS(2953),
- [sym_this] = ACTIONS(3179),
- [sym_true] = ACTIONS(2957),
- [sym_false] = ACTIONS(2957),
- [sym_null] = ACTIONS(2957),
- [sym_undefined] = ACTIONS(2957),
- [anon_sym_readonly] = ACTIONS(2959),
- [anon_sym_QMARK] = ACTIONS(2961),
- [anon_sym_any] = ACTIONS(2949),
- [anon_sym_number] = ACTIONS(2949),
- [anon_sym_boolean] = ACTIONS(2949),
- [anon_sym_string] = ACTIONS(2949),
- [anon_sym_symbol] = ACTIONS(2949),
- [anon_sym_object] = ACTIONS(2949),
- [anon_sym_abstract] = ACTIONS(2963),
- [anon_sym_infer] = ACTIONS(2967),
- [anon_sym_keyof] = ACTIONS(2969),
- [anon_sym_unique] = ACTIONS(2971),
- [anon_sym_unknown] = ACTIONS(2949),
- [anon_sym_never] = ACTIONS(2949),
- [anon_sym_LBRACE_PIPE] = ACTIONS(2973),
- [sym_html_comment] = ACTIONS(5),
- },
- [1038] = {
- [sym_import] = STATE(5139),
- [sym_nested_identifier] = STATE(5610),
- [sym_string] = STATE(3160),
- [sym_formal_parameters] = STATE(5827),
- [sym_nested_type_identifier] = STATE(3047),
- [sym__type_query_member_expression_in_type_annotation] = STATE(2958),
- [sym__type_query_call_expression_in_type_annotation] = STATE(3113),
- [sym_type] = STATE(4047),
- [sym_constructor_type] = STATE(3205),
- [sym_primary_type] = STATE(3150),
- [sym_template_literal_type] = STATE(3195),
- [sym_infer_type] = STATE(3205),
- [sym_conditional_type] = STATE(3195),
- [sym_generic_type] = STATE(3195),
- [sym_type_query] = STATE(3195),
- [sym_index_type_query] = STATE(3195),
- [sym_lookup_type] = STATE(3195),
- [sym_literal_type] = STATE(3195),
- [sym__number] = STATE(3154),
- [sym_existential_type] = STATE(3195),
- [sym_flow_maybe_type] = STATE(3195),
- [sym_parenthesized_type] = STATE(3195),
- [sym_predefined_type] = STATE(3195),
- [sym_object_type] = STATE(3195),
- [sym_type_parameters] = STATE(5228),
- [sym_array_type] = STATE(3195),
- [sym_tuple_type] = STATE(3195),
- [sym_readonly_type] = STATE(3205),
- [sym_union_type] = STATE(3195),
- [sym_intersection_type] = STATE(3195),
- [sym_function_type] = STATE(3205),
- [sym_identifier] = ACTIONS(1582),
- [anon_sym_STAR] = ACTIONS(992),
- [anon_sym_LBRACE] = ACTIONS(1586),
- [anon_sym_typeof] = ACTIONS(1588),
- [anon_sym_import] = ACTIONS(133),
- [anon_sym_const] = ACTIONS(998),
- [anon_sym_LPAREN] = ACTIONS(1590),
- [anon_sym_LBRACK] = ACTIONS(1592),
- [anon_sym_DQUOTE] = ACTIONS(1594),
- [anon_sym_SQUOTE] = ACTIONS(1596),
- [anon_sym_new] = ACTIONS(1598),
- [anon_sym_AMP] = ACTIONS(1006),
- [anon_sym_PIPE] = ACTIONS(1008),
- [anon_sym_PLUS] = ACTIONS(2977),
- [anon_sym_DASH] = ACTIONS(2977),
- [anon_sym_LT] = ACTIONS(2581),
- [anon_sym_void] = ACTIONS(1038),
- [sym_comment] = ACTIONS(5),
- [anon_sym_BQUOTE] = ACTIONS(1606),
- [sym_number] = ACTIONS(1608),
- [sym_this] = ACTIONS(1610),
- [sym_true] = ACTIONS(1612),
- [sym_false] = ACTIONS(1612),
- [sym_null] = ACTIONS(1612),
- [sym_undefined] = ACTIONS(1612),
- [anon_sym_readonly] = ACTIONS(1614),
- [anon_sym_QMARK] = ACTIONS(1026),
- [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_object] = ACTIONS(1038),
- [anon_sym_abstract] = ACTIONS(1030),
- [anon_sym_infer] = ACTIONS(1032),
- [anon_sym_keyof] = ACTIONS(1034),
- [anon_sym_unique] = ACTIONS(1036),
- [anon_sym_unknown] = ACTIONS(1038),
- [anon_sym_never] = ACTIONS(1038),
- [anon_sym_LBRACE_PIPE] = ACTIONS(1040),
- [sym_html_comment] = ACTIONS(5),
- },
- [1039] = {
- [sym_import] = STATE(5087),
- [sym_nested_identifier] = STATE(5707),
- [sym_string] = STATE(2889),
- [sym_formal_parameters] = STATE(5709),
- [sym_nested_type_identifier] = STATE(2828),
- [sym__type_query_member_expression_in_type_annotation] = STATE(2846),
- [sym__type_query_call_expression_in_type_annotation] = STATE(2850),
- [sym_type] = STATE(4549),
- [sym_constructor_type] = STATE(2896),
- [sym_primary_type] = STATE(2897),
- [sym_template_literal_type] = STATE(2885),
- [sym_infer_type] = STATE(2896),
- [sym_conditional_type] = STATE(2885),
- [sym_generic_type] = STATE(2885),
- [sym_type_query] = STATE(2885),
- [sym_index_type_query] = STATE(2885),
- [sym_lookup_type] = STATE(2885),
- [sym_literal_type] = STATE(2885),
- [sym__number] = STATE(2903),
- [sym_existential_type] = STATE(2885),
- [sym_flow_maybe_type] = STATE(2885),
- [sym_parenthesized_type] = STATE(2885),
- [sym_predefined_type] = STATE(2885),
- [sym_object_type] = STATE(2885),
- [sym_type_parameters] = STATE(5435),
- [sym_array_type] = STATE(2885),
- [sym_tuple_type] = STATE(2885),
- [sym_readonly_type] = STATE(2896),
- [sym_union_type] = STATE(2885),
- [sym_intersection_type] = STATE(2885),
- [sym_function_type] = STATE(2896),
- [sym_identifier] = ACTIONS(1496),
- [anon_sym_STAR] = ACTIONS(612),
- [anon_sym_LBRACE] = ACTIONS(1498),
- [anon_sym_typeof] = ACTIONS(1500),
- [anon_sym_import] = ACTIONS(133),
- [anon_sym_const] = ACTIONS(135),
- [anon_sym_LPAREN] = ACTIONS(1502),
- [anon_sym_LBRACK] = ACTIONS(1504),
- [anon_sym_DQUOTE] = ACTIONS(1506),
- [anon_sym_SQUOTE] = ACTIONS(1508),
- [anon_sym_new] = ACTIONS(1510),
- [anon_sym_AMP] = ACTIONS(741),
- [anon_sym_PIPE] = ACTIONS(743),
- [anon_sym_PLUS] = ACTIONS(2579),
- [anon_sym_DASH] = ACTIONS(2579),
- [anon_sym_LT] = ACTIONS(2581),
- [anon_sym_void] = ACTIONS(220),
- [sym_comment] = ACTIONS(5),
- [anon_sym_BQUOTE] = ACTIONS(1516),
- [sym_number] = ACTIONS(1518),
- [sym_this] = ACTIONS(1520),
- [sym_true] = ACTIONS(1522),
- [sym_false] = ACTIONS(1522),
- [sym_null] = ACTIONS(1522),
- [sym_undefined] = ACTIONS(1522),
- [anon_sym_readonly] = ACTIONS(1524),
- [anon_sym_QMARK] = ACTIONS(761),
- [anon_sym_any] = ACTIONS(220),
- [anon_sym_number] = ACTIONS(220),
- [anon_sym_boolean] = ACTIONS(220),
- [anon_sym_string] = ACTIONS(220),
- [anon_sym_symbol] = ACTIONS(220),
- [anon_sym_object] = ACTIONS(220),
- [anon_sym_abstract] = ACTIONS(212),
- [anon_sym_infer] = ACTIONS(214),
- [anon_sym_keyof] = ACTIONS(216),
- [anon_sym_unique] = ACTIONS(218),
- [anon_sym_unknown] = ACTIONS(220),
- [anon_sym_never] = ACTIONS(220),
- [anon_sym_LBRACE_PIPE] = ACTIONS(222),
- [sym_html_comment] = ACTIONS(5),
- },
- [1040] = {
- [sym_import] = STATE(5087),
- [sym_nested_identifier] = STATE(5707),
- [sym_string] = STATE(2889),
- [sym_formal_parameters] = STATE(5709),
- [sym_nested_type_identifier] = STATE(2828),
- [sym__type_query_member_expression_in_type_annotation] = STATE(2846),
- [sym__type_query_call_expression_in_type_annotation] = STATE(2850),
- [sym_type] = STATE(4553),
- [sym_constructor_type] = STATE(2896),
- [sym_primary_type] = STATE(2897),
- [sym_template_literal_type] = STATE(2885),
- [sym_infer_type] = STATE(2896),
- [sym_conditional_type] = STATE(2885),
- [sym_generic_type] = STATE(2885),
- [sym_type_query] = STATE(2885),
- [sym_index_type_query] = STATE(2885),
- [sym_lookup_type] = STATE(2885),
- [sym_literal_type] = STATE(2885),
- [sym__number] = STATE(2903),
- [sym_existential_type] = STATE(2885),
- [sym_flow_maybe_type] = STATE(2885),
- [sym_parenthesized_type] = STATE(2885),
- [sym_predefined_type] = STATE(2885),
- [sym_object_type] = STATE(2885),
- [sym_type_parameters] = STATE(5435),
- [sym_array_type] = STATE(2885),
- [sym_tuple_type] = STATE(2885),
- [sym_readonly_type] = STATE(2896),
- [sym_union_type] = STATE(2885),
- [sym_intersection_type] = STATE(2885),
- [sym_function_type] = STATE(2896),
- [sym_identifier] = ACTIONS(1496),
- [anon_sym_STAR] = ACTIONS(612),
- [anon_sym_LBRACE] = ACTIONS(1498),
- [anon_sym_typeof] = ACTIONS(1500),
- [anon_sym_import] = ACTIONS(133),
- [anon_sym_const] = ACTIONS(135),
- [anon_sym_LPAREN] = ACTIONS(1502),
- [anon_sym_LBRACK] = ACTIONS(1504),
- [anon_sym_DQUOTE] = ACTIONS(1506),
- [anon_sym_SQUOTE] = ACTIONS(1508),
- [anon_sym_new] = ACTIONS(1510),
- [anon_sym_AMP] = ACTIONS(741),
- [anon_sym_PIPE] = ACTIONS(743),
- [anon_sym_PLUS] = ACTIONS(2579),
- [anon_sym_DASH] = ACTIONS(2579),
- [anon_sym_LT] = ACTIONS(2581),
- [anon_sym_void] = ACTIONS(220),
- [sym_comment] = ACTIONS(5),
- [anon_sym_BQUOTE] = ACTIONS(1516),
- [sym_number] = ACTIONS(1518),
- [sym_this] = ACTIONS(1520),
- [sym_true] = ACTIONS(1522),
- [sym_false] = ACTIONS(1522),
- [sym_null] = ACTIONS(1522),
- [sym_undefined] = ACTIONS(1522),
- [anon_sym_readonly] = ACTIONS(1524),
- [anon_sym_QMARK] = ACTIONS(761),
- [anon_sym_any] = ACTIONS(220),
- [anon_sym_number] = ACTIONS(220),
- [anon_sym_boolean] = ACTIONS(220),
- [anon_sym_string] = ACTIONS(220),
- [anon_sym_symbol] = ACTIONS(220),
- [anon_sym_object] = ACTIONS(220),
- [anon_sym_abstract] = ACTIONS(212),
- [anon_sym_infer] = ACTIONS(214),
- [anon_sym_keyof] = ACTIONS(216),
- [anon_sym_unique] = ACTIONS(218),
- [anon_sym_unknown] = ACTIONS(220),
- [anon_sym_never] = ACTIONS(220),
- [anon_sym_LBRACE_PIPE] = ACTIONS(222),
- [sym_html_comment] = ACTIONS(5),
- },
- [1041] = {
- [sym_import] = STATE(5087),
- [sym_nested_identifier] = STATE(5707),
- [sym_string] = STATE(2889),
- [sym_formal_parameters] = STATE(5709),
- [sym_nested_type_identifier] = STATE(2828),
- [sym__type_query_member_expression_in_type_annotation] = STATE(2846),
- [sym__type_query_call_expression_in_type_annotation] = STATE(2850),
- [sym_type] = STATE(4562),
- [sym_constructor_type] = STATE(2896),
- [sym_primary_type] = STATE(2897),
- [sym_template_literal_type] = STATE(2885),
- [sym_infer_type] = STATE(2896),
- [sym_conditional_type] = STATE(2885),
- [sym_generic_type] = STATE(2885),
- [sym_type_query] = STATE(2885),
- [sym_index_type_query] = STATE(2885),
- [sym_lookup_type] = STATE(2885),
- [sym_literal_type] = STATE(2885),
- [sym__number] = STATE(2903),
- [sym_existential_type] = STATE(2885),
- [sym_flow_maybe_type] = STATE(2885),
- [sym_parenthesized_type] = STATE(2885),
- [sym_predefined_type] = STATE(2885),
- [sym_object_type] = STATE(2885),
- [sym_type_parameters] = STATE(5435),
- [sym_array_type] = STATE(2885),
- [sym_tuple_type] = STATE(2885),
- [sym_readonly_type] = STATE(2896),
- [sym_union_type] = STATE(2885),
- [sym_intersection_type] = STATE(2885),
- [sym_function_type] = STATE(2896),
- [sym_identifier] = ACTIONS(1496),
- [anon_sym_STAR] = ACTIONS(612),
- [anon_sym_LBRACE] = ACTIONS(1498),
- [anon_sym_typeof] = ACTIONS(1500),
- [anon_sym_import] = ACTIONS(133),
- [anon_sym_const] = ACTIONS(135),
- [anon_sym_LPAREN] = ACTIONS(1502),
- [anon_sym_LBRACK] = ACTIONS(1504),
- [anon_sym_DQUOTE] = ACTIONS(1506),
- [anon_sym_SQUOTE] = ACTIONS(1508),
- [anon_sym_new] = ACTIONS(1510),
- [anon_sym_AMP] = ACTIONS(741),
- [anon_sym_PIPE] = ACTIONS(743),
- [anon_sym_PLUS] = ACTIONS(2579),
- [anon_sym_DASH] = ACTIONS(2579),
- [anon_sym_LT] = ACTIONS(2581),
- [anon_sym_void] = ACTIONS(220),
- [sym_comment] = ACTIONS(5),
- [anon_sym_BQUOTE] = ACTIONS(1516),
- [sym_number] = ACTIONS(1518),
- [sym_this] = ACTIONS(1520),
- [sym_true] = ACTIONS(1522),
- [sym_false] = ACTIONS(1522),
- [sym_null] = ACTIONS(1522),
- [sym_undefined] = ACTIONS(1522),
- [anon_sym_readonly] = ACTIONS(1524),
- [anon_sym_QMARK] = ACTIONS(761),
- [anon_sym_any] = ACTIONS(220),
- [anon_sym_number] = ACTIONS(220),
- [anon_sym_boolean] = ACTIONS(220),
- [anon_sym_string] = ACTIONS(220),
- [anon_sym_symbol] = ACTIONS(220),
- [anon_sym_object] = ACTIONS(220),
- [anon_sym_abstract] = ACTIONS(212),
- [anon_sym_infer] = ACTIONS(214),
- [anon_sym_keyof] = ACTIONS(216),
- [anon_sym_unique] = ACTIONS(218),
- [anon_sym_unknown] = ACTIONS(220),
- [anon_sym_never] = ACTIONS(220),
- [anon_sym_LBRACE_PIPE] = ACTIONS(222),
- [sym_html_comment] = ACTIONS(5),
- },
- [1042] = {
- [sym_import] = STATE(5139),
- [sym_nested_identifier] = STATE(5610),
- [sym_string] = STATE(3160),
- [sym_formal_parameters] = STATE(5827),
- [sym_nested_type_identifier] = STATE(3047),
- [sym__type_query_member_expression_in_type_annotation] = STATE(2958),
- [sym__type_query_call_expression_in_type_annotation] = STATE(3113),
- [sym_type] = STATE(3203),
- [sym_constructor_type] = STATE(3205),
- [sym_primary_type] = STATE(3150),
- [sym_template_literal_type] = STATE(3195),
- [sym_infer_type] = STATE(3205),
- [sym_conditional_type] = STATE(3195),
- [sym_generic_type] = STATE(3195),
- [sym_type_query] = STATE(3195),
- [sym_index_type_query] = STATE(3195),
- [sym_lookup_type] = STATE(3195),
- [sym_literal_type] = STATE(3195),
- [sym__number] = STATE(3154),
- [sym_existential_type] = STATE(3195),
- [sym_flow_maybe_type] = STATE(3195),
- [sym_parenthesized_type] = STATE(3195),
- [sym_predefined_type] = STATE(3195),
- [sym_object_type] = STATE(3195),
- [sym_type_parameters] = STATE(5228),
- [sym_array_type] = STATE(3195),
- [sym_tuple_type] = STATE(3195),
- [sym_readonly_type] = STATE(3205),
- [sym_union_type] = STATE(3195),
- [sym_intersection_type] = STATE(3195),
- [sym_function_type] = STATE(3205),
- [sym_identifier] = ACTIONS(1582),
- [anon_sym_STAR] = ACTIONS(992),
- [anon_sym_LBRACE] = ACTIONS(1586),
- [anon_sym_typeof] = ACTIONS(1588),
- [anon_sym_import] = ACTIONS(133),
- [anon_sym_const] = ACTIONS(998),
- [anon_sym_LPAREN] = ACTIONS(1590),
- [anon_sym_LBRACK] = ACTIONS(1592),
- [anon_sym_DQUOTE] = ACTIONS(1594),
- [anon_sym_SQUOTE] = ACTIONS(1596),
- [anon_sym_new] = ACTIONS(1598),
- [anon_sym_AMP] = ACTIONS(1006),
- [anon_sym_PIPE] = ACTIONS(1008),
- [anon_sym_PLUS] = ACTIONS(2977),
- [anon_sym_DASH] = ACTIONS(2977),
- [anon_sym_LT] = ACTIONS(2581),
- [anon_sym_void] = ACTIONS(1038),
- [sym_comment] = ACTIONS(5),
- [anon_sym_BQUOTE] = ACTIONS(1606),
- [sym_number] = ACTIONS(1608),
- [sym_this] = ACTIONS(1610),
- [sym_true] = ACTIONS(1612),
- [sym_false] = ACTIONS(1612),
- [sym_null] = ACTIONS(1612),
- [sym_undefined] = ACTIONS(1612),
- [anon_sym_readonly] = ACTIONS(1614),
- [anon_sym_QMARK] = ACTIONS(1026),
- [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_object] = ACTIONS(1038),
- [anon_sym_abstract] = ACTIONS(1030),
- [anon_sym_infer] = ACTIONS(1032),
- [anon_sym_keyof] = ACTIONS(1034),
- [anon_sym_unique] = ACTIONS(1036),
- [anon_sym_unknown] = ACTIONS(1038),
- [anon_sym_never] = ACTIONS(1038),
- [anon_sym_LBRACE_PIPE] = ACTIONS(1040),
- [sym_html_comment] = ACTIONS(5),
- },
- [1043] = {
- [sym_import] = STATE(5087),
- [sym_nested_identifier] = STATE(5610),
- [sym_string] = STATE(3160),
- [sym_formal_parameters] = STATE(5709),
- [sym_nested_type_identifier] = STATE(3047),
- [sym__type_query_member_expression_in_type_annotation] = STATE(2846),
- [sym__type_query_call_expression_in_type_annotation] = STATE(2850),
- [sym_type] = STATE(4567),
- [sym_constructor_type] = STATE(2896),
- [sym_primary_type] = STATE(3204),
- [sym_template_literal_type] = STATE(3195),
- [sym_infer_type] = STATE(2896),
- [sym_conditional_type] = STATE(3195),
- [sym_generic_type] = STATE(3195),
- [sym_type_query] = STATE(3195),
- [sym_index_type_query] = STATE(3195),
- [sym_lookup_type] = STATE(3195),
- [sym_literal_type] = STATE(3195),
- [sym__number] = STATE(3154),
- [sym_existential_type] = STATE(3195),
- [sym_flow_maybe_type] = STATE(3195),
- [sym_parenthesized_type] = STATE(3195),
- [sym_predefined_type] = STATE(3195),
- [sym_object_type] = STATE(3195),
- [sym_type_parameters] = STATE(5435),
- [sym_array_type] = STATE(3195),
- [sym_tuple_type] = STATE(3195),
- [sym_readonly_type] = STATE(2896),
- [sym_union_type] = STATE(3195),
- [sym_intersection_type] = STATE(3195),
- [sym_function_type] = STATE(2896),
- [sym_identifier] = ACTIONS(1582),
- [anon_sym_STAR] = ACTIONS(992),
- [anon_sym_LBRACE] = ACTIONS(1586),
- [anon_sym_typeof] = ACTIONS(1588),
- [anon_sym_import] = ACTIONS(133),
- [anon_sym_const] = ACTIONS(998),
- [anon_sym_LPAREN] = ACTIONS(1590),
- [anon_sym_LBRACK] = ACTIONS(1592),
- [anon_sym_DQUOTE] = ACTIONS(1594),
- [anon_sym_SQUOTE] = ACTIONS(1596),
- [anon_sym_new] = ACTIONS(1510),
- [anon_sym_AMP] = ACTIONS(1006),
- [anon_sym_PIPE] = ACTIONS(1008),
- [anon_sym_PLUS] = ACTIONS(2977),
- [anon_sym_DASH] = ACTIONS(2977),
- [anon_sym_LT] = ACTIONS(2581),
- [anon_sym_void] = ACTIONS(1038),
- [sym_comment] = ACTIONS(5),
- [anon_sym_BQUOTE] = ACTIONS(1606),
- [sym_number] = ACTIONS(1608),
- [sym_this] = ACTIONS(1610),
- [sym_true] = ACTIONS(1612),
- [sym_false] = ACTIONS(1612),
- [sym_null] = ACTIONS(1612),
- [sym_undefined] = ACTIONS(1612),
- [anon_sym_readonly] = ACTIONS(1524),
- [anon_sym_QMARK] = ACTIONS(1026),
- [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_object] = ACTIONS(1038),
- [anon_sym_abstract] = ACTIONS(212),
- [anon_sym_infer] = ACTIONS(214),
- [anon_sym_keyof] = ACTIONS(1034),
- [anon_sym_unique] = ACTIONS(1036),
- [anon_sym_unknown] = ACTIONS(1038),
- [anon_sym_never] = ACTIONS(1038),
- [anon_sym_LBRACE_PIPE] = ACTIONS(1040),
- [sym_html_comment] = ACTIONS(5),
- },
- [1044] = {
- [sym_import] = STATE(5087),
- [sym_nested_identifier] = STATE(5707),
- [sym_string] = STATE(2889),
- [sym_formal_parameters] = STATE(5709),
- [sym_nested_type_identifier] = STATE(2828),
- [sym__type_query_member_expression_in_type_annotation] = STATE(2846),
- [sym__type_query_call_expression_in_type_annotation] = STATE(2850),
- [sym_type] = STATE(2857),
- [sym_constructor_type] = STATE(2896),
- [sym_primary_type] = STATE(2897),
- [sym_template_literal_type] = STATE(2885),
- [sym_infer_type] = STATE(2896),
- [sym_conditional_type] = STATE(2885),
- [sym_generic_type] = STATE(2885),
- [sym_type_query] = STATE(2885),
- [sym_index_type_query] = STATE(2885),
- [sym_lookup_type] = STATE(2885),
- [sym_literal_type] = STATE(2885),
- [sym__number] = STATE(2903),
- [sym_existential_type] = STATE(2885),
- [sym_flow_maybe_type] = STATE(2885),
- [sym_parenthesized_type] = STATE(2885),
- [sym_predefined_type] = STATE(2885),
- [sym_object_type] = STATE(2885),
- [sym_type_parameters] = STATE(5435),
- [sym_array_type] = STATE(2885),
- [sym_tuple_type] = STATE(2885),
- [sym_readonly_type] = STATE(2896),
- [sym_union_type] = STATE(2885),
- [sym_intersection_type] = STATE(2885),
- [sym_function_type] = STATE(2896),
- [sym_identifier] = ACTIONS(1496),
- [anon_sym_STAR] = ACTIONS(612),
- [anon_sym_LBRACE] = ACTIONS(1498),
- [anon_sym_typeof] = ACTIONS(1500),
- [anon_sym_import] = ACTIONS(133),
- [anon_sym_const] = ACTIONS(135),
- [anon_sym_LPAREN] = ACTIONS(1502),
- [anon_sym_LBRACK] = ACTIONS(1504),
- [anon_sym_DQUOTE] = ACTIONS(1506),
- [anon_sym_SQUOTE] = ACTIONS(1508),
- [anon_sym_new] = ACTIONS(1510),
- [anon_sym_AMP] = ACTIONS(741),
- [anon_sym_PIPE] = ACTIONS(743),
- [anon_sym_PLUS] = ACTIONS(2579),
- [anon_sym_DASH] = ACTIONS(2579),
- [anon_sym_LT] = ACTIONS(2581),
- [anon_sym_void] = ACTIONS(220),
- [sym_comment] = ACTIONS(5),
- [anon_sym_BQUOTE] = ACTIONS(1516),
- [sym_number] = ACTIONS(1518),
- [sym_this] = ACTIONS(1520),
- [sym_true] = ACTIONS(1522),
- [sym_false] = ACTIONS(1522),
- [sym_null] = ACTIONS(1522),
- [sym_undefined] = ACTIONS(1522),
- [anon_sym_readonly] = ACTIONS(1524),
- [anon_sym_QMARK] = ACTIONS(761),
- [anon_sym_any] = ACTIONS(220),
- [anon_sym_number] = ACTIONS(220),
- [anon_sym_boolean] = ACTIONS(220),
- [anon_sym_string] = ACTIONS(220),
- [anon_sym_symbol] = ACTIONS(220),
- [anon_sym_object] = ACTIONS(220),
- [anon_sym_abstract] = ACTIONS(212),
- [anon_sym_infer] = ACTIONS(214),
- [anon_sym_keyof] = ACTIONS(216),
- [anon_sym_unique] = ACTIONS(218),
- [anon_sym_unknown] = ACTIONS(220),
- [anon_sym_never] = ACTIONS(220),
- [anon_sym_LBRACE_PIPE] = ACTIONS(222),
- [sym_html_comment] = ACTIONS(5),
- },
- [1045] = {
- [sym_import] = STATE(5087),
- [sym_nested_identifier] = STATE(5610),
- [sym_string] = STATE(3160),
- [sym_formal_parameters] = STATE(5709),
- [sym_nested_type_identifier] = STATE(3047),
- [sym__type_query_member_expression_in_type_annotation] = STATE(2846),
- [sym__type_query_call_expression_in_type_annotation] = STATE(2850),
- [sym_type] = STATE(4567),
- [sym_constructor_type] = STATE(2896),
- [sym_primary_type] = STATE(3146),
- [sym_template_literal_type] = STATE(3195),
- [sym_infer_type] = STATE(2896),
- [sym_conditional_type] = STATE(3195),
- [sym_generic_type] = STATE(3195),
- [sym_type_query] = STATE(3195),
- [sym_index_type_query] = STATE(3195),
- [sym_lookup_type] = STATE(3195),
- [sym_literal_type] = STATE(3195),
- [sym__number] = STATE(3154),
- [sym_existential_type] = STATE(3195),
- [sym_flow_maybe_type] = STATE(3195),
- [sym_parenthesized_type] = STATE(3195),
- [sym_predefined_type] = STATE(3195),
- [sym_object_type] = STATE(3195),
- [sym_type_parameters] = STATE(5435),
- [sym_array_type] = STATE(3195),
- [sym_tuple_type] = STATE(3195),
- [sym_readonly_type] = STATE(2896),
- [sym_union_type] = STATE(3195),
- [sym_intersection_type] = STATE(3195),
- [sym_function_type] = STATE(2896),
- [sym_identifier] = ACTIONS(1582),
- [anon_sym_STAR] = ACTIONS(992),
- [anon_sym_LBRACE] = ACTIONS(1586),
- [anon_sym_typeof] = ACTIONS(1588),
- [anon_sym_import] = ACTIONS(133),
- [anon_sym_const] = ACTIONS(998),
- [anon_sym_LPAREN] = ACTIONS(1590),
- [anon_sym_LBRACK] = ACTIONS(1592),
- [anon_sym_DQUOTE] = ACTIONS(1594),
- [anon_sym_SQUOTE] = ACTIONS(1596),
- [anon_sym_new] = ACTIONS(1510),
- [anon_sym_AMP] = ACTIONS(1006),
- [anon_sym_PIPE] = ACTIONS(1008),
- [anon_sym_PLUS] = ACTIONS(2977),
- [anon_sym_DASH] = ACTIONS(2977),
- [anon_sym_LT] = ACTIONS(2581),
- [anon_sym_void] = ACTIONS(1038),
- [sym_comment] = ACTIONS(5),
- [anon_sym_BQUOTE] = ACTIONS(1606),
- [sym_number] = ACTIONS(1608),
- [sym_this] = ACTIONS(1610),
- [sym_true] = ACTIONS(1612),
- [sym_false] = ACTIONS(1612),
- [sym_null] = ACTIONS(1612),
- [sym_undefined] = ACTIONS(1612),
- [anon_sym_readonly] = ACTIONS(1524),
- [anon_sym_QMARK] = ACTIONS(1026),
- [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_object] = ACTIONS(1038),
- [anon_sym_abstract] = ACTIONS(212),
- [anon_sym_infer] = ACTIONS(214),
- [anon_sym_keyof] = ACTIONS(1034),
- [anon_sym_unique] = ACTIONS(1036),
- [anon_sym_unknown] = ACTIONS(1038),
- [anon_sym_never] = ACTIONS(1038),
- [anon_sym_LBRACE_PIPE] = ACTIONS(1040),
- [sym_html_comment] = ACTIONS(5),
- },
- [1046] = {
- [sym_import] = STATE(5087),
- [sym_nested_identifier] = STATE(5707),
- [sym_string] = STATE(2889),
- [sym_formal_parameters] = STATE(5709),
- [sym_nested_type_identifier] = STATE(2828),
- [sym__type_query_member_expression_in_type_annotation] = STATE(2846),
- [sym__type_query_call_expression_in_type_annotation] = STATE(2850),
- [sym_type] = STATE(4434),
- [sym_constructor_type] = STATE(2896),
- [sym_primary_type] = STATE(2897),
- [sym_template_literal_type] = STATE(2885),
- [sym_infer_type] = STATE(2896),
- [sym_conditional_type] = STATE(2885),
- [sym_generic_type] = STATE(2885),
- [sym_type_query] = STATE(2885),
- [sym_index_type_query] = STATE(2885),
- [sym_lookup_type] = STATE(2885),
- [sym_literal_type] = STATE(2885),
- [sym__number] = STATE(2903),
- [sym_existential_type] = STATE(2885),
- [sym_flow_maybe_type] = STATE(2885),
- [sym_parenthesized_type] = STATE(2885),
- [sym_predefined_type] = STATE(2885),
- [sym_object_type] = STATE(2885),
- [sym_type_parameters] = STATE(5435),
- [sym_array_type] = STATE(2885),
- [sym_tuple_type] = STATE(2885),
- [sym_readonly_type] = STATE(2896),
- [sym_union_type] = STATE(2885),
- [sym_intersection_type] = STATE(2885),
- [sym_function_type] = STATE(2896),
- [sym_identifier] = ACTIONS(1496),
- [anon_sym_STAR] = ACTIONS(612),
- [anon_sym_LBRACE] = ACTIONS(1498),
- [anon_sym_typeof] = ACTIONS(1500),
- [anon_sym_import] = ACTIONS(133),
- [anon_sym_const] = ACTIONS(135),
- [anon_sym_LPAREN] = ACTIONS(1502),
- [anon_sym_LBRACK] = ACTIONS(1504),
- [anon_sym_DQUOTE] = ACTIONS(1506),
- [anon_sym_SQUOTE] = ACTIONS(1508),
- [anon_sym_new] = ACTIONS(1510),
- [anon_sym_AMP] = ACTIONS(741),
- [anon_sym_PIPE] = ACTIONS(743),
- [anon_sym_PLUS] = ACTIONS(2579),
- [anon_sym_DASH] = ACTIONS(2579),
- [anon_sym_LT] = ACTIONS(2581),
- [anon_sym_void] = ACTIONS(220),
- [sym_comment] = ACTIONS(5),
- [anon_sym_BQUOTE] = ACTIONS(1516),
- [sym_number] = ACTIONS(1518),
- [sym_this] = ACTIONS(1520),
- [sym_true] = ACTIONS(1522),
- [sym_false] = ACTIONS(1522),
- [sym_null] = ACTIONS(1522),
- [sym_undefined] = ACTIONS(1522),
- [anon_sym_readonly] = ACTIONS(1524),
- [anon_sym_QMARK] = ACTIONS(761),
- [anon_sym_any] = ACTIONS(220),
- [anon_sym_number] = ACTIONS(220),
- [anon_sym_boolean] = ACTIONS(220),
- [anon_sym_string] = ACTIONS(220),
- [anon_sym_symbol] = ACTIONS(220),
- [anon_sym_object] = ACTIONS(220),
- [anon_sym_abstract] = ACTIONS(212),
- [anon_sym_infer] = ACTIONS(214),
- [anon_sym_keyof] = ACTIONS(216),
- [anon_sym_unique] = ACTIONS(218),
- [anon_sym_unknown] = ACTIONS(220),
- [anon_sym_never] = ACTIONS(220),
- [anon_sym_LBRACE_PIPE] = ACTIONS(222),
- [sym_html_comment] = ACTIONS(5),
- },
- [1047] = {
- [sym_import] = STATE(5087),
- [sym_nested_identifier] = STATE(5707),
- [sym_string] = STATE(2889),
- [sym_formal_parameters] = STATE(5709),
- [sym_nested_type_identifier] = STATE(2828),
- [sym__type_query_member_expression_in_type_annotation] = STATE(2846),
- [sym__type_query_call_expression_in_type_annotation] = STATE(2850),
- [sym_type] = STATE(2915),
- [sym_constructor_type] = STATE(2896),
- [sym_primary_type] = STATE(2897),
- [sym_template_literal_type] = STATE(2885),
- [sym_infer_type] = STATE(2896),
- [sym_conditional_type] = STATE(2885),
- [sym_generic_type] = STATE(2885),
- [sym_type_query] = STATE(2885),
- [sym_index_type_query] = STATE(2885),
- [sym_lookup_type] = STATE(2885),
- [sym_literal_type] = STATE(2885),
- [sym__number] = STATE(2903),
- [sym_existential_type] = STATE(2885),
- [sym_flow_maybe_type] = STATE(2885),
- [sym_parenthesized_type] = STATE(2885),
- [sym_predefined_type] = STATE(2885),
- [sym_object_type] = STATE(2885),
- [sym_type_parameters] = STATE(5435),
- [sym_array_type] = STATE(2885),
- [sym_tuple_type] = STATE(2885),
- [sym_readonly_type] = STATE(2896),
- [sym_union_type] = STATE(2885),
- [sym_intersection_type] = STATE(2885),
- [sym_function_type] = STATE(2896),
- [sym_identifier] = ACTIONS(1496),
- [anon_sym_STAR] = ACTIONS(612),
- [anon_sym_LBRACE] = ACTIONS(1498),
- [anon_sym_typeof] = ACTIONS(1500),
- [anon_sym_import] = ACTIONS(133),
- [anon_sym_const] = ACTIONS(135),
- [anon_sym_LPAREN] = ACTIONS(1502),
- [anon_sym_LBRACK] = ACTIONS(1504),
- [anon_sym_DQUOTE] = ACTIONS(1506),
- [anon_sym_SQUOTE] = ACTIONS(1508),
- [anon_sym_new] = ACTIONS(1510),
- [anon_sym_AMP] = ACTIONS(741),
- [anon_sym_PIPE] = ACTIONS(743),
- [anon_sym_PLUS] = ACTIONS(2579),
- [anon_sym_DASH] = ACTIONS(2579),
- [anon_sym_LT] = ACTIONS(2581),
- [anon_sym_void] = ACTIONS(220),
- [sym_comment] = ACTIONS(5),
- [anon_sym_BQUOTE] = ACTIONS(1516),
- [sym_number] = ACTIONS(1518),
- [sym_this] = ACTIONS(1520),
- [sym_true] = ACTIONS(1522),
- [sym_false] = ACTIONS(1522),
- [sym_null] = ACTIONS(1522),
- [sym_undefined] = ACTIONS(1522),
- [anon_sym_readonly] = ACTIONS(1524),
- [anon_sym_QMARK] = ACTIONS(761),
- [anon_sym_any] = ACTIONS(220),
- [anon_sym_number] = ACTIONS(220),
- [anon_sym_boolean] = ACTIONS(220),
- [anon_sym_string] = ACTIONS(220),
- [anon_sym_symbol] = ACTIONS(220),
- [anon_sym_object] = ACTIONS(220),
- [anon_sym_abstract] = ACTIONS(212),
- [anon_sym_infer] = ACTIONS(214),
- [anon_sym_keyof] = ACTIONS(216),
- [anon_sym_unique] = ACTIONS(218),
- [anon_sym_unknown] = ACTIONS(220),
- [anon_sym_never] = ACTIONS(220),
- [anon_sym_LBRACE_PIPE] = ACTIONS(222),
- [sym_html_comment] = ACTIONS(5),
- },
- [1048] = {
- [sym_import] = STATE(5087),
- [sym_nested_identifier] = STATE(5707),
- [sym_string] = STATE(2889),
- [sym_formal_parameters] = STATE(5709),
- [sym_nested_type_identifier] = STATE(2828),
- [sym__type_query_member_expression_in_type_annotation] = STATE(2846),
- [sym__type_query_call_expression_in_type_annotation] = STATE(2850),
- [sym_type] = STATE(3050),
- [sym_constructor_type] = STATE(2896),
- [sym_primary_type] = STATE(2897),
- [sym_template_literal_type] = STATE(2885),
- [sym_infer_type] = STATE(2896),
- [sym_conditional_type] = STATE(2885),
- [sym_generic_type] = STATE(2885),
- [sym_type_query] = STATE(2885),
- [sym_index_type_query] = STATE(2885),
- [sym_lookup_type] = STATE(2885),
- [sym_literal_type] = STATE(2885),
- [sym__number] = STATE(2903),
- [sym_existential_type] = STATE(2885),
- [sym_flow_maybe_type] = STATE(2885),
- [sym_parenthesized_type] = STATE(2885),
- [sym_predefined_type] = STATE(2885),
- [sym_object_type] = STATE(2885),
- [sym_type_parameters] = STATE(5435),
- [sym_array_type] = STATE(2885),
- [sym_tuple_type] = STATE(2885),
- [sym_readonly_type] = STATE(2896),
- [sym_union_type] = STATE(2885),
- [sym_intersection_type] = STATE(2885),
- [sym_function_type] = STATE(2896),
- [sym_identifier] = ACTIONS(1496),
- [anon_sym_STAR] = ACTIONS(612),
- [anon_sym_LBRACE] = ACTIONS(1498),
- [anon_sym_typeof] = ACTIONS(1500),
- [anon_sym_import] = ACTIONS(133),
- [anon_sym_const] = ACTIONS(135),
- [anon_sym_LPAREN] = ACTIONS(1502),
- [anon_sym_LBRACK] = ACTIONS(1504),
- [anon_sym_DQUOTE] = ACTIONS(1506),
- [anon_sym_SQUOTE] = ACTIONS(1508),
- [anon_sym_new] = ACTIONS(1510),
- [anon_sym_AMP] = ACTIONS(741),
- [anon_sym_PIPE] = ACTIONS(743),
- [anon_sym_PLUS] = ACTIONS(2579),
- [anon_sym_DASH] = ACTIONS(2579),
- [anon_sym_LT] = ACTIONS(2581),
- [anon_sym_void] = ACTIONS(220),
- [sym_comment] = ACTIONS(5),
- [anon_sym_BQUOTE] = ACTIONS(1516),
- [sym_number] = ACTIONS(1518),
- [sym_this] = ACTIONS(1520),
- [sym_true] = ACTIONS(1522),
- [sym_false] = ACTIONS(1522),
- [sym_null] = ACTIONS(1522),
- [sym_undefined] = ACTIONS(1522),
- [anon_sym_readonly] = ACTIONS(1524),
- [anon_sym_QMARK] = ACTIONS(761),
- [anon_sym_any] = ACTIONS(220),
- [anon_sym_number] = ACTIONS(220),
- [anon_sym_boolean] = ACTIONS(220),
- [anon_sym_string] = ACTIONS(220),
- [anon_sym_symbol] = ACTIONS(220),
- [anon_sym_object] = ACTIONS(220),
- [anon_sym_abstract] = ACTIONS(212),
- [anon_sym_infer] = ACTIONS(214),
- [anon_sym_keyof] = ACTIONS(216),
- [anon_sym_unique] = ACTIONS(218),
- [anon_sym_unknown] = ACTIONS(220),
- [anon_sym_never] = ACTIONS(220),
- [anon_sym_LBRACE_PIPE] = ACTIONS(222),
- [sym_html_comment] = ACTIONS(5),
- },
- [1049] = {
- [sym_import] = STATE(5087),
- [sym_nested_identifier] = STATE(5707),
- [sym_string] = STATE(2889),
- [sym_formal_parameters] = STATE(5709),
- [sym_nested_type_identifier] = STATE(2828),
- [sym__type_query_member_expression_in_type_annotation] = STATE(2846),
- [sym__type_query_call_expression_in_type_annotation] = STATE(2850),
- [sym_type] = STATE(3019),
- [sym_constructor_type] = STATE(2896),
- [sym_primary_type] = STATE(2897),
- [sym_template_literal_type] = STATE(2885),
- [sym_infer_type] = STATE(2896),
- [sym_conditional_type] = STATE(2885),
- [sym_generic_type] = STATE(2885),
- [sym_type_query] = STATE(2885),
- [sym_index_type_query] = STATE(2885),
- [sym_lookup_type] = STATE(2885),
- [sym_literal_type] = STATE(2885),
- [sym__number] = STATE(2903),
- [sym_existential_type] = STATE(2885),
- [sym_flow_maybe_type] = STATE(2885),
- [sym_parenthesized_type] = STATE(2885),
- [sym_predefined_type] = STATE(2885),
- [sym_object_type] = STATE(2885),
- [sym_type_parameters] = STATE(5435),
- [sym_array_type] = STATE(2885),
- [sym_tuple_type] = STATE(2885),
- [sym_readonly_type] = STATE(2896),
- [sym_union_type] = STATE(2885),
- [sym_intersection_type] = STATE(2885),
- [sym_function_type] = STATE(2896),
- [sym_identifier] = ACTIONS(1496),
- [anon_sym_STAR] = ACTIONS(612),
- [anon_sym_LBRACE] = ACTIONS(1498),
- [anon_sym_typeof] = ACTIONS(1500),
- [anon_sym_import] = ACTIONS(133),
- [anon_sym_const] = ACTIONS(135),
- [anon_sym_LPAREN] = ACTIONS(1502),
- [anon_sym_LBRACK] = ACTIONS(1504),
- [anon_sym_DQUOTE] = ACTIONS(1506),
- [anon_sym_SQUOTE] = ACTIONS(1508),
- [anon_sym_new] = ACTIONS(1510),
- [anon_sym_AMP] = ACTIONS(741),
- [anon_sym_PIPE] = ACTIONS(743),
- [anon_sym_PLUS] = ACTIONS(2579),
- [anon_sym_DASH] = ACTIONS(2579),
- [anon_sym_LT] = ACTIONS(2581),
- [anon_sym_void] = ACTIONS(220),
- [sym_comment] = ACTIONS(5),
- [anon_sym_BQUOTE] = ACTIONS(1516),
- [sym_number] = ACTIONS(1518),
- [sym_this] = ACTIONS(1520),
- [sym_true] = ACTIONS(1522),
- [sym_false] = ACTIONS(1522),
- [sym_null] = ACTIONS(1522),
- [sym_undefined] = ACTIONS(1522),
- [anon_sym_readonly] = ACTIONS(1524),
- [anon_sym_QMARK] = ACTIONS(761),
- [anon_sym_any] = ACTIONS(220),
- [anon_sym_number] = ACTIONS(220),
- [anon_sym_boolean] = ACTIONS(220),
- [anon_sym_string] = ACTIONS(220),
- [anon_sym_symbol] = ACTIONS(220),
- [anon_sym_object] = ACTIONS(220),
- [anon_sym_abstract] = ACTIONS(212),
- [anon_sym_infer] = ACTIONS(214),
- [anon_sym_keyof] = ACTIONS(216),
- [anon_sym_unique] = ACTIONS(218),
- [anon_sym_unknown] = ACTIONS(220),
- [anon_sym_never] = ACTIONS(220),
- [anon_sym_LBRACE_PIPE] = ACTIONS(222),
- [sym_html_comment] = ACTIONS(5),
- },
- [1050] = {
- [sym_import] = STATE(5087),
- [sym_nested_identifier] = STATE(5707),
- [sym_string] = STATE(2889),
- [sym_formal_parameters] = STATE(5709),
- [sym_nested_type_identifier] = STATE(2828),
- [sym__type_query_member_expression_in_type_annotation] = STATE(2846),
- [sym__type_query_call_expression_in_type_annotation] = STATE(2850),
- [sym_type] = STATE(3014),
- [sym_constructor_type] = STATE(2896),
- [sym_primary_type] = STATE(2897),
- [sym_template_literal_type] = STATE(2885),
- [sym_infer_type] = STATE(2896),
- [sym_conditional_type] = STATE(2885),
- [sym_generic_type] = STATE(2885),
- [sym_type_query] = STATE(2885),
- [sym_index_type_query] = STATE(2885),
- [sym_lookup_type] = STATE(2885),
- [sym_literal_type] = STATE(2885),
- [sym__number] = STATE(2903),
- [sym_existential_type] = STATE(2885),
- [sym_flow_maybe_type] = STATE(2885),
- [sym_parenthesized_type] = STATE(2885),
- [sym_predefined_type] = STATE(2885),
- [sym_object_type] = STATE(2885),
- [sym_type_parameters] = STATE(5435),
- [sym_array_type] = STATE(2885),
- [sym_tuple_type] = STATE(2885),
- [sym_readonly_type] = STATE(2896),
- [sym_union_type] = STATE(2885),
- [sym_intersection_type] = STATE(2885),
- [sym_function_type] = STATE(2896),
- [sym_identifier] = ACTIONS(1496),
- [anon_sym_STAR] = ACTIONS(612),
- [anon_sym_LBRACE] = ACTIONS(1498),
- [anon_sym_typeof] = ACTIONS(1500),
- [anon_sym_import] = ACTIONS(133),
- [anon_sym_const] = ACTIONS(135),
- [anon_sym_LPAREN] = ACTIONS(1502),
- [anon_sym_LBRACK] = ACTIONS(1504),
- [anon_sym_DQUOTE] = ACTIONS(1506),
- [anon_sym_SQUOTE] = ACTIONS(1508),
- [anon_sym_new] = ACTIONS(1510),
- [anon_sym_AMP] = ACTIONS(741),
- [anon_sym_PIPE] = ACTIONS(743),
- [anon_sym_PLUS] = ACTIONS(2579),
- [anon_sym_DASH] = ACTIONS(2579),
- [anon_sym_LT] = ACTIONS(2581),
- [anon_sym_void] = ACTIONS(220),
- [sym_comment] = ACTIONS(5),
- [anon_sym_BQUOTE] = ACTIONS(1516),
- [sym_number] = ACTIONS(1518),
- [sym_this] = ACTIONS(1520),
- [sym_true] = ACTIONS(1522),
- [sym_false] = ACTIONS(1522),
- [sym_null] = ACTIONS(1522),
- [sym_undefined] = ACTIONS(1522),
- [anon_sym_readonly] = ACTIONS(1524),
- [anon_sym_QMARK] = ACTIONS(761),
- [anon_sym_any] = ACTIONS(220),
- [anon_sym_number] = ACTIONS(220),
- [anon_sym_boolean] = ACTIONS(220),
- [anon_sym_string] = ACTIONS(220),
- [anon_sym_symbol] = ACTIONS(220),
- [anon_sym_object] = ACTIONS(220),
- [anon_sym_abstract] = ACTIONS(212),
- [anon_sym_infer] = ACTIONS(214),
- [anon_sym_keyof] = ACTIONS(216),
- [anon_sym_unique] = ACTIONS(218),
- [anon_sym_unknown] = ACTIONS(220),
- [anon_sym_never] = ACTIONS(220),
- [anon_sym_LBRACE_PIPE] = ACTIONS(222),
- [sym_html_comment] = ACTIONS(5),
- },
- [1051] = {
- [sym_import] = STATE(5087),
- [sym_nested_identifier] = STATE(5707),
- [sym_string] = STATE(2889),
- [sym_formal_parameters] = STATE(5709),
- [sym_nested_type_identifier] = STATE(2828),
- [sym__type_query_member_expression_in_type_annotation] = STATE(2846),
- [sym__type_query_call_expression_in_type_annotation] = STATE(2850),
- [sym_type] = STATE(5076),
- [sym_constructor_type] = STATE(2896),
- [sym_primary_type] = STATE(2858),
- [sym_template_literal_type] = STATE(2885),
- [sym_infer_type] = STATE(2896),
- [sym_conditional_type] = STATE(2885),
- [sym_generic_type] = STATE(2885),
- [sym_type_query] = STATE(2885),
- [sym_index_type_query] = STATE(2885),
- [sym_lookup_type] = STATE(2885),
- [sym_literal_type] = STATE(2885),
- [sym__number] = STATE(2903),
- [sym_existential_type] = STATE(2885),
- [sym_flow_maybe_type] = STATE(2885),
- [sym_parenthesized_type] = STATE(2885),
- [sym_predefined_type] = STATE(2885),
- [sym_object_type] = STATE(2885),
- [sym_type_parameters] = STATE(5435),
- [sym_array_type] = STATE(2885),
- [sym_tuple_type] = STATE(2885),
- [sym_readonly_type] = STATE(2896),
- [sym_union_type] = STATE(2885),
- [sym_intersection_type] = STATE(2885),
- [sym_function_type] = STATE(2896),
- [sym_identifier] = ACTIONS(1496),
- [anon_sym_STAR] = ACTIONS(612),
- [anon_sym_LBRACE] = ACTIONS(1498),
- [anon_sym_typeof] = ACTIONS(1500),
- [anon_sym_import] = ACTIONS(133),
- [anon_sym_const] = ACTIONS(135),
- [anon_sym_LPAREN] = ACTIONS(1502),
- [anon_sym_LBRACK] = ACTIONS(1504),
- [anon_sym_DQUOTE] = ACTIONS(1506),
- [anon_sym_SQUOTE] = ACTIONS(1508),
- [anon_sym_new] = ACTIONS(1510),
- [anon_sym_AMP] = ACTIONS(741),
- [anon_sym_PIPE] = ACTIONS(743),
- [anon_sym_PLUS] = ACTIONS(2579),
- [anon_sym_DASH] = ACTIONS(2579),
- [anon_sym_LT] = ACTIONS(2581),
- [anon_sym_void] = ACTIONS(220),
- [sym_comment] = ACTIONS(5),
- [anon_sym_BQUOTE] = ACTIONS(1516),
- [sym_number] = ACTIONS(1518),
- [sym_this] = ACTIONS(1520),
- [sym_true] = ACTIONS(1522),
- [sym_false] = ACTIONS(1522),
- [sym_null] = ACTIONS(1522),
- [sym_undefined] = ACTIONS(1522),
- [anon_sym_readonly] = ACTIONS(1524),
- [anon_sym_QMARK] = ACTIONS(761),
- [anon_sym_any] = ACTIONS(220),
- [anon_sym_number] = ACTIONS(220),
- [anon_sym_boolean] = ACTIONS(220),
- [anon_sym_string] = ACTIONS(220),
- [anon_sym_symbol] = ACTIONS(220),
- [anon_sym_object] = ACTIONS(220),
- [anon_sym_abstract] = ACTIONS(212),
- [anon_sym_infer] = ACTIONS(214),
- [anon_sym_keyof] = ACTIONS(216),
- [anon_sym_unique] = ACTIONS(218),
- [anon_sym_unknown] = ACTIONS(220),
- [anon_sym_never] = ACTIONS(220),
- [anon_sym_LBRACE_PIPE] = ACTIONS(222),
- [sym_html_comment] = ACTIONS(5),
- },
- [1052] = {
- [sym_import] = STATE(5087),
- [sym_nested_identifier] = STATE(5707),
- [sym_string] = STATE(2889),
- [sym_formal_parameters] = STATE(5709),
- [sym_nested_type_identifier] = STATE(2828),
- [sym__type_query_member_expression_in_type_annotation] = STATE(2846),
- [sym__type_query_call_expression_in_type_annotation] = STATE(2850),
- [sym_type] = STATE(5076),
- [sym_constructor_type] = STATE(2896),
- [sym_primary_type] = STATE(2860),
- [sym_template_literal_type] = STATE(2885),
- [sym_infer_type] = STATE(2896),
- [sym_conditional_type] = STATE(2885),
- [sym_generic_type] = STATE(2885),
- [sym_type_query] = STATE(2885),
- [sym_index_type_query] = STATE(2885),
- [sym_lookup_type] = STATE(2885),
- [sym_literal_type] = STATE(2885),
- [sym__number] = STATE(2903),
- [sym_existential_type] = STATE(2885),
- [sym_flow_maybe_type] = STATE(2885),
- [sym_parenthesized_type] = STATE(2885),
- [sym_predefined_type] = STATE(2885),
- [sym_object_type] = STATE(2885),
- [sym_type_parameters] = STATE(5435),
- [sym_array_type] = STATE(2885),
- [sym_tuple_type] = STATE(2885),
- [sym_readonly_type] = STATE(2896),
- [sym_union_type] = STATE(2885),
- [sym_intersection_type] = STATE(2885),
- [sym_function_type] = STATE(2896),
- [sym_identifier] = ACTIONS(1496),
- [anon_sym_STAR] = ACTIONS(612),
- [anon_sym_LBRACE] = ACTIONS(1498),
- [anon_sym_typeof] = ACTIONS(1500),
- [anon_sym_import] = ACTIONS(133),
- [anon_sym_const] = ACTIONS(135),
- [anon_sym_LPAREN] = ACTIONS(1502),
- [anon_sym_LBRACK] = ACTIONS(1504),
- [anon_sym_DQUOTE] = ACTIONS(1506),
- [anon_sym_SQUOTE] = ACTIONS(1508),
- [anon_sym_new] = ACTIONS(1510),
- [anon_sym_AMP] = ACTIONS(741),
- [anon_sym_PIPE] = ACTIONS(743),
- [anon_sym_PLUS] = ACTIONS(2579),
- [anon_sym_DASH] = ACTIONS(2579),
- [anon_sym_LT] = ACTIONS(2581),
- [anon_sym_void] = ACTIONS(220),
- [sym_comment] = ACTIONS(5),
- [anon_sym_BQUOTE] = ACTIONS(1516),
- [sym_number] = ACTIONS(1518),
- [sym_this] = ACTIONS(1520),
- [sym_true] = ACTIONS(1522),
- [sym_false] = ACTIONS(1522),
- [sym_null] = ACTIONS(1522),
- [sym_undefined] = ACTIONS(1522),
- [anon_sym_readonly] = ACTIONS(1524),
- [anon_sym_QMARK] = ACTIONS(761),
- [anon_sym_any] = ACTIONS(220),
- [anon_sym_number] = ACTIONS(220),
- [anon_sym_boolean] = ACTIONS(220),
- [anon_sym_string] = ACTIONS(220),
- [anon_sym_symbol] = ACTIONS(220),
- [anon_sym_object] = ACTIONS(220),
- [anon_sym_abstract] = ACTIONS(212),
- [anon_sym_infer] = ACTIONS(214),
- [anon_sym_keyof] = ACTIONS(216),
- [anon_sym_unique] = ACTIONS(218),
- [anon_sym_unknown] = ACTIONS(220),
- [anon_sym_never] = ACTIONS(220),
- [anon_sym_LBRACE_PIPE] = ACTIONS(222),
- [sym_html_comment] = ACTIONS(5),
- },
- [1053] = {
- [sym_import] = STATE(5087),
- [sym_nested_identifier] = STATE(5707),
- [sym_string] = STATE(2889),
- [sym_formal_parameters] = STATE(5709),
- [sym_nested_type_identifier] = STATE(2828),
- [sym__type_query_member_expression_in_type_annotation] = STATE(2846),
- [sym__type_query_call_expression_in_type_annotation] = STATE(2850),
- [sym_type] = STATE(3961),
- [sym_constructor_type] = STATE(2896),
- [sym_primary_type] = STATE(2897),
- [sym_template_literal_type] = STATE(2885),
- [sym_infer_type] = STATE(2896),
- [sym_conditional_type] = STATE(2885),
- [sym_generic_type] = STATE(2885),
- [sym_type_query] = STATE(2885),
- [sym_index_type_query] = STATE(2885),
- [sym_lookup_type] = STATE(2885),
- [sym_literal_type] = STATE(2885),
- [sym__number] = STATE(2903),
- [sym_existential_type] = STATE(2885),
- [sym_flow_maybe_type] = STATE(2885),
- [sym_parenthesized_type] = STATE(2885),
- [sym_predefined_type] = STATE(2885),
- [sym_object_type] = STATE(2885),
- [sym_type_parameters] = STATE(5435),
- [sym_array_type] = STATE(2885),
- [sym_tuple_type] = STATE(2885),
- [sym_readonly_type] = STATE(2896),
- [sym_union_type] = STATE(2885),
- [sym_intersection_type] = STATE(2885),
- [sym_function_type] = STATE(2896),
- [sym_identifier] = ACTIONS(1496),
- [anon_sym_STAR] = ACTIONS(612),
- [anon_sym_LBRACE] = ACTIONS(1498),
- [anon_sym_typeof] = ACTIONS(1500),
- [anon_sym_import] = ACTIONS(133),
- [anon_sym_const] = ACTIONS(135),
- [anon_sym_LPAREN] = ACTIONS(1502),
- [anon_sym_LBRACK] = ACTIONS(1504),
- [anon_sym_DQUOTE] = ACTIONS(1506),
- [anon_sym_SQUOTE] = ACTIONS(1508),
- [anon_sym_new] = ACTIONS(1510),
- [anon_sym_AMP] = ACTIONS(741),
- [anon_sym_PIPE] = ACTIONS(743),
- [anon_sym_PLUS] = ACTIONS(2579),
- [anon_sym_DASH] = ACTIONS(2579),
- [anon_sym_LT] = ACTIONS(2581),
- [anon_sym_void] = ACTIONS(220),
- [sym_comment] = ACTIONS(5),
- [anon_sym_BQUOTE] = ACTIONS(1516),
- [sym_number] = ACTIONS(1518),
- [sym_this] = ACTIONS(1520),
- [sym_true] = ACTIONS(1522),
- [sym_false] = ACTIONS(1522),
- [sym_null] = ACTIONS(1522),
- [sym_undefined] = ACTIONS(1522),
- [anon_sym_readonly] = ACTIONS(1524),
- [anon_sym_QMARK] = ACTIONS(761),
- [anon_sym_any] = ACTIONS(220),
- [anon_sym_number] = ACTIONS(220),
- [anon_sym_boolean] = ACTIONS(220),
- [anon_sym_string] = ACTIONS(220),
- [anon_sym_symbol] = ACTIONS(220),
- [anon_sym_object] = ACTIONS(220),
- [anon_sym_abstract] = ACTIONS(212),
- [anon_sym_infer] = ACTIONS(214),
- [anon_sym_keyof] = ACTIONS(216),
- [anon_sym_unique] = ACTIONS(218),
- [anon_sym_unknown] = ACTIONS(220),
- [anon_sym_never] = ACTIONS(220),
- [anon_sym_LBRACE_PIPE] = ACTIONS(222),
- [sym_html_comment] = ACTIONS(5),
- },
- [1054] = {
- [sym_import] = STATE(5087),
- [sym_nested_identifier] = STATE(5707),
- [sym_string] = STATE(2889),
- [sym_formal_parameters] = STATE(5709),
- [sym_nested_type_identifier] = STATE(2828),
- [sym__type_query_member_expression_in_type_annotation] = STATE(2846),
- [sym__type_query_call_expression_in_type_annotation] = STATE(2850),
- [sym_type] = STATE(3738),
- [sym_constructor_type] = STATE(2896),
- [sym_primary_type] = STATE(2897),
- [sym_template_literal_type] = STATE(2885),
- [sym_infer_type] = STATE(2896),
- [sym_conditional_type] = STATE(2885),
- [sym_generic_type] = STATE(2885),
- [sym_type_query] = STATE(2885),
- [sym_index_type_query] = STATE(2885),
- [sym_lookup_type] = STATE(2885),
- [sym_literal_type] = STATE(2885),
- [sym__number] = STATE(2903),
- [sym_existential_type] = STATE(2885),
- [sym_flow_maybe_type] = STATE(2885),
- [sym_parenthesized_type] = STATE(2885),
- [sym_predefined_type] = STATE(2885),
- [sym_object_type] = STATE(2885),
- [sym_type_parameters] = STATE(5435),
- [sym_array_type] = STATE(2885),
- [sym_tuple_type] = STATE(2885),
- [sym_readonly_type] = STATE(2896),
- [sym_union_type] = STATE(2885),
- [sym_intersection_type] = STATE(2885),
- [sym_function_type] = STATE(2896),
- [sym_identifier] = ACTIONS(1496),
- [anon_sym_STAR] = ACTIONS(612),
- [anon_sym_LBRACE] = ACTIONS(1498),
- [anon_sym_typeof] = ACTIONS(1500),
- [anon_sym_import] = ACTIONS(133),
- [anon_sym_const] = ACTIONS(135),
- [anon_sym_LPAREN] = ACTIONS(1502),
- [anon_sym_LBRACK] = ACTIONS(1504),
- [anon_sym_DQUOTE] = ACTIONS(1506),
- [anon_sym_SQUOTE] = ACTIONS(1508),
- [anon_sym_new] = ACTIONS(1510),
- [anon_sym_AMP] = ACTIONS(741),
- [anon_sym_PIPE] = ACTIONS(743),
- [anon_sym_PLUS] = ACTIONS(2579),
- [anon_sym_DASH] = ACTIONS(2579),
- [anon_sym_LT] = ACTIONS(2581),
- [anon_sym_void] = ACTIONS(220),
- [sym_comment] = ACTIONS(5),
- [anon_sym_BQUOTE] = ACTIONS(1516),
- [sym_number] = ACTIONS(1518),
- [sym_this] = ACTIONS(1520),
- [sym_true] = ACTIONS(1522),
- [sym_false] = ACTIONS(1522),
- [sym_null] = ACTIONS(1522),
- [sym_undefined] = ACTIONS(1522),
- [anon_sym_readonly] = ACTIONS(1524),
- [anon_sym_QMARK] = ACTIONS(761),
- [anon_sym_any] = ACTIONS(220),
- [anon_sym_number] = ACTIONS(220),
- [anon_sym_boolean] = ACTIONS(220),
- [anon_sym_string] = ACTIONS(220),
- [anon_sym_symbol] = ACTIONS(220),
- [anon_sym_object] = ACTIONS(220),
- [anon_sym_abstract] = ACTIONS(212),
- [anon_sym_infer] = ACTIONS(214),
- [anon_sym_keyof] = ACTIONS(216),
- [anon_sym_unique] = ACTIONS(218),
- [anon_sym_unknown] = ACTIONS(220),
- [anon_sym_never] = ACTIONS(220),
- [anon_sym_LBRACE_PIPE] = ACTIONS(222),
- [sym_html_comment] = ACTIONS(5),
- },
- [1055] = {
- [sym_import] = STATE(4606),
- [sym_nested_identifier] = STATE(5653),
- [sym_string] = STATE(1545),
- [sym_formal_parameters] = STATE(5840),
- [sym_nested_type_identifier] = STATE(1441),
- [sym__type_query_member_expression_in_type_annotation] = STATE(1440),
- [sym__type_query_call_expression_in_type_annotation] = STATE(1555),
- [sym_type] = STATE(1536),
- [sym_constructor_type] = STATE(1556),
- [sym_primary_type] = STATE(1565),
- [sym_template_literal_type] = STATE(1540),
- [sym_infer_type] = STATE(1556),
- [sym_conditional_type] = STATE(1540),
- [sym_generic_type] = STATE(1540),
- [sym_type_query] = STATE(1540),
- [sym_index_type_query] = STATE(1540),
- [sym_lookup_type] = STATE(1540),
- [sym_literal_type] = STATE(1540),
- [sym__number] = STATE(1566),
- [sym_existential_type] = STATE(1540),
- [sym_flow_maybe_type] = STATE(1540),
- [sym_parenthesized_type] = STATE(1540),
- [sym_predefined_type] = STATE(1540),
- [sym_object_type] = STATE(1540),
- [sym_type_parameters] = STATE(5295),
- [sym_array_type] = STATE(1540),
- [sym_tuple_type] = STATE(1540),
- [sym_readonly_type] = STATE(1556),
- [sym_union_type] = STATE(1540),
- [sym_intersection_type] = STATE(1540),
- [sym_function_type] = STATE(1556),
- [sym_identifier] = ACTIONS(3181),
- [anon_sym_STAR] = ACTIONS(3071),
- [anon_sym_LBRACE] = ACTIONS(3073),
- [anon_sym_typeof] = ACTIONS(3075),
- [anon_sym_import] = ACTIONS(133),
- [anon_sym_const] = ACTIONS(3191),
- [anon_sym_LPAREN] = ACTIONS(3079),
- [anon_sym_LBRACK] = ACTIONS(3081),
- [anon_sym_DQUOTE] = ACTIONS(150),
- [anon_sym_SQUOTE] = ACTIONS(152),
- [anon_sym_new] = ACTIONS(3083),
- [anon_sym_AMP] = ACTIONS(3085),
- [anon_sym_PIPE] = ACTIONS(3087),
- [anon_sym_PLUS] = ACTIONS(3089),
- [anon_sym_DASH] = ACTIONS(3089),
- [anon_sym_LT] = ACTIONS(2581),
- [anon_sym_void] = ACTIONS(3091),
- [sym_comment] = ACTIONS(5),
- [anon_sym_BQUOTE] = ACTIONS(3093),
- [sym_number] = ACTIONS(3095),
- [sym_this] = ACTIONS(3183),
- [sym_true] = ACTIONS(3099),
- [sym_false] = ACTIONS(3099),
- [sym_null] = ACTIONS(3099),
- [sym_undefined] = ACTIONS(3099),
- [anon_sym_readonly] = ACTIONS(3101),
- [anon_sym_QMARK] = ACTIONS(3103),
- [anon_sym_any] = ACTIONS(3091),
- [anon_sym_number] = ACTIONS(3091),
- [anon_sym_boolean] = ACTIONS(3091),
- [anon_sym_string] = ACTIONS(3091),
- [anon_sym_symbol] = ACTIONS(3091),
- [anon_sym_object] = ACTIONS(3091),
- [anon_sym_abstract] = ACTIONS(3105),
- [anon_sym_infer] = ACTIONS(3109),
- [anon_sym_keyof] = ACTIONS(3111),
- [anon_sym_unique] = ACTIONS(3113),
- [anon_sym_unknown] = ACTIONS(3091),
- [anon_sym_never] = ACTIONS(3091),
- [anon_sym_LBRACE_PIPE] = ACTIONS(3115),
- [sym_html_comment] = ACTIONS(5),
- },
- [1056] = {
- [sym_import] = STATE(5087),
- [sym_nested_identifier] = STATE(5707),
- [sym_string] = STATE(2889),
- [sym_formal_parameters] = STATE(5709),
- [sym_nested_type_identifier] = STATE(2828),
- [sym__type_query_member_expression_in_type_annotation] = STATE(2846),
- [sym__type_query_call_expression_in_type_annotation] = STATE(2850),
- [sym_type] = STATE(3891),
- [sym_constructor_type] = STATE(2896),
- [sym_primary_type] = STATE(2897),
- [sym_template_literal_type] = STATE(2885),
- [sym_infer_type] = STATE(2896),
- [sym_conditional_type] = STATE(2885),
- [sym_generic_type] = STATE(2885),
- [sym_type_query] = STATE(2885),
- [sym_index_type_query] = STATE(2885),
- [sym_lookup_type] = STATE(2885),
- [sym_literal_type] = STATE(2885),
- [sym__number] = STATE(2903),
- [sym_existential_type] = STATE(2885),
- [sym_flow_maybe_type] = STATE(2885),
- [sym_parenthesized_type] = STATE(2885),
- [sym_predefined_type] = STATE(2885),
- [sym_object_type] = STATE(2885),
- [sym_type_parameters] = STATE(5435),
- [sym_array_type] = STATE(2885),
- [sym_tuple_type] = STATE(2885),
- [sym_readonly_type] = STATE(2896),
- [sym_union_type] = STATE(2885),
- [sym_intersection_type] = STATE(2885),
- [sym_function_type] = STATE(2896),
- [sym_identifier] = ACTIONS(1496),
- [anon_sym_STAR] = ACTIONS(612),
- [anon_sym_LBRACE] = ACTIONS(1498),
- [anon_sym_typeof] = ACTIONS(1500),
- [anon_sym_import] = ACTIONS(133),
- [anon_sym_const] = ACTIONS(135),
- [anon_sym_LPAREN] = ACTIONS(1502),
- [anon_sym_LBRACK] = ACTIONS(1504),
- [anon_sym_DQUOTE] = ACTIONS(1506),
- [anon_sym_SQUOTE] = ACTIONS(1508),
- [anon_sym_new] = ACTIONS(1510),
- [anon_sym_AMP] = ACTIONS(741),
- [anon_sym_PIPE] = ACTIONS(743),
- [anon_sym_PLUS] = ACTIONS(2579),
- [anon_sym_DASH] = ACTIONS(2579),
- [anon_sym_LT] = ACTIONS(2581),
- [anon_sym_void] = ACTIONS(220),
- [sym_comment] = ACTIONS(5),
- [anon_sym_BQUOTE] = ACTIONS(1516),
- [sym_number] = ACTIONS(1518),
- [sym_this] = ACTIONS(1520),
- [sym_true] = ACTIONS(1522),
- [sym_false] = ACTIONS(1522),
- [sym_null] = ACTIONS(1522),
- [sym_undefined] = ACTIONS(1522),
- [anon_sym_readonly] = ACTIONS(1524),
- [anon_sym_QMARK] = ACTIONS(761),
- [anon_sym_any] = ACTIONS(220),
- [anon_sym_number] = ACTIONS(220),
- [anon_sym_boolean] = ACTIONS(220),
- [anon_sym_string] = ACTIONS(220),
- [anon_sym_symbol] = ACTIONS(220),
- [anon_sym_object] = ACTIONS(220),
- [anon_sym_abstract] = ACTIONS(212),
- [anon_sym_infer] = ACTIONS(214),
- [anon_sym_keyof] = ACTIONS(216),
- [anon_sym_unique] = ACTIONS(218),
- [anon_sym_unknown] = ACTIONS(220),
- [anon_sym_never] = ACTIONS(220),
- [anon_sym_LBRACE_PIPE] = ACTIONS(222),
- [sym_html_comment] = ACTIONS(5),
- },
- [1057] = {
- [sym_import] = STATE(5087),
- [sym_nested_identifier] = STATE(5707),
- [sym_string] = STATE(2889),
- [sym_formal_parameters] = STATE(5709),
- [sym_nested_type_identifier] = STATE(2828),
- [sym__type_query_member_expression_in_type_annotation] = STATE(2846),
- [sym__type_query_call_expression_in_type_annotation] = STATE(2850),
- [sym_type] = STATE(4563),
- [sym_constructor_type] = STATE(2896),
- [sym_primary_type] = STATE(2897),
- [sym_template_literal_type] = STATE(2885),
- [sym_infer_type] = STATE(2896),
- [sym_conditional_type] = STATE(2885),
- [sym_generic_type] = STATE(2885),
- [sym_type_query] = STATE(2885),
- [sym_index_type_query] = STATE(2885),
- [sym_lookup_type] = STATE(2885),
- [sym_literal_type] = STATE(2885),
- [sym__number] = STATE(2903),
- [sym_existential_type] = STATE(2885),
- [sym_flow_maybe_type] = STATE(2885),
- [sym_parenthesized_type] = STATE(2885),
- [sym_predefined_type] = STATE(2885),
- [sym_object_type] = STATE(2885),
- [sym_type_parameters] = STATE(5435),
- [sym_array_type] = STATE(2885),
- [sym_tuple_type] = STATE(2885),
- [sym_readonly_type] = STATE(2896),
- [sym_union_type] = STATE(2885),
- [sym_intersection_type] = STATE(2885),
- [sym_function_type] = STATE(2896),
- [sym_identifier] = ACTIONS(1496),
- [anon_sym_STAR] = ACTIONS(612),
- [anon_sym_LBRACE] = ACTIONS(1498),
- [anon_sym_typeof] = ACTIONS(1500),
- [anon_sym_import] = ACTIONS(133),
- [anon_sym_const] = ACTIONS(135),
- [anon_sym_LPAREN] = ACTIONS(1502),
- [anon_sym_LBRACK] = ACTIONS(1504),
- [anon_sym_DQUOTE] = ACTIONS(1506),
- [anon_sym_SQUOTE] = ACTIONS(1508),
- [anon_sym_new] = ACTIONS(1510),
- [anon_sym_AMP] = ACTIONS(741),
- [anon_sym_PIPE] = ACTIONS(743),
- [anon_sym_PLUS] = ACTIONS(2579),
- [anon_sym_DASH] = ACTIONS(2579),
- [anon_sym_LT] = ACTIONS(2581),
- [anon_sym_void] = ACTIONS(220),
- [sym_comment] = ACTIONS(5),
- [anon_sym_BQUOTE] = ACTIONS(1516),
- [sym_number] = ACTIONS(1518),
- [sym_this] = ACTIONS(1520),
- [sym_true] = ACTIONS(1522),
- [sym_false] = ACTIONS(1522),
- [sym_null] = ACTIONS(1522),
- [sym_undefined] = ACTIONS(1522),
- [anon_sym_readonly] = ACTIONS(1524),
- [anon_sym_QMARK] = ACTIONS(761),
- [anon_sym_any] = ACTIONS(220),
- [anon_sym_number] = ACTIONS(220),
- [anon_sym_boolean] = ACTIONS(220),
- [anon_sym_string] = ACTIONS(220),
- [anon_sym_symbol] = ACTIONS(220),
- [anon_sym_object] = ACTIONS(220),
- [anon_sym_abstract] = ACTIONS(212),
- [anon_sym_infer] = ACTIONS(214),
- [anon_sym_keyof] = ACTIONS(216),
- [anon_sym_unique] = ACTIONS(218),
- [anon_sym_unknown] = ACTIONS(220),
- [anon_sym_never] = ACTIONS(220),
- [anon_sym_LBRACE_PIPE] = ACTIONS(222),
- [sym_html_comment] = ACTIONS(5),
- },
- [1058] = {
- [sym_import] = STATE(4606),
- [sym_nested_identifier] = STATE(5653),
- [sym_string] = STATE(1545),
- [sym_formal_parameters] = STATE(5840),
- [sym_nested_type_identifier] = STATE(1441),
- [sym__type_query_member_expression_in_type_annotation] = STATE(1440),
- [sym__type_query_call_expression_in_type_annotation] = STATE(1555),
- [sym_type] = STATE(1559),
- [sym_constructor_type] = STATE(1556),
- [sym_primary_type] = STATE(1565),
- [sym_template_literal_type] = STATE(1540),
- [sym_infer_type] = STATE(1556),
- [sym_conditional_type] = STATE(1540),
- [sym_generic_type] = STATE(1540),
- [sym_type_query] = STATE(1540),
- [sym_index_type_query] = STATE(1540),
- [sym_lookup_type] = STATE(1540),
- [sym_literal_type] = STATE(1540),
- [sym__number] = STATE(1566),
- [sym_existential_type] = STATE(1540),
- [sym_flow_maybe_type] = STATE(1540),
- [sym_parenthesized_type] = STATE(1540),
- [sym_predefined_type] = STATE(1540),
- [sym_object_type] = STATE(1540),
- [sym_type_parameters] = STATE(5295),
- [sym_array_type] = STATE(1540),
- [sym_tuple_type] = STATE(1540),
- [sym_readonly_type] = STATE(1556),
- [sym_union_type] = STATE(1540),
- [sym_intersection_type] = STATE(1540),
- [sym_function_type] = STATE(1556),
- [sym_identifier] = ACTIONS(3181),
- [anon_sym_STAR] = ACTIONS(3071),
- [anon_sym_LBRACE] = ACTIONS(3073),
- [anon_sym_typeof] = ACTIONS(3075),
- [anon_sym_import] = ACTIONS(133),
- [anon_sym_const] = ACTIONS(3077),
- [anon_sym_LPAREN] = ACTIONS(3079),
- [anon_sym_LBRACK] = ACTIONS(3081),
- [anon_sym_DQUOTE] = ACTIONS(150),
- [anon_sym_SQUOTE] = ACTIONS(152),
- [anon_sym_new] = ACTIONS(3083),
- [anon_sym_AMP] = ACTIONS(3085),
- [anon_sym_PIPE] = ACTIONS(3087),
- [anon_sym_PLUS] = ACTIONS(3089),
- [anon_sym_DASH] = ACTIONS(3089),
- [anon_sym_LT] = ACTIONS(2581),
- [anon_sym_void] = ACTIONS(3091),
- [sym_comment] = ACTIONS(5),
- [anon_sym_BQUOTE] = ACTIONS(3093),
- [sym_number] = ACTIONS(3095),
- [sym_this] = ACTIONS(3183),
- [sym_true] = ACTIONS(3099),
- [sym_false] = ACTIONS(3099),
- [sym_null] = ACTIONS(3099),
- [sym_undefined] = ACTIONS(3099),
- [anon_sym_readonly] = ACTIONS(3101),
- [anon_sym_QMARK] = ACTIONS(3103),
- [anon_sym_any] = ACTIONS(3091),
- [anon_sym_number] = ACTIONS(3091),
- [anon_sym_boolean] = ACTIONS(3091),
- [anon_sym_string] = ACTIONS(3091),
- [anon_sym_symbol] = ACTIONS(3091),
- [anon_sym_object] = ACTIONS(3091),
- [anon_sym_abstract] = ACTIONS(3105),
- [anon_sym_infer] = ACTIONS(3109),
- [anon_sym_keyof] = ACTIONS(3111),
- [anon_sym_unique] = ACTIONS(3113),
- [anon_sym_unknown] = ACTIONS(3091),
- [anon_sym_never] = ACTIONS(3091),
- [anon_sym_LBRACE_PIPE] = ACTIONS(3115),
- [sym_html_comment] = ACTIONS(5),
- },
- [1059] = {
- [sym_import] = STATE(5087),
- [sym_nested_identifier] = STATE(5707),
- [sym_string] = STATE(2889),
- [sym_formal_parameters] = STATE(5709),
- [sym_nested_type_identifier] = STATE(2828),
- [sym__type_query_member_expression_in_type_annotation] = STATE(2846),
- [sym__type_query_call_expression_in_type_annotation] = STATE(2850),
- [sym_type] = STATE(3839),
- [sym_constructor_type] = STATE(2896),
- [sym_primary_type] = STATE(2897),
- [sym_template_literal_type] = STATE(2885),
- [sym_infer_type] = STATE(2896),
- [sym_conditional_type] = STATE(2885),
- [sym_generic_type] = STATE(2885),
- [sym_type_query] = STATE(2885),
- [sym_index_type_query] = STATE(2885),
- [sym_lookup_type] = STATE(2885),
- [sym_literal_type] = STATE(2885),
- [sym__number] = STATE(2903),
- [sym_existential_type] = STATE(2885),
- [sym_flow_maybe_type] = STATE(2885),
- [sym_parenthesized_type] = STATE(2885),
- [sym_predefined_type] = STATE(2885),
- [sym_object_type] = STATE(2885),
- [sym_type_parameters] = STATE(5435),
- [sym_array_type] = STATE(2885),
- [sym_tuple_type] = STATE(2885),
- [sym_readonly_type] = STATE(2896),
- [sym_union_type] = STATE(2885),
- [sym_intersection_type] = STATE(2885),
- [sym_function_type] = STATE(2896),
- [sym_identifier] = ACTIONS(1496),
- [anon_sym_STAR] = ACTIONS(612),
- [anon_sym_LBRACE] = ACTIONS(1498),
- [anon_sym_typeof] = ACTIONS(1500),
- [anon_sym_import] = ACTIONS(133),
- [anon_sym_const] = ACTIONS(135),
- [anon_sym_LPAREN] = ACTIONS(1502),
- [anon_sym_LBRACK] = ACTIONS(1504),
- [anon_sym_DQUOTE] = ACTIONS(1506),
- [anon_sym_SQUOTE] = ACTIONS(1508),
- [anon_sym_new] = ACTIONS(1510),
- [anon_sym_AMP] = ACTIONS(741),
- [anon_sym_PIPE] = ACTIONS(743),
- [anon_sym_PLUS] = ACTIONS(2579),
- [anon_sym_DASH] = ACTIONS(2579),
- [anon_sym_LT] = ACTIONS(2581),
- [anon_sym_void] = ACTIONS(220),
- [sym_comment] = ACTIONS(5),
- [anon_sym_BQUOTE] = ACTIONS(1516),
- [sym_number] = ACTIONS(1518),
- [sym_this] = ACTIONS(1520),
- [sym_true] = ACTIONS(1522),
- [sym_false] = ACTIONS(1522),
- [sym_null] = ACTIONS(1522),
- [sym_undefined] = ACTIONS(1522),
- [anon_sym_readonly] = ACTIONS(1524),
- [anon_sym_QMARK] = ACTIONS(761),
- [anon_sym_any] = ACTIONS(220),
- [anon_sym_number] = ACTIONS(220),
- [anon_sym_boolean] = ACTIONS(220),
- [anon_sym_string] = ACTIONS(220),
- [anon_sym_symbol] = ACTIONS(220),
- [anon_sym_object] = ACTIONS(220),
- [anon_sym_abstract] = ACTIONS(212),
- [anon_sym_infer] = ACTIONS(214),
- [anon_sym_keyof] = ACTIONS(216),
- [anon_sym_unique] = ACTIONS(218),
- [anon_sym_unknown] = ACTIONS(220),
- [anon_sym_never] = ACTIONS(220),
- [anon_sym_LBRACE_PIPE] = ACTIONS(222),
- [sym_html_comment] = ACTIONS(5),
- },
- [1060] = {
- [sym_import] = STATE(5087),
- [sym_nested_identifier] = STATE(5707),
- [sym_string] = STATE(2889),
- [sym_formal_parameters] = STATE(5709),
- [sym_nested_type_identifier] = STATE(2828),
- [sym__type_query_member_expression_in_type_annotation] = STATE(2846),
- [sym__type_query_call_expression_in_type_annotation] = STATE(2850),
- [sym_type] = STATE(4536),
- [sym_constructor_type] = STATE(2896),
- [sym_primary_type] = STATE(2897),
- [sym_template_literal_type] = STATE(2885),
- [sym_infer_type] = STATE(2896),
- [sym_conditional_type] = STATE(2885),
- [sym_generic_type] = STATE(2885),
- [sym_type_query] = STATE(2885),
- [sym_index_type_query] = STATE(2885),
- [sym_lookup_type] = STATE(2885),
- [sym_literal_type] = STATE(2885),
- [sym__number] = STATE(2903),
- [sym_existential_type] = STATE(2885),
- [sym_flow_maybe_type] = STATE(2885),
- [sym_parenthesized_type] = STATE(2885),
- [sym_predefined_type] = STATE(2885),
- [sym_object_type] = STATE(2885),
- [sym_type_parameters] = STATE(5435),
- [sym_array_type] = STATE(2885),
- [sym_tuple_type] = STATE(2885),
- [sym_readonly_type] = STATE(2896),
- [sym_union_type] = STATE(2885),
- [sym_intersection_type] = STATE(2885),
- [sym_function_type] = STATE(2896),
- [sym_identifier] = ACTIONS(1496),
- [anon_sym_STAR] = ACTIONS(612),
- [anon_sym_LBRACE] = ACTIONS(1498),
- [anon_sym_typeof] = ACTIONS(1500),
- [anon_sym_import] = ACTIONS(133),
- [anon_sym_const] = ACTIONS(135),
- [anon_sym_LPAREN] = ACTIONS(1502),
- [anon_sym_LBRACK] = ACTIONS(1504),
- [anon_sym_DQUOTE] = ACTIONS(1506),
- [anon_sym_SQUOTE] = ACTIONS(1508),
- [anon_sym_new] = ACTIONS(1510),
- [anon_sym_AMP] = ACTIONS(741),
- [anon_sym_PIPE] = ACTIONS(743),
- [anon_sym_PLUS] = ACTIONS(2579),
- [anon_sym_DASH] = ACTIONS(2579),
- [anon_sym_LT] = ACTIONS(2581),
- [anon_sym_void] = ACTIONS(220),
- [sym_comment] = ACTIONS(5),
- [anon_sym_BQUOTE] = ACTIONS(1516),
- [sym_number] = ACTIONS(1518),
- [sym_this] = ACTIONS(1520),
- [sym_true] = ACTIONS(1522),
- [sym_false] = ACTIONS(1522),
- [sym_null] = ACTIONS(1522),
- [sym_undefined] = ACTIONS(1522),
- [anon_sym_readonly] = ACTIONS(1524),
- [anon_sym_QMARK] = ACTIONS(761),
- [anon_sym_any] = ACTIONS(220),
- [anon_sym_number] = ACTIONS(220),
- [anon_sym_boolean] = ACTIONS(220),
- [anon_sym_string] = ACTIONS(220),
- [anon_sym_symbol] = ACTIONS(220),
- [anon_sym_object] = ACTIONS(220),
- [anon_sym_abstract] = ACTIONS(212),
- [anon_sym_infer] = ACTIONS(214),
- [anon_sym_keyof] = ACTIONS(216),
- [anon_sym_unique] = ACTIONS(218),
- [anon_sym_unknown] = ACTIONS(220),
- [anon_sym_never] = ACTIONS(220),
- [anon_sym_LBRACE_PIPE] = ACTIONS(222),
- [sym_html_comment] = ACTIONS(5),
- },
- [1061] = {
- [sym_import] = STATE(4618),
- [sym_nested_identifier] = STATE(5906),
- [sym_string] = STATE(1947),
- [sym_formal_parameters] = STATE(5651),
- [sym_nested_type_identifier] = STATE(1799),
- [sym__type_query_member_expression_in_type_annotation] = STATE(1800),
- [sym__type_query_call_expression_in_type_annotation] = STATE(1928),
- [sym_type] = STATE(2014),
- [sym_constructor_type] = STATE(1929),
- [sym_primary_type] = STATE(1931),
- [sym_template_literal_type] = STATE(1936),
- [sym_infer_type] = STATE(1929),
- [sym_conditional_type] = STATE(1936),
- [sym_generic_type] = STATE(1936),
- [sym_type_query] = STATE(1936),
- [sym_index_type_query] = STATE(1936),
- [sym_lookup_type] = STATE(1936),
- [sym_literal_type] = STATE(1936),
- [sym__number] = STATE(1932),
- [sym_existential_type] = STATE(1936),
- [sym_flow_maybe_type] = STATE(1936),
- [sym_parenthesized_type] = STATE(1936),
- [sym_predefined_type] = STATE(1936),
- [sym_object_type] = STATE(1936),
- [sym_type_parameters] = STATE(5347),
- [sym_array_type] = STATE(1936),
- [sym_tuple_type] = STATE(1936),
- [sym_readonly_type] = STATE(1929),
- [sym_union_type] = STATE(1936),
- [sym_intersection_type] = STATE(1936),
- [sym_function_type] = STATE(1929),
- [sym_identifier] = ACTIONS(3177),
- [anon_sym_STAR] = ACTIONS(2929),
- [anon_sym_LBRACE] = ACTIONS(2931),
- [anon_sym_typeof] = ACTIONS(2933),
- [anon_sym_import] = ACTIONS(133),
- [anon_sym_const] = ACTIONS(2935),
- [anon_sym_LPAREN] = ACTIONS(2937),
- [anon_sym_LBRACK] = ACTIONS(2939),
- [anon_sym_DQUOTE] = ACTIONS(69),
- [anon_sym_SQUOTE] = ACTIONS(71),
- [anon_sym_new] = ACTIONS(2941),
- [anon_sym_AMP] = ACTIONS(2943),
- [anon_sym_PIPE] = ACTIONS(2945),
- [anon_sym_PLUS] = ACTIONS(2947),
- [anon_sym_DASH] = ACTIONS(2947),
- [anon_sym_LT] = ACTIONS(2581),
- [anon_sym_void] = ACTIONS(2949),
- [sym_comment] = ACTIONS(5),
- [anon_sym_BQUOTE] = ACTIONS(2951),
- [sym_number] = ACTIONS(2953),
- [sym_this] = ACTIONS(3179),
- [sym_true] = ACTIONS(2957),
- [sym_false] = ACTIONS(2957),
- [sym_null] = ACTIONS(2957),
- [sym_undefined] = ACTIONS(2957),
- [anon_sym_readonly] = ACTIONS(2959),
- [anon_sym_QMARK] = ACTIONS(2961),
- [anon_sym_any] = ACTIONS(2949),
- [anon_sym_number] = ACTIONS(2949),
- [anon_sym_boolean] = ACTIONS(2949),
- [anon_sym_string] = ACTIONS(2949),
- [anon_sym_symbol] = ACTIONS(2949),
- [anon_sym_object] = ACTIONS(2949),
- [anon_sym_abstract] = ACTIONS(2963),
- [anon_sym_infer] = ACTIONS(2967),
- [anon_sym_keyof] = ACTIONS(2969),
- [anon_sym_unique] = ACTIONS(2971),
- [anon_sym_unknown] = ACTIONS(2949),
- [anon_sym_never] = ACTIONS(2949),
- [anon_sym_LBRACE_PIPE] = ACTIONS(2973),
- [sym_html_comment] = ACTIONS(5),
- },
- [1062] = {
- [sym_import] = STATE(4618),
- [sym_nested_identifier] = STATE(5906),
- [sym_string] = STATE(1947),
- [sym_formal_parameters] = STATE(5651),
- [sym_nested_type_identifier] = STATE(1799),
- [sym__type_query_member_expression_in_type_annotation] = STATE(1800),
- [sym__type_query_call_expression_in_type_annotation] = STATE(1928),
- [sym_type] = STATE(2015),
- [sym_constructor_type] = STATE(1929),
- [sym_primary_type] = STATE(1931),
- [sym_template_literal_type] = STATE(1936),
- [sym_infer_type] = STATE(1929),
- [sym_conditional_type] = STATE(1936),
- [sym_generic_type] = STATE(1936),
- [sym_type_query] = STATE(1936),
- [sym_index_type_query] = STATE(1936),
- [sym_lookup_type] = STATE(1936),
- [sym_literal_type] = STATE(1936),
- [sym__number] = STATE(1932),
- [sym_existential_type] = STATE(1936),
- [sym_flow_maybe_type] = STATE(1936),
- [sym_parenthesized_type] = STATE(1936),
- [sym_predefined_type] = STATE(1936),
- [sym_object_type] = STATE(1936),
- [sym_type_parameters] = STATE(5347),
- [sym_array_type] = STATE(1936),
- [sym_tuple_type] = STATE(1936),
- [sym_readonly_type] = STATE(1929),
- [sym_union_type] = STATE(1936),
- [sym_intersection_type] = STATE(1936),
- [sym_function_type] = STATE(1929),
- [sym_identifier] = ACTIONS(3177),
- [anon_sym_STAR] = ACTIONS(2929),
- [anon_sym_LBRACE] = ACTIONS(2931),
- [anon_sym_typeof] = ACTIONS(2933),
- [anon_sym_import] = ACTIONS(133),
- [anon_sym_const] = ACTIONS(2935),
- [anon_sym_LPAREN] = ACTIONS(2937),
- [anon_sym_LBRACK] = ACTIONS(2939),
- [anon_sym_DQUOTE] = ACTIONS(69),
- [anon_sym_SQUOTE] = ACTIONS(71),
- [anon_sym_new] = ACTIONS(2941),
- [anon_sym_AMP] = ACTIONS(2943),
- [anon_sym_PIPE] = ACTIONS(2945),
- [anon_sym_PLUS] = ACTIONS(2947),
- [anon_sym_DASH] = ACTIONS(2947),
- [anon_sym_LT] = ACTIONS(2581),
- [anon_sym_void] = ACTIONS(2949),
- [sym_comment] = ACTIONS(5),
- [anon_sym_BQUOTE] = ACTIONS(2951),
- [sym_number] = ACTIONS(2953),
- [sym_this] = ACTIONS(3179),
- [sym_true] = ACTIONS(2957),
- [sym_false] = ACTIONS(2957),
- [sym_null] = ACTIONS(2957),
- [sym_undefined] = ACTIONS(2957),
- [anon_sym_readonly] = ACTIONS(2959),
- [anon_sym_QMARK] = ACTIONS(2961),
- [anon_sym_any] = ACTIONS(2949),
- [anon_sym_number] = ACTIONS(2949),
- [anon_sym_boolean] = ACTIONS(2949),
- [anon_sym_string] = ACTIONS(2949),
- [anon_sym_symbol] = ACTIONS(2949),
- [anon_sym_object] = ACTIONS(2949),
- [anon_sym_abstract] = ACTIONS(2963),
- [anon_sym_infer] = ACTIONS(2967),
- [anon_sym_keyof] = ACTIONS(2969),
- [anon_sym_unique] = ACTIONS(2971),
- [anon_sym_unknown] = ACTIONS(2949),
- [anon_sym_never] = ACTIONS(2949),
- [anon_sym_LBRACE_PIPE] = ACTIONS(2973),
- [sym_html_comment] = ACTIONS(5),
- },
- [1063] = {
- [sym_import] = STATE(4618),
- [sym_nested_identifier] = STATE(5906),
- [sym_string] = STATE(1947),
- [sym_formal_parameters] = STATE(5651),
- [sym_nested_type_identifier] = STATE(1799),
- [sym__type_query_member_expression_in_type_annotation] = STATE(1800),
- [sym__type_query_call_expression_in_type_annotation] = STATE(1928),
- [sym_type] = STATE(2025),
- [sym_constructor_type] = STATE(1929),
- [sym_primary_type] = STATE(1931),
- [sym_template_literal_type] = STATE(1936),
- [sym_infer_type] = STATE(1929),
- [sym_conditional_type] = STATE(1936),
- [sym_generic_type] = STATE(1936),
- [sym_type_query] = STATE(1936),
- [sym_index_type_query] = STATE(1936),
- [sym_lookup_type] = STATE(1936),
- [sym_literal_type] = STATE(1936),
- [sym__number] = STATE(1932),
- [sym_existential_type] = STATE(1936),
- [sym_flow_maybe_type] = STATE(1936),
- [sym_parenthesized_type] = STATE(1936),
- [sym_predefined_type] = STATE(1936),
- [sym_object_type] = STATE(1936),
- [sym_type_parameters] = STATE(5347),
- [sym_array_type] = STATE(1936),
- [sym_tuple_type] = STATE(1936),
- [sym_readonly_type] = STATE(1929),
- [sym_union_type] = STATE(1936),
- [sym_intersection_type] = STATE(1936),
- [sym_function_type] = STATE(1929),
- [sym_identifier] = ACTIONS(3177),
- [anon_sym_STAR] = ACTIONS(2929),
- [anon_sym_LBRACE] = ACTIONS(2931),
- [anon_sym_typeof] = ACTIONS(2933),
- [anon_sym_import] = ACTIONS(133),
- [anon_sym_const] = ACTIONS(2935),
- [anon_sym_LPAREN] = ACTIONS(2937),
- [anon_sym_LBRACK] = ACTIONS(2939),
- [anon_sym_DQUOTE] = ACTIONS(69),
- [anon_sym_SQUOTE] = ACTIONS(71),
- [anon_sym_new] = ACTIONS(2941),
- [anon_sym_AMP] = ACTIONS(2943),
- [anon_sym_PIPE] = ACTIONS(2945),
- [anon_sym_PLUS] = ACTIONS(2947),
- [anon_sym_DASH] = ACTIONS(2947),
- [anon_sym_LT] = ACTIONS(2581),
- [anon_sym_void] = ACTIONS(2949),
- [sym_comment] = ACTIONS(5),
- [anon_sym_BQUOTE] = ACTIONS(2951),
- [sym_number] = ACTIONS(2953),
- [sym_this] = ACTIONS(3179),
- [sym_true] = ACTIONS(2957),
- [sym_false] = ACTIONS(2957),
- [sym_null] = ACTIONS(2957),
- [sym_undefined] = ACTIONS(2957),
- [anon_sym_readonly] = ACTIONS(2959),
- [anon_sym_QMARK] = ACTIONS(2961),
- [anon_sym_any] = ACTIONS(2949),
- [anon_sym_number] = ACTIONS(2949),
- [anon_sym_boolean] = ACTIONS(2949),
- [anon_sym_string] = ACTIONS(2949),
- [anon_sym_symbol] = ACTIONS(2949),
- [anon_sym_object] = ACTIONS(2949),
- [anon_sym_abstract] = ACTIONS(2963),
- [anon_sym_infer] = ACTIONS(2967),
- [anon_sym_keyof] = ACTIONS(2969),
- [anon_sym_unique] = ACTIONS(2971),
- [anon_sym_unknown] = ACTIONS(2949),
- [anon_sym_never] = ACTIONS(2949),
- [anon_sym_LBRACE_PIPE] = ACTIONS(2973),
- [sym_html_comment] = ACTIONS(5),
- },
- [1064] = {
- [sym_import] = STATE(5087),
- [sym_nested_identifier] = STATE(5906),
- [sym_string] = STATE(1947),
- [sym_formal_parameters] = STATE(5709),
- [sym_nested_type_identifier] = STATE(1799),
- [sym__type_query_member_expression_in_type_annotation] = STATE(2846),
- [sym__type_query_call_expression_in_type_annotation] = STATE(2850),
- [sym_type] = STATE(4781),
- [sym_constructor_type] = STATE(2896),
- [sym_primary_type] = STATE(2027),
- [sym_template_literal_type] = STATE(1936),
- [sym_infer_type] = STATE(2896),
- [sym_conditional_type] = STATE(1936),
- [sym_generic_type] = STATE(1936),
- [sym_type_query] = STATE(1936),
- [sym_index_type_query] = STATE(1936),
- [sym_lookup_type] = STATE(1936),
- [sym_literal_type] = STATE(1936),
- [sym__number] = STATE(1932),
- [sym_existential_type] = STATE(1936),
- [sym_flow_maybe_type] = STATE(1936),
- [sym_parenthesized_type] = STATE(1936),
- [sym_predefined_type] = STATE(1936),
- [sym_object_type] = STATE(1936),
- [sym_type_parameters] = STATE(5435),
- [sym_array_type] = STATE(1936),
- [sym_tuple_type] = STATE(1936),
- [sym_readonly_type] = STATE(2896),
- [sym_union_type] = STATE(1936),
- [sym_intersection_type] = STATE(1936),
- [sym_function_type] = STATE(2896),
- [sym_identifier] = ACTIONS(3177),
- [anon_sym_STAR] = ACTIONS(2929),
- [anon_sym_LBRACE] = ACTIONS(2931),
- [anon_sym_typeof] = ACTIONS(2933),
- [anon_sym_import] = ACTIONS(133),
- [anon_sym_const] = ACTIONS(2935),
- [anon_sym_LPAREN] = ACTIONS(2937),
- [anon_sym_LBRACK] = ACTIONS(2939),
- [anon_sym_DQUOTE] = ACTIONS(69),
- [anon_sym_SQUOTE] = ACTIONS(71),
- [anon_sym_new] = ACTIONS(1510),
- [anon_sym_AMP] = ACTIONS(2943),
- [anon_sym_PIPE] = ACTIONS(2945),
- [anon_sym_PLUS] = ACTIONS(2947),
- [anon_sym_DASH] = ACTIONS(2947),
- [anon_sym_LT] = ACTIONS(2581),
- [anon_sym_void] = ACTIONS(2949),
- [sym_comment] = ACTIONS(5),
- [anon_sym_BQUOTE] = ACTIONS(2951),
- [sym_number] = ACTIONS(2953),
- [sym_this] = ACTIONS(3179),
- [sym_true] = ACTIONS(2957),
- [sym_false] = ACTIONS(2957),
- [sym_null] = ACTIONS(2957),
- [sym_undefined] = ACTIONS(2957),
- [anon_sym_readonly] = ACTIONS(1524),
- [anon_sym_QMARK] = ACTIONS(2961),
- [anon_sym_any] = ACTIONS(2949),
- [anon_sym_number] = ACTIONS(2949),
- [anon_sym_boolean] = ACTIONS(2949),
- [anon_sym_string] = ACTIONS(2949),
- [anon_sym_symbol] = ACTIONS(2949),
- [anon_sym_object] = ACTIONS(2949),
- [anon_sym_abstract] = ACTIONS(212),
- [anon_sym_infer] = ACTIONS(214),
- [anon_sym_keyof] = ACTIONS(2969),
- [anon_sym_unique] = ACTIONS(2971),
- [anon_sym_unknown] = ACTIONS(2949),
- [anon_sym_never] = ACTIONS(2949),
- [anon_sym_LBRACE_PIPE] = ACTIONS(2973),
- [sym_html_comment] = ACTIONS(5),
- },
- [1065] = {
- [sym_import] = STATE(5087),
- [sym_nested_identifier] = STATE(5906),
- [sym_string] = STATE(1947),
- [sym_formal_parameters] = STATE(5709),
- [sym_nested_type_identifier] = STATE(1799),
- [sym__type_query_member_expression_in_type_annotation] = STATE(2846),
- [sym__type_query_call_expression_in_type_annotation] = STATE(2850),
- [sym_type] = STATE(4781),
- [sym_constructor_type] = STATE(2896),
- [sym_primary_type] = STATE(2030),
- [sym_template_literal_type] = STATE(1936),
- [sym_infer_type] = STATE(2896),
- [sym_conditional_type] = STATE(1936),
- [sym_generic_type] = STATE(1936),
- [sym_type_query] = STATE(1936),
- [sym_index_type_query] = STATE(1936),
- [sym_lookup_type] = STATE(1936),
- [sym_literal_type] = STATE(1936),
- [sym__number] = STATE(1932),
- [sym_existential_type] = STATE(1936),
- [sym_flow_maybe_type] = STATE(1936),
- [sym_parenthesized_type] = STATE(1936),
- [sym_predefined_type] = STATE(1936),
- [sym_object_type] = STATE(1936),
- [sym_type_parameters] = STATE(5435),
- [sym_array_type] = STATE(1936),
- [sym_tuple_type] = STATE(1936),
- [sym_readonly_type] = STATE(2896),
- [sym_union_type] = STATE(1936),
- [sym_intersection_type] = STATE(1936),
- [sym_function_type] = STATE(2896),
- [sym_identifier] = ACTIONS(3177),
- [anon_sym_STAR] = ACTIONS(2929),
- [anon_sym_LBRACE] = ACTIONS(2931),
- [anon_sym_typeof] = ACTIONS(2933),
- [anon_sym_import] = ACTIONS(133),
- [anon_sym_const] = ACTIONS(2935),
- [anon_sym_LPAREN] = ACTIONS(2937),
- [anon_sym_LBRACK] = ACTIONS(2939),
- [anon_sym_DQUOTE] = ACTIONS(69),
- [anon_sym_SQUOTE] = ACTIONS(71),
- [anon_sym_new] = ACTIONS(1510),
- [anon_sym_AMP] = ACTIONS(2943),
- [anon_sym_PIPE] = ACTIONS(2945),
- [anon_sym_PLUS] = ACTIONS(2947),
- [anon_sym_DASH] = ACTIONS(2947),
- [anon_sym_LT] = ACTIONS(2581),
- [anon_sym_void] = ACTIONS(2949),
- [sym_comment] = ACTIONS(5),
- [anon_sym_BQUOTE] = ACTIONS(2951),
- [sym_number] = ACTIONS(2953),
- [sym_this] = ACTIONS(3179),
- [sym_true] = ACTIONS(2957),
- [sym_false] = ACTIONS(2957),
- [sym_null] = ACTIONS(2957),
- [sym_undefined] = ACTIONS(2957),
- [anon_sym_readonly] = ACTIONS(1524),
- [anon_sym_QMARK] = ACTIONS(2961),
- [anon_sym_any] = ACTIONS(2949),
- [anon_sym_number] = ACTIONS(2949),
- [anon_sym_boolean] = ACTIONS(2949),
- [anon_sym_string] = ACTIONS(2949),
- [anon_sym_symbol] = ACTIONS(2949),
- [anon_sym_object] = ACTIONS(2949),
- [anon_sym_abstract] = ACTIONS(212),
- [anon_sym_infer] = ACTIONS(214),
- [anon_sym_keyof] = ACTIONS(2969),
- [anon_sym_unique] = ACTIONS(2971),
- [anon_sym_unknown] = ACTIONS(2949),
- [anon_sym_never] = ACTIONS(2949),
- [anon_sym_LBRACE_PIPE] = ACTIONS(2973),
- [sym_html_comment] = ACTIONS(5),
- },
- [1066] = {
- [sym_import] = STATE(4618),
- [sym_nested_identifier] = STATE(5906),
- [sym_string] = STATE(1947),
- [sym_formal_parameters] = STATE(5651),
- [sym_nested_type_identifier] = STATE(1799),
- [sym__type_query_member_expression_in_type_annotation] = STATE(1800),
- [sym__type_query_call_expression_in_type_annotation] = STATE(1928),
- [sym_type] = STATE(1980),
- [sym_constructor_type] = STATE(1929),
- [sym_primary_type] = STATE(1931),
- [sym_template_literal_type] = STATE(1936),
- [sym_infer_type] = STATE(1929),
- [sym_conditional_type] = STATE(1936),
- [sym_generic_type] = STATE(1936),
- [sym_type_query] = STATE(1936),
- [sym_index_type_query] = STATE(1936),
- [sym_lookup_type] = STATE(1936),
- [sym_literal_type] = STATE(1936),
- [sym__number] = STATE(1932),
- [sym_existential_type] = STATE(1936),
- [sym_flow_maybe_type] = STATE(1936),
- [sym_parenthesized_type] = STATE(1936),
- [sym_predefined_type] = STATE(1936),
- [sym_object_type] = STATE(1936),
- [sym_type_parameters] = STATE(5347),
- [sym_array_type] = STATE(1936),
- [sym_tuple_type] = STATE(1936),
- [sym_readonly_type] = STATE(1929),
- [sym_union_type] = STATE(1936),
- [sym_intersection_type] = STATE(1936),
- [sym_function_type] = STATE(1929),
- [sym_identifier] = ACTIONS(3177),
- [anon_sym_STAR] = ACTIONS(2929),
- [anon_sym_LBRACE] = ACTIONS(2931),
- [anon_sym_typeof] = ACTIONS(2933),
- [anon_sym_import] = ACTIONS(133),
- [anon_sym_const] = ACTIONS(2935),
- [anon_sym_LPAREN] = ACTIONS(2937),
- [anon_sym_LBRACK] = ACTIONS(2939),
- [anon_sym_DQUOTE] = ACTIONS(69),
- [anon_sym_SQUOTE] = ACTIONS(71),
- [anon_sym_new] = ACTIONS(2941),
- [anon_sym_AMP] = ACTIONS(2943),
- [anon_sym_PIPE] = ACTIONS(2945),
- [anon_sym_PLUS] = ACTIONS(2947),
- [anon_sym_DASH] = ACTIONS(2947),
- [anon_sym_LT] = ACTIONS(2581),
- [anon_sym_void] = ACTIONS(2949),
- [sym_comment] = ACTIONS(5),
- [anon_sym_BQUOTE] = ACTIONS(2951),
- [sym_number] = ACTIONS(2953),
- [sym_this] = ACTIONS(3179),
- [sym_true] = ACTIONS(2957),
- [sym_false] = ACTIONS(2957),
- [sym_null] = ACTIONS(2957),
- [sym_undefined] = ACTIONS(2957),
- [anon_sym_readonly] = ACTIONS(2959),
- [anon_sym_QMARK] = ACTIONS(2961),
- [anon_sym_any] = ACTIONS(2949),
- [anon_sym_number] = ACTIONS(2949),
- [anon_sym_boolean] = ACTIONS(2949),
- [anon_sym_string] = ACTIONS(2949),
- [anon_sym_symbol] = ACTIONS(2949),
- [anon_sym_object] = ACTIONS(2949),
- [anon_sym_abstract] = ACTIONS(2963),
- [anon_sym_infer] = ACTIONS(2967),
- [anon_sym_keyof] = ACTIONS(2969),
- [anon_sym_unique] = ACTIONS(2971),
- [anon_sym_unknown] = ACTIONS(2949),
- [anon_sym_never] = ACTIONS(2949),
- [anon_sym_LBRACE_PIPE] = ACTIONS(2973),
- [sym_html_comment] = ACTIONS(5),
- },
- [1067] = {
- [sym_import] = STATE(5087),
- [sym_nested_identifier] = STATE(5707),
- [sym_string] = STATE(2889),
- [sym_formal_parameters] = STATE(5709),
- [sym_nested_type_identifier] = STATE(2828),
- [sym__type_query_member_expression_in_type_annotation] = STATE(2846),
- [sym__type_query_call_expression_in_type_annotation] = STATE(2850),
- [sym_type] = STATE(3756),
- [sym_constructor_type] = STATE(2896),
- [sym_primary_type] = STATE(2897),
- [sym_template_literal_type] = STATE(2885),
- [sym_infer_type] = STATE(2896),
- [sym_conditional_type] = STATE(2885),
- [sym_generic_type] = STATE(2885),
- [sym_type_query] = STATE(2885),
- [sym_index_type_query] = STATE(2885),
- [sym_lookup_type] = STATE(2885),
- [sym_literal_type] = STATE(2885),
- [sym__number] = STATE(2903),
- [sym_existential_type] = STATE(2885),
- [sym_flow_maybe_type] = STATE(2885),
- [sym_parenthesized_type] = STATE(2885),
- [sym_predefined_type] = STATE(2885),
- [sym_object_type] = STATE(2885),
- [sym_type_parameters] = STATE(5435),
- [sym_array_type] = STATE(2885),
- [sym_tuple_type] = STATE(2885),
- [sym_readonly_type] = STATE(2896),
- [sym_union_type] = STATE(2885),
- [sym_intersection_type] = STATE(2885),
- [sym_function_type] = STATE(2896),
- [sym_identifier] = ACTIONS(1496),
- [anon_sym_STAR] = ACTIONS(612),
- [anon_sym_LBRACE] = ACTIONS(1498),
- [anon_sym_typeof] = ACTIONS(1500),
- [anon_sym_import] = ACTIONS(133),
- [anon_sym_const] = ACTIONS(135),
- [anon_sym_LPAREN] = ACTIONS(1502),
- [anon_sym_LBRACK] = ACTIONS(1504),
- [anon_sym_DQUOTE] = ACTIONS(1506),
- [anon_sym_SQUOTE] = ACTIONS(1508),
- [anon_sym_new] = ACTIONS(1510),
- [anon_sym_AMP] = ACTIONS(741),
- [anon_sym_PIPE] = ACTIONS(743),
- [anon_sym_PLUS] = ACTIONS(2579),
- [anon_sym_DASH] = ACTIONS(2579),
- [anon_sym_LT] = ACTIONS(2581),
- [anon_sym_void] = ACTIONS(220),
- [sym_comment] = ACTIONS(5),
- [anon_sym_BQUOTE] = ACTIONS(1516),
- [sym_number] = ACTIONS(1518),
- [sym_this] = ACTIONS(1520),
- [sym_true] = ACTIONS(1522),
- [sym_false] = ACTIONS(1522),
- [sym_null] = ACTIONS(1522),
- [sym_undefined] = ACTIONS(1522),
- [anon_sym_readonly] = ACTIONS(1524),
- [anon_sym_QMARK] = ACTIONS(761),
- [anon_sym_any] = ACTIONS(220),
- [anon_sym_number] = ACTIONS(220),
- [anon_sym_boolean] = ACTIONS(220),
- [anon_sym_string] = ACTIONS(220),
- [anon_sym_symbol] = ACTIONS(220),
- [anon_sym_object] = ACTIONS(220),
- [anon_sym_abstract] = ACTIONS(212),
- [anon_sym_infer] = ACTIONS(214),
- [anon_sym_keyof] = ACTIONS(216),
- [anon_sym_unique] = ACTIONS(218),
- [anon_sym_unknown] = ACTIONS(220),
- [anon_sym_never] = ACTIONS(220),
- [anon_sym_LBRACE_PIPE] = ACTIONS(222),
- [sym_html_comment] = ACTIONS(5),
- },
- [1068] = {
- [sym_import] = STATE(5087),
- [sym_nested_identifier] = STATE(5707),
- [sym_string] = STATE(2889),
- [sym_formal_parameters] = STATE(5709),
- [sym_nested_type_identifier] = STATE(2828),
- [sym__type_query_member_expression_in_type_annotation] = STATE(2846),
- [sym__type_query_call_expression_in_type_annotation] = STATE(2850),
- [sym_type] = STATE(3879),
- [sym_constructor_type] = STATE(2896),
- [sym_primary_type] = STATE(2897),
- [sym_template_literal_type] = STATE(2885),
- [sym_infer_type] = STATE(2896),
- [sym_conditional_type] = STATE(2885),
- [sym_generic_type] = STATE(2885),
- [sym_type_query] = STATE(2885),
- [sym_index_type_query] = STATE(2885),
- [sym_lookup_type] = STATE(2885),
- [sym_literal_type] = STATE(2885),
- [sym__number] = STATE(2903),
- [sym_existential_type] = STATE(2885),
- [sym_flow_maybe_type] = STATE(2885),
- [sym_parenthesized_type] = STATE(2885),
- [sym_predefined_type] = STATE(2885),
- [sym_object_type] = STATE(2885),
- [sym_type_parameters] = STATE(5435),
- [sym_array_type] = STATE(2885),
- [sym_tuple_type] = STATE(2885),
- [sym_readonly_type] = STATE(2896),
- [sym_union_type] = STATE(2885),
- [sym_intersection_type] = STATE(2885),
- [sym_function_type] = STATE(2896),
- [sym_identifier] = ACTIONS(1496),
- [anon_sym_STAR] = ACTIONS(612),
- [anon_sym_LBRACE] = ACTIONS(1498),
- [anon_sym_typeof] = ACTIONS(1500),
- [anon_sym_import] = ACTIONS(133),
- [anon_sym_const] = ACTIONS(135),
- [anon_sym_LPAREN] = ACTIONS(1502),
- [anon_sym_LBRACK] = ACTIONS(1504),
- [anon_sym_DQUOTE] = ACTIONS(1506),
- [anon_sym_SQUOTE] = ACTIONS(1508),
- [anon_sym_new] = ACTIONS(1510),
- [anon_sym_AMP] = ACTIONS(741),
- [anon_sym_PIPE] = ACTIONS(743),
- [anon_sym_PLUS] = ACTIONS(2579),
- [anon_sym_DASH] = ACTIONS(2579),
- [anon_sym_LT] = ACTIONS(2581),
- [anon_sym_void] = ACTIONS(220),
- [sym_comment] = ACTIONS(5),
- [anon_sym_BQUOTE] = ACTIONS(1516),
- [sym_number] = ACTIONS(1518),
- [sym_this] = ACTIONS(1520),
- [sym_true] = ACTIONS(1522),
- [sym_false] = ACTIONS(1522),
- [sym_null] = ACTIONS(1522),
- [sym_undefined] = ACTIONS(1522),
- [anon_sym_readonly] = ACTIONS(1524),
- [anon_sym_QMARK] = ACTIONS(761),
- [anon_sym_any] = ACTIONS(220),
- [anon_sym_number] = ACTIONS(220),
- [anon_sym_boolean] = ACTIONS(220),
- [anon_sym_string] = ACTIONS(220),
- [anon_sym_symbol] = ACTIONS(220),
- [anon_sym_object] = ACTIONS(220),
- [anon_sym_abstract] = ACTIONS(212),
- [anon_sym_infer] = ACTIONS(214),
- [anon_sym_keyof] = ACTIONS(216),
- [anon_sym_unique] = ACTIONS(218),
- [anon_sym_unknown] = ACTIONS(220),
- [anon_sym_never] = ACTIONS(220),
- [anon_sym_LBRACE_PIPE] = ACTIONS(222),
- [sym_html_comment] = ACTIONS(5),
- },
- [1069] = {
- [sym_import] = STATE(4753),
- [sym_nested_identifier] = STATE(5707),
- [sym_string] = STATE(2889),
- [sym_formal_parameters] = STATE(5626),
- [sym_nested_type_identifier] = STATE(2828),
- [sym__type_query_member_expression_in_type_annotation] = STATE(3228),
- [sym__type_query_call_expression_in_type_annotation] = STATE(2850),
- [sym_type] = STATE(2915),
- [sym_constructor_type] = STATE(2896),
- [sym_primary_type] = STATE(2897),
- [sym_template_literal_type] = STATE(2885),
- [sym_infer_type] = STATE(2896),
- [sym_conditional_type] = STATE(2885),
- [sym_generic_type] = STATE(2885),
- [sym_type_query] = STATE(2885),
- [sym_index_type_query] = STATE(2885),
- [sym_lookup_type] = STATE(2885),
- [sym_literal_type] = STATE(2885),
- [sym__number] = STATE(2903),
- [sym_existential_type] = STATE(2885),
- [sym_flow_maybe_type] = STATE(2885),
- [sym_parenthesized_type] = STATE(2885),
- [sym_predefined_type] = STATE(2885),
- [sym_object_type] = STATE(2885),
- [sym_type_parameters] = STATE(5517),
- [sym_array_type] = STATE(2885),
- [sym_tuple_type] = STATE(2885),
- [sym_readonly_type] = STATE(2896),
- [sym_union_type] = STATE(2885),
- [sym_intersection_type] = STATE(2885),
- [sym_function_type] = STATE(2896),
- [sym_identifier] = ACTIONS(1496),
- [anon_sym_STAR] = ACTIONS(612),
- [anon_sym_LBRACE] = ACTIONS(1498),
- [anon_sym_typeof] = ACTIONS(1500),
- [anon_sym_import] = ACTIONS(133),
- [anon_sym_const] = ACTIONS(135),
- [anon_sym_LPAREN] = ACTIONS(1502),
- [anon_sym_LBRACK] = ACTIONS(1504),
- [anon_sym_DQUOTE] = ACTIONS(1506),
- [anon_sym_SQUOTE] = ACTIONS(1508),
- [anon_sym_new] = ACTIONS(1572),
- [anon_sym_AMP] = ACTIONS(640),
- [anon_sym_PIPE] = ACTIONS(642),
- [anon_sym_PLUS] = ACTIONS(2579),
- [anon_sym_DASH] = ACTIONS(2579),
- [anon_sym_LT] = ACTIONS(2581),
- [anon_sym_void] = ACTIONS(220),
- [sym_comment] = ACTIONS(5),
- [anon_sym_BQUOTE] = ACTIONS(1516),
- [sym_number] = ACTIONS(1518),
- [sym_this] = ACTIONS(1520),
- [sym_true] = ACTIONS(1522),
- [sym_false] = ACTIONS(1522),
- [sym_null] = ACTIONS(1522),
- [sym_undefined] = ACTIONS(1522),
- [anon_sym_readonly] = ACTIONS(1578),
- [anon_sym_QMARK] = ACTIONS(662),
- [anon_sym_any] = ACTIONS(220),
- [anon_sym_number] = ACTIONS(220),
- [anon_sym_boolean] = ACTIONS(220),
- [anon_sym_string] = ACTIONS(220),
- [anon_sym_symbol] = ACTIONS(220),
- [anon_sym_object] = ACTIONS(220),
- [anon_sym_abstract] = ACTIONS(666),
- [anon_sym_infer] = ACTIONS(668),
- [anon_sym_keyof] = ACTIONS(670),
- [anon_sym_unique] = ACTIONS(218),
- [anon_sym_unknown] = ACTIONS(220),
- [anon_sym_never] = ACTIONS(220),
- [anon_sym_LBRACE_PIPE] = ACTIONS(222),
- [sym_html_comment] = ACTIONS(5),
- },
- [1070] = {
- [sym_import] = STATE(4753),
- [sym_nested_identifier] = STATE(5707),
- [sym_string] = STATE(2889),
- [sym_formal_parameters] = STATE(5626),
- [sym_nested_type_identifier] = STATE(2828),
- [sym__type_query_member_expression_in_type_annotation] = STATE(3228),
- [sym__type_query_call_expression_in_type_annotation] = STATE(2850),
- [sym_type] = STATE(3618),
- [sym_constructor_type] = STATE(2896),
- [sym_primary_type] = STATE(2897),
- [sym_template_literal_type] = STATE(2885),
- [sym_infer_type] = STATE(2896),
- [sym_conditional_type] = STATE(2885),
- [sym_generic_type] = STATE(2885),
- [sym_type_query] = STATE(2885),
- [sym_index_type_query] = STATE(2885),
- [sym_lookup_type] = STATE(2885),
- [sym_literal_type] = STATE(2885),
- [sym__number] = STATE(2903),
- [sym_existential_type] = STATE(2885),
- [sym_flow_maybe_type] = STATE(2885),
- [sym_parenthesized_type] = STATE(2885),
- [sym_predefined_type] = STATE(2885),
- [sym_object_type] = STATE(2885),
- [sym_type_parameters] = STATE(5517),
- [sym_array_type] = STATE(2885),
- [sym_tuple_type] = STATE(2885),
- [sym_readonly_type] = STATE(2896),
- [sym_union_type] = STATE(2885),
- [sym_intersection_type] = STATE(2885),
- [sym_function_type] = STATE(2896),
- [sym_identifier] = ACTIONS(1496),
- [anon_sym_STAR] = ACTIONS(612),
- [anon_sym_LBRACE] = ACTIONS(1498),
- [anon_sym_typeof] = ACTIONS(1500),
- [anon_sym_import] = ACTIONS(133),
- [anon_sym_const] = ACTIONS(135),
- [anon_sym_LPAREN] = ACTIONS(1502),
- [anon_sym_LBRACK] = ACTIONS(1504),
- [anon_sym_DQUOTE] = ACTIONS(1506),
- [anon_sym_SQUOTE] = ACTIONS(1508),
- [anon_sym_new] = ACTIONS(1572),
- [anon_sym_AMP] = ACTIONS(640),
- [anon_sym_PIPE] = ACTIONS(642),
- [anon_sym_PLUS] = ACTIONS(2579),
- [anon_sym_DASH] = ACTIONS(2579),
- [anon_sym_LT] = ACTIONS(2581),
- [anon_sym_void] = ACTIONS(220),
- [sym_comment] = ACTIONS(5),
- [anon_sym_BQUOTE] = ACTIONS(1516),
- [sym_number] = ACTIONS(1518),
- [sym_this] = ACTIONS(1520),
- [sym_true] = ACTIONS(1522),
- [sym_false] = ACTIONS(1522),
- [sym_null] = ACTIONS(1522),
- [sym_undefined] = ACTIONS(1522),
- [anon_sym_readonly] = ACTIONS(1578),
- [anon_sym_QMARK] = ACTIONS(662),
- [anon_sym_any] = ACTIONS(220),
- [anon_sym_number] = ACTIONS(220),
- [anon_sym_boolean] = ACTIONS(220),
- [anon_sym_string] = ACTIONS(220),
- [anon_sym_symbol] = ACTIONS(220),
- [anon_sym_object] = ACTIONS(220),
- [anon_sym_abstract] = ACTIONS(666),
- [anon_sym_infer] = ACTIONS(668),
- [anon_sym_keyof] = ACTIONS(670),
- [anon_sym_unique] = ACTIONS(218),
- [anon_sym_unknown] = ACTIONS(220),
- [anon_sym_never] = ACTIONS(220),
- [anon_sym_LBRACE_PIPE] = ACTIONS(222),
- [sym_html_comment] = ACTIONS(5),
- },
- [1071] = {
- [sym_import] = STATE(4753),
- [sym_nested_identifier] = STATE(5707),
- [sym_string] = STATE(2889),
- [sym_formal_parameters] = STATE(5626),
- [sym_nested_type_identifier] = STATE(2828),
- [sym__type_query_member_expression_in_type_annotation] = STATE(3228),
- [sym__type_query_call_expression_in_type_annotation] = STATE(2850),
- [sym_type] = STATE(3619),
- [sym_constructor_type] = STATE(2896),
- [sym_primary_type] = STATE(2897),
- [sym_template_literal_type] = STATE(2885),
- [sym_infer_type] = STATE(2896),
- [sym_conditional_type] = STATE(2885),
- [sym_generic_type] = STATE(2885),
- [sym_type_query] = STATE(2885),
- [sym_index_type_query] = STATE(2885),
- [sym_lookup_type] = STATE(2885),
- [sym_literal_type] = STATE(2885),
- [sym__number] = STATE(2903),
- [sym_existential_type] = STATE(2885),
- [sym_flow_maybe_type] = STATE(2885),
- [sym_parenthesized_type] = STATE(2885),
- [sym_predefined_type] = STATE(2885),
- [sym_object_type] = STATE(2885),
- [sym_type_parameters] = STATE(5517),
- [sym_array_type] = STATE(2885),
- [sym_tuple_type] = STATE(2885),
- [sym_readonly_type] = STATE(2896),
- [sym_union_type] = STATE(2885),
- [sym_intersection_type] = STATE(2885),
- [sym_function_type] = STATE(2896),
- [sym_identifier] = ACTIONS(1496),
- [anon_sym_STAR] = ACTIONS(612),
- [anon_sym_LBRACE] = ACTIONS(1498),
- [anon_sym_typeof] = ACTIONS(1500),
- [anon_sym_import] = ACTIONS(133),
- [anon_sym_const] = ACTIONS(135),
- [anon_sym_LPAREN] = ACTIONS(1502),
- [anon_sym_LBRACK] = ACTIONS(1504),
- [anon_sym_DQUOTE] = ACTIONS(1506),
- [anon_sym_SQUOTE] = ACTIONS(1508),
- [anon_sym_new] = ACTIONS(1572),
- [anon_sym_AMP] = ACTIONS(640),
- [anon_sym_PIPE] = ACTIONS(642),
- [anon_sym_PLUS] = ACTIONS(2579),
- [anon_sym_DASH] = ACTIONS(2579),
- [anon_sym_LT] = ACTIONS(2581),
- [anon_sym_void] = ACTIONS(220),
- [sym_comment] = ACTIONS(5),
- [anon_sym_BQUOTE] = ACTIONS(1516),
- [sym_number] = ACTIONS(1518),
- [sym_this] = ACTIONS(1520),
- [sym_true] = ACTIONS(1522),
- [sym_false] = ACTIONS(1522),
- [sym_null] = ACTIONS(1522),
- [sym_undefined] = ACTIONS(1522),
- [anon_sym_readonly] = ACTIONS(1578),
- [anon_sym_QMARK] = ACTIONS(662),
- [anon_sym_any] = ACTIONS(220),
- [anon_sym_number] = ACTIONS(220),
- [anon_sym_boolean] = ACTIONS(220),
- [anon_sym_string] = ACTIONS(220),
- [anon_sym_symbol] = ACTIONS(220),
- [anon_sym_object] = ACTIONS(220),
- [anon_sym_abstract] = ACTIONS(666),
- [anon_sym_infer] = ACTIONS(668),
- [anon_sym_keyof] = ACTIONS(670),
- [anon_sym_unique] = ACTIONS(218),
- [anon_sym_unknown] = ACTIONS(220),
- [anon_sym_never] = ACTIONS(220),
- [anon_sym_LBRACE_PIPE] = ACTIONS(222),
- [sym_html_comment] = ACTIONS(5),
- },
- [1072] = {
- [sym_import] = STATE(5087),
- [sym_nested_identifier] = STATE(5707),
- [sym_string] = STATE(2889),
- [sym_formal_parameters] = STATE(5709),
- [sym_nested_type_identifier] = STATE(2828),
- [sym__type_query_member_expression_in_type_annotation] = STATE(2846),
- [sym__type_query_call_expression_in_type_annotation] = STATE(2850),
- [sym_type] = STATE(5060),
- [sym_constructor_type] = STATE(2896),
- [sym_primary_type] = STATE(2858),
- [sym_template_literal_type] = STATE(2885),
- [sym_infer_type] = STATE(2896),
- [sym_conditional_type] = STATE(2885),
- [sym_generic_type] = STATE(2885),
- [sym_type_query] = STATE(2885),
- [sym_index_type_query] = STATE(2885),
- [sym_lookup_type] = STATE(2885),
- [sym_literal_type] = STATE(2885),
- [sym__number] = STATE(2903),
- [sym_existential_type] = STATE(2885),
- [sym_flow_maybe_type] = STATE(2885),
- [sym_parenthesized_type] = STATE(2885),
- [sym_predefined_type] = STATE(2885),
- [sym_object_type] = STATE(2885),
- [sym_type_parameters] = STATE(5435),
- [sym_array_type] = STATE(2885),
- [sym_tuple_type] = STATE(2885),
- [sym_readonly_type] = STATE(2896),
- [sym_union_type] = STATE(2885),
- [sym_intersection_type] = STATE(2885),
- [sym_function_type] = STATE(2896),
- [sym_identifier] = ACTIONS(1496),
- [anon_sym_STAR] = ACTIONS(612),
- [anon_sym_LBRACE] = ACTIONS(1498),
- [anon_sym_typeof] = ACTIONS(1500),
- [anon_sym_import] = ACTIONS(133),
- [anon_sym_const] = ACTIONS(135),
- [anon_sym_LPAREN] = ACTIONS(1502),
- [anon_sym_LBRACK] = ACTIONS(1504),
- [anon_sym_DQUOTE] = ACTIONS(1506),
- [anon_sym_SQUOTE] = ACTIONS(1508),
- [anon_sym_new] = ACTIONS(1510),
- [anon_sym_AMP] = ACTIONS(640),
- [anon_sym_PIPE] = ACTIONS(642),
- [anon_sym_PLUS] = ACTIONS(2579),
- [anon_sym_DASH] = ACTIONS(2579),
- [anon_sym_LT] = ACTIONS(2581),
- [anon_sym_void] = ACTIONS(220),
- [sym_comment] = ACTIONS(5),
- [anon_sym_BQUOTE] = ACTIONS(1516),
- [sym_number] = ACTIONS(1518),
- [sym_this] = ACTIONS(1520),
- [sym_true] = ACTIONS(1522),
- [sym_false] = ACTIONS(1522),
- [sym_null] = ACTIONS(1522),
- [sym_undefined] = ACTIONS(1522),
- [anon_sym_readonly] = ACTIONS(1524),
- [anon_sym_QMARK] = ACTIONS(662),
- [anon_sym_any] = ACTIONS(220),
- [anon_sym_number] = ACTIONS(220),
- [anon_sym_boolean] = ACTIONS(220),
- [anon_sym_string] = ACTIONS(220),
- [anon_sym_symbol] = ACTIONS(220),
- [anon_sym_object] = ACTIONS(220),
- [anon_sym_abstract] = ACTIONS(212),
- [anon_sym_infer] = ACTIONS(214),
- [anon_sym_keyof] = ACTIONS(670),
- [anon_sym_unique] = ACTIONS(218),
- [anon_sym_unknown] = ACTIONS(220),
- [anon_sym_never] = ACTIONS(220),
- [anon_sym_LBRACE_PIPE] = ACTIONS(222),
- [sym_html_comment] = ACTIONS(5),
- },
- [1073] = {
- [sym_import] = STATE(5087),
- [sym_nested_identifier] = STATE(5707),
- [sym_string] = STATE(2889),
- [sym_formal_parameters] = STATE(5709),
- [sym_nested_type_identifier] = STATE(2828),
- [sym__type_query_member_expression_in_type_annotation] = STATE(2846),
- [sym__type_query_call_expression_in_type_annotation] = STATE(2850),
- [sym_type] = STATE(5060),
- [sym_constructor_type] = STATE(2896),
- [sym_primary_type] = STATE(2860),
- [sym_template_literal_type] = STATE(2885),
- [sym_infer_type] = STATE(2896),
- [sym_conditional_type] = STATE(2885),
- [sym_generic_type] = STATE(2885),
- [sym_type_query] = STATE(2885),
- [sym_index_type_query] = STATE(2885),
- [sym_lookup_type] = STATE(2885),
- [sym_literal_type] = STATE(2885),
- [sym__number] = STATE(2903),
- [sym_existential_type] = STATE(2885),
- [sym_flow_maybe_type] = STATE(2885),
- [sym_parenthesized_type] = STATE(2885),
- [sym_predefined_type] = STATE(2885),
- [sym_object_type] = STATE(2885),
- [sym_type_parameters] = STATE(5435),
- [sym_array_type] = STATE(2885),
- [sym_tuple_type] = STATE(2885),
- [sym_readonly_type] = STATE(2896),
- [sym_union_type] = STATE(2885),
- [sym_intersection_type] = STATE(2885),
- [sym_function_type] = STATE(2896),
- [sym_identifier] = ACTIONS(1496),
- [anon_sym_STAR] = ACTIONS(612),
- [anon_sym_LBRACE] = ACTIONS(1498),
- [anon_sym_typeof] = ACTIONS(1500),
- [anon_sym_import] = ACTIONS(133),
- [anon_sym_const] = ACTIONS(135),
- [anon_sym_LPAREN] = ACTIONS(1502),
- [anon_sym_LBRACK] = ACTIONS(1504),
- [anon_sym_DQUOTE] = ACTIONS(1506),
- [anon_sym_SQUOTE] = ACTIONS(1508),
- [anon_sym_new] = ACTIONS(1510),
- [anon_sym_AMP] = ACTIONS(640),
- [anon_sym_PIPE] = ACTIONS(642),
- [anon_sym_PLUS] = ACTIONS(2579),
- [anon_sym_DASH] = ACTIONS(2579),
- [anon_sym_LT] = ACTIONS(2581),
- [anon_sym_void] = ACTIONS(220),
- [sym_comment] = ACTIONS(5),
- [anon_sym_BQUOTE] = ACTIONS(1516),
- [sym_number] = ACTIONS(1518),
- [sym_this] = ACTIONS(1520),
- [sym_true] = ACTIONS(1522),
- [sym_false] = ACTIONS(1522),
- [sym_null] = ACTIONS(1522),
- [sym_undefined] = ACTIONS(1522),
- [anon_sym_readonly] = ACTIONS(1524),
- [anon_sym_QMARK] = ACTIONS(662),
- [anon_sym_any] = ACTIONS(220),
- [anon_sym_number] = ACTIONS(220),
- [anon_sym_boolean] = ACTIONS(220),
- [anon_sym_string] = ACTIONS(220),
- [anon_sym_symbol] = ACTIONS(220),
- [anon_sym_object] = ACTIONS(220),
- [anon_sym_abstract] = ACTIONS(212),
- [anon_sym_infer] = ACTIONS(214),
- [anon_sym_keyof] = ACTIONS(670),
- [anon_sym_unique] = ACTIONS(218),
- [anon_sym_unknown] = ACTIONS(220),
- [anon_sym_never] = ACTIONS(220),
- [anon_sym_LBRACE_PIPE] = ACTIONS(222),
- [sym_html_comment] = ACTIONS(5),
- },
- [1074] = {
- [sym_import] = STATE(5087),
- [sym_nested_identifier] = STATE(5707),
- [sym_string] = STATE(2889),
- [sym_formal_parameters] = STATE(5709),
- [sym_nested_type_identifier] = STATE(2828),
- [sym__type_query_member_expression_in_type_annotation] = STATE(2846),
- [sym__type_query_call_expression_in_type_annotation] = STATE(2850),
- [sym_type] = STATE(4496),
- [sym_constructor_type] = STATE(2896),
- [sym_primary_type] = STATE(2897),
- [sym_template_literal_type] = STATE(2885),
- [sym_infer_type] = STATE(2896),
- [sym_conditional_type] = STATE(2885),
- [sym_generic_type] = STATE(2885),
- [sym_type_query] = STATE(2885),
- [sym_index_type_query] = STATE(2885),
- [sym_lookup_type] = STATE(2885),
- [sym_literal_type] = STATE(2885),
- [sym__number] = STATE(2903),
- [sym_existential_type] = STATE(2885),
- [sym_flow_maybe_type] = STATE(2885),
- [sym_parenthesized_type] = STATE(2885),
- [sym_predefined_type] = STATE(2885),
- [sym_object_type] = STATE(2885),
- [sym_type_parameters] = STATE(5435),
- [sym_array_type] = STATE(2885),
- [sym_tuple_type] = STATE(2885),
- [sym_readonly_type] = STATE(2896),
- [sym_union_type] = STATE(2885),
- [sym_intersection_type] = STATE(2885),
- [sym_function_type] = STATE(2896),
- [sym_identifier] = ACTIONS(1496),
- [anon_sym_STAR] = ACTIONS(612),
- [anon_sym_LBRACE] = ACTIONS(1498),
- [anon_sym_typeof] = ACTIONS(1500),
- [anon_sym_import] = ACTIONS(133),
- [anon_sym_const] = ACTIONS(135),
- [anon_sym_LPAREN] = ACTIONS(1502),
- [anon_sym_LBRACK] = ACTIONS(1504),
- [anon_sym_DQUOTE] = ACTIONS(1506),
- [anon_sym_SQUOTE] = ACTIONS(1508),
- [anon_sym_new] = ACTIONS(1510),
- [anon_sym_AMP] = ACTIONS(741),
- [anon_sym_PIPE] = ACTIONS(743),
- [anon_sym_PLUS] = ACTIONS(2579),
- [anon_sym_DASH] = ACTIONS(2579),
- [anon_sym_LT] = ACTIONS(2581),
- [anon_sym_void] = ACTIONS(220),
- [sym_comment] = ACTIONS(5),
- [anon_sym_BQUOTE] = ACTIONS(1516),
- [sym_number] = ACTIONS(1518),
- [sym_this] = ACTIONS(1520),
- [sym_true] = ACTIONS(1522),
- [sym_false] = ACTIONS(1522),
- [sym_null] = ACTIONS(1522),
- [sym_undefined] = ACTIONS(1522),
- [anon_sym_readonly] = ACTIONS(1524),
- [anon_sym_QMARK] = ACTIONS(761),
- [anon_sym_any] = ACTIONS(220),
- [anon_sym_number] = ACTIONS(220),
- [anon_sym_boolean] = ACTIONS(220),
- [anon_sym_string] = ACTIONS(220),
- [anon_sym_symbol] = ACTIONS(220),
- [anon_sym_object] = ACTIONS(220),
- [anon_sym_abstract] = ACTIONS(212),
- [anon_sym_infer] = ACTIONS(214),
- [anon_sym_keyof] = ACTIONS(216),
- [anon_sym_unique] = ACTIONS(218),
- [anon_sym_unknown] = ACTIONS(220),
- [anon_sym_never] = ACTIONS(220),
- [anon_sym_LBRACE_PIPE] = ACTIONS(222),
- [sym_html_comment] = ACTIONS(5),
- },
- [1075] = {
- [sym_import] = STATE(5087),
- [sym_nested_identifier] = STATE(5707),
- [sym_string] = STATE(2889),
- [sym_formal_parameters] = STATE(5709),
- [sym_nested_type_identifier] = STATE(2828),
- [sym__type_query_member_expression_in_type_annotation] = STATE(2846),
- [sym__type_query_call_expression_in_type_annotation] = STATE(2850),
- [sym_type] = STATE(3333),
- [sym_constructor_type] = STATE(2896),
- [sym_primary_type] = STATE(2897),
- [sym_template_literal_type] = STATE(2885),
- [sym_infer_type] = STATE(2896),
- [sym_conditional_type] = STATE(2885),
- [sym_generic_type] = STATE(2885),
- [sym_type_query] = STATE(2885),
- [sym_index_type_query] = STATE(2885),
- [sym_lookup_type] = STATE(2885),
- [sym_literal_type] = STATE(2885),
- [sym__number] = STATE(2903),
- [sym_existential_type] = STATE(2885),
- [sym_flow_maybe_type] = STATE(2885),
- [sym_parenthesized_type] = STATE(2885),
- [sym_predefined_type] = STATE(2885),
- [sym_object_type] = STATE(2885),
- [sym_type_parameters] = STATE(5435),
- [sym_array_type] = STATE(2885),
- [sym_tuple_type] = STATE(2885),
- [sym_readonly_type] = STATE(2896),
- [sym_union_type] = STATE(2885),
- [sym_intersection_type] = STATE(2885),
- [sym_function_type] = STATE(2896),
- [sym_identifier] = ACTIONS(1496),
- [anon_sym_STAR] = ACTIONS(612),
- [anon_sym_LBRACE] = ACTIONS(1498),
- [anon_sym_typeof] = ACTIONS(1500),
- [anon_sym_import] = ACTIONS(133),
- [anon_sym_const] = ACTIONS(135),
- [anon_sym_LPAREN] = ACTIONS(1502),
- [anon_sym_LBRACK] = ACTIONS(1504),
- [anon_sym_DQUOTE] = ACTIONS(1506),
- [anon_sym_SQUOTE] = ACTIONS(1508),
- [anon_sym_new] = ACTIONS(1510),
- [anon_sym_AMP] = ACTIONS(741),
- [anon_sym_PIPE] = ACTIONS(743),
- [anon_sym_PLUS] = ACTIONS(2579),
- [anon_sym_DASH] = ACTIONS(2579),
- [anon_sym_LT] = ACTIONS(2581),
- [anon_sym_void] = ACTIONS(220),
- [sym_comment] = ACTIONS(5),
- [anon_sym_BQUOTE] = ACTIONS(1516),
- [sym_number] = ACTIONS(1518),
- [sym_this] = ACTIONS(1520),
- [sym_true] = ACTIONS(1522),
- [sym_false] = ACTIONS(1522),
- [sym_null] = ACTIONS(1522),
- [sym_undefined] = ACTIONS(1522),
- [anon_sym_readonly] = ACTIONS(1524),
- [anon_sym_QMARK] = ACTIONS(761),
- [anon_sym_any] = ACTIONS(220),
- [anon_sym_number] = ACTIONS(220),
- [anon_sym_boolean] = ACTIONS(220),
- [anon_sym_string] = ACTIONS(220),
- [anon_sym_symbol] = ACTIONS(220),
- [anon_sym_object] = ACTIONS(220),
- [anon_sym_abstract] = ACTIONS(212),
- [anon_sym_infer] = ACTIONS(214),
- [anon_sym_keyof] = ACTIONS(216),
- [anon_sym_unique] = ACTIONS(218),
- [anon_sym_unknown] = ACTIONS(220),
- [anon_sym_never] = ACTIONS(220),
- [anon_sym_LBRACE_PIPE] = ACTIONS(222),
- [sym_html_comment] = ACTIONS(5),
- },
- [1076] = {
- [sym_import] = STATE(4618),
- [sym_nested_identifier] = STATE(5906),
- [sym_string] = STATE(1947),
- [sym_formal_parameters] = STATE(5651),
- [sym_nested_type_identifier] = STATE(1799),
- [sym__type_query_member_expression_in_type_annotation] = STATE(1800),
- [sym__type_query_call_expression_in_type_annotation] = STATE(1928),
- [sym_type] = STATE(2102),
- [sym_constructor_type] = STATE(1929),
- [sym_primary_type] = STATE(1931),
- [sym_template_literal_type] = STATE(1936),
- [sym_infer_type] = STATE(1929),
- [sym_conditional_type] = STATE(1936),
- [sym_generic_type] = STATE(1936),
- [sym_type_query] = STATE(1936),
- [sym_index_type_query] = STATE(1936),
- [sym_lookup_type] = STATE(1936),
- [sym_literal_type] = STATE(1936),
- [sym__number] = STATE(1932),
- [sym_existential_type] = STATE(1936),
- [sym_flow_maybe_type] = STATE(1936),
- [sym_parenthesized_type] = STATE(1936),
- [sym_predefined_type] = STATE(1936),
- [sym_object_type] = STATE(1936),
- [sym_type_parameters] = STATE(5347),
- [sym_array_type] = STATE(1936),
- [sym_tuple_type] = STATE(1936),
- [sym_readonly_type] = STATE(1929),
- [sym_union_type] = STATE(1936),
- [sym_intersection_type] = STATE(1936),
- [sym_function_type] = STATE(1929),
- [sym_identifier] = ACTIONS(3177),
- [anon_sym_STAR] = ACTIONS(2929),
- [anon_sym_LBRACE] = ACTIONS(2931),
- [anon_sym_typeof] = ACTIONS(2933),
- [anon_sym_import] = ACTIONS(133),
- [anon_sym_const] = ACTIONS(2935),
- [anon_sym_LPAREN] = ACTIONS(2937),
- [anon_sym_LBRACK] = ACTIONS(2939),
- [anon_sym_DQUOTE] = ACTIONS(69),
- [anon_sym_SQUOTE] = ACTIONS(71),
- [anon_sym_new] = ACTIONS(2941),
- [anon_sym_AMP] = ACTIONS(2943),
- [anon_sym_PIPE] = ACTIONS(2945),
- [anon_sym_PLUS] = ACTIONS(2947),
- [anon_sym_DASH] = ACTIONS(2947),
- [anon_sym_LT] = ACTIONS(2581),
- [anon_sym_void] = ACTIONS(2949),
- [sym_comment] = ACTIONS(5),
- [anon_sym_BQUOTE] = ACTIONS(2951),
- [sym_number] = ACTIONS(2953),
- [sym_this] = ACTIONS(3179),
- [sym_true] = ACTIONS(2957),
- [sym_false] = ACTIONS(2957),
- [sym_null] = ACTIONS(2957),
- [sym_undefined] = ACTIONS(2957),
- [anon_sym_readonly] = ACTIONS(2959),
- [anon_sym_QMARK] = ACTIONS(2961),
- [anon_sym_any] = ACTIONS(2949),
- [anon_sym_number] = ACTIONS(2949),
- [anon_sym_boolean] = ACTIONS(2949),
- [anon_sym_string] = ACTIONS(2949),
- [anon_sym_symbol] = ACTIONS(2949),
- [anon_sym_object] = ACTIONS(2949),
- [anon_sym_abstract] = ACTIONS(2963),
- [anon_sym_infer] = ACTIONS(2967),
- [anon_sym_keyof] = ACTIONS(2969),
- [anon_sym_unique] = ACTIONS(2971),
- [anon_sym_unknown] = ACTIONS(2949),
- [anon_sym_never] = ACTIONS(2949),
- [anon_sym_LBRACE_PIPE] = ACTIONS(2973),
- [sym_html_comment] = ACTIONS(5),
- },
- [1077] = {
- [sym_import] = STATE(4618),
- [sym_nested_identifier] = STATE(5906),
- [sym_string] = STATE(1947),
- [sym_formal_parameters] = STATE(5651),
- [sym_nested_type_identifier] = STATE(1799),
- [sym__type_query_member_expression_in_type_annotation] = STATE(1800),
- [sym__type_query_call_expression_in_type_annotation] = STATE(1928),
- [sym_type] = STATE(2103),
- [sym_constructor_type] = STATE(1929),
- [sym_primary_type] = STATE(1931),
- [sym_template_literal_type] = STATE(1936),
- [sym_infer_type] = STATE(1929),
- [sym_conditional_type] = STATE(1936),
- [sym_generic_type] = STATE(1936),
- [sym_type_query] = STATE(1936),
- [sym_index_type_query] = STATE(1936),
- [sym_lookup_type] = STATE(1936),
- [sym_literal_type] = STATE(1936),
- [sym__number] = STATE(1932),
- [sym_existential_type] = STATE(1936),
- [sym_flow_maybe_type] = STATE(1936),
- [sym_parenthesized_type] = STATE(1936),
- [sym_predefined_type] = STATE(1936),
- [sym_object_type] = STATE(1936),
- [sym_type_parameters] = STATE(5347),
- [sym_array_type] = STATE(1936),
- [sym_tuple_type] = STATE(1936),
- [sym_readonly_type] = STATE(1929),
- [sym_union_type] = STATE(1936),
- [sym_intersection_type] = STATE(1936),
- [sym_function_type] = STATE(1929),
- [sym_identifier] = ACTIONS(3177),
- [anon_sym_STAR] = ACTIONS(2929),
- [anon_sym_LBRACE] = ACTIONS(2931),
- [anon_sym_typeof] = ACTIONS(2933),
- [anon_sym_import] = ACTIONS(133),
- [anon_sym_const] = ACTIONS(2935),
- [anon_sym_LPAREN] = ACTIONS(2937),
- [anon_sym_LBRACK] = ACTIONS(2939),
- [anon_sym_DQUOTE] = ACTIONS(69),
- [anon_sym_SQUOTE] = ACTIONS(71),
- [anon_sym_new] = ACTIONS(2941),
- [anon_sym_AMP] = ACTIONS(2943),
- [anon_sym_PIPE] = ACTIONS(2945),
- [anon_sym_PLUS] = ACTIONS(2947),
- [anon_sym_DASH] = ACTIONS(2947),
- [anon_sym_LT] = ACTIONS(2581),
- [anon_sym_void] = ACTIONS(2949),
- [sym_comment] = ACTIONS(5),
- [anon_sym_BQUOTE] = ACTIONS(2951),
- [sym_number] = ACTIONS(2953),
- [sym_this] = ACTIONS(3179),
- [sym_true] = ACTIONS(2957),
- [sym_false] = ACTIONS(2957),
- [sym_null] = ACTIONS(2957),
- [sym_undefined] = ACTIONS(2957),
- [anon_sym_readonly] = ACTIONS(2959),
- [anon_sym_QMARK] = ACTIONS(2961),
- [anon_sym_any] = ACTIONS(2949),
- [anon_sym_number] = ACTIONS(2949),
- [anon_sym_boolean] = ACTIONS(2949),
- [anon_sym_string] = ACTIONS(2949),
- [anon_sym_symbol] = ACTIONS(2949),
- [anon_sym_object] = ACTIONS(2949),
- [anon_sym_abstract] = ACTIONS(2963),
- [anon_sym_infer] = ACTIONS(2967),
- [anon_sym_keyof] = ACTIONS(2969),
- [anon_sym_unique] = ACTIONS(2971),
- [anon_sym_unknown] = ACTIONS(2949),
- [anon_sym_never] = ACTIONS(2949),
- [anon_sym_LBRACE_PIPE] = ACTIONS(2973),
- [sym_html_comment] = ACTIONS(5),
- },
- [1078] = {
- [sym_import] = STATE(4903),
- [sym_nested_identifier] = STATE(5707),
- [sym_string] = STATE(2889),
- [sym_formal_parameters] = STATE(5916),
- [sym_nested_type_identifier] = STATE(2828),
- [sym__type_query_member_expression_in_type_annotation] = STATE(3332),
- [sym__type_query_call_expression_in_type_annotation] = STATE(2850),
- [sym_type] = STATE(2915),
- [sym_constructor_type] = STATE(2896),
- [sym_primary_type] = STATE(2897),
- [sym_template_literal_type] = STATE(2885),
- [sym_infer_type] = STATE(2896),
- [sym_conditional_type] = STATE(2885),
- [sym_generic_type] = STATE(2885),
- [sym_type_query] = STATE(2885),
- [sym_index_type_query] = STATE(2885),
- [sym_lookup_type] = STATE(2885),
- [sym_literal_type] = STATE(2885),
- [sym__number] = STATE(2903),
- [sym_existential_type] = STATE(2885),
- [sym_flow_maybe_type] = STATE(2885),
- [sym_parenthesized_type] = STATE(2885),
- [sym_predefined_type] = STATE(2885),
- [sym_object_type] = STATE(2885),
- [sym_type_parameters] = STATE(5386),
- [sym_array_type] = STATE(2885),
- [sym_tuple_type] = STATE(2885),
- [sym_readonly_type] = STATE(2896),
- [sym_union_type] = STATE(2885),
- [sym_intersection_type] = STATE(2885),
- [sym_function_type] = STATE(2896),
- [sym_identifier] = ACTIONS(1496),
- [anon_sym_STAR] = ACTIONS(612),
- [anon_sym_LBRACE] = ACTIONS(3043),
- [anon_sym_typeof] = ACTIONS(3045),
- [anon_sym_import] = ACTIONS(133),
- [anon_sym_const] = ACTIONS(135),
- [anon_sym_LPAREN] = ACTIONS(1502),
- [anon_sym_LBRACK] = ACTIONS(1504),
- [anon_sym_DQUOTE] = ACTIONS(2275),
- [anon_sym_SQUOTE] = ACTIONS(2277),
- [anon_sym_new] = ACTIONS(3047),
- [anon_sym_AMP] = ACTIONS(3049),
- [anon_sym_PIPE] = ACTIONS(3051),
- [anon_sym_PLUS] = ACTIONS(2579),
- [anon_sym_DASH] = ACTIONS(2579),
- [anon_sym_LT] = ACTIONS(2581),
- [anon_sym_void] = ACTIONS(220),
- [sym_comment] = ACTIONS(5),
- [anon_sym_BQUOTE] = ACTIONS(1516),
- [sym_number] = ACTIONS(1518),
- [sym_this] = ACTIONS(1520),
- [sym_true] = ACTIONS(1522),
- [sym_false] = ACTIONS(1522),
- [sym_null] = ACTIONS(1522),
- [sym_undefined] = ACTIONS(1522),
- [anon_sym_readonly] = ACTIONS(3055),
- [anon_sym_QMARK] = ACTIONS(3057),
- [anon_sym_any] = ACTIONS(220),
- [anon_sym_number] = ACTIONS(220),
- [anon_sym_boolean] = ACTIONS(220),
- [anon_sym_string] = ACTIONS(220),
- [anon_sym_symbol] = ACTIONS(220),
- [anon_sym_object] = ACTIONS(220),
- [anon_sym_abstract] = ACTIONS(3059),
- [anon_sym_infer] = ACTIONS(3063),
- [anon_sym_keyof] = ACTIONS(3065),
- [anon_sym_unique] = ACTIONS(218),
- [anon_sym_unknown] = ACTIONS(220),
- [anon_sym_never] = ACTIONS(220),
- [anon_sym_LBRACE_PIPE] = ACTIONS(3067),
- [sym_html_comment] = ACTIONS(5),
- },
- [1079] = {
- [sym_import] = STATE(4753),
- [sym_nested_identifier] = STATE(5707),
- [sym_string] = STATE(2889),
- [sym_formal_parameters] = STATE(5626),
- [sym_nested_type_identifier] = STATE(2828),
- [sym__type_query_member_expression_in_type_annotation] = STATE(3228),
- [sym__type_query_call_expression_in_type_annotation] = STATE(2850),
- [sym_type] = STATE(4477),
- [sym_constructor_type] = STATE(2896),
- [sym_primary_type] = STATE(2897),
- [sym_template_literal_type] = STATE(2885),
- [sym_infer_type] = STATE(2896),
- [sym_conditional_type] = STATE(2885),
- [sym_generic_type] = STATE(2885),
- [sym_type_query] = STATE(2885),
- [sym_index_type_query] = STATE(2885),
- [sym_lookup_type] = STATE(2885),
- [sym_literal_type] = STATE(2885),
- [sym__number] = STATE(2903),
- [sym_existential_type] = STATE(2885),
- [sym_flow_maybe_type] = STATE(2885),
- [sym_parenthesized_type] = STATE(2885),
- [sym_predefined_type] = STATE(2885),
- [sym_object_type] = STATE(2885),
- [sym_type_parameters] = STATE(5517),
- [sym_array_type] = STATE(2885),
- [sym_tuple_type] = STATE(2885),
- [sym_readonly_type] = STATE(2896),
- [sym_union_type] = STATE(2885),
- [sym_intersection_type] = STATE(2885),
- [sym_function_type] = STATE(2896),
- [sym_identifier] = ACTIONS(1496),
- [anon_sym_STAR] = ACTIONS(612),
- [anon_sym_LBRACE] = ACTIONS(1498),
- [anon_sym_typeof] = ACTIONS(1500),
- [anon_sym_import] = ACTIONS(133),
- [anon_sym_const] = ACTIONS(135),
- [anon_sym_LPAREN] = ACTIONS(1502),
- [anon_sym_LBRACK] = ACTIONS(1504),
- [anon_sym_DQUOTE] = ACTIONS(1506),
- [anon_sym_SQUOTE] = ACTIONS(1508),
- [anon_sym_new] = ACTIONS(1572),
- [anon_sym_AMP] = ACTIONS(640),
- [anon_sym_PIPE] = ACTIONS(642),
- [anon_sym_PLUS] = ACTIONS(2579),
- [anon_sym_DASH] = ACTIONS(2579),
- [anon_sym_LT] = ACTIONS(2581),
- [anon_sym_void] = ACTIONS(220),
- [sym_comment] = ACTIONS(5),
- [anon_sym_BQUOTE] = ACTIONS(1516),
- [sym_number] = ACTIONS(1518),
- [sym_this] = ACTIONS(1520),
- [sym_true] = ACTIONS(1522),
- [sym_false] = ACTIONS(1522),
- [sym_null] = ACTIONS(1522),
- [sym_undefined] = ACTIONS(1522),
- [anon_sym_readonly] = ACTIONS(1578),
- [anon_sym_QMARK] = ACTIONS(662),
- [anon_sym_any] = ACTIONS(220),
- [anon_sym_number] = ACTIONS(220),
- [anon_sym_boolean] = ACTIONS(220),
- [anon_sym_string] = ACTIONS(220),
- [anon_sym_symbol] = ACTIONS(220),
- [anon_sym_object] = ACTIONS(220),
- [anon_sym_abstract] = ACTIONS(666),
- [anon_sym_infer] = ACTIONS(668),
- [anon_sym_keyof] = ACTIONS(670),
- [anon_sym_unique] = ACTIONS(218),
- [anon_sym_unknown] = ACTIONS(220),
- [anon_sym_never] = ACTIONS(220),
- [anon_sym_LBRACE_PIPE] = ACTIONS(222),
- [sym_html_comment] = ACTIONS(5),
- },
- [1080] = {
- [sym_import] = STATE(5087),
- [sym_nested_identifier] = STATE(5707),
- [sym_string] = STATE(2889),
- [sym_formal_parameters] = STATE(5709),
- [sym_nested_type_identifier] = STATE(2828),
- [sym__type_query_member_expression_in_type_annotation] = STATE(2846),
- [sym__type_query_call_expression_in_type_annotation] = STATE(2850),
- [sym_type] = STATE(4482),
- [sym_constructor_type] = STATE(2896),
- [sym_primary_type] = STATE(2897),
- [sym_template_literal_type] = STATE(2885),
- [sym_infer_type] = STATE(2896),
- [sym_conditional_type] = STATE(2885),
- [sym_generic_type] = STATE(2885),
- [sym_type_query] = STATE(2885),
- [sym_index_type_query] = STATE(2885),
- [sym_lookup_type] = STATE(2885),
- [sym_literal_type] = STATE(2885),
- [sym__number] = STATE(2903),
- [sym_existential_type] = STATE(2885),
- [sym_flow_maybe_type] = STATE(2885),
- [sym_parenthesized_type] = STATE(2885),
- [sym_predefined_type] = STATE(2885),
- [sym_object_type] = STATE(2885),
- [sym_type_parameters] = STATE(5435),
- [sym_array_type] = STATE(2885),
- [sym_tuple_type] = STATE(2885),
- [sym_readonly_type] = STATE(2896),
- [sym_union_type] = STATE(2885),
- [sym_intersection_type] = STATE(2885),
- [sym_function_type] = STATE(2896),
- [sym_identifier] = ACTIONS(1496),
- [anon_sym_STAR] = ACTIONS(612),
- [anon_sym_LBRACE] = ACTIONS(1498),
- [anon_sym_typeof] = ACTIONS(1500),
- [anon_sym_import] = ACTIONS(133),
- [anon_sym_const] = ACTIONS(135),
- [anon_sym_LPAREN] = ACTIONS(1502),
- [anon_sym_LBRACK] = ACTIONS(1504),
- [anon_sym_DQUOTE] = ACTIONS(1506),
- [anon_sym_SQUOTE] = ACTIONS(1508),
- [anon_sym_new] = ACTIONS(1510),
- [anon_sym_AMP] = ACTIONS(741),
- [anon_sym_PIPE] = ACTIONS(743),
- [anon_sym_PLUS] = ACTIONS(2579),
- [anon_sym_DASH] = ACTIONS(2579),
- [anon_sym_LT] = ACTIONS(2581),
- [anon_sym_void] = ACTIONS(220),
- [sym_comment] = ACTIONS(5),
- [anon_sym_BQUOTE] = ACTIONS(1516),
- [sym_number] = ACTIONS(1518),
- [sym_this] = ACTIONS(1520),
- [sym_true] = ACTIONS(1522),
- [sym_false] = ACTIONS(1522),
- [sym_null] = ACTIONS(1522),
- [sym_undefined] = ACTIONS(1522),
- [anon_sym_readonly] = ACTIONS(1524),
- [anon_sym_QMARK] = ACTIONS(761),
- [anon_sym_any] = ACTIONS(220),
- [anon_sym_number] = ACTIONS(220),
- [anon_sym_boolean] = ACTIONS(220),
- [anon_sym_string] = ACTIONS(220),
- [anon_sym_symbol] = ACTIONS(220),
- [anon_sym_object] = ACTIONS(220),
- [anon_sym_abstract] = ACTIONS(212),
- [anon_sym_infer] = ACTIONS(214),
- [anon_sym_keyof] = ACTIONS(216),
- [anon_sym_unique] = ACTIONS(218),
- [anon_sym_unknown] = ACTIONS(220),
- [anon_sym_never] = ACTIONS(220),
- [anon_sym_LBRACE_PIPE] = ACTIONS(222),
- [sym_html_comment] = ACTIONS(5),
- },
- [1081] = {
- [sym_import] = STATE(4642),
- [sym_nested_identifier] = STATE(5541),
- [sym_string] = STATE(3272),
- [sym_formal_parameters] = STATE(5632),
- [sym_nested_type_identifier] = STATE(3198),
- [sym__type_query_member_expression_in_type_annotation] = STATE(3138),
- [sym__type_query_call_expression_in_type_annotation] = STATE(3223),
- [sym_type] = STATE(3425),
- [sym_constructor_type] = STATE(3280),
- [sym_primary_type] = STATE(3281),
- [sym_template_literal_type] = STATE(3257),
- [sym_infer_type] = STATE(3280),
- [sym_conditional_type] = STATE(3257),
- [sym_generic_type] = STATE(3257),
- [sym_type_query] = STATE(3257),
- [sym_index_type_query] = STATE(3257),
- [sym_lookup_type] = STATE(3257),
- [sym_literal_type] = STATE(3257),
- [sym__number] = STATE(3285),
- [sym_existential_type] = STATE(3257),
- [sym_flow_maybe_type] = STATE(3257),
- [sym_parenthesized_type] = STATE(3257),
- [sym_predefined_type] = STATE(3257),
- [sym_object_type] = STATE(3257),
- [sym_type_parameters] = STATE(5324),
- [sym_array_type] = STATE(3257),
- [sym_tuple_type] = STATE(3257),
- [sym_readonly_type] = STATE(3280),
- [sym_union_type] = STATE(3257),
- [sym_intersection_type] = STATE(3257),
- [sym_function_type] = STATE(3280),
- [sym_identifier] = ACTIONS(3185),
- [anon_sym_STAR] = ACTIONS(2985),
- [anon_sym_LBRACE] = ACTIONS(2987),
- [anon_sym_typeof] = ACTIONS(2989),
- [anon_sym_import] = ACTIONS(133),
- [anon_sym_const] = ACTIONS(2991),
- [anon_sym_LPAREN] = ACTIONS(2993),
- [anon_sym_LBRACK] = ACTIONS(2995),
- [anon_sym_DQUOTE] = ACTIONS(2997),
- [anon_sym_SQUOTE] = ACTIONS(2999),
- [anon_sym_new] = ACTIONS(3001),
- [anon_sym_AMP] = ACTIONS(3003),
- [anon_sym_PIPE] = ACTIONS(3005),
- [anon_sym_PLUS] = ACTIONS(3007),
- [anon_sym_DASH] = ACTIONS(3007),
- [anon_sym_LT] = ACTIONS(2581),
- [anon_sym_void] = ACTIONS(3009),
- [sym_comment] = ACTIONS(5),
- [anon_sym_BQUOTE] = ACTIONS(3011),
- [sym_number] = ACTIONS(3013),
- [sym_this] = ACTIONS(3187),
- [sym_true] = ACTIONS(3017),
- [sym_false] = ACTIONS(3017),
- [sym_null] = ACTIONS(3017),
- [sym_undefined] = ACTIONS(3017),
- [anon_sym_readonly] = ACTIONS(3019),
- [anon_sym_QMARK] = ACTIONS(3021),
- [anon_sym_any] = ACTIONS(3009),
- [anon_sym_number] = ACTIONS(3009),
- [anon_sym_boolean] = ACTIONS(3009),
- [anon_sym_string] = ACTIONS(3009),
- [anon_sym_symbol] = ACTIONS(3009),
- [anon_sym_object] = ACTIONS(3009),
- [anon_sym_abstract] = ACTIONS(3023),
- [anon_sym_infer] = ACTIONS(3027),
- [anon_sym_keyof] = ACTIONS(3029),
- [anon_sym_unique] = ACTIONS(3031),
- [anon_sym_unknown] = ACTIONS(3009),
- [anon_sym_never] = ACTIONS(3009),
- [anon_sym_LBRACE_PIPE] = ACTIONS(3033),
- [sym_html_comment] = ACTIONS(5),
- },
- [1082] = {
- [sym_import] = STATE(4642),
- [sym_nested_identifier] = STATE(5541),
- [sym_string] = STATE(3272),
- [sym_formal_parameters] = STATE(5632),
- [sym_nested_type_identifier] = STATE(3198),
- [sym__type_query_member_expression_in_type_annotation] = STATE(3138),
- [sym__type_query_call_expression_in_type_annotation] = STATE(3223),
- [sym_type] = STATE(3426),
- [sym_constructor_type] = STATE(3280),
- [sym_primary_type] = STATE(3281),
- [sym_template_literal_type] = STATE(3257),
- [sym_infer_type] = STATE(3280),
- [sym_conditional_type] = STATE(3257),
- [sym_generic_type] = STATE(3257),
- [sym_type_query] = STATE(3257),
- [sym_index_type_query] = STATE(3257),
- [sym_lookup_type] = STATE(3257),
- [sym_literal_type] = STATE(3257),
- [sym__number] = STATE(3285),
- [sym_existential_type] = STATE(3257),
- [sym_flow_maybe_type] = STATE(3257),
- [sym_parenthesized_type] = STATE(3257),
- [sym_predefined_type] = STATE(3257),
- [sym_object_type] = STATE(3257),
- [sym_type_parameters] = STATE(5324),
- [sym_array_type] = STATE(3257),
- [sym_tuple_type] = STATE(3257),
- [sym_readonly_type] = STATE(3280),
- [sym_union_type] = STATE(3257),
- [sym_intersection_type] = STATE(3257),
- [sym_function_type] = STATE(3280),
- [sym_identifier] = ACTIONS(3185),
- [anon_sym_STAR] = ACTIONS(2985),
- [anon_sym_LBRACE] = ACTIONS(2987),
- [anon_sym_typeof] = ACTIONS(2989),
- [anon_sym_import] = ACTIONS(133),
- [anon_sym_const] = ACTIONS(2991),
- [anon_sym_LPAREN] = ACTIONS(2993),
- [anon_sym_LBRACK] = ACTIONS(2995),
- [anon_sym_DQUOTE] = ACTIONS(2997),
- [anon_sym_SQUOTE] = ACTIONS(2999),
- [anon_sym_new] = ACTIONS(3001),
- [anon_sym_AMP] = ACTIONS(3003),
- [anon_sym_PIPE] = ACTIONS(3005),
- [anon_sym_PLUS] = ACTIONS(3007),
- [anon_sym_DASH] = ACTIONS(3007),
- [anon_sym_LT] = ACTIONS(2581),
- [anon_sym_void] = ACTIONS(3009),
- [sym_comment] = ACTIONS(5),
- [anon_sym_BQUOTE] = ACTIONS(3011),
- [sym_number] = ACTIONS(3013),
- [sym_this] = ACTIONS(3187),
- [sym_true] = ACTIONS(3017),
- [sym_false] = ACTIONS(3017),
- [sym_null] = ACTIONS(3017),
- [sym_undefined] = ACTIONS(3017),
- [anon_sym_readonly] = ACTIONS(3019),
- [anon_sym_QMARK] = ACTIONS(3021),
- [anon_sym_any] = ACTIONS(3009),
- [anon_sym_number] = ACTIONS(3009),
- [anon_sym_boolean] = ACTIONS(3009),
- [anon_sym_string] = ACTIONS(3009),
- [anon_sym_symbol] = ACTIONS(3009),
- [anon_sym_object] = ACTIONS(3009),
- [anon_sym_abstract] = ACTIONS(3023),
- [anon_sym_infer] = ACTIONS(3027),
- [anon_sym_keyof] = ACTIONS(3029),
- [anon_sym_unique] = ACTIONS(3031),
- [anon_sym_unknown] = ACTIONS(3009),
- [anon_sym_never] = ACTIONS(3009),
- [anon_sym_LBRACE_PIPE] = ACTIONS(3033),
- [sym_html_comment] = ACTIONS(5),
- },
- [1083] = {
- [sym_import] = STATE(4753),
- [sym_nested_identifier] = STATE(5707),
- [sym_string] = STATE(2889),
- [sym_formal_parameters] = STATE(5626),
- [sym_nested_type_identifier] = STATE(2828),
- [sym__type_query_member_expression_in_type_annotation] = STATE(3228),
- [sym__type_query_call_expression_in_type_annotation] = STATE(2850),
- [sym_type] = STATE(4542),
- [sym_constructor_type] = STATE(2896),
- [sym_primary_type] = STATE(2897),
- [sym_template_literal_type] = STATE(2885),
- [sym_infer_type] = STATE(2896),
- [sym_conditional_type] = STATE(2885),
- [sym_generic_type] = STATE(2885),
- [sym_type_query] = STATE(2885),
- [sym_index_type_query] = STATE(2885),
- [sym_lookup_type] = STATE(2885),
- [sym_literal_type] = STATE(2885),
- [sym__number] = STATE(2903),
- [sym_existential_type] = STATE(2885),
- [sym_flow_maybe_type] = STATE(2885),
- [sym_parenthesized_type] = STATE(2885),
- [sym_predefined_type] = STATE(2885),
- [sym_object_type] = STATE(2885),
- [sym_type_parameters] = STATE(5517),
- [sym_array_type] = STATE(2885),
- [sym_tuple_type] = STATE(2885),
- [sym_readonly_type] = STATE(2896),
- [sym_union_type] = STATE(2885),
- [sym_intersection_type] = STATE(2885),
- [sym_function_type] = STATE(2896),
- [sym_identifier] = ACTIONS(1496),
- [anon_sym_STAR] = ACTIONS(612),
- [anon_sym_LBRACE] = ACTIONS(1498),
- [anon_sym_typeof] = ACTIONS(1500),
- [anon_sym_import] = ACTIONS(133),
- [anon_sym_const] = ACTIONS(135),
- [anon_sym_LPAREN] = ACTIONS(1502),
- [anon_sym_LBRACK] = ACTIONS(1504),
- [anon_sym_DQUOTE] = ACTIONS(1506),
- [anon_sym_SQUOTE] = ACTIONS(1508),
- [anon_sym_new] = ACTIONS(1572),
- [anon_sym_AMP] = ACTIONS(640),
- [anon_sym_PIPE] = ACTIONS(642),
- [anon_sym_PLUS] = ACTIONS(2579),
- [anon_sym_DASH] = ACTIONS(2579),
- [anon_sym_LT] = ACTIONS(2581),
- [anon_sym_void] = ACTIONS(220),
- [sym_comment] = ACTIONS(5),
- [anon_sym_BQUOTE] = ACTIONS(1516),
- [sym_number] = ACTIONS(1518),
- [sym_this] = ACTIONS(1520),
- [sym_true] = ACTIONS(1522),
- [sym_false] = ACTIONS(1522),
- [sym_null] = ACTIONS(1522),
- [sym_undefined] = ACTIONS(1522),
- [anon_sym_readonly] = ACTIONS(1578),
- [anon_sym_QMARK] = ACTIONS(662),
- [anon_sym_any] = ACTIONS(220),
- [anon_sym_number] = ACTIONS(220),
- [anon_sym_boolean] = ACTIONS(220),
- [anon_sym_string] = ACTIONS(220),
- [anon_sym_symbol] = ACTIONS(220),
- [anon_sym_object] = ACTIONS(220),
- [anon_sym_abstract] = ACTIONS(666),
- [anon_sym_infer] = ACTIONS(668),
- [anon_sym_keyof] = ACTIONS(670),
- [anon_sym_unique] = ACTIONS(218),
- [anon_sym_unknown] = ACTIONS(220),
- [anon_sym_never] = ACTIONS(220),
- [anon_sym_LBRACE_PIPE] = ACTIONS(222),
- [sym_html_comment] = ACTIONS(5),
- },
- [1084] = {
- [sym_import] = STATE(4753),
- [sym_nested_identifier] = STATE(5707),
- [sym_string] = STATE(2889),
- [sym_formal_parameters] = STATE(5626),
- [sym_nested_type_identifier] = STATE(2828),
- [sym__type_query_member_expression_in_type_annotation] = STATE(3228),
- [sym__type_query_call_expression_in_type_annotation] = STATE(2850),
- [sym_type] = STATE(4545),
- [sym_constructor_type] = STATE(2896),
- [sym_primary_type] = STATE(2897),
- [sym_template_literal_type] = STATE(2885),
- [sym_infer_type] = STATE(2896),
- [sym_conditional_type] = STATE(2885),
- [sym_generic_type] = STATE(2885),
- [sym_type_query] = STATE(2885),
- [sym_index_type_query] = STATE(2885),
- [sym_lookup_type] = STATE(2885),
- [sym_literal_type] = STATE(2885),
- [sym__number] = STATE(2903),
- [sym_existential_type] = STATE(2885),
- [sym_flow_maybe_type] = STATE(2885),
- [sym_parenthesized_type] = STATE(2885),
- [sym_predefined_type] = STATE(2885),
- [sym_object_type] = STATE(2885),
- [sym_type_parameters] = STATE(5517),
- [sym_array_type] = STATE(2885),
- [sym_tuple_type] = STATE(2885),
- [sym_readonly_type] = STATE(2896),
- [sym_union_type] = STATE(2885),
- [sym_intersection_type] = STATE(2885),
- [sym_function_type] = STATE(2896),
- [sym_identifier] = ACTIONS(1496),
- [anon_sym_STAR] = ACTIONS(612),
- [anon_sym_LBRACE] = ACTIONS(1498),
- [anon_sym_typeof] = ACTIONS(1500),
- [anon_sym_import] = ACTIONS(133),
- [anon_sym_const] = ACTIONS(135),
- [anon_sym_LPAREN] = ACTIONS(1502),
- [anon_sym_LBRACK] = ACTIONS(1504),
- [anon_sym_DQUOTE] = ACTIONS(1506),
- [anon_sym_SQUOTE] = ACTIONS(1508),
- [anon_sym_new] = ACTIONS(1572),
- [anon_sym_AMP] = ACTIONS(640),
- [anon_sym_PIPE] = ACTIONS(642),
- [anon_sym_PLUS] = ACTIONS(2579),
- [anon_sym_DASH] = ACTIONS(2579),
- [anon_sym_LT] = ACTIONS(2581),
- [anon_sym_void] = ACTIONS(220),
- [sym_comment] = ACTIONS(5),
- [anon_sym_BQUOTE] = ACTIONS(1516),
- [sym_number] = ACTIONS(1518),
- [sym_this] = ACTIONS(1520),
- [sym_true] = ACTIONS(1522),
- [sym_false] = ACTIONS(1522),
- [sym_null] = ACTIONS(1522),
- [sym_undefined] = ACTIONS(1522),
- [anon_sym_readonly] = ACTIONS(1578),
- [anon_sym_QMARK] = ACTIONS(662),
- [anon_sym_any] = ACTIONS(220),
- [anon_sym_number] = ACTIONS(220),
- [anon_sym_boolean] = ACTIONS(220),
- [anon_sym_string] = ACTIONS(220),
- [anon_sym_symbol] = ACTIONS(220),
- [anon_sym_object] = ACTIONS(220),
- [anon_sym_abstract] = ACTIONS(666),
- [anon_sym_infer] = ACTIONS(668),
- [anon_sym_keyof] = ACTIONS(670),
- [anon_sym_unique] = ACTIONS(218),
- [anon_sym_unknown] = ACTIONS(220),
- [anon_sym_never] = ACTIONS(220),
- [anon_sym_LBRACE_PIPE] = ACTIONS(222),
- [sym_html_comment] = ACTIONS(5),
- },
- [1085] = {
- [sym_import] = STATE(4753),
- [sym_nested_identifier] = STATE(5707),
- [sym_string] = STATE(2889),
- [sym_formal_parameters] = STATE(5626),
- [sym_nested_type_identifier] = STATE(2828),
- [sym__type_query_member_expression_in_type_annotation] = STATE(3228),
- [sym__type_query_call_expression_in_type_annotation] = STATE(2850),
- [sym_type] = STATE(4548),
- [sym_constructor_type] = STATE(2896),
- [sym_primary_type] = STATE(2897),
- [sym_template_literal_type] = STATE(2885),
- [sym_infer_type] = STATE(2896),
- [sym_conditional_type] = STATE(2885),
- [sym_generic_type] = STATE(2885),
- [sym_type_query] = STATE(2885),
- [sym_index_type_query] = STATE(2885),
- [sym_lookup_type] = STATE(2885),
- [sym_literal_type] = STATE(2885),
- [sym__number] = STATE(2903),
- [sym_existential_type] = STATE(2885),
- [sym_flow_maybe_type] = STATE(2885),
- [sym_parenthesized_type] = STATE(2885),
- [sym_predefined_type] = STATE(2885),
- [sym_object_type] = STATE(2885),
- [sym_type_parameters] = STATE(5517),
- [sym_array_type] = STATE(2885),
- [sym_tuple_type] = STATE(2885),
- [sym_readonly_type] = STATE(2896),
- [sym_union_type] = STATE(2885),
- [sym_intersection_type] = STATE(2885),
- [sym_function_type] = STATE(2896),
- [sym_identifier] = ACTIONS(1496),
- [anon_sym_STAR] = ACTIONS(612),
- [anon_sym_LBRACE] = ACTIONS(1498),
- [anon_sym_typeof] = ACTIONS(1500),
- [anon_sym_import] = ACTIONS(133),
- [anon_sym_const] = ACTIONS(135),
- [anon_sym_LPAREN] = ACTIONS(1502),
- [anon_sym_LBRACK] = ACTIONS(1504),
- [anon_sym_DQUOTE] = ACTIONS(1506),
- [anon_sym_SQUOTE] = ACTIONS(1508),
- [anon_sym_new] = ACTIONS(1572),
- [anon_sym_AMP] = ACTIONS(640),
- [anon_sym_PIPE] = ACTIONS(642),
- [anon_sym_PLUS] = ACTIONS(2579),
- [anon_sym_DASH] = ACTIONS(2579),
- [anon_sym_LT] = ACTIONS(2581),
- [anon_sym_void] = ACTIONS(220),
- [sym_comment] = ACTIONS(5),
- [anon_sym_BQUOTE] = ACTIONS(1516),
- [sym_number] = ACTIONS(1518),
- [sym_this] = ACTIONS(1520),
- [sym_true] = ACTIONS(1522),
- [sym_false] = ACTIONS(1522),
- [sym_null] = ACTIONS(1522),
- [sym_undefined] = ACTIONS(1522),
- [anon_sym_readonly] = ACTIONS(1578),
- [anon_sym_QMARK] = ACTIONS(662),
- [anon_sym_any] = ACTIONS(220),
- [anon_sym_number] = ACTIONS(220),
- [anon_sym_boolean] = ACTIONS(220),
- [anon_sym_string] = ACTIONS(220),
- [anon_sym_symbol] = ACTIONS(220),
- [anon_sym_object] = ACTIONS(220),
- [anon_sym_abstract] = ACTIONS(666),
- [anon_sym_infer] = ACTIONS(668),
- [anon_sym_keyof] = ACTIONS(670),
- [anon_sym_unique] = ACTIONS(218),
- [anon_sym_unknown] = ACTIONS(220),
- [anon_sym_never] = ACTIONS(220),
- [anon_sym_LBRACE_PIPE] = ACTIONS(222),
- [sym_html_comment] = ACTIONS(5),
- },
- [1086] = {
- [sym_import] = STATE(4753),
- [sym_nested_identifier] = STATE(5707),
- [sym_string] = STATE(2889),
- [sym_formal_parameters] = STATE(5626),
- [sym_nested_type_identifier] = STATE(2828),
- [sym__type_query_member_expression_in_type_annotation] = STATE(3228),
- [sym__type_query_call_expression_in_type_annotation] = STATE(2850),
- [sym_type] = STATE(4556),
- [sym_constructor_type] = STATE(2896),
- [sym_primary_type] = STATE(2897),
- [sym_template_literal_type] = STATE(2885),
- [sym_infer_type] = STATE(2896),
- [sym_conditional_type] = STATE(2885),
- [sym_generic_type] = STATE(2885),
- [sym_type_query] = STATE(2885),
- [sym_index_type_query] = STATE(2885),
- [sym_lookup_type] = STATE(2885),
- [sym_literal_type] = STATE(2885),
- [sym__number] = STATE(2903),
- [sym_existential_type] = STATE(2885),
- [sym_flow_maybe_type] = STATE(2885),
- [sym_parenthesized_type] = STATE(2885),
- [sym_predefined_type] = STATE(2885),
- [sym_object_type] = STATE(2885),
- [sym_type_parameters] = STATE(5517),
- [sym_array_type] = STATE(2885),
- [sym_tuple_type] = STATE(2885),
- [sym_readonly_type] = STATE(2896),
- [sym_union_type] = STATE(2885),
- [sym_intersection_type] = STATE(2885),
- [sym_function_type] = STATE(2896),
- [sym_identifier] = ACTIONS(1496),
- [anon_sym_STAR] = ACTIONS(612),
- [anon_sym_LBRACE] = ACTIONS(1498),
- [anon_sym_typeof] = ACTIONS(1500),
- [anon_sym_import] = ACTIONS(133),
- [anon_sym_const] = ACTIONS(135),
- [anon_sym_LPAREN] = ACTIONS(1502),
- [anon_sym_LBRACK] = ACTIONS(1504),
- [anon_sym_DQUOTE] = ACTIONS(1506),
- [anon_sym_SQUOTE] = ACTIONS(1508),
- [anon_sym_new] = ACTIONS(1572),
- [anon_sym_AMP] = ACTIONS(640),
- [anon_sym_PIPE] = ACTIONS(642),
- [anon_sym_PLUS] = ACTIONS(2579),
- [anon_sym_DASH] = ACTIONS(2579),
- [anon_sym_LT] = ACTIONS(2581),
- [anon_sym_void] = ACTIONS(220),
- [sym_comment] = ACTIONS(5),
- [anon_sym_BQUOTE] = ACTIONS(1516),
- [sym_number] = ACTIONS(1518),
- [sym_this] = ACTIONS(1520),
- [sym_true] = ACTIONS(1522),
- [sym_false] = ACTIONS(1522),
- [sym_null] = ACTIONS(1522),
- [sym_undefined] = ACTIONS(1522),
- [anon_sym_readonly] = ACTIONS(1578),
- [anon_sym_QMARK] = ACTIONS(662),
- [anon_sym_any] = ACTIONS(220),
- [anon_sym_number] = ACTIONS(220),
- [anon_sym_boolean] = ACTIONS(220),
- [anon_sym_string] = ACTIONS(220),
- [anon_sym_symbol] = ACTIONS(220),
- [anon_sym_object] = ACTIONS(220),
- [anon_sym_abstract] = ACTIONS(666),
- [anon_sym_infer] = ACTIONS(668),
- [anon_sym_keyof] = ACTIONS(670),
- [anon_sym_unique] = ACTIONS(218),
- [anon_sym_unknown] = ACTIONS(220),
- [anon_sym_never] = ACTIONS(220),
- [anon_sym_LBRACE_PIPE] = ACTIONS(222),
- [sym_html_comment] = ACTIONS(5),
- },
- [1087] = {
- [sym_import] = STATE(4642),
- [sym_nested_identifier] = STATE(5541),
- [sym_string] = STATE(3272),
- [sym_formal_parameters] = STATE(5632),
- [sym_nested_type_identifier] = STATE(3198),
- [sym__type_query_member_expression_in_type_annotation] = STATE(3138),
- [sym__type_query_call_expression_in_type_annotation] = STATE(3223),
- [sym_type] = STATE(3284),
- [sym_constructor_type] = STATE(3280),
- [sym_primary_type] = STATE(3281),
- [sym_template_literal_type] = STATE(3257),
- [sym_infer_type] = STATE(3280),
- [sym_conditional_type] = STATE(3257),
- [sym_generic_type] = STATE(3257),
- [sym_type_query] = STATE(3257),
- [sym_index_type_query] = STATE(3257),
- [sym_lookup_type] = STATE(3257),
- [sym_literal_type] = STATE(3257),
- [sym__number] = STATE(3285),
- [sym_existential_type] = STATE(3257),
- [sym_flow_maybe_type] = STATE(3257),
- [sym_parenthesized_type] = STATE(3257),
- [sym_predefined_type] = STATE(3257),
- [sym_object_type] = STATE(3257),
- [sym_type_parameters] = STATE(5324),
- [sym_array_type] = STATE(3257),
- [sym_tuple_type] = STATE(3257),
- [sym_readonly_type] = STATE(3280),
- [sym_union_type] = STATE(3257),
- [sym_intersection_type] = STATE(3257),
- [sym_function_type] = STATE(3280),
- [sym_identifier] = ACTIONS(3185),
- [anon_sym_STAR] = ACTIONS(2985),
- [anon_sym_LBRACE] = ACTIONS(2987),
- [anon_sym_typeof] = ACTIONS(2989),
- [anon_sym_import] = ACTIONS(133),
- [anon_sym_const] = ACTIONS(2991),
- [anon_sym_LPAREN] = ACTIONS(2993),
- [anon_sym_LBRACK] = ACTIONS(2995),
- [anon_sym_DQUOTE] = ACTIONS(2997),
- [anon_sym_SQUOTE] = ACTIONS(2999),
- [anon_sym_new] = ACTIONS(3001),
- [anon_sym_AMP] = ACTIONS(3003),
- [anon_sym_PIPE] = ACTIONS(3005),
- [anon_sym_PLUS] = ACTIONS(3007),
- [anon_sym_DASH] = ACTIONS(3007),
- [anon_sym_LT] = ACTIONS(2581),
- [anon_sym_void] = ACTIONS(3009),
- [sym_comment] = ACTIONS(5),
- [anon_sym_BQUOTE] = ACTIONS(3011),
- [sym_number] = ACTIONS(3013),
- [sym_this] = ACTIONS(3187),
- [sym_true] = ACTIONS(3017),
- [sym_false] = ACTIONS(3017),
- [sym_null] = ACTIONS(3017),
- [sym_undefined] = ACTIONS(3017),
- [anon_sym_readonly] = ACTIONS(3019),
- [anon_sym_QMARK] = ACTIONS(3021),
- [anon_sym_any] = ACTIONS(3009),
- [anon_sym_number] = ACTIONS(3009),
- [anon_sym_boolean] = ACTIONS(3009),
- [anon_sym_string] = ACTIONS(3009),
- [anon_sym_symbol] = ACTIONS(3009),
- [anon_sym_object] = ACTIONS(3009),
- [anon_sym_abstract] = ACTIONS(3023),
- [anon_sym_infer] = ACTIONS(3027),
- [anon_sym_keyof] = ACTIONS(3029),
- [anon_sym_unique] = ACTIONS(3031),
- [anon_sym_unknown] = ACTIONS(3009),
- [anon_sym_never] = ACTIONS(3009),
- [anon_sym_LBRACE_PIPE] = ACTIONS(3033),
- [sym_html_comment] = ACTIONS(5),
- },
- [1088] = {
- [sym_export_statement] = STATE(3911),
- [sym_object_pattern] = STATE(5760),
- [sym_object_assignment_pattern] = STATE(4861),
- [sym_array_pattern] = STATE(5760),
- [sym__call_signature] = STATE(4329),
- [sym__destructuring_pattern] = STATE(5760),
- [sym_spread_element] = STATE(4835),
- [sym_string] = STATE(3049),
- [sym_decorator] = STATE(1244),
- [sym_formal_parameters] = STATE(3229),
- [sym_rest_pattern] = STATE(4861),
- [sym_method_definition] = STATE(4835),
- [sym_pair] = STATE(4835),
- [sym_pair_pattern] = STATE(4861),
- [sym__property_name] = STATE(3049),
- [sym_computed_property_name] = STATE(3049),
- [sym_method_signature] = STATE(3911),
- [sym_accessibility_modifier] = STATE(2687),
- [sym_override_modifier] = STATE(2717),
- [sym_call_signature] = STATE(3911),
- [sym_property_signature] = STATE(3911),
- [sym_type_parameters] = STATE(5404),
- [sym_construct_signature] = STATE(3911),
- [sym_index_signature] = STATE(3911),
- [aux_sym_export_statement_repeat1] = STATE(4448),
- [aux_sym_object_repeat1] = STATE(4839),
- [aux_sym_object_pattern_repeat1] = STATE(4759),
- [sym_identifier] = ACTIONS(3193),
- [anon_sym_export] = ACTIONS(3195),
- [anon_sym_STAR] = ACTIONS(3197),
- [anon_sym_type] = ACTIONS(3193),
- [anon_sym_namespace] = ACTIONS(3193),
- [anon_sym_LBRACE] = ACTIONS(3199),
- [anon_sym_COMMA] = ACTIONS(3201),
- [anon_sym_RBRACE] = ACTIONS(3203),
- [anon_sym_let] = ACTIONS(3193),
- [anon_sym_LPAREN] = ACTIONS(3205),
- [anon_sym_SEMI] = ACTIONS(3207),
- [anon_sym_LBRACK] = ACTIONS(3209),
- [anon_sym_DQUOTE] = ACTIONS(1594),
- [anon_sym_SQUOTE] = ACTIONS(1596),
- [anon_sym_async] = ACTIONS(3211),
- [anon_sym_new] = ACTIONS(3213),
- [anon_sym_DOT_DOT_DOT] = ACTIONS(253),
- [anon_sym_PLUS] = ACTIONS(3215),
- [anon_sym_DASH] = ACTIONS(3215),
- [anon_sym_LT] = ACTIONS(2581),
- [sym_comment] = ACTIONS(5),
- [sym_number] = ACTIONS(3217),
- [sym_private_property_identifier] = ACTIONS(3217),
- [anon_sym_AT] = ACTIONS(99),
- [anon_sym_static] = ACTIONS(3219),
- [anon_sym_readonly] = ACTIONS(3221),
- [anon_sym_get] = ACTIONS(3223),
- [anon_sym_set] = ACTIONS(3223),
- [anon_sym_declare] = ACTIONS(3193),
- [anon_sym_public] = ACTIONS(3225),
- [anon_sym_private] = ACTIONS(3225),
- [anon_sym_protected] = ACTIONS(3225),
- [anon_sym_override] = ACTIONS(3227),
- [anon_sym_module] = ACTIONS(3193),
- [anon_sym_any] = ACTIONS(3193),
- [anon_sym_number] = ACTIONS(3193),
- [anon_sym_boolean] = ACTIONS(3193),
- [anon_sym_string] = ACTIONS(3193),
- [anon_sym_symbol] = ACTIONS(3193),
- [anon_sym_object] = ACTIONS(3193),
- [anon_sym_abstract] = ACTIONS(3229),
- [anon_sym_PIPE_RBRACE] = ACTIONS(3231),
- [sym_html_comment] = ACTIONS(5),
- },
- [1089] = {
- [sym_export_statement] = STATE(3830),
- [sym_object_pattern] = STATE(5760),
- [sym_object_assignment_pattern] = STATE(4861),
- [sym_array_pattern] = STATE(5760),
- [sym__call_signature] = STATE(4329),
- [sym__destructuring_pattern] = STATE(5760),
- [sym_spread_element] = STATE(4835),
- [sym_string] = STATE(3049),
- [sym_decorator] = STATE(1244),
- [sym_formal_parameters] = STATE(3229),
- [sym_rest_pattern] = STATE(4861),
- [sym_method_definition] = STATE(4835),
- [sym_pair] = STATE(4835),
- [sym_pair_pattern] = STATE(4861),
- [sym__property_name] = STATE(3049),
- [sym_computed_property_name] = STATE(3049),
- [sym_method_signature] = STATE(3830),
- [sym_accessibility_modifier] = STATE(2687),
- [sym_override_modifier] = STATE(2717),
- [sym_call_signature] = STATE(3830),
- [sym_property_signature] = STATE(3830),
- [sym_type_parameters] = STATE(5404),
- [sym_construct_signature] = STATE(3830),
- [sym_index_signature] = STATE(3830),
- [aux_sym_export_statement_repeat1] = STATE(4448),
- [aux_sym_object_repeat1] = STATE(4839),
- [aux_sym_object_pattern_repeat1] = STATE(4759),
- [sym_identifier] = ACTIONS(3193),
- [anon_sym_export] = ACTIONS(3195),
- [anon_sym_STAR] = ACTIONS(3197),
- [anon_sym_type] = ACTIONS(3193),
- [anon_sym_namespace] = ACTIONS(3193),
- [anon_sym_LBRACE] = ACTIONS(3199),
- [anon_sym_COMMA] = ACTIONS(3233),
- [anon_sym_RBRACE] = ACTIONS(3235),
- [anon_sym_let] = ACTIONS(3193),
- [anon_sym_LPAREN] = ACTIONS(3205),
- [anon_sym_SEMI] = ACTIONS(3237),
- [anon_sym_LBRACK] = ACTIONS(3209),
- [anon_sym_DQUOTE] = ACTIONS(1594),
- [anon_sym_SQUOTE] = ACTIONS(1596),
- [anon_sym_async] = ACTIONS(3211),
- [anon_sym_new] = ACTIONS(3213),
- [anon_sym_DOT_DOT_DOT] = ACTIONS(253),
- [anon_sym_PLUS] = ACTIONS(3215),
- [anon_sym_DASH] = ACTIONS(3215),
- [anon_sym_LT] = ACTIONS(2581),
- [sym_comment] = ACTIONS(5),
- [sym_number] = ACTIONS(3217),
- [sym_private_property_identifier] = ACTIONS(3217),
- [anon_sym_AT] = ACTIONS(99),
- [anon_sym_static] = ACTIONS(3219),
- [anon_sym_readonly] = ACTIONS(3221),
- [anon_sym_get] = ACTIONS(3223),
- [anon_sym_set] = ACTIONS(3223),
- [anon_sym_declare] = ACTIONS(3193),
- [anon_sym_public] = ACTIONS(3225),
- [anon_sym_private] = ACTIONS(3225),
- [anon_sym_protected] = ACTIONS(3225),
- [anon_sym_override] = ACTIONS(3227),
- [anon_sym_module] = ACTIONS(3193),
- [anon_sym_any] = ACTIONS(3193),
- [anon_sym_number] = ACTIONS(3193),
- [anon_sym_boolean] = ACTIONS(3193),
- [anon_sym_string] = ACTIONS(3193),
- [anon_sym_symbol] = ACTIONS(3193),
- [anon_sym_object] = ACTIONS(3193),
- [anon_sym_abstract] = ACTIONS(3229),
- [anon_sym_PIPE_RBRACE] = ACTIONS(3239),
- [sym_html_comment] = ACTIONS(5),
- },
- [1090] = {
- [sym_export_statement] = STATE(3830),
- [sym_object_pattern] = STATE(5760),
- [sym_object_assignment_pattern] = STATE(4861),
- [sym_array_pattern] = STATE(5760),
- [sym__call_signature] = STATE(4329),
- [sym__destructuring_pattern] = STATE(5760),
- [sym_spread_element] = STATE(4835),
- [sym_string] = STATE(3049),
- [sym_decorator] = STATE(1244),
- [sym_formal_parameters] = STATE(3229),
- [sym_rest_pattern] = STATE(4861),
- [sym_method_definition] = STATE(4835),
- [sym_pair] = STATE(4835),
- [sym_pair_pattern] = STATE(4861),
- [sym__property_name] = STATE(3049),
- [sym_computed_property_name] = STATE(3049),
- [sym_method_signature] = STATE(3830),
- [sym_accessibility_modifier] = STATE(2687),
- [sym_override_modifier] = STATE(2717),
- [sym_call_signature] = STATE(3830),
- [sym_property_signature] = STATE(3830),
- [sym_type_parameters] = STATE(5404),
- [sym_construct_signature] = STATE(3830),
- [sym_index_signature] = STATE(3830),
- [aux_sym_export_statement_repeat1] = STATE(4448),
- [aux_sym_object_repeat1] = STATE(4839),
- [aux_sym_object_pattern_repeat1] = STATE(4759),
- [sym_identifier] = ACTIONS(3241),
- [anon_sym_export] = ACTIONS(3243),
- [anon_sym_STAR] = ACTIONS(3197),
- [anon_sym_type] = ACTIONS(3241),
- [anon_sym_namespace] = ACTIONS(3241),
- [anon_sym_LBRACE] = ACTIONS(3199),
- [anon_sym_COMMA] = ACTIONS(3233),
- [anon_sym_RBRACE] = ACTIONS(3245),
- [anon_sym_let] = ACTIONS(3241),
- [anon_sym_LPAREN] = ACTIONS(3205),
- [anon_sym_SEMI] = ACTIONS(3237),
- [anon_sym_LBRACK] = ACTIONS(3209),
- [anon_sym_DQUOTE] = ACTIONS(1594),
- [anon_sym_SQUOTE] = ACTIONS(1596),
- [anon_sym_async] = ACTIONS(3247),
- [anon_sym_new] = ACTIONS(3249),
- [anon_sym_DOT_DOT_DOT] = ACTIONS(253),
- [anon_sym_PLUS] = ACTIONS(3215),
- [anon_sym_DASH] = ACTIONS(3215),
- [anon_sym_LT] = ACTIONS(2581),
- [sym_comment] = ACTIONS(5),
- [sym_number] = ACTIONS(3217),
- [sym_private_property_identifier] = ACTIONS(3217),
- [anon_sym_AT] = ACTIONS(99),
- [anon_sym_static] = ACTIONS(3251),
- [anon_sym_readonly] = ACTIONS(3253),
- [anon_sym_get] = ACTIONS(3255),
- [anon_sym_set] = ACTIONS(3255),
- [anon_sym_declare] = ACTIONS(3241),
- [anon_sym_public] = ACTIONS(3257),
- [anon_sym_private] = ACTIONS(3257),
- [anon_sym_protected] = ACTIONS(3257),
- [anon_sym_override] = ACTIONS(3259),
- [anon_sym_module] = ACTIONS(3241),
- [anon_sym_any] = ACTIONS(3241),
- [anon_sym_number] = ACTIONS(3241),
- [anon_sym_boolean] = ACTIONS(3241),
- [anon_sym_string] = ACTIONS(3241),
- [anon_sym_symbol] = ACTIONS(3241),
- [anon_sym_object] = ACTIONS(3241),
- [anon_sym_abstract] = ACTIONS(3229),
- [anon_sym_PIPE_RBRACE] = ACTIONS(3239),
- [sym_html_comment] = ACTIONS(5),
- },
- [1091] = {
- [sym_export_statement] = STATE(3830),
- [sym_object_pattern] = STATE(5760),
- [sym_object_assignment_pattern] = STATE(4861),
- [sym_array_pattern] = STATE(5760),
- [sym__call_signature] = STATE(4329),
- [sym__destructuring_pattern] = STATE(5760),
- [sym_spread_element] = STATE(4835),
- [sym_string] = STATE(3049),
- [sym_decorator] = STATE(1244),
- [sym_formal_parameters] = STATE(3229),
- [sym_rest_pattern] = STATE(4861),
- [sym_method_definition] = STATE(4835),
- [sym_pair] = STATE(4835),
- [sym_pair_pattern] = STATE(4861),
- [sym__property_name] = STATE(3049),
- [sym_computed_property_name] = STATE(3049),
- [sym_method_signature] = STATE(3830),
- [sym_accessibility_modifier] = STATE(2687),
- [sym_override_modifier] = STATE(2717),
- [sym_call_signature] = STATE(3830),
- [sym_property_signature] = STATE(3830),
- [sym_type_parameters] = STATE(5404),
- [sym_construct_signature] = STATE(3830),
- [sym_index_signature] = STATE(3830),
- [aux_sym_export_statement_repeat1] = STATE(4448),
- [aux_sym_object_repeat1] = STATE(4839),
- [aux_sym_object_pattern_repeat1] = STATE(4759),
- [sym_identifier] = ACTIONS(3241),
- [anon_sym_export] = ACTIONS(3243),
- [anon_sym_STAR] = ACTIONS(3197),
- [anon_sym_type] = ACTIONS(3241),
- [anon_sym_namespace] = ACTIONS(3241),
- [anon_sym_LBRACE] = ACTIONS(3199),
- [anon_sym_COMMA] = ACTIONS(3233),
- [anon_sym_RBRACE] = ACTIONS(3261),
- [anon_sym_let] = ACTIONS(3241),
- [anon_sym_LPAREN] = ACTIONS(3205),
- [anon_sym_SEMI] = ACTIONS(3237),
- [anon_sym_LBRACK] = ACTIONS(3209),
- [anon_sym_DQUOTE] = ACTIONS(1594),
- [anon_sym_SQUOTE] = ACTIONS(1596),
- [anon_sym_async] = ACTIONS(3247),
- [anon_sym_new] = ACTIONS(3249),
- [anon_sym_DOT_DOT_DOT] = ACTIONS(253),
- [anon_sym_PLUS] = ACTIONS(3215),
- [anon_sym_DASH] = ACTIONS(3215),
- [anon_sym_LT] = ACTIONS(2581),
- [sym_comment] = ACTIONS(5),
- [sym_number] = ACTIONS(3217),
- [sym_private_property_identifier] = ACTIONS(3217),
- [anon_sym_AT] = ACTIONS(99),
- [anon_sym_static] = ACTIONS(3251),
- [anon_sym_readonly] = ACTIONS(3253),
- [anon_sym_get] = ACTIONS(3255),
- [anon_sym_set] = ACTIONS(3255),
- [anon_sym_declare] = ACTIONS(3241),
- [anon_sym_public] = ACTIONS(3257),
- [anon_sym_private] = ACTIONS(3257),
- [anon_sym_protected] = ACTIONS(3257),
- [anon_sym_override] = ACTIONS(3259),
- [anon_sym_module] = ACTIONS(3241),
- [anon_sym_any] = ACTIONS(3241),
- [anon_sym_number] = ACTIONS(3241),
- [anon_sym_boolean] = ACTIONS(3241),
- [anon_sym_string] = ACTIONS(3241),
- [anon_sym_symbol] = ACTIONS(3241),
- [anon_sym_object] = ACTIONS(3241),
- [anon_sym_abstract] = ACTIONS(3229),
- [anon_sym_PIPE_RBRACE] = ACTIONS(3239),
- [sym_html_comment] = ACTIONS(5),
- },
- [1092] = {
- [sym_export_statement] = STATE(3830),
- [sym_object_pattern] = STATE(5760),
- [sym_object_assignment_pattern] = STATE(4861),
- [sym_array_pattern] = STATE(5760),
- [sym__call_signature] = STATE(4329),
- [sym__destructuring_pattern] = STATE(5760),
- [sym_spread_element] = STATE(4603),
- [sym_string] = STATE(3049),
- [sym_decorator] = STATE(1244),
- [sym_formal_parameters] = STATE(3229),
- [sym_rest_pattern] = STATE(4861),
- [sym_method_definition] = STATE(4603),
- [sym_pair] = STATE(4603),
- [sym_pair_pattern] = STATE(4861),
- [sym__property_name] = STATE(3049),
- [sym_computed_property_name] = STATE(3049),
- [sym_method_signature] = STATE(3830),
- [sym_accessibility_modifier] = STATE(2687),
- [sym_override_modifier] = STATE(2717),
- [sym_call_signature] = STATE(3830),
- [sym_property_signature] = STATE(3830),
- [sym_type_parameters] = STATE(5404),
- [sym_construct_signature] = STATE(3830),
- [sym_index_signature] = STATE(3830),
- [aux_sym_export_statement_repeat1] = STATE(4448),
- [aux_sym_object_repeat1] = STATE(4682),
- [aux_sym_object_pattern_repeat1] = STATE(4759),
- [sym_identifier] = ACTIONS(3263),
- [anon_sym_export] = ACTIONS(3265),
- [anon_sym_STAR] = ACTIONS(3197),
- [anon_sym_type] = ACTIONS(3263),
- [anon_sym_namespace] = ACTIONS(3263),
- [anon_sym_LBRACE] = ACTIONS(3199),
- [anon_sym_COMMA] = ACTIONS(3233),
- [anon_sym_RBRACE] = ACTIONS(3267),
- [anon_sym_let] = ACTIONS(3263),
- [anon_sym_LPAREN] = ACTIONS(3205),
- [anon_sym_SEMI] = ACTIONS(3237),
- [anon_sym_LBRACK] = ACTIONS(3209),
- [anon_sym_DQUOTE] = ACTIONS(1594),
- [anon_sym_SQUOTE] = ACTIONS(1596),
- [anon_sym_async] = ACTIONS(3269),
- [anon_sym_new] = ACTIONS(3271),
- [anon_sym_DOT_DOT_DOT] = ACTIONS(253),
- [anon_sym_PLUS] = ACTIONS(3215),
- [anon_sym_DASH] = ACTIONS(3215),
- [anon_sym_LT] = ACTIONS(2581),
- [sym_comment] = ACTIONS(5),
- [sym_number] = ACTIONS(3217),
- [sym_private_property_identifier] = ACTIONS(3217),
- [anon_sym_AT] = ACTIONS(99),
- [anon_sym_static] = ACTIONS(3273),
- [anon_sym_readonly] = ACTIONS(3275),
- [anon_sym_get] = ACTIONS(3277),
- [anon_sym_set] = ACTIONS(3277),
- [anon_sym_declare] = ACTIONS(3263),
- [anon_sym_public] = ACTIONS(3279),
- [anon_sym_private] = ACTIONS(3279),
- [anon_sym_protected] = ACTIONS(3279),
- [anon_sym_override] = ACTIONS(3281),
- [anon_sym_module] = ACTIONS(3263),
- [anon_sym_any] = ACTIONS(3263),
- [anon_sym_number] = ACTIONS(3263),
- [anon_sym_boolean] = ACTIONS(3263),
- [anon_sym_string] = ACTIONS(3263),
- [anon_sym_symbol] = ACTIONS(3263),
- [anon_sym_object] = ACTIONS(3263),
- [anon_sym_abstract] = ACTIONS(3229),
- [anon_sym_PIPE_RBRACE] = ACTIONS(3239),
- [sym_html_comment] = ACTIONS(5),
- },
- [1093] = {
- [sym_export_statement] = STATE(3830),
- [sym_object_pattern] = STATE(5760),
- [sym_object_assignment_pattern] = STATE(4861),
- [sym_array_pattern] = STATE(5760),
- [sym__call_signature] = STATE(4329),
- [sym__destructuring_pattern] = STATE(5760),
- [sym_spread_element] = STATE(4835),
- [sym_string] = STATE(3049),
- [sym_decorator] = STATE(1244),
- [sym_formal_parameters] = STATE(3229),
- [sym_rest_pattern] = STATE(4861),
- [sym_method_definition] = STATE(4835),
- [sym_pair] = STATE(4835),
- [sym_pair_pattern] = STATE(4861),
- [sym__property_name] = STATE(3049),
- [sym_computed_property_name] = STATE(3049),
- [sym_method_signature] = STATE(3830),
- [sym_accessibility_modifier] = STATE(2687),
- [sym_override_modifier] = STATE(2717),
- [sym_call_signature] = STATE(3830),
- [sym_property_signature] = STATE(3830),
- [sym_type_parameters] = STATE(5404),
- [sym_construct_signature] = STATE(3830),
- [sym_index_signature] = STATE(3830),
- [aux_sym_export_statement_repeat1] = STATE(4448),
- [aux_sym_object_repeat1] = STATE(4839),
- [aux_sym_object_pattern_repeat1] = STATE(4759),
- [sym_identifier] = ACTIONS(3193),
- [anon_sym_export] = ACTIONS(3195),
- [anon_sym_STAR] = ACTIONS(3197),
- [anon_sym_type] = ACTIONS(3193),
- [anon_sym_namespace] = ACTIONS(3193),
- [anon_sym_LBRACE] = ACTIONS(3199),
- [anon_sym_COMMA] = ACTIONS(3233),
- [anon_sym_RBRACE] = ACTIONS(3283),
- [anon_sym_let] = ACTIONS(3193),
- [anon_sym_LPAREN] = ACTIONS(3205),
- [anon_sym_SEMI] = ACTIONS(3237),
- [anon_sym_LBRACK] = ACTIONS(3209),
- [anon_sym_DQUOTE] = ACTIONS(1594),
- [anon_sym_SQUOTE] = ACTIONS(1596),
- [anon_sym_async] = ACTIONS(3211),
- [anon_sym_new] = ACTIONS(3213),
- [anon_sym_DOT_DOT_DOT] = ACTIONS(253),
- [anon_sym_PLUS] = ACTIONS(3215),
- [anon_sym_DASH] = ACTIONS(3215),
- [anon_sym_LT] = ACTIONS(2581),
- [sym_comment] = ACTIONS(5),
- [sym_number] = ACTIONS(3217),
- [sym_private_property_identifier] = ACTIONS(3217),
- [anon_sym_AT] = ACTIONS(99),
- [anon_sym_static] = ACTIONS(3219),
- [anon_sym_readonly] = ACTIONS(3221),
- [anon_sym_get] = ACTIONS(3223),
- [anon_sym_set] = ACTIONS(3223),
- [anon_sym_declare] = ACTIONS(3193),
- [anon_sym_public] = ACTIONS(3225),
- [anon_sym_private] = ACTIONS(3225),
- [anon_sym_protected] = ACTIONS(3225),
- [anon_sym_override] = ACTIONS(3227),
- [anon_sym_module] = ACTIONS(3193),
- [anon_sym_any] = ACTIONS(3193),
- [anon_sym_number] = ACTIONS(3193),
- [anon_sym_boolean] = ACTIONS(3193),
- [anon_sym_string] = ACTIONS(3193),
- [anon_sym_symbol] = ACTIONS(3193),
- [anon_sym_object] = ACTIONS(3193),
- [anon_sym_abstract] = ACTIONS(3229),
- [anon_sym_PIPE_RBRACE] = ACTIONS(3239),
- [sym_html_comment] = ACTIONS(5),
- },
- [1094] = {
- [sym_export_statement] = STATE(3830),
- [sym_object_pattern] = STATE(5760),
- [sym_object_assignment_pattern] = STATE(4861),
- [sym_array_pattern] = STATE(5760),
- [sym__call_signature] = STATE(4329),
- [sym__destructuring_pattern] = STATE(5760),
- [sym_spread_element] = STATE(4835),
- [sym_string] = STATE(3049),
- [sym_decorator] = STATE(1244),
- [sym_formal_parameters] = STATE(3229),
- [sym_rest_pattern] = STATE(4861),
- [sym_method_definition] = STATE(4835),
- [sym_pair] = STATE(4835),
- [sym_pair_pattern] = STATE(4861),
- [sym__property_name] = STATE(3049),
- [sym_computed_property_name] = STATE(3049),
- [sym_method_signature] = STATE(3830),
- [sym_accessibility_modifier] = STATE(2687),
- [sym_override_modifier] = STATE(2717),
- [sym_call_signature] = STATE(3830),
- [sym_property_signature] = STATE(3830),
- [sym_type_parameters] = STATE(5404),
- [sym_construct_signature] = STATE(3830),
- [sym_index_signature] = STATE(3830),
- [aux_sym_export_statement_repeat1] = STATE(4448),
- [aux_sym_object_repeat1] = STATE(4839),
- [aux_sym_object_pattern_repeat1] = STATE(4759),
- [sym_identifier] = ACTIONS(3193),
- [anon_sym_export] = ACTIONS(3195),
- [anon_sym_STAR] = ACTIONS(3197),
- [anon_sym_type] = ACTIONS(3193),
- [anon_sym_namespace] = ACTIONS(3193),
- [anon_sym_LBRACE] = ACTIONS(3199),
- [anon_sym_COMMA] = ACTIONS(3233),
- [anon_sym_RBRACE] = ACTIONS(3285),
- [anon_sym_let] = ACTIONS(3193),
- [anon_sym_LPAREN] = ACTIONS(3205),
- [anon_sym_SEMI] = ACTIONS(3237),
- [anon_sym_LBRACK] = ACTIONS(3209),
- [anon_sym_DQUOTE] = ACTIONS(1594),
- [anon_sym_SQUOTE] = ACTIONS(1596),
- [anon_sym_async] = ACTIONS(3211),
- [anon_sym_new] = ACTIONS(3213),
- [anon_sym_DOT_DOT_DOT] = ACTIONS(253),
- [anon_sym_PLUS] = ACTIONS(3215),
- [anon_sym_DASH] = ACTIONS(3215),
- [anon_sym_LT] = ACTIONS(2581),
- [sym_comment] = ACTIONS(5),
- [sym_number] = ACTIONS(3217),
- [sym_private_property_identifier] = ACTIONS(3217),
- [anon_sym_AT] = ACTIONS(99),
- [anon_sym_static] = ACTIONS(3219),
- [anon_sym_readonly] = ACTIONS(3221),
- [anon_sym_get] = ACTIONS(3223),
- [anon_sym_set] = ACTIONS(3223),
- [anon_sym_declare] = ACTIONS(3193),
- [anon_sym_public] = ACTIONS(3225),
- [anon_sym_private] = ACTIONS(3225),
- [anon_sym_protected] = ACTIONS(3225),
- [anon_sym_override] = ACTIONS(3227),
- [anon_sym_module] = ACTIONS(3193),
- [anon_sym_any] = ACTIONS(3193),
- [anon_sym_number] = ACTIONS(3193),
- [anon_sym_boolean] = ACTIONS(3193),
- [anon_sym_string] = ACTIONS(3193),
- [anon_sym_symbol] = ACTIONS(3193),
- [anon_sym_object] = ACTIONS(3193),
- [anon_sym_abstract] = ACTIONS(3229),
- [anon_sym_PIPE_RBRACE] = ACTIONS(3239),
- [sym_html_comment] = ACTIONS(5),
- },
- [1095] = {
- [sym_export_statement] = STATE(3830),
- [sym_object_pattern] = STATE(5760),
- [sym_object_assignment_pattern] = STATE(4861),
- [sym_array_pattern] = STATE(5760),
- [sym__call_signature] = STATE(4329),
- [sym__destructuring_pattern] = STATE(5760),
- [sym_spread_element] = STATE(4835),
- [sym_string] = STATE(3049),
- [sym_decorator] = STATE(1244),
- [sym_formal_parameters] = STATE(3229),
- [sym_rest_pattern] = STATE(4861),
- [sym_method_definition] = STATE(4835),
- [sym_pair] = STATE(4835),
- [sym_pair_pattern] = STATE(4861),
- [sym__property_name] = STATE(3049),
- [sym_computed_property_name] = STATE(3049),
- [sym_method_signature] = STATE(3830),
- [sym_accessibility_modifier] = STATE(2687),
- [sym_override_modifier] = STATE(2717),
- [sym_call_signature] = STATE(3830),
- [sym_property_signature] = STATE(3830),
- [sym_type_parameters] = STATE(5404),
- [sym_construct_signature] = STATE(3830),
- [sym_index_signature] = STATE(3830),
- [aux_sym_export_statement_repeat1] = STATE(4448),
- [aux_sym_object_repeat1] = STATE(4839),
- [aux_sym_object_pattern_repeat1] = STATE(4759),
- [sym_identifier] = ACTIONS(3287),
- [anon_sym_export] = ACTIONS(3289),
- [anon_sym_STAR] = ACTIONS(3197),
- [anon_sym_type] = ACTIONS(3287),
- [anon_sym_namespace] = ACTIONS(3287),
- [anon_sym_LBRACE] = ACTIONS(3199),
- [anon_sym_COMMA] = ACTIONS(3233),
- [anon_sym_RBRACE] = ACTIONS(3291),
- [anon_sym_let] = ACTIONS(3287),
- [anon_sym_LPAREN] = ACTIONS(3205),
- [anon_sym_SEMI] = ACTIONS(3237),
- [anon_sym_LBRACK] = ACTIONS(3209),
- [anon_sym_DQUOTE] = ACTIONS(1594),
- [anon_sym_SQUOTE] = ACTIONS(1596),
- [anon_sym_async] = ACTIONS(3293),
- [anon_sym_new] = ACTIONS(3295),
- [anon_sym_DOT_DOT_DOT] = ACTIONS(253),
- [anon_sym_PLUS] = ACTIONS(3215),
- [anon_sym_DASH] = ACTIONS(3215),
- [anon_sym_LT] = ACTIONS(2581),
- [sym_comment] = ACTIONS(5),
- [sym_number] = ACTIONS(3217),
- [sym_private_property_identifier] = ACTIONS(3217),
- [anon_sym_AT] = ACTIONS(99),
- [anon_sym_static] = ACTIONS(3297),
- [anon_sym_readonly] = ACTIONS(3299),
- [anon_sym_get] = ACTIONS(3301),
- [anon_sym_set] = ACTIONS(3301),
- [anon_sym_declare] = ACTIONS(3287),
- [anon_sym_public] = ACTIONS(3303),
- [anon_sym_private] = ACTIONS(3303),
- [anon_sym_protected] = ACTIONS(3303),
- [anon_sym_override] = ACTIONS(3305),
- [anon_sym_module] = ACTIONS(3287),
- [anon_sym_any] = ACTIONS(3287),
- [anon_sym_number] = ACTIONS(3287),
- [anon_sym_boolean] = ACTIONS(3287),
- [anon_sym_string] = ACTIONS(3287),
- [anon_sym_symbol] = ACTIONS(3287),
- [anon_sym_object] = ACTIONS(3287),
- [anon_sym_abstract] = ACTIONS(3229),
- [anon_sym_PIPE_RBRACE] = ACTIONS(3239),
- [sym_html_comment] = ACTIONS(5),
- },
- [1096] = {
- [sym_export_statement] = STATE(3830),
- [sym_object_pattern] = STATE(5760),
- [sym_object_assignment_pattern] = STATE(4861),
- [sym_array_pattern] = STATE(5760),
- [sym__call_signature] = STATE(4329),
- [sym__destructuring_pattern] = STATE(5760),
- [sym_spread_element] = STATE(4603),
- [sym_string] = STATE(3049),
- [sym_decorator] = STATE(1244),
- [sym_formal_parameters] = STATE(3229),
- [sym_rest_pattern] = STATE(4861),
- [sym_method_definition] = STATE(4603),
- [sym_pair] = STATE(4603),
- [sym_pair_pattern] = STATE(4861),
- [sym__property_name] = STATE(3049),
- [sym_computed_property_name] = STATE(3049),
- [sym_method_signature] = STATE(3830),
- [sym_accessibility_modifier] = STATE(2687),
- [sym_override_modifier] = STATE(2717),
- [sym_call_signature] = STATE(3830),
- [sym_property_signature] = STATE(3830),
- [sym_type_parameters] = STATE(5404),
- [sym_construct_signature] = STATE(3830),
- [sym_index_signature] = STATE(3830),
- [aux_sym_export_statement_repeat1] = STATE(4448),
- [aux_sym_object_repeat1] = STATE(4682),
- [aux_sym_object_pattern_repeat1] = STATE(4759),
- [sym_identifier] = ACTIONS(3263),
- [anon_sym_export] = ACTIONS(3265),
- [anon_sym_STAR] = ACTIONS(3197),
- [anon_sym_type] = ACTIONS(3263),
- [anon_sym_namespace] = ACTIONS(3263),
- [anon_sym_LBRACE] = ACTIONS(3199),
- [anon_sym_COMMA] = ACTIONS(3233),
- [anon_sym_RBRACE] = ACTIONS(3307),
- [anon_sym_let] = ACTIONS(3263),
- [anon_sym_LPAREN] = ACTIONS(3205),
- [anon_sym_SEMI] = ACTIONS(3237),
- [anon_sym_LBRACK] = ACTIONS(3209),
- [anon_sym_DQUOTE] = ACTIONS(1594),
- [anon_sym_SQUOTE] = ACTIONS(1596),
- [anon_sym_async] = ACTIONS(3269),
- [anon_sym_new] = ACTIONS(3271),
- [anon_sym_DOT_DOT_DOT] = ACTIONS(253),
- [anon_sym_PLUS] = ACTIONS(3215),
- [anon_sym_DASH] = ACTIONS(3215),
- [anon_sym_LT] = ACTIONS(2581),
- [sym_comment] = ACTIONS(5),
- [sym_number] = ACTIONS(3217),
- [sym_private_property_identifier] = ACTIONS(3217),
- [anon_sym_AT] = ACTIONS(99),
- [anon_sym_static] = ACTIONS(3273),
- [anon_sym_readonly] = ACTIONS(3275),
- [anon_sym_get] = ACTIONS(3277),
- [anon_sym_set] = ACTIONS(3277),
- [anon_sym_declare] = ACTIONS(3263),
- [anon_sym_public] = ACTIONS(3279),
- [anon_sym_private] = ACTIONS(3279),
- [anon_sym_protected] = ACTIONS(3279),
- [anon_sym_override] = ACTIONS(3281),
- [anon_sym_module] = ACTIONS(3263),
- [anon_sym_any] = ACTIONS(3263),
- [anon_sym_number] = ACTIONS(3263),
- [anon_sym_boolean] = ACTIONS(3263),
- [anon_sym_string] = ACTIONS(3263),
- [anon_sym_symbol] = ACTIONS(3263),
- [anon_sym_object] = ACTIONS(3263),
- [anon_sym_abstract] = ACTIONS(3229),
- [anon_sym_PIPE_RBRACE] = ACTIONS(3239),
- [sym_html_comment] = ACTIONS(5),
- },
- [1097] = {
- [sym_export_statement] = STATE(3830),
- [sym_object_pattern] = STATE(5760),
- [sym_object_assignment_pattern] = STATE(4861),
- [sym_array_pattern] = STATE(5760),
- [sym__call_signature] = STATE(4329),
- [sym__destructuring_pattern] = STATE(5760),
- [sym_spread_element] = STATE(4835),
- [sym_string] = STATE(3049),
- [sym_decorator] = STATE(1244),
- [sym_formal_parameters] = STATE(3229),
- [sym_rest_pattern] = STATE(4861),
- [sym_method_definition] = STATE(4835),
- [sym_pair] = STATE(4835),
- [sym_pair_pattern] = STATE(4861),
- [sym__property_name] = STATE(3049),
- [sym_computed_property_name] = STATE(3049),
- [sym_method_signature] = STATE(3830),
- [sym_accessibility_modifier] = STATE(2687),
- [sym_override_modifier] = STATE(2717),
- [sym_call_signature] = STATE(3830),
- [sym_property_signature] = STATE(3830),
- [sym_type_parameters] = STATE(5404),
- [sym_construct_signature] = STATE(3830),
- [sym_index_signature] = STATE(3830),
- [aux_sym_export_statement_repeat1] = STATE(4448),
- [aux_sym_object_repeat1] = STATE(4839),
- [aux_sym_object_pattern_repeat1] = STATE(4759),
- [sym_identifier] = ACTIONS(3309),
- [anon_sym_export] = ACTIONS(3311),
- [anon_sym_STAR] = ACTIONS(3197),
- [anon_sym_type] = ACTIONS(3309),
- [anon_sym_namespace] = ACTIONS(3309),
- [anon_sym_LBRACE] = ACTIONS(3199),
- [anon_sym_COMMA] = ACTIONS(3233),
- [anon_sym_RBRACE] = ACTIONS(3285),
- [anon_sym_let] = ACTIONS(3309),
- [anon_sym_LPAREN] = ACTIONS(3205),
- [anon_sym_SEMI] = ACTIONS(3237),
- [anon_sym_LBRACK] = ACTIONS(3209),
- [anon_sym_DQUOTE] = ACTIONS(1594),
- [anon_sym_SQUOTE] = ACTIONS(1596),
- [anon_sym_async] = ACTIONS(3313),
- [anon_sym_new] = ACTIONS(3315),
- [anon_sym_DOT_DOT_DOT] = ACTIONS(253),
- [anon_sym_PLUS] = ACTIONS(3215),
- [anon_sym_DASH] = ACTIONS(3215),
- [anon_sym_LT] = ACTIONS(2581),
- [sym_comment] = ACTIONS(5),
- [sym_number] = ACTIONS(3217),
- [sym_private_property_identifier] = ACTIONS(3217),
- [anon_sym_AT] = ACTIONS(99),
- [anon_sym_static] = ACTIONS(3317),
- [anon_sym_readonly] = ACTIONS(3319),
- [anon_sym_get] = ACTIONS(3321),
- [anon_sym_set] = ACTIONS(3321),
- [anon_sym_declare] = ACTIONS(3309),
- [anon_sym_public] = ACTIONS(3323),
- [anon_sym_private] = ACTIONS(3323),
- [anon_sym_protected] = ACTIONS(3323),
- [anon_sym_override] = ACTIONS(3325),
- [anon_sym_module] = ACTIONS(3309),
- [anon_sym_any] = ACTIONS(3309),
- [anon_sym_number] = ACTIONS(3309),
- [anon_sym_boolean] = ACTIONS(3309),
- [anon_sym_string] = ACTIONS(3309),
- [anon_sym_symbol] = ACTIONS(3309),
- [anon_sym_object] = ACTIONS(3309),
- [anon_sym_abstract] = ACTIONS(3229),
- [anon_sym_PIPE_RBRACE] = ACTIONS(3239),
- [sym_html_comment] = ACTIONS(5),
- },
- [1098] = {
- [sym_export_statement] = STATE(3830),
- [sym_object_pattern] = STATE(5760),
- [sym_object_assignment_pattern] = STATE(4861),
- [sym_array_pattern] = STATE(5760),
- [sym__call_signature] = STATE(4329),
- [sym__destructuring_pattern] = STATE(5760),
- [sym_spread_element] = STATE(4835),
- [sym_string] = STATE(3049),
- [sym_decorator] = STATE(1244),
- [sym_formal_parameters] = STATE(3229),
- [sym_rest_pattern] = STATE(4861),
- [sym_method_definition] = STATE(4835),
- [sym_pair] = STATE(4835),
- [sym_pair_pattern] = STATE(4861),
- [sym__property_name] = STATE(3049),
- [sym_computed_property_name] = STATE(3049),
- [sym_method_signature] = STATE(3830),
- [sym_accessibility_modifier] = STATE(2687),
- [sym_override_modifier] = STATE(2717),
- [sym_call_signature] = STATE(3830),
- [sym_property_signature] = STATE(3830),
- [sym_type_parameters] = STATE(5404),
- [sym_construct_signature] = STATE(3830),
- [sym_index_signature] = STATE(3830),
- [aux_sym_export_statement_repeat1] = STATE(4448),
- [aux_sym_object_repeat1] = STATE(4839),
- [aux_sym_object_pattern_repeat1] = STATE(4759),
- [sym_identifier] = ACTIONS(3287),
- [anon_sym_export] = ACTIONS(3289),
- [anon_sym_STAR] = ACTIONS(3197),
- [anon_sym_type] = ACTIONS(3287),
- [anon_sym_namespace] = ACTIONS(3287),
- [anon_sym_LBRACE] = ACTIONS(3199),
- [anon_sym_COMMA] = ACTIONS(3233),
- [anon_sym_RBRACE] = ACTIONS(3327),
- [anon_sym_let] = ACTIONS(3287),
- [anon_sym_LPAREN] = ACTIONS(3205),
- [anon_sym_SEMI] = ACTIONS(3237),
- [anon_sym_LBRACK] = ACTIONS(3209),
- [anon_sym_DQUOTE] = ACTIONS(1594),
- [anon_sym_SQUOTE] = ACTIONS(1596),
- [anon_sym_async] = ACTIONS(3293),
- [anon_sym_new] = ACTIONS(3295),
- [anon_sym_DOT_DOT_DOT] = ACTIONS(253),
- [anon_sym_PLUS] = ACTIONS(3215),
- [anon_sym_DASH] = ACTIONS(3215),
- [anon_sym_LT] = ACTIONS(2581),
- [sym_comment] = ACTIONS(5),
- [sym_number] = ACTIONS(3217),
- [sym_private_property_identifier] = ACTIONS(3217),
- [anon_sym_AT] = ACTIONS(99),
- [anon_sym_static] = ACTIONS(3297),
- [anon_sym_readonly] = ACTIONS(3299),
- [anon_sym_get] = ACTIONS(3301),
- [anon_sym_set] = ACTIONS(3301),
- [anon_sym_declare] = ACTIONS(3287),
- [anon_sym_public] = ACTIONS(3303),
- [anon_sym_private] = ACTIONS(3303),
- [anon_sym_protected] = ACTIONS(3303),
- [anon_sym_override] = ACTIONS(3305),
- [anon_sym_module] = ACTIONS(3287),
- [anon_sym_any] = ACTIONS(3287),
- [anon_sym_number] = ACTIONS(3287),
- [anon_sym_boolean] = ACTIONS(3287),
- [anon_sym_string] = ACTIONS(3287),
- [anon_sym_symbol] = ACTIONS(3287),
- [anon_sym_object] = ACTIONS(3287),
- [anon_sym_abstract] = ACTIONS(3229),
- [anon_sym_PIPE_RBRACE] = ACTIONS(3239),
- [sym_html_comment] = ACTIONS(5),
- },
- [1099] = {
- [sym_export_statement] = STATE(3830),
- [sym_object_pattern] = STATE(5760),
- [sym_object_assignment_pattern] = STATE(4861),
- [sym_array_pattern] = STATE(5760),
- [sym__call_signature] = STATE(4329),
- [sym__destructuring_pattern] = STATE(5760),
- [sym_spread_element] = STATE(4835),
- [sym_string] = STATE(3049),
- [sym_decorator] = STATE(1244),
- [sym_formal_parameters] = STATE(3229),
- [sym_rest_pattern] = STATE(4861),
- [sym_method_definition] = STATE(4835),
- [sym_pair] = STATE(4835),
- [sym_pair_pattern] = STATE(4861),
- [sym__property_name] = STATE(3049),
- [sym_computed_property_name] = STATE(3049),
- [sym_method_signature] = STATE(3830),
- [sym_accessibility_modifier] = STATE(2687),
- [sym_override_modifier] = STATE(2717),
- [sym_call_signature] = STATE(3830),
- [sym_property_signature] = STATE(3830),
- [sym_type_parameters] = STATE(5404),
- [sym_construct_signature] = STATE(3830),
- [sym_index_signature] = STATE(3830),
- [aux_sym_export_statement_repeat1] = STATE(4448),
- [aux_sym_object_repeat1] = STATE(4839),
- [aux_sym_object_pattern_repeat1] = STATE(4759),
- [sym_identifier] = ACTIONS(3241),
- [anon_sym_export] = ACTIONS(3243),
- [anon_sym_STAR] = ACTIONS(3197),
- [anon_sym_type] = ACTIONS(3241),
- [anon_sym_namespace] = ACTIONS(3241),
- [anon_sym_LBRACE] = ACTIONS(3199),
- [anon_sym_COMMA] = ACTIONS(3233),
- [anon_sym_RBRACE] = ACTIONS(3235),
- [anon_sym_let] = ACTIONS(3241),
- [anon_sym_LPAREN] = ACTIONS(3205),
- [anon_sym_SEMI] = ACTIONS(3237),
- [anon_sym_LBRACK] = ACTIONS(3209),
- [anon_sym_DQUOTE] = ACTIONS(1594),
- [anon_sym_SQUOTE] = ACTIONS(1596),
- [anon_sym_async] = ACTIONS(3247),
- [anon_sym_new] = ACTIONS(3249),
- [anon_sym_DOT_DOT_DOT] = ACTIONS(253),
- [anon_sym_PLUS] = ACTIONS(3215),
- [anon_sym_DASH] = ACTIONS(3215),
- [anon_sym_LT] = ACTIONS(2581),
- [sym_comment] = ACTIONS(5),
- [sym_number] = ACTIONS(3217),
- [sym_private_property_identifier] = ACTIONS(3217),
- [anon_sym_AT] = ACTIONS(99),
- [anon_sym_static] = ACTIONS(3251),
- [anon_sym_readonly] = ACTIONS(3253),
- [anon_sym_get] = ACTIONS(3255),
- [anon_sym_set] = ACTIONS(3255),
- [anon_sym_declare] = ACTIONS(3241),
- [anon_sym_public] = ACTIONS(3257),
- [anon_sym_private] = ACTIONS(3257),
- [anon_sym_protected] = ACTIONS(3257),
- [anon_sym_override] = ACTIONS(3259),
- [anon_sym_module] = ACTIONS(3241),
- [anon_sym_any] = ACTIONS(3241),
- [anon_sym_number] = ACTIONS(3241),
- [anon_sym_boolean] = ACTIONS(3241),
- [anon_sym_string] = ACTIONS(3241),
- [anon_sym_symbol] = ACTIONS(3241),
- [anon_sym_object] = ACTIONS(3241),
- [anon_sym_abstract] = ACTIONS(3229),
- [anon_sym_PIPE_RBRACE] = ACTIONS(3239),
- [sym_html_comment] = ACTIONS(5),
- },
- [1100] = {
- [sym_nested_identifier] = STATE(214),
- [sym_string] = STATE(213),
- [sym__module] = STATE(247),
- [aux_sym_object_repeat1] = STATE(4671),
- [aux_sym_object_pattern_repeat1] = STATE(4672),
- [sym_identifier] = ACTIONS(3329),
- [anon_sym_STAR] = ACTIONS(122),
- [anon_sym_EQ] = ACTIONS(696),
- [anon_sym_as] = ACTIONS(122),
- [anon_sym_COMMA] = ACTIONS(162),
- [anon_sym_RBRACE] = ACTIONS(727),
- [anon_sym_BANG] = ACTIONS(122),
- [anon_sym_LPAREN] = ACTIONS(2239),
- [anon_sym_in] = ACTIONS(122),
- [anon_sym_SEMI] = ACTIONS(162),
- [anon_sym_COLON] = ACTIONS(704),
- [anon_sym_LBRACK] = ACTIONS(162),
- [anon_sym_GT] = ACTIONS(122),
- [anon_sym_DOT] = ACTIONS(162),
- [anon_sym_DQUOTE] = ACTIONS(3331),
- [anon_sym_SQUOTE] = ACTIONS(3333),
- [anon_sym_EQ_GT] = ACTIONS(715),
- [anon_sym_QMARK_DOT] = ACTIONS(162),
- [anon_sym_PLUS_EQ] = ACTIONS(168),
- [anon_sym_DASH_EQ] = ACTIONS(168),
- [anon_sym_STAR_EQ] = ACTIONS(168),
- [anon_sym_SLASH_EQ] = ACTIONS(168),
- [anon_sym_PERCENT_EQ] = ACTIONS(168),
- [anon_sym_CARET_EQ] = ACTIONS(168),
- [anon_sym_AMP_EQ] = ACTIONS(168),
- [anon_sym_PIPE_EQ] = ACTIONS(168),
- [anon_sym_GT_GT_EQ] = ACTIONS(168),
- [anon_sym_GT_GT_GT_EQ] = ACTIONS(168),
- [anon_sym_LT_LT_EQ] = ACTIONS(168),
- [anon_sym_STAR_STAR_EQ] = ACTIONS(168),
- [anon_sym_AMP_AMP_EQ] = ACTIONS(168),
- [anon_sym_PIPE_PIPE_EQ] = ACTIONS(168),
- [anon_sym_QMARK_QMARK_EQ] = ACTIONS(168),
- [anon_sym_AMP_AMP] = ACTIONS(122),
- [anon_sym_PIPE_PIPE] = ACTIONS(122),
- [anon_sym_GT_GT] = ACTIONS(122),
- [anon_sym_GT_GT_GT] = ACTIONS(122),
- [anon_sym_LT_LT] = ACTIONS(122),
- [anon_sym_AMP] = ACTIONS(122),
- [anon_sym_CARET] = ACTIONS(122),
- [anon_sym_PIPE] = ACTIONS(122),
- [anon_sym_PLUS] = ACTIONS(122),
- [anon_sym_DASH] = ACTIONS(122),
- [anon_sym_SLASH] = ACTIONS(122),
- [anon_sym_PERCENT] = ACTIONS(122),
- [anon_sym_STAR_STAR] = ACTIONS(122),
- [anon_sym_LT] = ACTIONS(2248),
- [anon_sym_LT_EQ] = ACTIONS(162),
- [anon_sym_EQ_EQ] = ACTIONS(122),
- [anon_sym_EQ_EQ_EQ] = ACTIONS(162),
- [anon_sym_BANG_EQ] = ACTIONS(122),
- [anon_sym_BANG_EQ_EQ] = ACTIONS(162),
- [anon_sym_GT_EQ] = ACTIONS(162),
- [anon_sym_QMARK_QMARK] = ACTIONS(122),
- [anon_sym_instanceof] = ACTIONS(122),
- [anon_sym_PLUS_PLUS] = ACTIONS(162),
- [anon_sym_DASH_DASH] = ACTIONS(162),
- [sym_comment] = ACTIONS(5),
- [anon_sym_BQUOTE] = ACTIONS(162),
- [anon_sym_QMARK] = ACTIONS(723),
- [anon_sym_satisfies] = ACTIONS(122),
- [sym__automatic_semicolon] = ACTIONS(162),
- [sym__ternary_qmark] = ACTIONS(162),
- [sym_html_comment] = ACTIONS(5),
- },
- [1101] = {
- [sym_variable_declarator] = STATE(4506),
- [sym_object_pattern] = STATE(3661),
- [sym_array_pattern] = STATE(3661),
- [sym__destructuring_pattern] = STATE(3661),
- [aux_sym_object_repeat1] = STATE(4671),
- [aux_sym_object_pattern_repeat1] = STATE(4672),
- [sym_identifier] = ACTIONS(3335),
- [anon_sym_STAR] = ACTIONS(122),
- [anon_sym_EQ] = ACTIONS(696),
- [anon_sym_as] = ACTIONS(122),
- [anon_sym_LBRACE] = ACTIONS(3337),
- [anon_sym_COMMA] = ACTIONS(162),
- [anon_sym_RBRACE] = ACTIONS(727),
- [anon_sym_BANG] = ACTIONS(122),
- [anon_sym_LPAREN] = ACTIONS(2239),
- [anon_sym_in] = ACTIONS(122),
- [anon_sym_SEMI] = ACTIONS(162),
- [anon_sym_COLON] = ACTIONS(704),
- [anon_sym_LBRACK] = ACTIONS(3339),
- [anon_sym_GT] = ACTIONS(122),
- [anon_sym_DOT] = ACTIONS(162),
- [anon_sym_EQ_GT] = ACTIONS(715),
- [anon_sym_QMARK_DOT] = ACTIONS(162),
- [anon_sym_PLUS_EQ] = ACTIONS(168),
- [anon_sym_DASH_EQ] = ACTIONS(168),
- [anon_sym_STAR_EQ] = ACTIONS(168),
- [anon_sym_SLASH_EQ] = ACTIONS(168),
- [anon_sym_PERCENT_EQ] = ACTIONS(168),
- [anon_sym_CARET_EQ] = ACTIONS(168),
- [anon_sym_AMP_EQ] = ACTIONS(168),
- [anon_sym_PIPE_EQ] = ACTIONS(168),
- [anon_sym_GT_GT_EQ] = ACTIONS(168),
- [anon_sym_GT_GT_GT_EQ] = ACTIONS(168),
- [anon_sym_LT_LT_EQ] = ACTIONS(168),
- [anon_sym_STAR_STAR_EQ] = ACTIONS(168),
- [anon_sym_AMP_AMP_EQ] = ACTIONS(168),
- [anon_sym_PIPE_PIPE_EQ] = ACTIONS(168),
- [anon_sym_QMARK_QMARK_EQ] = ACTIONS(168),
- [anon_sym_AMP_AMP] = ACTIONS(122),
- [anon_sym_PIPE_PIPE] = ACTIONS(122),
- [anon_sym_GT_GT] = ACTIONS(122),
- [anon_sym_GT_GT_GT] = ACTIONS(122),
- [anon_sym_LT_LT] = ACTIONS(122),
- [anon_sym_AMP] = ACTIONS(122),
- [anon_sym_CARET] = ACTIONS(122),
- [anon_sym_PIPE] = ACTIONS(122),
- [anon_sym_PLUS] = ACTIONS(122),
- [anon_sym_DASH] = ACTIONS(122),
- [anon_sym_SLASH] = ACTIONS(122),
- [anon_sym_PERCENT] = ACTIONS(122),
- [anon_sym_STAR_STAR] = ACTIONS(122),
- [anon_sym_LT] = ACTIONS(2248),
- [anon_sym_LT_EQ] = ACTIONS(162),
- [anon_sym_EQ_EQ] = ACTIONS(122),
- [anon_sym_EQ_EQ_EQ] = ACTIONS(162),
- [anon_sym_BANG_EQ] = ACTIONS(122),
- [anon_sym_BANG_EQ_EQ] = ACTIONS(162),
- [anon_sym_GT_EQ] = ACTIONS(162),
- [anon_sym_QMARK_QMARK] = ACTIONS(122),
- [anon_sym_instanceof] = ACTIONS(122),
- [anon_sym_PLUS_PLUS] = ACTIONS(162),
- [anon_sym_DASH_DASH] = ACTIONS(162),
- [sym_comment] = ACTIONS(5),
- [anon_sym_BQUOTE] = ACTIONS(162),
- [anon_sym_QMARK] = ACTIONS(723),
- [anon_sym_satisfies] = ACTIONS(122),
- [sym__automatic_semicolon] = ACTIONS(162),
- [sym__ternary_qmark] = ACTIONS(162),
- [sym_html_comment] = ACTIONS(5),
- },
- [1102] = {
- [sym_nested_identifier] = STATE(214),
- [sym_string] = STATE(213),
- [sym__module] = STATE(247),
- [aux_sym_object_repeat1] = STATE(5156),
- [aux_sym_object_pattern_repeat1] = STATE(4672),
- [sym_identifier] = ACTIONS(3329),
- [anon_sym_STAR] = ACTIONS(122),
- [anon_sym_EQ] = ACTIONS(696),
- [anon_sym_as] = ACTIONS(122),
- [anon_sym_COMMA] = ACTIONS(162),
- [anon_sym_RBRACE] = ACTIONS(725),
- [anon_sym_BANG] = ACTIONS(122),
- [anon_sym_LPAREN] = ACTIONS(2239),
- [anon_sym_in] = ACTIONS(122),
- [anon_sym_SEMI] = ACTIONS(162),
- [anon_sym_COLON] = ACTIONS(704),
- [anon_sym_LBRACK] = ACTIONS(162),
- [anon_sym_GT] = ACTIONS(122),
- [anon_sym_DOT] = ACTIONS(162),
- [anon_sym_DQUOTE] = ACTIONS(3331),
- [anon_sym_SQUOTE] = ACTIONS(3333),
- [anon_sym_EQ_GT] = ACTIONS(715),
- [anon_sym_QMARK_DOT] = ACTIONS(162),
- [anon_sym_PLUS_EQ] = ACTIONS(168),
- [anon_sym_DASH_EQ] = ACTIONS(168),
- [anon_sym_STAR_EQ] = ACTIONS(168),
- [anon_sym_SLASH_EQ] = ACTIONS(168),
- [anon_sym_PERCENT_EQ] = ACTIONS(168),
- [anon_sym_CARET_EQ] = ACTIONS(168),
- [anon_sym_AMP_EQ] = ACTIONS(168),
- [anon_sym_PIPE_EQ] = ACTIONS(168),
- [anon_sym_GT_GT_EQ] = ACTIONS(168),
- [anon_sym_GT_GT_GT_EQ] = ACTIONS(168),
- [anon_sym_LT_LT_EQ] = ACTIONS(168),
- [anon_sym_STAR_STAR_EQ] = ACTIONS(168),
- [anon_sym_AMP_AMP_EQ] = ACTIONS(168),
- [anon_sym_PIPE_PIPE_EQ] = ACTIONS(168),
- [anon_sym_QMARK_QMARK_EQ] = ACTIONS(168),
- [anon_sym_AMP_AMP] = ACTIONS(122),
- [anon_sym_PIPE_PIPE] = ACTIONS(122),
- [anon_sym_GT_GT] = ACTIONS(122),
- [anon_sym_GT_GT_GT] = ACTIONS(122),
- [anon_sym_LT_LT] = ACTIONS(122),
- [anon_sym_AMP] = ACTIONS(122),
- [anon_sym_CARET] = ACTIONS(122),
- [anon_sym_PIPE] = ACTIONS(122),
- [anon_sym_PLUS] = ACTIONS(122),
- [anon_sym_DASH] = ACTIONS(122),
- [anon_sym_SLASH] = ACTIONS(122),
- [anon_sym_PERCENT] = ACTIONS(122),
- [anon_sym_STAR_STAR] = ACTIONS(122),
- [anon_sym_LT] = ACTIONS(2248),
- [anon_sym_LT_EQ] = ACTIONS(162),
- [anon_sym_EQ_EQ] = ACTIONS(122),
- [anon_sym_EQ_EQ_EQ] = ACTIONS(162),
- [anon_sym_BANG_EQ] = ACTIONS(122),
- [anon_sym_BANG_EQ_EQ] = ACTIONS(162),
- [anon_sym_GT_EQ] = ACTIONS(162),
- [anon_sym_QMARK_QMARK] = ACTIONS(122),
- [anon_sym_instanceof] = ACTIONS(122),
- [anon_sym_PLUS_PLUS] = ACTIONS(162),
- [anon_sym_DASH_DASH] = ACTIONS(162),
- [sym_comment] = ACTIONS(5),
- [anon_sym_BQUOTE] = ACTIONS(162),
- [anon_sym_QMARK] = ACTIONS(723),
- [anon_sym_satisfies] = ACTIONS(122),
- [sym__automatic_semicolon] = ACTIONS(162),
- [sym__ternary_qmark] = ACTIONS(162),
- [sym_html_comment] = ACTIONS(5),
- },
- [1103] = {
- [sym_variable_declarator] = STATE(4506),
- [sym_object_pattern] = STATE(3661),
- [sym_array_pattern] = STATE(3661),
- [sym__destructuring_pattern] = STATE(3661),
- [aux_sym_object_repeat1] = STATE(5156),
- [aux_sym_object_pattern_repeat1] = STATE(4672),
- [sym_identifier] = ACTIONS(3335),
- [anon_sym_STAR] = ACTIONS(122),
- [anon_sym_EQ] = ACTIONS(696),
- [anon_sym_as] = ACTIONS(122),
- [anon_sym_LBRACE] = ACTIONS(3337),
- [anon_sym_COMMA] = ACTIONS(162),
- [anon_sym_RBRACE] = ACTIONS(725),
- [anon_sym_BANG] = ACTIONS(122),
- [anon_sym_LPAREN] = ACTIONS(2239),
- [anon_sym_in] = ACTIONS(122),
- [anon_sym_SEMI] = ACTIONS(162),
- [anon_sym_COLON] = ACTIONS(704),
- [anon_sym_LBRACK] = ACTIONS(3339),
- [anon_sym_GT] = ACTIONS(122),
- [anon_sym_DOT] = ACTIONS(162),
- [anon_sym_EQ_GT] = ACTIONS(715),
- [anon_sym_QMARK_DOT] = ACTIONS(162),
- [anon_sym_PLUS_EQ] = ACTIONS(168),
- [anon_sym_DASH_EQ] = ACTIONS(168),
- [anon_sym_STAR_EQ] = ACTIONS(168),
- [anon_sym_SLASH_EQ] = ACTIONS(168),
- [anon_sym_PERCENT_EQ] = ACTIONS(168),
- [anon_sym_CARET_EQ] = ACTIONS(168),
- [anon_sym_AMP_EQ] = ACTIONS(168),
- [anon_sym_PIPE_EQ] = ACTIONS(168),
- [anon_sym_GT_GT_EQ] = ACTIONS(168),
- [anon_sym_GT_GT_GT_EQ] = ACTIONS(168),
- [anon_sym_LT_LT_EQ] = ACTIONS(168),
- [anon_sym_STAR_STAR_EQ] = ACTIONS(168),
- [anon_sym_AMP_AMP_EQ] = ACTIONS(168),
- [anon_sym_PIPE_PIPE_EQ] = ACTIONS(168),
- [anon_sym_QMARK_QMARK_EQ] = ACTIONS(168),
- [anon_sym_AMP_AMP] = ACTIONS(122),
- [anon_sym_PIPE_PIPE] = ACTIONS(122),
- [anon_sym_GT_GT] = ACTIONS(122),
- [anon_sym_GT_GT_GT] = ACTIONS(122),
- [anon_sym_LT_LT] = ACTIONS(122),
- [anon_sym_AMP] = ACTIONS(122),
- [anon_sym_CARET] = ACTIONS(122),
- [anon_sym_PIPE] = ACTIONS(122),
- [anon_sym_PLUS] = ACTIONS(122),
- [anon_sym_DASH] = ACTIONS(122),
- [anon_sym_SLASH] = ACTIONS(122),
- [anon_sym_PERCENT] = ACTIONS(122),
- [anon_sym_STAR_STAR] = ACTIONS(122),
- [anon_sym_LT] = ACTIONS(2248),
- [anon_sym_LT_EQ] = ACTIONS(162),
- [anon_sym_EQ_EQ] = ACTIONS(122),
- [anon_sym_EQ_EQ_EQ] = ACTIONS(162),
- [anon_sym_BANG_EQ] = ACTIONS(122),
- [anon_sym_BANG_EQ_EQ] = ACTIONS(162),
- [anon_sym_GT_EQ] = ACTIONS(162),
- [anon_sym_QMARK_QMARK] = ACTIONS(122),
- [anon_sym_instanceof] = ACTIONS(122),
- [anon_sym_PLUS_PLUS] = ACTIONS(162),
- [anon_sym_DASH_DASH] = ACTIONS(162),
- [sym_comment] = ACTIONS(5),
- [anon_sym_BQUOTE] = ACTIONS(162),
- [anon_sym_QMARK] = ACTIONS(723),
- [anon_sym_satisfies] = ACTIONS(122),
- [sym__automatic_semicolon] = ACTIONS(162),
- [sym__ternary_qmark] = ACTIONS(162),
- [sym_html_comment] = ACTIONS(5),
- },
- [1104] = {
- [sym_nested_identifier] = STATE(711),
- [sym_string] = STATE(741),
- [sym__module] = STATE(825),
- [aux_sym_object_repeat1] = STATE(5156),
- [aux_sym_object_pattern_repeat1] = STATE(4672),
- [sym_identifier] = ACTIONS(3341),
- [anon_sym_STAR] = ACTIONS(122),
- [anon_sym_EQ] = ACTIONS(696),
- [anon_sym_as] = ACTIONS(122),
- [anon_sym_COMMA] = ACTIONS(162),
- [anon_sym_RBRACE] = ACTIONS(702),
- [anon_sym_BANG] = ACTIONS(122),
- [anon_sym_LPAREN] = ACTIONS(2239),
- [anon_sym_in] = ACTIONS(122),
- [anon_sym_SEMI] = ACTIONS(162),
- [anon_sym_COLON] = ACTIONS(704),
- [anon_sym_LBRACK] = ACTIONS(162),
- [anon_sym_GT] = ACTIONS(122),
- [anon_sym_DOT] = ACTIONS(162),
- [anon_sym_DQUOTE] = ACTIONS(1506),
- [anon_sym_SQUOTE] = ACTIONS(1508),
- [anon_sym_EQ_GT] = ACTIONS(715),
- [anon_sym_QMARK_DOT] = ACTIONS(162),
- [anon_sym_PLUS_EQ] = ACTIONS(168),
- [anon_sym_DASH_EQ] = ACTIONS(168),
- [anon_sym_STAR_EQ] = ACTIONS(168),
- [anon_sym_SLASH_EQ] = ACTIONS(168),
- [anon_sym_PERCENT_EQ] = ACTIONS(168),
- [anon_sym_CARET_EQ] = ACTIONS(168),
- [anon_sym_AMP_EQ] = ACTIONS(168),
- [anon_sym_PIPE_EQ] = ACTIONS(168),
- [anon_sym_GT_GT_EQ] = ACTIONS(168),
- [anon_sym_GT_GT_GT_EQ] = ACTIONS(168),
- [anon_sym_LT_LT_EQ] = ACTIONS(168),
- [anon_sym_STAR_STAR_EQ] = ACTIONS(168),
- [anon_sym_AMP_AMP_EQ] = ACTIONS(168),
- [anon_sym_PIPE_PIPE_EQ] = ACTIONS(168),
- [anon_sym_QMARK_QMARK_EQ] = ACTIONS(168),
- [anon_sym_AMP_AMP] = ACTIONS(122),
- [anon_sym_PIPE_PIPE] = ACTIONS(122),
- [anon_sym_GT_GT] = ACTIONS(122),
- [anon_sym_GT_GT_GT] = ACTIONS(122),
- [anon_sym_LT_LT] = ACTIONS(122),
- [anon_sym_AMP] = ACTIONS(122),
- [anon_sym_CARET] = ACTIONS(122),
- [anon_sym_PIPE] = ACTIONS(122),
- [anon_sym_PLUS] = ACTIONS(122),
- [anon_sym_DASH] = ACTIONS(122),
- [anon_sym_SLASH] = ACTIONS(122),
- [anon_sym_PERCENT] = ACTIONS(122),
- [anon_sym_STAR_STAR] = ACTIONS(122),
- [anon_sym_LT] = ACTIONS(2248),
- [anon_sym_LT_EQ] = ACTIONS(162),
- [anon_sym_EQ_EQ] = ACTIONS(122),
- [anon_sym_EQ_EQ_EQ] = ACTIONS(162),
- [anon_sym_BANG_EQ] = ACTIONS(122),
- [anon_sym_BANG_EQ_EQ] = ACTIONS(162),
- [anon_sym_GT_EQ] = ACTIONS(162),
- [anon_sym_QMARK_QMARK] = ACTIONS(122),
- [anon_sym_instanceof] = ACTIONS(122),
- [anon_sym_PLUS_PLUS] = ACTIONS(162),
- [anon_sym_DASH_DASH] = ACTIONS(162),
- [sym_comment] = ACTIONS(5),
- [anon_sym_BQUOTE] = ACTIONS(162),
- [anon_sym_QMARK] = ACTIONS(723),
- [anon_sym_satisfies] = ACTIONS(122),
- [sym__automatic_semicolon] = ACTIONS(162),
- [sym__ternary_qmark] = ACTIONS(162),
- [sym_html_comment] = ACTIONS(5),
- },
- [1105] = {
- [sym_nested_identifier] = STATE(711),
- [sym_string] = STATE(741),
- [sym__module] = STATE(825),
- [aux_sym_object_repeat1] = STATE(5156),
- [aux_sym_object_pattern_repeat1] = STATE(4672),
- [sym_identifier] = ACTIONS(3341),
- [anon_sym_STAR] = ACTIONS(122),
- [anon_sym_EQ] = ACTIONS(696),
- [anon_sym_as] = ACTIONS(122),
- [anon_sym_COMMA] = ACTIONS(162),
- [anon_sym_RBRACE] = ACTIONS(725),
- [anon_sym_BANG] = ACTIONS(122),
- [anon_sym_LPAREN] = ACTIONS(2239),
- [anon_sym_in] = ACTIONS(122),
- [anon_sym_SEMI] = ACTIONS(162),
- [anon_sym_COLON] = ACTIONS(704),
- [anon_sym_LBRACK] = ACTIONS(162),
- [anon_sym_GT] = ACTIONS(122),
- [anon_sym_DOT] = ACTIONS(162),
- [anon_sym_DQUOTE] = ACTIONS(1506),
- [anon_sym_SQUOTE] = ACTIONS(1508),
- [anon_sym_EQ_GT] = ACTIONS(715),
- [anon_sym_QMARK_DOT] = ACTIONS(162),
- [anon_sym_PLUS_EQ] = ACTIONS(168),
- [anon_sym_DASH_EQ] = ACTIONS(168),
- [anon_sym_STAR_EQ] = ACTIONS(168),
- [anon_sym_SLASH_EQ] = ACTIONS(168),
- [anon_sym_PERCENT_EQ] = ACTIONS(168),
- [anon_sym_CARET_EQ] = ACTIONS(168),
- [anon_sym_AMP_EQ] = ACTIONS(168),
- [anon_sym_PIPE_EQ] = ACTIONS(168),
- [anon_sym_GT_GT_EQ] = ACTIONS(168),
- [anon_sym_GT_GT_GT_EQ] = ACTIONS(168),
- [anon_sym_LT_LT_EQ] = ACTIONS(168),
- [anon_sym_STAR_STAR_EQ] = ACTIONS(168),
- [anon_sym_AMP_AMP_EQ] = ACTIONS(168),
- [anon_sym_PIPE_PIPE_EQ] = ACTIONS(168),
- [anon_sym_QMARK_QMARK_EQ] = ACTIONS(168),
- [anon_sym_AMP_AMP] = ACTIONS(122),
- [anon_sym_PIPE_PIPE] = ACTIONS(122),
- [anon_sym_GT_GT] = ACTIONS(122),
- [anon_sym_GT_GT_GT] = ACTIONS(122),
- [anon_sym_LT_LT] = ACTIONS(122),
- [anon_sym_AMP] = ACTIONS(122),
- [anon_sym_CARET] = ACTIONS(122),
- [anon_sym_PIPE] = ACTIONS(122),
- [anon_sym_PLUS] = ACTIONS(122),
- [anon_sym_DASH] = ACTIONS(122),
- [anon_sym_SLASH] = ACTIONS(122),
- [anon_sym_PERCENT] = ACTIONS(122),
- [anon_sym_STAR_STAR] = ACTIONS(122),
- [anon_sym_LT] = ACTIONS(2248),
- [anon_sym_LT_EQ] = ACTIONS(162),
- [anon_sym_EQ_EQ] = ACTIONS(122),
- [anon_sym_EQ_EQ_EQ] = ACTIONS(162),
- [anon_sym_BANG_EQ] = ACTIONS(122),
- [anon_sym_BANG_EQ_EQ] = ACTIONS(162),
- [anon_sym_GT_EQ] = ACTIONS(162),
- [anon_sym_QMARK_QMARK] = ACTIONS(122),
- [anon_sym_instanceof] = ACTIONS(122),
- [anon_sym_PLUS_PLUS] = ACTIONS(162),
- [anon_sym_DASH_DASH] = ACTIONS(162),
- [sym_comment] = ACTIONS(5),
- [anon_sym_BQUOTE] = ACTIONS(162),
- [anon_sym_QMARK] = ACTIONS(723),
- [anon_sym_satisfies] = ACTIONS(122),
- [sym__automatic_semicolon] = ACTIONS(162),
- [sym__ternary_qmark] = ACTIONS(162),
- [sym_html_comment] = ACTIONS(5),
- },
- [1106] = {
- [sym_nested_identifier] = STATE(214),
- [sym_string] = STATE(213),
- [sym__module] = STATE(247),
- [aux_sym_object_repeat1] = STATE(5156),
- [aux_sym_object_pattern_repeat1] = STATE(4672),
- [sym_identifier] = ACTIONS(3329),
- [anon_sym_STAR] = ACTIONS(122),
- [anon_sym_EQ] = ACTIONS(696),
- [anon_sym_as] = ACTIONS(122),
- [anon_sym_COMMA] = ACTIONS(162),
- [anon_sym_RBRACE] = ACTIONS(702),
- [anon_sym_BANG] = ACTIONS(122),
- [anon_sym_LPAREN] = ACTIONS(2239),
- [anon_sym_in] = ACTIONS(122),
- [anon_sym_SEMI] = ACTIONS(162),
- [anon_sym_COLON] = ACTIONS(704),
- [anon_sym_LBRACK] = ACTIONS(162),
- [anon_sym_GT] = ACTIONS(122),
- [anon_sym_DOT] = ACTIONS(162),
- [anon_sym_DQUOTE] = ACTIONS(3331),
- [anon_sym_SQUOTE] = ACTIONS(3333),
- [anon_sym_EQ_GT] = ACTIONS(715),
- [anon_sym_QMARK_DOT] = ACTIONS(162),
- [anon_sym_PLUS_EQ] = ACTIONS(168),
- [anon_sym_DASH_EQ] = ACTIONS(168),
- [anon_sym_STAR_EQ] = ACTIONS(168),
- [anon_sym_SLASH_EQ] = ACTIONS(168),
- [anon_sym_PERCENT_EQ] = ACTIONS(168),
- [anon_sym_CARET_EQ] = ACTIONS(168),
- [anon_sym_AMP_EQ] = ACTIONS(168),
- [anon_sym_PIPE_EQ] = ACTIONS(168),
- [anon_sym_GT_GT_EQ] = ACTIONS(168),
- [anon_sym_GT_GT_GT_EQ] = ACTIONS(168),
- [anon_sym_LT_LT_EQ] = ACTIONS(168),
- [anon_sym_STAR_STAR_EQ] = ACTIONS(168),
- [anon_sym_AMP_AMP_EQ] = ACTIONS(168),
- [anon_sym_PIPE_PIPE_EQ] = ACTIONS(168),
- [anon_sym_QMARK_QMARK_EQ] = ACTIONS(168),
- [anon_sym_AMP_AMP] = ACTIONS(122),
- [anon_sym_PIPE_PIPE] = ACTIONS(122),
- [anon_sym_GT_GT] = ACTIONS(122),
- [anon_sym_GT_GT_GT] = ACTIONS(122),
- [anon_sym_LT_LT] = ACTIONS(122),
- [anon_sym_AMP] = ACTIONS(122),
- [anon_sym_CARET] = ACTIONS(122),
- [anon_sym_PIPE] = ACTIONS(122),
- [anon_sym_PLUS] = ACTIONS(122),
- [anon_sym_DASH] = ACTIONS(122),
- [anon_sym_SLASH] = ACTIONS(122),
- [anon_sym_PERCENT] = ACTIONS(122),
- [anon_sym_STAR_STAR] = ACTIONS(122),
- [anon_sym_LT] = ACTIONS(2248),
- [anon_sym_LT_EQ] = ACTIONS(162),
- [anon_sym_EQ_EQ] = ACTIONS(122),
- [anon_sym_EQ_EQ_EQ] = ACTIONS(162),
- [anon_sym_BANG_EQ] = ACTIONS(122),
- [anon_sym_BANG_EQ_EQ] = ACTIONS(162),
- [anon_sym_GT_EQ] = ACTIONS(162),
- [anon_sym_QMARK_QMARK] = ACTIONS(122),
- [anon_sym_instanceof] = ACTIONS(122),
- [anon_sym_PLUS_PLUS] = ACTIONS(162),
- [anon_sym_DASH_DASH] = ACTIONS(162),
- [sym_comment] = ACTIONS(5),
- [anon_sym_BQUOTE] = ACTIONS(162),
- [anon_sym_QMARK] = ACTIONS(723),
- [anon_sym_satisfies] = ACTIONS(122),
- [sym__automatic_semicolon] = ACTIONS(162),
- [sym__ternary_qmark] = ACTIONS(162),
- [sym_html_comment] = ACTIONS(5),
- },
- [1107] = {
- [sym_nested_identifier] = STATE(711),
- [sym_string] = STATE(741),
- [sym__module] = STATE(825),
- [aux_sym_object_repeat1] = STATE(4671),
- [aux_sym_object_pattern_repeat1] = STATE(4672),
- [sym_identifier] = ACTIONS(3341),
- [anon_sym_STAR] = ACTIONS(122),
- [anon_sym_EQ] = ACTIONS(696),
- [anon_sym_as] = ACTIONS(122),
- [anon_sym_COMMA] = ACTIONS(162),
- [anon_sym_RBRACE] = ACTIONS(727),
- [anon_sym_BANG] = ACTIONS(122),
- [anon_sym_LPAREN] = ACTIONS(2239),
- [anon_sym_in] = ACTIONS(122),
- [anon_sym_SEMI] = ACTIONS(162),
- [anon_sym_COLON] = ACTIONS(704),
- [anon_sym_LBRACK] = ACTIONS(162),
- [anon_sym_GT] = ACTIONS(122),
- [anon_sym_DOT] = ACTIONS(162),
- [anon_sym_DQUOTE] = ACTIONS(1506),
- [anon_sym_SQUOTE] = ACTIONS(1508),
- [anon_sym_EQ_GT] = ACTIONS(715),
- [anon_sym_QMARK_DOT] = ACTIONS(162),
- [anon_sym_PLUS_EQ] = ACTIONS(168),
- [anon_sym_DASH_EQ] = ACTIONS(168),
- [anon_sym_STAR_EQ] = ACTIONS(168),
- [anon_sym_SLASH_EQ] = ACTIONS(168),
- [anon_sym_PERCENT_EQ] = ACTIONS(168),
- [anon_sym_CARET_EQ] = ACTIONS(168),
- [anon_sym_AMP_EQ] = ACTIONS(168),
- [anon_sym_PIPE_EQ] = ACTIONS(168),
- [anon_sym_GT_GT_EQ] = ACTIONS(168),
- [anon_sym_GT_GT_GT_EQ] = ACTIONS(168),
- [anon_sym_LT_LT_EQ] = ACTIONS(168),
- [anon_sym_STAR_STAR_EQ] = ACTIONS(168),
- [anon_sym_AMP_AMP_EQ] = ACTIONS(168),
- [anon_sym_PIPE_PIPE_EQ] = ACTIONS(168),
- [anon_sym_QMARK_QMARK_EQ] = ACTIONS(168),
- [anon_sym_AMP_AMP] = ACTIONS(122),
- [anon_sym_PIPE_PIPE] = ACTIONS(122),
- [anon_sym_GT_GT] = ACTIONS(122),
- [anon_sym_GT_GT_GT] = ACTIONS(122),
- [anon_sym_LT_LT] = ACTIONS(122),
- [anon_sym_AMP] = ACTIONS(122),
- [anon_sym_CARET] = ACTIONS(122),
- [anon_sym_PIPE] = ACTIONS(122),
- [anon_sym_PLUS] = ACTIONS(122),
- [anon_sym_DASH] = ACTIONS(122),
- [anon_sym_SLASH] = ACTIONS(122),
- [anon_sym_PERCENT] = ACTIONS(122),
- [anon_sym_STAR_STAR] = ACTIONS(122),
- [anon_sym_LT] = ACTIONS(2248),
- [anon_sym_LT_EQ] = ACTIONS(162),
- [anon_sym_EQ_EQ] = ACTIONS(122),
- [anon_sym_EQ_EQ_EQ] = ACTIONS(162),
- [anon_sym_BANG_EQ] = ACTIONS(122),
- [anon_sym_BANG_EQ_EQ] = ACTIONS(162),
- [anon_sym_GT_EQ] = ACTIONS(162),
- [anon_sym_QMARK_QMARK] = ACTIONS(122),
- [anon_sym_instanceof] = ACTIONS(122),
- [anon_sym_PLUS_PLUS] = ACTIONS(162),
- [anon_sym_DASH_DASH] = ACTIONS(162),
- [sym_comment] = ACTIONS(5),
- [anon_sym_BQUOTE] = ACTIONS(162),
- [anon_sym_QMARK] = ACTIONS(723),
- [anon_sym_satisfies] = ACTIONS(122),
- [sym__automatic_semicolon] = ACTIONS(162),
- [sym__ternary_qmark] = ACTIONS(162),
- [sym_html_comment] = ACTIONS(5),
- },
- [1108] = {
- [sym_variable_declarator] = STATE(4506),
- [sym_object_pattern] = STATE(3661),
- [sym_array_pattern] = STATE(3661),
- [sym__destructuring_pattern] = STATE(3661),
- [aux_sym_object_repeat1] = STATE(5156),
- [aux_sym_object_pattern_repeat1] = STATE(4672),
- [sym_identifier] = ACTIONS(3335),
- [anon_sym_STAR] = ACTIONS(122),
- [anon_sym_EQ] = ACTIONS(696),
- [anon_sym_as] = ACTIONS(122),
- [anon_sym_LBRACE] = ACTIONS(3337),
- [anon_sym_COMMA] = ACTIONS(162),
- [anon_sym_RBRACE] = ACTIONS(702),
- [anon_sym_BANG] = ACTIONS(122),
- [anon_sym_LPAREN] = ACTIONS(2239),
- [anon_sym_in] = ACTIONS(122),
- [anon_sym_SEMI] = ACTIONS(162),
- [anon_sym_COLON] = ACTIONS(704),
- [anon_sym_LBRACK] = ACTIONS(3339),
- [anon_sym_GT] = ACTIONS(122),
- [anon_sym_DOT] = ACTIONS(162),
- [anon_sym_EQ_GT] = ACTIONS(715),
- [anon_sym_QMARK_DOT] = ACTIONS(162),
- [anon_sym_PLUS_EQ] = ACTIONS(168),
- [anon_sym_DASH_EQ] = ACTIONS(168),
- [anon_sym_STAR_EQ] = ACTIONS(168),
- [anon_sym_SLASH_EQ] = ACTIONS(168),
- [anon_sym_PERCENT_EQ] = ACTIONS(168),
- [anon_sym_CARET_EQ] = ACTIONS(168),
- [anon_sym_AMP_EQ] = ACTIONS(168),
- [anon_sym_PIPE_EQ] = ACTIONS(168),
- [anon_sym_GT_GT_EQ] = ACTIONS(168),
- [anon_sym_GT_GT_GT_EQ] = ACTIONS(168),
- [anon_sym_LT_LT_EQ] = ACTIONS(168),
- [anon_sym_STAR_STAR_EQ] = ACTIONS(168),
- [anon_sym_AMP_AMP_EQ] = ACTIONS(168),
- [anon_sym_PIPE_PIPE_EQ] = ACTIONS(168),
- [anon_sym_QMARK_QMARK_EQ] = ACTIONS(168),
- [anon_sym_AMP_AMP] = ACTIONS(122),
- [anon_sym_PIPE_PIPE] = ACTIONS(122),
- [anon_sym_GT_GT] = ACTIONS(122),
- [anon_sym_GT_GT_GT] = ACTIONS(122),
- [anon_sym_LT_LT] = ACTIONS(122),
- [anon_sym_AMP] = ACTIONS(122),
- [anon_sym_CARET] = ACTIONS(122),
- [anon_sym_PIPE] = ACTIONS(122),
- [anon_sym_PLUS] = ACTIONS(122),
- [anon_sym_DASH] = ACTIONS(122),
- [anon_sym_SLASH] = ACTIONS(122),
- [anon_sym_PERCENT] = ACTIONS(122),
- [anon_sym_STAR_STAR] = ACTIONS(122),
- [anon_sym_LT] = ACTIONS(2248),
- [anon_sym_LT_EQ] = ACTIONS(162),
- [anon_sym_EQ_EQ] = ACTIONS(122),
- [anon_sym_EQ_EQ_EQ] = ACTIONS(162),
- [anon_sym_BANG_EQ] = ACTIONS(122),
- [anon_sym_BANG_EQ_EQ] = ACTIONS(162),
- [anon_sym_GT_EQ] = ACTIONS(162),
- [anon_sym_QMARK_QMARK] = ACTIONS(122),
- [anon_sym_instanceof] = ACTIONS(122),
- [anon_sym_PLUS_PLUS] = ACTIONS(162),
- [anon_sym_DASH_DASH] = ACTIONS(162),
- [sym_comment] = ACTIONS(5),
- [anon_sym_BQUOTE] = ACTIONS(162),
- [anon_sym_QMARK] = ACTIONS(723),
- [anon_sym_satisfies] = ACTIONS(122),
- [sym__automatic_semicolon] = ACTIONS(162),
- [sym__ternary_qmark] = ACTIONS(162),
- [sym_html_comment] = ACTIONS(5),
- },
- [1109] = {
- [sym_nested_identifier] = STATE(1486),
- [sym_string] = STATE(1513),
- [sym__module] = STATE(1710),
- [sym_identifier] = ACTIONS(3343),
- [anon_sym_STAR] = ACTIONS(122),
- [anon_sym_EQ] = ACTIONS(119),
- [anon_sym_as] = ACTIONS(122),
- [anon_sym_COMMA] = ACTIONS(128),
- [anon_sym_RBRACE] = ACTIONS(128),
- [anon_sym_BANG] = ACTIONS(122),
- [anon_sym_LPAREN] = ACTIONS(162),
- [anon_sym_RPAREN] = ACTIONS(128),
- [anon_sym_in] = ACTIONS(122),
- [anon_sym_COLON] = ACTIONS(128),
- [anon_sym_LBRACK] = ACTIONS(162),
- [anon_sym_RBRACK] = ACTIONS(128),
- [anon_sym_GT] = ACTIONS(122),
- [anon_sym_DOT] = ACTIONS(162),
- [anon_sym_DQUOTE] = ACTIONS(150),
- [anon_sym_SQUOTE] = ACTIONS(152),
- [anon_sym_EQ_GT] = ACTIONS(160),
- [anon_sym_QMARK_DOT] = ACTIONS(162),
- [anon_sym_PLUS_EQ] = ACTIONS(168),
- [anon_sym_DASH_EQ] = ACTIONS(168),
- [anon_sym_STAR_EQ] = ACTIONS(168),
- [anon_sym_SLASH_EQ] = ACTIONS(168),
- [anon_sym_PERCENT_EQ] = ACTIONS(168),
- [anon_sym_CARET_EQ] = ACTIONS(168),
- [anon_sym_AMP_EQ] = ACTIONS(168),
- [anon_sym_PIPE_EQ] = ACTIONS(168),
- [anon_sym_GT_GT_EQ] = ACTIONS(168),
- [anon_sym_GT_GT_GT_EQ] = ACTIONS(168),
- [anon_sym_LT_LT_EQ] = ACTIONS(168),
- [anon_sym_STAR_STAR_EQ] = ACTIONS(168),
- [anon_sym_AMP_AMP_EQ] = ACTIONS(168),
- [anon_sym_PIPE_PIPE_EQ] = ACTIONS(168),
- [anon_sym_QMARK_QMARK_EQ] = ACTIONS(168),
- [anon_sym_AMP_AMP] = ACTIONS(122),
- [anon_sym_PIPE_PIPE] = ACTIONS(122),
- [anon_sym_GT_GT] = ACTIONS(122),
- [anon_sym_GT_GT_GT] = ACTIONS(122),
- [anon_sym_LT_LT] = ACTIONS(122),
- [anon_sym_AMP] = ACTIONS(122),
- [anon_sym_CARET] = ACTIONS(122),
- [anon_sym_PIPE] = ACTIONS(122),
- [anon_sym_PLUS] = ACTIONS(122),
- [anon_sym_DASH] = ACTIONS(122),
- [anon_sym_SLASH] = ACTIONS(122),
- [anon_sym_PERCENT] = ACTIONS(122),
- [anon_sym_STAR_STAR] = ACTIONS(122),
- [anon_sym_LT] = ACTIONS(122),
- [anon_sym_LT_EQ] = ACTIONS(162),
- [anon_sym_EQ_EQ] = ACTIONS(122),
- [anon_sym_EQ_EQ_EQ] = ACTIONS(162),
- [anon_sym_BANG_EQ] = ACTIONS(122),
- [anon_sym_BANG_EQ_EQ] = ACTIONS(162),
- [anon_sym_GT_EQ] = ACTIONS(162),
- [anon_sym_QMARK_QMARK] = ACTIONS(122),
- [anon_sym_instanceof] = ACTIONS(122),
- [anon_sym_PLUS_PLUS] = ACTIONS(162),
- [anon_sym_DASH_DASH] = ACTIONS(162),
- [sym_comment] = ACTIONS(5),
- [anon_sym_BQUOTE] = ACTIONS(162),
- [anon_sym_QMARK] = ACTIONS(793),
- [anon_sym_satisfies] = ACTIONS(122),
- [sym__ternary_qmark] = ACTIONS(162),
- [sym_html_comment] = ACTIONS(5),
- },
- [1110] = {
- [sym_nested_identifier] = STATE(1486),
- [sym_string] = STATE(1513),
- [sym__module] = STATE(1710),
- [sym_identifier] = ACTIONS(3343),
- [anon_sym_STAR] = ACTIONS(122),
- [anon_sym_EQ] = ACTIONS(841),
- [anon_sym_as] = ACTIONS(122),
- [anon_sym_COMMA] = ACTIONS(847),
- [anon_sym_RBRACE] = ACTIONS(847),
- [anon_sym_BANG] = ACTIONS(122),
- [anon_sym_LPAREN] = ACTIONS(162),
- [anon_sym_RPAREN] = ACTIONS(847),
- [anon_sym_in] = ACTIONS(122),
- [anon_sym_COLON] = ACTIONS(847),
- [anon_sym_LBRACK] = ACTIONS(162),
- [anon_sym_RBRACK] = ACTIONS(847),
- [anon_sym_GT] = ACTIONS(122),
- [anon_sym_DOT] = ACTIONS(162),
- [anon_sym_DQUOTE] = ACTIONS(150),
- [anon_sym_SQUOTE] = ACTIONS(152),
- [anon_sym_EQ_GT] = ACTIONS(229),
- [anon_sym_QMARK_DOT] = ACTIONS(162),
- [anon_sym_PLUS_EQ] = ACTIONS(168),
- [anon_sym_DASH_EQ] = ACTIONS(168),
- [anon_sym_STAR_EQ] = ACTIONS(168),
- [anon_sym_SLASH_EQ] = ACTIONS(168),
- [anon_sym_PERCENT_EQ] = ACTIONS(168),
- [anon_sym_CARET_EQ] = ACTIONS(168),
- [anon_sym_AMP_EQ] = ACTIONS(168),
- [anon_sym_PIPE_EQ] = ACTIONS(168),
- [anon_sym_GT_GT_EQ] = ACTIONS(168),
- [anon_sym_GT_GT_GT_EQ] = ACTIONS(168),
- [anon_sym_LT_LT_EQ] = ACTIONS(168),
- [anon_sym_STAR_STAR_EQ] = ACTIONS(168),
- [anon_sym_AMP_AMP_EQ] = ACTIONS(168),
- [anon_sym_PIPE_PIPE_EQ] = ACTIONS(168),
- [anon_sym_QMARK_QMARK_EQ] = ACTIONS(168),
- [anon_sym_AMP_AMP] = ACTIONS(122),
- [anon_sym_PIPE_PIPE] = ACTIONS(122),
- [anon_sym_GT_GT] = ACTIONS(122),
- [anon_sym_GT_GT_GT] = ACTIONS(122),
- [anon_sym_LT_LT] = ACTIONS(122),
- [anon_sym_AMP] = ACTIONS(122),
- [anon_sym_CARET] = ACTIONS(122),
- [anon_sym_PIPE] = ACTIONS(122),
- [anon_sym_PLUS] = ACTIONS(122),
- [anon_sym_DASH] = ACTIONS(122),
- [anon_sym_SLASH] = ACTIONS(122),
- [anon_sym_PERCENT] = ACTIONS(122),
- [anon_sym_STAR_STAR] = ACTIONS(122),
- [anon_sym_LT] = ACTIONS(122),
- [anon_sym_LT_EQ] = ACTIONS(162),
- [anon_sym_EQ_EQ] = ACTIONS(122),
- [anon_sym_EQ_EQ_EQ] = ACTIONS(162),
- [anon_sym_BANG_EQ] = ACTIONS(122),
- [anon_sym_BANG_EQ_EQ] = ACTIONS(162),
- [anon_sym_GT_EQ] = ACTIONS(162),
- [anon_sym_QMARK_QMARK] = ACTIONS(122),
- [anon_sym_instanceof] = ACTIONS(122),
- [anon_sym_PLUS_PLUS] = ACTIONS(162),
- [anon_sym_DASH_DASH] = ACTIONS(162),
- [sym_comment] = ACTIONS(5),
- [anon_sym_BQUOTE] = ACTIONS(162),
- [anon_sym_QMARK] = ACTIONS(855),
- [anon_sym_satisfies] = ACTIONS(122),
- [sym__ternary_qmark] = ACTIONS(162),
- [sym_html_comment] = ACTIONS(5),
- },
- [1111] = {
- [sym_nested_identifier] = STATE(1486),
- [sym_string] = STATE(1513),
- [sym__module] = STATE(1710),
- [sym_identifier] = ACTIONS(3343),
- [anon_sym_STAR] = ACTIONS(122),
- [anon_sym_EQ] = ACTIONS(224),
- [anon_sym_as] = ACTIONS(122),
- [anon_sym_COMMA] = ACTIONS(227),
- [anon_sym_RBRACE] = ACTIONS(227),
- [anon_sym_BANG] = ACTIONS(122),
- [anon_sym_LPAREN] = ACTIONS(162),
- [anon_sym_RPAREN] = ACTIONS(227),
- [anon_sym_in] = ACTIONS(122),
- [anon_sym_COLON] = ACTIONS(227),
- [anon_sym_LBRACK] = ACTIONS(162),
- [anon_sym_RBRACK] = ACTIONS(227),
- [anon_sym_GT] = ACTIONS(122),
- [anon_sym_DOT] = ACTIONS(162),
- [anon_sym_DQUOTE] = ACTIONS(150),
- [anon_sym_SQUOTE] = ACTIONS(152),
- [anon_sym_EQ_GT] = ACTIONS(229),
- [anon_sym_QMARK_DOT] = ACTIONS(162),
- [anon_sym_PLUS_EQ] = ACTIONS(168),
- [anon_sym_DASH_EQ] = ACTIONS(168),
- [anon_sym_STAR_EQ] = ACTIONS(168),
- [anon_sym_SLASH_EQ] = ACTIONS(168),
- [anon_sym_PERCENT_EQ] = ACTIONS(168),
- [anon_sym_CARET_EQ] = ACTIONS(168),
- [anon_sym_AMP_EQ] = ACTIONS(168),
- [anon_sym_PIPE_EQ] = ACTIONS(168),
- [anon_sym_GT_GT_EQ] = ACTIONS(168),
- [anon_sym_GT_GT_GT_EQ] = ACTIONS(168),
- [anon_sym_LT_LT_EQ] = ACTIONS(168),
- [anon_sym_STAR_STAR_EQ] = ACTIONS(168),
- [anon_sym_AMP_AMP_EQ] = ACTIONS(168),
- [anon_sym_PIPE_PIPE_EQ] = ACTIONS(168),
- [anon_sym_QMARK_QMARK_EQ] = ACTIONS(168),
- [anon_sym_AMP_AMP] = ACTIONS(122),
- [anon_sym_PIPE_PIPE] = ACTIONS(122),
- [anon_sym_GT_GT] = ACTIONS(122),
- [anon_sym_GT_GT_GT] = ACTIONS(122),
- [anon_sym_LT_LT] = ACTIONS(122),
- [anon_sym_AMP] = ACTIONS(122),
- [anon_sym_CARET] = ACTIONS(122),
- [anon_sym_PIPE] = ACTIONS(122),
- [anon_sym_PLUS] = ACTIONS(122),
- [anon_sym_DASH] = ACTIONS(122),
- [anon_sym_SLASH] = ACTIONS(122),
- [anon_sym_PERCENT] = ACTIONS(122),
- [anon_sym_STAR_STAR] = ACTIONS(122),
- [anon_sym_LT] = ACTIONS(122),
- [anon_sym_LT_EQ] = ACTIONS(162),
- [anon_sym_EQ_EQ] = ACTIONS(122),
- [anon_sym_EQ_EQ_EQ] = ACTIONS(162),
- [anon_sym_BANG_EQ] = ACTIONS(122),
- [anon_sym_BANG_EQ_EQ] = ACTIONS(162),
- [anon_sym_GT_EQ] = ACTIONS(162),
- [anon_sym_QMARK_QMARK] = ACTIONS(122),
- [anon_sym_instanceof] = ACTIONS(122),
- [anon_sym_PLUS_PLUS] = ACTIONS(162),
- [anon_sym_DASH_DASH] = ACTIONS(162),
- [sym_comment] = ACTIONS(5),
- [anon_sym_BQUOTE] = ACTIONS(162),
- [anon_sym_QMARK] = ACTIONS(793),
- [anon_sym_satisfies] = ACTIONS(122),
- [sym__ternary_qmark] = ACTIONS(162),
- [sym_html_comment] = ACTIONS(5),
- },
- [1112] = {
- [sym_export_statement] = STATE(3786),
- [sym_object_pattern] = STATE(5760),
- [sym_object_assignment_pattern] = STATE(5227),
- [sym_array_pattern] = STATE(5760),
- [sym__call_signature] = STATE(4329),
- [sym__destructuring_pattern] = STATE(5760),
- [sym_spread_element] = STATE(5214),
- [sym_string] = STATE(3049),
- [sym_decorator] = STATE(1244),
- [sym_formal_parameters] = STATE(3229),
- [sym_rest_pattern] = STATE(5227),
- [sym_method_definition] = STATE(5214),
- [sym_pair] = STATE(5214),
- [sym_pair_pattern] = STATE(5227),
- [sym__property_name] = STATE(3049),
- [sym_computed_property_name] = STATE(3049),
- [sym_method_signature] = STATE(3786),
- [sym_accessibility_modifier] = STATE(2687),
- [sym_override_modifier] = STATE(2717),
- [sym_call_signature] = STATE(3786),
- [sym_property_signature] = STATE(3786),
- [sym_type_parameters] = STATE(5404),
- [sym_construct_signature] = STATE(3786),
- [sym_index_signature] = STATE(3786),
- [aux_sym_export_statement_repeat1] = STATE(4448),
- [sym_identifier] = ACTIONS(3345),
- [anon_sym_export] = ACTIONS(3347),
- [anon_sym_STAR] = ACTIONS(3197),
- [anon_sym_type] = ACTIONS(3345),
- [anon_sym_namespace] = ACTIONS(3345),
- [anon_sym_LBRACE] = ACTIONS(3199),
- [anon_sym_COMMA] = ACTIONS(3349),
- [anon_sym_RBRACE] = ACTIONS(3349),
- [anon_sym_let] = ACTIONS(3345),
- [anon_sym_LPAREN] = ACTIONS(3205),
- [anon_sym_LBRACK] = ACTIONS(3209),
- [anon_sym_DQUOTE] = ACTIONS(1594),
- [anon_sym_SQUOTE] = ACTIONS(1596),
- [anon_sym_async] = ACTIONS(3352),
- [anon_sym_new] = ACTIONS(3354),
- [anon_sym_DOT_DOT_DOT] = ACTIONS(253),
- [anon_sym_PLUS] = ACTIONS(3215),
- [anon_sym_DASH] = ACTIONS(3215),
- [anon_sym_LT] = ACTIONS(2581),
- [sym_comment] = ACTIONS(5),
- [sym_number] = ACTIONS(3217),
- [sym_private_property_identifier] = ACTIONS(3217),
- [anon_sym_AT] = ACTIONS(99),
- [anon_sym_static] = ACTIONS(3356),
- [anon_sym_readonly] = ACTIONS(3358),
- [anon_sym_get] = ACTIONS(3360),
- [anon_sym_set] = ACTIONS(3360),
- [anon_sym_declare] = ACTIONS(3345),
- [anon_sym_public] = ACTIONS(3362),
- [anon_sym_private] = ACTIONS(3362),
- [anon_sym_protected] = ACTIONS(3362),
- [anon_sym_override] = ACTIONS(3364),
- [anon_sym_module] = ACTIONS(3345),
- [anon_sym_any] = ACTIONS(3345),
- [anon_sym_number] = ACTIONS(3345),
- [anon_sym_boolean] = ACTIONS(3345),
- [anon_sym_string] = ACTIONS(3345),
- [anon_sym_symbol] = ACTIONS(3345),
- [anon_sym_object] = ACTIONS(3345),
- [anon_sym_abstract] = ACTIONS(3229),
- [sym_html_comment] = ACTIONS(5),
- },
- [1113] = {
- [sym_nested_identifier] = STATE(1486),
- [sym_string] = STATE(1513),
- [sym__module] = STATE(1710),
- [sym_identifier] = ACTIONS(3343),
- [anon_sym_STAR] = ACTIONS(122),
- [anon_sym_EQ] = ACTIONS(841),
- [anon_sym_as] = ACTIONS(122),
- [anon_sym_COMMA] = ACTIONS(162),
- [anon_sym_RBRACE] = ACTIONS(162),
- [anon_sym_BANG] = ACTIONS(122),
- [anon_sym_LPAREN] = ACTIONS(162),
- [anon_sym_RPAREN] = ACTIONS(162),
- [anon_sym_in] = ACTIONS(122),
- [anon_sym_COLON] = ACTIONS(162),
- [anon_sym_LBRACK] = ACTIONS(162),
- [anon_sym_RBRACK] = ACTIONS(162),
- [anon_sym_GT] = ACTIONS(122),
- [anon_sym_DOT] = ACTIONS(162),
- [anon_sym_DQUOTE] = ACTIONS(150),
- [anon_sym_SQUOTE] = ACTIONS(152),
- [anon_sym_EQ_GT] = ACTIONS(160),
- [anon_sym_QMARK_DOT] = ACTIONS(162),
- [anon_sym_PLUS_EQ] = ACTIONS(168),
- [anon_sym_DASH_EQ] = ACTIONS(168),
- [anon_sym_STAR_EQ] = ACTIONS(168),
- [anon_sym_SLASH_EQ] = ACTIONS(168),
- [anon_sym_PERCENT_EQ] = ACTIONS(168),
- [anon_sym_CARET_EQ] = ACTIONS(168),
- [anon_sym_AMP_EQ] = ACTIONS(168),
- [anon_sym_PIPE_EQ] = ACTIONS(168),
- [anon_sym_GT_GT_EQ] = ACTIONS(168),
- [anon_sym_GT_GT_GT_EQ] = ACTIONS(168),
- [anon_sym_LT_LT_EQ] = ACTIONS(168),
- [anon_sym_STAR_STAR_EQ] = ACTIONS(168),
- [anon_sym_AMP_AMP_EQ] = ACTIONS(168),
- [anon_sym_PIPE_PIPE_EQ] = ACTIONS(168),
- [anon_sym_QMARK_QMARK_EQ] = ACTIONS(168),
- [anon_sym_AMP_AMP] = ACTIONS(122),
- [anon_sym_PIPE_PIPE] = ACTIONS(122),
- [anon_sym_GT_GT] = ACTIONS(122),
- [anon_sym_GT_GT_GT] = ACTIONS(122),
- [anon_sym_LT_LT] = ACTIONS(122),
- [anon_sym_AMP] = ACTIONS(122),
- [anon_sym_CARET] = ACTIONS(122),
- [anon_sym_PIPE] = ACTIONS(122),
- [anon_sym_PLUS] = ACTIONS(122),
- [anon_sym_DASH] = ACTIONS(122),
- [anon_sym_SLASH] = ACTIONS(122),
- [anon_sym_PERCENT] = ACTIONS(122),
- [anon_sym_STAR_STAR] = ACTIONS(122),
- [anon_sym_LT] = ACTIONS(122),
- [anon_sym_LT_EQ] = ACTIONS(162),
- [anon_sym_EQ_EQ] = ACTIONS(122),
- [anon_sym_EQ_EQ_EQ] = ACTIONS(162),
- [anon_sym_BANG_EQ] = ACTIONS(122),
- [anon_sym_BANG_EQ_EQ] = ACTIONS(162),
- [anon_sym_GT_EQ] = ACTIONS(162),
- [anon_sym_QMARK_QMARK] = ACTIONS(122),
- [anon_sym_instanceof] = ACTIONS(122),
- [anon_sym_PLUS_PLUS] = ACTIONS(162),
- [anon_sym_DASH_DASH] = ACTIONS(162),
- [sym_comment] = ACTIONS(5),
- [anon_sym_BQUOTE] = ACTIONS(162),
- [anon_sym_satisfies] = ACTIONS(122),
- [sym__ternary_qmark] = ACTIONS(162),
- [sym_html_comment] = ACTIONS(5),
- },
- [1114] = {
- [sym_nested_identifier] = STATE(1486),
- [sym_string] = STATE(1513),
- [sym__module] = STATE(1710),
- [sym_identifier] = ACTIONS(3343),
- [anon_sym_STAR] = ACTIONS(122),
- [anon_sym_EQ] = ACTIONS(857),
- [anon_sym_as] = ACTIONS(122),
- [anon_sym_COMMA] = ACTIONS(162),
- [anon_sym_RBRACE] = ACTIONS(162),
- [anon_sym_BANG] = ACTIONS(122),
- [anon_sym_LPAREN] = ACTIONS(162),
- [anon_sym_RPAREN] = ACTIONS(162),
- [anon_sym_in] = ACTIONS(122),
- [anon_sym_COLON] = ACTIONS(162),
- [anon_sym_LBRACK] = ACTIONS(162),
- [anon_sym_RBRACK] = ACTIONS(162),
- [anon_sym_GT] = ACTIONS(122),
- [anon_sym_DOT] = ACTIONS(162),
- [anon_sym_DQUOTE] = ACTIONS(150),
- [anon_sym_SQUOTE] = ACTIONS(152),
- [anon_sym_EQ_GT] = ACTIONS(160),
- [anon_sym_QMARK_DOT] = ACTIONS(162),
- [anon_sym_PLUS_EQ] = ACTIONS(168),
- [anon_sym_DASH_EQ] = ACTIONS(168),
- [anon_sym_STAR_EQ] = ACTIONS(168),
- [anon_sym_SLASH_EQ] = ACTIONS(168),
- [anon_sym_PERCENT_EQ] = ACTIONS(168),
- [anon_sym_CARET_EQ] = ACTIONS(168),
- [anon_sym_AMP_EQ] = ACTIONS(168),
- [anon_sym_PIPE_EQ] = ACTIONS(168),
- [anon_sym_GT_GT_EQ] = ACTIONS(168),
- [anon_sym_GT_GT_GT_EQ] = ACTIONS(168),
- [anon_sym_LT_LT_EQ] = ACTIONS(168),
- [anon_sym_STAR_STAR_EQ] = ACTIONS(168),
- [anon_sym_AMP_AMP_EQ] = ACTIONS(168),
- [anon_sym_PIPE_PIPE_EQ] = ACTIONS(168),
- [anon_sym_QMARK_QMARK_EQ] = ACTIONS(168),
- [anon_sym_AMP_AMP] = ACTIONS(122),
- [anon_sym_PIPE_PIPE] = ACTIONS(122),
- [anon_sym_GT_GT] = ACTIONS(122),
- [anon_sym_GT_GT_GT] = ACTIONS(122),
- [anon_sym_LT_LT] = ACTIONS(122),
- [anon_sym_AMP] = ACTIONS(122),
- [anon_sym_CARET] = ACTIONS(122),
- [anon_sym_PIPE] = ACTIONS(122),
- [anon_sym_PLUS] = ACTIONS(122),
- [anon_sym_DASH] = ACTIONS(122),
- [anon_sym_SLASH] = ACTIONS(122),
- [anon_sym_PERCENT] = ACTIONS(122),
- [anon_sym_STAR_STAR] = ACTIONS(122),
- [anon_sym_LT] = ACTIONS(122),
- [anon_sym_LT_EQ] = ACTIONS(162),
- [anon_sym_EQ_EQ] = ACTIONS(122),
- [anon_sym_EQ_EQ_EQ] = ACTIONS(162),
- [anon_sym_BANG_EQ] = ACTIONS(122),
- [anon_sym_BANG_EQ_EQ] = ACTIONS(162),
- [anon_sym_GT_EQ] = ACTIONS(162),
- [anon_sym_QMARK_QMARK] = ACTIONS(122),
- [anon_sym_instanceof] = ACTIONS(122),
- [anon_sym_PLUS_PLUS] = ACTIONS(162),
- [anon_sym_DASH_DASH] = ACTIONS(162),
- [sym_comment] = ACTIONS(5),
- [anon_sym_BQUOTE] = ACTIONS(162),
- [anon_sym_satisfies] = ACTIONS(122),
- [sym__ternary_qmark] = ACTIONS(162),
- [sym_html_comment] = ACTIONS(5),
- },
- [1115] = {
- [sym_export_statement] = STATE(3736),
- [sym_object_pattern] = STATE(5760),
- [sym_object_assignment_pattern] = STATE(5227),
- [sym_array_pattern] = STATE(5760),
- [sym__call_signature] = STATE(4329),
- [sym__destructuring_pattern] = STATE(5760),
- [sym_spread_element] = STATE(5214),
- [sym_string] = STATE(3049),
- [sym_decorator] = STATE(1244),
- [sym_formal_parameters] = STATE(3229),
- [sym_rest_pattern] = STATE(5227),
- [sym_method_definition] = STATE(5214),
- [sym_pair] = STATE(5214),
- [sym_pair_pattern] = STATE(5227),
- [sym__property_name] = STATE(3049),
- [sym_computed_property_name] = STATE(3049),
- [sym_method_signature] = STATE(3736),
- [sym_accessibility_modifier] = STATE(2687),
- [sym_override_modifier] = STATE(2717),
- [sym_call_signature] = STATE(3736),
- [sym_property_signature] = STATE(3736),
- [sym_type_parameters] = STATE(5404),
- [sym_construct_signature] = STATE(3736),
- [sym_index_signature] = STATE(3736),
- [aux_sym_export_statement_repeat1] = STATE(4448),
- [sym_identifier] = ACTIONS(3345),
- [anon_sym_export] = ACTIONS(3347),
- [anon_sym_STAR] = ACTIONS(3197),
- [anon_sym_type] = ACTIONS(3345),
- [anon_sym_namespace] = ACTIONS(3345),
- [anon_sym_LBRACE] = ACTIONS(3199),
- [anon_sym_COMMA] = ACTIONS(3349),
- [anon_sym_RBRACE] = ACTIONS(3349),
- [anon_sym_let] = ACTIONS(3345),
- [anon_sym_LPAREN] = ACTIONS(3205),
- [anon_sym_LBRACK] = ACTIONS(3209),
- [anon_sym_DQUOTE] = ACTIONS(1594),
- [anon_sym_SQUOTE] = ACTIONS(1596),
- [anon_sym_async] = ACTIONS(3352),
- [anon_sym_new] = ACTIONS(3354),
- [anon_sym_DOT_DOT_DOT] = ACTIONS(253),
- [anon_sym_PLUS] = ACTIONS(3215),
- [anon_sym_DASH] = ACTIONS(3215),
- [anon_sym_LT] = ACTIONS(2581),
- [sym_comment] = ACTIONS(5),
- [sym_number] = ACTIONS(3217),
- [sym_private_property_identifier] = ACTIONS(3217),
- [anon_sym_AT] = ACTIONS(99),
- [anon_sym_static] = ACTIONS(3356),
- [anon_sym_readonly] = ACTIONS(3358),
- [anon_sym_get] = ACTIONS(3360),
- [anon_sym_set] = ACTIONS(3360),
- [anon_sym_declare] = ACTIONS(3345),
- [anon_sym_public] = ACTIONS(3362),
- [anon_sym_private] = ACTIONS(3362),
- [anon_sym_protected] = ACTIONS(3362),
- [anon_sym_override] = ACTIONS(3364),
- [anon_sym_module] = ACTIONS(3345),
- [anon_sym_any] = ACTIONS(3345),
- [anon_sym_number] = ACTIONS(3345),
- [anon_sym_boolean] = ACTIONS(3345),
- [anon_sym_string] = ACTIONS(3345),
- [anon_sym_symbol] = ACTIONS(3345),
- [anon_sym_object] = ACTIONS(3345),
- [anon_sym_abstract] = ACTIONS(3229),
- [sym_html_comment] = ACTIONS(5),
- },
- [1116] = {
- [sym_nested_identifier] = STATE(1444),
- [sym_string] = STATE(1452),
- [sym__module] = STATE(1765),
- [sym_identifier] = ACTIONS(3366),
- [anon_sym_STAR] = ACTIONS(122),
- [anon_sym_EQ] = ACTIONS(872),
- [anon_sym_as] = ACTIONS(122),
- [anon_sym_COMMA] = ACTIONS(162),
- [anon_sym_BANG] = ACTIONS(122),
- [anon_sym_LPAREN] = ACTIONS(162),
- [anon_sym_in] = ACTIONS(122),
- [anon_sym_of] = ACTIONS(122),
- [anon_sym_SEMI] = ACTIONS(162),
- [anon_sym_LBRACK] = ACTIONS(162),
- [anon_sym_GT] = ACTIONS(122),
- [anon_sym_DOT] = ACTIONS(162),
- [anon_sym_DQUOTE] = ACTIONS(69),
- [anon_sym_SQUOTE] = ACTIONS(71),
- [anon_sym_EQ_GT] = ACTIONS(878),
- [anon_sym_QMARK_DOT] = ACTIONS(162),
- [anon_sym_PLUS_EQ] = ACTIONS(168),
- [anon_sym_DASH_EQ] = ACTIONS(168),
- [anon_sym_STAR_EQ] = ACTIONS(168),
- [anon_sym_SLASH_EQ] = ACTIONS(168),
- [anon_sym_PERCENT_EQ] = ACTIONS(168),
- [anon_sym_CARET_EQ] = ACTIONS(168),
- [anon_sym_AMP_EQ] = ACTIONS(168),
- [anon_sym_PIPE_EQ] = ACTIONS(168),
- [anon_sym_GT_GT_EQ] = ACTIONS(168),
- [anon_sym_GT_GT_GT_EQ] = ACTIONS(168),
- [anon_sym_LT_LT_EQ] = ACTIONS(168),
- [anon_sym_STAR_STAR_EQ] = ACTIONS(168),
- [anon_sym_AMP_AMP_EQ] = ACTIONS(168),
- [anon_sym_PIPE_PIPE_EQ] = ACTIONS(168),
- [anon_sym_QMARK_QMARK_EQ] = ACTIONS(168),
- [anon_sym_AMP_AMP] = ACTIONS(122),
- [anon_sym_PIPE_PIPE] = ACTIONS(122),
- [anon_sym_GT_GT] = ACTIONS(122),
- [anon_sym_GT_GT_GT] = ACTIONS(122),
- [anon_sym_LT_LT] = ACTIONS(122),
- [anon_sym_AMP] = ACTIONS(122),
- [anon_sym_CARET] = ACTIONS(122),
- [anon_sym_PIPE] = ACTIONS(122),
- [anon_sym_PLUS] = ACTIONS(122),
- [anon_sym_DASH] = ACTIONS(122),
- [anon_sym_SLASH] = ACTIONS(122),
- [anon_sym_PERCENT] = ACTIONS(122),
- [anon_sym_STAR_STAR] = ACTIONS(122),
- [anon_sym_LT] = ACTIONS(122),
- [anon_sym_LT_EQ] = ACTIONS(162),
- [anon_sym_EQ_EQ] = ACTIONS(122),
- [anon_sym_EQ_EQ_EQ] = ACTIONS(162),
- [anon_sym_BANG_EQ] = ACTIONS(122),
- [anon_sym_BANG_EQ_EQ] = ACTIONS(162),
- [anon_sym_GT_EQ] = ACTIONS(162),
- [anon_sym_QMARK_QMARK] = ACTIONS(122),
- [anon_sym_instanceof] = ACTIONS(122),
- [anon_sym_PLUS_PLUS] = ACTIONS(162),
- [anon_sym_DASH_DASH] = ACTIONS(162),
- [sym_comment] = ACTIONS(5),
- [anon_sym_BQUOTE] = ACTIONS(162),
- [anon_sym_satisfies] = ACTIONS(122),
- [sym__automatic_semicolon] = ACTIONS(162),
- [sym__ternary_qmark] = ACTIONS(162),
- [sym_html_comment] = ACTIONS(5),
- },
- [1117] = {
- [sym_nested_identifier] = STATE(4429),
- [sym_string] = STATE(741),
- [sym__module] = STATE(825),
- [sym_identifier] = ACTIONS(3368),
- [anon_sym_STAR] = ACTIONS(122),
- [anon_sym_EQ] = ACTIONS(859),
- [anon_sym_as] = ACTIONS(122),
- [anon_sym_COMMA] = ACTIONS(162),
- [anon_sym_BANG] = ACTIONS(122),
- [anon_sym_LPAREN] = ACTIONS(162),
- [anon_sym_in] = ACTIONS(122),
- [anon_sym_SEMI] = ACTIONS(162),
- [anon_sym_COLON] = ACTIONS(866),
- [anon_sym_LBRACK] = ACTIONS(162),
- [anon_sym_GT] = ACTIONS(122),
- [anon_sym_DOT] = ACTIONS(162),
- [anon_sym_DQUOTE] = ACTIONS(1506),
- [anon_sym_SQUOTE] = ACTIONS(1508),
- [anon_sym_EQ_GT] = ACTIONS(715),
- [anon_sym_QMARK_DOT] = ACTIONS(162),
- [anon_sym_PLUS_EQ] = ACTIONS(168),
- [anon_sym_DASH_EQ] = ACTIONS(168),
- [anon_sym_STAR_EQ] = ACTIONS(168),
- [anon_sym_SLASH_EQ] = ACTIONS(168),
- [anon_sym_PERCENT_EQ] = ACTIONS(168),
- [anon_sym_CARET_EQ] = ACTIONS(168),
- [anon_sym_AMP_EQ] = ACTIONS(168),
- [anon_sym_PIPE_EQ] = ACTIONS(168),
- [anon_sym_GT_GT_EQ] = ACTIONS(168),
- [anon_sym_GT_GT_GT_EQ] = ACTIONS(168),
- [anon_sym_LT_LT_EQ] = ACTIONS(168),
- [anon_sym_STAR_STAR_EQ] = ACTIONS(168),
- [anon_sym_AMP_AMP_EQ] = ACTIONS(168),
- [anon_sym_PIPE_PIPE_EQ] = ACTIONS(168),
- [anon_sym_QMARK_QMARK_EQ] = ACTIONS(168),
- [anon_sym_AMP_AMP] = ACTIONS(122),
- [anon_sym_PIPE_PIPE] = ACTIONS(122),
- [anon_sym_GT_GT] = ACTIONS(122),
- [anon_sym_GT_GT_GT] = ACTIONS(122),
- [anon_sym_LT_LT] = ACTIONS(122),
- [anon_sym_AMP] = ACTIONS(122),
- [anon_sym_CARET] = ACTIONS(122),
- [anon_sym_PIPE] = ACTIONS(122),
- [anon_sym_PLUS] = ACTIONS(122),
- [anon_sym_DASH] = ACTIONS(122),
- [anon_sym_SLASH] = ACTIONS(122),
- [anon_sym_PERCENT] = ACTIONS(122),
- [anon_sym_STAR_STAR] = ACTIONS(122),
- [anon_sym_LT] = ACTIONS(122),
- [anon_sym_LT_EQ] = ACTIONS(162),
- [anon_sym_EQ_EQ] = ACTIONS(122),
- [anon_sym_EQ_EQ_EQ] = ACTIONS(162),
- [anon_sym_BANG_EQ] = ACTIONS(122),
- [anon_sym_BANG_EQ_EQ] = ACTIONS(162),
- [anon_sym_GT_EQ] = ACTIONS(162),
- [anon_sym_QMARK_QMARK] = ACTIONS(122),
- [anon_sym_instanceof] = ACTIONS(122),
- [anon_sym_PLUS_PLUS] = ACTIONS(162),
- [anon_sym_DASH_DASH] = ACTIONS(162),
- [sym_comment] = ACTIONS(5),
- [anon_sym_BQUOTE] = ACTIONS(162),
- [anon_sym_satisfies] = ACTIONS(122),
- [sym__automatic_semicolon] = ACTIONS(162),
- [sym__ternary_qmark] = ACTIONS(162),
- [sym_html_comment] = ACTIONS(5),
- },
- [1118] = {
- [sym_nested_identifier] = STATE(1486),
- [sym_string] = STATE(1513),
- [sym__module] = STATE(1710),
- [sym_identifier] = ACTIONS(3343),
- [anon_sym_STAR] = ACTIONS(122),
- [anon_sym_EQ] = ACTIONS(857),
- [anon_sym_as] = ACTIONS(122),
- [anon_sym_COMMA] = ACTIONS(888),
- [anon_sym_RBRACE] = ACTIONS(888),
- [anon_sym_BANG] = ACTIONS(122),
- [anon_sym_LPAREN] = ACTIONS(162),
- [anon_sym_in] = ACTIONS(122),
- [anon_sym_COLON] = ACTIONS(847),
- [anon_sym_LBRACK] = ACTIONS(162),
- [anon_sym_RBRACK] = ACTIONS(888),
- [anon_sym_GT] = ACTIONS(122),
- [anon_sym_DOT] = ACTIONS(162),
- [anon_sym_DQUOTE] = ACTIONS(150),
- [anon_sym_SQUOTE] = ACTIONS(152),
- [anon_sym_EQ_GT] = ACTIONS(160),
- [anon_sym_QMARK_DOT] = ACTIONS(162),
- [anon_sym_PLUS_EQ] = ACTIONS(168),
- [anon_sym_DASH_EQ] = ACTIONS(168),
- [anon_sym_STAR_EQ] = ACTIONS(168),
- [anon_sym_SLASH_EQ] = ACTIONS(168),
- [anon_sym_PERCENT_EQ] = ACTIONS(168),
- [anon_sym_CARET_EQ] = ACTIONS(168),
- [anon_sym_AMP_EQ] = ACTIONS(168),
- [anon_sym_PIPE_EQ] = ACTIONS(168),
- [anon_sym_GT_GT_EQ] = ACTIONS(168),
- [anon_sym_GT_GT_GT_EQ] = ACTIONS(168),
- [anon_sym_LT_LT_EQ] = ACTIONS(168),
- [anon_sym_STAR_STAR_EQ] = ACTIONS(168),
- [anon_sym_AMP_AMP_EQ] = ACTIONS(168),
- [anon_sym_PIPE_PIPE_EQ] = ACTIONS(168),
- [anon_sym_QMARK_QMARK_EQ] = ACTIONS(168),
- [anon_sym_AMP_AMP] = ACTIONS(122),
- [anon_sym_PIPE_PIPE] = ACTIONS(122),
- [anon_sym_GT_GT] = ACTIONS(122),
- [anon_sym_GT_GT_GT] = ACTIONS(122),
- [anon_sym_LT_LT] = ACTIONS(122),
- [anon_sym_AMP] = ACTIONS(122),
- [anon_sym_CARET] = ACTIONS(122),
- [anon_sym_PIPE] = ACTIONS(122),
- [anon_sym_PLUS] = ACTIONS(122),
- [anon_sym_DASH] = ACTIONS(122),
- [anon_sym_SLASH] = ACTIONS(122),
- [anon_sym_PERCENT] = ACTIONS(122),
- [anon_sym_STAR_STAR] = ACTIONS(122),
- [anon_sym_LT] = ACTIONS(122),
- [anon_sym_LT_EQ] = ACTIONS(162),
- [anon_sym_EQ_EQ] = ACTIONS(122),
- [anon_sym_EQ_EQ_EQ] = ACTIONS(162),
- [anon_sym_BANG_EQ] = ACTIONS(122),
- [anon_sym_BANG_EQ_EQ] = ACTIONS(162),
- [anon_sym_GT_EQ] = ACTIONS(162),
- [anon_sym_QMARK_QMARK] = ACTIONS(122),
- [anon_sym_instanceof] = ACTIONS(122),
- [anon_sym_PLUS_PLUS] = ACTIONS(162),
- [anon_sym_DASH_DASH] = ACTIONS(162),
- [sym_comment] = ACTIONS(5),
- [anon_sym_BQUOTE] = ACTIONS(162),
- [anon_sym_satisfies] = ACTIONS(122),
- [sym__ternary_qmark] = ACTIONS(162),
- [sym_html_comment] = ACTIONS(5),
- },
- [1119] = {
- [sym_variable_declarator] = STATE(4506),
- [sym_object_pattern] = STATE(3442),
- [sym_array_pattern] = STATE(3442),
- [sym__destructuring_pattern] = STATE(3442),
- [sym_identifier] = ACTIONS(3370),
- [anon_sym_STAR] = ACTIONS(122),
- [anon_sym_EQ] = ACTIONS(859),
- [anon_sym_as] = ACTIONS(122),
- [anon_sym_LBRACE] = ACTIONS(3337),
- [anon_sym_COMMA] = ACTIONS(162),
- [anon_sym_BANG] = ACTIONS(122),
- [anon_sym_LPAREN] = ACTIONS(162),
- [anon_sym_in] = ACTIONS(861),
- [anon_sym_of] = ACTIONS(864),
- [anon_sym_SEMI] = ACTIONS(162),
- [anon_sym_LBRACK] = ACTIONS(3339),
- [anon_sym_GT] = ACTIONS(122),
- [anon_sym_DOT] = ACTIONS(162),
- [anon_sym_EQ_GT] = ACTIONS(715),
- [anon_sym_QMARK_DOT] = ACTIONS(162),
- [anon_sym_PLUS_EQ] = ACTIONS(168),
- [anon_sym_DASH_EQ] = ACTIONS(168),
- [anon_sym_STAR_EQ] = ACTIONS(168),
- [anon_sym_SLASH_EQ] = ACTIONS(168),
- [anon_sym_PERCENT_EQ] = ACTIONS(168),
- [anon_sym_CARET_EQ] = ACTIONS(168),
- [anon_sym_AMP_EQ] = ACTIONS(168),
- [anon_sym_PIPE_EQ] = ACTIONS(168),
- [anon_sym_GT_GT_EQ] = ACTIONS(168),
- [anon_sym_GT_GT_GT_EQ] = ACTIONS(168),
- [anon_sym_LT_LT_EQ] = ACTIONS(168),
- [anon_sym_STAR_STAR_EQ] = ACTIONS(168),
- [anon_sym_AMP_AMP_EQ] = ACTIONS(168),
- [anon_sym_PIPE_PIPE_EQ] = ACTIONS(168),
- [anon_sym_QMARK_QMARK_EQ] = ACTIONS(168),
- [anon_sym_AMP_AMP] = ACTIONS(122),
- [anon_sym_PIPE_PIPE] = ACTIONS(122),
- [anon_sym_GT_GT] = ACTIONS(122),
- [anon_sym_GT_GT_GT] = ACTIONS(122),
- [anon_sym_LT_LT] = ACTIONS(122),
- [anon_sym_AMP] = ACTIONS(122),
- [anon_sym_CARET] = ACTIONS(122),
- [anon_sym_PIPE] = ACTIONS(122),
- [anon_sym_PLUS] = ACTIONS(122),
- [anon_sym_DASH] = ACTIONS(122),
- [anon_sym_SLASH] = ACTIONS(122),
- [anon_sym_PERCENT] = ACTIONS(122),
- [anon_sym_STAR_STAR] = ACTIONS(122),
- [anon_sym_LT] = ACTIONS(122),
- [anon_sym_LT_EQ] = ACTIONS(162),
- [anon_sym_EQ_EQ] = ACTIONS(122),
- [anon_sym_EQ_EQ_EQ] = ACTIONS(162),
- [anon_sym_BANG_EQ] = ACTIONS(122),
- [anon_sym_BANG_EQ_EQ] = ACTIONS(162),
- [anon_sym_GT_EQ] = ACTIONS(162),
- [anon_sym_QMARK_QMARK] = ACTIONS(122),
- [anon_sym_instanceof] = ACTIONS(122),
- [anon_sym_PLUS_PLUS] = ACTIONS(162),
- [anon_sym_DASH_DASH] = ACTIONS(162),
- [sym_comment] = ACTIONS(5),
- [anon_sym_BQUOTE] = ACTIONS(162),
- [anon_sym_satisfies] = ACTIONS(122),
- [sym__automatic_semicolon] = ACTIONS(162),
- [sym__ternary_qmark] = ACTIONS(162),
- [sym_html_comment] = ACTIONS(5),
- },
- [1120] = {
- [sym_nested_identifier] = STATE(1444),
- [sym_string] = STATE(1452),
- [sym__module] = STATE(1765),
- [sym_identifier] = ACTIONS(3366),
- [anon_sym_STAR] = ACTIONS(122),
- [anon_sym_EQ] = ACTIONS(859),
- [anon_sym_as] = ACTIONS(122),
- [anon_sym_COMMA] = ACTIONS(162),
- [anon_sym_RBRACE] = ACTIONS(162),
- [anon_sym_BANG] = ACTIONS(122),
- [anon_sym_LPAREN] = ACTIONS(162),
- [anon_sym_in] = ACTIONS(122),
- [anon_sym_SEMI] = ACTIONS(162),
- [anon_sym_LBRACK] = ACTIONS(162),
- [anon_sym_GT] = ACTIONS(122),
- [anon_sym_DOT] = ACTIONS(162),
- [anon_sym_DQUOTE] = ACTIONS(69),
- [anon_sym_SQUOTE] = ACTIONS(71),
- [anon_sym_EQ_GT] = ACTIONS(715),
- [anon_sym_QMARK_DOT] = ACTIONS(162),
- [anon_sym_PLUS_EQ] = ACTIONS(168),
- [anon_sym_DASH_EQ] = ACTIONS(168),
- [anon_sym_STAR_EQ] = ACTIONS(168),
- [anon_sym_SLASH_EQ] = ACTIONS(168),
- [anon_sym_PERCENT_EQ] = ACTIONS(168),
- [anon_sym_CARET_EQ] = ACTIONS(168),
- [anon_sym_AMP_EQ] = ACTIONS(168),
- [anon_sym_PIPE_EQ] = ACTIONS(168),
- [anon_sym_GT_GT_EQ] = ACTIONS(168),
- [anon_sym_GT_GT_GT_EQ] = ACTIONS(168),
- [anon_sym_LT_LT_EQ] = ACTIONS(168),
- [anon_sym_STAR_STAR_EQ] = ACTIONS(168),
- [anon_sym_AMP_AMP_EQ] = ACTIONS(168),
- [anon_sym_PIPE_PIPE_EQ] = ACTIONS(168),
- [anon_sym_QMARK_QMARK_EQ] = ACTIONS(168),
- [anon_sym_AMP_AMP] = ACTIONS(122),
- [anon_sym_PIPE_PIPE] = ACTIONS(122),
- [anon_sym_GT_GT] = ACTIONS(122),
- [anon_sym_GT_GT_GT] = ACTIONS(122),
- [anon_sym_LT_LT] = ACTIONS(122),
- [anon_sym_AMP] = ACTIONS(122),
- [anon_sym_CARET] = ACTIONS(122),
- [anon_sym_PIPE] = ACTIONS(122),
- [anon_sym_PLUS] = ACTIONS(122),
- [anon_sym_DASH] = ACTIONS(122),
- [anon_sym_SLASH] = ACTIONS(122),
- [anon_sym_PERCENT] = ACTIONS(122),
- [anon_sym_STAR_STAR] = ACTIONS(122),
- [anon_sym_LT] = ACTIONS(122),
- [anon_sym_LT_EQ] = ACTIONS(162),
- [anon_sym_EQ_EQ] = ACTIONS(122),
- [anon_sym_EQ_EQ_EQ] = ACTIONS(162),
- [anon_sym_BANG_EQ] = ACTIONS(122),
- [anon_sym_BANG_EQ_EQ] = ACTIONS(162),
- [anon_sym_GT_EQ] = ACTIONS(162),
- [anon_sym_QMARK_QMARK] = ACTIONS(122),
- [anon_sym_instanceof] = ACTIONS(122),
- [anon_sym_PLUS_PLUS] = ACTIONS(162),
- [anon_sym_DASH_DASH] = ACTIONS(162),
- [sym_comment] = ACTIONS(5),
- [anon_sym_BQUOTE] = ACTIONS(162),
- [anon_sym_satisfies] = ACTIONS(122),
- [sym__automatic_semicolon] = ACTIONS(162),
- [sym__ternary_qmark] = ACTIONS(162),
- [sym_html_comment] = ACTIONS(5),
- },
- [1121] = {
- [sym_nested_identifier] = STATE(1486),
- [sym_string] = STATE(1513),
- [sym__module] = STATE(1710),
- [sym_identifier] = ACTIONS(3343),
- [anon_sym_STAR] = ACTIONS(122),
- [anon_sym_EQ] = ACTIONS(841),
- [anon_sym_as] = ACTIONS(122),
- [anon_sym_COMMA] = ACTIONS(162),
- [anon_sym_BANG] = ACTIONS(122),
- [anon_sym_LPAREN] = ACTIONS(162),
- [anon_sym_in] = ACTIONS(122),
- [anon_sym_of] = ACTIONS(122),
- [anon_sym_SEMI] = ACTIONS(162),
- [anon_sym_LBRACK] = ACTIONS(162),
- [anon_sym_GT] = ACTIONS(122),
- [anon_sym_DOT] = ACTIONS(162),
- [anon_sym_DQUOTE] = ACTIONS(150),
- [anon_sym_SQUOTE] = ACTIONS(152),
- [anon_sym_EQ_GT] = ACTIONS(878),
- [anon_sym_QMARK_DOT] = ACTIONS(162),
- [anon_sym_PLUS_EQ] = ACTIONS(168),
- [anon_sym_DASH_EQ] = ACTIONS(168),
- [anon_sym_STAR_EQ] = ACTIONS(168),
- [anon_sym_SLASH_EQ] = ACTIONS(168),
- [anon_sym_PERCENT_EQ] = ACTIONS(168),
- [anon_sym_CARET_EQ] = ACTIONS(168),
- [anon_sym_AMP_EQ] = ACTIONS(168),
- [anon_sym_PIPE_EQ] = ACTIONS(168),
- [anon_sym_GT_GT_EQ] = ACTIONS(168),
- [anon_sym_GT_GT_GT_EQ] = ACTIONS(168),
- [anon_sym_LT_LT_EQ] = ACTIONS(168),
- [anon_sym_STAR_STAR_EQ] = ACTIONS(168),
- [anon_sym_AMP_AMP_EQ] = ACTIONS(168),
- [anon_sym_PIPE_PIPE_EQ] = ACTIONS(168),
- [anon_sym_QMARK_QMARK_EQ] = ACTIONS(168),
- [anon_sym_AMP_AMP] = ACTIONS(122),
- [anon_sym_PIPE_PIPE] = ACTIONS(122),
- [anon_sym_GT_GT] = ACTIONS(122),
- [anon_sym_GT_GT_GT] = ACTIONS(122),
- [anon_sym_LT_LT] = ACTIONS(122),
- [anon_sym_AMP] = ACTIONS(122),
- [anon_sym_CARET] = ACTIONS(122),
- [anon_sym_PIPE] = ACTIONS(122),
- [anon_sym_PLUS] = ACTIONS(122),
- [anon_sym_DASH] = ACTIONS(122),
- [anon_sym_SLASH] = ACTIONS(122),
- [anon_sym_PERCENT] = ACTIONS(122),
- [anon_sym_STAR_STAR] = ACTIONS(122),
- [anon_sym_LT] = ACTIONS(122),
- [anon_sym_LT_EQ] = ACTIONS(162),
- [anon_sym_EQ_EQ] = ACTIONS(122),
- [anon_sym_EQ_EQ_EQ] = ACTIONS(162),
- [anon_sym_BANG_EQ] = ACTIONS(122),
- [anon_sym_BANG_EQ_EQ] = ACTIONS(162),
- [anon_sym_GT_EQ] = ACTIONS(162),
- [anon_sym_QMARK_QMARK] = ACTIONS(122),
- [anon_sym_instanceof] = ACTIONS(122),
- [anon_sym_PLUS_PLUS] = ACTIONS(162),
- [anon_sym_DASH_DASH] = ACTIONS(162),
- [sym_comment] = ACTIONS(5),
- [anon_sym_BQUOTE] = ACTIONS(162),
- [anon_sym_satisfies] = ACTIONS(122),
- [sym__automatic_semicolon] = ACTIONS(162),
- [sym__ternary_qmark] = ACTIONS(162),
- [sym_html_comment] = ACTIONS(5),
- },
- [1122] = {
- [sym_nested_identifier] = STATE(1444),
- [sym_string] = STATE(1452),
- [sym__module] = STATE(1765),
- [sym_identifier] = ACTIONS(3366),
- [anon_sym_STAR] = ACTIONS(122),
- [anon_sym_EQ] = ACTIONS(859),
- [anon_sym_as] = ACTIONS(122),
- [anon_sym_COMMA] = ACTIONS(162),
- [anon_sym_BANG] = ACTIONS(122),
- [anon_sym_LPAREN] = ACTIONS(162),
- [anon_sym_in] = ACTIONS(861),
- [anon_sym_of] = ACTIONS(864),
- [anon_sym_SEMI] = ACTIONS(162),
- [anon_sym_LBRACK] = ACTIONS(162),
- [anon_sym_GT] = ACTIONS(122),
- [anon_sym_DOT] = ACTIONS(162),
- [anon_sym_DQUOTE] = ACTIONS(69),
- [anon_sym_SQUOTE] = ACTIONS(71),
- [anon_sym_EQ_GT] = ACTIONS(715),
- [anon_sym_QMARK_DOT] = ACTIONS(162),
- [anon_sym_PLUS_EQ] = ACTIONS(168),
- [anon_sym_DASH_EQ] = ACTIONS(168),
- [anon_sym_STAR_EQ] = ACTIONS(168),
- [anon_sym_SLASH_EQ] = ACTIONS(168),
- [anon_sym_PERCENT_EQ] = ACTIONS(168),
- [anon_sym_CARET_EQ] = ACTIONS(168),
- [anon_sym_AMP_EQ] = ACTIONS(168),
- [anon_sym_PIPE_EQ] = ACTIONS(168),
- [anon_sym_GT_GT_EQ] = ACTIONS(168),
- [anon_sym_GT_GT_GT_EQ] = ACTIONS(168),
- [anon_sym_LT_LT_EQ] = ACTIONS(168),
- [anon_sym_STAR_STAR_EQ] = ACTIONS(168),
- [anon_sym_AMP_AMP_EQ] = ACTIONS(168),
- [anon_sym_PIPE_PIPE_EQ] = ACTIONS(168),
- [anon_sym_QMARK_QMARK_EQ] = ACTIONS(168),
- [anon_sym_AMP_AMP] = ACTIONS(122),
- [anon_sym_PIPE_PIPE] = ACTIONS(122),
- [anon_sym_GT_GT] = ACTIONS(122),
- [anon_sym_GT_GT_GT] = ACTIONS(122),
- [anon_sym_LT_LT] = ACTIONS(122),
- [anon_sym_AMP] = ACTIONS(122),
- [anon_sym_CARET] = ACTIONS(122),
- [anon_sym_PIPE] = ACTIONS(122),
- [anon_sym_PLUS] = ACTIONS(122),
- [anon_sym_DASH] = ACTIONS(122),
- [anon_sym_SLASH] = ACTIONS(122),
- [anon_sym_PERCENT] = ACTIONS(122),
- [anon_sym_STAR_STAR] = ACTIONS(122),
- [anon_sym_LT] = ACTIONS(122),
- [anon_sym_LT_EQ] = ACTIONS(162),
- [anon_sym_EQ_EQ] = ACTIONS(122),
- [anon_sym_EQ_EQ_EQ] = ACTIONS(162),
- [anon_sym_BANG_EQ] = ACTIONS(122),
- [anon_sym_BANG_EQ_EQ] = ACTIONS(162),
- [anon_sym_GT_EQ] = ACTIONS(162),
- [anon_sym_QMARK_QMARK] = ACTIONS(122),
- [anon_sym_instanceof] = ACTIONS(122),
- [anon_sym_PLUS_PLUS] = ACTIONS(162),
- [anon_sym_DASH_DASH] = ACTIONS(162),
- [sym_comment] = ACTIONS(5),
- [anon_sym_BQUOTE] = ACTIONS(162),
- [anon_sym_satisfies] = ACTIONS(122),
- [sym__automatic_semicolon] = ACTIONS(162),
- [sym__ternary_qmark] = ACTIONS(162),
- [sym_html_comment] = ACTIONS(5),
- },
- [1123] = {
- [sym_variable_declarator] = STATE(4506),
- [sym_object_pattern] = STATE(3661),
- [sym_array_pattern] = STATE(3661),
- [sym__destructuring_pattern] = STATE(3661),
- [sym_identifier] = ACTIONS(3335),
- [anon_sym_STAR] = ACTIONS(122),
- [anon_sym_EQ] = ACTIONS(859),
- [anon_sym_as] = ACTIONS(122),
- [anon_sym_LBRACE] = ACTIONS(3337),
- [anon_sym_COMMA] = ACTIONS(162),
- [anon_sym_BANG] = ACTIONS(122),
- [anon_sym_LPAREN] = ACTIONS(162),
- [anon_sym_in] = ACTIONS(122),
- [anon_sym_SEMI] = ACTIONS(162),
- [anon_sym_COLON] = ACTIONS(866),
- [anon_sym_LBRACK] = ACTIONS(3339),
- [anon_sym_GT] = ACTIONS(122),
- [anon_sym_DOT] = ACTIONS(162),
- [anon_sym_EQ_GT] = ACTIONS(715),
- [anon_sym_QMARK_DOT] = ACTIONS(162),
- [anon_sym_PLUS_EQ] = ACTIONS(168),
- [anon_sym_DASH_EQ] = ACTIONS(168),
- [anon_sym_STAR_EQ] = ACTIONS(168),
- [anon_sym_SLASH_EQ] = ACTIONS(168),
- [anon_sym_PERCENT_EQ] = ACTIONS(168),
- [anon_sym_CARET_EQ] = ACTIONS(168),
- [anon_sym_AMP_EQ] = ACTIONS(168),
- [anon_sym_PIPE_EQ] = ACTIONS(168),
- [anon_sym_GT_GT_EQ] = ACTIONS(168),
- [anon_sym_GT_GT_GT_EQ] = ACTIONS(168),
- [anon_sym_LT_LT_EQ] = ACTIONS(168),
- [anon_sym_STAR_STAR_EQ] = ACTIONS(168),
- [anon_sym_AMP_AMP_EQ] = ACTIONS(168),
- [anon_sym_PIPE_PIPE_EQ] = ACTIONS(168),
- [anon_sym_QMARK_QMARK_EQ] = ACTIONS(168),
- [anon_sym_AMP_AMP] = ACTIONS(122),
- [anon_sym_PIPE_PIPE] = ACTIONS(122),
- [anon_sym_GT_GT] = ACTIONS(122),
- [anon_sym_GT_GT_GT] = ACTIONS(122),
- [anon_sym_LT_LT] = ACTIONS(122),
- [anon_sym_AMP] = ACTIONS(122),
- [anon_sym_CARET] = ACTIONS(122),
- [anon_sym_PIPE] = ACTIONS(122),
- [anon_sym_PLUS] = ACTIONS(122),
- [anon_sym_DASH] = ACTIONS(122),
- [anon_sym_SLASH] = ACTIONS(122),
- [anon_sym_PERCENT] = ACTIONS(122),
- [anon_sym_STAR_STAR] = ACTIONS(122),
- [anon_sym_LT] = ACTIONS(122),
- [anon_sym_LT_EQ] = ACTIONS(162),
- [anon_sym_EQ_EQ] = ACTIONS(122),
- [anon_sym_EQ_EQ_EQ] = ACTIONS(162),
- [anon_sym_BANG_EQ] = ACTIONS(122),
- [anon_sym_BANG_EQ_EQ] = ACTIONS(162),
- [anon_sym_GT_EQ] = ACTIONS(162),
- [anon_sym_QMARK_QMARK] = ACTIONS(122),
- [anon_sym_instanceof] = ACTIONS(122),
- [anon_sym_PLUS_PLUS] = ACTIONS(162),
- [anon_sym_DASH_DASH] = ACTIONS(162),
- [sym_comment] = ACTIONS(5),
- [anon_sym_BQUOTE] = ACTIONS(162),
- [anon_sym_satisfies] = ACTIONS(122),
- [sym__automatic_semicolon] = ACTIONS(162),
- [sym__ternary_qmark] = ACTIONS(162),
- [sym_html_comment] = ACTIONS(5),
- },
- [1124] = {
- [sym_nested_identifier] = STATE(214),
- [sym_string] = STATE(213),
- [sym__module] = STATE(247),
- [sym_identifier] = ACTIONS(3329),
- [anon_sym_STAR] = ACTIONS(122),
- [anon_sym_EQ] = ACTIONS(859),
- [anon_sym_as] = ACTIONS(122),
- [anon_sym_COMMA] = ACTIONS(162),
- [anon_sym_BANG] = ACTIONS(122),
- [anon_sym_LPAREN] = ACTIONS(162),
- [anon_sym_in] = ACTIONS(122),
- [anon_sym_SEMI] = ACTIONS(162),
- [anon_sym_COLON] = ACTIONS(884),
- [anon_sym_LBRACK] = ACTIONS(162),
- [anon_sym_GT] = ACTIONS(122),
- [anon_sym_DOT] = ACTIONS(162),
- [anon_sym_DQUOTE] = ACTIONS(3331),
- [anon_sym_SQUOTE] = ACTIONS(3333),
- [anon_sym_EQ_GT] = ACTIONS(715),
- [anon_sym_QMARK_DOT] = ACTIONS(162),
- [anon_sym_PLUS_EQ] = ACTIONS(168),
- [anon_sym_DASH_EQ] = ACTIONS(168),
- [anon_sym_STAR_EQ] = ACTIONS(168),
- [anon_sym_SLASH_EQ] = ACTIONS(168),
- [anon_sym_PERCENT_EQ] = ACTIONS(168),
- [anon_sym_CARET_EQ] = ACTIONS(168),
- [anon_sym_AMP_EQ] = ACTIONS(168),
- [anon_sym_PIPE_EQ] = ACTIONS(168),
- [anon_sym_GT_GT_EQ] = ACTIONS(168),
- [anon_sym_GT_GT_GT_EQ] = ACTIONS(168),
- [anon_sym_LT_LT_EQ] = ACTIONS(168),
- [anon_sym_STAR_STAR_EQ] = ACTIONS(168),
- [anon_sym_AMP_AMP_EQ] = ACTIONS(168),
- [anon_sym_PIPE_PIPE_EQ] = ACTIONS(168),
- [anon_sym_QMARK_QMARK_EQ] = ACTIONS(168),
- [anon_sym_AMP_AMP] = ACTIONS(122),
- [anon_sym_PIPE_PIPE] = ACTIONS(122),
- [anon_sym_GT_GT] = ACTIONS(122),
- [anon_sym_GT_GT_GT] = ACTIONS(122),
- [anon_sym_LT_LT] = ACTIONS(122),
- [anon_sym_AMP] = ACTIONS(122),
- [anon_sym_CARET] = ACTIONS(122),
- [anon_sym_PIPE] = ACTIONS(122),
- [anon_sym_PLUS] = ACTIONS(122),
- [anon_sym_DASH] = ACTIONS(122),
- [anon_sym_SLASH] = ACTIONS(122),
- [anon_sym_PERCENT] = ACTIONS(122),
- [anon_sym_STAR_STAR] = ACTIONS(122),
- [anon_sym_LT] = ACTIONS(122),
- [anon_sym_LT_EQ] = ACTIONS(162),
- [anon_sym_EQ_EQ] = ACTIONS(122),
- [anon_sym_EQ_EQ_EQ] = ACTIONS(162),
- [anon_sym_BANG_EQ] = ACTIONS(122),
- [anon_sym_BANG_EQ_EQ] = ACTIONS(162),
- [anon_sym_GT_EQ] = ACTIONS(162),
- [anon_sym_QMARK_QMARK] = ACTIONS(122),
- [anon_sym_instanceof] = ACTIONS(122),
- [anon_sym_PLUS_PLUS] = ACTIONS(162),
- [anon_sym_DASH_DASH] = ACTIONS(162),
- [sym_comment] = ACTIONS(5),
- [anon_sym_BQUOTE] = ACTIONS(162),
- [anon_sym_satisfies] = ACTIONS(122),
- [sym__automatic_semicolon] = ACTIONS(162),
- [sym__ternary_qmark] = ACTIONS(162),
- [sym_html_comment] = ACTIONS(5),
- },
- [1125] = {
- [sym_nested_identifier] = STATE(711),
- [sym_string] = STATE(741),
- [sym__module] = STATE(825),
- [sym_identifier] = ACTIONS(3341),
- [anon_sym_STAR] = ACTIONS(122),
- [anon_sym_EQ] = ACTIONS(859),
- [anon_sym_as] = ACTIONS(122),
- [anon_sym_COMMA] = ACTIONS(162),
- [anon_sym_BANG] = ACTIONS(122),
- [anon_sym_LPAREN] = ACTIONS(162),
- [anon_sym_in] = ACTIONS(122),
- [anon_sym_SEMI] = ACTIONS(162),
- [anon_sym_COLON] = ACTIONS(884),
- [anon_sym_LBRACK] = ACTIONS(162),
- [anon_sym_GT] = ACTIONS(122),
- [anon_sym_DOT] = ACTIONS(162),
- [anon_sym_DQUOTE] = ACTIONS(1506),
- [anon_sym_SQUOTE] = ACTIONS(1508),
- [anon_sym_EQ_GT] = ACTIONS(715),
- [anon_sym_QMARK_DOT] = ACTIONS(162),
- [anon_sym_PLUS_EQ] = ACTIONS(168),
- [anon_sym_DASH_EQ] = ACTIONS(168),
- [anon_sym_STAR_EQ] = ACTIONS(168),
- [anon_sym_SLASH_EQ] = ACTIONS(168),
- [anon_sym_PERCENT_EQ] = ACTIONS(168),
- [anon_sym_CARET_EQ] = ACTIONS(168),
- [anon_sym_AMP_EQ] = ACTIONS(168),
- [anon_sym_PIPE_EQ] = ACTIONS(168),
- [anon_sym_GT_GT_EQ] = ACTIONS(168),
- [anon_sym_GT_GT_GT_EQ] = ACTIONS(168),
- [anon_sym_LT_LT_EQ] = ACTIONS(168),
- [anon_sym_STAR_STAR_EQ] = ACTIONS(168),
- [anon_sym_AMP_AMP_EQ] = ACTIONS(168),
- [anon_sym_PIPE_PIPE_EQ] = ACTIONS(168),
- [anon_sym_QMARK_QMARK_EQ] = ACTIONS(168),
- [anon_sym_AMP_AMP] = ACTIONS(122),
- [anon_sym_PIPE_PIPE] = ACTIONS(122),
- [anon_sym_GT_GT] = ACTIONS(122),
- [anon_sym_GT_GT_GT] = ACTIONS(122),
- [anon_sym_LT_LT] = ACTIONS(122),
- [anon_sym_AMP] = ACTIONS(122),
- [anon_sym_CARET] = ACTIONS(122),
- [anon_sym_PIPE] = ACTIONS(122),
- [anon_sym_PLUS] = ACTIONS(122),
- [anon_sym_DASH] = ACTIONS(122),
- [anon_sym_SLASH] = ACTIONS(122),
- [anon_sym_PERCENT] = ACTIONS(122),
- [anon_sym_STAR_STAR] = ACTIONS(122),
- [anon_sym_LT] = ACTIONS(122),
- [anon_sym_LT_EQ] = ACTIONS(162),
- [anon_sym_EQ_EQ] = ACTIONS(122),
- [anon_sym_EQ_EQ_EQ] = ACTIONS(162),
- [anon_sym_BANG_EQ] = ACTIONS(122),
- [anon_sym_BANG_EQ_EQ] = ACTIONS(162),
- [anon_sym_GT_EQ] = ACTIONS(162),
- [anon_sym_QMARK_QMARK] = ACTIONS(122),
- [anon_sym_instanceof] = ACTIONS(122),
- [anon_sym_PLUS_PLUS] = ACTIONS(162),
- [anon_sym_DASH_DASH] = ACTIONS(162),
- [sym_comment] = ACTIONS(5),
- [anon_sym_BQUOTE] = ACTIONS(162),
- [anon_sym_satisfies] = ACTIONS(122),
- [sym__automatic_semicolon] = ACTIONS(162),
- [sym__ternary_qmark] = ACTIONS(162),
- [sym_html_comment] = ACTIONS(5),
- },
- [1126] = {
- [sym_nested_identifier] = STATE(1486),
- [sym_string] = STATE(1513),
- [sym__module] = STATE(1710),
- [sym_identifier] = ACTIONS(3343),
- [anon_sym_STAR] = ACTIONS(122),
- [anon_sym_EQ] = ACTIONS(841),
- [anon_sym_as] = ACTIONS(122),
- [anon_sym_COMMA] = ACTIONS(162),
- [anon_sym_RBRACE] = ACTIONS(162),
- [anon_sym_BANG] = ACTIONS(122),
- [anon_sym_LPAREN] = ACTIONS(162),
- [anon_sym_in] = ACTIONS(122),
- [anon_sym_SEMI] = ACTIONS(162),
- [anon_sym_LBRACK] = ACTIONS(162),
- [anon_sym_GT] = ACTIONS(122),
- [anon_sym_DOT] = ACTIONS(162),
- [anon_sym_DQUOTE] = ACTIONS(150),
- [anon_sym_SQUOTE] = ACTIONS(152),
- [anon_sym_EQ_GT] = ACTIONS(715),
- [anon_sym_QMARK_DOT] = ACTIONS(162),
- [anon_sym_PLUS_EQ] = ACTIONS(168),
- [anon_sym_DASH_EQ] = ACTIONS(168),
- [anon_sym_STAR_EQ] = ACTIONS(168),
- [anon_sym_SLASH_EQ] = ACTIONS(168),
- [anon_sym_PERCENT_EQ] = ACTIONS(168),
- [anon_sym_CARET_EQ] = ACTIONS(168),
- [anon_sym_AMP_EQ] = ACTIONS(168),
- [anon_sym_PIPE_EQ] = ACTIONS(168),
- [anon_sym_GT_GT_EQ] = ACTIONS(168),
- [anon_sym_GT_GT_GT_EQ] = ACTIONS(168),
- [anon_sym_LT_LT_EQ] = ACTIONS(168),
- [anon_sym_STAR_STAR_EQ] = ACTIONS(168),
- [anon_sym_AMP_AMP_EQ] = ACTIONS(168),
- [anon_sym_PIPE_PIPE_EQ] = ACTIONS(168),
- [anon_sym_QMARK_QMARK_EQ] = ACTIONS(168),
- [anon_sym_AMP_AMP] = ACTIONS(122),
- [anon_sym_PIPE_PIPE] = ACTIONS(122),
- [anon_sym_GT_GT] = ACTIONS(122),
- [anon_sym_GT_GT_GT] = ACTIONS(122),
- [anon_sym_LT_LT] = ACTIONS(122),
- [anon_sym_AMP] = ACTIONS(122),
- [anon_sym_CARET] = ACTIONS(122),
- [anon_sym_PIPE] = ACTIONS(122),
- [anon_sym_PLUS] = ACTIONS(122),
- [anon_sym_DASH] = ACTIONS(122),
- [anon_sym_SLASH] = ACTIONS(122),
- [anon_sym_PERCENT] = ACTIONS(122),
- [anon_sym_STAR_STAR] = ACTIONS(122),
- [anon_sym_LT] = ACTIONS(122),
- [anon_sym_LT_EQ] = ACTIONS(162),
- [anon_sym_EQ_EQ] = ACTIONS(122),
- [anon_sym_EQ_EQ_EQ] = ACTIONS(162),
- [anon_sym_BANG_EQ] = ACTIONS(122),
- [anon_sym_BANG_EQ_EQ] = ACTIONS(162),
- [anon_sym_GT_EQ] = ACTIONS(162),
- [anon_sym_QMARK_QMARK] = ACTIONS(122),
- [anon_sym_instanceof] = ACTIONS(122),
- [anon_sym_PLUS_PLUS] = ACTIONS(162),
- [anon_sym_DASH_DASH] = ACTIONS(162),
- [sym_comment] = ACTIONS(5),
- [anon_sym_BQUOTE] = ACTIONS(162),
- [anon_sym_satisfies] = ACTIONS(122),
- [sym__automatic_semicolon] = ACTIONS(162),
- [sym__ternary_qmark] = ACTIONS(162),
- [sym_html_comment] = ACTIONS(5),
- },
- [1127] = {
- [sym_variable_declarator] = STATE(4506),
- [sym_object_pattern] = STATE(3661),
- [sym_array_pattern] = STATE(3661),
- [sym__destructuring_pattern] = STATE(3661),
- [sym_identifier] = ACTIONS(3335),
- [anon_sym_STAR] = ACTIONS(122),
- [anon_sym_EQ] = ACTIONS(859),
- [anon_sym_as] = ACTIONS(122),
- [anon_sym_LBRACE] = ACTIONS(3337),
- [anon_sym_COMMA] = ACTIONS(162),
- [anon_sym_BANG] = ACTIONS(122),
- [anon_sym_LPAREN] = ACTIONS(162),
- [anon_sym_in] = ACTIONS(122),
- [anon_sym_SEMI] = ACTIONS(162),
- [anon_sym_COLON] = ACTIONS(886),
- [anon_sym_LBRACK] = ACTIONS(3339),
- [anon_sym_GT] = ACTIONS(122),
- [anon_sym_DOT] = ACTIONS(162),
- [anon_sym_EQ_GT] = ACTIONS(715),
- [anon_sym_QMARK_DOT] = ACTIONS(162),
- [anon_sym_PLUS_EQ] = ACTIONS(168),
- [anon_sym_DASH_EQ] = ACTIONS(168),
- [anon_sym_STAR_EQ] = ACTIONS(168),
- [anon_sym_SLASH_EQ] = ACTIONS(168),
- [anon_sym_PERCENT_EQ] = ACTIONS(168),
- [anon_sym_CARET_EQ] = ACTIONS(168),
- [anon_sym_AMP_EQ] = ACTIONS(168),
- [anon_sym_PIPE_EQ] = ACTIONS(168),
- [anon_sym_GT_GT_EQ] = ACTIONS(168),
- [anon_sym_GT_GT_GT_EQ] = ACTIONS(168),
- [anon_sym_LT_LT_EQ] = ACTIONS(168),
- [anon_sym_STAR_STAR_EQ] = ACTIONS(168),
- [anon_sym_AMP_AMP_EQ] = ACTIONS(168),
- [anon_sym_PIPE_PIPE_EQ] = ACTIONS(168),
- [anon_sym_QMARK_QMARK_EQ] = ACTIONS(168),
- [anon_sym_AMP_AMP] = ACTIONS(122),
- [anon_sym_PIPE_PIPE] = ACTIONS(122),
- [anon_sym_GT_GT] = ACTIONS(122),
- [anon_sym_GT_GT_GT] = ACTIONS(122),
- [anon_sym_LT_LT] = ACTIONS(122),
- [anon_sym_AMP] = ACTIONS(122),
- [anon_sym_CARET] = ACTIONS(122),
- [anon_sym_PIPE] = ACTIONS(122),
- [anon_sym_PLUS] = ACTIONS(122),
- [anon_sym_DASH] = ACTIONS(122),
- [anon_sym_SLASH] = ACTIONS(122),
- [anon_sym_PERCENT] = ACTIONS(122),
- [anon_sym_STAR_STAR] = ACTIONS(122),
- [anon_sym_LT] = ACTIONS(122),
- [anon_sym_LT_EQ] = ACTIONS(162),
- [anon_sym_EQ_EQ] = ACTIONS(122),
- [anon_sym_EQ_EQ_EQ] = ACTIONS(162),
- [anon_sym_BANG_EQ] = ACTIONS(122),
- [anon_sym_BANG_EQ_EQ] = ACTIONS(162),
- [anon_sym_GT_EQ] = ACTIONS(162),
- [anon_sym_QMARK_QMARK] = ACTIONS(122),
- [anon_sym_instanceof] = ACTIONS(122),
- [anon_sym_PLUS_PLUS] = ACTIONS(162),
- [anon_sym_DASH_DASH] = ACTIONS(162),
- [sym_comment] = ACTIONS(5),
- [anon_sym_BQUOTE] = ACTIONS(162),
- [anon_sym_satisfies] = ACTIONS(122),
- [sym__automatic_semicolon] = ACTIONS(162),
- [sym__ternary_qmark] = ACTIONS(162),
- [sym_html_comment] = ACTIONS(5),
- },
- [1128] = {
- [sym_variable_declarator] = STATE(4506),
- [sym_object_pattern] = STATE(3661),
- [sym_array_pattern] = STATE(3661),
- [sym__destructuring_pattern] = STATE(3661),
- [sym_identifier] = ACTIONS(3335),
- [anon_sym_STAR] = ACTIONS(122),
- [anon_sym_EQ] = ACTIONS(859),
- [anon_sym_as] = ACTIONS(122),
- [anon_sym_LBRACE] = ACTIONS(3337),
- [anon_sym_COMMA] = ACTIONS(162),
- [anon_sym_BANG] = ACTIONS(122),
- [anon_sym_LPAREN] = ACTIONS(162),
- [anon_sym_in] = ACTIONS(122),
- [anon_sym_SEMI] = ACTIONS(162),
- [anon_sym_COLON] = ACTIONS(884),
- [anon_sym_LBRACK] = ACTIONS(3339),
- [anon_sym_GT] = ACTIONS(122),
- [anon_sym_DOT] = ACTIONS(162),
- [anon_sym_EQ_GT] = ACTIONS(715),
- [anon_sym_QMARK_DOT] = ACTIONS(162),
- [anon_sym_PLUS_EQ] = ACTIONS(168),
- [anon_sym_DASH_EQ] = ACTIONS(168),
- [anon_sym_STAR_EQ] = ACTIONS(168),
- [anon_sym_SLASH_EQ] = ACTIONS(168),
- [anon_sym_PERCENT_EQ] = ACTIONS(168),
- [anon_sym_CARET_EQ] = ACTIONS(168),
- [anon_sym_AMP_EQ] = ACTIONS(168),
- [anon_sym_PIPE_EQ] = ACTIONS(168),
- [anon_sym_GT_GT_EQ] = ACTIONS(168),
- [anon_sym_GT_GT_GT_EQ] = ACTIONS(168),
- [anon_sym_LT_LT_EQ] = ACTIONS(168),
- [anon_sym_STAR_STAR_EQ] = ACTIONS(168),
- [anon_sym_AMP_AMP_EQ] = ACTIONS(168),
- [anon_sym_PIPE_PIPE_EQ] = ACTIONS(168),
- [anon_sym_QMARK_QMARK_EQ] = ACTIONS(168),
- [anon_sym_AMP_AMP] = ACTIONS(122),
- [anon_sym_PIPE_PIPE] = ACTIONS(122),
- [anon_sym_GT_GT] = ACTIONS(122),
- [anon_sym_GT_GT_GT] = ACTIONS(122),
- [anon_sym_LT_LT] = ACTIONS(122),
- [anon_sym_AMP] = ACTIONS(122),
- [anon_sym_CARET] = ACTIONS(122),
- [anon_sym_PIPE] = ACTIONS(122),
- [anon_sym_PLUS] = ACTIONS(122),
- [anon_sym_DASH] = ACTIONS(122),
- [anon_sym_SLASH] = ACTIONS(122),
- [anon_sym_PERCENT] = ACTIONS(122),
- [anon_sym_STAR_STAR] = ACTIONS(122),
- [anon_sym_LT] = ACTIONS(122),
- [anon_sym_LT_EQ] = ACTIONS(162),
- [anon_sym_EQ_EQ] = ACTIONS(122),
- [anon_sym_EQ_EQ_EQ] = ACTIONS(162),
- [anon_sym_BANG_EQ] = ACTIONS(122),
- [anon_sym_BANG_EQ_EQ] = ACTIONS(162),
- [anon_sym_GT_EQ] = ACTIONS(162),
- [anon_sym_QMARK_QMARK] = ACTIONS(122),
- [anon_sym_instanceof] = ACTIONS(122),
- [anon_sym_PLUS_PLUS] = ACTIONS(162),
- [anon_sym_DASH_DASH] = ACTIONS(162),
- [sym_comment] = ACTIONS(5),
- [anon_sym_BQUOTE] = ACTIONS(162),
- [anon_sym_satisfies] = ACTIONS(122),
- [sym__automatic_semicolon] = ACTIONS(162),
- [sym__ternary_qmark] = ACTIONS(162),
- [sym_html_comment] = ACTIONS(5),
- },
- [1129] = {
- [sym_nested_identifier] = STATE(1444),
- [sym_string] = STATE(1452),
- [sym__module] = STATE(1765),
- [sym_identifier] = ACTIONS(3366),
- [anon_sym_STAR] = ACTIONS(122),
- [anon_sym_EQ] = ACTIONS(859),
- [anon_sym_as] = ACTIONS(122),
- [anon_sym_COMMA] = ACTIONS(162),
- [anon_sym_BANG] = ACTIONS(122),
- [anon_sym_LPAREN] = ACTIONS(162),
- [anon_sym_in] = ACTIONS(122),
- [anon_sym_SEMI] = ACTIONS(162),
- [anon_sym_COLON] = ACTIONS(866),
- [anon_sym_LBRACK] = ACTIONS(162),
- [anon_sym_GT] = ACTIONS(122),
- [anon_sym_DOT] = ACTIONS(162),
- [anon_sym_DQUOTE] = ACTIONS(69),
- [anon_sym_SQUOTE] = ACTIONS(71),
- [anon_sym_EQ_GT] = ACTIONS(715),
- [anon_sym_QMARK_DOT] = ACTIONS(162),
- [anon_sym_PLUS_EQ] = ACTIONS(168),
- [anon_sym_DASH_EQ] = ACTIONS(168),
- [anon_sym_STAR_EQ] = ACTIONS(168),
- [anon_sym_SLASH_EQ] = ACTIONS(168),
- [anon_sym_PERCENT_EQ] = ACTIONS(168),
- [anon_sym_CARET_EQ] = ACTIONS(168),
- [anon_sym_AMP_EQ] = ACTIONS(168),
- [anon_sym_PIPE_EQ] = ACTIONS(168),
- [anon_sym_GT_GT_EQ] = ACTIONS(168),
- [anon_sym_GT_GT_GT_EQ] = ACTIONS(168),
- [anon_sym_LT_LT_EQ] = ACTIONS(168),
- [anon_sym_STAR_STAR_EQ] = ACTIONS(168),
- [anon_sym_AMP_AMP_EQ] = ACTIONS(168),
- [anon_sym_PIPE_PIPE_EQ] = ACTIONS(168),
- [anon_sym_QMARK_QMARK_EQ] = ACTIONS(168),
- [anon_sym_AMP_AMP] = ACTIONS(122),
- [anon_sym_PIPE_PIPE] = ACTIONS(122),
- [anon_sym_GT_GT] = ACTIONS(122),
- [anon_sym_GT_GT_GT] = ACTIONS(122),
- [anon_sym_LT_LT] = ACTIONS(122),
- [anon_sym_AMP] = ACTIONS(122),
- [anon_sym_CARET] = ACTIONS(122),
- [anon_sym_PIPE] = ACTIONS(122),
- [anon_sym_PLUS] = ACTIONS(122),
- [anon_sym_DASH] = ACTIONS(122),
- [anon_sym_SLASH] = ACTIONS(122),
- [anon_sym_PERCENT] = ACTIONS(122),
- [anon_sym_STAR_STAR] = ACTIONS(122),
- [anon_sym_LT] = ACTIONS(122),
- [anon_sym_LT_EQ] = ACTIONS(162),
- [anon_sym_EQ_EQ] = ACTIONS(122),
- [anon_sym_EQ_EQ_EQ] = ACTIONS(162),
- [anon_sym_BANG_EQ] = ACTIONS(122),
- [anon_sym_BANG_EQ_EQ] = ACTIONS(162),
- [anon_sym_GT_EQ] = ACTIONS(162),
- [anon_sym_QMARK_QMARK] = ACTIONS(122),
- [anon_sym_instanceof] = ACTIONS(122),
- [anon_sym_PLUS_PLUS] = ACTIONS(162),
- [anon_sym_DASH_DASH] = ACTIONS(162),
- [sym_comment] = ACTIONS(5),
- [anon_sym_BQUOTE] = ACTIONS(162),
- [anon_sym_satisfies] = ACTIONS(122),
- [sym__automatic_semicolon] = ACTIONS(162),
- [sym__ternary_qmark] = ACTIONS(162),
- [sym_html_comment] = ACTIONS(5),
- },
- [1130] = {
- [sym_nested_identifier] = STATE(1444),
- [sym_string] = STATE(1452),
- [sym__module] = STATE(1765),
- [sym_identifier] = ACTIONS(3366),
- [anon_sym_STAR] = ACTIONS(122),
- [anon_sym_EQ] = ACTIONS(859),
- [anon_sym_as] = ACTIONS(122),
- [anon_sym_COMMA] = ACTIONS(162),
- [anon_sym_BANG] = ACTIONS(122),
- [anon_sym_LPAREN] = ACTIONS(162),
- [anon_sym_in] = ACTIONS(122),
- [anon_sym_SEMI] = ACTIONS(162),
- [anon_sym_COLON] = ACTIONS(886),
- [anon_sym_LBRACK] = ACTIONS(162),
- [anon_sym_GT] = ACTIONS(122),
- [anon_sym_DOT] = ACTIONS(162),
- [anon_sym_DQUOTE] = ACTIONS(69),
- [anon_sym_SQUOTE] = ACTIONS(71),
- [anon_sym_EQ_GT] = ACTIONS(715),
- [anon_sym_QMARK_DOT] = ACTIONS(162),
- [anon_sym_PLUS_EQ] = ACTIONS(168),
- [anon_sym_DASH_EQ] = ACTIONS(168),
- [anon_sym_STAR_EQ] = ACTIONS(168),
- [anon_sym_SLASH_EQ] = ACTIONS(168),
- [anon_sym_PERCENT_EQ] = ACTIONS(168),
- [anon_sym_CARET_EQ] = ACTIONS(168),
- [anon_sym_AMP_EQ] = ACTIONS(168),
- [anon_sym_PIPE_EQ] = ACTIONS(168),
- [anon_sym_GT_GT_EQ] = ACTIONS(168),
- [anon_sym_GT_GT_GT_EQ] = ACTIONS(168),
- [anon_sym_LT_LT_EQ] = ACTIONS(168),
- [anon_sym_STAR_STAR_EQ] = ACTIONS(168),
- [anon_sym_AMP_AMP_EQ] = ACTIONS(168),
- [anon_sym_PIPE_PIPE_EQ] = ACTIONS(168),
- [anon_sym_QMARK_QMARK_EQ] = ACTIONS(168),
- [anon_sym_AMP_AMP] = ACTIONS(122),
- [anon_sym_PIPE_PIPE] = ACTIONS(122),
- [anon_sym_GT_GT] = ACTIONS(122),
- [anon_sym_GT_GT_GT] = ACTIONS(122),
- [anon_sym_LT_LT] = ACTIONS(122),
- [anon_sym_AMP] = ACTIONS(122),
- [anon_sym_CARET] = ACTIONS(122),
- [anon_sym_PIPE] = ACTIONS(122),
- [anon_sym_PLUS] = ACTIONS(122),
- [anon_sym_DASH] = ACTIONS(122),
- [anon_sym_SLASH] = ACTIONS(122),
- [anon_sym_PERCENT] = ACTIONS(122),
- [anon_sym_STAR_STAR] = ACTIONS(122),
- [anon_sym_LT] = ACTIONS(122),
- [anon_sym_LT_EQ] = ACTIONS(162),
- [anon_sym_EQ_EQ] = ACTIONS(122),
- [anon_sym_EQ_EQ_EQ] = ACTIONS(162),
- [anon_sym_BANG_EQ] = ACTIONS(122),
- [anon_sym_BANG_EQ_EQ] = ACTIONS(162),
- [anon_sym_GT_EQ] = ACTIONS(162),
- [anon_sym_QMARK_QMARK] = ACTIONS(122),
- [anon_sym_instanceof] = ACTIONS(122),
- [anon_sym_PLUS_PLUS] = ACTIONS(162),
- [anon_sym_DASH_DASH] = ACTIONS(162),
- [sym_comment] = ACTIONS(5),
- [anon_sym_BQUOTE] = ACTIONS(162),
- [anon_sym_satisfies] = ACTIONS(122),
- [sym__automatic_semicolon] = ACTIONS(162),
- [sym__ternary_qmark] = ACTIONS(162),
- [sym_html_comment] = ACTIONS(5),
- },
- [1131] = {
- [sym_nested_identifier] = STATE(711),
- [sym_string] = STATE(741),
- [sym__module] = STATE(825),
- [sym_identifier] = ACTIONS(3341),
- [anon_sym_STAR] = ACTIONS(122),
- [anon_sym_EQ] = ACTIONS(859),
- [anon_sym_as] = ACTIONS(122),
- [anon_sym_COMMA] = ACTIONS(162),
- [anon_sym_BANG] = ACTIONS(122),
- [anon_sym_LPAREN] = ACTIONS(162),
- [anon_sym_in] = ACTIONS(122),
- [anon_sym_SEMI] = ACTIONS(162),
- [anon_sym_COLON] = ACTIONS(886),
- [anon_sym_LBRACK] = ACTIONS(162),
- [anon_sym_GT] = ACTIONS(122),
- [anon_sym_DOT] = ACTIONS(162),
- [anon_sym_DQUOTE] = ACTIONS(1506),
- [anon_sym_SQUOTE] = ACTIONS(1508),
- [anon_sym_EQ_GT] = ACTIONS(715),
- [anon_sym_QMARK_DOT] = ACTIONS(162),
- [anon_sym_PLUS_EQ] = ACTIONS(168),
- [anon_sym_DASH_EQ] = ACTIONS(168),
- [anon_sym_STAR_EQ] = ACTIONS(168),
- [anon_sym_SLASH_EQ] = ACTIONS(168),
- [anon_sym_PERCENT_EQ] = ACTIONS(168),
- [anon_sym_CARET_EQ] = ACTIONS(168),
- [anon_sym_AMP_EQ] = ACTIONS(168),
- [anon_sym_PIPE_EQ] = ACTIONS(168),
- [anon_sym_GT_GT_EQ] = ACTIONS(168),
- [anon_sym_GT_GT_GT_EQ] = ACTIONS(168),
- [anon_sym_LT_LT_EQ] = ACTIONS(168),
- [anon_sym_STAR_STAR_EQ] = ACTIONS(168),
- [anon_sym_AMP_AMP_EQ] = ACTIONS(168),
- [anon_sym_PIPE_PIPE_EQ] = ACTIONS(168),
- [anon_sym_QMARK_QMARK_EQ] = ACTIONS(168),
- [anon_sym_AMP_AMP] = ACTIONS(122),
- [anon_sym_PIPE_PIPE] = ACTIONS(122),
- [anon_sym_GT_GT] = ACTIONS(122),
- [anon_sym_GT_GT_GT] = ACTIONS(122),
- [anon_sym_LT_LT] = ACTIONS(122),
- [anon_sym_AMP] = ACTIONS(122),
- [anon_sym_CARET] = ACTIONS(122),
- [anon_sym_PIPE] = ACTIONS(122),
- [anon_sym_PLUS] = ACTIONS(122),
- [anon_sym_DASH] = ACTIONS(122),
- [anon_sym_SLASH] = ACTIONS(122),
- [anon_sym_PERCENT] = ACTIONS(122),
- [anon_sym_STAR_STAR] = ACTIONS(122),
- [anon_sym_LT] = ACTIONS(122),
- [anon_sym_LT_EQ] = ACTIONS(162),
- [anon_sym_EQ_EQ] = ACTIONS(122),
- [anon_sym_EQ_EQ_EQ] = ACTIONS(162),
- [anon_sym_BANG_EQ] = ACTIONS(122),
- [anon_sym_BANG_EQ_EQ] = ACTIONS(162),
- [anon_sym_GT_EQ] = ACTIONS(162),
- [anon_sym_QMARK_QMARK] = ACTIONS(122),
- [anon_sym_instanceof] = ACTIONS(122),
- [anon_sym_PLUS_PLUS] = ACTIONS(162),
- [anon_sym_DASH_DASH] = ACTIONS(162),
- [sym_comment] = ACTIONS(5),
- [anon_sym_BQUOTE] = ACTIONS(162),
- [anon_sym_satisfies] = ACTIONS(122),
- [sym__automatic_semicolon] = ACTIONS(162),
- [sym__ternary_qmark] = ACTIONS(162),
- [sym_html_comment] = ACTIONS(5),
- },
-};
-
-static const uint16_t ts_small_parse_table[] = {
- [0] = 14,
- ACTIONS(696), 1,
- anon_sym_EQ,
- ACTIONS(704), 1,
- anon_sym_COLON,
- ACTIONS(715), 1,
- anon_sym_EQ_GT,
- ACTIONS(723), 1,
- anon_sym_QMARK,
- ACTIONS(727), 1,
- anon_sym_RBRACE,
- ACTIONS(2239), 1,
- anon_sym_LPAREN,
- ACTIONS(2248), 1,
- anon_sym_LT,
- ACTIONS(3372), 1,
- sym_identifier,
- STATE(4671), 1,
- aux_sym_object_repeat1,
- STATE(4672), 1,
- aux_sym_object_pattern_repeat1,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(162), 14,
- sym__automatic_semicolon,
- sym__ternary_qmark,
- anon_sym_COMMA,
- anon_sym_SEMI,
- anon_sym_LBRACK,
- anon_sym_DOT,
- anon_sym_QMARK_DOT,
- anon_sym_LT_EQ,
- anon_sym_EQ_EQ_EQ,
- anon_sym_BANG_EQ_EQ,
- anon_sym_GT_EQ,
- anon_sym_PLUS_PLUS,
- anon_sym_DASH_DASH,
- anon_sym_BQUOTE,
- ACTIONS(168), 15,
- anon_sym_PLUS_EQ,
- anon_sym_DASH_EQ,
- anon_sym_STAR_EQ,
- anon_sym_SLASH_EQ,
- anon_sym_PERCENT_EQ,
- anon_sym_CARET_EQ,
- anon_sym_AMP_EQ,
- anon_sym_PIPE_EQ,
- anon_sym_GT_GT_EQ,
- anon_sym_GT_GT_GT_EQ,
- anon_sym_LT_LT_EQ,
- anon_sym_STAR_STAR_EQ,
- anon_sym_AMP_AMP_EQ,
- anon_sym_PIPE_PIPE_EQ,
- anon_sym_QMARK_QMARK_EQ,
- ACTIONS(122), 23,
- anon_sym_STAR,
- anon_sym_as,
- anon_sym_BANG,
- anon_sym_in,
- anon_sym_GT,
- anon_sym_AMP_AMP,
- anon_sym_PIPE_PIPE,
- anon_sym_GT_GT,
- anon_sym_GT_GT_GT,
- anon_sym_LT_LT,
- anon_sym_AMP,
- anon_sym_CARET,
- anon_sym_PIPE,
- anon_sym_PLUS,
- anon_sym_DASH,
- anon_sym_SLASH,
- anon_sym_PERCENT,
- anon_sym_STAR_STAR,
- anon_sym_EQ_EQ,
- anon_sym_BANG_EQ,
- anon_sym_QMARK_QMARK,
- anon_sym_instanceof,
- anon_sym_satisfies,
- [93] = 14,
- ACTIONS(696), 1,
- anon_sym_EQ,
- ACTIONS(702), 1,
- anon_sym_RBRACE,
- ACTIONS(704), 1,
- anon_sym_COLON,
- ACTIONS(715), 1,
- anon_sym_EQ_GT,
- ACTIONS(723), 1,
- anon_sym_QMARK,
- ACTIONS(2239), 1,
- anon_sym_LPAREN,
- ACTIONS(2248), 1,
- anon_sym_LT,
- ACTIONS(3372), 1,
- sym_identifier,
- STATE(4672), 1,
- aux_sym_object_pattern_repeat1,
- STATE(5156), 1,
- aux_sym_object_repeat1,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(162), 14,
- sym__automatic_semicolon,
- sym__ternary_qmark,
- anon_sym_COMMA,
- anon_sym_SEMI,
- anon_sym_LBRACK,
- anon_sym_DOT,
- anon_sym_QMARK_DOT,
- anon_sym_LT_EQ,
- anon_sym_EQ_EQ_EQ,
- anon_sym_BANG_EQ_EQ,
- anon_sym_GT_EQ,
- anon_sym_PLUS_PLUS,
- anon_sym_DASH_DASH,
- anon_sym_BQUOTE,
- ACTIONS(168), 15,
- anon_sym_PLUS_EQ,
- anon_sym_DASH_EQ,
- anon_sym_STAR_EQ,
- anon_sym_SLASH_EQ,
- anon_sym_PERCENT_EQ,
- anon_sym_CARET_EQ,
- anon_sym_AMP_EQ,
- anon_sym_PIPE_EQ,
- anon_sym_GT_GT_EQ,
- anon_sym_GT_GT_GT_EQ,
- anon_sym_LT_LT_EQ,
- anon_sym_STAR_STAR_EQ,
- anon_sym_AMP_AMP_EQ,
- anon_sym_PIPE_PIPE_EQ,
- anon_sym_QMARK_QMARK_EQ,
- ACTIONS(122), 23,
- anon_sym_STAR,
- anon_sym_as,
- anon_sym_BANG,
- anon_sym_in,
- anon_sym_GT,
- anon_sym_AMP_AMP,
- anon_sym_PIPE_PIPE,
- anon_sym_GT_GT,
- anon_sym_GT_GT_GT,
- anon_sym_LT_LT,
- anon_sym_AMP,
- anon_sym_CARET,
- anon_sym_PIPE,
- anon_sym_PLUS,
- anon_sym_DASH,
- anon_sym_SLASH,
- anon_sym_PERCENT,
- anon_sym_STAR_STAR,
- anon_sym_EQ_EQ,
- anon_sym_BANG_EQ,
- anon_sym_QMARK_QMARK,
- anon_sym_instanceof,
- anon_sym_satisfies,
- [186] = 12,
- ACTIONS(150), 1,
- anon_sym_DQUOTE,
- ACTIONS(152), 1,
- anon_sym_SQUOTE,
- ACTIONS(841), 1,
- anon_sym_EQ,
- ACTIONS(918), 1,
- anon_sym_EQ_GT,
- ACTIONS(3343), 1,
- sym_identifier,
- STATE(1486), 1,
- sym_nested_identifier,
- STATE(1513), 1,
- sym_string,
- STATE(1710), 1,
- sym__module,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(162), 14,
- sym__ternary_qmark,
- anon_sym_LBRACE,
- anon_sym_COMMA,
- anon_sym_LPAREN,
- anon_sym_LBRACK,
- anon_sym_DOT,
- anon_sym_QMARK_DOT,
- anon_sym_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(168), 15,
- anon_sym_PLUS_EQ,
- anon_sym_DASH_EQ,
- anon_sym_STAR_EQ,
- anon_sym_SLASH_EQ,
- anon_sym_PERCENT_EQ,
- anon_sym_CARET_EQ,
- anon_sym_AMP_EQ,
- anon_sym_PIPE_EQ,
- anon_sym_GT_GT_EQ,
- anon_sym_GT_GT_GT_EQ,
- anon_sym_LT_LT_EQ,
- anon_sym_STAR_STAR_EQ,
- anon_sym_AMP_AMP_EQ,
- anon_sym_PIPE_PIPE_EQ,
- anon_sym_QMARK_QMARK_EQ,
- ACTIONS(122), 25,
- anon_sym_STAR,
- anon_sym_as,
- anon_sym_BANG,
- anon_sym_in,
- anon_sym_GT,
- anon_sym_AMP_AMP,
- anon_sym_PIPE_PIPE,
- anon_sym_GT_GT,
- anon_sym_GT_GT_GT,
- anon_sym_LT_LT,
- anon_sym_AMP,
- anon_sym_CARET,
- anon_sym_PIPE,
- anon_sym_PLUS,
- anon_sym_DASH,
- anon_sym_SLASH,
- anon_sym_PERCENT,
- anon_sym_STAR_STAR,
- anon_sym_LT,
- anon_sym_EQ_EQ,
- anon_sym_BANG_EQ,
- anon_sym_QMARK_QMARK,
- anon_sym_instanceof,
- anon_sym_satisfies,
- anon_sym_implements,
- [275] = 14,
- ACTIONS(696), 1,
- anon_sym_EQ,
- ACTIONS(704), 1,
- anon_sym_COLON,
- ACTIONS(715), 1,
- anon_sym_EQ_GT,
- ACTIONS(723), 1,
- anon_sym_QMARK,
- ACTIONS(725), 1,
- anon_sym_RBRACE,
- ACTIONS(2239), 1,
- anon_sym_LPAREN,
- ACTIONS(2248), 1,
- anon_sym_LT,
- ACTIONS(3372), 1,
- sym_identifier,
- STATE(4672), 1,
- aux_sym_object_pattern_repeat1,
- STATE(5156), 1,
- aux_sym_object_repeat1,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(162), 14,
- sym__automatic_semicolon,
- sym__ternary_qmark,
- anon_sym_COMMA,
- anon_sym_SEMI,
- anon_sym_LBRACK,
- anon_sym_DOT,
- anon_sym_QMARK_DOT,
- anon_sym_LT_EQ,
- anon_sym_EQ_EQ_EQ,
- anon_sym_BANG_EQ_EQ,
- anon_sym_GT_EQ,
- anon_sym_PLUS_PLUS,
- anon_sym_DASH_DASH,
- anon_sym_BQUOTE,
- ACTIONS(168), 15,
- anon_sym_PLUS_EQ,
- anon_sym_DASH_EQ,
- anon_sym_STAR_EQ,
- anon_sym_SLASH_EQ,
- anon_sym_PERCENT_EQ,
- anon_sym_CARET_EQ,
- anon_sym_AMP_EQ,
- anon_sym_PIPE_EQ,
- anon_sym_GT_GT_EQ,
- anon_sym_GT_GT_GT_EQ,
- anon_sym_LT_LT_EQ,
- anon_sym_STAR_STAR_EQ,
- anon_sym_AMP_AMP_EQ,
- anon_sym_PIPE_PIPE_EQ,
- anon_sym_QMARK_QMARK_EQ,
- ACTIONS(122), 23,
- anon_sym_STAR,
- anon_sym_as,
- anon_sym_BANG,
- anon_sym_in,
- anon_sym_GT,
- anon_sym_AMP_AMP,
- anon_sym_PIPE_PIPE,
- anon_sym_GT_GT,
- anon_sym_GT_GT_GT,
- anon_sym_LT_LT,
- anon_sym_AMP,
- anon_sym_CARET,
- anon_sym_PIPE,
- anon_sym_PLUS,
- anon_sym_DASH,
- anon_sym_SLASH,
- anon_sym_PERCENT,
- anon_sym_STAR_STAR,
- anon_sym_EQ_EQ,
- anon_sym_BANG_EQ,
- anon_sym_QMARK_QMARK,
- anon_sym_instanceof,
- anon_sym_satisfies,
- [368] = 12,
- ACTIONS(150), 1,
- anon_sym_DQUOTE,
- ACTIONS(152), 1,
- anon_sym_SQUOTE,
- ACTIONS(912), 1,
- anon_sym_EQ,
- ACTIONS(918), 1,
- anon_sym_EQ_GT,
- ACTIONS(3343), 1,
- sym_identifier,
- STATE(1486), 1,
- sym_nested_identifier,
- STATE(1513), 1,
- sym_string,
- STATE(1710), 1,
- sym__module,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(162), 14,
- sym__ternary_qmark,
- anon_sym_LBRACE,
- anon_sym_COMMA,
- anon_sym_LPAREN,
- anon_sym_LBRACK,
- anon_sym_DOT,
- anon_sym_QMARK_DOT,
- anon_sym_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(168), 15,
- anon_sym_PLUS_EQ,
- anon_sym_DASH_EQ,
- anon_sym_STAR_EQ,
- anon_sym_SLASH_EQ,
- anon_sym_PERCENT_EQ,
- anon_sym_CARET_EQ,
- anon_sym_AMP_EQ,
- anon_sym_PIPE_EQ,
- anon_sym_GT_GT_EQ,
- anon_sym_GT_GT_GT_EQ,
- anon_sym_LT_LT_EQ,
- anon_sym_STAR_STAR_EQ,
- anon_sym_AMP_AMP_EQ,
- anon_sym_PIPE_PIPE_EQ,
- anon_sym_QMARK_QMARK_EQ,
- ACTIONS(122), 25,
- anon_sym_STAR,
- anon_sym_as,
- anon_sym_BANG,
- anon_sym_in,
- anon_sym_GT,
- anon_sym_AMP_AMP,
- anon_sym_PIPE_PIPE,
- anon_sym_GT_GT,
- anon_sym_GT_GT_GT,
- anon_sym_LT_LT,
- anon_sym_AMP,
- anon_sym_CARET,
- anon_sym_PIPE,
- anon_sym_PLUS,
- anon_sym_DASH,
- anon_sym_SLASH,
- anon_sym_PERCENT,
- anon_sym_STAR_STAR,
- anon_sym_LT,
- anon_sym_EQ_EQ,
- anon_sym_BANG_EQ,
- anon_sym_QMARK_QMARK,
- anon_sym_instanceof,
- anon_sym_satisfies,
- anon_sym_implements,
- [457] = 15,
- ACTIONS(128), 1,
- anon_sym_RBRACK,
- ACTIONS(150), 1,
- anon_sym_DQUOTE,
- ACTIONS(152), 1,
- anon_sym_SQUOTE,
- ACTIONS(227), 1,
- anon_sym_COMMA,
- ACTIONS(895), 1,
- anon_sym_EQ,
- ACTIONS(900), 1,
- anon_sym_COLON,
- ACTIONS(904), 1,
- anon_sym_EQ_GT,
- ACTIONS(3343), 1,
- sym_identifier,
- STATE(1486), 1,
- sym_nested_identifier,
- STATE(1513), 1,
- sym_string,
- STATE(1710), 1,
- sym__module,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(162), 12,
- sym__ternary_qmark,
- anon_sym_LPAREN,
- anon_sym_LBRACK,
- anon_sym_DOT,
- anon_sym_QMARK_DOT,
- anon_sym_LT_EQ,
- anon_sym_EQ_EQ_EQ,
- anon_sym_BANG_EQ_EQ,
- anon_sym_GT_EQ,
- anon_sym_PLUS_PLUS,
- anon_sym_DASH_DASH,
- anon_sym_BQUOTE,
- ACTIONS(168), 15,
- anon_sym_PLUS_EQ,
- anon_sym_DASH_EQ,
- anon_sym_STAR_EQ,
- anon_sym_SLASH_EQ,
- anon_sym_PERCENT_EQ,
- anon_sym_CARET_EQ,
- anon_sym_AMP_EQ,
- anon_sym_PIPE_EQ,
- anon_sym_GT_GT_EQ,
- anon_sym_GT_GT_GT_EQ,
- anon_sym_LT_LT_EQ,
- anon_sym_STAR_STAR_EQ,
- anon_sym_AMP_AMP_EQ,
- anon_sym_PIPE_PIPE_EQ,
- anon_sym_QMARK_QMARK_EQ,
- ACTIONS(122), 24,
- anon_sym_STAR,
- anon_sym_as,
- anon_sym_BANG,
- anon_sym_in,
- anon_sym_GT,
- anon_sym_AMP_AMP,
- anon_sym_PIPE_PIPE,
- anon_sym_GT_GT,
- anon_sym_GT_GT_GT,
- anon_sym_LT_LT,
- anon_sym_AMP,
- anon_sym_CARET,
- anon_sym_PIPE,
- anon_sym_PLUS,
- anon_sym_DASH,
- anon_sym_SLASH,
- anon_sym_PERCENT,
- anon_sym_STAR_STAR,
- anon_sym_LT,
- anon_sym_EQ_EQ,
- anon_sym_BANG_EQ,
- anon_sym_QMARK_QMARK,
- anon_sym_instanceof,
- anon_sym_satisfies,
- [552] = 12,
- ACTIONS(150), 1,
- anon_sym_DQUOTE,
- ACTIONS(152), 1,
- anon_sym_SQUOTE,
- ACTIONS(841), 1,
- anon_sym_EQ,
- ACTIONS(924), 1,
- anon_sym_EQ_GT,
- ACTIONS(3343), 1,
- sym_identifier,
- STATE(1486), 1,
- sym_nested_identifier,
- STATE(1513), 1,
- sym_string,
- STATE(1710), 1,
- sym__module,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(162), 14,
- sym__automatic_semicolon,
- sym__ternary_qmark,
- anon_sym_LPAREN,
- anon_sym_SEMI,
- anon_sym_LBRACK,
- anon_sym_DOT,
- anon_sym_QMARK_DOT,
- anon_sym_LT_EQ,
- anon_sym_EQ_EQ_EQ,
- anon_sym_BANG_EQ_EQ,
- anon_sym_GT_EQ,
- anon_sym_PLUS_PLUS,
- anon_sym_DASH_DASH,
- anon_sym_BQUOTE,
- ACTIONS(168), 15,
- anon_sym_PLUS_EQ,
- anon_sym_DASH_EQ,
- anon_sym_STAR_EQ,
- anon_sym_SLASH_EQ,
- anon_sym_PERCENT_EQ,
- anon_sym_CARET_EQ,
- anon_sym_AMP_EQ,
- anon_sym_PIPE_EQ,
- anon_sym_GT_GT_EQ,
- anon_sym_GT_GT_GT_EQ,
- anon_sym_LT_LT_EQ,
- anon_sym_STAR_STAR_EQ,
- anon_sym_AMP_AMP_EQ,
- anon_sym_PIPE_PIPE_EQ,
- anon_sym_QMARK_QMARK_EQ,
- ACTIONS(122), 24,
- anon_sym_STAR,
- anon_sym_as,
- anon_sym_BANG,
- anon_sym_in,
- anon_sym_GT,
- anon_sym_AMP_AMP,
- anon_sym_PIPE_PIPE,
- anon_sym_GT_GT,
- anon_sym_GT_GT_GT,
- anon_sym_LT_LT,
- anon_sym_AMP,
- anon_sym_CARET,
- anon_sym_PIPE,
- anon_sym_PLUS,
- anon_sym_DASH,
- anon_sym_SLASH,
- anon_sym_PERCENT,
- anon_sym_STAR_STAR,
- anon_sym_LT,
- anon_sym_EQ_EQ,
- anon_sym_BANG_EQ,
- anon_sym_QMARK_QMARK,
- anon_sym_instanceof,
- anon_sym_satisfies,
- [640] = 3,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(3374), 23,
- anon_sym_STAR,
- anon_sym_EQ,
- anon_sym_BANG,
- anon_sym_in,
- anon_sym_GT,
- anon_sym_AMP_AMP,
- anon_sym_PIPE_PIPE,
- anon_sym_GT_GT,
- anon_sym_GT_GT_GT,
- anon_sym_LT_LT,
- anon_sym_AMP,
- anon_sym_CARET,
- anon_sym_PIPE,
- anon_sym_PLUS,
- anon_sym_DASH,
- anon_sym_SLASH,
- anon_sym_PERCENT,
- anon_sym_STAR_STAR,
- anon_sym_LT,
- anon_sym_EQ_EQ,
- anon_sym_BANG_EQ,
- anon_sym_QMARK_QMARK,
- anon_sym_QMARK,
- ACTIONS(3376), 38,
- sym__ternary_qmark,
- anon_sym_as,
- anon_sym_LBRACE,
- anon_sym_COMMA,
- anon_sym_RBRACE,
- anon_sym_LPAREN,
- anon_sym_RPAREN,
- anon_sym_of,
- anon_sym_COLON,
- anon_sym_LBRACK,
- anon_sym_RBRACK,
- anon_sym_DOT,
- anon_sym_QMARK_DOT,
- anon_sym_PLUS_EQ,
- anon_sym_DASH_EQ,
- anon_sym_STAR_EQ,
- anon_sym_SLASH_EQ,
- anon_sym_PERCENT_EQ,
- anon_sym_CARET_EQ,
- anon_sym_AMP_EQ,
- anon_sym_PIPE_EQ,
- anon_sym_GT_GT_EQ,
- anon_sym_GT_GT_GT_EQ,
- anon_sym_LT_LT_EQ,
- anon_sym_STAR_STAR_EQ,
- anon_sym_AMP_AMP_EQ,
- anon_sym_PIPE_PIPE_EQ,
- anon_sym_QMARK_QMARK_EQ,
- anon_sym_LT_EQ,
- anon_sym_EQ_EQ_EQ,
- anon_sym_BANG_EQ_EQ,
- anon_sym_GT_EQ,
- anon_sym_instanceof,
- anon_sym_PLUS_PLUS,
- anon_sym_DASH_DASH,
- anon_sym_BQUOTE,
- anon_sym_satisfies,
- anon_sym_implements,
- [710] = 13,
- ACTIONS(696), 1,
- anon_sym_EQ,
- ACTIONS(704), 1,
- anon_sym_COLON,
- ACTIONS(715), 1,
- anon_sym_EQ_GT,
- ACTIONS(723), 1,
- anon_sym_QMARK,
- ACTIONS(725), 1,
- anon_sym_RBRACE,
- ACTIONS(2239), 1,
- anon_sym_LPAREN,
- ACTIONS(2248), 1,
- anon_sym_LT,
- STATE(4672), 1,
- aux_sym_object_pattern_repeat1,
- STATE(5156), 1,
- aux_sym_object_repeat1,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(168), 15,
- anon_sym_PLUS_EQ,
- anon_sym_DASH_EQ,
- anon_sym_STAR_EQ,
- anon_sym_SLASH_EQ,
- anon_sym_PERCENT_EQ,
- anon_sym_CARET_EQ,
- anon_sym_AMP_EQ,
- anon_sym_PIPE_EQ,
- anon_sym_GT_GT_EQ,
- anon_sym_GT_GT_GT_EQ,
- anon_sym_LT_LT_EQ,
- anon_sym_STAR_STAR_EQ,
- anon_sym_AMP_AMP_EQ,
- anon_sym_PIPE_PIPE_EQ,
- anon_sym_QMARK_QMARK_EQ,
- ACTIONS(162), 17,
- sym__automatic_semicolon,
- sym__ternary_qmark,
- anon_sym_as,
- anon_sym_COMMA,
- anon_sym_SEMI,
- anon_sym_LBRACK,
- anon_sym_DOT,
- anon_sym_QMARK_DOT,
- anon_sym_LT_EQ,
- anon_sym_EQ_EQ_EQ,
- anon_sym_BANG_EQ_EQ,
- anon_sym_GT_EQ,
- anon_sym_instanceof,
- anon_sym_PLUS_PLUS,
- anon_sym_DASH_DASH,
- anon_sym_BQUOTE,
- anon_sym_satisfies,
- ACTIONS(122), 20,
- anon_sym_STAR,
- anon_sym_BANG,
- anon_sym_in,
- anon_sym_GT,
- anon_sym_AMP_AMP,
- anon_sym_PIPE_PIPE,
- anon_sym_GT_GT,
- anon_sym_GT_GT_GT,
- anon_sym_LT_LT,
- anon_sym_AMP,
- anon_sym_CARET,
- anon_sym_PIPE,
- anon_sym_PLUS,
- anon_sym_DASH,
- anon_sym_SLASH,
- anon_sym_PERCENT,
- anon_sym_STAR_STAR,
- anon_sym_EQ_EQ,
- anon_sym_BANG_EQ,
- anon_sym_QMARK_QMARK,
- [800] = 12,
- ACTIONS(150), 1,
- anon_sym_DQUOTE,
- ACTIONS(152), 1,
- anon_sym_SQUOTE,
- ACTIONS(946), 1,
- anon_sym_EQ,
- ACTIONS(952), 1,
- anon_sym_EQ_GT,
- ACTIONS(3343), 1,
- sym_identifier,
- STATE(1486), 1,
- sym_nested_identifier,
- STATE(1513), 1,
- sym_string,
- STATE(1710), 1,
- sym__module,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(162), 14,
- sym__ternary_qmark,
- anon_sym_RBRACE,
- anon_sym_LPAREN,
- anon_sym_COLON,
- anon_sym_LBRACK,
- anon_sym_DOT,
- anon_sym_QMARK_DOT,
- anon_sym_LT_EQ,
- anon_sym_EQ_EQ_EQ,
- anon_sym_BANG_EQ_EQ,
- anon_sym_GT_EQ,
- anon_sym_PLUS_PLUS,
- anon_sym_DASH_DASH,
- anon_sym_BQUOTE,
- ACTIONS(168), 15,
- anon_sym_PLUS_EQ,
- anon_sym_DASH_EQ,
- anon_sym_STAR_EQ,
- anon_sym_SLASH_EQ,
- anon_sym_PERCENT_EQ,
- anon_sym_CARET_EQ,
- anon_sym_AMP_EQ,
- anon_sym_PIPE_EQ,
- anon_sym_GT_GT_EQ,
- anon_sym_GT_GT_GT_EQ,
- anon_sym_LT_LT_EQ,
- anon_sym_STAR_STAR_EQ,
- anon_sym_AMP_AMP_EQ,
- anon_sym_PIPE_PIPE_EQ,
- anon_sym_QMARK_QMARK_EQ,
- ACTIONS(122), 24,
- anon_sym_STAR,
- anon_sym_as,
- anon_sym_BANG,
- anon_sym_in,
- anon_sym_GT,
- anon_sym_AMP_AMP,
- anon_sym_PIPE_PIPE,
- anon_sym_GT_GT,
- anon_sym_GT_GT_GT,
- anon_sym_LT_LT,
- anon_sym_AMP,
- anon_sym_CARET,
- anon_sym_PIPE,
- anon_sym_PLUS,
- anon_sym_DASH,
- anon_sym_SLASH,
- anon_sym_PERCENT,
- anon_sym_STAR_STAR,
- anon_sym_LT,
- anon_sym_EQ_EQ,
- anon_sym_BANG_EQ,
- anon_sym_QMARK_QMARK,
- anon_sym_instanceof,
- anon_sym_satisfies,
- [888] = 13,
- ACTIONS(150), 1,
- anon_sym_DQUOTE,
- ACTIONS(152), 1,
- anon_sym_SQUOTE,
- ACTIONS(900), 1,
- anon_sym_COLON,
- ACTIONS(904), 1,
- anon_sym_EQ_GT,
- ACTIONS(926), 1,
- anon_sym_EQ,
- ACTIONS(3343), 1,
- sym_identifier,
- STATE(1486), 1,
- sym_nested_identifier,
- STATE(1513), 1,
- sym_string,
- STATE(1710), 1,
- sym__module,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(162), 13,
- sym__ternary_qmark,
- anon_sym_LPAREN,
- anon_sym_LBRACK,
- anon_sym_RBRACK,
- anon_sym_DOT,
- anon_sym_QMARK_DOT,
- anon_sym_LT_EQ,
- anon_sym_EQ_EQ_EQ,
- anon_sym_BANG_EQ_EQ,
- anon_sym_GT_EQ,
- anon_sym_PLUS_PLUS,
- anon_sym_DASH_DASH,
- anon_sym_BQUOTE,
- ACTIONS(168), 15,
- anon_sym_PLUS_EQ,
- anon_sym_DASH_EQ,
- anon_sym_STAR_EQ,
- anon_sym_SLASH_EQ,
- anon_sym_PERCENT_EQ,
- anon_sym_CARET_EQ,
- anon_sym_AMP_EQ,
- anon_sym_PIPE_EQ,
- anon_sym_GT_GT_EQ,
- anon_sym_GT_GT_GT_EQ,
- anon_sym_LT_LT_EQ,
- anon_sym_STAR_STAR_EQ,
- anon_sym_AMP_AMP_EQ,
- anon_sym_PIPE_PIPE_EQ,
- anon_sym_QMARK_QMARK_EQ,
- ACTIONS(122), 24,
- anon_sym_STAR,
- anon_sym_as,
- anon_sym_BANG,
- anon_sym_in,
- anon_sym_GT,
- anon_sym_AMP_AMP,
- anon_sym_PIPE_PIPE,
- anon_sym_GT_GT,
- anon_sym_GT_GT_GT,
- anon_sym_LT_LT,
- anon_sym_AMP,
- anon_sym_CARET,
- anon_sym_PIPE,
- anon_sym_PLUS,
- anon_sym_DASH,
- anon_sym_SLASH,
- anon_sym_PERCENT,
- anon_sym_STAR_STAR,
- anon_sym_LT,
- anon_sym_EQ_EQ,
- anon_sym_BANG_EQ,
- anon_sym_QMARK_QMARK,
- anon_sym_instanceof,
- anon_sym_satisfies,
- [978] = 11,
- ACTIONS(924), 1,
- anon_sym_EQ_GT,
- ACTIONS(932), 1,
- anon_sym_EQ,
- ACTIONS(3335), 1,
- sym_identifier,
- ACTIONS(3337), 1,
- anon_sym_LBRACE,
- ACTIONS(3339), 1,
- anon_sym_LBRACK,
- STATE(4442), 1,
- sym_variable_declarator,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- STATE(3661), 3,
- sym_object_pattern,
- sym_array_pattern,
- sym__destructuring_pattern,
- ACTIONS(162), 13,
- sym__automatic_semicolon,
- sym__ternary_qmark,
- 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_PLUS_PLUS,
- anon_sym_DASH_DASH,
- anon_sym_BQUOTE,
- ACTIONS(168), 15,
- anon_sym_PLUS_EQ,
- anon_sym_DASH_EQ,
- anon_sym_STAR_EQ,
- anon_sym_SLASH_EQ,
- anon_sym_PERCENT_EQ,
- anon_sym_CARET_EQ,
- anon_sym_AMP_EQ,
- anon_sym_PIPE_EQ,
- anon_sym_GT_GT_EQ,
- anon_sym_GT_GT_GT_EQ,
- anon_sym_LT_LT_EQ,
- anon_sym_STAR_STAR_EQ,
- anon_sym_AMP_AMP_EQ,
- anon_sym_PIPE_PIPE_EQ,
- anon_sym_QMARK_QMARK_EQ,
- ACTIONS(122), 24,
- anon_sym_STAR,
- anon_sym_as,
- anon_sym_BANG,
- anon_sym_in,
- anon_sym_GT,
- anon_sym_AMP_AMP,
- anon_sym_PIPE_PIPE,
- anon_sym_GT_GT,
- anon_sym_GT_GT_GT,
- anon_sym_LT_LT,
- anon_sym_AMP,
- anon_sym_CARET,
- anon_sym_PIPE,
- anon_sym_PLUS,
- anon_sym_DASH,
- anon_sym_SLASH,
- anon_sym_PERCENT,
- anon_sym_STAR_STAR,
- anon_sym_LT,
- anon_sym_EQ_EQ,
- anon_sym_BANG_EQ,
- anon_sym_QMARK_QMARK,
- anon_sym_instanceof,
- anon_sym_satisfies,
- [1064] = 4,
- ACTIONS(3382), 1,
- anon_sym_extends,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(3378), 23,
- anon_sym_STAR,
- anon_sym_EQ,
- anon_sym_BANG,
- anon_sym_in,
- anon_sym_GT,
- anon_sym_AMP_AMP,
- anon_sym_PIPE_PIPE,
- anon_sym_GT_GT,
- anon_sym_GT_GT_GT,
- anon_sym_LT_LT,
- anon_sym_AMP,
- anon_sym_CARET,
- anon_sym_PIPE,
- anon_sym_PLUS,
- anon_sym_DASH,
- anon_sym_SLASH,
- anon_sym_PERCENT,
- anon_sym_STAR_STAR,
- anon_sym_LT,
- anon_sym_EQ_EQ,
- anon_sym_BANG_EQ,
- anon_sym_QMARK_QMARK,
- anon_sym_QMARK,
- ACTIONS(3380), 37,
- sym__ternary_qmark,
- anon_sym_as,
- anon_sym_LBRACE,
- anon_sym_COMMA,
- anon_sym_RBRACE,
- anon_sym_LPAREN,
- anon_sym_RPAREN,
- anon_sym_COLON,
- anon_sym_LBRACK,
- anon_sym_RBRACK,
- anon_sym_DOT,
- anon_sym_QMARK_DOT,
- anon_sym_PLUS_EQ,
- anon_sym_DASH_EQ,
- anon_sym_STAR_EQ,
- anon_sym_SLASH_EQ,
- anon_sym_PERCENT_EQ,
- anon_sym_CARET_EQ,
- anon_sym_AMP_EQ,
- anon_sym_PIPE_EQ,
- anon_sym_GT_GT_EQ,
- anon_sym_GT_GT_GT_EQ,
- anon_sym_LT_LT_EQ,
- anon_sym_STAR_STAR_EQ,
- anon_sym_AMP_AMP_EQ,
- anon_sym_PIPE_PIPE_EQ,
- anon_sym_QMARK_QMARK_EQ,
- anon_sym_LT_EQ,
- anon_sym_EQ_EQ_EQ,
- anon_sym_BANG_EQ_EQ,
- anon_sym_GT_EQ,
- anon_sym_instanceof,
- anon_sym_PLUS_PLUS,
- anon_sym_DASH_DASH,
- anon_sym_BQUOTE,
- anon_sym_satisfies,
- anon_sym_implements,
- [1136] = 12,
- ACTIONS(150), 1,
- anon_sym_DQUOTE,
- ACTIONS(152), 1,
- anon_sym_SQUOTE,
- ACTIONS(841), 1,
- anon_sym_EQ,
- ACTIONS(952), 1,
- anon_sym_EQ_GT,
- ACTIONS(3343), 1,
- sym_identifier,
- STATE(1486), 1,
- sym_nested_identifier,
- STATE(1513), 1,
- sym_string,
- STATE(1710), 1,
- sym__module,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(162), 14,
- sym__ternary_qmark,
- anon_sym_RBRACE,
- anon_sym_LPAREN,
- anon_sym_COLON,
- anon_sym_LBRACK,
- anon_sym_DOT,
- anon_sym_QMARK_DOT,
- anon_sym_LT_EQ,
- anon_sym_EQ_EQ_EQ,
- anon_sym_BANG_EQ_EQ,
- anon_sym_GT_EQ,
- anon_sym_PLUS_PLUS,
- anon_sym_DASH_DASH,
- anon_sym_BQUOTE,
- ACTIONS(168), 15,
- anon_sym_PLUS_EQ,
- anon_sym_DASH_EQ,
- anon_sym_STAR_EQ,
- anon_sym_SLASH_EQ,
- anon_sym_PERCENT_EQ,
- anon_sym_CARET_EQ,
- anon_sym_AMP_EQ,
- anon_sym_PIPE_EQ,
- anon_sym_GT_GT_EQ,
- anon_sym_GT_GT_GT_EQ,
- anon_sym_LT_LT_EQ,
- anon_sym_STAR_STAR_EQ,
- anon_sym_AMP_AMP_EQ,
- anon_sym_PIPE_PIPE_EQ,
- anon_sym_QMARK_QMARK_EQ,
- ACTIONS(122), 24,
- anon_sym_STAR,
- anon_sym_as,
- anon_sym_BANG,
- anon_sym_in,
- anon_sym_GT,
- anon_sym_AMP_AMP,
- anon_sym_PIPE_PIPE,
- anon_sym_GT_GT,
- anon_sym_GT_GT_GT,
- anon_sym_LT_LT,
- anon_sym_AMP,
- anon_sym_CARET,
- anon_sym_PIPE,
- anon_sym_PLUS,
- anon_sym_DASH,
- anon_sym_SLASH,
- anon_sym_PERCENT,
- anon_sym_STAR_STAR,
- anon_sym_LT,
- anon_sym_EQ_EQ,
- anon_sym_BANG_EQ,
- anon_sym_QMARK_QMARK,
- anon_sym_instanceof,
- anon_sym_satisfies,
- [1224] = 3,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(3384), 23,
- anon_sym_STAR,
- anon_sym_EQ,
- anon_sym_BANG,
- anon_sym_in,
- anon_sym_GT,
- anon_sym_AMP_AMP,
- anon_sym_PIPE_PIPE,
- anon_sym_GT_GT,
- anon_sym_GT_GT_GT,
- anon_sym_LT_LT,
- anon_sym_AMP,
- anon_sym_CARET,
- anon_sym_PIPE,
- anon_sym_PLUS,
- anon_sym_DASH,
- anon_sym_SLASH,
- anon_sym_PERCENT,
- anon_sym_STAR_STAR,
- anon_sym_LT,
- anon_sym_EQ_EQ,
- anon_sym_BANG_EQ,
- anon_sym_QMARK_QMARK,
- anon_sym_QMARK,
- ACTIONS(3386), 38,
- sym__ternary_qmark,
- anon_sym_as,
- anon_sym_LBRACE,
- anon_sym_COMMA,
- anon_sym_RBRACE,
- anon_sym_LPAREN,
- anon_sym_RPAREN,
- anon_sym_of,
- anon_sym_COLON,
- anon_sym_LBRACK,
- anon_sym_RBRACK,
- anon_sym_DOT,
- anon_sym_QMARK_DOT,
- anon_sym_PLUS_EQ,
- anon_sym_DASH_EQ,
- anon_sym_STAR_EQ,
- anon_sym_SLASH_EQ,
- anon_sym_PERCENT_EQ,
- anon_sym_CARET_EQ,
- anon_sym_AMP_EQ,
- anon_sym_PIPE_EQ,
- anon_sym_GT_GT_EQ,
- anon_sym_GT_GT_GT_EQ,
- anon_sym_LT_LT_EQ,
- anon_sym_STAR_STAR_EQ,
- anon_sym_AMP_AMP_EQ,
- anon_sym_PIPE_PIPE_EQ,
- anon_sym_QMARK_QMARK_EQ,
- anon_sym_LT_EQ,
- anon_sym_EQ_EQ_EQ,
- anon_sym_BANG_EQ_EQ,
- anon_sym_GT_EQ,
- anon_sym_instanceof,
- anon_sym_PLUS_PLUS,
- anon_sym_DASH_DASH,
- anon_sym_BQUOTE,
- anon_sym_satisfies,
- anon_sym_implements,
- [1294] = 3,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(3378), 23,
- anon_sym_STAR,
- anon_sym_EQ,
- anon_sym_BANG,
- anon_sym_in,
- anon_sym_GT,
- anon_sym_AMP_AMP,
- anon_sym_PIPE_PIPE,
- anon_sym_GT_GT,
- anon_sym_GT_GT_GT,
- anon_sym_LT_LT,
- anon_sym_AMP,
- anon_sym_CARET,
- anon_sym_PIPE,
- anon_sym_PLUS,
- anon_sym_DASH,
- anon_sym_SLASH,
- anon_sym_PERCENT,
- anon_sym_STAR_STAR,
- anon_sym_LT,
- anon_sym_EQ_EQ,
- anon_sym_BANG_EQ,
- anon_sym_QMARK_QMARK,
- anon_sym_QMARK,
- ACTIONS(3380), 38,
- sym__ternary_qmark,
- anon_sym_as,
- anon_sym_LBRACE,
- anon_sym_COMMA,
- anon_sym_RBRACE,
- anon_sym_LPAREN,
- anon_sym_RPAREN,
- anon_sym_of,
- anon_sym_COLON,
- anon_sym_LBRACK,
- anon_sym_RBRACK,
- anon_sym_DOT,
- anon_sym_QMARK_DOT,
- anon_sym_PLUS_EQ,
- anon_sym_DASH_EQ,
- anon_sym_STAR_EQ,
- anon_sym_SLASH_EQ,
- anon_sym_PERCENT_EQ,
- anon_sym_CARET_EQ,
- anon_sym_AMP_EQ,
- anon_sym_PIPE_EQ,
- anon_sym_GT_GT_EQ,
- anon_sym_GT_GT_GT_EQ,
- anon_sym_LT_LT_EQ,
- anon_sym_STAR_STAR_EQ,
- anon_sym_AMP_AMP_EQ,
- anon_sym_PIPE_PIPE_EQ,
- anon_sym_QMARK_QMARK_EQ,
- anon_sym_LT_EQ,
- anon_sym_EQ_EQ_EQ,
- anon_sym_BANG_EQ_EQ,
- anon_sym_GT_EQ,
- anon_sym_instanceof,
- anon_sym_PLUS_PLUS,
- anon_sym_DASH_DASH,
- anon_sym_BQUOTE,
- anon_sym_satisfies,
- anon_sym_implements,
- [1364] = 3,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(3388), 23,
- anon_sym_STAR,
- anon_sym_EQ,
- anon_sym_BANG,
- anon_sym_in,
- anon_sym_GT,
- anon_sym_AMP_AMP,
- anon_sym_PIPE_PIPE,
- anon_sym_GT_GT,
- anon_sym_GT_GT_GT,
- anon_sym_LT_LT,
- anon_sym_AMP,
- anon_sym_CARET,
- anon_sym_PIPE,
- anon_sym_PLUS,
- anon_sym_DASH,
- anon_sym_SLASH,
- anon_sym_PERCENT,
- anon_sym_STAR_STAR,
- anon_sym_LT,
- anon_sym_EQ_EQ,
- anon_sym_BANG_EQ,
- anon_sym_QMARK_QMARK,
- anon_sym_QMARK,
- ACTIONS(3390), 38,
- sym__ternary_qmark,
- anon_sym_as,
- anon_sym_LBRACE,
- anon_sym_COMMA,
- anon_sym_RBRACE,
- anon_sym_LPAREN,
- anon_sym_RPAREN,
- anon_sym_of,
- anon_sym_COLON,
- anon_sym_LBRACK,
- anon_sym_RBRACK,
- anon_sym_DOT,
- anon_sym_QMARK_DOT,
- anon_sym_PLUS_EQ,
- anon_sym_DASH_EQ,
- anon_sym_STAR_EQ,
- anon_sym_SLASH_EQ,
- anon_sym_PERCENT_EQ,
- anon_sym_CARET_EQ,
- anon_sym_AMP_EQ,
- anon_sym_PIPE_EQ,
- anon_sym_GT_GT_EQ,
- anon_sym_GT_GT_GT_EQ,
- anon_sym_LT_LT_EQ,
- anon_sym_STAR_STAR_EQ,
- anon_sym_AMP_AMP_EQ,
- anon_sym_PIPE_PIPE_EQ,
- anon_sym_QMARK_QMARK_EQ,
- anon_sym_LT_EQ,
- anon_sym_EQ_EQ_EQ,
- anon_sym_BANG_EQ_EQ,
- anon_sym_GT_EQ,
- anon_sym_instanceof,
- anon_sym_PLUS_PLUS,
- anon_sym_DASH_DASH,
- anon_sym_BQUOTE,
- anon_sym_satisfies,
- anon_sym_implements,
- [1434] = 3,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(3392), 23,
- anon_sym_STAR,
- anon_sym_EQ,
- anon_sym_BANG,
- anon_sym_in,
- anon_sym_GT,
- anon_sym_AMP_AMP,
- anon_sym_PIPE_PIPE,
- anon_sym_GT_GT,
- anon_sym_GT_GT_GT,
- anon_sym_LT_LT,
- anon_sym_AMP,
- anon_sym_CARET,
- anon_sym_PIPE,
- anon_sym_PLUS,
- anon_sym_DASH,
- anon_sym_SLASH,
- anon_sym_PERCENT,
- anon_sym_STAR_STAR,
- anon_sym_LT,
- anon_sym_EQ_EQ,
- anon_sym_BANG_EQ,
- anon_sym_QMARK_QMARK,
- anon_sym_QMARK,
- ACTIONS(3394), 38,
- sym__ternary_qmark,
- anon_sym_as,
- anon_sym_LBRACE,
- anon_sym_COMMA,
- anon_sym_RBRACE,
- anon_sym_LPAREN,
- anon_sym_RPAREN,
- anon_sym_of,
- anon_sym_COLON,
- anon_sym_LBRACK,
- anon_sym_RBRACK,
- anon_sym_DOT,
- anon_sym_QMARK_DOT,
- anon_sym_PLUS_EQ,
- anon_sym_DASH_EQ,
- anon_sym_STAR_EQ,
- anon_sym_SLASH_EQ,
- anon_sym_PERCENT_EQ,
- anon_sym_CARET_EQ,
- anon_sym_AMP_EQ,
- anon_sym_PIPE_EQ,
- anon_sym_GT_GT_EQ,
- anon_sym_GT_GT_GT_EQ,
- anon_sym_LT_LT_EQ,
- anon_sym_STAR_STAR_EQ,
- anon_sym_AMP_AMP_EQ,
- anon_sym_PIPE_PIPE_EQ,
- anon_sym_QMARK_QMARK_EQ,
- anon_sym_LT_EQ,
- anon_sym_EQ_EQ_EQ,
- anon_sym_BANG_EQ_EQ,
- anon_sym_GT_EQ,
- anon_sym_instanceof,
- anon_sym_PLUS_PLUS,
- anon_sym_DASH_DASH,
- anon_sym_BQUOTE,
- anon_sym_satisfies,
- anon_sym_implements,
- [1504] = 3,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(3396), 23,
- anon_sym_STAR,
- anon_sym_EQ,
- anon_sym_BANG,
- anon_sym_in,
- anon_sym_GT,
- anon_sym_AMP_AMP,
- anon_sym_PIPE_PIPE,
- anon_sym_GT_GT,
- anon_sym_GT_GT_GT,
- anon_sym_LT_LT,
- anon_sym_AMP,
- anon_sym_CARET,
- anon_sym_PIPE,
- anon_sym_PLUS,
- anon_sym_DASH,
- anon_sym_SLASH,
- anon_sym_PERCENT,
- anon_sym_STAR_STAR,
- anon_sym_LT,
- anon_sym_EQ_EQ,
- anon_sym_BANG_EQ,
- anon_sym_QMARK_QMARK,
- anon_sym_QMARK,
- ACTIONS(3398), 38,
- sym__ternary_qmark,
- anon_sym_as,
- anon_sym_LBRACE,
- anon_sym_COMMA,
- anon_sym_RBRACE,
- anon_sym_LPAREN,
- anon_sym_RPAREN,
- anon_sym_of,
- anon_sym_COLON,
- anon_sym_LBRACK,
- anon_sym_RBRACK,
- anon_sym_DOT,
- anon_sym_QMARK_DOT,
- anon_sym_PLUS_EQ,
- anon_sym_DASH_EQ,
- anon_sym_STAR_EQ,
- anon_sym_SLASH_EQ,
- anon_sym_PERCENT_EQ,
- anon_sym_CARET_EQ,
- anon_sym_AMP_EQ,
- anon_sym_PIPE_EQ,
- anon_sym_GT_GT_EQ,
- anon_sym_GT_GT_GT_EQ,
- anon_sym_LT_LT_EQ,
- anon_sym_STAR_STAR_EQ,
- anon_sym_AMP_AMP_EQ,
- anon_sym_PIPE_PIPE_EQ,
- anon_sym_QMARK_QMARK_EQ,
- anon_sym_LT_EQ,
- anon_sym_EQ_EQ_EQ,
- anon_sym_BANG_EQ_EQ,
- anon_sym_GT_EQ,
- anon_sym_instanceof,
- anon_sym_PLUS_PLUS,
- anon_sym_DASH_DASH,
- anon_sym_BQUOTE,
- anon_sym_satisfies,
- anon_sym_implements,
- [1574] = 12,
- ACTIONS(924), 1,
- anon_sym_EQ_GT,
- ACTIONS(932), 1,
- anon_sym_EQ,
- ACTIONS(3329), 1,
- sym_identifier,
- ACTIONS(3331), 1,
- anon_sym_DQUOTE,
- ACTIONS(3333), 1,
- anon_sym_SQUOTE,
- STATE(213), 1,
- sym_string,
- STATE(214), 1,
- sym_nested_identifier,
- STATE(247), 1,
- sym__module,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(162), 14,
- sym__automatic_semicolon,
- sym__ternary_qmark,
- anon_sym_LPAREN,
- anon_sym_SEMI,
- anon_sym_LBRACK,
- anon_sym_DOT,
- anon_sym_QMARK_DOT,
- anon_sym_LT_EQ,
- anon_sym_EQ_EQ_EQ,
- anon_sym_BANG_EQ_EQ,
- anon_sym_GT_EQ,
- anon_sym_PLUS_PLUS,
- anon_sym_DASH_DASH,
- anon_sym_BQUOTE,
- ACTIONS(168), 15,
- anon_sym_PLUS_EQ,
- anon_sym_DASH_EQ,
- anon_sym_STAR_EQ,
- anon_sym_SLASH_EQ,
- anon_sym_PERCENT_EQ,
- anon_sym_CARET_EQ,
- anon_sym_AMP_EQ,
- anon_sym_PIPE_EQ,
- anon_sym_GT_GT_EQ,
- anon_sym_GT_GT_GT_EQ,
- anon_sym_LT_LT_EQ,
- anon_sym_STAR_STAR_EQ,
- anon_sym_AMP_AMP_EQ,
- anon_sym_PIPE_PIPE_EQ,
- anon_sym_QMARK_QMARK_EQ,
- ACTIONS(122), 24,
- anon_sym_STAR,
- anon_sym_as,
- anon_sym_BANG,
- anon_sym_in,
- anon_sym_GT,
- anon_sym_AMP_AMP,
- anon_sym_PIPE_PIPE,
- anon_sym_GT_GT,
- anon_sym_GT_GT_GT,
- anon_sym_LT_LT,
- anon_sym_AMP,
- anon_sym_CARET,
- anon_sym_PIPE,
- anon_sym_PLUS,
- anon_sym_DASH,
- anon_sym_SLASH,
- anon_sym_PERCENT,
- anon_sym_STAR_STAR,
- anon_sym_LT,
- anon_sym_EQ_EQ,
- anon_sym_BANG_EQ,
- anon_sym_QMARK_QMARK,
- anon_sym_instanceof,
- anon_sym_satisfies,
- [1662] = 14,
- ACTIONS(3402), 1,
- anon_sym_EQ,
- ACTIONS(3408), 1,
- anon_sym_LPAREN,
- ACTIONS(3410), 1,
- anon_sym_DOT,
- ACTIONS(3412), 1,
- anon_sym_EQ_GT,
- ACTIONS(3414), 1,
- anon_sym_QMARK_DOT,
- ACTIONS(3420), 1,
- anon_sym_LT,
- STATE(3020), 1,
- sym_arguments,
- STATE(3189), 1,
- sym_type_arguments,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(3418), 2,
- anon_sym_AMP,
- anon_sym_PIPE,
- ACTIONS(3406), 7,
- sym__automatic_semicolon,
- anon_sym_COMMA,
- anon_sym_RBRACE,
- anon_sym_SEMI,
- anon_sym_LBRACK,
- anon_sym_extends,
- anon_sym_PIPE_RBRACE,
- ACTIONS(3404), 11,
- sym__ternary_qmark,
- anon_sym_as,
- anon_sym_LT_EQ,
- anon_sym_EQ_EQ_EQ,
- anon_sym_BANG_EQ_EQ,
- anon_sym_GT_EQ,
- anon_sym_instanceof,
- anon_sym_PLUS_PLUS,
- anon_sym_DASH_DASH,
- anon_sym_BQUOTE,
- anon_sym_satisfies,
- ACTIONS(3416), 15,
- anon_sym_PLUS_EQ,
- anon_sym_DASH_EQ,
- anon_sym_STAR_EQ,
- anon_sym_SLASH_EQ,
- anon_sym_PERCENT_EQ,
- anon_sym_CARET_EQ,
- anon_sym_AMP_EQ,
- anon_sym_PIPE_EQ,
- anon_sym_GT_GT_EQ,
- anon_sym_GT_GT_GT_EQ,
- anon_sym_LT_LT_EQ,
- anon_sym_STAR_STAR_EQ,
- anon_sym_AMP_AMP_EQ,
- anon_sym_PIPE_PIPE_EQ,
- anon_sym_QMARK_QMARK_EQ,
- ACTIONS(3400), 18,
- anon_sym_STAR,
- anon_sym_BANG,
- anon_sym_in,
- anon_sym_GT,
- anon_sym_AMP_AMP,
- anon_sym_PIPE_PIPE,
- anon_sym_GT_GT,
- anon_sym_GT_GT_GT,
- anon_sym_LT_LT,
- anon_sym_CARET,
- anon_sym_PLUS,
- anon_sym_DASH,
- anon_sym_SLASH,
- anon_sym_PERCENT,
- anon_sym_STAR_STAR,
- anon_sym_EQ_EQ,
- anon_sym_BANG_EQ,
- anon_sym_QMARK_QMARK,
- [1754] = 12,
- ACTIONS(69), 1,
- anon_sym_DQUOTE,
- ACTIONS(71), 1,
- anon_sym_SQUOTE,
- ACTIONS(924), 1,
- anon_sym_EQ_GT,
- ACTIONS(932), 1,
- anon_sym_EQ,
- ACTIONS(3366), 1,
- sym_identifier,
- STATE(1444), 1,
- sym_nested_identifier,
- STATE(1452), 1,
- sym_string,
- STATE(1765), 1,
- sym__module,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(162), 14,
- sym__automatic_semicolon,
- sym__ternary_qmark,
- anon_sym_LPAREN,
- anon_sym_SEMI,
- anon_sym_LBRACK,
- anon_sym_DOT,
- anon_sym_QMARK_DOT,
- anon_sym_LT_EQ,
- anon_sym_EQ_EQ_EQ,
- anon_sym_BANG_EQ_EQ,
- anon_sym_GT_EQ,
- anon_sym_PLUS_PLUS,
- anon_sym_DASH_DASH,
- anon_sym_BQUOTE,
- ACTIONS(168), 15,
- anon_sym_PLUS_EQ,
- anon_sym_DASH_EQ,
- anon_sym_STAR_EQ,
- anon_sym_SLASH_EQ,
- anon_sym_PERCENT_EQ,
- anon_sym_CARET_EQ,
- anon_sym_AMP_EQ,
- anon_sym_PIPE_EQ,
- anon_sym_GT_GT_EQ,
- anon_sym_GT_GT_GT_EQ,
- anon_sym_LT_LT_EQ,
- anon_sym_STAR_STAR_EQ,
- anon_sym_AMP_AMP_EQ,
- anon_sym_PIPE_PIPE_EQ,
- anon_sym_QMARK_QMARK_EQ,
- ACTIONS(122), 24,
- anon_sym_STAR,
- anon_sym_as,
- anon_sym_BANG,
- anon_sym_in,
- anon_sym_GT,
- anon_sym_AMP_AMP,
- anon_sym_PIPE_PIPE,
- anon_sym_GT_GT,
- anon_sym_GT_GT_GT,
- anon_sym_LT_LT,
- anon_sym_AMP,
- anon_sym_CARET,
- anon_sym_PIPE,
- anon_sym_PLUS,
- anon_sym_DASH,
- anon_sym_SLASH,
- anon_sym_PERCENT,
- anon_sym_STAR_STAR,
- anon_sym_LT,
- anon_sym_EQ_EQ,
- anon_sym_BANG_EQ,
- anon_sym_QMARK_QMARK,
- anon_sym_instanceof,
- anon_sym_satisfies,
- [1842] = 13,
- ACTIONS(704), 1,
- anon_sym_COLON,
- ACTIONS(723), 1,
- anon_sym_QMARK,
- ACTIONS(725), 1,
- anon_sym_RBRACE,
- ACTIONS(3422), 1,
- anon_sym_EQ,
- ACTIONS(3424), 1,
- anon_sym_LPAREN,
- ACTIONS(3427), 1,
- anon_sym_EQ_GT,
- ACTIONS(3429), 1,
- anon_sym_LT,
- STATE(4672), 1,
- aux_sym_object_pattern_repeat1,
- STATE(5156), 1,
- aux_sym_object_repeat1,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(3416), 15,
- anon_sym_PLUS_EQ,
- anon_sym_DASH_EQ,
- anon_sym_STAR_EQ,
- anon_sym_SLASH_EQ,
- anon_sym_PERCENT_EQ,
- anon_sym_CARET_EQ,
- anon_sym_AMP_EQ,
- anon_sym_PIPE_EQ,
- anon_sym_GT_GT_EQ,
- anon_sym_GT_GT_GT_EQ,
- anon_sym_LT_LT_EQ,
- anon_sym_STAR_STAR_EQ,
- anon_sym_AMP_AMP_EQ,
- anon_sym_PIPE_PIPE_EQ,
- anon_sym_QMARK_QMARK_EQ,
- ACTIONS(3404), 17,
- sym__automatic_semicolon,
- sym__ternary_qmark,
- anon_sym_as,
- anon_sym_COMMA,
- anon_sym_SEMI,
- anon_sym_LBRACK,
- anon_sym_DOT,
- anon_sym_QMARK_DOT,
- anon_sym_LT_EQ,
- anon_sym_EQ_EQ_EQ,
- anon_sym_BANG_EQ_EQ,
- anon_sym_GT_EQ,
- anon_sym_instanceof,
- anon_sym_PLUS_PLUS,
- anon_sym_DASH_DASH,
- anon_sym_BQUOTE,
- anon_sym_satisfies,
- ACTIONS(3400), 20,
- anon_sym_STAR,
- anon_sym_BANG,
- anon_sym_in,
- anon_sym_GT,
- anon_sym_AMP_AMP,
- anon_sym_PIPE_PIPE,
- anon_sym_GT_GT,
- anon_sym_GT_GT_GT,
- anon_sym_LT_LT,
- anon_sym_AMP,
- anon_sym_CARET,
- anon_sym_PIPE,
- anon_sym_PLUS,
- anon_sym_DASH,
- anon_sym_SLASH,
- anon_sym_PERCENT,
- anon_sym_STAR_STAR,
- anon_sym_EQ_EQ,
- anon_sym_BANG_EQ,
- anon_sym_QMARK_QMARK,
- [1932] = 12,
- ACTIONS(924), 1,
- anon_sym_EQ_GT,
- ACTIONS(932), 1,
- anon_sym_EQ,
- ACTIONS(1594), 1,
- anon_sym_DQUOTE,
- ACTIONS(1596), 1,
- anon_sym_SQUOTE,
- ACTIONS(3432), 1,
- sym_identifier,
- STATE(3483), 1,
- sym_nested_identifier,
- STATE(3697), 1,
- sym_string,
- STATE(4370), 1,
- sym__module,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(162), 14,
- sym__automatic_semicolon,
- sym__ternary_qmark,
- anon_sym_LPAREN,
- anon_sym_SEMI,
- anon_sym_LBRACK,
- anon_sym_DOT,
- anon_sym_QMARK_DOT,
- anon_sym_LT_EQ,
- anon_sym_EQ_EQ_EQ,
- anon_sym_BANG_EQ_EQ,
- anon_sym_GT_EQ,
- anon_sym_PLUS_PLUS,
- anon_sym_DASH_DASH,
- anon_sym_BQUOTE,
- ACTIONS(168), 15,
- anon_sym_PLUS_EQ,
- anon_sym_DASH_EQ,
- anon_sym_STAR_EQ,
- anon_sym_SLASH_EQ,
- anon_sym_PERCENT_EQ,
- anon_sym_CARET_EQ,
- anon_sym_AMP_EQ,
- anon_sym_PIPE_EQ,
- anon_sym_GT_GT_EQ,
- anon_sym_GT_GT_GT_EQ,
- anon_sym_LT_LT_EQ,
- anon_sym_STAR_STAR_EQ,
- anon_sym_AMP_AMP_EQ,
- anon_sym_PIPE_PIPE_EQ,
- anon_sym_QMARK_QMARK_EQ,
- ACTIONS(122), 24,
- anon_sym_STAR,
- anon_sym_as,
- anon_sym_BANG,
- anon_sym_in,
- anon_sym_GT,
- anon_sym_AMP_AMP,
- anon_sym_PIPE_PIPE,
- anon_sym_GT_GT,
- anon_sym_GT_GT_GT,
- anon_sym_LT_LT,
- anon_sym_AMP,
- anon_sym_CARET,
- anon_sym_PIPE,
- anon_sym_PLUS,
- anon_sym_DASH,
- anon_sym_SLASH,
- anon_sym_PERCENT,
- anon_sym_STAR_STAR,
- anon_sym_LT,
- anon_sym_EQ_EQ,
- anon_sym_BANG_EQ,
- anon_sym_QMARK_QMARK,
- anon_sym_instanceof,
- anon_sym_satisfies,
- [2020] = 13,
- ACTIONS(702), 1,
- anon_sym_RBRACE,
- ACTIONS(704), 1,
- anon_sym_COLON,
- ACTIONS(723), 1,
- anon_sym_QMARK,
- ACTIONS(3422), 1,
- anon_sym_EQ,
- ACTIONS(3424), 1,
- anon_sym_LPAREN,
- ACTIONS(3427), 1,
- anon_sym_EQ_GT,
- ACTIONS(3429), 1,
- anon_sym_LT,
- STATE(4672), 1,
- aux_sym_object_pattern_repeat1,
- STATE(5156), 1,
- aux_sym_object_repeat1,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(3416), 15,
- anon_sym_PLUS_EQ,
- anon_sym_DASH_EQ,
- anon_sym_STAR_EQ,
- anon_sym_SLASH_EQ,
- anon_sym_PERCENT_EQ,
- anon_sym_CARET_EQ,
- anon_sym_AMP_EQ,
- anon_sym_PIPE_EQ,
- anon_sym_GT_GT_EQ,
- anon_sym_GT_GT_GT_EQ,
- anon_sym_LT_LT_EQ,
- anon_sym_STAR_STAR_EQ,
- anon_sym_AMP_AMP_EQ,
- anon_sym_PIPE_PIPE_EQ,
- anon_sym_QMARK_QMARK_EQ,
- ACTIONS(3404), 17,
- sym__automatic_semicolon,
- sym__ternary_qmark,
- anon_sym_as,
- anon_sym_COMMA,
- anon_sym_SEMI,
- anon_sym_LBRACK,
- anon_sym_DOT,
- anon_sym_QMARK_DOT,
- anon_sym_LT_EQ,
- anon_sym_EQ_EQ_EQ,
- anon_sym_BANG_EQ_EQ,
- anon_sym_GT_EQ,
- anon_sym_instanceof,
- anon_sym_PLUS_PLUS,
- anon_sym_DASH_DASH,
- anon_sym_BQUOTE,
- anon_sym_satisfies,
- ACTIONS(3400), 20,
- anon_sym_STAR,
- anon_sym_BANG,
- anon_sym_in,
- anon_sym_GT,
- anon_sym_AMP_AMP,
- anon_sym_PIPE_PIPE,
- anon_sym_GT_GT,
- anon_sym_GT_GT_GT,
- anon_sym_LT_LT,
- anon_sym_AMP,
- anon_sym_CARET,
- anon_sym_PIPE,
- anon_sym_PLUS,
- anon_sym_DASH,
- anon_sym_SLASH,
- anon_sym_PERCENT,
- anon_sym_STAR_STAR,
- anon_sym_EQ_EQ,
- anon_sym_BANG_EQ,
- anon_sym_QMARK_QMARK,
- [2110] = 13,
- ACTIONS(696), 1,
- anon_sym_EQ,
- ACTIONS(702), 1,
- anon_sym_RBRACE,
- ACTIONS(704), 1,
- anon_sym_COLON,
- ACTIONS(715), 1,
- anon_sym_EQ_GT,
- ACTIONS(723), 1,
- anon_sym_QMARK,
- ACTIONS(2239), 1,
- anon_sym_LPAREN,
- ACTIONS(2248), 1,
- anon_sym_LT,
- STATE(4672), 1,
- aux_sym_object_pattern_repeat1,
- STATE(5156), 1,
- aux_sym_object_repeat1,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(168), 15,
- anon_sym_PLUS_EQ,
- anon_sym_DASH_EQ,
- anon_sym_STAR_EQ,
- anon_sym_SLASH_EQ,
- anon_sym_PERCENT_EQ,
- anon_sym_CARET_EQ,
- anon_sym_AMP_EQ,
- anon_sym_PIPE_EQ,
- anon_sym_GT_GT_EQ,
- anon_sym_GT_GT_GT_EQ,
- anon_sym_LT_LT_EQ,
- anon_sym_STAR_STAR_EQ,
- anon_sym_AMP_AMP_EQ,
- anon_sym_PIPE_PIPE_EQ,
- anon_sym_QMARK_QMARK_EQ,
- ACTIONS(162), 17,
- sym__automatic_semicolon,
- sym__ternary_qmark,
- anon_sym_as,
- anon_sym_COMMA,
- anon_sym_SEMI,
- anon_sym_LBRACK,
- anon_sym_DOT,
- anon_sym_QMARK_DOT,
- anon_sym_LT_EQ,
- anon_sym_EQ_EQ_EQ,
- anon_sym_BANG_EQ_EQ,
- anon_sym_GT_EQ,
- anon_sym_instanceof,
- anon_sym_PLUS_PLUS,
- anon_sym_DASH_DASH,
- anon_sym_BQUOTE,
- anon_sym_satisfies,
- ACTIONS(122), 20,
- anon_sym_STAR,
- anon_sym_BANG,
- anon_sym_in,
- anon_sym_GT,
- anon_sym_AMP_AMP,
- anon_sym_PIPE_PIPE,
- anon_sym_GT_GT,
- anon_sym_GT_GT_GT,
- anon_sym_LT_LT,
- anon_sym_AMP,
- anon_sym_CARET,
- anon_sym_PIPE,
- anon_sym_PLUS,
- anon_sym_DASH,
- anon_sym_SLASH,
- anon_sym_PERCENT,
- anon_sym_STAR_STAR,
- anon_sym_EQ_EQ,
- anon_sym_BANG_EQ,
- anon_sym_QMARK_QMARK,
- [2200] = 13,
- ACTIONS(704), 1,
- anon_sym_COLON,
- ACTIONS(723), 1,
- anon_sym_QMARK,
- ACTIONS(727), 1,
- anon_sym_RBRACE,
- ACTIONS(3422), 1,
- anon_sym_EQ,
- ACTIONS(3424), 1,
- anon_sym_LPAREN,
- ACTIONS(3427), 1,
- anon_sym_EQ_GT,
- ACTIONS(3429), 1,
- anon_sym_LT,
- STATE(4671), 1,
- aux_sym_object_repeat1,
- STATE(4672), 1,
- aux_sym_object_pattern_repeat1,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(3416), 15,
- anon_sym_PLUS_EQ,
- anon_sym_DASH_EQ,
- anon_sym_STAR_EQ,
- anon_sym_SLASH_EQ,
- anon_sym_PERCENT_EQ,
- anon_sym_CARET_EQ,
- anon_sym_AMP_EQ,
- anon_sym_PIPE_EQ,
- anon_sym_GT_GT_EQ,
- anon_sym_GT_GT_GT_EQ,
- anon_sym_LT_LT_EQ,
- anon_sym_STAR_STAR_EQ,
- anon_sym_AMP_AMP_EQ,
- anon_sym_PIPE_PIPE_EQ,
- anon_sym_QMARK_QMARK_EQ,
- ACTIONS(3404), 17,
- sym__automatic_semicolon,
- sym__ternary_qmark,
- anon_sym_as,
- anon_sym_COMMA,
- anon_sym_SEMI,
- anon_sym_LBRACK,
- anon_sym_DOT,
- anon_sym_QMARK_DOT,
- anon_sym_LT_EQ,
- anon_sym_EQ_EQ_EQ,
- anon_sym_BANG_EQ_EQ,
- anon_sym_GT_EQ,
- anon_sym_instanceof,
- anon_sym_PLUS_PLUS,
- anon_sym_DASH_DASH,
- anon_sym_BQUOTE,
- anon_sym_satisfies,
- ACTIONS(3400), 20,
- anon_sym_STAR,
- anon_sym_BANG,
- anon_sym_in,
- anon_sym_GT,
- anon_sym_AMP_AMP,
- anon_sym_PIPE_PIPE,
- anon_sym_GT_GT,
- anon_sym_GT_GT_GT,
- anon_sym_LT_LT,
- anon_sym_AMP,
- anon_sym_CARET,
- anon_sym_PIPE,
- anon_sym_PLUS,
- anon_sym_DASH,
- anon_sym_SLASH,
- anon_sym_PERCENT,
- anon_sym_STAR_STAR,
- anon_sym_EQ_EQ,
- anon_sym_BANG_EQ,
- anon_sym_QMARK_QMARK,
- [2290] = 12,
- ACTIONS(924), 1,
- anon_sym_EQ_GT,
- ACTIONS(932), 1,
- anon_sym_EQ,
- ACTIONS(1506), 1,
- anon_sym_DQUOTE,
- ACTIONS(1508), 1,
- anon_sym_SQUOTE,
- ACTIONS(3341), 1,
- sym_identifier,
- STATE(711), 1,
- sym_nested_identifier,
- STATE(741), 1,
- sym_string,
- STATE(825), 1,
- sym__module,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(162), 14,
- sym__automatic_semicolon,
- sym__ternary_qmark,
- anon_sym_LPAREN,
- anon_sym_SEMI,
- anon_sym_LBRACK,
- anon_sym_DOT,
- anon_sym_QMARK_DOT,
- anon_sym_LT_EQ,
- anon_sym_EQ_EQ_EQ,
- anon_sym_BANG_EQ_EQ,
- anon_sym_GT_EQ,
- anon_sym_PLUS_PLUS,
- anon_sym_DASH_DASH,
- anon_sym_BQUOTE,
- ACTIONS(168), 15,
- anon_sym_PLUS_EQ,
- anon_sym_DASH_EQ,
- anon_sym_STAR_EQ,
- anon_sym_SLASH_EQ,
- anon_sym_PERCENT_EQ,
- anon_sym_CARET_EQ,
- anon_sym_AMP_EQ,
- anon_sym_PIPE_EQ,
- anon_sym_GT_GT_EQ,
- anon_sym_GT_GT_GT_EQ,
- anon_sym_LT_LT_EQ,
- anon_sym_STAR_STAR_EQ,
- anon_sym_AMP_AMP_EQ,
- anon_sym_PIPE_PIPE_EQ,
- anon_sym_QMARK_QMARK_EQ,
- ACTIONS(122), 24,
- anon_sym_STAR,
- anon_sym_as,
- anon_sym_BANG,
- anon_sym_in,
- anon_sym_GT,
- anon_sym_AMP_AMP,
- anon_sym_PIPE_PIPE,
- anon_sym_GT_GT,
- anon_sym_GT_GT_GT,
- anon_sym_LT_LT,
- anon_sym_AMP,
- anon_sym_CARET,
- anon_sym_PIPE,
- anon_sym_PLUS,
- anon_sym_DASH,
- anon_sym_SLASH,
- anon_sym_PERCENT,
- anon_sym_STAR_STAR,
- anon_sym_LT,
- anon_sym_EQ_EQ,
- anon_sym_BANG_EQ,
- anon_sym_QMARK_QMARK,
- anon_sym_instanceof,
- anon_sym_satisfies,
- [2378] = 13,
- ACTIONS(696), 1,
- anon_sym_EQ,
- ACTIONS(704), 1,
- anon_sym_COLON,
- ACTIONS(715), 1,
- anon_sym_EQ_GT,
- ACTIONS(723), 1,
- anon_sym_QMARK,
- ACTIONS(727), 1,
- anon_sym_RBRACE,
- ACTIONS(2239), 1,
- anon_sym_LPAREN,
- ACTIONS(2248), 1,
- anon_sym_LT,
- STATE(4671), 1,
- aux_sym_object_repeat1,
- STATE(4672), 1,
- aux_sym_object_pattern_repeat1,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(168), 15,
- anon_sym_PLUS_EQ,
- anon_sym_DASH_EQ,
- anon_sym_STAR_EQ,
- anon_sym_SLASH_EQ,
- anon_sym_PERCENT_EQ,
- anon_sym_CARET_EQ,
- anon_sym_AMP_EQ,
- anon_sym_PIPE_EQ,
- anon_sym_GT_GT_EQ,
- anon_sym_GT_GT_GT_EQ,
- anon_sym_LT_LT_EQ,
- anon_sym_STAR_STAR_EQ,
- anon_sym_AMP_AMP_EQ,
- anon_sym_PIPE_PIPE_EQ,
- anon_sym_QMARK_QMARK_EQ,
- ACTIONS(162), 17,
- sym__automatic_semicolon,
- sym__ternary_qmark,
- anon_sym_as,
- anon_sym_COMMA,
- anon_sym_SEMI,
- anon_sym_LBRACK,
- anon_sym_DOT,
- anon_sym_QMARK_DOT,
- anon_sym_LT_EQ,
- anon_sym_EQ_EQ_EQ,
- anon_sym_BANG_EQ_EQ,
- anon_sym_GT_EQ,
- anon_sym_instanceof,
- anon_sym_PLUS_PLUS,
- anon_sym_DASH_DASH,
- anon_sym_BQUOTE,
- anon_sym_satisfies,
- ACTIONS(122), 20,
- anon_sym_STAR,
- anon_sym_BANG,
- anon_sym_in,
- anon_sym_GT,
- anon_sym_AMP_AMP,
- anon_sym_PIPE_PIPE,
- anon_sym_GT_GT,
- anon_sym_GT_GT_GT,
- anon_sym_LT_LT,
- anon_sym_AMP,
- anon_sym_CARET,
- anon_sym_PIPE,
- anon_sym_PLUS,
- anon_sym_DASH,
- anon_sym_SLASH,
- anon_sym_PERCENT,
- anon_sym_STAR_STAR,
- anon_sym_EQ_EQ,
- anon_sym_BANG_EQ,
- anon_sym_QMARK_QMARK,
- [2468] = 11,
- ACTIONS(924), 1,
- anon_sym_EQ_GT,
- ACTIONS(932), 1,
- anon_sym_EQ,
- ACTIONS(3335), 1,
- sym_identifier,
- ACTIONS(3337), 1,
- anon_sym_LBRACE,
- ACTIONS(3339), 1,
- anon_sym_LBRACK,
- STATE(4506), 1,
- sym_variable_declarator,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- STATE(3661), 3,
- sym_object_pattern,
- sym_array_pattern,
- sym__destructuring_pattern,
- ACTIONS(162), 13,
- sym__automatic_semicolon,
- sym__ternary_qmark,
- 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_PLUS_PLUS,
- anon_sym_DASH_DASH,
- anon_sym_BQUOTE,
- ACTIONS(168), 15,
- anon_sym_PLUS_EQ,
- anon_sym_DASH_EQ,
- anon_sym_STAR_EQ,
- anon_sym_SLASH_EQ,
- anon_sym_PERCENT_EQ,
- anon_sym_CARET_EQ,
- anon_sym_AMP_EQ,
- anon_sym_PIPE_EQ,
- anon_sym_GT_GT_EQ,
- anon_sym_GT_GT_GT_EQ,
- anon_sym_LT_LT_EQ,
- anon_sym_STAR_STAR_EQ,
- anon_sym_AMP_AMP_EQ,
- anon_sym_PIPE_PIPE_EQ,
- anon_sym_QMARK_QMARK_EQ,
- ACTIONS(122), 24,
- anon_sym_STAR,
- anon_sym_as,
- anon_sym_BANG,
- anon_sym_in,
- anon_sym_GT,
- anon_sym_AMP_AMP,
- anon_sym_PIPE_PIPE,
- anon_sym_GT_GT,
- anon_sym_GT_GT_GT,
- anon_sym_LT_LT,
- anon_sym_AMP,
- anon_sym_CARET,
- anon_sym_PIPE,
- anon_sym_PLUS,
- anon_sym_DASH,
- anon_sym_SLASH,
- anon_sym_PERCENT,
- anon_sym_STAR_STAR,
- anon_sym_LT,
- anon_sym_EQ_EQ,
- anon_sym_BANG_EQ,
- anon_sym_QMARK_QMARK,
- anon_sym_instanceof,
- anon_sym_satisfies,
- [2554] = 3,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(3434), 23,
- anon_sym_STAR,
- anon_sym_EQ,
- anon_sym_BANG,
- anon_sym_in,
- anon_sym_GT,
- anon_sym_AMP_AMP,
- anon_sym_PIPE_PIPE,
- anon_sym_GT_GT,
- anon_sym_GT_GT_GT,
- anon_sym_LT_LT,
- anon_sym_AMP,
- anon_sym_CARET,
- anon_sym_PIPE,
- anon_sym_PLUS,
- anon_sym_DASH,
- anon_sym_SLASH,
- anon_sym_PERCENT,
- anon_sym_STAR_STAR,
- anon_sym_LT,
- anon_sym_EQ_EQ,
- anon_sym_BANG_EQ,
- anon_sym_QMARK_QMARK,
- anon_sym_QMARK,
- ACTIONS(3436), 38,
- sym__ternary_qmark,
- anon_sym_as,
- anon_sym_LBRACE,
- anon_sym_COMMA,
- anon_sym_RBRACE,
- anon_sym_LPAREN,
- anon_sym_RPAREN,
- anon_sym_of,
- anon_sym_COLON,
- anon_sym_LBRACK,
- anon_sym_RBRACK,
- anon_sym_DOT,
- anon_sym_QMARK_DOT,
- anon_sym_PLUS_EQ,
- anon_sym_DASH_EQ,
- anon_sym_STAR_EQ,
- anon_sym_SLASH_EQ,
- anon_sym_PERCENT_EQ,
- anon_sym_CARET_EQ,
- anon_sym_AMP_EQ,
- anon_sym_PIPE_EQ,
- anon_sym_GT_GT_EQ,
- anon_sym_GT_GT_GT_EQ,
- anon_sym_LT_LT_EQ,
- anon_sym_STAR_STAR_EQ,
- anon_sym_AMP_AMP_EQ,
- anon_sym_PIPE_PIPE_EQ,
- anon_sym_QMARK_QMARK_EQ,
- anon_sym_LT_EQ,
- anon_sym_EQ_EQ_EQ,
- anon_sym_BANG_EQ_EQ,
- anon_sym_GT_EQ,
- anon_sym_instanceof,
- anon_sym_PLUS_PLUS,
- anon_sym_DASH_DASH,
- anon_sym_BQUOTE,
- anon_sym_satisfies,
- anon_sym_implements,
- [2624] = 14,
- ACTIONS(128), 1,
- anon_sym_RBRACK,
- ACTIONS(150), 1,
- anon_sym_DQUOTE,
- ACTIONS(152), 1,
- anon_sym_SQUOTE,
- ACTIONS(227), 1,
- anon_sym_COMMA,
- ACTIONS(895), 1,
- anon_sym_EQ,
- ACTIONS(904), 1,
- anon_sym_EQ_GT,
- ACTIONS(3343), 1,
- sym_identifier,
- STATE(1486), 1,
- sym_nested_identifier,
- STATE(1513), 1,
- sym_string,
- STATE(1710), 1,
- sym__module,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(162), 12,
- sym__ternary_qmark,
- anon_sym_LPAREN,
- anon_sym_LBRACK,
- anon_sym_DOT,
- anon_sym_QMARK_DOT,
- anon_sym_LT_EQ,
- anon_sym_EQ_EQ_EQ,
- anon_sym_BANG_EQ_EQ,
- anon_sym_GT_EQ,
- anon_sym_PLUS_PLUS,
- anon_sym_DASH_DASH,
- anon_sym_BQUOTE,
- ACTIONS(168), 15,
- anon_sym_PLUS_EQ,
- anon_sym_DASH_EQ,
- anon_sym_STAR_EQ,
- anon_sym_SLASH_EQ,
- anon_sym_PERCENT_EQ,
- anon_sym_CARET_EQ,
- anon_sym_AMP_EQ,
- anon_sym_PIPE_EQ,
- anon_sym_GT_GT_EQ,
- anon_sym_GT_GT_GT_EQ,
- anon_sym_LT_LT_EQ,
- anon_sym_STAR_STAR_EQ,
- anon_sym_AMP_AMP_EQ,
- anon_sym_PIPE_PIPE_EQ,
- anon_sym_QMARK_QMARK_EQ,
- ACTIONS(122), 24,
- anon_sym_STAR,
- anon_sym_as,
- anon_sym_BANG,
- anon_sym_in,
- anon_sym_GT,
- anon_sym_AMP_AMP,
- anon_sym_PIPE_PIPE,
- anon_sym_GT_GT,
- anon_sym_GT_GT_GT,
- anon_sym_LT_LT,
- anon_sym_AMP,
- anon_sym_CARET,
- anon_sym_PIPE,
- anon_sym_PLUS,
- anon_sym_DASH,
- anon_sym_SLASH,
- anon_sym_PERCENT,
- anon_sym_STAR_STAR,
- anon_sym_LT,
- anon_sym_EQ_EQ,
- anon_sym_BANG_EQ,
- anon_sym_QMARK_QMARK,
- anon_sym_instanceof,
- anon_sym_satisfies,
- [2716] = 14,
- ACTIONS(3402), 1,
- anon_sym_EQ,
- ACTIONS(3412), 1,
- anon_sym_EQ_GT,
- ACTIONS(3438), 1,
- anon_sym_LPAREN,
- ACTIONS(3440), 1,
- anon_sym_DOT,
- ACTIONS(3442), 1,
- anon_sym_QMARK_DOT,
- ACTIONS(3444), 1,
- anon_sym_LT,
- STATE(2829), 1,
- sym_arguments,
- STATE(2852), 1,
- sym_type_arguments,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(3406), 3,
- anon_sym_COMMA,
- anon_sym_LBRACK,
- anon_sym_extends,
- ACTIONS(3418), 3,
- anon_sym_GT,
- anon_sym_AMP,
- anon_sym_PIPE,
- ACTIONS(3404), 15,
- sym__ternary_qmark,
- anon_sym_as,
- anon_sym_RBRACE,
- anon_sym_RPAREN,
- anon_sym_COLON,
- anon_sym_RBRACK,
- anon_sym_LT_EQ,
- anon_sym_EQ_EQ_EQ,
- anon_sym_BANG_EQ_EQ,
- anon_sym_GT_EQ,
- anon_sym_instanceof,
- anon_sym_PLUS_PLUS,
- anon_sym_DASH_DASH,
- anon_sym_BQUOTE,
- anon_sym_satisfies,
- ACTIONS(3416), 15,
- anon_sym_PLUS_EQ,
- anon_sym_DASH_EQ,
- anon_sym_STAR_EQ,
- anon_sym_SLASH_EQ,
- anon_sym_PERCENT_EQ,
- anon_sym_CARET_EQ,
- anon_sym_AMP_EQ,
- anon_sym_PIPE_EQ,
- anon_sym_GT_GT_EQ,
- anon_sym_GT_GT_GT_EQ,
- anon_sym_LT_LT_EQ,
- anon_sym_STAR_STAR_EQ,
- anon_sym_AMP_AMP_EQ,
- anon_sym_PIPE_PIPE_EQ,
- anon_sym_QMARK_QMARK_EQ,
- ACTIONS(3400), 17,
- anon_sym_STAR,
- anon_sym_BANG,
- anon_sym_in,
- anon_sym_AMP_AMP,
- anon_sym_PIPE_PIPE,
- anon_sym_GT_GT,
- anon_sym_GT_GT_GT,
- anon_sym_LT_LT,
- anon_sym_CARET,
- anon_sym_PLUS,
- anon_sym_DASH,
- anon_sym_SLASH,
- anon_sym_PERCENT,
- anon_sym_STAR_STAR,
- anon_sym_EQ_EQ,
- anon_sym_BANG_EQ,
- anon_sym_QMARK_QMARK,
- [2808] = 4,
- ACTIONS(3446), 1,
- anon_sym_extends,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(3384), 23,
- anon_sym_STAR,
- anon_sym_EQ,
- anon_sym_BANG,
- anon_sym_in,
- anon_sym_GT,
- anon_sym_AMP_AMP,
- anon_sym_PIPE_PIPE,
- anon_sym_GT_GT,
- anon_sym_GT_GT_GT,
- anon_sym_LT_LT,
- anon_sym_AMP,
- anon_sym_CARET,
- anon_sym_PIPE,
- anon_sym_PLUS,
- anon_sym_DASH,
- anon_sym_SLASH,
- anon_sym_PERCENT,
- anon_sym_STAR_STAR,
- anon_sym_LT,
- anon_sym_EQ_EQ,
- anon_sym_BANG_EQ,
- anon_sym_QMARK_QMARK,
- anon_sym_QMARK,
- ACTIONS(3386), 37,
- sym__ternary_qmark,
- anon_sym_as,
- anon_sym_LBRACE,
- anon_sym_COMMA,
- anon_sym_RBRACE,
- anon_sym_LPAREN,
- anon_sym_RPAREN,
- anon_sym_COLON,
- anon_sym_LBRACK,
- anon_sym_RBRACK,
- anon_sym_DOT,
- anon_sym_QMARK_DOT,
- anon_sym_PLUS_EQ,
- anon_sym_DASH_EQ,
- anon_sym_STAR_EQ,
- anon_sym_SLASH_EQ,
- anon_sym_PERCENT_EQ,
- anon_sym_CARET_EQ,
- anon_sym_AMP_EQ,
- anon_sym_PIPE_EQ,
- anon_sym_GT_GT_EQ,
- anon_sym_GT_GT_GT_EQ,
- anon_sym_LT_LT_EQ,
- anon_sym_STAR_STAR_EQ,
- anon_sym_AMP_AMP_EQ,
- anon_sym_PIPE_PIPE_EQ,
- anon_sym_QMARK_QMARK_EQ,
- anon_sym_LT_EQ,
- anon_sym_EQ_EQ_EQ,
- anon_sym_BANG_EQ_EQ,
- anon_sym_GT_EQ,
- anon_sym_instanceof,
- anon_sym_PLUS_PLUS,
- anon_sym_DASH_DASH,
- anon_sym_BQUOTE,
- anon_sym_satisfies,
- anon_sym_implements,
- [2880] = 13,
- ACTIONS(150), 1,
- anon_sym_DQUOTE,
- ACTIONS(152), 1,
- anon_sym_SQUOTE,
- ACTIONS(904), 1,
- anon_sym_EQ_GT,
- ACTIONS(926), 1,
- anon_sym_EQ,
- ACTIONS(940), 1,
- anon_sym_COLON,
- ACTIONS(3343), 1,
- sym_identifier,
- STATE(1486), 1,
- sym_nested_identifier,
- STATE(1513), 1,
- sym_string,
- STATE(1710), 1,
- sym__module,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(162), 13,
- sym__ternary_qmark,
- anon_sym_LPAREN,
- anon_sym_LBRACK,
- anon_sym_RBRACK,
- anon_sym_DOT,
- anon_sym_QMARK_DOT,
- anon_sym_LT_EQ,
- anon_sym_EQ_EQ_EQ,
- anon_sym_BANG_EQ_EQ,
- anon_sym_GT_EQ,
- anon_sym_PLUS_PLUS,
- anon_sym_DASH_DASH,
- anon_sym_BQUOTE,
- ACTIONS(168), 15,
- anon_sym_PLUS_EQ,
- anon_sym_DASH_EQ,
- anon_sym_STAR_EQ,
- anon_sym_SLASH_EQ,
- anon_sym_PERCENT_EQ,
- anon_sym_CARET_EQ,
- anon_sym_AMP_EQ,
- anon_sym_PIPE_EQ,
- anon_sym_GT_GT_EQ,
- anon_sym_GT_GT_GT_EQ,
- anon_sym_LT_LT_EQ,
- anon_sym_STAR_STAR_EQ,
- anon_sym_AMP_AMP_EQ,
- anon_sym_PIPE_PIPE_EQ,
- anon_sym_QMARK_QMARK_EQ,
- ACTIONS(122), 24,
- anon_sym_STAR,
- anon_sym_as,
- anon_sym_BANG,
- anon_sym_in,
- anon_sym_GT,
- anon_sym_AMP_AMP,
- anon_sym_PIPE_PIPE,
- anon_sym_GT_GT,
- anon_sym_GT_GT_GT,
- anon_sym_LT_LT,
- anon_sym_AMP,
- anon_sym_CARET,
- anon_sym_PIPE,
- anon_sym_PLUS,
- anon_sym_DASH,
- anon_sym_SLASH,
- anon_sym_PERCENT,
- anon_sym_STAR_STAR,
- anon_sym_LT,
- anon_sym_EQ_EQ,
- anon_sym_BANG_EQ,
- anon_sym_QMARK_QMARK,
- anon_sym_instanceof,
- anon_sym_satisfies,
- [2970] = 12,
- ACTIONS(924), 1,
- anon_sym_EQ_GT,
- ACTIONS(932), 1,
- anon_sym_EQ,
- ACTIONS(1506), 1,
- anon_sym_DQUOTE,
- ACTIONS(1508), 1,
- anon_sym_SQUOTE,
- ACTIONS(3368), 1,
- sym_identifier,
- STATE(741), 1,
- sym_string,
- STATE(825), 1,
- sym__module,
- STATE(4429), 1,
- sym_nested_identifier,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(162), 14,
- sym__automatic_semicolon,
- sym__ternary_qmark,
- anon_sym_LPAREN,
- anon_sym_SEMI,
- anon_sym_LBRACK,
- anon_sym_DOT,
- anon_sym_QMARK_DOT,
- anon_sym_LT_EQ,
- anon_sym_EQ_EQ_EQ,
- anon_sym_BANG_EQ_EQ,
- anon_sym_GT_EQ,
- anon_sym_PLUS_PLUS,
- anon_sym_DASH_DASH,
- anon_sym_BQUOTE,
- ACTIONS(168), 15,
- anon_sym_PLUS_EQ,
- anon_sym_DASH_EQ,
- anon_sym_STAR_EQ,
- anon_sym_SLASH_EQ,
- anon_sym_PERCENT_EQ,
- anon_sym_CARET_EQ,
- anon_sym_AMP_EQ,
- anon_sym_PIPE_EQ,
- anon_sym_GT_GT_EQ,
- anon_sym_GT_GT_GT_EQ,
- anon_sym_LT_LT_EQ,
- anon_sym_STAR_STAR_EQ,
- anon_sym_AMP_AMP_EQ,
- anon_sym_PIPE_PIPE_EQ,
- anon_sym_QMARK_QMARK_EQ,
- ACTIONS(122), 24,
- anon_sym_STAR,
- anon_sym_as,
- anon_sym_BANG,
- anon_sym_in,
- anon_sym_GT,
- anon_sym_AMP_AMP,
- anon_sym_PIPE_PIPE,
- anon_sym_GT_GT,
- anon_sym_GT_GT_GT,
- anon_sym_LT_LT,
- anon_sym_AMP,
- anon_sym_CARET,
- anon_sym_PIPE,
- anon_sym_PLUS,
- anon_sym_DASH,
- anon_sym_SLASH,
- anon_sym_PERCENT,
- anon_sym_STAR_STAR,
- anon_sym_LT,
- anon_sym_EQ_EQ,
- anon_sym_BANG_EQ,
- anon_sym_QMARK_QMARK,
- anon_sym_instanceof,
- anon_sym_satisfies,
- [3058] = 14,
- ACTIONS(3402), 1,
- anon_sym_EQ,
- ACTIONS(3412), 1,
- anon_sym_EQ_GT,
- ACTIONS(3438), 1,
- anon_sym_LPAREN,
- ACTIONS(3440), 1,
- anon_sym_DOT,
- ACTIONS(3442), 1,
- anon_sym_QMARK_DOT,
- ACTIONS(3444), 1,
- anon_sym_LT,
- STATE(2829), 1,
- sym_arguments,
- STATE(2852), 1,
- sym_type_arguments,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(3418), 2,
- anon_sym_AMP,
- anon_sym_PIPE,
- ACTIONS(3406), 4,
- anon_sym_RBRACE,
- anon_sym_RPAREN,
- anon_sym_LBRACK,
- anon_sym_extends,
- ACTIONS(3404), 13,
- sym__ternary_qmark,
- anon_sym_as,
- anon_sym_COMMA,
- anon_sym_COLON,
- anon_sym_LT_EQ,
- anon_sym_EQ_EQ_EQ,
- anon_sym_BANG_EQ_EQ,
- anon_sym_GT_EQ,
- anon_sym_instanceof,
- anon_sym_PLUS_PLUS,
- anon_sym_DASH_DASH,
- anon_sym_BQUOTE,
- anon_sym_satisfies,
- ACTIONS(3416), 15,
- anon_sym_PLUS_EQ,
- anon_sym_DASH_EQ,
- anon_sym_STAR_EQ,
- anon_sym_SLASH_EQ,
- anon_sym_PERCENT_EQ,
- anon_sym_CARET_EQ,
- anon_sym_AMP_EQ,
- anon_sym_PIPE_EQ,
- anon_sym_GT_GT_EQ,
- anon_sym_GT_GT_GT_EQ,
- anon_sym_LT_LT_EQ,
- anon_sym_STAR_STAR_EQ,
- anon_sym_AMP_AMP_EQ,
- anon_sym_PIPE_PIPE_EQ,
- anon_sym_QMARK_QMARK_EQ,
- ACTIONS(3400), 18,
- anon_sym_STAR,
- anon_sym_BANG,
- anon_sym_in,
- anon_sym_GT,
- anon_sym_AMP_AMP,
- anon_sym_PIPE_PIPE,
- anon_sym_GT_GT,
- anon_sym_GT_GT_GT,
- anon_sym_LT_LT,
- anon_sym_CARET,
- anon_sym_PLUS,
- anon_sym_DASH,
- anon_sym_SLASH,
- anon_sym_PERCENT,
- anon_sym_STAR_STAR,
- anon_sym_EQ_EQ,
- anon_sym_BANG_EQ,
- anon_sym_QMARK_QMARK,
- [3149] = 12,
- ACTIONS(150), 1,
- anon_sym_DQUOTE,
- ACTIONS(152), 1,
- anon_sym_SQUOTE,
- ACTIONS(960), 1,
- anon_sym_EQ,
- ACTIONS(966), 1,
- anon_sym_EQ_GT,
- ACTIONS(3343), 1,
- sym_identifier,
- STATE(1486), 1,
- sym_nested_identifier,
- STATE(1513), 1,
- sym_string,
- STATE(1710), 1,
- sym__module,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(162), 12,
- sym__ternary_qmark,
- anon_sym_LPAREN,
- anon_sym_LBRACK,
- anon_sym_DOT,
- anon_sym_QMARK_DOT,
- anon_sym_LT_EQ,
- anon_sym_EQ_EQ_EQ,
- anon_sym_BANG_EQ_EQ,
- anon_sym_GT_EQ,
- anon_sym_PLUS_PLUS,
- anon_sym_DASH_DASH,
- anon_sym_BQUOTE,
- ACTIONS(168), 15,
- anon_sym_PLUS_EQ,
- anon_sym_DASH_EQ,
- anon_sym_STAR_EQ,
- anon_sym_SLASH_EQ,
- anon_sym_PERCENT_EQ,
- anon_sym_CARET_EQ,
- anon_sym_AMP_EQ,
- anon_sym_PIPE_EQ,
- anon_sym_GT_GT_EQ,
- anon_sym_GT_GT_GT_EQ,
- anon_sym_LT_LT_EQ,
- anon_sym_STAR_STAR_EQ,
- anon_sym_AMP_AMP_EQ,
- anon_sym_PIPE_PIPE_EQ,
- anon_sym_QMARK_QMARK_EQ,
- ACTIONS(122), 25,
- anon_sym_STAR,
- anon_sym_as,
- anon_sym_BANG,
- anon_sym_in,
- anon_sym_of,
- anon_sym_GT,
- anon_sym_AMP_AMP,
- anon_sym_PIPE_PIPE,
- anon_sym_GT_GT,
- anon_sym_GT_GT_GT,
- anon_sym_LT_LT,
- anon_sym_AMP,
- anon_sym_CARET,
- anon_sym_PIPE,
- anon_sym_PLUS,
- anon_sym_DASH,
- anon_sym_SLASH,
- anon_sym_PERCENT,
- anon_sym_STAR_STAR,
- anon_sym_LT,
- anon_sym_EQ_EQ,
- anon_sym_BANG_EQ,
- anon_sym_QMARK_QMARK,
- anon_sym_instanceof,
- anon_sym_satisfies,
- [3236] = 12,
- ACTIONS(150), 1,
- anon_sym_DQUOTE,
- ACTIONS(152), 1,
- anon_sym_SQUOTE,
- ACTIONS(841), 1,
- anon_sym_EQ,
- ACTIONS(966), 1,
- anon_sym_EQ_GT,
- ACTIONS(3343), 1,
- sym_identifier,
- STATE(1486), 1,
- sym_nested_identifier,
- STATE(1513), 1,
- sym_string,
- STATE(1710), 1,
- sym__module,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(162), 12,
- sym__ternary_qmark,
- anon_sym_LPAREN,
- anon_sym_LBRACK,
- anon_sym_DOT,
- anon_sym_QMARK_DOT,
- anon_sym_LT_EQ,
- anon_sym_EQ_EQ_EQ,
- anon_sym_BANG_EQ_EQ,
- anon_sym_GT_EQ,
- anon_sym_PLUS_PLUS,
- anon_sym_DASH_DASH,
- anon_sym_BQUOTE,
- ACTIONS(168), 15,
- anon_sym_PLUS_EQ,
- anon_sym_DASH_EQ,
- anon_sym_STAR_EQ,
- anon_sym_SLASH_EQ,
- anon_sym_PERCENT_EQ,
- anon_sym_CARET_EQ,
- anon_sym_AMP_EQ,
- anon_sym_PIPE_EQ,
- anon_sym_GT_GT_EQ,
- anon_sym_GT_GT_GT_EQ,
- anon_sym_LT_LT_EQ,
- anon_sym_STAR_STAR_EQ,
- anon_sym_AMP_AMP_EQ,
- anon_sym_PIPE_PIPE_EQ,
- anon_sym_QMARK_QMARK_EQ,
- ACTIONS(122), 25,
- anon_sym_STAR,
- anon_sym_as,
- anon_sym_BANG,
- anon_sym_in,
- anon_sym_of,
- anon_sym_GT,
- anon_sym_AMP_AMP,
- anon_sym_PIPE_PIPE,
- anon_sym_GT_GT,
- anon_sym_GT_GT_GT,
- anon_sym_LT_LT,
- anon_sym_AMP,
- anon_sym_CARET,
- anon_sym_PIPE,
- anon_sym_PLUS,
- anon_sym_DASH,
- anon_sym_SLASH,
- anon_sym_PERCENT,
- anon_sym_STAR_STAR,
- anon_sym_LT,
- anon_sym_EQ_EQ,
- anon_sym_BANG_EQ,
- anon_sym_QMARK_QMARK,
- anon_sym_instanceof,
- anon_sym_satisfies,
- [3323] = 14,
- ACTIONS(3427), 1,
- anon_sym_EQ_GT,
- ACTIONS(3438), 1,
- anon_sym_LPAREN,
- ACTIONS(3440), 1,
- anon_sym_DOT,
- ACTIONS(3442), 1,
- anon_sym_QMARK_DOT,
- ACTIONS(3444), 1,
- anon_sym_LT,
- ACTIONS(3448), 1,
- anon_sym_EQ,
- STATE(2829), 1,
- sym_arguments,
- STATE(2852), 1,
- sym_type_arguments,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(3406), 3,
- anon_sym_COMMA,
- anon_sym_LBRACK,
- anon_sym_extends,
- ACTIONS(3418), 3,
- anon_sym_GT,
- anon_sym_AMP,
- anon_sym_PIPE,
- ACTIONS(3404), 14,
- sym__automatic_semicolon,
- sym__ternary_qmark,
- anon_sym_as,
- anon_sym_RBRACE,
- anon_sym_SEMI,
- anon_sym_LT_EQ,
- anon_sym_EQ_EQ_EQ,
- anon_sym_BANG_EQ_EQ,
- anon_sym_GT_EQ,
- anon_sym_instanceof,
- anon_sym_PLUS_PLUS,
- anon_sym_DASH_DASH,
- anon_sym_BQUOTE,
- anon_sym_satisfies,
- ACTIONS(3416), 15,
- anon_sym_PLUS_EQ,
- anon_sym_DASH_EQ,
- anon_sym_STAR_EQ,
- anon_sym_SLASH_EQ,
- anon_sym_PERCENT_EQ,
- anon_sym_CARET_EQ,
- anon_sym_AMP_EQ,
- anon_sym_PIPE_EQ,
- anon_sym_GT_GT_EQ,
- anon_sym_GT_GT_GT_EQ,
- anon_sym_LT_LT_EQ,
- anon_sym_STAR_STAR_EQ,
- anon_sym_AMP_AMP_EQ,
- anon_sym_PIPE_PIPE_EQ,
- anon_sym_QMARK_QMARK_EQ,
- ACTIONS(3400), 17,
- anon_sym_STAR,
- anon_sym_BANG,
- anon_sym_in,
- anon_sym_AMP_AMP,
- anon_sym_PIPE_PIPE,
- anon_sym_GT_GT,
- anon_sym_GT_GT_GT,
- anon_sym_LT_LT,
- anon_sym_CARET,
- anon_sym_PLUS,
- anon_sym_DASH,
- anon_sym_SLASH,
- anon_sym_PERCENT,
- anon_sym_STAR_STAR,
- anon_sym_EQ_EQ,
- anon_sym_BANG_EQ,
- anon_sym_QMARK_QMARK,
- [3414] = 14,
- ACTIONS(3438), 1,
- anon_sym_LPAREN,
- ACTIONS(3440), 1,
- anon_sym_DOT,
- ACTIONS(3442), 1,
- anon_sym_QMARK_DOT,
- ACTIONS(3444), 1,
- anon_sym_LT,
- ACTIONS(3450), 1,
- anon_sym_EQ,
- ACTIONS(3452), 1,
- anon_sym_EQ_GT,
- STATE(2829), 1,
- sym_arguments,
- STATE(2852), 1,
- sym_type_arguments,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(3406), 3,
- anon_sym_COMMA,
- anon_sym_LBRACK,
- anon_sym_extends,
- ACTIONS(3418), 3,
- anon_sym_GT,
- anon_sym_AMP,
- anon_sym_PIPE,
- ACTIONS(3404), 14,
- sym__automatic_semicolon,
- sym__ternary_qmark,
- anon_sym_as,
- anon_sym_of,
- anon_sym_SEMI,
- anon_sym_LT_EQ,
- anon_sym_EQ_EQ_EQ,
- anon_sym_BANG_EQ_EQ,
- anon_sym_GT_EQ,
- anon_sym_instanceof,
- anon_sym_PLUS_PLUS,
- anon_sym_DASH_DASH,
- anon_sym_BQUOTE,
- anon_sym_satisfies,
- ACTIONS(3416), 15,
- anon_sym_PLUS_EQ,
- anon_sym_DASH_EQ,
- anon_sym_STAR_EQ,
- anon_sym_SLASH_EQ,
- anon_sym_PERCENT_EQ,
- anon_sym_CARET_EQ,
- anon_sym_AMP_EQ,
- anon_sym_PIPE_EQ,
- anon_sym_GT_GT_EQ,
- anon_sym_GT_GT_GT_EQ,
- anon_sym_LT_LT_EQ,
- anon_sym_STAR_STAR_EQ,
- anon_sym_AMP_AMP_EQ,
- anon_sym_PIPE_PIPE_EQ,
- anon_sym_QMARK_QMARK_EQ,
- ACTIONS(3400), 17,
- anon_sym_STAR,
- anon_sym_BANG,
- anon_sym_in,
- anon_sym_AMP_AMP,
- anon_sym_PIPE_PIPE,
- anon_sym_GT_GT,
- anon_sym_GT_GT_GT,
- anon_sym_LT_LT,
- anon_sym_CARET,
- anon_sym_PLUS,
- anon_sym_DASH,
- anon_sym_SLASH,
- anon_sym_PERCENT,
- anon_sym_STAR_STAR,
- anon_sym_EQ_EQ,
- anon_sym_BANG_EQ,
- anon_sym_QMARK_QMARK,
- [3505] = 13,
- ACTIONS(150), 1,
- anon_sym_DQUOTE,
- ACTIONS(152), 1,
- anon_sym_SQUOTE,
- ACTIONS(229), 1,
- anon_sym_EQ_GT,
- ACTIONS(841), 1,
- anon_sym_EQ,
- ACTIONS(847), 1,
- anon_sym_COLON,
- ACTIONS(3343), 1,
- sym_identifier,
- STATE(1486), 1,
- sym_nested_identifier,
- STATE(1513), 1,
- sym_string,
- STATE(1710), 1,
- sym__module,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(162), 12,
- sym__ternary_qmark,
- anon_sym_LPAREN,
- anon_sym_LBRACK,
- anon_sym_DOT,
- anon_sym_QMARK_DOT,
- anon_sym_LT_EQ,
- anon_sym_EQ_EQ_EQ,
- anon_sym_BANG_EQ_EQ,
- anon_sym_GT_EQ,
- anon_sym_PLUS_PLUS,
- anon_sym_DASH_DASH,
- anon_sym_BQUOTE,
- ACTIONS(168), 15,
- anon_sym_PLUS_EQ,
- anon_sym_DASH_EQ,
- anon_sym_STAR_EQ,
- anon_sym_SLASH_EQ,
- anon_sym_PERCENT_EQ,
- anon_sym_CARET_EQ,
- anon_sym_AMP_EQ,
- anon_sym_PIPE_EQ,
- anon_sym_GT_GT_EQ,
- anon_sym_GT_GT_GT_EQ,
- anon_sym_LT_LT_EQ,
- anon_sym_STAR_STAR_EQ,
- anon_sym_AMP_AMP_EQ,
- anon_sym_PIPE_PIPE_EQ,
- anon_sym_QMARK_QMARK_EQ,
- ACTIONS(122), 24,
- anon_sym_STAR,
- anon_sym_as,
- anon_sym_BANG,
- anon_sym_in,
- anon_sym_GT,
- anon_sym_AMP_AMP,
- anon_sym_PIPE_PIPE,
- anon_sym_GT_GT,
- anon_sym_GT_GT_GT,
- anon_sym_LT_LT,
- anon_sym_AMP,
- anon_sym_CARET,
- anon_sym_PIPE,
- anon_sym_PLUS,
- anon_sym_DASH,
- anon_sym_SLASH,
- anon_sym_PERCENT,
- anon_sym_STAR_STAR,
- anon_sym_LT,
- anon_sym_EQ_EQ,
- anon_sym_BANG_EQ,
- anon_sym_QMARK_QMARK,
- anon_sym_instanceof,
- anon_sym_satisfies,
- [3594] = 3,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(2445), 22,
- anon_sym_STAR,
- anon_sym_EQ,
- anon_sym_BANG,
- anon_sym_in,
- anon_sym_GT,
- anon_sym_AMP_AMP,
- anon_sym_PIPE_PIPE,
- anon_sym_GT_GT,
- anon_sym_GT_GT_GT,
- anon_sym_LT_LT,
- anon_sym_AMP,
- anon_sym_CARET,
- anon_sym_PIPE,
- anon_sym_PLUS,
- anon_sym_DASH,
- anon_sym_SLASH,
- anon_sym_PERCENT,
- anon_sym_STAR_STAR,
- anon_sym_LT,
- anon_sym_EQ_EQ,
- anon_sym_BANG_EQ,
- anon_sym_QMARK_QMARK,
- ACTIONS(2443), 38,
- sym__ternary_qmark,
- anon_sym_as,
- anon_sym_LBRACE,
- anon_sym_COMMA,
- anon_sym_RBRACE,
- anon_sym_LPAREN,
- anon_sym_RPAREN,
- anon_sym_of,
- anon_sym_COLON,
- anon_sym_LBRACK,
- anon_sym_RBRACK,
- anon_sym_DOT,
- anon_sym_QMARK_DOT,
- anon_sym_PLUS_EQ,
- anon_sym_DASH_EQ,
- anon_sym_STAR_EQ,
- anon_sym_SLASH_EQ,
- anon_sym_PERCENT_EQ,
- anon_sym_CARET_EQ,
- anon_sym_AMP_EQ,
- anon_sym_PIPE_EQ,
- anon_sym_GT_GT_EQ,
- anon_sym_GT_GT_GT_EQ,
- anon_sym_LT_LT_EQ,
- anon_sym_STAR_STAR_EQ,
- anon_sym_AMP_AMP_EQ,
- anon_sym_PIPE_PIPE_EQ,
- anon_sym_QMARK_QMARK_EQ,
- anon_sym_LT_EQ,
- anon_sym_EQ_EQ_EQ,
- anon_sym_BANG_EQ_EQ,
- anon_sym_GT_EQ,
- anon_sym_instanceof,
- anon_sym_PLUS_PLUS,
- anon_sym_DASH_DASH,
- anon_sym_BQUOTE,
- anon_sym_satisfies,
- anon_sym_implements,
- [3663] = 13,
- ACTIONS(3412), 1,
- anon_sym_EQ_GT,
- ACTIONS(3454), 1,
- anon_sym_EQ,
- ACTIONS(3463), 1,
- anon_sym_LBRACK,
- ACTIONS(3466), 1,
- anon_sym_DOT,
- ACTIONS(3472), 1,
- anon_sym_LT,
- STATE(3194), 1,
- sym_type_arguments,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(3457), 2,
- anon_sym_COMMA,
- anon_sym_RBRACE,
- ACTIONS(3469), 2,
- anon_sym_AMP,
- anon_sym_PIPE,
- ACTIONS(3461), 4,
- sym__automatic_semicolon,
- anon_sym_SEMI,
- anon_sym_extends,
- anon_sym_PIPE_RBRACE,
- ACTIONS(3404), 13,
- sym__ternary_qmark,
- anon_sym_as,
- anon_sym_LPAREN,
- anon_sym_QMARK_DOT,
- anon_sym_LT_EQ,
- anon_sym_EQ_EQ_EQ,
- anon_sym_BANG_EQ_EQ,
- anon_sym_GT_EQ,
- anon_sym_instanceof,
- anon_sym_PLUS_PLUS,
- anon_sym_DASH_DASH,
- anon_sym_BQUOTE,
- anon_sym_satisfies,
- ACTIONS(3416), 15,
- anon_sym_PLUS_EQ,
- anon_sym_DASH_EQ,
- anon_sym_STAR_EQ,
- anon_sym_SLASH_EQ,
- anon_sym_PERCENT_EQ,
- anon_sym_CARET_EQ,
- anon_sym_AMP_EQ,
- anon_sym_PIPE_EQ,
- anon_sym_GT_GT_EQ,
- anon_sym_GT_GT_GT_EQ,
- anon_sym_LT_LT_EQ,
- anon_sym_STAR_STAR_EQ,
- anon_sym_AMP_AMP_EQ,
- anon_sym_PIPE_PIPE_EQ,
- anon_sym_QMARK_QMARK_EQ,
- ACTIONS(3400), 18,
- anon_sym_STAR,
- anon_sym_BANG,
- anon_sym_in,
- anon_sym_GT,
- anon_sym_AMP_AMP,
- anon_sym_PIPE_PIPE,
- anon_sym_GT_GT,
- anon_sym_GT_GT_GT,
- anon_sym_LT_LT,
- anon_sym_CARET,
- anon_sym_PLUS,
- anon_sym_DASH,
- anon_sym_SLASH,
- anon_sym_PERCENT,
- anon_sym_STAR_STAR,
- anon_sym_EQ_EQ,
- anon_sym_BANG_EQ,
- anon_sym_QMARK_QMARK,
- [3752] = 14,
- ACTIONS(150), 1,
- anon_sym_DQUOTE,
- ACTIONS(152), 1,
- anon_sym_SQUOTE,
- ACTIONS(229), 1,
- anon_sym_EQ_GT,
- ACTIONS(841), 1,
- anon_sym_EQ,
- ACTIONS(861), 1,
- anon_sym_in,
- ACTIONS(864), 1,
- anon_sym_of,
- ACTIONS(3343), 1,
- sym_identifier,
- STATE(1486), 1,
- sym_nested_identifier,
- STATE(1513), 1,
- sym_string,
- STATE(1710), 1,
- sym__module,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(162), 12,
- sym__ternary_qmark,
- anon_sym_LPAREN,
- anon_sym_LBRACK,
- anon_sym_DOT,
- anon_sym_QMARK_DOT,
- anon_sym_LT_EQ,
- anon_sym_EQ_EQ_EQ,
- anon_sym_BANG_EQ_EQ,
- anon_sym_GT_EQ,
- anon_sym_PLUS_PLUS,
- anon_sym_DASH_DASH,
- anon_sym_BQUOTE,
- ACTIONS(168), 15,
- anon_sym_PLUS_EQ,
- anon_sym_DASH_EQ,
- anon_sym_STAR_EQ,
- anon_sym_SLASH_EQ,
- anon_sym_PERCENT_EQ,
- anon_sym_CARET_EQ,
- anon_sym_AMP_EQ,
- anon_sym_PIPE_EQ,
- anon_sym_GT_GT_EQ,
- anon_sym_GT_GT_GT_EQ,
- anon_sym_LT_LT_EQ,
- anon_sym_STAR_STAR_EQ,
- anon_sym_AMP_AMP_EQ,
- anon_sym_PIPE_PIPE_EQ,
- anon_sym_QMARK_QMARK_EQ,
- ACTIONS(122), 23,
- anon_sym_STAR,
- anon_sym_as,
- anon_sym_BANG,
- anon_sym_GT,
- anon_sym_AMP_AMP,
- anon_sym_PIPE_PIPE,
- anon_sym_GT_GT,
- anon_sym_GT_GT_GT,
- anon_sym_LT_LT,
- anon_sym_AMP,
- anon_sym_CARET,
- anon_sym_PIPE,
- anon_sym_PLUS,
- anon_sym_DASH,
- anon_sym_SLASH,
- anon_sym_PERCENT,
- anon_sym_STAR_STAR,
- anon_sym_LT,
- anon_sym_EQ_EQ,
- anon_sym_BANG_EQ,
- anon_sym_QMARK_QMARK,
- anon_sym_instanceof,
- anon_sym_satisfies,
- [3843] = 12,
- ACTIONS(150), 1,
- anon_sym_DQUOTE,
- ACTIONS(152), 1,
- anon_sym_SQUOTE,
- ACTIONS(841), 1,
- anon_sym_EQ,
- ACTIONS(904), 1,
- anon_sym_EQ_GT,
- ACTIONS(3343), 1,
- sym_identifier,
- STATE(1486), 1,
- sym_nested_identifier,
- STATE(1513), 1,
- sym_string,
- STATE(1710), 1,
- sym__module,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(162), 13,
- sym__ternary_qmark,
- anon_sym_LPAREN,
- anon_sym_LBRACK,
- anon_sym_RBRACK,
- anon_sym_DOT,
- anon_sym_QMARK_DOT,
- anon_sym_LT_EQ,
- anon_sym_EQ_EQ_EQ,
- anon_sym_BANG_EQ_EQ,
- anon_sym_GT_EQ,
- anon_sym_PLUS_PLUS,
- anon_sym_DASH_DASH,
- anon_sym_BQUOTE,
- ACTIONS(168), 15,
- anon_sym_PLUS_EQ,
- anon_sym_DASH_EQ,
- anon_sym_STAR_EQ,
- anon_sym_SLASH_EQ,
- anon_sym_PERCENT_EQ,
- anon_sym_CARET_EQ,
- anon_sym_AMP_EQ,
- anon_sym_PIPE_EQ,
- anon_sym_GT_GT_EQ,
- anon_sym_GT_GT_GT_EQ,
- anon_sym_LT_LT_EQ,
- anon_sym_STAR_STAR_EQ,
- anon_sym_AMP_AMP_EQ,
- anon_sym_PIPE_PIPE_EQ,
- anon_sym_QMARK_QMARK_EQ,
- ACTIONS(122), 24,
- anon_sym_STAR,
- anon_sym_as,
- anon_sym_BANG,
- anon_sym_in,
- anon_sym_GT,
- anon_sym_AMP_AMP,
- anon_sym_PIPE_PIPE,
- anon_sym_GT_GT,
- anon_sym_GT_GT_GT,
- anon_sym_LT_LT,
- anon_sym_AMP,
- anon_sym_CARET,
- anon_sym_PIPE,
- anon_sym_PLUS,
- anon_sym_DASH,
- anon_sym_SLASH,
- anon_sym_PERCENT,
- anon_sym_STAR_STAR,
- anon_sym_LT,
- anon_sym_EQ_EQ,
- anon_sym_BANG_EQ,
- anon_sym_QMARK_QMARK,
- anon_sym_instanceof,
- anon_sym_satisfies,
- [3930] = 3,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(2461), 22,
- anon_sym_STAR,
- anon_sym_EQ,
- anon_sym_BANG,
- anon_sym_in,
- anon_sym_GT,
- anon_sym_AMP_AMP,
- anon_sym_PIPE_PIPE,
- anon_sym_GT_GT,
- anon_sym_GT_GT_GT,
- anon_sym_LT_LT,
- anon_sym_AMP,
- anon_sym_CARET,
- anon_sym_PIPE,
- anon_sym_PLUS,
- anon_sym_DASH,
- anon_sym_SLASH,
- anon_sym_PERCENT,
- anon_sym_STAR_STAR,
- anon_sym_LT,
- anon_sym_EQ_EQ,
- anon_sym_BANG_EQ,
- anon_sym_QMARK_QMARK,
- ACTIONS(2459), 38,
- sym__ternary_qmark,
- anon_sym_as,
- anon_sym_LBRACE,
- anon_sym_COMMA,
- anon_sym_RBRACE,
- anon_sym_LPAREN,
- anon_sym_RPAREN,
- anon_sym_of,
- anon_sym_COLON,
- anon_sym_LBRACK,
- anon_sym_RBRACK,
- anon_sym_DOT,
- anon_sym_QMARK_DOT,
- anon_sym_PLUS_EQ,
- anon_sym_DASH_EQ,
- anon_sym_STAR_EQ,
- anon_sym_SLASH_EQ,
- anon_sym_PERCENT_EQ,
- anon_sym_CARET_EQ,
- anon_sym_AMP_EQ,
- anon_sym_PIPE_EQ,
- anon_sym_GT_GT_EQ,
- anon_sym_GT_GT_GT_EQ,
- anon_sym_LT_LT_EQ,
- anon_sym_STAR_STAR_EQ,
- anon_sym_AMP_AMP_EQ,
- anon_sym_PIPE_PIPE_EQ,
- anon_sym_QMARK_QMARK_EQ,
- anon_sym_LT_EQ,
- anon_sym_EQ_EQ_EQ,
- anon_sym_BANG_EQ_EQ,
- anon_sym_GT_EQ,
- anon_sym_instanceof,
- anon_sym_PLUS_PLUS,
- anon_sym_DASH_DASH,
- anon_sym_BQUOTE,
- anon_sym_satisfies,
- anon_sym_implements,
- [3999] = 5,
- ACTIONS(3475), 1,
- anon_sym_EQ,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(3416), 15,
- anon_sym_PLUS_EQ,
- anon_sym_DASH_EQ,
- anon_sym_STAR_EQ,
- anon_sym_SLASH_EQ,
- anon_sym_PERCENT_EQ,
- anon_sym_CARET_EQ,
- anon_sym_AMP_EQ,
- anon_sym_PIPE_EQ,
- anon_sym_GT_GT_EQ,
- anon_sym_GT_GT_GT_EQ,
- anon_sym_LT_LT_EQ,
- anon_sym_STAR_STAR_EQ,
- anon_sym_AMP_AMP_EQ,
- anon_sym_PIPE_PIPE_EQ,
- anon_sym_QMARK_QMARK_EQ,
- ACTIONS(3400), 21,
- anon_sym_STAR,
- anon_sym_BANG,
- anon_sym_in,
- anon_sym_GT,
- anon_sym_AMP_AMP,
- anon_sym_PIPE_PIPE,
- anon_sym_GT_GT,
- anon_sym_GT_GT_GT,
- anon_sym_LT_LT,
- anon_sym_AMP,
- anon_sym_CARET,
- anon_sym_PIPE,
- anon_sym_PLUS,
- anon_sym_DASH,
- anon_sym_SLASH,
- anon_sym_PERCENT,
- anon_sym_STAR_STAR,
- anon_sym_LT,
- anon_sym_EQ_EQ,
- anon_sym_BANG_EQ,
- anon_sym_QMARK_QMARK,
- ACTIONS(3404), 23,
- sym__ternary_qmark,
- anon_sym_as,
- anon_sym_LBRACE,
- anon_sym_COMMA,
- anon_sym_RBRACE,
- anon_sym_LPAREN,
- anon_sym_RPAREN,
- anon_sym_of,
- anon_sym_COLON,
- anon_sym_LBRACK,
- anon_sym_RBRACK,
- anon_sym_DOT,
- anon_sym_QMARK_DOT,
- anon_sym_LT_EQ,
- anon_sym_EQ_EQ_EQ,
- anon_sym_BANG_EQ_EQ,
- anon_sym_GT_EQ,
- anon_sym_instanceof,
- anon_sym_PLUS_PLUS,
- anon_sym_DASH_DASH,
- anon_sym_BQUOTE,
- anon_sym_satisfies,
- anon_sym_implements,
- [4072] = 16,
- ACTIONS(3412), 1,
- anon_sym_EQ_GT,
- ACTIONS(3454), 1,
- anon_sym_EQ,
- ACTIONS(3461), 1,
- anon_sym_extends,
- ACTIONS(3463), 1,
- anon_sym_LBRACK,
- ACTIONS(3477), 1,
- anon_sym_COLON,
- ACTIONS(3479), 1,
- anon_sym_DOT,
- ACTIONS(3482), 1,
- anon_sym_LT,
- ACTIONS(3485), 1,
- anon_sym_QMARK,
- STATE(2856), 1,
- sym_type_arguments,
- STATE(5509), 1,
- sym_type_annotation,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(3457), 2,
- anon_sym_COMMA,
- anon_sym_RBRACK,
- ACTIONS(3469), 2,
- anon_sym_AMP,
- anon_sym_PIPE,
- ACTIONS(3404), 13,
- sym__ternary_qmark,
- anon_sym_as,
- anon_sym_LPAREN,
- anon_sym_QMARK_DOT,
- anon_sym_LT_EQ,
- anon_sym_EQ_EQ_EQ,
- anon_sym_BANG_EQ_EQ,
- anon_sym_GT_EQ,
- anon_sym_instanceof,
- anon_sym_PLUS_PLUS,
- anon_sym_DASH_DASH,
- anon_sym_BQUOTE,
- anon_sym_satisfies,
- ACTIONS(3416), 15,
- anon_sym_PLUS_EQ,
- anon_sym_DASH_EQ,
- anon_sym_STAR_EQ,
- anon_sym_SLASH_EQ,
- anon_sym_PERCENT_EQ,
- anon_sym_CARET_EQ,
- anon_sym_AMP_EQ,
- anon_sym_PIPE_EQ,
- anon_sym_GT_GT_EQ,
- anon_sym_GT_GT_GT_EQ,
- anon_sym_LT_LT_EQ,
- anon_sym_STAR_STAR_EQ,
- anon_sym_AMP_AMP_EQ,
- anon_sym_PIPE_PIPE_EQ,
- anon_sym_QMARK_QMARK_EQ,
- ACTIONS(3400), 18,
- anon_sym_STAR,
- anon_sym_BANG,
- anon_sym_in,
- anon_sym_GT,
- anon_sym_AMP_AMP,
- anon_sym_PIPE_PIPE,
- anon_sym_GT_GT,
- anon_sym_GT_GT_GT,
- anon_sym_LT_LT,
- anon_sym_CARET,
- anon_sym_PLUS,
- anon_sym_DASH,
- anon_sym_SLASH,
- anon_sym_PERCENT,
- anon_sym_STAR_STAR,
- anon_sym_EQ_EQ,
- anon_sym_BANG_EQ,
- anon_sym_QMARK_QMARK,
- [4167] = 12,
- ACTIONS(150), 1,
- anon_sym_DQUOTE,
- ACTIONS(152), 1,
- anon_sym_SQUOTE,
- ACTIONS(904), 1,
- anon_sym_EQ_GT,
- ACTIONS(926), 1,
- anon_sym_EQ,
- ACTIONS(3343), 1,
- sym_identifier,
- STATE(1486), 1,
- sym_nested_identifier,
- STATE(1513), 1,
- sym_string,
- STATE(1710), 1,
- sym__module,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(162), 13,
- sym__ternary_qmark,
- anon_sym_LPAREN,
- anon_sym_LBRACK,
- anon_sym_RBRACK,
- anon_sym_DOT,
- anon_sym_QMARK_DOT,
- anon_sym_LT_EQ,
- anon_sym_EQ_EQ_EQ,
- anon_sym_BANG_EQ_EQ,
- anon_sym_GT_EQ,
- anon_sym_PLUS_PLUS,
- anon_sym_DASH_DASH,
- anon_sym_BQUOTE,
- ACTIONS(168), 15,
- anon_sym_PLUS_EQ,
- anon_sym_DASH_EQ,
- anon_sym_STAR_EQ,
- anon_sym_SLASH_EQ,
- anon_sym_PERCENT_EQ,
- anon_sym_CARET_EQ,
- anon_sym_AMP_EQ,
- anon_sym_PIPE_EQ,
- anon_sym_GT_GT_EQ,
- anon_sym_GT_GT_GT_EQ,
- anon_sym_LT_LT_EQ,
- anon_sym_STAR_STAR_EQ,
- anon_sym_AMP_AMP_EQ,
- anon_sym_PIPE_PIPE_EQ,
- anon_sym_QMARK_QMARK_EQ,
- ACTIONS(122), 24,
- anon_sym_STAR,
- anon_sym_as,
- anon_sym_BANG,
- anon_sym_in,
- anon_sym_GT,
- anon_sym_AMP_AMP,
- anon_sym_PIPE_PIPE,
- anon_sym_GT_GT,
- anon_sym_GT_GT_GT,
- anon_sym_LT_LT,
- anon_sym_AMP,
- anon_sym_CARET,
- anon_sym_PIPE,
- anon_sym_PLUS,
- anon_sym_DASH,
- anon_sym_SLASH,
- anon_sym_PERCENT,
- anon_sym_STAR_STAR,
- anon_sym_LT,
- anon_sym_EQ_EQ,
- anon_sym_BANG_EQ,
- anon_sym_QMARK_QMARK,
- anon_sym_instanceof,
- anon_sym_satisfies,
- [4254] = 12,
- ACTIONS(3402), 1,
- anon_sym_EQ,
- ACTIONS(3412), 1,
- anon_sym_EQ_GT,
- ACTIONS(3461), 1,
- anon_sym_extends,
- ACTIONS(3479), 1,
- anon_sym_DOT,
- ACTIONS(3482), 1,
- anon_sym_LT,
- STATE(2856), 1,
- sym_type_arguments,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(3463), 2,
- anon_sym_COMMA,
- anon_sym_LBRACK,
- ACTIONS(3469), 3,
- anon_sym_GT,
- anon_sym_AMP,
- anon_sym_PIPE,
- ACTIONS(3416), 15,
- anon_sym_PLUS_EQ,
- anon_sym_DASH_EQ,
- anon_sym_STAR_EQ,
- anon_sym_SLASH_EQ,
- anon_sym_PERCENT_EQ,
- anon_sym_CARET_EQ,
- anon_sym_AMP_EQ,
- anon_sym_PIPE_EQ,
- anon_sym_GT_GT_EQ,
- anon_sym_GT_GT_GT_EQ,
- anon_sym_LT_LT_EQ,
- anon_sym_STAR_STAR_EQ,
- anon_sym_AMP_AMP_EQ,
- anon_sym_PIPE_PIPE_EQ,
- anon_sym_QMARK_QMARK_EQ,
- ACTIONS(3400), 17,
- anon_sym_STAR,
- anon_sym_BANG,
- anon_sym_in,
- anon_sym_AMP_AMP,
- anon_sym_PIPE_PIPE,
- anon_sym_GT_GT,
- anon_sym_GT_GT_GT,
- anon_sym_LT_LT,
- anon_sym_CARET,
- anon_sym_PLUS,
- anon_sym_DASH,
- anon_sym_SLASH,
- anon_sym_PERCENT,
- anon_sym_STAR_STAR,
- anon_sym_EQ_EQ,
- anon_sym_BANG_EQ,
- anon_sym_QMARK_QMARK,
- ACTIONS(3404), 17,
- sym__ternary_qmark,
- anon_sym_as,
- anon_sym_RBRACE,
- anon_sym_LPAREN,
- anon_sym_RPAREN,
- anon_sym_COLON,
- anon_sym_RBRACK,
- anon_sym_QMARK_DOT,
- anon_sym_LT_EQ,
- anon_sym_EQ_EQ_EQ,
- anon_sym_BANG_EQ_EQ,
- anon_sym_GT_EQ,
- anon_sym_instanceof,
- anon_sym_PLUS_PLUS,
- anon_sym_DASH_DASH,
- anon_sym_BQUOTE,
- anon_sym_satisfies,
- [4341] = 8,
- ACTIONS(3438), 1,
- anon_sym_LPAREN,
- ACTIONS(3492), 1,
- anon_sym_DOT,
- ACTIONS(3494), 1,
- anon_sym_LT,
- STATE(1194), 1,
- sym_arguments,
- STATE(5478), 1,
- sym_type_arguments,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(3490), 14,
- anon_sym_LBRACE,
- anon_sym_BANG,
- anon_sym_LBRACK,
- sym_glimmer_opening_tag,
- anon_sym_DQUOTE,
- anon_sym_SQUOTE,
- anon_sym_DOT_DOT_DOT,
- anon_sym_TILDE,
- anon_sym_PLUS_PLUS,
- anon_sym_DASH_DASH,
- anon_sym_BQUOTE,
- sym_number,
- sym_private_property_identifier,
- anon_sym_AT,
- ACTIONS(3488), 41,
- anon_sym_export,
- anon_sym_type,
- anon_sym_namespace,
- anon_sym_typeof,
- anon_sym_import,
- anon_sym_let,
- anon_sym_await,
- anon_sym_yield,
- anon_sym_class,
- anon_sym_async,
- anon_sym_function,
- anon_sym_new,
- anon_sym_using,
- anon_sym_PLUS,
- anon_sym_DASH,
- anon_sym_SLASH,
- anon_sym_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_override,
- anon_sym_module,
- anon_sym_any,
- anon_sym_number,
- anon_sym_boolean,
- anon_sym_string,
- anon_sym_symbol,
- anon_sym_object,
- [4420] = 15,
- ACTIONS(3412), 1,
- anon_sym_EQ_GT,
- ACTIONS(3454), 1,
- anon_sym_EQ,
- ACTIONS(3457), 1,
- anon_sym_RPAREN,
- ACTIONS(3461), 1,
- anon_sym_extends,
- ACTIONS(3463), 1,
- anon_sym_LBRACK,
- ACTIONS(3479), 1,
- anon_sym_DOT,
- ACTIONS(3482), 1,
- anon_sym_LT,
- ACTIONS(3499), 1,
- anon_sym_QMARK,
- STATE(2856), 1,
- sym_type_arguments,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(3469), 2,
- anon_sym_AMP,
- anon_sym_PIPE,
- ACTIONS(3496), 2,
- anon_sym_COMMA,
- anon_sym_COLON,
- ACTIONS(3404), 13,
- sym__ternary_qmark,
- anon_sym_as,
- anon_sym_LPAREN,
- anon_sym_QMARK_DOT,
- anon_sym_LT_EQ,
- anon_sym_EQ_EQ_EQ,
- anon_sym_BANG_EQ_EQ,
- anon_sym_GT_EQ,
- anon_sym_instanceof,
- anon_sym_PLUS_PLUS,
- anon_sym_DASH_DASH,
- anon_sym_BQUOTE,
- anon_sym_satisfies,
- ACTIONS(3416), 15,
- anon_sym_PLUS_EQ,
- anon_sym_DASH_EQ,
- anon_sym_STAR_EQ,
- anon_sym_SLASH_EQ,
- anon_sym_PERCENT_EQ,
- anon_sym_CARET_EQ,
- anon_sym_AMP_EQ,
- anon_sym_PIPE_EQ,
- anon_sym_GT_GT_EQ,
- anon_sym_GT_GT_GT_EQ,
- anon_sym_LT_LT_EQ,
- anon_sym_STAR_STAR_EQ,
- anon_sym_AMP_AMP_EQ,
- anon_sym_PIPE_PIPE_EQ,
- anon_sym_QMARK_QMARK_EQ,
- ACTIONS(3400), 18,
- anon_sym_STAR,
- anon_sym_BANG,
- anon_sym_in,
- anon_sym_GT,
- anon_sym_AMP_AMP,
- anon_sym_PIPE_PIPE,
- anon_sym_GT_GT,
- anon_sym_GT_GT_GT,
- anon_sym_LT_LT,
- anon_sym_CARET,
- anon_sym_PLUS,
- anon_sym_DASH,
- anon_sym_SLASH,
- anon_sym_PERCENT,
- anon_sym_STAR_STAR,
- anon_sym_EQ_EQ,
- anon_sym_BANG_EQ,
- anon_sym_QMARK_QMARK,
- [4512] = 12,
- ACTIONS(150), 1,
- anon_sym_DQUOTE,
- ACTIONS(152), 1,
- anon_sym_SQUOTE,
- ACTIONS(229), 1,
- anon_sym_EQ_GT,
- ACTIONS(988), 1,
- anon_sym_EQ,
- ACTIONS(3343), 1,
- sym_identifier,
- STATE(1486), 1,
- sym_nested_identifier,
- STATE(1513), 1,
- sym_string,
- STATE(1710), 1,
- sym__module,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(162), 12,
- sym__ternary_qmark,
- anon_sym_LPAREN,
- anon_sym_LBRACK,
- anon_sym_DOT,
- anon_sym_QMARK_DOT,
- anon_sym_LT_EQ,
- anon_sym_EQ_EQ_EQ,
- anon_sym_BANG_EQ_EQ,
- anon_sym_GT_EQ,
- anon_sym_PLUS_PLUS,
- anon_sym_DASH_DASH,
- anon_sym_BQUOTE,
- ACTIONS(168), 15,
- anon_sym_PLUS_EQ,
- anon_sym_DASH_EQ,
- anon_sym_STAR_EQ,
- anon_sym_SLASH_EQ,
- anon_sym_PERCENT_EQ,
- anon_sym_CARET_EQ,
- anon_sym_AMP_EQ,
- anon_sym_PIPE_EQ,
- anon_sym_GT_GT_EQ,
- anon_sym_GT_GT_GT_EQ,
- anon_sym_LT_LT_EQ,
- anon_sym_STAR_STAR_EQ,
- anon_sym_AMP_AMP_EQ,
- anon_sym_PIPE_PIPE_EQ,
- anon_sym_QMARK_QMARK_EQ,
- ACTIONS(122), 24,
- anon_sym_STAR,
- anon_sym_as,
- anon_sym_BANG,
- anon_sym_in,
- anon_sym_GT,
- anon_sym_AMP_AMP,
- anon_sym_PIPE_PIPE,
- anon_sym_GT_GT,
- anon_sym_GT_GT_GT,
- anon_sym_LT_LT,
- anon_sym_AMP,
- anon_sym_CARET,
- anon_sym_PIPE,
- anon_sym_PLUS,
- anon_sym_DASH,
- anon_sym_SLASH,
- anon_sym_PERCENT,
- anon_sym_STAR_STAR,
- anon_sym_LT,
- anon_sym_EQ_EQ,
- anon_sym_BANG_EQ,
- anon_sym_QMARK_QMARK,
- anon_sym_instanceof,
- anon_sym_satisfies,
- [4598] = 12,
- ACTIONS(150), 1,
- anon_sym_DQUOTE,
- ACTIONS(152), 1,
- anon_sym_SQUOTE,
- ACTIONS(229), 1,
- anon_sym_EQ_GT,
- ACTIONS(982), 1,
- anon_sym_EQ,
- ACTIONS(3343), 1,
- sym_identifier,
- STATE(1486), 1,
- sym_nested_identifier,
- STATE(1513), 1,
- sym_string,
- STATE(1710), 1,
- sym__module,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(162), 12,
- sym__ternary_qmark,
- anon_sym_LPAREN,
- anon_sym_LBRACK,
- anon_sym_DOT,
- anon_sym_QMARK_DOT,
- anon_sym_LT_EQ,
- anon_sym_EQ_EQ_EQ,
- anon_sym_BANG_EQ_EQ,
- anon_sym_GT_EQ,
- anon_sym_PLUS_PLUS,
- anon_sym_DASH_DASH,
- anon_sym_BQUOTE,
- ACTIONS(168), 15,
- anon_sym_PLUS_EQ,
- anon_sym_DASH_EQ,
- anon_sym_STAR_EQ,
- anon_sym_SLASH_EQ,
- anon_sym_PERCENT_EQ,
- anon_sym_CARET_EQ,
- anon_sym_AMP_EQ,
- anon_sym_PIPE_EQ,
- anon_sym_GT_GT_EQ,
- anon_sym_GT_GT_GT_EQ,
- anon_sym_LT_LT_EQ,
- anon_sym_STAR_STAR_EQ,
- anon_sym_AMP_AMP_EQ,
- anon_sym_PIPE_PIPE_EQ,
- anon_sym_QMARK_QMARK_EQ,
- ACTIONS(122), 24,
- anon_sym_STAR,
- anon_sym_as,
- anon_sym_BANG,
- anon_sym_in,
- anon_sym_GT,
- anon_sym_AMP_AMP,
- anon_sym_PIPE_PIPE,
- anon_sym_GT_GT,
- anon_sym_GT_GT_GT,
- anon_sym_LT_LT,
- anon_sym_AMP,
- anon_sym_CARET,
- anon_sym_PIPE,
- anon_sym_PLUS,
- anon_sym_DASH,
- anon_sym_SLASH,
- anon_sym_PERCENT,
- anon_sym_STAR_STAR,
- anon_sym_LT,
- anon_sym_EQ_EQ,
- anon_sym_BANG_EQ,
- anon_sym_QMARK_QMARK,
- anon_sym_instanceof,
- anon_sym_satisfies,
- [4684] = 14,
- ACTIONS(3438), 1,
- anon_sym_LPAREN,
- ACTIONS(3440), 1,
- anon_sym_DOT,
- ACTIONS(3442), 1,
- anon_sym_QMARK_DOT,
- ACTIONS(3444), 1,
- anon_sym_LT,
- ACTIONS(3501), 1,
- anon_sym_EQ,
- ACTIONS(3503), 1,
- anon_sym_EQ_GT,
- STATE(2829), 1,
- sym_arguments,
- STATE(2852), 1,
- sym_type_arguments,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(3406), 3,
- anon_sym_COMMA,
- anon_sym_LBRACK,
- anon_sym_extends,
- ACTIONS(3418), 3,
- anon_sym_GT,
- anon_sym_AMP,
- anon_sym_PIPE,
- ACTIONS(3404), 13,
- sym__automatic_semicolon,
- sym__ternary_qmark,
- anon_sym_as,
- anon_sym_SEMI,
- anon_sym_LT_EQ,
- anon_sym_EQ_EQ_EQ,
- anon_sym_BANG_EQ_EQ,
- anon_sym_GT_EQ,
- anon_sym_instanceof,
- anon_sym_PLUS_PLUS,
- anon_sym_DASH_DASH,
- anon_sym_BQUOTE,
- anon_sym_satisfies,
- ACTIONS(3416), 15,
- anon_sym_PLUS_EQ,
- anon_sym_DASH_EQ,
- anon_sym_STAR_EQ,
- anon_sym_SLASH_EQ,
- anon_sym_PERCENT_EQ,
- anon_sym_CARET_EQ,
- anon_sym_AMP_EQ,
- anon_sym_PIPE_EQ,
- anon_sym_GT_GT_EQ,
- anon_sym_GT_GT_GT_EQ,
- anon_sym_LT_LT_EQ,
- anon_sym_STAR_STAR_EQ,
- anon_sym_AMP_AMP_EQ,
- anon_sym_PIPE_PIPE_EQ,
- anon_sym_QMARK_QMARK_EQ,
- ACTIONS(3400), 17,
- anon_sym_STAR,
- anon_sym_BANG,
- anon_sym_in,
- anon_sym_AMP_AMP,
- anon_sym_PIPE_PIPE,
- anon_sym_GT_GT,
- anon_sym_GT_GT_GT,
- anon_sym_LT_LT,
- anon_sym_CARET,
- anon_sym_PLUS,
- anon_sym_DASH,
- anon_sym_SLASH,
- anon_sym_PERCENT,
- anon_sym_STAR_STAR,
- anon_sym_EQ_EQ,
- anon_sym_BANG_EQ,
- anon_sym_QMARK_QMARK,
- [4774] = 9,
- ACTIONS(119), 1,
- anon_sym_EQ,
- ACTIONS(160), 1,
- anon_sym_EQ_GT,
- ACTIONS(3505), 1,
- anon_sym_LBRACK,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(3508), 2,
- anon_sym_AMP,
- anon_sym_PIPE,
- ACTIONS(1650), 6,
- sym__automatic_semicolon,
- anon_sym_COMMA,
- anon_sym_RBRACE,
- anon_sym_SEMI,
- anon_sym_extends,
- anon_sym_PIPE_RBRACE,
- ACTIONS(162), 14,
- sym__ternary_qmark,
- anon_sym_as,
- anon_sym_LPAREN,
- anon_sym_DOT,
- anon_sym_QMARK_DOT,
- anon_sym_LT_EQ,
- anon_sym_EQ_EQ_EQ,
- anon_sym_BANG_EQ_EQ,
- anon_sym_GT_EQ,
- anon_sym_instanceof,
- anon_sym_PLUS_PLUS,
- anon_sym_DASH_DASH,
- anon_sym_BQUOTE,
- anon_sym_satisfies,
- ACTIONS(168), 15,
- anon_sym_PLUS_EQ,
- anon_sym_DASH_EQ,
- anon_sym_STAR_EQ,
- anon_sym_SLASH_EQ,
- anon_sym_PERCENT_EQ,
- anon_sym_CARET_EQ,
- anon_sym_AMP_EQ,
- anon_sym_PIPE_EQ,
- anon_sym_GT_GT_EQ,
- anon_sym_GT_GT_GT_EQ,
- anon_sym_LT_LT_EQ,
- anon_sym_STAR_STAR_EQ,
- anon_sym_AMP_AMP_EQ,
- anon_sym_PIPE_PIPE_EQ,
- anon_sym_QMARK_QMARK_EQ,
- ACTIONS(122), 19,
- anon_sym_STAR,
- anon_sym_BANG,
- anon_sym_in,
- anon_sym_GT,
- anon_sym_AMP_AMP,
- anon_sym_PIPE_PIPE,
- anon_sym_GT_GT,
- anon_sym_GT_GT_GT,
- anon_sym_LT_LT,
- anon_sym_CARET,
- anon_sym_PLUS,
- anon_sym_DASH,
- anon_sym_SLASH,
- anon_sym_PERCENT,
- anon_sym_STAR_STAR,
- anon_sym_LT,
- anon_sym_EQ_EQ,
- anon_sym_BANG_EQ,
- anon_sym_QMARK_QMARK,
- [4854] = 8,
- ACTIONS(224), 1,
- anon_sym_EQ,
- ACTIONS(229), 1,
- anon_sym_EQ_GT,
- ACTIONS(793), 1,
- anon_sym_QMARK,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(227), 5,
- anon_sym_COMMA,
- anon_sym_RBRACE,
- anon_sym_RPAREN,
- anon_sym_COLON,
- anon_sym_RBRACK,
- ACTIONS(162), 15,
- sym__ternary_qmark,
- anon_sym_as,
- anon_sym_LPAREN,
- anon_sym_LBRACK,
- anon_sym_DOT,
- anon_sym_QMARK_DOT,
- anon_sym_LT_EQ,
- anon_sym_EQ_EQ_EQ,
- anon_sym_BANG_EQ_EQ,
- anon_sym_GT_EQ,
- anon_sym_instanceof,
- anon_sym_PLUS_PLUS,
- anon_sym_DASH_DASH,
- anon_sym_BQUOTE,
- anon_sym_satisfies,
- ACTIONS(168), 15,
- anon_sym_PLUS_EQ,
- anon_sym_DASH_EQ,
- anon_sym_STAR_EQ,
- anon_sym_SLASH_EQ,
- anon_sym_PERCENT_EQ,
- anon_sym_CARET_EQ,
- anon_sym_AMP_EQ,
- anon_sym_PIPE_EQ,
- anon_sym_GT_GT_EQ,
- anon_sym_GT_GT_GT_EQ,
- anon_sym_LT_LT_EQ,
- anon_sym_STAR_STAR_EQ,
- anon_sym_AMP_AMP_EQ,
- anon_sym_PIPE_PIPE_EQ,
- anon_sym_QMARK_QMARK_EQ,
- ACTIONS(122), 21,
- anon_sym_STAR,
- anon_sym_BANG,
- anon_sym_in,
- anon_sym_GT,
- anon_sym_AMP_AMP,
- anon_sym_PIPE_PIPE,
- anon_sym_GT_GT,
- anon_sym_GT_GT_GT,
- anon_sym_LT_LT,
- anon_sym_AMP,
- anon_sym_CARET,
- anon_sym_PIPE,
- anon_sym_PLUS,
- anon_sym_DASH,
- anon_sym_SLASH,
- anon_sym_PERCENT,
- anon_sym_STAR_STAR,
- anon_sym_LT,
- anon_sym_EQ_EQ,
- anon_sym_BANG_EQ,
- anon_sym_QMARK_QMARK,
- [4932] = 12,
- ACTIONS(150), 1,
- anon_sym_DQUOTE,
- ACTIONS(152), 1,
- anon_sym_SQUOTE,
- ACTIONS(229), 1,
- anon_sym_EQ_GT,
- ACTIONS(978), 1,
- anon_sym_EQ,
- ACTIONS(3343), 1,
- sym_identifier,
- STATE(1486), 1,
- sym_nested_identifier,
- STATE(1513), 1,
- sym_string,
- STATE(1710), 1,
- sym__module,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(162), 12,
- sym__ternary_qmark,
- anon_sym_LPAREN,
- anon_sym_LBRACK,
- anon_sym_DOT,
- anon_sym_QMARK_DOT,
- anon_sym_LT_EQ,
- anon_sym_EQ_EQ_EQ,
- anon_sym_BANG_EQ_EQ,
- anon_sym_GT_EQ,
- anon_sym_PLUS_PLUS,
- anon_sym_DASH_DASH,
- anon_sym_BQUOTE,
- ACTIONS(168), 15,
- anon_sym_PLUS_EQ,
- anon_sym_DASH_EQ,
- anon_sym_STAR_EQ,
- anon_sym_SLASH_EQ,
- anon_sym_PERCENT_EQ,
- anon_sym_CARET_EQ,
- anon_sym_AMP_EQ,
- anon_sym_PIPE_EQ,
- anon_sym_GT_GT_EQ,
- anon_sym_GT_GT_GT_EQ,
- anon_sym_LT_LT_EQ,
- anon_sym_STAR_STAR_EQ,
- anon_sym_AMP_AMP_EQ,
- anon_sym_PIPE_PIPE_EQ,
- anon_sym_QMARK_QMARK_EQ,
- ACTIONS(122), 24,
- anon_sym_STAR,
- anon_sym_as,
- anon_sym_BANG,
- anon_sym_in,
- anon_sym_GT,
- anon_sym_AMP_AMP,
- anon_sym_PIPE_PIPE,
- anon_sym_GT_GT,
- anon_sym_GT_GT_GT,
- anon_sym_LT_LT,
- anon_sym_AMP,
- anon_sym_CARET,
- anon_sym_PIPE,
- anon_sym_PLUS,
- anon_sym_DASH,
- anon_sym_SLASH,
- anon_sym_PERCENT,
- anon_sym_STAR_STAR,
- anon_sym_LT,
- anon_sym_EQ_EQ,
- anon_sym_BANG_EQ,
- anon_sym_QMARK_QMARK,
- anon_sym_instanceof,
- anon_sym_satisfies,
- [5018] = 8,
- ACTIONS(119), 1,
- anon_sym_EQ,
- ACTIONS(160), 1,
- anon_sym_EQ_GT,
- ACTIONS(793), 1,
- anon_sym_QMARK,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(128), 5,
- anon_sym_COMMA,
- anon_sym_RBRACE,
- anon_sym_RPAREN,
- anon_sym_COLON,
- anon_sym_RBRACK,
- ACTIONS(162), 15,
- sym__ternary_qmark,
- anon_sym_as,
- anon_sym_LPAREN,
- anon_sym_LBRACK,
- anon_sym_DOT,
- anon_sym_QMARK_DOT,
- anon_sym_LT_EQ,
- anon_sym_EQ_EQ_EQ,
- anon_sym_BANG_EQ_EQ,
- anon_sym_GT_EQ,
- anon_sym_instanceof,
- anon_sym_PLUS_PLUS,
- anon_sym_DASH_DASH,
- anon_sym_BQUOTE,
- anon_sym_satisfies,
- ACTIONS(168), 15,
- anon_sym_PLUS_EQ,
- anon_sym_DASH_EQ,
- anon_sym_STAR_EQ,
- anon_sym_SLASH_EQ,
- anon_sym_PERCENT_EQ,
- anon_sym_CARET_EQ,
- anon_sym_AMP_EQ,
- anon_sym_PIPE_EQ,
- anon_sym_GT_GT_EQ,
- anon_sym_GT_GT_GT_EQ,
- anon_sym_LT_LT_EQ,
- anon_sym_STAR_STAR_EQ,
- anon_sym_AMP_AMP_EQ,
- anon_sym_PIPE_PIPE_EQ,
- anon_sym_QMARK_QMARK_EQ,
- ACTIONS(122), 21,
- anon_sym_STAR,
- anon_sym_BANG,
- anon_sym_in,
- anon_sym_GT,
- anon_sym_AMP_AMP,
- anon_sym_PIPE_PIPE,
- anon_sym_GT_GT,
- anon_sym_GT_GT_GT,
- anon_sym_LT_LT,
- anon_sym_AMP,
- anon_sym_CARET,
- anon_sym_PIPE,
- anon_sym_PLUS,
- anon_sym_DASH,
- anon_sym_SLASH,
- anon_sym_PERCENT,
- anon_sym_STAR_STAR,
- anon_sym_LT,
- anon_sym_EQ_EQ,
- anon_sym_BANG_EQ,
- anon_sym_QMARK_QMARK,
- [5096] = 8,
- ACTIONS(3499), 1,
- anon_sym_QMARK,
- ACTIONS(3511), 1,
- anon_sym_EQ,
- ACTIONS(3516), 1,
- anon_sym_EQ_GT,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(3514), 5,
- anon_sym_COMMA,
- anon_sym_RBRACE,
- anon_sym_RPAREN,
- anon_sym_COLON,
- anon_sym_RBRACK,
- ACTIONS(3404), 15,
- sym__ternary_qmark,
- anon_sym_as,
- anon_sym_LPAREN,
- anon_sym_LBRACK,
- anon_sym_DOT,
- anon_sym_QMARK_DOT,
- anon_sym_LT_EQ,
- anon_sym_EQ_EQ_EQ,
- anon_sym_BANG_EQ_EQ,
- anon_sym_GT_EQ,
- anon_sym_instanceof,
- anon_sym_PLUS_PLUS,
- anon_sym_DASH_DASH,
- anon_sym_BQUOTE,
- anon_sym_satisfies,
- ACTIONS(3416), 15,
- anon_sym_PLUS_EQ,
- anon_sym_DASH_EQ,
- anon_sym_STAR_EQ,
- anon_sym_SLASH_EQ,
- anon_sym_PERCENT_EQ,
- anon_sym_CARET_EQ,
- anon_sym_AMP_EQ,
- anon_sym_PIPE_EQ,
- anon_sym_GT_GT_EQ,
- anon_sym_GT_GT_GT_EQ,
- anon_sym_LT_LT_EQ,
- anon_sym_STAR_STAR_EQ,
- anon_sym_AMP_AMP_EQ,
- anon_sym_PIPE_PIPE_EQ,
- anon_sym_QMARK_QMARK_EQ,
- ACTIONS(3400), 21,
- anon_sym_STAR,
- anon_sym_BANG,
- anon_sym_in,
- anon_sym_GT,
- anon_sym_AMP_AMP,
- anon_sym_PIPE_PIPE,
- anon_sym_GT_GT,
- anon_sym_GT_GT_GT,
- anon_sym_LT_LT,
- anon_sym_AMP,
- anon_sym_CARET,
- anon_sym_PIPE,
- anon_sym_PLUS,
- anon_sym_DASH,
- anon_sym_SLASH,
- anon_sym_PERCENT,
- anon_sym_STAR_STAR,
- anon_sym_LT,
- anon_sym_EQ_EQ,
- anon_sym_BANG_EQ,
- anon_sym_QMARK_QMARK,
- [5174] = 14,
- ACTIONS(3438), 1,
- anon_sym_LPAREN,
- ACTIONS(3440), 1,
- anon_sym_DOT,
- ACTIONS(3442), 1,
- anon_sym_QMARK_DOT,
- ACTIONS(3444), 1,
- anon_sym_LT,
- ACTIONS(3518), 1,
- anon_sym_EQ,
- ACTIONS(3520), 1,
- anon_sym_EQ_GT,
- STATE(2829), 1,
- sym_arguments,
- STATE(2852), 1,
- sym_type_arguments,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(3406), 3,
- anon_sym_COMMA,
- anon_sym_LBRACK,
- anon_sym_extends,
- ACTIONS(3418), 3,
- anon_sym_GT,
- anon_sym_AMP,
- anon_sym_PIPE,
- ACTIONS(3404), 13,
- sym__ternary_qmark,
- anon_sym_as,
- anon_sym_RBRACE,
- anon_sym_COLON,
- anon_sym_LT_EQ,
- anon_sym_EQ_EQ_EQ,
- anon_sym_BANG_EQ_EQ,
- anon_sym_GT_EQ,
- anon_sym_instanceof,
- anon_sym_PLUS_PLUS,
- anon_sym_DASH_DASH,
- anon_sym_BQUOTE,
- anon_sym_satisfies,
- ACTIONS(3416), 15,
- anon_sym_PLUS_EQ,
- anon_sym_DASH_EQ,
- anon_sym_STAR_EQ,
- anon_sym_SLASH_EQ,
- anon_sym_PERCENT_EQ,
- anon_sym_CARET_EQ,
- anon_sym_AMP_EQ,
- anon_sym_PIPE_EQ,
- anon_sym_GT_GT_EQ,
- anon_sym_GT_GT_GT_EQ,
- anon_sym_LT_LT_EQ,
- anon_sym_STAR_STAR_EQ,
- anon_sym_AMP_AMP_EQ,
- anon_sym_PIPE_PIPE_EQ,
- anon_sym_QMARK_QMARK_EQ,
- ACTIONS(3400), 17,
- anon_sym_STAR,
- anon_sym_BANG,
- anon_sym_in,
- anon_sym_AMP_AMP,
- anon_sym_PIPE_PIPE,
- anon_sym_GT_GT,
- anon_sym_GT_GT_GT,
- anon_sym_LT_LT,
- anon_sym_CARET,
- anon_sym_PLUS,
- anon_sym_DASH,
- anon_sym_SLASH,
- anon_sym_PERCENT,
- anon_sym_STAR_STAR,
- anon_sym_EQ_EQ,
- anon_sym_BANG_EQ,
- anon_sym_QMARK_QMARK,
- [5264] = 3,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(3524), 16,
- anon_sym_LBRACE,
- anon_sym_BANG,
- anon_sym_LPAREN,
- anon_sym_RPAREN,
- anon_sym_LBRACK,
- sym_glimmer_opening_tag,
- anon_sym_DQUOTE,
- anon_sym_SQUOTE,
- anon_sym_DOT_DOT_DOT,
- anon_sym_TILDE,
- anon_sym_PLUS_PLUS,
- anon_sym_DASH_DASH,
- anon_sym_BQUOTE,
- sym_number,
- sym_private_property_identifier,
- anon_sym_AT,
- ACTIONS(3522), 43,
- anon_sym_export,
- anon_sym_type,
- anon_sym_namespace,
- anon_sym_typeof,
- anon_sym_import,
- anon_sym_let,
- anon_sym_await,
- anon_sym_yield,
- anon_sym_class,
- anon_sym_async,
- anon_sym_function,
- anon_sym_new,
- anon_sym_using,
- anon_sym_PLUS,
- anon_sym_DASH,
- anon_sym_SLASH,
- anon_sym_LT,
- anon_sym_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_override,
- anon_sym_module,
- anon_sym_any,
- anon_sym_number,
- anon_sym_boolean,
- anon_sym_string,
- anon_sym_symbol,
- anon_sym_object,
- anon_sym_abstract,
- [5332] = 12,
- ACTIONS(150), 1,
- anon_sym_DQUOTE,
- ACTIONS(152), 1,
- anon_sym_SQUOTE,
- ACTIONS(229), 1,
- anon_sym_EQ_GT,
- ACTIONS(841), 1,
- anon_sym_EQ,
- ACTIONS(3343), 1,
- sym_identifier,
- STATE(1486), 1,
- sym_nested_identifier,
- STATE(1513), 1,
- sym_string,
- STATE(1710), 1,
- sym__module,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(162), 12,
- sym__ternary_qmark,
- anon_sym_LPAREN,
- anon_sym_LBRACK,
- anon_sym_DOT,
- anon_sym_QMARK_DOT,
- anon_sym_LT_EQ,
- anon_sym_EQ_EQ_EQ,
- anon_sym_BANG_EQ_EQ,
- anon_sym_GT_EQ,
- anon_sym_PLUS_PLUS,
- anon_sym_DASH_DASH,
- anon_sym_BQUOTE,
- ACTIONS(168), 15,
- anon_sym_PLUS_EQ,
- anon_sym_DASH_EQ,
- anon_sym_STAR_EQ,
- anon_sym_SLASH_EQ,
- anon_sym_PERCENT_EQ,
- anon_sym_CARET_EQ,
- anon_sym_AMP_EQ,
- anon_sym_PIPE_EQ,
- anon_sym_GT_GT_EQ,
- anon_sym_GT_GT_GT_EQ,
- anon_sym_LT_LT_EQ,
- anon_sym_STAR_STAR_EQ,
- anon_sym_AMP_AMP_EQ,
- anon_sym_PIPE_PIPE_EQ,
- anon_sym_QMARK_QMARK_EQ,
- ACTIONS(122), 24,
- anon_sym_STAR,
- anon_sym_as,
- anon_sym_BANG,
- anon_sym_in,
- anon_sym_GT,
- anon_sym_AMP_AMP,
- anon_sym_PIPE_PIPE,
- anon_sym_GT_GT,
- anon_sym_GT_GT_GT,
- anon_sym_LT_LT,
- anon_sym_AMP,
- anon_sym_CARET,
- anon_sym_PIPE,
- anon_sym_PLUS,
- anon_sym_DASH,
- anon_sym_SLASH,
- anon_sym_PERCENT,
- anon_sym_STAR_STAR,
- anon_sym_LT,
- anon_sym_EQ_EQ,
- anon_sym_BANG_EQ,
- anon_sym_QMARK_QMARK,
- anon_sym_instanceof,
- anon_sym_satisfies,
- [5418] = 12,
- ACTIONS(150), 1,
- anon_sym_DQUOTE,
- ACTIONS(152), 1,
- anon_sym_SQUOTE,
- ACTIONS(229), 1,
- anon_sym_EQ_GT,
- ACTIONS(976), 1,
- anon_sym_EQ,
- ACTIONS(3343), 1,
- sym_identifier,
- STATE(1486), 1,
- sym_nested_identifier,
- STATE(1513), 1,
- sym_string,
- STATE(1710), 1,
- sym__module,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(162), 12,
- sym__ternary_qmark,
- anon_sym_LPAREN,
- anon_sym_LBRACK,
- anon_sym_DOT,
- anon_sym_QMARK_DOT,
- anon_sym_LT_EQ,
- anon_sym_EQ_EQ_EQ,
- anon_sym_BANG_EQ_EQ,
- anon_sym_GT_EQ,
- anon_sym_PLUS_PLUS,
- anon_sym_DASH_DASH,
- anon_sym_BQUOTE,
- ACTIONS(168), 15,
- anon_sym_PLUS_EQ,
- anon_sym_DASH_EQ,
- anon_sym_STAR_EQ,
- anon_sym_SLASH_EQ,
- anon_sym_PERCENT_EQ,
- anon_sym_CARET_EQ,
- anon_sym_AMP_EQ,
- anon_sym_PIPE_EQ,
- anon_sym_GT_GT_EQ,
- anon_sym_GT_GT_GT_EQ,
- anon_sym_LT_LT_EQ,
- anon_sym_STAR_STAR_EQ,
- anon_sym_AMP_AMP_EQ,
- anon_sym_PIPE_PIPE_EQ,
- anon_sym_QMARK_QMARK_EQ,
- ACTIONS(122), 24,
- anon_sym_STAR,
- anon_sym_as,
- anon_sym_BANG,
- anon_sym_in,
- anon_sym_GT,
- anon_sym_AMP_AMP,
- anon_sym_PIPE_PIPE,
- anon_sym_GT_GT,
- anon_sym_GT_GT_GT,
- anon_sym_LT_LT,
- anon_sym_AMP,
- anon_sym_CARET,
- anon_sym_PIPE,
- anon_sym_PLUS,
- anon_sym_DASH,
- anon_sym_SLASH,
- anon_sym_PERCENT,
- anon_sym_STAR_STAR,
- anon_sym_LT,
- anon_sym_EQ_EQ,
- anon_sym_BANG_EQ,
- anon_sym_QMARK_QMARK,
- anon_sym_instanceof,
- anon_sym_satisfies,
- [5504] = 12,
- ACTIONS(150), 1,
- anon_sym_DQUOTE,
- ACTIONS(152), 1,
- anon_sym_SQUOTE,
- ACTIONS(229), 1,
- anon_sym_EQ_GT,
- ACTIONS(972), 1,
- anon_sym_EQ,
- ACTIONS(3343), 1,
- sym_identifier,
- STATE(1486), 1,
- sym_nested_identifier,
- STATE(1513), 1,
- sym_string,
- STATE(1710), 1,
- sym__module,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(162), 12,
- sym__ternary_qmark,
- anon_sym_LPAREN,
- anon_sym_LBRACK,
- anon_sym_DOT,
- anon_sym_QMARK_DOT,
- anon_sym_LT_EQ,
- anon_sym_EQ_EQ_EQ,
- anon_sym_BANG_EQ_EQ,
- anon_sym_GT_EQ,
- anon_sym_PLUS_PLUS,
- anon_sym_DASH_DASH,
- anon_sym_BQUOTE,
- ACTIONS(168), 15,
- anon_sym_PLUS_EQ,
- anon_sym_DASH_EQ,
- anon_sym_STAR_EQ,
- anon_sym_SLASH_EQ,
- anon_sym_PERCENT_EQ,
- anon_sym_CARET_EQ,
- anon_sym_AMP_EQ,
- anon_sym_PIPE_EQ,
- anon_sym_GT_GT_EQ,
- anon_sym_GT_GT_GT_EQ,
- anon_sym_LT_LT_EQ,
- anon_sym_STAR_STAR_EQ,
- anon_sym_AMP_AMP_EQ,
- anon_sym_PIPE_PIPE_EQ,
- anon_sym_QMARK_QMARK_EQ,
- ACTIONS(122), 24,
- anon_sym_STAR,
- anon_sym_as,
- anon_sym_BANG,
- anon_sym_in,
- anon_sym_GT,
- anon_sym_AMP_AMP,
- anon_sym_PIPE_PIPE,
- anon_sym_GT_GT,
- anon_sym_GT_GT_GT,
- anon_sym_LT_LT,
- anon_sym_AMP,
- anon_sym_CARET,
- anon_sym_PIPE,
- anon_sym_PLUS,
- anon_sym_DASH,
- anon_sym_SLASH,
- anon_sym_PERCENT,
- anon_sym_STAR_STAR,
- anon_sym_LT,
- anon_sym_EQ_EQ,
- anon_sym_BANG_EQ,
- anon_sym_QMARK_QMARK,
- anon_sym_instanceof,
- anon_sym_satisfies,
- [5590] = 12,
- ACTIONS(150), 1,
- anon_sym_DQUOTE,
- ACTIONS(152), 1,
- anon_sym_SQUOTE,
- ACTIONS(229), 1,
- anon_sym_EQ_GT,
- ACTIONS(980), 1,
- anon_sym_EQ,
- ACTIONS(3343), 1,
- sym_identifier,
- STATE(1486), 1,
- sym_nested_identifier,
- STATE(1513), 1,
- sym_string,
- STATE(1710), 1,
- sym__module,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(162), 12,
- sym__ternary_qmark,
- anon_sym_LPAREN,
- anon_sym_LBRACK,
- anon_sym_DOT,
- anon_sym_QMARK_DOT,
- anon_sym_LT_EQ,
- anon_sym_EQ_EQ_EQ,
- anon_sym_BANG_EQ_EQ,
- anon_sym_GT_EQ,
- anon_sym_PLUS_PLUS,
- anon_sym_DASH_DASH,
- anon_sym_BQUOTE,
- ACTIONS(168), 15,
- anon_sym_PLUS_EQ,
- anon_sym_DASH_EQ,
- anon_sym_STAR_EQ,
- anon_sym_SLASH_EQ,
- anon_sym_PERCENT_EQ,
- anon_sym_CARET_EQ,
- anon_sym_AMP_EQ,
- anon_sym_PIPE_EQ,
- anon_sym_GT_GT_EQ,
- anon_sym_GT_GT_GT_EQ,
- anon_sym_LT_LT_EQ,
- anon_sym_STAR_STAR_EQ,
- anon_sym_AMP_AMP_EQ,
- anon_sym_PIPE_PIPE_EQ,
- anon_sym_QMARK_QMARK_EQ,
- ACTIONS(122), 24,
- anon_sym_STAR,
- anon_sym_as,
- anon_sym_BANG,
- anon_sym_in,
- anon_sym_GT,
- anon_sym_AMP_AMP,
- anon_sym_PIPE_PIPE,
- anon_sym_GT_GT,
- anon_sym_GT_GT_GT,
- anon_sym_LT_LT,
- anon_sym_AMP,
- anon_sym_CARET,
- anon_sym_PIPE,
- anon_sym_PLUS,
- anon_sym_DASH,
- anon_sym_SLASH,
- anon_sym_PERCENT,
- anon_sym_STAR_STAR,
- anon_sym_LT,
- anon_sym_EQ_EQ,
- anon_sym_BANG_EQ,
- anon_sym_QMARK_QMARK,
- anon_sym_instanceof,
- anon_sym_satisfies,
- [5676] = 12,
- ACTIONS(3450), 1,
- anon_sym_EQ,
- ACTIONS(3452), 1,
- anon_sym_EQ_GT,
- ACTIONS(3461), 1,
- anon_sym_extends,
- ACTIONS(3479), 1,
- anon_sym_DOT,
- ACTIONS(3482), 1,
- anon_sym_LT,
- STATE(2856), 1,
- sym_type_arguments,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(3463), 2,
- anon_sym_COMMA,
- anon_sym_LBRACK,
- ACTIONS(3469), 3,
- anon_sym_GT,
- anon_sym_AMP,
- anon_sym_PIPE,
- ACTIONS(3416), 15,
- anon_sym_PLUS_EQ,
- anon_sym_DASH_EQ,
- anon_sym_STAR_EQ,
- anon_sym_SLASH_EQ,
- anon_sym_PERCENT_EQ,
- anon_sym_CARET_EQ,
- anon_sym_AMP_EQ,
- anon_sym_PIPE_EQ,
- anon_sym_GT_GT_EQ,
- anon_sym_GT_GT_GT_EQ,
- anon_sym_LT_LT_EQ,
- anon_sym_STAR_STAR_EQ,
- anon_sym_AMP_AMP_EQ,
- anon_sym_PIPE_PIPE_EQ,
- anon_sym_QMARK_QMARK_EQ,
- ACTIONS(3404), 16,
- sym__automatic_semicolon,
- sym__ternary_qmark,
- anon_sym_as,
- anon_sym_LPAREN,
- anon_sym_of,
- anon_sym_SEMI,
- anon_sym_QMARK_DOT,
- anon_sym_LT_EQ,
- anon_sym_EQ_EQ_EQ,
- anon_sym_BANG_EQ_EQ,
- anon_sym_GT_EQ,
- anon_sym_instanceof,
- anon_sym_PLUS_PLUS,
- anon_sym_DASH_DASH,
- anon_sym_BQUOTE,
- anon_sym_satisfies,
- ACTIONS(3400), 17,
- anon_sym_STAR,
- anon_sym_BANG,
- anon_sym_in,
- anon_sym_AMP_AMP,
- anon_sym_PIPE_PIPE,
- anon_sym_GT_GT,
- anon_sym_GT_GT_GT,
- anon_sym_LT_LT,
- anon_sym_CARET,
- anon_sym_PLUS,
- anon_sym_DASH,
- anon_sym_SLASH,
- anon_sym_PERCENT,
- anon_sym_STAR_STAR,
- anon_sym_EQ_EQ,
- anon_sym_BANG_EQ,
- anon_sym_QMARK_QMARK,
- [5762] = 12,
- ACTIONS(229), 1,
- anon_sym_EQ_GT,
- ACTIONS(841), 1,
- anon_sym_EQ,
- ACTIONS(861), 1,
- anon_sym_in,
- ACTIONS(864), 1,
- anon_sym_of,
- ACTIONS(3199), 1,
- anon_sym_LBRACE,
- ACTIONS(3526), 1,
- sym_identifier,
- ACTIONS(3528), 1,
- anon_sym_LBRACK,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- STATE(5532), 3,
- sym_object_pattern,
- sym_array_pattern,
- sym__destructuring_pattern,
- ACTIONS(162), 11,
- sym__ternary_qmark,
- 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_PLUS_PLUS,
- anon_sym_DASH_DASH,
- anon_sym_BQUOTE,
- ACTIONS(168), 15,
- anon_sym_PLUS_EQ,
- anon_sym_DASH_EQ,
- anon_sym_STAR_EQ,
- anon_sym_SLASH_EQ,
- anon_sym_PERCENT_EQ,
- anon_sym_CARET_EQ,
- anon_sym_AMP_EQ,
- anon_sym_PIPE_EQ,
- anon_sym_GT_GT_EQ,
- anon_sym_GT_GT_GT_EQ,
- anon_sym_LT_LT_EQ,
- anon_sym_STAR_STAR_EQ,
- anon_sym_AMP_AMP_EQ,
- anon_sym_PIPE_PIPE_EQ,
- anon_sym_QMARK_QMARK_EQ,
- ACTIONS(122), 23,
- anon_sym_STAR,
- anon_sym_as,
- anon_sym_BANG,
- anon_sym_GT,
- anon_sym_AMP_AMP,
- anon_sym_PIPE_PIPE,
- anon_sym_GT_GT,
- anon_sym_GT_GT_GT,
- anon_sym_LT_LT,
- anon_sym_AMP,
- anon_sym_CARET,
- anon_sym_PIPE,
- anon_sym_PLUS,
- anon_sym_DASH,
- anon_sym_SLASH,
- anon_sym_PERCENT,
- anon_sym_STAR_STAR,
- anon_sym_LT,
- anon_sym_EQ_EQ,
- anon_sym_BANG_EQ,
- anon_sym_QMARK_QMARK,
- anon_sym_instanceof,
- anon_sym_satisfies,
- [5848] = 6,
- ACTIONS(3535), 1,
- anon_sym_AT,
- STATE(1201), 1,
- aux_sym_export_statement_repeat1,
- STATE(1244), 1,
- sym_decorator,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(3533), 14,
- anon_sym_LBRACE,
- anon_sym_BANG,
- anon_sym_LPAREN,
- anon_sym_LBRACK,
- sym_glimmer_opening_tag,
- anon_sym_DQUOTE,
- anon_sym_SQUOTE,
- anon_sym_DOT_DOT_DOT,
- anon_sym_TILDE,
- anon_sym_PLUS_PLUS,
- anon_sym_DASH_DASH,
- anon_sym_BQUOTE,
- sym_number,
- sym_private_property_identifier,
- ACTIONS(3531), 42,
- anon_sym_export,
- anon_sym_type,
- anon_sym_namespace,
- anon_sym_typeof,
- anon_sym_import,
- anon_sym_let,
- anon_sym_await,
- anon_sym_yield,
- anon_sym_class,
- anon_sym_async,
- anon_sym_function,
- anon_sym_new,
- anon_sym_using,
- anon_sym_PLUS,
- anon_sym_DASH,
- anon_sym_SLASH,
- anon_sym_LT,
- anon_sym_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_override,
- anon_sym_module,
- anon_sym_any,
- anon_sym_number,
- anon_sym_boolean,
- anon_sym_string,
- anon_sym_symbol,
- anon_sym_object,
- [5922] = 9,
- ACTIONS(160), 1,
- anon_sym_EQ_GT,
- ACTIONS(857), 1,
- anon_sym_EQ,
- ACTIONS(1650), 1,
- anon_sym_extends,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(3505), 2,
- anon_sym_COMMA,
- anon_sym_LBRACK,
- ACTIONS(3508), 3,
- anon_sym_GT,
- anon_sym_AMP,
- anon_sym_PIPE,
- ACTIONS(168), 15,
- anon_sym_PLUS_EQ,
- anon_sym_DASH_EQ,
- anon_sym_STAR_EQ,
- anon_sym_SLASH_EQ,
- anon_sym_PERCENT_EQ,
- anon_sym_CARET_EQ,
- anon_sym_AMP_EQ,
- anon_sym_PIPE_EQ,
- anon_sym_GT_GT_EQ,
- anon_sym_GT_GT_GT_EQ,
- anon_sym_LT_LT_EQ,
- anon_sym_STAR_STAR_EQ,
- anon_sym_AMP_AMP_EQ,
- anon_sym_PIPE_PIPE_EQ,
- anon_sym_QMARK_QMARK_EQ,
- ACTIONS(122), 18,
- anon_sym_STAR,
- anon_sym_BANG,
- anon_sym_in,
- anon_sym_AMP_AMP,
- anon_sym_PIPE_PIPE,
- anon_sym_GT_GT,
- anon_sym_GT_GT_GT,
- anon_sym_LT_LT,
- anon_sym_CARET,
- anon_sym_PLUS,
- anon_sym_DASH,
- anon_sym_SLASH,
- anon_sym_PERCENT,
- anon_sym_STAR_STAR,
- anon_sym_LT,
- anon_sym_EQ_EQ,
- anon_sym_BANG_EQ,
- anon_sym_QMARK_QMARK,
- ACTIONS(162), 18,
- sym__ternary_qmark,
- anon_sym_as,
- anon_sym_RBRACE,
- anon_sym_LPAREN,
- anon_sym_RPAREN,
- anon_sym_COLON,
- anon_sym_RBRACK,
- anon_sym_DOT,
- anon_sym_QMARK_DOT,
- anon_sym_LT_EQ,
- anon_sym_EQ_EQ_EQ,
- anon_sym_BANG_EQ_EQ,
- anon_sym_GT_EQ,
- anon_sym_instanceof,
- anon_sym_PLUS_PLUS,
- anon_sym_DASH_DASH,
- anon_sym_BQUOTE,
- anon_sym_satisfies,
- [6002] = 3,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(3540), 16,
- anon_sym_LBRACE,
- anon_sym_BANG,
- anon_sym_LPAREN,
- anon_sym_RPAREN,
- anon_sym_LBRACK,
- sym_glimmer_opening_tag,
- anon_sym_DQUOTE,
- anon_sym_SQUOTE,
- anon_sym_DOT_DOT_DOT,
- anon_sym_TILDE,
- anon_sym_PLUS_PLUS,
- anon_sym_DASH_DASH,
- anon_sym_BQUOTE,
- sym_number,
- sym_private_property_identifier,
- anon_sym_AT,
- ACTIONS(3538), 43,
- anon_sym_export,
- anon_sym_type,
- anon_sym_namespace,
- anon_sym_typeof,
- anon_sym_import,
- anon_sym_let,
- anon_sym_await,
- anon_sym_yield,
- anon_sym_class,
- anon_sym_async,
- anon_sym_function,
- anon_sym_new,
- anon_sym_using,
- anon_sym_PLUS,
- anon_sym_DASH,
- anon_sym_SLASH,
- anon_sym_LT,
- anon_sym_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_override,
- anon_sym_module,
- anon_sym_any,
- anon_sym_number,
- anon_sym_boolean,
- anon_sym_string,
- anon_sym_symbol,
- anon_sym_object,
- anon_sym_abstract,
- [6070] = 8,
- ACTIONS(229), 1,
- anon_sym_EQ_GT,
- ACTIONS(841), 1,
- anon_sym_EQ,
- ACTIONS(855), 1,
- anon_sym_QMARK,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(847), 5,
- anon_sym_COMMA,
- anon_sym_RBRACE,
- anon_sym_RPAREN,
- anon_sym_COLON,
- anon_sym_RBRACK,
- ACTIONS(162), 15,
- sym__ternary_qmark,
- anon_sym_as,
- anon_sym_LPAREN,
- anon_sym_LBRACK,
- anon_sym_DOT,
- anon_sym_QMARK_DOT,
- anon_sym_LT_EQ,
- anon_sym_EQ_EQ_EQ,
- anon_sym_BANG_EQ_EQ,
- anon_sym_GT_EQ,
- anon_sym_instanceof,
- anon_sym_PLUS_PLUS,
- anon_sym_DASH_DASH,
- anon_sym_BQUOTE,
- anon_sym_satisfies,
- ACTIONS(168), 15,
- anon_sym_PLUS_EQ,
- anon_sym_DASH_EQ,
- anon_sym_STAR_EQ,
- anon_sym_SLASH_EQ,
- anon_sym_PERCENT_EQ,
- anon_sym_CARET_EQ,
- anon_sym_AMP_EQ,
- anon_sym_PIPE_EQ,
- anon_sym_GT_GT_EQ,
- anon_sym_GT_GT_GT_EQ,
- anon_sym_LT_LT_EQ,
- anon_sym_STAR_STAR_EQ,
- anon_sym_AMP_AMP_EQ,
- anon_sym_PIPE_PIPE_EQ,
- anon_sym_QMARK_QMARK_EQ,
- ACTIONS(122), 21,
- anon_sym_STAR,
- anon_sym_BANG,
- anon_sym_in,
- anon_sym_GT,
- anon_sym_AMP_AMP,
- anon_sym_PIPE_PIPE,
- anon_sym_GT_GT,
- anon_sym_GT_GT_GT,
- anon_sym_LT_LT,
- anon_sym_AMP,
- anon_sym_CARET,
- anon_sym_PIPE,
- anon_sym_PLUS,
- anon_sym_DASH,
- anon_sym_SLASH,
- anon_sym_PERCENT,
- anon_sym_STAR_STAR,
- anon_sym_LT,
- anon_sym_EQ_EQ,
- anon_sym_BANG_EQ,
- anon_sym_QMARK_QMARK,
- [6148] = 14,
- ACTIONS(3438), 1,
- anon_sym_LPAREN,
- ACTIONS(3440), 1,
- anon_sym_DOT,
- ACTIONS(3442), 1,
- anon_sym_QMARK_DOT,
- ACTIONS(3444), 1,
- anon_sym_LT,
- ACTIONS(3542), 1,
- anon_sym_EQ,
- ACTIONS(3544), 1,
- anon_sym_EQ_GT,
- STATE(2829), 1,
- sym_arguments,
- STATE(2852), 1,
- sym_type_arguments,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(3406), 3,
- anon_sym_COMMA,
- anon_sym_LBRACK,
- anon_sym_extends,
- ACTIONS(3418), 3,
- anon_sym_GT,
- anon_sym_AMP,
- anon_sym_PIPE,
- ACTIONS(3404), 13,
- sym__ternary_qmark,
- anon_sym_as,
- anon_sym_LBRACE,
- anon_sym_LT_EQ,
- anon_sym_EQ_EQ_EQ,
- anon_sym_BANG_EQ_EQ,
- anon_sym_GT_EQ,
- anon_sym_instanceof,
- anon_sym_PLUS_PLUS,
- anon_sym_DASH_DASH,
- anon_sym_BQUOTE,
- anon_sym_satisfies,
- anon_sym_implements,
- ACTIONS(3416), 15,
- anon_sym_PLUS_EQ,
- anon_sym_DASH_EQ,
- anon_sym_STAR_EQ,
- anon_sym_SLASH_EQ,
- anon_sym_PERCENT_EQ,
- anon_sym_CARET_EQ,
- anon_sym_AMP_EQ,
- anon_sym_PIPE_EQ,
- anon_sym_GT_GT_EQ,
- anon_sym_GT_GT_GT_EQ,
- anon_sym_LT_LT_EQ,
- anon_sym_STAR_STAR_EQ,
- anon_sym_AMP_AMP_EQ,
- anon_sym_PIPE_PIPE_EQ,
- anon_sym_QMARK_QMARK_EQ,
- ACTIONS(3400), 17,
- anon_sym_STAR,
- anon_sym_BANG,
- anon_sym_in,
- anon_sym_AMP_AMP,
- anon_sym_PIPE_PIPE,
- anon_sym_GT_GT,
- anon_sym_GT_GT_GT,
- anon_sym_LT_LT,
- anon_sym_CARET,
- anon_sym_PLUS,
- anon_sym_DASH,
- anon_sym_SLASH,
- anon_sym_PERCENT,
- anon_sym_STAR_STAR,
- anon_sym_EQ_EQ,
- anon_sym_BANG_EQ,
- anon_sym_QMARK_QMARK,
- [6238] = 15,
- ACTIONS(3461), 1,
- anon_sym_extends,
- ACTIONS(3463), 1,
- anon_sym_LBRACK,
- ACTIONS(3479), 1,
- anon_sym_DOT,
- ACTIONS(3482), 1,
- anon_sym_LT,
- ACTIONS(3499), 1,
- anon_sym_QMARK,
- ACTIONS(3511), 1,
- anon_sym_EQ,
- ACTIONS(3516), 1,
- anon_sym_EQ_GT,
- ACTIONS(3546), 1,
- anon_sym_RPAREN,
- STATE(2856), 1,
- sym_type_arguments,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(3469), 2,
- anon_sym_AMP,
- anon_sym_PIPE,
- ACTIONS(3514), 2,
- anon_sym_COMMA,
- anon_sym_COLON,
- ACTIONS(3404), 13,
- sym__ternary_qmark,
- anon_sym_as,
- anon_sym_LPAREN,
- anon_sym_QMARK_DOT,
- anon_sym_LT_EQ,
- anon_sym_EQ_EQ_EQ,
- anon_sym_BANG_EQ_EQ,
- anon_sym_GT_EQ,
- anon_sym_instanceof,
- anon_sym_PLUS_PLUS,
- anon_sym_DASH_DASH,
- anon_sym_BQUOTE,
- anon_sym_satisfies,
- ACTIONS(3416), 15,
- anon_sym_PLUS_EQ,
- anon_sym_DASH_EQ,
- anon_sym_STAR_EQ,
- anon_sym_SLASH_EQ,
- anon_sym_PERCENT_EQ,
- anon_sym_CARET_EQ,
- anon_sym_AMP_EQ,
- anon_sym_PIPE_EQ,
- anon_sym_GT_GT_EQ,
- anon_sym_GT_GT_GT_EQ,
- anon_sym_LT_LT_EQ,
- anon_sym_STAR_STAR_EQ,
- anon_sym_AMP_AMP_EQ,
- anon_sym_PIPE_PIPE_EQ,
- anon_sym_QMARK_QMARK_EQ,
- ACTIONS(3400), 18,
- anon_sym_STAR,
- anon_sym_BANG,
- anon_sym_in,
- anon_sym_GT,
- anon_sym_AMP_AMP,
- anon_sym_PIPE_PIPE,
- anon_sym_GT_GT,
- anon_sym_GT_GT_GT,
- anon_sym_LT_LT,
- anon_sym_CARET,
- anon_sym_PLUS,
- anon_sym_DASH,
- anon_sym_SLASH,
- anon_sym_PERCENT,
- anon_sym_STAR_STAR,
- anon_sym_EQ_EQ,
- anon_sym_BANG_EQ,
- anon_sym_QMARK_QMARK,
- [6330] = 12,
- ACTIONS(150), 1,
- anon_sym_DQUOTE,
- ACTIONS(152), 1,
- anon_sym_SQUOTE,
- ACTIONS(229), 1,
- anon_sym_EQ_GT,
- ACTIONS(974), 1,
- anon_sym_EQ,
- ACTIONS(3343), 1,
- sym_identifier,
- STATE(1486), 1,
- sym_nested_identifier,
- STATE(1513), 1,
- sym_string,
- STATE(1710), 1,
- sym__module,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(162), 12,
- sym__ternary_qmark,
- anon_sym_LPAREN,
- anon_sym_LBRACK,
- anon_sym_DOT,
- anon_sym_QMARK_DOT,
- anon_sym_LT_EQ,
- anon_sym_EQ_EQ_EQ,
- anon_sym_BANG_EQ_EQ,
- anon_sym_GT_EQ,
- anon_sym_PLUS_PLUS,
- anon_sym_DASH_DASH,
- anon_sym_BQUOTE,
- ACTIONS(168), 15,
- anon_sym_PLUS_EQ,
- anon_sym_DASH_EQ,
- anon_sym_STAR_EQ,
- anon_sym_SLASH_EQ,
- anon_sym_PERCENT_EQ,
- anon_sym_CARET_EQ,
- anon_sym_AMP_EQ,
- anon_sym_PIPE_EQ,
- anon_sym_GT_GT_EQ,
- anon_sym_GT_GT_GT_EQ,
- anon_sym_LT_LT_EQ,
- anon_sym_STAR_STAR_EQ,
- anon_sym_AMP_AMP_EQ,
- anon_sym_PIPE_PIPE_EQ,
- anon_sym_QMARK_QMARK_EQ,
- ACTIONS(122), 24,
- anon_sym_STAR,
- anon_sym_as,
- anon_sym_BANG,
- anon_sym_in,
- anon_sym_GT,
- anon_sym_AMP_AMP,
- anon_sym_PIPE_PIPE,
- anon_sym_GT_GT,
- anon_sym_GT_GT_GT,
- anon_sym_LT_LT,
- anon_sym_AMP,
- anon_sym_CARET,
- anon_sym_PIPE,
- anon_sym_PLUS,
- anon_sym_DASH,
- anon_sym_SLASH,
- anon_sym_PERCENT,
- anon_sym_STAR_STAR,
- anon_sym_LT,
- anon_sym_EQ_EQ,
- anon_sym_BANG_EQ,
- anon_sym_QMARK_QMARK,
- anon_sym_instanceof,
- anon_sym_satisfies,
- [6416] = 12,
- ACTIONS(150), 1,
- anon_sym_DQUOTE,
- ACTIONS(152), 1,
- anon_sym_SQUOTE,
- ACTIONS(229), 1,
- anon_sym_EQ_GT,
- ACTIONS(986), 1,
- anon_sym_EQ,
- ACTIONS(3343), 1,
- sym_identifier,
- STATE(1486), 1,
- sym_nested_identifier,
- STATE(1513), 1,
- sym_string,
- STATE(1710), 1,
- sym__module,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(162), 12,
- sym__ternary_qmark,
- anon_sym_LPAREN,
- anon_sym_LBRACK,
- anon_sym_DOT,
- anon_sym_QMARK_DOT,
- anon_sym_LT_EQ,
- anon_sym_EQ_EQ_EQ,
- anon_sym_BANG_EQ_EQ,
- anon_sym_GT_EQ,
- anon_sym_PLUS_PLUS,
- anon_sym_DASH_DASH,
- anon_sym_BQUOTE,
- ACTIONS(168), 15,
- anon_sym_PLUS_EQ,
- anon_sym_DASH_EQ,
- anon_sym_STAR_EQ,
- anon_sym_SLASH_EQ,
- anon_sym_PERCENT_EQ,
- anon_sym_CARET_EQ,
- anon_sym_AMP_EQ,
- anon_sym_PIPE_EQ,
- anon_sym_GT_GT_EQ,
- anon_sym_GT_GT_GT_EQ,
- anon_sym_LT_LT_EQ,
- anon_sym_STAR_STAR_EQ,
- anon_sym_AMP_AMP_EQ,
- anon_sym_PIPE_PIPE_EQ,
- anon_sym_QMARK_QMARK_EQ,
- ACTIONS(122), 24,
- anon_sym_STAR,
- anon_sym_as,
- anon_sym_BANG,
- anon_sym_in,
- anon_sym_GT,
- anon_sym_AMP_AMP,
- anon_sym_PIPE_PIPE,
- anon_sym_GT_GT,
- anon_sym_GT_GT_GT,
- anon_sym_LT_LT,
- anon_sym_AMP,
- anon_sym_CARET,
- anon_sym_PIPE,
- anon_sym_PLUS,
- anon_sym_DASH,
- anon_sym_SLASH,
- anon_sym_PERCENT,
- anon_sym_STAR_STAR,
- anon_sym_LT,
- anon_sym_EQ_EQ,
- anon_sym_BANG_EQ,
- anon_sym_QMARK_QMARK,
- anon_sym_instanceof,
- anon_sym_satisfies,
- [6502] = 8,
- ACTIONS(3475), 1,
- anon_sym_EQ,
- ACTIONS(3516), 1,
- anon_sym_EQ_GT,
- ACTIONS(3551), 1,
- anon_sym_QMARK,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(3549), 5,
- anon_sym_COMMA,
- anon_sym_RBRACE,
- anon_sym_RPAREN,
- anon_sym_COLON,
- anon_sym_RBRACK,
- ACTIONS(3404), 15,
- sym__ternary_qmark,
- anon_sym_as,
- anon_sym_LPAREN,
- anon_sym_LBRACK,
- anon_sym_DOT,
- anon_sym_QMARK_DOT,
- anon_sym_LT_EQ,
- anon_sym_EQ_EQ_EQ,
- anon_sym_BANG_EQ_EQ,
- anon_sym_GT_EQ,
- anon_sym_instanceof,
- anon_sym_PLUS_PLUS,
- anon_sym_DASH_DASH,
- anon_sym_BQUOTE,
- anon_sym_satisfies,
- ACTIONS(3416), 15,
- anon_sym_PLUS_EQ,
- anon_sym_DASH_EQ,
- anon_sym_STAR_EQ,
- anon_sym_SLASH_EQ,
- anon_sym_PERCENT_EQ,
- anon_sym_CARET_EQ,
- anon_sym_AMP_EQ,
- anon_sym_PIPE_EQ,
- anon_sym_GT_GT_EQ,
- anon_sym_GT_GT_GT_EQ,
- anon_sym_LT_LT_EQ,
- anon_sym_STAR_STAR_EQ,
- anon_sym_AMP_AMP_EQ,
- anon_sym_PIPE_PIPE_EQ,
- anon_sym_QMARK_QMARK_EQ,
- ACTIONS(3400), 21,
- anon_sym_STAR,
- anon_sym_BANG,
- anon_sym_in,
- anon_sym_GT,
- anon_sym_AMP_AMP,
- anon_sym_PIPE_PIPE,
- anon_sym_GT_GT,
- anon_sym_GT_GT_GT,
- anon_sym_LT_LT,
- anon_sym_AMP,
- anon_sym_CARET,
- anon_sym_PIPE,
- anon_sym_PLUS,
- anon_sym_DASH,
- anon_sym_SLASH,
- anon_sym_PERCENT,
- anon_sym_STAR_STAR,
- anon_sym_LT,
- anon_sym_EQ_EQ,
- anon_sym_BANG_EQ,
- anon_sym_QMARK_QMARK,
- [6580] = 12,
- ACTIONS(150), 1,
- anon_sym_DQUOTE,
- ACTIONS(152), 1,
- anon_sym_SQUOTE,
- ACTIONS(229), 1,
- anon_sym_EQ_GT,
- ACTIONS(984), 1,
- anon_sym_EQ,
- ACTIONS(3343), 1,
- sym_identifier,
- STATE(1486), 1,
- sym_nested_identifier,
- STATE(1513), 1,
- sym_string,
- STATE(1710), 1,
- sym__module,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(162), 12,
- sym__ternary_qmark,
- anon_sym_LPAREN,
- anon_sym_LBRACK,
- anon_sym_DOT,
- anon_sym_QMARK_DOT,
- anon_sym_LT_EQ,
- anon_sym_EQ_EQ_EQ,
- anon_sym_BANG_EQ_EQ,
- anon_sym_GT_EQ,
- anon_sym_PLUS_PLUS,
- anon_sym_DASH_DASH,
- anon_sym_BQUOTE,
- ACTIONS(168), 15,
- anon_sym_PLUS_EQ,
- anon_sym_DASH_EQ,
- anon_sym_STAR_EQ,
- anon_sym_SLASH_EQ,
- anon_sym_PERCENT_EQ,
- anon_sym_CARET_EQ,
- anon_sym_AMP_EQ,
- anon_sym_PIPE_EQ,
- anon_sym_GT_GT_EQ,
- anon_sym_GT_GT_GT_EQ,
- anon_sym_LT_LT_EQ,
- anon_sym_STAR_STAR_EQ,
- anon_sym_AMP_AMP_EQ,
- anon_sym_PIPE_PIPE_EQ,
- anon_sym_QMARK_QMARK_EQ,
- ACTIONS(122), 24,
- anon_sym_STAR,
- anon_sym_as,
- anon_sym_BANG,
- anon_sym_in,
- anon_sym_GT,
- anon_sym_AMP_AMP,
- anon_sym_PIPE_PIPE,
- anon_sym_GT_GT,
- anon_sym_GT_GT_GT,
- anon_sym_LT_LT,
- anon_sym_AMP,
- anon_sym_CARET,
- anon_sym_PIPE,
- anon_sym_PLUS,
- anon_sym_DASH,
- anon_sym_SLASH,
- anon_sym_PERCENT,
- anon_sym_STAR_STAR,
- anon_sym_LT,
- anon_sym_EQ_EQ,
- anon_sym_BANG_EQ,
- anon_sym_QMARK_QMARK,
- anon_sym_instanceof,
- anon_sym_satisfies,
- [6666] = 14,
- ACTIONS(3402), 1,
- anon_sym_EQ,
- ACTIONS(3412), 1,
- anon_sym_EQ_GT,
- ACTIONS(3438), 1,
- anon_sym_LPAREN,
- ACTIONS(3440), 1,
- anon_sym_DOT,
- ACTIONS(3442), 1,
- anon_sym_QMARK_DOT,
- ACTIONS(3444), 1,
- anon_sym_LT,
- STATE(2829), 1,
- sym_arguments,
- STATE(2852), 1,
- sym_type_arguments,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(3418), 3,
- anon_sym_AMP,
- anon_sym_PIPE,
- anon_sym_QMARK,
- ACTIONS(3406), 4,
- anon_sym_COMMA,
- anon_sym_LBRACK,
- anon_sym_RBRACK,
- anon_sym_extends,
- ACTIONS(3404), 11,
- sym__ternary_qmark,
- anon_sym_as,
- anon_sym_LT_EQ,
- anon_sym_EQ_EQ_EQ,
- anon_sym_BANG_EQ_EQ,
- anon_sym_GT_EQ,
- anon_sym_instanceof,
- anon_sym_PLUS_PLUS,
- anon_sym_DASH_DASH,
- anon_sym_BQUOTE,
- anon_sym_satisfies,
- ACTIONS(3416), 15,
- anon_sym_PLUS_EQ,
- anon_sym_DASH_EQ,
- anon_sym_STAR_EQ,
- anon_sym_SLASH_EQ,
- anon_sym_PERCENT_EQ,
- anon_sym_CARET_EQ,
- anon_sym_AMP_EQ,
- anon_sym_PIPE_EQ,
- anon_sym_GT_GT_EQ,
- anon_sym_GT_GT_GT_EQ,
- anon_sym_LT_LT_EQ,
- anon_sym_STAR_STAR_EQ,
- anon_sym_AMP_AMP_EQ,
- anon_sym_PIPE_PIPE_EQ,
- anon_sym_QMARK_QMARK_EQ,
- ACTIONS(3400), 18,
- anon_sym_STAR,
- anon_sym_BANG,
- anon_sym_in,
- anon_sym_GT,
- anon_sym_AMP_AMP,
- anon_sym_PIPE_PIPE,
- anon_sym_GT_GT,
- anon_sym_GT_GT_GT,
- anon_sym_LT_LT,
- anon_sym_CARET,
- anon_sym_PLUS,
- anon_sym_DASH,
- anon_sym_SLASH,
- anon_sym_PERCENT,
- anon_sym_STAR_STAR,
- anon_sym_EQ_EQ,
- anon_sym_BANG_EQ,
- anon_sym_QMARK_QMARK,
- [6756] = 7,
- ACTIONS(3535), 1,
- anon_sym_AT,
- ACTIONS(3553), 1,
- anon_sym_class,
- STATE(1201), 1,
- aux_sym_export_statement_repeat1,
- STATE(1244), 1,
- sym_decorator,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(3533), 14,
- anon_sym_LBRACE,
- anon_sym_BANG,
- anon_sym_LPAREN,
- anon_sym_LBRACK,
- sym_glimmer_opening_tag,
- anon_sym_DQUOTE,
- anon_sym_SQUOTE,
- anon_sym_DOT_DOT_DOT,
- anon_sym_TILDE,
- anon_sym_PLUS_PLUS,
- anon_sym_DASH_DASH,
- anon_sym_BQUOTE,
- sym_number,
- sym_private_property_identifier,
- ACTIONS(3531), 41,
- anon_sym_export,
- anon_sym_type,
- anon_sym_namespace,
- anon_sym_typeof,
- anon_sym_import,
- anon_sym_let,
- anon_sym_await,
- anon_sym_yield,
- anon_sym_async,
- anon_sym_function,
- anon_sym_new,
- anon_sym_using,
- anon_sym_PLUS,
- anon_sym_DASH,
- anon_sym_SLASH,
- anon_sym_LT,
- anon_sym_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_override,
- anon_sym_module,
- anon_sym_any,
- anon_sym_number,
- anon_sym_boolean,
- anon_sym_string,
- anon_sym_symbol,
- anon_sym_object,
- [6832] = 12,
- ACTIONS(3427), 1,
- anon_sym_EQ_GT,
- ACTIONS(3448), 1,
- anon_sym_EQ,
- ACTIONS(3461), 1,
- anon_sym_extends,
- ACTIONS(3479), 1,
- anon_sym_DOT,
- ACTIONS(3482), 1,
- anon_sym_LT,
- STATE(2856), 1,
- sym_type_arguments,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(3463), 2,
- anon_sym_COMMA,
- anon_sym_LBRACK,
- ACTIONS(3469), 3,
- anon_sym_GT,
- anon_sym_AMP,
- anon_sym_PIPE,
- ACTIONS(3416), 15,
- anon_sym_PLUS_EQ,
- anon_sym_DASH_EQ,
- anon_sym_STAR_EQ,
- anon_sym_SLASH_EQ,
- anon_sym_PERCENT_EQ,
- anon_sym_CARET_EQ,
- anon_sym_AMP_EQ,
- anon_sym_PIPE_EQ,
- anon_sym_GT_GT_EQ,
- anon_sym_GT_GT_GT_EQ,
- anon_sym_LT_LT_EQ,
- anon_sym_STAR_STAR_EQ,
- anon_sym_AMP_AMP_EQ,
- anon_sym_PIPE_PIPE_EQ,
- anon_sym_QMARK_QMARK_EQ,
- ACTIONS(3404), 16,
- sym__automatic_semicolon,
- sym__ternary_qmark,
- anon_sym_as,
- anon_sym_RBRACE,
- anon_sym_LPAREN,
- anon_sym_SEMI,
- anon_sym_QMARK_DOT,
- anon_sym_LT_EQ,
- anon_sym_EQ_EQ_EQ,
- anon_sym_BANG_EQ_EQ,
- anon_sym_GT_EQ,
- anon_sym_instanceof,
- anon_sym_PLUS_PLUS,
- anon_sym_DASH_DASH,
- anon_sym_BQUOTE,
- anon_sym_satisfies,
- ACTIONS(3400), 17,
- anon_sym_STAR,
- anon_sym_BANG,
- anon_sym_in,
- anon_sym_AMP_AMP,
- anon_sym_PIPE_PIPE,
- anon_sym_GT_GT,
- anon_sym_GT_GT_GT,
- anon_sym_LT_LT,
- anon_sym_CARET,
- anon_sym_PLUS,
- anon_sym_DASH,
- anon_sym_SLASH,
- anon_sym_PERCENT,
- anon_sym_STAR_STAR,
- anon_sym_EQ_EQ,
- anon_sym_BANG_EQ,
- anon_sym_QMARK_QMARK,
- [6918] = 8,
- ACTIONS(3412), 1,
- anon_sym_EQ_GT,
- ACTIONS(3454), 1,
- anon_sym_EQ,
- ACTIONS(3499), 1,
- anon_sym_QMARK,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(3496), 5,
- anon_sym_COMMA,
- anon_sym_RBRACE,
- anon_sym_RPAREN,
- anon_sym_COLON,
- anon_sym_RBRACK,
- ACTIONS(3404), 15,
- sym__ternary_qmark,
- anon_sym_as,
- anon_sym_LPAREN,
- anon_sym_LBRACK,
- anon_sym_DOT,
- anon_sym_QMARK_DOT,
- anon_sym_LT_EQ,
- anon_sym_EQ_EQ_EQ,
- anon_sym_BANG_EQ_EQ,
- anon_sym_GT_EQ,
- anon_sym_instanceof,
- anon_sym_PLUS_PLUS,
- anon_sym_DASH_DASH,
- anon_sym_BQUOTE,
- anon_sym_satisfies,
- ACTIONS(3416), 15,
- anon_sym_PLUS_EQ,
- anon_sym_DASH_EQ,
- anon_sym_STAR_EQ,
- anon_sym_SLASH_EQ,
- anon_sym_PERCENT_EQ,
- anon_sym_CARET_EQ,
- anon_sym_AMP_EQ,
- anon_sym_PIPE_EQ,
- anon_sym_GT_GT_EQ,
- anon_sym_GT_GT_GT_EQ,
- anon_sym_LT_LT_EQ,
- anon_sym_STAR_STAR_EQ,
- anon_sym_AMP_AMP_EQ,
- anon_sym_PIPE_PIPE_EQ,
- anon_sym_QMARK_QMARK_EQ,
- ACTIONS(3400), 21,
- anon_sym_STAR,
- anon_sym_BANG,
- anon_sym_in,
- anon_sym_GT,
- anon_sym_AMP_AMP,
- anon_sym_PIPE_PIPE,
- anon_sym_GT_GT,
- anon_sym_GT_GT_GT,
- anon_sym_LT_LT,
- anon_sym_AMP,
- anon_sym_CARET,
- anon_sym_PIPE,
- anon_sym_PLUS,
- anon_sym_DASH,
- anon_sym_SLASH,
- anon_sym_PERCENT,
- anon_sym_STAR_STAR,
- anon_sym_LT,
- anon_sym_EQ_EQ,
- anon_sym_BANG_EQ,
- anon_sym_QMARK_QMARK,
- [6996] = 6,
- ACTIONS(3412), 1,
- anon_sym_EQ_GT,
- ACTIONS(3475), 1,
- anon_sym_EQ,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(3416), 15,
- anon_sym_PLUS_EQ,
- anon_sym_DASH_EQ,
- anon_sym_STAR_EQ,
- anon_sym_SLASH_EQ,
- anon_sym_PERCENT_EQ,
- anon_sym_CARET_EQ,
- anon_sym_AMP_EQ,
- anon_sym_PIPE_EQ,
- anon_sym_GT_GT_EQ,
- anon_sym_GT_GT_GT_EQ,
- anon_sym_LT_LT_EQ,
- anon_sym_STAR_STAR_EQ,
- anon_sym_AMP_AMP_EQ,
- anon_sym_PIPE_PIPE_EQ,
- anon_sym_QMARK_QMARK_EQ,
- ACTIONS(3404), 20,
- sym__ternary_qmark,
- anon_sym_as,
- anon_sym_COMMA,
- anon_sym_RBRACE,
- anon_sym_LPAREN,
- anon_sym_RPAREN,
- anon_sym_COLON,
- anon_sym_LBRACK,
- anon_sym_RBRACK,
- anon_sym_DOT,
- anon_sym_QMARK_DOT,
- anon_sym_LT_EQ,
- anon_sym_EQ_EQ_EQ,
- anon_sym_BANG_EQ_EQ,
- anon_sym_GT_EQ,
- anon_sym_instanceof,
- anon_sym_PLUS_PLUS,
- anon_sym_DASH_DASH,
- anon_sym_BQUOTE,
- anon_sym_satisfies,
- ACTIONS(3400), 21,
- anon_sym_STAR,
- anon_sym_BANG,
- anon_sym_in,
- anon_sym_GT,
- anon_sym_AMP_AMP,
- anon_sym_PIPE_PIPE,
- anon_sym_GT_GT,
- anon_sym_GT_GT_GT,
- anon_sym_LT_LT,
- anon_sym_AMP,
- anon_sym_CARET,
- anon_sym_PIPE,
- anon_sym_PLUS,
- anon_sym_DASH,
- anon_sym_SLASH,
- anon_sym_PERCENT,
- anon_sym_STAR_STAR,
- anon_sym_LT,
- anon_sym_EQ_EQ,
- anon_sym_BANG_EQ,
- anon_sym_QMARK_QMARK,
- [7069] = 6,
- ACTIONS(160), 1,
- anon_sym_EQ_GT,
- ACTIONS(857), 1,
- anon_sym_EQ,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(168), 15,
- anon_sym_PLUS_EQ,
- anon_sym_DASH_EQ,
- anon_sym_STAR_EQ,
- anon_sym_SLASH_EQ,
- anon_sym_PERCENT_EQ,
- anon_sym_CARET_EQ,
- anon_sym_AMP_EQ,
- anon_sym_PIPE_EQ,
- anon_sym_GT_GT_EQ,
- anon_sym_GT_GT_GT_EQ,
- anon_sym_LT_LT_EQ,
- anon_sym_STAR_STAR_EQ,
- anon_sym_AMP_AMP_EQ,
- anon_sym_PIPE_PIPE_EQ,
- anon_sym_QMARK_QMARK_EQ,
- ACTIONS(162), 20,
- sym__ternary_qmark,
- anon_sym_as,
- anon_sym_COMMA,
- anon_sym_RBRACE,
- anon_sym_LPAREN,
- anon_sym_RPAREN,
- anon_sym_COLON,
- anon_sym_LBRACK,
- anon_sym_RBRACK,
- anon_sym_DOT,
- anon_sym_QMARK_DOT,
- anon_sym_LT_EQ,
- anon_sym_EQ_EQ_EQ,
- anon_sym_BANG_EQ_EQ,
- anon_sym_GT_EQ,
- anon_sym_instanceof,
- anon_sym_PLUS_PLUS,
- anon_sym_DASH_DASH,
- anon_sym_BQUOTE,
- anon_sym_satisfies,
- ACTIONS(122), 21,
- anon_sym_STAR,
- anon_sym_BANG,
- anon_sym_in,
- anon_sym_GT,
- anon_sym_AMP_AMP,
- anon_sym_PIPE_PIPE,
- anon_sym_GT_GT,
- anon_sym_GT_GT_GT,
- anon_sym_LT_LT,
- anon_sym_AMP,
- anon_sym_CARET,
- anon_sym_PIPE,
- anon_sym_PLUS,
- anon_sym_DASH,
- anon_sym_SLASH,
- anon_sym_PERCENT,
- anon_sym_STAR_STAR,
- anon_sym_LT,
- anon_sym_EQ_EQ,
- anon_sym_BANG_EQ,
- anon_sym_QMARK_QMARK,
- [7142] = 6,
- ACTIONS(3402), 1,
- anon_sym_EQ,
- ACTIONS(3412), 1,
- anon_sym_EQ_GT,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(3416), 15,
- anon_sym_PLUS_EQ,
- anon_sym_DASH_EQ,
- anon_sym_STAR_EQ,
- anon_sym_SLASH_EQ,
- anon_sym_PERCENT_EQ,
- anon_sym_CARET_EQ,
- anon_sym_AMP_EQ,
- anon_sym_PIPE_EQ,
- anon_sym_GT_GT_EQ,
- anon_sym_GT_GT_GT_EQ,
- anon_sym_LT_LT_EQ,
- anon_sym_STAR_STAR_EQ,
- anon_sym_AMP_AMP_EQ,
- anon_sym_PIPE_PIPE_EQ,
- anon_sym_QMARK_QMARK_EQ,
- ACTIONS(3404), 20,
- sym__ternary_qmark,
- anon_sym_as,
- anon_sym_COMMA,
- anon_sym_RBRACE,
- anon_sym_LPAREN,
- anon_sym_RPAREN,
- anon_sym_COLON,
- anon_sym_LBRACK,
- anon_sym_RBRACK,
- anon_sym_DOT,
- anon_sym_QMARK_DOT,
- anon_sym_LT_EQ,
- anon_sym_EQ_EQ_EQ,
- anon_sym_BANG_EQ_EQ,
- anon_sym_GT_EQ,
- anon_sym_instanceof,
- anon_sym_PLUS_PLUS,
- anon_sym_DASH_DASH,
- anon_sym_BQUOTE,
- anon_sym_satisfies,
- ACTIONS(3400), 21,
- anon_sym_STAR,
- anon_sym_BANG,
- anon_sym_in,
- anon_sym_GT,
- anon_sym_AMP_AMP,
- anon_sym_PIPE_PIPE,
- anon_sym_GT_GT,
- anon_sym_GT_GT_GT,
- anon_sym_LT_LT,
- anon_sym_AMP,
- anon_sym_CARET,
- anon_sym_PIPE,
- anon_sym_PLUS,
- anon_sym_DASH,
- anon_sym_SLASH,
- anon_sym_PERCENT,
- anon_sym_STAR_STAR,
- anon_sym_LT,
- anon_sym_EQ_EQ,
- anon_sym_BANG_EQ,
- anon_sym_QMARK_QMARK,
- [7215] = 14,
- ACTIONS(3438), 1,
- anon_sym_LPAREN,
- ACTIONS(3440), 1,
- anon_sym_DOT,
- ACTIONS(3442), 1,
- anon_sym_QMARK_DOT,
- ACTIONS(3444), 1,
- anon_sym_LT,
- ACTIONS(3556), 1,
- anon_sym_EQ,
- ACTIONS(3558), 1,
- anon_sym_EQ_GT,
- STATE(2829), 1,
- sym_arguments,
- STATE(2852), 1,
- sym_type_arguments,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(3406), 3,
- anon_sym_COMMA,
- anon_sym_LBRACK,
- anon_sym_extends,
- ACTIONS(3418), 3,
- anon_sym_GT,
- anon_sym_AMP,
- anon_sym_PIPE,
- ACTIONS(3404), 12,
- sym__ternary_qmark,
- anon_sym_as,
- anon_sym_RBRACK,
- anon_sym_LT_EQ,
- anon_sym_EQ_EQ_EQ,
- anon_sym_BANG_EQ_EQ,
- anon_sym_GT_EQ,
- anon_sym_instanceof,
- anon_sym_PLUS_PLUS,
- anon_sym_DASH_DASH,
- anon_sym_BQUOTE,
- anon_sym_satisfies,
- ACTIONS(3416), 15,
- anon_sym_PLUS_EQ,
- anon_sym_DASH_EQ,
- anon_sym_STAR_EQ,
- anon_sym_SLASH_EQ,
- anon_sym_PERCENT_EQ,
- anon_sym_CARET_EQ,
- anon_sym_AMP_EQ,
- anon_sym_PIPE_EQ,
- anon_sym_GT_GT_EQ,
- anon_sym_GT_GT_GT_EQ,
- anon_sym_LT_LT_EQ,
- anon_sym_STAR_STAR_EQ,
- anon_sym_AMP_AMP_EQ,
- anon_sym_PIPE_PIPE_EQ,
- anon_sym_QMARK_QMARK_EQ,
- ACTIONS(3400), 17,
- anon_sym_STAR,
- anon_sym_BANG,
- anon_sym_in,
- anon_sym_AMP_AMP,
- anon_sym_PIPE_PIPE,
- anon_sym_GT_GT,
- anon_sym_GT_GT_GT,
- anon_sym_LT_LT,
- anon_sym_CARET,
- anon_sym_PLUS,
- anon_sym_DASH,
- anon_sym_SLASH,
- anon_sym_PERCENT,
- anon_sym_STAR_STAR,
- anon_sym_EQ_EQ,
- anon_sym_BANG_EQ,
- anon_sym_QMARK_QMARK,
- [7304] = 14,
- ACTIONS(3438), 1,
- anon_sym_LPAREN,
- ACTIONS(3440), 1,
- anon_sym_DOT,
- ACTIONS(3442), 1,
- anon_sym_QMARK_DOT,
- ACTIONS(3444), 1,
- anon_sym_LT,
- ACTIONS(3560), 1,
- anon_sym_EQ,
- ACTIONS(3562), 1,
- anon_sym_EQ_GT,
- STATE(2829), 1,
- sym_arguments,
- STATE(2852), 1,
- sym_type_arguments,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(3406), 3,
- anon_sym_COMMA,
- anon_sym_LBRACK,
- anon_sym_extends,
- ACTIONS(3418), 3,
- anon_sym_GT,
- anon_sym_AMP,
- anon_sym_PIPE,
- ACTIONS(3404), 12,
- sym__ternary_qmark,
- anon_sym_as,
- anon_sym_of,
- anon_sym_LT_EQ,
- anon_sym_EQ_EQ_EQ,
- anon_sym_BANG_EQ_EQ,
- anon_sym_GT_EQ,
- anon_sym_instanceof,
- anon_sym_PLUS_PLUS,
- anon_sym_DASH_DASH,
- anon_sym_BQUOTE,
- anon_sym_satisfies,
- ACTIONS(3416), 15,
- anon_sym_PLUS_EQ,
- anon_sym_DASH_EQ,
- anon_sym_STAR_EQ,
- anon_sym_SLASH_EQ,
- anon_sym_PERCENT_EQ,
- anon_sym_CARET_EQ,
- anon_sym_AMP_EQ,
- anon_sym_PIPE_EQ,
- anon_sym_GT_GT_EQ,
- anon_sym_GT_GT_GT_EQ,
- anon_sym_LT_LT_EQ,
- anon_sym_STAR_STAR_EQ,
- anon_sym_AMP_AMP_EQ,
- anon_sym_PIPE_PIPE_EQ,
- anon_sym_QMARK_QMARK_EQ,
- ACTIONS(3400), 17,
- anon_sym_STAR,
- anon_sym_BANG,
- anon_sym_in,
- anon_sym_AMP_AMP,
- anon_sym_PIPE_PIPE,
- anon_sym_GT_GT,
- anon_sym_GT_GT_GT,
- anon_sym_LT_LT,
- anon_sym_CARET,
- anon_sym_PLUS,
- anon_sym_DASH,
- anon_sym_SLASH,
- anon_sym_PERCENT,
- anon_sym_STAR_STAR,
- anon_sym_EQ_EQ,
- anon_sym_BANG_EQ,
- anon_sym_QMARK_QMARK,
- [7393] = 12,
- ACTIONS(3461), 1,
- anon_sym_extends,
- ACTIONS(3479), 1,
- anon_sym_DOT,
- ACTIONS(3482), 1,
- anon_sym_LT,
- ACTIONS(3542), 1,
- anon_sym_EQ,
- ACTIONS(3544), 1,
- anon_sym_EQ_GT,
- STATE(2856), 1,
- sym_type_arguments,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(3463), 2,
- anon_sym_COMMA,
- anon_sym_LBRACK,
- ACTIONS(3469), 3,
- anon_sym_GT,
- anon_sym_AMP,
- anon_sym_PIPE,
- ACTIONS(3404), 15,
- sym__ternary_qmark,
- anon_sym_as,
- anon_sym_LBRACE,
- anon_sym_LPAREN,
- anon_sym_QMARK_DOT,
- anon_sym_LT_EQ,
- anon_sym_EQ_EQ_EQ,
- anon_sym_BANG_EQ_EQ,
- anon_sym_GT_EQ,
- anon_sym_instanceof,
- anon_sym_PLUS_PLUS,
- anon_sym_DASH_DASH,
- anon_sym_BQUOTE,
- anon_sym_satisfies,
- anon_sym_implements,
- ACTIONS(3416), 15,
- anon_sym_PLUS_EQ,
- anon_sym_DASH_EQ,
- anon_sym_STAR_EQ,
- anon_sym_SLASH_EQ,
- anon_sym_PERCENT_EQ,
- anon_sym_CARET_EQ,
- anon_sym_AMP_EQ,
- anon_sym_PIPE_EQ,
- anon_sym_GT_GT_EQ,
- anon_sym_GT_GT_GT_EQ,
- anon_sym_LT_LT_EQ,
- anon_sym_STAR_STAR_EQ,
- anon_sym_AMP_AMP_EQ,
- anon_sym_PIPE_PIPE_EQ,
- anon_sym_QMARK_QMARK_EQ,
- ACTIONS(3400), 17,
- anon_sym_STAR,
- anon_sym_BANG,
- anon_sym_in,
- anon_sym_AMP_AMP,
- anon_sym_PIPE_PIPE,
- anon_sym_GT_GT,
- anon_sym_GT_GT_GT,
- anon_sym_LT_LT,
- anon_sym_CARET,
- anon_sym_PLUS,
- anon_sym_DASH,
- anon_sym_SLASH,
- anon_sym_PERCENT,
- anon_sym_STAR_STAR,
- anon_sym_EQ_EQ,
- anon_sym_BANG_EQ,
- anon_sym_QMARK_QMARK,
- [7478] = 7,
- ACTIONS(3499), 1,
- anon_sym_QMARK,
- ACTIONS(3511), 1,
- anon_sym_EQ,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(3514), 5,
- anon_sym_COMMA,
- anon_sym_RBRACE,
- anon_sym_RPAREN,
- anon_sym_COLON,
- anon_sym_RBRACK,
- ACTIONS(3404), 15,
- sym__ternary_qmark,
- anon_sym_as,
- anon_sym_LPAREN,
- anon_sym_LBRACK,
- anon_sym_DOT,
- anon_sym_QMARK_DOT,
- anon_sym_LT_EQ,
- anon_sym_EQ_EQ_EQ,
- anon_sym_BANG_EQ_EQ,
- anon_sym_GT_EQ,
- anon_sym_instanceof,
- anon_sym_PLUS_PLUS,
- anon_sym_DASH_DASH,
- anon_sym_BQUOTE,
- anon_sym_satisfies,
- ACTIONS(3416), 15,
- anon_sym_PLUS_EQ,
- anon_sym_DASH_EQ,
- anon_sym_STAR_EQ,
- anon_sym_SLASH_EQ,
- anon_sym_PERCENT_EQ,
- anon_sym_CARET_EQ,
- anon_sym_AMP_EQ,
- anon_sym_PIPE_EQ,
- anon_sym_GT_GT_EQ,
- anon_sym_GT_GT_GT_EQ,
- anon_sym_LT_LT_EQ,
- anon_sym_STAR_STAR_EQ,
- anon_sym_AMP_AMP_EQ,
- anon_sym_PIPE_PIPE_EQ,
- anon_sym_QMARK_QMARK_EQ,
- ACTIONS(3400), 21,
- anon_sym_STAR,
- anon_sym_BANG,
- anon_sym_in,
- anon_sym_GT,
- anon_sym_AMP_AMP,
- anon_sym_PIPE_PIPE,
- anon_sym_GT_GT,
- anon_sym_GT_GT_GT,
- anon_sym_LT_LT,
- anon_sym_AMP,
- anon_sym_CARET,
- anon_sym_PIPE,
- anon_sym_PLUS,
- anon_sym_DASH,
- anon_sym_SLASH,
- anon_sym_PERCENT,
- anon_sym_STAR_STAR,
- anon_sym_LT,
- anon_sym_EQ_EQ,
- anon_sym_BANG_EQ,
- anon_sym_QMARK_QMARK,
- [7553] = 11,
- ACTIONS(119), 1,
- anon_sym_EQ,
- ACTIONS(160), 1,
- anon_sym_EQ_GT,
- ACTIONS(793), 1,
- anon_sym_QMARK,
- ACTIONS(3505), 1,
- anon_sym_LBRACK,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(128), 2,
- anon_sym_COMMA,
- anon_sym_COLON,
- ACTIONS(1650), 2,
- anon_sym_RPAREN,
- anon_sym_extends,
- ACTIONS(3508), 2,
- anon_sym_AMP,
- anon_sym_PIPE,
- ACTIONS(162), 14,
- sym__ternary_qmark,
- anon_sym_as,
- anon_sym_LPAREN,
- anon_sym_DOT,
- anon_sym_QMARK_DOT,
- anon_sym_LT_EQ,
- anon_sym_EQ_EQ_EQ,
- anon_sym_BANG_EQ_EQ,
- anon_sym_GT_EQ,
- anon_sym_instanceof,
- anon_sym_PLUS_PLUS,
- anon_sym_DASH_DASH,
- anon_sym_BQUOTE,
- anon_sym_satisfies,
- ACTIONS(168), 15,
- anon_sym_PLUS_EQ,
- anon_sym_DASH_EQ,
- anon_sym_STAR_EQ,
- anon_sym_SLASH_EQ,
- anon_sym_PERCENT_EQ,
- anon_sym_CARET_EQ,
- anon_sym_AMP_EQ,
- anon_sym_PIPE_EQ,
- anon_sym_GT_GT_EQ,
- anon_sym_GT_GT_GT_EQ,
- anon_sym_LT_LT_EQ,
- anon_sym_STAR_STAR_EQ,
- anon_sym_AMP_AMP_EQ,
- anon_sym_PIPE_PIPE_EQ,
- anon_sym_QMARK_QMARK_EQ,
- ACTIONS(122), 19,
- anon_sym_STAR,
- anon_sym_BANG,
- anon_sym_in,
- anon_sym_GT,
- anon_sym_AMP_AMP,
- anon_sym_PIPE_PIPE,
- anon_sym_GT_GT,
- anon_sym_GT_GT_GT,
- anon_sym_LT_LT,
- anon_sym_CARET,
- anon_sym_PLUS,
- anon_sym_DASH,
- anon_sym_SLASH,
- anon_sym_PERCENT,
- anon_sym_STAR_STAR,
- anon_sym_LT,
- anon_sym_EQ_EQ,
- anon_sym_BANG_EQ,
- anon_sym_QMARK_QMARK,
- [7636] = 4,
- ACTIONS(3446), 1,
- anon_sym_extends,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(3384), 22,
- anon_sym_STAR,
- anon_sym_EQ,
- anon_sym_BANG,
- anon_sym_in,
- anon_sym_GT,
- anon_sym_AMP_AMP,
- anon_sym_PIPE_PIPE,
- anon_sym_GT_GT,
- anon_sym_GT_GT_GT,
- anon_sym_LT_LT,
- anon_sym_AMP,
- anon_sym_CARET,
- anon_sym_PIPE,
- anon_sym_PLUS,
- anon_sym_DASH,
- anon_sym_SLASH,
- anon_sym_PERCENT,
- anon_sym_STAR_STAR,
- anon_sym_LT,
- anon_sym_EQ_EQ,
- anon_sym_BANG_EQ,
- anon_sym_QMARK_QMARK,
- ACTIONS(3386), 35,
- sym__automatic_semicolon,
- sym__ternary_qmark,
- anon_sym_as,
- anon_sym_COMMA,
- anon_sym_RBRACE,
- anon_sym_LPAREN,
- anon_sym_of,
- anon_sym_SEMI,
- anon_sym_LBRACK,
- anon_sym_DOT,
- anon_sym_QMARK_DOT,
- anon_sym_PLUS_EQ,
- anon_sym_DASH_EQ,
- anon_sym_STAR_EQ,
- anon_sym_SLASH_EQ,
- anon_sym_PERCENT_EQ,
- anon_sym_CARET_EQ,
- anon_sym_AMP_EQ,
- anon_sym_PIPE_EQ,
- anon_sym_GT_GT_EQ,
- anon_sym_GT_GT_GT_EQ,
- anon_sym_LT_LT_EQ,
- anon_sym_STAR_STAR_EQ,
- anon_sym_AMP_AMP_EQ,
- anon_sym_PIPE_PIPE_EQ,
- anon_sym_QMARK_QMARK_EQ,
- anon_sym_LT_EQ,
- anon_sym_EQ_EQ_EQ,
- anon_sym_BANG_EQ_EQ,
- anon_sym_GT_EQ,
- anon_sym_instanceof,
- anon_sym_PLUS_PLUS,
- anon_sym_DASH_DASH,
- anon_sym_BQUOTE,
- anon_sym_satisfies,
- [7705] = 9,
- ACTIONS(872), 1,
- anon_sym_EQ,
- ACTIONS(878), 1,
- anon_sym_EQ_GT,
- ACTIONS(1650), 1,
- anon_sym_extends,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(3505), 2,
- anon_sym_COMMA,
- anon_sym_LBRACK,
- ACTIONS(3508), 3,
- anon_sym_GT,
- anon_sym_AMP,
- anon_sym_PIPE,
- ACTIONS(168), 15,
- anon_sym_PLUS_EQ,
- anon_sym_DASH_EQ,
- anon_sym_STAR_EQ,
- anon_sym_SLASH_EQ,
- anon_sym_PERCENT_EQ,
- anon_sym_CARET_EQ,
- anon_sym_AMP_EQ,
- anon_sym_PIPE_EQ,
- anon_sym_GT_GT_EQ,
- anon_sym_GT_GT_GT_EQ,
- anon_sym_LT_LT_EQ,
- anon_sym_STAR_STAR_EQ,
- anon_sym_AMP_AMP_EQ,
- anon_sym_PIPE_PIPE_EQ,
- anon_sym_QMARK_QMARK_EQ,
- ACTIONS(162), 17,
- sym__automatic_semicolon,
- sym__ternary_qmark,
- anon_sym_as,
- anon_sym_LPAREN,
- anon_sym_of,
- anon_sym_SEMI,
- anon_sym_DOT,
- anon_sym_QMARK_DOT,
- anon_sym_LT_EQ,
- anon_sym_EQ_EQ_EQ,
- anon_sym_BANG_EQ_EQ,
- anon_sym_GT_EQ,
- anon_sym_instanceof,
- anon_sym_PLUS_PLUS,
- anon_sym_DASH_DASH,
- anon_sym_BQUOTE,
- anon_sym_satisfies,
- ACTIONS(122), 18,
- anon_sym_STAR,
- anon_sym_BANG,
- anon_sym_in,
- anon_sym_AMP_AMP,
- anon_sym_PIPE_PIPE,
- anon_sym_GT_GT,
- anon_sym_GT_GT_GT,
- anon_sym_LT_LT,
- anon_sym_CARET,
- anon_sym_PLUS,
- anon_sym_DASH,
- anon_sym_SLASH,
- anon_sym_PERCENT,
- anon_sym_STAR_STAR,
- anon_sym_LT,
- anon_sym_EQ_EQ,
- anon_sym_BANG_EQ,
- anon_sym_QMARK_QMARK,
- [7784] = 4,
- ACTIONS(3382), 1,
- anon_sym_extends,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(3378), 22,
- anon_sym_STAR,
- anon_sym_EQ,
- anon_sym_BANG,
- anon_sym_in,
- anon_sym_GT,
- anon_sym_AMP_AMP,
- anon_sym_PIPE_PIPE,
- anon_sym_GT_GT,
- anon_sym_GT_GT_GT,
- anon_sym_LT_LT,
- anon_sym_AMP,
- anon_sym_CARET,
- anon_sym_PIPE,
- anon_sym_PLUS,
- anon_sym_DASH,
- anon_sym_SLASH,
- anon_sym_PERCENT,
- anon_sym_STAR_STAR,
- anon_sym_LT,
- anon_sym_EQ_EQ,
- anon_sym_BANG_EQ,
- anon_sym_QMARK_QMARK,
- ACTIONS(3380), 35,
- sym__automatic_semicolon,
- sym__ternary_qmark,
- anon_sym_as,
- anon_sym_COMMA,
- anon_sym_RBRACE,
- anon_sym_LPAREN,
- anon_sym_of,
- anon_sym_SEMI,
- anon_sym_LBRACK,
- anon_sym_DOT,
- anon_sym_QMARK_DOT,
- anon_sym_PLUS_EQ,
- anon_sym_DASH_EQ,
- anon_sym_STAR_EQ,
- anon_sym_SLASH_EQ,
- anon_sym_PERCENT_EQ,
- anon_sym_CARET_EQ,
- anon_sym_AMP_EQ,
- anon_sym_PIPE_EQ,
- anon_sym_GT_GT_EQ,
- anon_sym_GT_GT_GT_EQ,
- anon_sym_LT_LT_EQ,
- anon_sym_STAR_STAR_EQ,
- anon_sym_AMP_AMP_EQ,
- anon_sym_PIPE_PIPE_EQ,
- anon_sym_QMARK_QMARK_EQ,
- anon_sym_LT_EQ,
- anon_sym_EQ_EQ_EQ,
- anon_sym_BANG_EQ_EQ,
- anon_sym_GT_EQ,
- anon_sym_instanceof,
- anon_sym_PLUS_PLUS,
- anon_sym_DASH_DASH,
- anon_sym_BQUOTE,
- anon_sym_satisfies,
- [7853] = 12,
- ACTIONS(3463), 1,
- anon_sym_LBRACK,
- ACTIONS(3479), 1,
- anon_sym_DOT,
- ACTIONS(3482), 1,
- anon_sym_LT,
- ACTIONS(3518), 1,
- anon_sym_EQ,
- ACTIONS(3520), 1,
- anon_sym_EQ_GT,
- STATE(2856), 1,
- sym_type_arguments,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(3461), 2,
- anon_sym_COMMA,
- anon_sym_extends,
- ACTIONS(3469), 3,
- anon_sym_GT,
- anon_sym_AMP,
- anon_sym_PIPE,
- ACTIONS(3404), 15,
- sym__ternary_qmark,
- anon_sym_as,
- anon_sym_RBRACE,
- anon_sym_LPAREN,
- anon_sym_COLON,
- anon_sym_QMARK_DOT,
- anon_sym_LT_EQ,
- anon_sym_EQ_EQ_EQ,
- anon_sym_BANG_EQ_EQ,
- anon_sym_GT_EQ,
- anon_sym_instanceof,
- anon_sym_PLUS_PLUS,
- anon_sym_DASH_DASH,
- anon_sym_BQUOTE,
- anon_sym_satisfies,
- ACTIONS(3416), 15,
- anon_sym_PLUS_EQ,
- anon_sym_DASH_EQ,
- anon_sym_STAR_EQ,
- anon_sym_SLASH_EQ,
- anon_sym_PERCENT_EQ,
- anon_sym_CARET_EQ,
- anon_sym_AMP_EQ,
- anon_sym_PIPE_EQ,
- anon_sym_GT_GT_EQ,
- anon_sym_GT_GT_GT_EQ,
- anon_sym_LT_LT_EQ,
- anon_sym_STAR_STAR_EQ,
- anon_sym_AMP_AMP_EQ,
- anon_sym_PIPE_PIPE_EQ,
- anon_sym_QMARK_QMARK_EQ,
- ACTIONS(3400), 17,
- anon_sym_STAR,
- anon_sym_BANG,
- anon_sym_in,
- anon_sym_AMP_AMP,
- anon_sym_PIPE_PIPE,
- anon_sym_GT_GT,
- anon_sym_GT_GT_GT,
- anon_sym_LT_LT,
- anon_sym_CARET,
- anon_sym_PLUS,
- anon_sym_DASH,
- anon_sym_SLASH,
- anon_sym_PERCENT,
- anon_sym_STAR_STAR,
- anon_sym_EQ_EQ,
- anon_sym_BANG_EQ,
- anon_sym_QMARK_QMARK,
- [7938] = 4,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(3446), 3,
- anon_sym_COMMA,
- anon_sym_RBRACK,
- anon_sym_extends,
- ACTIONS(3384), 22,
- anon_sym_STAR,
- anon_sym_EQ,
- anon_sym_BANG,
- anon_sym_in,
- anon_sym_GT,
- anon_sym_AMP_AMP,
- anon_sym_PIPE_PIPE,
- anon_sym_GT_GT,
- anon_sym_GT_GT_GT,
- anon_sym_LT_LT,
- anon_sym_AMP,
- anon_sym_CARET,
- anon_sym_PIPE,
- anon_sym_PLUS,
- anon_sym_DASH,
- anon_sym_SLASH,
- anon_sym_PERCENT,
- anon_sym_STAR_STAR,
- anon_sym_LT,
- anon_sym_EQ_EQ,
- anon_sym_BANG_EQ,
- anon_sym_QMARK_QMARK,
- ACTIONS(3386), 33,
- sym__ternary_qmark,
- anon_sym_as,
- anon_sym_RBRACE,
- anon_sym_LPAREN,
- anon_sym_of,
- anon_sym_COLON,
- anon_sym_LBRACK,
- anon_sym_DOT,
- anon_sym_QMARK_DOT,
- anon_sym_PLUS_EQ,
- anon_sym_DASH_EQ,
- anon_sym_STAR_EQ,
- anon_sym_SLASH_EQ,
- anon_sym_PERCENT_EQ,
- anon_sym_CARET_EQ,
- anon_sym_AMP_EQ,
- anon_sym_PIPE_EQ,
- anon_sym_GT_GT_EQ,
- anon_sym_GT_GT_GT_EQ,
- anon_sym_LT_LT_EQ,
- anon_sym_STAR_STAR_EQ,
- anon_sym_AMP_AMP_EQ,
- anon_sym_PIPE_PIPE_EQ,
- anon_sym_QMARK_QMARK_EQ,
- anon_sym_LT_EQ,
- anon_sym_EQ_EQ_EQ,
- anon_sym_BANG_EQ_EQ,
- anon_sym_GT_EQ,
- anon_sym_instanceof,
- anon_sym_PLUS_PLUS,
- anon_sym_DASH_DASH,
- anon_sym_BQUOTE,
- anon_sym_satisfies,
- [8007] = 3,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(3490), 15,
- anon_sym_LBRACE,
- anon_sym_BANG,
- anon_sym_LPAREN,
- anon_sym_LBRACK,
- sym_glimmer_opening_tag,
- anon_sym_DQUOTE,
- anon_sym_SQUOTE,
- anon_sym_DOT_DOT_DOT,
- anon_sym_TILDE,
- anon_sym_PLUS_PLUS,
- anon_sym_DASH_DASH,
- anon_sym_BQUOTE,
- sym_number,
- sym_private_property_identifier,
- anon_sym_AT,
- ACTIONS(3488), 43,
- anon_sym_export,
- anon_sym_type,
- anon_sym_namespace,
- anon_sym_typeof,
- anon_sym_import,
- anon_sym_let,
- anon_sym_await,
- anon_sym_yield,
- anon_sym_class,
- anon_sym_async,
- anon_sym_function,
- anon_sym_new,
- anon_sym_using,
- anon_sym_PLUS,
- anon_sym_DASH,
- anon_sym_SLASH,
- anon_sym_LT,
- anon_sym_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_override,
- anon_sym_module,
- anon_sym_any,
- anon_sym_number,
- anon_sym_boolean,
- anon_sym_string,
- anon_sym_symbol,
- anon_sym_object,
- anon_sym_abstract,
- [8074] = 8,
- ACTIONS(715), 1,
- anon_sym_EQ_GT,
- ACTIONS(859), 1,
- anon_sym_EQ,
- ACTIONS(886), 1,
- anon_sym_COLON,
- ACTIONS(3372), 1,
- sym_identifier,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(162), 15,
- sym__automatic_semicolon,
- sym__ternary_qmark,
- anon_sym_COMMA,
- anon_sym_LPAREN,
- anon_sym_SEMI,
- anon_sym_LBRACK,
- anon_sym_DOT,
- anon_sym_QMARK_DOT,
- anon_sym_LT_EQ,
- anon_sym_EQ_EQ_EQ,
- anon_sym_BANG_EQ_EQ,
- anon_sym_GT_EQ,
- anon_sym_PLUS_PLUS,
- anon_sym_DASH_DASH,
- anon_sym_BQUOTE,
- ACTIONS(168), 15,
- anon_sym_PLUS_EQ,
- anon_sym_DASH_EQ,
- anon_sym_STAR_EQ,
- anon_sym_SLASH_EQ,
- anon_sym_PERCENT_EQ,
- anon_sym_CARET_EQ,
- anon_sym_AMP_EQ,
- anon_sym_PIPE_EQ,
- anon_sym_GT_GT_EQ,
- anon_sym_GT_GT_GT_EQ,
- anon_sym_LT_LT_EQ,
- anon_sym_STAR_STAR_EQ,
- anon_sym_AMP_AMP_EQ,
- anon_sym_PIPE_PIPE_EQ,
- anon_sym_QMARK_QMARK_EQ,
- ACTIONS(122), 24,
- anon_sym_STAR,
- anon_sym_as,
- anon_sym_BANG,
- anon_sym_in,
- anon_sym_GT,
- anon_sym_AMP_AMP,
- anon_sym_PIPE_PIPE,
- anon_sym_GT_GT,
- anon_sym_GT_GT_GT,
- anon_sym_LT_LT,
- anon_sym_AMP,
- anon_sym_CARET,
- anon_sym_PIPE,
- anon_sym_PLUS,
- anon_sym_DASH,
- anon_sym_SLASH,
- anon_sym_PERCENT,
- anon_sym_STAR_STAR,
- anon_sym_LT,
- anon_sym_EQ_EQ,
- anon_sym_BANG_EQ,
- anon_sym_QMARK_QMARK,
- anon_sym_instanceof,
- anon_sym_satisfies,
- [8151] = 7,
- ACTIONS(3454), 1,
- anon_sym_EQ,
- ACTIONS(3499), 1,
- anon_sym_QMARK,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(3496), 5,
- anon_sym_COMMA,
- anon_sym_RBRACE,
- anon_sym_RPAREN,
- anon_sym_COLON,
- anon_sym_RBRACK,
- ACTIONS(3404), 15,
- sym__ternary_qmark,
- anon_sym_as,
- anon_sym_LPAREN,
- anon_sym_LBRACK,
- anon_sym_DOT,
- anon_sym_QMARK_DOT,
- anon_sym_LT_EQ,
- anon_sym_EQ_EQ_EQ,
- anon_sym_BANG_EQ_EQ,
- anon_sym_GT_EQ,
- anon_sym_instanceof,
- anon_sym_PLUS_PLUS,
- anon_sym_DASH_DASH,
- anon_sym_BQUOTE,
- anon_sym_satisfies,
- ACTIONS(3416), 15,
- anon_sym_PLUS_EQ,
- anon_sym_DASH_EQ,
- anon_sym_STAR_EQ,
- anon_sym_SLASH_EQ,
- anon_sym_PERCENT_EQ,
- anon_sym_CARET_EQ,
- anon_sym_AMP_EQ,
- anon_sym_PIPE_EQ,
- anon_sym_GT_GT_EQ,
- anon_sym_GT_GT_GT_EQ,
- anon_sym_LT_LT_EQ,
- anon_sym_STAR_STAR_EQ,
- anon_sym_AMP_AMP_EQ,
- anon_sym_PIPE_PIPE_EQ,
- anon_sym_QMARK_QMARK_EQ,
- ACTIONS(3400), 21,
- anon_sym_STAR,
- anon_sym_BANG,
- anon_sym_in,
- anon_sym_GT,
- anon_sym_AMP_AMP,
- anon_sym_PIPE_PIPE,
- anon_sym_GT_GT,
- anon_sym_GT_GT_GT,
- anon_sym_LT_LT,
- anon_sym_AMP,
- anon_sym_CARET,
- anon_sym_PIPE,
- anon_sym_PLUS,
- anon_sym_DASH,
- anon_sym_SLASH,
- anon_sym_PERCENT,
- anon_sym_STAR_STAR,
- anon_sym_LT,
- anon_sym_EQ_EQ,
- anon_sym_BANG_EQ,
- anon_sym_QMARK_QMARK,
- [8226] = 3,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(3566), 15,
- anon_sym_LBRACE,
- anon_sym_BANG,
- anon_sym_LPAREN,
- anon_sym_LBRACK,
- sym_glimmer_opening_tag,
- anon_sym_DQUOTE,
- anon_sym_SQUOTE,
- anon_sym_DOT_DOT_DOT,
- anon_sym_TILDE,
- anon_sym_PLUS_PLUS,
- anon_sym_DASH_DASH,
- anon_sym_BQUOTE,
- sym_number,
- sym_private_property_identifier,
- anon_sym_AT,
- ACTIONS(3564), 43,
- anon_sym_export,
- anon_sym_type,
- anon_sym_namespace,
- anon_sym_typeof,
- anon_sym_import,
- anon_sym_let,
- anon_sym_await,
- anon_sym_yield,
- anon_sym_DOT,
- anon_sym_class,
- anon_sym_async,
- anon_sym_function,
- anon_sym_new,
- anon_sym_using,
- anon_sym_PLUS,
- anon_sym_DASH,
- anon_sym_SLASH,
- anon_sym_LT,
- anon_sym_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_override,
- anon_sym_module,
- anon_sym_any,
- anon_sym_number,
- anon_sym_boolean,
- anon_sym_string,
- anon_sym_symbol,
- anon_sym_object,
- [8293] = 13,
- ACTIONS(3463), 1,
- anon_sym_LBRACK,
- ACTIONS(3475), 1,
- anon_sym_EQ,
- ACTIONS(3479), 1,
- anon_sym_DOT,
- ACTIONS(3482), 1,
- anon_sym_LT,
- ACTIONS(3516), 1,
- anon_sym_EQ_GT,
- ACTIONS(3549), 1,
- anon_sym_COLON,
- STATE(2856), 1,
- sym_type_arguments,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(3469), 2,
- anon_sym_AMP,
- anon_sym_PIPE,
- ACTIONS(3461), 3,
- anon_sym_COMMA,
- anon_sym_RBRACK,
- anon_sym_extends,
- ACTIONS(3404), 13,
- sym__ternary_qmark,
- anon_sym_as,
- anon_sym_LPAREN,
- anon_sym_QMARK_DOT,
- anon_sym_LT_EQ,
- anon_sym_EQ_EQ_EQ,
- anon_sym_BANG_EQ_EQ,
- anon_sym_GT_EQ,
- anon_sym_instanceof,
- anon_sym_PLUS_PLUS,
- anon_sym_DASH_DASH,
- anon_sym_BQUOTE,
- anon_sym_satisfies,
- ACTIONS(3416), 15,
- anon_sym_PLUS_EQ,
- anon_sym_DASH_EQ,
- anon_sym_STAR_EQ,
- anon_sym_SLASH_EQ,
- anon_sym_PERCENT_EQ,
- anon_sym_CARET_EQ,
- anon_sym_AMP_EQ,
- anon_sym_PIPE_EQ,
- anon_sym_GT_GT_EQ,
- anon_sym_GT_GT_GT_EQ,
- anon_sym_LT_LT_EQ,
- anon_sym_STAR_STAR_EQ,
- anon_sym_AMP_AMP_EQ,
- anon_sym_PIPE_PIPE_EQ,
- anon_sym_QMARK_QMARK_EQ,
- ACTIONS(3400), 18,
- anon_sym_STAR,
- anon_sym_BANG,
- anon_sym_in,
- anon_sym_GT,
- anon_sym_AMP_AMP,
- anon_sym_PIPE_PIPE,
- anon_sym_GT_GT,
- anon_sym_GT_GT_GT,
- anon_sym_LT_LT,
- anon_sym_CARET,
- anon_sym_PLUS,
- anon_sym_DASH,
- anon_sym_SLASH,
- anon_sym_PERCENT,
- anon_sym_STAR_STAR,
- anon_sym_EQ_EQ,
- anon_sym_BANG_EQ,
- anon_sym_QMARK_QMARK,
- [8380] = 3,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(3570), 15,
- anon_sym_LBRACE,
- anon_sym_BANG,
- anon_sym_LPAREN,
- anon_sym_LBRACK,
- sym_glimmer_opening_tag,
- anon_sym_DQUOTE,
- anon_sym_SQUOTE,
- anon_sym_DOT_DOT_DOT,
- anon_sym_TILDE,
- anon_sym_PLUS_PLUS,
- anon_sym_DASH_DASH,
- anon_sym_BQUOTE,
- sym_number,
- sym_private_property_identifier,
- anon_sym_AT,
- ACTIONS(3568), 43,
- anon_sym_export,
- anon_sym_type,
- anon_sym_namespace,
- anon_sym_typeof,
- anon_sym_import,
- anon_sym_let,
- anon_sym_await,
- anon_sym_yield,
- anon_sym_class,
- anon_sym_async,
- anon_sym_function,
- anon_sym_new,
- anon_sym_using,
- anon_sym_PLUS,
- anon_sym_DASH,
- anon_sym_SLASH,
- anon_sym_LT,
- anon_sym_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_override,
- anon_sym_module,
- anon_sym_any,
- anon_sym_number,
- anon_sym_boolean,
- anon_sym_string,
- anon_sym_symbol,
- anon_sym_object,
- anon_sym_abstract,
- [8447] = 7,
- ACTIONS(3475), 1,
- anon_sym_EQ,
- ACTIONS(3551), 1,
- anon_sym_QMARK,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(3549), 5,
- anon_sym_COMMA,
- anon_sym_RBRACE,
- anon_sym_RPAREN,
- anon_sym_COLON,
- anon_sym_RBRACK,
- ACTIONS(3404), 15,
- sym__ternary_qmark,
- anon_sym_as,
- anon_sym_LPAREN,
- anon_sym_LBRACK,
- anon_sym_DOT,
- anon_sym_QMARK_DOT,
- anon_sym_LT_EQ,
- anon_sym_EQ_EQ_EQ,
- anon_sym_BANG_EQ_EQ,
- anon_sym_GT_EQ,
- anon_sym_instanceof,
- anon_sym_PLUS_PLUS,
- anon_sym_DASH_DASH,
- anon_sym_BQUOTE,
- anon_sym_satisfies,
- ACTIONS(3416), 15,
- anon_sym_PLUS_EQ,
- anon_sym_DASH_EQ,
- anon_sym_STAR_EQ,
- anon_sym_SLASH_EQ,
- anon_sym_PERCENT_EQ,
- anon_sym_CARET_EQ,
- anon_sym_AMP_EQ,
- anon_sym_PIPE_EQ,
- anon_sym_GT_GT_EQ,
- anon_sym_GT_GT_GT_EQ,
- anon_sym_LT_LT_EQ,
- anon_sym_STAR_STAR_EQ,
- anon_sym_AMP_AMP_EQ,
- anon_sym_PIPE_PIPE_EQ,
- anon_sym_QMARK_QMARK_EQ,
- ACTIONS(3400), 21,
- anon_sym_STAR,
- anon_sym_BANG,
- anon_sym_in,
- anon_sym_GT,
- anon_sym_AMP_AMP,
- anon_sym_PIPE_PIPE,
- anon_sym_GT_GT,
- anon_sym_GT_GT_GT,
- anon_sym_LT_LT,
- anon_sym_AMP,
- anon_sym_CARET,
- anon_sym_PIPE,
- anon_sym_PLUS,
- anon_sym_DASH,
- anon_sym_SLASH,
- anon_sym_PERCENT,
- anon_sym_STAR_STAR,
- anon_sym_LT,
- anon_sym_EQ_EQ,
- anon_sym_BANG_EQ,
- anon_sym_QMARK_QMARK,
- [8522] = 11,
- ACTIONS(224), 1,
- anon_sym_EQ,
- ACTIONS(229), 1,
- anon_sym_EQ_GT,
- ACTIONS(793), 1,
- anon_sym_QMARK,
- ACTIONS(3505), 1,
- anon_sym_LBRACK,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(227), 2,
- anon_sym_COMMA,
- anon_sym_COLON,
- ACTIONS(1650), 2,
- anon_sym_RPAREN,
- anon_sym_extends,
- ACTIONS(3508), 2,
- anon_sym_AMP,
- anon_sym_PIPE,
- ACTIONS(162), 14,
- sym__ternary_qmark,
- anon_sym_as,
- anon_sym_LPAREN,
- anon_sym_DOT,
- anon_sym_QMARK_DOT,
- anon_sym_LT_EQ,
- anon_sym_EQ_EQ_EQ,
- anon_sym_BANG_EQ_EQ,
- anon_sym_GT_EQ,
- anon_sym_instanceof,
- anon_sym_PLUS_PLUS,
- anon_sym_DASH_DASH,
- anon_sym_BQUOTE,
- anon_sym_satisfies,
- ACTIONS(168), 15,
- anon_sym_PLUS_EQ,
- anon_sym_DASH_EQ,
- anon_sym_STAR_EQ,
- anon_sym_SLASH_EQ,
- anon_sym_PERCENT_EQ,
- anon_sym_CARET_EQ,
- anon_sym_AMP_EQ,
- anon_sym_PIPE_EQ,
- anon_sym_GT_GT_EQ,
- anon_sym_GT_GT_GT_EQ,
- anon_sym_LT_LT_EQ,
- anon_sym_STAR_STAR_EQ,
- anon_sym_AMP_AMP_EQ,
- anon_sym_PIPE_PIPE_EQ,
- anon_sym_QMARK_QMARK_EQ,
- ACTIONS(122), 19,
- anon_sym_STAR,
- anon_sym_BANG,
- anon_sym_in,
- anon_sym_GT,
- anon_sym_AMP_AMP,
- anon_sym_PIPE_PIPE,
- anon_sym_GT_GT,
- anon_sym_GT_GT_GT,
- anon_sym_LT_LT,
- anon_sym_CARET,
- anon_sym_PLUS,
- anon_sym_DASH,
- anon_sym_SLASH,
- anon_sym_PERCENT,
- anon_sym_STAR_STAR,
- anon_sym_LT,
- anon_sym_EQ_EQ,
- anon_sym_BANG_EQ,
- anon_sym_QMARK_QMARK,
- [8605] = 12,
- ACTIONS(3463), 1,
- anon_sym_LBRACK,
- ACTIONS(3479), 1,
- anon_sym_DOT,
- ACTIONS(3482), 1,
- anon_sym_LT,
- ACTIONS(3501), 1,
- anon_sym_EQ,
- ACTIONS(3503), 1,
- anon_sym_EQ_GT,
- STATE(2856), 1,
- sym_type_arguments,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(3461), 2,
- anon_sym_COMMA,
- anon_sym_extends,
- ACTIONS(3469), 3,
- anon_sym_GT,
- anon_sym_AMP,
- anon_sym_PIPE,
- ACTIONS(3404), 15,
- sym__automatic_semicolon,
- sym__ternary_qmark,
- anon_sym_as,
- anon_sym_LPAREN,
- anon_sym_SEMI,
- anon_sym_QMARK_DOT,
- anon_sym_LT_EQ,
- anon_sym_EQ_EQ_EQ,
- anon_sym_BANG_EQ_EQ,
- anon_sym_GT_EQ,
- anon_sym_instanceof,
- anon_sym_PLUS_PLUS,
- anon_sym_DASH_DASH,
- anon_sym_BQUOTE,
- anon_sym_satisfies,
- ACTIONS(3416), 15,
- anon_sym_PLUS_EQ,
- anon_sym_DASH_EQ,
- anon_sym_STAR_EQ,
- anon_sym_SLASH_EQ,
- anon_sym_PERCENT_EQ,
- anon_sym_CARET_EQ,
- anon_sym_AMP_EQ,
- anon_sym_PIPE_EQ,
- anon_sym_GT_GT_EQ,
- anon_sym_GT_GT_GT_EQ,
- anon_sym_LT_LT_EQ,
- anon_sym_STAR_STAR_EQ,
- anon_sym_AMP_AMP_EQ,
- anon_sym_PIPE_PIPE_EQ,
- anon_sym_QMARK_QMARK_EQ,
- ACTIONS(3400), 17,
- anon_sym_STAR,
- anon_sym_BANG,
- anon_sym_in,
- anon_sym_AMP_AMP,
- anon_sym_PIPE_PIPE,
- anon_sym_GT_GT,
- anon_sym_GT_GT_GT,
- anon_sym_LT_LT,
- anon_sym_CARET,
- anon_sym_PLUS,
- anon_sym_DASH,
- anon_sym_SLASH,
- anon_sym_PERCENT,
- anon_sym_STAR_STAR,
- anon_sym_EQ_EQ,
- anon_sym_BANG_EQ,
- anon_sym_QMARK_QMARK,
- [8690] = 14,
- ACTIONS(3438), 1,
- anon_sym_LPAREN,
- ACTIONS(3440), 1,
- anon_sym_DOT,
- ACTIONS(3442), 1,
- anon_sym_QMARK_DOT,
- ACTIONS(3444), 1,
- anon_sym_LT,
- ACTIONS(3475), 1,
- anon_sym_EQ,
- ACTIONS(3516), 1,
- anon_sym_EQ_GT,
- STATE(2829), 1,
- sym_arguments,
- STATE(2852), 1,
- sym_type_arguments,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(3418), 2,
- anon_sym_AMP,
- anon_sym_PIPE,
- ACTIONS(3406), 4,
- anon_sym_COMMA,
- anon_sym_LBRACK,
- anon_sym_RBRACK,
- anon_sym_extends,
- ACTIONS(3404), 11,
- sym__ternary_qmark,
- anon_sym_as,
- anon_sym_LT_EQ,
- anon_sym_EQ_EQ_EQ,
- anon_sym_BANG_EQ_EQ,
- anon_sym_GT_EQ,
- anon_sym_instanceof,
- anon_sym_PLUS_PLUS,
- anon_sym_DASH_DASH,
- anon_sym_BQUOTE,
- anon_sym_satisfies,
- ACTIONS(3416), 15,
- anon_sym_PLUS_EQ,
- anon_sym_DASH_EQ,
- anon_sym_STAR_EQ,
- anon_sym_SLASH_EQ,
- anon_sym_PERCENT_EQ,
- anon_sym_CARET_EQ,
- anon_sym_AMP_EQ,
- anon_sym_PIPE_EQ,
- anon_sym_GT_GT_EQ,
- anon_sym_GT_GT_GT_EQ,
- anon_sym_LT_LT_EQ,
- anon_sym_STAR_STAR_EQ,
- anon_sym_AMP_AMP_EQ,
- anon_sym_PIPE_PIPE_EQ,
- anon_sym_QMARK_QMARK_EQ,
- ACTIONS(3400), 18,
- anon_sym_STAR,
- anon_sym_BANG,
- anon_sym_in,
- anon_sym_GT,
- anon_sym_AMP_AMP,
- anon_sym_PIPE_PIPE,
- anon_sym_GT_GT,
- anon_sym_GT_GT_GT,
- anon_sym_LT_LT,
- anon_sym_CARET,
- anon_sym_PLUS,
- anon_sym_DASH,
- anon_sym_SLASH,
- anon_sym_PERCENT,
- anon_sym_STAR_STAR,
- anon_sym_EQ_EQ,
- anon_sym_BANG_EQ,
- anon_sym_QMARK_QMARK,
- [8779] = 8,
- ACTIONS(715), 1,
- anon_sym_EQ_GT,
- ACTIONS(859), 1,
- anon_sym_EQ,
- ACTIONS(866), 1,
- anon_sym_COLON,
- ACTIONS(3372), 1,
- sym_identifier,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(162), 15,
- sym__automatic_semicolon,
- sym__ternary_qmark,
- anon_sym_COMMA,
- anon_sym_LPAREN,
- anon_sym_SEMI,
- anon_sym_LBRACK,
- anon_sym_DOT,
- anon_sym_QMARK_DOT,
- anon_sym_LT_EQ,
- anon_sym_EQ_EQ_EQ,
- anon_sym_BANG_EQ_EQ,
- anon_sym_GT_EQ,
- anon_sym_PLUS_PLUS,
- anon_sym_DASH_DASH,
- anon_sym_BQUOTE,
- ACTIONS(168), 15,
- anon_sym_PLUS_EQ,
- anon_sym_DASH_EQ,
- anon_sym_STAR_EQ,
- anon_sym_SLASH_EQ,
- anon_sym_PERCENT_EQ,
- anon_sym_CARET_EQ,
- anon_sym_AMP_EQ,
- anon_sym_PIPE_EQ,
- anon_sym_GT_GT_EQ,
- anon_sym_GT_GT_GT_EQ,
- anon_sym_LT_LT_EQ,
- anon_sym_STAR_STAR_EQ,
- anon_sym_AMP_AMP_EQ,
- anon_sym_PIPE_PIPE_EQ,
- anon_sym_QMARK_QMARK_EQ,
- ACTIONS(122), 24,
- anon_sym_STAR,
- anon_sym_as,
- anon_sym_BANG,
- anon_sym_in,
- anon_sym_GT,
- anon_sym_AMP_AMP,
- anon_sym_PIPE_PIPE,
- anon_sym_GT_GT,
- anon_sym_GT_GT_GT,
- anon_sym_LT_LT,
- anon_sym_AMP,
- anon_sym_CARET,
- anon_sym_PIPE,
- anon_sym_PLUS,
- anon_sym_DASH,
- anon_sym_SLASH,
- anon_sym_PERCENT,
- anon_sym_STAR_STAR,
- anon_sym_LT,
- anon_sym_EQ_EQ,
- anon_sym_BANG_EQ,
- anon_sym_QMARK_QMARK,
- anon_sym_instanceof,
- anon_sym_satisfies,
- [8856] = 8,
- ACTIONS(715), 1,
- anon_sym_EQ_GT,
- ACTIONS(859), 1,
- anon_sym_EQ,
- ACTIONS(884), 1,
- anon_sym_COLON,
- ACTIONS(3372), 1,
- sym_identifier,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(162), 15,
- sym__automatic_semicolon,
- sym__ternary_qmark,
- anon_sym_COMMA,
- anon_sym_LPAREN,
- anon_sym_SEMI,
- anon_sym_LBRACK,
- anon_sym_DOT,
- anon_sym_QMARK_DOT,
- anon_sym_LT_EQ,
- anon_sym_EQ_EQ_EQ,
- anon_sym_BANG_EQ_EQ,
- anon_sym_GT_EQ,
- anon_sym_PLUS_PLUS,
- anon_sym_DASH_DASH,
- anon_sym_BQUOTE,
- ACTIONS(168), 15,
- anon_sym_PLUS_EQ,
- anon_sym_DASH_EQ,
- anon_sym_STAR_EQ,
- anon_sym_SLASH_EQ,
- anon_sym_PERCENT_EQ,
- anon_sym_CARET_EQ,
- anon_sym_AMP_EQ,
- anon_sym_PIPE_EQ,
- anon_sym_GT_GT_EQ,
- anon_sym_GT_GT_GT_EQ,
- anon_sym_LT_LT_EQ,
- anon_sym_STAR_STAR_EQ,
- anon_sym_AMP_AMP_EQ,
- anon_sym_PIPE_PIPE_EQ,
- anon_sym_QMARK_QMARK_EQ,
- ACTIONS(122), 24,
- anon_sym_STAR,
- anon_sym_as,
- anon_sym_BANG,
- anon_sym_in,
- anon_sym_GT,
- anon_sym_AMP_AMP,
- anon_sym_PIPE_PIPE,
- anon_sym_GT_GT,
- anon_sym_GT_GT_GT,
- anon_sym_LT_LT,
- anon_sym_AMP,
- anon_sym_CARET,
- anon_sym_PIPE,
- anon_sym_PLUS,
- anon_sym_DASH,
- anon_sym_SLASH,
- anon_sym_PERCENT,
- anon_sym_STAR_STAR,
- anon_sym_LT,
- anon_sym_EQ_EQ,
- anon_sym_BANG_EQ,
- anon_sym_QMARK_QMARK,
- anon_sym_instanceof,
- anon_sym_satisfies,
- [8933] = 6,
- ACTIONS(160), 1,
- anon_sym_EQ_GT,
- ACTIONS(841), 1,
- anon_sym_EQ,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(168), 15,
- anon_sym_PLUS_EQ,
- anon_sym_DASH_EQ,
- anon_sym_STAR_EQ,
- anon_sym_SLASH_EQ,
- anon_sym_PERCENT_EQ,
- anon_sym_CARET_EQ,
- anon_sym_AMP_EQ,
- anon_sym_PIPE_EQ,
- anon_sym_GT_GT_EQ,
- anon_sym_GT_GT_GT_EQ,
- anon_sym_LT_LT_EQ,
- anon_sym_STAR_STAR_EQ,
- anon_sym_AMP_AMP_EQ,
- anon_sym_PIPE_PIPE_EQ,
- anon_sym_QMARK_QMARK_EQ,
- ACTIONS(162), 20,
- sym__ternary_qmark,
- anon_sym_as,
- anon_sym_COMMA,
- anon_sym_RBRACE,
- anon_sym_LPAREN,
- anon_sym_RPAREN,
- anon_sym_COLON,
- anon_sym_LBRACK,
- anon_sym_RBRACK,
- anon_sym_DOT,
- anon_sym_QMARK_DOT,
- anon_sym_LT_EQ,
- anon_sym_EQ_EQ_EQ,
- anon_sym_BANG_EQ_EQ,
- anon_sym_GT_EQ,
- anon_sym_instanceof,
- anon_sym_PLUS_PLUS,
- anon_sym_DASH_DASH,
- anon_sym_BQUOTE,
- anon_sym_satisfies,
- ACTIONS(122), 21,
- anon_sym_STAR,
- anon_sym_BANG,
- anon_sym_in,
- anon_sym_GT,
- anon_sym_AMP_AMP,
- anon_sym_PIPE_PIPE,
- anon_sym_GT_GT,
- anon_sym_GT_GT_GT,
- anon_sym_LT_LT,
- anon_sym_AMP,
- anon_sym_CARET,
- anon_sym_PIPE,
- anon_sym_PLUS,
- anon_sym_DASH,
- anon_sym_SLASH,
- anon_sym_PERCENT,
- anon_sym_STAR_STAR,
- anon_sym_LT,
- anon_sym_EQ_EQ,
- anon_sym_BANG_EQ,
- anon_sym_QMARK_QMARK,
- [9006] = 14,
- ACTIONS(3402), 1,
- anon_sym_EQ,
- ACTIONS(3412), 1,
- anon_sym_EQ_GT,
- ACTIONS(3461), 1,
- anon_sym_extends,
- ACTIONS(3463), 1,
- anon_sym_LBRACK,
- ACTIONS(3479), 1,
- anon_sym_DOT,
- ACTIONS(3482), 1,
- anon_sym_LT,
- ACTIONS(3549), 1,
- anon_sym_COLON,
- STATE(2856), 1,
- sym_type_arguments,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(3469), 2,
- anon_sym_AMP,
- anon_sym_PIPE,
- ACTIONS(3572), 2,
- anon_sym_COMMA,
- anon_sym_RBRACK,
- ACTIONS(3404), 13,
- sym__ternary_qmark,
- anon_sym_as,
- anon_sym_LPAREN,
- anon_sym_QMARK_DOT,
- anon_sym_LT_EQ,
- anon_sym_EQ_EQ_EQ,
- anon_sym_BANG_EQ_EQ,
- anon_sym_GT_EQ,
- anon_sym_instanceof,
- anon_sym_PLUS_PLUS,
- anon_sym_DASH_DASH,
- anon_sym_BQUOTE,
- anon_sym_satisfies,
- ACTIONS(3416), 15,
- anon_sym_PLUS_EQ,
- anon_sym_DASH_EQ,
- anon_sym_STAR_EQ,
- anon_sym_SLASH_EQ,
- anon_sym_PERCENT_EQ,
- anon_sym_CARET_EQ,
- anon_sym_AMP_EQ,
- anon_sym_PIPE_EQ,
- anon_sym_GT_GT_EQ,
- anon_sym_GT_GT_GT_EQ,
- anon_sym_LT_LT_EQ,
- anon_sym_STAR_STAR_EQ,
- anon_sym_AMP_AMP_EQ,
- anon_sym_PIPE_PIPE_EQ,
- anon_sym_QMARK_QMARK_EQ,
- ACTIONS(3400), 18,
- anon_sym_STAR,
- anon_sym_BANG,
- anon_sym_in,
- anon_sym_GT,
- anon_sym_AMP_AMP,
- anon_sym_PIPE_PIPE,
- anon_sym_GT_GT,
- anon_sym_GT_GT_GT,
- anon_sym_LT_LT,
- anon_sym_CARET,
- anon_sym_PLUS,
- anon_sym_DASH,
- anon_sym_SLASH,
- anon_sym_PERCENT,
- anon_sym_STAR_STAR,
- anon_sym_EQ_EQ,
- anon_sym_BANG_EQ,
- anon_sym_QMARK_QMARK,
- [9095] = 4,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(3382), 3,
- anon_sym_COMMA,
- anon_sym_RBRACK,
- anon_sym_extends,
- ACTIONS(3378), 22,
- anon_sym_STAR,
- anon_sym_EQ,
- anon_sym_BANG,
- anon_sym_in,
- anon_sym_GT,
- anon_sym_AMP_AMP,
- anon_sym_PIPE_PIPE,
- anon_sym_GT_GT,
- anon_sym_GT_GT_GT,
- anon_sym_LT_LT,
- anon_sym_AMP,
- anon_sym_CARET,
- anon_sym_PIPE,
- anon_sym_PLUS,
- anon_sym_DASH,
- anon_sym_SLASH,
- anon_sym_PERCENT,
- anon_sym_STAR_STAR,
- anon_sym_LT,
- anon_sym_EQ_EQ,
- anon_sym_BANG_EQ,
- anon_sym_QMARK_QMARK,
- ACTIONS(3380), 33,
- sym__ternary_qmark,
- anon_sym_as,
- anon_sym_RBRACE,
- anon_sym_LPAREN,
- anon_sym_of,
- anon_sym_COLON,
- anon_sym_LBRACK,
- anon_sym_DOT,
- anon_sym_QMARK_DOT,
- anon_sym_PLUS_EQ,
- anon_sym_DASH_EQ,
- anon_sym_STAR_EQ,
- anon_sym_SLASH_EQ,
- anon_sym_PERCENT_EQ,
- anon_sym_CARET_EQ,
- anon_sym_AMP_EQ,
- anon_sym_PIPE_EQ,
- anon_sym_GT_GT_EQ,
- anon_sym_GT_GT_GT_EQ,
- anon_sym_LT_LT_EQ,
- anon_sym_STAR_STAR_EQ,
- anon_sym_AMP_AMP_EQ,
- anon_sym_PIPE_PIPE_EQ,
- anon_sym_QMARK_QMARK_EQ,
- anon_sym_LT_EQ,
- anon_sym_EQ_EQ_EQ,
- anon_sym_BANG_EQ_EQ,
- anon_sym_GT_EQ,
- anon_sym_instanceof,
- anon_sym_PLUS_PLUS,
- anon_sym_DASH_DASH,
- anon_sym_BQUOTE,
- anon_sym_satisfies,
- [9164] = 4,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(3446), 4,
- sym__automatic_semicolon,
- anon_sym_SEMI,
- anon_sym_extends,
- anon_sym_PIPE_RBRACE,
- ACTIONS(3384), 22,
- anon_sym_STAR,
- anon_sym_EQ,
- anon_sym_BANG,
- anon_sym_in,
- anon_sym_GT,
- anon_sym_AMP_AMP,
- anon_sym_PIPE_PIPE,
- anon_sym_GT_GT,
- anon_sym_GT_GT_GT,
- anon_sym_LT_LT,
- anon_sym_AMP,
- anon_sym_CARET,
- anon_sym_PIPE,
- anon_sym_PLUS,
- anon_sym_DASH,
- anon_sym_SLASH,
- anon_sym_PERCENT,
- anon_sym_STAR_STAR,
- anon_sym_LT,
- anon_sym_EQ_EQ,
- anon_sym_BANG_EQ,
- anon_sym_QMARK_QMARK,
- ACTIONS(3386), 32,
- sym__ternary_qmark,
- anon_sym_as,
- anon_sym_COMMA,
- anon_sym_RBRACE,
- anon_sym_LPAREN,
- anon_sym_LBRACK,
- anon_sym_DOT,
- anon_sym_QMARK_DOT,
- anon_sym_PLUS_EQ,
- anon_sym_DASH_EQ,
- anon_sym_STAR_EQ,
- anon_sym_SLASH_EQ,
- anon_sym_PERCENT_EQ,
- anon_sym_CARET_EQ,
- anon_sym_AMP_EQ,
- anon_sym_PIPE_EQ,
- anon_sym_GT_GT_EQ,
- anon_sym_GT_GT_GT_EQ,
- anon_sym_LT_LT_EQ,
- anon_sym_STAR_STAR_EQ,
- anon_sym_AMP_AMP_EQ,
- anon_sym_PIPE_PIPE_EQ,
- anon_sym_QMARK_QMARK_EQ,
- anon_sym_LT_EQ,
- anon_sym_EQ_EQ_EQ,
- anon_sym_BANG_EQ_EQ,
- anon_sym_GT_EQ,
- anon_sym_instanceof,
- anon_sym_PLUS_PLUS,
- anon_sym_DASH_DASH,
- anon_sym_BQUOTE,
- anon_sym_satisfies,
- [9233] = 3,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(3578), 15,
- anon_sym_LBRACE,
- anon_sym_BANG,
- anon_sym_LPAREN,
- anon_sym_LBRACK,
- sym_glimmer_opening_tag,
- anon_sym_DQUOTE,
- anon_sym_SQUOTE,
- anon_sym_DOT_DOT_DOT,
- anon_sym_TILDE,
- anon_sym_PLUS_PLUS,
- anon_sym_DASH_DASH,
- anon_sym_BQUOTE,
- sym_number,
- sym_private_property_identifier,
- anon_sym_AT,
- ACTIONS(3576), 43,
- anon_sym_export,
- anon_sym_type,
- anon_sym_namespace,
- anon_sym_typeof,
- anon_sym_import,
- anon_sym_let,
- anon_sym_await,
- anon_sym_yield,
- anon_sym_class,
- anon_sym_async,
- anon_sym_function,
- anon_sym_new,
- anon_sym_using,
- anon_sym_PLUS,
- anon_sym_DASH,
- anon_sym_SLASH,
- anon_sym_LT,
- anon_sym_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_override,
- anon_sym_module,
- anon_sym_any,
- anon_sym_number,
- anon_sym_boolean,
- anon_sym_string,
- anon_sym_symbol,
- anon_sym_object,
- anon_sym_abstract,
- [9300] = 4,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(3382), 4,
- sym__automatic_semicolon,
- anon_sym_SEMI,
- anon_sym_extends,
- anon_sym_PIPE_RBRACE,
- ACTIONS(3378), 22,
- anon_sym_STAR,
- anon_sym_EQ,
- anon_sym_BANG,
- anon_sym_in,
- anon_sym_GT,
- anon_sym_AMP_AMP,
- anon_sym_PIPE_PIPE,
- anon_sym_GT_GT,
- anon_sym_GT_GT_GT,
- anon_sym_LT_LT,
- anon_sym_AMP,
- anon_sym_CARET,
- anon_sym_PIPE,
- anon_sym_PLUS,
- anon_sym_DASH,
- anon_sym_SLASH,
- anon_sym_PERCENT,
- anon_sym_STAR_STAR,
- anon_sym_LT,
- anon_sym_EQ_EQ,
- anon_sym_BANG_EQ,
- anon_sym_QMARK_QMARK,
- ACTIONS(3380), 32,
- sym__ternary_qmark,
- anon_sym_as,
- anon_sym_COMMA,
- anon_sym_RBRACE,
- anon_sym_LPAREN,
- anon_sym_LBRACK,
- anon_sym_DOT,
- anon_sym_QMARK_DOT,
- anon_sym_PLUS_EQ,
- anon_sym_DASH_EQ,
- anon_sym_STAR_EQ,
- anon_sym_SLASH_EQ,
- anon_sym_PERCENT_EQ,
- anon_sym_CARET_EQ,
- anon_sym_AMP_EQ,
- anon_sym_PIPE_EQ,
- anon_sym_GT_GT_EQ,
- anon_sym_GT_GT_GT_EQ,
- anon_sym_LT_LT_EQ,
- anon_sym_STAR_STAR_EQ,
- anon_sym_AMP_AMP_EQ,
- anon_sym_PIPE_PIPE_EQ,
- anon_sym_QMARK_QMARK_EQ,
- anon_sym_LT_EQ,
- anon_sym_EQ_EQ_EQ,
- anon_sym_BANG_EQ_EQ,
- anon_sym_GT_EQ,
- anon_sym_instanceof,
- anon_sym_PLUS_PLUS,
- anon_sym_DASH_DASH,
- anon_sym_BQUOTE,
- anon_sym_satisfies,
- [9369] = 9,
- ACTIONS(715), 1,
- anon_sym_EQ_GT,
- ACTIONS(859), 1,
- anon_sym_EQ,
- ACTIONS(1650), 1,
- anon_sym_extends,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(3505), 2,
- anon_sym_COMMA,
- anon_sym_LBRACK,
- ACTIONS(3508), 3,
- anon_sym_GT,
- anon_sym_AMP,
- anon_sym_PIPE,
- ACTIONS(168), 15,
- anon_sym_PLUS_EQ,
- anon_sym_DASH_EQ,
- anon_sym_STAR_EQ,
- anon_sym_SLASH_EQ,
- anon_sym_PERCENT_EQ,
- anon_sym_CARET_EQ,
- anon_sym_AMP_EQ,
- anon_sym_PIPE_EQ,
- anon_sym_GT_GT_EQ,
- anon_sym_GT_GT_GT_EQ,
- anon_sym_LT_LT_EQ,
- anon_sym_STAR_STAR_EQ,
- anon_sym_AMP_AMP_EQ,
- anon_sym_PIPE_PIPE_EQ,
- anon_sym_QMARK_QMARK_EQ,
- ACTIONS(162), 17,
- sym__automatic_semicolon,
- sym__ternary_qmark,
- anon_sym_as,
- anon_sym_RBRACE,
- anon_sym_LPAREN,
- anon_sym_SEMI,
- anon_sym_DOT,
- anon_sym_QMARK_DOT,
- anon_sym_LT_EQ,
- anon_sym_EQ_EQ_EQ,
- anon_sym_BANG_EQ_EQ,
- anon_sym_GT_EQ,
- anon_sym_instanceof,
- anon_sym_PLUS_PLUS,
- anon_sym_DASH_DASH,
- anon_sym_BQUOTE,
- anon_sym_satisfies,
- ACTIONS(122), 18,
- anon_sym_STAR,
- anon_sym_BANG,
- anon_sym_in,
- anon_sym_AMP_AMP,
- anon_sym_PIPE_PIPE,
- anon_sym_GT_GT,
- anon_sym_GT_GT_GT,
- anon_sym_LT_LT,
- anon_sym_CARET,
- anon_sym_PLUS,
- anon_sym_DASH,
- anon_sym_SLASH,
- anon_sym_PERCENT,
- anon_sym_STAR_STAR,
- anon_sym_LT,
- anon_sym_EQ_EQ,
- anon_sym_BANG_EQ,
- anon_sym_QMARK_QMARK,
- [9448] = 6,
- ACTIONS(3427), 1,
- anon_sym_EQ_GT,
- ACTIONS(3475), 1,
- anon_sym_EQ,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(3416), 15,
- anon_sym_PLUS_EQ,
- anon_sym_DASH_EQ,
- anon_sym_STAR_EQ,
- anon_sym_SLASH_EQ,
- anon_sym_PERCENT_EQ,
- anon_sym_CARET_EQ,
- anon_sym_AMP_EQ,
- anon_sym_PIPE_EQ,
- anon_sym_GT_GT_EQ,
- anon_sym_GT_GT_GT_EQ,
- anon_sym_LT_LT_EQ,
- anon_sym_STAR_STAR_EQ,
- anon_sym_AMP_AMP_EQ,
- anon_sym_PIPE_PIPE_EQ,
- anon_sym_QMARK_QMARK_EQ,
- ACTIONS(3404), 19,
- sym__automatic_semicolon,
- sym__ternary_qmark,
- anon_sym_as,
- anon_sym_COMMA,
- anon_sym_RBRACE,
- anon_sym_LPAREN,
- anon_sym_SEMI,
- anon_sym_LBRACK,
- anon_sym_DOT,
- anon_sym_QMARK_DOT,
- anon_sym_LT_EQ,
- anon_sym_EQ_EQ_EQ,
- anon_sym_BANG_EQ_EQ,
- anon_sym_GT_EQ,
- anon_sym_instanceof,
- anon_sym_PLUS_PLUS,
- anon_sym_DASH_DASH,
- anon_sym_BQUOTE,
- anon_sym_satisfies,
- ACTIONS(3400), 21,
- anon_sym_STAR,
- anon_sym_BANG,
- anon_sym_in,
- anon_sym_GT,
- anon_sym_AMP_AMP,
- anon_sym_PIPE_PIPE,
- anon_sym_GT_GT,
- anon_sym_GT_GT_GT,
- anon_sym_LT_LT,
- anon_sym_AMP,
- anon_sym_CARET,
- anon_sym_PIPE,
- anon_sym_PLUS,
- anon_sym_DASH,
- anon_sym_SLASH,
- anon_sym_PERCENT,
- anon_sym_STAR_STAR,
- anon_sym_LT,
- anon_sym_EQ_EQ,
- anon_sym_BANG_EQ,
- anon_sym_QMARK_QMARK,
- [9520] = 11,
- ACTIONS(160), 1,
- anon_sym_EQ_GT,
- ACTIONS(847), 1,
- anon_sym_COLON,
- ACTIONS(857), 1,
- anon_sym_EQ,
- ACTIONS(1650), 1,
- anon_sym_extends,
- ACTIONS(3505), 1,
- anon_sym_LBRACK,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(3508), 2,
- anon_sym_AMP,
- anon_sym_PIPE,
- ACTIONS(3580), 2,
- anon_sym_COMMA,
- anon_sym_RBRACK,
- ACTIONS(162), 14,
- sym__ternary_qmark,
- anon_sym_as,
- anon_sym_LPAREN,
- anon_sym_DOT,
- anon_sym_QMARK_DOT,
- anon_sym_LT_EQ,
- anon_sym_EQ_EQ_EQ,
- anon_sym_BANG_EQ_EQ,
- anon_sym_GT_EQ,
- anon_sym_instanceof,
- anon_sym_PLUS_PLUS,
- anon_sym_DASH_DASH,
- anon_sym_BQUOTE,
- anon_sym_satisfies,
- ACTIONS(168), 15,
- anon_sym_PLUS_EQ,
- anon_sym_DASH_EQ,
- anon_sym_STAR_EQ,
- anon_sym_SLASH_EQ,
- anon_sym_PERCENT_EQ,
- anon_sym_CARET_EQ,
- anon_sym_AMP_EQ,
- anon_sym_PIPE_EQ,
- anon_sym_GT_GT_EQ,
- anon_sym_GT_GT_GT_EQ,
- anon_sym_LT_LT_EQ,
- anon_sym_STAR_STAR_EQ,
- anon_sym_AMP_AMP_EQ,
- anon_sym_PIPE_PIPE_EQ,
- anon_sym_QMARK_QMARK_EQ,
- ACTIONS(122), 19,
- anon_sym_STAR,
- anon_sym_BANG,
- anon_sym_in,
- anon_sym_GT,
- anon_sym_AMP_AMP,
- anon_sym_PIPE_PIPE,
- anon_sym_GT_GT,
- anon_sym_GT_GT_GT,
- anon_sym_LT_LT,
- anon_sym_CARET,
- anon_sym_PLUS,
- anon_sym_DASH,
- anon_sym_SLASH,
- anon_sym_PERCENT,
- anon_sym_STAR_STAR,
- anon_sym_LT,
- anon_sym_EQ_EQ,
- anon_sym_BANG_EQ,
- anon_sym_QMARK_QMARK,
- [9602] = 8,
- ACTIONS(160), 1,
- anon_sym_EQ_GT,
- ACTIONS(847), 1,
- anon_sym_COLON,
- ACTIONS(857), 1,
- anon_sym_EQ,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(888), 3,
- anon_sym_COMMA,
- anon_sym_RBRACE,
- anon_sym_RBRACK,
- ACTIONS(162), 15,
- sym__ternary_qmark,
- anon_sym_as,
- anon_sym_LPAREN,
- anon_sym_LBRACK,
- anon_sym_DOT,
- anon_sym_QMARK_DOT,
- anon_sym_LT_EQ,
- anon_sym_EQ_EQ_EQ,
- anon_sym_BANG_EQ_EQ,
- anon_sym_GT_EQ,
- anon_sym_instanceof,
- anon_sym_PLUS_PLUS,
- anon_sym_DASH_DASH,
- anon_sym_BQUOTE,
- anon_sym_satisfies,
- ACTIONS(168), 15,
- anon_sym_PLUS_EQ,
- anon_sym_DASH_EQ,
- anon_sym_STAR_EQ,
- anon_sym_SLASH_EQ,
- anon_sym_PERCENT_EQ,
- anon_sym_CARET_EQ,
- anon_sym_AMP_EQ,
- anon_sym_PIPE_EQ,
- anon_sym_GT_GT_EQ,
- anon_sym_GT_GT_GT_EQ,
- anon_sym_LT_LT_EQ,
- anon_sym_STAR_STAR_EQ,
- anon_sym_AMP_AMP_EQ,
- anon_sym_PIPE_PIPE_EQ,
- anon_sym_QMARK_QMARK_EQ,
- ACTIONS(122), 21,
- anon_sym_STAR,
- anon_sym_BANG,
- anon_sym_in,
- anon_sym_GT,
- anon_sym_AMP_AMP,
- anon_sym_PIPE_PIPE,
- anon_sym_GT_GT,
- anon_sym_GT_GT_GT,
- anon_sym_LT_LT,
- anon_sym_AMP,
- anon_sym_CARET,
- anon_sym_PIPE,
- anon_sym_PLUS,
- anon_sym_DASH,
- anon_sym_SLASH,
- anon_sym_PERCENT,
- anon_sym_STAR_STAR,
- anon_sym_LT,
- anon_sym_EQ_EQ,
- anon_sym_BANG_EQ,
- anon_sym_QMARK_QMARK,
- [9678] = 6,
- ACTIONS(841), 1,
- anon_sym_EQ,
- ACTIONS(878), 1,
- anon_sym_EQ_GT,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(168), 15,
- anon_sym_PLUS_EQ,
- anon_sym_DASH_EQ,
- anon_sym_STAR_EQ,
- anon_sym_SLASH_EQ,
- anon_sym_PERCENT_EQ,
- anon_sym_CARET_EQ,
- anon_sym_AMP_EQ,
- anon_sym_PIPE_EQ,
- anon_sym_GT_GT_EQ,
- anon_sym_GT_GT_GT_EQ,
- anon_sym_LT_LT_EQ,
- anon_sym_STAR_STAR_EQ,
- anon_sym_AMP_AMP_EQ,
- anon_sym_PIPE_PIPE_EQ,
- anon_sym_QMARK_QMARK_EQ,
- ACTIONS(162), 19,
- sym__automatic_semicolon,
- sym__ternary_qmark,
- anon_sym_as,
- anon_sym_COMMA,
- anon_sym_LPAREN,
- anon_sym_of,
- anon_sym_SEMI,
- anon_sym_LBRACK,
- anon_sym_DOT,
- anon_sym_QMARK_DOT,
- anon_sym_LT_EQ,
- anon_sym_EQ_EQ_EQ,
- anon_sym_BANG_EQ_EQ,
- anon_sym_GT_EQ,
- anon_sym_instanceof,
- anon_sym_PLUS_PLUS,
- anon_sym_DASH_DASH,
- anon_sym_BQUOTE,
- anon_sym_satisfies,
- ACTIONS(122), 21,
- anon_sym_STAR,
- anon_sym_BANG,
- anon_sym_in,
- anon_sym_GT,
- anon_sym_AMP_AMP,
- anon_sym_PIPE_PIPE,
- anon_sym_GT_GT,
- anon_sym_GT_GT_GT,
- anon_sym_LT_LT,
- anon_sym_AMP,
- anon_sym_CARET,
- anon_sym_PIPE,
- anon_sym_PLUS,
- anon_sym_DASH,
- anon_sym_SLASH,
- anon_sym_PERCENT,
- anon_sym_STAR_STAR,
- anon_sym_LT,
- anon_sym_EQ_EQ,
- anon_sym_BANG_EQ,
- anon_sym_QMARK_QMARK,
- [9750] = 5,
- ACTIONS(3402), 1,
- anon_sym_EQ,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(3416), 15,
- anon_sym_PLUS_EQ,
- anon_sym_DASH_EQ,
- anon_sym_STAR_EQ,
- anon_sym_SLASH_EQ,
- anon_sym_PERCENT_EQ,
- anon_sym_CARET_EQ,
- anon_sym_AMP_EQ,
- anon_sym_PIPE_EQ,
- anon_sym_GT_GT_EQ,
- anon_sym_GT_GT_GT_EQ,
- anon_sym_LT_LT_EQ,
- anon_sym_STAR_STAR_EQ,
- anon_sym_AMP_AMP_EQ,
- anon_sym_PIPE_PIPE_EQ,
- anon_sym_QMARK_QMARK_EQ,
- ACTIONS(3404), 20,
- sym__ternary_qmark,
- anon_sym_as,
- anon_sym_COMMA,
- anon_sym_RBRACE,
- anon_sym_LPAREN,
- anon_sym_RPAREN,
- anon_sym_COLON,
- anon_sym_LBRACK,
- anon_sym_RBRACK,
- anon_sym_DOT,
- anon_sym_QMARK_DOT,
- anon_sym_LT_EQ,
- anon_sym_EQ_EQ_EQ,
- anon_sym_BANG_EQ_EQ,
- anon_sym_GT_EQ,
- anon_sym_instanceof,
- anon_sym_PLUS_PLUS,
- anon_sym_DASH_DASH,
- anon_sym_BQUOTE,
- anon_sym_satisfies,
- ACTIONS(3400), 21,
- anon_sym_STAR,
- anon_sym_BANG,
- anon_sym_in,
- anon_sym_GT,
- anon_sym_AMP_AMP,
- anon_sym_PIPE_PIPE,
- anon_sym_GT_GT,
- anon_sym_GT_GT_GT,
- anon_sym_LT_LT,
- anon_sym_AMP,
- anon_sym_CARET,
- anon_sym_PIPE,
- anon_sym_PLUS,
- anon_sym_DASH,
- anon_sym_SLASH,
- anon_sym_PERCENT,
- anon_sym_STAR_STAR,
- anon_sym_LT,
- anon_sym_EQ_EQ,
- anon_sym_BANG_EQ,
- anon_sym_QMARK_QMARK,
- [9820] = 3,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(3396), 22,
- anon_sym_STAR,
- anon_sym_EQ,
- anon_sym_BANG,
- anon_sym_in,
- anon_sym_GT,
- anon_sym_AMP_AMP,
- anon_sym_PIPE_PIPE,
- anon_sym_GT_GT,
- anon_sym_GT_GT_GT,
- anon_sym_LT_LT,
- anon_sym_AMP,
- anon_sym_CARET,
- anon_sym_PIPE,
- anon_sym_PLUS,
- anon_sym_DASH,
- anon_sym_SLASH,
- anon_sym_PERCENT,
- anon_sym_STAR_STAR,
- anon_sym_LT,
- anon_sym_EQ_EQ,
- anon_sym_BANG_EQ,
- anon_sym_QMARK_QMARK,
- ACTIONS(3398), 35,
- sym__automatic_semicolon,
- sym__ternary_qmark,
- anon_sym_as,
- anon_sym_COMMA,
- anon_sym_RBRACE,
- anon_sym_LPAREN,
- anon_sym_of,
- anon_sym_SEMI,
- anon_sym_LBRACK,
- anon_sym_DOT,
- anon_sym_QMARK_DOT,
- anon_sym_PLUS_EQ,
- anon_sym_DASH_EQ,
- anon_sym_STAR_EQ,
- anon_sym_SLASH_EQ,
- anon_sym_PERCENT_EQ,
- anon_sym_CARET_EQ,
- anon_sym_AMP_EQ,
- anon_sym_PIPE_EQ,
- anon_sym_GT_GT_EQ,
- anon_sym_GT_GT_GT_EQ,
- anon_sym_LT_LT_EQ,
- anon_sym_STAR_STAR_EQ,
- anon_sym_AMP_AMP_EQ,
- anon_sym_PIPE_PIPE_EQ,
- anon_sym_QMARK_QMARK_EQ,
- anon_sym_LT_EQ,
- anon_sym_EQ_EQ_EQ,
- anon_sym_BANG_EQ_EQ,
- anon_sym_GT_EQ,
- anon_sym_instanceof,
- anon_sym_PLUS_PLUS,
- anon_sym_DASH_DASH,
- anon_sym_BQUOTE,
- anon_sym_satisfies,
- [9886] = 6,
- ACTIONS(715), 1,
- anon_sym_EQ_GT,
- ACTIONS(841), 1,
- anon_sym_EQ,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(168), 15,
- anon_sym_PLUS_EQ,
- anon_sym_DASH_EQ,
- anon_sym_STAR_EQ,
- anon_sym_SLASH_EQ,
- anon_sym_PERCENT_EQ,
- anon_sym_CARET_EQ,
- anon_sym_AMP_EQ,
- anon_sym_PIPE_EQ,
- anon_sym_GT_GT_EQ,
- anon_sym_GT_GT_GT_EQ,
- anon_sym_LT_LT_EQ,
- anon_sym_STAR_STAR_EQ,
- anon_sym_AMP_AMP_EQ,
- anon_sym_PIPE_PIPE_EQ,
- anon_sym_QMARK_QMARK_EQ,
- ACTIONS(162), 19,
- sym__automatic_semicolon,
- sym__ternary_qmark,
- anon_sym_as,
- anon_sym_COMMA,
- anon_sym_RBRACE,
- anon_sym_LPAREN,
- anon_sym_SEMI,
- anon_sym_LBRACK,
- anon_sym_DOT,
- anon_sym_QMARK_DOT,
- anon_sym_LT_EQ,
- anon_sym_EQ_EQ_EQ,
- anon_sym_BANG_EQ_EQ,
- anon_sym_GT_EQ,
- anon_sym_instanceof,
- anon_sym_PLUS_PLUS,
- anon_sym_DASH_DASH,
- anon_sym_BQUOTE,
- anon_sym_satisfies,
- ACTIONS(122), 21,
- anon_sym_STAR,
- anon_sym_BANG,
- anon_sym_in,
- anon_sym_GT,
- anon_sym_AMP_AMP,
- anon_sym_PIPE_PIPE,
- anon_sym_GT_GT,
- anon_sym_GT_GT_GT,
- anon_sym_LT_LT,
- anon_sym_AMP,
- anon_sym_CARET,
- anon_sym_PIPE,
- anon_sym_PLUS,
- anon_sym_DASH,
- anon_sym_SLASH,
- anon_sym_PERCENT,
- anon_sym_STAR_STAR,
- anon_sym_LT,
- anon_sym_EQ_EQ,
- anon_sym_BANG_EQ,
- anon_sym_QMARK_QMARK,
- [9958] = 6,
- ACTIONS(3452), 1,
- anon_sym_EQ_GT,
- ACTIONS(3475), 1,
- anon_sym_EQ,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(3416), 15,
- anon_sym_PLUS_EQ,
- anon_sym_DASH_EQ,
- anon_sym_STAR_EQ,
- anon_sym_SLASH_EQ,
- anon_sym_PERCENT_EQ,
- anon_sym_CARET_EQ,
- anon_sym_AMP_EQ,
- anon_sym_PIPE_EQ,
- anon_sym_GT_GT_EQ,
- anon_sym_GT_GT_GT_EQ,
- anon_sym_LT_LT_EQ,
- anon_sym_STAR_STAR_EQ,
- anon_sym_AMP_AMP_EQ,
- anon_sym_PIPE_PIPE_EQ,
- anon_sym_QMARK_QMARK_EQ,
- ACTIONS(3404), 19,
- sym__automatic_semicolon,
- sym__ternary_qmark,
- anon_sym_as,
- anon_sym_COMMA,
- anon_sym_LPAREN,
- anon_sym_of,
- anon_sym_SEMI,
- anon_sym_LBRACK,
- anon_sym_DOT,
- anon_sym_QMARK_DOT,
- anon_sym_LT_EQ,
- anon_sym_EQ_EQ_EQ,
- anon_sym_BANG_EQ_EQ,
- anon_sym_GT_EQ,
- anon_sym_instanceof,
- anon_sym_PLUS_PLUS,
- anon_sym_DASH_DASH,
- anon_sym_BQUOTE,
- anon_sym_satisfies,
- ACTIONS(3400), 21,
- anon_sym_STAR,
- anon_sym_BANG,
- anon_sym_in,
- anon_sym_GT,
- anon_sym_AMP_AMP,
- anon_sym_PIPE_PIPE,
- anon_sym_GT_GT,
- anon_sym_GT_GT_GT,
- anon_sym_LT_LT,
- anon_sym_AMP,
- anon_sym_CARET,
- anon_sym_PIPE,
- anon_sym_PLUS,
- anon_sym_DASH,
- anon_sym_SLASH,
- anon_sym_PERCENT,
- anon_sym_STAR_STAR,
- anon_sym_LT,
- anon_sym_EQ_EQ,
- anon_sym_BANG_EQ,
- anon_sym_QMARK_QMARK,
- [10030] = 3,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(3434), 22,
- anon_sym_STAR,
- anon_sym_EQ,
- anon_sym_BANG,
- anon_sym_in,
- anon_sym_GT,
- anon_sym_AMP_AMP,
- anon_sym_PIPE_PIPE,
- anon_sym_GT_GT,
- anon_sym_GT_GT_GT,
- anon_sym_LT_LT,
- anon_sym_AMP,
- anon_sym_CARET,
- anon_sym_PIPE,
- anon_sym_PLUS,
- anon_sym_DASH,
- anon_sym_SLASH,
- anon_sym_PERCENT,
- anon_sym_STAR_STAR,
- anon_sym_LT,
- anon_sym_EQ_EQ,
- anon_sym_BANG_EQ,
- anon_sym_QMARK_QMARK,
- ACTIONS(3436), 35,
- sym__automatic_semicolon,
- sym__ternary_qmark,
- anon_sym_as,
- anon_sym_COMMA,
- anon_sym_RBRACE,
- anon_sym_LPAREN,
- anon_sym_of,
- anon_sym_SEMI,
- anon_sym_LBRACK,
- anon_sym_DOT,
- anon_sym_QMARK_DOT,
- anon_sym_PLUS_EQ,
- anon_sym_DASH_EQ,
- anon_sym_STAR_EQ,
- anon_sym_SLASH_EQ,
- anon_sym_PERCENT_EQ,
- anon_sym_CARET_EQ,
- anon_sym_AMP_EQ,
- anon_sym_PIPE_EQ,
- anon_sym_GT_GT_EQ,
- anon_sym_GT_GT_GT_EQ,
- anon_sym_LT_LT_EQ,
- anon_sym_STAR_STAR_EQ,
- anon_sym_AMP_AMP_EQ,
- anon_sym_PIPE_PIPE_EQ,
- anon_sym_QMARK_QMARK_EQ,
- anon_sym_LT_EQ,
- anon_sym_EQ_EQ_EQ,
- anon_sym_BANG_EQ_EQ,
- anon_sym_GT_EQ,
- anon_sym_instanceof,
- anon_sym_PLUS_PLUS,
- anon_sym_DASH_DASH,
- anon_sym_BQUOTE,
- anon_sym_satisfies,
- [10096] = 3,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(3374), 22,
- anon_sym_STAR,
- anon_sym_EQ,
- anon_sym_BANG,
- anon_sym_in,
- anon_sym_GT,
- anon_sym_AMP_AMP,
- anon_sym_PIPE_PIPE,
- anon_sym_GT_GT,
- anon_sym_GT_GT_GT,
- anon_sym_LT_LT,
- anon_sym_AMP,
- anon_sym_CARET,
- anon_sym_PIPE,
- anon_sym_PLUS,
- anon_sym_DASH,
- anon_sym_SLASH,
- anon_sym_PERCENT,
- anon_sym_STAR_STAR,
- anon_sym_LT,
- anon_sym_EQ_EQ,
- anon_sym_BANG_EQ,
- anon_sym_QMARK_QMARK,
- ACTIONS(3376), 35,
- sym__automatic_semicolon,
- sym__ternary_qmark,
- anon_sym_as,
- anon_sym_COMMA,
- anon_sym_RBRACE,
- anon_sym_LPAREN,
- anon_sym_of,
- anon_sym_SEMI,
- anon_sym_LBRACK,
- anon_sym_DOT,
- anon_sym_QMARK_DOT,
- anon_sym_PLUS_EQ,
- anon_sym_DASH_EQ,
- anon_sym_STAR_EQ,
- anon_sym_SLASH_EQ,
- anon_sym_PERCENT_EQ,
- anon_sym_CARET_EQ,
- anon_sym_AMP_EQ,
- anon_sym_PIPE_EQ,
- anon_sym_GT_GT_EQ,
- anon_sym_GT_GT_GT_EQ,
- anon_sym_LT_LT_EQ,
- anon_sym_STAR_STAR_EQ,
- anon_sym_AMP_AMP_EQ,
- anon_sym_PIPE_PIPE_EQ,
- anon_sym_QMARK_QMARK_EQ,
- anon_sym_LT_EQ,
- anon_sym_EQ_EQ_EQ,
- anon_sym_BANG_EQ_EQ,
- anon_sym_GT_EQ,
- anon_sym_instanceof,
- anon_sym_PLUS_PLUS,
- anon_sym_DASH_DASH,
- anon_sym_BQUOTE,
- anon_sym_satisfies,
- [10162] = 3,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(3384), 22,
- anon_sym_STAR,
- anon_sym_EQ,
- anon_sym_BANG,
- anon_sym_in,
- anon_sym_GT,
- anon_sym_AMP_AMP,
- anon_sym_PIPE_PIPE,
- anon_sym_GT_GT,
- anon_sym_GT_GT_GT,
- anon_sym_LT_LT,
- anon_sym_AMP,
- anon_sym_CARET,
- anon_sym_PIPE,
- anon_sym_PLUS,
- anon_sym_DASH,
- anon_sym_SLASH,
- anon_sym_PERCENT,
- anon_sym_STAR_STAR,
- anon_sym_LT,
- anon_sym_EQ_EQ,
- anon_sym_BANG_EQ,
- anon_sym_QMARK_QMARK,
- ACTIONS(3386), 35,
- sym__automatic_semicolon,
- sym__ternary_qmark,
- anon_sym_as,
- anon_sym_COMMA,
- anon_sym_RBRACE,
- anon_sym_LPAREN,
- anon_sym_of,
- anon_sym_SEMI,
- anon_sym_LBRACK,
- anon_sym_DOT,
- anon_sym_QMARK_DOT,
- anon_sym_PLUS_EQ,
- anon_sym_DASH_EQ,
- anon_sym_STAR_EQ,
- anon_sym_SLASH_EQ,
- anon_sym_PERCENT_EQ,
- anon_sym_CARET_EQ,
- anon_sym_AMP_EQ,
- anon_sym_PIPE_EQ,
- anon_sym_GT_GT_EQ,
- anon_sym_GT_GT_GT_EQ,
- anon_sym_LT_LT_EQ,
- anon_sym_STAR_STAR_EQ,
- anon_sym_AMP_AMP_EQ,
- anon_sym_PIPE_PIPE_EQ,
- anon_sym_QMARK_QMARK_EQ,
- anon_sym_LT_EQ,
- anon_sym_EQ_EQ_EQ,
- anon_sym_BANG_EQ_EQ,
- anon_sym_GT_EQ,
- anon_sym_instanceof,
- anon_sym_PLUS_PLUS,
- anon_sym_DASH_DASH,
- anon_sym_BQUOTE,
- anon_sym_satisfies,
- [10228] = 3,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(3378), 22,
- anon_sym_STAR,
- anon_sym_EQ,
- anon_sym_BANG,
- anon_sym_in,
- anon_sym_GT,
- anon_sym_AMP_AMP,
- anon_sym_PIPE_PIPE,
- anon_sym_GT_GT,
- anon_sym_GT_GT_GT,
- anon_sym_LT_LT,
- anon_sym_AMP,
- anon_sym_CARET,
- anon_sym_PIPE,
- anon_sym_PLUS,
- anon_sym_DASH,
- anon_sym_SLASH,
- anon_sym_PERCENT,
- anon_sym_STAR_STAR,
- anon_sym_LT,
- anon_sym_EQ_EQ,
- anon_sym_BANG_EQ,
- anon_sym_QMARK_QMARK,
- ACTIONS(3380), 35,
- sym__automatic_semicolon,
- sym__ternary_qmark,
- anon_sym_as,
- anon_sym_COMMA,
- anon_sym_RBRACE,
- anon_sym_LPAREN,
- anon_sym_of,
- anon_sym_SEMI,
- anon_sym_LBRACK,
- anon_sym_DOT,
- anon_sym_QMARK_DOT,
- anon_sym_PLUS_EQ,
- anon_sym_DASH_EQ,
- anon_sym_STAR_EQ,
- anon_sym_SLASH_EQ,
- anon_sym_PERCENT_EQ,
- anon_sym_CARET_EQ,
- anon_sym_AMP_EQ,
- anon_sym_PIPE_EQ,
- anon_sym_GT_GT_EQ,
- anon_sym_GT_GT_GT_EQ,
- anon_sym_LT_LT_EQ,
- anon_sym_STAR_STAR_EQ,
- anon_sym_AMP_AMP_EQ,
- anon_sym_PIPE_PIPE_EQ,
- anon_sym_QMARK_QMARK_EQ,
- anon_sym_LT_EQ,
- anon_sym_EQ_EQ_EQ,
- anon_sym_BANG_EQ_EQ,
- anon_sym_GT_EQ,
- anon_sym_instanceof,
- anon_sym_PLUS_PLUS,
- anon_sym_DASH_DASH,
- anon_sym_BQUOTE,
- anon_sym_satisfies,
- [10294] = 3,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(3388), 22,
- anon_sym_STAR,
- anon_sym_EQ,
- anon_sym_BANG,
- anon_sym_in,
- anon_sym_GT,
- anon_sym_AMP_AMP,
- anon_sym_PIPE_PIPE,
- anon_sym_GT_GT,
- anon_sym_GT_GT_GT,
- anon_sym_LT_LT,
- anon_sym_AMP,
- anon_sym_CARET,
- anon_sym_PIPE,
- anon_sym_PLUS,
- anon_sym_DASH,
- anon_sym_SLASH,
- anon_sym_PERCENT,
- anon_sym_STAR_STAR,
- anon_sym_LT,
- anon_sym_EQ_EQ,
- anon_sym_BANG_EQ,
- anon_sym_QMARK_QMARK,
- ACTIONS(3390), 35,
- sym__automatic_semicolon,
- sym__ternary_qmark,
- anon_sym_as,
- anon_sym_COMMA,
- anon_sym_RBRACE,
- anon_sym_LPAREN,
- anon_sym_of,
- anon_sym_SEMI,
- anon_sym_LBRACK,
- anon_sym_DOT,
- anon_sym_QMARK_DOT,
- anon_sym_PLUS_EQ,
- anon_sym_DASH_EQ,
- anon_sym_STAR_EQ,
- anon_sym_SLASH_EQ,
- anon_sym_PERCENT_EQ,
- anon_sym_CARET_EQ,
- anon_sym_AMP_EQ,
- anon_sym_PIPE_EQ,
- anon_sym_GT_GT_EQ,
- anon_sym_GT_GT_GT_EQ,
- anon_sym_LT_LT_EQ,
- anon_sym_STAR_STAR_EQ,
- anon_sym_AMP_AMP_EQ,
- anon_sym_PIPE_PIPE_EQ,
- anon_sym_QMARK_QMARK_EQ,
- anon_sym_LT_EQ,
- anon_sym_EQ_EQ_EQ,
- anon_sym_BANG_EQ_EQ,
- anon_sym_GT_EQ,
- anon_sym_instanceof,
- anon_sym_PLUS_PLUS,
- anon_sym_DASH_DASH,
- anon_sym_BQUOTE,
- anon_sym_satisfies,
- [10360] = 3,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(3392), 22,
- anon_sym_STAR,
- anon_sym_EQ,
- anon_sym_BANG,
- anon_sym_in,
- anon_sym_GT,
- anon_sym_AMP_AMP,
- anon_sym_PIPE_PIPE,
- anon_sym_GT_GT,
- anon_sym_GT_GT_GT,
- anon_sym_LT_LT,
- anon_sym_AMP,
- anon_sym_CARET,
- anon_sym_PIPE,
- anon_sym_PLUS,
- anon_sym_DASH,
- anon_sym_SLASH,
- anon_sym_PERCENT,
- anon_sym_STAR_STAR,
- anon_sym_LT,
- anon_sym_EQ_EQ,
- anon_sym_BANG_EQ,
- anon_sym_QMARK_QMARK,
- ACTIONS(3394), 35,
- sym__automatic_semicolon,
- sym__ternary_qmark,
- anon_sym_as,
- anon_sym_COMMA,
- anon_sym_RBRACE,
- anon_sym_LPAREN,
- anon_sym_of,
- anon_sym_SEMI,
- anon_sym_LBRACK,
- anon_sym_DOT,
- anon_sym_QMARK_DOT,
- anon_sym_PLUS_EQ,
- anon_sym_DASH_EQ,
- anon_sym_STAR_EQ,
- anon_sym_SLASH_EQ,
- anon_sym_PERCENT_EQ,
- anon_sym_CARET_EQ,
- anon_sym_AMP_EQ,
- anon_sym_PIPE_EQ,
- anon_sym_GT_GT_EQ,
- anon_sym_GT_GT_GT_EQ,
- anon_sym_LT_LT_EQ,
- anon_sym_STAR_STAR_EQ,
- anon_sym_AMP_AMP_EQ,
- anon_sym_PIPE_PIPE_EQ,
- anon_sym_QMARK_QMARK_EQ,
- anon_sym_LT_EQ,
- anon_sym_EQ_EQ_EQ,
- anon_sym_BANG_EQ_EQ,
- anon_sym_GT_EQ,
- anon_sym_instanceof,
- anon_sym_PLUS_PLUS,
- anon_sym_DASH_DASH,
- anon_sym_BQUOTE,
- anon_sym_satisfies,
- [10426] = 8,
- ACTIONS(715), 1,
- anon_sym_EQ_GT,
- ACTIONS(859), 1,
- anon_sym_EQ,
- ACTIONS(861), 1,
- anon_sym_in,
- ACTIONS(3584), 1,
- anon_sym_of,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(168), 15,
- anon_sym_PLUS_EQ,
- anon_sym_DASH_EQ,
- anon_sym_STAR_EQ,
- anon_sym_SLASH_EQ,
- anon_sym_PERCENT_EQ,
- anon_sym_CARET_EQ,
- anon_sym_AMP_EQ,
- anon_sym_PIPE_EQ,
- anon_sym_GT_GT_EQ,
- anon_sym_GT_GT_GT_EQ,
- anon_sym_LT_LT_EQ,
- anon_sym_STAR_STAR_EQ,
- anon_sym_AMP_AMP_EQ,
- anon_sym_PIPE_PIPE_EQ,
- anon_sym_QMARK_QMARK_EQ,
- ACTIONS(162), 18,
- sym__automatic_semicolon,
- sym__ternary_qmark,
- anon_sym_as,
- anon_sym_COMMA,
- anon_sym_LPAREN,
- anon_sym_SEMI,
- anon_sym_LBRACK,
- anon_sym_DOT,
- anon_sym_QMARK_DOT,
- anon_sym_LT_EQ,
- anon_sym_EQ_EQ_EQ,
- anon_sym_BANG_EQ_EQ,
- anon_sym_GT_EQ,
- anon_sym_instanceof,
- anon_sym_PLUS_PLUS,
- anon_sym_DASH_DASH,
- anon_sym_BQUOTE,
- anon_sym_satisfies,
- ACTIONS(122), 20,
- anon_sym_STAR,
- anon_sym_BANG,
- anon_sym_GT,
- anon_sym_AMP_AMP,
- anon_sym_PIPE_PIPE,
- anon_sym_GT_GT,
- anon_sym_GT_GT_GT,
- anon_sym_LT_LT,
- anon_sym_AMP,
- anon_sym_CARET,
- anon_sym_PIPE,
- anon_sym_PLUS,
- anon_sym_DASH,
- anon_sym_SLASH,
- anon_sym_PERCENT,
- anon_sym_STAR_STAR,
- anon_sym_LT,
- anon_sym_EQ_EQ,
- anon_sym_BANG_EQ,
- anon_sym_QMARK_QMARK,
- [10502] = 6,
- ACTIONS(3427), 1,
- anon_sym_EQ_GT,
- ACTIONS(3448), 1,
- anon_sym_EQ,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(3416), 15,
- anon_sym_PLUS_EQ,
- anon_sym_DASH_EQ,
- anon_sym_STAR_EQ,
- anon_sym_SLASH_EQ,
- anon_sym_PERCENT_EQ,
- anon_sym_CARET_EQ,
- anon_sym_AMP_EQ,
- anon_sym_PIPE_EQ,
- anon_sym_GT_GT_EQ,
- anon_sym_GT_GT_GT_EQ,
- anon_sym_LT_LT_EQ,
- anon_sym_STAR_STAR_EQ,
- anon_sym_AMP_AMP_EQ,
- anon_sym_PIPE_PIPE_EQ,
- anon_sym_QMARK_QMARK_EQ,
- ACTIONS(3404), 19,
- sym__automatic_semicolon,
- sym__ternary_qmark,
- anon_sym_as,
- anon_sym_COMMA,
- anon_sym_RBRACE,
- anon_sym_LPAREN,
- anon_sym_SEMI,
- anon_sym_LBRACK,
- anon_sym_DOT,
- anon_sym_QMARK_DOT,
- anon_sym_LT_EQ,
- anon_sym_EQ_EQ_EQ,
- anon_sym_BANG_EQ_EQ,
- anon_sym_GT_EQ,
- anon_sym_instanceof,
- anon_sym_PLUS_PLUS,
- anon_sym_DASH_DASH,
- anon_sym_BQUOTE,
- anon_sym_satisfies,
- ACTIONS(3400), 21,
- anon_sym_STAR,
- anon_sym_BANG,
- anon_sym_in,
- anon_sym_GT,
- anon_sym_AMP_AMP,
- anon_sym_PIPE_PIPE,
- anon_sym_GT_GT,
- anon_sym_GT_GT_GT,
- anon_sym_LT_LT,
- anon_sym_AMP,
- anon_sym_CARET,
- anon_sym_PIPE,
- anon_sym_PLUS,
- anon_sym_DASH,
- anon_sym_SLASH,
- anon_sym_PERCENT,
- anon_sym_STAR_STAR,
- anon_sym_LT,
- anon_sym_EQ_EQ,
- anon_sym_BANG_EQ,
- anon_sym_QMARK_QMARK,
- [10574] = 7,
- ACTIONS(715), 1,
- anon_sym_EQ_GT,
- ACTIONS(859), 1,
- anon_sym_EQ,
- ACTIONS(884), 1,
- anon_sym_COLON,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(168), 15,
- anon_sym_PLUS_EQ,
- anon_sym_DASH_EQ,
- anon_sym_STAR_EQ,
- anon_sym_SLASH_EQ,
- anon_sym_PERCENT_EQ,
- anon_sym_CARET_EQ,
- anon_sym_AMP_EQ,
- anon_sym_PIPE_EQ,
- anon_sym_GT_GT_EQ,
- anon_sym_GT_GT_GT_EQ,
- anon_sym_LT_LT_EQ,
- anon_sym_STAR_STAR_EQ,
- anon_sym_AMP_AMP_EQ,
- anon_sym_PIPE_PIPE_EQ,
- anon_sym_QMARK_QMARK_EQ,
- ACTIONS(162), 18,
- sym__automatic_semicolon,
- sym__ternary_qmark,
- anon_sym_as,
- anon_sym_COMMA,
- anon_sym_LPAREN,
- anon_sym_SEMI,
- anon_sym_LBRACK,
- anon_sym_DOT,
- anon_sym_QMARK_DOT,
- anon_sym_LT_EQ,
- anon_sym_EQ_EQ_EQ,
- anon_sym_BANG_EQ_EQ,
- anon_sym_GT_EQ,
- anon_sym_instanceof,
- anon_sym_PLUS_PLUS,
- anon_sym_DASH_DASH,
- anon_sym_BQUOTE,
- anon_sym_satisfies,
- ACTIONS(122), 21,
- anon_sym_STAR,
- anon_sym_BANG,
- anon_sym_in,
- anon_sym_GT,
- anon_sym_AMP_AMP,
- anon_sym_PIPE_PIPE,
- anon_sym_GT_GT,
- anon_sym_GT_GT_GT,
- anon_sym_LT_LT,
- anon_sym_AMP,
- anon_sym_CARET,
- anon_sym_PIPE,
- anon_sym_PLUS,
- anon_sym_DASH,
- anon_sym_SLASH,
- anon_sym_PERCENT,
- anon_sym_STAR_STAR,
- anon_sym_LT,
- anon_sym_EQ_EQ,
- anon_sym_BANG_EQ,
- anon_sym_QMARK_QMARK,
- [10648] = 7,
- ACTIONS(866), 1,
- anon_sym_COLON,
- ACTIONS(3427), 1,
- anon_sym_EQ_GT,
- ACTIONS(3448), 1,
- anon_sym_EQ,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(3416), 15,
- anon_sym_PLUS_EQ,
- anon_sym_DASH_EQ,
- anon_sym_STAR_EQ,
- anon_sym_SLASH_EQ,
- anon_sym_PERCENT_EQ,
- anon_sym_CARET_EQ,
- anon_sym_AMP_EQ,
- anon_sym_PIPE_EQ,
- anon_sym_GT_GT_EQ,
- anon_sym_GT_GT_GT_EQ,
- anon_sym_LT_LT_EQ,
- anon_sym_STAR_STAR_EQ,
- anon_sym_AMP_AMP_EQ,
- anon_sym_PIPE_PIPE_EQ,
- anon_sym_QMARK_QMARK_EQ,
- ACTIONS(3404), 18,
- sym__automatic_semicolon,
- sym__ternary_qmark,
- anon_sym_as,
- anon_sym_COMMA,
- anon_sym_LPAREN,
- anon_sym_SEMI,
- anon_sym_LBRACK,
- anon_sym_DOT,
- anon_sym_QMARK_DOT,
- anon_sym_LT_EQ,
- anon_sym_EQ_EQ_EQ,
- anon_sym_BANG_EQ_EQ,
- anon_sym_GT_EQ,
- anon_sym_instanceof,
- anon_sym_PLUS_PLUS,
- anon_sym_DASH_DASH,
- anon_sym_BQUOTE,
- anon_sym_satisfies,
- ACTIONS(3400), 21,
- anon_sym_STAR,
- anon_sym_BANG,
- anon_sym_in,
- anon_sym_GT,
- anon_sym_AMP_AMP,
- anon_sym_PIPE_PIPE,
- anon_sym_GT_GT,
- anon_sym_GT_GT_GT,
- anon_sym_LT_LT,
- anon_sym_AMP,
- anon_sym_CARET,
- anon_sym_PIPE,
- anon_sym_PLUS,
- anon_sym_DASH,
- anon_sym_SLASH,
- anon_sym_PERCENT,
- anon_sym_STAR_STAR,
- anon_sym_LT,
- anon_sym_EQ_EQ,
- anon_sym_BANG_EQ,
- anon_sym_QMARK_QMARK,
- [10722] = 7,
- ACTIONS(715), 1,
- anon_sym_EQ_GT,
- ACTIONS(859), 1,
- anon_sym_EQ,
- ACTIONS(866), 1,
- anon_sym_COLON,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(168), 15,
- anon_sym_PLUS_EQ,
- anon_sym_DASH_EQ,
- anon_sym_STAR_EQ,
- anon_sym_SLASH_EQ,
- anon_sym_PERCENT_EQ,
- anon_sym_CARET_EQ,
- anon_sym_AMP_EQ,
- anon_sym_PIPE_EQ,
- anon_sym_GT_GT_EQ,
- anon_sym_GT_GT_GT_EQ,
- anon_sym_LT_LT_EQ,
- anon_sym_STAR_STAR_EQ,
- anon_sym_AMP_AMP_EQ,
- anon_sym_PIPE_PIPE_EQ,
- anon_sym_QMARK_QMARK_EQ,
- ACTIONS(162), 18,
- sym__automatic_semicolon,
- sym__ternary_qmark,
- anon_sym_as,
- anon_sym_COMMA,
- anon_sym_LPAREN,
- anon_sym_SEMI,
- anon_sym_LBRACK,
- anon_sym_DOT,
- anon_sym_QMARK_DOT,
- anon_sym_LT_EQ,
- anon_sym_EQ_EQ_EQ,
- anon_sym_BANG_EQ_EQ,
- anon_sym_GT_EQ,
- anon_sym_instanceof,
- anon_sym_PLUS_PLUS,
- anon_sym_DASH_DASH,
- anon_sym_BQUOTE,
- anon_sym_satisfies,
- ACTIONS(122), 21,
- anon_sym_STAR,
- anon_sym_BANG,
- anon_sym_in,
- anon_sym_GT,
- anon_sym_AMP_AMP,
- anon_sym_PIPE_PIPE,
- anon_sym_GT_GT,
- anon_sym_GT_GT_GT,
- anon_sym_LT_LT,
- anon_sym_AMP,
- anon_sym_CARET,
- anon_sym_PIPE,
- anon_sym_PLUS,
- anon_sym_DASH,
- anon_sym_SLASH,
- anon_sym_PERCENT,
- anon_sym_STAR_STAR,
- anon_sym_LT,
- anon_sym_EQ_EQ,
- anon_sym_BANG_EQ,
- anon_sym_QMARK_QMARK,
- [10796] = 14,
- ACTIONS(3438), 1,
- anon_sym_LPAREN,
- ACTIONS(3440), 1,
- anon_sym_DOT,
- ACTIONS(3442), 1,
- anon_sym_QMARK_DOT,
- ACTIONS(3444), 1,
- anon_sym_LT,
- ACTIONS(3475), 1,
- anon_sym_EQ,
- ACTIONS(3516), 1,
- anon_sym_EQ_GT,
- STATE(2829), 1,
- sym_arguments,
- STATE(2852), 1,
- sym_type_arguments,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(3406), 3,
- anon_sym_COMMA,
- anon_sym_LBRACK,
- anon_sym_extends,
- ACTIONS(3418), 3,
- anon_sym_GT,
- anon_sym_AMP,
- anon_sym_PIPE,
- ACTIONS(3404), 11,
- sym__ternary_qmark,
- anon_sym_as,
- anon_sym_LT_EQ,
- anon_sym_EQ_EQ_EQ,
- anon_sym_BANG_EQ_EQ,
- anon_sym_GT_EQ,
- anon_sym_instanceof,
- anon_sym_PLUS_PLUS,
- anon_sym_DASH_DASH,
- anon_sym_BQUOTE,
- anon_sym_satisfies,
- ACTIONS(3416), 15,
- anon_sym_PLUS_EQ,
- anon_sym_DASH_EQ,
- anon_sym_STAR_EQ,
- anon_sym_SLASH_EQ,
- anon_sym_PERCENT_EQ,
- anon_sym_CARET_EQ,
- anon_sym_AMP_EQ,
- anon_sym_PIPE_EQ,
- anon_sym_GT_GT_EQ,
- anon_sym_GT_GT_GT_EQ,
- anon_sym_LT_LT_EQ,
- anon_sym_STAR_STAR_EQ,
- anon_sym_AMP_AMP_EQ,
- anon_sym_PIPE_PIPE_EQ,
- anon_sym_QMARK_QMARK_EQ,
- ACTIONS(3400), 17,
- anon_sym_STAR,
- anon_sym_BANG,
- anon_sym_in,
- anon_sym_AMP_AMP,
- anon_sym_PIPE_PIPE,
- anon_sym_GT_GT,
- anon_sym_GT_GT_GT,
- anon_sym_LT_LT,
- anon_sym_CARET,
- anon_sym_PLUS,
- anon_sym_DASH,
- anon_sym_SLASH,
- anon_sym_PERCENT,
- anon_sym_STAR_STAR,
- anon_sym_EQ_EQ,
- anon_sym_BANG_EQ,
- anon_sym_QMARK_QMARK,
- [10884] = 8,
- ACTIONS(3427), 1,
- anon_sym_EQ_GT,
- ACTIONS(3448), 1,
- anon_sym_EQ,
- ACTIONS(3586), 1,
- anon_sym_in,
- ACTIONS(3589), 1,
- anon_sym_of,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(3416), 15,
- anon_sym_PLUS_EQ,
- anon_sym_DASH_EQ,
- anon_sym_STAR_EQ,
- anon_sym_SLASH_EQ,
- anon_sym_PERCENT_EQ,
- anon_sym_CARET_EQ,
- anon_sym_AMP_EQ,
- anon_sym_PIPE_EQ,
- anon_sym_GT_GT_EQ,
- anon_sym_GT_GT_GT_EQ,
- anon_sym_LT_LT_EQ,
- anon_sym_STAR_STAR_EQ,
- anon_sym_AMP_AMP_EQ,
- anon_sym_PIPE_PIPE_EQ,
- anon_sym_QMARK_QMARK_EQ,
- ACTIONS(3404), 18,
- sym__automatic_semicolon,
- sym__ternary_qmark,
- anon_sym_as,
- anon_sym_COMMA,
- anon_sym_LPAREN,
- anon_sym_SEMI,
- anon_sym_LBRACK,
- anon_sym_DOT,
- anon_sym_QMARK_DOT,
- anon_sym_LT_EQ,
- anon_sym_EQ_EQ_EQ,
- anon_sym_BANG_EQ_EQ,
- anon_sym_GT_EQ,
- anon_sym_instanceof,
- anon_sym_PLUS_PLUS,
- anon_sym_DASH_DASH,
- anon_sym_BQUOTE,
- anon_sym_satisfies,
- ACTIONS(3400), 20,
- anon_sym_STAR,
- anon_sym_BANG,
- anon_sym_GT,
- anon_sym_AMP_AMP,
- anon_sym_PIPE_PIPE,
- anon_sym_GT_GT,
- anon_sym_GT_GT_GT,
- anon_sym_LT_LT,
- anon_sym_AMP,
- anon_sym_CARET,
- anon_sym_PIPE,
- anon_sym_PLUS,
- anon_sym_DASH,
- anon_sym_SLASH,
- anon_sym_PERCENT,
- anon_sym_STAR_STAR,
- anon_sym_LT,
- anon_sym_EQ_EQ,
- anon_sym_BANG_EQ,
- anon_sym_QMARK_QMARK,
- [10960] = 14,
- ACTIONS(3438), 1,
- anon_sym_LPAREN,
- ACTIONS(3440), 1,
- anon_sym_DOT,
- ACTIONS(3442), 1,
- anon_sym_QMARK_DOT,
- ACTIONS(3444), 1,
- anon_sym_LT,
- ACTIONS(3475), 1,
- anon_sym_EQ,
- ACTIONS(3516), 1,
- anon_sym_EQ_GT,
- STATE(2829), 1,
- sym_arguments,
- STATE(2852), 1,
- sym_type_arguments,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(3418), 2,
- anon_sym_AMP,
- anon_sym_PIPE,
- ACTIONS(3406), 3,
- anon_sym_RPAREN,
- anon_sym_LBRACK,
- anon_sym_extends,
- ACTIONS(3404), 11,
- sym__ternary_qmark,
- anon_sym_as,
- anon_sym_LT_EQ,
- anon_sym_EQ_EQ_EQ,
- anon_sym_BANG_EQ_EQ,
- anon_sym_GT_EQ,
- anon_sym_instanceof,
- anon_sym_PLUS_PLUS,
- anon_sym_DASH_DASH,
- anon_sym_BQUOTE,
- anon_sym_satisfies,
- ACTIONS(3416), 15,
- anon_sym_PLUS_EQ,
- anon_sym_DASH_EQ,
- anon_sym_STAR_EQ,
- anon_sym_SLASH_EQ,
- anon_sym_PERCENT_EQ,
- anon_sym_CARET_EQ,
- anon_sym_AMP_EQ,
- anon_sym_PIPE_EQ,
- anon_sym_GT_GT_EQ,
- anon_sym_GT_GT_GT_EQ,
- anon_sym_LT_LT_EQ,
- anon_sym_STAR_STAR_EQ,
- anon_sym_AMP_AMP_EQ,
- anon_sym_PIPE_PIPE_EQ,
- anon_sym_QMARK_QMARK_EQ,
- ACTIONS(3400), 18,
- anon_sym_STAR,
- anon_sym_BANG,
- anon_sym_in,
- anon_sym_GT,
- anon_sym_AMP_AMP,
- anon_sym_PIPE_PIPE,
- anon_sym_GT_GT,
- anon_sym_GT_GT_GT,
- anon_sym_LT_LT,
- anon_sym_CARET,
- anon_sym_PLUS,
- anon_sym_DASH,
- anon_sym_SLASH,
- anon_sym_PERCENT,
- anon_sym_STAR_STAR,
- anon_sym_EQ_EQ,
- anon_sym_BANG_EQ,
- anon_sym_QMARK_QMARK,
- [11048] = 5,
- ACTIONS(3475), 1,
- anon_sym_EQ,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(3416), 15,
- anon_sym_PLUS_EQ,
- anon_sym_DASH_EQ,
- anon_sym_STAR_EQ,
- anon_sym_SLASH_EQ,
- anon_sym_PERCENT_EQ,
- anon_sym_CARET_EQ,
- anon_sym_AMP_EQ,
- anon_sym_PIPE_EQ,
- anon_sym_GT_GT_EQ,
- anon_sym_GT_GT_GT_EQ,
- anon_sym_LT_LT_EQ,
- anon_sym_STAR_STAR_EQ,
- anon_sym_AMP_AMP_EQ,
- anon_sym_PIPE_PIPE_EQ,
- anon_sym_QMARK_QMARK_EQ,
- ACTIONS(3404), 20,
- sym__automatic_semicolon,
- sym__ternary_qmark,
- anon_sym_as,
- anon_sym_COMMA,
- anon_sym_RBRACE,
- anon_sym_LPAREN,
- anon_sym_of,
- anon_sym_SEMI,
- anon_sym_LBRACK,
- anon_sym_DOT,
- anon_sym_QMARK_DOT,
- anon_sym_LT_EQ,
- anon_sym_EQ_EQ_EQ,
- anon_sym_BANG_EQ_EQ,
- anon_sym_GT_EQ,
- anon_sym_instanceof,
- anon_sym_PLUS_PLUS,
- anon_sym_DASH_DASH,
- anon_sym_BQUOTE,
- anon_sym_satisfies,
- ACTIONS(3400), 21,
- anon_sym_STAR,
- anon_sym_BANG,
- anon_sym_in,
- anon_sym_GT,
- anon_sym_AMP_AMP,
- anon_sym_PIPE_PIPE,
- anon_sym_GT_GT,
- anon_sym_GT_GT_GT,
- anon_sym_LT_LT,
- anon_sym_AMP,
- anon_sym_CARET,
- anon_sym_PIPE,
- anon_sym_PLUS,
- anon_sym_DASH,
- anon_sym_SLASH,
- anon_sym_PERCENT,
- anon_sym_STAR_STAR,
- anon_sym_LT,
- anon_sym_EQ_EQ,
- anon_sym_BANG_EQ,
- anon_sym_QMARK_QMARK,
- [11118] = 6,
- ACTIONS(872), 1,
- anon_sym_EQ,
- ACTIONS(878), 1,
- anon_sym_EQ_GT,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(168), 15,
- anon_sym_PLUS_EQ,
- anon_sym_DASH_EQ,
- anon_sym_STAR_EQ,
- anon_sym_SLASH_EQ,
- anon_sym_PERCENT_EQ,
- anon_sym_CARET_EQ,
- anon_sym_AMP_EQ,
- anon_sym_PIPE_EQ,
- anon_sym_GT_GT_EQ,
- anon_sym_GT_GT_GT_EQ,
- anon_sym_LT_LT_EQ,
- anon_sym_STAR_STAR_EQ,
- anon_sym_AMP_AMP_EQ,
- anon_sym_PIPE_PIPE_EQ,
- anon_sym_QMARK_QMARK_EQ,
- ACTIONS(162), 19,
- sym__automatic_semicolon,
- sym__ternary_qmark,
- anon_sym_as,
- anon_sym_COMMA,
- anon_sym_LPAREN,
- anon_sym_of,
- anon_sym_SEMI,
- anon_sym_LBRACK,
- anon_sym_DOT,
- anon_sym_QMARK_DOT,
- anon_sym_LT_EQ,
- anon_sym_EQ_EQ_EQ,
- anon_sym_BANG_EQ_EQ,
- anon_sym_GT_EQ,
- anon_sym_instanceof,
- anon_sym_PLUS_PLUS,
- anon_sym_DASH_DASH,
- anon_sym_BQUOTE,
- anon_sym_satisfies,
- ACTIONS(122), 21,
- anon_sym_STAR,
- anon_sym_BANG,
- anon_sym_in,
- anon_sym_GT,
- anon_sym_AMP_AMP,
- anon_sym_PIPE_PIPE,
- anon_sym_GT_GT,
- anon_sym_GT_GT_GT,
- anon_sym_LT_LT,
- anon_sym_AMP,
- anon_sym_CARET,
- anon_sym_PIPE,
- anon_sym_PLUS,
- anon_sym_DASH,
- anon_sym_SLASH,
- anon_sym_PERCENT,
- anon_sym_STAR_STAR,
- anon_sym_LT,
- anon_sym_EQ_EQ,
- anon_sym_BANG_EQ,
- anon_sym_QMARK_QMARK,
- [11190] = 3,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(2445), 22,
- anon_sym_STAR,
- anon_sym_EQ,
- anon_sym_BANG,
- anon_sym_in,
- anon_sym_GT,
- anon_sym_AMP_AMP,
- anon_sym_PIPE_PIPE,
- anon_sym_GT_GT,
- anon_sym_GT_GT_GT,
- anon_sym_LT_LT,
- anon_sym_AMP,
- anon_sym_CARET,
- anon_sym_PIPE,
- anon_sym_PLUS,
- anon_sym_DASH,
- anon_sym_SLASH,
- anon_sym_PERCENT,
- anon_sym_STAR_STAR,
- anon_sym_LT,
- anon_sym_EQ_EQ,
- anon_sym_BANG_EQ,
- anon_sym_QMARK_QMARK,
- ACTIONS(2443), 35,
- sym__automatic_semicolon,
- sym__ternary_qmark,
- anon_sym_as,
- anon_sym_COMMA,
- anon_sym_RBRACE,
- anon_sym_LPAREN,
- anon_sym_of,
- anon_sym_SEMI,
- anon_sym_LBRACK,
- anon_sym_DOT,
- anon_sym_QMARK_DOT,
- anon_sym_PLUS_EQ,
- anon_sym_DASH_EQ,
- anon_sym_STAR_EQ,
- anon_sym_SLASH_EQ,
- anon_sym_PERCENT_EQ,
- anon_sym_CARET_EQ,
- anon_sym_AMP_EQ,
- anon_sym_PIPE_EQ,
- anon_sym_GT_GT_EQ,
- anon_sym_GT_GT_GT_EQ,
- anon_sym_LT_LT_EQ,
- anon_sym_STAR_STAR_EQ,
- anon_sym_AMP_AMP_EQ,
- anon_sym_PIPE_PIPE_EQ,
- anon_sym_QMARK_QMARK_EQ,
- anon_sym_LT_EQ,
- anon_sym_EQ_EQ_EQ,
- anon_sym_BANG_EQ_EQ,
- anon_sym_GT_EQ,
- anon_sym_instanceof,
- anon_sym_PLUS_PLUS,
- anon_sym_DASH_DASH,
- anon_sym_BQUOTE,
- anon_sym_satisfies,
- [11256] = 3,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(2461), 22,
- anon_sym_STAR,
- anon_sym_EQ,
- anon_sym_BANG,
- anon_sym_in,
- anon_sym_GT,
- anon_sym_AMP_AMP,
- anon_sym_PIPE_PIPE,
- anon_sym_GT_GT,
- anon_sym_GT_GT_GT,
- anon_sym_LT_LT,
- anon_sym_AMP,
- anon_sym_CARET,
- anon_sym_PIPE,
- anon_sym_PLUS,
- anon_sym_DASH,
- anon_sym_SLASH,
- anon_sym_PERCENT,
- anon_sym_STAR_STAR,
- anon_sym_LT,
- anon_sym_EQ_EQ,
- anon_sym_BANG_EQ,
- anon_sym_QMARK_QMARK,
- ACTIONS(2459), 35,
- sym__automatic_semicolon,
- sym__ternary_qmark,
- anon_sym_as,
- anon_sym_COMMA,
- anon_sym_RBRACE,
- anon_sym_LPAREN,
- anon_sym_of,
- anon_sym_SEMI,
- anon_sym_LBRACK,
- anon_sym_DOT,
- anon_sym_QMARK_DOT,
- anon_sym_PLUS_EQ,
- anon_sym_DASH_EQ,
- anon_sym_STAR_EQ,
- anon_sym_SLASH_EQ,
- anon_sym_PERCENT_EQ,
- anon_sym_CARET_EQ,
- anon_sym_AMP_EQ,
- anon_sym_PIPE_EQ,
- anon_sym_GT_GT_EQ,
- anon_sym_GT_GT_GT_EQ,
- anon_sym_LT_LT_EQ,
- anon_sym_STAR_STAR_EQ,
- anon_sym_AMP_AMP_EQ,
- anon_sym_PIPE_PIPE_EQ,
- anon_sym_QMARK_QMARK_EQ,
- anon_sym_LT_EQ,
- anon_sym_EQ_EQ_EQ,
- anon_sym_BANG_EQ_EQ,
- anon_sym_GT_EQ,
- anon_sym_instanceof,
- anon_sym_PLUS_PLUS,
- anon_sym_DASH_DASH,
- anon_sym_BQUOTE,
- anon_sym_satisfies,
- [11322] = 9,
- ACTIONS(912), 1,
- anon_sym_EQ,
- ACTIONS(918), 1,
- anon_sym_EQ_GT,
- ACTIONS(1650), 1,
- anon_sym_extends,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(3505), 2,
- anon_sym_COMMA,
- anon_sym_LBRACK,
- ACTIONS(3508), 3,
- anon_sym_GT,
- anon_sym_AMP,
- anon_sym_PIPE,
- ACTIONS(168), 15,
- anon_sym_PLUS_EQ,
- anon_sym_DASH_EQ,
- anon_sym_STAR_EQ,
- anon_sym_SLASH_EQ,
- anon_sym_PERCENT_EQ,
- anon_sym_CARET_EQ,
- anon_sym_AMP_EQ,
- anon_sym_PIPE_EQ,
- anon_sym_GT_GT_EQ,
- anon_sym_GT_GT_GT_EQ,
- anon_sym_LT_LT_EQ,
- anon_sym_STAR_STAR_EQ,
- anon_sym_AMP_AMP_EQ,
- anon_sym_PIPE_PIPE_EQ,
- anon_sym_QMARK_QMARK_EQ,
- ACTIONS(162), 16,
- sym__ternary_qmark,
- anon_sym_as,
- anon_sym_LBRACE,
- anon_sym_LPAREN,
- anon_sym_DOT,
- anon_sym_QMARK_DOT,
- anon_sym_LT_EQ,
- anon_sym_EQ_EQ_EQ,
- anon_sym_BANG_EQ_EQ,
- anon_sym_GT_EQ,
- anon_sym_instanceof,
- anon_sym_PLUS_PLUS,
- anon_sym_DASH_DASH,
- anon_sym_BQUOTE,
- anon_sym_satisfies,
- anon_sym_implements,
- ACTIONS(122), 18,
- anon_sym_STAR,
- anon_sym_BANG,
- anon_sym_in,
- anon_sym_AMP_AMP,
- anon_sym_PIPE_PIPE,
- anon_sym_GT_GT,
- anon_sym_GT_GT_GT,
- anon_sym_LT_LT,
- anon_sym_CARET,
- anon_sym_PLUS,
- anon_sym_DASH,
- anon_sym_SLASH,
- anon_sym_PERCENT,
- anon_sym_STAR_STAR,
- anon_sym_LT,
- anon_sym_EQ_EQ,
- anon_sym_BANG_EQ,
- anon_sym_QMARK_QMARK,
- [11400] = 10,
- ACTIONS(229), 1,
- anon_sym_EQ_GT,
- ACTIONS(841), 1,
- anon_sym_EQ,
- ACTIONS(847), 1,
- anon_sym_COLON,
- ACTIONS(3505), 1,
- anon_sym_LBRACK,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(3508), 2,
- anon_sym_AMP,
- anon_sym_PIPE,
- ACTIONS(1650), 3,
- anon_sym_COMMA,
- anon_sym_RBRACK,
- anon_sym_extends,
- ACTIONS(162), 14,
- sym__ternary_qmark,
- anon_sym_as,
- anon_sym_LPAREN,
- anon_sym_DOT,
- anon_sym_QMARK_DOT,
- anon_sym_LT_EQ,
- anon_sym_EQ_EQ_EQ,
- anon_sym_BANG_EQ_EQ,
- anon_sym_GT_EQ,
- anon_sym_instanceof,
- anon_sym_PLUS_PLUS,
- anon_sym_DASH_DASH,
- anon_sym_BQUOTE,
- anon_sym_satisfies,
- ACTIONS(168), 15,
- anon_sym_PLUS_EQ,
- anon_sym_DASH_EQ,
- anon_sym_STAR_EQ,
- anon_sym_SLASH_EQ,
- anon_sym_PERCENT_EQ,
- anon_sym_CARET_EQ,
- anon_sym_AMP_EQ,
- anon_sym_PIPE_EQ,
- anon_sym_GT_GT_EQ,
- anon_sym_GT_GT_GT_EQ,
- anon_sym_LT_LT_EQ,
- anon_sym_STAR_STAR_EQ,
- anon_sym_AMP_AMP_EQ,
- anon_sym_PIPE_PIPE_EQ,
- anon_sym_QMARK_QMARK_EQ,
- ACTIONS(122), 19,
- anon_sym_STAR,
- anon_sym_BANG,
- anon_sym_in,
- anon_sym_GT,
- anon_sym_AMP_AMP,
- anon_sym_PIPE_PIPE,
- anon_sym_GT_GT,
- anon_sym_GT_GT_GT,
- anon_sym_LT_LT,
- anon_sym_CARET,
- anon_sym_PLUS,
- anon_sym_DASH,
- anon_sym_SLASH,
- anon_sym_PERCENT,
- anon_sym_STAR_STAR,
- anon_sym_LT,
- anon_sym_EQ_EQ,
- anon_sym_BANG_EQ,
- anon_sym_QMARK_QMARK,
- [11480] = 10,
- ACTIONS(119), 1,
- anon_sym_EQ,
- ACTIONS(160), 1,
- anon_sym_EQ_GT,
- ACTIONS(1652), 1,
- anon_sym_QMARK,
- ACTIONS(3505), 1,
- anon_sym_LBRACK,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(3508), 2,
- anon_sym_AMP,
- anon_sym_PIPE,
- ACTIONS(1650), 3,
- anon_sym_COMMA,
- anon_sym_RBRACK,
- anon_sym_extends,
- ACTIONS(162), 14,
- sym__ternary_qmark,
- anon_sym_as,
- anon_sym_LPAREN,
- anon_sym_DOT,
- anon_sym_QMARK_DOT,
- anon_sym_LT_EQ,
- anon_sym_EQ_EQ_EQ,
- anon_sym_BANG_EQ_EQ,
- anon_sym_GT_EQ,
- anon_sym_instanceof,
- anon_sym_PLUS_PLUS,
- anon_sym_DASH_DASH,
- anon_sym_BQUOTE,
- anon_sym_satisfies,
- ACTIONS(168), 15,
- anon_sym_PLUS_EQ,
- anon_sym_DASH_EQ,
- anon_sym_STAR_EQ,
- anon_sym_SLASH_EQ,
- anon_sym_PERCENT_EQ,
- anon_sym_CARET_EQ,
- anon_sym_AMP_EQ,
- anon_sym_PIPE_EQ,
- anon_sym_GT_GT_EQ,
- anon_sym_GT_GT_GT_EQ,
- anon_sym_LT_LT_EQ,
- anon_sym_STAR_STAR_EQ,
- anon_sym_AMP_AMP_EQ,
- anon_sym_PIPE_PIPE_EQ,
- anon_sym_QMARK_QMARK_EQ,
- ACTIONS(122), 19,
- anon_sym_STAR,
- anon_sym_BANG,
- anon_sym_in,
- anon_sym_GT,
- anon_sym_AMP_AMP,
- anon_sym_PIPE_PIPE,
- anon_sym_GT_GT,
- anon_sym_GT_GT_GT,
- anon_sym_LT_LT,
- anon_sym_CARET,
- anon_sym_PLUS,
- anon_sym_DASH,
- anon_sym_SLASH,
- anon_sym_PERCENT,
- anon_sym_STAR_STAR,
- anon_sym_LT,
- anon_sym_EQ_EQ,
- anon_sym_BANG_EQ,
- anon_sym_QMARK_QMARK,
- [11560] = 9,
- ACTIONS(946), 1,
- anon_sym_EQ,
- ACTIONS(952), 1,
- anon_sym_EQ_GT,
- ACTIONS(3505), 1,
- anon_sym_LBRACK,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(1650), 2,
- anon_sym_COMMA,
- anon_sym_extends,
- ACTIONS(3508), 3,
- anon_sym_GT,
- anon_sym_AMP,
- anon_sym_PIPE,
- ACTIONS(168), 15,
- anon_sym_PLUS_EQ,
- anon_sym_DASH_EQ,
- anon_sym_STAR_EQ,
- anon_sym_SLASH_EQ,
- anon_sym_PERCENT_EQ,
- anon_sym_CARET_EQ,
- anon_sym_AMP_EQ,
- anon_sym_PIPE_EQ,
- anon_sym_GT_GT_EQ,
- anon_sym_GT_GT_GT_EQ,
- anon_sym_LT_LT_EQ,
- anon_sym_STAR_STAR_EQ,
- anon_sym_AMP_AMP_EQ,
- anon_sym_PIPE_PIPE_EQ,
- anon_sym_QMARK_QMARK_EQ,
- ACTIONS(162), 16,
- sym__ternary_qmark,
- anon_sym_as,
- anon_sym_RBRACE,
- anon_sym_LPAREN,
- anon_sym_COLON,
- anon_sym_DOT,
- anon_sym_QMARK_DOT,
- anon_sym_LT_EQ,
- anon_sym_EQ_EQ_EQ,
- anon_sym_BANG_EQ_EQ,
- anon_sym_GT_EQ,
- anon_sym_instanceof,
- anon_sym_PLUS_PLUS,
- anon_sym_DASH_DASH,
- anon_sym_BQUOTE,
- anon_sym_satisfies,
- ACTIONS(122), 18,
- anon_sym_STAR,
- anon_sym_BANG,
- anon_sym_in,
- anon_sym_AMP_AMP,
- anon_sym_PIPE_PIPE,
- anon_sym_GT_GT,
- anon_sym_GT_GT_GT,
- anon_sym_LT_LT,
- anon_sym_CARET,
- anon_sym_PLUS,
- anon_sym_DASH,
- anon_sym_SLASH,
- anon_sym_PERCENT,
- anon_sym_STAR_STAR,
- anon_sym_LT,
- anon_sym_EQ_EQ,
- anon_sym_BANG_EQ,
- anon_sym_QMARK_QMARK,
- [11638] = 7,
- ACTIONS(886), 1,
- anon_sym_COLON,
- ACTIONS(3427), 1,
- anon_sym_EQ_GT,
- ACTIONS(3448), 1,
- anon_sym_EQ,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(3416), 15,
- anon_sym_PLUS_EQ,
- anon_sym_DASH_EQ,
- anon_sym_STAR_EQ,
- anon_sym_SLASH_EQ,
- anon_sym_PERCENT_EQ,
- anon_sym_CARET_EQ,
- anon_sym_AMP_EQ,
- anon_sym_PIPE_EQ,
- anon_sym_GT_GT_EQ,
- anon_sym_GT_GT_GT_EQ,
- anon_sym_LT_LT_EQ,
- anon_sym_STAR_STAR_EQ,
- anon_sym_AMP_AMP_EQ,
- anon_sym_PIPE_PIPE_EQ,
- anon_sym_QMARK_QMARK_EQ,
- ACTIONS(3404), 18,
- sym__automatic_semicolon,
- sym__ternary_qmark,
- anon_sym_as,
- anon_sym_COMMA,
- anon_sym_LPAREN,
- anon_sym_SEMI,
- anon_sym_LBRACK,
- anon_sym_DOT,
- anon_sym_QMARK_DOT,
- anon_sym_LT_EQ,
- anon_sym_EQ_EQ_EQ,
- anon_sym_BANG_EQ_EQ,
- anon_sym_GT_EQ,
- anon_sym_instanceof,
- anon_sym_PLUS_PLUS,
- anon_sym_DASH_DASH,
- anon_sym_BQUOTE,
- anon_sym_satisfies,
- ACTIONS(3400), 21,
- anon_sym_STAR,
- anon_sym_BANG,
- anon_sym_in,
- anon_sym_GT,
- anon_sym_AMP_AMP,
- anon_sym_PIPE_PIPE,
- anon_sym_GT_GT,
- anon_sym_GT_GT_GT,
- anon_sym_LT_LT,
- anon_sym_AMP,
- anon_sym_CARET,
- anon_sym_PIPE,
- anon_sym_PLUS,
- anon_sym_DASH,
- anon_sym_SLASH,
- anon_sym_PERCENT,
- anon_sym_STAR_STAR,
- anon_sym_LT,
- anon_sym_EQ_EQ,
- anon_sym_BANG_EQ,
- anon_sym_QMARK_QMARK,
- [11712] = 7,
- ACTIONS(715), 1,
- anon_sym_EQ_GT,
- ACTIONS(859), 1,
- anon_sym_EQ,
- ACTIONS(886), 1,
- anon_sym_COLON,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(168), 15,
- anon_sym_PLUS_EQ,
- anon_sym_DASH_EQ,
- anon_sym_STAR_EQ,
- anon_sym_SLASH_EQ,
- anon_sym_PERCENT_EQ,
- anon_sym_CARET_EQ,
- anon_sym_AMP_EQ,
- anon_sym_PIPE_EQ,
- anon_sym_GT_GT_EQ,
- anon_sym_GT_GT_GT_EQ,
- anon_sym_LT_LT_EQ,
- anon_sym_STAR_STAR_EQ,
- anon_sym_AMP_AMP_EQ,
- anon_sym_PIPE_PIPE_EQ,
- anon_sym_QMARK_QMARK_EQ,
- ACTIONS(162), 18,
- sym__automatic_semicolon,
- sym__ternary_qmark,
- anon_sym_as,
- anon_sym_COMMA,
- anon_sym_LPAREN,
- anon_sym_SEMI,
- anon_sym_LBRACK,
- anon_sym_DOT,
- anon_sym_QMARK_DOT,
- anon_sym_LT_EQ,
- anon_sym_EQ_EQ_EQ,
- anon_sym_BANG_EQ_EQ,
- anon_sym_GT_EQ,
- anon_sym_instanceof,
- anon_sym_PLUS_PLUS,
- anon_sym_DASH_DASH,
- anon_sym_BQUOTE,
- anon_sym_satisfies,
- ACTIONS(122), 21,
- anon_sym_STAR,
- anon_sym_BANG,
- anon_sym_in,
- anon_sym_GT,
- anon_sym_AMP_AMP,
- anon_sym_PIPE_PIPE,
- anon_sym_GT_GT,
- anon_sym_GT_GT_GT,
- anon_sym_LT_LT,
- anon_sym_AMP,
- anon_sym_CARET,
- anon_sym_PIPE,
- anon_sym_PLUS,
- anon_sym_DASH,
- anon_sym_SLASH,
- anon_sym_PERCENT,
- anon_sym_STAR_STAR,
- anon_sym_LT,
- anon_sym_EQ_EQ,
- anon_sym_BANG_EQ,
- anon_sym_QMARK_QMARK,
- [11786] = 9,
- ACTIONS(924), 1,
- anon_sym_EQ_GT,
- ACTIONS(932), 1,
- anon_sym_EQ,
- ACTIONS(3505), 1,
- anon_sym_LBRACK,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(1650), 2,
- anon_sym_COMMA,
- anon_sym_extends,
- ACTIONS(3508), 3,
- anon_sym_GT,
- anon_sym_AMP,
- anon_sym_PIPE,
- ACTIONS(168), 15,
- anon_sym_PLUS_EQ,
- anon_sym_DASH_EQ,
- anon_sym_STAR_EQ,
- anon_sym_SLASH_EQ,
- anon_sym_PERCENT_EQ,
- anon_sym_CARET_EQ,
- anon_sym_AMP_EQ,
- anon_sym_PIPE_EQ,
- anon_sym_GT_GT_EQ,
- anon_sym_GT_GT_GT_EQ,
- anon_sym_LT_LT_EQ,
- anon_sym_STAR_STAR_EQ,
- anon_sym_AMP_AMP_EQ,
- anon_sym_PIPE_PIPE_EQ,
- anon_sym_QMARK_QMARK_EQ,
- ACTIONS(162), 16,
- sym__automatic_semicolon,
- sym__ternary_qmark,
- anon_sym_as,
- anon_sym_LPAREN,
- anon_sym_SEMI,
- anon_sym_DOT,
- anon_sym_QMARK_DOT,
- anon_sym_LT_EQ,
- anon_sym_EQ_EQ_EQ,
- anon_sym_BANG_EQ_EQ,
- anon_sym_GT_EQ,
- anon_sym_instanceof,
- anon_sym_PLUS_PLUS,
- anon_sym_DASH_DASH,
- anon_sym_BQUOTE,
- anon_sym_satisfies,
- ACTIONS(122), 18,
- anon_sym_STAR,
- anon_sym_BANG,
- anon_sym_in,
- anon_sym_AMP_AMP,
- anon_sym_PIPE_PIPE,
- anon_sym_GT_GT,
- anon_sym_GT_GT_GT,
- anon_sym_LT_LT,
- anon_sym_CARET,
- anon_sym_PLUS,
- anon_sym_DASH,
- anon_sym_SLASH,
- anon_sym_PERCENT,
- anon_sym_STAR_STAR,
- anon_sym_LT,
- anon_sym_EQ_EQ,
- anon_sym_BANG_EQ,
- anon_sym_QMARK_QMARK,
- [11864] = 6,
- ACTIONS(3450), 1,
- anon_sym_EQ,
- ACTIONS(3452), 1,
- anon_sym_EQ_GT,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(3416), 15,
- anon_sym_PLUS_EQ,
- anon_sym_DASH_EQ,
- anon_sym_STAR_EQ,
- anon_sym_SLASH_EQ,
- anon_sym_PERCENT_EQ,
- anon_sym_CARET_EQ,
- anon_sym_AMP_EQ,
- anon_sym_PIPE_EQ,
- anon_sym_GT_GT_EQ,
- anon_sym_GT_GT_GT_EQ,
- anon_sym_LT_LT_EQ,
- anon_sym_STAR_STAR_EQ,
- anon_sym_AMP_AMP_EQ,
- anon_sym_PIPE_PIPE_EQ,
- anon_sym_QMARK_QMARK_EQ,
- ACTIONS(3404), 19,
- sym__automatic_semicolon,
- sym__ternary_qmark,
- anon_sym_as,
- anon_sym_COMMA,
- anon_sym_LPAREN,
- anon_sym_of,
- anon_sym_SEMI,
- anon_sym_LBRACK,
- anon_sym_DOT,
- anon_sym_QMARK_DOT,
- anon_sym_LT_EQ,
- anon_sym_EQ_EQ_EQ,
- anon_sym_BANG_EQ_EQ,
- anon_sym_GT_EQ,
- anon_sym_instanceof,
- anon_sym_PLUS_PLUS,
- anon_sym_DASH_DASH,
- anon_sym_BQUOTE,
- anon_sym_satisfies,
- ACTIONS(3400), 21,
- anon_sym_STAR,
- anon_sym_BANG,
- anon_sym_in,
- anon_sym_GT,
- anon_sym_AMP_AMP,
- anon_sym_PIPE_PIPE,
- anon_sym_GT_GT,
- anon_sym_GT_GT_GT,
- anon_sym_LT_LT,
- anon_sym_AMP,
- anon_sym_CARET,
- anon_sym_PIPE,
- anon_sym_PLUS,
- anon_sym_DASH,
- anon_sym_SLASH,
- anon_sym_PERCENT,
- anon_sym_STAR_STAR,
- anon_sym_LT,
- anon_sym_EQ_EQ,
- anon_sym_BANG_EQ,
- anon_sym_QMARK_QMARK,
- [11936] = 12,
- ACTIONS(3463), 1,
- anon_sym_LBRACK,
- ACTIONS(3479), 1,
- anon_sym_DOT,
- ACTIONS(3482), 1,
- anon_sym_LT,
- ACTIONS(3556), 1,
- anon_sym_EQ,
- ACTIONS(3558), 1,
- anon_sym_EQ_GT,
- STATE(2856), 1,
- sym_type_arguments,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(3461), 2,
- anon_sym_COMMA,
- anon_sym_extends,
- ACTIONS(3469), 3,
- anon_sym_GT,
- anon_sym_AMP,
- anon_sym_PIPE,
- ACTIONS(3404), 14,
- sym__ternary_qmark,
- anon_sym_as,
- anon_sym_LPAREN,
- anon_sym_RBRACK,
- anon_sym_QMARK_DOT,
- anon_sym_LT_EQ,
- anon_sym_EQ_EQ_EQ,
- anon_sym_BANG_EQ_EQ,
- anon_sym_GT_EQ,
- anon_sym_instanceof,
- anon_sym_PLUS_PLUS,
- anon_sym_DASH_DASH,
- anon_sym_BQUOTE,
- anon_sym_satisfies,
- ACTIONS(3416), 15,
- anon_sym_PLUS_EQ,
- anon_sym_DASH_EQ,
- anon_sym_STAR_EQ,
- anon_sym_SLASH_EQ,
- anon_sym_PERCENT_EQ,
- anon_sym_CARET_EQ,
- anon_sym_AMP_EQ,
- anon_sym_PIPE_EQ,
- anon_sym_GT_GT_EQ,
- anon_sym_GT_GT_GT_EQ,
- anon_sym_LT_LT_EQ,
- anon_sym_STAR_STAR_EQ,
- anon_sym_AMP_AMP_EQ,
- anon_sym_PIPE_PIPE_EQ,
- anon_sym_QMARK_QMARK_EQ,
- ACTIONS(3400), 17,
- anon_sym_STAR,
- anon_sym_BANG,
- anon_sym_in,
- anon_sym_AMP_AMP,
- anon_sym_PIPE_PIPE,
- anon_sym_GT_GT,
- anon_sym_GT_GT_GT,
- anon_sym_LT_LT,
- anon_sym_CARET,
- anon_sym_PLUS,
- anon_sym_DASH,
- anon_sym_SLASH,
- anon_sym_PERCENT,
- anon_sym_STAR_STAR,
- anon_sym_EQ_EQ,
- anon_sym_BANG_EQ,
- anon_sym_QMARK_QMARK,
- [12020] = 12,
- ACTIONS(3463), 1,
- anon_sym_LBRACK,
- ACTIONS(3479), 1,
- anon_sym_DOT,
- ACTIONS(3482), 1,
- anon_sym_LT,
- ACTIONS(3560), 1,
- anon_sym_EQ,
- ACTIONS(3562), 1,
- anon_sym_EQ_GT,
- STATE(2856), 1,
- sym_type_arguments,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(3461), 2,
- anon_sym_COMMA,
- anon_sym_extends,
- ACTIONS(3469), 3,
- anon_sym_GT,
- anon_sym_AMP,
- anon_sym_PIPE,
- ACTIONS(3404), 14,
- sym__ternary_qmark,
- anon_sym_as,
- anon_sym_LPAREN,
- anon_sym_of,
- anon_sym_QMARK_DOT,
- anon_sym_LT_EQ,
- anon_sym_EQ_EQ_EQ,
- anon_sym_BANG_EQ_EQ,
- anon_sym_GT_EQ,
- anon_sym_instanceof,
- anon_sym_PLUS_PLUS,
- anon_sym_DASH_DASH,
- anon_sym_BQUOTE,
- anon_sym_satisfies,
- ACTIONS(3416), 15,
- anon_sym_PLUS_EQ,
- anon_sym_DASH_EQ,
- anon_sym_STAR_EQ,
- anon_sym_SLASH_EQ,
- anon_sym_PERCENT_EQ,
- anon_sym_CARET_EQ,
- anon_sym_AMP_EQ,
- anon_sym_PIPE_EQ,
- anon_sym_GT_GT_EQ,
- anon_sym_GT_GT_GT_EQ,
- anon_sym_LT_LT_EQ,
- anon_sym_STAR_STAR_EQ,
- anon_sym_AMP_AMP_EQ,
- anon_sym_PIPE_PIPE_EQ,
- anon_sym_QMARK_QMARK_EQ,
- ACTIONS(3400), 17,
- anon_sym_STAR,
- anon_sym_BANG,
- anon_sym_in,
- anon_sym_AMP_AMP,
- anon_sym_PIPE_PIPE,
- anon_sym_GT_GT,
- anon_sym_GT_GT_GT,
- anon_sym_LT_LT,
- anon_sym_CARET,
- anon_sym_PLUS,
- anon_sym_DASH,
- anon_sym_SLASH,
- anon_sym_PERCENT,
- anon_sym_STAR_STAR,
- anon_sym_EQ_EQ,
- anon_sym_BANG_EQ,
- anon_sym_QMARK_QMARK,
- [12104] = 6,
- ACTIONS(715), 1,
- anon_sym_EQ_GT,
- ACTIONS(859), 1,
- anon_sym_EQ,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(168), 15,
- anon_sym_PLUS_EQ,
- anon_sym_DASH_EQ,
- anon_sym_STAR_EQ,
- anon_sym_SLASH_EQ,
- anon_sym_PERCENT_EQ,
- anon_sym_CARET_EQ,
- anon_sym_AMP_EQ,
- anon_sym_PIPE_EQ,
- anon_sym_GT_GT_EQ,
- anon_sym_GT_GT_GT_EQ,
- anon_sym_LT_LT_EQ,
- anon_sym_STAR_STAR_EQ,
- anon_sym_AMP_AMP_EQ,
- anon_sym_PIPE_PIPE_EQ,
- anon_sym_QMARK_QMARK_EQ,
- ACTIONS(162), 19,
- sym__automatic_semicolon,
- sym__ternary_qmark,
- anon_sym_as,
- anon_sym_COMMA,
- anon_sym_RBRACE,
- anon_sym_LPAREN,
- anon_sym_SEMI,
- anon_sym_LBRACK,
- anon_sym_DOT,
- anon_sym_QMARK_DOT,
- anon_sym_LT_EQ,
- anon_sym_EQ_EQ_EQ,
- anon_sym_BANG_EQ_EQ,
- anon_sym_GT_EQ,
- anon_sym_instanceof,
- anon_sym_PLUS_PLUS,
- anon_sym_DASH_DASH,
- anon_sym_BQUOTE,
- anon_sym_satisfies,
- ACTIONS(122), 21,
- anon_sym_STAR,
- anon_sym_BANG,
- anon_sym_in,
- anon_sym_GT,
- anon_sym_AMP_AMP,
- anon_sym_PIPE_PIPE,
- anon_sym_GT_GT,
- anon_sym_GT_GT_GT,
- anon_sym_LT_LT,
- anon_sym_AMP,
- anon_sym_CARET,
- anon_sym_PIPE,
- anon_sym_PLUS,
- anon_sym_DASH,
- anon_sym_SLASH,
- anon_sym_PERCENT,
- anon_sym_STAR_STAR,
- anon_sym_LT,
- anon_sym_EQ_EQ,
- anon_sym_BANG_EQ,
- anon_sym_QMARK_QMARK,
- [12176] = 12,
- ACTIONS(3402), 1,
- anon_sym_EQ,
- ACTIONS(3412), 1,
- anon_sym_EQ_GT,
- ACTIONS(3461), 1,
- anon_sym_extends,
- ACTIONS(3479), 1,
- anon_sym_DOT,
- ACTIONS(3482), 1,
- anon_sym_LT,
- STATE(2856), 1,
- sym_type_arguments,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(3463), 2,
- anon_sym_RBRACE,
- anon_sym_LBRACK,
- ACTIONS(3469), 2,
- anon_sym_AMP,
- anon_sym_PIPE,
- ACTIONS(3404), 14,
- sym__ternary_qmark,
- anon_sym_as,
- anon_sym_COMMA,
- anon_sym_LPAREN,
- anon_sym_QMARK_DOT,
- anon_sym_LT_EQ,
- anon_sym_EQ_EQ_EQ,
- anon_sym_BANG_EQ_EQ,
- anon_sym_GT_EQ,
- anon_sym_instanceof,
- anon_sym_PLUS_PLUS,
- anon_sym_DASH_DASH,
- anon_sym_BQUOTE,
- anon_sym_satisfies,
- ACTIONS(3416), 15,
- anon_sym_PLUS_EQ,
- anon_sym_DASH_EQ,
- anon_sym_STAR_EQ,
- anon_sym_SLASH_EQ,
- anon_sym_PERCENT_EQ,
- anon_sym_CARET_EQ,
- anon_sym_AMP_EQ,
- anon_sym_PIPE_EQ,
- anon_sym_GT_GT_EQ,
- anon_sym_GT_GT_GT_EQ,
- anon_sym_LT_LT_EQ,
- anon_sym_STAR_STAR_EQ,
- anon_sym_AMP_AMP_EQ,
- anon_sym_PIPE_PIPE_EQ,
- anon_sym_QMARK_QMARK_EQ,
- ACTIONS(3400), 18,
- anon_sym_STAR,
- anon_sym_BANG,
- anon_sym_in,
- anon_sym_GT,
- anon_sym_AMP_AMP,
- anon_sym_PIPE_PIPE,
- anon_sym_GT_GT,
- anon_sym_GT_GT_GT,
- anon_sym_LT_LT,
- anon_sym_CARET,
- anon_sym_PLUS,
- anon_sym_DASH,
- anon_sym_SLASH,
- anon_sym_PERCENT,
- anon_sym_STAR_STAR,
- anon_sym_EQ_EQ,
- anon_sym_BANG_EQ,
- anon_sym_QMARK_QMARK,
- [12260] = 7,
- ACTIONS(884), 1,
- anon_sym_COLON,
- ACTIONS(3427), 1,
- anon_sym_EQ_GT,
- ACTIONS(3448), 1,
- anon_sym_EQ,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(3416), 15,
- anon_sym_PLUS_EQ,
- anon_sym_DASH_EQ,
- anon_sym_STAR_EQ,
- anon_sym_SLASH_EQ,
- anon_sym_PERCENT_EQ,
- anon_sym_CARET_EQ,
- anon_sym_AMP_EQ,
- anon_sym_PIPE_EQ,
- anon_sym_GT_GT_EQ,
- anon_sym_GT_GT_GT_EQ,
- anon_sym_LT_LT_EQ,
- anon_sym_STAR_STAR_EQ,
- anon_sym_AMP_AMP_EQ,
- anon_sym_PIPE_PIPE_EQ,
- anon_sym_QMARK_QMARK_EQ,
- ACTIONS(3404), 18,
- sym__automatic_semicolon,
- sym__ternary_qmark,
- anon_sym_as,
- anon_sym_COMMA,
- anon_sym_LPAREN,
- anon_sym_SEMI,
- anon_sym_LBRACK,
- anon_sym_DOT,
- anon_sym_QMARK_DOT,
- anon_sym_LT_EQ,
- anon_sym_EQ_EQ_EQ,
- anon_sym_BANG_EQ_EQ,
- anon_sym_GT_EQ,
- anon_sym_instanceof,
- anon_sym_PLUS_PLUS,
- anon_sym_DASH_DASH,
- anon_sym_BQUOTE,
- anon_sym_satisfies,
- ACTIONS(3400), 21,
- anon_sym_STAR,
- anon_sym_BANG,
- anon_sym_in,
- anon_sym_GT,
- anon_sym_AMP_AMP,
- anon_sym_PIPE_PIPE,
- anon_sym_GT_GT,
- anon_sym_GT_GT_GT,
- anon_sym_LT_LT,
- anon_sym_AMP,
- anon_sym_CARET,
- anon_sym_PIPE,
- anon_sym_PLUS,
- anon_sym_DASH,
- anon_sym_SLASH,
- anon_sym_PERCENT,
- anon_sym_STAR_STAR,
- anon_sym_LT,
- anon_sym_EQ_EQ,
- anon_sym_BANG_EQ,
- anon_sym_QMARK_QMARK,
- [12334] = 9,
- ACTIONS(128), 1,
- anon_sym_RBRACK,
- ACTIONS(227), 1,
- anon_sym_COMMA,
- ACTIONS(895), 1,
- anon_sym_EQ,
- ACTIONS(900), 1,
- anon_sym_COLON,
- ACTIONS(904), 1,
- anon_sym_EQ_GT,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(162), 15,
- sym__ternary_qmark,
- anon_sym_as,
- anon_sym_LPAREN,
- anon_sym_LBRACK,
- anon_sym_DOT,
- anon_sym_QMARK_DOT,
- anon_sym_LT_EQ,
- anon_sym_EQ_EQ_EQ,
- anon_sym_BANG_EQ_EQ,
- anon_sym_GT_EQ,
- anon_sym_instanceof,
- anon_sym_PLUS_PLUS,
- anon_sym_DASH_DASH,
- anon_sym_BQUOTE,
- anon_sym_satisfies,
- ACTIONS(168), 15,
- anon_sym_PLUS_EQ,
- anon_sym_DASH_EQ,
- anon_sym_STAR_EQ,
- anon_sym_SLASH_EQ,
- anon_sym_PERCENT_EQ,
- anon_sym_CARET_EQ,
- anon_sym_AMP_EQ,
- anon_sym_PIPE_EQ,
- anon_sym_GT_GT_EQ,
- anon_sym_GT_GT_GT_EQ,
- anon_sym_LT_LT_EQ,
- anon_sym_STAR_STAR_EQ,
- anon_sym_AMP_AMP_EQ,
- anon_sym_PIPE_PIPE_EQ,
- anon_sym_QMARK_QMARK_EQ,
- ACTIONS(122), 21,
- anon_sym_STAR,
- anon_sym_BANG,
- anon_sym_in,
- anon_sym_GT,
- anon_sym_AMP_AMP,
- anon_sym_PIPE_PIPE,
- anon_sym_GT_GT,
- anon_sym_GT_GT_GT,
- anon_sym_LT_LT,
- anon_sym_AMP,
- anon_sym_CARET,
- anon_sym_PIPE,
- anon_sym_PLUS,
- anon_sym_DASH,
- anon_sym_SLASH,
- anon_sym_PERCENT,
- anon_sym_STAR_STAR,
- anon_sym_LT,
- anon_sym_EQ_EQ,
- anon_sym_BANG_EQ,
- anon_sym_QMARK_QMARK,
- [12411] = 6,
- ACTIONS(3542), 1,
- anon_sym_EQ,
- ACTIONS(3544), 1,
- anon_sym_EQ_GT,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(3416), 15,
- anon_sym_PLUS_EQ,
- anon_sym_DASH_EQ,
- anon_sym_STAR_EQ,
- anon_sym_SLASH_EQ,
- anon_sym_PERCENT_EQ,
- anon_sym_CARET_EQ,
- anon_sym_AMP_EQ,
- anon_sym_PIPE_EQ,
- anon_sym_GT_GT_EQ,
- anon_sym_GT_GT_GT_EQ,
- anon_sym_LT_LT_EQ,
- anon_sym_STAR_STAR_EQ,
- anon_sym_AMP_AMP_EQ,
- anon_sym_PIPE_PIPE_EQ,
- anon_sym_QMARK_QMARK_EQ,
- ACTIONS(3404), 18,
- sym__ternary_qmark,
- anon_sym_as,
- anon_sym_LBRACE,
- anon_sym_COMMA,
- anon_sym_LPAREN,
- anon_sym_LBRACK,
- anon_sym_DOT,
- anon_sym_QMARK_DOT,
- anon_sym_LT_EQ,
- anon_sym_EQ_EQ_EQ,
- anon_sym_BANG_EQ_EQ,
- anon_sym_GT_EQ,
- anon_sym_instanceof,
- anon_sym_PLUS_PLUS,
- anon_sym_DASH_DASH,
- anon_sym_BQUOTE,
- anon_sym_satisfies,
- anon_sym_implements,
- ACTIONS(3400), 21,
- anon_sym_STAR,
- anon_sym_BANG,
- anon_sym_in,
- anon_sym_GT,
- anon_sym_AMP_AMP,
- anon_sym_PIPE_PIPE,
- anon_sym_GT_GT,
- anon_sym_GT_GT_GT,
- anon_sym_LT_LT,
- anon_sym_AMP,
- anon_sym_CARET,
- anon_sym_PIPE,
- anon_sym_PLUS,
- anon_sym_DASH,
- anon_sym_SLASH,
- anon_sym_PERCENT,
- anon_sym_STAR_STAR,
- anon_sym_LT,
- anon_sym_EQ_EQ,
- anon_sym_BANG_EQ,
- anon_sym_QMARK_QMARK,
- [12482] = 4,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(3446), 2,
- anon_sym_COMMA,
- anon_sym_extends,
- ACTIONS(3384), 22,
- anon_sym_STAR,
- anon_sym_EQ,
- anon_sym_BANG,
- anon_sym_in,
- anon_sym_GT,
- anon_sym_AMP_AMP,
- anon_sym_PIPE_PIPE,
- anon_sym_GT_GT,
- anon_sym_GT_GT_GT,
- anon_sym_LT_LT,
- anon_sym_AMP,
- anon_sym_CARET,
- anon_sym_PIPE,
- anon_sym_PLUS,
- anon_sym_DASH,
- anon_sym_SLASH,
- anon_sym_PERCENT,
- anon_sym_STAR_STAR,
- anon_sym_LT,
- anon_sym_EQ_EQ,
- anon_sym_BANG_EQ,
- anon_sym_QMARK_QMARK,
- ACTIONS(3386), 32,
- sym__automatic_semicolon,
- sym__ternary_qmark,
- anon_sym_as,
- anon_sym_LPAREN,
- anon_sym_SEMI,
- anon_sym_LBRACK,
- anon_sym_DOT,
- anon_sym_QMARK_DOT,
- anon_sym_PLUS_EQ,
- anon_sym_DASH_EQ,
- anon_sym_STAR_EQ,
- anon_sym_SLASH_EQ,
- anon_sym_PERCENT_EQ,
- anon_sym_CARET_EQ,
- anon_sym_AMP_EQ,
- anon_sym_PIPE_EQ,
- anon_sym_GT_GT_EQ,
- anon_sym_GT_GT_GT_EQ,
- anon_sym_LT_LT_EQ,
- anon_sym_STAR_STAR_EQ,
- anon_sym_AMP_AMP_EQ,
- anon_sym_PIPE_PIPE_EQ,
- anon_sym_QMARK_QMARK_EQ,
- anon_sym_LT_EQ,
- anon_sym_EQ_EQ_EQ,
- anon_sym_BANG_EQ_EQ,
- anon_sym_GT_EQ,
- anon_sym_instanceof,
- anon_sym_PLUS_PLUS,
- anon_sym_DASH_DASH,
- anon_sym_BQUOTE,
- anon_sym_satisfies,
- [12549] = 7,
- ACTIONS(924), 1,
- anon_sym_EQ_GT,
- ACTIONS(932), 1,
- anon_sym_EQ,
- ACTIONS(3591), 1,
- sym_identifier,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(162), 14,
- sym__automatic_semicolon,
- sym__ternary_qmark,
- anon_sym_LPAREN,
- anon_sym_SEMI,
- anon_sym_LBRACK,
- anon_sym_DOT,
- anon_sym_QMARK_DOT,
- anon_sym_LT_EQ,
- anon_sym_EQ_EQ_EQ,
- anon_sym_BANG_EQ_EQ,
- anon_sym_GT_EQ,
- anon_sym_PLUS_PLUS,
- anon_sym_DASH_DASH,
- anon_sym_BQUOTE,
- ACTIONS(168), 15,
- anon_sym_PLUS_EQ,
- anon_sym_DASH_EQ,
- anon_sym_STAR_EQ,
- anon_sym_SLASH_EQ,
- anon_sym_PERCENT_EQ,
- anon_sym_CARET_EQ,
- anon_sym_AMP_EQ,
- anon_sym_PIPE_EQ,
- anon_sym_GT_GT_EQ,
- anon_sym_GT_GT_GT_EQ,
- anon_sym_LT_LT_EQ,
- anon_sym_STAR_STAR_EQ,
- anon_sym_AMP_AMP_EQ,
- anon_sym_PIPE_PIPE_EQ,
- anon_sym_QMARK_QMARK_EQ,
- ACTIONS(122), 24,
- anon_sym_STAR,
- anon_sym_as,
- anon_sym_BANG,
- anon_sym_in,
- anon_sym_GT,
- anon_sym_AMP_AMP,
- anon_sym_PIPE_PIPE,
- anon_sym_GT_GT,
- anon_sym_GT_GT_GT,
- anon_sym_LT_LT,
- anon_sym_AMP,
- anon_sym_CARET,
- anon_sym_PIPE,
- anon_sym_PLUS,
- anon_sym_DASH,
- anon_sym_SLASH,
- anon_sym_PERCENT,
- anon_sym_STAR_STAR,
- anon_sym_LT,
- anon_sym_EQ_EQ,
- anon_sym_BANG_EQ,
- anon_sym_QMARK_QMARK,
- anon_sym_instanceof,
- anon_sym_satisfies,
- [12622] = 7,
- ACTIONS(3448), 1,
- anon_sym_EQ,
- ACTIONS(3586), 1,
- anon_sym_in,
- ACTIONS(3589), 1,
- anon_sym_of,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(3416), 15,
- anon_sym_PLUS_EQ,
- anon_sym_DASH_EQ,
- anon_sym_STAR_EQ,
- anon_sym_SLASH_EQ,
- anon_sym_PERCENT_EQ,
- anon_sym_CARET_EQ,
- anon_sym_AMP_EQ,
- anon_sym_PIPE_EQ,
- anon_sym_GT_GT_EQ,
- anon_sym_GT_GT_GT_EQ,
- anon_sym_LT_LT_EQ,
- anon_sym_STAR_STAR_EQ,
- anon_sym_AMP_AMP_EQ,
- anon_sym_PIPE_PIPE_EQ,
- anon_sym_QMARK_QMARK_EQ,
- ACTIONS(3404), 18,
- sym__automatic_semicolon,
- sym__ternary_qmark,
- anon_sym_as,
- anon_sym_COMMA,
- anon_sym_LPAREN,
- anon_sym_SEMI,
- anon_sym_LBRACK,
- anon_sym_DOT,
- anon_sym_QMARK_DOT,
- anon_sym_LT_EQ,
- anon_sym_EQ_EQ_EQ,
- anon_sym_BANG_EQ_EQ,
- anon_sym_GT_EQ,
- anon_sym_instanceof,
- anon_sym_PLUS_PLUS,
- anon_sym_DASH_DASH,
- anon_sym_BQUOTE,
- anon_sym_satisfies,
- ACTIONS(3400), 20,
- anon_sym_STAR,
- anon_sym_BANG,
- anon_sym_GT,
- anon_sym_AMP_AMP,
- anon_sym_PIPE_PIPE,
- anon_sym_GT_GT,
- anon_sym_GT_GT_GT,
- anon_sym_LT_LT,
- anon_sym_AMP,
- anon_sym_CARET,
- anon_sym_PIPE,
- anon_sym_PLUS,
- anon_sym_DASH,
- anon_sym_SLASH,
- anon_sym_PERCENT,
- anon_sym_STAR_STAR,
- anon_sym_LT,
- anon_sym_EQ_EQ,
- anon_sym_BANG_EQ,
- anon_sym_QMARK_QMARK,
- [12695] = 7,
- ACTIONS(924), 1,
- anon_sym_EQ_GT,
- ACTIONS(932), 1,
- anon_sym_EQ,
- ACTIONS(3372), 1,
- sym_identifier,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(162), 14,
- sym__automatic_semicolon,
- sym__ternary_qmark,
- anon_sym_LPAREN,
- anon_sym_SEMI,
- anon_sym_LBRACK,
- anon_sym_DOT,
- anon_sym_QMARK_DOT,
- anon_sym_LT_EQ,
- anon_sym_EQ_EQ_EQ,
- anon_sym_BANG_EQ_EQ,
- anon_sym_GT_EQ,
- anon_sym_PLUS_PLUS,
- anon_sym_DASH_DASH,
- anon_sym_BQUOTE,
- ACTIONS(168), 15,
- anon_sym_PLUS_EQ,
- anon_sym_DASH_EQ,
- anon_sym_STAR_EQ,
- anon_sym_SLASH_EQ,
- anon_sym_PERCENT_EQ,
- anon_sym_CARET_EQ,
- anon_sym_AMP_EQ,
- anon_sym_PIPE_EQ,
- anon_sym_GT_GT_EQ,
- anon_sym_GT_GT_GT_EQ,
- anon_sym_LT_LT_EQ,
- anon_sym_STAR_STAR_EQ,
- anon_sym_AMP_AMP_EQ,
- anon_sym_PIPE_PIPE_EQ,
- anon_sym_QMARK_QMARK_EQ,
- ACTIONS(122), 24,
- anon_sym_STAR,
- anon_sym_as,
- anon_sym_BANG,
- anon_sym_in,
- anon_sym_GT,
- anon_sym_AMP_AMP,
- anon_sym_PIPE_PIPE,
- anon_sym_GT_GT,
- anon_sym_GT_GT_GT,
- anon_sym_LT_LT,
- anon_sym_AMP,
- anon_sym_CARET,
- anon_sym_PIPE,
- anon_sym_PLUS,
- anon_sym_DASH,
- anon_sym_SLASH,
- anon_sym_PERCENT,
- anon_sym_STAR_STAR,
- anon_sym_LT,
- anon_sym_EQ_EQ,
- anon_sym_BANG_EQ,
- anon_sym_QMARK_QMARK,
- anon_sym_instanceof,
- anon_sym_satisfies,
- [12768] = 7,
- ACTIONS(3402), 1,
- anon_sym_EQ,
- ACTIONS(3412), 1,
- anon_sym_EQ_GT,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(3593), 3,
- anon_sym_COMMA,
- anon_sym_RBRACE,
- anon_sym_RBRACK,
- ACTIONS(3404), 15,
- sym__ternary_qmark,
- anon_sym_as,
- anon_sym_LPAREN,
- anon_sym_LBRACK,
- anon_sym_DOT,
- anon_sym_QMARK_DOT,
- anon_sym_LT_EQ,
- anon_sym_EQ_EQ_EQ,
- anon_sym_BANG_EQ_EQ,
- anon_sym_GT_EQ,
- anon_sym_instanceof,
- anon_sym_PLUS_PLUS,
- anon_sym_DASH_DASH,
- anon_sym_BQUOTE,
- anon_sym_satisfies,
- ACTIONS(3416), 15,
- anon_sym_PLUS_EQ,
- anon_sym_DASH_EQ,
- anon_sym_STAR_EQ,
- anon_sym_SLASH_EQ,
- anon_sym_PERCENT_EQ,
- anon_sym_CARET_EQ,
- anon_sym_AMP_EQ,
- anon_sym_PIPE_EQ,
- anon_sym_GT_GT_EQ,
- anon_sym_GT_GT_GT_EQ,
- anon_sym_LT_LT_EQ,
- anon_sym_STAR_STAR_EQ,
- anon_sym_AMP_AMP_EQ,
- anon_sym_PIPE_PIPE_EQ,
- anon_sym_QMARK_QMARK_EQ,
- ACTIONS(3400), 21,
- anon_sym_STAR,
- anon_sym_BANG,
- anon_sym_in,
- anon_sym_GT,
- anon_sym_AMP_AMP,
- anon_sym_PIPE_PIPE,
- anon_sym_GT_GT,
- anon_sym_GT_GT_GT,
- anon_sym_LT_LT,
- anon_sym_AMP,
- anon_sym_CARET,
- anon_sym_PIPE,
- anon_sym_PLUS,
- anon_sym_DASH,
- anon_sym_SLASH,
- anon_sym_PERCENT,
- anon_sym_STAR_STAR,
- anon_sym_LT,
- anon_sym_EQ_EQ,
- anon_sym_BANG_EQ,
- anon_sym_QMARK_QMARK,
- [12841] = 4,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(3382), 2,
- anon_sym_COMMA,
- anon_sym_extends,
- ACTIONS(3378), 22,
- anon_sym_STAR,
- anon_sym_EQ,
- anon_sym_BANG,
- anon_sym_in,
- anon_sym_GT,
- anon_sym_AMP_AMP,
- anon_sym_PIPE_PIPE,
- anon_sym_GT_GT,
- anon_sym_GT_GT_GT,
- anon_sym_LT_LT,
- anon_sym_AMP,
- anon_sym_CARET,
- anon_sym_PIPE,
- anon_sym_PLUS,
- anon_sym_DASH,
- anon_sym_SLASH,
- anon_sym_PERCENT,
- anon_sym_STAR_STAR,
- anon_sym_LT,
- anon_sym_EQ_EQ,
- anon_sym_BANG_EQ,
- anon_sym_QMARK_QMARK,
- ACTIONS(3380), 32,
- sym__automatic_semicolon,
- sym__ternary_qmark,
- anon_sym_as,
- anon_sym_LPAREN,
- anon_sym_SEMI,
- anon_sym_LBRACK,
- anon_sym_DOT,
- anon_sym_QMARK_DOT,
- anon_sym_PLUS_EQ,
- anon_sym_DASH_EQ,
- anon_sym_STAR_EQ,
- anon_sym_SLASH_EQ,
- anon_sym_PERCENT_EQ,
- anon_sym_CARET_EQ,
- anon_sym_AMP_EQ,
- anon_sym_PIPE_EQ,
- anon_sym_GT_GT_EQ,
- anon_sym_GT_GT_GT_EQ,
- anon_sym_LT_LT_EQ,
- anon_sym_STAR_STAR_EQ,
- anon_sym_AMP_AMP_EQ,
- anon_sym_PIPE_PIPE_EQ,
- anon_sym_QMARK_QMARK_EQ,
- anon_sym_LT_EQ,
- anon_sym_EQ_EQ_EQ,
- anon_sym_BANG_EQ_EQ,
- anon_sym_GT_EQ,
- anon_sym_instanceof,
- anon_sym_PLUS_PLUS,
- anon_sym_DASH_DASH,
- anon_sym_BQUOTE,
- anon_sym_satisfies,
- [12908] = 5,
- ACTIONS(3448), 1,
- anon_sym_EQ,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(3416), 15,
- anon_sym_PLUS_EQ,
- anon_sym_DASH_EQ,
- anon_sym_STAR_EQ,
- anon_sym_SLASH_EQ,
- anon_sym_PERCENT_EQ,
- anon_sym_CARET_EQ,
- anon_sym_AMP_EQ,
- anon_sym_PIPE_EQ,
- anon_sym_GT_GT_EQ,
- anon_sym_GT_GT_GT_EQ,
- anon_sym_LT_LT_EQ,
- anon_sym_STAR_STAR_EQ,
- anon_sym_AMP_AMP_EQ,
- anon_sym_PIPE_PIPE_EQ,
- anon_sym_QMARK_QMARK_EQ,
- ACTIONS(3404), 19,
- sym__automatic_semicolon,
- sym__ternary_qmark,
- anon_sym_as,
- anon_sym_COMMA,
- anon_sym_RBRACE,
- anon_sym_LPAREN,
- anon_sym_SEMI,
- anon_sym_LBRACK,
- anon_sym_DOT,
- anon_sym_QMARK_DOT,
- anon_sym_LT_EQ,
- anon_sym_EQ_EQ_EQ,
- anon_sym_BANG_EQ_EQ,
- anon_sym_GT_EQ,
- anon_sym_instanceof,
- anon_sym_PLUS_PLUS,
- anon_sym_DASH_DASH,
- anon_sym_BQUOTE,
- anon_sym_satisfies,
- ACTIONS(3400), 21,
- anon_sym_STAR,
- anon_sym_BANG,
- anon_sym_in,
- anon_sym_GT,
- anon_sym_AMP_AMP,
- anon_sym_PIPE_PIPE,
- anon_sym_GT_GT,
- anon_sym_GT_GT_GT,
- anon_sym_LT_LT,
- anon_sym_AMP,
- anon_sym_CARET,
- anon_sym_PIPE,
- anon_sym_PLUS,
- anon_sym_DASH,
- anon_sym_SLASH,
- anon_sym_PERCENT,
- anon_sym_STAR_STAR,
- anon_sym_LT,
- anon_sym_EQ_EQ,
- anon_sym_BANG_EQ,
- anon_sym_QMARK_QMARK,
- [12977] = 6,
- ACTIONS(912), 1,
- anon_sym_EQ,
- ACTIONS(918), 1,
- anon_sym_EQ_GT,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(168), 15,
- anon_sym_PLUS_EQ,
- anon_sym_DASH_EQ,
- anon_sym_STAR_EQ,
- anon_sym_SLASH_EQ,
- anon_sym_PERCENT_EQ,
- anon_sym_CARET_EQ,
- anon_sym_AMP_EQ,
- anon_sym_PIPE_EQ,
- anon_sym_GT_GT_EQ,
- anon_sym_GT_GT_GT_EQ,
- anon_sym_LT_LT_EQ,
- anon_sym_STAR_STAR_EQ,
- anon_sym_AMP_AMP_EQ,
- anon_sym_PIPE_PIPE_EQ,
- anon_sym_QMARK_QMARK_EQ,
- ACTIONS(162), 18,
- sym__ternary_qmark,
- anon_sym_as,
- anon_sym_LBRACE,
- anon_sym_COMMA,
- anon_sym_LPAREN,
- anon_sym_LBRACK,
- anon_sym_DOT,
- anon_sym_QMARK_DOT,
- anon_sym_LT_EQ,
- anon_sym_EQ_EQ_EQ,
- anon_sym_BANG_EQ_EQ,
- anon_sym_GT_EQ,
- anon_sym_instanceof,
- anon_sym_PLUS_PLUS,
- anon_sym_DASH_DASH,
- anon_sym_BQUOTE,
- anon_sym_satisfies,
- anon_sym_implements,
- ACTIONS(122), 21,
- anon_sym_STAR,
- anon_sym_BANG,
- anon_sym_in,
- anon_sym_GT,
- anon_sym_AMP_AMP,
- anon_sym_PIPE_PIPE,
- anon_sym_GT_GT,
- anon_sym_GT_GT_GT,
- anon_sym_LT_LT,
- anon_sym_AMP,
- anon_sym_CARET,
- anon_sym_PIPE,
- anon_sym_PLUS,
- anon_sym_DASH,
- anon_sym_SLASH,
- anon_sym_PERCENT,
- anon_sym_STAR_STAR,
- anon_sym_LT,
- anon_sym_EQ_EQ,
- anon_sym_BANG_EQ,
- anon_sym_QMARK_QMARK,
- [13048] = 12,
- ACTIONS(3463), 1,
- anon_sym_LBRACK,
- ACTIONS(3475), 1,
- anon_sym_EQ,
- ACTIONS(3479), 1,
- anon_sym_DOT,
- ACTIONS(3482), 1,
- anon_sym_LT,
- ACTIONS(3516), 1,
- anon_sym_EQ_GT,
- STATE(2856), 1,
- sym_type_arguments,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(3461), 2,
- anon_sym_COMMA,
- anon_sym_extends,
- ACTIONS(3469), 3,
- anon_sym_GT,
- anon_sym_AMP,
- anon_sym_PIPE,
- ACTIONS(3404), 13,
- sym__ternary_qmark,
- anon_sym_as,
- anon_sym_LPAREN,
- anon_sym_QMARK_DOT,
- anon_sym_LT_EQ,
- anon_sym_EQ_EQ_EQ,
- anon_sym_BANG_EQ_EQ,
- anon_sym_GT_EQ,
- anon_sym_instanceof,
- anon_sym_PLUS_PLUS,
- anon_sym_DASH_DASH,
- anon_sym_BQUOTE,
- anon_sym_satisfies,
- ACTIONS(3416), 15,
- anon_sym_PLUS_EQ,
- anon_sym_DASH_EQ,
- anon_sym_STAR_EQ,
- anon_sym_SLASH_EQ,
- anon_sym_PERCENT_EQ,
- anon_sym_CARET_EQ,
- anon_sym_AMP_EQ,
- anon_sym_PIPE_EQ,
- anon_sym_GT_GT_EQ,
- anon_sym_GT_GT_GT_EQ,
- anon_sym_LT_LT_EQ,
- anon_sym_STAR_STAR_EQ,
- anon_sym_AMP_AMP_EQ,
- anon_sym_PIPE_PIPE_EQ,
- anon_sym_QMARK_QMARK_EQ,
- ACTIONS(3400), 17,
- anon_sym_STAR,
- anon_sym_BANG,
- anon_sym_in,
- anon_sym_AMP_AMP,
- anon_sym_PIPE_PIPE,
- anon_sym_GT_GT,
- anon_sym_GT_GT_GT,
- anon_sym_LT_LT,
- anon_sym_CARET,
- anon_sym_PLUS,
- anon_sym_DASH,
- anon_sym_SLASH,
- anon_sym_PERCENT,
- anon_sym_STAR_STAR,
- anon_sym_EQ_EQ,
- anon_sym_BANG_EQ,
- anon_sym_QMARK_QMARK,
- [13131] = 5,
- ACTIONS(3446), 1,
- anon_sym_extends,
- ACTIONS(3596), 1,
- anon_sym_QMARK,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(3384), 22,
- anon_sym_STAR,
- anon_sym_EQ,
- anon_sym_BANG,
- anon_sym_in,
- anon_sym_GT,
- anon_sym_AMP_AMP,
- anon_sym_PIPE_PIPE,
- anon_sym_GT_GT,
- anon_sym_GT_GT_GT,
- anon_sym_LT_LT,
- anon_sym_AMP,
- anon_sym_CARET,
- anon_sym_PIPE,
- anon_sym_PLUS,
- anon_sym_DASH,
- anon_sym_SLASH,
- anon_sym_PERCENT,
- anon_sym_STAR_STAR,
- anon_sym_LT,
- anon_sym_EQ_EQ,
- anon_sym_BANG_EQ,
- anon_sym_QMARK_QMARK,
- ACTIONS(3386), 32,
- sym__ternary_qmark,
- anon_sym_as,
- anon_sym_COMMA,
- anon_sym_LPAREN,
- anon_sym_LBRACK,
- anon_sym_RBRACK,
- anon_sym_DOT,
- anon_sym_QMARK_DOT,
- anon_sym_PLUS_EQ,
- anon_sym_DASH_EQ,
- anon_sym_STAR_EQ,
- anon_sym_SLASH_EQ,
- anon_sym_PERCENT_EQ,
- anon_sym_CARET_EQ,
- anon_sym_AMP_EQ,
- anon_sym_PIPE_EQ,
- anon_sym_GT_GT_EQ,
- anon_sym_GT_GT_GT_EQ,
- anon_sym_LT_LT_EQ,
- anon_sym_STAR_STAR_EQ,
- anon_sym_AMP_AMP_EQ,
- anon_sym_PIPE_PIPE_EQ,
- anon_sym_QMARK_QMARK_EQ,
- anon_sym_LT_EQ,
- anon_sym_EQ_EQ_EQ,
- anon_sym_BANG_EQ_EQ,
- anon_sym_GT_EQ,
- anon_sym_instanceof,
- anon_sym_PLUS_PLUS,
- anon_sym_DASH_DASH,
- anon_sym_BQUOTE,
- anon_sym_satisfies,
- [13200] = 5,
- ACTIONS(3382), 1,
- anon_sym_extends,
- ACTIONS(3598), 1,
- anon_sym_QMARK,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(3378), 22,
- anon_sym_STAR,
- anon_sym_EQ,
- anon_sym_BANG,
- anon_sym_in,
- anon_sym_GT,
- anon_sym_AMP_AMP,
- anon_sym_PIPE_PIPE,
- anon_sym_GT_GT,
- anon_sym_GT_GT_GT,
- anon_sym_LT_LT,
- anon_sym_AMP,
- anon_sym_CARET,
- anon_sym_PIPE,
- anon_sym_PLUS,
- anon_sym_DASH,
- anon_sym_SLASH,
- anon_sym_PERCENT,
- anon_sym_STAR_STAR,
- anon_sym_LT,
- anon_sym_EQ_EQ,
- anon_sym_BANG_EQ,
- anon_sym_QMARK_QMARK,
- ACTIONS(3380), 32,
- sym__ternary_qmark,
- anon_sym_as,
- anon_sym_COMMA,
- anon_sym_LPAREN,
- anon_sym_LBRACK,
- anon_sym_RBRACK,
- anon_sym_DOT,
- anon_sym_QMARK_DOT,
- anon_sym_PLUS_EQ,
- anon_sym_DASH_EQ,
- anon_sym_STAR_EQ,
- anon_sym_SLASH_EQ,
- anon_sym_PERCENT_EQ,
- anon_sym_CARET_EQ,
- anon_sym_AMP_EQ,
- anon_sym_PIPE_EQ,
- anon_sym_GT_GT_EQ,
- anon_sym_GT_GT_GT_EQ,
- anon_sym_LT_LT_EQ,
- anon_sym_STAR_STAR_EQ,
- anon_sym_AMP_AMP_EQ,
- anon_sym_PIPE_PIPE_EQ,
- anon_sym_QMARK_QMARK_EQ,
- anon_sym_LT_EQ,
- anon_sym_EQ_EQ_EQ,
- anon_sym_BANG_EQ_EQ,
- anon_sym_GT_EQ,
- anon_sym_instanceof,
- anon_sym_PLUS_PLUS,
- anon_sym_DASH_DASH,
- anon_sym_BQUOTE,
- anon_sym_satisfies,
- [13269] = 6,
- ACTIONS(841), 1,
- anon_sym_EQ,
- ACTIONS(918), 1,
- anon_sym_EQ_GT,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(168), 15,
- anon_sym_PLUS_EQ,
- anon_sym_DASH_EQ,
- anon_sym_STAR_EQ,
- anon_sym_SLASH_EQ,
- anon_sym_PERCENT_EQ,
- anon_sym_CARET_EQ,
- anon_sym_AMP_EQ,
- anon_sym_PIPE_EQ,
- anon_sym_GT_GT_EQ,
- anon_sym_GT_GT_GT_EQ,
- anon_sym_LT_LT_EQ,
- anon_sym_STAR_STAR_EQ,
- anon_sym_AMP_AMP_EQ,
- anon_sym_PIPE_PIPE_EQ,
- anon_sym_QMARK_QMARK_EQ,
- ACTIONS(162), 18,
- sym__ternary_qmark,
- anon_sym_as,
- anon_sym_LBRACE,
- anon_sym_COMMA,
- anon_sym_LPAREN,
- anon_sym_LBRACK,
- anon_sym_DOT,
- anon_sym_QMARK_DOT,
- anon_sym_LT_EQ,
- anon_sym_EQ_EQ_EQ,
- anon_sym_BANG_EQ_EQ,
- anon_sym_GT_EQ,
- anon_sym_instanceof,
- anon_sym_PLUS_PLUS,
- anon_sym_DASH_DASH,
- anon_sym_BQUOTE,
- anon_sym_satisfies,
- anon_sym_implements,
- ACTIONS(122), 21,
- anon_sym_STAR,
- anon_sym_BANG,
- anon_sym_in,
- anon_sym_GT,
- anon_sym_AMP_AMP,
- anon_sym_PIPE_PIPE,
- anon_sym_GT_GT,
- anon_sym_GT_GT_GT,
- anon_sym_LT_LT,
- anon_sym_AMP,
- anon_sym_CARET,
- anon_sym_PIPE,
- anon_sym_PLUS,
- anon_sym_DASH,
- anon_sym_SLASH,
- anon_sym_PERCENT,
- anon_sym_STAR_STAR,
- anon_sym_LT,
- anon_sym_EQ_EQ,
- anon_sym_BANG_EQ,
- anon_sym_QMARK_QMARK,
- [13340] = 5,
- ACTIONS(3450), 1,
- anon_sym_EQ,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(3416), 15,
- anon_sym_PLUS_EQ,
- anon_sym_DASH_EQ,
- anon_sym_STAR_EQ,
- anon_sym_SLASH_EQ,
- anon_sym_PERCENT_EQ,
- anon_sym_CARET_EQ,
- anon_sym_AMP_EQ,
- anon_sym_PIPE_EQ,
- anon_sym_GT_GT_EQ,
- anon_sym_GT_GT_GT_EQ,
- anon_sym_LT_LT_EQ,
- anon_sym_STAR_STAR_EQ,
- anon_sym_AMP_AMP_EQ,
- anon_sym_PIPE_PIPE_EQ,
- anon_sym_QMARK_QMARK_EQ,
- ACTIONS(3404), 19,
- sym__automatic_semicolon,
- sym__ternary_qmark,
- anon_sym_as,
- anon_sym_COMMA,
- anon_sym_LPAREN,
- anon_sym_of,
- anon_sym_SEMI,
- anon_sym_LBRACK,
- anon_sym_DOT,
- anon_sym_QMARK_DOT,
- anon_sym_LT_EQ,
- anon_sym_EQ_EQ_EQ,
- anon_sym_BANG_EQ_EQ,
- anon_sym_GT_EQ,
- anon_sym_instanceof,
- anon_sym_PLUS_PLUS,
- anon_sym_DASH_DASH,
- anon_sym_BQUOTE,
- anon_sym_satisfies,
- ACTIONS(3400), 21,
- anon_sym_STAR,
- anon_sym_BANG,
- anon_sym_in,
- anon_sym_GT,
- anon_sym_AMP_AMP,
- anon_sym_PIPE_PIPE,
- anon_sym_GT_GT,
- anon_sym_GT_GT_GT,
- anon_sym_LT_LT,
- anon_sym_AMP,
- anon_sym_CARET,
- anon_sym_PIPE,
- anon_sym_PLUS,
- anon_sym_DASH,
- anon_sym_SLASH,
- anon_sym_PERCENT,
- anon_sym_STAR_STAR,
- anon_sym_LT,
- anon_sym_EQ_EQ,
- anon_sym_BANG_EQ,
- anon_sym_QMARK_QMARK,
- [13409] = 7,
- ACTIONS(3402), 1,
- anon_sym_EQ,
- ACTIONS(3549), 1,
- anon_sym_COLON,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(3593), 3,
- anon_sym_COMMA,
- anon_sym_RBRACE,
- anon_sym_RBRACK,
- ACTIONS(3404), 15,
- sym__ternary_qmark,
- anon_sym_as,
- anon_sym_LPAREN,
- anon_sym_LBRACK,
- anon_sym_DOT,
- anon_sym_QMARK_DOT,
- anon_sym_LT_EQ,
- anon_sym_EQ_EQ_EQ,
- anon_sym_BANG_EQ_EQ,
- anon_sym_GT_EQ,
- anon_sym_instanceof,
- anon_sym_PLUS_PLUS,
- anon_sym_DASH_DASH,
- anon_sym_BQUOTE,
- anon_sym_satisfies,
- ACTIONS(3416), 15,
- anon_sym_PLUS_EQ,
- anon_sym_DASH_EQ,
- anon_sym_STAR_EQ,
- anon_sym_SLASH_EQ,
- anon_sym_PERCENT_EQ,
- anon_sym_CARET_EQ,
- anon_sym_AMP_EQ,
- anon_sym_PIPE_EQ,
- anon_sym_GT_GT_EQ,
- anon_sym_GT_GT_GT_EQ,
- anon_sym_LT_LT_EQ,
- anon_sym_STAR_STAR_EQ,
- anon_sym_AMP_AMP_EQ,
- anon_sym_PIPE_PIPE_EQ,
- anon_sym_QMARK_QMARK_EQ,
- ACTIONS(3400), 21,
- anon_sym_STAR,
- anon_sym_BANG,
- anon_sym_in,
- anon_sym_GT,
- anon_sym_AMP_AMP,
- anon_sym_PIPE_PIPE,
- anon_sym_GT_GT,
- anon_sym_GT_GT_GT,
- anon_sym_LT_LT,
- anon_sym_AMP,
- anon_sym_CARET,
- anon_sym_PIPE,
- anon_sym_PLUS,
- anon_sym_DASH,
- anon_sym_SLASH,
- anon_sym_PERCENT,
- anon_sym_STAR_STAR,
- anon_sym_LT,
- anon_sym_EQ_EQ,
- anon_sym_BANG_EQ,
- anon_sym_QMARK_QMARK,
- [13482] = 10,
- ACTIONS(3496), 1,
- anon_sym_RBRACK,
- ACTIONS(3514), 1,
- anon_sym_COMMA,
- ACTIONS(3558), 1,
- anon_sym_EQ_GT,
- ACTIONS(3600), 1,
- anon_sym_EQ,
- ACTIONS(3603), 1,
- anon_sym_in,
- ACTIONS(3605), 1,
- anon_sym_COLON,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(3404), 15,
- sym__ternary_qmark,
- anon_sym_as,
- anon_sym_LPAREN,
- anon_sym_LBRACK,
- anon_sym_DOT,
- anon_sym_QMARK_DOT,
- anon_sym_LT_EQ,
- anon_sym_EQ_EQ_EQ,
- anon_sym_BANG_EQ_EQ,
- anon_sym_GT_EQ,
- anon_sym_instanceof,
- anon_sym_PLUS_PLUS,
- anon_sym_DASH_DASH,
- anon_sym_BQUOTE,
- anon_sym_satisfies,
- ACTIONS(3416), 15,
- anon_sym_PLUS_EQ,
- anon_sym_DASH_EQ,
- anon_sym_STAR_EQ,
- anon_sym_SLASH_EQ,
- anon_sym_PERCENT_EQ,
- anon_sym_CARET_EQ,
- anon_sym_AMP_EQ,
- anon_sym_PIPE_EQ,
- anon_sym_GT_GT_EQ,
- anon_sym_GT_GT_GT_EQ,
- anon_sym_LT_LT_EQ,
- anon_sym_STAR_STAR_EQ,
- anon_sym_AMP_AMP_EQ,
- anon_sym_PIPE_PIPE_EQ,
- anon_sym_QMARK_QMARK_EQ,
- ACTIONS(3400), 20,
- anon_sym_STAR,
- anon_sym_BANG,
- anon_sym_GT,
- anon_sym_AMP_AMP,
- anon_sym_PIPE_PIPE,
- anon_sym_GT_GT,
- anon_sym_GT_GT_GT,
- anon_sym_LT_LT,
- anon_sym_AMP,
- anon_sym_CARET,
- anon_sym_PIPE,
- anon_sym_PLUS,
- anon_sym_DASH,
- anon_sym_SLASH,
- anon_sym_PERCENT,
- anon_sym_STAR_STAR,
- anon_sym_LT,
- anon_sym_EQ_EQ,
- anon_sym_BANG_EQ,
- anon_sym_QMARK_QMARK,
- [13561] = 9,
- ACTIONS(904), 1,
- anon_sym_EQ_GT,
- ACTIONS(926), 1,
- anon_sym_EQ,
- ACTIONS(3505), 1,
- anon_sym_LBRACK,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(1650), 2,
- anon_sym_COMMA,
- anon_sym_extends,
- ACTIONS(3508), 3,
- anon_sym_GT,
- anon_sym_AMP,
- anon_sym_PIPE,
- ACTIONS(162), 15,
- sym__ternary_qmark,
- anon_sym_as,
- anon_sym_LPAREN,
- anon_sym_RBRACK,
- anon_sym_DOT,
- anon_sym_QMARK_DOT,
- anon_sym_LT_EQ,
- anon_sym_EQ_EQ_EQ,
- anon_sym_BANG_EQ_EQ,
- anon_sym_GT_EQ,
- anon_sym_instanceof,
- anon_sym_PLUS_PLUS,
- anon_sym_DASH_DASH,
- anon_sym_BQUOTE,
- anon_sym_satisfies,
- ACTIONS(168), 15,
- anon_sym_PLUS_EQ,
- anon_sym_DASH_EQ,
- anon_sym_STAR_EQ,
- anon_sym_SLASH_EQ,
- anon_sym_PERCENT_EQ,
- anon_sym_CARET_EQ,
- anon_sym_AMP_EQ,
- anon_sym_PIPE_EQ,
- anon_sym_GT_GT_EQ,
- anon_sym_GT_GT_GT_EQ,
- anon_sym_LT_LT_EQ,
- anon_sym_STAR_STAR_EQ,
- anon_sym_AMP_AMP_EQ,
- anon_sym_PIPE_PIPE_EQ,
- anon_sym_QMARK_QMARK_EQ,
- ACTIONS(122), 18,
- anon_sym_STAR,
- anon_sym_BANG,
- anon_sym_in,
- anon_sym_AMP_AMP,
- anon_sym_PIPE_PIPE,
- anon_sym_GT_GT,
- anon_sym_GT_GT_GT,
- anon_sym_LT_LT,
- anon_sym_CARET,
- anon_sym_PLUS,
- anon_sym_DASH,
- anon_sym_SLASH,
- anon_sym_PERCENT,
- anon_sym_STAR_STAR,
- anon_sym_LT,
- anon_sym_EQ_EQ,
- anon_sym_BANG_EQ,
- anon_sym_QMARK_QMARK,
- [13638] = 9,
- ACTIONS(960), 1,
- anon_sym_EQ,
- ACTIONS(966), 1,
- anon_sym_EQ_GT,
- ACTIONS(3505), 1,
- anon_sym_LBRACK,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(1650), 2,
- anon_sym_COMMA,
- anon_sym_extends,
- ACTIONS(3508), 3,
- anon_sym_GT,
- anon_sym_AMP,
- anon_sym_PIPE,
- ACTIONS(162), 15,
- sym__ternary_qmark,
- anon_sym_as,
- anon_sym_LPAREN,
- anon_sym_of,
- anon_sym_DOT,
- anon_sym_QMARK_DOT,
- anon_sym_LT_EQ,
- anon_sym_EQ_EQ_EQ,
- anon_sym_BANG_EQ_EQ,
- anon_sym_GT_EQ,
- anon_sym_instanceof,
- anon_sym_PLUS_PLUS,
- anon_sym_DASH_DASH,
- anon_sym_BQUOTE,
- anon_sym_satisfies,
- ACTIONS(168), 15,
- anon_sym_PLUS_EQ,
- anon_sym_DASH_EQ,
- anon_sym_STAR_EQ,
- anon_sym_SLASH_EQ,
- anon_sym_PERCENT_EQ,
- anon_sym_CARET_EQ,
- anon_sym_AMP_EQ,
- anon_sym_PIPE_EQ,
- anon_sym_GT_GT_EQ,
- anon_sym_GT_GT_GT_EQ,
- anon_sym_LT_LT_EQ,
- anon_sym_STAR_STAR_EQ,
- anon_sym_AMP_AMP_EQ,
- anon_sym_PIPE_PIPE_EQ,
- anon_sym_QMARK_QMARK_EQ,
- ACTIONS(122), 18,
- anon_sym_STAR,
- anon_sym_BANG,
- anon_sym_in,
- anon_sym_AMP_AMP,
- anon_sym_PIPE_PIPE,
- anon_sym_GT_GT,
- anon_sym_GT_GT_GT,
- anon_sym_LT_LT,
- anon_sym_CARET,
- anon_sym_PLUS,
- anon_sym_DASH,
- anon_sym_SLASH,
- anon_sym_PERCENT,
- anon_sym_STAR_STAR,
- anon_sym_LT,
- anon_sym_EQ_EQ,
- anon_sym_BANG_EQ,
- anon_sym_QMARK_QMARK,
- [13715] = 6,
- ACTIONS(3475), 1,
- anon_sym_EQ,
- ACTIONS(3544), 1,
- anon_sym_EQ_GT,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(3416), 15,
- anon_sym_PLUS_EQ,
- anon_sym_DASH_EQ,
- anon_sym_STAR_EQ,
- anon_sym_SLASH_EQ,
- anon_sym_PERCENT_EQ,
- anon_sym_CARET_EQ,
- anon_sym_AMP_EQ,
- anon_sym_PIPE_EQ,
- anon_sym_GT_GT_EQ,
- anon_sym_GT_GT_GT_EQ,
- anon_sym_LT_LT_EQ,
- anon_sym_STAR_STAR_EQ,
- anon_sym_AMP_AMP_EQ,
- anon_sym_PIPE_PIPE_EQ,
- anon_sym_QMARK_QMARK_EQ,
- ACTIONS(3404), 18,
- sym__ternary_qmark,
- anon_sym_as,
- anon_sym_LBRACE,
- anon_sym_COMMA,
- anon_sym_LPAREN,
- anon_sym_LBRACK,
- anon_sym_DOT,
- anon_sym_QMARK_DOT,
- anon_sym_LT_EQ,
- anon_sym_EQ_EQ_EQ,
- anon_sym_BANG_EQ_EQ,
- anon_sym_GT_EQ,
- anon_sym_instanceof,
- anon_sym_PLUS_PLUS,
- anon_sym_DASH_DASH,
- anon_sym_BQUOTE,
- anon_sym_satisfies,
- anon_sym_implements,
- ACTIONS(3400), 21,
- anon_sym_STAR,
- anon_sym_BANG,
- anon_sym_in,
- anon_sym_GT,
- anon_sym_AMP_AMP,
- anon_sym_PIPE_PIPE,
- anon_sym_GT_GT,
- anon_sym_GT_GT_GT,
- anon_sym_LT_LT,
- anon_sym_AMP,
- anon_sym_CARET,
- anon_sym_PIPE,
- anon_sym_PLUS,
- anon_sym_DASH,
- anon_sym_SLASH,
- anon_sym_PERCENT,
- anon_sym_STAR_STAR,
- anon_sym_LT,
- anon_sym_EQ_EQ,
- anon_sym_BANG_EQ,
- anon_sym_QMARK_QMARK,
- [13786] = 9,
- ACTIONS(160), 1,
- anon_sym_EQ_GT,
- ACTIONS(857), 1,
- anon_sym_EQ,
- ACTIONS(1650), 1,
- anon_sym_extends,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(3505), 2,
- anon_sym_RBRACE,
- anon_sym_LBRACK,
- ACTIONS(3508), 2,
- anon_sym_AMP,
- anon_sym_PIPE,
- ACTIONS(162), 15,
- sym__ternary_qmark,
- anon_sym_as,
- anon_sym_COMMA,
- anon_sym_LPAREN,
- anon_sym_DOT,
- anon_sym_QMARK_DOT,
- anon_sym_LT_EQ,
- anon_sym_EQ_EQ_EQ,
- anon_sym_BANG_EQ_EQ,
- anon_sym_GT_EQ,
- anon_sym_instanceof,
- anon_sym_PLUS_PLUS,
- anon_sym_DASH_DASH,
- anon_sym_BQUOTE,
- anon_sym_satisfies,
- ACTIONS(168), 15,
- anon_sym_PLUS_EQ,
- anon_sym_DASH_EQ,
- anon_sym_STAR_EQ,
- anon_sym_SLASH_EQ,
- anon_sym_PERCENT_EQ,
- anon_sym_CARET_EQ,
- anon_sym_AMP_EQ,
- anon_sym_PIPE_EQ,
- anon_sym_GT_GT_EQ,
- anon_sym_GT_GT_GT_EQ,
- anon_sym_LT_LT_EQ,
- anon_sym_STAR_STAR_EQ,
- anon_sym_AMP_AMP_EQ,
- anon_sym_PIPE_PIPE_EQ,
- anon_sym_QMARK_QMARK_EQ,
- ACTIONS(122), 19,
- anon_sym_STAR,
- anon_sym_BANG,
- anon_sym_in,
- anon_sym_GT,
- anon_sym_AMP_AMP,
- anon_sym_PIPE_PIPE,
- anon_sym_GT_GT,
- anon_sym_GT_GT_GT,
- anon_sym_LT_LT,
- anon_sym_CARET,
- anon_sym_PLUS,
- anon_sym_DASH,
- anon_sym_SLASH,
- anon_sym_PERCENT,
- anon_sym_STAR_STAR,
- anon_sym_LT,
- anon_sym_EQ_EQ,
- anon_sym_BANG_EQ,
- anon_sym_QMARK_QMARK,
- [13863] = 6,
- ACTIONS(841), 1,
- anon_sym_EQ,
- ACTIONS(952), 1,
- anon_sym_EQ_GT,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(168), 15,
- anon_sym_PLUS_EQ,
- anon_sym_DASH_EQ,
- anon_sym_STAR_EQ,
- anon_sym_SLASH_EQ,
- anon_sym_PERCENT_EQ,
- anon_sym_CARET_EQ,
- anon_sym_AMP_EQ,
- anon_sym_PIPE_EQ,
- anon_sym_GT_GT_EQ,
- anon_sym_GT_GT_GT_EQ,
- anon_sym_LT_LT_EQ,
- anon_sym_STAR_STAR_EQ,
- anon_sym_AMP_AMP_EQ,
- anon_sym_PIPE_PIPE_EQ,
- anon_sym_QMARK_QMARK_EQ,
- ACTIONS(162), 17,
- sym__ternary_qmark,
- anon_sym_as,
- anon_sym_RBRACE,
- anon_sym_LPAREN,
- anon_sym_COLON,
- anon_sym_LBRACK,
- anon_sym_DOT,
- anon_sym_QMARK_DOT,
- anon_sym_LT_EQ,
- anon_sym_EQ_EQ_EQ,
- anon_sym_BANG_EQ_EQ,
- anon_sym_GT_EQ,
- anon_sym_instanceof,
- anon_sym_PLUS_PLUS,
- anon_sym_DASH_DASH,
- anon_sym_BQUOTE,
- anon_sym_satisfies,
- ACTIONS(122), 21,
- anon_sym_STAR,
- anon_sym_BANG,
- anon_sym_in,
- anon_sym_GT,
- anon_sym_AMP_AMP,
- anon_sym_PIPE_PIPE,
- anon_sym_GT_GT,
- anon_sym_GT_GT_GT,
- anon_sym_LT_LT,
- anon_sym_AMP,
- anon_sym_CARET,
- anon_sym_PIPE,
- anon_sym_PLUS,
- anon_sym_DASH,
- anon_sym_SLASH,
- anon_sym_PERCENT,
- anon_sym_STAR_STAR,
- anon_sym_LT,
- anon_sym_EQ_EQ,
- anon_sym_BANG_EQ,
- anon_sym_QMARK_QMARK,
- [13933] = 6,
- ACTIONS(924), 1,
- anon_sym_EQ_GT,
- ACTIONS(932), 1,
- anon_sym_EQ,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(168), 15,
- anon_sym_PLUS_EQ,
- anon_sym_DASH_EQ,
- anon_sym_STAR_EQ,
- anon_sym_SLASH_EQ,
- anon_sym_PERCENT_EQ,
- anon_sym_CARET_EQ,
- anon_sym_AMP_EQ,
- anon_sym_PIPE_EQ,
- anon_sym_GT_GT_EQ,
- anon_sym_GT_GT_GT_EQ,
- anon_sym_LT_LT_EQ,
- anon_sym_STAR_STAR_EQ,
- anon_sym_AMP_AMP_EQ,
- anon_sym_PIPE_PIPE_EQ,
- anon_sym_QMARK_QMARK_EQ,
- ACTIONS(162), 17,
- sym__automatic_semicolon,
- sym__ternary_qmark,
- anon_sym_as,
- anon_sym_LPAREN,
- anon_sym_SEMI,
- anon_sym_LBRACK,
- anon_sym_DOT,
- anon_sym_QMARK_DOT,
- anon_sym_LT_EQ,
- anon_sym_EQ_EQ_EQ,
- anon_sym_BANG_EQ_EQ,
- anon_sym_GT_EQ,
- anon_sym_instanceof,
- anon_sym_PLUS_PLUS,
- anon_sym_DASH_DASH,
- anon_sym_BQUOTE,
- anon_sym_satisfies,
- ACTIONS(122), 21,
- anon_sym_STAR,
- anon_sym_BANG,
- anon_sym_in,
- anon_sym_GT,
- anon_sym_AMP_AMP,
- anon_sym_PIPE_PIPE,
- anon_sym_GT_GT,
- anon_sym_GT_GT_GT,
- anon_sym_LT_LT,
- anon_sym_AMP,
- anon_sym_CARET,
- anon_sym_PIPE,
- anon_sym_PLUS,
- anon_sym_DASH,
- anon_sym_SLASH,
- anon_sym_PERCENT,
- anon_sym_STAR_STAR,
- anon_sym_LT,
- anon_sym_EQ_EQ,
- anon_sym_BANG_EQ,
- anon_sym_QMARK_QMARK,
- [14003] = 31,
- ACTIONS(99), 1,
- anon_sym_AT,
- ACTIONS(1594), 1,
- anon_sym_DQUOTE,
- ACTIONS(1596), 1,
- anon_sym_SQUOTE,
- ACTIONS(2581), 1,
- anon_sym_LT,
- ACTIONS(3205), 1,
- anon_sym_LPAREN,
- ACTIONS(3229), 1,
- anon_sym_abstract,
- ACTIONS(3609), 1,
- anon_sym_export,
- ACTIONS(3611), 1,
- anon_sym_STAR,
- ACTIONS(3617), 1,
- anon_sym_LBRACK,
- ACTIONS(3619), 1,
- anon_sym_async,
- ACTIONS(3621), 1,
- anon_sym_new,
- ACTIONS(3625), 1,
- anon_sym_static,
- ACTIONS(3627), 1,
- anon_sym_readonly,
- ACTIONS(3633), 1,
- anon_sym_override,
- STATE(1244), 1,
- sym_decorator,
- STATE(2674), 1,
- sym_accessibility_modifier,
- STATE(2702), 1,
- sym_override_modifier,
- STATE(3229), 1,
- sym_formal_parameters,
- STATE(4329), 1,
- sym__call_signature,
- STATE(4448), 1,
- aux_sym_export_statement_repeat1,
- STATE(5404), 1,
- sym_type_parameters,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(3215), 2,
- anon_sym_PLUS,
- anon_sym_DASH,
- ACTIONS(3613), 2,
- anon_sym_COMMA,
- anon_sym_SEMI,
- ACTIONS(3615), 2,
- anon_sym_RBRACE,
- anon_sym_PIPE_RBRACE,
- ACTIONS(3623), 2,
- sym_number,
- sym_private_property_identifier,
- ACTIONS(3629), 2,
- anon_sym_get,
- anon_sym_set,
- ACTIONS(3631), 3,
- anon_sym_public,
- anon_sym_private,
- anon_sym_protected,
- STATE(3028), 3,
- sym_string,
- sym__property_name,
- sym_computed_property_name,
- STATE(3753), 6,
- sym_export_statement,
- sym_method_signature,
- sym_call_signature,
- sym_property_signature,
- sym_construct_signature,
- sym_index_signature,
- ACTIONS(3607), 12,
- anon_sym_type,
- anon_sym_namespace,
- anon_sym_let,
- sym_identifier,
- anon_sym_declare,
- anon_sym_module,
- anon_sym_any,
- anon_sym_number,
- anon_sym_boolean,
- anon_sym_string,
- anon_sym_symbol,
- anon_sym_object,
- [14123] = 31,
- ACTIONS(99), 1,
- anon_sym_AT,
- ACTIONS(1594), 1,
- anon_sym_DQUOTE,
- ACTIONS(1596), 1,
- anon_sym_SQUOTE,
- ACTIONS(2581), 1,
- anon_sym_LT,
- ACTIONS(3205), 1,
- anon_sym_LPAREN,
- ACTIONS(3229), 1,
- anon_sym_abstract,
- ACTIONS(3609), 1,
- anon_sym_export,
- ACTIONS(3611), 1,
- anon_sym_STAR,
- ACTIONS(3617), 1,
- anon_sym_LBRACK,
- ACTIONS(3619), 1,
- anon_sym_async,
- ACTIONS(3621), 1,
- anon_sym_new,
- ACTIONS(3625), 1,
- anon_sym_static,
- ACTIONS(3627), 1,
- anon_sym_readonly,
- ACTIONS(3633), 1,
- anon_sym_override,
- STATE(1244), 1,
- sym_decorator,
- STATE(2674), 1,
- sym_accessibility_modifier,
- STATE(2702), 1,
- sym_override_modifier,
- STATE(3229), 1,
- sym_formal_parameters,
- STATE(4329), 1,
- sym__call_signature,
- STATE(4448), 1,
- aux_sym_export_statement_repeat1,
- STATE(5404), 1,
- sym_type_parameters,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(3215), 2,
- anon_sym_PLUS,
- anon_sym_DASH,
- ACTIONS(3237), 2,
- anon_sym_COMMA,
- anon_sym_SEMI,
- ACTIONS(3239), 2,
- anon_sym_RBRACE,
- anon_sym_PIPE_RBRACE,
- ACTIONS(3623), 2,
- sym_number,
- sym_private_property_identifier,
- ACTIONS(3629), 2,
- anon_sym_get,
- anon_sym_set,
- ACTIONS(3631), 3,
- anon_sym_public,
- anon_sym_private,
- anon_sym_protected,
- STATE(3028), 3,
- sym_string,
- sym__property_name,
- sym_computed_property_name,
- STATE(3830), 6,
- sym_export_statement,
- sym_method_signature,
- sym_call_signature,
- sym_property_signature,
- sym_construct_signature,
- sym_index_signature,
- ACTIONS(3607), 12,
- anon_sym_type,
- anon_sym_namespace,
- anon_sym_let,
- sym_identifier,
- anon_sym_declare,
- anon_sym_module,
- anon_sym_any,
- anon_sym_number,
- anon_sym_boolean,
- anon_sym_string,
- anon_sym_symbol,
- anon_sym_object,
- [14243] = 8,
- ACTIONS(3556), 1,
- anon_sym_EQ,
- ACTIONS(3558), 1,
- anon_sym_EQ_GT,
- ACTIONS(3603), 1,
- anon_sym_in,
- ACTIONS(3605), 1,
- anon_sym_COLON,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(3416), 15,
- anon_sym_PLUS_EQ,
- anon_sym_DASH_EQ,
- anon_sym_STAR_EQ,
- anon_sym_SLASH_EQ,
- anon_sym_PERCENT_EQ,
- anon_sym_CARET_EQ,
- anon_sym_AMP_EQ,
- anon_sym_PIPE_EQ,
- anon_sym_GT_GT_EQ,
- anon_sym_GT_GT_GT_EQ,
- anon_sym_LT_LT_EQ,
- anon_sym_STAR_STAR_EQ,
- anon_sym_AMP_AMP_EQ,
- anon_sym_PIPE_PIPE_EQ,
- anon_sym_QMARK_QMARK_EQ,
- ACTIONS(3404), 16,
- sym__ternary_qmark,
- anon_sym_as,
- anon_sym_LPAREN,
- anon_sym_LBRACK,
- anon_sym_RBRACK,
- anon_sym_DOT,
- anon_sym_QMARK_DOT,
- anon_sym_LT_EQ,
- anon_sym_EQ_EQ_EQ,
- anon_sym_BANG_EQ_EQ,
- anon_sym_GT_EQ,
- anon_sym_instanceof,
- anon_sym_PLUS_PLUS,
- anon_sym_DASH_DASH,
- anon_sym_BQUOTE,
- anon_sym_satisfies,
- ACTIONS(3400), 20,
- anon_sym_STAR,
- anon_sym_BANG,
- anon_sym_GT,
- anon_sym_AMP_AMP,
- anon_sym_PIPE_PIPE,
- anon_sym_GT_GT,
- anon_sym_GT_GT_GT,
- anon_sym_LT_LT,
- anon_sym_AMP,
- anon_sym_CARET,
- anon_sym_PIPE,
- anon_sym_PLUS,
- anon_sym_DASH,
- anon_sym_SLASH,
- anon_sym_PERCENT,
- anon_sym_STAR_STAR,
- anon_sym_LT,
- anon_sym_EQ_EQ,
- anon_sym_BANG_EQ,
- anon_sym_QMARK_QMARK,
- [14317] = 9,
- ACTIONS(229), 1,
- anon_sym_EQ_GT,
- ACTIONS(841), 1,
- anon_sym_EQ,
- ACTIONS(3505), 1,
- anon_sym_LBRACK,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(1650), 2,
- anon_sym_COMMA,
- anon_sym_extends,
- ACTIONS(3508), 3,
- anon_sym_GT,
- anon_sym_AMP,
- anon_sym_PIPE,
- ACTIONS(162), 14,
- sym__ternary_qmark,
- anon_sym_as,
- anon_sym_LPAREN,
- anon_sym_DOT,
- anon_sym_QMARK_DOT,
- anon_sym_LT_EQ,
- anon_sym_EQ_EQ_EQ,
- anon_sym_BANG_EQ_EQ,
- anon_sym_GT_EQ,
- anon_sym_instanceof,
- anon_sym_PLUS_PLUS,
- anon_sym_DASH_DASH,
- anon_sym_BQUOTE,
- anon_sym_satisfies,
- ACTIONS(168), 15,
- anon_sym_PLUS_EQ,
- anon_sym_DASH_EQ,
- anon_sym_STAR_EQ,
- anon_sym_SLASH_EQ,
- anon_sym_PERCENT_EQ,
- anon_sym_CARET_EQ,
- anon_sym_AMP_EQ,
- anon_sym_PIPE_EQ,
- anon_sym_GT_GT_EQ,
- anon_sym_GT_GT_GT_EQ,
- anon_sym_LT_LT_EQ,
- anon_sym_STAR_STAR_EQ,
- anon_sym_AMP_AMP_EQ,
- anon_sym_PIPE_PIPE_EQ,
- anon_sym_QMARK_QMARK_EQ,
- ACTIONS(122), 18,
- anon_sym_STAR,
- anon_sym_BANG,
- anon_sym_in,
- anon_sym_AMP_AMP,
- anon_sym_PIPE_PIPE,
- anon_sym_GT_GT,
- anon_sym_GT_GT_GT,
- anon_sym_LT_LT,
- anon_sym_CARET,
- anon_sym_PLUS,
- anon_sym_DASH,
- anon_sym_SLASH,
- anon_sym_PERCENT,
- anon_sym_STAR_STAR,
- anon_sym_LT,
- anon_sym_EQ_EQ,
- anon_sym_BANG_EQ,
- anon_sym_QMARK_QMARK,
- [14393] = 8,
- ACTIONS(128), 1,
- anon_sym_RBRACK,
- ACTIONS(227), 1,
- anon_sym_COMMA,
- ACTIONS(895), 1,
- anon_sym_EQ,
- ACTIONS(904), 1,
- anon_sym_EQ_GT,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(162), 15,
- sym__ternary_qmark,
- anon_sym_as,
- anon_sym_LPAREN,
- anon_sym_LBRACK,
- anon_sym_DOT,
- anon_sym_QMARK_DOT,
- anon_sym_LT_EQ,
- anon_sym_EQ_EQ_EQ,
- anon_sym_BANG_EQ_EQ,
- anon_sym_GT_EQ,
- anon_sym_instanceof,
- anon_sym_PLUS_PLUS,
- anon_sym_DASH_DASH,
- anon_sym_BQUOTE,
- anon_sym_satisfies,
- ACTIONS(168), 15,
- anon_sym_PLUS_EQ,
- anon_sym_DASH_EQ,
- anon_sym_STAR_EQ,
- anon_sym_SLASH_EQ,
- anon_sym_PERCENT_EQ,
- anon_sym_CARET_EQ,
- anon_sym_AMP_EQ,
- anon_sym_PIPE_EQ,
- anon_sym_GT_GT_EQ,
- anon_sym_GT_GT_GT_EQ,
- anon_sym_LT_LT_EQ,
- anon_sym_STAR_STAR_EQ,
- anon_sym_AMP_AMP_EQ,
- anon_sym_PIPE_PIPE_EQ,
- anon_sym_QMARK_QMARK_EQ,
- ACTIONS(122), 21,
- anon_sym_STAR,
- anon_sym_BANG,
- anon_sym_in,
- anon_sym_GT,
- anon_sym_AMP_AMP,
- anon_sym_PIPE_PIPE,
- anon_sym_GT_GT,
- anon_sym_GT_GT_GT,
- anon_sym_LT_LT,
- anon_sym_AMP,
- anon_sym_CARET,
- anon_sym_PIPE,
- anon_sym_PLUS,
- anon_sym_DASH,
- anon_sym_SLASH,
- anon_sym_PERCENT,
- anon_sym_STAR_STAR,
- anon_sym_LT,
- anon_sym_EQ_EQ,
- anon_sym_BANG_EQ,
- anon_sym_QMARK_QMARK,
- [14467] = 6,
- ACTIONS(3475), 1,
- anon_sym_EQ,
- ACTIONS(3503), 1,
- anon_sym_EQ_GT,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(3416), 15,
- anon_sym_PLUS_EQ,
- anon_sym_DASH_EQ,
- anon_sym_STAR_EQ,
- anon_sym_SLASH_EQ,
- anon_sym_PERCENT_EQ,
- anon_sym_CARET_EQ,
- anon_sym_AMP_EQ,
- anon_sym_PIPE_EQ,
- anon_sym_GT_GT_EQ,
- anon_sym_GT_GT_GT_EQ,
- anon_sym_LT_LT_EQ,
- anon_sym_STAR_STAR_EQ,
- anon_sym_AMP_AMP_EQ,
- anon_sym_PIPE_PIPE_EQ,
- anon_sym_QMARK_QMARK_EQ,
- ACTIONS(3404), 17,
- sym__automatic_semicolon,
- sym__ternary_qmark,
- anon_sym_as,
- anon_sym_LPAREN,
- anon_sym_SEMI,
- anon_sym_LBRACK,
- anon_sym_DOT,
- anon_sym_QMARK_DOT,
- anon_sym_LT_EQ,
- anon_sym_EQ_EQ_EQ,
- anon_sym_BANG_EQ_EQ,
- anon_sym_GT_EQ,
- anon_sym_instanceof,
- anon_sym_PLUS_PLUS,
- anon_sym_DASH_DASH,
- anon_sym_BQUOTE,
- anon_sym_satisfies,
- ACTIONS(3400), 21,
- anon_sym_STAR,
- anon_sym_BANG,
- anon_sym_in,
- anon_sym_GT,
- anon_sym_AMP_AMP,
- anon_sym_PIPE_PIPE,
- anon_sym_GT_GT,
- anon_sym_GT_GT_GT,
- anon_sym_LT_LT,
- anon_sym_AMP,
- anon_sym_CARET,
- anon_sym_PIPE,
- anon_sym_PLUS,
- anon_sym_DASH,
- anon_sym_SLASH,
- anon_sym_PERCENT,
- anon_sym_STAR_STAR,
- anon_sym_LT,
- anon_sym_EQ_EQ,
- anon_sym_BANG_EQ,
- anon_sym_QMARK_QMARK,
- [14537] = 31,
- ACTIONS(99), 1,
- anon_sym_AT,
- ACTIONS(1594), 1,
- anon_sym_DQUOTE,
- ACTIONS(1596), 1,
- anon_sym_SQUOTE,
- ACTIONS(2581), 1,
- anon_sym_LT,
- ACTIONS(3205), 1,
- anon_sym_LPAREN,
- ACTIONS(3229), 1,
- anon_sym_abstract,
- ACTIONS(3609), 1,
- anon_sym_export,
- ACTIONS(3611), 1,
- anon_sym_STAR,
- ACTIONS(3617), 1,
- anon_sym_LBRACK,
- ACTIONS(3619), 1,
- anon_sym_async,
- ACTIONS(3621), 1,
- anon_sym_new,
- ACTIONS(3625), 1,
- anon_sym_static,
- ACTIONS(3627), 1,
- anon_sym_readonly,
- ACTIONS(3633), 1,
- anon_sym_override,
- STATE(1244), 1,
- sym_decorator,
- STATE(2674), 1,
- sym_accessibility_modifier,
- STATE(2702), 1,
- sym_override_modifier,
- STATE(3229), 1,
- sym_formal_parameters,
- STATE(4329), 1,
- sym__call_signature,
- STATE(4448), 1,
- aux_sym_export_statement_repeat1,
- STATE(5404), 1,
- sym_type_parameters,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(3215), 2,
- anon_sym_PLUS,
- anon_sym_DASH,
- ACTIONS(3623), 2,
- sym_number,
- sym_private_property_identifier,
- ACTIONS(3629), 2,
- anon_sym_get,
- anon_sym_set,
- ACTIONS(3635), 2,
- anon_sym_COMMA,
- anon_sym_SEMI,
- ACTIONS(3637), 2,
- anon_sym_RBRACE,
- anon_sym_PIPE_RBRACE,
- ACTIONS(3631), 3,
- anon_sym_public,
- anon_sym_private,
- anon_sym_protected,
- STATE(3028), 3,
- sym_string,
- sym__property_name,
- sym_computed_property_name,
- STATE(3874), 6,
- sym_export_statement,
- sym_method_signature,
- sym_call_signature,
- sym_property_signature,
- sym_construct_signature,
- sym_index_signature,
- ACTIONS(3607), 12,
- anon_sym_type,
- anon_sym_namespace,
- anon_sym_let,
- sym_identifier,
- anon_sym_declare,
- anon_sym_module,
- anon_sym_any,
- anon_sym_number,
- anon_sym_boolean,
- anon_sym_string,
- anon_sym_symbol,
- anon_sym_object,
- [14657] = 8,
- ACTIONS(3556), 1,
- anon_sym_EQ,
- ACTIONS(3558), 1,
- anon_sym_EQ_GT,
- ACTIONS(3603), 1,
- anon_sym_in,
- ACTIONS(3639), 1,
- anon_sym_COLON,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(3416), 15,
- anon_sym_PLUS_EQ,
- anon_sym_DASH_EQ,
- anon_sym_STAR_EQ,
- anon_sym_SLASH_EQ,
- anon_sym_PERCENT_EQ,
- anon_sym_CARET_EQ,
- anon_sym_AMP_EQ,
- anon_sym_PIPE_EQ,
- anon_sym_GT_GT_EQ,
- anon_sym_GT_GT_GT_EQ,
- anon_sym_LT_LT_EQ,
- anon_sym_STAR_STAR_EQ,
- anon_sym_AMP_AMP_EQ,
- anon_sym_PIPE_PIPE_EQ,
- anon_sym_QMARK_QMARK_EQ,
- ACTIONS(3404), 16,
- sym__ternary_qmark,
- anon_sym_as,
- anon_sym_LPAREN,
- anon_sym_LBRACK,
- anon_sym_RBRACK,
- anon_sym_DOT,
- anon_sym_QMARK_DOT,
- anon_sym_LT_EQ,
- anon_sym_EQ_EQ_EQ,
- anon_sym_BANG_EQ_EQ,
- anon_sym_GT_EQ,
- anon_sym_instanceof,
- anon_sym_PLUS_PLUS,
- anon_sym_DASH_DASH,
- anon_sym_BQUOTE,
- anon_sym_satisfies,
- ACTIONS(3400), 20,
- anon_sym_STAR,
- anon_sym_BANG,
- anon_sym_GT,
- anon_sym_AMP_AMP,
- anon_sym_PIPE_PIPE,
- anon_sym_GT_GT,
- anon_sym_GT_GT_GT,
- anon_sym_LT_LT,
- anon_sym_AMP,
- anon_sym_CARET,
- anon_sym_PIPE,
- anon_sym_PLUS,
- anon_sym_DASH,
- anon_sym_SLASH,
- anon_sym_PERCENT,
- anon_sym_STAR_STAR,
- anon_sym_LT,
- anon_sym_EQ_EQ,
- anon_sym_BANG_EQ,
- anon_sym_QMARK_QMARK,
- [14731] = 6,
- ACTIONS(946), 1,
- anon_sym_EQ,
- ACTIONS(952), 1,
- anon_sym_EQ_GT,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(168), 15,
- anon_sym_PLUS_EQ,
- anon_sym_DASH_EQ,
- anon_sym_STAR_EQ,
- anon_sym_SLASH_EQ,
- anon_sym_PERCENT_EQ,
- anon_sym_CARET_EQ,
- anon_sym_AMP_EQ,
- anon_sym_PIPE_EQ,
- anon_sym_GT_GT_EQ,
- anon_sym_GT_GT_GT_EQ,
- anon_sym_LT_LT_EQ,
- anon_sym_STAR_STAR_EQ,
- anon_sym_AMP_AMP_EQ,
- anon_sym_PIPE_PIPE_EQ,
- anon_sym_QMARK_QMARK_EQ,
- ACTIONS(162), 17,
- sym__ternary_qmark,
- anon_sym_as,
- anon_sym_RBRACE,
- anon_sym_LPAREN,
- anon_sym_COLON,
- anon_sym_LBRACK,
- anon_sym_DOT,
- anon_sym_QMARK_DOT,
- anon_sym_LT_EQ,
- anon_sym_EQ_EQ_EQ,
- anon_sym_BANG_EQ_EQ,
- anon_sym_GT_EQ,
- anon_sym_instanceof,
- anon_sym_PLUS_PLUS,
- anon_sym_DASH_DASH,
- anon_sym_BQUOTE,
- anon_sym_satisfies,
- ACTIONS(122), 21,
- anon_sym_STAR,
- anon_sym_BANG,
- anon_sym_in,
- anon_sym_GT,
- anon_sym_AMP_AMP,
- anon_sym_PIPE_PIPE,
- anon_sym_GT_GT,
- anon_sym_GT_GT_GT,
- anon_sym_LT_LT,
- anon_sym_AMP,
- anon_sym_CARET,
- anon_sym_PIPE,
- anon_sym_PLUS,
- anon_sym_DASH,
- anon_sym_SLASH,
- anon_sym_PERCENT,
- anon_sym_STAR_STAR,
- anon_sym_LT,
- anon_sym_EQ_EQ,
- anon_sym_BANG_EQ,
- anon_sym_QMARK_QMARK,
- [14801] = 8,
- ACTIONS(3496), 1,
- anon_sym_RBRACK,
- ACTIONS(3514), 1,
- anon_sym_COMMA,
- ACTIONS(3558), 1,
- anon_sym_EQ_GT,
- ACTIONS(3600), 1,
- anon_sym_EQ,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(3404), 15,
- sym__ternary_qmark,
- anon_sym_as,
- anon_sym_LPAREN,
- anon_sym_LBRACK,
- anon_sym_DOT,
- anon_sym_QMARK_DOT,
- anon_sym_LT_EQ,
- anon_sym_EQ_EQ_EQ,
- anon_sym_BANG_EQ_EQ,
- anon_sym_GT_EQ,
- anon_sym_instanceof,
- anon_sym_PLUS_PLUS,
- anon_sym_DASH_DASH,
- anon_sym_BQUOTE,
- anon_sym_satisfies,
- ACTIONS(3416), 15,
- anon_sym_PLUS_EQ,
- anon_sym_DASH_EQ,
- anon_sym_STAR_EQ,
- anon_sym_SLASH_EQ,
- anon_sym_PERCENT_EQ,
- anon_sym_CARET_EQ,
- anon_sym_AMP_EQ,
- anon_sym_PIPE_EQ,
- anon_sym_GT_GT_EQ,
- anon_sym_GT_GT_GT_EQ,
- anon_sym_LT_LT_EQ,
- anon_sym_STAR_STAR_EQ,
- anon_sym_AMP_AMP_EQ,
- anon_sym_PIPE_PIPE_EQ,
- anon_sym_QMARK_QMARK_EQ,
- ACTIONS(3400), 21,
- anon_sym_STAR,
- anon_sym_BANG,
- anon_sym_in,
- anon_sym_GT,
- anon_sym_AMP_AMP,
- anon_sym_PIPE_PIPE,
- anon_sym_GT_GT,
- anon_sym_GT_GT_GT,
- anon_sym_LT_LT,
- anon_sym_AMP,
- anon_sym_CARET,
- anon_sym_PIPE,
- anon_sym_PLUS,
- anon_sym_DASH,
- anon_sym_SLASH,
- anon_sym_PERCENT,
- anon_sym_STAR_STAR,
- anon_sym_LT,
- anon_sym_EQ_EQ,
- anon_sym_BANG_EQ,
- anon_sym_QMARK_QMARK,
- [14875] = 6,
- ACTIONS(3518), 1,
- anon_sym_EQ,
- ACTIONS(3520), 1,
- anon_sym_EQ_GT,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(3416), 15,
- anon_sym_PLUS_EQ,
- anon_sym_DASH_EQ,
- anon_sym_STAR_EQ,
- anon_sym_SLASH_EQ,
- anon_sym_PERCENT_EQ,
- anon_sym_CARET_EQ,
- anon_sym_AMP_EQ,
- anon_sym_PIPE_EQ,
- anon_sym_GT_GT_EQ,
- anon_sym_GT_GT_GT_EQ,
- anon_sym_LT_LT_EQ,
- anon_sym_STAR_STAR_EQ,
- anon_sym_AMP_AMP_EQ,
- anon_sym_PIPE_PIPE_EQ,
- anon_sym_QMARK_QMARK_EQ,
- ACTIONS(3404), 17,
- sym__ternary_qmark,
- anon_sym_as,
- anon_sym_RBRACE,
- anon_sym_LPAREN,
- anon_sym_COLON,
- anon_sym_LBRACK,
- anon_sym_DOT,
- anon_sym_QMARK_DOT,
- anon_sym_LT_EQ,
- anon_sym_EQ_EQ_EQ,
- anon_sym_BANG_EQ_EQ,
- anon_sym_GT_EQ,
- anon_sym_instanceof,
- anon_sym_PLUS_PLUS,
- anon_sym_DASH_DASH,
- anon_sym_BQUOTE,
- anon_sym_satisfies,
- ACTIONS(3400), 21,
- anon_sym_STAR,
- anon_sym_BANG,
- anon_sym_in,
- anon_sym_GT,
- anon_sym_AMP_AMP,
- anon_sym_PIPE_PIPE,
- anon_sym_GT_GT,
- anon_sym_GT_GT_GT,
- anon_sym_LT_LT,
- anon_sym_AMP,
- anon_sym_CARET,
- anon_sym_PIPE,
- anon_sym_PLUS,
- anon_sym_DASH,
- anon_sym_SLASH,
- anon_sym_PERCENT,
- anon_sym_STAR_STAR,
- anon_sym_LT,
- anon_sym_EQ_EQ,
- anon_sym_BANG_EQ,
- anon_sym_QMARK_QMARK,
- [14945] = 4,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(3446), 2,
- anon_sym_COMMA,
- anon_sym_extends,
- ACTIONS(3384), 22,
- anon_sym_STAR,
- anon_sym_EQ,
- anon_sym_BANG,
- anon_sym_in,
- anon_sym_GT,
- anon_sym_AMP_AMP,
- anon_sym_PIPE_PIPE,
- anon_sym_GT_GT,
- anon_sym_GT_GT_GT,
- anon_sym_LT_LT,
- anon_sym_AMP,
- anon_sym_CARET,
- anon_sym_PIPE,
- anon_sym_PLUS,
- anon_sym_DASH,
- anon_sym_SLASH,
- anon_sym_PERCENT,
- anon_sym_STAR_STAR,
- anon_sym_LT,
- anon_sym_EQ_EQ,
- anon_sym_BANG_EQ,
- anon_sym_QMARK_QMARK,
- ACTIONS(3386), 31,
- sym__ternary_qmark,
- anon_sym_as,
- anon_sym_LPAREN,
- anon_sym_LBRACK,
- anon_sym_RBRACK,
- anon_sym_DOT,
- anon_sym_QMARK_DOT,
- anon_sym_PLUS_EQ,
- anon_sym_DASH_EQ,
- anon_sym_STAR_EQ,
- anon_sym_SLASH_EQ,
- anon_sym_PERCENT_EQ,
- anon_sym_CARET_EQ,
- anon_sym_AMP_EQ,
- anon_sym_PIPE_EQ,
- anon_sym_GT_GT_EQ,
- anon_sym_GT_GT_GT_EQ,
- anon_sym_LT_LT_EQ,
- anon_sym_STAR_STAR_EQ,
- anon_sym_AMP_AMP_EQ,
- anon_sym_PIPE_PIPE_EQ,
- anon_sym_QMARK_QMARK_EQ,
- anon_sym_LT_EQ,
- anon_sym_EQ_EQ_EQ,
- anon_sym_BANG_EQ_EQ,
- anon_sym_GT_EQ,
- anon_sym_instanceof,
- anon_sym_PLUS_PLUS,
- anon_sym_DASH_DASH,
- anon_sym_BQUOTE,
- anon_sym_satisfies,
- [15011] = 31,
- ACTIONS(99), 1,
- anon_sym_AT,
- ACTIONS(1594), 1,
- anon_sym_DQUOTE,
- ACTIONS(1596), 1,
- anon_sym_SQUOTE,
- ACTIONS(2581), 1,
- anon_sym_LT,
- ACTIONS(3205), 1,
- anon_sym_LPAREN,
- ACTIONS(3229), 1,
- anon_sym_abstract,
- ACTIONS(3609), 1,
- anon_sym_export,
- ACTIONS(3611), 1,
- anon_sym_STAR,
- ACTIONS(3617), 1,
- anon_sym_LBRACK,
- ACTIONS(3619), 1,
- anon_sym_async,
- ACTIONS(3621), 1,
- anon_sym_new,
- ACTIONS(3625), 1,
- anon_sym_static,
- ACTIONS(3627), 1,
- anon_sym_readonly,
- ACTIONS(3633), 1,
- anon_sym_override,
- STATE(1244), 1,
- sym_decorator,
- STATE(2674), 1,
- sym_accessibility_modifier,
- STATE(2702), 1,
- sym_override_modifier,
- STATE(3229), 1,
- sym_formal_parameters,
- STATE(4329), 1,
- sym__call_signature,
- STATE(4448), 1,
- aux_sym_export_statement_repeat1,
- STATE(5404), 1,
- sym_type_parameters,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(3207), 2,
- anon_sym_COMMA,
- anon_sym_SEMI,
- ACTIONS(3215), 2,
- anon_sym_PLUS,
- anon_sym_DASH,
- ACTIONS(3231), 2,
- anon_sym_RBRACE,
- anon_sym_PIPE_RBRACE,
- ACTIONS(3623), 2,
- sym_number,
- sym_private_property_identifier,
- ACTIONS(3629), 2,
- anon_sym_get,
- anon_sym_set,
- ACTIONS(3631), 3,
- anon_sym_public,
- anon_sym_private,
- anon_sym_protected,
- STATE(3028), 3,
- sym_string,
- sym__property_name,
- sym_computed_property_name,
- STATE(3911), 6,
- sym_export_statement,
- sym_method_signature,
- sym_call_signature,
- sym_property_signature,
- sym_construct_signature,
- sym_index_signature,
- ACTIONS(3607), 12,
- anon_sym_type,
- anon_sym_namespace,
- anon_sym_let,
- sym_identifier,
- anon_sym_declare,
- anon_sym_module,
- anon_sym_any,
- anon_sym_number,
- anon_sym_boolean,
- anon_sym_string,
- anon_sym_symbol,
- anon_sym_object,
- [15131] = 4,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(3382), 2,
- anon_sym_COMMA,
- anon_sym_extends,
- ACTIONS(3378), 22,
- anon_sym_STAR,
- anon_sym_EQ,
- anon_sym_BANG,
- anon_sym_in,
- anon_sym_GT,
- anon_sym_AMP_AMP,
- anon_sym_PIPE_PIPE,
- anon_sym_GT_GT,
- anon_sym_GT_GT_GT,
- anon_sym_LT_LT,
- anon_sym_AMP,
- anon_sym_CARET,
- anon_sym_PIPE,
- anon_sym_PLUS,
- anon_sym_DASH,
- anon_sym_SLASH,
- anon_sym_PERCENT,
- anon_sym_STAR_STAR,
- anon_sym_LT,
- anon_sym_EQ_EQ,
- anon_sym_BANG_EQ,
- anon_sym_QMARK_QMARK,
- ACTIONS(3380), 31,
- sym__ternary_qmark,
- anon_sym_as,
- anon_sym_LPAREN,
- anon_sym_LBRACK,
- anon_sym_RBRACK,
- anon_sym_DOT,
- anon_sym_QMARK_DOT,
- anon_sym_PLUS_EQ,
- anon_sym_DASH_EQ,
- anon_sym_STAR_EQ,
- anon_sym_SLASH_EQ,
- anon_sym_PERCENT_EQ,
- anon_sym_CARET_EQ,
- anon_sym_AMP_EQ,
- anon_sym_PIPE_EQ,
- anon_sym_GT_GT_EQ,
- anon_sym_GT_GT_GT_EQ,
- anon_sym_LT_LT_EQ,
- anon_sym_STAR_STAR_EQ,
- anon_sym_AMP_AMP_EQ,
- anon_sym_PIPE_PIPE_EQ,
- anon_sym_QMARK_QMARK_EQ,
- anon_sym_LT_EQ,
- anon_sym_EQ_EQ_EQ,
- anon_sym_BANG_EQ_EQ,
- anon_sym_GT_EQ,
- anon_sym_instanceof,
- anon_sym_PLUS_PLUS,
- anon_sym_DASH_DASH,
- anon_sym_BQUOTE,
- anon_sym_satisfies,
- [15197] = 31,
- ACTIONS(99), 1,
- anon_sym_AT,
- ACTIONS(1594), 1,
- anon_sym_DQUOTE,
- ACTIONS(1596), 1,
- anon_sym_SQUOTE,
- ACTIONS(2581), 1,
- anon_sym_LT,
- ACTIONS(3205), 1,
- anon_sym_LPAREN,
- ACTIONS(3229), 1,
- anon_sym_abstract,
- ACTIONS(3609), 1,
- anon_sym_export,
- ACTIONS(3611), 1,
- anon_sym_STAR,
- ACTIONS(3617), 1,
- anon_sym_LBRACK,
- ACTIONS(3619), 1,
- anon_sym_async,
- ACTIONS(3621), 1,
- anon_sym_new,
- ACTIONS(3625), 1,
- anon_sym_static,
- ACTIONS(3627), 1,
- anon_sym_readonly,
- ACTIONS(3633), 1,
- anon_sym_override,
- STATE(1244), 1,
- sym_decorator,
- STATE(2674), 1,
- sym_accessibility_modifier,
- STATE(2702), 1,
- sym_override_modifier,
- STATE(3229), 1,
- sym_formal_parameters,
- STATE(4329), 1,
- sym__call_signature,
- STATE(4448), 1,
- aux_sym_export_statement_repeat1,
- STATE(5404), 1,
- sym_type_parameters,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(3215), 2,
- anon_sym_PLUS,
- anon_sym_DASH,
- ACTIONS(3623), 2,
- sym_number,
- sym_private_property_identifier,
- ACTIONS(3629), 2,
- anon_sym_get,
- anon_sym_set,
- ACTIONS(3641), 2,
- anon_sym_COMMA,
- anon_sym_SEMI,
- ACTIONS(3643), 2,
- anon_sym_RBRACE,
- anon_sym_PIPE_RBRACE,
- ACTIONS(3631), 3,
- anon_sym_public,
- anon_sym_private,
- anon_sym_protected,
- STATE(3028), 3,
- sym_string,
- sym__property_name,
- sym_computed_property_name,
- STATE(3771), 6,
- sym_export_statement,
- sym_method_signature,
- sym_call_signature,
- sym_property_signature,
- sym_construct_signature,
- sym_index_signature,
- ACTIONS(3607), 12,
- anon_sym_type,
- anon_sym_namespace,
- anon_sym_let,
- sym_identifier,
- anon_sym_declare,
- anon_sym_module,
- anon_sym_any,
- anon_sym_number,
- anon_sym_boolean,
- anon_sym_string,
- anon_sym_symbol,
- anon_sym_object,
- [15317] = 6,
- ACTIONS(3475), 1,
- anon_sym_EQ,
- ACTIONS(3520), 1,
- anon_sym_EQ_GT,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(3416), 15,
- anon_sym_PLUS_EQ,
- anon_sym_DASH_EQ,
- anon_sym_STAR_EQ,
- anon_sym_SLASH_EQ,
- anon_sym_PERCENT_EQ,
- anon_sym_CARET_EQ,
- anon_sym_AMP_EQ,
- anon_sym_PIPE_EQ,
- anon_sym_GT_GT_EQ,
- anon_sym_GT_GT_GT_EQ,
- anon_sym_LT_LT_EQ,
- anon_sym_STAR_STAR_EQ,
- anon_sym_AMP_AMP_EQ,
- anon_sym_PIPE_PIPE_EQ,
- anon_sym_QMARK_QMARK_EQ,
- ACTIONS(3404), 17,
- sym__ternary_qmark,
- anon_sym_as,
- anon_sym_RBRACE,
- anon_sym_LPAREN,
- anon_sym_COLON,
- anon_sym_LBRACK,
- anon_sym_DOT,
- anon_sym_QMARK_DOT,
- anon_sym_LT_EQ,
- anon_sym_EQ_EQ_EQ,
- anon_sym_BANG_EQ_EQ,
- anon_sym_GT_EQ,
- anon_sym_instanceof,
- anon_sym_PLUS_PLUS,
- anon_sym_DASH_DASH,
- anon_sym_BQUOTE,
- anon_sym_satisfies,
- ACTIONS(3400), 21,
- anon_sym_STAR,
- anon_sym_BANG,
- anon_sym_in,
- anon_sym_GT,
- anon_sym_AMP_AMP,
- anon_sym_PIPE_PIPE,
- anon_sym_GT_GT,
- anon_sym_GT_GT_GT,
- anon_sym_LT_LT,
- anon_sym_AMP,
- anon_sym_CARET,
- anon_sym_PIPE,
- anon_sym_PLUS,
- anon_sym_DASH,
- anon_sym_SLASH,
- anon_sym_PERCENT,
- anon_sym_STAR_STAR,
- anon_sym_LT,
- anon_sym_EQ_EQ,
- anon_sym_BANG_EQ,
- anon_sym_QMARK_QMARK,
- [15387] = 7,
- ACTIONS(904), 1,
- anon_sym_EQ_GT,
- ACTIONS(926), 1,
- anon_sym_EQ,
- ACTIONS(940), 1,
- anon_sym_COLON,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(168), 15,
- anon_sym_PLUS_EQ,
- anon_sym_DASH_EQ,
- anon_sym_STAR_EQ,
- anon_sym_SLASH_EQ,
- anon_sym_PERCENT_EQ,
- anon_sym_CARET_EQ,
- anon_sym_AMP_EQ,
- anon_sym_PIPE_EQ,
- anon_sym_GT_GT_EQ,
- anon_sym_GT_GT_GT_EQ,
- anon_sym_LT_LT_EQ,
- anon_sym_STAR_STAR_EQ,
- anon_sym_AMP_AMP_EQ,
- anon_sym_PIPE_PIPE_EQ,
- anon_sym_QMARK_QMARK_EQ,
- ACTIONS(162), 16,
- sym__ternary_qmark,
- anon_sym_as,
- anon_sym_LPAREN,
- anon_sym_LBRACK,
- anon_sym_RBRACK,
- anon_sym_DOT,
- anon_sym_QMARK_DOT,
- anon_sym_LT_EQ,
- anon_sym_EQ_EQ_EQ,
- anon_sym_BANG_EQ_EQ,
- anon_sym_GT_EQ,
- anon_sym_instanceof,
- anon_sym_PLUS_PLUS,
- anon_sym_DASH_DASH,
- anon_sym_BQUOTE,
- anon_sym_satisfies,
- ACTIONS(122), 21,
- anon_sym_STAR,
- anon_sym_BANG,
- anon_sym_in,
- anon_sym_GT,
- anon_sym_AMP_AMP,
- anon_sym_PIPE_PIPE,
- anon_sym_GT_GT,
- anon_sym_GT_GT_GT,
- anon_sym_LT_LT,
- anon_sym_AMP,
- anon_sym_CARET,
- anon_sym_PIPE,
- anon_sym_PLUS,
- anon_sym_DASH,
- anon_sym_SLASH,
- anon_sym_PERCENT,
- anon_sym_STAR_STAR,
- anon_sym_LT,
- anon_sym_EQ_EQ,
- anon_sym_BANG_EQ,
- anon_sym_QMARK_QMARK,
- [15459] = 6,
- ACTIONS(841), 1,
- anon_sym_EQ,
- ACTIONS(924), 1,
- anon_sym_EQ_GT,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(168), 15,
- anon_sym_PLUS_EQ,
- anon_sym_DASH_EQ,
- anon_sym_STAR_EQ,
- anon_sym_SLASH_EQ,
- anon_sym_PERCENT_EQ,
- anon_sym_CARET_EQ,
- anon_sym_AMP_EQ,
- anon_sym_PIPE_EQ,
- anon_sym_GT_GT_EQ,
- anon_sym_GT_GT_GT_EQ,
- anon_sym_LT_LT_EQ,
- anon_sym_STAR_STAR_EQ,
- anon_sym_AMP_AMP_EQ,
- anon_sym_PIPE_PIPE_EQ,
- anon_sym_QMARK_QMARK_EQ,
- ACTIONS(162), 17,
- sym__automatic_semicolon,
- sym__ternary_qmark,
- anon_sym_as,
- anon_sym_LPAREN,
- anon_sym_SEMI,
- anon_sym_LBRACK,
- anon_sym_DOT,
- anon_sym_QMARK_DOT,
- anon_sym_LT_EQ,
- anon_sym_EQ_EQ_EQ,
- anon_sym_BANG_EQ_EQ,
- anon_sym_GT_EQ,
- anon_sym_instanceof,
- anon_sym_PLUS_PLUS,
- anon_sym_DASH_DASH,
- anon_sym_BQUOTE,
- anon_sym_satisfies,
- ACTIONS(122), 21,
- anon_sym_STAR,
- anon_sym_BANG,
- anon_sym_in,
- anon_sym_GT,
- anon_sym_AMP_AMP,
- anon_sym_PIPE_PIPE,
- anon_sym_GT_GT,
- anon_sym_GT_GT_GT,
- anon_sym_LT_LT,
- anon_sym_AMP,
- anon_sym_CARET,
- anon_sym_PIPE,
- anon_sym_PLUS,
- anon_sym_DASH,
- anon_sym_SLASH,
- anon_sym_PERCENT,
- anon_sym_STAR_STAR,
- anon_sym_LT,
- anon_sym_EQ_EQ,
- anon_sym_BANG_EQ,
- anon_sym_QMARK_QMARK,
- [15529] = 5,
- ACTIONS(3542), 1,
- anon_sym_EQ,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(3416), 15,
- anon_sym_PLUS_EQ,
- anon_sym_DASH_EQ,
- anon_sym_STAR_EQ,
- anon_sym_SLASH_EQ,
- anon_sym_PERCENT_EQ,
- anon_sym_CARET_EQ,
- anon_sym_AMP_EQ,
- anon_sym_PIPE_EQ,
- anon_sym_GT_GT_EQ,
- anon_sym_GT_GT_GT_EQ,
- anon_sym_LT_LT_EQ,
- anon_sym_STAR_STAR_EQ,
- anon_sym_AMP_AMP_EQ,
- anon_sym_PIPE_PIPE_EQ,
- anon_sym_QMARK_QMARK_EQ,
- ACTIONS(3404), 18,
- sym__ternary_qmark,
- anon_sym_as,
- anon_sym_LBRACE,
- anon_sym_COMMA,
- anon_sym_LPAREN,
- anon_sym_LBRACK,
- anon_sym_DOT,
- anon_sym_QMARK_DOT,
- anon_sym_LT_EQ,
- anon_sym_EQ_EQ_EQ,
- anon_sym_BANG_EQ_EQ,
- anon_sym_GT_EQ,
- anon_sym_instanceof,
- anon_sym_PLUS_PLUS,
- anon_sym_DASH_DASH,
- anon_sym_BQUOTE,
- anon_sym_satisfies,
- anon_sym_implements,
- ACTIONS(3400), 21,
- anon_sym_STAR,
- anon_sym_BANG,
- anon_sym_in,
- anon_sym_GT,
- anon_sym_AMP_AMP,
- anon_sym_PIPE_PIPE,
- anon_sym_GT_GT,
- anon_sym_GT_GT_GT,
- anon_sym_LT_LT,
- anon_sym_AMP,
- anon_sym_CARET,
- anon_sym_PIPE,
- anon_sym_PLUS,
- anon_sym_DASH,
- anon_sym_SLASH,
- anon_sym_PERCENT,
- anon_sym_STAR_STAR,
- anon_sym_LT,
- anon_sym_EQ_EQ,
- anon_sym_BANG_EQ,
- anon_sym_QMARK_QMARK,
- [15597] = 6,
- ACTIONS(3501), 1,
- anon_sym_EQ,
- ACTIONS(3503), 1,
- anon_sym_EQ_GT,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(3416), 15,
- anon_sym_PLUS_EQ,
- anon_sym_DASH_EQ,
- anon_sym_STAR_EQ,
- anon_sym_SLASH_EQ,
- anon_sym_PERCENT_EQ,
- anon_sym_CARET_EQ,
- anon_sym_AMP_EQ,
- anon_sym_PIPE_EQ,
- anon_sym_GT_GT_EQ,
- anon_sym_GT_GT_GT_EQ,
- anon_sym_LT_LT_EQ,
- anon_sym_STAR_STAR_EQ,
- anon_sym_AMP_AMP_EQ,
- anon_sym_PIPE_PIPE_EQ,
- anon_sym_QMARK_QMARK_EQ,
- ACTIONS(3404), 17,
- sym__automatic_semicolon,
- sym__ternary_qmark,
- anon_sym_as,
- anon_sym_LPAREN,
- anon_sym_SEMI,
- anon_sym_LBRACK,
- anon_sym_DOT,
- anon_sym_QMARK_DOT,
- anon_sym_LT_EQ,
- anon_sym_EQ_EQ_EQ,
- anon_sym_BANG_EQ_EQ,
- anon_sym_GT_EQ,
- anon_sym_instanceof,
- anon_sym_PLUS_PLUS,
- anon_sym_DASH_DASH,
- anon_sym_BQUOTE,
- anon_sym_satisfies,
- ACTIONS(3400), 21,
- anon_sym_STAR,
- anon_sym_BANG,
- anon_sym_in,
- anon_sym_GT,
- anon_sym_AMP_AMP,
- anon_sym_PIPE_PIPE,
- anon_sym_GT_GT,
- anon_sym_GT_GT_GT,
- anon_sym_LT_LT,
- anon_sym_AMP,
- anon_sym_CARET,
- anon_sym_PIPE,
- anon_sym_PLUS,
- anon_sym_DASH,
- anon_sym_SLASH,
- anon_sym_PERCENT,
- anon_sym_STAR_STAR,
- anon_sym_LT,
- anon_sym_EQ_EQ,
- anon_sym_BANG_EQ,
- anon_sym_QMARK_QMARK,
- [15667] = 31,
- ACTIONS(99), 1,
- anon_sym_AT,
- ACTIONS(1594), 1,
- anon_sym_DQUOTE,
- ACTIONS(1596), 1,
- anon_sym_SQUOTE,
- ACTIONS(2581), 1,
- anon_sym_LT,
- ACTIONS(3205), 1,
- anon_sym_LPAREN,
- ACTIONS(3229), 1,
- anon_sym_abstract,
- ACTIONS(3609), 1,
- anon_sym_export,
- ACTIONS(3611), 1,
- anon_sym_STAR,
- ACTIONS(3617), 1,
- anon_sym_LBRACK,
- ACTIONS(3619), 1,
- anon_sym_async,
- ACTIONS(3621), 1,
- anon_sym_new,
- ACTIONS(3625), 1,
- anon_sym_static,
- ACTIONS(3627), 1,
- anon_sym_readonly,
- ACTIONS(3633), 1,
- anon_sym_override,
- STATE(1244), 1,
- sym_decorator,
- STATE(2674), 1,
- sym_accessibility_modifier,
- STATE(2702), 1,
- sym_override_modifier,
- STATE(3229), 1,
- sym_formal_parameters,
- STATE(4329), 1,
- sym__call_signature,
- STATE(4448), 1,
- aux_sym_export_statement_repeat1,
- STATE(5404), 1,
- sym_type_parameters,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(3215), 2,
- anon_sym_PLUS,
- anon_sym_DASH,
- ACTIONS(3623), 2,
- sym_number,
- sym_private_property_identifier,
- ACTIONS(3629), 2,
- anon_sym_get,
- anon_sym_set,
- ACTIONS(3645), 2,
- anon_sym_COMMA,
- anon_sym_SEMI,
- ACTIONS(3647), 2,
- anon_sym_RBRACE,
- anon_sym_PIPE_RBRACE,
- ACTIONS(3631), 3,
- anon_sym_public,
- anon_sym_private,
- anon_sym_protected,
- STATE(3028), 3,
- sym_string,
- sym__property_name,
- sym_computed_property_name,
- STATE(3802), 6,
- sym_export_statement,
- sym_method_signature,
- sym_call_signature,
- sym_property_signature,
- sym_construct_signature,
- sym_index_signature,
- ACTIONS(3607), 12,
- anon_sym_type,
- anon_sym_namespace,
- anon_sym_let,
- sym_identifier,
- anon_sym_declare,
- anon_sym_module,
- anon_sym_any,
- anon_sym_number,
- anon_sym_boolean,
- anon_sym_string,
- anon_sym_symbol,
- anon_sym_object,
- [15787] = 7,
- ACTIONS(900), 1,
- anon_sym_COLON,
- ACTIONS(904), 1,
- anon_sym_EQ_GT,
- ACTIONS(926), 1,
- anon_sym_EQ,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(168), 15,
- anon_sym_PLUS_EQ,
- anon_sym_DASH_EQ,
- anon_sym_STAR_EQ,
- anon_sym_SLASH_EQ,
- anon_sym_PERCENT_EQ,
- anon_sym_CARET_EQ,
- anon_sym_AMP_EQ,
- anon_sym_PIPE_EQ,
- anon_sym_GT_GT_EQ,
- anon_sym_GT_GT_GT_EQ,
- anon_sym_LT_LT_EQ,
- anon_sym_STAR_STAR_EQ,
- anon_sym_AMP_AMP_EQ,
- anon_sym_PIPE_PIPE_EQ,
- anon_sym_QMARK_QMARK_EQ,
- ACTIONS(162), 16,
- sym__ternary_qmark,
- anon_sym_as,
- anon_sym_LPAREN,
- anon_sym_LBRACK,
- anon_sym_RBRACK,
- anon_sym_DOT,
- anon_sym_QMARK_DOT,
- anon_sym_LT_EQ,
- anon_sym_EQ_EQ_EQ,
- anon_sym_BANG_EQ_EQ,
- anon_sym_GT_EQ,
- anon_sym_instanceof,
- anon_sym_PLUS_PLUS,
- anon_sym_DASH_DASH,
- anon_sym_BQUOTE,
- anon_sym_satisfies,
- ACTIONS(122), 21,
- anon_sym_STAR,
- anon_sym_BANG,
- anon_sym_in,
- anon_sym_GT,
- anon_sym_AMP_AMP,
- anon_sym_PIPE_PIPE,
- anon_sym_GT_GT,
- anon_sym_GT_GT_GT,
- anon_sym_LT_LT,
- anon_sym_AMP,
- anon_sym_CARET,
- anon_sym_PIPE,
- anon_sym_PLUS,
- anon_sym_DASH,
- anon_sym_SLASH,
- anon_sym_PERCENT,
- anon_sym_STAR_STAR,
- anon_sym_LT,
- anon_sym_EQ_EQ,
- anon_sym_BANG_EQ,
- anon_sym_QMARK_QMARK,
- [15859] = 6,
- ACTIONS(3556), 1,
- anon_sym_EQ,
- ACTIONS(3558), 1,
- anon_sym_EQ_GT,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(3416), 15,
- anon_sym_PLUS_EQ,
- anon_sym_DASH_EQ,
- anon_sym_STAR_EQ,
- anon_sym_SLASH_EQ,
- anon_sym_PERCENT_EQ,
- anon_sym_CARET_EQ,
- anon_sym_AMP_EQ,
- anon_sym_PIPE_EQ,
- anon_sym_GT_GT_EQ,
- anon_sym_GT_GT_GT_EQ,
- anon_sym_LT_LT_EQ,
- anon_sym_STAR_STAR_EQ,
- anon_sym_AMP_AMP_EQ,
- anon_sym_PIPE_PIPE_EQ,
- anon_sym_QMARK_QMARK_EQ,
- ACTIONS(3404), 16,
- sym__ternary_qmark,
- anon_sym_as,
- anon_sym_LPAREN,
- anon_sym_LBRACK,
- anon_sym_RBRACK,
- anon_sym_DOT,
- anon_sym_QMARK_DOT,
- anon_sym_LT_EQ,
- anon_sym_EQ_EQ_EQ,
- anon_sym_BANG_EQ_EQ,
- anon_sym_GT_EQ,
- anon_sym_instanceof,
- anon_sym_PLUS_PLUS,
- anon_sym_DASH_DASH,
- anon_sym_BQUOTE,
- anon_sym_satisfies,
- ACTIONS(3400), 21,
- anon_sym_STAR,
- anon_sym_BANG,
- anon_sym_in,
- anon_sym_GT,
- anon_sym_AMP_AMP,
- anon_sym_PIPE_PIPE,
- anon_sym_GT_GT,
- anon_sym_GT_GT_GT,
- anon_sym_LT_LT,
- anon_sym_AMP,
- anon_sym_CARET,
- anon_sym_PIPE,
- anon_sym_PLUS,
- anon_sym_DASH,
- anon_sym_SLASH,
- anon_sym_PERCENT,
- anon_sym_STAR_STAR,
- anon_sym_LT,
- anon_sym_EQ_EQ,
- anon_sym_BANG_EQ,
- anon_sym_QMARK_QMARK,
- [15928] = 8,
- ACTIONS(3475), 1,
- anon_sym_EQ,
- ACTIONS(3516), 1,
- anon_sym_EQ_GT,
- ACTIONS(3586), 1,
- anon_sym_in,
- ACTIONS(3589), 1,
- anon_sym_of,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(3404), 15,
- sym__ternary_qmark,
- anon_sym_as,
- anon_sym_LPAREN,
- anon_sym_LBRACK,
- anon_sym_DOT,
- anon_sym_QMARK_DOT,
- anon_sym_LT_EQ,
- anon_sym_EQ_EQ_EQ,
- anon_sym_BANG_EQ_EQ,
- anon_sym_GT_EQ,
- anon_sym_instanceof,
- anon_sym_PLUS_PLUS,
- anon_sym_DASH_DASH,
- anon_sym_BQUOTE,
- anon_sym_satisfies,
- ACTIONS(3416), 15,
- anon_sym_PLUS_EQ,
- anon_sym_DASH_EQ,
- anon_sym_STAR_EQ,
- anon_sym_SLASH_EQ,
- anon_sym_PERCENT_EQ,
- anon_sym_CARET_EQ,
- anon_sym_AMP_EQ,
- anon_sym_PIPE_EQ,
- anon_sym_GT_GT_EQ,
- anon_sym_GT_GT_GT_EQ,
- anon_sym_LT_LT_EQ,
- anon_sym_STAR_STAR_EQ,
- anon_sym_AMP_AMP_EQ,
- anon_sym_PIPE_PIPE_EQ,
- anon_sym_QMARK_QMARK_EQ,
- ACTIONS(3400), 20,
- anon_sym_STAR,
- anon_sym_BANG,
- anon_sym_GT,
- anon_sym_AMP_AMP,
- anon_sym_PIPE_PIPE,
- anon_sym_GT_GT,
- anon_sym_GT_GT_GT,
- anon_sym_LT_LT,
- anon_sym_AMP,
- anon_sym_CARET,
- anon_sym_PIPE,
- anon_sym_PLUS,
- anon_sym_DASH,
- anon_sym_SLASH,
- anon_sym_PERCENT,
- anon_sym_STAR_STAR,
- anon_sym_LT,
- anon_sym_EQ_EQ,
- anon_sym_BANG_EQ,
- anon_sym_QMARK_QMARK,
- [16001] = 6,
- ACTIONS(904), 1,
- anon_sym_EQ_GT,
- ACTIONS(926), 1,
- anon_sym_EQ,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(168), 15,
- anon_sym_PLUS_EQ,
- anon_sym_DASH_EQ,
- anon_sym_STAR_EQ,
- anon_sym_SLASH_EQ,
- anon_sym_PERCENT_EQ,
- anon_sym_CARET_EQ,
- anon_sym_AMP_EQ,
- anon_sym_PIPE_EQ,
- anon_sym_GT_GT_EQ,
- anon_sym_GT_GT_GT_EQ,
- anon_sym_LT_LT_EQ,
- anon_sym_STAR_STAR_EQ,
- anon_sym_AMP_AMP_EQ,
- anon_sym_PIPE_PIPE_EQ,
- anon_sym_QMARK_QMARK_EQ,
- ACTIONS(162), 16,
- sym__ternary_qmark,
- anon_sym_as,
- anon_sym_LPAREN,
- anon_sym_LBRACK,
- anon_sym_RBRACK,
- anon_sym_DOT,
- anon_sym_QMARK_DOT,
- anon_sym_LT_EQ,
- anon_sym_EQ_EQ_EQ,
- anon_sym_BANG_EQ_EQ,
- anon_sym_GT_EQ,
- anon_sym_instanceof,
- anon_sym_PLUS_PLUS,
- anon_sym_DASH_DASH,
- anon_sym_BQUOTE,
- anon_sym_satisfies,
- ACTIONS(122), 21,
- anon_sym_STAR,
- anon_sym_BANG,
- anon_sym_in,
- anon_sym_GT,
- anon_sym_AMP_AMP,
- anon_sym_PIPE_PIPE,
- anon_sym_GT_GT,
- anon_sym_GT_GT_GT,
- anon_sym_LT_LT,
- anon_sym_AMP,
- anon_sym_CARET,
- anon_sym_PIPE,
- anon_sym_PLUS,
- anon_sym_DASH,
- anon_sym_SLASH,
- anon_sym_PERCENT,
- anon_sym_STAR_STAR,
- anon_sym_LT,
- anon_sym_EQ_EQ,
- anon_sym_BANG_EQ,
- anon_sym_QMARK_QMARK,
- [16070] = 6,
- ACTIONS(841), 1,
- anon_sym_EQ,
- ACTIONS(904), 1,
- anon_sym_EQ_GT,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(168), 15,
- anon_sym_PLUS_EQ,
- anon_sym_DASH_EQ,
- anon_sym_STAR_EQ,
- anon_sym_SLASH_EQ,
- anon_sym_PERCENT_EQ,
- anon_sym_CARET_EQ,
- anon_sym_AMP_EQ,
- anon_sym_PIPE_EQ,
- anon_sym_GT_GT_EQ,
- anon_sym_GT_GT_GT_EQ,
- anon_sym_LT_LT_EQ,
- anon_sym_STAR_STAR_EQ,
- anon_sym_AMP_AMP_EQ,
- anon_sym_PIPE_PIPE_EQ,
- anon_sym_QMARK_QMARK_EQ,
- ACTIONS(162), 16,
- sym__ternary_qmark,
- anon_sym_as,
- anon_sym_LPAREN,
- anon_sym_LBRACK,
- anon_sym_RBRACK,
- anon_sym_DOT,
- anon_sym_QMARK_DOT,
- anon_sym_LT_EQ,
- anon_sym_EQ_EQ_EQ,
- anon_sym_BANG_EQ_EQ,
- anon_sym_GT_EQ,
- anon_sym_instanceof,
- anon_sym_PLUS_PLUS,
- anon_sym_DASH_DASH,
- anon_sym_BQUOTE,
- anon_sym_satisfies,
- ACTIONS(122), 21,
- anon_sym_STAR,
- anon_sym_BANG,
- anon_sym_in,
- anon_sym_GT,
- anon_sym_AMP_AMP,
- anon_sym_PIPE_PIPE,
- anon_sym_GT_GT,
- anon_sym_GT_GT_GT,
- anon_sym_LT_LT,
- anon_sym_AMP,
- anon_sym_CARET,
- anon_sym_PIPE,
- anon_sym_PLUS,
- anon_sym_DASH,
- anon_sym_SLASH,
- anon_sym_PERCENT,
- anon_sym_STAR_STAR,
- anon_sym_LT,
- anon_sym_EQ_EQ,
- anon_sym_BANG_EQ,
- anon_sym_QMARK_QMARK,
- [16139] = 6,
- ACTIONS(960), 1,
- anon_sym_EQ,
- ACTIONS(966), 1,
- anon_sym_EQ_GT,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(168), 15,
- anon_sym_PLUS_EQ,
- anon_sym_DASH_EQ,
- anon_sym_STAR_EQ,
- anon_sym_SLASH_EQ,
- anon_sym_PERCENT_EQ,
- anon_sym_CARET_EQ,
- anon_sym_AMP_EQ,
- anon_sym_PIPE_EQ,
- anon_sym_GT_GT_EQ,
- anon_sym_GT_GT_GT_EQ,
- anon_sym_LT_LT_EQ,
- anon_sym_STAR_STAR_EQ,
- anon_sym_AMP_AMP_EQ,
- anon_sym_PIPE_PIPE_EQ,
- anon_sym_QMARK_QMARK_EQ,
- ACTIONS(162), 16,
- sym__ternary_qmark,
- anon_sym_as,
- anon_sym_LPAREN,
- anon_sym_of,
- anon_sym_LBRACK,
- anon_sym_DOT,
- anon_sym_QMARK_DOT,
- anon_sym_LT_EQ,
- anon_sym_EQ_EQ_EQ,
- anon_sym_BANG_EQ_EQ,
- anon_sym_GT_EQ,
- anon_sym_instanceof,
- anon_sym_PLUS_PLUS,
- anon_sym_DASH_DASH,
- anon_sym_BQUOTE,
- anon_sym_satisfies,
- ACTIONS(122), 21,
- anon_sym_STAR,
- anon_sym_BANG,
- anon_sym_in,
- anon_sym_GT,
- anon_sym_AMP_AMP,
- anon_sym_PIPE_PIPE,
- anon_sym_GT_GT,
- anon_sym_GT_GT_GT,
- anon_sym_LT_LT,
- anon_sym_AMP,
- anon_sym_CARET,
- anon_sym_PIPE,
- anon_sym_PLUS,
- anon_sym_DASH,
- anon_sym_SLASH,
- anon_sym_PERCENT,
- anon_sym_STAR_STAR,
- anon_sym_LT,
- anon_sym_EQ_EQ,
- anon_sym_BANG_EQ,
- anon_sym_QMARK_QMARK,
- [16208] = 5,
- ACTIONS(3518), 1,
- anon_sym_EQ,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(3416), 15,
- anon_sym_PLUS_EQ,
- anon_sym_DASH_EQ,
- anon_sym_STAR_EQ,
- anon_sym_SLASH_EQ,
- anon_sym_PERCENT_EQ,
- anon_sym_CARET_EQ,
- anon_sym_AMP_EQ,
- anon_sym_PIPE_EQ,
- anon_sym_GT_GT_EQ,
- anon_sym_GT_GT_GT_EQ,
- anon_sym_LT_LT_EQ,
- anon_sym_STAR_STAR_EQ,
- anon_sym_AMP_AMP_EQ,
- anon_sym_PIPE_PIPE_EQ,
- anon_sym_QMARK_QMARK_EQ,
- ACTIONS(3404), 17,
- sym__ternary_qmark,
- anon_sym_as,
- anon_sym_RBRACE,
- anon_sym_LPAREN,
- anon_sym_COLON,
- anon_sym_LBRACK,
- anon_sym_DOT,
- anon_sym_QMARK_DOT,
- anon_sym_LT_EQ,
- anon_sym_EQ_EQ_EQ,
- anon_sym_BANG_EQ_EQ,
- anon_sym_GT_EQ,
- anon_sym_instanceof,
- anon_sym_PLUS_PLUS,
- anon_sym_DASH_DASH,
- anon_sym_BQUOTE,
- anon_sym_satisfies,
- ACTIONS(3400), 21,
- anon_sym_STAR,
- anon_sym_BANG,
- anon_sym_in,
- anon_sym_GT,
- anon_sym_AMP_AMP,
- anon_sym_PIPE_PIPE,
- anon_sym_GT_GT,
- anon_sym_GT_GT_GT,
- anon_sym_LT_LT,
- anon_sym_AMP,
- anon_sym_CARET,
- anon_sym_PIPE,
- anon_sym_PLUS,
- anon_sym_DASH,
- anon_sym_SLASH,
- anon_sym_PERCENT,
- anon_sym_STAR_STAR,
- anon_sym_LT,
- anon_sym_EQ_EQ,
- anon_sym_BANG_EQ,
- anon_sym_QMARK_QMARK,
- [16275] = 6,
- ACTIONS(841), 1,
- anon_sym_EQ,
- ACTIONS(966), 1,
- anon_sym_EQ_GT,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(168), 15,
- anon_sym_PLUS_EQ,
- anon_sym_DASH_EQ,
- anon_sym_STAR_EQ,
- anon_sym_SLASH_EQ,
- anon_sym_PERCENT_EQ,
- anon_sym_CARET_EQ,
- anon_sym_AMP_EQ,
- anon_sym_PIPE_EQ,
- anon_sym_GT_GT_EQ,
- anon_sym_GT_GT_GT_EQ,
- anon_sym_LT_LT_EQ,
- anon_sym_STAR_STAR_EQ,
- anon_sym_AMP_AMP_EQ,
- anon_sym_PIPE_PIPE_EQ,
- anon_sym_QMARK_QMARK_EQ,
- ACTIONS(162), 16,
- sym__ternary_qmark,
- anon_sym_as,
- anon_sym_LPAREN,
- anon_sym_of,
- anon_sym_LBRACK,
- anon_sym_DOT,
- anon_sym_QMARK_DOT,
- anon_sym_LT_EQ,
- anon_sym_EQ_EQ_EQ,
- anon_sym_BANG_EQ_EQ,
- anon_sym_GT_EQ,
- anon_sym_instanceof,
- anon_sym_PLUS_PLUS,
- anon_sym_DASH_DASH,
- anon_sym_BQUOTE,
- anon_sym_satisfies,
- ACTIONS(122), 21,
- anon_sym_STAR,
- anon_sym_BANG,
- anon_sym_in,
- anon_sym_GT,
- anon_sym_AMP_AMP,
- anon_sym_PIPE_PIPE,
- anon_sym_GT_GT,
- anon_sym_GT_GT_GT,
- anon_sym_LT_LT,
- anon_sym_AMP,
- anon_sym_CARET,
- anon_sym_PIPE,
- anon_sym_PLUS,
- anon_sym_DASH,
- anon_sym_SLASH,
- anon_sym_PERCENT,
- anon_sym_STAR_STAR,
- anon_sym_LT,
- anon_sym_EQ_EQ,
- anon_sym_BANG_EQ,
- anon_sym_QMARK_QMARK,
- [16344] = 5,
- ACTIONS(3501), 1,
- anon_sym_EQ,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(3416), 15,
- anon_sym_PLUS_EQ,
- anon_sym_DASH_EQ,
- anon_sym_STAR_EQ,
- anon_sym_SLASH_EQ,
- anon_sym_PERCENT_EQ,
- anon_sym_CARET_EQ,
- anon_sym_AMP_EQ,
- anon_sym_PIPE_EQ,
- anon_sym_GT_GT_EQ,
- anon_sym_GT_GT_GT_EQ,
- anon_sym_LT_LT_EQ,
- anon_sym_STAR_STAR_EQ,
- anon_sym_AMP_AMP_EQ,
- anon_sym_PIPE_PIPE_EQ,
- anon_sym_QMARK_QMARK_EQ,
- ACTIONS(3404), 17,
- sym__automatic_semicolon,
- sym__ternary_qmark,
- anon_sym_as,
- anon_sym_LPAREN,
- anon_sym_SEMI,
- anon_sym_LBRACK,
- anon_sym_DOT,
- anon_sym_QMARK_DOT,
- anon_sym_LT_EQ,
- anon_sym_EQ_EQ_EQ,
- anon_sym_BANG_EQ_EQ,
- anon_sym_GT_EQ,
- anon_sym_instanceof,
- anon_sym_PLUS_PLUS,
- anon_sym_DASH_DASH,
- anon_sym_BQUOTE,
- anon_sym_satisfies,
- ACTIONS(3400), 21,
- anon_sym_STAR,
- anon_sym_BANG,
- anon_sym_in,
- anon_sym_GT,
- anon_sym_AMP_AMP,
- anon_sym_PIPE_PIPE,
- anon_sym_GT_GT,
- anon_sym_GT_GT_GT,
- anon_sym_LT_LT,
- anon_sym_AMP,
- anon_sym_CARET,
- anon_sym_PIPE,
- anon_sym_PLUS,
- anon_sym_DASH,
- anon_sym_SLASH,
- anon_sym_PERCENT,
- anon_sym_STAR_STAR,
- anon_sym_LT,
- anon_sym_EQ_EQ,
- anon_sym_BANG_EQ,
- anon_sym_QMARK_QMARK,
- [16411] = 6,
- ACTIONS(3475), 1,
- anon_sym_EQ,
- ACTIONS(3558), 1,
- anon_sym_EQ_GT,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(3416), 15,
- anon_sym_PLUS_EQ,
- anon_sym_DASH_EQ,
- anon_sym_STAR_EQ,
- anon_sym_SLASH_EQ,
- anon_sym_PERCENT_EQ,
- anon_sym_CARET_EQ,
- anon_sym_AMP_EQ,
- anon_sym_PIPE_EQ,
- anon_sym_GT_GT_EQ,
- anon_sym_GT_GT_GT_EQ,
- anon_sym_LT_LT_EQ,
- anon_sym_STAR_STAR_EQ,
- anon_sym_AMP_AMP_EQ,
- anon_sym_PIPE_PIPE_EQ,
- anon_sym_QMARK_QMARK_EQ,
- ACTIONS(3404), 16,
- sym__ternary_qmark,
- anon_sym_as,
- anon_sym_LPAREN,
- anon_sym_LBRACK,
- anon_sym_RBRACK,
- anon_sym_DOT,
- anon_sym_QMARK_DOT,
- anon_sym_LT_EQ,
- anon_sym_EQ_EQ_EQ,
- anon_sym_BANG_EQ_EQ,
- anon_sym_GT_EQ,
- anon_sym_instanceof,
- anon_sym_PLUS_PLUS,
- anon_sym_DASH_DASH,
- anon_sym_BQUOTE,
- anon_sym_satisfies,
- ACTIONS(3400), 21,
- anon_sym_STAR,
- anon_sym_BANG,
- anon_sym_in,
- anon_sym_GT,
- anon_sym_AMP_AMP,
- anon_sym_PIPE_PIPE,
- anon_sym_GT_GT,
- anon_sym_GT_GT_GT,
- anon_sym_LT_LT,
- anon_sym_AMP,
- anon_sym_CARET,
- anon_sym_PIPE,
- anon_sym_PLUS,
- anon_sym_DASH,
- anon_sym_SLASH,
- anon_sym_PERCENT,
- anon_sym_STAR_STAR,
- anon_sym_LT,
- anon_sym_EQ_EQ,
- anon_sym_BANG_EQ,
- anon_sym_QMARK_QMARK,
- [16480] = 6,
- ACTIONS(3560), 1,
- anon_sym_EQ,
- ACTIONS(3562), 1,
- anon_sym_EQ_GT,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(3416), 15,
- anon_sym_PLUS_EQ,
- anon_sym_DASH_EQ,
- anon_sym_STAR_EQ,
- anon_sym_SLASH_EQ,
- anon_sym_PERCENT_EQ,
- anon_sym_CARET_EQ,
- anon_sym_AMP_EQ,
- anon_sym_PIPE_EQ,
- anon_sym_GT_GT_EQ,
- anon_sym_GT_GT_GT_EQ,
- anon_sym_LT_LT_EQ,
- anon_sym_STAR_STAR_EQ,
- anon_sym_AMP_AMP_EQ,
- anon_sym_PIPE_PIPE_EQ,
- anon_sym_QMARK_QMARK_EQ,
- ACTIONS(3404), 16,
- sym__ternary_qmark,
- anon_sym_as,
- anon_sym_LPAREN,
- anon_sym_of,
- anon_sym_LBRACK,
- anon_sym_DOT,
- anon_sym_QMARK_DOT,
- anon_sym_LT_EQ,
- anon_sym_EQ_EQ_EQ,
- anon_sym_BANG_EQ_EQ,
- anon_sym_GT_EQ,
- anon_sym_instanceof,
- anon_sym_PLUS_PLUS,
- anon_sym_DASH_DASH,
- anon_sym_BQUOTE,
- anon_sym_satisfies,
- ACTIONS(3400), 21,
- anon_sym_STAR,
- anon_sym_BANG,
- anon_sym_in,
- anon_sym_GT,
- anon_sym_AMP_AMP,
- anon_sym_PIPE_PIPE,
- anon_sym_GT_GT,
- anon_sym_GT_GT_GT,
- anon_sym_LT_LT,
- anon_sym_AMP,
- anon_sym_CARET,
- anon_sym_PIPE,
- anon_sym_PLUS,
- anon_sym_DASH,
- anon_sym_SLASH,
- anon_sym_PERCENT,
- anon_sym_STAR_STAR,
- anon_sym_LT,
- anon_sym_EQ_EQ,
- anon_sym_BANG_EQ,
- anon_sym_QMARK_QMARK,
- [16549] = 6,
- ACTIONS(3475), 1,
- anon_sym_EQ,
- ACTIONS(3562), 1,
- anon_sym_EQ_GT,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(3416), 15,
- anon_sym_PLUS_EQ,
- anon_sym_DASH_EQ,
- anon_sym_STAR_EQ,
- anon_sym_SLASH_EQ,
- anon_sym_PERCENT_EQ,
- anon_sym_CARET_EQ,
- anon_sym_AMP_EQ,
- anon_sym_PIPE_EQ,
- anon_sym_GT_GT_EQ,
- anon_sym_GT_GT_GT_EQ,
- anon_sym_LT_LT_EQ,
- anon_sym_STAR_STAR_EQ,
- anon_sym_AMP_AMP_EQ,
- anon_sym_PIPE_PIPE_EQ,
- anon_sym_QMARK_QMARK_EQ,
- ACTIONS(3404), 16,
- sym__ternary_qmark,
- anon_sym_as,
- anon_sym_LPAREN,
- anon_sym_of,
- anon_sym_LBRACK,
- anon_sym_DOT,
- anon_sym_QMARK_DOT,
- anon_sym_LT_EQ,
- anon_sym_EQ_EQ_EQ,
- anon_sym_BANG_EQ_EQ,
- anon_sym_GT_EQ,
- anon_sym_instanceof,
- anon_sym_PLUS_PLUS,
- anon_sym_DASH_DASH,
- anon_sym_BQUOTE,
- anon_sym_satisfies,
- ACTIONS(3400), 21,
- anon_sym_STAR,
- anon_sym_BANG,
- anon_sym_in,
- anon_sym_GT,
- anon_sym_AMP_AMP,
- anon_sym_PIPE_PIPE,
- anon_sym_GT_GT,
- anon_sym_GT_GT_GT,
- anon_sym_LT_LT,
- anon_sym_AMP,
- anon_sym_CARET,
- anon_sym_PIPE,
- anon_sym_PLUS,
- anon_sym_DASH,
- anon_sym_SLASH,
- anon_sym_PERCENT,
- anon_sym_STAR_STAR,
- anon_sym_LT,
- anon_sym_EQ_EQ,
- anon_sym_BANG_EQ,
- anon_sym_QMARK_QMARK,
- [16618] = 8,
- ACTIONS(229), 1,
- anon_sym_EQ_GT,
- ACTIONS(841), 1,
- anon_sym_EQ,
- ACTIONS(861), 1,
- anon_sym_in,
- ACTIONS(3584), 1,
- anon_sym_of,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(162), 15,
- sym__ternary_qmark,
- anon_sym_as,
- anon_sym_LPAREN,
- anon_sym_LBRACK,
- anon_sym_DOT,
- anon_sym_QMARK_DOT,
- anon_sym_LT_EQ,
- anon_sym_EQ_EQ_EQ,
- anon_sym_BANG_EQ_EQ,
- anon_sym_GT_EQ,
- anon_sym_instanceof,
- anon_sym_PLUS_PLUS,
- anon_sym_DASH_DASH,
- anon_sym_BQUOTE,
- anon_sym_satisfies,
- ACTIONS(168), 15,
- anon_sym_PLUS_EQ,
- anon_sym_DASH_EQ,
- anon_sym_STAR_EQ,
- anon_sym_SLASH_EQ,
- anon_sym_PERCENT_EQ,
- anon_sym_CARET_EQ,
- anon_sym_AMP_EQ,
- anon_sym_PIPE_EQ,
- anon_sym_GT_GT_EQ,
- anon_sym_GT_GT_GT_EQ,
- anon_sym_LT_LT_EQ,
- anon_sym_STAR_STAR_EQ,
- anon_sym_AMP_AMP_EQ,
- anon_sym_PIPE_PIPE_EQ,
- anon_sym_QMARK_QMARK_EQ,
- ACTIONS(122), 20,
- anon_sym_STAR,
- anon_sym_BANG,
- anon_sym_GT,
- anon_sym_AMP_AMP,
- anon_sym_PIPE_PIPE,
- anon_sym_GT_GT,
- anon_sym_GT_GT_GT,
- anon_sym_LT_LT,
- anon_sym_AMP,
- anon_sym_CARET,
- anon_sym_PIPE,
- anon_sym_PLUS,
- anon_sym_DASH,
- anon_sym_SLASH,
- anon_sym_PERCENT,
- anon_sym_STAR_STAR,
- anon_sym_LT,
- anon_sym_EQ_EQ,
- anon_sym_BANG_EQ,
- anon_sym_QMARK_QMARK,
- [16691] = 7,
- ACTIONS(229), 1,
- anon_sym_EQ_GT,
- ACTIONS(841), 1,
- anon_sym_EQ,
- ACTIONS(847), 1,
- anon_sym_COLON,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(162), 15,
- sym__ternary_qmark,
- anon_sym_as,
- anon_sym_LPAREN,
- anon_sym_LBRACK,
- anon_sym_DOT,
- anon_sym_QMARK_DOT,
- anon_sym_LT_EQ,
- anon_sym_EQ_EQ_EQ,
- anon_sym_BANG_EQ_EQ,
- anon_sym_GT_EQ,
- anon_sym_instanceof,
- anon_sym_PLUS_PLUS,
- anon_sym_DASH_DASH,
- anon_sym_BQUOTE,
- anon_sym_satisfies,
- ACTIONS(168), 15,
- anon_sym_PLUS_EQ,
- anon_sym_DASH_EQ,
- anon_sym_STAR_EQ,
- anon_sym_SLASH_EQ,
- anon_sym_PERCENT_EQ,
- anon_sym_CARET_EQ,
- anon_sym_AMP_EQ,
- anon_sym_PIPE_EQ,
- anon_sym_GT_GT_EQ,
- anon_sym_GT_GT_GT_EQ,
- anon_sym_LT_LT_EQ,
- anon_sym_STAR_STAR_EQ,
- anon_sym_AMP_AMP_EQ,
- anon_sym_PIPE_PIPE_EQ,
- anon_sym_QMARK_QMARK_EQ,
- ACTIONS(122), 21,
- anon_sym_STAR,
- anon_sym_BANG,
- anon_sym_in,
- anon_sym_GT,
- anon_sym_AMP_AMP,
- anon_sym_PIPE_PIPE,
- anon_sym_GT_GT,
- anon_sym_GT_GT_GT,
- anon_sym_LT_LT,
- anon_sym_AMP,
- anon_sym_CARET,
- anon_sym_PIPE,
- anon_sym_PLUS,
- anon_sym_DASH,
- anon_sym_SLASH,
- anon_sym_PERCENT,
- anon_sym_STAR_STAR,
- anon_sym_LT,
- anon_sym_EQ_EQ,
- anon_sym_BANG_EQ,
- anon_sym_QMARK_QMARK,
- [16762] = 7,
- ACTIONS(3496), 1,
- anon_sym_RBRACK,
- ACTIONS(3514), 1,
- anon_sym_COMMA,
- ACTIONS(3600), 1,
- anon_sym_EQ,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(3404), 15,
- sym__ternary_qmark,
- anon_sym_as,
- anon_sym_LPAREN,
- anon_sym_LBRACK,
- anon_sym_DOT,
- anon_sym_QMARK_DOT,
- anon_sym_LT_EQ,
- anon_sym_EQ_EQ_EQ,
- anon_sym_BANG_EQ_EQ,
- anon_sym_GT_EQ,
- anon_sym_instanceof,
- anon_sym_PLUS_PLUS,
- anon_sym_DASH_DASH,
- anon_sym_BQUOTE,
- anon_sym_satisfies,
- ACTIONS(3416), 15,
- anon_sym_PLUS_EQ,
- anon_sym_DASH_EQ,
- anon_sym_STAR_EQ,
- anon_sym_SLASH_EQ,
- anon_sym_PERCENT_EQ,
- anon_sym_CARET_EQ,
- anon_sym_AMP_EQ,
- anon_sym_PIPE_EQ,
- anon_sym_GT_GT_EQ,
- anon_sym_GT_GT_GT_EQ,
- anon_sym_LT_LT_EQ,
- anon_sym_STAR_STAR_EQ,
- anon_sym_AMP_AMP_EQ,
- anon_sym_PIPE_PIPE_EQ,
- anon_sym_QMARK_QMARK_EQ,
- ACTIONS(3400), 21,
- anon_sym_STAR,
- anon_sym_BANG,
- anon_sym_in,
- anon_sym_GT,
- anon_sym_AMP_AMP,
- anon_sym_PIPE_PIPE,
- anon_sym_GT_GT,
- anon_sym_GT_GT_GT,
- anon_sym_LT_LT,
- anon_sym_AMP,
- anon_sym_CARET,
- anon_sym_PIPE,
- anon_sym_PLUS,
- anon_sym_DASH,
- anon_sym_SLASH,
- anon_sym_PERCENT,
- anon_sym_STAR_STAR,
- anon_sym_LT,
- anon_sym_EQ_EQ,
- anon_sym_BANG_EQ,
- anon_sym_QMARK_QMARK,
- [16833] = 5,
- ACTIONS(3560), 1,
- anon_sym_EQ,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(3416), 15,
- anon_sym_PLUS_EQ,
- anon_sym_DASH_EQ,
- anon_sym_STAR_EQ,
- anon_sym_SLASH_EQ,
- anon_sym_PERCENT_EQ,
- anon_sym_CARET_EQ,
- anon_sym_AMP_EQ,
- anon_sym_PIPE_EQ,
- anon_sym_GT_GT_EQ,
- anon_sym_GT_GT_GT_EQ,
- anon_sym_LT_LT_EQ,
- anon_sym_STAR_STAR_EQ,
- anon_sym_AMP_AMP_EQ,
- anon_sym_PIPE_PIPE_EQ,
- anon_sym_QMARK_QMARK_EQ,
- ACTIONS(3404), 16,
- sym__ternary_qmark,
- anon_sym_as,
- anon_sym_LPAREN,
- anon_sym_of,
- anon_sym_LBRACK,
- anon_sym_DOT,
- anon_sym_QMARK_DOT,
- anon_sym_LT_EQ,
- anon_sym_EQ_EQ_EQ,
- anon_sym_BANG_EQ_EQ,
- anon_sym_GT_EQ,
- anon_sym_instanceof,
- anon_sym_PLUS_PLUS,
- anon_sym_DASH_DASH,
- anon_sym_BQUOTE,
- anon_sym_satisfies,
- ACTIONS(3400), 21,
- anon_sym_STAR,
- anon_sym_BANG,
- anon_sym_in,
- anon_sym_GT,
- anon_sym_AMP_AMP,
- anon_sym_PIPE_PIPE,
- anon_sym_GT_GT,
- anon_sym_GT_GT_GT,
- anon_sym_LT_LT,
- anon_sym_AMP,
- anon_sym_CARET,
- anon_sym_PIPE,
- anon_sym_PLUS,
- anon_sym_DASH,
- anon_sym_SLASH,
- anon_sym_PERCENT,
- anon_sym_STAR_STAR,
- anon_sym_LT,
- anon_sym_EQ_EQ,
- anon_sym_BANG_EQ,
- anon_sym_QMARK_QMARK,
- [16899] = 30,
- ACTIONS(99), 1,
- anon_sym_AT,
- ACTIONS(1594), 1,
- anon_sym_DQUOTE,
- ACTIONS(1596), 1,
- anon_sym_SQUOTE,
- ACTIONS(2581), 1,
- anon_sym_LT,
- ACTIONS(3205), 1,
- anon_sym_LPAREN,
- ACTIONS(3229), 1,
- anon_sym_abstract,
- ACTIONS(3609), 1,
- anon_sym_export,
- ACTIONS(3611), 1,
- anon_sym_STAR,
- ACTIONS(3617), 1,
- anon_sym_LBRACK,
- ACTIONS(3619), 1,
- anon_sym_async,
- ACTIONS(3621), 1,
- anon_sym_new,
- ACTIONS(3625), 1,
- anon_sym_static,
- ACTIONS(3627), 1,
- anon_sym_readonly,
- ACTIONS(3633), 1,
- anon_sym_override,
- STATE(1244), 1,
- sym_decorator,
- STATE(2674), 1,
- sym_accessibility_modifier,
- STATE(2702), 1,
- sym_override_modifier,
- STATE(3229), 1,
- sym_formal_parameters,
- STATE(4329), 1,
- sym__call_signature,
- STATE(4448), 1,
- aux_sym_export_statement_repeat1,
- STATE(5404), 1,
- sym_type_parameters,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(3215), 2,
- anon_sym_PLUS,
- anon_sym_DASH,
- ACTIONS(3623), 2,
- sym_number,
- sym_private_property_identifier,
- ACTIONS(3629), 2,
- anon_sym_get,
- anon_sym_set,
- ACTIONS(3649), 2,
- anon_sym_RBRACE,
- anon_sym_PIPE_RBRACE,
- ACTIONS(3631), 3,
- anon_sym_public,
- anon_sym_private,
- anon_sym_protected,
- STATE(3028), 3,
- sym_string,
- sym__property_name,
- sym_computed_property_name,
- STATE(4363), 6,
- sym_export_statement,
- sym_method_signature,
- sym_call_signature,
- sym_property_signature,
- sym_construct_signature,
- sym_index_signature,
- ACTIONS(3607), 12,
- anon_sym_type,
- anon_sym_namespace,
- anon_sym_let,
- sym_identifier,
- anon_sym_declare,
- anon_sym_module,
- anon_sym_any,
- anon_sym_number,
- anon_sym_boolean,
- anon_sym_string,
- anon_sym_symbol,
- anon_sym_object,
- [17015] = 30,
- ACTIONS(99), 1,
- anon_sym_AT,
- ACTIONS(1594), 1,
- anon_sym_DQUOTE,
- ACTIONS(1596), 1,
- anon_sym_SQUOTE,
- ACTIONS(2581), 1,
- anon_sym_LT,
- ACTIONS(3205), 1,
- anon_sym_LPAREN,
- ACTIONS(3229), 1,
- anon_sym_abstract,
- ACTIONS(3609), 1,
- anon_sym_export,
- ACTIONS(3611), 1,
- anon_sym_STAR,
- ACTIONS(3617), 1,
- anon_sym_LBRACK,
- ACTIONS(3619), 1,
- anon_sym_async,
- ACTIONS(3621), 1,
- anon_sym_new,
- ACTIONS(3625), 1,
- anon_sym_static,
- ACTIONS(3627), 1,
- anon_sym_readonly,
- ACTIONS(3633), 1,
- anon_sym_override,
- STATE(1244), 1,
- sym_decorator,
- STATE(2674), 1,
- sym_accessibility_modifier,
- STATE(2702), 1,
- sym_override_modifier,
- STATE(3229), 1,
- sym_formal_parameters,
- STATE(4329), 1,
- sym__call_signature,
- STATE(4448), 1,
- aux_sym_export_statement_repeat1,
- STATE(5404), 1,
- sym_type_parameters,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(3215), 2,
- anon_sym_PLUS,
- anon_sym_DASH,
- ACTIONS(3623), 2,
- sym_number,
- sym_private_property_identifier,
- ACTIONS(3629), 2,
- anon_sym_get,
- anon_sym_set,
- ACTIONS(3651), 2,
- anon_sym_RBRACE,
- anon_sym_PIPE_RBRACE,
- ACTIONS(3631), 3,
- anon_sym_public,
- anon_sym_private,
- anon_sym_protected,
- STATE(3028), 3,
- sym_string,
- sym__property_name,
- sym_computed_property_name,
- STATE(4363), 6,
- sym_export_statement,
- sym_method_signature,
- sym_call_signature,
- sym_property_signature,
- sym_construct_signature,
- sym_index_signature,
- ACTIONS(3607), 12,
- anon_sym_type,
- anon_sym_namespace,
- anon_sym_let,
- sym_identifier,
- anon_sym_declare,
- anon_sym_module,
- anon_sym_any,
- anon_sym_number,
- anon_sym_boolean,
- anon_sym_string,
- anon_sym_symbol,
- anon_sym_object,
- [17131] = 30,
- ACTIONS(99), 1,
- anon_sym_AT,
- ACTIONS(1594), 1,
- anon_sym_DQUOTE,
- ACTIONS(1596), 1,
- anon_sym_SQUOTE,
- ACTIONS(2581), 1,
- anon_sym_LT,
- ACTIONS(3205), 1,
- anon_sym_LPAREN,
- ACTIONS(3229), 1,
- anon_sym_abstract,
- ACTIONS(3609), 1,
- anon_sym_export,
- ACTIONS(3611), 1,
- anon_sym_STAR,
- ACTIONS(3617), 1,
- anon_sym_LBRACK,
- ACTIONS(3619), 1,
- anon_sym_async,
- ACTIONS(3621), 1,
- anon_sym_new,
- ACTIONS(3625), 1,
- anon_sym_static,
- ACTIONS(3627), 1,
- anon_sym_readonly,
- ACTIONS(3633), 1,
- anon_sym_override,
- STATE(1244), 1,
- sym_decorator,
- STATE(2674), 1,
- sym_accessibility_modifier,
- STATE(2702), 1,
- sym_override_modifier,
- STATE(3229), 1,
- sym_formal_parameters,
- STATE(4329), 1,
- sym__call_signature,
- STATE(4448), 1,
- aux_sym_export_statement_repeat1,
- STATE(5404), 1,
- sym_type_parameters,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(3215), 2,
- anon_sym_PLUS,
- anon_sym_DASH,
- ACTIONS(3623), 2,
- sym_number,
- sym_private_property_identifier,
- ACTIONS(3629), 2,
- anon_sym_get,
- anon_sym_set,
- ACTIONS(3653), 2,
- anon_sym_RBRACE,
- anon_sym_PIPE_RBRACE,
- ACTIONS(3631), 3,
- anon_sym_public,
- anon_sym_private,
- anon_sym_protected,
- STATE(3028), 3,
- sym_string,
- sym__property_name,
- sym_computed_property_name,
- STATE(4363), 6,
- sym_export_statement,
- sym_method_signature,
- sym_call_signature,
- sym_property_signature,
- sym_construct_signature,
- sym_index_signature,
- ACTIONS(3607), 12,
- anon_sym_type,
- anon_sym_namespace,
- anon_sym_let,
- sym_identifier,
- anon_sym_declare,
- anon_sym_module,
- anon_sym_any,
- anon_sym_number,
- anon_sym_boolean,
- anon_sym_string,
- anon_sym_symbol,
- anon_sym_object,
- [17247] = 6,
- ACTIONS(229), 1,
- anon_sym_EQ_GT,
- ACTIONS(986), 1,
- anon_sym_EQ,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(162), 15,
- sym__ternary_qmark,
- anon_sym_as,
- anon_sym_LPAREN,
- anon_sym_LBRACK,
- anon_sym_DOT,
- anon_sym_QMARK_DOT,
- anon_sym_LT_EQ,
- anon_sym_EQ_EQ_EQ,
- anon_sym_BANG_EQ_EQ,
- anon_sym_GT_EQ,
- anon_sym_instanceof,
- anon_sym_PLUS_PLUS,
- anon_sym_DASH_DASH,
- anon_sym_BQUOTE,
- anon_sym_satisfies,
- ACTIONS(168), 15,
- anon_sym_PLUS_EQ,
- anon_sym_DASH_EQ,
- anon_sym_STAR_EQ,
- anon_sym_SLASH_EQ,
- anon_sym_PERCENT_EQ,
- anon_sym_CARET_EQ,
- anon_sym_AMP_EQ,
- anon_sym_PIPE_EQ,
- anon_sym_GT_GT_EQ,
- anon_sym_GT_GT_GT_EQ,
- anon_sym_LT_LT_EQ,
- anon_sym_STAR_STAR_EQ,
- anon_sym_AMP_AMP_EQ,
- anon_sym_PIPE_PIPE_EQ,
- anon_sym_QMARK_QMARK_EQ,
- ACTIONS(122), 21,
- anon_sym_STAR,
- anon_sym_BANG,
- anon_sym_in,
- anon_sym_GT,
- anon_sym_AMP_AMP,
- anon_sym_PIPE_PIPE,
- anon_sym_GT_GT,
- anon_sym_GT_GT_GT,
- anon_sym_LT_LT,
- anon_sym_AMP,
- anon_sym_CARET,
- anon_sym_PIPE,
- anon_sym_PLUS,
- anon_sym_DASH,
- anon_sym_SLASH,
- anon_sym_PERCENT,
- anon_sym_STAR_STAR,
- anon_sym_LT,
- anon_sym_EQ_EQ,
- anon_sym_BANG_EQ,
- anon_sym_QMARK_QMARK,
- [17315] = 30,
- ACTIONS(99), 1,
- anon_sym_AT,
- ACTIONS(1594), 1,
- anon_sym_DQUOTE,
- ACTIONS(1596), 1,
- anon_sym_SQUOTE,
- ACTIONS(2581), 1,
- anon_sym_LT,
- ACTIONS(3205), 1,
- anon_sym_LPAREN,
- ACTIONS(3229), 1,
- anon_sym_abstract,
- ACTIONS(3609), 1,
- anon_sym_export,
- ACTIONS(3611), 1,
- anon_sym_STAR,
- ACTIONS(3617), 1,
- anon_sym_LBRACK,
- ACTIONS(3619), 1,
- anon_sym_async,
- ACTIONS(3621), 1,
- anon_sym_new,
- ACTIONS(3625), 1,
- anon_sym_static,
- ACTIONS(3627), 1,
- anon_sym_readonly,
- ACTIONS(3633), 1,
- anon_sym_override,
- STATE(1244), 1,
- sym_decorator,
- STATE(2674), 1,
- sym_accessibility_modifier,
- STATE(2702), 1,
- sym_override_modifier,
- STATE(3229), 1,
- sym_formal_parameters,
- STATE(4329), 1,
- sym__call_signature,
- STATE(4448), 1,
- aux_sym_export_statement_repeat1,
- STATE(5404), 1,
- sym_type_parameters,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(3215), 2,
- anon_sym_PLUS,
- anon_sym_DASH,
- ACTIONS(3623), 2,
- sym_number,
- sym_private_property_identifier,
- ACTIONS(3629), 2,
- anon_sym_get,
- anon_sym_set,
- ACTIONS(3655), 2,
- anon_sym_RBRACE,
- anon_sym_PIPE_RBRACE,
- ACTIONS(3631), 3,
- anon_sym_public,
- anon_sym_private,
- anon_sym_protected,
- STATE(3028), 3,
- sym_string,
- sym__property_name,
- sym_computed_property_name,
- STATE(4363), 6,
- sym_export_statement,
- sym_method_signature,
- sym_call_signature,
- sym_property_signature,
- sym_construct_signature,
- sym_index_signature,
- ACTIONS(3607), 12,
- anon_sym_type,
- anon_sym_namespace,
- anon_sym_let,
- sym_identifier,
- anon_sym_declare,
- anon_sym_module,
- anon_sym_any,
- anon_sym_number,
- anon_sym_boolean,
- anon_sym_string,
- anon_sym_symbol,
- anon_sym_object,
- [17431] = 6,
- ACTIONS(3516), 1,
- anon_sym_EQ_GT,
- ACTIONS(3657), 1,
- anon_sym_EQ,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(3404), 15,
- sym__ternary_qmark,
- anon_sym_as,
- anon_sym_LPAREN,
- anon_sym_LBRACK,
- anon_sym_DOT,
- anon_sym_QMARK_DOT,
- anon_sym_LT_EQ,
- anon_sym_EQ_EQ_EQ,
- anon_sym_BANG_EQ_EQ,
- anon_sym_GT_EQ,
- anon_sym_instanceof,
- anon_sym_PLUS_PLUS,
- anon_sym_DASH_DASH,
- anon_sym_BQUOTE,
- anon_sym_satisfies,
- ACTIONS(3416), 15,
- anon_sym_PLUS_EQ,
- anon_sym_DASH_EQ,
- anon_sym_STAR_EQ,
- anon_sym_SLASH_EQ,
- anon_sym_PERCENT_EQ,
- anon_sym_CARET_EQ,
- anon_sym_AMP_EQ,
- anon_sym_PIPE_EQ,
- anon_sym_GT_GT_EQ,
- anon_sym_GT_GT_GT_EQ,
- anon_sym_LT_LT_EQ,
- anon_sym_STAR_STAR_EQ,
- anon_sym_AMP_AMP_EQ,
- anon_sym_PIPE_PIPE_EQ,
- anon_sym_QMARK_QMARK_EQ,
- ACTIONS(3400), 21,
- anon_sym_STAR,
- anon_sym_BANG,
- anon_sym_in,
- anon_sym_GT,
- anon_sym_AMP_AMP,
- anon_sym_PIPE_PIPE,
- anon_sym_GT_GT,
- anon_sym_GT_GT_GT,
- anon_sym_LT_LT,
- anon_sym_AMP,
- anon_sym_CARET,
- anon_sym_PIPE,
- anon_sym_PLUS,
- anon_sym_DASH,
- anon_sym_SLASH,
- anon_sym_PERCENT,
- anon_sym_STAR_STAR,
- anon_sym_LT,
- anon_sym_EQ_EQ,
- anon_sym_BANG_EQ,
- anon_sym_QMARK_QMARK,
- [17499] = 30,
- ACTIONS(99), 1,
- anon_sym_AT,
- ACTIONS(1594), 1,
- anon_sym_DQUOTE,
- ACTIONS(1596), 1,
- anon_sym_SQUOTE,
- ACTIONS(2581), 1,
- anon_sym_LT,
- ACTIONS(3205), 1,
- anon_sym_LPAREN,
- ACTIONS(3229), 1,
- anon_sym_abstract,
- ACTIONS(3609), 1,
- anon_sym_export,
- ACTIONS(3611), 1,
- anon_sym_STAR,
- ACTIONS(3617), 1,
- anon_sym_LBRACK,
- ACTIONS(3619), 1,
- anon_sym_async,
- ACTIONS(3621), 1,
- anon_sym_new,
- ACTIONS(3625), 1,
- anon_sym_static,
- ACTIONS(3627), 1,
- anon_sym_readonly,
- ACTIONS(3633), 1,
- anon_sym_override,
- STATE(1244), 1,
- sym_decorator,
- STATE(2674), 1,
- sym_accessibility_modifier,
- STATE(2702), 1,
- sym_override_modifier,
- STATE(3229), 1,
- sym_formal_parameters,
- STATE(4329), 1,
- sym__call_signature,
- STATE(4448), 1,
- aux_sym_export_statement_repeat1,
- STATE(5404), 1,
- sym_type_parameters,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(3215), 2,
- anon_sym_PLUS,
- anon_sym_DASH,
- ACTIONS(3623), 2,
- sym_number,
- sym_private_property_identifier,
- ACTIONS(3629), 2,
- anon_sym_get,
- anon_sym_set,
- ACTIONS(3659), 2,
- anon_sym_RBRACE,
- anon_sym_PIPE_RBRACE,
- ACTIONS(3631), 3,
- anon_sym_public,
- anon_sym_private,
- anon_sym_protected,
- STATE(3028), 3,
- sym_string,
- sym__property_name,
- sym_computed_property_name,
- STATE(4363), 6,
- sym_export_statement,
- sym_method_signature,
- sym_call_signature,
- sym_property_signature,
- sym_construct_signature,
- sym_index_signature,
- ACTIONS(3607), 12,
- anon_sym_type,
- anon_sym_namespace,
- anon_sym_let,
- sym_identifier,
- anon_sym_declare,
- anon_sym_module,
- anon_sym_any,
- anon_sym_number,
- anon_sym_boolean,
- anon_sym_string,
- anon_sym_symbol,
- anon_sym_object,
- [17615] = 30,
- ACTIONS(99), 1,
- anon_sym_AT,
- ACTIONS(1594), 1,
- anon_sym_DQUOTE,
- ACTIONS(1596), 1,
- anon_sym_SQUOTE,
- ACTIONS(2581), 1,
- anon_sym_LT,
- ACTIONS(3205), 1,
- anon_sym_LPAREN,
- ACTIONS(3229), 1,
- anon_sym_abstract,
- ACTIONS(3609), 1,
- anon_sym_export,
- ACTIONS(3611), 1,
- anon_sym_STAR,
- ACTIONS(3617), 1,
- anon_sym_LBRACK,
- ACTIONS(3619), 1,
- anon_sym_async,
- ACTIONS(3621), 1,
- anon_sym_new,
- ACTIONS(3625), 1,
- anon_sym_static,
- ACTIONS(3627), 1,
- anon_sym_readonly,
- ACTIONS(3633), 1,
- anon_sym_override,
- STATE(1244), 1,
- sym_decorator,
- STATE(2674), 1,
- sym_accessibility_modifier,
- STATE(2702), 1,
- sym_override_modifier,
- STATE(3229), 1,
- sym_formal_parameters,
- STATE(4329), 1,
- sym__call_signature,
- STATE(4448), 1,
- aux_sym_export_statement_repeat1,
- STATE(5404), 1,
- sym_type_parameters,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(3215), 2,
- anon_sym_PLUS,
- anon_sym_DASH,
- ACTIONS(3623), 2,
- sym_number,
- sym_private_property_identifier,
- ACTIONS(3629), 2,
- anon_sym_get,
- anon_sym_set,
- ACTIONS(3661), 2,
- anon_sym_RBRACE,
- anon_sym_PIPE_RBRACE,
- ACTIONS(3631), 3,
- anon_sym_public,
- anon_sym_private,
- anon_sym_protected,
- STATE(3028), 3,
- sym_string,
- sym__property_name,
- sym_computed_property_name,
- STATE(4363), 6,
- sym_export_statement,
- sym_method_signature,
- sym_call_signature,
- sym_property_signature,
- sym_construct_signature,
- sym_index_signature,
- ACTIONS(3607), 12,
- anon_sym_type,
- anon_sym_namespace,
- anon_sym_let,
- sym_identifier,
- anon_sym_declare,
- anon_sym_module,
- anon_sym_any,
- anon_sym_number,
- anon_sym_boolean,
- anon_sym_string,
- anon_sym_symbol,
- anon_sym_object,
- [17731] = 30,
- ACTIONS(99), 1,
- anon_sym_AT,
- ACTIONS(1594), 1,
- anon_sym_DQUOTE,
- ACTIONS(1596), 1,
- anon_sym_SQUOTE,
- ACTIONS(2581), 1,
- anon_sym_LT,
- ACTIONS(3205), 1,
- anon_sym_LPAREN,
- ACTIONS(3229), 1,
- anon_sym_abstract,
- ACTIONS(3609), 1,
- anon_sym_export,
- ACTIONS(3611), 1,
- anon_sym_STAR,
- ACTIONS(3617), 1,
- anon_sym_LBRACK,
- ACTIONS(3619), 1,
- anon_sym_async,
- ACTIONS(3621), 1,
- anon_sym_new,
- ACTIONS(3625), 1,
- anon_sym_static,
- ACTIONS(3627), 1,
- anon_sym_readonly,
- ACTIONS(3633), 1,
- anon_sym_override,
- STATE(1244), 1,
- sym_decorator,
- STATE(2674), 1,
- sym_accessibility_modifier,
- STATE(2702), 1,
- sym_override_modifier,
- STATE(3229), 1,
- sym_formal_parameters,
- STATE(4329), 1,
- sym__call_signature,
- STATE(4448), 1,
- aux_sym_export_statement_repeat1,
- STATE(5404), 1,
- sym_type_parameters,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(3215), 2,
- anon_sym_PLUS,
- anon_sym_DASH,
- ACTIONS(3623), 2,
- sym_number,
- sym_private_property_identifier,
- ACTIONS(3629), 2,
- anon_sym_get,
- anon_sym_set,
- ACTIONS(3663), 2,
- anon_sym_RBRACE,
- anon_sym_PIPE_RBRACE,
- ACTIONS(3631), 3,
- anon_sym_public,
- anon_sym_private,
- anon_sym_protected,
- STATE(3028), 3,
- sym_string,
- sym__property_name,
- sym_computed_property_name,
- STATE(4363), 6,
- sym_export_statement,
- sym_method_signature,
- sym_call_signature,
- sym_property_signature,
- sym_construct_signature,
- sym_index_signature,
- ACTIONS(3607), 12,
- anon_sym_type,
- anon_sym_namespace,
- anon_sym_let,
- sym_identifier,
- anon_sym_declare,
- anon_sym_module,
- anon_sym_any,
- anon_sym_number,
- anon_sym_boolean,
- anon_sym_string,
- anon_sym_symbol,
- anon_sym_object,
- [17847] = 30,
- ACTIONS(99), 1,
- anon_sym_AT,
- ACTIONS(1594), 1,
- anon_sym_DQUOTE,
- ACTIONS(1596), 1,
- anon_sym_SQUOTE,
- ACTIONS(2581), 1,
- anon_sym_LT,
- ACTIONS(3205), 1,
- anon_sym_LPAREN,
- ACTIONS(3229), 1,
- anon_sym_abstract,
- ACTIONS(3609), 1,
- anon_sym_export,
- ACTIONS(3611), 1,
- anon_sym_STAR,
- ACTIONS(3617), 1,
- anon_sym_LBRACK,
- ACTIONS(3619), 1,
- anon_sym_async,
- ACTIONS(3621), 1,
- anon_sym_new,
- ACTIONS(3625), 1,
- anon_sym_static,
- ACTIONS(3627), 1,
- anon_sym_readonly,
- ACTIONS(3633), 1,
- anon_sym_override,
- STATE(1244), 1,
- sym_decorator,
- STATE(2674), 1,
- sym_accessibility_modifier,
- STATE(2702), 1,
- sym_override_modifier,
- STATE(3229), 1,
- sym_formal_parameters,
- STATE(4329), 1,
- sym__call_signature,
- STATE(4448), 1,
- aux_sym_export_statement_repeat1,
- STATE(5404), 1,
- sym_type_parameters,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(3215), 2,
- anon_sym_PLUS,
- anon_sym_DASH,
- ACTIONS(3623), 2,
- sym_number,
- sym_private_property_identifier,
- ACTIONS(3629), 2,
- anon_sym_get,
- anon_sym_set,
- ACTIONS(3665), 2,
- anon_sym_RBRACE,
- anon_sym_PIPE_RBRACE,
- ACTIONS(3631), 3,
- anon_sym_public,
- anon_sym_private,
- anon_sym_protected,
- STATE(3028), 3,
- sym_string,
- sym__property_name,
- sym_computed_property_name,
- STATE(4363), 6,
- sym_export_statement,
- sym_method_signature,
- sym_call_signature,
- sym_property_signature,
- sym_construct_signature,
- sym_index_signature,
- ACTIONS(3607), 12,
- anon_sym_type,
- anon_sym_namespace,
- anon_sym_let,
- sym_identifier,
- anon_sym_declare,
- anon_sym_module,
- anon_sym_any,
- anon_sym_number,
- anon_sym_boolean,
- anon_sym_string,
- anon_sym_symbol,
- anon_sym_object,
- [17963] = 6,
- ACTIONS(229), 1,
- anon_sym_EQ_GT,
- ACTIONS(974), 1,
- anon_sym_EQ,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(162), 15,
- sym__ternary_qmark,
- anon_sym_as,
- anon_sym_LPAREN,
- anon_sym_LBRACK,
- anon_sym_DOT,
- anon_sym_QMARK_DOT,
- anon_sym_LT_EQ,
- anon_sym_EQ_EQ_EQ,
- anon_sym_BANG_EQ_EQ,
- anon_sym_GT_EQ,
- anon_sym_instanceof,
- anon_sym_PLUS_PLUS,
- anon_sym_DASH_DASH,
- anon_sym_BQUOTE,
- anon_sym_satisfies,
- ACTIONS(168), 15,
- anon_sym_PLUS_EQ,
- anon_sym_DASH_EQ,
- anon_sym_STAR_EQ,
- anon_sym_SLASH_EQ,
- anon_sym_PERCENT_EQ,
- anon_sym_CARET_EQ,
- anon_sym_AMP_EQ,
- anon_sym_PIPE_EQ,
- anon_sym_GT_GT_EQ,
- anon_sym_GT_GT_GT_EQ,
- anon_sym_LT_LT_EQ,
- anon_sym_STAR_STAR_EQ,
- anon_sym_AMP_AMP_EQ,
- anon_sym_PIPE_PIPE_EQ,
- anon_sym_QMARK_QMARK_EQ,
- ACTIONS(122), 21,
- anon_sym_STAR,
- anon_sym_BANG,
- anon_sym_in,
- anon_sym_GT,
- anon_sym_AMP_AMP,
- anon_sym_PIPE_PIPE,
- anon_sym_GT_GT,
- anon_sym_GT_GT_GT,
- anon_sym_LT_LT,
- anon_sym_AMP,
- anon_sym_CARET,
- anon_sym_PIPE,
- anon_sym_PLUS,
- anon_sym_DASH,
- anon_sym_SLASH,
- anon_sym_PERCENT,
- anon_sym_STAR_STAR,
- anon_sym_LT,
- anon_sym_EQ_EQ,
- anon_sym_BANG_EQ,
- anon_sym_QMARK_QMARK,
- [18031] = 6,
- ACTIONS(3516), 1,
- anon_sym_EQ_GT,
- ACTIONS(3667), 1,
- anon_sym_EQ,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(3404), 15,
- sym__ternary_qmark,
- anon_sym_as,
- anon_sym_LPAREN,
- anon_sym_LBRACK,
- anon_sym_DOT,
- anon_sym_QMARK_DOT,
- anon_sym_LT_EQ,
- anon_sym_EQ_EQ_EQ,
- anon_sym_BANG_EQ_EQ,
- anon_sym_GT_EQ,
- anon_sym_instanceof,
- anon_sym_PLUS_PLUS,
- anon_sym_DASH_DASH,
- anon_sym_BQUOTE,
- anon_sym_satisfies,
- ACTIONS(3416), 15,
- anon_sym_PLUS_EQ,
- anon_sym_DASH_EQ,
- anon_sym_STAR_EQ,
- anon_sym_SLASH_EQ,
- anon_sym_PERCENT_EQ,
- anon_sym_CARET_EQ,
- anon_sym_AMP_EQ,
- anon_sym_PIPE_EQ,
- anon_sym_GT_GT_EQ,
- anon_sym_GT_GT_GT_EQ,
- anon_sym_LT_LT_EQ,
- anon_sym_STAR_STAR_EQ,
- anon_sym_AMP_AMP_EQ,
- anon_sym_PIPE_PIPE_EQ,
- anon_sym_QMARK_QMARK_EQ,
- ACTIONS(3400), 21,
- anon_sym_STAR,
- anon_sym_BANG,
- anon_sym_in,
- anon_sym_GT,
- anon_sym_AMP_AMP,
- anon_sym_PIPE_PIPE,
- anon_sym_GT_GT,
- anon_sym_GT_GT_GT,
- anon_sym_LT_LT,
- anon_sym_AMP,
- anon_sym_CARET,
- anon_sym_PIPE,
- anon_sym_PLUS,
- anon_sym_DASH,
- anon_sym_SLASH,
- anon_sym_PERCENT,
- anon_sym_STAR_STAR,
- anon_sym_LT,
- anon_sym_EQ_EQ,
- anon_sym_BANG_EQ,
- anon_sym_QMARK_QMARK,
- [18099] = 30,
- ACTIONS(99), 1,
- anon_sym_AT,
- ACTIONS(1594), 1,
- anon_sym_DQUOTE,
- ACTIONS(1596), 1,
- anon_sym_SQUOTE,
- ACTIONS(2581), 1,
- anon_sym_LT,
- ACTIONS(3205), 1,
- anon_sym_LPAREN,
- ACTIONS(3229), 1,
- anon_sym_abstract,
- ACTIONS(3609), 1,
- anon_sym_export,
- ACTIONS(3611), 1,
- anon_sym_STAR,
- ACTIONS(3617), 1,
- anon_sym_LBRACK,
- ACTIONS(3619), 1,
- anon_sym_async,
- ACTIONS(3621), 1,
- anon_sym_new,
- ACTIONS(3625), 1,
- anon_sym_static,
- ACTIONS(3627), 1,
- anon_sym_readonly,
- ACTIONS(3633), 1,
- anon_sym_override,
- STATE(1244), 1,
- sym_decorator,
- STATE(2674), 1,
- sym_accessibility_modifier,
- STATE(2702), 1,
- sym_override_modifier,
- STATE(3229), 1,
- sym_formal_parameters,
- STATE(4329), 1,
- sym__call_signature,
- STATE(4448), 1,
- aux_sym_export_statement_repeat1,
- STATE(5404), 1,
- sym_type_parameters,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(3215), 2,
- anon_sym_PLUS,
- anon_sym_DASH,
- ACTIONS(3623), 2,
- sym_number,
- sym_private_property_identifier,
- ACTIONS(3629), 2,
- anon_sym_get,
- anon_sym_set,
- ACTIONS(3669), 2,
- anon_sym_RBRACE,
- anon_sym_PIPE_RBRACE,
- ACTIONS(3631), 3,
- anon_sym_public,
- anon_sym_private,
- anon_sym_protected,
- STATE(3028), 3,
- sym_string,
- sym__property_name,
- sym_computed_property_name,
- STATE(4363), 6,
- sym_export_statement,
- sym_method_signature,
- sym_call_signature,
- sym_property_signature,
- sym_construct_signature,
- sym_index_signature,
- ACTIONS(3607), 12,
- anon_sym_type,
- anon_sym_namespace,
- anon_sym_let,
- sym_identifier,
- anon_sym_declare,
- anon_sym_module,
- anon_sym_any,
- anon_sym_number,
- anon_sym_boolean,
- anon_sym_string,
- anon_sym_symbol,
- anon_sym_object,
- [18215] = 30,
- ACTIONS(99), 1,
- anon_sym_AT,
- ACTIONS(1594), 1,
- anon_sym_DQUOTE,
- ACTIONS(1596), 1,
- anon_sym_SQUOTE,
- ACTIONS(2581), 1,
- anon_sym_LT,
- ACTIONS(3205), 1,
- anon_sym_LPAREN,
- ACTIONS(3229), 1,
- anon_sym_abstract,
- ACTIONS(3609), 1,
- anon_sym_export,
- ACTIONS(3611), 1,
- anon_sym_STAR,
- ACTIONS(3617), 1,
- anon_sym_LBRACK,
- ACTIONS(3619), 1,
- anon_sym_async,
- ACTIONS(3621), 1,
- anon_sym_new,
- ACTIONS(3625), 1,
- anon_sym_static,
- ACTIONS(3627), 1,
- anon_sym_readonly,
- ACTIONS(3633), 1,
- anon_sym_override,
- STATE(1244), 1,
- sym_decorator,
- STATE(2674), 1,
- sym_accessibility_modifier,
- STATE(2702), 1,
- sym_override_modifier,
- STATE(3229), 1,
- sym_formal_parameters,
- STATE(4329), 1,
- sym__call_signature,
- STATE(4448), 1,
- aux_sym_export_statement_repeat1,
- STATE(5404), 1,
- sym_type_parameters,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(3215), 2,
- anon_sym_PLUS,
- anon_sym_DASH,
- ACTIONS(3623), 2,
- sym_number,
- sym_private_property_identifier,
- ACTIONS(3629), 2,
- anon_sym_get,
- anon_sym_set,
- ACTIONS(3671), 2,
- anon_sym_RBRACE,
- anon_sym_PIPE_RBRACE,
- ACTIONS(3631), 3,
- anon_sym_public,
- anon_sym_private,
- anon_sym_protected,
- STATE(3028), 3,
- sym_string,
- sym__property_name,
- sym_computed_property_name,
- STATE(4363), 6,
- sym_export_statement,
- sym_method_signature,
- sym_call_signature,
- sym_property_signature,
- sym_construct_signature,
- sym_index_signature,
- ACTIONS(3607), 12,
- anon_sym_type,
- anon_sym_namespace,
- anon_sym_let,
- sym_identifier,
- anon_sym_declare,
- anon_sym_module,
- anon_sym_any,
- anon_sym_number,
- anon_sym_boolean,
- anon_sym_string,
- anon_sym_symbol,
- anon_sym_object,
- [18331] = 30,
- ACTIONS(99), 1,
- anon_sym_AT,
- ACTIONS(1594), 1,
- anon_sym_DQUOTE,
- ACTIONS(1596), 1,
- anon_sym_SQUOTE,
- ACTIONS(2581), 1,
- anon_sym_LT,
- ACTIONS(3205), 1,
- anon_sym_LPAREN,
- ACTIONS(3229), 1,
- anon_sym_abstract,
- ACTIONS(3609), 1,
- anon_sym_export,
- ACTIONS(3611), 1,
- anon_sym_STAR,
- ACTIONS(3617), 1,
- anon_sym_LBRACK,
- ACTIONS(3619), 1,
- anon_sym_async,
- ACTIONS(3621), 1,
- anon_sym_new,
- ACTIONS(3625), 1,
- anon_sym_static,
- ACTIONS(3627), 1,
- anon_sym_readonly,
- ACTIONS(3633), 1,
- anon_sym_override,
- STATE(1244), 1,
- sym_decorator,
- STATE(2674), 1,
- sym_accessibility_modifier,
- STATE(2702), 1,
- sym_override_modifier,
- STATE(3229), 1,
- sym_formal_parameters,
- STATE(4329), 1,
- sym__call_signature,
- STATE(4448), 1,
- aux_sym_export_statement_repeat1,
- STATE(5404), 1,
- sym_type_parameters,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(3215), 2,
- anon_sym_PLUS,
- anon_sym_DASH,
- ACTIONS(3623), 2,
- sym_number,
- sym_private_property_identifier,
- ACTIONS(3629), 2,
- anon_sym_get,
- anon_sym_set,
- ACTIONS(3673), 2,
- anon_sym_RBRACE,
- anon_sym_PIPE_RBRACE,
- ACTIONS(3631), 3,
- anon_sym_public,
- anon_sym_private,
- anon_sym_protected,
- STATE(3028), 3,
- sym_string,
- sym__property_name,
- sym_computed_property_name,
- STATE(4363), 6,
- sym_export_statement,
- sym_method_signature,
- sym_call_signature,
- sym_property_signature,
- sym_construct_signature,
- sym_index_signature,
- ACTIONS(3607), 12,
- anon_sym_type,
- anon_sym_namespace,
- anon_sym_let,
- sym_identifier,
- anon_sym_declare,
- anon_sym_module,
- anon_sym_any,
- anon_sym_number,
- anon_sym_boolean,
- anon_sym_string,
- anon_sym_symbol,
- anon_sym_object,
- [18447] = 6,
- ACTIONS(229), 1,
- anon_sym_EQ_GT,
- ACTIONS(984), 1,
- anon_sym_EQ,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(162), 15,
- sym__ternary_qmark,
- anon_sym_as,
- anon_sym_LPAREN,
- anon_sym_LBRACK,
- anon_sym_DOT,
- anon_sym_QMARK_DOT,
- anon_sym_LT_EQ,
- anon_sym_EQ_EQ_EQ,
- anon_sym_BANG_EQ_EQ,
- anon_sym_GT_EQ,
- anon_sym_instanceof,
- anon_sym_PLUS_PLUS,
- anon_sym_DASH_DASH,
- anon_sym_BQUOTE,
- anon_sym_satisfies,
- ACTIONS(168), 15,
- anon_sym_PLUS_EQ,
- anon_sym_DASH_EQ,
- anon_sym_STAR_EQ,
- anon_sym_SLASH_EQ,
- anon_sym_PERCENT_EQ,
- anon_sym_CARET_EQ,
- anon_sym_AMP_EQ,
- anon_sym_PIPE_EQ,
- anon_sym_GT_GT_EQ,
- anon_sym_GT_GT_GT_EQ,
- anon_sym_LT_LT_EQ,
- anon_sym_STAR_STAR_EQ,
- anon_sym_AMP_AMP_EQ,
- anon_sym_PIPE_PIPE_EQ,
- anon_sym_QMARK_QMARK_EQ,
- ACTIONS(122), 21,
- anon_sym_STAR,
- anon_sym_BANG,
- anon_sym_in,
- anon_sym_GT,
- anon_sym_AMP_AMP,
- anon_sym_PIPE_PIPE,
- anon_sym_GT_GT,
- anon_sym_GT_GT_GT,
- anon_sym_LT_LT,
- anon_sym_AMP,
- anon_sym_CARET,
- anon_sym_PIPE,
- anon_sym_PLUS,
- anon_sym_DASH,
- anon_sym_SLASH,
- anon_sym_PERCENT,
- anon_sym_STAR_STAR,
- anon_sym_LT,
- anon_sym_EQ_EQ,
- anon_sym_BANG_EQ,
- anon_sym_QMARK_QMARK,
- [18515] = 30,
- ACTIONS(99), 1,
- anon_sym_AT,
- ACTIONS(1594), 1,
- anon_sym_DQUOTE,
- ACTIONS(1596), 1,
- anon_sym_SQUOTE,
- ACTIONS(2581), 1,
- anon_sym_LT,
- ACTIONS(3205), 1,
- anon_sym_LPAREN,
- ACTIONS(3229), 1,
- anon_sym_abstract,
- ACTIONS(3609), 1,
- anon_sym_export,
- ACTIONS(3611), 1,
- anon_sym_STAR,
- ACTIONS(3617), 1,
- anon_sym_LBRACK,
- ACTIONS(3619), 1,
- anon_sym_async,
- ACTIONS(3621), 1,
- anon_sym_new,
- ACTIONS(3625), 1,
- anon_sym_static,
- ACTIONS(3627), 1,
- anon_sym_readonly,
- ACTIONS(3633), 1,
- anon_sym_override,
- STATE(1244), 1,
- sym_decorator,
- STATE(2674), 1,
- sym_accessibility_modifier,
- STATE(2702), 1,
- sym_override_modifier,
- STATE(3229), 1,
- sym_formal_parameters,
- STATE(4329), 1,
- sym__call_signature,
- STATE(4448), 1,
- aux_sym_export_statement_repeat1,
- STATE(5404), 1,
- sym_type_parameters,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(3215), 2,
- anon_sym_PLUS,
- anon_sym_DASH,
- ACTIONS(3623), 2,
- sym_number,
- sym_private_property_identifier,
- ACTIONS(3629), 2,
- anon_sym_get,
- anon_sym_set,
- ACTIONS(3675), 2,
- anon_sym_RBRACE,
- anon_sym_PIPE_RBRACE,
- ACTIONS(3631), 3,
- anon_sym_public,
- anon_sym_private,
- anon_sym_protected,
- STATE(3028), 3,
- sym_string,
- sym__property_name,
- sym_computed_property_name,
- STATE(4363), 6,
- sym_export_statement,
- sym_method_signature,
- sym_call_signature,
- sym_property_signature,
- sym_construct_signature,
- sym_index_signature,
- ACTIONS(3607), 12,
- anon_sym_type,
- anon_sym_namespace,
- anon_sym_let,
- sym_identifier,
- anon_sym_declare,
- anon_sym_module,
- anon_sym_any,
- anon_sym_number,
- anon_sym_boolean,
- anon_sym_string,
- anon_sym_symbol,
- anon_sym_object,
- [18631] = 6,
- ACTIONS(3516), 1,
- anon_sym_EQ_GT,
- ACTIONS(3677), 1,
- anon_sym_EQ,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(3404), 15,
- sym__ternary_qmark,
- anon_sym_as,
- anon_sym_LPAREN,
- anon_sym_LBRACK,
- anon_sym_DOT,
- anon_sym_QMARK_DOT,
- anon_sym_LT_EQ,
- anon_sym_EQ_EQ_EQ,
- anon_sym_BANG_EQ_EQ,
- anon_sym_GT_EQ,
- anon_sym_instanceof,
- anon_sym_PLUS_PLUS,
- anon_sym_DASH_DASH,
- anon_sym_BQUOTE,
- anon_sym_satisfies,
- ACTIONS(3416), 15,
- anon_sym_PLUS_EQ,
- anon_sym_DASH_EQ,
- anon_sym_STAR_EQ,
- anon_sym_SLASH_EQ,
- anon_sym_PERCENT_EQ,
- anon_sym_CARET_EQ,
- anon_sym_AMP_EQ,
- anon_sym_PIPE_EQ,
- anon_sym_GT_GT_EQ,
- anon_sym_GT_GT_GT_EQ,
- anon_sym_LT_LT_EQ,
- anon_sym_STAR_STAR_EQ,
- anon_sym_AMP_AMP_EQ,
- anon_sym_PIPE_PIPE_EQ,
- anon_sym_QMARK_QMARK_EQ,
- ACTIONS(3400), 21,
- anon_sym_STAR,
- anon_sym_BANG,
- anon_sym_in,
- anon_sym_GT,
- anon_sym_AMP_AMP,
- anon_sym_PIPE_PIPE,
- anon_sym_GT_GT,
- anon_sym_GT_GT_GT,
- anon_sym_LT_LT,
- anon_sym_AMP,
- anon_sym_CARET,
- anon_sym_PIPE,
- anon_sym_PLUS,
- anon_sym_DASH,
- anon_sym_SLASH,
- anon_sym_PERCENT,
- anon_sym_STAR_STAR,
- anon_sym_LT,
- anon_sym_EQ_EQ,
- anon_sym_BANG_EQ,
- anon_sym_QMARK_QMARK,
- [18699] = 30,
- ACTIONS(99), 1,
- anon_sym_AT,
- ACTIONS(1594), 1,
- anon_sym_DQUOTE,
- ACTIONS(1596), 1,
- anon_sym_SQUOTE,
- ACTIONS(2581), 1,
- anon_sym_LT,
- ACTIONS(3205), 1,
- anon_sym_LPAREN,
- ACTIONS(3229), 1,
- anon_sym_abstract,
- ACTIONS(3609), 1,
- anon_sym_export,
- ACTIONS(3611), 1,
- anon_sym_STAR,
- ACTIONS(3617), 1,
- anon_sym_LBRACK,
- ACTIONS(3619), 1,
- anon_sym_async,
- ACTIONS(3621), 1,
- anon_sym_new,
- ACTIONS(3625), 1,
- anon_sym_static,
- ACTIONS(3627), 1,
- anon_sym_readonly,
- ACTIONS(3633), 1,
- anon_sym_override,
- STATE(1244), 1,
- sym_decorator,
- STATE(2674), 1,
- sym_accessibility_modifier,
- STATE(2702), 1,
- sym_override_modifier,
- STATE(3229), 1,
- sym_formal_parameters,
- STATE(4329), 1,
- sym__call_signature,
- STATE(4448), 1,
- aux_sym_export_statement_repeat1,
- STATE(5404), 1,
- sym_type_parameters,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(3215), 2,
- anon_sym_PLUS,
- anon_sym_DASH,
- ACTIONS(3623), 2,
- sym_number,
- sym_private_property_identifier,
- ACTIONS(3629), 2,
- anon_sym_get,
- anon_sym_set,
- ACTIONS(3679), 2,
- anon_sym_RBRACE,
- anon_sym_PIPE_RBRACE,
- ACTIONS(3631), 3,
- anon_sym_public,
- anon_sym_private,
- anon_sym_protected,
- STATE(3028), 3,
- sym_string,
- sym__property_name,
- sym_computed_property_name,
- STATE(4363), 6,
- sym_export_statement,
- sym_method_signature,
- sym_call_signature,
- sym_property_signature,
- sym_construct_signature,
- sym_index_signature,
- ACTIONS(3607), 12,
- anon_sym_type,
- anon_sym_namespace,
- anon_sym_let,
- sym_identifier,
- anon_sym_declare,
- anon_sym_module,
- anon_sym_any,
- anon_sym_number,
- anon_sym_boolean,
- anon_sym_string,
- anon_sym_symbol,
- anon_sym_object,
- [18815] = 6,
- ACTIONS(3516), 1,
- anon_sym_EQ_GT,
- ACTIONS(3681), 1,
- anon_sym_EQ,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(3404), 15,
- sym__ternary_qmark,
- anon_sym_as,
- anon_sym_LPAREN,
- anon_sym_LBRACK,
- anon_sym_DOT,
- anon_sym_QMARK_DOT,
- anon_sym_LT_EQ,
- anon_sym_EQ_EQ_EQ,
- anon_sym_BANG_EQ_EQ,
- anon_sym_GT_EQ,
- anon_sym_instanceof,
- anon_sym_PLUS_PLUS,
- anon_sym_DASH_DASH,
- anon_sym_BQUOTE,
- anon_sym_satisfies,
- ACTIONS(3416), 15,
- anon_sym_PLUS_EQ,
- anon_sym_DASH_EQ,
- anon_sym_STAR_EQ,
- anon_sym_SLASH_EQ,
- anon_sym_PERCENT_EQ,
- anon_sym_CARET_EQ,
- anon_sym_AMP_EQ,
- anon_sym_PIPE_EQ,
- anon_sym_GT_GT_EQ,
- anon_sym_GT_GT_GT_EQ,
- anon_sym_LT_LT_EQ,
- anon_sym_STAR_STAR_EQ,
- anon_sym_AMP_AMP_EQ,
- anon_sym_PIPE_PIPE_EQ,
- anon_sym_QMARK_QMARK_EQ,
- ACTIONS(3400), 21,
- anon_sym_STAR,
- anon_sym_BANG,
- anon_sym_in,
- anon_sym_GT,
- anon_sym_AMP_AMP,
- anon_sym_PIPE_PIPE,
- anon_sym_GT_GT,
- anon_sym_GT_GT_GT,
- anon_sym_LT_LT,
- anon_sym_AMP,
- anon_sym_CARET,
- anon_sym_PIPE,
- anon_sym_PLUS,
- anon_sym_DASH,
- anon_sym_SLASH,
- anon_sym_PERCENT,
- anon_sym_STAR_STAR,
- anon_sym_LT,
- anon_sym_EQ_EQ,
- anon_sym_BANG_EQ,
- anon_sym_QMARK_QMARK,
- [18883] = 6,
- ACTIONS(3475), 1,
- anon_sym_EQ,
- ACTIONS(3516), 1,
- anon_sym_EQ_GT,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(3404), 15,
- sym__ternary_qmark,
- anon_sym_as,
- anon_sym_LPAREN,
- anon_sym_LBRACK,
- anon_sym_DOT,
- anon_sym_QMARK_DOT,
- anon_sym_LT_EQ,
- anon_sym_EQ_EQ_EQ,
- anon_sym_BANG_EQ_EQ,
- anon_sym_GT_EQ,
- anon_sym_instanceof,
- anon_sym_PLUS_PLUS,
- anon_sym_DASH_DASH,
- anon_sym_BQUOTE,
- anon_sym_satisfies,
- ACTIONS(3416), 15,
- anon_sym_PLUS_EQ,
- anon_sym_DASH_EQ,
- anon_sym_STAR_EQ,
- anon_sym_SLASH_EQ,
- anon_sym_PERCENT_EQ,
- anon_sym_CARET_EQ,
- anon_sym_AMP_EQ,
- anon_sym_PIPE_EQ,
- anon_sym_GT_GT_EQ,
- anon_sym_GT_GT_GT_EQ,
- anon_sym_LT_LT_EQ,
- anon_sym_STAR_STAR_EQ,
- anon_sym_AMP_AMP_EQ,
- anon_sym_PIPE_PIPE_EQ,
- anon_sym_QMARK_QMARK_EQ,
- ACTIONS(3400), 21,
- anon_sym_STAR,
- anon_sym_BANG,
- anon_sym_in,
- anon_sym_GT,
- anon_sym_AMP_AMP,
- anon_sym_PIPE_PIPE,
- anon_sym_GT_GT,
- anon_sym_GT_GT_GT,
- anon_sym_LT_LT,
- anon_sym_AMP,
- anon_sym_CARET,
- anon_sym_PIPE,
- anon_sym_PLUS,
- anon_sym_DASH,
- anon_sym_SLASH,
- anon_sym_PERCENT,
- anon_sym_STAR_STAR,
- anon_sym_LT,
- anon_sym_EQ_EQ,
- anon_sym_BANG_EQ,
- anon_sym_QMARK_QMARK,
- [18951] = 30,
- ACTIONS(99), 1,
- anon_sym_AT,
- ACTIONS(1594), 1,
- anon_sym_DQUOTE,
- ACTIONS(1596), 1,
- anon_sym_SQUOTE,
- ACTIONS(2581), 1,
- anon_sym_LT,
- ACTIONS(3205), 1,
- anon_sym_LPAREN,
- ACTIONS(3229), 1,
- anon_sym_abstract,
- ACTIONS(3609), 1,
- anon_sym_export,
- ACTIONS(3611), 1,
- anon_sym_STAR,
- ACTIONS(3617), 1,
- anon_sym_LBRACK,
- ACTIONS(3619), 1,
- anon_sym_async,
- ACTIONS(3621), 1,
- anon_sym_new,
- ACTIONS(3625), 1,
- anon_sym_static,
- ACTIONS(3627), 1,
- anon_sym_readonly,
- ACTIONS(3633), 1,
- anon_sym_override,
- STATE(1244), 1,
- sym_decorator,
- STATE(2674), 1,
- sym_accessibility_modifier,
- STATE(2702), 1,
- sym_override_modifier,
- STATE(3229), 1,
- sym_formal_parameters,
- STATE(4329), 1,
- sym__call_signature,
- STATE(4448), 1,
- aux_sym_export_statement_repeat1,
- STATE(5404), 1,
- sym_type_parameters,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(3215), 2,
- anon_sym_PLUS,
- anon_sym_DASH,
- ACTIONS(3623), 2,
- sym_number,
- sym_private_property_identifier,
- ACTIONS(3629), 2,
- anon_sym_get,
- anon_sym_set,
- ACTIONS(3683), 2,
- anon_sym_RBRACE,
- anon_sym_PIPE_RBRACE,
- ACTIONS(3631), 3,
- anon_sym_public,
- anon_sym_private,
- anon_sym_protected,
- STATE(3028), 3,
- sym_string,
- sym__property_name,
- sym_computed_property_name,
- STATE(4363), 6,
- sym_export_statement,
- sym_method_signature,
- sym_call_signature,
- sym_property_signature,
- sym_construct_signature,
- sym_index_signature,
- ACTIONS(3607), 12,
- anon_sym_type,
- anon_sym_namespace,
- anon_sym_let,
- sym_identifier,
- anon_sym_declare,
- anon_sym_module,
- anon_sym_any,
- anon_sym_number,
- anon_sym_boolean,
- anon_sym_string,
- anon_sym_symbol,
- anon_sym_object,
- [19067] = 6,
- ACTIONS(3516), 1,
- anon_sym_EQ_GT,
- ACTIONS(3685), 1,
- anon_sym_EQ,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(3404), 15,
- sym__ternary_qmark,
- anon_sym_as,
- anon_sym_LPAREN,
- anon_sym_LBRACK,
- anon_sym_DOT,
- anon_sym_QMARK_DOT,
- anon_sym_LT_EQ,
- anon_sym_EQ_EQ_EQ,
- anon_sym_BANG_EQ_EQ,
- anon_sym_GT_EQ,
- anon_sym_instanceof,
- anon_sym_PLUS_PLUS,
- anon_sym_DASH_DASH,
- anon_sym_BQUOTE,
- anon_sym_satisfies,
- ACTIONS(3416), 15,
- anon_sym_PLUS_EQ,
- anon_sym_DASH_EQ,
- anon_sym_STAR_EQ,
- anon_sym_SLASH_EQ,
- anon_sym_PERCENT_EQ,
- anon_sym_CARET_EQ,
- anon_sym_AMP_EQ,
- anon_sym_PIPE_EQ,
- anon_sym_GT_GT_EQ,
- anon_sym_GT_GT_GT_EQ,
- anon_sym_LT_LT_EQ,
- anon_sym_STAR_STAR_EQ,
- anon_sym_AMP_AMP_EQ,
- anon_sym_PIPE_PIPE_EQ,
- anon_sym_QMARK_QMARK_EQ,
- ACTIONS(3400), 21,
- anon_sym_STAR,
- anon_sym_BANG,
- anon_sym_in,
- anon_sym_GT,
- anon_sym_AMP_AMP,
- anon_sym_PIPE_PIPE,
- anon_sym_GT_GT,
- anon_sym_GT_GT_GT,
- anon_sym_LT_LT,
- anon_sym_AMP,
- anon_sym_CARET,
- anon_sym_PIPE,
- anon_sym_PLUS,
- anon_sym_DASH,
- anon_sym_SLASH,
- anon_sym_PERCENT,
- anon_sym_STAR_STAR,
- anon_sym_LT,
- anon_sym_EQ_EQ,
- anon_sym_BANG_EQ,
- anon_sym_QMARK_QMARK,
- [19135] = 5,
- ACTIONS(3556), 1,
- anon_sym_EQ,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(3416), 15,
- anon_sym_PLUS_EQ,
- anon_sym_DASH_EQ,
- anon_sym_STAR_EQ,
- anon_sym_SLASH_EQ,
- anon_sym_PERCENT_EQ,
- anon_sym_CARET_EQ,
- anon_sym_AMP_EQ,
- anon_sym_PIPE_EQ,
- anon_sym_GT_GT_EQ,
- anon_sym_GT_GT_GT_EQ,
- anon_sym_LT_LT_EQ,
- anon_sym_STAR_STAR_EQ,
- anon_sym_AMP_AMP_EQ,
- anon_sym_PIPE_PIPE_EQ,
- anon_sym_QMARK_QMARK_EQ,
- ACTIONS(3404), 16,
- sym__ternary_qmark,
- anon_sym_as,
- anon_sym_LPAREN,
- anon_sym_LBRACK,
- anon_sym_RBRACK,
- anon_sym_DOT,
- anon_sym_QMARK_DOT,
- anon_sym_LT_EQ,
- anon_sym_EQ_EQ_EQ,
- anon_sym_BANG_EQ_EQ,
- anon_sym_GT_EQ,
- anon_sym_instanceof,
- anon_sym_PLUS_PLUS,
- anon_sym_DASH_DASH,
- anon_sym_BQUOTE,
- anon_sym_satisfies,
- ACTIONS(3400), 21,
- anon_sym_STAR,
- anon_sym_BANG,
- anon_sym_in,
- anon_sym_GT,
- anon_sym_AMP_AMP,
- anon_sym_PIPE_PIPE,
- anon_sym_GT_GT,
- anon_sym_GT_GT_GT,
- anon_sym_LT_LT,
- anon_sym_AMP,
- anon_sym_CARET,
- anon_sym_PIPE,
- anon_sym_PLUS,
- anon_sym_DASH,
- anon_sym_SLASH,
- anon_sym_PERCENT,
- anon_sym_STAR_STAR,
- anon_sym_LT,
- anon_sym_EQ_EQ,
- anon_sym_BANG_EQ,
- anon_sym_QMARK_QMARK,
- [19201] = 6,
- ACTIONS(3516), 1,
- anon_sym_EQ_GT,
- ACTIONS(3687), 1,
- anon_sym_EQ,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(3404), 15,
- sym__ternary_qmark,
- anon_sym_as,
- anon_sym_LPAREN,
- anon_sym_LBRACK,
- anon_sym_DOT,
- anon_sym_QMARK_DOT,
- anon_sym_LT_EQ,
- anon_sym_EQ_EQ_EQ,
- anon_sym_BANG_EQ_EQ,
- anon_sym_GT_EQ,
- anon_sym_instanceof,
- anon_sym_PLUS_PLUS,
- anon_sym_DASH_DASH,
- anon_sym_BQUOTE,
- anon_sym_satisfies,
- ACTIONS(3416), 15,
- anon_sym_PLUS_EQ,
- anon_sym_DASH_EQ,
- anon_sym_STAR_EQ,
- anon_sym_SLASH_EQ,
- anon_sym_PERCENT_EQ,
- anon_sym_CARET_EQ,
- anon_sym_AMP_EQ,
- anon_sym_PIPE_EQ,
- anon_sym_GT_GT_EQ,
- anon_sym_GT_GT_GT_EQ,
- anon_sym_LT_LT_EQ,
- anon_sym_STAR_STAR_EQ,
- anon_sym_AMP_AMP_EQ,
- anon_sym_PIPE_PIPE_EQ,
- anon_sym_QMARK_QMARK_EQ,
- ACTIONS(3400), 21,
- anon_sym_STAR,
- anon_sym_BANG,
- anon_sym_in,
- anon_sym_GT,
- anon_sym_AMP_AMP,
- anon_sym_PIPE_PIPE,
- anon_sym_GT_GT,
- anon_sym_GT_GT_GT,
- anon_sym_LT_LT,
- anon_sym_AMP,
- anon_sym_CARET,
- anon_sym_PIPE,
- anon_sym_PLUS,
- anon_sym_DASH,
- anon_sym_SLASH,
- anon_sym_PERCENT,
- anon_sym_STAR_STAR,
- anon_sym_LT,
- anon_sym_EQ_EQ,
- anon_sym_BANG_EQ,
- anon_sym_QMARK_QMARK,
- [19269] = 6,
- ACTIONS(229), 1,
- anon_sym_EQ_GT,
- ACTIONS(980), 1,
- anon_sym_EQ,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(162), 15,
- sym__ternary_qmark,
- anon_sym_as,
- anon_sym_LPAREN,
- anon_sym_LBRACK,
- anon_sym_DOT,
- anon_sym_QMARK_DOT,
- anon_sym_LT_EQ,
- anon_sym_EQ_EQ_EQ,
- anon_sym_BANG_EQ_EQ,
- anon_sym_GT_EQ,
- anon_sym_instanceof,
- anon_sym_PLUS_PLUS,
- anon_sym_DASH_DASH,
- anon_sym_BQUOTE,
- anon_sym_satisfies,
- ACTIONS(168), 15,
- anon_sym_PLUS_EQ,
- anon_sym_DASH_EQ,
- anon_sym_STAR_EQ,
- anon_sym_SLASH_EQ,
- anon_sym_PERCENT_EQ,
- anon_sym_CARET_EQ,
- anon_sym_AMP_EQ,
- anon_sym_PIPE_EQ,
- anon_sym_GT_GT_EQ,
- anon_sym_GT_GT_GT_EQ,
- anon_sym_LT_LT_EQ,
- anon_sym_STAR_STAR_EQ,
- anon_sym_AMP_AMP_EQ,
- anon_sym_PIPE_PIPE_EQ,
- anon_sym_QMARK_QMARK_EQ,
- ACTIONS(122), 21,
- anon_sym_STAR,
- anon_sym_BANG,
- anon_sym_in,
- anon_sym_GT,
- anon_sym_AMP_AMP,
- anon_sym_PIPE_PIPE,
- anon_sym_GT_GT,
- anon_sym_GT_GT_GT,
- anon_sym_LT_LT,
- anon_sym_AMP,
- anon_sym_CARET,
- anon_sym_PIPE,
- anon_sym_PLUS,
- anon_sym_DASH,
- anon_sym_SLASH,
- anon_sym_PERCENT,
- anon_sym_STAR_STAR,
- anon_sym_LT,
- anon_sym_EQ_EQ,
- anon_sym_BANG_EQ,
- anon_sym_QMARK_QMARK,
- [19337] = 30,
- ACTIONS(99), 1,
- anon_sym_AT,
- ACTIONS(1594), 1,
- anon_sym_DQUOTE,
- ACTIONS(1596), 1,
- anon_sym_SQUOTE,
- ACTIONS(2581), 1,
- anon_sym_LT,
- ACTIONS(3205), 1,
- anon_sym_LPAREN,
- ACTIONS(3229), 1,
- anon_sym_abstract,
- ACTIONS(3609), 1,
- anon_sym_export,
- ACTIONS(3611), 1,
- anon_sym_STAR,
- ACTIONS(3617), 1,
- anon_sym_LBRACK,
- ACTIONS(3619), 1,
- anon_sym_async,
- ACTIONS(3621), 1,
- anon_sym_new,
- ACTIONS(3625), 1,
- anon_sym_static,
- ACTIONS(3627), 1,
- anon_sym_readonly,
- ACTIONS(3633), 1,
- anon_sym_override,
- STATE(1244), 1,
- sym_decorator,
- STATE(2674), 1,
- sym_accessibility_modifier,
- STATE(2702), 1,
- sym_override_modifier,
- STATE(3229), 1,
- sym_formal_parameters,
- STATE(4329), 1,
- sym__call_signature,
- STATE(4448), 1,
- aux_sym_export_statement_repeat1,
- STATE(5404), 1,
- sym_type_parameters,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(3215), 2,
- anon_sym_PLUS,
- anon_sym_DASH,
- ACTIONS(3623), 2,
- sym_number,
- sym_private_property_identifier,
- ACTIONS(3629), 2,
- anon_sym_get,
- anon_sym_set,
- ACTIONS(3689), 2,
- anon_sym_RBRACE,
- anon_sym_PIPE_RBRACE,
- ACTIONS(3631), 3,
- anon_sym_public,
- anon_sym_private,
- anon_sym_protected,
- STATE(3028), 3,
- sym_string,
- sym__property_name,
- sym_computed_property_name,
- STATE(4363), 6,
- sym_export_statement,
- sym_method_signature,
- sym_call_signature,
- sym_property_signature,
- sym_construct_signature,
- sym_index_signature,
- ACTIONS(3607), 12,
- anon_sym_type,
- anon_sym_namespace,
- anon_sym_let,
- sym_identifier,
- anon_sym_declare,
- anon_sym_module,
- anon_sym_any,
- anon_sym_number,
- anon_sym_boolean,
- anon_sym_string,
- anon_sym_symbol,
- anon_sym_object,
- [19453] = 7,
- ACTIONS(3475), 1,
- anon_sym_EQ,
- ACTIONS(3586), 1,
- anon_sym_in,
- ACTIONS(3589), 1,
- anon_sym_of,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(3404), 15,
- sym__ternary_qmark,
- anon_sym_as,
- anon_sym_LPAREN,
- anon_sym_LBRACK,
- anon_sym_DOT,
- anon_sym_QMARK_DOT,
- anon_sym_LT_EQ,
- anon_sym_EQ_EQ_EQ,
- anon_sym_BANG_EQ_EQ,
- anon_sym_GT_EQ,
- anon_sym_instanceof,
- anon_sym_PLUS_PLUS,
- anon_sym_DASH_DASH,
- anon_sym_BQUOTE,
- anon_sym_satisfies,
- ACTIONS(3416), 15,
- anon_sym_PLUS_EQ,
- anon_sym_DASH_EQ,
- anon_sym_STAR_EQ,
- anon_sym_SLASH_EQ,
- anon_sym_PERCENT_EQ,
- anon_sym_CARET_EQ,
- anon_sym_AMP_EQ,
- anon_sym_PIPE_EQ,
- anon_sym_GT_GT_EQ,
- anon_sym_GT_GT_GT_EQ,
- anon_sym_LT_LT_EQ,
- anon_sym_STAR_STAR_EQ,
- anon_sym_AMP_AMP_EQ,
- anon_sym_PIPE_PIPE_EQ,
- anon_sym_QMARK_QMARK_EQ,
- ACTIONS(3400), 20,
- anon_sym_STAR,
- anon_sym_BANG,
- anon_sym_GT,
- anon_sym_AMP_AMP,
- anon_sym_PIPE_PIPE,
- anon_sym_GT_GT,
- anon_sym_GT_GT_GT,
- anon_sym_LT_LT,
- anon_sym_AMP,
- anon_sym_CARET,
- anon_sym_PIPE,
- anon_sym_PLUS,
- anon_sym_DASH,
- anon_sym_SLASH,
- anon_sym_PERCENT,
- anon_sym_STAR_STAR,
- anon_sym_LT,
- anon_sym_EQ_EQ,
- anon_sym_BANG_EQ,
- anon_sym_QMARK_QMARK,
- [19523] = 6,
- ACTIONS(229), 1,
- anon_sym_EQ_GT,
- ACTIONS(972), 1,
- anon_sym_EQ,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(162), 15,
- sym__ternary_qmark,
- anon_sym_as,
- anon_sym_LPAREN,
- anon_sym_LBRACK,
- anon_sym_DOT,
- anon_sym_QMARK_DOT,
- anon_sym_LT_EQ,
- anon_sym_EQ_EQ_EQ,
- anon_sym_BANG_EQ_EQ,
- anon_sym_GT_EQ,
- anon_sym_instanceof,
- anon_sym_PLUS_PLUS,
- anon_sym_DASH_DASH,
- anon_sym_BQUOTE,
- anon_sym_satisfies,
- ACTIONS(168), 15,
- anon_sym_PLUS_EQ,
- anon_sym_DASH_EQ,
- anon_sym_STAR_EQ,
- anon_sym_SLASH_EQ,
- anon_sym_PERCENT_EQ,
- anon_sym_CARET_EQ,
- anon_sym_AMP_EQ,
- anon_sym_PIPE_EQ,
- anon_sym_GT_GT_EQ,
- anon_sym_GT_GT_GT_EQ,
- anon_sym_LT_LT_EQ,
- anon_sym_STAR_STAR_EQ,
- anon_sym_AMP_AMP_EQ,
- anon_sym_PIPE_PIPE_EQ,
- anon_sym_QMARK_QMARK_EQ,
- ACTIONS(122), 21,
- anon_sym_STAR,
- anon_sym_BANG,
- anon_sym_in,
- anon_sym_GT,
- anon_sym_AMP_AMP,
- anon_sym_PIPE_PIPE,
- anon_sym_GT_GT,
- anon_sym_GT_GT_GT,
- anon_sym_LT_LT,
- anon_sym_AMP,
- anon_sym_CARET,
- anon_sym_PIPE,
- anon_sym_PLUS,
- anon_sym_DASH,
- anon_sym_SLASH,
- anon_sym_PERCENT,
- anon_sym_STAR_STAR,
- anon_sym_LT,
- anon_sym_EQ_EQ,
- anon_sym_BANG_EQ,
- anon_sym_QMARK_QMARK,
- [19591] = 6,
- ACTIONS(229), 1,
- anon_sym_EQ_GT,
- ACTIONS(841), 1,
- anon_sym_EQ,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(162), 15,
- sym__ternary_qmark,
- anon_sym_as,
- anon_sym_LPAREN,
- anon_sym_LBRACK,
- anon_sym_DOT,
- anon_sym_QMARK_DOT,
- anon_sym_LT_EQ,
- anon_sym_EQ_EQ_EQ,
- anon_sym_BANG_EQ_EQ,
- anon_sym_GT_EQ,
- anon_sym_instanceof,
- anon_sym_PLUS_PLUS,
- anon_sym_DASH_DASH,
- anon_sym_BQUOTE,
- anon_sym_satisfies,
- ACTIONS(168), 15,
- anon_sym_PLUS_EQ,
- anon_sym_DASH_EQ,
- anon_sym_STAR_EQ,
- anon_sym_SLASH_EQ,
- anon_sym_PERCENT_EQ,
- anon_sym_CARET_EQ,
- anon_sym_AMP_EQ,
- anon_sym_PIPE_EQ,
- anon_sym_GT_GT_EQ,
- anon_sym_GT_GT_GT_EQ,
- anon_sym_LT_LT_EQ,
- anon_sym_STAR_STAR_EQ,
- anon_sym_AMP_AMP_EQ,
- anon_sym_PIPE_PIPE_EQ,
- anon_sym_QMARK_QMARK_EQ,
- ACTIONS(122), 21,
- anon_sym_STAR,
- anon_sym_BANG,
- anon_sym_in,
- anon_sym_GT,
- anon_sym_AMP_AMP,
- anon_sym_PIPE_PIPE,
- anon_sym_GT_GT,
- anon_sym_GT_GT_GT,
- anon_sym_LT_LT,
- anon_sym_AMP,
- anon_sym_CARET,
- anon_sym_PIPE,
- anon_sym_PLUS,
- anon_sym_DASH,
- anon_sym_SLASH,
- anon_sym_PERCENT,
- anon_sym_STAR_STAR,
- anon_sym_LT,
- anon_sym_EQ_EQ,
- anon_sym_BANG_EQ,
- anon_sym_QMARK_QMARK,
- [19659] = 6,
- ACTIONS(3516), 1,
- anon_sym_EQ_GT,
- ACTIONS(3691), 1,
- anon_sym_EQ,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(3404), 15,
- sym__ternary_qmark,
- anon_sym_as,
- anon_sym_LPAREN,
- anon_sym_LBRACK,
- anon_sym_DOT,
- anon_sym_QMARK_DOT,
- anon_sym_LT_EQ,
- anon_sym_EQ_EQ_EQ,
- anon_sym_BANG_EQ_EQ,
- anon_sym_GT_EQ,
- anon_sym_instanceof,
- anon_sym_PLUS_PLUS,
- anon_sym_DASH_DASH,
- anon_sym_BQUOTE,
- anon_sym_satisfies,
- ACTIONS(3416), 15,
- anon_sym_PLUS_EQ,
- anon_sym_DASH_EQ,
- anon_sym_STAR_EQ,
- anon_sym_SLASH_EQ,
- anon_sym_PERCENT_EQ,
- anon_sym_CARET_EQ,
- anon_sym_AMP_EQ,
- anon_sym_PIPE_EQ,
- anon_sym_GT_GT_EQ,
- anon_sym_GT_GT_GT_EQ,
- anon_sym_LT_LT_EQ,
- anon_sym_STAR_STAR_EQ,
- anon_sym_AMP_AMP_EQ,
- anon_sym_PIPE_PIPE_EQ,
- anon_sym_QMARK_QMARK_EQ,
- ACTIONS(3400), 21,
- anon_sym_STAR,
- anon_sym_BANG,
- anon_sym_in,
- anon_sym_GT,
- anon_sym_AMP_AMP,
- anon_sym_PIPE_PIPE,
- anon_sym_GT_GT,
- anon_sym_GT_GT_GT,
- anon_sym_LT_LT,
- anon_sym_AMP,
- anon_sym_CARET,
- anon_sym_PIPE,
- anon_sym_PLUS,
- anon_sym_DASH,
- anon_sym_SLASH,
- anon_sym_PERCENT,
- anon_sym_STAR_STAR,
- anon_sym_LT,
- anon_sym_EQ_EQ,
- anon_sym_BANG_EQ,
- anon_sym_QMARK_QMARK,
- [19727] = 30,
- ACTIONS(99), 1,
- anon_sym_AT,
- ACTIONS(1594), 1,
- anon_sym_DQUOTE,
- ACTIONS(1596), 1,
- anon_sym_SQUOTE,
- ACTIONS(2581), 1,
- anon_sym_LT,
- ACTIONS(3205), 1,
- anon_sym_LPAREN,
- ACTIONS(3229), 1,
- anon_sym_abstract,
- ACTIONS(3609), 1,
- anon_sym_export,
- ACTIONS(3611), 1,
- anon_sym_STAR,
- ACTIONS(3617), 1,
- anon_sym_LBRACK,
- ACTIONS(3619), 1,
- anon_sym_async,
- ACTIONS(3621), 1,
- anon_sym_new,
- ACTIONS(3625), 1,
- anon_sym_static,
- ACTIONS(3627), 1,
- anon_sym_readonly,
- ACTIONS(3633), 1,
- anon_sym_override,
- STATE(1244), 1,
- sym_decorator,
- STATE(2674), 1,
- sym_accessibility_modifier,
- STATE(2702), 1,
- sym_override_modifier,
- STATE(3229), 1,
- sym_formal_parameters,
- STATE(4329), 1,
- sym__call_signature,
- STATE(4448), 1,
- aux_sym_export_statement_repeat1,
- STATE(5404), 1,
- sym_type_parameters,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(3215), 2,
- anon_sym_PLUS,
- anon_sym_DASH,
- ACTIONS(3623), 2,
- sym_number,
- sym_private_property_identifier,
- ACTIONS(3629), 2,
- anon_sym_get,
- anon_sym_set,
- ACTIONS(3693), 2,
- anon_sym_RBRACE,
- anon_sym_PIPE_RBRACE,
- ACTIONS(3631), 3,
- anon_sym_public,
- anon_sym_private,
- anon_sym_protected,
- STATE(3028), 3,
- sym_string,
- sym__property_name,
- sym_computed_property_name,
- STATE(4363), 6,
- sym_export_statement,
- sym_method_signature,
- sym_call_signature,
- sym_property_signature,
- sym_construct_signature,
- sym_index_signature,
- ACTIONS(3607), 12,
- anon_sym_type,
- anon_sym_namespace,
- anon_sym_let,
- sym_identifier,
- anon_sym_declare,
- anon_sym_module,
- anon_sym_any,
- anon_sym_number,
- anon_sym_boolean,
- anon_sym_string,
- anon_sym_symbol,
- anon_sym_object,
- [19843] = 30,
- ACTIONS(99), 1,
- anon_sym_AT,
- ACTIONS(1594), 1,
- anon_sym_DQUOTE,
- ACTIONS(1596), 1,
- anon_sym_SQUOTE,
- ACTIONS(2581), 1,
- anon_sym_LT,
- ACTIONS(3205), 1,
- anon_sym_LPAREN,
- ACTIONS(3229), 1,
- anon_sym_abstract,
- ACTIONS(3609), 1,
- anon_sym_export,
- ACTIONS(3611), 1,
- anon_sym_STAR,
- ACTIONS(3617), 1,
- anon_sym_LBRACK,
- ACTIONS(3619), 1,
- anon_sym_async,
- ACTIONS(3621), 1,
- anon_sym_new,
- ACTIONS(3625), 1,
- anon_sym_static,
- ACTIONS(3627), 1,
- anon_sym_readonly,
- ACTIONS(3633), 1,
- anon_sym_override,
- STATE(1244), 1,
- sym_decorator,
- STATE(2674), 1,
- sym_accessibility_modifier,
- STATE(2702), 1,
- sym_override_modifier,
- STATE(3229), 1,
- sym_formal_parameters,
- STATE(4329), 1,
- sym__call_signature,
- STATE(4448), 1,
- aux_sym_export_statement_repeat1,
- STATE(5404), 1,
- sym_type_parameters,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(3215), 2,
- anon_sym_PLUS,
- anon_sym_DASH,
- ACTIONS(3623), 2,
- sym_number,
- sym_private_property_identifier,
- ACTIONS(3629), 2,
- anon_sym_get,
- anon_sym_set,
- ACTIONS(3695), 2,
- anon_sym_RBRACE,
- anon_sym_PIPE_RBRACE,
- ACTIONS(3631), 3,
- anon_sym_public,
- anon_sym_private,
- anon_sym_protected,
- STATE(3028), 3,
- sym_string,
- sym__property_name,
- sym_computed_property_name,
- STATE(4363), 6,
- sym_export_statement,
- sym_method_signature,
- sym_call_signature,
- sym_property_signature,
- sym_construct_signature,
- sym_index_signature,
- ACTIONS(3607), 12,
- anon_sym_type,
- anon_sym_namespace,
- anon_sym_let,
- sym_identifier,
- anon_sym_declare,
- anon_sym_module,
- anon_sym_any,
- anon_sym_number,
- anon_sym_boolean,
- anon_sym_string,
- anon_sym_symbol,
- anon_sym_object,
- [19959] = 30,
- ACTIONS(99), 1,
- anon_sym_AT,
- ACTIONS(1594), 1,
- anon_sym_DQUOTE,
- ACTIONS(1596), 1,
- anon_sym_SQUOTE,
- ACTIONS(2581), 1,
- anon_sym_LT,
- ACTIONS(3205), 1,
- anon_sym_LPAREN,
- ACTIONS(3229), 1,
- anon_sym_abstract,
- ACTIONS(3609), 1,
- anon_sym_export,
- ACTIONS(3611), 1,
- anon_sym_STAR,
- ACTIONS(3617), 1,
- anon_sym_LBRACK,
- ACTIONS(3619), 1,
- anon_sym_async,
- ACTIONS(3621), 1,
- anon_sym_new,
- ACTIONS(3625), 1,
- anon_sym_static,
- ACTIONS(3627), 1,
- anon_sym_readonly,
- ACTIONS(3633), 1,
- anon_sym_override,
- STATE(1244), 1,
- sym_decorator,
- STATE(2674), 1,
- sym_accessibility_modifier,
- STATE(2702), 1,
- sym_override_modifier,
- STATE(3229), 1,
- sym_formal_parameters,
- STATE(4329), 1,
- sym__call_signature,
- STATE(4448), 1,
- aux_sym_export_statement_repeat1,
- STATE(5404), 1,
- sym_type_parameters,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(3215), 2,
- anon_sym_PLUS,
- anon_sym_DASH,
- ACTIONS(3623), 2,
- sym_number,
- sym_private_property_identifier,
- ACTIONS(3629), 2,
- anon_sym_get,
- anon_sym_set,
- ACTIONS(3697), 2,
- anon_sym_RBRACE,
- anon_sym_PIPE_RBRACE,
- ACTIONS(3631), 3,
- anon_sym_public,
- anon_sym_private,
- anon_sym_protected,
- STATE(3028), 3,
- sym_string,
- sym__property_name,
- sym_computed_property_name,
- STATE(4363), 6,
- sym_export_statement,
- sym_method_signature,
- sym_call_signature,
- sym_property_signature,
- sym_construct_signature,
- sym_index_signature,
- ACTIONS(3607), 12,
- anon_sym_type,
- anon_sym_namespace,
- anon_sym_let,
- sym_identifier,
- anon_sym_declare,
- anon_sym_module,
- anon_sym_any,
- anon_sym_number,
- anon_sym_boolean,
- anon_sym_string,
- anon_sym_symbol,
- anon_sym_object,
- [20075] = 6,
- ACTIONS(3516), 1,
- anon_sym_EQ_GT,
- ACTIONS(3699), 1,
- anon_sym_EQ,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(3404), 15,
- sym__ternary_qmark,
- anon_sym_as,
- anon_sym_LPAREN,
- anon_sym_LBRACK,
- anon_sym_DOT,
- anon_sym_QMARK_DOT,
- anon_sym_LT_EQ,
- anon_sym_EQ_EQ_EQ,
- anon_sym_BANG_EQ_EQ,
- anon_sym_GT_EQ,
- anon_sym_instanceof,
- anon_sym_PLUS_PLUS,
- anon_sym_DASH_DASH,
- anon_sym_BQUOTE,
- anon_sym_satisfies,
- ACTIONS(3416), 15,
- anon_sym_PLUS_EQ,
- anon_sym_DASH_EQ,
- anon_sym_STAR_EQ,
- anon_sym_SLASH_EQ,
- anon_sym_PERCENT_EQ,
- anon_sym_CARET_EQ,
- anon_sym_AMP_EQ,
- anon_sym_PIPE_EQ,
- anon_sym_GT_GT_EQ,
- anon_sym_GT_GT_GT_EQ,
- anon_sym_LT_LT_EQ,
- anon_sym_STAR_STAR_EQ,
- anon_sym_AMP_AMP_EQ,
- anon_sym_PIPE_PIPE_EQ,
- anon_sym_QMARK_QMARK_EQ,
- ACTIONS(3400), 21,
- anon_sym_STAR,
- anon_sym_BANG,
- anon_sym_in,
- anon_sym_GT,
- anon_sym_AMP_AMP,
- anon_sym_PIPE_PIPE,
- anon_sym_GT_GT,
- anon_sym_GT_GT_GT,
- anon_sym_LT_LT,
- anon_sym_AMP,
- anon_sym_CARET,
- anon_sym_PIPE,
- anon_sym_PLUS,
- anon_sym_DASH,
- anon_sym_SLASH,
- anon_sym_PERCENT,
- anon_sym_STAR_STAR,
- anon_sym_LT,
- anon_sym_EQ_EQ,
- anon_sym_BANG_EQ,
- anon_sym_QMARK_QMARK,
- [20143] = 6,
- ACTIONS(229), 1,
- anon_sym_EQ_GT,
- ACTIONS(978), 1,
- anon_sym_EQ,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(162), 15,
- sym__ternary_qmark,
- anon_sym_as,
- anon_sym_LPAREN,
- anon_sym_LBRACK,
- anon_sym_DOT,
- anon_sym_QMARK_DOT,
- anon_sym_LT_EQ,
- anon_sym_EQ_EQ_EQ,
- anon_sym_BANG_EQ_EQ,
- anon_sym_GT_EQ,
- anon_sym_instanceof,
- anon_sym_PLUS_PLUS,
- anon_sym_DASH_DASH,
- anon_sym_BQUOTE,
- anon_sym_satisfies,
- ACTIONS(168), 15,
- anon_sym_PLUS_EQ,
- anon_sym_DASH_EQ,
- anon_sym_STAR_EQ,
- anon_sym_SLASH_EQ,
- anon_sym_PERCENT_EQ,
- anon_sym_CARET_EQ,
- anon_sym_AMP_EQ,
- anon_sym_PIPE_EQ,
- anon_sym_GT_GT_EQ,
- anon_sym_GT_GT_GT_EQ,
- anon_sym_LT_LT_EQ,
- anon_sym_STAR_STAR_EQ,
- anon_sym_AMP_AMP_EQ,
- anon_sym_PIPE_PIPE_EQ,
- anon_sym_QMARK_QMARK_EQ,
- ACTIONS(122), 21,
- anon_sym_STAR,
- anon_sym_BANG,
- anon_sym_in,
- anon_sym_GT,
- anon_sym_AMP_AMP,
- anon_sym_PIPE_PIPE,
- anon_sym_GT_GT,
- anon_sym_GT_GT_GT,
- anon_sym_LT_LT,
- anon_sym_AMP,
- anon_sym_CARET,
- anon_sym_PIPE,
- anon_sym_PLUS,
- anon_sym_DASH,
- anon_sym_SLASH,
- anon_sym_PERCENT,
- anon_sym_STAR_STAR,
- anon_sym_LT,
- anon_sym_EQ_EQ,
- anon_sym_BANG_EQ,
- anon_sym_QMARK_QMARK,
- [20211] = 6,
- ACTIONS(229), 1,
- anon_sym_EQ_GT,
- ACTIONS(988), 1,
- anon_sym_EQ,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(162), 15,
- sym__ternary_qmark,
- anon_sym_as,
- anon_sym_LPAREN,
- anon_sym_LBRACK,
- anon_sym_DOT,
- anon_sym_QMARK_DOT,
- anon_sym_LT_EQ,
- anon_sym_EQ_EQ_EQ,
- anon_sym_BANG_EQ_EQ,
- anon_sym_GT_EQ,
- anon_sym_instanceof,
- anon_sym_PLUS_PLUS,
- anon_sym_DASH_DASH,
- anon_sym_BQUOTE,
- anon_sym_satisfies,
- ACTIONS(168), 15,
- anon_sym_PLUS_EQ,
- anon_sym_DASH_EQ,
- anon_sym_STAR_EQ,
- anon_sym_SLASH_EQ,
- anon_sym_PERCENT_EQ,
- anon_sym_CARET_EQ,
- anon_sym_AMP_EQ,
- anon_sym_PIPE_EQ,
- anon_sym_GT_GT_EQ,
- anon_sym_GT_GT_GT_EQ,
- anon_sym_LT_LT_EQ,
- anon_sym_STAR_STAR_EQ,
- anon_sym_AMP_AMP_EQ,
- anon_sym_PIPE_PIPE_EQ,
- anon_sym_QMARK_QMARK_EQ,
- ACTIONS(122), 21,
- anon_sym_STAR,
- anon_sym_BANG,
- anon_sym_in,
- anon_sym_GT,
- anon_sym_AMP_AMP,
- anon_sym_PIPE_PIPE,
- anon_sym_GT_GT,
- anon_sym_GT_GT_GT,
- anon_sym_LT_LT,
- anon_sym_AMP,
- anon_sym_CARET,
- anon_sym_PIPE,
- anon_sym_PLUS,
- anon_sym_DASH,
- anon_sym_SLASH,
- anon_sym_PERCENT,
- anon_sym_STAR_STAR,
- anon_sym_LT,
- anon_sym_EQ_EQ,
- anon_sym_BANG_EQ,
- anon_sym_QMARK_QMARK,
- [20279] = 6,
- ACTIONS(3475), 1,
- anon_sym_EQ,
- ACTIONS(3549), 1,
- anon_sym_COLON,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(3404), 15,
- sym__ternary_qmark,
- anon_sym_as,
- anon_sym_LPAREN,
- anon_sym_LBRACK,
- anon_sym_DOT,
- anon_sym_QMARK_DOT,
- anon_sym_LT_EQ,
- anon_sym_EQ_EQ_EQ,
- anon_sym_BANG_EQ_EQ,
- anon_sym_GT_EQ,
- anon_sym_instanceof,
- anon_sym_PLUS_PLUS,
- anon_sym_DASH_DASH,
- anon_sym_BQUOTE,
- anon_sym_satisfies,
- ACTIONS(3416), 15,
- anon_sym_PLUS_EQ,
- anon_sym_DASH_EQ,
- anon_sym_STAR_EQ,
- anon_sym_SLASH_EQ,
- anon_sym_PERCENT_EQ,
- anon_sym_CARET_EQ,
- anon_sym_AMP_EQ,
- anon_sym_PIPE_EQ,
- anon_sym_GT_GT_EQ,
- anon_sym_GT_GT_GT_EQ,
- anon_sym_LT_LT_EQ,
- anon_sym_STAR_STAR_EQ,
- anon_sym_AMP_AMP_EQ,
- anon_sym_PIPE_PIPE_EQ,
- anon_sym_QMARK_QMARK_EQ,
- ACTIONS(3400), 21,
- anon_sym_STAR,
- anon_sym_BANG,
- anon_sym_in,
- anon_sym_GT,
- anon_sym_AMP_AMP,
- anon_sym_PIPE_PIPE,
- anon_sym_GT_GT,
- anon_sym_GT_GT_GT,
- anon_sym_LT_LT,
- anon_sym_AMP,
- anon_sym_CARET,
- anon_sym_PIPE,
- anon_sym_PLUS,
- anon_sym_DASH,
- anon_sym_SLASH,
- anon_sym_PERCENT,
- anon_sym_STAR_STAR,
- anon_sym_LT,
- anon_sym_EQ_EQ,
- anon_sym_BANG_EQ,
- anon_sym_QMARK_QMARK,
- [20347] = 6,
- ACTIONS(229), 1,
- anon_sym_EQ_GT,
- ACTIONS(982), 1,
- anon_sym_EQ,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(162), 15,
- sym__ternary_qmark,
- anon_sym_as,
- anon_sym_LPAREN,
- anon_sym_LBRACK,
- anon_sym_DOT,
- anon_sym_QMARK_DOT,
- anon_sym_LT_EQ,
- anon_sym_EQ_EQ_EQ,
- anon_sym_BANG_EQ_EQ,
- anon_sym_GT_EQ,
- anon_sym_instanceof,
- anon_sym_PLUS_PLUS,
- anon_sym_DASH_DASH,
- anon_sym_BQUOTE,
- anon_sym_satisfies,
- ACTIONS(168), 15,
- anon_sym_PLUS_EQ,
- anon_sym_DASH_EQ,
- anon_sym_STAR_EQ,
- anon_sym_SLASH_EQ,
- anon_sym_PERCENT_EQ,
- anon_sym_CARET_EQ,
- anon_sym_AMP_EQ,
- anon_sym_PIPE_EQ,
- anon_sym_GT_GT_EQ,
- anon_sym_GT_GT_GT_EQ,
- anon_sym_LT_LT_EQ,
- anon_sym_STAR_STAR_EQ,
- anon_sym_AMP_AMP_EQ,
- anon_sym_PIPE_PIPE_EQ,
- anon_sym_QMARK_QMARK_EQ,
- ACTIONS(122), 21,
- anon_sym_STAR,
- anon_sym_BANG,
- anon_sym_in,
- anon_sym_GT,
- anon_sym_AMP_AMP,
- anon_sym_PIPE_PIPE,
- anon_sym_GT_GT,
- anon_sym_GT_GT_GT,
- anon_sym_LT_LT,
- anon_sym_AMP,
- anon_sym_CARET,
- anon_sym_PIPE,
- anon_sym_PLUS,
- anon_sym_DASH,
- anon_sym_SLASH,
- anon_sym_PERCENT,
- anon_sym_STAR_STAR,
- anon_sym_LT,
- anon_sym_EQ_EQ,
- anon_sym_BANG_EQ,
- anon_sym_QMARK_QMARK,
- [20415] = 6,
- ACTIONS(3516), 1,
- anon_sym_EQ_GT,
- ACTIONS(3701), 1,
- anon_sym_EQ,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(3404), 15,
- sym__ternary_qmark,
- anon_sym_as,
- anon_sym_LPAREN,
- anon_sym_LBRACK,
- anon_sym_DOT,
- anon_sym_QMARK_DOT,
- anon_sym_LT_EQ,
- anon_sym_EQ_EQ_EQ,
- anon_sym_BANG_EQ_EQ,
- anon_sym_GT_EQ,
- anon_sym_instanceof,
- anon_sym_PLUS_PLUS,
- anon_sym_DASH_DASH,
- anon_sym_BQUOTE,
- anon_sym_satisfies,
- ACTIONS(3416), 15,
- anon_sym_PLUS_EQ,
- anon_sym_DASH_EQ,
- anon_sym_STAR_EQ,
- anon_sym_SLASH_EQ,
- anon_sym_PERCENT_EQ,
- anon_sym_CARET_EQ,
- anon_sym_AMP_EQ,
- anon_sym_PIPE_EQ,
- anon_sym_GT_GT_EQ,
- anon_sym_GT_GT_GT_EQ,
- anon_sym_LT_LT_EQ,
- anon_sym_STAR_STAR_EQ,
- anon_sym_AMP_AMP_EQ,
- anon_sym_PIPE_PIPE_EQ,
- anon_sym_QMARK_QMARK_EQ,
- ACTIONS(3400), 21,
- anon_sym_STAR,
- anon_sym_BANG,
- anon_sym_in,
- anon_sym_GT,
- anon_sym_AMP_AMP,
- anon_sym_PIPE_PIPE,
- anon_sym_GT_GT,
- anon_sym_GT_GT_GT,
- anon_sym_LT_LT,
- anon_sym_AMP,
- anon_sym_CARET,
- anon_sym_PIPE,
- anon_sym_PLUS,
- anon_sym_DASH,
- anon_sym_SLASH,
- anon_sym_PERCENT,
- anon_sym_STAR_STAR,
- anon_sym_LT,
- anon_sym_EQ_EQ,
- anon_sym_BANG_EQ,
- anon_sym_QMARK_QMARK,
- [20483] = 6,
- ACTIONS(229), 1,
- anon_sym_EQ_GT,
- ACTIONS(976), 1,
- anon_sym_EQ,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(162), 15,
- sym__ternary_qmark,
- anon_sym_as,
- anon_sym_LPAREN,
- anon_sym_LBRACK,
- anon_sym_DOT,
- anon_sym_QMARK_DOT,
- anon_sym_LT_EQ,
- anon_sym_EQ_EQ_EQ,
- anon_sym_BANG_EQ_EQ,
- anon_sym_GT_EQ,
- anon_sym_instanceof,
- anon_sym_PLUS_PLUS,
- anon_sym_DASH_DASH,
- anon_sym_BQUOTE,
- anon_sym_satisfies,
- ACTIONS(168), 15,
- anon_sym_PLUS_EQ,
- anon_sym_DASH_EQ,
- anon_sym_STAR_EQ,
- anon_sym_SLASH_EQ,
- anon_sym_PERCENT_EQ,
- anon_sym_CARET_EQ,
- anon_sym_AMP_EQ,
- anon_sym_PIPE_EQ,
- anon_sym_GT_GT_EQ,
- anon_sym_GT_GT_GT_EQ,
- anon_sym_LT_LT_EQ,
- anon_sym_STAR_STAR_EQ,
- anon_sym_AMP_AMP_EQ,
- anon_sym_PIPE_PIPE_EQ,
- anon_sym_QMARK_QMARK_EQ,
- ACTIONS(122), 21,
- anon_sym_STAR,
- anon_sym_BANG,
- anon_sym_in,
- anon_sym_GT,
- anon_sym_AMP_AMP,
- anon_sym_PIPE_PIPE,
- anon_sym_GT_GT,
- anon_sym_GT_GT_GT,
- anon_sym_LT_LT,
- anon_sym_AMP,
- anon_sym_CARET,
- anon_sym_PIPE,
- anon_sym_PLUS,
- anon_sym_DASH,
- anon_sym_SLASH,
- anon_sym_PERCENT,
- anon_sym_STAR_STAR,
- anon_sym_LT,
- anon_sym_EQ_EQ,
- anon_sym_BANG_EQ,
- anon_sym_QMARK_QMARK,
- [20551] = 5,
- ACTIONS(3691), 1,
- anon_sym_EQ,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(3404), 15,
- sym__ternary_qmark,
- anon_sym_as,
- anon_sym_LPAREN,
- anon_sym_LBRACK,
- anon_sym_DOT,
- anon_sym_QMARK_DOT,
- anon_sym_LT_EQ,
- anon_sym_EQ_EQ_EQ,
- anon_sym_BANG_EQ_EQ,
- anon_sym_GT_EQ,
- anon_sym_instanceof,
- anon_sym_PLUS_PLUS,
- anon_sym_DASH_DASH,
- anon_sym_BQUOTE,
- anon_sym_satisfies,
- ACTIONS(3416), 15,
- anon_sym_PLUS_EQ,
- anon_sym_DASH_EQ,
- anon_sym_STAR_EQ,
- anon_sym_SLASH_EQ,
- anon_sym_PERCENT_EQ,
- anon_sym_CARET_EQ,
- anon_sym_AMP_EQ,
- anon_sym_PIPE_EQ,
- anon_sym_GT_GT_EQ,
- anon_sym_GT_GT_GT_EQ,
- anon_sym_LT_LT_EQ,
- anon_sym_STAR_STAR_EQ,
- anon_sym_AMP_AMP_EQ,
- anon_sym_PIPE_PIPE_EQ,
- anon_sym_QMARK_QMARK_EQ,
- ACTIONS(3400), 21,
- anon_sym_STAR,
- anon_sym_BANG,
- anon_sym_in,
- anon_sym_GT,
- anon_sym_AMP_AMP,
- anon_sym_PIPE_PIPE,
- anon_sym_GT_GT,
- anon_sym_GT_GT_GT,
- anon_sym_LT_LT,
- anon_sym_AMP,
- anon_sym_CARET,
- anon_sym_PIPE,
- anon_sym_PLUS,
- anon_sym_DASH,
- anon_sym_SLASH,
- anon_sym_PERCENT,
- anon_sym_STAR_STAR,
- anon_sym_LT,
- anon_sym_EQ_EQ,
- anon_sym_BANG_EQ,
- anon_sym_QMARK_QMARK,
- [20616] = 5,
- ACTIONS(3699), 1,
- anon_sym_EQ,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(3404), 15,
- sym__ternary_qmark,
- anon_sym_as,
- anon_sym_LPAREN,
- anon_sym_LBRACK,
- anon_sym_DOT,
- anon_sym_QMARK_DOT,
- anon_sym_LT_EQ,
- anon_sym_EQ_EQ_EQ,
- anon_sym_BANG_EQ_EQ,
- anon_sym_GT_EQ,
- anon_sym_instanceof,
- anon_sym_PLUS_PLUS,
- anon_sym_DASH_DASH,
- anon_sym_BQUOTE,
- anon_sym_satisfies,
- ACTIONS(3416), 15,
- anon_sym_PLUS_EQ,
- anon_sym_DASH_EQ,
- anon_sym_STAR_EQ,
- anon_sym_SLASH_EQ,
- anon_sym_PERCENT_EQ,
- anon_sym_CARET_EQ,
- anon_sym_AMP_EQ,
- anon_sym_PIPE_EQ,
- anon_sym_GT_GT_EQ,
- anon_sym_GT_GT_GT_EQ,
- anon_sym_LT_LT_EQ,
- anon_sym_STAR_STAR_EQ,
- anon_sym_AMP_AMP_EQ,
- anon_sym_PIPE_PIPE_EQ,
- anon_sym_QMARK_QMARK_EQ,
- ACTIONS(3400), 21,
- anon_sym_STAR,
- anon_sym_BANG,
- anon_sym_in,
- anon_sym_GT,
- anon_sym_AMP_AMP,
- anon_sym_PIPE_PIPE,
- anon_sym_GT_GT,
- anon_sym_GT_GT_GT,
- anon_sym_LT_LT,
- anon_sym_AMP,
- anon_sym_CARET,
- anon_sym_PIPE,
- anon_sym_PLUS,
- anon_sym_DASH,
- anon_sym_SLASH,
- anon_sym_PERCENT,
- anon_sym_STAR_STAR,
- anon_sym_LT,
- anon_sym_EQ_EQ,
- anon_sym_BANG_EQ,
- anon_sym_QMARK_QMARK,
- [20681] = 5,
- ACTIONS(3701), 1,
- anon_sym_EQ,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(3404), 15,
- sym__ternary_qmark,
- anon_sym_as,
- anon_sym_LPAREN,
- anon_sym_LBRACK,
- anon_sym_DOT,
- anon_sym_QMARK_DOT,
- anon_sym_LT_EQ,
- anon_sym_EQ_EQ_EQ,
- anon_sym_BANG_EQ_EQ,
- anon_sym_GT_EQ,
- anon_sym_instanceof,
- anon_sym_PLUS_PLUS,
- anon_sym_DASH_DASH,
- anon_sym_BQUOTE,
- anon_sym_satisfies,
- ACTIONS(3416), 15,
- anon_sym_PLUS_EQ,
- anon_sym_DASH_EQ,
- anon_sym_STAR_EQ,
- anon_sym_SLASH_EQ,
- anon_sym_PERCENT_EQ,
- anon_sym_CARET_EQ,
- anon_sym_AMP_EQ,
- anon_sym_PIPE_EQ,
- anon_sym_GT_GT_EQ,
- anon_sym_GT_GT_GT_EQ,
- anon_sym_LT_LT_EQ,
- anon_sym_STAR_STAR_EQ,
- anon_sym_AMP_AMP_EQ,
- anon_sym_PIPE_PIPE_EQ,
- anon_sym_QMARK_QMARK_EQ,
- ACTIONS(3400), 21,
- anon_sym_STAR,
- anon_sym_BANG,
- anon_sym_in,
- anon_sym_GT,
- anon_sym_AMP_AMP,
- anon_sym_PIPE_PIPE,
- anon_sym_GT_GT,
- anon_sym_GT_GT_GT,
- anon_sym_LT_LT,
- anon_sym_AMP,
- anon_sym_CARET,
- anon_sym_PIPE,
- anon_sym_PLUS,
- anon_sym_DASH,
- anon_sym_SLASH,
- anon_sym_PERCENT,
- anon_sym_STAR_STAR,
- anon_sym_LT,
- anon_sym_EQ_EQ,
- anon_sym_BANG_EQ,
- anon_sym_QMARK_QMARK,
- [20746] = 5,
- ACTIONS(3685), 1,
- anon_sym_EQ,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(3404), 15,
- sym__ternary_qmark,
- anon_sym_as,
- anon_sym_LPAREN,
- anon_sym_LBRACK,
- anon_sym_DOT,
- anon_sym_QMARK_DOT,
- anon_sym_LT_EQ,
- anon_sym_EQ_EQ_EQ,
- anon_sym_BANG_EQ_EQ,
- anon_sym_GT_EQ,
- anon_sym_instanceof,
- anon_sym_PLUS_PLUS,
- anon_sym_DASH_DASH,
- anon_sym_BQUOTE,
- anon_sym_satisfies,
- ACTIONS(3416), 15,
- anon_sym_PLUS_EQ,
- anon_sym_DASH_EQ,
- anon_sym_STAR_EQ,
- anon_sym_SLASH_EQ,
- anon_sym_PERCENT_EQ,
- anon_sym_CARET_EQ,
- anon_sym_AMP_EQ,
- anon_sym_PIPE_EQ,
- anon_sym_GT_GT_EQ,
- anon_sym_GT_GT_GT_EQ,
- anon_sym_LT_LT_EQ,
- anon_sym_STAR_STAR_EQ,
- anon_sym_AMP_AMP_EQ,
- anon_sym_PIPE_PIPE_EQ,
- anon_sym_QMARK_QMARK_EQ,
- ACTIONS(3400), 21,
- anon_sym_STAR,
- anon_sym_BANG,
- anon_sym_in,
- anon_sym_GT,
- anon_sym_AMP_AMP,
- anon_sym_PIPE_PIPE,
- anon_sym_GT_GT,
- anon_sym_GT_GT_GT,
- anon_sym_LT_LT,
- anon_sym_AMP,
- anon_sym_CARET,
- anon_sym_PIPE,
- anon_sym_PLUS,
- anon_sym_DASH,
- anon_sym_SLASH,
- anon_sym_PERCENT,
- anon_sym_STAR_STAR,
- anon_sym_LT,
- anon_sym_EQ_EQ,
- anon_sym_BANG_EQ,
- anon_sym_QMARK_QMARK,
- [20811] = 5,
- ACTIONS(3657), 1,
- anon_sym_EQ,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(3404), 15,
- sym__ternary_qmark,
- anon_sym_as,
- anon_sym_LPAREN,
- anon_sym_LBRACK,
- anon_sym_DOT,
- anon_sym_QMARK_DOT,
- anon_sym_LT_EQ,
- anon_sym_EQ_EQ_EQ,
- anon_sym_BANG_EQ_EQ,
- anon_sym_GT_EQ,
- anon_sym_instanceof,
- anon_sym_PLUS_PLUS,
- anon_sym_DASH_DASH,
- anon_sym_BQUOTE,
- anon_sym_satisfies,
- ACTIONS(3416), 15,
- anon_sym_PLUS_EQ,
- anon_sym_DASH_EQ,
- anon_sym_STAR_EQ,
- anon_sym_SLASH_EQ,
- anon_sym_PERCENT_EQ,
- anon_sym_CARET_EQ,
- anon_sym_AMP_EQ,
- anon_sym_PIPE_EQ,
- anon_sym_GT_GT_EQ,
- anon_sym_GT_GT_GT_EQ,
- anon_sym_LT_LT_EQ,
- anon_sym_STAR_STAR_EQ,
- anon_sym_AMP_AMP_EQ,
- anon_sym_PIPE_PIPE_EQ,
- anon_sym_QMARK_QMARK_EQ,
- ACTIONS(3400), 21,
- anon_sym_STAR,
- anon_sym_BANG,
- anon_sym_in,
- anon_sym_GT,
- anon_sym_AMP_AMP,
- anon_sym_PIPE_PIPE,
- anon_sym_GT_GT,
- anon_sym_GT_GT_GT,
- anon_sym_LT_LT,
- anon_sym_AMP,
- anon_sym_CARET,
- anon_sym_PIPE,
- anon_sym_PLUS,
- anon_sym_DASH,
- anon_sym_SLASH,
- anon_sym_PERCENT,
- anon_sym_STAR_STAR,
- anon_sym_LT,
- anon_sym_EQ_EQ,
- anon_sym_BANG_EQ,
- anon_sym_QMARK_QMARK,
- [20876] = 5,
- ACTIONS(3667), 1,
- anon_sym_EQ,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(3404), 15,
- sym__ternary_qmark,
- anon_sym_as,
- anon_sym_LPAREN,
- anon_sym_LBRACK,
- anon_sym_DOT,
- anon_sym_QMARK_DOT,
- anon_sym_LT_EQ,
- anon_sym_EQ_EQ_EQ,
- anon_sym_BANG_EQ_EQ,
- anon_sym_GT_EQ,
- anon_sym_instanceof,
- anon_sym_PLUS_PLUS,
- anon_sym_DASH_DASH,
- anon_sym_BQUOTE,
- anon_sym_satisfies,
- ACTIONS(3416), 15,
- anon_sym_PLUS_EQ,
- anon_sym_DASH_EQ,
- anon_sym_STAR_EQ,
- anon_sym_SLASH_EQ,
- anon_sym_PERCENT_EQ,
- anon_sym_CARET_EQ,
- anon_sym_AMP_EQ,
- anon_sym_PIPE_EQ,
- anon_sym_GT_GT_EQ,
- anon_sym_GT_GT_GT_EQ,
- anon_sym_LT_LT_EQ,
- anon_sym_STAR_STAR_EQ,
- anon_sym_AMP_AMP_EQ,
- anon_sym_PIPE_PIPE_EQ,
- anon_sym_QMARK_QMARK_EQ,
- ACTIONS(3400), 21,
- anon_sym_STAR,
- anon_sym_BANG,
- anon_sym_in,
- anon_sym_GT,
- anon_sym_AMP_AMP,
- anon_sym_PIPE_PIPE,
- anon_sym_GT_GT,
- anon_sym_GT_GT_GT,
- anon_sym_LT_LT,
- anon_sym_AMP,
- anon_sym_CARET,
- anon_sym_PIPE,
- anon_sym_PLUS,
- anon_sym_DASH,
- anon_sym_SLASH,
- anon_sym_PERCENT,
- anon_sym_STAR_STAR,
- anon_sym_LT,
- anon_sym_EQ_EQ,
- anon_sym_BANG_EQ,
- anon_sym_QMARK_QMARK,
- [20941] = 5,
- ACTIONS(3681), 1,
- anon_sym_EQ,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(3404), 15,
- sym__ternary_qmark,
- anon_sym_as,
- anon_sym_LPAREN,
- anon_sym_LBRACK,
- anon_sym_DOT,
- anon_sym_QMARK_DOT,
- anon_sym_LT_EQ,
- anon_sym_EQ_EQ_EQ,
- anon_sym_BANG_EQ_EQ,
- anon_sym_GT_EQ,
- anon_sym_instanceof,
- anon_sym_PLUS_PLUS,
- anon_sym_DASH_DASH,
- anon_sym_BQUOTE,
- anon_sym_satisfies,
- ACTIONS(3416), 15,
- anon_sym_PLUS_EQ,
- anon_sym_DASH_EQ,
- anon_sym_STAR_EQ,
- anon_sym_SLASH_EQ,
- anon_sym_PERCENT_EQ,
- anon_sym_CARET_EQ,
- anon_sym_AMP_EQ,
- anon_sym_PIPE_EQ,
- anon_sym_GT_GT_EQ,
- anon_sym_GT_GT_GT_EQ,
- anon_sym_LT_LT_EQ,
- anon_sym_STAR_STAR_EQ,
- anon_sym_AMP_AMP_EQ,
- anon_sym_PIPE_PIPE_EQ,
- anon_sym_QMARK_QMARK_EQ,
- ACTIONS(3400), 21,
- anon_sym_STAR,
- anon_sym_BANG,
- anon_sym_in,
- anon_sym_GT,
- anon_sym_AMP_AMP,
- anon_sym_PIPE_PIPE,
- anon_sym_GT_GT,
- anon_sym_GT_GT_GT,
- anon_sym_LT_LT,
- anon_sym_AMP,
- anon_sym_CARET,
- anon_sym_PIPE,
- anon_sym_PLUS,
- anon_sym_DASH,
- anon_sym_SLASH,
- anon_sym_PERCENT,
- anon_sym_STAR_STAR,
- anon_sym_LT,
- anon_sym_EQ_EQ,
- anon_sym_BANG_EQ,
- anon_sym_QMARK_QMARK,
- [21006] = 5,
- ACTIONS(3677), 1,
- anon_sym_EQ,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(3404), 15,
- sym__ternary_qmark,
- anon_sym_as,
- anon_sym_LPAREN,
- anon_sym_LBRACK,
- anon_sym_DOT,
- anon_sym_QMARK_DOT,
- anon_sym_LT_EQ,
- anon_sym_EQ_EQ_EQ,
- anon_sym_BANG_EQ_EQ,
- anon_sym_GT_EQ,
- anon_sym_instanceof,
- anon_sym_PLUS_PLUS,
- anon_sym_DASH_DASH,
- anon_sym_BQUOTE,
- anon_sym_satisfies,
- ACTIONS(3416), 15,
- anon_sym_PLUS_EQ,
- anon_sym_DASH_EQ,
- anon_sym_STAR_EQ,
- anon_sym_SLASH_EQ,
- anon_sym_PERCENT_EQ,
- anon_sym_CARET_EQ,
- anon_sym_AMP_EQ,
- anon_sym_PIPE_EQ,
- anon_sym_GT_GT_EQ,
- anon_sym_GT_GT_GT_EQ,
- anon_sym_LT_LT_EQ,
- anon_sym_STAR_STAR_EQ,
- anon_sym_AMP_AMP_EQ,
- anon_sym_PIPE_PIPE_EQ,
- anon_sym_QMARK_QMARK_EQ,
- ACTIONS(3400), 21,
- anon_sym_STAR,
- anon_sym_BANG,
- anon_sym_in,
- anon_sym_GT,
- anon_sym_AMP_AMP,
- anon_sym_PIPE_PIPE,
- anon_sym_GT_GT,
- anon_sym_GT_GT_GT,
- anon_sym_LT_LT,
- anon_sym_AMP,
- anon_sym_CARET,
- anon_sym_PIPE,
- anon_sym_PLUS,
- anon_sym_DASH,
- anon_sym_SLASH,
- anon_sym_PERCENT,
- anon_sym_STAR_STAR,
- anon_sym_LT,
- anon_sym_EQ_EQ,
- anon_sym_BANG_EQ,
- anon_sym_QMARK_QMARK,
- [21071] = 5,
- ACTIONS(3687), 1,
- anon_sym_EQ,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(3404), 15,
- sym__ternary_qmark,
- anon_sym_as,
- anon_sym_LPAREN,
- anon_sym_LBRACK,
- anon_sym_DOT,
- anon_sym_QMARK_DOT,
- anon_sym_LT_EQ,
- anon_sym_EQ_EQ_EQ,
- anon_sym_BANG_EQ_EQ,
- anon_sym_GT_EQ,
- anon_sym_instanceof,
- anon_sym_PLUS_PLUS,
- anon_sym_DASH_DASH,
- anon_sym_BQUOTE,
- anon_sym_satisfies,
- ACTIONS(3416), 15,
- anon_sym_PLUS_EQ,
- anon_sym_DASH_EQ,
- anon_sym_STAR_EQ,
- anon_sym_SLASH_EQ,
- anon_sym_PERCENT_EQ,
- anon_sym_CARET_EQ,
- anon_sym_AMP_EQ,
- anon_sym_PIPE_EQ,
- anon_sym_GT_GT_EQ,
- anon_sym_GT_GT_GT_EQ,
- anon_sym_LT_LT_EQ,
- anon_sym_STAR_STAR_EQ,
- anon_sym_AMP_AMP_EQ,
- anon_sym_PIPE_PIPE_EQ,
- anon_sym_QMARK_QMARK_EQ,
- ACTIONS(3400), 21,
- anon_sym_STAR,
- anon_sym_BANG,
- anon_sym_in,
- anon_sym_GT,
- anon_sym_AMP_AMP,
- anon_sym_PIPE_PIPE,
- anon_sym_GT_GT,
- anon_sym_GT_GT_GT,
- anon_sym_LT_LT,
- anon_sym_AMP,
- anon_sym_CARET,
- anon_sym_PIPE,
- anon_sym_PLUS,
- anon_sym_DASH,
- anon_sym_SLASH,
- anon_sym_PERCENT,
- anon_sym_STAR_STAR,
- anon_sym_LT,
- anon_sym_EQ_EQ,
- anon_sym_BANG_EQ,
- anon_sym_QMARK_QMARK,
- [21136] = 29,
- ACTIONS(99), 1,
- anon_sym_AT,
- ACTIONS(1594), 1,
- anon_sym_DQUOTE,
- ACTIONS(1596), 1,
- anon_sym_SQUOTE,
- ACTIONS(2581), 1,
- anon_sym_LT,
- ACTIONS(3205), 1,
- anon_sym_LPAREN,
- ACTIONS(3229), 1,
- anon_sym_abstract,
- ACTIONS(3609), 1,
- anon_sym_export,
- ACTIONS(3611), 1,
- anon_sym_STAR,
- ACTIONS(3617), 1,
- anon_sym_LBRACK,
- ACTIONS(3619), 1,
- anon_sym_async,
- ACTIONS(3621), 1,
- anon_sym_new,
- ACTIONS(3625), 1,
- anon_sym_static,
- ACTIONS(3627), 1,
- anon_sym_readonly,
- ACTIONS(3633), 1,
- anon_sym_override,
- STATE(1244), 1,
- sym_decorator,
- STATE(2674), 1,
- sym_accessibility_modifier,
- STATE(2702), 1,
- sym_override_modifier,
- STATE(3229), 1,
- sym_formal_parameters,
- STATE(4329), 1,
- sym__call_signature,
- STATE(4448), 1,
- aux_sym_export_statement_repeat1,
- STATE(5404), 1,
- sym_type_parameters,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(3215), 2,
- anon_sym_PLUS,
- anon_sym_DASH,
- ACTIONS(3623), 2,
- sym_number,
- sym_private_property_identifier,
- ACTIONS(3629), 2,
- anon_sym_get,
- anon_sym_set,
- ACTIONS(3631), 3,
- anon_sym_public,
- anon_sym_private,
- anon_sym_protected,
- STATE(3028), 3,
- sym_string,
- sym__property_name,
- sym_computed_property_name,
- STATE(3907), 6,
- sym_export_statement,
- sym_method_signature,
- sym_call_signature,
- sym_property_signature,
- sym_construct_signature,
- sym_index_signature,
- ACTIONS(3607), 12,
- anon_sym_type,
- anon_sym_namespace,
- anon_sym_let,
- sym_identifier,
- anon_sym_declare,
- anon_sym_module,
- anon_sym_any,
- anon_sym_number,
- anon_sym_boolean,
- anon_sym_string,
- anon_sym_symbol,
- anon_sym_object,
- [21248] = 29,
- ACTIONS(99), 1,
- anon_sym_AT,
- ACTIONS(1594), 1,
- anon_sym_DQUOTE,
- ACTIONS(1596), 1,
- anon_sym_SQUOTE,
- ACTIONS(2581), 1,
- anon_sym_LT,
- ACTIONS(3205), 1,
- anon_sym_LPAREN,
- ACTIONS(3229), 1,
- anon_sym_abstract,
- ACTIONS(3609), 1,
- anon_sym_export,
- ACTIONS(3611), 1,
- anon_sym_STAR,
- ACTIONS(3617), 1,
- anon_sym_LBRACK,
- ACTIONS(3619), 1,
- anon_sym_async,
- ACTIONS(3621), 1,
- anon_sym_new,
- ACTIONS(3625), 1,
- anon_sym_static,
- ACTIONS(3627), 1,
- anon_sym_readonly,
- ACTIONS(3633), 1,
- anon_sym_override,
- STATE(1244), 1,
- sym_decorator,
- STATE(2674), 1,
- sym_accessibility_modifier,
- STATE(2702), 1,
- sym_override_modifier,
- STATE(3229), 1,
- sym_formal_parameters,
- STATE(4329), 1,
- sym__call_signature,
- STATE(4448), 1,
- aux_sym_export_statement_repeat1,
- STATE(5404), 1,
- sym_type_parameters,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(3215), 2,
- anon_sym_PLUS,
- anon_sym_DASH,
- ACTIONS(3623), 2,
- sym_number,
- sym_private_property_identifier,
- ACTIONS(3629), 2,
- anon_sym_get,
- anon_sym_set,
- ACTIONS(3631), 3,
- anon_sym_public,
- anon_sym_private,
- anon_sym_protected,
- STATE(3028), 3,
- sym_string,
- sym__property_name,
- sym_computed_property_name,
- STATE(3831), 6,
- sym_export_statement,
- sym_method_signature,
- sym_call_signature,
- sym_property_signature,
- sym_construct_signature,
- sym_index_signature,
- ACTIONS(3607), 12,
- anon_sym_type,
- anon_sym_namespace,
- anon_sym_let,
- sym_identifier,
- anon_sym_declare,
- anon_sym_module,
- anon_sym_any,
- anon_sym_number,
- anon_sym_boolean,
- anon_sym_string,
- anon_sym_symbol,
- anon_sym_object,
- [21360] = 29,
- ACTIONS(99), 1,
- anon_sym_AT,
- ACTIONS(1594), 1,
- anon_sym_DQUOTE,
- ACTIONS(1596), 1,
- anon_sym_SQUOTE,
- ACTIONS(2581), 1,
- anon_sym_LT,
- ACTIONS(3205), 1,
- anon_sym_LPAREN,
- ACTIONS(3229), 1,
- anon_sym_abstract,
- ACTIONS(3609), 1,
- anon_sym_export,
- ACTIONS(3611), 1,
- anon_sym_STAR,
- ACTIONS(3617), 1,
- anon_sym_LBRACK,
- ACTIONS(3619), 1,
- anon_sym_async,
- ACTIONS(3621), 1,
- anon_sym_new,
- ACTIONS(3625), 1,
- anon_sym_static,
- ACTIONS(3627), 1,
- anon_sym_readonly,
- ACTIONS(3633), 1,
- anon_sym_override,
- STATE(1244), 1,
- sym_decorator,
- STATE(2674), 1,
- sym_accessibility_modifier,
- STATE(2702), 1,
- sym_override_modifier,
- STATE(3229), 1,
- sym_formal_parameters,
- STATE(4329), 1,
- sym__call_signature,
- STATE(4448), 1,
- aux_sym_export_statement_repeat1,
- STATE(5404), 1,
- sym_type_parameters,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(3215), 2,
- anon_sym_PLUS,
- anon_sym_DASH,
- ACTIONS(3623), 2,
- sym_number,
- sym_private_property_identifier,
- ACTIONS(3629), 2,
- anon_sym_get,
- anon_sym_set,
- ACTIONS(3631), 3,
- anon_sym_public,
- anon_sym_private,
- anon_sym_protected,
- STATE(3028), 3,
- sym_string,
- sym__property_name,
- sym_computed_property_name,
- STATE(3804), 6,
- sym_export_statement,
- sym_method_signature,
- sym_call_signature,
- sym_property_signature,
- sym_construct_signature,
- sym_index_signature,
- ACTIONS(3607), 12,
- anon_sym_type,
- anon_sym_namespace,
- anon_sym_let,
- sym_identifier,
- anon_sym_declare,
- anon_sym_module,
- anon_sym_any,
- anon_sym_number,
- anon_sym_boolean,
- anon_sym_string,
- anon_sym_symbol,
- anon_sym_object,
- [21472] = 29,
- ACTIONS(99), 1,
- anon_sym_AT,
- ACTIONS(1594), 1,
- anon_sym_DQUOTE,
- ACTIONS(1596), 1,
- anon_sym_SQUOTE,
- ACTIONS(2581), 1,
- anon_sym_LT,
- ACTIONS(3205), 1,
- anon_sym_LPAREN,
- ACTIONS(3229), 1,
- anon_sym_abstract,
- ACTIONS(3609), 1,
- anon_sym_export,
- ACTIONS(3611), 1,
- anon_sym_STAR,
- ACTIONS(3617), 1,
- anon_sym_LBRACK,
- ACTIONS(3619), 1,
- anon_sym_async,
- ACTIONS(3621), 1,
- anon_sym_new,
- ACTIONS(3625), 1,
- anon_sym_static,
- ACTIONS(3627), 1,
- anon_sym_readonly,
- ACTIONS(3633), 1,
- anon_sym_override,
- STATE(1244), 1,
- sym_decorator,
- STATE(2674), 1,
- sym_accessibility_modifier,
- STATE(2702), 1,
- sym_override_modifier,
- STATE(3229), 1,
- sym_formal_parameters,
- STATE(4329), 1,
- sym__call_signature,
- STATE(4448), 1,
- aux_sym_export_statement_repeat1,
- STATE(5404), 1,
- sym_type_parameters,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(3215), 2,
- anon_sym_PLUS,
- anon_sym_DASH,
- ACTIONS(3623), 2,
- sym_number,
- sym_private_property_identifier,
- ACTIONS(3629), 2,
- anon_sym_get,
- anon_sym_set,
- ACTIONS(3631), 3,
- anon_sym_public,
- anon_sym_private,
- anon_sym_protected,
- STATE(3028), 3,
- sym_string,
- sym__property_name,
- sym_computed_property_name,
- STATE(4363), 6,
- sym_export_statement,
- sym_method_signature,
- sym_call_signature,
- sym_property_signature,
- sym_construct_signature,
- sym_index_signature,
- ACTIONS(3607), 12,
- anon_sym_type,
- anon_sym_namespace,
- anon_sym_let,
- sym_identifier,
- anon_sym_declare,
- anon_sym_module,
- anon_sym_any,
- anon_sym_number,
- anon_sym_boolean,
- anon_sym_string,
- anon_sym_symbol,
- anon_sym_object,
- [21584] = 29,
- ACTIONS(99), 1,
- anon_sym_AT,
- ACTIONS(1594), 1,
- anon_sym_DQUOTE,
- ACTIONS(1596), 1,
- anon_sym_SQUOTE,
- ACTIONS(2581), 1,
- anon_sym_LT,
- ACTIONS(3205), 1,
- anon_sym_LPAREN,
- ACTIONS(3229), 1,
- anon_sym_abstract,
- ACTIONS(3609), 1,
- anon_sym_export,
- ACTIONS(3611), 1,
- anon_sym_STAR,
- ACTIONS(3617), 1,
- anon_sym_LBRACK,
- ACTIONS(3619), 1,
- anon_sym_async,
- ACTIONS(3621), 1,
- anon_sym_new,
- ACTIONS(3625), 1,
- anon_sym_static,
- ACTIONS(3627), 1,
- anon_sym_readonly,
- ACTIONS(3633), 1,
- anon_sym_override,
- STATE(1244), 1,
- sym_decorator,
- STATE(2674), 1,
- sym_accessibility_modifier,
- STATE(2702), 1,
- sym_override_modifier,
- STATE(3229), 1,
- sym_formal_parameters,
- STATE(4329), 1,
- sym__call_signature,
- STATE(4448), 1,
- aux_sym_export_statement_repeat1,
- STATE(5404), 1,
- sym_type_parameters,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(3215), 2,
- anon_sym_PLUS,
- anon_sym_DASH,
- ACTIONS(3623), 2,
- sym_number,
- sym_private_property_identifier,
- ACTIONS(3629), 2,
- anon_sym_get,
- anon_sym_set,
- ACTIONS(3631), 3,
- anon_sym_public,
- anon_sym_private,
- anon_sym_protected,
- STATE(3028), 3,
- sym_string,
- sym__property_name,
- sym_computed_property_name,
- STATE(3786), 6,
- sym_export_statement,
- sym_method_signature,
- sym_call_signature,
- sym_property_signature,
- sym_construct_signature,
- sym_index_signature,
- ACTIONS(3607), 12,
- anon_sym_type,
- anon_sym_namespace,
- anon_sym_let,
- sym_identifier,
- anon_sym_declare,
- anon_sym_module,
- anon_sym_any,
- anon_sym_number,
- anon_sym_boolean,
- anon_sym_string,
- anon_sym_symbol,
- anon_sym_object,
- [21696] = 29,
- ACTIONS(99), 1,
- anon_sym_AT,
- ACTIONS(1594), 1,
- anon_sym_DQUOTE,
- ACTIONS(1596), 1,
- anon_sym_SQUOTE,
- ACTIONS(2581), 1,
- anon_sym_LT,
- ACTIONS(3205), 1,
- anon_sym_LPAREN,
- ACTIONS(3229), 1,
- anon_sym_abstract,
- ACTIONS(3609), 1,
- anon_sym_export,
- ACTIONS(3611), 1,
- anon_sym_STAR,
- ACTIONS(3617), 1,
- anon_sym_LBRACK,
- ACTIONS(3619), 1,
- anon_sym_async,
- ACTIONS(3621), 1,
- anon_sym_new,
- ACTIONS(3625), 1,
- anon_sym_static,
- ACTIONS(3627), 1,
- anon_sym_readonly,
- ACTIONS(3633), 1,
- anon_sym_override,
- STATE(1244), 1,
- sym_decorator,
- STATE(2674), 1,
- sym_accessibility_modifier,
- STATE(2702), 1,
- sym_override_modifier,
- STATE(3229), 1,
- sym_formal_parameters,
- STATE(4329), 1,
- sym__call_signature,
- STATE(4448), 1,
- aux_sym_export_statement_repeat1,
- STATE(5404), 1,
- sym_type_parameters,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(3215), 2,
- anon_sym_PLUS,
- anon_sym_DASH,
- ACTIONS(3623), 2,
- sym_number,
- sym_private_property_identifier,
- ACTIONS(3629), 2,
- anon_sym_get,
- anon_sym_set,
- ACTIONS(3631), 3,
- anon_sym_public,
- anon_sym_private,
- anon_sym_protected,
- STATE(3028), 3,
- sym_string,
- sym__property_name,
- sym_computed_property_name,
- STATE(3809), 6,
- sym_export_statement,
- sym_method_signature,
- sym_call_signature,
- sym_property_signature,
- sym_construct_signature,
- sym_index_signature,
- ACTIONS(3607), 12,
- anon_sym_type,
- anon_sym_namespace,
- anon_sym_let,
- sym_identifier,
- anon_sym_declare,
- anon_sym_module,
- anon_sym_any,
- anon_sym_number,
- anon_sym_boolean,
- anon_sym_string,
- anon_sym_symbol,
- anon_sym_object,
- [21808] = 29,
- ACTIONS(99), 1,
- anon_sym_AT,
- ACTIONS(1594), 1,
- anon_sym_DQUOTE,
- ACTIONS(1596), 1,
- anon_sym_SQUOTE,
- ACTIONS(2581), 1,
- anon_sym_LT,
- ACTIONS(3205), 1,
- anon_sym_LPAREN,
- ACTIONS(3229), 1,
- anon_sym_abstract,
- ACTIONS(3609), 1,
- anon_sym_export,
- ACTIONS(3611), 1,
- anon_sym_STAR,
- ACTIONS(3617), 1,
- anon_sym_LBRACK,
- ACTIONS(3619), 1,
- anon_sym_async,
- ACTIONS(3621), 1,
- anon_sym_new,
- ACTIONS(3625), 1,
- anon_sym_static,
- ACTIONS(3627), 1,
- anon_sym_readonly,
- ACTIONS(3633), 1,
- anon_sym_override,
- STATE(1244), 1,
- sym_decorator,
- STATE(2674), 1,
- sym_accessibility_modifier,
- STATE(2702), 1,
- sym_override_modifier,
- STATE(3229), 1,
- sym_formal_parameters,
- STATE(4329), 1,
- sym__call_signature,
- STATE(4448), 1,
- aux_sym_export_statement_repeat1,
- STATE(5404), 1,
- sym_type_parameters,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(3215), 2,
- anon_sym_PLUS,
- anon_sym_DASH,
- ACTIONS(3623), 2,
- sym_number,
- sym_private_property_identifier,
- ACTIONS(3629), 2,
- anon_sym_get,
- anon_sym_set,
- ACTIONS(3631), 3,
- anon_sym_public,
- anon_sym_private,
- anon_sym_protected,
- STATE(3028), 3,
- sym_string,
- sym__property_name,
- sym_computed_property_name,
- STATE(3736), 6,
- sym_export_statement,
- sym_method_signature,
- sym_call_signature,
- sym_property_signature,
- sym_construct_signature,
- sym_index_signature,
- ACTIONS(3607), 12,
- anon_sym_type,
- anon_sym_namespace,
- anon_sym_let,
- sym_identifier,
- anon_sym_declare,
- anon_sym_module,
- anon_sym_any,
- anon_sym_number,
- anon_sym_boolean,
- anon_sym_string,
- anon_sym_symbol,
- anon_sym_object,
- [21920] = 29,
- ACTIONS(1594), 1,
- anon_sym_DQUOTE,
- ACTIONS(1596), 1,
- anon_sym_SQUOTE,
- ACTIONS(3617), 1,
- anon_sym_LBRACK,
- ACTIONS(3633), 1,
- anon_sym_override,
- ACTIONS(3703), 1,
- anon_sym_STAR,
- ACTIONS(3705), 1,
- anon_sym_RBRACE,
- ACTIONS(3707), 1,
- anon_sym_SEMI,
- ACTIONS(3709), 1,
- anon_sym_async,
- ACTIONS(3713), 1,
- anon_sym_AT,
- ACTIONS(3715), 1,
- anon_sym_static,
- ACTIONS(3717), 1,
- anon_sym_readonly,
- ACTIONS(3721), 1,
- anon_sym_declare,
- ACTIONS(3723), 1,
- anon_sym_abstract,
- ACTIONS(3725), 1,
- anon_sym_accessor,
- STATE(2436), 1,
- aux_sym_export_statement_repeat1,
- STATE(2564), 1,
- sym_method_definition,
- STATE(2633), 1,
- sym_accessibility_modifier,
- STATE(2697), 1,
- sym_decorator,
- STATE(2698), 1,
- sym_override_modifier,
- STATE(4464), 1,
- sym_method_signature,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(3215), 2,
- anon_sym_PLUS,
- anon_sym_DASH,
- ACTIONS(3711), 2,
- sym_number,
- sym_private_property_identifier,
- ACTIONS(3719), 2,
- anon_sym_get,
- anon_sym_set,
- STATE(1409), 2,
- sym_class_static_block,
- aux_sym_class_body_repeat1,
- ACTIONS(3631), 3,
- anon_sym_public,
- anon_sym_private,
- anon_sym_protected,
- STATE(2955), 3,
- sym_string,
- sym__property_name,
- sym_computed_property_name,
- STATE(5052), 3,
- sym_public_field_definition,
- sym_abstract_method_signature,
- sym_index_signature,
- ACTIONS(3607), 13,
- anon_sym_export,
- anon_sym_type,
- anon_sym_namespace,
- anon_sym_let,
- anon_sym_new,
- sym_identifier,
- anon_sym_module,
- anon_sym_any,
- anon_sym_number,
- anon_sym_boolean,
- anon_sym_string,
- anon_sym_symbol,
- anon_sym_object,
- [22031] = 33,
- ACTIONS(99), 1,
- anon_sym_AT,
- ACTIONS(2229), 1,
- anon_sym_LBRACE,
- ACTIONS(2341), 1,
- anon_sym_namespace,
- ACTIONS(2343), 1,
- anon_sym_import,
- ACTIONS(2345), 1,
- anon_sym_var,
- ACTIONS(2347), 1,
- anon_sym_let,
- ACTIONS(2349), 1,
- anon_sym_const,
- ACTIONS(2351), 1,
- anon_sym_class,
- ACTIONS(2353), 1,
- anon_sym_async,
- ACTIONS(2355), 1,
- anon_sym_function,
- ACTIONS(2357), 1,
- anon_sym_declare,
- ACTIONS(2361), 1,
- anon_sym_abstract,
- ACTIONS(2365), 1,
- anon_sym_interface,
- ACTIONS(2367), 1,
- anon_sym_enum,
- ACTIONS(3727), 1,
- anon_sym_STAR,
- ACTIONS(3729), 1,
- anon_sym_default,
- ACTIONS(3731), 1,
- anon_sym_type,
- ACTIONS(3733), 1,
- anon_sym_EQ,
- ACTIONS(3735), 1,
- anon_sym_as,
- ACTIONS(3737), 1,
- anon_sym_COMMA,
- ACTIONS(3740), 1,
- anon_sym_RBRACE,
- ACTIONS(3745), 1,
- anon_sym_module,
- STATE(1244), 1,
- sym_decorator,
- STATE(4333), 1,
- aux_sym_export_statement_repeat1,
- STATE(4342), 1,
- sym_declaration,
- STATE(4343), 1,
- sym_internal_module,
- STATE(4521), 1,
- sym_export_clause,
- STATE(4672), 1,
- aux_sym_object_pattern_repeat1,
- STATE(5156), 1,
- aux_sym_object_repeat1,
- STATE(5290), 1,
- sym_namespace_export,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(3743), 7,
- sym__automatic_semicolon,
- anon_sym_LPAREN,
- anon_sym_SEMI,
- anon_sym_COLON,
- anon_sym_LT,
- anon_sym_QMARK,
- anon_sym_PIPE_RBRACE,
- STATE(4336), 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,
- [22150] = 29,
- ACTIONS(1594), 1,
- anon_sym_DQUOTE,
- ACTIONS(1596), 1,
- anon_sym_SQUOTE,
- ACTIONS(3617), 1,
- anon_sym_LBRACK,
- ACTIONS(3633), 1,
- anon_sym_override,
- ACTIONS(3703), 1,
- anon_sym_STAR,
- ACTIONS(3709), 1,
- anon_sym_async,
- ACTIONS(3713), 1,
- anon_sym_AT,
- ACTIONS(3715), 1,
- anon_sym_static,
- ACTIONS(3717), 1,
- anon_sym_readonly,
- ACTIONS(3721), 1,
- anon_sym_declare,
- ACTIONS(3723), 1,
- anon_sym_abstract,
- ACTIONS(3725), 1,
- anon_sym_accessor,
- ACTIONS(3747), 1,
- anon_sym_RBRACE,
- ACTIONS(3749), 1,
- anon_sym_SEMI,
- STATE(2436), 1,
- aux_sym_export_statement_repeat1,
- STATE(2564), 1,
- sym_method_definition,
- STATE(2633), 1,
- sym_accessibility_modifier,
- STATE(2697), 1,
- sym_decorator,
- STATE(2698), 1,
- sym_override_modifier,
- STATE(4464), 1,
- sym_method_signature,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(3215), 2,
- anon_sym_PLUS,
- anon_sym_DASH,
- ACTIONS(3711), 2,
- sym_number,
- sym_private_property_identifier,
- ACTIONS(3719), 2,
- anon_sym_get,
- anon_sym_set,
- STATE(1418), 2,
- sym_class_static_block,
- aux_sym_class_body_repeat1,
- ACTIONS(3631), 3,
- anon_sym_public,
- anon_sym_private,
- anon_sym_protected,
- STATE(2955), 3,
- sym_string,
- sym__property_name,
- sym_computed_property_name,
- STATE(5052), 3,
- sym_public_field_definition,
- sym_abstract_method_signature,
- sym_index_signature,
- ACTIONS(3607), 13,
- anon_sym_export,
- anon_sym_type,
- anon_sym_namespace,
- anon_sym_let,
- anon_sym_new,
- sym_identifier,
- anon_sym_module,
- anon_sym_any,
- anon_sym_number,
- anon_sym_boolean,
- anon_sym_string,
- anon_sym_symbol,
- anon_sym_object,
- [22261] = 29,
- ACTIONS(1594), 1,
- anon_sym_DQUOTE,
- ACTIONS(1596), 1,
- anon_sym_SQUOTE,
- ACTIONS(3617), 1,
- anon_sym_LBRACK,
- ACTIONS(3633), 1,
- anon_sym_override,
- ACTIONS(3703), 1,
- anon_sym_STAR,
- ACTIONS(3707), 1,
- anon_sym_SEMI,
- ACTIONS(3709), 1,
- anon_sym_async,
- ACTIONS(3713), 1,
- anon_sym_AT,
- ACTIONS(3715), 1,
- anon_sym_static,
- ACTIONS(3717), 1,
- anon_sym_readonly,
- ACTIONS(3721), 1,
- anon_sym_declare,
- ACTIONS(3723), 1,
- anon_sym_abstract,
- ACTIONS(3725), 1,
- anon_sym_accessor,
- ACTIONS(3751), 1,
- anon_sym_RBRACE,
- STATE(2436), 1,
- aux_sym_export_statement_repeat1,
- STATE(2564), 1,
- sym_method_definition,
- STATE(2633), 1,
- sym_accessibility_modifier,
- STATE(2697), 1,
- sym_decorator,
- STATE(2698), 1,
- sym_override_modifier,
- STATE(4464), 1,
- sym_method_signature,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(3215), 2,
- anon_sym_PLUS,
- anon_sym_DASH,
- ACTIONS(3711), 2,
- sym_number,
- sym_private_property_identifier,
- ACTIONS(3719), 2,
- anon_sym_get,
- anon_sym_set,
- STATE(1409), 2,
- sym_class_static_block,
- aux_sym_class_body_repeat1,
- ACTIONS(3631), 3,
- anon_sym_public,
- anon_sym_private,
- anon_sym_protected,
- STATE(2955), 3,
- sym_string,
- sym__property_name,
- sym_computed_property_name,
- STATE(5052), 3,
- sym_public_field_definition,
- sym_abstract_method_signature,
- sym_index_signature,
- ACTIONS(3607), 13,
- anon_sym_export,
- anon_sym_type,
- anon_sym_namespace,
- anon_sym_let,
- anon_sym_new,
- sym_identifier,
- anon_sym_module,
- anon_sym_any,
- anon_sym_number,
- anon_sym_boolean,
- anon_sym_string,
- anon_sym_symbol,
- anon_sym_object,
- [22372] = 29,
- ACTIONS(1594), 1,
- anon_sym_DQUOTE,
- ACTIONS(1596), 1,
- anon_sym_SQUOTE,
- ACTIONS(3617), 1,
- anon_sym_LBRACK,
- ACTIONS(3633), 1,
- anon_sym_override,
- ACTIONS(3703), 1,
- anon_sym_STAR,
- ACTIONS(3709), 1,
- anon_sym_async,
- ACTIONS(3713), 1,
- anon_sym_AT,
- ACTIONS(3715), 1,
- anon_sym_static,
- ACTIONS(3717), 1,
- anon_sym_readonly,
- ACTIONS(3721), 1,
- anon_sym_declare,
- ACTIONS(3723), 1,
- anon_sym_abstract,
- ACTIONS(3725), 1,
- anon_sym_accessor,
- ACTIONS(3753), 1,
- anon_sym_RBRACE,
- ACTIONS(3755), 1,
- anon_sym_SEMI,
- STATE(2436), 1,
- aux_sym_export_statement_repeat1,
- STATE(2564), 1,
- sym_method_definition,
- STATE(2633), 1,
- sym_accessibility_modifier,
- STATE(2697), 1,
- sym_decorator,
- STATE(2698), 1,
- sym_override_modifier,
- STATE(4464), 1,
- sym_method_signature,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(3215), 2,
- anon_sym_PLUS,
- anon_sym_DASH,
- ACTIONS(3711), 2,
- sym_number,
- sym_private_property_identifier,
- ACTIONS(3719), 2,
- anon_sym_get,
- anon_sym_set,
- STATE(1406), 2,
- sym_class_static_block,
- aux_sym_class_body_repeat1,
- ACTIONS(3631), 3,
- anon_sym_public,
- anon_sym_private,
- anon_sym_protected,
- STATE(2955), 3,
- sym_string,
- sym__property_name,
- sym_computed_property_name,
- STATE(5052), 3,
- sym_public_field_definition,
- sym_abstract_method_signature,
- sym_index_signature,
- ACTIONS(3607), 13,
- anon_sym_export,
- anon_sym_type,
- anon_sym_namespace,
- anon_sym_let,
- anon_sym_new,
- sym_identifier,
- anon_sym_module,
- anon_sym_any,
- anon_sym_number,
- anon_sym_boolean,
- anon_sym_string,
- anon_sym_symbol,
- anon_sym_object,
- [22483] = 29,
- ACTIONS(1594), 1,
- anon_sym_DQUOTE,
- ACTIONS(1596), 1,
- anon_sym_SQUOTE,
- ACTIONS(3617), 1,
- anon_sym_LBRACK,
- ACTIONS(3633), 1,
- anon_sym_override,
- ACTIONS(3703), 1,
- anon_sym_STAR,
- ACTIONS(3709), 1,
- anon_sym_async,
- ACTIONS(3713), 1,
- anon_sym_AT,
- ACTIONS(3715), 1,
- anon_sym_static,
- ACTIONS(3717), 1,
- anon_sym_readonly,
- ACTIONS(3721), 1,
- anon_sym_declare,
- ACTIONS(3723), 1,
- anon_sym_abstract,
- ACTIONS(3725), 1,
- anon_sym_accessor,
- ACTIONS(3757), 1,
- anon_sym_RBRACE,
- ACTIONS(3759), 1,
- anon_sym_SEMI,
- STATE(2436), 1,
- aux_sym_export_statement_repeat1,
- STATE(2564), 1,
- sym_method_definition,
- STATE(2633), 1,
- sym_accessibility_modifier,
- STATE(2697), 1,
- sym_decorator,
- STATE(2698), 1,
- sym_override_modifier,
- STATE(4464), 1,
- sym_method_signature,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(3215), 2,
- anon_sym_PLUS,
- anon_sym_DASH,
- ACTIONS(3711), 2,
- sym_number,
- sym_private_property_identifier,
- ACTIONS(3719), 2,
- anon_sym_get,
- anon_sym_set,
- STATE(1403), 2,
- sym_class_static_block,
- aux_sym_class_body_repeat1,
- ACTIONS(3631), 3,
- anon_sym_public,
- anon_sym_private,
- anon_sym_protected,
- STATE(2955), 3,
- sym_string,
- sym__property_name,
- sym_computed_property_name,
- STATE(5052), 3,
- sym_public_field_definition,
- sym_abstract_method_signature,
- sym_index_signature,
- ACTIONS(3607), 13,
- anon_sym_export,
- anon_sym_type,
- anon_sym_namespace,
- anon_sym_let,
- anon_sym_new,
- sym_identifier,
- anon_sym_module,
- anon_sym_any,
- anon_sym_number,
- anon_sym_boolean,
- anon_sym_string,
- anon_sym_symbol,
- anon_sym_object,
- [22594] = 29,
- ACTIONS(3764), 1,
- anon_sym_STAR,
- ACTIONS(3767), 1,
- anon_sym_RBRACE,
- ACTIONS(3769), 1,
- anon_sym_SEMI,
- ACTIONS(3772), 1,
- anon_sym_LBRACK,
- ACTIONS(3775), 1,
- anon_sym_DQUOTE,
- ACTIONS(3778), 1,
- anon_sym_SQUOTE,
- ACTIONS(3781), 1,
- anon_sym_async,
- ACTIONS(3790), 1,
- anon_sym_AT,
- ACTIONS(3793), 1,
- anon_sym_static,
- ACTIONS(3796), 1,
- anon_sym_readonly,
- ACTIONS(3802), 1,
- anon_sym_declare,
- ACTIONS(3808), 1,
- anon_sym_override,
- ACTIONS(3811), 1,
- anon_sym_abstract,
- ACTIONS(3814), 1,
- anon_sym_accessor,
- STATE(2436), 1,
- aux_sym_export_statement_repeat1,
- STATE(2564), 1,
- sym_method_definition,
- STATE(2633), 1,
- sym_accessibility_modifier,
- STATE(2697), 1,
- sym_decorator,
- STATE(2698), 1,
- sym_override_modifier,
- STATE(4464), 1,
- sym_method_signature,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(3784), 2,
- anon_sym_PLUS,
- anon_sym_DASH,
- ACTIONS(3787), 2,
- sym_number,
- sym_private_property_identifier,
- ACTIONS(3799), 2,
- anon_sym_get,
- anon_sym_set,
- STATE(1409), 2,
- sym_class_static_block,
- aux_sym_class_body_repeat1,
- ACTIONS(3805), 3,
- anon_sym_public,
- anon_sym_private,
- anon_sym_protected,
- STATE(2955), 3,
- sym_string,
- sym__property_name,
- sym_computed_property_name,
- STATE(5052), 3,
- sym_public_field_definition,
- sym_abstract_method_signature,
- sym_index_signature,
- ACTIONS(3761), 13,
- anon_sym_export,
- anon_sym_type,
- anon_sym_namespace,
- anon_sym_let,
- anon_sym_new,
- sym_identifier,
- anon_sym_module,
- anon_sym_any,
- anon_sym_number,
- anon_sym_boolean,
- anon_sym_string,
- anon_sym_symbol,
- anon_sym_object,
- [22705] = 33,
- ACTIONS(99), 1,
- anon_sym_AT,
- ACTIONS(2229), 1,
- anon_sym_LBRACE,
- ACTIONS(2341), 1,
- anon_sym_namespace,
- ACTIONS(2343), 1,
- anon_sym_import,
- ACTIONS(2345), 1,
- anon_sym_var,
- ACTIONS(2347), 1,
- anon_sym_let,
- ACTIONS(2349), 1,
- anon_sym_const,
- ACTIONS(2351), 1,
- anon_sym_class,
- ACTIONS(2353), 1,
- anon_sym_async,
- ACTIONS(2355), 1,
- anon_sym_function,
- ACTIONS(2357), 1,
- anon_sym_declare,
- ACTIONS(2361), 1,
- anon_sym_abstract,
- ACTIONS(2365), 1,
- anon_sym_interface,
- ACTIONS(2367), 1,
- anon_sym_enum,
- ACTIONS(3727), 1,
- anon_sym_STAR,
- ACTIONS(3729), 1,
- anon_sym_default,
- ACTIONS(3731), 1,
- anon_sym_type,
- ACTIONS(3733), 1,
- anon_sym_EQ,
- ACTIONS(3735), 1,
- anon_sym_as,
- ACTIONS(3737), 1,
- anon_sym_COMMA,
- ACTIONS(3745), 1,
- anon_sym_module,
- ACTIONS(3817), 1,
- anon_sym_RBRACE,
- STATE(1244), 1,
- sym_decorator,
- STATE(4333), 1,
- aux_sym_export_statement_repeat1,
- STATE(4342), 1,
- sym_declaration,
- STATE(4343), 1,
- sym_internal_module,
- STATE(4521), 1,
- sym_export_clause,
- STATE(4672), 1,
- aux_sym_object_pattern_repeat1,
- STATE(5156), 1,
- aux_sym_object_repeat1,
- STATE(5290), 1,
- sym_namespace_export,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(3743), 7,
- sym__automatic_semicolon,
- anon_sym_LPAREN,
- anon_sym_SEMI,
- anon_sym_COLON,
- anon_sym_LT,
- anon_sym_QMARK,
- anon_sym_PIPE_RBRACE,
- STATE(4336), 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,
- [22824] = 29,
- ACTIONS(1594), 1,
- anon_sym_DQUOTE,
- ACTIONS(1596), 1,
- anon_sym_SQUOTE,
- ACTIONS(3617), 1,
- anon_sym_LBRACK,
- ACTIONS(3633), 1,
- anon_sym_override,
- ACTIONS(3703), 1,
- anon_sym_STAR,
- ACTIONS(3709), 1,
- anon_sym_async,
- ACTIONS(3713), 1,
- anon_sym_AT,
- ACTIONS(3715), 1,
- anon_sym_static,
- ACTIONS(3717), 1,
- anon_sym_readonly,
- ACTIONS(3721), 1,
- anon_sym_declare,
- ACTIONS(3723), 1,
- anon_sym_abstract,
- ACTIONS(3725), 1,
- anon_sym_accessor,
- ACTIONS(3820), 1,
- anon_sym_RBRACE,
- ACTIONS(3822), 1,
- anon_sym_SEMI,
- STATE(2436), 1,
- aux_sym_export_statement_repeat1,
- STATE(2564), 1,
- sym_method_definition,
- STATE(2633), 1,
- sym_accessibility_modifier,
- STATE(2697), 1,
- sym_decorator,
- STATE(2698), 1,
- sym_override_modifier,
- STATE(4464), 1,
- sym_method_signature,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(3215), 2,
- anon_sym_PLUS,
- anon_sym_DASH,
- ACTIONS(3711), 2,
- sym_number,
- sym_private_property_identifier,
- ACTIONS(3719), 2,
- anon_sym_get,
- anon_sym_set,
- STATE(1413), 2,
- sym_class_static_block,
- aux_sym_class_body_repeat1,
- ACTIONS(3631), 3,
- anon_sym_public,
- anon_sym_private,
- anon_sym_protected,
- STATE(2955), 3,
- sym_string,
- sym__property_name,
- sym_computed_property_name,
- STATE(5052), 3,
- sym_public_field_definition,
- sym_abstract_method_signature,
- sym_index_signature,
- ACTIONS(3607), 13,
- anon_sym_export,
- anon_sym_type,
- anon_sym_namespace,
- anon_sym_let,
- anon_sym_new,
- sym_identifier,
- anon_sym_module,
- anon_sym_any,
- anon_sym_number,
- anon_sym_boolean,
- anon_sym_string,
- anon_sym_symbol,
- anon_sym_object,
- [22935] = 33,
- ACTIONS(99), 1,
- anon_sym_AT,
- ACTIONS(2229), 1,
- anon_sym_LBRACE,
- ACTIONS(2341), 1,
- anon_sym_namespace,
- ACTIONS(2343), 1,
- anon_sym_import,
- ACTIONS(2345), 1,
- anon_sym_var,
- ACTIONS(2347), 1,
- anon_sym_let,
- ACTIONS(2349), 1,
- anon_sym_const,
- ACTIONS(2351), 1,
- anon_sym_class,
- ACTIONS(2353), 1,
- anon_sym_async,
- ACTIONS(2355), 1,
- anon_sym_function,
- ACTIONS(2357), 1,
- anon_sym_declare,
- ACTIONS(2361), 1,
- anon_sym_abstract,
- ACTIONS(2365), 1,
- anon_sym_interface,
- ACTIONS(2367), 1,
- anon_sym_enum,
- ACTIONS(3727), 1,
- anon_sym_STAR,
- ACTIONS(3729), 1,
- anon_sym_default,
- ACTIONS(3731), 1,
- anon_sym_type,
- ACTIONS(3733), 1,
- anon_sym_EQ,
- ACTIONS(3735), 1,
- anon_sym_as,
- ACTIONS(3737), 1,
- anon_sym_COMMA,
- ACTIONS(3745), 1,
- anon_sym_module,
- ACTIONS(3824), 1,
- anon_sym_RBRACE,
- STATE(1244), 1,
- sym_decorator,
- STATE(4333), 1,
- aux_sym_export_statement_repeat1,
- STATE(4342), 1,
- sym_declaration,
- STATE(4343), 1,
- sym_internal_module,
- STATE(4521), 1,
- sym_export_clause,
- STATE(4672), 1,
- aux_sym_object_pattern_repeat1,
- STATE(5156), 1,
- aux_sym_object_repeat1,
- STATE(5290), 1,
- sym_namespace_export,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(3743), 7,
- sym__automatic_semicolon,
- anon_sym_LPAREN,
- anon_sym_SEMI,
- anon_sym_COLON,
- anon_sym_LT,
- anon_sym_QMARK,
- anon_sym_PIPE_RBRACE,
- STATE(4336), 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,
- [23054] = 29,
- ACTIONS(1594), 1,
- anon_sym_DQUOTE,
- ACTIONS(1596), 1,
- anon_sym_SQUOTE,
- ACTIONS(3617), 1,
- anon_sym_LBRACK,
- ACTIONS(3633), 1,
- anon_sym_override,
- ACTIONS(3703), 1,
- anon_sym_STAR,
- ACTIONS(3707), 1,
- anon_sym_SEMI,
- ACTIONS(3709), 1,
- anon_sym_async,
- ACTIONS(3713), 1,
- anon_sym_AT,
- ACTIONS(3715), 1,
- anon_sym_static,
- ACTIONS(3717), 1,
- anon_sym_readonly,
- ACTIONS(3721), 1,
- anon_sym_declare,
- ACTIONS(3723), 1,
- anon_sym_abstract,
- ACTIONS(3725), 1,
- anon_sym_accessor,
- ACTIONS(3827), 1,
- anon_sym_RBRACE,
- STATE(2436), 1,
- aux_sym_export_statement_repeat1,
- STATE(2564), 1,
- sym_method_definition,
- STATE(2633), 1,
- sym_accessibility_modifier,
- STATE(2697), 1,
- sym_decorator,
- STATE(2698), 1,
- sym_override_modifier,
- STATE(4464), 1,
- sym_method_signature,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(3215), 2,
- anon_sym_PLUS,
- anon_sym_DASH,
- ACTIONS(3711), 2,
- sym_number,
- sym_private_property_identifier,
- ACTIONS(3719), 2,
- anon_sym_get,
- anon_sym_set,
- STATE(1409), 2,
- sym_class_static_block,
- aux_sym_class_body_repeat1,
- ACTIONS(3631), 3,
- anon_sym_public,
- anon_sym_private,
- anon_sym_protected,
- STATE(2955), 3,
- sym_string,
- sym__property_name,
- sym_computed_property_name,
- STATE(5052), 3,
- sym_public_field_definition,
- sym_abstract_method_signature,
- sym_index_signature,
- ACTIONS(3607), 13,
- anon_sym_export,
- anon_sym_type,
- anon_sym_namespace,
- anon_sym_let,
- anon_sym_new,
- sym_identifier,
- anon_sym_module,
- anon_sym_any,
- anon_sym_number,
- anon_sym_boolean,
- anon_sym_string,
- anon_sym_symbol,
- anon_sym_object,
- [23165] = 33,
- ACTIONS(99), 1,
- anon_sym_AT,
- ACTIONS(2229), 1,
- anon_sym_LBRACE,
- ACTIONS(2341), 1,
- anon_sym_namespace,
- ACTIONS(2343), 1,
- anon_sym_import,
- ACTIONS(2345), 1,
- anon_sym_var,
- ACTIONS(2347), 1,
- anon_sym_let,
- ACTIONS(2349), 1,
- anon_sym_const,
- ACTIONS(2351), 1,
- anon_sym_class,
- ACTIONS(2353), 1,
- anon_sym_async,
- ACTIONS(2355), 1,
- anon_sym_function,
- ACTIONS(2357), 1,
- anon_sym_declare,
- ACTIONS(2361), 1,
- anon_sym_abstract,
- ACTIONS(2365), 1,
- anon_sym_interface,
- ACTIONS(2367), 1,
- anon_sym_enum,
- ACTIONS(3727), 1,
- anon_sym_STAR,
- ACTIONS(3729), 1,
- anon_sym_default,
- ACTIONS(3731), 1,
- anon_sym_type,
- ACTIONS(3733), 1,
- anon_sym_EQ,
- ACTIONS(3735), 1,
- anon_sym_as,
- ACTIONS(3737), 1,
- anon_sym_COMMA,
- ACTIONS(3745), 1,
- anon_sym_module,
- ACTIONS(3829), 1,
- anon_sym_RBRACE,
- STATE(1244), 1,
- sym_decorator,
- STATE(4333), 1,
- aux_sym_export_statement_repeat1,
- STATE(4342), 1,
- sym_declaration,
- STATE(4343), 1,
- sym_internal_module,
- STATE(4521), 1,
- sym_export_clause,
- STATE(4672), 1,
- aux_sym_object_pattern_repeat1,
- STATE(5156), 1,
- aux_sym_object_repeat1,
- STATE(5290), 1,
- sym_namespace_export,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(3743), 7,
- sym__automatic_semicolon,
- anon_sym_LPAREN,
- anon_sym_SEMI,
- anon_sym_COLON,
- anon_sym_LT,
- anon_sym_QMARK,
- anon_sym_PIPE_RBRACE,
- STATE(4336), 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,
- [23284] = 29,
- ACTIONS(1594), 1,
- anon_sym_DQUOTE,
- ACTIONS(1596), 1,
- anon_sym_SQUOTE,
- ACTIONS(3617), 1,
- anon_sym_LBRACK,
- ACTIONS(3633), 1,
- anon_sym_override,
- ACTIONS(3703), 1,
- anon_sym_STAR,
- ACTIONS(3707), 1,
- anon_sym_SEMI,
- ACTIONS(3709), 1,
- anon_sym_async,
- ACTIONS(3713), 1,
- anon_sym_AT,
- ACTIONS(3715), 1,
- anon_sym_static,
- ACTIONS(3717), 1,
- anon_sym_readonly,
- ACTIONS(3721), 1,
- anon_sym_declare,
- ACTIONS(3723), 1,
- anon_sym_abstract,
- ACTIONS(3725), 1,
- anon_sym_accessor,
- ACTIONS(3832), 1,
- anon_sym_RBRACE,
- STATE(2436), 1,
- aux_sym_export_statement_repeat1,
- STATE(2564), 1,
- sym_method_definition,
- STATE(2633), 1,
- sym_accessibility_modifier,
- STATE(2697), 1,
- sym_decorator,
- STATE(2698), 1,
- sym_override_modifier,
- STATE(4464), 1,
- sym_method_signature,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(3215), 2,
- anon_sym_PLUS,
- anon_sym_DASH,
- ACTIONS(3711), 2,
- sym_number,
- sym_private_property_identifier,
- ACTIONS(3719), 2,
- anon_sym_get,
- anon_sym_set,
- STATE(1409), 2,
- sym_class_static_block,
- aux_sym_class_body_repeat1,
- ACTIONS(3631), 3,
- anon_sym_public,
- anon_sym_private,
- anon_sym_protected,
- STATE(2955), 3,
- sym_string,
- sym__property_name,
- sym_computed_property_name,
- STATE(5052), 3,
- sym_public_field_definition,
- sym_abstract_method_signature,
- sym_index_signature,
- ACTIONS(3607), 13,
- anon_sym_export,
- anon_sym_type,
- anon_sym_namespace,
- anon_sym_let,
- anon_sym_new,
- sym_identifier,
- anon_sym_module,
- anon_sym_any,
- anon_sym_number,
- anon_sym_boolean,
- anon_sym_string,
- anon_sym_symbol,
- anon_sym_object,
- [23395] = 29,
- ACTIONS(1594), 1,
- anon_sym_DQUOTE,
- ACTIONS(1596), 1,
- anon_sym_SQUOTE,
- ACTIONS(3617), 1,
- anon_sym_LBRACK,
- ACTIONS(3633), 1,
- anon_sym_override,
- ACTIONS(3703), 1,
- anon_sym_STAR,
- ACTIONS(3709), 1,
- anon_sym_async,
- ACTIONS(3713), 1,
- anon_sym_AT,
- ACTIONS(3715), 1,
- anon_sym_static,
- ACTIONS(3717), 1,
- anon_sym_readonly,
- ACTIONS(3721), 1,
- anon_sym_declare,
- ACTIONS(3723), 1,
- anon_sym_abstract,
- ACTIONS(3725), 1,
- anon_sym_accessor,
- ACTIONS(3834), 1,
- anon_sym_RBRACE,
- ACTIONS(3836), 1,
- anon_sym_SEMI,
- STATE(2436), 1,
- aux_sym_export_statement_repeat1,
- STATE(2564), 1,
- sym_method_definition,
- STATE(2633), 1,
- sym_accessibility_modifier,
- STATE(2697), 1,
- sym_decorator,
- STATE(2698), 1,
- sym_override_modifier,
- STATE(4464), 1,
- sym_method_signature,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(3215), 2,
- anon_sym_PLUS,
- anon_sym_DASH,
- ACTIONS(3711), 2,
- sym_number,
- sym_private_property_identifier,
- ACTIONS(3719), 2,
- anon_sym_get,
- anon_sym_set,
- STATE(1415), 2,
- sym_class_static_block,
- aux_sym_class_body_repeat1,
- ACTIONS(3631), 3,
- anon_sym_public,
- anon_sym_private,
- anon_sym_protected,
- STATE(2955), 3,
- sym_string,
- sym__property_name,
- sym_computed_property_name,
- STATE(5052), 3,
- sym_public_field_definition,
- sym_abstract_method_signature,
- sym_index_signature,
- ACTIONS(3607), 13,
- anon_sym_export,
- anon_sym_type,
- anon_sym_namespace,
- anon_sym_let,
- anon_sym_new,
- sym_identifier,
- anon_sym_module,
- anon_sym_any,
- anon_sym_number,
- anon_sym_boolean,
- anon_sym_string,
- anon_sym_symbol,
- anon_sym_object,
- [23506] = 33,
- ACTIONS(99), 1,
- anon_sym_AT,
- ACTIONS(2229), 1,
- anon_sym_LBRACE,
- ACTIONS(2341), 1,
- anon_sym_namespace,
- ACTIONS(2343), 1,
- anon_sym_import,
- ACTIONS(2345), 1,
- anon_sym_var,
- ACTIONS(2347), 1,
- anon_sym_let,
- ACTIONS(2349), 1,
- anon_sym_const,
- ACTIONS(2351), 1,
- anon_sym_class,
- ACTIONS(2353), 1,
- anon_sym_async,
- ACTIONS(2355), 1,
- anon_sym_function,
- ACTIONS(2357), 1,
- anon_sym_declare,
- ACTIONS(2361), 1,
- anon_sym_abstract,
- ACTIONS(2365), 1,
- anon_sym_interface,
- ACTIONS(2367), 1,
- anon_sym_enum,
- ACTIONS(3727), 1,
- anon_sym_STAR,
- ACTIONS(3729), 1,
- anon_sym_default,
- ACTIONS(3731), 1,
- anon_sym_type,
- ACTIONS(3733), 1,
- anon_sym_EQ,
- ACTIONS(3735), 1,
- anon_sym_as,
- ACTIONS(3737), 1,
- anon_sym_COMMA,
- ACTIONS(3745), 1,
- anon_sym_module,
- ACTIONS(3838), 1,
- anon_sym_RBRACE,
- STATE(1244), 1,
- sym_decorator,
- STATE(4333), 1,
- aux_sym_export_statement_repeat1,
- STATE(4342), 1,
- sym_declaration,
- STATE(4343), 1,
- sym_internal_module,
- STATE(4521), 1,
- sym_export_clause,
- STATE(4671), 1,
- aux_sym_object_repeat1,
- STATE(4672), 1,
- aux_sym_object_pattern_repeat1,
- STATE(5290), 1,
- sym_namespace_export,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(3743), 7,
- sym__automatic_semicolon,
- anon_sym_LPAREN,
- anon_sym_SEMI,
- anon_sym_COLON,
- anon_sym_LT,
- anon_sym_QMARK,
- anon_sym_PIPE_RBRACE,
- STATE(4336), 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,
- [23625] = 29,
- ACTIONS(1594), 1,
- anon_sym_DQUOTE,
- ACTIONS(1596), 1,
- anon_sym_SQUOTE,
- ACTIONS(3617), 1,
- anon_sym_LBRACK,
- ACTIONS(3633), 1,
- anon_sym_override,
- ACTIONS(3703), 1,
- anon_sym_STAR,
- ACTIONS(3707), 1,
- anon_sym_SEMI,
- ACTIONS(3709), 1,
- anon_sym_async,
- ACTIONS(3713), 1,
- anon_sym_AT,
- ACTIONS(3715), 1,
- anon_sym_static,
- ACTIONS(3717), 1,
- anon_sym_readonly,
- ACTIONS(3721), 1,
- anon_sym_declare,
- ACTIONS(3723), 1,
- anon_sym_abstract,
- ACTIONS(3725), 1,
- anon_sym_accessor,
- ACTIONS(3841), 1,
- anon_sym_RBRACE,
- STATE(2436), 1,
- aux_sym_export_statement_repeat1,
- STATE(2564), 1,
- sym_method_definition,
- STATE(2633), 1,
- sym_accessibility_modifier,
- STATE(2697), 1,
- sym_decorator,
- STATE(2698), 1,
- sym_override_modifier,
- STATE(4464), 1,
- sym_method_signature,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(3215), 2,
- anon_sym_PLUS,
- anon_sym_DASH,
- ACTIONS(3711), 2,
- sym_number,
- sym_private_property_identifier,
- ACTIONS(3719), 2,
- anon_sym_get,
- anon_sym_set,
- STATE(1409), 2,
- sym_class_static_block,
- aux_sym_class_body_repeat1,
- ACTIONS(3631), 3,
- anon_sym_public,
- anon_sym_private,
- anon_sym_protected,
- STATE(2955), 3,
- sym_string,
- sym__property_name,
- sym_computed_property_name,
- STATE(5052), 3,
- sym_public_field_definition,
- sym_abstract_method_signature,
- sym_index_signature,
- ACTIONS(3607), 13,
- anon_sym_export,
- anon_sym_type,
- anon_sym_namespace,
- anon_sym_let,
- anon_sym_new,
- sym_identifier,
- anon_sym_module,
- anon_sym_any,
- anon_sym_number,
- anon_sym_boolean,
- anon_sym_string,
- anon_sym_symbol,
- anon_sym_object,
- [23736] = 25,
- ACTIONS(235), 1,
- anon_sym_STAR,
- ACTIONS(241), 1,
- anon_sym_COMMA,
- ACTIONS(253), 1,
- anon_sym_DOT_DOT_DOT,
- ACTIONS(2275), 1,
- anon_sym_DQUOTE,
- ACTIONS(2277), 1,
- anon_sym_SQUOTE,
- ACTIONS(3199), 1,
- anon_sym_LBRACE,
- ACTIONS(3845), 1,
- anon_sym_RBRACE,
- ACTIONS(3847), 1,
- anon_sym_LBRACK,
- ACTIONS(3849), 1,
- anon_sym_async,
- ACTIONS(3853), 1,
- anon_sym_static,
- ACTIONS(3855), 1,
- anon_sym_readonly,
- ACTIONS(3861), 1,
- anon_sym_override,
- STATE(2682), 1,
- sym_accessibility_modifier,
- STATE(2711), 1,
- sym_override_modifier,
- STATE(4682), 1,
- aux_sym_object_repeat1,
- STATE(4759), 1,
- aux_sym_object_pattern_repeat1,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(3851), 2,
- sym_number,
- sym_private_property_identifier,
- ACTIONS(3857), 2,
- anon_sym_get,
- anon_sym_set,
- ACTIONS(3859), 3,
- anon_sym_public,
- anon_sym_private,
- anon_sym_protected,
- STATE(3665), 3,
- sym_string,
- sym__property_name,
- sym_computed_property_name,
- STATE(4603), 3,
- sym_spread_element,
- sym_method_definition,
- sym_pair,
- STATE(4861), 3,
- sym_object_assignment_pattern,
- sym_rest_pattern,
- sym_pair_pattern,
- STATE(5760), 3,
- sym_object_pattern,
- sym_array_pattern,
- sym__destructuring_pattern,
- ACTIONS(3843), 14,
- anon_sym_export,
- anon_sym_type,
- anon_sym_namespace,
- anon_sym_let,
- anon_sym_new,
- sym_identifier,
- anon_sym_declare,
- anon_sym_module,
- anon_sym_any,
- anon_sym_number,
- anon_sym_boolean,
- anon_sym_string,
- anon_sym_symbol,
- anon_sym_object,
- [23838] = 25,
- ACTIONS(235), 1,
- anon_sym_STAR,
- ACTIONS(241), 1,
- anon_sym_COMMA,
- ACTIONS(253), 1,
- anon_sym_DOT_DOT_DOT,
- ACTIONS(2275), 1,
- anon_sym_DQUOTE,
- ACTIONS(2277), 1,
- anon_sym_SQUOTE,
- ACTIONS(3199), 1,
- anon_sym_LBRACE,
- ACTIONS(3847), 1,
- anon_sym_LBRACK,
- ACTIONS(3865), 1,
- anon_sym_RBRACE,
- ACTIONS(3867), 1,
- anon_sym_async,
- ACTIONS(3869), 1,
- anon_sym_static,
- ACTIONS(3871), 1,
- anon_sym_readonly,
- ACTIONS(3877), 1,
- anon_sym_override,
- STATE(2682), 1,
- sym_accessibility_modifier,
- STATE(2711), 1,
- sym_override_modifier,
- STATE(4759), 1,
- aux_sym_object_pattern_repeat1,
- STATE(4839), 1,
- aux_sym_object_repeat1,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(3851), 2,
- sym_number,
- sym_private_property_identifier,
- ACTIONS(3873), 2,
- anon_sym_get,
- anon_sym_set,
- ACTIONS(3875), 3,
- anon_sym_public,
- anon_sym_private,
- anon_sym_protected,
- STATE(3665), 3,
- sym_string,
- sym__property_name,
- sym_computed_property_name,
- STATE(4835), 3,
- sym_spread_element,
- sym_method_definition,
- sym_pair,
- STATE(4861), 3,
- sym_object_assignment_pattern,
- sym_rest_pattern,
- sym_pair_pattern,
- STATE(5760), 3,
- sym_object_pattern,
- sym_array_pattern,
- sym__destructuring_pattern,
- ACTIONS(3863), 14,
- anon_sym_export,
- anon_sym_type,
- anon_sym_namespace,
- anon_sym_let,
- anon_sym_new,
- sym_identifier,
- anon_sym_declare,
- anon_sym_module,
- anon_sym_any,
- anon_sym_number,
- anon_sym_boolean,
- anon_sym_string,
- anon_sym_symbol,
- anon_sym_object,
- [23940] = 25,
- ACTIONS(235), 1,
- anon_sym_STAR,
- ACTIONS(241), 1,
- anon_sym_COMMA,
- ACTIONS(253), 1,
- anon_sym_DOT_DOT_DOT,
- ACTIONS(2275), 1,
- anon_sym_DQUOTE,
- ACTIONS(2277), 1,
- anon_sym_SQUOTE,
- ACTIONS(3199), 1,
- anon_sym_LBRACE,
- ACTIONS(3847), 1,
- anon_sym_LBRACK,
- ACTIONS(3881), 1,
- anon_sym_RBRACE,
- ACTIONS(3883), 1,
- anon_sym_async,
- ACTIONS(3885), 1,
- anon_sym_static,
- ACTIONS(3887), 1,
- anon_sym_readonly,
- ACTIONS(3893), 1,
- anon_sym_override,
- STATE(2682), 1,
- sym_accessibility_modifier,
- STATE(2711), 1,
- sym_override_modifier,
- STATE(4759), 1,
- aux_sym_object_pattern_repeat1,
- STATE(4839), 1,
- aux_sym_object_repeat1,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(3851), 2,
- sym_number,
- sym_private_property_identifier,
- ACTIONS(3889), 2,
- anon_sym_get,
- anon_sym_set,
- ACTIONS(3891), 3,
- anon_sym_public,
- anon_sym_private,
- anon_sym_protected,
- STATE(3665), 3,
- sym_string,
- sym__property_name,
- sym_computed_property_name,
- STATE(4835), 3,
- sym_spread_element,
- sym_method_definition,
- sym_pair,
- STATE(4861), 3,
- sym_object_assignment_pattern,
- sym_rest_pattern,
- sym_pair_pattern,
- STATE(5760), 3,
- sym_object_pattern,
- sym_array_pattern,
- sym__destructuring_pattern,
- ACTIONS(3879), 14,
- anon_sym_export,
- anon_sym_type,
- anon_sym_namespace,
- anon_sym_let,
- anon_sym_new,
- sym_identifier,
- anon_sym_declare,
- anon_sym_module,
- anon_sym_any,
- anon_sym_number,
- anon_sym_boolean,
- anon_sym_string,
- anon_sym_symbol,
- anon_sym_object,
- [24042] = 25,
- ACTIONS(235), 1,
- anon_sym_STAR,
- ACTIONS(241), 1,
- anon_sym_COMMA,
- ACTIONS(253), 1,
- anon_sym_DOT_DOT_DOT,
- ACTIONS(2275), 1,
- anon_sym_DQUOTE,
- ACTIONS(2277), 1,
- anon_sym_SQUOTE,
- ACTIONS(3199), 1,
- anon_sym_LBRACE,
- ACTIONS(3847), 1,
- anon_sym_LBRACK,
- ACTIONS(3897), 1,
- anon_sym_RBRACE,
- ACTIONS(3899), 1,
- anon_sym_async,
- ACTIONS(3901), 1,
- anon_sym_static,
- ACTIONS(3903), 1,
- anon_sym_readonly,
- ACTIONS(3909), 1,
- anon_sym_override,
- STATE(2682), 1,
- sym_accessibility_modifier,
- STATE(2711), 1,
- sym_override_modifier,
- STATE(4759), 1,
- aux_sym_object_pattern_repeat1,
- STATE(4839), 1,
- aux_sym_object_repeat1,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(3851), 2,
- sym_number,
- sym_private_property_identifier,
- ACTIONS(3905), 2,
- anon_sym_get,
- anon_sym_set,
- ACTIONS(3907), 3,
- anon_sym_public,
- anon_sym_private,
- anon_sym_protected,
- STATE(3665), 3,
- sym_string,
- sym__property_name,
- sym_computed_property_name,
- STATE(4835), 3,
- sym_spread_element,
- sym_method_definition,
- sym_pair,
- STATE(4861), 3,
- sym_object_assignment_pattern,
- sym_rest_pattern,
- sym_pair_pattern,
- STATE(5760), 3,
- sym_object_pattern,
- sym_array_pattern,
- sym__destructuring_pattern,
- ACTIONS(3895), 14,
- anon_sym_export,
- anon_sym_type,
- anon_sym_namespace,
- anon_sym_let,
- anon_sym_new,
- sym_identifier,
- anon_sym_declare,
- anon_sym_module,
- anon_sym_any,
- anon_sym_number,
- anon_sym_boolean,
- anon_sym_string,
- anon_sym_symbol,
- anon_sym_object,
- [24144] = 25,
- ACTIONS(235), 1,
- anon_sym_STAR,
- ACTIONS(241), 1,
- anon_sym_COMMA,
- ACTIONS(253), 1,
- anon_sym_DOT_DOT_DOT,
- ACTIONS(2275), 1,
- anon_sym_DQUOTE,
- ACTIONS(2277), 1,
- anon_sym_SQUOTE,
- ACTIONS(3199), 1,
- anon_sym_LBRACE,
- ACTIONS(3847), 1,
- anon_sym_LBRACK,
- ACTIONS(3913), 1,
- anon_sym_RBRACE,
- ACTIONS(3915), 1,
- anon_sym_async,
- ACTIONS(3917), 1,
- anon_sym_static,
- ACTIONS(3919), 1,
- anon_sym_readonly,
- ACTIONS(3925), 1,
- anon_sym_override,
- STATE(2682), 1,
- sym_accessibility_modifier,
- STATE(2711), 1,
- sym_override_modifier,
- STATE(4682), 1,
- aux_sym_object_repeat1,
- STATE(4759), 1,
- aux_sym_object_pattern_repeat1,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(3851), 2,
- sym_number,
- sym_private_property_identifier,
- ACTIONS(3921), 2,
- anon_sym_get,
- anon_sym_set,
- ACTIONS(3923), 3,
- anon_sym_public,
- anon_sym_private,
- anon_sym_protected,
- STATE(3665), 3,
- sym_string,
- sym__property_name,
- sym_computed_property_name,
- STATE(4603), 3,
- sym_spread_element,
- sym_method_definition,
- sym_pair,
- STATE(4861), 3,
- sym_object_assignment_pattern,
- sym_rest_pattern,
- sym_pair_pattern,
- STATE(5760), 3,
- sym_object_pattern,
- sym_array_pattern,
- sym__destructuring_pattern,
- ACTIONS(3911), 14,
- anon_sym_export,
- anon_sym_type,
- anon_sym_namespace,
- anon_sym_let,
- anon_sym_new,
- sym_identifier,
- anon_sym_declare,
- anon_sym_module,
- anon_sym_any,
- anon_sym_number,
- anon_sym_boolean,
- anon_sym_string,
- anon_sym_symbol,
- anon_sym_object,
- [24246] = 25,
- ACTIONS(235), 1,
- anon_sym_STAR,
- ACTIONS(241), 1,
- anon_sym_COMMA,
- ACTIONS(253), 1,
- anon_sym_DOT_DOT_DOT,
- ACTIONS(2275), 1,
- anon_sym_DQUOTE,
- ACTIONS(2277), 1,
- anon_sym_SQUOTE,
- ACTIONS(3199), 1,
- anon_sym_LBRACE,
- ACTIONS(3847), 1,
- anon_sym_LBRACK,
- ACTIONS(3929), 1,
- anon_sym_RBRACE,
- ACTIONS(3931), 1,
- anon_sym_async,
- ACTIONS(3933), 1,
- anon_sym_static,
- ACTIONS(3935), 1,
- anon_sym_readonly,
- ACTIONS(3941), 1,
- anon_sym_override,
- STATE(2682), 1,
- sym_accessibility_modifier,
- STATE(2711), 1,
- sym_override_modifier,
- STATE(4759), 1,
- aux_sym_object_pattern_repeat1,
- STATE(4839), 1,
- aux_sym_object_repeat1,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(3851), 2,
- sym_number,
- sym_private_property_identifier,
- ACTIONS(3937), 2,
- anon_sym_get,
- anon_sym_set,
- ACTIONS(3939), 3,
- anon_sym_public,
- anon_sym_private,
- anon_sym_protected,
- STATE(3665), 3,
- sym_string,
- sym__property_name,
- sym_computed_property_name,
- STATE(4835), 3,
- sym_spread_element,
- sym_method_definition,
- sym_pair,
- STATE(4861), 3,
- sym_object_assignment_pattern,
- sym_rest_pattern,
- sym_pair_pattern,
- STATE(5760), 3,
- sym_object_pattern,
- sym_array_pattern,
- sym__destructuring_pattern,
- ACTIONS(3927), 14,
- anon_sym_export,
- anon_sym_type,
- anon_sym_namespace,
- anon_sym_let,
- anon_sym_new,
- sym_identifier,
- anon_sym_declare,
- anon_sym_module,
- anon_sym_any,
- anon_sym_number,
- anon_sym_boolean,
- anon_sym_string,
- anon_sym_symbol,
- anon_sym_object,
- [24348] = 25,
- ACTIONS(235), 1,
- anon_sym_STAR,
- ACTIONS(241), 1,
- anon_sym_COMMA,
- ACTIONS(253), 1,
- anon_sym_DOT_DOT_DOT,
- ACTIONS(2275), 1,
- anon_sym_DQUOTE,
- ACTIONS(2277), 1,
- anon_sym_SQUOTE,
- ACTIONS(3199), 1,
- anon_sym_LBRACE,
- ACTIONS(3847), 1,
- anon_sym_LBRACK,
- ACTIONS(3945), 1,
- anon_sym_RBRACE,
- ACTIONS(3947), 1,
- anon_sym_async,
- ACTIONS(3949), 1,
- anon_sym_static,
- ACTIONS(3951), 1,
- anon_sym_readonly,
- ACTIONS(3957), 1,
- anon_sym_override,
- STATE(2682), 1,
- sym_accessibility_modifier,
- STATE(2711), 1,
- sym_override_modifier,
- STATE(4759), 1,
- aux_sym_object_pattern_repeat1,
- STATE(4839), 1,
- aux_sym_object_repeat1,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(3851), 2,
- sym_number,
- sym_private_property_identifier,
- ACTIONS(3953), 2,
- anon_sym_get,
- anon_sym_set,
- ACTIONS(3955), 3,
- anon_sym_public,
- anon_sym_private,
- anon_sym_protected,
- STATE(3665), 3,
- sym_string,
- sym__property_name,
- sym_computed_property_name,
- STATE(4835), 3,
- sym_spread_element,
- sym_method_definition,
- sym_pair,
- STATE(4861), 3,
- sym_object_assignment_pattern,
- sym_rest_pattern,
- sym_pair_pattern,
- STATE(5760), 3,
- sym_object_pattern,
- sym_array_pattern,
- sym__destructuring_pattern,
- ACTIONS(3943), 14,
- anon_sym_export,
- anon_sym_type,
- anon_sym_namespace,
- anon_sym_let,
- anon_sym_new,
- sym_identifier,
- anon_sym_declare,
- anon_sym_module,
- anon_sym_any,
- anon_sym_number,
- anon_sym_boolean,
- anon_sym_string,
- anon_sym_symbol,
- anon_sym_object,
- [24450] = 30,
- ACTIONS(99), 1,
- anon_sym_AT,
- ACTIONS(2229), 1,
- anon_sym_LBRACE,
- ACTIONS(2341), 1,
- anon_sym_namespace,
- ACTIONS(2343), 1,
- anon_sym_import,
- ACTIONS(2345), 1,
- anon_sym_var,
- ACTIONS(2347), 1,
- anon_sym_let,
- ACTIONS(2349), 1,
- anon_sym_const,
- ACTIONS(2351), 1,
- anon_sym_class,
- ACTIONS(2353), 1,
- anon_sym_async,
- ACTIONS(2355), 1,
- anon_sym_function,
- ACTIONS(2357), 1,
- anon_sym_declare,
- ACTIONS(2361), 1,
- anon_sym_abstract,
- ACTIONS(2365), 1,
- anon_sym_interface,
- ACTIONS(2367), 1,
- anon_sym_enum,
- ACTIONS(3727), 1,
- anon_sym_STAR,
- ACTIONS(3729), 1,
- anon_sym_default,
- ACTIONS(3731), 1,
- anon_sym_type,
- ACTIONS(3733), 1,
- anon_sym_EQ,
- ACTIONS(3735), 1,
- anon_sym_as,
- ACTIONS(3745), 1,
- anon_sym_module,
- STATE(1244), 1,
- sym_decorator,
- STATE(4333), 1,
- aux_sym_export_statement_repeat1,
- STATE(4342), 1,
- sym_declaration,
- STATE(4343), 1,
- sym_internal_module,
- STATE(4521), 1,
- sym_export_clause,
- STATE(5290), 1,
- sym_namespace_export,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(3959), 2,
- anon_sym_COMMA,
- anon_sym_RBRACE,
- ACTIONS(3743), 7,
- sym__automatic_semicolon,
- anon_sym_LPAREN,
- anon_sym_SEMI,
- anon_sym_COLON,
- anon_sym_LT,
- anon_sym_QMARK,
- anon_sym_PIPE_RBRACE,
- STATE(4336), 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,
- [24561] = 29,
- ACTIONS(99), 1,
- anon_sym_AT,
- ACTIONS(2229), 1,
- anon_sym_LBRACE,
- ACTIONS(2341), 1,
- anon_sym_namespace,
- ACTIONS(2343), 1,
- anon_sym_import,
- ACTIONS(2345), 1,
- anon_sym_var,
- ACTIONS(2347), 1,
- anon_sym_let,
- ACTIONS(2349), 1,
- anon_sym_const,
- ACTIONS(2351), 1,
- anon_sym_class,
- ACTIONS(2353), 1,
- anon_sym_async,
- ACTIONS(2355), 1,
- anon_sym_function,
- ACTIONS(2357), 1,
- anon_sym_declare,
- ACTIONS(2361), 1,
- anon_sym_abstract,
- ACTIONS(2365), 1,
- anon_sym_interface,
- ACTIONS(2367), 1,
- anon_sym_enum,
- ACTIONS(3727), 1,
- anon_sym_STAR,
- ACTIONS(3729), 1,
- anon_sym_default,
- ACTIONS(3731), 1,
- anon_sym_type,
- ACTIONS(3735), 1,
- anon_sym_as,
- ACTIONS(3745), 1,
- anon_sym_module,
- ACTIONS(3963), 1,
- anon_sym_EQ,
- STATE(1244), 1,
- sym_decorator,
- STATE(4333), 1,
- aux_sym_export_statement_repeat1,
- STATE(4342), 1,
- sym_declaration,
- STATE(4343), 1,
- sym_internal_module,
- STATE(4521), 1,
- sym_export_clause,
- STATE(5290), 1,
- sym_namespace_export,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(3743), 9,
- sym__automatic_semicolon,
- anon_sym_COMMA,
- anon_sym_RBRACE,
- anon_sym_LPAREN,
- anon_sym_SEMI,
- anon_sym_COLON,
- anon_sym_LT,
- anon_sym_QMARK,
- anon_sym_PIPE_RBRACE,
- STATE(4336), 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,
- [24670] = 3,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(1919), 14,
- anon_sym_STAR,
- anon_sym_BANG,
- anon_sym_in,
- anon_sym_GT,
- anon_sym_GT_GT,
- anon_sym_AMP,
- anon_sym_PIPE,
- anon_sym_PLUS,
- anon_sym_DASH,
- anon_sym_SLASH,
- anon_sym_LT,
- anon_sym_EQ_EQ,
- anon_sym_BANG_EQ,
- anon_sym_QMARK,
- ACTIONS(1917), 34,
- sym__automatic_semicolon,
- sym__ternary_qmark,
- anon_sym_as,
- anon_sym_LBRACE,
- anon_sym_COMMA,
- anon_sym_RBRACE,
- anon_sym_else,
- anon_sym_LPAREN,
- anon_sym_of,
- anon_sym_while,
- anon_sym_SEMI,
- anon_sym_COLON,
- anon_sym_LBRACK,
- anon_sym_DOT,
- anon_sym_QMARK_DOT,
- anon_sym_AMP_AMP,
- anon_sym_PIPE_PIPE,
- anon_sym_GT_GT_GT,
- anon_sym_LT_LT,
- anon_sym_CARET,
- anon_sym_PERCENT,
- anon_sym_STAR_STAR,
- anon_sym_LT_EQ,
- anon_sym_EQ_EQ_EQ,
- anon_sym_BANG_EQ_EQ,
- anon_sym_GT_EQ,
- anon_sym_QMARK_QMARK,
- anon_sym_instanceof,
- anon_sym_PLUS_PLUS,
- anon_sym_DASH_DASH,
- anon_sym_BQUOTE,
- anon_sym_satisfies,
- anon_sym_extends,
- anon_sym_PIPE_RBRACE,
- [24727] = 3,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(1823), 14,
- anon_sym_STAR,
- anon_sym_BANG,
- anon_sym_in,
- anon_sym_GT,
- anon_sym_GT_GT,
- anon_sym_AMP,
- anon_sym_PIPE,
- anon_sym_PLUS,
- anon_sym_DASH,
- anon_sym_SLASH,
- anon_sym_LT,
- anon_sym_EQ_EQ,
- anon_sym_BANG_EQ,
- anon_sym_QMARK,
- ACTIONS(1821), 34,
- sym__automatic_semicolon,
- sym__ternary_qmark,
- anon_sym_as,
- anon_sym_LBRACE,
- anon_sym_COMMA,
- anon_sym_RBRACE,
- anon_sym_else,
- anon_sym_LPAREN,
- anon_sym_of,
- anon_sym_while,
- anon_sym_SEMI,
- anon_sym_COLON,
- anon_sym_LBRACK,
- anon_sym_DOT,
- anon_sym_QMARK_DOT,
- anon_sym_AMP_AMP,
- anon_sym_PIPE_PIPE,
- anon_sym_GT_GT_GT,
- anon_sym_LT_LT,
- anon_sym_CARET,
- anon_sym_PERCENT,
- anon_sym_STAR_STAR,
- anon_sym_LT_EQ,
- anon_sym_EQ_EQ_EQ,
- anon_sym_BANG_EQ_EQ,
- anon_sym_GT_EQ,
- anon_sym_QMARK_QMARK,
- anon_sym_instanceof,
- anon_sym_PLUS_PLUS,
- anon_sym_DASH_DASH,
- anon_sym_BQUOTE,
- anon_sym_satisfies,
- anon_sym_extends,
- anon_sym_PIPE_RBRACE,
- [24784] = 11,
- ACTIONS(3969), 1,
- anon_sym_LPAREN,
- ACTIONS(3971), 1,
- anon_sym_LBRACK,
- ACTIONS(3973), 1,
- anon_sym_DOT,
- ACTIONS(3975), 1,
- anon_sym_QMARK_DOT,
- ACTIONS(3977), 1,
- anon_sym_LT,
- STATE(1522), 1,
- sym_type_arguments,
- STATE(1756), 1,
- sym_arguments,
- STATE(5080), 1,
- sym_optional_chain,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(3965), 12,
- anon_sym_STAR,
- anon_sym_BANG,
- anon_sym_in,
- anon_sym_GT,
- anon_sym_GT_GT,
- anon_sym_AMP,
- anon_sym_PIPE,
- anon_sym_PLUS,
- anon_sym_DASH,
- anon_sym_SLASH,
- anon_sym_EQ_EQ,
- anon_sym_BANG_EQ,
- ACTIONS(3967), 27,
- sym__ternary_qmark,
- anon_sym_as,
- anon_sym_LBRACE,
- anon_sym_COMMA,
- anon_sym_RBRACE,
- anon_sym_RPAREN,
- anon_sym_of,
- anon_sym_COLON,
- anon_sym_RBRACK,
- anon_sym_AMP_AMP,
- anon_sym_PIPE_PIPE,
- anon_sym_GT_GT_GT,
- anon_sym_LT_LT,
- anon_sym_CARET,
- anon_sym_PERCENT,
- anon_sym_STAR_STAR,
- anon_sym_LT_EQ,
- anon_sym_EQ_EQ_EQ,
- anon_sym_BANG_EQ_EQ,
- anon_sym_GT_EQ,
- anon_sym_QMARK_QMARK,
- anon_sym_instanceof,
- anon_sym_PLUS_PLUS,
- anon_sym_DASH_DASH,
- anon_sym_BQUOTE,
- anon_sym_satisfies,
- anon_sym_implements,
- [24856] = 8,
- ACTIONS(3969), 1,
- anon_sym_LPAREN,
- ACTIONS(3977), 1,
- anon_sym_LT,
- ACTIONS(3983), 1,
- anon_sym_DOT,
- STATE(1604), 1,
- sym_arguments,
- STATE(1605), 1,
- sym_type_arguments,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(3979), 12,
- anon_sym_STAR,
- anon_sym_BANG,
- anon_sym_in,
- anon_sym_GT,
- anon_sym_GT_GT,
- anon_sym_AMP,
- anon_sym_PIPE,
- anon_sym_PLUS,
- anon_sym_DASH,
- anon_sym_SLASH,
- anon_sym_EQ_EQ,
- anon_sym_BANG_EQ,
- ACTIONS(3981), 30,
- sym__ternary_qmark,
- anon_sym_as,
- anon_sym_LBRACE,
- anon_sym_COMMA,
- anon_sym_RBRACE,
- anon_sym_RPAREN,
- anon_sym_of,
- anon_sym_COLON,
- anon_sym_LBRACK,
- anon_sym_RBRACK,
- anon_sym_QMARK_DOT,
- anon_sym_AMP_AMP,
- anon_sym_PIPE_PIPE,
- anon_sym_GT_GT_GT,
- anon_sym_LT_LT,
- anon_sym_CARET,
- anon_sym_PERCENT,
- anon_sym_STAR_STAR,
- anon_sym_LT_EQ,
- anon_sym_EQ_EQ_EQ,
- anon_sym_BANG_EQ_EQ,
- anon_sym_GT_EQ,
- anon_sym_QMARK_QMARK,
- anon_sym_instanceof,
- anon_sym_PLUS_PLUS,
- anon_sym_DASH_DASH,
- anon_sym_BQUOTE,
- anon_sym_satisfies,
- anon_sym_extends,
- anon_sym_implements,
- [24922] = 8,
- ACTIONS(3969), 1,
- anon_sym_LPAREN,
- ACTIONS(3977), 1,
- anon_sym_LT,
- ACTIONS(3989), 1,
- anon_sym_DOT,
- STATE(1606), 1,
- sym_arguments,
- STATE(1607), 1,
- sym_type_arguments,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(3985), 12,
- anon_sym_STAR,
- anon_sym_BANG,
- anon_sym_in,
- anon_sym_GT,
- anon_sym_GT_GT,
- anon_sym_AMP,
- anon_sym_PIPE,
- anon_sym_PLUS,
- anon_sym_DASH,
- anon_sym_SLASH,
- anon_sym_EQ_EQ,
- anon_sym_BANG_EQ,
- ACTIONS(3987), 30,
- sym__ternary_qmark,
- anon_sym_as,
- anon_sym_LBRACE,
- anon_sym_COMMA,
- anon_sym_RBRACE,
- anon_sym_RPAREN,
- anon_sym_of,
- anon_sym_COLON,
- anon_sym_LBRACK,
- anon_sym_RBRACK,
- anon_sym_QMARK_DOT,
- anon_sym_AMP_AMP,
- anon_sym_PIPE_PIPE,
- anon_sym_GT_GT_GT,
- anon_sym_LT_LT,
- anon_sym_CARET,
- anon_sym_PERCENT,
- anon_sym_STAR_STAR,
- anon_sym_LT_EQ,
- anon_sym_EQ_EQ_EQ,
- anon_sym_BANG_EQ_EQ,
- anon_sym_GT_EQ,
- anon_sym_QMARK_QMARK,
- anon_sym_instanceof,
- anon_sym_PLUS_PLUS,
- anon_sym_DASH_DASH,
- anon_sym_BQUOTE,
- anon_sym_satisfies,
- anon_sym_extends,
- anon_sym_implements,
- [24988] = 8,
- ACTIONS(3969), 1,
- anon_sym_LPAREN,
- ACTIONS(3977), 1,
- anon_sym_LT,
- ACTIONS(3991), 1,
- anon_sym_DOT,
- STATE(1601), 1,
- sym_arguments,
- STATE(1602), 1,
- sym_type_arguments,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(3418), 12,
- anon_sym_STAR,
- anon_sym_BANG,
- anon_sym_in,
- anon_sym_GT,
- anon_sym_GT_GT,
- anon_sym_AMP,
- anon_sym_PIPE,
- anon_sym_PLUS,
- anon_sym_DASH,
- anon_sym_SLASH,
- anon_sym_EQ_EQ,
- anon_sym_BANG_EQ,
- ACTIONS(3406), 30,
- sym__ternary_qmark,
- anon_sym_as,
- anon_sym_LBRACE,
- anon_sym_COMMA,
- anon_sym_RBRACE,
- anon_sym_RPAREN,
- anon_sym_of,
- anon_sym_COLON,
- anon_sym_LBRACK,
- anon_sym_RBRACK,
- anon_sym_QMARK_DOT,
- anon_sym_AMP_AMP,
- anon_sym_PIPE_PIPE,
- anon_sym_GT_GT_GT,
- anon_sym_LT_LT,
- anon_sym_CARET,
- anon_sym_PERCENT,
- anon_sym_STAR_STAR,
- anon_sym_LT_EQ,
- anon_sym_EQ_EQ_EQ,
- anon_sym_BANG_EQ_EQ,
- anon_sym_GT_EQ,
- anon_sym_QMARK_QMARK,
- anon_sym_instanceof,
- anon_sym_PLUS_PLUS,
- anon_sym_DASH_DASH,
- anon_sym_BQUOTE,
- anon_sym_satisfies,
- anon_sym_extends,
- anon_sym_implements,
- [25054] = 22,
- ACTIONS(235), 1,
- anon_sym_STAR,
- ACTIONS(253), 1,
- anon_sym_DOT_DOT_DOT,
- ACTIONS(2275), 1,
- anon_sym_DQUOTE,
- ACTIONS(2277), 1,
- anon_sym_SQUOTE,
- ACTIONS(3199), 1,
- anon_sym_LBRACE,
- ACTIONS(3847), 1,
- anon_sym_LBRACK,
- ACTIONS(3995), 1,
- anon_sym_async,
- ACTIONS(3997), 1,
- anon_sym_static,
- ACTIONS(3999), 1,
- anon_sym_readonly,
- ACTIONS(4005), 1,
- anon_sym_override,
- STATE(2682), 1,
- sym_accessibility_modifier,
- STATE(2711), 1,
- sym_override_modifier,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(3349), 2,
- anon_sym_COMMA,
- anon_sym_RBRACE,
- ACTIONS(3851), 2,
- sym_number,
- sym_private_property_identifier,
- ACTIONS(4001), 2,
- anon_sym_get,
- anon_sym_set,
- ACTIONS(4003), 3,
- anon_sym_public,
- anon_sym_private,
- anon_sym_protected,
- STATE(3665), 3,
- sym_string,
- sym__property_name,
- sym_computed_property_name,
- STATE(5214), 3,
- sym_spread_element,
- sym_method_definition,
- sym_pair,
- STATE(5227), 3,
- sym_object_assignment_pattern,
- sym_rest_pattern,
- sym_pair_pattern,
- STATE(5760), 3,
- sym_object_pattern,
- sym_array_pattern,
- sym__destructuring_pattern,
- ACTIONS(3993), 14,
- anon_sym_export,
- anon_sym_type,
- anon_sym_namespace,
- anon_sym_let,
- anon_sym_new,
- sym_identifier,
- anon_sym_declare,
- anon_sym_module,
- anon_sym_any,
- anon_sym_number,
- anon_sym_boolean,
- anon_sym_string,
- anon_sym_symbol,
- anon_sym_object,
- [25148] = 7,
- ACTIONS(3977), 1,
- anon_sym_LT,
- ACTIONS(4009), 1,
- anon_sym_DOT,
- ACTIONS(4011), 1,
- anon_sym_is,
- STATE(1584), 1,
- sym_type_arguments,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(4007), 12,
- anon_sym_STAR,
- anon_sym_BANG,
- anon_sym_in,
- anon_sym_GT,
- anon_sym_GT_GT,
- anon_sym_AMP,
- anon_sym_PIPE,
- anon_sym_PLUS,
- anon_sym_DASH,
- anon_sym_SLASH,
- anon_sym_EQ_EQ,
- anon_sym_BANG_EQ,
- ACTIONS(3461), 31,
- sym__ternary_qmark,
- anon_sym_as,
- anon_sym_LBRACE,
- anon_sym_COMMA,
- anon_sym_RBRACE,
- anon_sym_LPAREN,
- anon_sym_RPAREN,
- anon_sym_of,
- anon_sym_COLON,
- anon_sym_LBRACK,
- anon_sym_RBRACK,
- anon_sym_QMARK_DOT,
- anon_sym_AMP_AMP,
- anon_sym_PIPE_PIPE,
- anon_sym_GT_GT_GT,
- anon_sym_LT_LT,
- anon_sym_CARET,
- anon_sym_PERCENT,
- anon_sym_STAR_STAR,
- anon_sym_LT_EQ,
- anon_sym_EQ_EQ_EQ,
- anon_sym_BANG_EQ_EQ,
- anon_sym_GT_EQ,
- anon_sym_QMARK_QMARK,
- anon_sym_instanceof,
- anon_sym_PLUS_PLUS,
- anon_sym_DASH_DASH,
- anon_sym_BQUOTE,
- anon_sym_satisfies,
- anon_sym_extends,
- anon_sym_implements,
- [25212] = 4,
- ACTIONS(4011), 1,
- anon_sym_is,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(4013), 13,
- anon_sym_STAR,
- anon_sym_BANG,
- anon_sym_in,
- anon_sym_GT,
- anon_sym_GT_GT,
- anon_sym_AMP,
- anon_sym_PIPE,
- anon_sym_PLUS,
- anon_sym_DASH,
- anon_sym_SLASH,
- anon_sym_LT,
- anon_sym_EQ_EQ,
- anon_sym_BANG_EQ,
- ACTIONS(4015), 32,
- sym__ternary_qmark,
- anon_sym_as,
- anon_sym_LBRACE,
- anon_sym_COMMA,
- anon_sym_RBRACE,
- anon_sym_LPAREN,
- anon_sym_RPAREN,
- anon_sym_of,
- anon_sym_COLON,
- anon_sym_LBRACK,
- anon_sym_RBRACK,
- anon_sym_DOT,
- anon_sym_QMARK_DOT,
- anon_sym_AMP_AMP,
- anon_sym_PIPE_PIPE,
- anon_sym_GT_GT_GT,
- anon_sym_LT_LT,
- anon_sym_CARET,
- anon_sym_PERCENT,
- anon_sym_STAR_STAR,
- anon_sym_LT_EQ,
- anon_sym_EQ_EQ_EQ,
- anon_sym_BANG_EQ_EQ,
- anon_sym_GT_EQ,
- anon_sym_QMARK_QMARK,
- anon_sym_instanceof,
- anon_sym_PLUS_PLUS,
- anon_sym_DASH_DASH,
- anon_sym_BQUOTE,
- anon_sym_satisfies,
- anon_sym_extends,
- anon_sym_implements,
- [25269] = 3,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(3131), 14,
- anon_sym_STAR,
- anon_sym_BANG,
- anon_sym_in,
- anon_sym_GT,
- anon_sym_GT_GT,
- anon_sym_AMP,
- anon_sym_PIPE,
- anon_sym_PLUS,
- anon_sym_DASH,
- anon_sym_SLASH,
- anon_sym_LT,
- anon_sym_EQ_EQ,
- anon_sym_BANG_EQ,
- anon_sym_QMARK,
- ACTIONS(3133), 32,
- sym__ternary_qmark,
- anon_sym_as,
- anon_sym_LBRACE,
- anon_sym_COMMA,
- anon_sym_RBRACE,
- anon_sym_LPAREN,
- anon_sym_RPAREN,
- anon_sym_of,
- anon_sym_COLON,
- anon_sym_LBRACK,
- anon_sym_RBRACK,
- anon_sym_DOT,
- anon_sym_QMARK_DOT,
- anon_sym_AMP_AMP,
- anon_sym_PIPE_PIPE,
- anon_sym_GT_GT_GT,
- anon_sym_LT_LT,
- anon_sym_CARET,
- anon_sym_PERCENT,
- anon_sym_STAR_STAR,
- anon_sym_LT_EQ,
- anon_sym_EQ_EQ_EQ,
- anon_sym_BANG_EQ_EQ,
- anon_sym_GT_EQ,
- anon_sym_QMARK_QMARK,
- anon_sym_instanceof,
- anon_sym_PLUS_PLUS,
- anon_sym_DASH_DASH,
- anon_sym_BQUOTE,
- anon_sym_satisfies,
- anon_sym_extends,
- anon_sym_implements,
- [25324] = 3,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(3123), 14,
- anon_sym_STAR,
- anon_sym_BANG,
- anon_sym_in,
- anon_sym_GT,
- anon_sym_GT_GT,
- anon_sym_AMP,
- anon_sym_PIPE,
- anon_sym_PLUS,
- anon_sym_DASH,
- anon_sym_SLASH,
- anon_sym_LT,
- anon_sym_EQ_EQ,
- anon_sym_BANG_EQ,
- anon_sym_QMARK,
- ACTIONS(3125), 32,
- sym__ternary_qmark,
- anon_sym_as,
- anon_sym_LBRACE,
- anon_sym_COMMA,
- anon_sym_RBRACE,
- anon_sym_LPAREN,
- anon_sym_RPAREN,
- anon_sym_of,
- anon_sym_COLON,
- anon_sym_LBRACK,
- anon_sym_RBRACK,
- anon_sym_DOT,
- anon_sym_QMARK_DOT,
- anon_sym_AMP_AMP,
- anon_sym_PIPE_PIPE,
- anon_sym_GT_GT_GT,
- anon_sym_LT_LT,
- anon_sym_CARET,
- anon_sym_PERCENT,
- anon_sym_STAR_STAR,
- anon_sym_LT_EQ,
- anon_sym_EQ_EQ_EQ,
- anon_sym_BANG_EQ_EQ,
- anon_sym_GT_EQ,
- anon_sym_QMARK_QMARK,
- anon_sym_instanceof,
- anon_sym_PLUS_PLUS,
- anon_sym_DASH_DASH,
- anon_sym_BQUOTE,
- anon_sym_satisfies,
- anon_sym_extends,
- anon_sym_implements,
- [25379] = 5,
- ACTIONS(1726), 1,
- anon_sym_EQ,
- ACTIONS(4017), 1,
- sym__automatic_semicolon,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(1722), 13,
- anon_sym_STAR,
- anon_sym_BANG,
- anon_sym_in,
- anon_sym_GT,
- anon_sym_GT_GT,
- anon_sym_AMP,
- anon_sym_PIPE,
- anon_sym_PLUS,
- anon_sym_DASH,
- anon_sym_SLASH,
- anon_sym_LT,
- anon_sym_EQ_EQ,
- anon_sym_BANG_EQ,
- ACTIONS(1720), 31,
- sym__ternary_qmark,
- anon_sym_as,
- anon_sym_LBRACE,
- anon_sym_COMMA,
- anon_sym_RBRACE,
- anon_sym_LPAREN,
- anon_sym_RPAREN,
- anon_sym_of,
- anon_sym_COLON,
- anon_sym_LBRACK,
- anon_sym_RBRACK,
- anon_sym_DOT,
- anon_sym_QMARK_DOT,
- anon_sym_AMP_AMP,
- anon_sym_PIPE_PIPE,
- anon_sym_GT_GT_GT,
- anon_sym_LT_LT,
- anon_sym_CARET,
- anon_sym_PERCENT,
- anon_sym_STAR_STAR,
- anon_sym_LT_EQ,
- anon_sym_EQ_EQ_EQ,
- anon_sym_BANG_EQ_EQ,
- anon_sym_GT_EQ,
- anon_sym_QMARK_QMARK,
- anon_sym_instanceof,
- anon_sym_PLUS_PLUS,
- anon_sym_DASH_DASH,
- anon_sym_BQUOTE,
- anon_sym_satisfies,
- anon_sym_implements,
- [25438] = 6,
- ACTIONS(3969), 1,
- anon_sym_LPAREN,
- ACTIONS(4023), 1,
- anon_sym_DOT,
- STATE(1597), 1,
- sym_arguments,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(4019), 13,
- anon_sym_STAR,
- anon_sym_BANG,
- anon_sym_in,
- anon_sym_GT,
- anon_sym_GT_GT,
- anon_sym_AMP,
- anon_sym_PIPE,
- anon_sym_PLUS,
- anon_sym_DASH,
- anon_sym_SLASH,
- anon_sym_LT,
- anon_sym_EQ_EQ,
- anon_sym_BANG_EQ,
- ACTIONS(4021), 30,
- sym__ternary_qmark,
- anon_sym_as,
- anon_sym_LBRACE,
- anon_sym_COMMA,
- anon_sym_RBRACE,
- anon_sym_RPAREN,
- anon_sym_of,
- anon_sym_COLON,
- anon_sym_LBRACK,
- anon_sym_RBRACK,
- anon_sym_QMARK_DOT,
- anon_sym_AMP_AMP,
- anon_sym_PIPE_PIPE,
- anon_sym_GT_GT_GT,
- anon_sym_LT_LT,
- anon_sym_CARET,
- anon_sym_PERCENT,
- anon_sym_STAR_STAR,
- anon_sym_LT_EQ,
- anon_sym_EQ_EQ_EQ,
- anon_sym_BANG_EQ_EQ,
- anon_sym_GT_EQ,
- anon_sym_QMARK_QMARK,
- anon_sym_instanceof,
- anon_sym_PLUS_PLUS,
- anon_sym_DASH_DASH,
- anon_sym_BQUOTE,
- anon_sym_satisfies,
- anon_sym_extends,
- anon_sym_implements,
- [25499] = 5,
- ACTIONS(3977), 1,
- anon_sym_LT,
- STATE(1595), 1,
- sym_type_arguments,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(4025), 12,
- anon_sym_STAR,
- anon_sym_BANG,
- anon_sym_in,
- anon_sym_GT,
- anon_sym_GT_GT,
- anon_sym_AMP,
- anon_sym_PIPE,
- anon_sym_PLUS,
- anon_sym_DASH,
- anon_sym_SLASH,
- anon_sym_EQ_EQ,
- anon_sym_BANG_EQ,
- ACTIONS(4027), 32,
- sym__ternary_qmark,
- anon_sym_as,
- anon_sym_LBRACE,
- anon_sym_COMMA,
- anon_sym_RBRACE,
- anon_sym_LPAREN,
- anon_sym_RPAREN,
- anon_sym_of,
- anon_sym_COLON,
- anon_sym_LBRACK,
- anon_sym_RBRACK,
- anon_sym_DOT,
- anon_sym_QMARK_DOT,
- anon_sym_AMP_AMP,
- anon_sym_PIPE_PIPE,
- anon_sym_GT_GT_GT,
- anon_sym_LT_LT,
- anon_sym_CARET,
- anon_sym_PERCENT,
- anon_sym_STAR_STAR,
- anon_sym_LT_EQ,
- anon_sym_EQ_EQ_EQ,
- anon_sym_BANG_EQ_EQ,
- anon_sym_GT_EQ,
- anon_sym_QMARK_QMARK,
- anon_sym_instanceof,
- anon_sym_PLUS_PLUS,
- anon_sym_DASH_DASH,
- anon_sym_BQUOTE,
- anon_sym_satisfies,
- anon_sym_extends,
- anon_sym_implements,
- [25558] = 6,
- ACTIONS(4029), 1,
- anon_sym_LBRACE,
- ACTIONS(4031), 1,
- anon_sym_DOT,
- STATE(1654), 1,
- sym_statement_block,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(1714), 13,
- anon_sym_STAR,
- anon_sym_BANG,
- anon_sym_in,
- anon_sym_GT,
- anon_sym_GT_GT,
- anon_sym_AMP,
- anon_sym_PIPE,
- anon_sym_PLUS,
- anon_sym_DASH,
- anon_sym_SLASH,
- anon_sym_LT,
- anon_sym_EQ_EQ,
- anon_sym_BANG_EQ,
- ACTIONS(1712), 30,
- sym__automatic_semicolon,
- sym__ternary_qmark,
- anon_sym_as,
- anon_sym_COMMA,
- anon_sym_RBRACE,
- anon_sym_else,
- anon_sym_LPAREN,
- anon_sym_of,
- anon_sym_while,
- anon_sym_SEMI,
- anon_sym_LBRACK,
- anon_sym_QMARK_DOT,
- anon_sym_AMP_AMP,
- anon_sym_PIPE_PIPE,
- anon_sym_GT_GT_GT,
- anon_sym_LT_LT,
- anon_sym_CARET,
- anon_sym_PERCENT,
- anon_sym_STAR_STAR,
- anon_sym_LT_EQ,
- anon_sym_EQ_EQ_EQ,
- anon_sym_BANG_EQ_EQ,
- anon_sym_GT_EQ,
- anon_sym_QMARK_QMARK,
- anon_sym_instanceof,
- anon_sym_PLUS_PLUS,
- anon_sym_DASH_DASH,
- anon_sym_BQUOTE,
- anon_sym_satisfies,
- anon_sym_PIPE_RBRACE,
- [25619] = 6,
- ACTIONS(3977), 1,
- anon_sym_LT,
- ACTIONS(4009), 1,
- anon_sym_DOT,
- STATE(1584), 1,
- sym_type_arguments,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(4007), 12,
- anon_sym_STAR,
- anon_sym_BANG,
- anon_sym_in,
- anon_sym_GT,
- anon_sym_GT_GT,
- anon_sym_AMP,
- anon_sym_PIPE,
- anon_sym_PLUS,
- anon_sym_DASH,
- anon_sym_SLASH,
- anon_sym_EQ_EQ,
- anon_sym_BANG_EQ,
- ACTIONS(3461), 31,
- sym__ternary_qmark,
- anon_sym_as,
- anon_sym_LBRACE,
- anon_sym_COMMA,
- anon_sym_RBRACE,
- anon_sym_LPAREN,
- anon_sym_RPAREN,
- anon_sym_of,
- anon_sym_COLON,
- anon_sym_LBRACK,
- anon_sym_RBRACK,
- anon_sym_QMARK_DOT,
- anon_sym_AMP_AMP,
- anon_sym_PIPE_PIPE,
- anon_sym_GT_GT_GT,
- anon_sym_LT_LT,
- anon_sym_CARET,
- anon_sym_PERCENT,
- anon_sym_STAR_STAR,
- anon_sym_LT_EQ,
- anon_sym_EQ_EQ_EQ,
- anon_sym_BANG_EQ_EQ,
- anon_sym_GT_EQ,
- anon_sym_QMARK_QMARK,
- anon_sym_instanceof,
- anon_sym_PLUS_PLUS,
- anon_sym_DASH_DASH,
- anon_sym_BQUOTE,
- anon_sym_satisfies,
- anon_sym_extends,
- anon_sym_implements,
- [25680] = 6,
- ACTIONS(4029), 1,
- anon_sym_LBRACE,
- ACTIONS(4033), 1,
- anon_sym_DOT,
- STATE(1654), 1,
- sym_statement_block,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(1714), 13,
- anon_sym_STAR,
- anon_sym_BANG,
- anon_sym_in,
- anon_sym_GT,
- anon_sym_GT_GT,
- anon_sym_AMP,
- anon_sym_PIPE,
- anon_sym_PLUS,
- anon_sym_DASH,
- anon_sym_SLASH,
- anon_sym_LT,
- anon_sym_EQ_EQ,
- anon_sym_BANG_EQ,
- ACTIONS(1712), 30,
- sym__automatic_semicolon,
- sym__ternary_qmark,
- anon_sym_as,
- anon_sym_COMMA,
- anon_sym_RBRACE,
- anon_sym_else,
- anon_sym_LPAREN,
- anon_sym_of,
- anon_sym_while,
- anon_sym_SEMI,
- anon_sym_LBRACK,
- anon_sym_QMARK_DOT,
- anon_sym_AMP_AMP,
- anon_sym_PIPE_PIPE,
- anon_sym_GT_GT_GT,
- anon_sym_LT_LT,
- anon_sym_CARET,
- anon_sym_PERCENT,
- anon_sym_STAR_STAR,
- anon_sym_LT_EQ,
- anon_sym_EQ_EQ_EQ,
- anon_sym_BANG_EQ_EQ,
- anon_sym_GT_EQ,
- anon_sym_QMARK_QMARK,
- anon_sym_instanceof,
- anon_sym_PLUS_PLUS,
- anon_sym_DASH_DASH,
- anon_sym_BQUOTE,
- anon_sym_satisfies,
- anon_sym_PIPE_RBRACE,
- [25741] = 3,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(1823), 14,
- anon_sym_STAR,
- anon_sym_BANG,
- anon_sym_in,
- anon_sym_GT,
- anon_sym_GT_GT,
- anon_sym_AMP,
- anon_sym_PIPE,
- anon_sym_PLUS,
- anon_sym_DASH,
- anon_sym_SLASH,
- anon_sym_LT,
- anon_sym_EQ_EQ,
- anon_sym_BANG_EQ,
- anon_sym_QMARK,
- ACTIONS(1821), 32,
- sym__ternary_qmark,
- anon_sym_as,
- anon_sym_LBRACE,
- anon_sym_COMMA,
- anon_sym_RBRACE,
- anon_sym_LPAREN,
- anon_sym_RPAREN,
- anon_sym_of,
- anon_sym_COLON,
- anon_sym_LBRACK,
- anon_sym_RBRACK,
- anon_sym_DOT,
- anon_sym_QMARK_DOT,
- anon_sym_AMP_AMP,
- anon_sym_PIPE_PIPE,
- anon_sym_GT_GT_GT,
- anon_sym_LT_LT,
- anon_sym_CARET,
- anon_sym_PERCENT,
- anon_sym_STAR_STAR,
- anon_sym_LT_EQ,
- anon_sym_EQ_EQ_EQ,
- anon_sym_BANG_EQ_EQ,
- anon_sym_GT_EQ,
- anon_sym_QMARK_QMARK,
- anon_sym_instanceof,
- anon_sym_PLUS_PLUS,
- anon_sym_DASH_DASH,
- anon_sym_BQUOTE,
- anon_sym_satisfies,
- anon_sym_extends,
- anon_sym_implements,
- [25796] = 3,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(1652), 13,
- anon_sym_STAR,
- anon_sym_BANG,
- anon_sym_in,
- anon_sym_GT,
- anon_sym_GT_GT,
- anon_sym_AMP,
- anon_sym_PIPE,
- anon_sym_PLUS,
- anon_sym_DASH,
- anon_sym_SLASH,
- anon_sym_LT,
- anon_sym_EQ_EQ,
- anon_sym_BANG_EQ,
- ACTIONS(1650), 33,
- sym__ternary_qmark,
- anon_sym_as,
- anon_sym_LBRACE,
- anon_sym_COMMA,
- anon_sym_RBRACE,
- anon_sym_LPAREN,
- anon_sym_RPAREN,
- anon_sym_of,
- anon_sym_COLON,
- anon_sym_LBRACK,
- anon_sym_RBRACK,
- anon_sym_DOT,
- anon_sym_QMARK_DOT,
- anon_sym_AMP_AMP,
- anon_sym_PIPE_PIPE,
- anon_sym_GT_GT_GT,
- anon_sym_LT_LT,
- anon_sym_CARET,
- anon_sym_PERCENT,
- anon_sym_STAR_STAR,
- anon_sym_LT_EQ,
- anon_sym_EQ_EQ_EQ,
- anon_sym_BANG_EQ_EQ,
- anon_sym_GT_EQ,
- anon_sym_QMARK_QMARK,
- anon_sym_instanceof,
- anon_sym_PLUS_PLUS,
- anon_sym_DASH_DASH,
- anon_sym_BQUOTE,
- anon_sym_satisfies,
- anon_sym_extends,
- anon_sym_implements,
- anon_sym_is,
- [25851] = 6,
- ACTIONS(825), 1,
- anon_sym_BQUOTE,
- ACTIONS(3969), 1,
- anon_sym_LPAREN,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- STATE(1626), 2,
- sym_template_string,
- sym_arguments,
- ACTIONS(4035), 13,
- anon_sym_STAR,
- anon_sym_BANG,
- anon_sym_in,
- anon_sym_GT,
- anon_sym_GT_GT,
- anon_sym_AMP,
- anon_sym_PIPE,
- anon_sym_PLUS,
- anon_sym_DASH,
- anon_sym_SLASH,
- anon_sym_LT,
- anon_sym_EQ_EQ,
- anon_sym_BANG_EQ,
- ACTIONS(4037), 29,
- sym__ternary_qmark,
- anon_sym_as,
- anon_sym_LBRACE,
- anon_sym_COMMA,
- anon_sym_RBRACE,
- anon_sym_RPAREN,
- anon_sym_of,
- anon_sym_COLON,
- anon_sym_LBRACK,
- anon_sym_RBRACK,
- anon_sym_DOT,
- anon_sym_QMARK_DOT,
- anon_sym_AMP_AMP,
- anon_sym_PIPE_PIPE,
- anon_sym_GT_GT_GT,
- anon_sym_LT_LT,
- anon_sym_CARET,
- anon_sym_PERCENT,
- anon_sym_STAR_STAR,
- anon_sym_LT_EQ,
- anon_sym_EQ_EQ_EQ,
- anon_sym_BANG_EQ_EQ,
- anon_sym_GT_EQ,
- anon_sym_QMARK_QMARK,
- anon_sym_instanceof,
- anon_sym_PLUS_PLUS,
- anon_sym_DASH_DASH,
- anon_sym_satisfies,
- anon_sym_implements,
- [25912] = 3,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(1919), 14,
- anon_sym_STAR,
- anon_sym_BANG,
- anon_sym_in,
- anon_sym_GT,
- anon_sym_GT_GT,
- anon_sym_AMP,
- anon_sym_PIPE,
- anon_sym_PLUS,
- anon_sym_DASH,
- anon_sym_SLASH,
- anon_sym_LT,
- anon_sym_EQ_EQ,
- anon_sym_BANG_EQ,
- anon_sym_QMARK,
- ACTIONS(1917), 32,
- sym__ternary_qmark,
- anon_sym_as,
- anon_sym_LBRACE,
- anon_sym_COMMA,
- anon_sym_RBRACE,
- anon_sym_LPAREN,
- anon_sym_RPAREN,
- anon_sym_of,
- anon_sym_COLON,
- anon_sym_LBRACK,
- anon_sym_RBRACK,
- anon_sym_DOT,
- anon_sym_QMARK_DOT,
- anon_sym_AMP_AMP,
- anon_sym_PIPE_PIPE,
- anon_sym_GT_GT_GT,
- anon_sym_LT_LT,
- anon_sym_CARET,
- anon_sym_PERCENT,
- anon_sym_STAR_STAR,
- anon_sym_LT_EQ,
- anon_sym_EQ_EQ_EQ,
- anon_sym_BANG_EQ_EQ,
- anon_sym_GT_EQ,
- anon_sym_QMARK_QMARK,
- anon_sym_instanceof,
- anon_sym_PLUS_PLUS,
- anon_sym_DASH_DASH,
- anon_sym_BQUOTE,
- anon_sym_satisfies,
- anon_sym_extends,
- anon_sym_implements,
- [25967] = 4,
- ACTIONS(4011), 1,
- anon_sym_is,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(4039), 13,
- anon_sym_STAR,
- anon_sym_BANG,
- anon_sym_in,
- anon_sym_GT,
- anon_sym_GT_GT,
- anon_sym_AMP,
- anon_sym_PIPE,
- anon_sym_PLUS,
- anon_sym_DASH,
- anon_sym_SLASH,
- anon_sym_LT,
- anon_sym_EQ_EQ,
- anon_sym_BANG_EQ,
- ACTIONS(4041), 32,
- sym__ternary_qmark,
- anon_sym_as,
- anon_sym_LBRACE,
- anon_sym_COMMA,
- anon_sym_RBRACE,
- anon_sym_LPAREN,
- anon_sym_RPAREN,
- anon_sym_of,
- anon_sym_COLON,
- anon_sym_LBRACK,
- anon_sym_RBRACK,
- anon_sym_DOT,
- anon_sym_QMARK_DOT,
- anon_sym_AMP_AMP,
- anon_sym_PIPE_PIPE,
- anon_sym_GT_GT_GT,
- anon_sym_LT_LT,
- anon_sym_CARET,
- anon_sym_PERCENT,
- anon_sym_STAR_STAR,
- anon_sym_LT_EQ,
- anon_sym_EQ_EQ_EQ,
- anon_sym_BANG_EQ_EQ,
- anon_sym_GT_EQ,
- anon_sym_QMARK_QMARK,
- anon_sym_instanceof,
- anon_sym_PLUS_PLUS,
- anon_sym_DASH_DASH,
- anon_sym_BQUOTE,
- anon_sym_satisfies,
- anon_sym_extends,
- anon_sym_implements,
- [26024] = 4,
- ACTIONS(4043), 1,
- anon_sym_is,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(4025), 13,
- anon_sym_STAR,
- anon_sym_BANG,
- anon_sym_in,
- anon_sym_GT,
- anon_sym_GT_GT,
- anon_sym_AMP,
- anon_sym_PIPE,
- anon_sym_PLUS,
- anon_sym_DASH,
- anon_sym_SLASH,
- anon_sym_LT,
- anon_sym_EQ_EQ,
- anon_sym_BANG_EQ,
- ACTIONS(4027), 32,
- sym__ternary_qmark,
- anon_sym_as,
- anon_sym_LBRACE,
- anon_sym_COMMA,
- anon_sym_RBRACE,
- anon_sym_LPAREN,
- anon_sym_RPAREN,
- anon_sym_of,
- anon_sym_COLON,
- anon_sym_LBRACK,
- anon_sym_RBRACK,
- anon_sym_DOT,
- anon_sym_QMARK_DOT,
- anon_sym_AMP_AMP,
- anon_sym_PIPE_PIPE,
- anon_sym_GT_GT_GT,
- anon_sym_LT_LT,
- anon_sym_CARET,
- anon_sym_PERCENT,
- anon_sym_STAR_STAR,
- anon_sym_LT_EQ,
- anon_sym_EQ_EQ_EQ,
- anon_sym_BANG_EQ_EQ,
- anon_sym_GT_EQ,
- anon_sym_QMARK_QMARK,
- anon_sym_instanceof,
- anon_sym_PLUS_PLUS,
- anon_sym_DASH_DASH,
- anon_sym_BQUOTE,
- anon_sym_satisfies,
- anon_sym_extends,
- anon_sym_implements,
- [26081] = 3,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(4045), 13,
- anon_sym_STAR,
- anon_sym_BANG,
- anon_sym_in,
- anon_sym_GT,
- anon_sym_GT_GT,
- anon_sym_AMP,
- anon_sym_PIPE,
- anon_sym_PLUS,
- anon_sym_DASH,
- anon_sym_SLASH,
- anon_sym_LT,
- anon_sym_EQ_EQ,
- anon_sym_BANG_EQ,
- ACTIONS(4047), 33,
- sym__ternary_qmark,
- anon_sym_as,
- anon_sym_LBRACE,
- anon_sym_COMMA,
- anon_sym_RBRACE,
- anon_sym_LPAREN,
- anon_sym_RPAREN,
- anon_sym_of,
- anon_sym_COLON,
- anon_sym_LBRACK,
- anon_sym_RBRACK,
- anon_sym_DOT,
- anon_sym_QMARK_DOT,
- anon_sym_AMP_AMP,
- anon_sym_PIPE_PIPE,
- anon_sym_GT_GT_GT,
- anon_sym_LT_LT,
- anon_sym_CARET,
- anon_sym_PERCENT,
- anon_sym_STAR_STAR,
- anon_sym_LT_EQ,
- anon_sym_EQ_EQ_EQ,
- anon_sym_BANG_EQ_EQ,
- anon_sym_GT_EQ,
- anon_sym_QMARK_QMARK,
- anon_sym_instanceof,
- anon_sym_PLUS_PLUS,
- anon_sym_DASH_DASH,
- anon_sym_BQUOTE,
- anon_sym_satisfies,
- anon_sym_extends,
- anon_sym_implements,
- anon_sym_is,
- [26136] = 5,
- ACTIONS(4029), 1,
- anon_sym_LBRACE,
- STATE(1654), 1,
- sym_statement_block,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(1714), 13,
- anon_sym_STAR,
- anon_sym_BANG,
- anon_sym_in,
- anon_sym_GT,
- anon_sym_GT_GT,
- anon_sym_AMP,
- anon_sym_PIPE,
- anon_sym_PLUS,
- anon_sym_DASH,
- anon_sym_SLASH,
- anon_sym_LT,
- anon_sym_EQ_EQ,
- anon_sym_BANG_EQ,
- ACTIONS(1712), 31,
- sym__automatic_semicolon,
- sym__ternary_qmark,
- anon_sym_as,
- anon_sym_COMMA,
- anon_sym_RBRACE,
- anon_sym_else,
- anon_sym_LPAREN,
- anon_sym_of,
- anon_sym_while,
- anon_sym_SEMI,
- anon_sym_LBRACK,
- anon_sym_DOT,
- anon_sym_QMARK_DOT,
- anon_sym_AMP_AMP,
- anon_sym_PIPE_PIPE,
- anon_sym_GT_GT_GT,
- anon_sym_LT_LT,
- anon_sym_CARET,
- anon_sym_PERCENT,
- anon_sym_STAR_STAR,
- anon_sym_LT_EQ,
- anon_sym_EQ_EQ_EQ,
- anon_sym_BANG_EQ_EQ,
- anon_sym_GT_EQ,
- anon_sym_QMARK_QMARK,
- anon_sym_instanceof,
- anon_sym_PLUS_PLUS,
- anon_sym_DASH_DASH,
- anon_sym_BQUOTE,
- anon_sym_satisfies,
- anon_sym_PIPE_RBRACE,
- [26195] = 3,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(3127), 14,
- anon_sym_STAR,
- anon_sym_BANG,
- anon_sym_in,
- anon_sym_GT,
- anon_sym_GT_GT,
- anon_sym_AMP,
- anon_sym_PIPE,
- anon_sym_PLUS,
- anon_sym_DASH,
- anon_sym_SLASH,
- anon_sym_LT,
- anon_sym_EQ_EQ,
- anon_sym_BANG_EQ,
- anon_sym_QMARK,
- ACTIONS(3129), 32,
- sym__ternary_qmark,
- anon_sym_as,
- anon_sym_LBRACE,
- anon_sym_COMMA,
- anon_sym_RBRACE,
- anon_sym_LPAREN,
- anon_sym_RPAREN,
- anon_sym_of,
- anon_sym_COLON,
- anon_sym_LBRACK,
- anon_sym_RBRACK,
- anon_sym_DOT,
- anon_sym_QMARK_DOT,
- anon_sym_AMP_AMP,
- anon_sym_PIPE_PIPE,
- anon_sym_GT_GT_GT,
- anon_sym_LT_LT,
- anon_sym_CARET,
- anon_sym_PERCENT,
- anon_sym_STAR_STAR,
- anon_sym_LT_EQ,
- anon_sym_EQ_EQ_EQ,
- anon_sym_BANG_EQ_EQ,
- anon_sym_GT_EQ,
- anon_sym_QMARK_QMARK,
- anon_sym_instanceof,
- anon_sym_PLUS_PLUS,
- anon_sym_DASH_DASH,
- anon_sym_BQUOTE,
- anon_sym_satisfies,
- anon_sym_extends,
- anon_sym_implements,
- [26250] = 32,
- ACTIONS(825), 1,
- anon_sym_BQUOTE,
- ACTIONS(3969), 1,
- anon_sym_LPAREN,
- ACTIONS(3971), 1,
- anon_sym_LBRACK,
- ACTIONS(3973), 1,
- anon_sym_DOT,
- ACTIONS(4051), 1,
- anon_sym_as,
- ACTIONS(4055), 1,
- anon_sym_BANG,
- ACTIONS(4059), 1,
- anon_sym_QMARK_DOT,
- ACTIONS(4061), 1,
- anon_sym_AMP_AMP,
- ACTIONS(4063), 1,
- anon_sym_PIPE_PIPE,
- ACTIONS(4065), 1,
- anon_sym_GT_GT,
- ACTIONS(4069), 1,
- anon_sym_AMP,
- ACTIONS(4071), 1,
- anon_sym_CARET,
- ACTIONS(4073), 1,
- anon_sym_PIPE,
- ACTIONS(4077), 1,
- anon_sym_PERCENT,
- ACTIONS(4079), 1,
- anon_sym_STAR_STAR,
- ACTIONS(4081), 1,
- anon_sym_LT,
- ACTIONS(4089), 1,
- anon_sym_QMARK_QMARK,
- ACTIONS(4093), 1,
- anon_sym_satisfies,
- ACTIONS(4095), 1,
- sym__ternary_qmark,
- STATE(1447), 1,
- sym_type_arguments,
- STATE(5080), 1,
- sym_optional_chain,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(4049), 2,
- anon_sym_STAR,
- anon_sym_SLASH,
- ACTIONS(4057), 2,
- anon_sym_in,
- anon_sym_GT,
- ACTIONS(4067), 2,
- anon_sym_GT_GT_GT,
- anon_sym_LT_LT,
- ACTIONS(4075), 2,
- anon_sym_PLUS,
- anon_sym_DASH,
- ACTIONS(4085), 2,
- anon_sym_EQ_EQ,
- anon_sym_BANG_EQ,
- ACTIONS(4087), 2,
- anon_sym_EQ_EQ_EQ,
- anon_sym_BANG_EQ_EQ,
- ACTIONS(4091), 2,
- anon_sym_PLUS_PLUS,
- anon_sym_DASH_DASH,
- STATE(1757), 2,
- sym_template_string,
- sym_arguments,
- ACTIONS(4083), 3,
- anon_sym_LT_EQ,
- anon_sym_GT_EQ,
- anon_sym_instanceof,
- ACTIONS(4053), 5,
- anon_sym_COMMA,
- anon_sym_RBRACE,
- anon_sym_RPAREN,
- anon_sym_COLON,
- anon_sym_RBRACK,
- [26362] = 3,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(3598), 13,
- anon_sym_STAR,
- anon_sym_BANG,
- anon_sym_in,
- anon_sym_GT,
- anon_sym_GT_GT,
- anon_sym_AMP,
- anon_sym_PIPE,
- anon_sym_PLUS,
- anon_sym_DASH,
- anon_sym_SLASH,
- anon_sym_LT,
- anon_sym_EQ_EQ,
- anon_sym_BANG_EQ,
- ACTIONS(3382), 32,
- sym__ternary_qmark,
- anon_sym_as,
- anon_sym_LBRACE,
- anon_sym_COMMA,
- anon_sym_RBRACE,
- anon_sym_LPAREN,
- anon_sym_RPAREN,
- anon_sym_of,
- anon_sym_COLON,
- anon_sym_LBRACK,
- anon_sym_RBRACK,
- anon_sym_DOT,
- anon_sym_QMARK_DOT,
- anon_sym_AMP_AMP,
- anon_sym_PIPE_PIPE,
- anon_sym_GT_GT_GT,
- anon_sym_LT_LT,
- anon_sym_CARET,
- anon_sym_PERCENT,
- anon_sym_STAR_STAR,
- anon_sym_LT_EQ,
- anon_sym_EQ_EQ_EQ,
- anon_sym_BANG_EQ_EQ,
- anon_sym_GT_EQ,
- anon_sym_QMARK_QMARK,
- anon_sym_instanceof,
- anon_sym_PLUS_PLUS,
- anon_sym_DASH_DASH,
- anon_sym_BQUOTE,
- anon_sym_satisfies,
- anon_sym_extends,
- anon_sym_implements,
- [26416] = 4,
- ACTIONS(4101), 1,
- anon_sym_DOT,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(4097), 13,
- anon_sym_STAR,
- anon_sym_BANG,
- anon_sym_in,
- anon_sym_GT,
- anon_sym_GT_GT,
- anon_sym_AMP,
- anon_sym_PIPE,
- anon_sym_PLUS,
- anon_sym_DASH,
- anon_sym_SLASH,
- anon_sym_LT,
- anon_sym_EQ_EQ,
- anon_sym_BANG_EQ,
- ACTIONS(4099), 31,
- sym__ternary_qmark,
- anon_sym_as,
- anon_sym_LBRACE,
- anon_sym_COMMA,
- anon_sym_RBRACE,
- anon_sym_LPAREN,
- anon_sym_RPAREN,
- anon_sym_of,
- anon_sym_COLON,
- anon_sym_LBRACK,
- anon_sym_RBRACK,
- anon_sym_QMARK_DOT,
- anon_sym_AMP_AMP,
- anon_sym_PIPE_PIPE,
- anon_sym_GT_GT_GT,
- anon_sym_LT_LT,
- anon_sym_CARET,
- anon_sym_PERCENT,
- anon_sym_STAR_STAR,
- anon_sym_LT_EQ,
- anon_sym_EQ_EQ_EQ,
- anon_sym_BANG_EQ_EQ,
- anon_sym_GT_EQ,
- anon_sym_QMARK_QMARK,
- anon_sym_instanceof,
- anon_sym_PLUS_PLUS,
- anon_sym_DASH_DASH,
- anon_sym_BQUOTE,
- anon_sym_satisfies,
- anon_sym_extends,
- anon_sym_implements,
- [26472] = 3,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(4104), 13,
- anon_sym_STAR,
- anon_sym_BANG,
- anon_sym_in,
- anon_sym_GT,
- anon_sym_GT_GT,
- anon_sym_AMP,
- anon_sym_PIPE,
- anon_sym_PLUS,
- anon_sym_DASH,
- anon_sym_SLASH,
- anon_sym_LT,
- anon_sym_EQ_EQ,
- anon_sym_BANG_EQ,
- ACTIONS(4106), 32,
- sym__ternary_qmark,
- anon_sym_as,
- anon_sym_LBRACE,
- anon_sym_COMMA,
- anon_sym_RBRACE,
- anon_sym_LPAREN,
- anon_sym_RPAREN,
- anon_sym_of,
- anon_sym_COLON,
- anon_sym_LBRACK,
- anon_sym_RBRACK,
- anon_sym_DOT,
- anon_sym_QMARK_DOT,
- anon_sym_AMP_AMP,
- anon_sym_PIPE_PIPE,
- anon_sym_GT_GT_GT,
- anon_sym_LT_LT,
- anon_sym_CARET,
- anon_sym_PERCENT,
- anon_sym_STAR_STAR,
- anon_sym_LT_EQ,
- anon_sym_EQ_EQ_EQ,
- anon_sym_BANG_EQ_EQ,
- anon_sym_GT_EQ,
- anon_sym_QMARK_QMARK,
- anon_sym_instanceof,
- anon_sym_PLUS_PLUS,
- anon_sym_DASH_DASH,
- anon_sym_BQUOTE,
- anon_sym_satisfies,
- anon_sym_extends,
- anon_sym_implements,
- [26526] = 6,
- ACTIONS(4108), 1,
- anon_sym_AMP,
- ACTIONS(4110), 1,
- anon_sym_PIPE,
- ACTIONS(4112), 1,
- anon_sym_extends,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(4104), 11,
- anon_sym_STAR,
- anon_sym_BANG,
- anon_sym_in,
- anon_sym_GT,
- anon_sym_GT_GT,
- anon_sym_PLUS,
- anon_sym_DASH,
- anon_sym_SLASH,
- anon_sym_LT,
- anon_sym_EQ_EQ,
- anon_sym_BANG_EQ,
- ACTIONS(4106), 31,
- sym__ternary_qmark,
- anon_sym_as,
- anon_sym_LBRACE,
- anon_sym_COMMA,
- anon_sym_RBRACE,
- anon_sym_LPAREN,
- anon_sym_RPAREN,
- anon_sym_of,
- anon_sym_COLON,
- anon_sym_LBRACK,
- anon_sym_RBRACK,
- anon_sym_DOT,
- anon_sym_QMARK_DOT,
- anon_sym_AMP_AMP,
- anon_sym_PIPE_PIPE,
- anon_sym_GT_GT_GT,
- anon_sym_LT_LT,
- anon_sym_CARET,
- anon_sym_PERCENT,
- anon_sym_STAR_STAR,
- anon_sym_LT_EQ,
- anon_sym_EQ_EQ_EQ,
- anon_sym_BANG_EQ_EQ,
- anon_sym_GT_EQ,
- anon_sym_QMARK_QMARK,
- anon_sym_instanceof,
- anon_sym_PLUS_PLUS,
- anon_sym_DASH_DASH,
- anon_sym_BQUOTE,
- anon_sym_satisfies,
- anon_sym_implements,
- [26586] = 3,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(4114), 13,
- anon_sym_STAR,
- anon_sym_BANG,
- anon_sym_in,
- anon_sym_GT,
- anon_sym_GT_GT,
- anon_sym_AMP,
- anon_sym_PIPE,
- anon_sym_PLUS,
- anon_sym_DASH,
- anon_sym_SLASH,
- anon_sym_LT,
- anon_sym_EQ_EQ,
- anon_sym_BANG_EQ,
- ACTIONS(4116), 32,
- sym__ternary_qmark,
- anon_sym_as,
- anon_sym_LBRACE,
- anon_sym_COMMA,
- anon_sym_RBRACE,
- anon_sym_LPAREN,
- anon_sym_RPAREN,
- anon_sym_of,
- anon_sym_COLON,
- anon_sym_LBRACK,
- anon_sym_RBRACK,
- anon_sym_DOT,
- anon_sym_QMARK_DOT,
- anon_sym_AMP_AMP,
- anon_sym_PIPE_PIPE,
- anon_sym_GT_GT_GT,
- anon_sym_LT_LT,
- anon_sym_CARET,
- anon_sym_PERCENT,
- anon_sym_STAR_STAR,
- anon_sym_LT_EQ,
- anon_sym_EQ_EQ_EQ,
- anon_sym_BANG_EQ_EQ,
- anon_sym_GT_EQ,
- anon_sym_QMARK_QMARK,
- anon_sym_instanceof,
- anon_sym_PLUS_PLUS,
- anon_sym_DASH_DASH,
- anon_sym_BQUOTE,
- anon_sym_satisfies,
- anon_sym_extends,
- anon_sym_implements,
- [26640] = 3,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(4118), 13,
- anon_sym_STAR,
- anon_sym_BANG,
- anon_sym_in,
- anon_sym_GT,
- anon_sym_GT_GT,
- anon_sym_AMP,
- anon_sym_PIPE,
- anon_sym_PLUS,
- anon_sym_DASH,
- anon_sym_SLASH,
- anon_sym_LT,
- anon_sym_EQ_EQ,
- anon_sym_BANG_EQ,
- ACTIONS(4120), 32,
- sym__ternary_qmark,
- anon_sym_as,
- anon_sym_LBRACE,
- anon_sym_COMMA,
- anon_sym_RBRACE,
- anon_sym_LPAREN,
- anon_sym_RPAREN,
- anon_sym_of,
- anon_sym_COLON,
- anon_sym_LBRACK,
- anon_sym_RBRACK,
- anon_sym_DOT,
- anon_sym_QMARK_DOT,
- anon_sym_AMP_AMP,
- anon_sym_PIPE_PIPE,
- anon_sym_GT_GT_GT,
- anon_sym_LT_LT,
- anon_sym_CARET,
- anon_sym_PERCENT,
- anon_sym_STAR_STAR,
- anon_sym_LT_EQ,
- anon_sym_EQ_EQ_EQ,
- anon_sym_BANG_EQ_EQ,
- anon_sym_GT_EQ,
- anon_sym_QMARK_QMARK,
- anon_sym_instanceof,
- anon_sym_PLUS_PLUS,
- anon_sym_DASH_DASH,
- anon_sym_BQUOTE,
- anon_sym_satisfies,
- anon_sym_extends,
- anon_sym_implements,
- [26694] = 3,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(4122), 13,
- anon_sym_STAR,
- anon_sym_BANG,
- anon_sym_in,
- anon_sym_GT,
- anon_sym_GT_GT,
- anon_sym_AMP,
- anon_sym_PIPE,
- anon_sym_PLUS,
- anon_sym_DASH,
- anon_sym_SLASH,
- anon_sym_LT,
- anon_sym_EQ_EQ,
- anon_sym_BANG_EQ,
- ACTIONS(4124), 32,
- sym__ternary_qmark,
- anon_sym_as,
- anon_sym_LBRACE,
- anon_sym_COMMA,
- anon_sym_RBRACE,
- anon_sym_LPAREN,
- anon_sym_RPAREN,
- anon_sym_of,
- anon_sym_COLON,
- anon_sym_LBRACK,
- anon_sym_RBRACK,
- anon_sym_DOT,
- anon_sym_QMARK_DOT,
- anon_sym_AMP_AMP,
- anon_sym_PIPE_PIPE,
- anon_sym_GT_GT_GT,
- anon_sym_LT_LT,
- anon_sym_CARET,
- anon_sym_PERCENT,
- anon_sym_STAR_STAR,
- anon_sym_LT_EQ,
- anon_sym_EQ_EQ_EQ,
- anon_sym_BANG_EQ_EQ,
- anon_sym_GT_EQ,
- anon_sym_QMARK_QMARK,
- anon_sym_instanceof,
- anon_sym_PLUS_PLUS,
- anon_sym_DASH_DASH,
- anon_sym_BQUOTE,
- anon_sym_satisfies,
- anon_sym_extends,
- anon_sym_implements,
- [26748] = 3,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(4126), 13,
- anon_sym_STAR,
- anon_sym_BANG,
- anon_sym_in,
- anon_sym_GT,
- anon_sym_GT_GT,
- anon_sym_AMP,
- anon_sym_PIPE,
- anon_sym_PLUS,
- anon_sym_DASH,
- anon_sym_SLASH,
- anon_sym_LT,
- anon_sym_EQ_EQ,
- anon_sym_BANG_EQ,
- ACTIONS(4128), 32,
- sym__ternary_qmark,
- anon_sym_as,
- anon_sym_LBRACE,
- anon_sym_COMMA,
- anon_sym_RBRACE,
- anon_sym_LPAREN,
- anon_sym_RPAREN,
- anon_sym_of,
- anon_sym_COLON,
- anon_sym_LBRACK,
- anon_sym_RBRACK,
- anon_sym_DOT,
- anon_sym_QMARK_DOT,
- anon_sym_AMP_AMP,
- anon_sym_PIPE_PIPE,
- anon_sym_GT_GT_GT,
- anon_sym_LT_LT,
- anon_sym_CARET,
- anon_sym_PERCENT,
- anon_sym_STAR_STAR,
- anon_sym_LT_EQ,
- anon_sym_EQ_EQ_EQ,
- anon_sym_BANG_EQ_EQ,
- anon_sym_GT_EQ,
- anon_sym_QMARK_QMARK,
- anon_sym_instanceof,
- anon_sym_PLUS_PLUS,
- anon_sym_DASH_DASH,
- anon_sym_BQUOTE,
- anon_sym_satisfies,
- anon_sym_extends,
- anon_sym_implements,
- [26802] = 3,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(4130), 13,
- anon_sym_STAR,
- anon_sym_BANG,
- anon_sym_in,
- anon_sym_GT,
- anon_sym_GT_GT,
- anon_sym_AMP,
- anon_sym_PIPE,
- anon_sym_PLUS,
- anon_sym_DASH,
- anon_sym_SLASH,
- anon_sym_LT,
- anon_sym_EQ_EQ,
- anon_sym_BANG_EQ,
- ACTIONS(4132), 32,
- sym__ternary_qmark,
- anon_sym_as,
- anon_sym_LBRACE,
- anon_sym_COMMA,
- anon_sym_RBRACE,
- anon_sym_LPAREN,
- anon_sym_RPAREN,
- anon_sym_of,
- anon_sym_COLON,
- anon_sym_LBRACK,
- anon_sym_RBRACK,
- anon_sym_DOT,
- anon_sym_QMARK_DOT,
- anon_sym_AMP_AMP,
- anon_sym_PIPE_PIPE,
- anon_sym_GT_GT_GT,
- anon_sym_LT_LT,
- anon_sym_CARET,
- anon_sym_PERCENT,
- anon_sym_STAR_STAR,
- anon_sym_LT_EQ,
- anon_sym_EQ_EQ_EQ,
- anon_sym_BANG_EQ_EQ,
- anon_sym_GT_EQ,
- anon_sym_QMARK_QMARK,
- anon_sym_instanceof,
- anon_sym_PLUS_PLUS,
- anon_sym_DASH_DASH,
- anon_sym_BQUOTE,
- anon_sym_satisfies,
- anon_sym_extends,
- anon_sym_implements,
- [26856] = 4,
- ACTIONS(4108), 1,
- anon_sym_AMP,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(4134), 12,
- anon_sym_STAR,
- anon_sym_BANG,
- anon_sym_in,
- anon_sym_GT,
- anon_sym_GT_GT,
- anon_sym_PIPE,
- anon_sym_PLUS,
- anon_sym_DASH,
- anon_sym_SLASH,
- anon_sym_LT,
- anon_sym_EQ_EQ,
- anon_sym_BANG_EQ,
- ACTIONS(4136), 32,
- sym__ternary_qmark,
- anon_sym_as,
- anon_sym_LBRACE,
- anon_sym_COMMA,
- anon_sym_RBRACE,
- anon_sym_LPAREN,
- anon_sym_RPAREN,
- anon_sym_of,
- anon_sym_COLON,
- anon_sym_LBRACK,
- anon_sym_RBRACK,
- anon_sym_DOT,
- anon_sym_QMARK_DOT,
- anon_sym_AMP_AMP,
- anon_sym_PIPE_PIPE,
- anon_sym_GT_GT_GT,
- anon_sym_LT_LT,
- anon_sym_CARET,
- anon_sym_PERCENT,
- anon_sym_STAR_STAR,
- anon_sym_LT_EQ,
- anon_sym_EQ_EQ_EQ,
- anon_sym_BANG_EQ_EQ,
- anon_sym_GT_EQ,
- anon_sym_QMARK_QMARK,
- anon_sym_instanceof,
- anon_sym_PLUS_PLUS,
- anon_sym_DASH_DASH,
- anon_sym_BQUOTE,
- anon_sym_satisfies,
- anon_sym_extends,
- anon_sym_implements,
- [26912] = 3,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(4138), 13,
- anon_sym_STAR,
- anon_sym_BANG,
- anon_sym_in,
- anon_sym_GT,
- anon_sym_GT_GT,
- anon_sym_AMP,
- anon_sym_PIPE,
- anon_sym_PLUS,
- anon_sym_DASH,
- anon_sym_SLASH,
- anon_sym_LT,
- anon_sym_EQ_EQ,
- anon_sym_BANG_EQ,
- ACTIONS(4140), 32,
- sym__ternary_qmark,
- anon_sym_as,
- anon_sym_LBRACE,
- anon_sym_COMMA,
- anon_sym_RBRACE,
- anon_sym_LPAREN,
- anon_sym_RPAREN,
- anon_sym_of,
- anon_sym_COLON,
- anon_sym_LBRACK,
- anon_sym_RBRACK,
- anon_sym_DOT,
- anon_sym_QMARK_DOT,
- anon_sym_AMP_AMP,
- anon_sym_PIPE_PIPE,
- anon_sym_GT_GT_GT,
- anon_sym_LT_LT,
- anon_sym_CARET,
- anon_sym_PERCENT,
- anon_sym_STAR_STAR,
- anon_sym_LT_EQ,
- anon_sym_EQ_EQ_EQ,
- anon_sym_BANG_EQ_EQ,
- anon_sym_GT_EQ,
- anon_sym_QMARK_QMARK,
- anon_sym_instanceof,
- anon_sym_PLUS_PLUS,
- anon_sym_DASH_DASH,
- anon_sym_BQUOTE,
- anon_sym_satisfies,
- anon_sym_extends,
- anon_sym_implements,
- [26966] = 3,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(4142), 13,
- anon_sym_STAR,
- anon_sym_BANG,
- anon_sym_in,
- anon_sym_GT,
- anon_sym_GT_GT,
- anon_sym_AMP,
- anon_sym_PIPE,
- anon_sym_PLUS,
- anon_sym_DASH,
- anon_sym_SLASH,
- anon_sym_LT,
- anon_sym_EQ_EQ,
- anon_sym_BANG_EQ,
- ACTIONS(4144), 32,
- sym__ternary_qmark,
- anon_sym_as,
- anon_sym_LBRACE,
- anon_sym_COMMA,
- anon_sym_RBRACE,
- anon_sym_LPAREN,
- anon_sym_RPAREN,
- anon_sym_of,
- anon_sym_COLON,
- anon_sym_LBRACK,
- anon_sym_RBRACK,
- anon_sym_DOT,
- anon_sym_QMARK_DOT,
- anon_sym_AMP_AMP,
- anon_sym_PIPE_PIPE,
- anon_sym_GT_GT_GT,
- anon_sym_LT_LT,
- anon_sym_CARET,
- anon_sym_PERCENT,
- anon_sym_STAR_STAR,
- anon_sym_LT_EQ,
- anon_sym_EQ_EQ_EQ,
- anon_sym_BANG_EQ_EQ,
- anon_sym_GT_EQ,
- anon_sym_QMARK_QMARK,
- anon_sym_instanceof,
- anon_sym_PLUS_PLUS,
- anon_sym_DASH_DASH,
- anon_sym_BQUOTE,
- anon_sym_satisfies,
- anon_sym_extends,
- anon_sym_implements,
- [27020] = 3,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(2321), 13,
- anon_sym_STAR,
- anon_sym_BANG,
- anon_sym_in,
- anon_sym_GT,
- anon_sym_GT_GT,
- anon_sym_AMP,
- anon_sym_PIPE,
- anon_sym_PLUS,
- anon_sym_DASH,
- anon_sym_SLASH,
- anon_sym_LT,
- anon_sym_EQ_EQ,
- anon_sym_BANG_EQ,
- ACTIONS(2319), 32,
- sym__ternary_qmark,
- anon_sym_as,
- anon_sym_LBRACE,
- anon_sym_COMMA,
- anon_sym_RBRACE,
- anon_sym_LPAREN,
- anon_sym_RPAREN,
- anon_sym_of,
- anon_sym_COLON,
- anon_sym_LBRACK,
- anon_sym_RBRACK,
- anon_sym_DOT,
- anon_sym_QMARK_DOT,
- anon_sym_AMP_AMP,
- anon_sym_PIPE_PIPE,
- anon_sym_GT_GT_GT,
- anon_sym_LT_LT,
- anon_sym_CARET,
- anon_sym_PERCENT,
- anon_sym_STAR_STAR,
- anon_sym_LT_EQ,
- anon_sym_EQ_EQ_EQ,
- anon_sym_BANG_EQ_EQ,
- anon_sym_GT_EQ,
- anon_sym_QMARK_QMARK,
- anon_sym_instanceof,
- anon_sym_PLUS_PLUS,
- anon_sym_DASH_DASH,
- anon_sym_BQUOTE,
- anon_sym_satisfies,
- anon_sym_extends,
- anon_sym_implements,
- [27074] = 7,
- ACTIONS(3971), 1,
- anon_sym_LBRACK,
- ACTIONS(3973), 1,
- anon_sym_DOT,
- ACTIONS(3975), 1,
- anon_sym_QMARK_DOT,
- STATE(5080), 1,
- sym_optional_chain,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(1787), 13,
- anon_sym_STAR,
- anon_sym_BANG,
- anon_sym_in,
- anon_sym_GT,
- anon_sym_GT_GT,
- anon_sym_AMP,
- anon_sym_PIPE,
- anon_sym_PLUS,
- anon_sym_DASH,
- anon_sym_SLASH,
- anon_sym_LT,
- anon_sym_EQ_EQ,
- anon_sym_BANG_EQ,
- ACTIONS(1789), 28,
- sym__ternary_qmark,
- anon_sym_as,
- anon_sym_LBRACE,
- anon_sym_COMMA,
- anon_sym_RBRACE,
- anon_sym_LPAREN,
- anon_sym_RPAREN,
- anon_sym_of,
- anon_sym_COLON,
- anon_sym_RBRACK,
- anon_sym_AMP_AMP,
- anon_sym_PIPE_PIPE,
- anon_sym_GT_GT_GT,
- anon_sym_LT_LT,
- anon_sym_CARET,
- anon_sym_PERCENT,
- anon_sym_STAR_STAR,
- anon_sym_LT_EQ,
- anon_sym_EQ_EQ_EQ,
- anon_sym_BANG_EQ_EQ,
- anon_sym_GT_EQ,
- anon_sym_QMARK_QMARK,
- anon_sym_instanceof,
- anon_sym_PLUS_PLUS,
- anon_sym_DASH_DASH,
- anon_sym_BQUOTE,
- anon_sym_satisfies,
- anon_sym_implements,
- [27136] = 3,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(4146), 13,
- anon_sym_STAR,
- anon_sym_BANG,
- anon_sym_in,
- anon_sym_GT,
- anon_sym_GT_GT,
- anon_sym_AMP,
- anon_sym_PIPE,
- anon_sym_PLUS,
- anon_sym_DASH,
- anon_sym_SLASH,
- anon_sym_LT,
- anon_sym_EQ_EQ,
- anon_sym_BANG_EQ,
- ACTIONS(4148), 32,
- sym__ternary_qmark,
- anon_sym_as,
- anon_sym_LBRACE,
- anon_sym_COMMA,
- anon_sym_RBRACE,
- anon_sym_LPAREN,
- anon_sym_RPAREN,
- anon_sym_of,
- anon_sym_COLON,
- anon_sym_LBRACK,
- anon_sym_RBRACK,
- anon_sym_DOT,
- anon_sym_QMARK_DOT,
- anon_sym_AMP_AMP,
- anon_sym_PIPE_PIPE,
- anon_sym_GT_GT_GT,
- anon_sym_LT_LT,
- anon_sym_CARET,
- anon_sym_PERCENT,
- anon_sym_STAR_STAR,
- anon_sym_LT_EQ,
- anon_sym_EQ_EQ_EQ,
- anon_sym_BANG_EQ_EQ,
- anon_sym_GT_EQ,
- anon_sym_QMARK_QMARK,
- anon_sym_instanceof,
- anon_sym_PLUS_PLUS,
- anon_sym_DASH_DASH,
- anon_sym_BQUOTE,
- anon_sym_satisfies,
- anon_sym_extends,
- anon_sym_implements,
- [27190] = 3,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(4150), 13,
- anon_sym_STAR,
- anon_sym_BANG,
- anon_sym_in,
- anon_sym_GT,
- anon_sym_GT_GT,
- anon_sym_AMP,
- anon_sym_PIPE,
- anon_sym_PLUS,
- anon_sym_DASH,
- anon_sym_SLASH,
- anon_sym_LT,
- anon_sym_EQ_EQ,
- anon_sym_BANG_EQ,
- ACTIONS(4152), 32,
- sym__ternary_qmark,
- anon_sym_as,
- anon_sym_LBRACE,
- anon_sym_COMMA,
- anon_sym_RBRACE,
- anon_sym_LPAREN,
- anon_sym_RPAREN,
- anon_sym_of,
- anon_sym_COLON,
- anon_sym_LBRACK,
- anon_sym_RBRACK,
- anon_sym_DOT,
- anon_sym_QMARK_DOT,
- anon_sym_AMP_AMP,
- anon_sym_PIPE_PIPE,
- anon_sym_GT_GT_GT,
- anon_sym_LT_LT,
- anon_sym_CARET,
- anon_sym_PERCENT,
- anon_sym_STAR_STAR,
- anon_sym_LT_EQ,
- anon_sym_EQ_EQ_EQ,
- anon_sym_BANG_EQ_EQ,
- anon_sym_GT_EQ,
- anon_sym_QMARK_QMARK,
- anon_sym_instanceof,
- anon_sym_PLUS_PLUS,
- anon_sym_DASH_DASH,
- anon_sym_BQUOTE,
- anon_sym_satisfies,
- anon_sym_extends,
- anon_sym_implements,
- [27244] = 3,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(4154), 13,
- anon_sym_STAR,
- anon_sym_BANG,
- anon_sym_in,
- anon_sym_GT,
- anon_sym_GT_GT,
- anon_sym_AMP,
- anon_sym_PIPE,
- anon_sym_PLUS,
- anon_sym_DASH,
- anon_sym_SLASH,
- anon_sym_LT,
- anon_sym_EQ_EQ,
- anon_sym_BANG_EQ,
- ACTIONS(4156), 32,
- sym__ternary_qmark,
- anon_sym_as,
- anon_sym_LBRACE,
- anon_sym_COMMA,
- anon_sym_RBRACE,
- anon_sym_LPAREN,
- anon_sym_RPAREN,
- anon_sym_of,
- anon_sym_COLON,
- anon_sym_LBRACK,
- anon_sym_RBRACK,
- anon_sym_DOT,
- anon_sym_QMARK_DOT,
- anon_sym_AMP_AMP,
- anon_sym_PIPE_PIPE,
- anon_sym_GT_GT_GT,
- anon_sym_LT_LT,
- anon_sym_CARET,
- anon_sym_PERCENT,
- anon_sym_STAR_STAR,
- anon_sym_LT_EQ,
- anon_sym_EQ_EQ_EQ,
- anon_sym_BANG_EQ_EQ,
- anon_sym_GT_EQ,
- anon_sym_QMARK_QMARK,
- anon_sym_instanceof,
- anon_sym_PLUS_PLUS,
- anon_sym_DASH_DASH,
- anon_sym_BQUOTE,
- anon_sym_satisfies,
- anon_sym_extends,
- anon_sym_implements,
- [27298] = 3,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(4150), 13,
- anon_sym_STAR,
- anon_sym_BANG,
- anon_sym_in,
- anon_sym_GT,
- anon_sym_GT_GT,
- anon_sym_AMP,
- anon_sym_PIPE,
- anon_sym_PLUS,
- anon_sym_DASH,
- anon_sym_SLASH,
- anon_sym_LT,
- anon_sym_EQ_EQ,
- anon_sym_BANG_EQ,
- ACTIONS(4152), 32,
- sym__ternary_qmark,
- anon_sym_as,
- anon_sym_LBRACE,
- anon_sym_COMMA,
- anon_sym_RBRACE,
- anon_sym_LPAREN,
- anon_sym_RPAREN,
- anon_sym_of,
- anon_sym_COLON,
- anon_sym_LBRACK,
- anon_sym_RBRACK,
- anon_sym_DOT,
- anon_sym_QMARK_DOT,
- anon_sym_AMP_AMP,
- anon_sym_PIPE_PIPE,
- anon_sym_GT_GT_GT,
- anon_sym_LT_LT,
- anon_sym_CARET,
- anon_sym_PERCENT,
- anon_sym_STAR_STAR,
- anon_sym_LT_EQ,
- anon_sym_EQ_EQ_EQ,
- anon_sym_BANG_EQ_EQ,
- anon_sym_GT_EQ,
- anon_sym_QMARK_QMARK,
- anon_sym_instanceof,
- anon_sym_PLUS_PLUS,
- anon_sym_DASH_DASH,
- anon_sym_BQUOTE,
- anon_sym_satisfies,
- anon_sym_extends,
- anon_sym_implements,
- [27352] = 3,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(4154), 13,
- anon_sym_STAR,
- anon_sym_BANG,
- anon_sym_in,
- anon_sym_GT,
- anon_sym_GT_GT,
- anon_sym_AMP,
- anon_sym_PIPE,
- anon_sym_PLUS,
- anon_sym_DASH,
- anon_sym_SLASH,
- anon_sym_LT,
- anon_sym_EQ_EQ,
- anon_sym_BANG_EQ,
- ACTIONS(4156), 32,
- sym__ternary_qmark,
- anon_sym_as,
- anon_sym_LBRACE,
- anon_sym_COMMA,
- anon_sym_RBRACE,
- anon_sym_LPAREN,
- anon_sym_RPAREN,
- anon_sym_of,
- anon_sym_COLON,
- anon_sym_LBRACK,
- anon_sym_RBRACK,
- anon_sym_DOT,
- anon_sym_QMARK_DOT,
- anon_sym_AMP_AMP,
- anon_sym_PIPE_PIPE,
- anon_sym_GT_GT_GT,
- anon_sym_LT_LT,
- anon_sym_CARET,
- anon_sym_PERCENT,
- anon_sym_STAR_STAR,
- anon_sym_LT_EQ,
- anon_sym_EQ_EQ_EQ,
- anon_sym_BANG_EQ_EQ,
- anon_sym_GT_EQ,
- anon_sym_QMARK_QMARK,
- anon_sym_instanceof,
- anon_sym_PLUS_PLUS,
- anon_sym_DASH_DASH,
- anon_sym_BQUOTE,
- anon_sym_satisfies,
- anon_sym_extends,
- anon_sym_implements,
- [27406] = 3,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(4158), 13,
- anon_sym_STAR,
- anon_sym_BANG,
- anon_sym_in,
- anon_sym_GT,
- anon_sym_GT_GT,
- anon_sym_AMP,
- anon_sym_PIPE,
- anon_sym_PLUS,
- anon_sym_DASH,
- anon_sym_SLASH,
- anon_sym_LT,
- anon_sym_EQ_EQ,
- anon_sym_BANG_EQ,
- ACTIONS(4160), 32,
- sym__ternary_qmark,
- anon_sym_as,
- anon_sym_LBRACE,
- anon_sym_COMMA,
- anon_sym_RBRACE,
- anon_sym_LPAREN,
- anon_sym_RPAREN,
- anon_sym_of,
- anon_sym_COLON,
- anon_sym_LBRACK,
- anon_sym_RBRACK,
- anon_sym_DOT,
- anon_sym_QMARK_DOT,
- anon_sym_AMP_AMP,
- anon_sym_PIPE_PIPE,
- anon_sym_GT_GT_GT,
- anon_sym_LT_LT,
- anon_sym_CARET,
- anon_sym_PERCENT,
- anon_sym_STAR_STAR,
- anon_sym_LT_EQ,
- anon_sym_EQ_EQ_EQ,
- anon_sym_BANG_EQ_EQ,
- anon_sym_GT_EQ,
- anon_sym_QMARK_QMARK,
- anon_sym_instanceof,
- anon_sym_PLUS_PLUS,
- anon_sym_DASH_DASH,
- anon_sym_BQUOTE,
- anon_sym_satisfies,
- anon_sym_extends,
- anon_sym_implements,
- [27460] = 3,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(4162), 13,
- anon_sym_STAR,
- anon_sym_BANG,
- anon_sym_in,
- anon_sym_GT,
- anon_sym_GT_GT,
- anon_sym_AMP,
- anon_sym_PIPE,
- anon_sym_PLUS,
- anon_sym_DASH,
- anon_sym_SLASH,
- anon_sym_LT,
- anon_sym_EQ_EQ,
- anon_sym_BANG_EQ,
- ACTIONS(4164), 32,
- sym__ternary_qmark,
- anon_sym_as,
- anon_sym_LBRACE,
- anon_sym_COMMA,
- anon_sym_RBRACE,
- anon_sym_LPAREN,
- anon_sym_RPAREN,
- anon_sym_of,
- anon_sym_COLON,
- anon_sym_LBRACK,
- anon_sym_RBRACK,
- anon_sym_DOT,
- anon_sym_QMARK_DOT,
- anon_sym_AMP_AMP,
- anon_sym_PIPE_PIPE,
- anon_sym_GT_GT_GT,
- anon_sym_LT_LT,
- anon_sym_CARET,
- anon_sym_PERCENT,
- anon_sym_STAR_STAR,
- anon_sym_LT_EQ,
- anon_sym_EQ_EQ_EQ,
- anon_sym_BANG_EQ_EQ,
- anon_sym_GT_EQ,
- anon_sym_QMARK_QMARK,
- anon_sym_instanceof,
- anon_sym_PLUS_PLUS,
- anon_sym_DASH_DASH,
- anon_sym_BQUOTE,
- anon_sym_satisfies,
- anon_sym_extends,
- anon_sym_implements,
- [27514] = 3,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(4158), 13,
- anon_sym_STAR,
- anon_sym_BANG,
- anon_sym_in,
- anon_sym_GT,
- anon_sym_GT_GT,
- anon_sym_AMP,
- anon_sym_PIPE,
- anon_sym_PLUS,
- anon_sym_DASH,
- anon_sym_SLASH,
- anon_sym_LT,
- anon_sym_EQ_EQ,
- anon_sym_BANG_EQ,
- ACTIONS(4160), 32,
- sym__ternary_qmark,
- anon_sym_as,
- anon_sym_LBRACE,
- anon_sym_COMMA,
- anon_sym_RBRACE,
- anon_sym_LPAREN,
- anon_sym_RPAREN,
- anon_sym_of,
- anon_sym_COLON,
- anon_sym_LBRACK,
- anon_sym_RBRACK,
- anon_sym_DOT,
- anon_sym_QMARK_DOT,
- anon_sym_AMP_AMP,
- anon_sym_PIPE_PIPE,
- anon_sym_GT_GT_GT,
- anon_sym_LT_LT,
- anon_sym_CARET,
- anon_sym_PERCENT,
- anon_sym_STAR_STAR,
- anon_sym_LT_EQ,
- anon_sym_EQ_EQ_EQ,
- anon_sym_BANG_EQ_EQ,
- anon_sym_GT_EQ,
- anon_sym_QMARK_QMARK,
- anon_sym_instanceof,
- anon_sym_PLUS_PLUS,
- anon_sym_DASH_DASH,
- anon_sym_BQUOTE,
- anon_sym_satisfies,
- anon_sym_extends,
- anon_sym_implements,
- [27568] = 3,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(4162), 13,
- anon_sym_STAR,
- anon_sym_BANG,
- anon_sym_in,
- anon_sym_GT,
- anon_sym_GT_GT,
- anon_sym_AMP,
- anon_sym_PIPE,
- anon_sym_PLUS,
- anon_sym_DASH,
- anon_sym_SLASH,
- anon_sym_LT,
- anon_sym_EQ_EQ,
- anon_sym_BANG_EQ,
- ACTIONS(4164), 32,
- sym__ternary_qmark,
- anon_sym_as,
- anon_sym_LBRACE,
- anon_sym_COMMA,
- anon_sym_RBRACE,
- anon_sym_LPAREN,
- anon_sym_RPAREN,
- anon_sym_of,
- anon_sym_COLON,
- anon_sym_LBRACK,
- anon_sym_RBRACK,
- anon_sym_DOT,
- anon_sym_QMARK_DOT,
- anon_sym_AMP_AMP,
- anon_sym_PIPE_PIPE,
- anon_sym_GT_GT_GT,
- anon_sym_LT_LT,
- anon_sym_CARET,
- anon_sym_PERCENT,
- anon_sym_STAR_STAR,
- anon_sym_LT_EQ,
- anon_sym_EQ_EQ_EQ,
- anon_sym_BANG_EQ_EQ,
- anon_sym_GT_EQ,
- anon_sym_QMARK_QMARK,
- anon_sym_instanceof,
- anon_sym_PLUS_PLUS,
- anon_sym_DASH_DASH,
- anon_sym_BQUOTE,
- anon_sym_satisfies,
- anon_sym_extends,
- anon_sym_implements,
- [27622] = 3,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(4166), 13,
- anon_sym_STAR,
- anon_sym_BANG,
- anon_sym_in,
- anon_sym_GT,
- anon_sym_GT_GT,
- anon_sym_AMP,
- anon_sym_PIPE,
- anon_sym_PLUS,
- anon_sym_DASH,
- anon_sym_SLASH,
- anon_sym_LT,
- anon_sym_EQ_EQ,
- anon_sym_BANG_EQ,
- ACTIONS(4168), 32,
- sym__ternary_qmark,
- anon_sym_as,
- anon_sym_LBRACE,
- anon_sym_COMMA,
- anon_sym_RBRACE,
- anon_sym_LPAREN,
- anon_sym_RPAREN,
- anon_sym_of,
- anon_sym_COLON,
- anon_sym_LBRACK,
- anon_sym_RBRACK,
- anon_sym_DOT,
- anon_sym_QMARK_DOT,
- anon_sym_AMP_AMP,
- anon_sym_PIPE_PIPE,
- anon_sym_GT_GT_GT,
- anon_sym_LT_LT,
- anon_sym_CARET,
- anon_sym_PERCENT,
- anon_sym_STAR_STAR,
- anon_sym_LT_EQ,
- anon_sym_EQ_EQ_EQ,
- anon_sym_BANG_EQ_EQ,
- anon_sym_GT_EQ,
- anon_sym_QMARK_QMARK,
- anon_sym_instanceof,
- anon_sym_PLUS_PLUS,
- anon_sym_DASH_DASH,
- anon_sym_BQUOTE,
- anon_sym_satisfies,
- anon_sym_extends,
- anon_sym_implements,
- [27676] = 13,
- ACTIONS(825), 1,
- anon_sym_BQUOTE,
- ACTIONS(3969), 1,
- anon_sym_LPAREN,
- ACTIONS(3971), 1,
- anon_sym_LBRACK,
- ACTIONS(3973), 1,
- anon_sym_DOT,
- ACTIONS(4059), 1,
- anon_sym_QMARK_DOT,
- ACTIONS(4174), 1,
- anon_sym_LT,
- STATE(1447), 1,
- sym_type_arguments,
- STATE(5080), 1,
- sym_optional_chain,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(4091), 2,
- anon_sym_PLUS_PLUS,
- anon_sym_DASH_DASH,
- STATE(1757), 2,
- sym_template_string,
- sym_arguments,
- ACTIONS(4170), 12,
- anon_sym_STAR,
- anon_sym_BANG,
- anon_sym_in,
- anon_sym_GT,
- anon_sym_GT_GT,
- anon_sym_AMP,
- anon_sym_PIPE,
- anon_sym_PLUS,
- anon_sym_DASH,
- anon_sym_SLASH,
- anon_sym_EQ_EQ,
- anon_sym_BANG_EQ,
- ACTIONS(4172), 21,
- sym__ternary_qmark,
- anon_sym_as,
- anon_sym_COMMA,
- anon_sym_RBRACE,
- anon_sym_RPAREN,
- anon_sym_COLON,
- anon_sym_RBRACK,
- anon_sym_AMP_AMP,
- anon_sym_PIPE_PIPE,
- anon_sym_GT_GT_GT,
- anon_sym_LT_LT,
- anon_sym_CARET,
- anon_sym_PERCENT,
- anon_sym_STAR_STAR,
- anon_sym_LT_EQ,
- anon_sym_EQ_EQ_EQ,
- anon_sym_BANG_EQ_EQ,
- anon_sym_GT_EQ,
- anon_sym_QMARK_QMARK,
- anon_sym_instanceof,
- anon_sym_satisfies,
- [27750] = 3,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(4177), 13,
- anon_sym_STAR,
- anon_sym_BANG,
- anon_sym_in,
- anon_sym_GT,
- anon_sym_GT_GT,
- anon_sym_AMP,
- anon_sym_PIPE,
- anon_sym_PLUS,
- anon_sym_DASH,
- anon_sym_SLASH,
- anon_sym_LT,
- anon_sym_EQ_EQ,
- anon_sym_BANG_EQ,
- ACTIONS(4179), 32,
- sym__ternary_qmark,
- anon_sym_as,
- anon_sym_LBRACE,
- anon_sym_COMMA,
- anon_sym_RBRACE,
- anon_sym_LPAREN,
- anon_sym_RPAREN,
- anon_sym_of,
- anon_sym_COLON,
- anon_sym_LBRACK,
- anon_sym_RBRACK,
- anon_sym_DOT,
- anon_sym_QMARK_DOT,
- anon_sym_AMP_AMP,
- anon_sym_PIPE_PIPE,
- anon_sym_GT_GT_GT,
- anon_sym_LT_LT,
- anon_sym_CARET,
- anon_sym_PERCENT,
- anon_sym_STAR_STAR,
- anon_sym_LT_EQ,
- anon_sym_EQ_EQ_EQ,
- anon_sym_BANG_EQ_EQ,
- anon_sym_GT_EQ,
- anon_sym_QMARK_QMARK,
- anon_sym_instanceof,
- anon_sym_PLUS_PLUS,
- anon_sym_DASH_DASH,
- anon_sym_BQUOTE,
- anon_sym_satisfies,
- anon_sym_extends,
- anon_sym_implements,
- [27804] = 3,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(4166), 13,
- anon_sym_STAR,
- anon_sym_BANG,
- anon_sym_in,
- anon_sym_GT,
- anon_sym_GT_GT,
- anon_sym_AMP,
- anon_sym_PIPE,
- anon_sym_PLUS,
- anon_sym_DASH,
- anon_sym_SLASH,
- anon_sym_LT,
- anon_sym_EQ_EQ,
- anon_sym_BANG_EQ,
- ACTIONS(4168), 32,
- sym__ternary_qmark,
- anon_sym_as,
- anon_sym_LBRACE,
- anon_sym_COMMA,
- anon_sym_RBRACE,
- anon_sym_LPAREN,
- anon_sym_RPAREN,
- anon_sym_of,
- anon_sym_COLON,
- anon_sym_LBRACK,
- anon_sym_RBRACK,
- anon_sym_DOT,
- anon_sym_QMARK_DOT,
- anon_sym_AMP_AMP,
- anon_sym_PIPE_PIPE,
- anon_sym_GT_GT_GT,
- anon_sym_LT_LT,
- anon_sym_CARET,
- anon_sym_PERCENT,
- anon_sym_STAR_STAR,
- anon_sym_LT_EQ,
- anon_sym_EQ_EQ_EQ,
- anon_sym_BANG_EQ_EQ,
- anon_sym_GT_EQ,
- anon_sym_QMARK_QMARK,
- anon_sym_instanceof,
- anon_sym_PLUS_PLUS,
- anon_sym_DASH_DASH,
- anon_sym_BQUOTE,
- anon_sym_satisfies,
- anon_sym_extends,
- anon_sym_implements,
- [27858] = 3,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(4177), 13,
- anon_sym_STAR,
- anon_sym_BANG,
- anon_sym_in,
- anon_sym_GT,
- anon_sym_GT_GT,
- anon_sym_AMP,
- anon_sym_PIPE,
- anon_sym_PLUS,
- anon_sym_DASH,
- anon_sym_SLASH,
- anon_sym_LT,
- anon_sym_EQ_EQ,
- anon_sym_BANG_EQ,
- ACTIONS(4179), 32,
- sym__ternary_qmark,
- anon_sym_as,
- anon_sym_LBRACE,
- anon_sym_COMMA,
- anon_sym_RBRACE,
- anon_sym_LPAREN,
- anon_sym_RPAREN,
- anon_sym_of,
- anon_sym_COLON,
- anon_sym_LBRACK,
- anon_sym_RBRACK,
- anon_sym_DOT,
- anon_sym_QMARK_DOT,
- anon_sym_AMP_AMP,
- anon_sym_PIPE_PIPE,
- anon_sym_GT_GT_GT,
- anon_sym_LT_LT,
- anon_sym_CARET,
- anon_sym_PERCENT,
- anon_sym_STAR_STAR,
- anon_sym_LT_EQ,
- anon_sym_EQ_EQ_EQ,
- anon_sym_BANG_EQ_EQ,
- anon_sym_GT_EQ,
- anon_sym_QMARK_QMARK,
- anon_sym_instanceof,
- anon_sym_PLUS_PLUS,
- anon_sym_DASH_DASH,
- anon_sym_BQUOTE,
- anon_sym_satisfies,
- anon_sym_extends,
- anon_sym_implements,
- [27912] = 3,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(4181), 13,
- anon_sym_STAR,
- anon_sym_BANG,
- anon_sym_in,
- anon_sym_GT,
- anon_sym_GT_GT,
- anon_sym_AMP,
- anon_sym_PIPE,
- anon_sym_PLUS,
- anon_sym_DASH,
- anon_sym_SLASH,
- anon_sym_LT,
- anon_sym_EQ_EQ,
- anon_sym_BANG_EQ,
- ACTIONS(4183), 32,
- sym__ternary_qmark,
- anon_sym_as,
- anon_sym_LBRACE,
- anon_sym_COMMA,
- anon_sym_RBRACE,
- anon_sym_LPAREN,
- anon_sym_RPAREN,
- anon_sym_of,
- anon_sym_COLON,
- anon_sym_LBRACK,
- anon_sym_RBRACK,
- anon_sym_DOT,
- anon_sym_QMARK_DOT,
- anon_sym_AMP_AMP,
- anon_sym_PIPE_PIPE,
- anon_sym_GT_GT_GT,
- anon_sym_LT_LT,
- anon_sym_CARET,
- anon_sym_PERCENT,
- anon_sym_STAR_STAR,
- anon_sym_LT_EQ,
- anon_sym_EQ_EQ_EQ,
- anon_sym_BANG_EQ_EQ,
- anon_sym_GT_EQ,
- anon_sym_QMARK_QMARK,
- anon_sym_instanceof,
- anon_sym_PLUS_PLUS,
- anon_sym_DASH_DASH,
- anon_sym_BQUOTE,
- anon_sym_satisfies,
- anon_sym_extends,
- anon_sym_implements,
- [27966] = 3,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(4185), 13,
- anon_sym_STAR,
- anon_sym_BANG,
- anon_sym_in,
- anon_sym_GT,
- anon_sym_GT_GT,
- anon_sym_AMP,
- anon_sym_PIPE,
- anon_sym_PLUS,
- anon_sym_DASH,
- anon_sym_SLASH,
- anon_sym_LT,
- anon_sym_EQ_EQ,
- anon_sym_BANG_EQ,
- ACTIONS(4187), 32,
- sym__ternary_qmark,
- anon_sym_as,
- anon_sym_LBRACE,
- anon_sym_COMMA,
- anon_sym_RBRACE,
- anon_sym_LPAREN,
- anon_sym_RPAREN,
- anon_sym_of,
- anon_sym_COLON,
- anon_sym_LBRACK,
- anon_sym_RBRACK,
- anon_sym_DOT,
- anon_sym_QMARK_DOT,
- anon_sym_AMP_AMP,
- anon_sym_PIPE_PIPE,
- anon_sym_GT_GT_GT,
- anon_sym_LT_LT,
- anon_sym_CARET,
- anon_sym_PERCENT,
- anon_sym_STAR_STAR,
- anon_sym_LT_EQ,
- anon_sym_EQ_EQ_EQ,
- anon_sym_BANG_EQ_EQ,
- anon_sym_GT_EQ,
- anon_sym_QMARK_QMARK,
- anon_sym_instanceof,
- anon_sym_PLUS_PLUS,
- anon_sym_DASH_DASH,
- anon_sym_BQUOTE,
- anon_sym_satisfies,
- anon_sym_extends,
- anon_sym_implements,
- [28020] = 6,
- ACTIONS(4189), 1,
- anon_sym_LBRACE,
- ACTIONS(4191), 1,
- anon_sym_DOT,
- STATE(1620), 1,
- sym_statement_block,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(1714), 13,
- anon_sym_STAR,
- anon_sym_BANG,
- anon_sym_in,
- anon_sym_GT,
- anon_sym_GT_GT,
- anon_sym_AMP,
- anon_sym_PIPE,
- anon_sym_PLUS,
- anon_sym_DASH,
- anon_sym_SLASH,
- anon_sym_LT,
- anon_sym_EQ_EQ,
- anon_sym_BANG_EQ,
- ACTIONS(1712), 29,
- sym__ternary_qmark,
- anon_sym_as,
- anon_sym_COMMA,
- anon_sym_RBRACE,
- anon_sym_LPAREN,
- anon_sym_RPAREN,
- anon_sym_of,
- anon_sym_COLON,
- anon_sym_LBRACK,
- anon_sym_RBRACK,
- anon_sym_QMARK_DOT,
- anon_sym_AMP_AMP,
- anon_sym_PIPE_PIPE,
- anon_sym_GT_GT_GT,
- anon_sym_LT_LT,
- anon_sym_CARET,
- anon_sym_PERCENT,
- anon_sym_STAR_STAR,
- anon_sym_LT_EQ,
- anon_sym_EQ_EQ_EQ,
- anon_sym_BANG_EQ_EQ,
- anon_sym_GT_EQ,
- anon_sym_QMARK_QMARK,
- anon_sym_instanceof,
- anon_sym_PLUS_PLUS,
- anon_sym_DASH_DASH,
- anon_sym_BQUOTE,
- anon_sym_satisfies,
- anon_sym_implements,
- [28080] = 6,
- ACTIONS(4189), 1,
- anon_sym_LBRACE,
- ACTIONS(4193), 1,
- anon_sym_DOT,
- STATE(1620), 1,
- sym_statement_block,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(1714), 13,
- anon_sym_STAR,
- anon_sym_BANG,
- anon_sym_in,
- anon_sym_GT,
- anon_sym_GT_GT,
- anon_sym_AMP,
- anon_sym_PIPE,
- anon_sym_PLUS,
- anon_sym_DASH,
- anon_sym_SLASH,
- anon_sym_LT,
- anon_sym_EQ_EQ,
- anon_sym_BANG_EQ,
- ACTIONS(1712), 29,
- sym__ternary_qmark,
- anon_sym_as,
- anon_sym_COMMA,
- anon_sym_RBRACE,
- anon_sym_LPAREN,
- anon_sym_RPAREN,
- anon_sym_of,
- anon_sym_COLON,
- anon_sym_LBRACK,
- anon_sym_RBRACK,
- anon_sym_QMARK_DOT,
- anon_sym_AMP_AMP,
- anon_sym_PIPE_PIPE,
- anon_sym_GT_GT_GT,
- anon_sym_LT_LT,
- anon_sym_CARET,
- anon_sym_PERCENT,
- anon_sym_STAR_STAR,
- anon_sym_LT_EQ,
- anon_sym_EQ_EQ_EQ,
- anon_sym_BANG_EQ_EQ,
- anon_sym_GT_EQ,
- anon_sym_QMARK_QMARK,
- anon_sym_instanceof,
- anon_sym_PLUS_PLUS,
- anon_sym_DASH_DASH,
- anon_sym_BQUOTE,
- anon_sym_satisfies,
- anon_sym_implements,
- [28140] = 6,
- ACTIONS(4108), 1,
- anon_sym_AMP,
- ACTIONS(4110), 1,
- anon_sym_PIPE,
- ACTIONS(4112), 1,
- anon_sym_extends,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(4195), 11,
- anon_sym_STAR,
- anon_sym_BANG,
- anon_sym_in,
- anon_sym_GT,
- anon_sym_GT_GT,
- anon_sym_PLUS,
- anon_sym_DASH,
- anon_sym_SLASH,
- anon_sym_LT,
- anon_sym_EQ_EQ,
- anon_sym_BANG_EQ,
- ACTIONS(4197), 31,
- sym__ternary_qmark,
- anon_sym_as,
- anon_sym_LBRACE,
- anon_sym_COMMA,
- anon_sym_RBRACE,
- anon_sym_LPAREN,
- anon_sym_RPAREN,
- anon_sym_of,
- anon_sym_COLON,
- anon_sym_LBRACK,
- anon_sym_RBRACK,
- anon_sym_DOT,
- anon_sym_QMARK_DOT,
- anon_sym_AMP_AMP,
- anon_sym_PIPE_PIPE,
- anon_sym_GT_GT_GT,
- anon_sym_LT_LT,
- anon_sym_CARET,
- anon_sym_PERCENT,
- anon_sym_STAR_STAR,
- anon_sym_LT_EQ,
- anon_sym_EQ_EQ_EQ,
- anon_sym_BANG_EQ_EQ,
- anon_sym_GT_EQ,
- anon_sym_QMARK_QMARK,
- anon_sym_instanceof,
- anon_sym_PLUS_PLUS,
- anon_sym_DASH_DASH,
- anon_sym_BQUOTE,
- anon_sym_satisfies,
- anon_sym_implements,
- [28200] = 16,
- ACTIONS(825), 1,
- anon_sym_BQUOTE,
- ACTIONS(3969), 1,
- anon_sym_LPAREN,
- ACTIONS(3971), 1,
- anon_sym_LBRACK,
- ACTIONS(3973), 1,
- anon_sym_DOT,
- ACTIONS(4051), 1,
- anon_sym_as,
- ACTIONS(4055), 1,
- anon_sym_BANG,
- ACTIONS(4059), 1,
- anon_sym_QMARK_DOT,
- ACTIONS(4093), 1,
- anon_sym_satisfies,
- ACTIONS(4203), 1,
- anon_sym_LT,
- STATE(1447), 1,
- sym_type_arguments,
- STATE(5080), 1,
- sym_optional_chain,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(4091), 2,
- anon_sym_PLUS_PLUS,
- anon_sym_DASH_DASH,
- STATE(1757), 2,
- sym_template_string,
- sym_arguments,
- ACTIONS(4199), 11,
- anon_sym_STAR,
- anon_sym_in,
- anon_sym_GT,
- anon_sym_GT_GT,
- anon_sym_AMP,
- anon_sym_PIPE,
- anon_sym_PLUS,
- anon_sym_DASH,
- anon_sym_SLASH,
- anon_sym_EQ_EQ,
- anon_sym_BANG_EQ,
- ACTIONS(4201), 19,
- sym__ternary_qmark,
- anon_sym_COMMA,
- anon_sym_RBRACE,
- anon_sym_RPAREN,
- anon_sym_COLON,
- anon_sym_RBRACK,
- anon_sym_AMP_AMP,
- anon_sym_PIPE_PIPE,
- anon_sym_GT_GT_GT,
- anon_sym_LT_LT,
- anon_sym_CARET,
- anon_sym_PERCENT,
- anon_sym_STAR_STAR,
- anon_sym_LT_EQ,
- anon_sym_EQ_EQ_EQ,
- anon_sym_BANG_EQ_EQ,
- anon_sym_GT_EQ,
- anon_sym_QMARK_QMARK,
- anon_sym_instanceof,
- [28280] = 3,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(4206), 13,
- anon_sym_STAR,
- anon_sym_BANG,
- anon_sym_in,
- anon_sym_GT,
- anon_sym_GT_GT,
- anon_sym_AMP,
- anon_sym_PIPE,
- anon_sym_PLUS,
- anon_sym_DASH,
- anon_sym_SLASH,
- anon_sym_LT,
- anon_sym_EQ_EQ,
- anon_sym_BANG_EQ,
- ACTIONS(4208), 32,
- sym__ternary_qmark,
- anon_sym_as,
- anon_sym_LBRACE,
- anon_sym_COMMA,
- anon_sym_RBRACE,
- anon_sym_LPAREN,
- anon_sym_RPAREN,
- anon_sym_of,
- anon_sym_COLON,
- anon_sym_LBRACK,
- anon_sym_RBRACK,
- anon_sym_DOT,
- anon_sym_QMARK_DOT,
- anon_sym_AMP_AMP,
- anon_sym_PIPE_PIPE,
- anon_sym_GT_GT_GT,
- anon_sym_LT_LT,
- anon_sym_CARET,
- anon_sym_PERCENT,
- anon_sym_STAR_STAR,
- anon_sym_LT_EQ,
- anon_sym_EQ_EQ_EQ,
- anon_sym_BANG_EQ_EQ,
- anon_sym_GT_EQ,
- anon_sym_QMARK_QMARK,
- anon_sym_instanceof,
- anon_sym_PLUS_PLUS,
- anon_sym_DASH_DASH,
- anon_sym_BQUOTE,
- anon_sym_satisfies,
- anon_sym_extends,
- anon_sym_implements,
- [28334] = 32,
- ACTIONS(825), 1,
- anon_sym_BQUOTE,
- ACTIONS(3969), 1,
- anon_sym_LPAREN,
- ACTIONS(3971), 1,
- anon_sym_LBRACK,
- ACTIONS(3973), 1,
- anon_sym_DOT,
- ACTIONS(4051), 1,
- anon_sym_as,
- ACTIONS(4055), 1,
- anon_sym_BANG,
- ACTIONS(4059), 1,
- anon_sym_QMARK_DOT,
- ACTIONS(4061), 1,
- anon_sym_AMP_AMP,
- ACTIONS(4063), 1,
- anon_sym_PIPE_PIPE,
- ACTIONS(4065), 1,
- anon_sym_GT_GT,
- ACTIONS(4069), 1,
- anon_sym_AMP,
- ACTIONS(4071), 1,
- anon_sym_CARET,
- ACTIONS(4073), 1,
- anon_sym_PIPE,
- ACTIONS(4077), 1,
- anon_sym_PERCENT,
- ACTIONS(4079), 1,
- anon_sym_STAR_STAR,
- ACTIONS(4081), 1,
- anon_sym_LT,
- ACTIONS(4089), 1,
- anon_sym_QMARK_QMARK,
- ACTIONS(4093), 1,
- anon_sym_satisfies,
- ACTIONS(4095), 1,
- sym__ternary_qmark,
- STATE(1447), 1,
- sym_type_arguments,
- STATE(5080), 1,
- sym_optional_chain,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(4049), 2,
- anon_sym_STAR,
- anon_sym_SLASH,
- ACTIONS(4057), 2,
- anon_sym_in,
- anon_sym_GT,
- ACTIONS(4067), 2,
- anon_sym_GT_GT_GT,
- anon_sym_LT_LT,
- ACTIONS(4075), 2,
- anon_sym_PLUS,
- anon_sym_DASH,
- ACTIONS(4085), 2,
- anon_sym_EQ_EQ,
- anon_sym_BANG_EQ,
- ACTIONS(4087), 2,
- anon_sym_EQ_EQ_EQ,
- anon_sym_BANG_EQ_EQ,
- ACTIONS(4091), 2,
- anon_sym_PLUS_PLUS,
- anon_sym_DASH_DASH,
- STATE(1757), 2,
- sym_template_string,
- sym_arguments,
- ACTIONS(4083), 3,
- anon_sym_LT_EQ,
- anon_sym_GT_EQ,
- anon_sym_instanceof,
- ACTIONS(4210), 5,
- anon_sym_COMMA,
- anon_sym_RBRACE,
- anon_sym_RPAREN,
- anon_sym_COLON,
- anon_sym_RBRACK,
- [28446] = 3,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(4212), 13,
- anon_sym_STAR,
- anon_sym_BANG,
- anon_sym_in,
- anon_sym_GT,
- anon_sym_GT_GT,
- anon_sym_AMP,
- anon_sym_PIPE,
- anon_sym_PLUS,
- anon_sym_DASH,
- anon_sym_SLASH,
- anon_sym_LT,
- anon_sym_EQ_EQ,
- anon_sym_BANG_EQ,
- ACTIONS(4214), 32,
- sym__ternary_qmark,
- anon_sym_as,
- anon_sym_LBRACE,
- anon_sym_COMMA,
- anon_sym_RBRACE,
- anon_sym_LPAREN,
- anon_sym_RPAREN,
- anon_sym_of,
- anon_sym_COLON,
- anon_sym_LBRACK,
- anon_sym_RBRACK,
- anon_sym_DOT,
- anon_sym_QMARK_DOT,
- anon_sym_AMP_AMP,
- anon_sym_PIPE_PIPE,
- anon_sym_GT_GT_GT,
- anon_sym_LT_LT,
- anon_sym_CARET,
- anon_sym_PERCENT,
- anon_sym_STAR_STAR,
- anon_sym_LT_EQ,
- anon_sym_EQ_EQ_EQ,
- anon_sym_BANG_EQ_EQ,
- anon_sym_GT_EQ,
- anon_sym_QMARK_QMARK,
- anon_sym_instanceof,
- anon_sym_PLUS_PLUS,
- anon_sym_DASH_DASH,
- anon_sym_BQUOTE,
- anon_sym_satisfies,
- anon_sym_extends,
- anon_sym_implements,
- [28500] = 6,
- ACTIONS(4108), 1,
- anon_sym_AMP,
- ACTIONS(4110), 1,
- anon_sym_PIPE,
- ACTIONS(4112), 1,
- anon_sym_extends,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(4212), 11,
- anon_sym_STAR,
- anon_sym_BANG,
- anon_sym_in,
- anon_sym_GT,
- anon_sym_GT_GT,
- anon_sym_PLUS,
- anon_sym_DASH,
- anon_sym_SLASH,
- anon_sym_LT,
- anon_sym_EQ_EQ,
- anon_sym_BANG_EQ,
- ACTIONS(4214), 31,
- sym__ternary_qmark,
- anon_sym_as,
- anon_sym_LBRACE,
- anon_sym_COMMA,
- anon_sym_RBRACE,
- anon_sym_LPAREN,
- anon_sym_RPAREN,
- anon_sym_of,
- anon_sym_COLON,
- anon_sym_LBRACK,
- anon_sym_RBRACK,
- anon_sym_DOT,
- anon_sym_QMARK_DOT,
- anon_sym_AMP_AMP,
- anon_sym_PIPE_PIPE,
- anon_sym_GT_GT_GT,
- anon_sym_LT_LT,
- anon_sym_CARET,
- anon_sym_PERCENT,
- anon_sym_STAR_STAR,
- anon_sym_LT_EQ,
- anon_sym_EQ_EQ_EQ,
- anon_sym_BANG_EQ_EQ,
- anon_sym_GT_EQ,
- anon_sym_QMARK_QMARK,
- anon_sym_instanceof,
- anon_sym_PLUS_PLUS,
- anon_sym_DASH_DASH,
- anon_sym_BQUOTE,
- anon_sym_satisfies,
- anon_sym_implements,
- [28560] = 3,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(2325), 13,
- anon_sym_STAR,
- anon_sym_BANG,
- anon_sym_in,
- anon_sym_GT,
- anon_sym_GT_GT,
- anon_sym_AMP,
- anon_sym_PIPE,
- anon_sym_PLUS,
- anon_sym_DASH,
- anon_sym_SLASH,
- anon_sym_LT,
- anon_sym_EQ_EQ,
- anon_sym_BANG_EQ,
- ACTIONS(2323), 32,
- sym__ternary_qmark,
- anon_sym_as,
- anon_sym_LBRACE,
- anon_sym_COMMA,
- anon_sym_RBRACE,
- anon_sym_LPAREN,
- anon_sym_RPAREN,
- anon_sym_of,
- anon_sym_COLON,
- anon_sym_LBRACK,
- anon_sym_RBRACK,
- anon_sym_DOT,
- anon_sym_QMARK_DOT,
- anon_sym_AMP_AMP,
- anon_sym_PIPE_PIPE,
- anon_sym_GT_GT_GT,
- anon_sym_LT_LT,
- anon_sym_CARET,
- anon_sym_PERCENT,
- anon_sym_STAR_STAR,
- anon_sym_LT_EQ,
- anon_sym_EQ_EQ_EQ,
- anon_sym_BANG_EQ_EQ,
- anon_sym_GT_EQ,
- anon_sym_QMARK_QMARK,
- anon_sym_instanceof,
- anon_sym_PLUS_PLUS,
- anon_sym_DASH_DASH,
- anon_sym_BQUOTE,
- anon_sym_satisfies,
- anon_sym_extends,
- anon_sym_implements,
- [28614] = 3,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(4216), 13,
- anon_sym_STAR,
- anon_sym_BANG,
- anon_sym_in,
- anon_sym_GT,
- anon_sym_GT_GT,
- anon_sym_AMP,
- anon_sym_PIPE,
- anon_sym_PLUS,
- anon_sym_DASH,
- anon_sym_SLASH,
- anon_sym_LT,
- anon_sym_EQ_EQ,
- anon_sym_BANG_EQ,
- ACTIONS(4218), 32,
- sym__ternary_qmark,
- anon_sym_as,
- anon_sym_LBRACE,
- anon_sym_COMMA,
- anon_sym_RBRACE,
- anon_sym_LPAREN,
- anon_sym_RPAREN,
- anon_sym_of,
- anon_sym_COLON,
- anon_sym_LBRACK,
- anon_sym_RBRACK,
- anon_sym_DOT,
- anon_sym_QMARK_DOT,
- anon_sym_AMP_AMP,
- anon_sym_PIPE_PIPE,
- anon_sym_GT_GT_GT,
- anon_sym_LT_LT,
- anon_sym_CARET,
- anon_sym_PERCENT,
- anon_sym_STAR_STAR,
- anon_sym_LT_EQ,
- anon_sym_EQ_EQ_EQ,
- anon_sym_BANG_EQ_EQ,
- anon_sym_GT_EQ,
- anon_sym_QMARK_QMARK,
- anon_sym_instanceof,
- anon_sym_PLUS_PLUS,
- anon_sym_DASH_DASH,
- anon_sym_BQUOTE,
- anon_sym_satisfies,
- anon_sym_extends,
- anon_sym_implements,
- [28668] = 3,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(4220), 13,
- anon_sym_STAR,
- anon_sym_BANG,
- anon_sym_in,
- anon_sym_GT,
- anon_sym_GT_GT,
- anon_sym_AMP,
- anon_sym_PIPE,
- anon_sym_PLUS,
- anon_sym_DASH,
- anon_sym_SLASH,
- anon_sym_LT,
- anon_sym_EQ_EQ,
- anon_sym_BANG_EQ,
- ACTIONS(4222), 32,
- sym__ternary_qmark,
- anon_sym_as,
- anon_sym_LBRACE,
- anon_sym_COMMA,
- anon_sym_RBRACE,
- anon_sym_LPAREN,
- anon_sym_RPAREN,
- anon_sym_of,
- anon_sym_COLON,
- anon_sym_LBRACK,
- anon_sym_RBRACK,
- anon_sym_DOT,
- anon_sym_QMARK_DOT,
- anon_sym_AMP_AMP,
- anon_sym_PIPE_PIPE,
- anon_sym_GT_GT_GT,
- anon_sym_LT_LT,
- anon_sym_CARET,
- anon_sym_PERCENT,
- anon_sym_STAR_STAR,
- anon_sym_LT_EQ,
- anon_sym_EQ_EQ_EQ,
- anon_sym_BANG_EQ_EQ,
- anon_sym_GT_EQ,
- anon_sym_QMARK_QMARK,
- anon_sym_instanceof,
- anon_sym_PLUS_PLUS,
- anon_sym_DASH_DASH,
- anon_sym_BQUOTE,
- anon_sym_satisfies,
- anon_sym_extends,
- anon_sym_implements,
- [28722] = 3,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(4220), 13,
- anon_sym_STAR,
- anon_sym_BANG,
- anon_sym_in,
- anon_sym_GT,
- anon_sym_GT_GT,
- anon_sym_AMP,
- anon_sym_PIPE,
- anon_sym_PLUS,
- anon_sym_DASH,
- anon_sym_SLASH,
- anon_sym_LT,
- anon_sym_EQ_EQ,
- anon_sym_BANG_EQ,
- ACTIONS(4222), 32,
- sym__ternary_qmark,
- anon_sym_as,
- anon_sym_LBRACE,
- anon_sym_COMMA,
- anon_sym_RBRACE,
- anon_sym_LPAREN,
- anon_sym_RPAREN,
- anon_sym_of,
- anon_sym_COLON,
- anon_sym_LBRACK,
- anon_sym_RBRACK,
- anon_sym_DOT,
- anon_sym_QMARK_DOT,
- anon_sym_AMP_AMP,
- anon_sym_PIPE_PIPE,
- anon_sym_GT_GT_GT,
- anon_sym_LT_LT,
- anon_sym_CARET,
- anon_sym_PERCENT,
- anon_sym_STAR_STAR,
- anon_sym_LT_EQ,
- anon_sym_EQ_EQ_EQ,
- anon_sym_BANG_EQ_EQ,
- anon_sym_GT_EQ,
- anon_sym_QMARK_QMARK,
- anon_sym_instanceof,
- anon_sym_PLUS_PLUS,
- anon_sym_DASH_DASH,
- anon_sym_BQUOTE,
- anon_sym_satisfies,
- anon_sym_extends,
- anon_sym_implements,
- [28776] = 3,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(4220), 13,
- anon_sym_STAR,
- anon_sym_BANG,
- anon_sym_in,
- anon_sym_GT,
- anon_sym_GT_GT,
- anon_sym_AMP,
- anon_sym_PIPE,
- anon_sym_PLUS,
- anon_sym_DASH,
- anon_sym_SLASH,
- anon_sym_LT,
- anon_sym_EQ_EQ,
- anon_sym_BANG_EQ,
- ACTIONS(4222), 32,
- sym__ternary_qmark,
- anon_sym_as,
- anon_sym_LBRACE,
- anon_sym_COMMA,
- anon_sym_RBRACE,
- anon_sym_LPAREN,
- anon_sym_RPAREN,
- anon_sym_of,
- anon_sym_COLON,
- anon_sym_LBRACK,
- anon_sym_RBRACK,
- anon_sym_DOT,
- anon_sym_QMARK_DOT,
- anon_sym_AMP_AMP,
- anon_sym_PIPE_PIPE,
- anon_sym_GT_GT_GT,
- anon_sym_LT_LT,
- anon_sym_CARET,
- anon_sym_PERCENT,
- anon_sym_STAR_STAR,
- anon_sym_LT_EQ,
- anon_sym_EQ_EQ_EQ,
- anon_sym_BANG_EQ_EQ,
- anon_sym_GT_EQ,
- anon_sym_QMARK_QMARK,
- anon_sym_instanceof,
- anon_sym_PLUS_PLUS,
- anon_sym_DASH_DASH,
- anon_sym_BQUOTE,
- anon_sym_satisfies,
- anon_sym_extends,
- anon_sym_implements,
- [28830] = 3,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(4224), 13,
- anon_sym_STAR,
- anon_sym_BANG,
- anon_sym_in,
- anon_sym_GT,
- anon_sym_GT_GT,
- anon_sym_AMP,
- anon_sym_PIPE,
- anon_sym_PLUS,
- anon_sym_DASH,
- anon_sym_SLASH,
- anon_sym_LT,
- anon_sym_EQ_EQ,
- anon_sym_BANG_EQ,
- ACTIONS(4226), 32,
- sym__ternary_qmark,
- anon_sym_as,
- anon_sym_LBRACE,
- anon_sym_COMMA,
- anon_sym_RBRACE,
- anon_sym_LPAREN,
- anon_sym_RPAREN,
- anon_sym_of,
- anon_sym_COLON,
- anon_sym_LBRACK,
- anon_sym_RBRACK,
- anon_sym_DOT,
- anon_sym_QMARK_DOT,
- anon_sym_AMP_AMP,
- anon_sym_PIPE_PIPE,
- anon_sym_GT_GT_GT,
- anon_sym_LT_LT,
- anon_sym_CARET,
- anon_sym_PERCENT,
- anon_sym_STAR_STAR,
- anon_sym_LT_EQ,
- anon_sym_EQ_EQ_EQ,
- anon_sym_BANG_EQ_EQ,
- anon_sym_GT_EQ,
- anon_sym_QMARK_QMARK,
- anon_sym_instanceof,
- anon_sym_PLUS_PLUS,
- anon_sym_DASH_DASH,
- anon_sym_BQUOTE,
- anon_sym_satisfies,
- anon_sym_extends,
- anon_sym_implements,
- [28884] = 3,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(4224), 13,
- anon_sym_STAR,
- anon_sym_BANG,
- anon_sym_in,
- anon_sym_GT,
- anon_sym_GT_GT,
- anon_sym_AMP,
- anon_sym_PIPE,
- anon_sym_PLUS,
- anon_sym_DASH,
- anon_sym_SLASH,
- anon_sym_LT,
- anon_sym_EQ_EQ,
- anon_sym_BANG_EQ,
- ACTIONS(4226), 32,
- sym__ternary_qmark,
- anon_sym_as,
- anon_sym_LBRACE,
- anon_sym_COMMA,
- anon_sym_RBRACE,
- anon_sym_LPAREN,
- anon_sym_RPAREN,
- anon_sym_of,
- anon_sym_COLON,
- anon_sym_LBRACK,
- anon_sym_RBRACK,
- anon_sym_DOT,
- anon_sym_QMARK_DOT,
- anon_sym_AMP_AMP,
- anon_sym_PIPE_PIPE,
- anon_sym_GT_GT_GT,
- anon_sym_LT_LT,
- anon_sym_CARET,
- anon_sym_PERCENT,
- anon_sym_STAR_STAR,
- anon_sym_LT_EQ,
- anon_sym_EQ_EQ_EQ,
- anon_sym_BANG_EQ_EQ,
- anon_sym_GT_EQ,
- anon_sym_QMARK_QMARK,
- anon_sym_instanceof,
- anon_sym_PLUS_PLUS,
- anon_sym_DASH_DASH,
- anon_sym_BQUOTE,
- anon_sym_satisfies,
- anon_sym_extends,
- anon_sym_implements,
- [28938] = 4,
- ACTIONS(4228), 1,
- sym__automatic_semicolon,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(1873), 13,
- anon_sym_STAR,
- anon_sym_BANG,
- anon_sym_in,
- anon_sym_GT,
- anon_sym_GT_GT,
- anon_sym_AMP,
- anon_sym_PIPE,
- anon_sym_PLUS,
- anon_sym_DASH,
- anon_sym_SLASH,
- anon_sym_LT,
- anon_sym_EQ_EQ,
- anon_sym_BANG_EQ,
- ACTIONS(1871), 31,
- sym__ternary_qmark,
- anon_sym_as,
- anon_sym_LBRACE,
- anon_sym_COMMA,
- anon_sym_RBRACE,
- anon_sym_LPAREN,
- anon_sym_RPAREN,
- anon_sym_of,
- anon_sym_COLON,
- anon_sym_LBRACK,
- anon_sym_RBRACK,
- anon_sym_DOT,
- anon_sym_QMARK_DOT,
- anon_sym_AMP_AMP,
- anon_sym_PIPE_PIPE,
- anon_sym_GT_GT_GT,
- anon_sym_LT_LT,
- anon_sym_CARET,
- anon_sym_PERCENT,
- anon_sym_STAR_STAR,
- anon_sym_LT_EQ,
- anon_sym_EQ_EQ_EQ,
- anon_sym_BANG_EQ_EQ,
- anon_sym_GT_EQ,
- anon_sym_QMARK_QMARK,
- anon_sym_instanceof,
- anon_sym_PLUS_PLUS,
- anon_sym_DASH_DASH,
- anon_sym_BQUOTE,
- anon_sym_satisfies,
- anon_sym_implements,
- [28994] = 3,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(4224), 13,
- anon_sym_STAR,
- anon_sym_BANG,
- anon_sym_in,
- anon_sym_GT,
- anon_sym_GT_GT,
- anon_sym_AMP,
- anon_sym_PIPE,
- anon_sym_PLUS,
- anon_sym_DASH,
- anon_sym_SLASH,
- anon_sym_LT,
- anon_sym_EQ_EQ,
- anon_sym_BANG_EQ,
- ACTIONS(4226), 32,
- sym__ternary_qmark,
- anon_sym_as,
- anon_sym_LBRACE,
- anon_sym_COMMA,
- anon_sym_RBRACE,
- anon_sym_LPAREN,
- anon_sym_RPAREN,
- anon_sym_of,
- anon_sym_COLON,
- anon_sym_LBRACK,
- anon_sym_RBRACK,
- anon_sym_DOT,
- anon_sym_QMARK_DOT,
- anon_sym_AMP_AMP,
- anon_sym_PIPE_PIPE,
- anon_sym_GT_GT_GT,
- anon_sym_LT_LT,
- anon_sym_CARET,
- anon_sym_PERCENT,
- anon_sym_STAR_STAR,
- anon_sym_LT_EQ,
- anon_sym_EQ_EQ_EQ,
- anon_sym_BANG_EQ_EQ,
- anon_sym_GT_EQ,
- anon_sym_QMARK_QMARK,
- anon_sym_instanceof,
- anon_sym_PLUS_PLUS,
- anon_sym_DASH_DASH,
- anon_sym_BQUOTE,
- anon_sym_satisfies,
- anon_sym_extends,
- anon_sym_implements,
- [29048] = 12,
- ACTIONS(825), 1,
- anon_sym_BQUOTE,
- ACTIONS(3969), 1,
- anon_sym_LPAREN,
- ACTIONS(3971), 1,
- anon_sym_LBRACK,
- ACTIONS(3973), 1,
- anon_sym_DOT,
- ACTIONS(4059), 1,
- anon_sym_QMARK_DOT,
- ACTIONS(4234), 1,
- anon_sym_LT,
- STATE(1447), 1,
- sym_type_arguments,
- STATE(5080), 1,
- sym_optional_chain,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- STATE(1757), 2,
- sym_template_string,
- sym_arguments,
- ACTIONS(4230), 12,
- anon_sym_STAR,
- anon_sym_BANG,
- anon_sym_in,
- anon_sym_GT,
- anon_sym_GT_GT,
- anon_sym_AMP,
- anon_sym_PIPE,
- anon_sym_PLUS,
- anon_sym_DASH,
- anon_sym_SLASH,
- anon_sym_EQ_EQ,
- anon_sym_BANG_EQ,
- ACTIONS(4232), 23,
- sym__ternary_qmark,
- anon_sym_as,
- anon_sym_COMMA,
- anon_sym_RBRACE,
- anon_sym_RPAREN,
- anon_sym_COLON,
- anon_sym_RBRACK,
- anon_sym_AMP_AMP,
- anon_sym_PIPE_PIPE,
- anon_sym_GT_GT_GT,
- anon_sym_LT_LT,
- anon_sym_CARET,
- anon_sym_PERCENT,
- anon_sym_STAR_STAR,
- anon_sym_LT_EQ,
- anon_sym_EQ_EQ_EQ,
- anon_sym_BANG_EQ_EQ,
- anon_sym_GT_EQ,
- anon_sym_QMARK_QMARK,
- anon_sym_instanceof,
- anon_sym_PLUS_PLUS,
- anon_sym_DASH_DASH,
- anon_sym_satisfies,
- [29120] = 3,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(4237), 13,
- anon_sym_STAR,
- anon_sym_BANG,
- anon_sym_in,
- anon_sym_GT,
- anon_sym_GT_GT,
- anon_sym_AMP,
- anon_sym_PIPE,
- anon_sym_PLUS,
- anon_sym_DASH,
- anon_sym_SLASH,
- anon_sym_LT,
- anon_sym_EQ_EQ,
- anon_sym_BANG_EQ,
- ACTIONS(4239), 32,
- sym__ternary_qmark,
- anon_sym_as,
- anon_sym_LBRACE,
- anon_sym_COMMA,
- anon_sym_RBRACE,
- anon_sym_LPAREN,
- anon_sym_RPAREN,
- anon_sym_of,
- anon_sym_COLON,
- anon_sym_LBRACK,
- anon_sym_RBRACK,
- anon_sym_DOT,
- anon_sym_QMARK_DOT,
- anon_sym_AMP_AMP,
- anon_sym_PIPE_PIPE,
- anon_sym_GT_GT_GT,
- anon_sym_LT_LT,
- anon_sym_CARET,
- anon_sym_PERCENT,
- anon_sym_STAR_STAR,
- anon_sym_LT_EQ,
- anon_sym_EQ_EQ_EQ,
- anon_sym_BANG_EQ_EQ,
- anon_sym_GT_EQ,
- anon_sym_QMARK_QMARK,
- anon_sym_instanceof,
- anon_sym_PLUS_PLUS,
- anon_sym_DASH_DASH,
- anon_sym_BQUOTE,
- anon_sym_satisfies,
- anon_sym_extends,
- anon_sym_implements,
- [29174] = 3,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(4237), 13,
- anon_sym_STAR,
- anon_sym_BANG,
- anon_sym_in,
- anon_sym_GT,
- anon_sym_GT_GT,
- anon_sym_AMP,
- anon_sym_PIPE,
- anon_sym_PLUS,
- anon_sym_DASH,
- anon_sym_SLASH,
- anon_sym_LT,
- anon_sym_EQ_EQ,
- anon_sym_BANG_EQ,
- ACTIONS(4239), 32,
- sym__ternary_qmark,
- anon_sym_as,
- anon_sym_LBRACE,
- anon_sym_COMMA,
- anon_sym_RBRACE,
- anon_sym_LPAREN,
- anon_sym_RPAREN,
- anon_sym_of,
- anon_sym_COLON,
- anon_sym_LBRACK,
- anon_sym_RBRACK,
- anon_sym_DOT,
- anon_sym_QMARK_DOT,
- anon_sym_AMP_AMP,
- anon_sym_PIPE_PIPE,
- anon_sym_GT_GT_GT,
- anon_sym_LT_LT,
- anon_sym_CARET,
- anon_sym_PERCENT,
- anon_sym_STAR_STAR,
- anon_sym_LT_EQ,
- anon_sym_EQ_EQ_EQ,
- anon_sym_BANG_EQ_EQ,
- anon_sym_GT_EQ,
- anon_sym_QMARK_QMARK,
- anon_sym_instanceof,
- anon_sym_PLUS_PLUS,
- anon_sym_DASH_DASH,
- anon_sym_BQUOTE,
- anon_sym_satisfies,
- anon_sym_extends,
- anon_sym_implements,
- [29228] = 3,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(4237), 13,
- anon_sym_STAR,
- anon_sym_BANG,
- anon_sym_in,
- anon_sym_GT,
- anon_sym_GT_GT,
- anon_sym_AMP,
- anon_sym_PIPE,
- anon_sym_PLUS,
- anon_sym_DASH,
- anon_sym_SLASH,
- anon_sym_LT,
- anon_sym_EQ_EQ,
- anon_sym_BANG_EQ,
- ACTIONS(4239), 32,
- sym__ternary_qmark,
- anon_sym_as,
- anon_sym_LBRACE,
- anon_sym_COMMA,
- anon_sym_RBRACE,
- anon_sym_LPAREN,
- anon_sym_RPAREN,
- anon_sym_of,
- anon_sym_COLON,
- anon_sym_LBRACK,
- anon_sym_RBRACK,
- anon_sym_DOT,
- anon_sym_QMARK_DOT,
- anon_sym_AMP_AMP,
- anon_sym_PIPE_PIPE,
- anon_sym_GT_GT_GT,
- anon_sym_LT_LT,
- anon_sym_CARET,
- anon_sym_PERCENT,
- anon_sym_STAR_STAR,
- anon_sym_LT_EQ,
- anon_sym_EQ_EQ_EQ,
- anon_sym_BANG_EQ_EQ,
- anon_sym_GT_EQ,
- anon_sym_QMARK_QMARK,
- anon_sym_instanceof,
- anon_sym_PLUS_PLUS,
- anon_sym_DASH_DASH,
- anon_sym_BQUOTE,
- anon_sym_satisfies,
- anon_sym_extends,
- anon_sym_implements,
- [29282] = 19,
- ACTIONS(1594), 1,
- anon_sym_DQUOTE,
- ACTIONS(1596), 1,
- anon_sym_SQUOTE,
- ACTIONS(3633), 1,
- anon_sym_override,
- ACTIONS(3737), 1,
- anon_sym_COMMA,
- ACTIONS(3740), 1,
- anon_sym_RBRACE,
- ACTIONS(4241), 1,
- anon_sym_STAR,
- ACTIONS(4243), 1,
- anon_sym_EQ,
- ACTIONS(4245), 1,
- anon_sym_LBRACK,
- ACTIONS(4247), 1,
- anon_sym_async,
- ACTIONS(4251), 1,
- anon_sym_readonly,
- STATE(2701), 1,
- sym_override_modifier,
- STATE(4672), 1,
- aux_sym_object_pattern_repeat1,
- STATE(5156), 1,
- aux_sym_object_repeat1,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(4249), 2,
- sym_number,
- sym_private_property_identifier,
- ACTIONS(4253), 2,
- anon_sym_get,
- anon_sym_set,
- STATE(3081), 3,
- sym_string,
- sym__property_name,
- sym_computed_property_name,
- ACTIONS(3743), 7,
- sym__automatic_semicolon,
- anon_sym_LPAREN,
- anon_sym_SEMI,
- anon_sym_COLON,
- anon_sym_LT,
- anon_sym_QMARK,
- anon_sym_PIPE_RBRACE,
- ACTIONS(3607), 18,
- anon_sym_export,
- anon_sym_type,
- anon_sym_namespace,
- anon_sym_let,
- anon_sym_new,
- sym_identifier,
- anon_sym_static,
- anon_sym_declare,
- anon_sym_public,
- anon_sym_private,
- anon_sym_protected,
- anon_sym_module,
- anon_sym_any,
- anon_sym_number,
- anon_sym_boolean,
- anon_sym_string,
- anon_sym_symbol,
- anon_sym_object,
- [29368] = 32,
- ACTIONS(825), 1,
- anon_sym_BQUOTE,
- ACTIONS(3969), 1,
- anon_sym_LPAREN,
- ACTIONS(3971), 1,
- anon_sym_LBRACK,
- ACTIONS(3973), 1,
- anon_sym_DOT,
- ACTIONS(4051), 1,
- anon_sym_as,
- ACTIONS(4055), 1,
- anon_sym_BANG,
- ACTIONS(4059), 1,
- anon_sym_QMARK_DOT,
- ACTIONS(4061), 1,
- anon_sym_AMP_AMP,
- ACTIONS(4063), 1,
- anon_sym_PIPE_PIPE,
- ACTIONS(4065), 1,
- anon_sym_GT_GT,
- ACTIONS(4069), 1,
- anon_sym_AMP,
- ACTIONS(4071), 1,
- anon_sym_CARET,
- ACTIONS(4073), 1,
- anon_sym_PIPE,
- ACTIONS(4077), 1,
- anon_sym_PERCENT,
- ACTIONS(4079), 1,
- anon_sym_STAR_STAR,
- ACTIONS(4081), 1,
- anon_sym_LT,
- ACTIONS(4089), 1,
- anon_sym_QMARK_QMARK,
- ACTIONS(4093), 1,
- anon_sym_satisfies,
- ACTIONS(4095), 1,
- sym__ternary_qmark,
- STATE(1447), 1,
- sym_type_arguments,
- STATE(5080), 1,
- sym_optional_chain,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(4049), 2,
- anon_sym_STAR,
- anon_sym_SLASH,
- ACTIONS(4057), 2,
- anon_sym_in,
- anon_sym_GT,
- ACTIONS(4067), 2,
- anon_sym_GT_GT_GT,
- anon_sym_LT_LT,
- ACTIONS(4075), 2,
- anon_sym_PLUS,
- anon_sym_DASH,
- ACTIONS(4085), 2,
- anon_sym_EQ_EQ,
- anon_sym_BANG_EQ,
- ACTIONS(4087), 2,
- anon_sym_EQ_EQ_EQ,
- anon_sym_BANG_EQ_EQ,
- ACTIONS(4091), 2,
- anon_sym_PLUS_PLUS,
- anon_sym_DASH_DASH,
- STATE(1757), 2,
- sym_template_string,
- sym_arguments,
- ACTIONS(4083), 3,
- anon_sym_LT_EQ,
- anon_sym_GT_EQ,
- anon_sym_instanceof,
- ACTIONS(4255), 5,
- anon_sym_COMMA,
- anon_sym_RBRACE,
- anon_sym_RPAREN,
- anon_sym_COLON,
- anon_sym_RBRACK,
- [29480] = 32,
- ACTIONS(825), 1,
- anon_sym_BQUOTE,
- ACTIONS(3969), 1,
- anon_sym_LPAREN,
- ACTIONS(3971), 1,
- anon_sym_LBRACK,
- ACTIONS(3973), 1,
- anon_sym_DOT,
- ACTIONS(4051), 1,
- anon_sym_as,
- ACTIONS(4055), 1,
- anon_sym_BANG,
- ACTIONS(4059), 1,
- anon_sym_QMARK_DOT,
- ACTIONS(4061), 1,
- anon_sym_AMP_AMP,
- ACTIONS(4063), 1,
- anon_sym_PIPE_PIPE,
- ACTIONS(4065), 1,
- anon_sym_GT_GT,
- ACTIONS(4069), 1,
- anon_sym_AMP,
- ACTIONS(4071), 1,
- anon_sym_CARET,
- ACTIONS(4073), 1,
- anon_sym_PIPE,
- ACTIONS(4077), 1,
- anon_sym_PERCENT,
- ACTIONS(4079), 1,
- anon_sym_STAR_STAR,
- ACTIONS(4081), 1,
- anon_sym_LT,
- ACTIONS(4089), 1,
- anon_sym_QMARK_QMARK,
- ACTIONS(4093), 1,
- anon_sym_satisfies,
- ACTIONS(4095), 1,
- sym__ternary_qmark,
- STATE(1447), 1,
- sym_type_arguments,
- STATE(5080), 1,
- sym_optional_chain,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(4049), 2,
- anon_sym_STAR,
- anon_sym_SLASH,
- ACTIONS(4057), 2,
- anon_sym_in,
- anon_sym_GT,
- ACTIONS(4067), 2,
- anon_sym_GT_GT_GT,
- anon_sym_LT_LT,
- ACTIONS(4075), 2,
- anon_sym_PLUS,
- anon_sym_DASH,
- ACTIONS(4085), 2,
- anon_sym_EQ_EQ,
- anon_sym_BANG_EQ,
- ACTIONS(4087), 2,
- anon_sym_EQ_EQ_EQ,
- anon_sym_BANG_EQ_EQ,
- ACTIONS(4091), 2,
- anon_sym_PLUS_PLUS,
- anon_sym_DASH_DASH,
- STATE(1757), 2,
- sym_template_string,
- sym_arguments,
- ACTIONS(4083), 3,
- anon_sym_LT_EQ,
- anon_sym_GT_EQ,
- anon_sym_instanceof,
- ACTIONS(4257), 5,
- anon_sym_COMMA,
- anon_sym_RBRACE,
- anon_sym_RPAREN,
- anon_sym_COLON,
- anon_sym_RBRACK,
- [29592] = 3,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(4259), 13,
- anon_sym_STAR,
- anon_sym_BANG,
- anon_sym_in,
- anon_sym_GT,
- anon_sym_GT_GT,
- anon_sym_AMP,
- anon_sym_PIPE,
- anon_sym_PLUS,
- anon_sym_DASH,
- anon_sym_SLASH,
- anon_sym_LT,
- anon_sym_EQ_EQ,
- anon_sym_BANG_EQ,
- ACTIONS(4261), 32,
- sym__ternary_qmark,
- anon_sym_as,
- anon_sym_LBRACE,
- anon_sym_COMMA,
- anon_sym_RBRACE,
- anon_sym_LPAREN,
- anon_sym_RPAREN,
- anon_sym_of,
- anon_sym_COLON,
- anon_sym_LBRACK,
- anon_sym_RBRACK,
- anon_sym_DOT,
- anon_sym_QMARK_DOT,
- anon_sym_AMP_AMP,
- anon_sym_PIPE_PIPE,
- anon_sym_GT_GT_GT,
- anon_sym_LT_LT,
- anon_sym_CARET,
- anon_sym_PERCENT,
- anon_sym_STAR_STAR,
- anon_sym_LT_EQ,
- anon_sym_EQ_EQ_EQ,
- anon_sym_BANG_EQ_EQ,
- anon_sym_GT_EQ,
- anon_sym_QMARK_QMARK,
- anon_sym_instanceof,
- anon_sym_PLUS_PLUS,
- anon_sym_DASH_DASH,
- anon_sym_BQUOTE,
- anon_sym_satisfies,
- anon_sym_extends,
- anon_sym_implements,
- [29646] = 3,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(4263), 13,
- anon_sym_STAR,
- anon_sym_BANG,
- anon_sym_in,
- anon_sym_GT,
- anon_sym_GT_GT,
- anon_sym_AMP,
- anon_sym_PIPE,
- anon_sym_PLUS,
- anon_sym_DASH,
- anon_sym_SLASH,
- anon_sym_LT,
- anon_sym_EQ_EQ,
- anon_sym_BANG_EQ,
- ACTIONS(4265), 32,
- sym__ternary_qmark,
- anon_sym_as,
- anon_sym_LBRACE,
- anon_sym_COMMA,
- anon_sym_RBRACE,
- anon_sym_LPAREN,
- anon_sym_RPAREN,
- anon_sym_of,
- anon_sym_COLON,
- anon_sym_LBRACK,
- anon_sym_RBRACK,
- anon_sym_DOT,
- anon_sym_QMARK_DOT,
- anon_sym_AMP_AMP,
- anon_sym_PIPE_PIPE,
- anon_sym_GT_GT_GT,
- anon_sym_LT_LT,
- anon_sym_CARET,
- anon_sym_PERCENT,
- anon_sym_STAR_STAR,
- anon_sym_LT_EQ,
- anon_sym_EQ_EQ_EQ,
- anon_sym_BANG_EQ_EQ,
- anon_sym_GT_EQ,
- anon_sym_QMARK_QMARK,
- anon_sym_instanceof,
- anon_sym_PLUS_PLUS,
- anon_sym_DASH_DASH,
- anon_sym_BQUOTE,
- anon_sym_satisfies,
- anon_sym_extends,
- anon_sym_implements,
- [29700] = 36,
- ACTIONS(825), 1,
- anon_sym_BQUOTE,
- ACTIONS(3477), 1,
- anon_sym_COLON,
- ACTIONS(3969), 1,
- anon_sym_LPAREN,
- ACTIONS(3971), 1,
- anon_sym_LBRACK,
- ACTIONS(3973), 1,
- anon_sym_DOT,
- ACTIONS(4051), 1,
- anon_sym_as,
- ACTIONS(4055), 1,
- anon_sym_BANG,
- ACTIONS(4059), 1,
- anon_sym_QMARK_DOT,
- ACTIONS(4061), 1,
- anon_sym_AMP_AMP,
- ACTIONS(4063), 1,
- anon_sym_PIPE_PIPE,
- ACTIONS(4065), 1,
- anon_sym_GT_GT,
- ACTIONS(4069), 1,
- anon_sym_AMP,
- ACTIONS(4071), 1,
- anon_sym_CARET,
- ACTIONS(4073), 1,
- anon_sym_PIPE,
- ACTIONS(4077), 1,
- anon_sym_PERCENT,
- ACTIONS(4079), 1,
- anon_sym_STAR_STAR,
- ACTIONS(4081), 1,
- anon_sym_LT,
- ACTIONS(4089), 1,
- anon_sym_QMARK_QMARK,
- ACTIONS(4093), 1,
- anon_sym_satisfies,
- ACTIONS(4095), 1,
- sym__ternary_qmark,
- ACTIONS(4267), 1,
- anon_sym_COMMA,
- ACTIONS(4269), 1,
- anon_sym_RPAREN,
- STATE(1447), 1,
- sym_type_arguments,
- STATE(3803), 1,
- aux_sym_sequence_expression_repeat1,
- STATE(5080), 1,
- sym_optional_chain,
- STATE(5804), 1,
- sym_type_annotation,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(4049), 2,
- anon_sym_STAR,
- anon_sym_SLASH,
- ACTIONS(4057), 2,
- anon_sym_in,
- anon_sym_GT,
- ACTIONS(4067), 2,
- anon_sym_GT_GT_GT,
- anon_sym_LT_LT,
- ACTIONS(4075), 2,
- anon_sym_PLUS,
- anon_sym_DASH,
- ACTIONS(4085), 2,
- anon_sym_EQ_EQ,
- anon_sym_BANG_EQ,
- ACTIONS(4087), 2,
- anon_sym_EQ_EQ_EQ,
- anon_sym_BANG_EQ_EQ,
- ACTIONS(4091), 2,
- anon_sym_PLUS_PLUS,
- anon_sym_DASH_DASH,
- STATE(1757), 2,
- sym_template_string,
- sym_arguments,
- ACTIONS(4083), 3,
- anon_sym_LT_EQ,
- anon_sym_GT_EQ,
- anon_sym_instanceof,
- [29820] = 3,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(4271), 13,
- anon_sym_STAR,
- anon_sym_BANG,
- anon_sym_in,
- anon_sym_GT,
- anon_sym_GT_GT,
- anon_sym_AMP,
- anon_sym_PIPE,
- anon_sym_PLUS,
- anon_sym_DASH,
- anon_sym_SLASH,
- anon_sym_LT,
- anon_sym_EQ_EQ,
- anon_sym_BANG_EQ,
- ACTIONS(4273), 32,
- sym__ternary_qmark,
- anon_sym_as,
- anon_sym_LBRACE,
- anon_sym_COMMA,
- anon_sym_RBRACE,
- anon_sym_LPAREN,
- anon_sym_RPAREN,
- anon_sym_of,
- anon_sym_COLON,
- anon_sym_LBRACK,
- anon_sym_RBRACK,
- anon_sym_DOT,
- anon_sym_QMARK_DOT,
- anon_sym_AMP_AMP,
- anon_sym_PIPE_PIPE,
- anon_sym_GT_GT_GT,
- anon_sym_LT_LT,
- anon_sym_CARET,
- anon_sym_PERCENT,
- anon_sym_STAR_STAR,
- anon_sym_LT_EQ,
- anon_sym_EQ_EQ_EQ,
- anon_sym_BANG_EQ_EQ,
- anon_sym_GT_EQ,
- anon_sym_QMARK_QMARK,
- anon_sym_instanceof,
- anon_sym_PLUS_PLUS,
- anon_sym_DASH_DASH,
- anon_sym_BQUOTE,
- anon_sym_satisfies,
- anon_sym_extends,
- anon_sym_implements,
- [29874] = 5,
- ACTIONS(4189), 1,
- anon_sym_LBRACE,
- STATE(1620), 1,
- sym_statement_block,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(1714), 13,
- anon_sym_STAR,
- anon_sym_BANG,
- anon_sym_in,
- anon_sym_GT,
- anon_sym_GT_GT,
- anon_sym_AMP,
- anon_sym_PIPE,
- anon_sym_PLUS,
- anon_sym_DASH,
- anon_sym_SLASH,
- anon_sym_LT,
- anon_sym_EQ_EQ,
- anon_sym_BANG_EQ,
- ACTIONS(1712), 30,
- sym__ternary_qmark,
- anon_sym_as,
- anon_sym_COMMA,
- anon_sym_RBRACE,
- anon_sym_LPAREN,
- anon_sym_RPAREN,
- anon_sym_of,
- anon_sym_COLON,
- anon_sym_LBRACK,
- anon_sym_RBRACK,
- anon_sym_DOT,
- anon_sym_QMARK_DOT,
- anon_sym_AMP_AMP,
- anon_sym_PIPE_PIPE,
- anon_sym_GT_GT_GT,
- anon_sym_LT_LT,
- anon_sym_CARET,
- anon_sym_PERCENT,
- anon_sym_STAR_STAR,
- anon_sym_LT_EQ,
- anon_sym_EQ_EQ_EQ,
- anon_sym_BANG_EQ_EQ,
- anon_sym_GT_EQ,
- anon_sym_QMARK_QMARK,
- anon_sym_instanceof,
- anon_sym_PLUS_PLUS,
- anon_sym_DASH_DASH,
- anon_sym_BQUOTE,
- anon_sym_satisfies,
- anon_sym_implements,
- [29932] = 3,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(2329), 13,
- anon_sym_STAR,
- anon_sym_BANG,
- anon_sym_in,
- anon_sym_GT,
- anon_sym_GT_GT,
- anon_sym_AMP,
- anon_sym_PIPE,
- anon_sym_PLUS,
- anon_sym_DASH,
- anon_sym_SLASH,
- anon_sym_LT,
- anon_sym_EQ_EQ,
- anon_sym_BANG_EQ,
- ACTIONS(2327), 32,
- sym__ternary_qmark,
- anon_sym_as,
- anon_sym_LBRACE,
- anon_sym_COMMA,
- anon_sym_RBRACE,
- anon_sym_LPAREN,
- anon_sym_RPAREN,
- anon_sym_of,
- anon_sym_COLON,
- anon_sym_LBRACK,
- anon_sym_RBRACK,
- anon_sym_DOT,
- anon_sym_QMARK_DOT,
- anon_sym_AMP_AMP,
- anon_sym_PIPE_PIPE,
- anon_sym_GT_GT_GT,
- anon_sym_LT_LT,
- anon_sym_CARET,
- anon_sym_PERCENT,
- anon_sym_STAR_STAR,
- anon_sym_LT_EQ,
- anon_sym_EQ_EQ_EQ,
- anon_sym_BANG_EQ_EQ,
- anon_sym_GT_EQ,
- anon_sym_QMARK_QMARK,
- anon_sym_instanceof,
- anon_sym_PLUS_PLUS,
- anon_sym_DASH_DASH,
- anon_sym_BQUOTE,
- anon_sym_satisfies,
- anon_sym_extends,
- anon_sym_implements,
- [29986] = 3,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(4275), 13,
- anon_sym_STAR,
- anon_sym_BANG,
- anon_sym_in,
- anon_sym_GT,
- anon_sym_GT_GT,
- anon_sym_AMP,
- anon_sym_PIPE,
- anon_sym_PLUS,
- anon_sym_DASH,
- anon_sym_SLASH,
- anon_sym_LT,
- anon_sym_EQ_EQ,
- anon_sym_BANG_EQ,
- ACTIONS(4277), 32,
- sym__ternary_qmark,
- anon_sym_as,
- anon_sym_LBRACE,
- anon_sym_COMMA,
- anon_sym_RBRACE,
- anon_sym_LPAREN,
- anon_sym_RPAREN,
- anon_sym_of,
- anon_sym_COLON,
- anon_sym_LBRACK,
- anon_sym_RBRACK,
- anon_sym_DOT,
- anon_sym_QMARK_DOT,
- anon_sym_AMP_AMP,
- anon_sym_PIPE_PIPE,
- anon_sym_GT_GT_GT,
- anon_sym_LT_LT,
- anon_sym_CARET,
- anon_sym_PERCENT,
- anon_sym_STAR_STAR,
- anon_sym_LT_EQ,
- anon_sym_EQ_EQ_EQ,
- anon_sym_BANG_EQ_EQ,
- anon_sym_GT_EQ,
- anon_sym_QMARK_QMARK,
- anon_sym_instanceof,
- anon_sym_PLUS_PLUS,
- anon_sym_DASH_DASH,
- anon_sym_BQUOTE,
- anon_sym_satisfies,
- anon_sym_extends,
- anon_sym_implements,
- [30040] = 3,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(4279), 13,
- anon_sym_STAR,
- anon_sym_BANG,
- anon_sym_in,
- anon_sym_GT,
- anon_sym_GT_GT,
- anon_sym_AMP,
- anon_sym_PIPE,
- anon_sym_PLUS,
- anon_sym_DASH,
- anon_sym_SLASH,
- anon_sym_LT,
- anon_sym_EQ_EQ,
- anon_sym_BANG_EQ,
- ACTIONS(4281), 32,
- sym__ternary_qmark,
- anon_sym_as,
- anon_sym_LBRACE,
- anon_sym_COMMA,
- anon_sym_RBRACE,
- anon_sym_LPAREN,
- anon_sym_RPAREN,
- anon_sym_of,
- anon_sym_COLON,
- anon_sym_LBRACK,
- anon_sym_RBRACK,
- anon_sym_DOT,
- anon_sym_QMARK_DOT,
- anon_sym_AMP_AMP,
- anon_sym_PIPE_PIPE,
- anon_sym_GT_GT_GT,
- anon_sym_LT_LT,
- anon_sym_CARET,
- anon_sym_PERCENT,
- anon_sym_STAR_STAR,
- anon_sym_LT_EQ,
- anon_sym_EQ_EQ_EQ,
- anon_sym_BANG_EQ_EQ,
- anon_sym_GT_EQ,
- anon_sym_QMARK_QMARK,
- anon_sym_instanceof,
- anon_sym_PLUS_PLUS,
- anon_sym_DASH_DASH,
- anon_sym_BQUOTE,
- anon_sym_satisfies,
- anon_sym_extends,
- anon_sym_implements,
- [30094] = 3,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(4279), 13,
- anon_sym_STAR,
- anon_sym_BANG,
- anon_sym_in,
- anon_sym_GT,
- anon_sym_GT_GT,
- anon_sym_AMP,
- anon_sym_PIPE,
- anon_sym_PLUS,
- anon_sym_DASH,
- anon_sym_SLASH,
- anon_sym_LT,
- anon_sym_EQ_EQ,
- anon_sym_BANG_EQ,
- ACTIONS(4281), 32,
- sym__ternary_qmark,
- anon_sym_as,
- anon_sym_LBRACE,
- anon_sym_COMMA,
- anon_sym_RBRACE,
- anon_sym_LPAREN,
- anon_sym_RPAREN,
- anon_sym_of,
- anon_sym_COLON,
- anon_sym_LBRACK,
- anon_sym_RBRACK,
- anon_sym_DOT,
- anon_sym_QMARK_DOT,
- anon_sym_AMP_AMP,
- anon_sym_PIPE_PIPE,
- anon_sym_GT_GT_GT,
- anon_sym_LT_LT,
- anon_sym_CARET,
- anon_sym_PERCENT,
- anon_sym_STAR_STAR,
- anon_sym_LT_EQ,
- anon_sym_EQ_EQ_EQ,
- anon_sym_BANG_EQ_EQ,
- anon_sym_GT_EQ,
- anon_sym_QMARK_QMARK,
- anon_sym_instanceof,
- anon_sym_PLUS_PLUS,
- anon_sym_DASH_DASH,
- anon_sym_BQUOTE,
- anon_sym_satisfies,
- anon_sym_extends,
- anon_sym_implements,
- [30148] = 32,
- ACTIONS(825), 1,
- anon_sym_BQUOTE,
- ACTIONS(3969), 1,
- anon_sym_LPAREN,
- ACTIONS(3971), 1,
- anon_sym_LBRACK,
- ACTIONS(3973), 1,
- anon_sym_DOT,
- ACTIONS(4051), 1,
- anon_sym_as,
- ACTIONS(4055), 1,
- anon_sym_BANG,
- ACTIONS(4059), 1,
- anon_sym_QMARK_DOT,
- ACTIONS(4061), 1,
- anon_sym_AMP_AMP,
- ACTIONS(4063), 1,
- anon_sym_PIPE_PIPE,
- ACTIONS(4065), 1,
- anon_sym_GT_GT,
- ACTIONS(4069), 1,
- anon_sym_AMP,
- ACTIONS(4071), 1,
- anon_sym_CARET,
- ACTIONS(4073), 1,
- anon_sym_PIPE,
- ACTIONS(4077), 1,
- anon_sym_PERCENT,
- ACTIONS(4079), 1,
- anon_sym_STAR_STAR,
- ACTIONS(4081), 1,
- anon_sym_LT,
- ACTIONS(4089), 1,
- anon_sym_QMARK_QMARK,
- ACTIONS(4093), 1,
- anon_sym_satisfies,
- ACTIONS(4095), 1,
- sym__ternary_qmark,
- STATE(1447), 1,
- sym_type_arguments,
- STATE(5080), 1,
- sym_optional_chain,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(4049), 2,
- anon_sym_STAR,
- anon_sym_SLASH,
- ACTIONS(4057), 2,
- anon_sym_in,
- anon_sym_GT,
- ACTIONS(4067), 2,
- anon_sym_GT_GT_GT,
- anon_sym_LT_LT,
- ACTIONS(4075), 2,
- anon_sym_PLUS,
- anon_sym_DASH,
- ACTIONS(4085), 2,
- anon_sym_EQ_EQ,
- anon_sym_BANG_EQ,
- ACTIONS(4087), 2,
- anon_sym_EQ_EQ_EQ,
- anon_sym_BANG_EQ_EQ,
- ACTIONS(4091), 2,
- anon_sym_PLUS_PLUS,
- anon_sym_DASH_DASH,
- STATE(1757), 2,
- sym_template_string,
- sym_arguments,
- ACTIONS(4083), 3,
- anon_sym_LT_EQ,
- anon_sym_GT_EQ,
- anon_sym_instanceof,
- ACTIONS(4283), 5,
- anon_sym_COMMA,
- anon_sym_RBRACE,
- anon_sym_RPAREN,
- anon_sym_COLON,
- anon_sym_RBRACK,
- [30260] = 3,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(4279), 13,
- anon_sym_STAR,
- anon_sym_BANG,
- anon_sym_in,
- anon_sym_GT,
- anon_sym_GT_GT,
- anon_sym_AMP,
- anon_sym_PIPE,
- anon_sym_PLUS,
- anon_sym_DASH,
- anon_sym_SLASH,
- anon_sym_LT,
- anon_sym_EQ_EQ,
- anon_sym_BANG_EQ,
- ACTIONS(4281), 32,
- sym__ternary_qmark,
- anon_sym_as,
- anon_sym_LBRACE,
- anon_sym_COMMA,
- anon_sym_RBRACE,
- anon_sym_LPAREN,
- anon_sym_RPAREN,
- anon_sym_of,
- anon_sym_COLON,
- anon_sym_LBRACK,
- anon_sym_RBRACK,
- anon_sym_DOT,
- anon_sym_QMARK_DOT,
- anon_sym_AMP_AMP,
- anon_sym_PIPE_PIPE,
- anon_sym_GT_GT_GT,
- anon_sym_LT_LT,
- anon_sym_CARET,
- anon_sym_PERCENT,
- anon_sym_STAR_STAR,
- anon_sym_LT_EQ,
- anon_sym_EQ_EQ_EQ,
- anon_sym_BANG_EQ_EQ,
- anon_sym_GT_EQ,
- anon_sym_QMARK_QMARK,
- anon_sym_instanceof,
- anon_sym_PLUS_PLUS,
- anon_sym_DASH_DASH,
- anon_sym_BQUOTE,
- anon_sym_satisfies,
- anon_sym_extends,
- anon_sym_implements,
- [30314] = 3,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(4285), 13,
- anon_sym_STAR,
- anon_sym_BANG,
- anon_sym_in,
- anon_sym_GT,
- anon_sym_GT_GT,
- anon_sym_AMP,
- anon_sym_PIPE,
- anon_sym_PLUS,
- anon_sym_DASH,
- anon_sym_SLASH,
- anon_sym_LT,
- anon_sym_EQ_EQ,
- anon_sym_BANG_EQ,
- ACTIONS(4287), 32,
- sym__ternary_qmark,
- anon_sym_as,
- anon_sym_LBRACE,
- anon_sym_COMMA,
- anon_sym_RBRACE,
- anon_sym_LPAREN,
- anon_sym_RPAREN,
- anon_sym_of,
- anon_sym_COLON,
- anon_sym_LBRACK,
- anon_sym_RBRACK,
- anon_sym_DOT,
- anon_sym_QMARK_DOT,
- anon_sym_AMP_AMP,
- anon_sym_PIPE_PIPE,
- anon_sym_GT_GT_GT,
- anon_sym_LT_LT,
- anon_sym_CARET,
- anon_sym_PERCENT,
- anon_sym_STAR_STAR,
- anon_sym_LT_EQ,
- anon_sym_EQ_EQ_EQ,
- anon_sym_BANG_EQ_EQ,
- anon_sym_GT_EQ,
- anon_sym_QMARK_QMARK,
- anon_sym_instanceof,
- anon_sym_PLUS_PLUS,
- anon_sym_DASH_DASH,
- anon_sym_BQUOTE,
- anon_sym_satisfies,
- anon_sym_extends,
- anon_sym_implements,
- [30368] = 3,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(4285), 13,
- anon_sym_STAR,
- anon_sym_BANG,
- anon_sym_in,
- anon_sym_GT,
- anon_sym_GT_GT,
- anon_sym_AMP,
- anon_sym_PIPE,
- anon_sym_PLUS,
- anon_sym_DASH,
- anon_sym_SLASH,
- anon_sym_LT,
- anon_sym_EQ_EQ,
- anon_sym_BANG_EQ,
- ACTIONS(4287), 32,
- sym__ternary_qmark,
- anon_sym_as,
- anon_sym_LBRACE,
- anon_sym_COMMA,
- anon_sym_RBRACE,
- anon_sym_LPAREN,
- anon_sym_RPAREN,
- anon_sym_of,
- anon_sym_COLON,
- anon_sym_LBRACK,
- anon_sym_RBRACK,
- anon_sym_DOT,
- anon_sym_QMARK_DOT,
- anon_sym_AMP_AMP,
- anon_sym_PIPE_PIPE,
- anon_sym_GT_GT_GT,
- anon_sym_LT_LT,
- anon_sym_CARET,
- anon_sym_PERCENT,
- anon_sym_STAR_STAR,
- anon_sym_LT_EQ,
- anon_sym_EQ_EQ_EQ,
- anon_sym_BANG_EQ_EQ,
- anon_sym_GT_EQ,
- anon_sym_QMARK_QMARK,
- anon_sym_instanceof,
- anon_sym_PLUS_PLUS,
- anon_sym_DASH_DASH,
- anon_sym_BQUOTE,
- anon_sym_satisfies,
- anon_sym_extends,
- anon_sym_implements,
- [30422] = 5,
- ACTIONS(3969), 1,
- anon_sym_LPAREN,
- STATE(1721), 1,
- sym_arguments,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(4289), 13,
- anon_sym_STAR,
- anon_sym_BANG,
- anon_sym_in,
- anon_sym_GT,
- anon_sym_GT_GT,
- anon_sym_AMP,
- anon_sym_PIPE,
- anon_sym_PLUS,
- anon_sym_DASH,
- anon_sym_SLASH,
- anon_sym_LT,
- anon_sym_EQ_EQ,
- anon_sym_BANG_EQ,
- ACTIONS(4291), 30,
- sym__ternary_qmark,
- anon_sym_as,
- anon_sym_LBRACE,
- anon_sym_COMMA,
- anon_sym_RBRACE,
- anon_sym_RPAREN,
- anon_sym_of,
- anon_sym_COLON,
- anon_sym_LBRACK,
- anon_sym_RBRACK,
- anon_sym_DOT,
- anon_sym_QMARK_DOT,
- anon_sym_AMP_AMP,
- anon_sym_PIPE_PIPE,
- anon_sym_GT_GT_GT,
- anon_sym_LT_LT,
- anon_sym_CARET,
- anon_sym_PERCENT,
- anon_sym_STAR_STAR,
- anon_sym_LT_EQ,
- anon_sym_EQ_EQ_EQ,
- anon_sym_BANG_EQ_EQ,
- anon_sym_GT_EQ,
- anon_sym_QMARK_QMARK,
- anon_sym_instanceof,
- anon_sym_PLUS_PLUS,
- anon_sym_DASH_DASH,
- anon_sym_BQUOTE,
- anon_sym_satisfies,
- anon_sym_implements,
- [30480] = 3,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(4285), 13,
- anon_sym_STAR,
- anon_sym_BANG,
- anon_sym_in,
- anon_sym_GT,
- anon_sym_GT_GT,
- anon_sym_AMP,
- anon_sym_PIPE,
- anon_sym_PLUS,
- anon_sym_DASH,
- anon_sym_SLASH,
- anon_sym_LT,
- anon_sym_EQ_EQ,
- anon_sym_BANG_EQ,
- ACTIONS(4287), 32,
- sym__ternary_qmark,
- anon_sym_as,
- anon_sym_LBRACE,
- anon_sym_COMMA,
- anon_sym_RBRACE,
- anon_sym_LPAREN,
- anon_sym_RPAREN,
- anon_sym_of,
- anon_sym_COLON,
- anon_sym_LBRACK,
- anon_sym_RBRACK,
- anon_sym_DOT,
- anon_sym_QMARK_DOT,
- anon_sym_AMP_AMP,
- anon_sym_PIPE_PIPE,
- anon_sym_GT_GT_GT,
- anon_sym_LT_LT,
- anon_sym_CARET,
- anon_sym_PERCENT,
- anon_sym_STAR_STAR,
- anon_sym_LT_EQ,
- anon_sym_EQ_EQ_EQ,
- anon_sym_BANG_EQ_EQ,
- anon_sym_GT_EQ,
- anon_sym_QMARK_QMARK,
- anon_sym_instanceof,
- anon_sym_PLUS_PLUS,
- anon_sym_DASH_DASH,
- anon_sym_BQUOTE,
- anon_sym_satisfies,
- anon_sym_extends,
- anon_sym_implements,
- [30534] = 3,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(4293), 13,
- anon_sym_STAR,
- anon_sym_BANG,
- anon_sym_in,
- anon_sym_GT,
- anon_sym_GT_GT,
- anon_sym_AMP,
- anon_sym_PIPE,
- anon_sym_PLUS,
- anon_sym_DASH,
- anon_sym_SLASH,
- anon_sym_LT,
- anon_sym_EQ_EQ,
- anon_sym_BANG_EQ,
- ACTIONS(4295), 32,
- sym__ternary_qmark,
- anon_sym_as,
- anon_sym_LBRACE,
- anon_sym_COMMA,
- anon_sym_RBRACE,
- anon_sym_LPAREN,
- anon_sym_RPAREN,
- anon_sym_of,
- anon_sym_COLON,
- anon_sym_LBRACK,
- anon_sym_RBRACK,
- anon_sym_DOT,
- anon_sym_QMARK_DOT,
- anon_sym_AMP_AMP,
- anon_sym_PIPE_PIPE,
- anon_sym_GT_GT_GT,
- anon_sym_LT_LT,
- anon_sym_CARET,
- anon_sym_PERCENT,
- anon_sym_STAR_STAR,
- anon_sym_LT_EQ,
- anon_sym_EQ_EQ_EQ,
- anon_sym_BANG_EQ_EQ,
- anon_sym_GT_EQ,
- anon_sym_QMARK_QMARK,
- anon_sym_instanceof,
- anon_sym_PLUS_PLUS,
- anon_sym_DASH_DASH,
- anon_sym_BQUOTE,
- anon_sym_satisfies,
- anon_sym_extends,
- anon_sym_implements,
- [30588] = 32,
- ACTIONS(825), 1,
- anon_sym_BQUOTE,
- ACTIONS(3969), 1,
- anon_sym_LPAREN,
- ACTIONS(3971), 1,
- anon_sym_LBRACK,
- ACTIONS(3973), 1,
- anon_sym_DOT,
- ACTIONS(4051), 1,
- anon_sym_as,
- ACTIONS(4055), 1,
- anon_sym_BANG,
- ACTIONS(4059), 1,
- anon_sym_QMARK_DOT,
- ACTIONS(4061), 1,
- anon_sym_AMP_AMP,
- ACTIONS(4063), 1,
- anon_sym_PIPE_PIPE,
- ACTIONS(4065), 1,
- anon_sym_GT_GT,
- ACTIONS(4069), 1,
- anon_sym_AMP,
- ACTIONS(4071), 1,
- anon_sym_CARET,
- ACTIONS(4073), 1,
- anon_sym_PIPE,
- ACTIONS(4077), 1,
- anon_sym_PERCENT,
- ACTIONS(4079), 1,
- anon_sym_STAR_STAR,
- ACTIONS(4081), 1,
- anon_sym_LT,
- ACTIONS(4089), 1,
- anon_sym_QMARK_QMARK,
- ACTIONS(4093), 1,
- anon_sym_satisfies,
- ACTIONS(4095), 1,
- sym__ternary_qmark,
- STATE(1447), 1,
- sym_type_arguments,
- STATE(5080), 1,
- sym_optional_chain,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(4049), 2,
- anon_sym_STAR,
- anon_sym_SLASH,
- ACTIONS(4057), 2,
- anon_sym_in,
- anon_sym_GT,
- ACTIONS(4067), 2,
- anon_sym_GT_GT_GT,
- anon_sym_LT_LT,
- ACTIONS(4075), 2,
- anon_sym_PLUS,
- anon_sym_DASH,
- ACTIONS(4085), 2,
- anon_sym_EQ_EQ,
- anon_sym_BANG_EQ,
- ACTIONS(4087), 2,
- anon_sym_EQ_EQ_EQ,
- anon_sym_BANG_EQ_EQ,
- ACTIONS(4091), 2,
- anon_sym_PLUS_PLUS,
- anon_sym_DASH_DASH,
- STATE(1757), 2,
- sym_template_string,
- sym_arguments,
- ACTIONS(4083), 3,
- anon_sym_LT_EQ,
- anon_sym_GT_EQ,
- anon_sym_instanceof,
- ACTIONS(4297), 5,
- anon_sym_COMMA,
- anon_sym_RBRACE,
- anon_sym_RPAREN,
- anon_sym_COLON,
- anon_sym_RBRACK,
- [30700] = 3,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(4293), 13,
- anon_sym_STAR,
- anon_sym_BANG,
- anon_sym_in,
- anon_sym_GT,
- anon_sym_GT_GT,
- anon_sym_AMP,
- anon_sym_PIPE,
- anon_sym_PLUS,
- anon_sym_DASH,
- anon_sym_SLASH,
- anon_sym_LT,
- anon_sym_EQ_EQ,
- anon_sym_BANG_EQ,
- ACTIONS(4295), 32,
- sym__ternary_qmark,
- anon_sym_as,
- anon_sym_LBRACE,
- anon_sym_COMMA,
- anon_sym_RBRACE,
- anon_sym_LPAREN,
- anon_sym_RPAREN,
- anon_sym_of,
- anon_sym_COLON,
- anon_sym_LBRACK,
- anon_sym_RBRACK,
- anon_sym_DOT,
- anon_sym_QMARK_DOT,
- anon_sym_AMP_AMP,
- anon_sym_PIPE_PIPE,
- anon_sym_GT_GT_GT,
- anon_sym_LT_LT,
- anon_sym_CARET,
- anon_sym_PERCENT,
- anon_sym_STAR_STAR,
- anon_sym_LT_EQ,
- anon_sym_EQ_EQ_EQ,
- anon_sym_BANG_EQ_EQ,
- anon_sym_GT_EQ,
- anon_sym_QMARK_QMARK,
- anon_sym_instanceof,
- anon_sym_PLUS_PLUS,
- anon_sym_DASH_DASH,
- anon_sym_BQUOTE,
- anon_sym_satisfies,
- anon_sym_extends,
- anon_sym_implements,
- [30754] = 32,
- ACTIONS(825), 1,
- anon_sym_BQUOTE,
- ACTIONS(3969), 1,
- anon_sym_LPAREN,
- ACTIONS(3971), 1,
- anon_sym_LBRACK,
- ACTIONS(3973), 1,
- anon_sym_DOT,
- ACTIONS(4051), 1,
- anon_sym_as,
- ACTIONS(4055), 1,
- anon_sym_BANG,
- ACTIONS(4059), 1,
- anon_sym_QMARK_DOT,
- ACTIONS(4061), 1,
- anon_sym_AMP_AMP,
- ACTIONS(4063), 1,
- anon_sym_PIPE_PIPE,
- ACTIONS(4065), 1,
- anon_sym_GT_GT,
- ACTIONS(4069), 1,
- anon_sym_AMP,
- ACTIONS(4071), 1,
- anon_sym_CARET,
- ACTIONS(4073), 1,
- anon_sym_PIPE,
- ACTIONS(4077), 1,
- anon_sym_PERCENT,
- ACTIONS(4079), 1,
- anon_sym_STAR_STAR,
- ACTIONS(4081), 1,
- anon_sym_LT,
- ACTIONS(4089), 1,
- anon_sym_QMARK_QMARK,
- ACTIONS(4093), 1,
- anon_sym_satisfies,
- ACTIONS(4095), 1,
- sym__ternary_qmark,
- STATE(1447), 1,
- sym_type_arguments,
- STATE(5080), 1,
- sym_optional_chain,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(4049), 2,
- anon_sym_STAR,
- anon_sym_SLASH,
- ACTIONS(4057), 2,
- anon_sym_in,
- anon_sym_GT,
- ACTIONS(4067), 2,
- anon_sym_GT_GT_GT,
- anon_sym_LT_LT,
- ACTIONS(4075), 2,
- anon_sym_PLUS,
- anon_sym_DASH,
- ACTIONS(4085), 2,
- anon_sym_EQ_EQ,
- anon_sym_BANG_EQ,
- ACTIONS(4087), 2,
- anon_sym_EQ_EQ_EQ,
- anon_sym_BANG_EQ_EQ,
- ACTIONS(4091), 2,
- anon_sym_PLUS_PLUS,
- anon_sym_DASH_DASH,
- STATE(1757), 2,
- sym_template_string,
- sym_arguments,
- ACTIONS(4083), 3,
- anon_sym_LT_EQ,
- anon_sym_GT_EQ,
- anon_sym_instanceof,
- ACTIONS(4299), 5,
- anon_sym_COMMA,
- anon_sym_RBRACE,
- anon_sym_RPAREN,
- anon_sym_COLON,
- anon_sym_RBRACK,
- [30866] = 3,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(4293), 13,
- anon_sym_STAR,
- anon_sym_BANG,
- anon_sym_in,
- anon_sym_GT,
- anon_sym_GT_GT,
- anon_sym_AMP,
- anon_sym_PIPE,
- anon_sym_PLUS,
- anon_sym_DASH,
- anon_sym_SLASH,
- anon_sym_LT,
- anon_sym_EQ_EQ,
- anon_sym_BANG_EQ,
- ACTIONS(4295), 32,
- sym__ternary_qmark,
- anon_sym_as,
- anon_sym_LBRACE,
- anon_sym_COMMA,
- anon_sym_RBRACE,
- anon_sym_LPAREN,
- anon_sym_RPAREN,
- anon_sym_of,
- anon_sym_COLON,
- anon_sym_LBRACK,
- anon_sym_RBRACK,
- anon_sym_DOT,
- anon_sym_QMARK_DOT,
- anon_sym_AMP_AMP,
- anon_sym_PIPE_PIPE,
- anon_sym_GT_GT_GT,
- anon_sym_LT_LT,
- anon_sym_CARET,
- anon_sym_PERCENT,
- anon_sym_STAR_STAR,
- anon_sym_LT_EQ,
- anon_sym_EQ_EQ_EQ,
- anon_sym_BANG_EQ_EQ,
- anon_sym_GT_EQ,
- anon_sym_QMARK_QMARK,
- anon_sym_instanceof,
- anon_sym_PLUS_PLUS,
- anon_sym_DASH_DASH,
- anon_sym_BQUOTE,
- anon_sym_satisfies,
- anon_sym_extends,
- anon_sym_implements,
- [30920] = 3,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(4301), 13,
- anon_sym_STAR,
- anon_sym_BANG,
- anon_sym_in,
- anon_sym_GT,
- anon_sym_GT_GT,
- anon_sym_AMP,
- anon_sym_PIPE,
- anon_sym_PLUS,
- anon_sym_DASH,
- anon_sym_SLASH,
- anon_sym_LT,
- anon_sym_EQ_EQ,
- anon_sym_BANG_EQ,
- ACTIONS(4303), 32,
- sym__ternary_qmark,
- anon_sym_as,
- anon_sym_LBRACE,
- anon_sym_COMMA,
- anon_sym_RBRACE,
- anon_sym_LPAREN,
- anon_sym_RPAREN,
- anon_sym_of,
- anon_sym_COLON,
- anon_sym_LBRACK,
- anon_sym_RBRACK,
- anon_sym_DOT,
- anon_sym_QMARK_DOT,
- anon_sym_AMP_AMP,
- anon_sym_PIPE_PIPE,
- anon_sym_GT_GT_GT,
- anon_sym_LT_LT,
- anon_sym_CARET,
- anon_sym_PERCENT,
- anon_sym_STAR_STAR,
- anon_sym_LT_EQ,
- anon_sym_EQ_EQ_EQ,
- anon_sym_BANG_EQ_EQ,
- anon_sym_GT_EQ,
- anon_sym_QMARK_QMARK,
- anon_sym_instanceof,
- anon_sym_PLUS_PLUS,
- anon_sym_DASH_DASH,
- anon_sym_BQUOTE,
- anon_sym_satisfies,
- anon_sym_extends,
- anon_sym_implements,
- [30974] = 19,
- ACTIONS(825), 1,
- anon_sym_BQUOTE,
- ACTIONS(3969), 1,
- anon_sym_LPAREN,
- ACTIONS(3971), 1,
- anon_sym_LBRACK,
- ACTIONS(3973), 1,
- anon_sym_DOT,
- ACTIONS(4059), 1,
- anon_sym_QMARK_DOT,
- ACTIONS(4065), 1,
- anon_sym_GT_GT,
- ACTIONS(4077), 1,
- anon_sym_PERCENT,
- ACTIONS(4079), 1,
- anon_sym_STAR_STAR,
- ACTIONS(4081), 1,
- anon_sym_LT,
- STATE(1447), 1,
- sym_type_arguments,
- STATE(5080), 1,
- sym_optional_chain,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(4049), 2,
- anon_sym_STAR,
- anon_sym_SLASH,
- ACTIONS(4067), 2,
- anon_sym_GT_GT_GT,
- anon_sym_LT_LT,
- ACTIONS(4075), 2,
- anon_sym_PLUS,
- anon_sym_DASH,
- ACTIONS(4091), 2,
- anon_sym_PLUS_PLUS,
- anon_sym_DASH_DASH,
- STATE(1757), 2,
- sym_template_string,
- sym_arguments,
- ACTIONS(4307), 7,
- anon_sym_BANG,
- anon_sym_in,
- anon_sym_GT,
- anon_sym_AMP,
- anon_sym_PIPE,
- anon_sym_EQ_EQ,
- anon_sym_BANG_EQ,
- ACTIONS(4305), 17,
- sym__ternary_qmark,
- anon_sym_as,
- anon_sym_COMMA,
- anon_sym_RBRACE,
- anon_sym_RPAREN,
- anon_sym_COLON,
- anon_sym_RBRACK,
- anon_sym_AMP_AMP,
- anon_sym_PIPE_PIPE,
- anon_sym_CARET,
- anon_sym_LT_EQ,
- anon_sym_EQ_EQ_EQ,
- anon_sym_BANG_EQ_EQ,
- anon_sym_GT_EQ,
- anon_sym_QMARK_QMARK,
- anon_sym_instanceof,
- anon_sym_satisfies,
- [31060] = 6,
- ACTIONS(4108), 1,
- anon_sym_AMP,
- ACTIONS(4110), 1,
- anon_sym_PIPE,
- ACTIONS(4112), 1,
- anon_sym_extends,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(4309), 11,
- anon_sym_STAR,
- anon_sym_BANG,
- anon_sym_in,
- anon_sym_GT,
- anon_sym_GT_GT,
- anon_sym_PLUS,
- anon_sym_DASH,
- anon_sym_SLASH,
- anon_sym_LT,
- anon_sym_EQ_EQ,
- anon_sym_BANG_EQ,
- ACTIONS(4311), 31,
- sym__ternary_qmark,
- anon_sym_as,
- anon_sym_LBRACE,
- anon_sym_COMMA,
- anon_sym_RBRACE,
- anon_sym_LPAREN,
- anon_sym_RPAREN,
- anon_sym_of,
- anon_sym_COLON,
- anon_sym_LBRACK,
- anon_sym_RBRACK,
- anon_sym_DOT,
- anon_sym_QMARK_DOT,
- anon_sym_AMP_AMP,
- anon_sym_PIPE_PIPE,
- anon_sym_GT_GT_GT,
- anon_sym_LT_LT,
- anon_sym_CARET,
- anon_sym_PERCENT,
- anon_sym_STAR_STAR,
- anon_sym_LT_EQ,
- anon_sym_EQ_EQ_EQ,
- anon_sym_BANG_EQ_EQ,
- anon_sym_GT_EQ,
- anon_sym_QMARK_QMARK,
- anon_sym_instanceof,
- anon_sym_PLUS_PLUS,
- anon_sym_DASH_DASH,
- anon_sym_BQUOTE,
- anon_sym_satisfies,
- anon_sym_implements,
- [31120] = 36,
- ACTIONS(825), 1,
- anon_sym_BQUOTE,
- ACTIONS(3477), 1,
- anon_sym_COLON,
- ACTIONS(3969), 1,
- anon_sym_LPAREN,
- ACTIONS(3971), 1,
- anon_sym_LBRACK,
- ACTIONS(3973), 1,
- anon_sym_DOT,
- ACTIONS(4051), 1,
- anon_sym_as,
- ACTIONS(4055), 1,
- anon_sym_BANG,
- ACTIONS(4059), 1,
- anon_sym_QMARK_DOT,
- ACTIONS(4061), 1,
- anon_sym_AMP_AMP,
- ACTIONS(4063), 1,
- anon_sym_PIPE_PIPE,
- ACTIONS(4065), 1,
- anon_sym_GT_GT,
- ACTIONS(4069), 1,
- anon_sym_AMP,
- ACTIONS(4071), 1,
- anon_sym_CARET,
- ACTIONS(4073), 1,
- anon_sym_PIPE,
- ACTIONS(4077), 1,
- anon_sym_PERCENT,
- ACTIONS(4079), 1,
- anon_sym_STAR_STAR,
- ACTIONS(4081), 1,
- anon_sym_LT,
- ACTIONS(4089), 1,
- anon_sym_QMARK_QMARK,
- ACTIONS(4093), 1,
- anon_sym_satisfies,
- ACTIONS(4095), 1,
- sym__ternary_qmark,
- ACTIONS(4267), 1,
- anon_sym_COMMA,
- ACTIONS(4313), 1,
- anon_sym_RPAREN,
- STATE(1447), 1,
- sym_type_arguments,
- STATE(3803), 1,
- aux_sym_sequence_expression_repeat1,
- STATE(5080), 1,
- sym_optional_chain,
- STATE(5795), 1,
- sym_type_annotation,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(4049), 2,
- anon_sym_STAR,
- anon_sym_SLASH,
- ACTIONS(4057), 2,
- anon_sym_in,
- anon_sym_GT,
- ACTIONS(4067), 2,
- anon_sym_GT_GT_GT,
- anon_sym_LT_LT,
- ACTIONS(4075), 2,
- anon_sym_PLUS,
- anon_sym_DASH,
- ACTIONS(4085), 2,
- anon_sym_EQ_EQ,
- anon_sym_BANG_EQ,
- ACTIONS(4087), 2,
- anon_sym_EQ_EQ_EQ,
- anon_sym_BANG_EQ_EQ,
- ACTIONS(4091), 2,
- anon_sym_PLUS_PLUS,
- anon_sym_DASH_DASH,
- STATE(1757), 2,
- sym_template_string,
- sym_arguments,
- ACTIONS(4083), 3,
- anon_sym_LT_EQ,
- anon_sym_GT_EQ,
- anon_sym_instanceof,
- [31240] = 4,
- ACTIONS(4017), 1,
- sym__automatic_semicolon,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(1722), 13,
- anon_sym_STAR,
- anon_sym_BANG,
- anon_sym_in,
- anon_sym_GT,
- anon_sym_GT_GT,
- anon_sym_AMP,
- anon_sym_PIPE,
- anon_sym_PLUS,
- anon_sym_DASH,
- anon_sym_SLASH,
- anon_sym_LT,
- anon_sym_EQ_EQ,
- anon_sym_BANG_EQ,
- ACTIONS(1720), 31,
- sym__ternary_qmark,
- anon_sym_as,
- anon_sym_LBRACE,
- anon_sym_COMMA,
- anon_sym_RBRACE,
- anon_sym_LPAREN,
- anon_sym_RPAREN,
- anon_sym_of,
- anon_sym_COLON,
- anon_sym_LBRACK,
- anon_sym_RBRACK,
- anon_sym_DOT,
- anon_sym_QMARK_DOT,
- anon_sym_AMP_AMP,
- anon_sym_PIPE_PIPE,
- anon_sym_GT_GT_GT,
- anon_sym_LT_LT,
- anon_sym_CARET,
- anon_sym_PERCENT,
- anon_sym_STAR_STAR,
- anon_sym_LT_EQ,
- anon_sym_EQ_EQ_EQ,
- anon_sym_BANG_EQ_EQ,
- anon_sym_GT_EQ,
- anon_sym_QMARK_QMARK,
- anon_sym_instanceof,
- anon_sym_PLUS_PLUS,
- anon_sym_DASH_DASH,
- anon_sym_BQUOTE,
- anon_sym_satisfies,
- anon_sym_implements,
- [31296] = 14,
- ACTIONS(825), 1,
- anon_sym_BQUOTE,
- ACTIONS(3969), 1,
- anon_sym_LPAREN,
- ACTIONS(3971), 1,
- anon_sym_LBRACK,
- ACTIONS(3973), 1,
- anon_sym_DOT,
- ACTIONS(4059), 1,
- anon_sym_QMARK_DOT,
- ACTIONS(4079), 1,
- anon_sym_STAR_STAR,
- ACTIONS(4315), 1,
- anon_sym_LT,
- STATE(1447), 1,
- sym_type_arguments,
- STATE(5080), 1,
- sym_optional_chain,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(4091), 2,
- anon_sym_PLUS_PLUS,
- anon_sym_DASH_DASH,
- STATE(1757), 2,
- sym_template_string,
- sym_arguments,
- ACTIONS(4307), 12,
- anon_sym_STAR,
- anon_sym_BANG,
- anon_sym_in,
- anon_sym_GT,
- anon_sym_GT_GT,
- anon_sym_AMP,
- anon_sym_PIPE,
- anon_sym_PLUS,
- anon_sym_DASH,
- anon_sym_SLASH,
- anon_sym_EQ_EQ,
- anon_sym_BANG_EQ,
- ACTIONS(4305), 20,
- sym__ternary_qmark,
- anon_sym_as,
- anon_sym_COMMA,
- anon_sym_RBRACE,
- anon_sym_RPAREN,
- anon_sym_COLON,
- anon_sym_RBRACK,
- anon_sym_AMP_AMP,
- anon_sym_PIPE_PIPE,
- anon_sym_GT_GT_GT,
- anon_sym_LT_LT,
- anon_sym_CARET,
- anon_sym_PERCENT,
- anon_sym_LT_EQ,
- anon_sym_EQ_EQ_EQ,
- anon_sym_BANG_EQ_EQ,
- anon_sym_GT_EQ,
- anon_sym_QMARK_QMARK,
- anon_sym_instanceof,
- anon_sym_satisfies,
- [31372] = 4,
- ACTIONS(4027), 1,
- anon_sym_extends,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(4318), 13,
- anon_sym_STAR,
- anon_sym_BANG,
- anon_sym_in,
- anon_sym_GT,
- anon_sym_GT_GT,
- anon_sym_AMP,
- anon_sym_PIPE,
- anon_sym_PLUS,
- anon_sym_DASH,
- anon_sym_SLASH,
- anon_sym_LT,
- anon_sym_EQ_EQ,
- anon_sym_BANG_EQ,
- ACTIONS(4320), 31,
- sym__ternary_qmark,
- anon_sym_as,
- anon_sym_LBRACE,
- anon_sym_COMMA,
- anon_sym_RBRACE,
- anon_sym_LPAREN,
- anon_sym_RPAREN,
- anon_sym_of,
- anon_sym_COLON,
- anon_sym_LBRACK,
- anon_sym_RBRACK,
- anon_sym_DOT,
- anon_sym_QMARK_DOT,
- anon_sym_AMP_AMP,
- anon_sym_PIPE_PIPE,
- anon_sym_GT_GT_GT,
- anon_sym_LT_LT,
- anon_sym_CARET,
- anon_sym_PERCENT,
- anon_sym_STAR_STAR,
- anon_sym_LT_EQ,
- anon_sym_EQ_EQ_EQ,
- anon_sym_BANG_EQ_EQ,
- anon_sym_GT_EQ,
- anon_sym_QMARK_QMARK,
- anon_sym_instanceof,
- anon_sym_PLUS_PLUS,
- anon_sym_DASH_DASH,
- anon_sym_BQUOTE,
- anon_sym_satisfies,
- anon_sym_implements,
- [31428] = 6,
- ACTIONS(4108), 1,
- anon_sym_AMP,
- ACTIONS(4110), 1,
- anon_sym_PIPE,
- ACTIONS(4112), 1,
- anon_sym_extends,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(4318), 11,
- anon_sym_STAR,
- anon_sym_BANG,
- anon_sym_in,
- anon_sym_GT,
- anon_sym_GT_GT,
- anon_sym_PLUS,
- anon_sym_DASH,
- anon_sym_SLASH,
- anon_sym_LT,
- anon_sym_EQ_EQ,
- anon_sym_BANG_EQ,
- ACTIONS(4320), 31,
- sym__ternary_qmark,
- anon_sym_as,
- anon_sym_LBRACE,
- anon_sym_COMMA,
- anon_sym_RBRACE,
- anon_sym_LPAREN,
- anon_sym_RPAREN,
- anon_sym_of,
- anon_sym_COLON,
- anon_sym_LBRACK,
- anon_sym_RBRACK,
- anon_sym_DOT,
- anon_sym_QMARK_DOT,
- anon_sym_AMP_AMP,
- anon_sym_PIPE_PIPE,
- anon_sym_GT_GT_GT,
- anon_sym_LT_LT,
- anon_sym_CARET,
- anon_sym_PERCENT,
- anon_sym_STAR_STAR,
- anon_sym_LT_EQ,
- anon_sym_EQ_EQ_EQ,
- anon_sym_BANG_EQ_EQ,
- anon_sym_GT_EQ,
- anon_sym_QMARK_QMARK,
- anon_sym_instanceof,
- anon_sym_PLUS_PLUS,
- anon_sym_DASH_DASH,
- anon_sym_BQUOTE,
- anon_sym_satisfies,
- anon_sym_implements,
- [31488] = 32,
- ACTIONS(825), 1,
- anon_sym_BQUOTE,
- ACTIONS(3969), 1,
- anon_sym_LPAREN,
- ACTIONS(3971), 1,
- anon_sym_LBRACK,
- ACTIONS(3973), 1,
- anon_sym_DOT,
- ACTIONS(4051), 1,
- anon_sym_as,
- ACTIONS(4055), 1,
- anon_sym_BANG,
- ACTIONS(4059), 1,
- anon_sym_QMARK_DOT,
- ACTIONS(4061), 1,
- anon_sym_AMP_AMP,
- ACTIONS(4063), 1,
- anon_sym_PIPE_PIPE,
- ACTIONS(4065), 1,
- anon_sym_GT_GT,
- ACTIONS(4069), 1,
- anon_sym_AMP,
- ACTIONS(4071), 1,
- anon_sym_CARET,
- ACTIONS(4073), 1,
- anon_sym_PIPE,
- ACTIONS(4077), 1,
- anon_sym_PERCENT,
- ACTIONS(4079), 1,
- anon_sym_STAR_STAR,
- ACTIONS(4081), 1,
- anon_sym_LT,
- ACTIONS(4089), 1,
- anon_sym_QMARK_QMARK,
- ACTIONS(4093), 1,
- anon_sym_satisfies,
- ACTIONS(4095), 1,
- sym__ternary_qmark,
- STATE(1447), 1,
- sym_type_arguments,
- STATE(5080), 1,
- sym_optional_chain,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(4049), 2,
- anon_sym_STAR,
- anon_sym_SLASH,
- ACTIONS(4057), 2,
- anon_sym_in,
- anon_sym_GT,
- ACTIONS(4067), 2,
- anon_sym_GT_GT_GT,
- anon_sym_LT_LT,
- ACTIONS(4075), 2,
- anon_sym_PLUS,
- anon_sym_DASH,
- ACTIONS(4085), 2,
- anon_sym_EQ_EQ,
- anon_sym_BANG_EQ,
- ACTIONS(4087), 2,
- anon_sym_EQ_EQ_EQ,
- anon_sym_BANG_EQ_EQ,
- ACTIONS(4091), 2,
- anon_sym_PLUS_PLUS,
- anon_sym_DASH_DASH,
- STATE(1757), 2,
- sym_template_string,
- sym_arguments,
- ACTIONS(4083), 3,
- anon_sym_LT_EQ,
- anon_sym_GT_EQ,
- anon_sym_instanceof,
- ACTIONS(4322), 5,
- anon_sym_COMMA,
- anon_sym_RBRACE,
- anon_sym_RPAREN,
- anon_sym_COLON,
- anon_sym_RBRACK,
- [31600] = 26,
- ACTIONS(825), 1,
- anon_sym_BQUOTE,
- ACTIONS(3969), 1,
- anon_sym_LPAREN,
- ACTIONS(3971), 1,
- anon_sym_LBRACK,
- ACTIONS(3973), 1,
- anon_sym_DOT,
- ACTIONS(4059), 1,
- anon_sym_QMARK_DOT,
- ACTIONS(4065), 1,
- anon_sym_GT_GT,
- ACTIONS(4069), 1,
- anon_sym_AMP,
- ACTIONS(4071), 1,
- anon_sym_CARET,
- ACTIONS(4073), 1,
- anon_sym_PIPE,
- ACTIONS(4077), 1,
- anon_sym_PERCENT,
- ACTIONS(4079), 1,
- anon_sym_STAR_STAR,
- ACTIONS(4081), 1,
- anon_sym_LT,
- ACTIONS(4307), 1,
- anon_sym_BANG,
- STATE(1447), 1,
- sym_type_arguments,
- STATE(5080), 1,
- sym_optional_chain,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(4049), 2,
- anon_sym_STAR,
- anon_sym_SLASH,
- ACTIONS(4057), 2,
- anon_sym_in,
- anon_sym_GT,
- ACTIONS(4067), 2,
- anon_sym_GT_GT_GT,
- anon_sym_LT_LT,
- ACTIONS(4075), 2,
- anon_sym_PLUS,
- anon_sym_DASH,
- ACTIONS(4085), 2,
- anon_sym_EQ_EQ,
- anon_sym_BANG_EQ,
- ACTIONS(4087), 2,
- anon_sym_EQ_EQ_EQ,
- anon_sym_BANG_EQ_EQ,
- ACTIONS(4091), 2,
- anon_sym_PLUS_PLUS,
- anon_sym_DASH_DASH,
- STATE(1757), 2,
- sym_template_string,
- sym_arguments,
- ACTIONS(4083), 3,
- anon_sym_LT_EQ,
- anon_sym_GT_EQ,
- anon_sym_instanceof,
- ACTIONS(4305), 11,
- sym__ternary_qmark,
- anon_sym_as,
- anon_sym_COMMA,
- anon_sym_RBRACE,
- anon_sym_RPAREN,
- anon_sym_COLON,
- anon_sym_RBRACK,
- anon_sym_AMP_AMP,
- anon_sym_PIPE_PIPE,
- anon_sym_QMARK_QMARK,
- anon_sym_satisfies,
- [31700] = 3,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(4324), 13,
- anon_sym_STAR,
- anon_sym_BANG,
- anon_sym_in,
- anon_sym_GT,
- anon_sym_GT_GT,
- anon_sym_AMP,
- anon_sym_PIPE,
- anon_sym_PLUS,
- anon_sym_DASH,
- anon_sym_SLASH,
- anon_sym_LT,
- anon_sym_EQ_EQ,
- anon_sym_BANG_EQ,
- ACTIONS(4326), 32,
- sym__ternary_qmark,
- anon_sym_as,
- anon_sym_LBRACE,
- anon_sym_COMMA,
- anon_sym_RBRACE,
- anon_sym_LPAREN,
- anon_sym_RPAREN,
- anon_sym_of,
- anon_sym_COLON,
- anon_sym_LBRACK,
- anon_sym_RBRACK,
- anon_sym_DOT,
- anon_sym_QMARK_DOT,
- anon_sym_AMP_AMP,
- anon_sym_PIPE_PIPE,
- anon_sym_GT_GT_GT,
- anon_sym_LT_LT,
- anon_sym_CARET,
- anon_sym_PERCENT,
- anon_sym_STAR_STAR,
- anon_sym_LT_EQ,
- anon_sym_EQ_EQ_EQ,
- anon_sym_BANG_EQ_EQ,
- anon_sym_GT_EQ,
- anon_sym_QMARK_QMARK,
- anon_sym_instanceof,
- anon_sym_PLUS_PLUS,
- anon_sym_DASH_DASH,
- anon_sym_BQUOTE,
- anon_sym_satisfies,
- anon_sym_extends,
- anon_sym_implements,
- [31754] = 3,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(4025), 13,
- anon_sym_STAR,
- anon_sym_BANG,
- anon_sym_in,
- anon_sym_GT,
- anon_sym_GT_GT,
- anon_sym_AMP,
- anon_sym_PIPE,
- anon_sym_PLUS,
- anon_sym_DASH,
- anon_sym_SLASH,
- anon_sym_LT,
- anon_sym_EQ_EQ,
- anon_sym_BANG_EQ,
- ACTIONS(4027), 32,
- sym__ternary_qmark,
- anon_sym_as,
- anon_sym_LBRACE,
- anon_sym_COMMA,
- anon_sym_RBRACE,
- anon_sym_LPAREN,
- anon_sym_RPAREN,
- anon_sym_of,
- anon_sym_COLON,
- anon_sym_LBRACK,
- anon_sym_RBRACK,
- anon_sym_DOT,
- anon_sym_QMARK_DOT,
- anon_sym_AMP_AMP,
- anon_sym_PIPE_PIPE,
- anon_sym_GT_GT_GT,
- anon_sym_LT_LT,
- anon_sym_CARET,
- anon_sym_PERCENT,
- anon_sym_STAR_STAR,
- anon_sym_LT_EQ,
- anon_sym_EQ_EQ_EQ,
- anon_sym_BANG_EQ_EQ,
- anon_sym_GT_EQ,
- anon_sym_QMARK_QMARK,
- anon_sym_instanceof,
- anon_sym_PLUS_PLUS,
- anon_sym_DASH_DASH,
- anon_sym_BQUOTE,
- anon_sym_satisfies,
- anon_sym_extends,
- anon_sym_implements,
- [31808] = 27,
- ACTIONS(825), 1,
- anon_sym_BQUOTE,
- ACTIONS(3969), 1,
- anon_sym_LPAREN,
- ACTIONS(3971), 1,
- anon_sym_LBRACK,
- ACTIONS(3973), 1,
- anon_sym_DOT,
- ACTIONS(4059), 1,
- anon_sym_QMARK_DOT,
- ACTIONS(4061), 1,
- anon_sym_AMP_AMP,
- ACTIONS(4065), 1,
- anon_sym_GT_GT,
- ACTIONS(4069), 1,
- anon_sym_AMP,
- ACTIONS(4071), 1,
- anon_sym_CARET,
- ACTIONS(4073), 1,
- anon_sym_PIPE,
- ACTIONS(4077), 1,
- anon_sym_PERCENT,
- ACTIONS(4079), 1,
- anon_sym_STAR_STAR,
- ACTIONS(4081), 1,
- anon_sym_LT,
- ACTIONS(4307), 1,
- anon_sym_BANG,
- STATE(1447), 1,
- sym_type_arguments,
- STATE(5080), 1,
- sym_optional_chain,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(4049), 2,
- anon_sym_STAR,
- anon_sym_SLASH,
- ACTIONS(4057), 2,
- anon_sym_in,
- anon_sym_GT,
- ACTIONS(4067), 2,
- anon_sym_GT_GT_GT,
- anon_sym_LT_LT,
- ACTIONS(4075), 2,
- anon_sym_PLUS,
- anon_sym_DASH,
- ACTIONS(4085), 2,
- anon_sym_EQ_EQ,
- anon_sym_BANG_EQ,
- ACTIONS(4087), 2,
- anon_sym_EQ_EQ_EQ,
- anon_sym_BANG_EQ_EQ,
- ACTIONS(4091), 2,
- anon_sym_PLUS_PLUS,
- anon_sym_DASH_DASH,
- STATE(1757), 2,
- sym_template_string,
- sym_arguments,
- ACTIONS(4083), 3,
- anon_sym_LT_EQ,
- anon_sym_GT_EQ,
- anon_sym_instanceof,
- ACTIONS(4305), 10,
- sym__ternary_qmark,
- anon_sym_as,
- anon_sym_COMMA,
- anon_sym_RBRACE,
- anon_sym_RPAREN,
- anon_sym_COLON,
- anon_sym_RBRACK,
- anon_sym_PIPE_PIPE,
- anon_sym_QMARK_QMARK,
- anon_sym_satisfies,
- [31910] = 17,
- ACTIONS(825), 1,
- anon_sym_BQUOTE,
- ACTIONS(3969), 1,
- anon_sym_LPAREN,
- ACTIONS(3971), 1,
- anon_sym_LBRACK,
- ACTIONS(3973), 1,
- anon_sym_DOT,
- ACTIONS(4059), 1,
- anon_sym_QMARK_DOT,
- ACTIONS(4077), 1,
- anon_sym_PERCENT,
- ACTIONS(4079), 1,
- anon_sym_STAR_STAR,
- ACTIONS(4315), 1,
- anon_sym_LT,
- STATE(1447), 1,
- sym_type_arguments,
- STATE(5080), 1,
- sym_optional_chain,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(4049), 2,
- anon_sym_STAR,
- anon_sym_SLASH,
- ACTIONS(4075), 2,
- anon_sym_PLUS,
- anon_sym_DASH,
- ACTIONS(4091), 2,
- anon_sym_PLUS_PLUS,
- anon_sym_DASH_DASH,
- STATE(1757), 2,
- sym_template_string,
- sym_arguments,
- ACTIONS(4307), 8,
- anon_sym_BANG,
- anon_sym_in,
- anon_sym_GT,
- anon_sym_GT_GT,
- anon_sym_AMP,
- anon_sym_PIPE,
- anon_sym_EQ_EQ,
- anon_sym_BANG_EQ,
- ACTIONS(4305), 19,
- sym__ternary_qmark,
- anon_sym_as,
- anon_sym_COMMA,
- anon_sym_RBRACE,
- anon_sym_RPAREN,
- anon_sym_COLON,
- anon_sym_RBRACK,
- anon_sym_AMP_AMP,
- anon_sym_PIPE_PIPE,
- anon_sym_GT_GT_GT,
- anon_sym_LT_LT,
- anon_sym_CARET,
- anon_sym_LT_EQ,
- anon_sym_EQ_EQ_EQ,
- anon_sym_BANG_EQ_EQ,
- anon_sym_GT_EQ,
- anon_sym_QMARK_QMARK,
- anon_sym_instanceof,
- anon_sym_satisfies,
- [31992] = 23,
- ACTIONS(825), 1,
- anon_sym_BQUOTE,
- ACTIONS(3969), 1,
- anon_sym_LPAREN,
- ACTIONS(3971), 1,
- anon_sym_LBRACK,
- ACTIONS(3973), 1,
- anon_sym_DOT,
- ACTIONS(4059), 1,
- anon_sym_QMARK_DOT,
- ACTIONS(4065), 1,
- anon_sym_GT_GT,
- ACTIONS(4077), 1,
- anon_sym_PERCENT,
- ACTIONS(4079), 1,
- anon_sym_STAR_STAR,
- ACTIONS(4081), 1,
- anon_sym_LT,
- STATE(1447), 1,
- sym_type_arguments,
- STATE(5080), 1,
- sym_optional_chain,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(4049), 2,
- anon_sym_STAR,
- anon_sym_SLASH,
- ACTIONS(4057), 2,
- anon_sym_in,
- anon_sym_GT,
- ACTIONS(4067), 2,
- anon_sym_GT_GT_GT,
- anon_sym_LT_LT,
- ACTIONS(4075), 2,
- anon_sym_PLUS,
- anon_sym_DASH,
- ACTIONS(4085), 2,
- anon_sym_EQ_EQ,
- anon_sym_BANG_EQ,
- ACTIONS(4087), 2,
- anon_sym_EQ_EQ_EQ,
- anon_sym_BANG_EQ_EQ,
- ACTIONS(4091), 2,
- anon_sym_PLUS_PLUS,
- anon_sym_DASH_DASH,
- STATE(1757), 2,
- sym_template_string,
- sym_arguments,
- ACTIONS(4083), 3,
- anon_sym_LT_EQ,
- anon_sym_GT_EQ,
- anon_sym_instanceof,
- ACTIONS(4307), 3,
- anon_sym_BANG,
- anon_sym_AMP,
- anon_sym_PIPE,
- ACTIONS(4305), 12,
- sym__ternary_qmark,
- anon_sym_as,
- anon_sym_COMMA,
- anon_sym_RBRACE,
- anon_sym_RPAREN,
- anon_sym_COLON,
- anon_sym_RBRACK,
- anon_sym_AMP_AMP,
- anon_sym_PIPE_PIPE,
- anon_sym_CARET,
- anon_sym_QMARK_QMARK,
- anon_sym_satisfies,
- [32086] = 24,
- ACTIONS(825), 1,
- anon_sym_BQUOTE,
- ACTIONS(3969), 1,
- anon_sym_LPAREN,
- ACTIONS(3971), 1,
- anon_sym_LBRACK,
- ACTIONS(3973), 1,
- anon_sym_DOT,
- ACTIONS(4059), 1,
- anon_sym_QMARK_DOT,
- ACTIONS(4065), 1,
- anon_sym_GT_GT,
- ACTIONS(4069), 1,
- anon_sym_AMP,
- ACTIONS(4077), 1,
- anon_sym_PERCENT,
- ACTIONS(4079), 1,
- anon_sym_STAR_STAR,
- ACTIONS(4081), 1,
- anon_sym_LT,
- STATE(1447), 1,
- sym_type_arguments,
- STATE(5080), 1,
- sym_optional_chain,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(4049), 2,
- anon_sym_STAR,
- anon_sym_SLASH,
- ACTIONS(4057), 2,
- anon_sym_in,
- anon_sym_GT,
- ACTIONS(4067), 2,
- anon_sym_GT_GT_GT,
- anon_sym_LT_LT,
- ACTIONS(4075), 2,
- anon_sym_PLUS,
- anon_sym_DASH,
- ACTIONS(4085), 2,
- anon_sym_EQ_EQ,
- anon_sym_BANG_EQ,
- ACTIONS(4087), 2,
- anon_sym_EQ_EQ_EQ,
- anon_sym_BANG_EQ_EQ,
- ACTIONS(4091), 2,
- anon_sym_PLUS_PLUS,
- anon_sym_DASH_DASH,
- ACTIONS(4307), 2,
- anon_sym_BANG,
- anon_sym_PIPE,
- STATE(1757), 2,
- sym_template_string,
- sym_arguments,
- ACTIONS(4083), 3,
- anon_sym_LT_EQ,
- anon_sym_GT_EQ,
- anon_sym_instanceof,
- ACTIONS(4305), 12,
- sym__ternary_qmark,
- anon_sym_as,
- anon_sym_COMMA,
- anon_sym_RBRACE,
- anon_sym_RPAREN,
- anon_sym_COLON,
- anon_sym_RBRACK,
- anon_sym_AMP_AMP,
- anon_sym_PIPE_PIPE,
- anon_sym_CARET,
- anon_sym_QMARK_QMARK,
- anon_sym_satisfies,
- [32182] = 3,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(4328), 13,
- anon_sym_STAR,
- anon_sym_BANG,
- anon_sym_in,
- anon_sym_GT,
- anon_sym_GT_GT,
- anon_sym_AMP,
- anon_sym_PIPE,
- anon_sym_PLUS,
- anon_sym_DASH,
- anon_sym_SLASH,
- anon_sym_LT,
- anon_sym_EQ_EQ,
- anon_sym_BANG_EQ,
- ACTIONS(4330), 32,
- sym__ternary_qmark,
- anon_sym_as,
- anon_sym_LBRACE,
- anon_sym_COMMA,
- anon_sym_RBRACE,
- anon_sym_LPAREN,
- anon_sym_RPAREN,
- anon_sym_of,
- anon_sym_COLON,
- anon_sym_LBRACK,
- anon_sym_RBRACK,
- anon_sym_DOT,
- anon_sym_QMARK_DOT,
- anon_sym_AMP_AMP,
- anon_sym_PIPE_PIPE,
- anon_sym_GT_GT_GT,
- anon_sym_LT_LT,
- anon_sym_CARET,
- anon_sym_PERCENT,
- anon_sym_STAR_STAR,
- anon_sym_LT_EQ,
- anon_sym_EQ_EQ_EQ,
- anon_sym_BANG_EQ_EQ,
- anon_sym_GT_EQ,
- anon_sym_QMARK_QMARK,
- anon_sym_instanceof,
- anon_sym_PLUS_PLUS,
- anon_sym_DASH_DASH,
- anon_sym_BQUOTE,
- anon_sym_satisfies,
- anon_sym_extends,
- anon_sym_implements,
- [32236] = 3,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(4039), 13,
- anon_sym_STAR,
- anon_sym_BANG,
- anon_sym_in,
- anon_sym_GT,
- anon_sym_GT_GT,
- anon_sym_AMP,
- anon_sym_PIPE,
- anon_sym_PLUS,
- anon_sym_DASH,
- anon_sym_SLASH,
- anon_sym_LT,
- anon_sym_EQ_EQ,
- anon_sym_BANG_EQ,
- ACTIONS(4041), 32,
- sym__ternary_qmark,
- anon_sym_as,
- anon_sym_LBRACE,
- anon_sym_COMMA,
- anon_sym_RBRACE,
- anon_sym_LPAREN,
- anon_sym_RPAREN,
- anon_sym_of,
- anon_sym_COLON,
- anon_sym_LBRACK,
- anon_sym_RBRACK,
- anon_sym_DOT,
- anon_sym_QMARK_DOT,
- anon_sym_AMP_AMP,
- anon_sym_PIPE_PIPE,
- anon_sym_GT_GT_GT,
- anon_sym_LT_LT,
- anon_sym_CARET,
- anon_sym_PERCENT,
- anon_sym_STAR_STAR,
- anon_sym_LT_EQ,
- anon_sym_EQ_EQ_EQ,
- anon_sym_BANG_EQ_EQ,
- anon_sym_GT_EQ,
- anon_sym_QMARK_QMARK,
- anon_sym_instanceof,
- anon_sym_PLUS_PLUS,
- anon_sym_DASH_DASH,
- anon_sym_BQUOTE,
- anon_sym_satisfies,
- anon_sym_extends,
- anon_sym_implements,
- [32290] = 25,
- ACTIONS(825), 1,
- anon_sym_BQUOTE,
- ACTIONS(3969), 1,
- anon_sym_LPAREN,
- ACTIONS(3971), 1,
- anon_sym_LBRACK,
- ACTIONS(3973), 1,
- anon_sym_DOT,
- ACTIONS(4059), 1,
- anon_sym_QMARK_DOT,
- ACTIONS(4065), 1,
- anon_sym_GT_GT,
- ACTIONS(4069), 1,
- anon_sym_AMP,
- ACTIONS(4071), 1,
- anon_sym_CARET,
- ACTIONS(4077), 1,
- anon_sym_PERCENT,
- ACTIONS(4079), 1,
- anon_sym_STAR_STAR,
- ACTIONS(4081), 1,
- anon_sym_LT,
- STATE(1447), 1,
- sym_type_arguments,
- STATE(5080), 1,
- sym_optional_chain,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(4049), 2,
- anon_sym_STAR,
- anon_sym_SLASH,
- ACTIONS(4057), 2,
- anon_sym_in,
- anon_sym_GT,
- ACTIONS(4067), 2,
- anon_sym_GT_GT_GT,
- anon_sym_LT_LT,
- ACTIONS(4075), 2,
- anon_sym_PLUS,
- anon_sym_DASH,
- ACTIONS(4085), 2,
- anon_sym_EQ_EQ,
- anon_sym_BANG_EQ,
- ACTIONS(4087), 2,
- anon_sym_EQ_EQ_EQ,
- anon_sym_BANG_EQ_EQ,
- ACTIONS(4091), 2,
- anon_sym_PLUS_PLUS,
- anon_sym_DASH_DASH,
- ACTIONS(4307), 2,
- anon_sym_BANG,
- anon_sym_PIPE,
- STATE(1757), 2,
- sym_template_string,
- sym_arguments,
- ACTIONS(4083), 3,
- anon_sym_LT_EQ,
- anon_sym_GT_EQ,
- anon_sym_instanceof,
- ACTIONS(4305), 11,
- sym__ternary_qmark,
- anon_sym_as,
- anon_sym_COMMA,
- anon_sym_RBRACE,
- anon_sym_RPAREN,
- anon_sym_COLON,
- anon_sym_RBRACK,
- anon_sym_AMP_AMP,
- anon_sym_PIPE_PIPE,
- anon_sym_QMARK_QMARK,
- anon_sym_satisfies,
- [32388] = 16,
- ACTIONS(825), 1,
- anon_sym_BQUOTE,
- ACTIONS(3969), 1,
- anon_sym_LPAREN,
- ACTIONS(3971), 1,
- anon_sym_LBRACK,
- ACTIONS(3973), 1,
- anon_sym_DOT,
- ACTIONS(4059), 1,
- anon_sym_QMARK_DOT,
- ACTIONS(4077), 1,
- anon_sym_PERCENT,
- ACTIONS(4079), 1,
- anon_sym_STAR_STAR,
- ACTIONS(4315), 1,
- anon_sym_LT,
- STATE(1447), 1,
- sym_type_arguments,
- STATE(5080), 1,
- sym_optional_chain,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(4049), 2,
- anon_sym_STAR,
- anon_sym_SLASH,
- ACTIONS(4091), 2,
- anon_sym_PLUS_PLUS,
- anon_sym_DASH_DASH,
- STATE(1757), 2,
- sym_template_string,
- sym_arguments,
- ACTIONS(4307), 10,
- anon_sym_BANG,
- anon_sym_in,
- anon_sym_GT,
- anon_sym_GT_GT,
- anon_sym_AMP,
- anon_sym_PIPE,
- anon_sym_PLUS,
- anon_sym_DASH,
- anon_sym_EQ_EQ,
- anon_sym_BANG_EQ,
- ACTIONS(4305), 19,
- sym__ternary_qmark,
- anon_sym_as,
- anon_sym_COMMA,
- anon_sym_RBRACE,
- anon_sym_RPAREN,
- anon_sym_COLON,
- anon_sym_RBRACK,
- anon_sym_AMP_AMP,
- anon_sym_PIPE_PIPE,
- anon_sym_GT_GT_GT,
- anon_sym_LT_LT,
- anon_sym_CARET,
- anon_sym_LT_EQ,
- anon_sym_EQ_EQ_EQ,
- anon_sym_BANG_EQ_EQ,
- anon_sym_GT_EQ,
- anon_sym_QMARK_QMARK,
- anon_sym_instanceof,
- anon_sym_satisfies,
- [32468] = 19,
- ACTIONS(1594), 1,
- anon_sym_DQUOTE,
- ACTIONS(1596), 1,
- anon_sym_SQUOTE,
- ACTIONS(3633), 1,
- anon_sym_override,
- ACTIONS(3737), 1,
- anon_sym_COMMA,
- ACTIONS(3838), 1,
- anon_sym_RBRACE,
- ACTIONS(4241), 1,
- anon_sym_STAR,
- ACTIONS(4243), 1,
- anon_sym_EQ,
- ACTIONS(4245), 1,
- anon_sym_LBRACK,
- ACTIONS(4247), 1,
- anon_sym_async,
- ACTIONS(4251), 1,
- anon_sym_readonly,
- STATE(2701), 1,
- sym_override_modifier,
- STATE(4671), 1,
- aux_sym_object_repeat1,
- STATE(4672), 1,
- aux_sym_object_pattern_repeat1,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(4249), 2,
- sym_number,
- sym_private_property_identifier,
- ACTIONS(4253), 2,
- anon_sym_get,
- anon_sym_set,
- STATE(3081), 3,
- sym_string,
- sym__property_name,
- sym_computed_property_name,
- ACTIONS(3743), 7,
- sym__automatic_semicolon,
- anon_sym_LPAREN,
- anon_sym_SEMI,
- anon_sym_COLON,
- anon_sym_LT,
- anon_sym_QMARK,
- anon_sym_PIPE_RBRACE,
- ACTIONS(3607), 18,
- anon_sym_export,
- anon_sym_type,
- anon_sym_namespace,
- anon_sym_let,
- anon_sym_new,
- sym_identifier,
- anon_sym_static,
- anon_sym_declare,
- anon_sym_public,
- anon_sym_private,
- anon_sym_protected,
- anon_sym_module,
- anon_sym_any,
- anon_sym_number,
- anon_sym_boolean,
- anon_sym_string,
- anon_sym_symbol,
- anon_sym_object,
- [32554] = 3,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(4013), 13,
- anon_sym_STAR,
- anon_sym_BANG,
- anon_sym_in,
- anon_sym_GT,
- anon_sym_GT_GT,
- anon_sym_AMP,
- anon_sym_PIPE,
- anon_sym_PLUS,
- anon_sym_DASH,
- anon_sym_SLASH,
- anon_sym_LT,
- anon_sym_EQ_EQ,
- anon_sym_BANG_EQ,
- ACTIONS(4015), 32,
- sym__ternary_qmark,
- anon_sym_as,
- anon_sym_LBRACE,
- anon_sym_COMMA,
- anon_sym_RBRACE,
- anon_sym_LPAREN,
- anon_sym_RPAREN,
- anon_sym_of,
- anon_sym_COLON,
- anon_sym_LBRACK,
- anon_sym_RBRACK,
- anon_sym_DOT,
- anon_sym_QMARK_DOT,
- anon_sym_AMP_AMP,
- anon_sym_PIPE_PIPE,
- anon_sym_GT_GT_GT,
- anon_sym_LT_LT,
- anon_sym_CARET,
- anon_sym_PERCENT,
- anon_sym_STAR_STAR,
- anon_sym_LT_EQ,
- anon_sym_EQ_EQ_EQ,
- anon_sym_BANG_EQ_EQ,
- anon_sym_GT_EQ,
- anon_sym_QMARK_QMARK,
- anon_sym_instanceof,
- anon_sym_PLUS_PLUS,
- anon_sym_DASH_DASH,
- anon_sym_BQUOTE,
- anon_sym_satisfies,
- anon_sym_extends,
- anon_sym_implements,
- [32608] = 17,
- ACTIONS(825), 1,
- anon_sym_BQUOTE,
- ACTIONS(3969), 1,
- anon_sym_LPAREN,
- ACTIONS(3971), 1,
- anon_sym_LBRACK,
- ACTIONS(3973), 1,
- anon_sym_DOT,
- ACTIONS(4051), 1,
- anon_sym_as,
- ACTIONS(4055), 1,
- anon_sym_BANG,
- ACTIONS(4059), 1,
- anon_sym_QMARK_DOT,
- ACTIONS(4079), 1,
- anon_sym_STAR_STAR,
- ACTIONS(4093), 1,
- anon_sym_satisfies,
- ACTIONS(4315), 1,
- anon_sym_LT,
- STATE(1447), 1,
- sym_type_arguments,
- STATE(5080), 1,
- sym_optional_chain,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(4091), 2,
- anon_sym_PLUS_PLUS,
- anon_sym_DASH_DASH,
- STATE(1757), 2,
- sym_template_string,
- sym_arguments,
- ACTIONS(4307), 11,
- anon_sym_STAR,
- anon_sym_in,
- anon_sym_GT,
- anon_sym_GT_GT,
- anon_sym_AMP,
- anon_sym_PIPE,
- anon_sym_PLUS,
- anon_sym_DASH,
- anon_sym_SLASH,
- anon_sym_EQ_EQ,
- anon_sym_BANG_EQ,
- ACTIONS(4305), 18,
- sym__ternary_qmark,
- anon_sym_COMMA,
- anon_sym_RBRACE,
- anon_sym_RPAREN,
- anon_sym_COLON,
- anon_sym_RBRACK,
- anon_sym_AMP_AMP,
- anon_sym_PIPE_PIPE,
- anon_sym_GT_GT_GT,
- anon_sym_LT_LT,
- anon_sym_CARET,
- anon_sym_PERCENT,
- anon_sym_LT_EQ,
- anon_sym_EQ_EQ_EQ,
- anon_sym_BANG_EQ_EQ,
- anon_sym_GT_EQ,
- anon_sym_QMARK_QMARK,
- anon_sym_instanceof,
- [32690] = 19,
- ACTIONS(1594), 1,
- anon_sym_DQUOTE,
- ACTIONS(1596), 1,
- anon_sym_SQUOTE,
- ACTIONS(3633), 1,
- anon_sym_override,
- ACTIONS(3737), 1,
- anon_sym_COMMA,
- ACTIONS(3829), 1,
- anon_sym_RBRACE,
- ACTIONS(4241), 1,
- anon_sym_STAR,
- ACTIONS(4243), 1,
- anon_sym_EQ,
- ACTIONS(4245), 1,
- anon_sym_LBRACK,
- ACTIONS(4247), 1,
- anon_sym_async,
- ACTIONS(4251), 1,
- anon_sym_readonly,
- STATE(2701), 1,
- sym_override_modifier,
- STATE(4672), 1,
- aux_sym_object_pattern_repeat1,
- STATE(5156), 1,
- aux_sym_object_repeat1,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(4249), 2,
- sym_number,
- sym_private_property_identifier,
- ACTIONS(4253), 2,
- anon_sym_get,
- anon_sym_set,
- STATE(3081), 3,
- sym_string,
- sym__property_name,
- sym_computed_property_name,
- ACTIONS(3743), 7,
- sym__automatic_semicolon,
- anon_sym_LPAREN,
- anon_sym_SEMI,
- anon_sym_COLON,
- anon_sym_LT,
- anon_sym_QMARK,
- anon_sym_PIPE_RBRACE,
- ACTIONS(3607), 18,
- anon_sym_export,
- anon_sym_type,
- anon_sym_namespace,
- anon_sym_let,
- anon_sym_new,
- sym_identifier,
- anon_sym_static,
- anon_sym_declare,
- anon_sym_public,
- anon_sym_private,
- anon_sym_protected,
- anon_sym_module,
- anon_sym_any,
- anon_sym_number,
- anon_sym_boolean,
- anon_sym_string,
- anon_sym_symbol,
- anon_sym_object,
- [32776] = 4,
- ACTIONS(3475), 1,
- anon_sym_EQ,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(3400), 13,
- anon_sym_STAR,
- anon_sym_BANG,
- anon_sym_in,
- anon_sym_GT,
- anon_sym_GT_GT,
- anon_sym_AMP,
- anon_sym_PIPE,
- anon_sym_PLUS,
- anon_sym_DASH,
- anon_sym_SLASH,
- anon_sym_LT,
- anon_sym_EQ_EQ,
- anon_sym_BANG_EQ,
- ACTIONS(3404), 31,
- sym__ternary_qmark,
- anon_sym_as,
- anon_sym_LBRACE,
- anon_sym_COMMA,
- anon_sym_RBRACE,
- anon_sym_LPAREN,
- anon_sym_RPAREN,
- anon_sym_of,
- anon_sym_COLON,
- anon_sym_LBRACK,
- anon_sym_RBRACK,
- anon_sym_DOT,
- anon_sym_QMARK_DOT,
- anon_sym_AMP_AMP,
- anon_sym_PIPE_PIPE,
- anon_sym_GT_GT_GT,
- anon_sym_LT_LT,
- anon_sym_CARET,
- anon_sym_PERCENT,
- anon_sym_STAR_STAR,
- anon_sym_LT_EQ,
- anon_sym_EQ_EQ_EQ,
- anon_sym_BANG_EQ_EQ,
- anon_sym_GT_EQ,
- anon_sym_QMARK_QMARK,
- anon_sym_instanceof,
- anon_sym_PLUS_PLUS,
- anon_sym_DASH_DASH,
- anon_sym_BQUOTE,
- anon_sym_satisfies,
- anon_sym_implements,
- [32832] = 3,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(4332), 13,
- anon_sym_STAR,
- anon_sym_BANG,
- anon_sym_in,
- anon_sym_GT,
- anon_sym_GT_GT,
- anon_sym_AMP,
- anon_sym_PIPE,
- anon_sym_PLUS,
- anon_sym_DASH,
- anon_sym_SLASH,
- anon_sym_LT,
- anon_sym_EQ_EQ,
- anon_sym_BANG_EQ,
- ACTIONS(4334), 32,
- sym__ternary_qmark,
- anon_sym_as,
- anon_sym_LBRACE,
- anon_sym_COMMA,
- anon_sym_RBRACE,
- anon_sym_LPAREN,
- anon_sym_RPAREN,
- anon_sym_of,
- anon_sym_COLON,
- anon_sym_LBRACK,
- anon_sym_RBRACK,
- anon_sym_DOT,
- anon_sym_QMARK_DOT,
- anon_sym_AMP_AMP,
- anon_sym_PIPE_PIPE,
- anon_sym_GT_GT_GT,
- anon_sym_LT_LT,
- anon_sym_CARET,
- anon_sym_PERCENT,
- anon_sym_STAR_STAR,
- anon_sym_LT_EQ,
- anon_sym_EQ_EQ_EQ,
- anon_sym_BANG_EQ_EQ,
- anon_sym_GT_EQ,
- anon_sym_QMARK_QMARK,
- anon_sym_instanceof,
- anon_sym_PLUS_PLUS,
- anon_sym_DASH_DASH,
- anon_sym_BQUOTE,
- anon_sym_satisfies,
- anon_sym_extends,
- anon_sym_implements,
- [32886] = 4,
- ACTIONS(4340), 1,
- anon_sym_DOT,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(4336), 13,
- anon_sym_STAR,
- anon_sym_BANG,
- anon_sym_in,
- anon_sym_GT,
- anon_sym_GT_GT,
- anon_sym_AMP,
- anon_sym_PIPE,
- anon_sym_PLUS,
- anon_sym_DASH,
- anon_sym_SLASH,
- anon_sym_LT,
- anon_sym_EQ_EQ,
- anon_sym_BANG_EQ,
- ACTIONS(4338), 31,
- sym__ternary_qmark,
- anon_sym_as,
- anon_sym_LBRACE,
- anon_sym_COMMA,
- anon_sym_RBRACE,
- anon_sym_LPAREN,
- anon_sym_RPAREN,
- anon_sym_of,
- anon_sym_COLON,
- anon_sym_LBRACK,
- anon_sym_RBRACK,
- anon_sym_QMARK_DOT,
- anon_sym_AMP_AMP,
- anon_sym_PIPE_PIPE,
- anon_sym_GT_GT_GT,
- anon_sym_LT_LT,
- anon_sym_CARET,
- anon_sym_PERCENT,
- anon_sym_STAR_STAR,
- anon_sym_LT_EQ,
- anon_sym_EQ_EQ_EQ,
- anon_sym_BANG_EQ_EQ,
- anon_sym_GT_EQ,
- anon_sym_QMARK_QMARK,
- anon_sym_instanceof,
- anon_sym_PLUS_PLUS,
- anon_sym_DASH_DASH,
- anon_sym_BQUOTE,
- anon_sym_satisfies,
- anon_sym_extends,
- anon_sym_implements,
- [32942] = 3,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(4342), 13,
- anon_sym_STAR,
- anon_sym_BANG,
- anon_sym_in,
- anon_sym_GT,
- anon_sym_GT_GT,
- anon_sym_AMP,
- anon_sym_PIPE,
- anon_sym_PLUS,
- anon_sym_DASH,
- anon_sym_SLASH,
- anon_sym_LT,
- anon_sym_EQ_EQ,
- anon_sym_BANG_EQ,
- ACTIONS(4344), 32,
- sym__ternary_qmark,
- anon_sym_as,
- anon_sym_LBRACE,
- anon_sym_COMMA,
- anon_sym_RBRACE,
- anon_sym_LPAREN,
- anon_sym_RPAREN,
- anon_sym_of,
- anon_sym_COLON,
- anon_sym_LBRACK,
- anon_sym_RBRACK,
- anon_sym_DOT,
- anon_sym_QMARK_DOT,
- anon_sym_AMP_AMP,
- anon_sym_PIPE_PIPE,
- anon_sym_GT_GT_GT,
- anon_sym_LT_LT,
- anon_sym_CARET,
- anon_sym_PERCENT,
- anon_sym_STAR_STAR,
- anon_sym_LT_EQ,
- anon_sym_EQ_EQ_EQ,
- anon_sym_BANG_EQ_EQ,
- anon_sym_GT_EQ,
- anon_sym_QMARK_QMARK,
- anon_sym_instanceof,
- anon_sym_PLUS_PLUS,
- anon_sym_DASH_DASH,
- anon_sym_BQUOTE,
- anon_sym_satisfies,
- anon_sym_extends,
- anon_sym_implements,
- [32996] = 21,
- ACTIONS(825), 1,
- anon_sym_BQUOTE,
- ACTIONS(3969), 1,
- anon_sym_LPAREN,
- ACTIONS(3971), 1,
- anon_sym_LBRACK,
- ACTIONS(3973), 1,
- anon_sym_DOT,
- ACTIONS(4059), 1,
- anon_sym_QMARK_DOT,
- ACTIONS(4065), 1,
- anon_sym_GT_GT,
- ACTIONS(4077), 1,
- anon_sym_PERCENT,
- ACTIONS(4079), 1,
- anon_sym_STAR_STAR,
- ACTIONS(4081), 1,
- anon_sym_LT,
- STATE(1447), 1,
- sym_type_arguments,
- STATE(5080), 1,
- sym_optional_chain,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(4049), 2,
- anon_sym_STAR,
- anon_sym_SLASH,
- ACTIONS(4057), 2,
- anon_sym_in,
- anon_sym_GT,
- ACTIONS(4067), 2,
- anon_sym_GT_GT_GT,
- anon_sym_LT_LT,
- ACTIONS(4075), 2,
- anon_sym_PLUS,
- anon_sym_DASH,
- ACTIONS(4091), 2,
- anon_sym_PLUS_PLUS,
- anon_sym_DASH_DASH,
- STATE(1757), 2,
- sym_template_string,
- sym_arguments,
- ACTIONS(4083), 3,
- anon_sym_LT_EQ,
- anon_sym_GT_EQ,
- anon_sym_instanceof,
- ACTIONS(4307), 5,
- anon_sym_BANG,
- anon_sym_AMP,
- anon_sym_PIPE,
- anon_sym_EQ_EQ,
- anon_sym_BANG_EQ,
- ACTIONS(4305), 14,
- sym__ternary_qmark,
- anon_sym_as,
- anon_sym_COMMA,
- anon_sym_RBRACE,
- anon_sym_RPAREN,
- anon_sym_COLON,
- anon_sym_RBRACK,
- anon_sym_AMP_AMP,
- anon_sym_PIPE_PIPE,
- anon_sym_CARET,
- anon_sym_EQ_EQ_EQ,
- anon_sym_BANG_EQ_EQ,
- anon_sym_QMARK_QMARK,
- anon_sym_satisfies,
- [33086] = 28,
- ACTIONS(825), 1,
- anon_sym_BQUOTE,
- ACTIONS(3969), 1,
- anon_sym_LPAREN,
- ACTIONS(3971), 1,
- anon_sym_LBRACK,
- ACTIONS(3973), 1,
- anon_sym_DOT,
- ACTIONS(4059), 1,
- anon_sym_QMARK_DOT,
- ACTIONS(4061), 1,
- anon_sym_AMP_AMP,
- ACTIONS(4063), 1,
- anon_sym_PIPE_PIPE,
- ACTIONS(4065), 1,
- anon_sym_GT_GT,
- ACTIONS(4069), 1,
- anon_sym_AMP,
- ACTIONS(4071), 1,
- anon_sym_CARET,
- ACTIONS(4073), 1,
- anon_sym_PIPE,
- ACTIONS(4077), 1,
- anon_sym_PERCENT,
- ACTIONS(4079), 1,
- anon_sym_STAR_STAR,
- ACTIONS(4081), 1,
- anon_sym_LT,
- ACTIONS(4307), 1,
- anon_sym_BANG,
- STATE(1447), 1,
- sym_type_arguments,
- STATE(5080), 1,
- sym_optional_chain,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(4049), 2,
- anon_sym_STAR,
- anon_sym_SLASH,
- ACTIONS(4057), 2,
- anon_sym_in,
- anon_sym_GT,
- ACTIONS(4067), 2,
- anon_sym_GT_GT_GT,
- anon_sym_LT_LT,
- ACTIONS(4075), 2,
- anon_sym_PLUS,
- anon_sym_DASH,
- ACTIONS(4085), 2,
- anon_sym_EQ_EQ,
- anon_sym_BANG_EQ,
- ACTIONS(4087), 2,
- anon_sym_EQ_EQ_EQ,
- anon_sym_BANG_EQ_EQ,
- ACTIONS(4091), 2,
- anon_sym_PLUS_PLUS,
- anon_sym_DASH_DASH,
- STATE(1757), 2,
- sym_template_string,
- sym_arguments,
- ACTIONS(4083), 3,
- anon_sym_LT_EQ,
- anon_sym_GT_EQ,
- anon_sym_instanceof,
- ACTIONS(4305), 9,
- sym__ternary_qmark,
- anon_sym_as,
- anon_sym_COMMA,
- anon_sym_RBRACE,
- anon_sym_RPAREN,
- anon_sym_COLON,
- anon_sym_RBRACK,
- anon_sym_QMARK_QMARK,
- anon_sym_satisfies,
- [33190] = 6,
- ACTIONS(4108), 1,
- anon_sym_AMP,
- ACTIONS(4110), 1,
- anon_sym_PIPE,
- ACTIONS(4112), 1,
- anon_sym_extends,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(4346), 11,
- anon_sym_STAR,
- anon_sym_BANG,
- anon_sym_in,
- anon_sym_GT,
- anon_sym_GT_GT,
- anon_sym_PLUS,
- anon_sym_DASH,
- anon_sym_SLASH,
- anon_sym_LT,
- anon_sym_EQ_EQ,
- anon_sym_BANG_EQ,
- ACTIONS(4348), 31,
- sym__ternary_qmark,
- anon_sym_as,
- anon_sym_LBRACE,
- anon_sym_COMMA,
- anon_sym_RBRACE,
- anon_sym_LPAREN,
- anon_sym_RPAREN,
- anon_sym_of,
- anon_sym_COLON,
- anon_sym_LBRACK,
- anon_sym_RBRACK,
- anon_sym_DOT,
- anon_sym_QMARK_DOT,
- anon_sym_AMP_AMP,
- anon_sym_PIPE_PIPE,
- anon_sym_GT_GT_GT,
- anon_sym_LT_LT,
- anon_sym_CARET,
- anon_sym_PERCENT,
- anon_sym_STAR_STAR,
- anon_sym_LT_EQ,
- anon_sym_EQ_EQ_EQ,
- anon_sym_BANG_EQ_EQ,
- anon_sym_GT_EQ,
- anon_sym_QMARK_QMARK,
- anon_sym_instanceof,
- anon_sym_PLUS_PLUS,
- anon_sym_DASH_DASH,
- anon_sym_BQUOTE,
- anon_sym_satisfies,
- anon_sym_implements,
- [33250] = 32,
- ACTIONS(825), 1,
- anon_sym_BQUOTE,
- ACTIONS(3969), 1,
- anon_sym_LPAREN,
- ACTIONS(3971), 1,
- anon_sym_LBRACK,
- ACTIONS(3973), 1,
- anon_sym_DOT,
- ACTIONS(4051), 1,
- anon_sym_as,
- ACTIONS(4055), 1,
- anon_sym_BANG,
- ACTIONS(4059), 1,
- anon_sym_QMARK_DOT,
- ACTIONS(4061), 1,
- anon_sym_AMP_AMP,
- ACTIONS(4063), 1,
- anon_sym_PIPE_PIPE,
- ACTIONS(4065), 1,
- anon_sym_GT_GT,
- ACTIONS(4069), 1,
- anon_sym_AMP,
- ACTIONS(4071), 1,
- anon_sym_CARET,
- ACTIONS(4073), 1,
- anon_sym_PIPE,
- ACTIONS(4077), 1,
- anon_sym_PERCENT,
- ACTIONS(4079), 1,
- anon_sym_STAR_STAR,
- ACTIONS(4081), 1,
- anon_sym_LT,
- ACTIONS(4089), 1,
- anon_sym_QMARK_QMARK,
- ACTIONS(4093), 1,
- anon_sym_satisfies,
- ACTIONS(4095), 1,
- sym__ternary_qmark,
- STATE(1447), 1,
- sym_type_arguments,
- STATE(5080), 1,
- sym_optional_chain,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(4049), 2,
- anon_sym_STAR,
- anon_sym_SLASH,
- ACTIONS(4057), 2,
- anon_sym_in,
- anon_sym_GT,
- ACTIONS(4067), 2,
- anon_sym_GT_GT_GT,
- anon_sym_LT_LT,
- ACTIONS(4075), 2,
- anon_sym_PLUS,
- anon_sym_DASH,
- ACTIONS(4085), 2,
- anon_sym_EQ_EQ,
- anon_sym_BANG_EQ,
- ACTIONS(4087), 2,
- anon_sym_EQ_EQ_EQ,
- anon_sym_BANG_EQ_EQ,
- ACTIONS(4091), 2,
- anon_sym_PLUS_PLUS,
- anon_sym_DASH_DASH,
- STATE(1757), 2,
- sym_template_string,
- sym_arguments,
- ACTIONS(4083), 3,
- anon_sym_LT_EQ,
- anon_sym_GT_EQ,
- anon_sym_instanceof,
- ACTIONS(4350), 5,
- anon_sym_COMMA,
- anon_sym_RBRACE,
- anon_sym_RPAREN,
- anon_sym_COLON,
- anon_sym_RBRACK,
- [33362] = 32,
- ACTIONS(825), 1,
- anon_sym_BQUOTE,
- ACTIONS(3969), 1,
- anon_sym_LPAREN,
- ACTIONS(3971), 1,
- anon_sym_LBRACK,
- ACTIONS(3973), 1,
- anon_sym_DOT,
- ACTIONS(4051), 1,
- anon_sym_as,
- ACTIONS(4055), 1,
- anon_sym_BANG,
- ACTIONS(4059), 1,
- anon_sym_QMARK_DOT,
- ACTIONS(4061), 1,
- anon_sym_AMP_AMP,
- ACTIONS(4063), 1,
- anon_sym_PIPE_PIPE,
- ACTIONS(4065), 1,
- anon_sym_GT_GT,
- ACTIONS(4069), 1,
- anon_sym_AMP,
- ACTIONS(4071), 1,
- anon_sym_CARET,
- ACTIONS(4073), 1,
- anon_sym_PIPE,
- ACTIONS(4077), 1,
- anon_sym_PERCENT,
- ACTIONS(4079), 1,
- anon_sym_STAR_STAR,
- ACTIONS(4081), 1,
- anon_sym_LT,
- ACTIONS(4089), 1,
- anon_sym_QMARK_QMARK,
- ACTIONS(4093), 1,
- anon_sym_satisfies,
- ACTIONS(4095), 1,
- sym__ternary_qmark,
- STATE(1447), 1,
- sym_type_arguments,
- STATE(5080), 1,
- sym_optional_chain,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(4049), 2,
- anon_sym_STAR,
- anon_sym_SLASH,
- ACTIONS(4057), 2,
- anon_sym_in,
- anon_sym_GT,
- ACTIONS(4067), 2,
- anon_sym_GT_GT_GT,
- anon_sym_LT_LT,
- ACTIONS(4075), 2,
- anon_sym_PLUS,
- anon_sym_DASH,
- ACTIONS(4085), 2,
- anon_sym_EQ_EQ,
- anon_sym_BANG_EQ,
- ACTIONS(4087), 2,
- anon_sym_EQ_EQ_EQ,
- anon_sym_BANG_EQ_EQ,
- ACTIONS(4091), 2,
- anon_sym_PLUS_PLUS,
- anon_sym_DASH_DASH,
- STATE(1757), 2,
- sym_template_string,
- sym_arguments,
- ACTIONS(4083), 3,
- anon_sym_LT_EQ,
- anon_sym_GT_EQ,
- anon_sym_instanceof,
- ACTIONS(4352), 5,
- anon_sym_COMMA,
- anon_sym_RBRACE,
- anon_sym_RPAREN,
- anon_sym_COLON,
- anon_sym_RBRACK,
- [33474] = 36,
- ACTIONS(825), 1,
- anon_sym_BQUOTE,
- ACTIONS(3477), 1,
- anon_sym_COLON,
- ACTIONS(3969), 1,
- anon_sym_LPAREN,
- ACTIONS(3971), 1,
- anon_sym_LBRACK,
- ACTIONS(3973), 1,
- anon_sym_DOT,
- ACTIONS(4051), 1,
- anon_sym_as,
- ACTIONS(4055), 1,
- anon_sym_BANG,
- ACTIONS(4059), 1,
- anon_sym_QMARK_DOT,
- ACTIONS(4061), 1,
- anon_sym_AMP_AMP,
- ACTIONS(4063), 1,
- anon_sym_PIPE_PIPE,
- ACTIONS(4065), 1,
- anon_sym_GT_GT,
- ACTIONS(4069), 1,
- anon_sym_AMP,
- ACTIONS(4071), 1,
- anon_sym_CARET,
- ACTIONS(4073), 1,
- anon_sym_PIPE,
- ACTIONS(4077), 1,
- anon_sym_PERCENT,
- ACTIONS(4079), 1,
- anon_sym_STAR_STAR,
- ACTIONS(4081), 1,
- anon_sym_LT,
- ACTIONS(4089), 1,
- anon_sym_QMARK_QMARK,
- ACTIONS(4093), 1,
- anon_sym_satisfies,
- ACTIONS(4095), 1,
- sym__ternary_qmark,
- ACTIONS(4267), 1,
- anon_sym_COMMA,
- ACTIONS(4354), 1,
- anon_sym_RPAREN,
- STATE(1447), 1,
- sym_type_arguments,
- STATE(3803), 1,
- aux_sym_sequence_expression_repeat1,
- STATE(5080), 1,
- sym_optional_chain,
- STATE(5815), 1,
- sym_type_annotation,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(4049), 2,
- anon_sym_STAR,
- anon_sym_SLASH,
- ACTIONS(4057), 2,
- anon_sym_in,
- anon_sym_GT,
- ACTIONS(4067), 2,
- anon_sym_GT_GT_GT,
- anon_sym_LT_LT,
- ACTIONS(4075), 2,
- anon_sym_PLUS,
- anon_sym_DASH,
- ACTIONS(4085), 2,
- anon_sym_EQ_EQ,
- anon_sym_BANG_EQ,
- ACTIONS(4087), 2,
- anon_sym_EQ_EQ_EQ,
- anon_sym_BANG_EQ_EQ,
- ACTIONS(4091), 2,
- anon_sym_PLUS_PLUS,
- anon_sym_DASH_DASH,
- STATE(1757), 2,
- sym_template_string,
- sym_arguments,
- ACTIONS(4083), 3,
- anon_sym_LT_EQ,
- anon_sym_GT_EQ,
- anon_sym_instanceof,
- [33594] = 6,
- ACTIONS(4108), 1,
- anon_sym_AMP,
- ACTIONS(4110), 1,
- anon_sym_PIPE,
- ACTIONS(4112), 1,
- anon_sym_extends,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(4356), 11,
- anon_sym_STAR,
- anon_sym_BANG,
- anon_sym_in,
- anon_sym_GT,
- anon_sym_GT_GT,
- anon_sym_PLUS,
- anon_sym_DASH,
- anon_sym_SLASH,
- anon_sym_LT,
- anon_sym_EQ_EQ,
- anon_sym_BANG_EQ,
- ACTIONS(4358), 31,
- sym__ternary_qmark,
- anon_sym_as,
- anon_sym_LBRACE,
- anon_sym_COMMA,
- anon_sym_RBRACE,
- anon_sym_LPAREN,
- anon_sym_RPAREN,
- anon_sym_of,
- anon_sym_COLON,
- anon_sym_LBRACK,
- anon_sym_RBRACK,
- anon_sym_DOT,
- anon_sym_QMARK_DOT,
- anon_sym_AMP_AMP,
- anon_sym_PIPE_PIPE,
- anon_sym_GT_GT_GT,
- anon_sym_LT_LT,
- anon_sym_CARET,
- anon_sym_PERCENT,
- anon_sym_STAR_STAR,
- anon_sym_LT_EQ,
- anon_sym_EQ_EQ_EQ,
- anon_sym_BANG_EQ_EQ,
- anon_sym_GT_EQ,
- anon_sym_QMARK_QMARK,
- anon_sym_instanceof,
- anon_sym_PLUS_PLUS,
- anon_sym_DASH_DASH,
- anon_sym_BQUOTE,
- anon_sym_satisfies,
- anon_sym_implements,
- [33654] = 6,
- ACTIONS(4108), 1,
- anon_sym_AMP,
- ACTIONS(4110), 1,
- anon_sym_PIPE,
- ACTIONS(4112), 1,
- anon_sym_extends,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(4360), 11,
- anon_sym_STAR,
- anon_sym_BANG,
- anon_sym_in,
- anon_sym_GT,
- anon_sym_GT_GT,
- anon_sym_PLUS,
- anon_sym_DASH,
- anon_sym_SLASH,
- anon_sym_LT,
- anon_sym_EQ_EQ,
- anon_sym_BANG_EQ,
- ACTIONS(4362), 31,
- sym__ternary_qmark,
- anon_sym_as,
- anon_sym_LBRACE,
- anon_sym_COMMA,
- anon_sym_RBRACE,
- anon_sym_LPAREN,
- anon_sym_RPAREN,
- anon_sym_of,
- anon_sym_COLON,
- anon_sym_LBRACK,
- anon_sym_RBRACK,
- anon_sym_DOT,
- anon_sym_QMARK_DOT,
- anon_sym_AMP_AMP,
- anon_sym_PIPE_PIPE,
- anon_sym_GT_GT_GT,
- anon_sym_LT_LT,
- anon_sym_CARET,
- anon_sym_PERCENT,
- anon_sym_STAR_STAR,
- anon_sym_LT_EQ,
- anon_sym_EQ_EQ_EQ,
- anon_sym_BANG_EQ_EQ,
- anon_sym_GT_EQ,
- anon_sym_QMARK_QMARK,
- anon_sym_instanceof,
- anon_sym_PLUS_PLUS,
- anon_sym_DASH_DASH,
- anon_sym_BQUOTE,
- anon_sym_satisfies,
- anon_sym_implements,
- [33714] = 4,
- ACTIONS(4364), 1,
- anon_sym_LBRACK,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(4342), 13,
- anon_sym_STAR,
- anon_sym_BANG,
- anon_sym_in,
- anon_sym_GT,
- anon_sym_GT_GT,
- anon_sym_AMP,
- anon_sym_PIPE,
- anon_sym_PLUS,
- anon_sym_DASH,
- anon_sym_SLASH,
- anon_sym_LT,
- anon_sym_EQ_EQ,
- anon_sym_BANG_EQ,
- ACTIONS(4344), 31,
- sym__ternary_qmark,
- anon_sym_as,
- anon_sym_LBRACE,
- anon_sym_COMMA,
- anon_sym_RBRACE,
- anon_sym_LPAREN,
- anon_sym_RPAREN,
- anon_sym_of,
- anon_sym_COLON,
- anon_sym_RBRACK,
- anon_sym_DOT,
- anon_sym_QMARK_DOT,
- anon_sym_AMP_AMP,
- anon_sym_PIPE_PIPE,
- anon_sym_GT_GT_GT,
- anon_sym_LT_LT,
- anon_sym_CARET,
- anon_sym_PERCENT,
- anon_sym_STAR_STAR,
- anon_sym_LT_EQ,
- anon_sym_EQ_EQ_EQ,
- anon_sym_BANG_EQ_EQ,
- anon_sym_GT_EQ,
- anon_sym_QMARK_QMARK,
- anon_sym_instanceof,
- anon_sym_PLUS_PLUS,
- anon_sym_DASH_DASH,
- anon_sym_BQUOTE,
- anon_sym_satisfies,
- anon_sym_extends,
- anon_sym_implements,
- [33770] = 3,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(4366), 13,
- anon_sym_STAR,
- anon_sym_BANG,
- anon_sym_in,
- anon_sym_GT,
- anon_sym_GT_GT,
- anon_sym_AMP,
- anon_sym_PIPE,
- anon_sym_PLUS,
- anon_sym_DASH,
- anon_sym_SLASH,
- anon_sym_LT,
- anon_sym_EQ_EQ,
- anon_sym_BANG_EQ,
- ACTIONS(4368), 32,
- sym__ternary_qmark,
- anon_sym_as,
- anon_sym_LBRACE,
- anon_sym_COMMA,
- anon_sym_RBRACE,
- anon_sym_LPAREN,
- anon_sym_RPAREN,
- anon_sym_of,
- anon_sym_COLON,
- anon_sym_LBRACK,
- anon_sym_RBRACK,
- anon_sym_DOT,
- anon_sym_QMARK_DOT,
- anon_sym_AMP_AMP,
- anon_sym_PIPE_PIPE,
- anon_sym_GT_GT_GT,
- anon_sym_LT_LT,
- anon_sym_CARET,
- anon_sym_PERCENT,
- anon_sym_STAR_STAR,
- anon_sym_LT_EQ,
- anon_sym_EQ_EQ_EQ,
- anon_sym_BANG_EQ_EQ,
- anon_sym_GT_EQ,
- anon_sym_QMARK_QMARK,
- anon_sym_instanceof,
- anon_sym_PLUS_PLUS,
- anon_sym_DASH_DASH,
- anon_sym_BQUOTE,
- anon_sym_satisfies,
- anon_sym_extends,
- anon_sym_implements,
- [33824] = 19,
- ACTIONS(1594), 1,
- anon_sym_DQUOTE,
- ACTIONS(1596), 1,
- anon_sym_SQUOTE,
- ACTIONS(3633), 1,
- anon_sym_override,
- ACTIONS(3737), 1,
- anon_sym_COMMA,
- ACTIONS(3817), 1,
- anon_sym_RBRACE,
- ACTIONS(4241), 1,
- anon_sym_STAR,
- ACTIONS(4243), 1,
- anon_sym_EQ,
- ACTIONS(4245), 1,
- anon_sym_LBRACK,
- ACTIONS(4247), 1,
- anon_sym_async,
- ACTIONS(4251), 1,
- anon_sym_readonly,
- STATE(2701), 1,
- sym_override_modifier,
- STATE(4672), 1,
- aux_sym_object_pattern_repeat1,
- STATE(5156), 1,
- aux_sym_object_repeat1,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(4249), 2,
- sym_number,
- sym_private_property_identifier,
- ACTIONS(4253), 2,
- anon_sym_get,
- anon_sym_set,
- STATE(3081), 3,
- sym_string,
- sym__property_name,
- sym_computed_property_name,
- ACTIONS(3743), 7,
- sym__automatic_semicolon,
- anon_sym_LPAREN,
- anon_sym_SEMI,
- anon_sym_COLON,
- anon_sym_LT,
- anon_sym_QMARK,
- anon_sym_PIPE_RBRACE,
- ACTIONS(3607), 18,
- anon_sym_export,
- anon_sym_type,
- anon_sym_namespace,
- anon_sym_let,
- anon_sym_new,
- sym_identifier,
- anon_sym_static,
- anon_sym_declare,
- anon_sym_public,
- anon_sym_private,
- anon_sym_protected,
- anon_sym_module,
- anon_sym_any,
- anon_sym_number,
- anon_sym_boolean,
- anon_sym_string,
- anon_sym_symbol,
- anon_sym_object,
- [33910] = 3,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(1799), 13,
- anon_sym_STAR,
- anon_sym_BANG,
- anon_sym_in,
- anon_sym_GT,
- anon_sym_GT_GT,
- anon_sym_AMP,
- anon_sym_PIPE,
- anon_sym_PLUS,
- anon_sym_DASH,
- anon_sym_SLASH,
- anon_sym_LT,
- anon_sym_EQ_EQ,
- anon_sym_BANG_EQ,
- ACTIONS(1797), 32,
- sym__automatic_semicolon,
- sym__ternary_qmark,
- anon_sym_as,
- anon_sym_LBRACE,
- anon_sym_COMMA,
- anon_sym_RBRACE,
- anon_sym_else,
- anon_sym_LPAREN,
- anon_sym_of,
- anon_sym_while,
- anon_sym_SEMI,
- anon_sym_LBRACK,
- anon_sym_DOT,
- anon_sym_QMARK_DOT,
- anon_sym_AMP_AMP,
- anon_sym_PIPE_PIPE,
- anon_sym_GT_GT_GT,
- anon_sym_LT_LT,
- anon_sym_CARET,
- anon_sym_PERCENT,
- anon_sym_STAR_STAR,
- anon_sym_LT_EQ,
- anon_sym_EQ_EQ_EQ,
- anon_sym_BANG_EQ_EQ,
- anon_sym_GT_EQ,
- anon_sym_QMARK_QMARK,
- anon_sym_instanceof,
- anon_sym_PLUS_PLUS,
- anon_sym_DASH_DASH,
- anon_sym_BQUOTE,
- anon_sym_satisfies,
- anon_sym_PIPE_RBRACE,
- [33964] = 3,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(1857), 13,
- anon_sym_STAR,
- anon_sym_BANG,
- anon_sym_in,
- anon_sym_GT,
- anon_sym_GT_GT,
- anon_sym_AMP,
- anon_sym_PIPE,
- anon_sym_PLUS,
- anon_sym_DASH,
- anon_sym_SLASH,
- anon_sym_LT,
- anon_sym_EQ_EQ,
- anon_sym_BANG_EQ,
- ACTIONS(1855), 32,
- sym__automatic_semicolon,
- sym__ternary_qmark,
- anon_sym_as,
- anon_sym_LBRACE,
- anon_sym_COMMA,
- anon_sym_RBRACE,
- anon_sym_else,
- anon_sym_LPAREN,
- anon_sym_of,
- anon_sym_while,
- anon_sym_SEMI,
- anon_sym_LBRACK,
- anon_sym_DOT,
- anon_sym_QMARK_DOT,
- anon_sym_AMP_AMP,
- anon_sym_PIPE_PIPE,
- anon_sym_GT_GT_GT,
- anon_sym_LT_LT,
- anon_sym_CARET,
- anon_sym_PERCENT,
- anon_sym_STAR_STAR,
- anon_sym_LT_EQ,
- anon_sym_EQ_EQ_EQ,
- anon_sym_BANG_EQ_EQ,
- anon_sym_GT_EQ,
- anon_sym_QMARK_QMARK,
- anon_sym_instanceof,
- anon_sym_PLUS_PLUS,
- anon_sym_DASH_DASH,
- anon_sym_BQUOTE,
- anon_sym_satisfies,
- anon_sym_PIPE_RBRACE,
- [34018] = 3,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(2333), 13,
- anon_sym_STAR,
- anon_sym_BANG,
- anon_sym_in,
- anon_sym_GT,
- anon_sym_GT_GT,
- anon_sym_AMP,
- anon_sym_PIPE,
- anon_sym_PLUS,
- anon_sym_DASH,
- anon_sym_SLASH,
- anon_sym_LT,
- anon_sym_EQ_EQ,
- anon_sym_BANG_EQ,
- ACTIONS(2331), 32,
- sym__ternary_qmark,
- anon_sym_as,
- anon_sym_LBRACE,
- anon_sym_COMMA,
- anon_sym_RBRACE,
- anon_sym_LPAREN,
- anon_sym_RPAREN,
- anon_sym_of,
- anon_sym_COLON,
- anon_sym_LBRACK,
- anon_sym_RBRACK,
- anon_sym_DOT,
- anon_sym_QMARK_DOT,
- anon_sym_AMP_AMP,
- anon_sym_PIPE_PIPE,
- anon_sym_GT_GT_GT,
- anon_sym_LT_LT,
- anon_sym_CARET,
- anon_sym_PERCENT,
- anon_sym_STAR_STAR,
- anon_sym_LT_EQ,
- anon_sym_EQ_EQ_EQ,
- anon_sym_BANG_EQ_EQ,
- anon_sym_GT_EQ,
- anon_sym_QMARK_QMARK,
- anon_sym_instanceof,
- anon_sym_PLUS_PLUS,
- anon_sym_DASH_DASH,
- anon_sym_BQUOTE,
- anon_sym_satisfies,
- anon_sym_extends,
- anon_sym_implements,
- [34072] = 4,
- ACTIONS(3991), 1,
- anon_sym_DOT,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(3418), 13,
- anon_sym_STAR,
- anon_sym_BANG,
- anon_sym_in,
- anon_sym_GT,
- anon_sym_GT_GT,
- anon_sym_AMP,
- anon_sym_PIPE,
- anon_sym_PLUS,
- anon_sym_DASH,
- anon_sym_SLASH,
- anon_sym_LT,
- anon_sym_EQ_EQ,
- anon_sym_BANG_EQ,
- ACTIONS(3406), 31,
- sym__ternary_qmark,
- anon_sym_as,
- anon_sym_LBRACE,
- anon_sym_COMMA,
- anon_sym_RBRACE,
- anon_sym_LPAREN,
- anon_sym_RPAREN,
- anon_sym_of,
- anon_sym_COLON,
- anon_sym_LBRACK,
- anon_sym_RBRACK,
- anon_sym_QMARK_DOT,
- anon_sym_AMP_AMP,
- anon_sym_PIPE_PIPE,
- anon_sym_GT_GT_GT,
- anon_sym_LT_LT,
- anon_sym_CARET,
- anon_sym_PERCENT,
- anon_sym_STAR_STAR,
- anon_sym_LT_EQ,
- anon_sym_EQ_EQ_EQ,
- anon_sym_BANG_EQ_EQ,
- anon_sym_GT_EQ,
- anon_sym_QMARK_QMARK,
- anon_sym_instanceof,
- anon_sym_PLUS_PLUS,
- anon_sym_DASH_DASH,
- anon_sym_BQUOTE,
- anon_sym_satisfies,
- anon_sym_extends,
- anon_sym_implements,
- [34128] = 32,
- ACTIONS(825), 1,
- anon_sym_BQUOTE,
- ACTIONS(3969), 1,
- anon_sym_LPAREN,
- ACTIONS(3971), 1,
- anon_sym_LBRACK,
- ACTIONS(3973), 1,
- anon_sym_DOT,
- ACTIONS(4051), 1,
- anon_sym_as,
- ACTIONS(4055), 1,
- anon_sym_BANG,
- ACTIONS(4059), 1,
- anon_sym_QMARK_DOT,
- ACTIONS(4061), 1,
- anon_sym_AMP_AMP,
- ACTIONS(4063), 1,
- anon_sym_PIPE_PIPE,
- ACTIONS(4065), 1,
- anon_sym_GT_GT,
- ACTIONS(4069), 1,
- anon_sym_AMP,
- ACTIONS(4071), 1,
- anon_sym_CARET,
- ACTIONS(4073), 1,
- anon_sym_PIPE,
- ACTIONS(4077), 1,
- anon_sym_PERCENT,
- ACTIONS(4079), 1,
- anon_sym_STAR_STAR,
- ACTIONS(4081), 1,
- anon_sym_LT,
- ACTIONS(4089), 1,
- anon_sym_QMARK_QMARK,
- ACTIONS(4093), 1,
- anon_sym_satisfies,
- ACTIONS(4095), 1,
- sym__ternary_qmark,
- STATE(1447), 1,
- sym_type_arguments,
- STATE(5080), 1,
- sym_optional_chain,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(4049), 2,
- anon_sym_STAR,
- anon_sym_SLASH,
- ACTIONS(4057), 2,
- anon_sym_in,
- anon_sym_GT,
- ACTIONS(4067), 2,
- anon_sym_GT_GT_GT,
- anon_sym_LT_LT,
- ACTIONS(4075), 2,
- anon_sym_PLUS,
- anon_sym_DASH,
- ACTIONS(4085), 2,
- anon_sym_EQ_EQ,
- anon_sym_BANG_EQ,
- ACTIONS(4087), 2,
- anon_sym_EQ_EQ_EQ,
- anon_sym_BANG_EQ_EQ,
- ACTIONS(4091), 2,
- anon_sym_PLUS_PLUS,
- anon_sym_DASH_DASH,
- STATE(1757), 2,
- sym_template_string,
- sym_arguments,
- ACTIONS(4083), 3,
- anon_sym_LT_EQ,
- anon_sym_GT_EQ,
- anon_sym_instanceof,
- ACTIONS(4370), 5,
- anon_sym_COMMA,
- anon_sym_RBRACE,
- anon_sym_RPAREN,
- anon_sym_COLON,
- anon_sym_RBRACK,
- [34240] = 32,
- ACTIONS(825), 1,
- anon_sym_BQUOTE,
- ACTIONS(3969), 1,
- anon_sym_LPAREN,
- ACTIONS(3971), 1,
- anon_sym_LBRACK,
- ACTIONS(3973), 1,
- anon_sym_DOT,
- ACTIONS(4051), 1,
- anon_sym_as,
- ACTIONS(4055), 1,
- anon_sym_BANG,
- ACTIONS(4059), 1,
- anon_sym_QMARK_DOT,
- ACTIONS(4061), 1,
- anon_sym_AMP_AMP,
- ACTIONS(4063), 1,
- anon_sym_PIPE_PIPE,
- ACTIONS(4065), 1,
- anon_sym_GT_GT,
- ACTIONS(4069), 1,
- anon_sym_AMP,
- ACTIONS(4071), 1,
- anon_sym_CARET,
- ACTIONS(4073), 1,
- anon_sym_PIPE,
- ACTIONS(4077), 1,
- anon_sym_PERCENT,
- ACTIONS(4079), 1,
- anon_sym_STAR_STAR,
- ACTIONS(4081), 1,
- anon_sym_LT,
- ACTIONS(4089), 1,
- anon_sym_QMARK_QMARK,
- ACTIONS(4093), 1,
- anon_sym_satisfies,
- ACTIONS(4095), 1,
- sym__ternary_qmark,
- STATE(1447), 1,
- sym_type_arguments,
- STATE(5080), 1,
- sym_optional_chain,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(4049), 2,
- anon_sym_STAR,
- anon_sym_SLASH,
- ACTIONS(4057), 2,
- anon_sym_in,
- anon_sym_GT,
- ACTIONS(4067), 2,
- anon_sym_GT_GT_GT,
- anon_sym_LT_LT,
- ACTIONS(4075), 2,
- anon_sym_PLUS,
- anon_sym_DASH,
- ACTIONS(4085), 2,
- anon_sym_EQ_EQ,
- anon_sym_BANG_EQ,
- ACTIONS(4087), 2,
- anon_sym_EQ_EQ_EQ,
- anon_sym_BANG_EQ_EQ,
- ACTIONS(4091), 2,
- anon_sym_PLUS_PLUS,
- anon_sym_DASH_DASH,
- STATE(1757), 2,
- sym_template_string,
- sym_arguments,
- ACTIONS(4083), 3,
- anon_sym_LT_EQ,
- anon_sym_GT_EQ,
- anon_sym_instanceof,
- ACTIONS(4372), 5,
- anon_sym_COMMA,
- anon_sym_RBRACE,
- anon_sym_RPAREN,
- anon_sym_COLON,
- anon_sym_RBRACK,
- [34352] = 32,
- ACTIONS(825), 1,
- anon_sym_BQUOTE,
- ACTIONS(3969), 1,
- anon_sym_LPAREN,
- ACTIONS(3971), 1,
- anon_sym_LBRACK,
- ACTIONS(3973), 1,
- anon_sym_DOT,
- ACTIONS(4051), 1,
- anon_sym_as,
- ACTIONS(4055), 1,
- anon_sym_BANG,
- ACTIONS(4059), 1,
- anon_sym_QMARK_DOT,
- ACTIONS(4061), 1,
- anon_sym_AMP_AMP,
- ACTIONS(4063), 1,
- anon_sym_PIPE_PIPE,
- ACTIONS(4065), 1,
- anon_sym_GT_GT,
- ACTIONS(4069), 1,
- anon_sym_AMP,
- ACTIONS(4071), 1,
- anon_sym_CARET,
- ACTIONS(4073), 1,
- anon_sym_PIPE,
- ACTIONS(4077), 1,
- anon_sym_PERCENT,
- ACTIONS(4079), 1,
- anon_sym_STAR_STAR,
- ACTIONS(4081), 1,
- anon_sym_LT,
- ACTIONS(4089), 1,
- anon_sym_QMARK_QMARK,
- ACTIONS(4093), 1,
- anon_sym_satisfies,
- ACTIONS(4095), 1,
- sym__ternary_qmark,
- STATE(1447), 1,
- sym_type_arguments,
- STATE(5080), 1,
- sym_optional_chain,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(4049), 2,
- anon_sym_STAR,
- anon_sym_SLASH,
- ACTIONS(4057), 2,
- anon_sym_in,
- anon_sym_GT,
- ACTIONS(4067), 2,
- anon_sym_GT_GT_GT,
- anon_sym_LT_LT,
- ACTIONS(4075), 2,
- anon_sym_PLUS,
- anon_sym_DASH,
- ACTIONS(4085), 2,
- anon_sym_EQ_EQ,
- anon_sym_BANG_EQ,
- ACTIONS(4087), 2,
- anon_sym_EQ_EQ_EQ,
- anon_sym_BANG_EQ_EQ,
- ACTIONS(4091), 2,
- anon_sym_PLUS_PLUS,
- anon_sym_DASH_DASH,
- STATE(1757), 2,
- sym_template_string,
- sym_arguments,
- ACTIONS(4083), 3,
- anon_sym_LT_EQ,
- anon_sym_GT_EQ,
- anon_sym_instanceof,
- ACTIONS(4374), 5,
- anon_sym_COMMA,
- anon_sym_RBRACE,
- anon_sym_RPAREN,
- anon_sym_COLON,
- anon_sym_RBRACK,
- [34464] = 32,
- ACTIONS(825), 1,
- anon_sym_BQUOTE,
- ACTIONS(3969), 1,
- anon_sym_LPAREN,
- ACTIONS(3971), 1,
- anon_sym_LBRACK,
- ACTIONS(3973), 1,
- anon_sym_DOT,
- ACTIONS(4051), 1,
- anon_sym_as,
- ACTIONS(4055), 1,
- anon_sym_BANG,
- ACTIONS(4059), 1,
- anon_sym_QMARK_DOT,
- ACTIONS(4061), 1,
- anon_sym_AMP_AMP,
- ACTIONS(4063), 1,
- anon_sym_PIPE_PIPE,
- ACTIONS(4065), 1,
- anon_sym_GT_GT,
- ACTIONS(4069), 1,
- anon_sym_AMP,
- ACTIONS(4071), 1,
- anon_sym_CARET,
- ACTIONS(4073), 1,
- anon_sym_PIPE,
- ACTIONS(4077), 1,
- anon_sym_PERCENT,
- ACTIONS(4079), 1,
- anon_sym_STAR_STAR,
- ACTIONS(4081), 1,
- anon_sym_LT,
- ACTIONS(4089), 1,
- anon_sym_QMARK_QMARK,
- ACTIONS(4093), 1,
- anon_sym_satisfies,
- ACTIONS(4095), 1,
- sym__ternary_qmark,
- STATE(1447), 1,
- sym_type_arguments,
- STATE(5080), 1,
- sym_optional_chain,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(4049), 2,
- anon_sym_STAR,
- anon_sym_SLASH,
- ACTIONS(4057), 2,
- anon_sym_in,
- anon_sym_GT,
- ACTIONS(4067), 2,
- anon_sym_GT_GT_GT,
- anon_sym_LT_LT,
- ACTIONS(4075), 2,
- anon_sym_PLUS,
- anon_sym_DASH,
- ACTIONS(4085), 2,
- anon_sym_EQ_EQ,
- anon_sym_BANG_EQ,
- ACTIONS(4087), 2,
- anon_sym_EQ_EQ_EQ,
- anon_sym_BANG_EQ_EQ,
- ACTIONS(4091), 2,
- anon_sym_PLUS_PLUS,
- anon_sym_DASH_DASH,
- STATE(1757), 2,
- sym_template_string,
- sym_arguments,
- ACTIONS(4083), 3,
- anon_sym_LT_EQ,
- anon_sym_GT_EQ,
- anon_sym_instanceof,
- ACTIONS(4376), 5,
- anon_sym_COMMA,
- anon_sym_RBRACE,
- anon_sym_RPAREN,
- anon_sym_COLON,
- anon_sym_RBRACK,
- [34576] = 4,
- ACTIONS(4382), 1,
- anon_sym_DOT,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(4378), 13,
- anon_sym_STAR,
- anon_sym_BANG,
- anon_sym_in,
- anon_sym_GT,
- anon_sym_GT_GT,
- anon_sym_AMP,
- anon_sym_PIPE,
- anon_sym_PLUS,
- anon_sym_DASH,
- anon_sym_SLASH,
- anon_sym_LT,
- anon_sym_EQ_EQ,
- anon_sym_BANG_EQ,
- ACTIONS(4380), 31,
- sym__ternary_qmark,
- anon_sym_as,
- anon_sym_LBRACE,
- anon_sym_COMMA,
- anon_sym_RBRACE,
- anon_sym_LPAREN,
- anon_sym_RPAREN,
- anon_sym_of,
- anon_sym_COLON,
- anon_sym_LBRACK,
- anon_sym_RBRACK,
- anon_sym_QMARK_DOT,
- anon_sym_AMP_AMP,
- anon_sym_PIPE_PIPE,
- anon_sym_GT_GT_GT,
- anon_sym_LT_LT,
- anon_sym_CARET,
- anon_sym_PERCENT,
- anon_sym_STAR_STAR,
- anon_sym_LT_EQ,
- anon_sym_EQ_EQ_EQ,
- anon_sym_BANG_EQ_EQ,
- anon_sym_GT_EQ,
- anon_sym_QMARK_QMARK,
- anon_sym_instanceof,
- anon_sym_PLUS_PLUS,
- anon_sym_DASH_DASH,
- anon_sym_BQUOTE,
- anon_sym_satisfies,
- anon_sym_extends,
- anon_sym_implements,
- [34632] = 3,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(4384), 13,
- anon_sym_STAR,
- anon_sym_BANG,
- anon_sym_in,
- anon_sym_GT,
- anon_sym_GT_GT,
- anon_sym_AMP,
- anon_sym_PIPE,
- anon_sym_PLUS,
- anon_sym_DASH,
- anon_sym_SLASH,
- anon_sym_LT,
- anon_sym_EQ_EQ,
- anon_sym_BANG_EQ,
- ACTIONS(4386), 32,
- sym__ternary_qmark,
- anon_sym_as,
- anon_sym_LBRACE,
- anon_sym_COMMA,
- anon_sym_RBRACE,
- anon_sym_LPAREN,
- anon_sym_RPAREN,
- anon_sym_of,
- anon_sym_COLON,
- anon_sym_LBRACK,
- anon_sym_RBRACK,
- anon_sym_DOT,
- anon_sym_QMARK_DOT,
- anon_sym_AMP_AMP,
- anon_sym_PIPE_PIPE,
- anon_sym_GT_GT_GT,
- anon_sym_LT_LT,
- anon_sym_CARET,
- anon_sym_PERCENT,
- anon_sym_STAR_STAR,
- anon_sym_LT_EQ,
- anon_sym_EQ_EQ_EQ,
- anon_sym_BANG_EQ_EQ,
- anon_sym_GT_EQ,
- anon_sym_QMARK_QMARK,
- anon_sym_instanceof,
- anon_sym_PLUS_PLUS,
- anon_sym_DASH_DASH,
- anon_sym_BQUOTE,
- anon_sym_satisfies,
- anon_sym_extends,
- anon_sym_implements,
- [34686] = 32,
- ACTIONS(825), 1,
- anon_sym_BQUOTE,
- ACTIONS(3969), 1,
- anon_sym_LPAREN,
- ACTIONS(3971), 1,
- anon_sym_LBRACK,
- ACTIONS(3973), 1,
- anon_sym_DOT,
- ACTIONS(4051), 1,
- anon_sym_as,
- ACTIONS(4055), 1,
- anon_sym_BANG,
- ACTIONS(4059), 1,
- anon_sym_QMARK_DOT,
- ACTIONS(4061), 1,
- anon_sym_AMP_AMP,
- ACTIONS(4063), 1,
- anon_sym_PIPE_PIPE,
- ACTIONS(4065), 1,
- anon_sym_GT_GT,
- ACTIONS(4069), 1,
- anon_sym_AMP,
- ACTIONS(4071), 1,
- anon_sym_CARET,
- ACTIONS(4073), 1,
- anon_sym_PIPE,
- ACTIONS(4077), 1,
- anon_sym_PERCENT,
- ACTIONS(4079), 1,
- anon_sym_STAR_STAR,
- ACTIONS(4081), 1,
- anon_sym_LT,
- ACTIONS(4089), 1,
- anon_sym_QMARK_QMARK,
- ACTIONS(4093), 1,
- anon_sym_satisfies,
- ACTIONS(4095), 1,
- sym__ternary_qmark,
- STATE(1447), 1,
- sym_type_arguments,
- STATE(5080), 1,
- sym_optional_chain,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(4049), 2,
- anon_sym_STAR,
- anon_sym_SLASH,
- ACTIONS(4057), 2,
- anon_sym_in,
- anon_sym_GT,
- ACTIONS(4067), 2,
- anon_sym_GT_GT_GT,
- anon_sym_LT_LT,
- ACTIONS(4075), 2,
- anon_sym_PLUS,
- anon_sym_DASH,
- ACTIONS(4085), 2,
- anon_sym_EQ_EQ,
- anon_sym_BANG_EQ,
- ACTIONS(4087), 2,
- anon_sym_EQ_EQ_EQ,
- anon_sym_BANG_EQ_EQ,
- ACTIONS(4091), 2,
- anon_sym_PLUS_PLUS,
- anon_sym_DASH_DASH,
- STATE(1757), 2,
- sym_template_string,
- sym_arguments,
- ACTIONS(4083), 3,
- anon_sym_LT_EQ,
- anon_sym_GT_EQ,
- anon_sym_instanceof,
- ACTIONS(4388), 5,
- anon_sym_COMMA,
- anon_sym_RBRACE,
- anon_sym_RPAREN,
- anon_sym_COLON,
- anon_sym_RBRACK,
- [34798] = 3,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(4390), 13,
- anon_sym_STAR,
- anon_sym_BANG,
- anon_sym_in,
- anon_sym_GT,
- anon_sym_GT_GT,
- anon_sym_AMP,
- anon_sym_PIPE,
- anon_sym_PLUS,
- anon_sym_DASH,
- anon_sym_SLASH,
- anon_sym_LT,
- anon_sym_EQ_EQ,
- anon_sym_BANG_EQ,
- ACTIONS(4392), 32,
- sym__ternary_qmark,
- anon_sym_as,
- anon_sym_LBRACE,
- anon_sym_COMMA,
- anon_sym_RBRACE,
- anon_sym_LPAREN,
- anon_sym_RPAREN,
- anon_sym_of,
- anon_sym_COLON,
- anon_sym_LBRACK,
- anon_sym_RBRACK,
- anon_sym_DOT,
- anon_sym_QMARK_DOT,
- anon_sym_AMP_AMP,
- anon_sym_PIPE_PIPE,
- anon_sym_GT_GT_GT,
- anon_sym_LT_LT,
- anon_sym_CARET,
- anon_sym_PERCENT,
- anon_sym_STAR_STAR,
- anon_sym_LT_EQ,
- anon_sym_EQ_EQ_EQ,
- anon_sym_BANG_EQ_EQ,
- anon_sym_GT_EQ,
- anon_sym_QMARK_QMARK,
- anon_sym_instanceof,
- anon_sym_PLUS_PLUS,
- anon_sym_DASH_DASH,
- anon_sym_BQUOTE,
- anon_sym_satisfies,
- anon_sym_extends,
- anon_sym_implements,
- [34852] = 3,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(4394), 13,
- anon_sym_STAR,
- anon_sym_BANG,
- anon_sym_in,
- anon_sym_GT,
- anon_sym_GT_GT,
- anon_sym_AMP,
- anon_sym_PIPE,
- anon_sym_PLUS,
- anon_sym_DASH,
- anon_sym_SLASH,
- anon_sym_LT,
- anon_sym_EQ_EQ,
- anon_sym_BANG_EQ,
- ACTIONS(4396), 32,
- sym__ternary_qmark,
- anon_sym_as,
- anon_sym_LBRACE,
- anon_sym_COMMA,
- anon_sym_RBRACE,
- anon_sym_LPAREN,
- anon_sym_RPAREN,
- anon_sym_of,
- anon_sym_COLON,
- anon_sym_LBRACK,
- anon_sym_RBRACK,
- anon_sym_DOT,
- anon_sym_QMARK_DOT,
- anon_sym_AMP_AMP,
- anon_sym_PIPE_PIPE,
- anon_sym_GT_GT_GT,
- anon_sym_LT_LT,
- anon_sym_CARET,
- anon_sym_PERCENT,
- anon_sym_STAR_STAR,
- anon_sym_LT_EQ,
- anon_sym_EQ_EQ_EQ,
- anon_sym_BANG_EQ_EQ,
- anon_sym_GT_EQ,
- anon_sym_QMARK_QMARK,
- anon_sym_instanceof,
- anon_sym_PLUS_PLUS,
- anon_sym_DASH_DASH,
- anon_sym_BQUOTE,
- anon_sym_satisfies,
- anon_sym_extends,
- anon_sym_implements,
- [34906] = 4,
- ACTIONS(4108), 1,
- anon_sym_AMP,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(4398), 12,
- anon_sym_STAR,
- anon_sym_BANG,
- anon_sym_in,
- anon_sym_GT,
- anon_sym_GT_GT,
- anon_sym_PIPE,
- anon_sym_PLUS,
- anon_sym_DASH,
- anon_sym_SLASH,
- anon_sym_LT,
- anon_sym_EQ_EQ,
- anon_sym_BANG_EQ,
- ACTIONS(4400), 32,
- sym__ternary_qmark,
- anon_sym_as,
- anon_sym_LBRACE,
- anon_sym_COMMA,
- anon_sym_RBRACE,
- anon_sym_LPAREN,
- anon_sym_RPAREN,
- anon_sym_of,
- anon_sym_COLON,
- anon_sym_LBRACK,
- anon_sym_RBRACK,
- anon_sym_DOT,
- anon_sym_QMARK_DOT,
- anon_sym_AMP_AMP,
- anon_sym_PIPE_PIPE,
- anon_sym_GT_GT_GT,
- anon_sym_LT_LT,
- anon_sym_CARET,
- anon_sym_PERCENT,
- anon_sym_STAR_STAR,
- anon_sym_LT_EQ,
- anon_sym_EQ_EQ_EQ,
- anon_sym_BANG_EQ_EQ,
- anon_sym_GT_EQ,
- anon_sym_QMARK_QMARK,
- anon_sym_instanceof,
- anon_sym_PLUS_PLUS,
- anon_sym_DASH_DASH,
- anon_sym_BQUOTE,
- anon_sym_satisfies,
- anon_sym_extends,
- anon_sym_implements,
- [34962] = 3,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(4402), 13,
- anon_sym_STAR,
- anon_sym_BANG,
- anon_sym_in,
- anon_sym_GT,
- anon_sym_GT_GT,
- anon_sym_AMP,
- anon_sym_PIPE,
- anon_sym_PLUS,
- anon_sym_DASH,
- anon_sym_SLASH,
- anon_sym_LT,
- anon_sym_EQ_EQ,
- anon_sym_BANG_EQ,
- ACTIONS(4404), 32,
- sym__ternary_qmark,
- anon_sym_as,
- anon_sym_LBRACE,
- anon_sym_COMMA,
- anon_sym_RBRACE,
- anon_sym_LPAREN,
- anon_sym_RPAREN,
- anon_sym_of,
- anon_sym_COLON,
- anon_sym_LBRACK,
- anon_sym_RBRACK,
- anon_sym_DOT,
- anon_sym_QMARK_DOT,
- anon_sym_AMP_AMP,
- anon_sym_PIPE_PIPE,
- anon_sym_GT_GT_GT,
- anon_sym_LT_LT,
- anon_sym_CARET,
- anon_sym_PERCENT,
- anon_sym_STAR_STAR,
- anon_sym_LT_EQ,
- anon_sym_EQ_EQ_EQ,
- anon_sym_BANG_EQ_EQ,
- anon_sym_GT_EQ,
- anon_sym_QMARK_QMARK,
- anon_sym_instanceof,
- anon_sym_PLUS_PLUS,
- anon_sym_DASH_DASH,
- anon_sym_BQUOTE,
- anon_sym_satisfies,
- anon_sym_extends,
- anon_sym_implements,
- [35016] = 3,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(4406), 13,
- anon_sym_STAR,
- anon_sym_BANG,
- anon_sym_in,
- anon_sym_GT,
- anon_sym_GT_GT,
- anon_sym_AMP,
- anon_sym_PIPE,
- anon_sym_PLUS,
- anon_sym_DASH,
- anon_sym_SLASH,
- anon_sym_LT,
- anon_sym_EQ_EQ,
- anon_sym_BANG_EQ,
- ACTIONS(4408), 32,
- sym__ternary_qmark,
- anon_sym_as,
- anon_sym_LBRACE,
- anon_sym_COMMA,
- anon_sym_RBRACE,
- anon_sym_LPAREN,
- anon_sym_RPAREN,
- anon_sym_of,
- anon_sym_COLON,
- anon_sym_LBRACK,
- anon_sym_RBRACK,
- anon_sym_DOT,
- anon_sym_QMARK_DOT,
- anon_sym_AMP_AMP,
- anon_sym_PIPE_PIPE,
- anon_sym_GT_GT_GT,
- anon_sym_LT_LT,
- anon_sym_CARET,
- anon_sym_PERCENT,
- anon_sym_STAR_STAR,
- anon_sym_LT_EQ,
- anon_sym_EQ_EQ_EQ,
- anon_sym_BANG_EQ_EQ,
- anon_sym_GT_EQ,
- anon_sym_QMARK_QMARK,
- anon_sym_instanceof,
- anon_sym_PLUS_PLUS,
- anon_sym_DASH_DASH,
- anon_sym_BQUOTE,
- anon_sym_satisfies,
- anon_sym_extends,
- anon_sym_implements,
- [35070] = 3,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(4410), 13,
- anon_sym_STAR,
- anon_sym_BANG,
- anon_sym_in,
- anon_sym_GT,
- anon_sym_GT_GT,
- anon_sym_AMP,
- anon_sym_PIPE,
- anon_sym_PLUS,
- anon_sym_DASH,
- anon_sym_SLASH,
- anon_sym_LT,
- anon_sym_EQ_EQ,
- anon_sym_BANG_EQ,
- ACTIONS(4412), 32,
- sym__ternary_qmark,
- anon_sym_as,
- anon_sym_LBRACE,
- anon_sym_COMMA,
- anon_sym_RBRACE,
- anon_sym_LPAREN,
- anon_sym_RPAREN,
- anon_sym_of,
- anon_sym_COLON,
- anon_sym_LBRACK,
- anon_sym_RBRACK,
- anon_sym_DOT,
- anon_sym_QMARK_DOT,
- anon_sym_AMP_AMP,
- anon_sym_PIPE_PIPE,
- anon_sym_GT_GT_GT,
- anon_sym_LT_LT,
- anon_sym_CARET,
- anon_sym_PERCENT,
- anon_sym_STAR_STAR,
- anon_sym_LT_EQ,
- anon_sym_EQ_EQ_EQ,
- anon_sym_BANG_EQ_EQ,
- anon_sym_GT_EQ,
- anon_sym_QMARK_QMARK,
- anon_sym_instanceof,
- anon_sym_PLUS_PLUS,
- anon_sym_DASH_DASH,
- anon_sym_BQUOTE,
- anon_sym_satisfies,
- anon_sym_extends,
- anon_sym_implements,
- [35124] = 7,
- ACTIONS(1726), 1,
- anon_sym_EQ,
- ACTIONS(2331), 1,
- anon_sym_extends,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(4414), 2,
- anon_sym_COMMA,
- anon_sym_LBRACK,
- ACTIONS(4417), 3,
- anon_sym_GT,
- anon_sym_AMP,
- anon_sym_PIPE,
- ACTIONS(1724), 10,
- anon_sym_STAR,
- anon_sym_BANG,
- anon_sym_in,
- anon_sym_GT_GT,
- anon_sym_PLUS,
- anon_sym_DASH,
- anon_sym_SLASH,
- anon_sym_LT,
- anon_sym_EQ_EQ,
- anon_sym_BANG_EQ,
- ACTIONS(1728), 28,
- sym__ternary_qmark,
- anon_sym_as,
- anon_sym_LBRACE,
- anon_sym_RBRACE,
- anon_sym_LPAREN,
- anon_sym_RPAREN,
- anon_sym_COLON,
- anon_sym_RBRACK,
- anon_sym_DOT,
- anon_sym_QMARK_DOT,
- anon_sym_AMP_AMP,
- anon_sym_PIPE_PIPE,
- anon_sym_GT_GT_GT,
- anon_sym_LT_LT,
- anon_sym_CARET,
- anon_sym_PERCENT,
- anon_sym_STAR_STAR,
- anon_sym_LT_EQ,
- anon_sym_EQ_EQ_EQ,
- anon_sym_BANG_EQ_EQ,
- anon_sym_GT_EQ,
- anon_sym_QMARK_QMARK,
- anon_sym_instanceof,
- anon_sym_PLUS_PLUS,
- anon_sym_DASH_DASH,
- anon_sym_BQUOTE,
- anon_sym_satisfies,
- anon_sym_implements,
- [35186] = 6,
- ACTIONS(4108), 1,
- anon_sym_AMP,
- ACTIONS(4110), 1,
- anon_sym_PIPE,
- ACTIONS(4112), 1,
- anon_sym_extends,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(4420), 11,
- anon_sym_STAR,
- anon_sym_BANG,
- anon_sym_in,
- anon_sym_GT,
- anon_sym_GT_GT,
- anon_sym_PLUS,
- anon_sym_DASH,
- anon_sym_SLASH,
- anon_sym_LT,
- anon_sym_EQ_EQ,
- anon_sym_BANG_EQ,
- ACTIONS(4422), 31,
- sym__ternary_qmark,
- anon_sym_as,
- anon_sym_LBRACE,
- anon_sym_COMMA,
- anon_sym_RBRACE,
- anon_sym_LPAREN,
- anon_sym_RPAREN,
- anon_sym_of,
- anon_sym_COLON,
- anon_sym_LBRACK,
- anon_sym_RBRACK,
- anon_sym_DOT,
- anon_sym_QMARK_DOT,
- anon_sym_AMP_AMP,
- anon_sym_PIPE_PIPE,
- anon_sym_GT_GT_GT,
- anon_sym_LT_LT,
- anon_sym_CARET,
- anon_sym_PERCENT,
- anon_sym_STAR_STAR,
- anon_sym_LT_EQ,
- anon_sym_EQ_EQ_EQ,
- anon_sym_BANG_EQ_EQ,
- anon_sym_GT_EQ,
- anon_sym_QMARK_QMARK,
- anon_sym_instanceof,
- anon_sym_PLUS_PLUS,
- anon_sym_DASH_DASH,
- anon_sym_BQUOTE,
- anon_sym_satisfies,
- anon_sym_implements,
- [35246] = 6,
- ACTIONS(4344), 1,
- anon_sym_extends,
- ACTIONS(4364), 1,
- anon_sym_LBRACK,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(4342), 2,
- anon_sym_AMP,
- anon_sym_PIPE,
- ACTIONS(4424), 11,
- anon_sym_STAR,
- anon_sym_BANG,
- anon_sym_in,
- anon_sym_GT,
- anon_sym_GT_GT,
- anon_sym_PLUS,
- anon_sym_DASH,
- anon_sym_SLASH,
- anon_sym_LT,
- anon_sym_EQ_EQ,
- anon_sym_BANG_EQ,
- ACTIONS(4426), 30,
- sym__ternary_qmark,
- anon_sym_as,
- anon_sym_LBRACE,
- anon_sym_COMMA,
- anon_sym_RBRACE,
- anon_sym_LPAREN,
- anon_sym_RPAREN,
- anon_sym_of,
- anon_sym_COLON,
- anon_sym_RBRACK,
- anon_sym_DOT,
- anon_sym_QMARK_DOT,
- anon_sym_AMP_AMP,
- anon_sym_PIPE_PIPE,
- anon_sym_GT_GT_GT,
- anon_sym_LT_LT,
- anon_sym_CARET,
- anon_sym_PERCENT,
- anon_sym_STAR_STAR,
- anon_sym_LT_EQ,
- anon_sym_EQ_EQ_EQ,
- anon_sym_BANG_EQ_EQ,
- anon_sym_GT_EQ,
- anon_sym_QMARK_QMARK,
- anon_sym_instanceof,
- anon_sym_PLUS_PLUS,
- anon_sym_DASH_DASH,
- anon_sym_BQUOTE,
- anon_sym_satisfies,
- anon_sym_implements,
- [35306] = 4,
- ACTIONS(4432), 1,
- anon_sym_extends,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(4428), 13,
- anon_sym_STAR,
- anon_sym_BANG,
- anon_sym_in,
- anon_sym_GT,
- anon_sym_GT_GT,
- anon_sym_AMP,
- anon_sym_PIPE,
- anon_sym_PLUS,
- anon_sym_DASH,
- anon_sym_SLASH,
- anon_sym_LT,
- anon_sym_EQ_EQ,
- anon_sym_BANG_EQ,
- ACTIONS(4430), 31,
- sym__ternary_qmark,
- anon_sym_as,
- anon_sym_LBRACE,
- anon_sym_COMMA,
- anon_sym_RBRACE,
- anon_sym_LPAREN,
- anon_sym_RPAREN,
- anon_sym_of,
- anon_sym_COLON,
- anon_sym_LBRACK,
- anon_sym_RBRACK,
- anon_sym_DOT,
- anon_sym_QMARK_DOT,
- anon_sym_AMP_AMP,
- anon_sym_PIPE_PIPE,
- anon_sym_GT_GT_GT,
- anon_sym_LT_LT,
- anon_sym_CARET,
- anon_sym_PERCENT,
- anon_sym_STAR_STAR,
- anon_sym_LT_EQ,
- anon_sym_EQ_EQ_EQ,
- anon_sym_BANG_EQ_EQ,
- anon_sym_GT_EQ,
- anon_sym_QMARK_QMARK,
- anon_sym_instanceof,
- anon_sym_PLUS_PLUS,
- anon_sym_DASH_DASH,
- anon_sym_BQUOTE,
- anon_sym_satisfies,
- anon_sym_implements,
- [35362] = 19,
- ACTIONS(1594), 1,
- anon_sym_DQUOTE,
- ACTIONS(1596), 1,
- anon_sym_SQUOTE,
- ACTIONS(3633), 1,
- anon_sym_override,
- ACTIONS(3737), 1,
- anon_sym_COMMA,
- ACTIONS(3824), 1,
- anon_sym_RBRACE,
- ACTIONS(4241), 1,
- anon_sym_STAR,
- ACTIONS(4243), 1,
- anon_sym_EQ,
- ACTIONS(4245), 1,
- anon_sym_LBRACK,
- ACTIONS(4247), 1,
- anon_sym_async,
- ACTIONS(4251), 1,
- anon_sym_readonly,
- STATE(2701), 1,
- sym_override_modifier,
- STATE(4672), 1,
- aux_sym_object_pattern_repeat1,
- STATE(5156), 1,
- aux_sym_object_repeat1,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(4249), 2,
- sym_number,
- sym_private_property_identifier,
- ACTIONS(4253), 2,
- anon_sym_get,
- anon_sym_set,
- STATE(3081), 3,
- sym_string,
- sym__property_name,
- sym_computed_property_name,
- ACTIONS(3743), 7,
- sym__automatic_semicolon,
- anon_sym_LPAREN,
- anon_sym_SEMI,
- anon_sym_COLON,
- anon_sym_LT,
- anon_sym_QMARK,
- anon_sym_PIPE_RBRACE,
- ACTIONS(3607), 18,
- anon_sym_export,
- anon_sym_type,
- anon_sym_namespace,
- anon_sym_let,
- anon_sym_new,
- sym_identifier,
- anon_sym_static,
- anon_sym_declare,
- anon_sym_public,
- anon_sym_private,
- anon_sym_protected,
- anon_sym_module,
- anon_sym_any,
- anon_sym_number,
- anon_sym_boolean,
- anon_sym_string,
- anon_sym_symbol,
- anon_sym_object,
- [35448] = 4,
- ACTIONS(4364), 1,
- anon_sym_LBRACK,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(4434), 13,
- anon_sym_STAR,
- anon_sym_BANG,
- anon_sym_in,
- anon_sym_GT,
- anon_sym_GT_GT,
- anon_sym_AMP,
- anon_sym_PIPE,
- anon_sym_PLUS,
- anon_sym_DASH,
- anon_sym_SLASH,
- anon_sym_LT,
- anon_sym_EQ_EQ,
- anon_sym_BANG_EQ,
- ACTIONS(4436), 31,
- sym__ternary_qmark,
- anon_sym_as,
- anon_sym_LBRACE,
- anon_sym_COMMA,
- anon_sym_RBRACE,
- anon_sym_LPAREN,
- anon_sym_RPAREN,
- anon_sym_of,
- anon_sym_COLON,
- anon_sym_RBRACK,
- anon_sym_DOT,
- anon_sym_QMARK_DOT,
- anon_sym_AMP_AMP,
- anon_sym_PIPE_PIPE,
- anon_sym_GT_GT_GT,
- anon_sym_LT_LT,
- anon_sym_CARET,
- anon_sym_PERCENT,
- anon_sym_STAR_STAR,
- anon_sym_LT_EQ,
- anon_sym_EQ_EQ_EQ,
- anon_sym_BANG_EQ_EQ,
- anon_sym_GT_EQ,
- anon_sym_QMARK_QMARK,
- anon_sym_instanceof,
- anon_sym_PLUS_PLUS,
- anon_sym_DASH_DASH,
- anon_sym_BQUOTE,
- anon_sym_satisfies,
- anon_sym_extends,
- anon_sym_implements,
- [35504] = 7,
- ACTIONS(3440), 1,
- anon_sym_DOT,
- ACTIONS(3442), 1,
- anon_sym_QMARK_DOT,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(3406), 3,
- anon_sym_COMMA,
- anon_sym_LBRACK,
- anon_sym_extends,
- ACTIONS(3418), 3,
- anon_sym_GT,
- anon_sym_AMP,
- anon_sym_PIPE,
- ACTIONS(3400), 10,
- anon_sym_STAR,
- anon_sym_BANG,
- anon_sym_in,
- anon_sym_GT_GT,
- anon_sym_PLUS,
- anon_sym_DASH,
- anon_sym_SLASH,
- anon_sym_LT,
- anon_sym_EQ_EQ,
- anon_sym_BANG_EQ,
- ACTIONS(3404), 27,
- sym__ternary_qmark,
- anon_sym_as,
- anon_sym_LBRACE,
- anon_sym_RBRACE,
- anon_sym_LPAREN,
- anon_sym_RPAREN,
- anon_sym_of,
- anon_sym_COLON,
- anon_sym_RBRACK,
- anon_sym_AMP_AMP,
- anon_sym_PIPE_PIPE,
- anon_sym_GT_GT_GT,
- anon_sym_LT_LT,
- anon_sym_CARET,
- anon_sym_PERCENT,
- anon_sym_STAR_STAR,
- anon_sym_LT_EQ,
- anon_sym_EQ_EQ_EQ,
- anon_sym_BANG_EQ_EQ,
- anon_sym_GT_EQ,
- anon_sym_QMARK_QMARK,
- anon_sym_instanceof,
- anon_sym_PLUS_PLUS,
- anon_sym_DASH_DASH,
- anon_sym_BQUOTE,
- anon_sym_satisfies,
- anon_sym_implements,
- [35566] = 7,
- ACTIONS(4392), 1,
- anon_sym_extends,
- ACTIONS(4440), 1,
- anon_sym_EQ,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(4444), 2,
- anon_sym_COMMA,
- anon_sym_LBRACK,
- ACTIONS(4447), 3,
- anon_sym_GT,
- anon_sym_AMP,
- anon_sym_PIPE,
- ACTIONS(4438), 10,
- anon_sym_STAR,
- anon_sym_BANG,
- anon_sym_in,
- anon_sym_GT_GT,
- anon_sym_PLUS,
- anon_sym_DASH,
- anon_sym_SLASH,
- anon_sym_LT,
- anon_sym_EQ_EQ,
- anon_sym_BANG_EQ,
- ACTIONS(4442), 28,
- sym__ternary_qmark,
- anon_sym_as,
- anon_sym_LBRACE,
- anon_sym_RBRACE,
- anon_sym_LPAREN,
- anon_sym_RPAREN,
- anon_sym_COLON,
- anon_sym_RBRACK,
- anon_sym_DOT,
- anon_sym_QMARK_DOT,
- anon_sym_AMP_AMP,
- anon_sym_PIPE_PIPE,
- anon_sym_GT_GT_GT,
- anon_sym_LT_LT,
- anon_sym_CARET,
- anon_sym_PERCENT,
- anon_sym_STAR_STAR,
- anon_sym_LT_EQ,
- anon_sym_EQ_EQ_EQ,
- anon_sym_BANG_EQ_EQ,
- anon_sym_GT_EQ,
- anon_sym_QMARK_QMARK,
- anon_sym_instanceof,
- anon_sym_PLUS_PLUS,
- anon_sym_DASH_DASH,
- anon_sym_BQUOTE,
- anon_sym_satisfies,
- anon_sym_implements,
- [35628] = 5,
- ACTIONS(4454), 1,
- anon_sym_QMARK,
- ACTIONS(4456), 1,
- anon_sym_extends,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(4450), 13,
- anon_sym_STAR,
- anon_sym_BANG,
- anon_sym_in,
- anon_sym_GT,
- anon_sym_GT_GT,
- anon_sym_AMP,
- anon_sym_PIPE,
- anon_sym_PLUS,
- anon_sym_DASH,
- anon_sym_SLASH,
- anon_sym_LT,
- anon_sym_EQ_EQ,
- anon_sym_BANG_EQ,
- ACTIONS(4452), 30,
- sym__ternary_qmark,
- anon_sym_as,
- anon_sym_LBRACE,
- anon_sym_COMMA,
- anon_sym_RBRACE,
- anon_sym_LPAREN,
- anon_sym_RPAREN,
- anon_sym_COLON,
- anon_sym_LBRACK,
- anon_sym_RBRACK,
- anon_sym_DOT,
- anon_sym_QMARK_DOT,
- anon_sym_AMP_AMP,
- anon_sym_PIPE_PIPE,
- anon_sym_GT_GT_GT,
- anon_sym_LT_LT,
- anon_sym_CARET,
- anon_sym_PERCENT,
- anon_sym_STAR_STAR,
- anon_sym_LT_EQ,
- anon_sym_EQ_EQ_EQ,
- anon_sym_BANG_EQ_EQ,
- anon_sym_GT_EQ,
- anon_sym_QMARK_QMARK,
- anon_sym_instanceof,
- anon_sym_PLUS_PLUS,
- anon_sym_DASH_DASH,
- anon_sym_BQUOTE,
- anon_sym_satisfies,
- anon_sym_implements,
- [35686] = 3,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(4458), 13,
- anon_sym_STAR,
- anon_sym_BANG,
- anon_sym_in,
- anon_sym_GT,
- anon_sym_GT_GT,
- anon_sym_AMP,
- anon_sym_PIPE,
- anon_sym_PLUS,
- anon_sym_DASH,
- anon_sym_SLASH,
- anon_sym_LT,
- anon_sym_EQ_EQ,
- anon_sym_BANG_EQ,
- ACTIONS(4460), 32,
- sym__ternary_qmark,
- anon_sym_as,
- anon_sym_LBRACE,
- anon_sym_COMMA,
- anon_sym_RBRACE,
- anon_sym_LPAREN,
- anon_sym_RPAREN,
- anon_sym_of,
- anon_sym_COLON,
- anon_sym_LBRACK,
- anon_sym_RBRACK,
- anon_sym_DOT,
- anon_sym_QMARK_DOT,
- anon_sym_AMP_AMP,
- anon_sym_PIPE_PIPE,
- anon_sym_GT_GT_GT,
- anon_sym_LT_LT,
- anon_sym_CARET,
- anon_sym_PERCENT,
- anon_sym_STAR_STAR,
- anon_sym_LT_EQ,
- anon_sym_EQ_EQ_EQ,
- anon_sym_BANG_EQ_EQ,
- anon_sym_GT_EQ,
- anon_sym_QMARK_QMARK,
- anon_sym_instanceof,
- anon_sym_PLUS_PLUS,
- anon_sym_DASH_DASH,
- anon_sym_BQUOTE,
- anon_sym_satisfies,
- anon_sym_extends,
- anon_sym_implements,
- [35740] = 3,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(4462), 13,
- anon_sym_STAR,
- anon_sym_BANG,
- anon_sym_in,
- anon_sym_GT,
- anon_sym_GT_GT,
- anon_sym_AMP,
- anon_sym_PIPE,
- anon_sym_PLUS,
- anon_sym_DASH,
- anon_sym_SLASH,
- anon_sym_LT,
- anon_sym_EQ_EQ,
- anon_sym_BANG_EQ,
- ACTIONS(4464), 32,
- sym__ternary_qmark,
- anon_sym_as,
- anon_sym_LBRACE,
- anon_sym_COMMA,
- anon_sym_RBRACE,
- anon_sym_LPAREN,
- anon_sym_RPAREN,
- anon_sym_of,
- anon_sym_COLON,
- anon_sym_LBRACK,
- anon_sym_RBRACK,
- anon_sym_DOT,
- anon_sym_QMARK_DOT,
- anon_sym_AMP_AMP,
- anon_sym_PIPE_PIPE,
- anon_sym_GT_GT_GT,
- anon_sym_LT_LT,
- anon_sym_CARET,
- anon_sym_PERCENT,
- anon_sym_STAR_STAR,
- anon_sym_LT_EQ,
- anon_sym_EQ_EQ_EQ,
- anon_sym_BANG_EQ_EQ,
- anon_sym_GT_EQ,
- anon_sym_QMARK_QMARK,
- anon_sym_instanceof,
- anon_sym_PLUS_PLUS,
- anon_sym_DASH_DASH,
- anon_sym_BQUOTE,
- anon_sym_satisfies,
- anon_sym_extends,
- anon_sym_implements,
- [35794] = 5,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(4402), 3,
- anon_sym_GT,
- anon_sym_AMP,
- anon_sym_PIPE,
- ACTIONS(4404), 3,
- anon_sym_COMMA,
- anon_sym_LBRACK,
- anon_sym_extends,
- ACTIONS(3400), 10,
- anon_sym_STAR,
- anon_sym_BANG,
- anon_sym_in,
- anon_sym_GT_GT,
- anon_sym_PLUS,
- anon_sym_DASH,
- anon_sym_SLASH,
- anon_sym_LT,
- anon_sym_EQ_EQ,
- anon_sym_BANG_EQ,
- ACTIONS(3404), 29,
- sym__ternary_qmark,
- anon_sym_as,
- anon_sym_LBRACE,
- anon_sym_RBRACE,
- anon_sym_LPAREN,
- anon_sym_RPAREN,
- anon_sym_of,
- anon_sym_COLON,
- anon_sym_RBRACK,
- anon_sym_DOT,
- anon_sym_QMARK_DOT,
- anon_sym_AMP_AMP,
- anon_sym_PIPE_PIPE,
- anon_sym_GT_GT_GT,
- anon_sym_LT_LT,
- anon_sym_CARET,
- anon_sym_PERCENT,
- anon_sym_STAR_STAR,
- anon_sym_LT_EQ,
- anon_sym_EQ_EQ_EQ,
- anon_sym_BANG_EQ_EQ,
- anon_sym_GT_EQ,
- anon_sym_QMARK_QMARK,
- anon_sym_instanceof,
- anon_sym_PLUS_PLUS,
- anon_sym_DASH_DASH,
- anon_sym_BQUOTE,
- anon_sym_satisfies,
- anon_sym_implements,
- [35852] = 3,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(4466), 13,
- anon_sym_STAR,
- anon_sym_BANG,
- anon_sym_in,
- anon_sym_GT,
- anon_sym_GT_GT,
- anon_sym_AMP,
- anon_sym_PIPE,
- anon_sym_PLUS,
- anon_sym_DASH,
- anon_sym_SLASH,
- anon_sym_LT,
- anon_sym_EQ_EQ,
- anon_sym_BANG_EQ,
- ACTIONS(4468), 32,
- sym__ternary_qmark,
- anon_sym_as,
- anon_sym_LBRACE,
- anon_sym_COMMA,
- anon_sym_RBRACE,
- anon_sym_LPAREN,
- anon_sym_RPAREN,
- anon_sym_of,
- anon_sym_COLON,
- anon_sym_LBRACK,
- anon_sym_RBRACK,
- anon_sym_DOT,
- anon_sym_QMARK_DOT,
- anon_sym_AMP_AMP,
- anon_sym_PIPE_PIPE,
- anon_sym_GT_GT_GT,
- anon_sym_LT_LT,
- anon_sym_CARET,
- anon_sym_PERCENT,
- anon_sym_STAR_STAR,
- anon_sym_LT_EQ,
- anon_sym_EQ_EQ_EQ,
- anon_sym_BANG_EQ_EQ,
- anon_sym_GT_EQ,
- anon_sym_QMARK_QMARK,
- anon_sym_instanceof,
- anon_sym_PLUS_PLUS,
- anon_sym_DASH_DASH,
- anon_sym_BQUOTE,
- anon_sym_satisfies,
- anon_sym_extends,
- anon_sym_implements,
- [35906] = 3,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(4470), 13,
- anon_sym_STAR,
- anon_sym_BANG,
- anon_sym_in,
- anon_sym_GT,
- anon_sym_GT_GT,
- anon_sym_AMP,
- anon_sym_PIPE,
- anon_sym_PLUS,
- anon_sym_DASH,
- anon_sym_SLASH,
- anon_sym_LT,
- anon_sym_EQ_EQ,
- anon_sym_BANG_EQ,
- ACTIONS(4472), 32,
- sym__ternary_qmark,
- anon_sym_as,
- anon_sym_LBRACE,
- anon_sym_COMMA,
- anon_sym_RBRACE,
- anon_sym_LPAREN,
- anon_sym_RPAREN,
- anon_sym_of,
- anon_sym_COLON,
- anon_sym_LBRACK,
- anon_sym_RBRACK,
- anon_sym_DOT,
- anon_sym_QMARK_DOT,
- anon_sym_AMP_AMP,
- anon_sym_PIPE_PIPE,
- anon_sym_GT_GT_GT,
- anon_sym_LT_LT,
- anon_sym_CARET,
- anon_sym_PERCENT,
- anon_sym_STAR_STAR,
- anon_sym_LT_EQ,
- anon_sym_EQ_EQ_EQ,
- anon_sym_BANG_EQ_EQ,
- anon_sym_GT_EQ,
- anon_sym_QMARK_QMARK,
- anon_sym_instanceof,
- anon_sym_PLUS_PLUS,
- anon_sym_DASH_DASH,
- anon_sym_BQUOTE,
- anon_sym_satisfies,
- anon_sym_extends,
- anon_sym_implements,
- [35960] = 36,
- ACTIONS(825), 1,
- anon_sym_BQUOTE,
- ACTIONS(3477), 1,
- anon_sym_COLON,
- ACTIONS(3969), 1,
- anon_sym_LPAREN,
- ACTIONS(3971), 1,
- anon_sym_LBRACK,
- ACTIONS(3973), 1,
- anon_sym_DOT,
- ACTIONS(4051), 1,
- anon_sym_as,
- ACTIONS(4055), 1,
- anon_sym_BANG,
- ACTIONS(4059), 1,
- anon_sym_QMARK_DOT,
- ACTIONS(4061), 1,
- anon_sym_AMP_AMP,
- ACTIONS(4063), 1,
- anon_sym_PIPE_PIPE,
- ACTIONS(4065), 1,
- anon_sym_GT_GT,
- ACTIONS(4069), 1,
- anon_sym_AMP,
- ACTIONS(4071), 1,
- anon_sym_CARET,
- ACTIONS(4073), 1,
- anon_sym_PIPE,
- ACTIONS(4077), 1,
- anon_sym_PERCENT,
- ACTIONS(4079), 1,
- anon_sym_STAR_STAR,
- ACTIONS(4081), 1,
- anon_sym_LT,
- ACTIONS(4089), 1,
- anon_sym_QMARK_QMARK,
- ACTIONS(4093), 1,
- anon_sym_satisfies,
- ACTIONS(4095), 1,
- sym__ternary_qmark,
- ACTIONS(4267), 1,
- anon_sym_COMMA,
- ACTIONS(4474), 1,
- anon_sym_RPAREN,
- STATE(1447), 1,
- sym_type_arguments,
- STATE(3803), 1,
- aux_sym_sequence_expression_repeat1,
- STATE(5080), 1,
- sym_optional_chain,
- STATE(5564), 1,
- sym_type_annotation,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(4049), 2,
- anon_sym_STAR,
- anon_sym_SLASH,
- ACTIONS(4057), 2,
- anon_sym_in,
- anon_sym_GT,
- ACTIONS(4067), 2,
- anon_sym_GT_GT_GT,
- anon_sym_LT_LT,
- ACTIONS(4075), 2,
- anon_sym_PLUS,
- anon_sym_DASH,
- ACTIONS(4085), 2,
- anon_sym_EQ_EQ,
- anon_sym_BANG_EQ,
- ACTIONS(4087), 2,
- anon_sym_EQ_EQ_EQ,
- anon_sym_BANG_EQ_EQ,
- ACTIONS(4091), 2,
- anon_sym_PLUS_PLUS,
- anon_sym_DASH_DASH,
- STATE(1757), 2,
- sym_template_string,
- sym_arguments,
- ACTIONS(4083), 3,
- anon_sym_LT_EQ,
- anon_sym_GT_EQ,
- anon_sym_instanceof,
- [36080] = 3,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(2337), 13,
- anon_sym_STAR,
- anon_sym_BANG,
- anon_sym_in,
- anon_sym_GT,
- anon_sym_GT_GT,
- anon_sym_AMP,
- anon_sym_PIPE,
- anon_sym_PLUS,
- anon_sym_DASH,
- anon_sym_SLASH,
- anon_sym_LT,
- anon_sym_EQ_EQ,
- anon_sym_BANG_EQ,
- ACTIONS(2335), 32,
- sym__ternary_qmark,
- anon_sym_as,
- anon_sym_LBRACE,
- anon_sym_COMMA,
- anon_sym_RBRACE,
- anon_sym_LPAREN,
- anon_sym_RPAREN,
- anon_sym_of,
- anon_sym_COLON,
- anon_sym_LBRACK,
- anon_sym_RBRACK,
- anon_sym_DOT,
- anon_sym_QMARK_DOT,
- anon_sym_AMP_AMP,
- anon_sym_PIPE_PIPE,
- anon_sym_GT_GT_GT,
- anon_sym_LT_LT,
- anon_sym_CARET,
- anon_sym_PERCENT,
- anon_sym_STAR_STAR,
- anon_sym_LT_EQ,
- anon_sym_EQ_EQ_EQ,
- anon_sym_BANG_EQ_EQ,
- anon_sym_GT_EQ,
- anon_sym_QMARK_QMARK,
- anon_sym_instanceof,
- anon_sym_PLUS_PLUS,
- anon_sym_DASH_DASH,
- anon_sym_BQUOTE,
- anon_sym_satisfies,
- anon_sym_extends,
- anon_sym_implements,
- [36134] = 3,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(4454), 13,
- anon_sym_STAR,
- anon_sym_BANG,
- anon_sym_in,
- anon_sym_GT,
- anon_sym_GT_GT,
- anon_sym_AMP,
- anon_sym_PIPE,
- anon_sym_PLUS,
- anon_sym_DASH,
- anon_sym_SLASH,
- anon_sym_LT,
- anon_sym_EQ_EQ,
- anon_sym_BANG_EQ,
- ACTIONS(4456), 32,
- sym__ternary_qmark,
- anon_sym_as,
- anon_sym_LBRACE,
- anon_sym_COMMA,
- anon_sym_RBRACE,
- anon_sym_LPAREN,
- anon_sym_RPAREN,
- anon_sym_of,
- anon_sym_COLON,
- anon_sym_LBRACK,
- anon_sym_RBRACK,
- anon_sym_DOT,
- anon_sym_QMARK_DOT,
- anon_sym_AMP_AMP,
- anon_sym_PIPE_PIPE,
- anon_sym_GT_GT_GT,
- anon_sym_LT_LT,
- anon_sym_CARET,
- anon_sym_PERCENT,
- anon_sym_STAR_STAR,
- anon_sym_LT_EQ,
- anon_sym_EQ_EQ_EQ,
- anon_sym_BANG_EQ_EQ,
- anon_sym_GT_EQ,
- anon_sym_QMARK_QMARK,
- anon_sym_instanceof,
- anon_sym_PLUS_PLUS,
- anon_sym_DASH_DASH,
- anon_sym_BQUOTE,
- anon_sym_satisfies,
- anon_sym_extends,
- anon_sym_implements,
- [36188] = 3,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(4476), 13,
- anon_sym_STAR,
- anon_sym_BANG,
- anon_sym_in,
- anon_sym_GT,
- anon_sym_GT_GT,
- anon_sym_AMP,
- anon_sym_PIPE,
- anon_sym_PLUS,
- anon_sym_DASH,
- anon_sym_SLASH,
- anon_sym_LT,
- anon_sym_EQ_EQ,
- anon_sym_BANG_EQ,
- ACTIONS(4478), 32,
- sym__ternary_qmark,
- anon_sym_as,
- anon_sym_LBRACE,
- anon_sym_COMMA,
- anon_sym_RBRACE,
- anon_sym_LPAREN,
- anon_sym_RPAREN,
- anon_sym_of,
- anon_sym_COLON,
- anon_sym_LBRACK,
- anon_sym_RBRACK,
- anon_sym_DOT,
- anon_sym_QMARK_DOT,
- anon_sym_AMP_AMP,
- anon_sym_PIPE_PIPE,
- anon_sym_GT_GT_GT,
- anon_sym_LT_LT,
- anon_sym_CARET,
- anon_sym_PERCENT,
- anon_sym_STAR_STAR,
- anon_sym_LT_EQ,
- anon_sym_EQ_EQ_EQ,
- anon_sym_BANG_EQ_EQ,
- anon_sym_GT_EQ,
- anon_sym_QMARK_QMARK,
- anon_sym_instanceof,
- anon_sym_PLUS_PLUS,
- anon_sym_DASH_DASH,
- anon_sym_BQUOTE,
- anon_sym_satisfies,
- anon_sym_extends,
- anon_sym_implements,
- [36242] = 5,
- ACTIONS(4458), 1,
- anon_sym_QMARK,
- ACTIONS(4460), 1,
- anon_sym_extends,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(4450), 13,
- anon_sym_STAR,
- anon_sym_BANG,
- anon_sym_in,
- anon_sym_GT,
- anon_sym_GT_GT,
- anon_sym_AMP,
- anon_sym_PIPE,
- anon_sym_PLUS,
- anon_sym_DASH,
- anon_sym_SLASH,
- anon_sym_LT,
- anon_sym_EQ_EQ,
- anon_sym_BANG_EQ,
- ACTIONS(4452), 30,
- sym__ternary_qmark,
- anon_sym_as,
- anon_sym_LBRACE,
- anon_sym_COMMA,
- anon_sym_RBRACE,
- anon_sym_LPAREN,
- anon_sym_RPAREN,
- anon_sym_COLON,
- anon_sym_LBRACK,
- anon_sym_RBRACK,
- anon_sym_DOT,
- anon_sym_QMARK_DOT,
- anon_sym_AMP_AMP,
- anon_sym_PIPE_PIPE,
- anon_sym_GT_GT_GT,
- anon_sym_LT_LT,
- anon_sym_CARET,
- anon_sym_PERCENT,
- anon_sym_STAR_STAR,
- anon_sym_LT_EQ,
- anon_sym_EQ_EQ_EQ,
- anon_sym_BANG_EQ_EQ,
- anon_sym_GT_EQ,
- anon_sym_QMARK_QMARK,
- anon_sym_instanceof,
- anon_sym_PLUS_PLUS,
- anon_sym_DASH_DASH,
- anon_sym_BQUOTE,
- anon_sym_satisfies,
- anon_sym_implements,
- [36300] = 3,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(4480), 13,
- anon_sym_STAR,
- anon_sym_BANG,
- anon_sym_in,
- anon_sym_GT,
- anon_sym_GT_GT,
- anon_sym_AMP,
- anon_sym_PIPE,
- anon_sym_PLUS,
- anon_sym_DASH,
- anon_sym_SLASH,
- anon_sym_LT,
- anon_sym_EQ_EQ,
- anon_sym_BANG_EQ,
- ACTIONS(4482), 32,
- sym__ternary_qmark,
- anon_sym_as,
- anon_sym_LBRACE,
- anon_sym_COMMA,
- anon_sym_RBRACE,
- anon_sym_LPAREN,
- anon_sym_RPAREN,
- anon_sym_of,
- anon_sym_COLON,
- anon_sym_LBRACK,
- anon_sym_RBRACK,
- anon_sym_DOT,
- anon_sym_QMARK_DOT,
- anon_sym_AMP_AMP,
- anon_sym_PIPE_PIPE,
- anon_sym_GT_GT_GT,
- anon_sym_LT_LT,
- anon_sym_CARET,
- anon_sym_PERCENT,
- anon_sym_STAR_STAR,
- anon_sym_LT_EQ,
- anon_sym_EQ_EQ_EQ,
- anon_sym_BANG_EQ_EQ,
- anon_sym_GT_EQ,
- anon_sym_QMARK_QMARK,
- anon_sym_instanceof,
- anon_sym_PLUS_PLUS,
- anon_sym_DASH_DASH,
- anon_sym_BQUOTE,
- anon_sym_satisfies,
- anon_sym_extends,
- anon_sym_implements,
- [36354] = 3,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(4484), 13,
- anon_sym_STAR,
- anon_sym_BANG,
- anon_sym_in,
- anon_sym_GT,
- anon_sym_GT_GT,
- anon_sym_AMP,
- anon_sym_PIPE,
- anon_sym_PLUS,
- anon_sym_DASH,
- anon_sym_SLASH,
- anon_sym_LT,
- anon_sym_EQ_EQ,
- anon_sym_BANG_EQ,
- ACTIONS(4486), 32,
- sym__ternary_qmark,
- anon_sym_as,
- anon_sym_LBRACE,
- anon_sym_COMMA,
- anon_sym_RBRACE,
- anon_sym_LPAREN,
- anon_sym_RPAREN,
- anon_sym_of,
- anon_sym_COLON,
- anon_sym_LBRACK,
- anon_sym_RBRACK,
- anon_sym_DOT,
- anon_sym_QMARK_DOT,
- anon_sym_AMP_AMP,
- anon_sym_PIPE_PIPE,
- anon_sym_GT_GT_GT,
- anon_sym_LT_LT,
- anon_sym_CARET,
- anon_sym_PERCENT,
- anon_sym_STAR_STAR,
- anon_sym_LT_EQ,
- anon_sym_EQ_EQ_EQ,
- anon_sym_BANG_EQ_EQ,
- anon_sym_GT_EQ,
- anon_sym_QMARK_QMARK,
- anon_sym_instanceof,
- anon_sym_PLUS_PLUS,
- anon_sym_DASH_DASH,
- anon_sym_BQUOTE,
- anon_sym_satisfies,
- anon_sym_extends,
- anon_sym_implements,
- [36408] = 3,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(4488), 13,
- anon_sym_STAR,
- anon_sym_BANG,
- anon_sym_in,
- anon_sym_GT,
- anon_sym_GT_GT,
- anon_sym_AMP,
- anon_sym_PIPE,
- anon_sym_PLUS,
- anon_sym_DASH,
- anon_sym_SLASH,
- anon_sym_LT,
- anon_sym_EQ_EQ,
- anon_sym_BANG_EQ,
- ACTIONS(4490), 32,
- sym__ternary_qmark,
- anon_sym_as,
- anon_sym_LBRACE,
- anon_sym_COMMA,
- anon_sym_RBRACE,
- anon_sym_LPAREN,
- anon_sym_RPAREN,
- anon_sym_of,
- anon_sym_COLON,
- anon_sym_LBRACK,
- anon_sym_RBRACK,
- anon_sym_DOT,
- anon_sym_QMARK_DOT,
- anon_sym_AMP_AMP,
- anon_sym_PIPE_PIPE,
- anon_sym_GT_GT_GT,
- anon_sym_LT_LT,
- anon_sym_CARET,
- anon_sym_PERCENT,
- anon_sym_STAR_STAR,
- anon_sym_LT_EQ,
- anon_sym_EQ_EQ_EQ,
- anon_sym_BANG_EQ_EQ,
- anon_sym_GT_EQ,
- anon_sym_QMARK_QMARK,
- anon_sym_instanceof,
- anon_sym_PLUS_PLUS,
- anon_sym_DASH_DASH,
- anon_sym_BQUOTE,
- anon_sym_satisfies,
- anon_sym_extends,
- anon_sym_implements,
- [36462] = 3,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(4492), 13,
- anon_sym_STAR,
- anon_sym_BANG,
- anon_sym_in,
- anon_sym_GT,
- anon_sym_GT_GT,
- anon_sym_AMP,
- anon_sym_PIPE,
- anon_sym_PLUS,
- anon_sym_DASH,
- anon_sym_SLASH,
- anon_sym_LT,
- anon_sym_EQ_EQ,
- anon_sym_BANG_EQ,
- ACTIONS(4494), 32,
- sym__ternary_qmark,
- anon_sym_as,
- anon_sym_LBRACE,
- anon_sym_COMMA,
- anon_sym_RBRACE,
- anon_sym_LPAREN,
- anon_sym_RPAREN,
- anon_sym_of,
- anon_sym_COLON,
- anon_sym_LBRACK,
- anon_sym_RBRACK,
- anon_sym_DOT,
- anon_sym_QMARK_DOT,
- anon_sym_AMP_AMP,
- anon_sym_PIPE_PIPE,
- anon_sym_GT_GT_GT,
- anon_sym_LT_LT,
- anon_sym_CARET,
- anon_sym_PERCENT,
- anon_sym_STAR_STAR,
- anon_sym_LT_EQ,
- anon_sym_EQ_EQ_EQ,
- anon_sym_BANG_EQ_EQ,
- anon_sym_GT_EQ,
- anon_sym_QMARK_QMARK,
- anon_sym_instanceof,
- anon_sym_PLUS_PLUS,
- anon_sym_DASH_DASH,
- anon_sym_BQUOTE,
- anon_sym_satisfies,
- anon_sym_extends,
- anon_sym_implements,
- [36516] = 3,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(4496), 13,
- anon_sym_STAR,
- anon_sym_BANG,
- anon_sym_in,
- anon_sym_GT,
- anon_sym_GT_GT,
- anon_sym_AMP,
- anon_sym_PIPE,
- anon_sym_PLUS,
- anon_sym_DASH,
- anon_sym_SLASH,
- anon_sym_LT,
- anon_sym_EQ_EQ,
- anon_sym_BANG_EQ,
- ACTIONS(4498), 32,
- sym__ternary_qmark,
- anon_sym_as,
- anon_sym_LBRACE,
- anon_sym_COMMA,
- anon_sym_RBRACE,
- anon_sym_LPAREN,
- anon_sym_RPAREN,
- anon_sym_of,
- anon_sym_COLON,
- anon_sym_LBRACK,
- anon_sym_RBRACK,
- anon_sym_DOT,
- anon_sym_QMARK_DOT,
- anon_sym_AMP_AMP,
- anon_sym_PIPE_PIPE,
- anon_sym_GT_GT_GT,
- anon_sym_LT_LT,
- anon_sym_CARET,
- anon_sym_PERCENT,
- anon_sym_STAR_STAR,
- anon_sym_LT_EQ,
- anon_sym_EQ_EQ_EQ,
- anon_sym_BANG_EQ_EQ,
- anon_sym_GT_EQ,
- anon_sym_QMARK_QMARK,
- anon_sym_instanceof,
- anon_sym_PLUS_PLUS,
- anon_sym_DASH_DASH,
- anon_sym_BQUOTE,
- anon_sym_satisfies,
- anon_sym_extends,
- anon_sym_implements,
- [36570] = 3,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(4500), 13,
- anon_sym_STAR,
- anon_sym_BANG,
- anon_sym_in,
- anon_sym_GT,
- anon_sym_GT_GT,
- anon_sym_AMP,
- anon_sym_PIPE,
- anon_sym_PLUS,
- anon_sym_DASH,
- anon_sym_SLASH,
- anon_sym_LT,
- anon_sym_EQ_EQ,
- anon_sym_BANG_EQ,
- ACTIONS(4502), 32,
- sym__ternary_qmark,
- anon_sym_as,
- anon_sym_LBRACE,
- anon_sym_COMMA,
- anon_sym_RBRACE,
- anon_sym_LPAREN,
- anon_sym_RPAREN,
- anon_sym_of,
- anon_sym_COLON,
- anon_sym_LBRACK,
- anon_sym_RBRACK,
- anon_sym_DOT,
- anon_sym_QMARK_DOT,
- anon_sym_AMP_AMP,
- anon_sym_PIPE_PIPE,
- anon_sym_GT_GT_GT,
- anon_sym_LT_LT,
- anon_sym_CARET,
- anon_sym_PERCENT,
- anon_sym_STAR_STAR,
- anon_sym_LT_EQ,
- anon_sym_EQ_EQ_EQ,
- anon_sym_BANG_EQ_EQ,
- anon_sym_GT_EQ,
- anon_sym_QMARK_QMARK,
- anon_sym_instanceof,
- anon_sym_PLUS_PLUS,
- anon_sym_DASH_DASH,
- anon_sym_BQUOTE,
- anon_sym_satisfies,
- anon_sym_extends,
- anon_sym_implements,
- [36624] = 3,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(4504), 13,
- anon_sym_STAR,
- anon_sym_BANG,
- anon_sym_in,
- anon_sym_GT,
- anon_sym_GT_GT,
- anon_sym_AMP,
- anon_sym_PIPE,
- anon_sym_PLUS,
- anon_sym_DASH,
- anon_sym_SLASH,
- anon_sym_LT,
- anon_sym_EQ_EQ,
- anon_sym_BANG_EQ,
- ACTIONS(4506), 32,
- sym__ternary_qmark,
- anon_sym_as,
- anon_sym_LBRACE,
- anon_sym_COMMA,
- anon_sym_RBRACE,
- anon_sym_LPAREN,
- anon_sym_RPAREN,
- anon_sym_of,
- anon_sym_COLON,
- anon_sym_LBRACK,
- anon_sym_RBRACK,
- anon_sym_DOT,
- anon_sym_QMARK_DOT,
- anon_sym_AMP_AMP,
- anon_sym_PIPE_PIPE,
- anon_sym_GT_GT_GT,
- anon_sym_LT_LT,
- anon_sym_CARET,
- anon_sym_PERCENT,
- anon_sym_STAR_STAR,
- anon_sym_LT_EQ,
- anon_sym_EQ_EQ_EQ,
- anon_sym_BANG_EQ_EQ,
- anon_sym_GT_EQ,
- anon_sym_QMARK_QMARK,
- anon_sym_instanceof,
- anon_sym_PLUS_PLUS,
- anon_sym_DASH_DASH,
- anon_sym_BQUOTE,
- anon_sym_satisfies,
- anon_sym_extends,
- anon_sym_implements,
- [36678] = 4,
- ACTIONS(4508), 1,
- anon_sym_DOT,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(4097), 13,
- anon_sym_STAR,
- anon_sym_BANG,
- anon_sym_in,
- anon_sym_GT,
- anon_sym_GT_GT,
- anon_sym_AMP,
- anon_sym_PIPE,
- anon_sym_PLUS,
- anon_sym_DASH,
- anon_sym_SLASH,
- anon_sym_LT,
- anon_sym_EQ_EQ,
- anon_sym_BANG_EQ,
- ACTIONS(4099), 31,
- sym__ternary_qmark,
- anon_sym_as,
- anon_sym_LBRACE,
- anon_sym_COMMA,
- anon_sym_RBRACE,
- anon_sym_LPAREN,
- anon_sym_RPAREN,
- anon_sym_of,
- anon_sym_COLON,
- anon_sym_LBRACK,
- anon_sym_RBRACK,
- anon_sym_QMARK_DOT,
- anon_sym_AMP_AMP,
- anon_sym_PIPE_PIPE,
- anon_sym_GT_GT_GT,
- anon_sym_LT_LT,
- anon_sym_CARET,
- anon_sym_PERCENT,
- anon_sym_STAR_STAR,
- anon_sym_LT_EQ,
- anon_sym_EQ_EQ_EQ,
- anon_sym_BANG_EQ_EQ,
- anon_sym_GT_EQ,
- anon_sym_QMARK_QMARK,
- anon_sym_instanceof,
- anon_sym_PLUS_PLUS,
- anon_sym_DASH_DASH,
- anon_sym_BQUOTE,
- anon_sym_satisfies,
- anon_sym_extends,
- anon_sym_implements,
- [36734] = 3,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(3596), 13,
- anon_sym_STAR,
- anon_sym_BANG,
- anon_sym_in,
- anon_sym_GT,
- anon_sym_GT_GT,
- anon_sym_AMP,
- anon_sym_PIPE,
- anon_sym_PLUS,
- anon_sym_DASH,
- anon_sym_SLASH,
- anon_sym_LT,
- anon_sym_EQ_EQ,
- anon_sym_BANG_EQ,
- ACTIONS(3446), 32,
- sym__ternary_qmark,
- anon_sym_as,
- anon_sym_LBRACE,
- anon_sym_COMMA,
- anon_sym_RBRACE,
- anon_sym_LPAREN,
- anon_sym_RPAREN,
- anon_sym_of,
- anon_sym_COLON,
- anon_sym_LBRACK,
- anon_sym_RBRACK,
- anon_sym_DOT,
- anon_sym_QMARK_DOT,
- anon_sym_AMP_AMP,
- anon_sym_PIPE_PIPE,
- anon_sym_GT_GT_GT,
- anon_sym_LT_LT,
- anon_sym_CARET,
- anon_sym_PERCENT,
- anon_sym_STAR_STAR,
- anon_sym_LT_EQ,
- anon_sym_EQ_EQ_EQ,
- anon_sym_BANG_EQ_EQ,
- anon_sym_GT_EQ,
- anon_sym_QMARK_QMARK,
- anon_sym_instanceof,
- anon_sym_PLUS_PLUS,
- anon_sym_DASH_DASH,
- anon_sym_BQUOTE,
- anon_sym_satisfies,
- anon_sym_extends,
- anon_sym_implements,
- [36788] = 3,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(4511), 13,
- anon_sym_STAR,
- anon_sym_BANG,
- anon_sym_in,
- anon_sym_GT,
- anon_sym_GT_GT,
- anon_sym_AMP,
- anon_sym_PIPE,
- anon_sym_PLUS,
- anon_sym_DASH,
- anon_sym_SLASH,
- anon_sym_LT,
- anon_sym_EQ_EQ,
- anon_sym_BANG_EQ,
- ACTIONS(4513), 32,
- sym__ternary_qmark,
- anon_sym_as,
- anon_sym_LBRACE,
- anon_sym_COMMA,
- anon_sym_RBRACE,
- anon_sym_LPAREN,
- anon_sym_RPAREN,
- anon_sym_of,
- anon_sym_COLON,
- anon_sym_LBRACK,
- anon_sym_RBRACK,
- anon_sym_DOT,
- anon_sym_QMARK_DOT,
- anon_sym_AMP_AMP,
- anon_sym_PIPE_PIPE,
- anon_sym_GT_GT_GT,
- anon_sym_LT_LT,
- anon_sym_CARET,
- anon_sym_PERCENT,
- anon_sym_STAR_STAR,
- anon_sym_LT_EQ,
- anon_sym_EQ_EQ_EQ,
- anon_sym_BANG_EQ_EQ,
- anon_sym_GT_EQ,
- anon_sym_QMARK_QMARK,
- anon_sym_instanceof,
- anon_sym_PLUS_PLUS,
- anon_sym_DASH_DASH,
- anon_sym_BQUOTE,
- anon_sym_satisfies,
- anon_sym_extends,
- anon_sym_implements,
- [36842] = 3,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(4515), 13,
- anon_sym_STAR,
- anon_sym_BANG,
- anon_sym_in,
- anon_sym_GT,
- anon_sym_GT_GT,
- anon_sym_AMP,
- anon_sym_PIPE,
- anon_sym_PLUS,
- anon_sym_DASH,
- anon_sym_SLASH,
- anon_sym_LT,
- anon_sym_EQ_EQ,
- anon_sym_BANG_EQ,
- ACTIONS(4370), 31,
- sym__ternary_qmark,
- anon_sym_as,
- anon_sym_LBRACE,
- anon_sym_COMMA,
- anon_sym_RBRACE,
- anon_sym_LPAREN,
- anon_sym_RPAREN,
- anon_sym_of,
- anon_sym_COLON,
- anon_sym_LBRACK,
- anon_sym_RBRACK,
- anon_sym_DOT,
- anon_sym_QMARK_DOT,
- anon_sym_AMP_AMP,
- anon_sym_PIPE_PIPE,
- anon_sym_GT_GT_GT,
- anon_sym_LT_LT,
- anon_sym_CARET,
- anon_sym_PERCENT,
- anon_sym_STAR_STAR,
- anon_sym_LT_EQ,
- anon_sym_EQ_EQ_EQ,
- anon_sym_BANG_EQ_EQ,
- anon_sym_GT_EQ,
- anon_sym_QMARK_QMARK,
- anon_sym_instanceof,
- anon_sym_PLUS_PLUS,
- anon_sym_DASH_DASH,
- anon_sym_BQUOTE,
- anon_sym_satisfies,
- anon_sym_implements,
- [36895] = 23,
- ACTIONS(89), 1,
- anon_sym_BQUOTE,
- ACTIONS(4059), 1,
- anon_sym_QMARK_DOT,
- ACTIONS(4519), 1,
- anon_sym_LPAREN,
- ACTIONS(4523), 1,
- anon_sym_LBRACK,
- ACTIONS(4525), 1,
- anon_sym_DOT,
- ACTIONS(4527), 1,
- anon_sym_GT_GT,
- ACTIONS(4533), 1,
- anon_sym_PERCENT,
- ACTIONS(4535), 1,
- anon_sym_STAR_STAR,
- ACTIONS(4537), 1,
- anon_sym_LT,
- STATE(1812), 1,
- sym_type_arguments,
- STATE(4772), 1,
- sym_optional_chain,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(4517), 2,
- anon_sym_STAR,
- anon_sym_SLASH,
- ACTIONS(4521), 2,
- anon_sym_in,
- anon_sym_GT,
- ACTIONS(4529), 2,
- anon_sym_GT_GT_GT,
- anon_sym_LT_LT,
- ACTIONS(4531), 2,
- anon_sym_PLUS,
- anon_sym_DASH,
- ACTIONS(4541), 2,
- anon_sym_EQ_EQ,
- anon_sym_BANG_EQ,
- ACTIONS(4543), 2,
- anon_sym_EQ_EQ_EQ,
- anon_sym_BANG_EQ_EQ,
- ACTIONS(4545), 2,
- anon_sym_PLUS_PLUS,
- anon_sym_DASH_DASH,
- STATE(2133), 2,
- sym_template_string,
- sym_arguments,
- ACTIONS(4307), 3,
- anon_sym_BANG,
- anon_sym_AMP,
- anon_sym_PIPE,
- ACTIONS(4539), 3,
- anon_sym_LT_EQ,
- anon_sym_GT_EQ,
- anon_sym_instanceof,
- ACTIONS(4305), 11,
- sym__automatic_semicolon,
- sym__ternary_qmark,
- anon_sym_as,
- anon_sym_COMMA,
- anon_sym_RBRACE,
- anon_sym_SEMI,
- anon_sym_AMP_AMP,
- anon_sym_PIPE_PIPE,
- anon_sym_CARET,
- anon_sym_QMARK_QMARK,
- anon_sym_satisfies,
- [36988] = 7,
- ACTIONS(4547), 1,
- anon_sym_DOT,
- ACTIONS(4549), 1,
- anon_sym_LT,
- ACTIONS(4551), 1,
- anon_sym_is,
- STATE(2024), 1,
- sym_type_arguments,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(4007), 12,
- anon_sym_STAR,
- anon_sym_BANG,
- anon_sym_in,
- anon_sym_GT,
- anon_sym_GT_GT,
- anon_sym_AMP,
- anon_sym_PIPE,
- anon_sym_PLUS,
- anon_sym_DASH,
- anon_sym_SLASH,
- anon_sym_EQ_EQ,
- anon_sym_BANG_EQ,
- ACTIONS(3461), 28,
- sym__automatic_semicolon,
- sym__ternary_qmark,
- anon_sym_as,
- anon_sym_COMMA,
- anon_sym_RBRACE,
- anon_sym_LPAREN,
- anon_sym_of,
- anon_sym_SEMI,
- anon_sym_LBRACK,
- anon_sym_QMARK_DOT,
- anon_sym_AMP_AMP,
- anon_sym_PIPE_PIPE,
- anon_sym_GT_GT_GT,
- anon_sym_LT_LT,
- anon_sym_CARET,
- anon_sym_PERCENT,
- anon_sym_STAR_STAR,
- anon_sym_LT_EQ,
- anon_sym_EQ_EQ_EQ,
- anon_sym_BANG_EQ_EQ,
- anon_sym_GT_EQ,
- anon_sym_QMARK_QMARK,
- anon_sym_instanceof,
- anon_sym_PLUS_PLUS,
- anon_sym_DASH_DASH,
- anon_sym_BQUOTE,
- anon_sym_satisfies,
- anon_sym_extends,
- [37049] = 24,
- ACTIONS(89), 1,
- anon_sym_BQUOTE,
- ACTIONS(4059), 1,
- anon_sym_QMARK_DOT,
- ACTIONS(4519), 1,
- anon_sym_LPAREN,
- ACTIONS(4523), 1,
- anon_sym_LBRACK,
- ACTIONS(4525), 1,
- anon_sym_DOT,
- ACTIONS(4527), 1,
- anon_sym_GT_GT,
- ACTIONS(4533), 1,
- anon_sym_PERCENT,
- ACTIONS(4535), 1,
- anon_sym_STAR_STAR,
- ACTIONS(4537), 1,
- anon_sym_LT,
- ACTIONS(4553), 1,
- anon_sym_AMP,
- STATE(1812), 1,
- sym_type_arguments,
- STATE(4772), 1,
- sym_optional_chain,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(4307), 2,
- anon_sym_BANG,
- anon_sym_PIPE,
- ACTIONS(4517), 2,
- anon_sym_STAR,
- anon_sym_SLASH,
- ACTIONS(4521), 2,
- anon_sym_in,
- anon_sym_GT,
- ACTIONS(4529), 2,
- anon_sym_GT_GT_GT,
- anon_sym_LT_LT,
- ACTIONS(4531), 2,
- anon_sym_PLUS,
- anon_sym_DASH,
- ACTIONS(4541), 2,
- anon_sym_EQ_EQ,
- anon_sym_BANG_EQ,
- ACTIONS(4543), 2,
- anon_sym_EQ_EQ_EQ,
- anon_sym_BANG_EQ_EQ,
- ACTIONS(4545), 2,
- anon_sym_PLUS_PLUS,
- anon_sym_DASH_DASH,
- STATE(2133), 2,
- sym_template_string,
- sym_arguments,
- ACTIONS(4539), 3,
- anon_sym_LT_EQ,
- anon_sym_GT_EQ,
- anon_sym_instanceof,
- ACTIONS(4305), 11,
- sym__automatic_semicolon,
- sym__ternary_qmark,
- anon_sym_as,
- anon_sym_COMMA,
- anon_sym_RBRACE,
- anon_sym_SEMI,
- anon_sym_AMP_AMP,
- anon_sym_PIPE_PIPE,
- anon_sym_CARET,
- anon_sym_QMARK_QMARK,
- anon_sym_satisfies,
- [37144] = 34,
- ACTIONS(89), 1,
- anon_sym_BQUOTE,
- ACTIONS(4059), 1,
- anon_sym_QMARK_DOT,
- ACTIONS(4519), 1,
- anon_sym_LPAREN,
- ACTIONS(4523), 1,
- anon_sym_LBRACK,
- ACTIONS(4525), 1,
- anon_sym_DOT,
- ACTIONS(4527), 1,
- anon_sym_GT_GT,
- ACTIONS(4533), 1,
- anon_sym_PERCENT,
- ACTIONS(4535), 1,
- anon_sym_STAR_STAR,
- ACTIONS(4537), 1,
- anon_sym_LT,
- ACTIONS(4553), 1,
- anon_sym_AMP,
- ACTIONS(4555), 1,
- anon_sym_as,
- ACTIONS(4557), 1,
- anon_sym_COMMA,
- ACTIONS(4560), 1,
- anon_sym_RBRACE,
- ACTIONS(4562), 1,
- anon_sym_BANG,
- ACTIONS(4564), 1,
- anon_sym_AMP_AMP,
- ACTIONS(4566), 1,
- anon_sym_PIPE_PIPE,
- ACTIONS(4568), 1,
- anon_sym_CARET,
- ACTIONS(4570), 1,
- anon_sym_PIPE,
- ACTIONS(4572), 1,
- anon_sym_QMARK_QMARK,
- ACTIONS(4574), 1,
- anon_sym_satisfies,
- ACTIONS(4576), 1,
- sym__ternary_qmark,
- STATE(1812), 1,
- sym_type_arguments,
- STATE(4772), 1,
- sym_optional_chain,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(4297), 2,
- sym__automatic_semicolon,
- anon_sym_SEMI,
- ACTIONS(4517), 2,
- anon_sym_STAR,
- anon_sym_SLASH,
- ACTIONS(4521), 2,
- anon_sym_in,
- anon_sym_GT,
- ACTIONS(4529), 2,
- anon_sym_GT_GT_GT,
- anon_sym_LT_LT,
- ACTIONS(4531), 2,
- anon_sym_PLUS,
- anon_sym_DASH,
- ACTIONS(4541), 2,
- anon_sym_EQ_EQ,
- anon_sym_BANG_EQ,
- ACTIONS(4543), 2,
- anon_sym_EQ_EQ_EQ,
- anon_sym_BANG_EQ_EQ,
- ACTIONS(4545), 2,
- anon_sym_PLUS_PLUS,
- anon_sym_DASH_DASH,
- STATE(2133), 2,
- sym_template_string,
- sym_arguments,
- ACTIONS(4539), 3,
- anon_sym_LT_EQ,
- anon_sym_GT_EQ,
- anon_sym_instanceof,
- [37259] = 3,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(1849), 13,
- anon_sym_STAR,
- anon_sym_BANG,
- anon_sym_in,
- anon_sym_GT,
- anon_sym_GT_GT,
- anon_sym_AMP,
- anon_sym_PIPE,
- anon_sym_PLUS,
- anon_sym_DASH,
- anon_sym_SLASH,
- anon_sym_LT,
- anon_sym_EQ_EQ,
- anon_sym_BANG_EQ,
- ACTIONS(1851), 31,
- sym__ternary_qmark,
- anon_sym_as,
- anon_sym_LBRACE,
- anon_sym_COMMA,
- anon_sym_RBRACE,
- anon_sym_LPAREN,
- anon_sym_RPAREN,
- anon_sym_of,
- anon_sym_COLON,
- anon_sym_LBRACK,
- anon_sym_RBRACK,
- anon_sym_DOT,
- anon_sym_QMARK_DOT,
- anon_sym_AMP_AMP,
- anon_sym_PIPE_PIPE,
- anon_sym_GT_GT_GT,
- anon_sym_LT_LT,
- anon_sym_CARET,
- anon_sym_PERCENT,
- anon_sym_STAR_STAR,
- anon_sym_LT_EQ,
- anon_sym_EQ_EQ_EQ,
- anon_sym_BANG_EQ_EQ,
- anon_sym_GT_EQ,
- anon_sym_QMARK_QMARK,
- anon_sym_instanceof,
- anon_sym_PLUS_PLUS,
- anon_sym_DASH_DASH,
- anon_sym_BQUOTE,
- anon_sym_satisfies,
- anon_sym_implements,
- [37312] = 3,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(1781), 13,
- anon_sym_STAR,
- anon_sym_BANG,
- anon_sym_in,
- anon_sym_GT,
- anon_sym_GT_GT,
- anon_sym_AMP,
- anon_sym_PIPE,
- anon_sym_PLUS,
- anon_sym_DASH,
- anon_sym_SLASH,
- anon_sym_LT,
- anon_sym_EQ_EQ,
- anon_sym_BANG_EQ,
- ACTIONS(1779), 31,
- sym__ternary_qmark,
- anon_sym_as,
- anon_sym_LBRACE,
- anon_sym_COMMA,
- anon_sym_RBRACE,
- anon_sym_LPAREN,
- anon_sym_RPAREN,
- anon_sym_of,
- anon_sym_COLON,
- anon_sym_LBRACK,
- anon_sym_RBRACK,
- anon_sym_DOT,
- anon_sym_QMARK_DOT,
- anon_sym_AMP_AMP,
- anon_sym_PIPE_PIPE,
- anon_sym_GT_GT_GT,
- anon_sym_LT_LT,
- anon_sym_CARET,
- anon_sym_PERCENT,
- anon_sym_STAR_STAR,
- anon_sym_LT_EQ,
- anon_sym_EQ_EQ_EQ,
- anon_sym_BANG_EQ_EQ,
- anon_sym_GT_EQ,
- anon_sym_QMARK_QMARK,
- anon_sym_instanceof,
- anon_sym_PLUS_PLUS,
- anon_sym_DASH_DASH,
- anon_sym_BQUOTE,
- anon_sym_satisfies,
- anon_sym_implements,
- [37365] = 32,
- ACTIONS(89), 1,
- anon_sym_BQUOTE,
- ACTIONS(4059), 1,
- anon_sym_QMARK_DOT,
- ACTIONS(4519), 1,
- anon_sym_LPAREN,
- ACTIONS(4523), 1,
- anon_sym_LBRACK,
- ACTIONS(4525), 1,
- anon_sym_DOT,
- ACTIONS(4555), 1,
- anon_sym_as,
- ACTIONS(4562), 1,
- anon_sym_BANG,
- ACTIONS(4574), 1,
- anon_sym_satisfies,
- ACTIONS(4582), 1,
- anon_sym_AMP_AMP,
- ACTIONS(4584), 1,
- anon_sym_PIPE_PIPE,
- ACTIONS(4586), 1,
- anon_sym_GT_GT,
- ACTIONS(4590), 1,
- anon_sym_AMP,
- ACTIONS(4592), 1,
- anon_sym_CARET,
- ACTIONS(4594), 1,
- anon_sym_PIPE,
- ACTIONS(4598), 1,
- anon_sym_PERCENT,
- ACTIONS(4600), 1,
- anon_sym_STAR_STAR,
- ACTIONS(4602), 1,
- anon_sym_LT,
- ACTIONS(4610), 1,
- anon_sym_QMARK_QMARK,
- ACTIONS(4612), 1,
- sym__ternary_qmark,
- STATE(1812), 1,
- sym_type_arguments,
- STATE(4772), 1,
- sym_optional_chain,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(4545), 2,
- anon_sym_PLUS_PLUS,
- anon_sym_DASH_DASH,
- ACTIONS(4578), 2,
- anon_sym_STAR,
- anon_sym_SLASH,
- ACTIONS(4580), 2,
- anon_sym_in,
- anon_sym_GT,
- ACTIONS(4588), 2,
- anon_sym_GT_GT_GT,
- anon_sym_LT_LT,
- ACTIONS(4596), 2,
- anon_sym_PLUS,
- anon_sym_DASH,
- ACTIONS(4606), 2,
- anon_sym_EQ_EQ,
- anon_sym_BANG_EQ,
- ACTIONS(4608), 2,
- anon_sym_EQ_EQ_EQ,
- anon_sym_BANG_EQ_EQ,
- STATE(2133), 2,
- sym_template_string,
- sym_arguments,
- ACTIONS(4604), 3,
- anon_sym_LT_EQ,
- anon_sym_GT_EQ,
- anon_sym_instanceof,
- ACTIONS(4388), 4,
- sym__automatic_semicolon,
- anon_sym_COMMA,
- anon_sym_of,
- anon_sym_SEMI,
- [37476] = 3,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(1873), 13,
- anon_sym_STAR,
- anon_sym_BANG,
- anon_sym_in,
- anon_sym_GT,
- anon_sym_GT_GT,
- anon_sym_AMP,
- anon_sym_PIPE,
- anon_sym_PLUS,
- anon_sym_DASH,
- anon_sym_SLASH,
- anon_sym_LT,
- anon_sym_EQ_EQ,
- anon_sym_BANG_EQ,
- ACTIONS(1871), 31,
- sym__ternary_qmark,
- anon_sym_as,
- anon_sym_LBRACE,
- anon_sym_COMMA,
- anon_sym_RBRACE,
- anon_sym_LPAREN,
- anon_sym_RPAREN,
- anon_sym_of,
- anon_sym_COLON,
- anon_sym_LBRACK,
- anon_sym_RBRACK,
- anon_sym_DOT,
- anon_sym_QMARK_DOT,
- anon_sym_AMP_AMP,
- anon_sym_PIPE_PIPE,
- anon_sym_GT_GT_GT,
- anon_sym_LT_LT,
- anon_sym_CARET,
- anon_sym_PERCENT,
- anon_sym_STAR_STAR,
- anon_sym_LT_EQ,
- anon_sym_EQ_EQ_EQ,
- anon_sym_BANG_EQ_EQ,
- anon_sym_GT_EQ,
- anon_sym_QMARK_QMARK,
- anon_sym_instanceof,
- anon_sym_PLUS_PLUS,
- anon_sym_DASH_DASH,
- anon_sym_BQUOTE,
- anon_sym_satisfies,
- anon_sym_implements,
- [37529] = 3,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(1863), 13,
- anon_sym_STAR,
- anon_sym_BANG,
- anon_sym_in,
- anon_sym_GT,
- anon_sym_GT_GT,
- anon_sym_AMP,
- anon_sym_PIPE,
- anon_sym_PLUS,
- anon_sym_DASH,
- anon_sym_SLASH,
- anon_sym_LT,
- anon_sym_EQ_EQ,
- anon_sym_BANG_EQ,
- ACTIONS(1865), 31,
- sym__ternary_qmark,
- anon_sym_as,
- anon_sym_LBRACE,
- anon_sym_COMMA,
- anon_sym_RBRACE,
- anon_sym_LPAREN,
- anon_sym_RPAREN,
- anon_sym_of,
- anon_sym_COLON,
- anon_sym_LBRACK,
- anon_sym_RBRACK,
- anon_sym_DOT,
- anon_sym_QMARK_DOT,
- anon_sym_AMP_AMP,
- anon_sym_PIPE_PIPE,
- anon_sym_GT_GT_GT,
- anon_sym_LT_LT,
- anon_sym_CARET,
- anon_sym_PERCENT,
- anon_sym_STAR_STAR,
- anon_sym_LT_EQ,
- anon_sym_EQ_EQ_EQ,
- anon_sym_BANG_EQ_EQ,
- anon_sym_GT_EQ,
- anon_sym_QMARK_QMARK,
- anon_sym_instanceof,
- anon_sym_PLUS_PLUS,
- anon_sym_DASH_DASH,
- anon_sym_BQUOTE,
- anon_sym_satisfies,
- anon_sym_implements,
- [37582] = 25,
- ACTIONS(89), 1,
- anon_sym_BQUOTE,
- ACTIONS(4059), 1,
- anon_sym_QMARK_DOT,
- ACTIONS(4519), 1,
- anon_sym_LPAREN,
- ACTIONS(4523), 1,
- anon_sym_LBRACK,
- ACTIONS(4525), 1,
- anon_sym_DOT,
- ACTIONS(4527), 1,
- anon_sym_GT_GT,
- ACTIONS(4533), 1,
- anon_sym_PERCENT,
- ACTIONS(4535), 1,
- anon_sym_STAR_STAR,
- ACTIONS(4537), 1,
- anon_sym_LT,
- ACTIONS(4553), 1,
- anon_sym_AMP,
- ACTIONS(4568), 1,
- anon_sym_CARET,
- STATE(1812), 1,
- sym_type_arguments,
- STATE(4772), 1,
- sym_optional_chain,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(4307), 2,
- anon_sym_BANG,
- anon_sym_PIPE,
- ACTIONS(4517), 2,
- anon_sym_STAR,
- anon_sym_SLASH,
- ACTIONS(4521), 2,
- anon_sym_in,
- anon_sym_GT,
- ACTIONS(4529), 2,
- anon_sym_GT_GT_GT,
- anon_sym_LT_LT,
- ACTIONS(4531), 2,
- anon_sym_PLUS,
- anon_sym_DASH,
- ACTIONS(4541), 2,
- anon_sym_EQ_EQ,
- anon_sym_BANG_EQ,
- ACTIONS(4543), 2,
- anon_sym_EQ_EQ_EQ,
- anon_sym_BANG_EQ_EQ,
- ACTIONS(4545), 2,
- anon_sym_PLUS_PLUS,
- anon_sym_DASH_DASH,
- STATE(2133), 2,
- sym_template_string,
- sym_arguments,
- ACTIONS(4539), 3,
- anon_sym_LT_EQ,
- anon_sym_GT_EQ,
- anon_sym_instanceof,
- ACTIONS(4305), 10,
- sym__automatic_semicolon,
- sym__ternary_qmark,
- anon_sym_as,
- anon_sym_COMMA,
- anon_sym_RBRACE,
- anon_sym_SEMI,
- anon_sym_AMP_AMP,
- anon_sym_PIPE_PIPE,
- anon_sym_QMARK_QMARK,
- anon_sym_satisfies,
- [37679] = 33,
- ACTIONS(89), 1,
- anon_sym_BQUOTE,
- ACTIONS(4059), 1,
- anon_sym_QMARK_DOT,
- ACTIONS(4519), 1,
- anon_sym_LPAREN,
- ACTIONS(4523), 1,
- anon_sym_LBRACK,
- ACTIONS(4525), 1,
- anon_sym_DOT,
- ACTIONS(4555), 1,
- anon_sym_as,
- ACTIONS(4562), 1,
- anon_sym_BANG,
- ACTIONS(4574), 1,
- anon_sym_satisfies,
- ACTIONS(4580), 1,
- anon_sym_GT,
- ACTIONS(4582), 1,
- anon_sym_AMP_AMP,
- ACTIONS(4584), 1,
- anon_sym_PIPE_PIPE,
- ACTIONS(4586), 1,
- anon_sym_GT_GT,
- ACTIONS(4590), 1,
- anon_sym_AMP,
- ACTIONS(4592), 1,
- anon_sym_CARET,
- ACTIONS(4594), 1,
- anon_sym_PIPE,
- ACTIONS(4598), 1,
- anon_sym_PERCENT,
- ACTIONS(4600), 1,
- anon_sym_STAR_STAR,
- ACTIONS(4602), 1,
- anon_sym_LT,
- ACTIONS(4610), 1,
- anon_sym_QMARK_QMARK,
- ACTIONS(4612), 1,
- sym__ternary_qmark,
- ACTIONS(4616), 1,
- anon_sym_in,
- STATE(1812), 1,
- sym_type_arguments,
- STATE(4772), 1,
- sym_optional_chain,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(4545), 2,
- anon_sym_PLUS_PLUS,
- anon_sym_DASH_DASH,
- ACTIONS(4578), 2,
- anon_sym_STAR,
- anon_sym_SLASH,
- ACTIONS(4588), 2,
- anon_sym_GT_GT_GT,
- anon_sym_LT_LT,
- ACTIONS(4596), 2,
- anon_sym_PLUS,
- anon_sym_DASH,
- ACTIONS(4606), 2,
- anon_sym_EQ_EQ,
- anon_sym_BANG_EQ,
- ACTIONS(4608), 2,
- anon_sym_EQ_EQ_EQ,
- anon_sym_BANG_EQ_EQ,
- STATE(2133), 2,
- sym_template_string,
- sym_arguments,
- ACTIONS(4604), 3,
- anon_sym_LT_EQ,
- anon_sym_GT_EQ,
- anon_sym_instanceof,
- ACTIONS(4614), 4,
- sym__automatic_semicolon,
- anon_sym_COMMA,
- anon_sym_of,
- anon_sym_SEMI,
- [37792] = 3,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(4619), 13,
- anon_sym_STAR,
- anon_sym_BANG,
- anon_sym_in,
- anon_sym_GT,
- anon_sym_GT_GT,
- anon_sym_AMP,
- anon_sym_PIPE,
- anon_sym_PLUS,
- anon_sym_DASH,
- anon_sym_SLASH,
- anon_sym_LT,
- anon_sym_EQ_EQ,
- anon_sym_BANG_EQ,
- ACTIONS(4621), 31,
- sym__ternary_qmark,
- anon_sym_as,
- anon_sym_LBRACE,
- anon_sym_COMMA,
- anon_sym_RBRACE,
- anon_sym_LPAREN,
- anon_sym_RPAREN,
- anon_sym_of,
- anon_sym_COLON,
- anon_sym_LBRACK,
- anon_sym_RBRACK,
- anon_sym_DOT,
- anon_sym_QMARK_DOT,
- anon_sym_AMP_AMP,
- anon_sym_PIPE_PIPE,
- anon_sym_GT_GT_GT,
- anon_sym_LT_LT,
- anon_sym_CARET,
- anon_sym_PERCENT,
- anon_sym_STAR_STAR,
- anon_sym_LT_EQ,
- anon_sym_EQ_EQ_EQ,
- anon_sym_BANG_EQ_EQ,
- anon_sym_GT_EQ,
- anon_sym_QMARK_QMARK,
- anon_sym_instanceof,
- anon_sym_PLUS_PLUS,
- anon_sym_DASH_DASH,
- anon_sym_BQUOTE,
- anon_sym_satisfies,
- anon_sym_implements,
- [37845] = 16,
- ACTIONS(89), 1,
- anon_sym_BQUOTE,
- ACTIONS(4059), 1,
- anon_sym_QMARK_DOT,
- ACTIONS(4519), 1,
- anon_sym_LPAREN,
- ACTIONS(4523), 1,
- anon_sym_LBRACK,
- ACTIONS(4525), 1,
- anon_sym_DOT,
- ACTIONS(4533), 1,
- anon_sym_PERCENT,
- ACTIONS(4535), 1,
- anon_sym_STAR_STAR,
- ACTIONS(4623), 1,
- anon_sym_LT,
- STATE(1812), 1,
- sym_type_arguments,
- STATE(4772), 1,
- sym_optional_chain,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(4517), 2,
- anon_sym_STAR,
- anon_sym_SLASH,
- ACTIONS(4545), 2,
- anon_sym_PLUS_PLUS,
- anon_sym_DASH_DASH,
- STATE(2133), 2,
- sym_template_string,
- sym_arguments,
- ACTIONS(4307), 10,
- anon_sym_BANG,
- anon_sym_in,
- anon_sym_GT,
- anon_sym_GT_GT,
- anon_sym_AMP,
- anon_sym_PIPE,
- anon_sym_PLUS,
- anon_sym_DASH,
- anon_sym_EQ_EQ,
- anon_sym_BANG_EQ,
- ACTIONS(4305), 18,
- sym__automatic_semicolon,
- sym__ternary_qmark,
- anon_sym_as,
- anon_sym_COMMA,
- anon_sym_RBRACE,
- anon_sym_SEMI,
- anon_sym_AMP_AMP,
- anon_sym_PIPE_PIPE,
- anon_sym_GT_GT_GT,
- anon_sym_LT_LT,
- anon_sym_CARET,
- anon_sym_LT_EQ,
- anon_sym_EQ_EQ_EQ,
- anon_sym_BANG_EQ_EQ,
- anon_sym_GT_EQ,
- anon_sym_QMARK_QMARK,
- anon_sym_instanceof,
- anon_sym_satisfies,
- [37924] = 3,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(1738), 13,
- anon_sym_STAR,
- anon_sym_BANG,
- anon_sym_in,
- anon_sym_GT,
- anon_sym_GT_GT,
- anon_sym_AMP,
- anon_sym_PIPE,
- anon_sym_PLUS,
- anon_sym_DASH,
- anon_sym_SLASH,
- anon_sym_LT,
- anon_sym_EQ_EQ,
- anon_sym_BANG_EQ,
- ACTIONS(1740), 31,
- sym__ternary_qmark,
- anon_sym_as,
- anon_sym_LBRACE,
- anon_sym_COMMA,
- anon_sym_RBRACE,
- anon_sym_LPAREN,
- anon_sym_RPAREN,
- anon_sym_of,
- anon_sym_COLON,
- anon_sym_LBRACK,
- anon_sym_RBRACK,
- anon_sym_DOT,
- anon_sym_QMARK_DOT,
- anon_sym_AMP_AMP,
- anon_sym_PIPE_PIPE,
- anon_sym_GT_GT_GT,
- anon_sym_LT_LT,
- anon_sym_CARET,
- anon_sym_PERCENT,
- anon_sym_STAR_STAR,
- anon_sym_LT_EQ,
- anon_sym_EQ_EQ_EQ,
- anon_sym_BANG_EQ_EQ,
- anon_sym_GT_EQ,
- anon_sym_QMARK_QMARK,
- anon_sym_instanceof,
- anon_sym_PLUS_PLUS,
- anon_sym_DASH_DASH,
- anon_sym_BQUOTE,
- anon_sym_satisfies,
- anon_sym_implements,
- [37977] = 17,
- ACTIONS(89), 1,
- anon_sym_BQUOTE,
- ACTIONS(4059), 1,
- anon_sym_QMARK_DOT,
- ACTIONS(4519), 1,
- anon_sym_LPAREN,
- ACTIONS(4523), 1,
- anon_sym_LBRACK,
- ACTIONS(4525), 1,
- anon_sym_DOT,
- ACTIONS(4535), 1,
- anon_sym_STAR_STAR,
- ACTIONS(4555), 1,
- anon_sym_as,
- ACTIONS(4562), 1,
- anon_sym_BANG,
- ACTIONS(4574), 1,
- anon_sym_satisfies,
- ACTIONS(4623), 1,
- anon_sym_LT,
- STATE(1812), 1,
- sym_type_arguments,
- STATE(4772), 1,
- sym_optional_chain,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(4545), 2,
- anon_sym_PLUS_PLUS,
- anon_sym_DASH_DASH,
- STATE(2133), 2,
- sym_template_string,
- sym_arguments,
- ACTIONS(4307), 11,
- anon_sym_STAR,
- anon_sym_in,
- anon_sym_GT,
- anon_sym_GT_GT,
- anon_sym_AMP,
- anon_sym_PIPE,
- anon_sym_PLUS,
- anon_sym_DASH,
- anon_sym_SLASH,
- anon_sym_EQ_EQ,
- anon_sym_BANG_EQ,
- ACTIONS(4305), 17,
- sym__automatic_semicolon,
- sym__ternary_qmark,
- anon_sym_COMMA,
- anon_sym_RBRACE,
- anon_sym_SEMI,
- anon_sym_AMP_AMP,
- anon_sym_PIPE_PIPE,
- anon_sym_GT_GT_GT,
- anon_sym_LT_LT,
- anon_sym_CARET,
- anon_sym_PERCENT,
- anon_sym_LT_EQ,
- anon_sym_EQ_EQ_EQ,
- anon_sym_BANG_EQ_EQ,
- anon_sym_GT_EQ,
- anon_sym_QMARK_QMARK,
- anon_sym_instanceof,
- [38058] = 3,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(4626), 13,
- anon_sym_STAR,
- anon_sym_BANG,
- anon_sym_in,
- anon_sym_GT,
- anon_sym_GT_GT,
- anon_sym_AMP,
- anon_sym_PIPE,
- anon_sym_PLUS,
- anon_sym_DASH,
- anon_sym_SLASH,
- anon_sym_LT,
- anon_sym_EQ_EQ,
- anon_sym_BANG_EQ,
- ACTIONS(4628), 31,
- sym__ternary_qmark,
- anon_sym_as,
- anon_sym_LBRACE,
- anon_sym_COMMA,
- anon_sym_RBRACE,
- anon_sym_LPAREN,
- anon_sym_RPAREN,
- anon_sym_of,
- anon_sym_COLON,
- anon_sym_LBRACK,
- anon_sym_RBRACK,
- anon_sym_DOT,
- anon_sym_QMARK_DOT,
- anon_sym_AMP_AMP,
- anon_sym_PIPE_PIPE,
- anon_sym_GT_GT_GT,
- anon_sym_LT_LT,
- anon_sym_CARET,
- anon_sym_PERCENT,
- anon_sym_STAR_STAR,
- anon_sym_LT_EQ,
- anon_sym_EQ_EQ_EQ,
- anon_sym_BANG_EQ_EQ,
- anon_sym_GT_EQ,
- anon_sym_QMARK_QMARK,
- anon_sym_instanceof,
- anon_sym_PLUS_PLUS,
- anon_sym_DASH_DASH,
- anon_sym_BQUOTE,
- anon_sym_satisfies,
- anon_sym_implements,
- [38111] = 3,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(4630), 13,
- anon_sym_STAR,
- anon_sym_BANG,
- anon_sym_in,
- anon_sym_GT,
- anon_sym_GT_GT,
- anon_sym_AMP,
- anon_sym_PIPE,
- anon_sym_PLUS,
- anon_sym_DASH,
- anon_sym_SLASH,
- anon_sym_LT,
- anon_sym_EQ_EQ,
- anon_sym_BANG_EQ,
- ACTIONS(4632), 31,
- sym__ternary_qmark,
- anon_sym_as,
- anon_sym_LBRACE,
- anon_sym_COMMA,
- anon_sym_RBRACE,
- anon_sym_LPAREN,
- anon_sym_RPAREN,
- anon_sym_of,
- anon_sym_COLON,
- anon_sym_LBRACK,
- anon_sym_RBRACK,
- anon_sym_DOT,
- anon_sym_QMARK_DOT,
- anon_sym_AMP_AMP,
- anon_sym_PIPE_PIPE,
- anon_sym_GT_GT_GT,
- anon_sym_LT_LT,
- anon_sym_CARET,
- anon_sym_PERCENT,
- anon_sym_STAR_STAR,
- anon_sym_LT_EQ,
- anon_sym_EQ_EQ_EQ,
- anon_sym_BANG_EQ_EQ,
- anon_sym_GT_EQ,
- anon_sym_QMARK_QMARK,
- anon_sym_instanceof,
- anon_sym_PLUS_PLUS,
- anon_sym_DASH_DASH,
- anon_sym_BQUOTE,
- anon_sym_satisfies,
- anon_sym_implements,
- [38164] = 15,
- ACTIONS(2275), 1,
- anon_sym_DQUOTE,
- ACTIONS(2277), 1,
- anon_sym_SQUOTE,
- ACTIONS(3737), 1,
- anon_sym_COMMA,
- ACTIONS(3740), 1,
- anon_sym_RBRACE,
- ACTIONS(4241), 1,
- anon_sym_STAR,
- ACTIONS(4243), 1,
- anon_sym_EQ,
- ACTIONS(4634), 1,
- anon_sym_LBRACK,
- STATE(4672), 1,
- aux_sym_object_pattern_repeat1,
- STATE(5156), 1,
- aux_sym_object_repeat1,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(4636), 2,
- sym_number,
- sym_private_property_identifier,
- ACTIONS(4638), 2,
- anon_sym_get,
- anon_sym_set,
- STATE(3770), 3,
- sym_string,
- sym__property_name,
- sym_computed_property_name,
- ACTIONS(3743), 7,
- sym__automatic_semicolon,
- anon_sym_LPAREN,
- anon_sym_SEMI,
- anon_sym_COLON,
- anon_sym_LT,
- anon_sym_QMARK,
- anon_sym_PIPE_RBRACE,
- ACTIONS(2307), 21,
- anon_sym_export,
- anon_sym_type,
- anon_sym_namespace,
- anon_sym_let,
- anon_sym_async,
- anon_sym_new,
- sym_identifier,
- anon_sym_static,
- anon_sym_readonly,
- anon_sym_declare,
- anon_sym_public,
- anon_sym_private,
- anon_sym_protected,
- anon_sym_override,
- anon_sym_module,
- anon_sym_any,
- anon_sym_number,
- anon_sym_boolean,
- anon_sym_string,
- anon_sym_symbol,
- anon_sym_object,
- [38241] = 3,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(4640), 13,
- anon_sym_STAR,
- anon_sym_BANG,
- anon_sym_in,
- anon_sym_GT,
- anon_sym_GT_GT,
- anon_sym_AMP,
- anon_sym_PIPE,
- anon_sym_PLUS,
- anon_sym_DASH,
- anon_sym_SLASH,
- anon_sym_LT,
- anon_sym_EQ_EQ,
- anon_sym_BANG_EQ,
- ACTIONS(4642), 31,
- sym__ternary_qmark,
- anon_sym_as,
- anon_sym_LBRACE,
- anon_sym_COMMA,
- anon_sym_RBRACE,
- anon_sym_LPAREN,
- anon_sym_RPAREN,
- anon_sym_of,
- anon_sym_COLON,
- anon_sym_LBRACK,
- anon_sym_RBRACK,
- anon_sym_DOT,
- anon_sym_QMARK_DOT,
- anon_sym_AMP_AMP,
- anon_sym_PIPE_PIPE,
- anon_sym_GT_GT_GT,
- anon_sym_LT_LT,
- anon_sym_CARET,
- anon_sym_PERCENT,
- anon_sym_STAR_STAR,
- anon_sym_LT_EQ,
- anon_sym_EQ_EQ_EQ,
- anon_sym_BANG_EQ_EQ,
- anon_sym_GT_EQ,
- anon_sym_QMARK_QMARK,
- anon_sym_instanceof,
- anon_sym_PLUS_PLUS,
- anon_sym_DASH_DASH,
- anon_sym_BQUOTE,
- anon_sym_satisfies,
- anon_sym_implements,
- [38294] = 3,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(1787), 13,
- anon_sym_STAR,
- anon_sym_BANG,
- anon_sym_in,
- anon_sym_GT,
- anon_sym_GT_GT,
- anon_sym_AMP,
- anon_sym_PIPE,
- anon_sym_PLUS,
- anon_sym_DASH,
- anon_sym_SLASH,
- anon_sym_LT,
- anon_sym_EQ_EQ,
- anon_sym_BANG_EQ,
- ACTIONS(1789), 31,
- sym__ternary_qmark,
- anon_sym_as,
- anon_sym_LBRACE,
- anon_sym_COMMA,
- anon_sym_RBRACE,
- anon_sym_LPAREN,
- anon_sym_RPAREN,
- anon_sym_of,
- anon_sym_COLON,
- anon_sym_LBRACK,
- anon_sym_RBRACK,
- anon_sym_DOT,
- anon_sym_QMARK_DOT,
- anon_sym_AMP_AMP,
- anon_sym_PIPE_PIPE,
- anon_sym_GT_GT_GT,
- anon_sym_LT_LT,
- anon_sym_CARET,
- anon_sym_PERCENT,
- anon_sym_STAR_STAR,
- anon_sym_LT_EQ,
- anon_sym_EQ_EQ_EQ,
- anon_sym_BANG_EQ_EQ,
- anon_sym_GT_EQ,
- anon_sym_QMARK_QMARK,
- anon_sym_instanceof,
- anon_sym_PLUS_PLUS,
- anon_sym_DASH_DASH,
- anon_sym_BQUOTE,
- anon_sym_satisfies,
- anon_sym_implements,
- [38347] = 13,
- ACTIONS(89), 1,
- anon_sym_BQUOTE,
- ACTIONS(4059), 1,
- anon_sym_QMARK_DOT,
- ACTIONS(4519), 1,
- anon_sym_LPAREN,
- ACTIONS(4523), 1,
- anon_sym_LBRACK,
- ACTIONS(4525), 1,
- anon_sym_DOT,
- ACTIONS(4644), 1,
- anon_sym_LT,
- STATE(1812), 1,
- sym_type_arguments,
- STATE(4772), 1,
- sym_optional_chain,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(4545), 2,
- anon_sym_PLUS_PLUS,
- anon_sym_DASH_DASH,
- STATE(2133), 2,
- sym_template_string,
- sym_arguments,
- ACTIONS(4170), 12,
- anon_sym_STAR,
- anon_sym_BANG,
- anon_sym_in,
- anon_sym_GT,
- anon_sym_GT_GT,
- anon_sym_AMP,
- anon_sym_PIPE,
- anon_sym_PLUS,
- anon_sym_DASH,
- anon_sym_SLASH,
- anon_sym_EQ_EQ,
- anon_sym_BANG_EQ,
- ACTIONS(4172), 20,
- sym__automatic_semicolon,
- sym__ternary_qmark,
- anon_sym_as,
- anon_sym_COMMA,
- anon_sym_of,
- anon_sym_SEMI,
- anon_sym_AMP_AMP,
- anon_sym_PIPE_PIPE,
- anon_sym_GT_GT_GT,
- anon_sym_LT_LT,
- anon_sym_CARET,
- anon_sym_PERCENT,
- anon_sym_STAR_STAR,
- anon_sym_LT_EQ,
- anon_sym_EQ_EQ_EQ,
- anon_sym_BANG_EQ_EQ,
- anon_sym_GT_EQ,
- anon_sym_QMARK_QMARK,
- anon_sym_instanceof,
- anon_sym_satisfies,
- [38420] = 16,
- ACTIONS(89), 1,
- anon_sym_BQUOTE,
- ACTIONS(4059), 1,
- anon_sym_QMARK_DOT,
- ACTIONS(4519), 1,
- anon_sym_LPAREN,
- ACTIONS(4523), 1,
- anon_sym_LBRACK,
- ACTIONS(4525), 1,
- anon_sym_DOT,
- ACTIONS(4555), 1,
- anon_sym_as,
- ACTIONS(4562), 1,
- anon_sym_BANG,
- ACTIONS(4574), 1,
- anon_sym_satisfies,
- ACTIONS(4647), 1,
- anon_sym_LT,
- STATE(1812), 1,
- sym_type_arguments,
- STATE(4772), 1,
- sym_optional_chain,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(4545), 2,
- anon_sym_PLUS_PLUS,
- anon_sym_DASH_DASH,
- STATE(2133), 2,
- sym_template_string,
- sym_arguments,
- ACTIONS(4199), 11,
- anon_sym_STAR,
- anon_sym_in,
- anon_sym_GT,
- anon_sym_GT_GT,
- anon_sym_AMP,
- anon_sym_PIPE,
- anon_sym_PLUS,
- anon_sym_DASH,
- anon_sym_SLASH,
- anon_sym_EQ_EQ,
- anon_sym_BANG_EQ,
- ACTIONS(4201), 18,
- sym__automatic_semicolon,
- sym__ternary_qmark,
- anon_sym_COMMA,
- anon_sym_of,
- anon_sym_SEMI,
- anon_sym_AMP_AMP,
- anon_sym_PIPE_PIPE,
- anon_sym_GT_GT_GT,
- anon_sym_LT_LT,
- anon_sym_CARET,
- anon_sym_PERCENT,
- anon_sym_STAR_STAR,
- anon_sym_LT_EQ,
- anon_sym_EQ_EQ_EQ,
- anon_sym_BANG_EQ_EQ,
- anon_sym_GT_EQ,
- anon_sym_QMARK_QMARK,
- anon_sym_instanceof,
- [38499] = 32,
- ACTIONS(89), 1,
- anon_sym_BQUOTE,
- ACTIONS(4059), 1,
- anon_sym_QMARK_DOT,
- ACTIONS(4519), 1,
- anon_sym_LPAREN,
- ACTIONS(4523), 1,
- anon_sym_LBRACK,
- ACTIONS(4525), 1,
- anon_sym_DOT,
- ACTIONS(4555), 1,
- anon_sym_as,
- ACTIONS(4562), 1,
- anon_sym_BANG,
- ACTIONS(4574), 1,
- anon_sym_satisfies,
- ACTIONS(4582), 1,
- anon_sym_AMP_AMP,
- ACTIONS(4584), 1,
- anon_sym_PIPE_PIPE,
- ACTIONS(4586), 1,
- anon_sym_GT_GT,
- ACTIONS(4590), 1,
- anon_sym_AMP,
- ACTIONS(4592), 1,
- anon_sym_CARET,
- ACTIONS(4594), 1,
- anon_sym_PIPE,
- ACTIONS(4598), 1,
- anon_sym_PERCENT,
- ACTIONS(4600), 1,
- anon_sym_STAR_STAR,
- ACTIONS(4602), 1,
- anon_sym_LT,
- ACTIONS(4610), 1,
- anon_sym_QMARK_QMARK,
- ACTIONS(4612), 1,
- sym__ternary_qmark,
- STATE(1812), 1,
- sym_type_arguments,
- STATE(4772), 1,
- sym_optional_chain,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(4545), 2,
- anon_sym_PLUS_PLUS,
- anon_sym_DASH_DASH,
- ACTIONS(4578), 2,
- anon_sym_STAR,
- anon_sym_SLASH,
- ACTIONS(4580), 2,
- anon_sym_in,
- anon_sym_GT,
- ACTIONS(4588), 2,
- anon_sym_GT_GT_GT,
- anon_sym_LT_LT,
- ACTIONS(4596), 2,
- anon_sym_PLUS,
- anon_sym_DASH,
- ACTIONS(4606), 2,
- anon_sym_EQ_EQ,
- anon_sym_BANG_EQ,
- ACTIONS(4608), 2,
- anon_sym_EQ_EQ_EQ,
- anon_sym_BANG_EQ_EQ,
- STATE(2133), 2,
- sym_template_string,
- sym_arguments,
- ACTIONS(4604), 3,
- anon_sym_LT_EQ,
- anon_sym_GT_EQ,
- anon_sym_instanceof,
- ACTIONS(4210), 4,
- sym__automatic_semicolon,
- anon_sym_COMMA,
- anon_sym_of,
- anon_sym_SEMI,
- [38610] = 3,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(4650), 13,
- anon_sym_STAR,
- anon_sym_BANG,
- anon_sym_in,
- anon_sym_GT,
- anon_sym_GT_GT,
- anon_sym_AMP,
- anon_sym_PIPE,
- anon_sym_PLUS,
- anon_sym_DASH,
- anon_sym_SLASH,
- anon_sym_LT,
- anon_sym_EQ_EQ,
- anon_sym_BANG_EQ,
- ACTIONS(4652), 31,
- sym__ternary_qmark,
- anon_sym_as,
- anon_sym_LBRACE,
- anon_sym_COMMA,
- anon_sym_RBRACE,
- anon_sym_LPAREN,
- anon_sym_RPAREN,
- anon_sym_of,
- anon_sym_COLON,
- anon_sym_LBRACK,
- anon_sym_RBRACK,
- anon_sym_DOT,
- anon_sym_QMARK_DOT,
- anon_sym_AMP_AMP,
- anon_sym_PIPE_PIPE,
- anon_sym_GT_GT_GT,
- anon_sym_LT_LT,
- anon_sym_CARET,
- anon_sym_PERCENT,
- anon_sym_STAR_STAR,
- anon_sym_LT_EQ,
- anon_sym_EQ_EQ_EQ,
- anon_sym_BANG_EQ_EQ,
- anon_sym_GT_EQ,
- anon_sym_QMARK_QMARK,
- anon_sym_instanceof,
- anon_sym_PLUS_PLUS,
- anon_sym_DASH_DASH,
- anon_sym_BQUOTE,
- anon_sym_satisfies,
- anon_sym_implements,
- [38663] = 3,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(4654), 13,
- anon_sym_STAR,
- anon_sym_BANG,
- anon_sym_in,
- anon_sym_GT,
- anon_sym_GT_GT,
- anon_sym_AMP,
- anon_sym_PIPE,
- anon_sym_PLUS,
- anon_sym_DASH,
- anon_sym_SLASH,
- anon_sym_LT,
- anon_sym_EQ_EQ,
- anon_sym_BANG_EQ,
- ACTIONS(4656), 31,
- sym__ternary_qmark,
- anon_sym_as,
- anon_sym_LBRACE,
- anon_sym_COMMA,
- anon_sym_RBRACE,
- anon_sym_LPAREN,
- anon_sym_RPAREN,
- anon_sym_of,
- anon_sym_COLON,
- anon_sym_LBRACK,
- anon_sym_RBRACK,
- anon_sym_DOT,
- anon_sym_QMARK_DOT,
- anon_sym_AMP_AMP,
- anon_sym_PIPE_PIPE,
- anon_sym_GT_GT_GT,
- anon_sym_LT_LT,
- anon_sym_CARET,
- anon_sym_PERCENT,
- anon_sym_STAR_STAR,
- anon_sym_LT_EQ,
- anon_sym_EQ_EQ_EQ,
- anon_sym_BANG_EQ_EQ,
- anon_sym_GT_EQ,
- anon_sym_QMARK_QMARK,
- anon_sym_instanceof,
- anon_sym_PLUS_PLUS,
- anon_sym_DASH_DASH,
- anon_sym_BQUOTE,
- anon_sym_satisfies,
- anon_sym_implements,
- [38716] = 16,
- ACTIONS(1594), 1,
- anon_sym_DQUOTE,
- ACTIONS(1596), 1,
- anon_sym_SQUOTE,
- ACTIONS(3737), 1,
- anon_sym_COMMA,
- ACTIONS(3740), 1,
- anon_sym_RBRACE,
- ACTIONS(4241), 1,
- anon_sym_STAR,
- ACTIONS(4243), 1,
- anon_sym_EQ,
- ACTIONS(4247), 1,
- anon_sym_async,
- ACTIONS(4658), 1,
- anon_sym_LBRACK,
- STATE(4672), 1,
- aux_sym_object_pattern_repeat1,
- STATE(5156), 1,
- aux_sym_object_repeat1,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(4249), 2,
- sym_number,
- sym_private_property_identifier,
- ACTIONS(4253), 2,
- anon_sym_get,
- anon_sym_set,
- STATE(3081), 3,
- sym_string,
- sym__property_name,
- sym_computed_property_name,
- ACTIONS(3743), 7,
- sym__automatic_semicolon,
- anon_sym_LPAREN,
- anon_sym_SEMI,
- anon_sym_COLON,
- anon_sym_LT,
- anon_sym_QMARK,
- anon_sym_PIPE_RBRACE,
- ACTIONS(3607), 20,
- anon_sym_export,
- anon_sym_type,
- anon_sym_namespace,
- anon_sym_let,
- anon_sym_new,
- sym_identifier,
- anon_sym_static,
- anon_sym_readonly,
- anon_sym_declare,
- anon_sym_public,
- anon_sym_private,
- anon_sym_protected,
- anon_sym_override,
- anon_sym_module,
- anon_sym_any,
- anon_sym_number,
- anon_sym_boolean,
- anon_sym_string,
- anon_sym_symbol,
- anon_sym_object,
- [38795] = 3,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(4660), 13,
- anon_sym_STAR,
- anon_sym_BANG,
- anon_sym_in,
- anon_sym_GT,
- anon_sym_GT_GT,
- anon_sym_AMP,
- anon_sym_PIPE,
- anon_sym_PLUS,
- anon_sym_DASH,
- anon_sym_SLASH,
- anon_sym_LT,
- anon_sym_EQ_EQ,
- anon_sym_BANG_EQ,
- ACTIONS(4255), 31,
- sym__ternary_qmark,
- anon_sym_as,
- anon_sym_LBRACE,
- anon_sym_COMMA,
- anon_sym_RBRACE,
- anon_sym_LPAREN,
- anon_sym_RPAREN,
- anon_sym_of,
- anon_sym_COLON,
- anon_sym_LBRACK,
- anon_sym_RBRACK,
- anon_sym_DOT,
- anon_sym_QMARK_DOT,
- anon_sym_AMP_AMP,
- anon_sym_PIPE_PIPE,
- anon_sym_GT_GT_GT,
- anon_sym_LT_LT,
- anon_sym_CARET,
- anon_sym_PERCENT,
- anon_sym_STAR_STAR,
- anon_sym_LT_EQ,
- anon_sym_EQ_EQ_EQ,
- anon_sym_BANG_EQ_EQ,
- anon_sym_GT_EQ,
- anon_sym_QMARK_QMARK,
- anon_sym_instanceof,
- anon_sym_PLUS_PLUS,
- anon_sym_DASH_DASH,
- anon_sym_BQUOTE,
- anon_sym_satisfies,
- anon_sym_implements,
- [38848] = 3,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(1799), 13,
- anon_sym_STAR,
- anon_sym_BANG,
- anon_sym_in,
- anon_sym_GT,
- anon_sym_GT_GT,
- anon_sym_AMP,
- anon_sym_PIPE,
- anon_sym_PLUS,
- anon_sym_DASH,
- anon_sym_SLASH,
- anon_sym_LT,
- anon_sym_EQ_EQ,
- anon_sym_BANG_EQ,
- ACTIONS(1797), 31,
- sym__ternary_qmark,
- anon_sym_as,
- anon_sym_LBRACE,
- anon_sym_COMMA,
- anon_sym_RBRACE,
- anon_sym_LPAREN,
- anon_sym_RPAREN,
- anon_sym_of,
- anon_sym_COLON,
- anon_sym_LBRACK,
- anon_sym_RBRACK,
- anon_sym_DOT,
- anon_sym_QMARK_DOT,
- anon_sym_AMP_AMP,
- anon_sym_PIPE_PIPE,
- anon_sym_GT_GT_GT,
- anon_sym_LT_LT,
- anon_sym_CARET,
- anon_sym_PERCENT,
- anon_sym_STAR_STAR,
- anon_sym_LT_EQ,
- anon_sym_EQ_EQ_EQ,
- anon_sym_BANG_EQ_EQ,
- anon_sym_GT_EQ,
- anon_sym_QMARK_QMARK,
- anon_sym_instanceof,
- anon_sym_PLUS_PLUS,
- anon_sym_DASH_DASH,
- anon_sym_BQUOTE,
- anon_sym_satisfies,
- anon_sym_implements,
- [38901] = 3,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(1857), 13,
- anon_sym_STAR,
- anon_sym_BANG,
- anon_sym_in,
- anon_sym_GT,
- anon_sym_GT_GT,
- anon_sym_AMP,
- anon_sym_PIPE,
- anon_sym_PLUS,
- anon_sym_DASH,
- anon_sym_SLASH,
- anon_sym_LT,
- anon_sym_EQ_EQ,
- anon_sym_BANG_EQ,
- ACTIONS(1855), 31,
- sym__ternary_qmark,
- anon_sym_as,
- anon_sym_LBRACE,
- anon_sym_COMMA,
- anon_sym_RBRACE,
- anon_sym_LPAREN,
- anon_sym_RPAREN,
- anon_sym_of,
- anon_sym_COLON,
- anon_sym_LBRACK,
- anon_sym_RBRACK,
- anon_sym_DOT,
- anon_sym_QMARK_DOT,
- anon_sym_AMP_AMP,
- anon_sym_PIPE_PIPE,
- anon_sym_GT_GT_GT,
- anon_sym_LT_LT,
- anon_sym_CARET,
- anon_sym_PERCENT,
- anon_sym_STAR_STAR,
- anon_sym_LT_EQ,
- anon_sym_EQ_EQ_EQ,
- anon_sym_BANG_EQ_EQ,
- anon_sym_GT_EQ,
- anon_sym_QMARK_QMARK,
- anon_sym_instanceof,
- anon_sym_PLUS_PLUS,
- anon_sym_DASH_DASH,
- anon_sym_BQUOTE,
- anon_sym_satisfies,
- anon_sym_implements,
- [38954] = 12,
- ACTIONS(89), 1,
- anon_sym_BQUOTE,
- ACTIONS(4059), 1,
- anon_sym_QMARK_DOT,
- ACTIONS(4519), 1,
- anon_sym_LPAREN,
- ACTIONS(4523), 1,
- anon_sym_LBRACK,
- ACTIONS(4525), 1,
- anon_sym_DOT,
- ACTIONS(4662), 1,
- anon_sym_LT,
- STATE(1812), 1,
- sym_type_arguments,
- STATE(4772), 1,
- sym_optional_chain,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- STATE(2133), 2,
- sym_template_string,
- sym_arguments,
- ACTIONS(4230), 12,
- anon_sym_STAR,
- anon_sym_BANG,
- anon_sym_in,
- anon_sym_GT,
- anon_sym_GT_GT,
- anon_sym_AMP,
- anon_sym_PIPE,
- anon_sym_PLUS,
- anon_sym_DASH,
- anon_sym_SLASH,
- anon_sym_EQ_EQ,
- anon_sym_BANG_EQ,
- ACTIONS(4232), 22,
- sym__automatic_semicolon,
- sym__ternary_qmark,
- anon_sym_as,
- anon_sym_COMMA,
- anon_sym_of,
- anon_sym_SEMI,
- anon_sym_AMP_AMP,
- anon_sym_PIPE_PIPE,
- anon_sym_GT_GT_GT,
- anon_sym_LT_LT,
- anon_sym_CARET,
- anon_sym_PERCENT,
- anon_sym_STAR_STAR,
- anon_sym_LT_EQ,
- anon_sym_EQ_EQ_EQ,
- anon_sym_BANG_EQ_EQ,
- anon_sym_GT_EQ,
- anon_sym_QMARK_QMARK,
- anon_sym_instanceof,
- anon_sym_PLUS_PLUS,
- anon_sym_DASH_DASH,
- anon_sym_satisfies,
- [39025] = 3,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(1889), 13,
- anon_sym_STAR,
- anon_sym_BANG,
- anon_sym_in,
- anon_sym_GT,
- anon_sym_GT_GT,
- anon_sym_AMP,
- anon_sym_PIPE,
- anon_sym_PLUS,
- anon_sym_DASH,
- anon_sym_SLASH,
- anon_sym_LT,
- anon_sym_EQ_EQ,
- anon_sym_BANG_EQ,
- ACTIONS(1891), 31,
- sym__ternary_qmark,
- anon_sym_as,
- anon_sym_LBRACE,
- anon_sym_COMMA,
- anon_sym_RBRACE,
- anon_sym_LPAREN,
- anon_sym_RPAREN,
- anon_sym_of,
- anon_sym_COLON,
- anon_sym_LBRACK,
- anon_sym_RBRACK,
- anon_sym_DOT,
- anon_sym_QMARK_DOT,
- anon_sym_AMP_AMP,
- anon_sym_PIPE_PIPE,
- anon_sym_GT_GT_GT,
- anon_sym_LT_LT,
- anon_sym_CARET,
- anon_sym_PERCENT,
- anon_sym_STAR_STAR,
- anon_sym_LT_EQ,
- anon_sym_EQ_EQ_EQ,
- anon_sym_BANG_EQ_EQ,
- anon_sym_GT_EQ,
- anon_sym_QMARK_QMARK,
- anon_sym_instanceof,
- anon_sym_PLUS_PLUS,
- anon_sym_DASH_DASH,
- anon_sym_BQUOTE,
- anon_sym_satisfies,
- anon_sym_implements,
- [39078] = 3,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(1805), 13,
- anon_sym_STAR,
- anon_sym_BANG,
- anon_sym_in,
- anon_sym_GT,
- anon_sym_GT_GT,
- anon_sym_AMP,
- anon_sym_PIPE,
- anon_sym_PLUS,
- anon_sym_DASH,
- anon_sym_SLASH,
- anon_sym_LT,
- anon_sym_EQ_EQ,
- anon_sym_BANG_EQ,
- ACTIONS(1807), 31,
- sym__ternary_qmark,
- anon_sym_as,
- anon_sym_LBRACE,
- anon_sym_COMMA,
- anon_sym_RBRACE,
- anon_sym_LPAREN,
- anon_sym_RPAREN,
- anon_sym_of,
- anon_sym_COLON,
- anon_sym_LBRACK,
- anon_sym_RBRACK,
- anon_sym_DOT,
- anon_sym_QMARK_DOT,
- anon_sym_AMP_AMP,
- anon_sym_PIPE_PIPE,
- anon_sym_GT_GT_GT,
- anon_sym_LT_LT,
- anon_sym_CARET,
- anon_sym_PERCENT,
- anon_sym_STAR_STAR,
- anon_sym_LT_EQ,
- anon_sym_EQ_EQ_EQ,
- anon_sym_BANG_EQ_EQ,
- anon_sym_GT_EQ,
- anon_sym_QMARK_QMARK,
- anon_sym_instanceof,
- anon_sym_PLUS_PLUS,
- anon_sym_DASH_DASH,
- anon_sym_BQUOTE,
- anon_sym_satisfies,
- anon_sym_implements,
- [39131] = 3,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(1759), 13,
- anon_sym_STAR,
- anon_sym_BANG,
- anon_sym_in,
- anon_sym_GT,
- anon_sym_GT_GT,
- anon_sym_AMP,
- anon_sym_PIPE,
- anon_sym_PLUS,
- anon_sym_DASH,
- anon_sym_SLASH,
- anon_sym_LT,
- anon_sym_EQ_EQ,
- anon_sym_BANG_EQ,
- ACTIONS(1761), 31,
- sym__ternary_qmark,
- anon_sym_as,
- anon_sym_LBRACE,
- anon_sym_COMMA,
- anon_sym_RBRACE,
- anon_sym_LPAREN,
- anon_sym_RPAREN,
- anon_sym_of,
- anon_sym_COLON,
- anon_sym_LBRACK,
- anon_sym_RBRACK,
- anon_sym_DOT,
- anon_sym_QMARK_DOT,
- anon_sym_AMP_AMP,
- anon_sym_PIPE_PIPE,
- anon_sym_GT_GT_GT,
- anon_sym_LT_LT,
- anon_sym_CARET,
- anon_sym_PERCENT,
- anon_sym_STAR_STAR,
- anon_sym_LT_EQ,
- anon_sym_EQ_EQ_EQ,
- anon_sym_BANG_EQ_EQ,
- anon_sym_GT_EQ,
- anon_sym_QMARK_QMARK,
- anon_sym_instanceof,
- anon_sym_PLUS_PLUS,
- anon_sym_DASH_DASH,
- anon_sym_BQUOTE,
- anon_sym_satisfies,
- anon_sym_implements,
- [39184] = 3,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(4665), 13,
- anon_sym_STAR,
- anon_sym_BANG,
- anon_sym_in,
- anon_sym_GT,
- anon_sym_GT_GT,
- anon_sym_AMP,
- anon_sym_PIPE,
- anon_sym_PLUS,
- anon_sym_DASH,
- anon_sym_SLASH,
- anon_sym_LT,
- anon_sym_EQ_EQ,
- anon_sym_BANG_EQ,
- ACTIONS(4667), 31,
- sym__ternary_qmark,
- anon_sym_as,
- anon_sym_LBRACE,
- anon_sym_COMMA,
- anon_sym_RBRACE,
- anon_sym_LPAREN,
- anon_sym_RPAREN,
- anon_sym_of,
- anon_sym_COLON,
- anon_sym_LBRACK,
- anon_sym_RBRACK,
- anon_sym_DOT,
- anon_sym_QMARK_DOT,
- anon_sym_AMP_AMP,
- anon_sym_PIPE_PIPE,
- anon_sym_GT_GT_GT,
- anon_sym_LT_LT,
- anon_sym_CARET,
- anon_sym_PERCENT,
- anon_sym_STAR_STAR,
- anon_sym_LT_EQ,
- anon_sym_EQ_EQ_EQ,
- anon_sym_BANG_EQ_EQ,
- anon_sym_GT_EQ,
- anon_sym_QMARK_QMARK,
- anon_sym_instanceof,
- anon_sym_PLUS_PLUS,
- anon_sym_DASH_DASH,
- anon_sym_BQUOTE,
- anon_sym_satisfies,
- anon_sym_implements,
- [39237] = 4,
- ACTIONS(4440), 1,
- anon_sym_EQ,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(4438), 13,
- anon_sym_STAR,
- anon_sym_BANG,
- anon_sym_in,
- anon_sym_GT,
- anon_sym_GT_GT,
- anon_sym_AMP,
- anon_sym_PIPE,
- anon_sym_PLUS,
- anon_sym_DASH,
- anon_sym_SLASH,
- anon_sym_LT,
- anon_sym_EQ_EQ,
- anon_sym_BANG_EQ,
- ACTIONS(4442), 30,
- sym__ternary_qmark,
- anon_sym_as,
- anon_sym_LBRACE,
- anon_sym_COMMA,
- anon_sym_RBRACE,
- anon_sym_LPAREN,
- anon_sym_RPAREN,
- anon_sym_COLON,
- anon_sym_LBRACK,
- anon_sym_RBRACK,
- anon_sym_DOT,
- anon_sym_QMARK_DOT,
- anon_sym_AMP_AMP,
- anon_sym_PIPE_PIPE,
- anon_sym_GT_GT_GT,
- anon_sym_LT_LT,
- anon_sym_CARET,
- anon_sym_PERCENT,
- anon_sym_STAR_STAR,
- anon_sym_LT_EQ,
- anon_sym_EQ_EQ_EQ,
- anon_sym_BANG_EQ_EQ,
- anon_sym_GT_EQ,
- anon_sym_QMARK_QMARK,
- anon_sym_instanceof,
- anon_sym_PLUS_PLUS,
- anon_sym_DASH_DASH,
- anon_sym_BQUOTE,
- anon_sym_satisfies,
- anon_sym_implements,
- [39292] = 3,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(3400), 13,
- anon_sym_STAR,
- anon_sym_BANG,
- anon_sym_in,
- anon_sym_GT,
- anon_sym_GT_GT,
- anon_sym_AMP,
- anon_sym_PIPE,
- anon_sym_PLUS,
- anon_sym_DASH,
- anon_sym_SLASH,
- anon_sym_LT,
- anon_sym_EQ_EQ,
- anon_sym_BANG_EQ,
- ACTIONS(3404), 31,
- sym__ternary_qmark,
- anon_sym_as,
- anon_sym_LBRACE,
- anon_sym_COMMA,
- anon_sym_RBRACE,
- anon_sym_LPAREN,
- anon_sym_RPAREN,
- anon_sym_of,
- anon_sym_COLON,
- anon_sym_LBRACK,
- anon_sym_RBRACK,
- anon_sym_DOT,
- anon_sym_QMARK_DOT,
- anon_sym_AMP_AMP,
- anon_sym_PIPE_PIPE,
- anon_sym_GT_GT_GT,
- anon_sym_LT_LT,
- anon_sym_CARET,
- anon_sym_PERCENT,
- anon_sym_STAR_STAR,
- anon_sym_LT_EQ,
- anon_sym_EQ_EQ_EQ,
- anon_sym_BANG_EQ_EQ,
- anon_sym_GT_EQ,
- anon_sym_QMARK_QMARK,
- anon_sym_instanceof,
- anon_sym_PLUS_PLUS,
- anon_sym_DASH_DASH,
- anon_sym_BQUOTE,
- anon_sym_satisfies,
- anon_sym_implements,
- [39345] = 32,
- ACTIONS(89), 1,
- anon_sym_BQUOTE,
- ACTIONS(4059), 1,
- anon_sym_QMARK_DOT,
- ACTIONS(4519), 1,
- anon_sym_LPAREN,
- ACTIONS(4523), 1,
- anon_sym_LBRACK,
- ACTIONS(4525), 1,
- anon_sym_DOT,
- ACTIONS(4555), 1,
- anon_sym_as,
- ACTIONS(4562), 1,
- anon_sym_BANG,
- ACTIONS(4574), 1,
- anon_sym_satisfies,
- ACTIONS(4582), 1,
- anon_sym_AMP_AMP,
- ACTIONS(4584), 1,
- anon_sym_PIPE_PIPE,
- ACTIONS(4586), 1,
- anon_sym_GT_GT,
- ACTIONS(4590), 1,
- anon_sym_AMP,
- ACTIONS(4592), 1,
- anon_sym_CARET,
- ACTIONS(4594), 1,
- anon_sym_PIPE,
- ACTIONS(4598), 1,
- anon_sym_PERCENT,
- ACTIONS(4600), 1,
- anon_sym_STAR_STAR,
- ACTIONS(4602), 1,
- anon_sym_LT,
- ACTIONS(4610), 1,
- anon_sym_QMARK_QMARK,
- ACTIONS(4612), 1,
- sym__ternary_qmark,
- STATE(1812), 1,
- sym_type_arguments,
- STATE(4772), 1,
- sym_optional_chain,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(4545), 2,
- anon_sym_PLUS_PLUS,
- anon_sym_DASH_DASH,
- ACTIONS(4578), 2,
- anon_sym_STAR,
- anon_sym_SLASH,
- ACTIONS(4580), 2,
- anon_sym_in,
- anon_sym_GT,
- ACTIONS(4588), 2,
- anon_sym_GT_GT_GT,
- anon_sym_LT_LT,
- ACTIONS(4596), 2,
- anon_sym_PLUS,
- anon_sym_DASH,
- ACTIONS(4606), 2,
- anon_sym_EQ_EQ,
- anon_sym_BANG_EQ,
- ACTIONS(4608), 2,
- anon_sym_EQ_EQ_EQ,
- anon_sym_BANG_EQ_EQ,
- STATE(2133), 2,
- sym_template_string,
- sym_arguments,
- ACTIONS(4604), 3,
- anon_sym_LT_EQ,
- anon_sym_GT_EQ,
- anon_sym_instanceof,
- ACTIONS(4297), 4,
- sym__automatic_semicolon,
- anon_sym_COMMA,
- anon_sym_of,
- anon_sym_SEMI,
- [39456] = 34,
- ACTIONS(89), 1,
- anon_sym_BQUOTE,
- ACTIONS(4059), 1,
- anon_sym_QMARK_DOT,
- ACTIONS(4519), 1,
- anon_sym_LPAREN,
- ACTIONS(4523), 1,
- anon_sym_LBRACK,
- ACTIONS(4525), 1,
- anon_sym_DOT,
- ACTIONS(4527), 1,
- anon_sym_GT_GT,
- ACTIONS(4533), 1,
- anon_sym_PERCENT,
- ACTIONS(4535), 1,
- anon_sym_STAR_STAR,
- ACTIONS(4537), 1,
- anon_sym_LT,
- ACTIONS(4553), 1,
- anon_sym_AMP,
- ACTIONS(4555), 1,
- anon_sym_as,
- ACTIONS(4562), 1,
- anon_sym_BANG,
- ACTIONS(4564), 1,
- anon_sym_AMP_AMP,
- ACTIONS(4566), 1,
- anon_sym_PIPE_PIPE,
- ACTIONS(4568), 1,
- anon_sym_CARET,
- ACTIONS(4570), 1,
- anon_sym_PIPE,
- ACTIONS(4572), 1,
- anon_sym_QMARK_QMARK,
- ACTIONS(4574), 1,
- anon_sym_satisfies,
- ACTIONS(4576), 1,
- sym__ternary_qmark,
- ACTIONS(4669), 1,
- anon_sym_COMMA,
- ACTIONS(4672), 1,
- anon_sym_RBRACE,
- STATE(1812), 1,
- sym_type_arguments,
- STATE(4772), 1,
- sym_optional_chain,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(4517), 2,
- anon_sym_STAR,
- anon_sym_SLASH,
- ACTIONS(4521), 2,
- anon_sym_in,
- anon_sym_GT,
- ACTIONS(4529), 2,
- anon_sym_GT_GT_GT,
- anon_sym_LT_LT,
- ACTIONS(4531), 2,
- anon_sym_PLUS,
- anon_sym_DASH,
- ACTIONS(4541), 2,
- anon_sym_EQ_EQ,
- anon_sym_BANG_EQ,
- ACTIONS(4543), 2,
- anon_sym_EQ_EQ_EQ,
- anon_sym_BANG_EQ_EQ,
- ACTIONS(4545), 2,
- anon_sym_PLUS_PLUS,
- anon_sym_DASH_DASH,
- ACTIONS(4674), 2,
- sym__automatic_semicolon,
- anon_sym_SEMI,
- STATE(2133), 2,
- sym_template_string,
- sym_arguments,
- ACTIONS(4539), 3,
- anon_sym_LT_EQ,
- anon_sym_GT_EQ,
- anon_sym_instanceof,
- [39571] = 5,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(4678), 2,
- anon_sym_EQ,
- anon_sym_QMARK,
- ACTIONS(4682), 5,
- anon_sym_COMMA,
- anon_sym_RBRACE,
- anon_sym_RPAREN,
- anon_sym_COLON,
- anon_sym_RBRACK,
- ACTIONS(4676), 13,
- anon_sym_STAR,
- anon_sym_BANG,
- anon_sym_in,
- anon_sym_GT,
- anon_sym_GT_GT,
- anon_sym_AMP,
- anon_sym_PIPE,
- anon_sym_PLUS,
- anon_sym_DASH,
- anon_sym_SLASH,
- anon_sym_LT,
- anon_sym_EQ_EQ,
- anon_sym_BANG_EQ,
- ACTIONS(4680), 24,
- sym__ternary_qmark,
- anon_sym_as,
- anon_sym_LPAREN,
- anon_sym_of,
- anon_sym_LBRACK,
- anon_sym_DOT,
- anon_sym_QMARK_DOT,
- anon_sym_AMP_AMP,
- anon_sym_PIPE_PIPE,
- anon_sym_GT_GT_GT,
- anon_sym_LT_LT,
- anon_sym_CARET,
- anon_sym_PERCENT,
- anon_sym_STAR_STAR,
- anon_sym_LT_EQ,
- anon_sym_EQ_EQ_EQ,
- anon_sym_BANG_EQ_EQ,
- anon_sym_GT_EQ,
- anon_sym_QMARK_QMARK,
- anon_sym_instanceof,
- anon_sym_PLUS_PLUS,
- anon_sym_DASH_DASH,
- anon_sym_BQUOTE,
- anon_sym_satisfies,
- [39628] = 3,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(1781), 13,
- anon_sym_STAR,
- anon_sym_BANG,
- anon_sym_in,
- anon_sym_GT,
- anon_sym_GT_GT,
- anon_sym_AMP,
- anon_sym_PIPE,
- anon_sym_PLUS,
- anon_sym_DASH,
- anon_sym_SLASH,
- anon_sym_LT,
- anon_sym_EQ_EQ,
- anon_sym_BANG_EQ,
- ACTIONS(1779), 31,
- sym__automatic_semicolon,
- sym__ternary_qmark,
- anon_sym_as,
- anon_sym_COMMA,
- anon_sym_RBRACE,
- anon_sym_else,
- anon_sym_LPAREN,
- anon_sym_of,
- anon_sym_while,
- anon_sym_SEMI,
- anon_sym_LBRACK,
- anon_sym_DOT,
- anon_sym_QMARK_DOT,
- anon_sym_AMP_AMP,
- anon_sym_PIPE_PIPE,
- anon_sym_GT_GT_GT,
- anon_sym_LT_LT,
- anon_sym_CARET,
- anon_sym_PERCENT,
- anon_sym_STAR_STAR,
- anon_sym_LT_EQ,
- anon_sym_EQ_EQ_EQ,
- anon_sym_BANG_EQ_EQ,
- anon_sym_GT_EQ,
- anon_sym_QMARK_QMARK,
- anon_sym_instanceof,
- anon_sym_PLUS_PLUS,
- anon_sym_DASH_DASH,
- anon_sym_BQUOTE,
- anon_sym_satisfies,
- anon_sym_PIPE_RBRACE,
- [39681] = 15,
- ACTIONS(2275), 1,
- anon_sym_DQUOTE,
- ACTIONS(2277), 1,
- anon_sym_SQUOTE,
- ACTIONS(3737), 1,
- anon_sym_COMMA,
- ACTIONS(3838), 1,
- anon_sym_RBRACE,
- ACTIONS(4241), 1,
- anon_sym_STAR,
- ACTIONS(4243), 1,
- anon_sym_EQ,
- ACTIONS(4634), 1,
- anon_sym_LBRACK,
- STATE(4671), 1,
- aux_sym_object_repeat1,
- STATE(4672), 1,
- aux_sym_object_pattern_repeat1,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(4636), 2,
- sym_number,
- sym_private_property_identifier,
- ACTIONS(4638), 2,
- anon_sym_get,
- anon_sym_set,
- STATE(3770), 3,
- sym_string,
- sym__property_name,
- sym_computed_property_name,
- ACTIONS(3743), 7,
- sym__automatic_semicolon,
- anon_sym_LPAREN,
- anon_sym_SEMI,
- anon_sym_COLON,
- anon_sym_LT,
- anon_sym_QMARK,
- anon_sym_PIPE_RBRACE,
- ACTIONS(2307), 21,
- anon_sym_export,
- anon_sym_type,
- anon_sym_namespace,
- anon_sym_let,
- anon_sym_async,
- anon_sym_new,
- sym_identifier,
- anon_sym_static,
- anon_sym_readonly,
- anon_sym_declare,
- anon_sym_public,
- anon_sym_private,
- anon_sym_protected,
- anon_sym_override,
- anon_sym_module,
- anon_sym_any,
- anon_sym_number,
- anon_sym_boolean,
- anon_sym_string,
- anon_sym_symbol,
- anon_sym_object,
- [39758] = 3,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(1873), 13,
- anon_sym_STAR,
- anon_sym_BANG,
- anon_sym_in,
- anon_sym_GT,
- anon_sym_GT_GT,
- anon_sym_AMP,
- anon_sym_PIPE,
- anon_sym_PLUS,
- anon_sym_DASH,
- anon_sym_SLASH,
- anon_sym_LT,
- anon_sym_EQ_EQ,
- anon_sym_BANG_EQ,
- ACTIONS(1871), 31,
- sym__automatic_semicolon,
- sym__ternary_qmark,
- anon_sym_as,
- anon_sym_COMMA,
- anon_sym_RBRACE,
- anon_sym_else,
- anon_sym_LPAREN,
- anon_sym_of,
- anon_sym_while,
- anon_sym_SEMI,
- anon_sym_LBRACK,
- anon_sym_DOT,
- anon_sym_QMARK_DOT,
- anon_sym_AMP_AMP,
- anon_sym_PIPE_PIPE,
- anon_sym_GT_GT_GT,
- anon_sym_LT_LT,
- anon_sym_CARET,
- anon_sym_PERCENT,
- anon_sym_STAR_STAR,
- anon_sym_LT_EQ,
- anon_sym_EQ_EQ_EQ,
- anon_sym_BANG_EQ_EQ,
- anon_sym_GT_EQ,
- anon_sym_QMARK_QMARK,
- anon_sym_instanceof,
- anon_sym_PLUS_PLUS,
- anon_sym_DASH_DASH,
- anon_sym_BQUOTE,
- anon_sym_satisfies,
- anon_sym_PIPE_RBRACE,
- [39811] = 32,
- ACTIONS(89), 1,
- anon_sym_BQUOTE,
- ACTIONS(4059), 1,
- anon_sym_QMARK_DOT,
- ACTIONS(4519), 1,
- anon_sym_LPAREN,
- ACTIONS(4523), 1,
- anon_sym_LBRACK,
- ACTIONS(4525), 1,
- anon_sym_DOT,
- ACTIONS(4555), 1,
- anon_sym_as,
- ACTIONS(4562), 1,
- anon_sym_BANG,
- ACTIONS(4574), 1,
- anon_sym_satisfies,
- ACTIONS(4582), 1,
- anon_sym_AMP_AMP,
- ACTIONS(4584), 1,
- anon_sym_PIPE_PIPE,
- ACTIONS(4586), 1,
- anon_sym_GT_GT,
- ACTIONS(4590), 1,
- anon_sym_AMP,
- ACTIONS(4592), 1,
- anon_sym_CARET,
- ACTIONS(4594), 1,
- anon_sym_PIPE,
- ACTIONS(4598), 1,
- anon_sym_PERCENT,
- ACTIONS(4600), 1,
- anon_sym_STAR_STAR,
- ACTIONS(4602), 1,
- anon_sym_LT,
- ACTIONS(4610), 1,
- anon_sym_QMARK_QMARK,
- ACTIONS(4612), 1,
- sym__ternary_qmark,
- STATE(1812), 1,
- sym_type_arguments,
- STATE(4772), 1,
- sym_optional_chain,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(4545), 2,
- anon_sym_PLUS_PLUS,
- anon_sym_DASH_DASH,
- ACTIONS(4578), 2,
- anon_sym_STAR,
- anon_sym_SLASH,
- ACTIONS(4580), 2,
- anon_sym_in,
- anon_sym_GT,
- ACTIONS(4588), 2,
- anon_sym_GT_GT_GT,
- anon_sym_LT_LT,
- ACTIONS(4596), 2,
- anon_sym_PLUS,
- anon_sym_DASH,
- ACTIONS(4606), 2,
- anon_sym_EQ_EQ,
- anon_sym_BANG_EQ,
- ACTIONS(4608), 2,
- anon_sym_EQ_EQ_EQ,
- anon_sym_BANG_EQ_EQ,
- STATE(2133), 2,
- sym_template_string,
- sym_arguments,
- ACTIONS(4604), 3,
- anon_sym_LT_EQ,
- anon_sym_GT_EQ,
- anon_sym_instanceof,
- ACTIONS(4299), 4,
- sym__automatic_semicolon,
- anon_sym_COMMA,
- anon_sym_of,
- anon_sym_SEMI,
- [39922] = 15,
- ACTIONS(2275), 1,
- anon_sym_DQUOTE,
- ACTIONS(2277), 1,
- anon_sym_SQUOTE,
- ACTIONS(3737), 1,
- anon_sym_COMMA,
- ACTIONS(3829), 1,
- anon_sym_RBRACE,
- ACTIONS(4241), 1,
- anon_sym_STAR,
- ACTIONS(4243), 1,
- anon_sym_EQ,
- ACTIONS(4634), 1,
- anon_sym_LBRACK,
- STATE(4672), 1,
- aux_sym_object_pattern_repeat1,
- STATE(5156), 1,
- aux_sym_object_repeat1,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(4636), 2,
- sym_number,
- sym_private_property_identifier,
- ACTIONS(4638), 2,
- anon_sym_get,
- anon_sym_set,
- STATE(3770), 3,
- sym_string,
- sym__property_name,
- sym_computed_property_name,
- ACTIONS(3743), 7,
- sym__automatic_semicolon,
- anon_sym_LPAREN,
- anon_sym_SEMI,
- anon_sym_COLON,
- anon_sym_LT,
- anon_sym_QMARK,
- anon_sym_PIPE_RBRACE,
- ACTIONS(2307), 21,
- anon_sym_export,
- anon_sym_type,
- anon_sym_namespace,
- anon_sym_let,
- anon_sym_async,
- anon_sym_new,
- sym_identifier,
- anon_sym_static,
- anon_sym_readonly,
- anon_sym_declare,
- anon_sym_public,
- anon_sym_private,
- anon_sym_protected,
- anon_sym_override,
- anon_sym_module,
- anon_sym_any,
- anon_sym_number,
- anon_sym_boolean,
- anon_sym_string,
- anon_sym_symbol,
- anon_sym_object,
- [39999] = 19,
- ACTIONS(89), 1,
- anon_sym_BQUOTE,
- ACTIONS(4059), 1,
- anon_sym_QMARK_DOT,
- ACTIONS(4519), 1,
- anon_sym_LPAREN,
- ACTIONS(4523), 1,
- anon_sym_LBRACK,
- ACTIONS(4525), 1,
- anon_sym_DOT,
- ACTIONS(4586), 1,
- anon_sym_GT_GT,
- ACTIONS(4598), 1,
- anon_sym_PERCENT,
- ACTIONS(4600), 1,
- anon_sym_STAR_STAR,
- ACTIONS(4602), 1,
- anon_sym_LT,
- STATE(1812), 1,
- sym_type_arguments,
- STATE(4772), 1,
- sym_optional_chain,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(4545), 2,
- anon_sym_PLUS_PLUS,
- anon_sym_DASH_DASH,
- ACTIONS(4578), 2,
- anon_sym_STAR,
- anon_sym_SLASH,
- ACTIONS(4588), 2,
- anon_sym_GT_GT_GT,
- anon_sym_LT_LT,
- ACTIONS(4596), 2,
- anon_sym_PLUS,
- anon_sym_DASH,
- STATE(2133), 2,
- sym_template_string,
- sym_arguments,
- ACTIONS(4307), 7,
- anon_sym_BANG,
- anon_sym_in,
- anon_sym_GT,
- anon_sym_AMP,
- anon_sym_PIPE,
- anon_sym_EQ_EQ,
- anon_sym_BANG_EQ,
- ACTIONS(4305), 16,
- sym__automatic_semicolon,
- sym__ternary_qmark,
- anon_sym_as,
- anon_sym_COMMA,
- anon_sym_of,
- anon_sym_SEMI,
- anon_sym_AMP_AMP,
- anon_sym_PIPE_PIPE,
- anon_sym_CARET,
- anon_sym_LT_EQ,
- anon_sym_EQ_EQ_EQ,
- anon_sym_BANG_EQ_EQ,
- anon_sym_GT_EQ,
- anon_sym_QMARK_QMARK,
- anon_sym_instanceof,
- anon_sym_satisfies,
- [40084] = 32,
- ACTIONS(89), 1,
- anon_sym_BQUOTE,
- ACTIONS(4059), 1,
- anon_sym_QMARK_DOT,
- ACTIONS(4519), 1,
- anon_sym_LPAREN,
- ACTIONS(4523), 1,
- anon_sym_LBRACK,
- ACTIONS(4525), 1,
- anon_sym_DOT,
- ACTIONS(4527), 1,
- anon_sym_GT_GT,
- ACTIONS(4533), 1,
- anon_sym_PERCENT,
- ACTIONS(4535), 1,
- anon_sym_STAR_STAR,
- ACTIONS(4537), 1,
- anon_sym_LT,
- ACTIONS(4553), 1,
- anon_sym_AMP,
- ACTIONS(4555), 1,
- anon_sym_as,
- ACTIONS(4562), 1,
- anon_sym_BANG,
- ACTIONS(4564), 1,
- anon_sym_AMP_AMP,
- ACTIONS(4566), 1,
- anon_sym_PIPE_PIPE,
- ACTIONS(4568), 1,
- anon_sym_CARET,
- ACTIONS(4570), 1,
- anon_sym_PIPE,
- ACTIONS(4572), 1,
- anon_sym_QMARK_QMARK,
- ACTIONS(4574), 1,
- anon_sym_satisfies,
- ACTIONS(4576), 1,
- sym__ternary_qmark,
- STATE(1812), 1,
- sym_type_arguments,
- STATE(4772), 1,
- sym_optional_chain,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(4517), 2,
- anon_sym_STAR,
- anon_sym_SLASH,
- ACTIONS(4521), 2,
- anon_sym_in,
- anon_sym_GT,
- ACTIONS(4529), 2,
- anon_sym_GT_GT_GT,
- anon_sym_LT_LT,
- ACTIONS(4531), 2,
- anon_sym_PLUS,
- anon_sym_DASH,
- ACTIONS(4541), 2,
- anon_sym_EQ_EQ,
- anon_sym_BANG_EQ,
- ACTIONS(4543), 2,
- anon_sym_EQ_EQ_EQ,
- anon_sym_BANG_EQ_EQ,
- ACTIONS(4545), 2,
- anon_sym_PLUS_PLUS,
- anon_sym_DASH_DASH,
- STATE(2133), 2,
- sym_template_string,
- sym_arguments,
- ACTIONS(4539), 3,
- anon_sym_LT_EQ,
- anon_sym_GT_EQ,
- anon_sym_instanceof,
- ACTIONS(4388), 4,
- sym__automatic_semicolon,
- anon_sym_COMMA,
- anon_sym_RBRACE,
- anon_sym_SEMI,
- [40195] = 16,
- ACTIONS(89), 1,
- anon_sym_BQUOTE,
- ACTIONS(4059), 1,
- anon_sym_QMARK_DOT,
- ACTIONS(4519), 1,
- anon_sym_LPAREN,
- ACTIONS(4523), 1,
- anon_sym_LBRACK,
- ACTIONS(4525), 1,
- anon_sym_DOT,
- ACTIONS(4555), 1,
- anon_sym_as,
- ACTIONS(4562), 1,
- anon_sym_BANG,
- ACTIONS(4574), 1,
- anon_sym_satisfies,
- ACTIONS(4685), 1,
- anon_sym_LT,
- STATE(1812), 1,
- sym_type_arguments,
- STATE(4772), 1,
- sym_optional_chain,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(4545), 2,
- anon_sym_PLUS_PLUS,
- anon_sym_DASH_DASH,
- STATE(2133), 2,
- sym_template_string,
- sym_arguments,
- ACTIONS(4199), 11,
- anon_sym_STAR,
- anon_sym_in,
- anon_sym_GT,
- anon_sym_GT_GT,
- anon_sym_AMP,
- anon_sym_PIPE,
- anon_sym_PLUS,
- anon_sym_DASH,
- anon_sym_SLASH,
- anon_sym_EQ_EQ,
- anon_sym_BANG_EQ,
- ACTIONS(4201), 18,
- sym__automatic_semicolon,
- sym__ternary_qmark,
- anon_sym_COMMA,
- anon_sym_RBRACE,
- anon_sym_SEMI,
- anon_sym_AMP_AMP,
- anon_sym_PIPE_PIPE,
- anon_sym_GT_GT_GT,
- anon_sym_LT_LT,
- anon_sym_CARET,
- anon_sym_PERCENT,
- anon_sym_STAR_STAR,
- anon_sym_LT_EQ,
- anon_sym_EQ_EQ_EQ,
- anon_sym_BANG_EQ_EQ,
- anon_sym_GT_EQ,
- anon_sym_QMARK_QMARK,
- anon_sym_instanceof,
- [40274] = 16,
- ACTIONS(1594), 1,
- anon_sym_DQUOTE,
- ACTIONS(1596), 1,
- anon_sym_SQUOTE,
- ACTIONS(3737), 1,
- anon_sym_COMMA,
- ACTIONS(3829), 1,
- anon_sym_RBRACE,
- ACTIONS(4241), 1,
- anon_sym_STAR,
- ACTIONS(4243), 1,
- anon_sym_EQ,
- ACTIONS(4247), 1,
- anon_sym_async,
- ACTIONS(4658), 1,
- anon_sym_LBRACK,
- STATE(4672), 1,
- aux_sym_object_pattern_repeat1,
- STATE(5156), 1,
- aux_sym_object_repeat1,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(4249), 2,
- sym_number,
- sym_private_property_identifier,
- ACTIONS(4253), 2,
- anon_sym_get,
- anon_sym_set,
- STATE(3081), 3,
- sym_string,
- sym__property_name,
- sym_computed_property_name,
- ACTIONS(3743), 7,
- sym__automatic_semicolon,
- anon_sym_LPAREN,
- anon_sym_SEMI,
- anon_sym_COLON,
- anon_sym_LT,
- anon_sym_QMARK,
- anon_sym_PIPE_RBRACE,
- ACTIONS(3607), 20,
- anon_sym_export,
- anon_sym_type,
- anon_sym_namespace,
- anon_sym_let,
- anon_sym_new,
- sym_identifier,
- anon_sym_static,
- anon_sym_readonly,
- anon_sym_declare,
- anon_sym_public,
- anon_sym_private,
- anon_sym_protected,
- anon_sym_override,
- anon_sym_module,
- anon_sym_any,
- anon_sym_number,
- anon_sym_boolean,
- anon_sym_string,
- anon_sym_symbol,
- anon_sym_object,
- [40353] = 14,
- ACTIONS(89), 1,
- anon_sym_BQUOTE,
- ACTIONS(4059), 1,
- anon_sym_QMARK_DOT,
- ACTIONS(4519), 1,
- anon_sym_LPAREN,
- ACTIONS(4523), 1,
- anon_sym_LBRACK,
- ACTIONS(4525), 1,
- anon_sym_DOT,
- ACTIONS(4600), 1,
- anon_sym_STAR_STAR,
- ACTIONS(4688), 1,
- anon_sym_LT,
- STATE(1812), 1,
- sym_type_arguments,
- STATE(4772), 1,
- sym_optional_chain,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(4545), 2,
- anon_sym_PLUS_PLUS,
- anon_sym_DASH_DASH,
- STATE(2133), 2,
- sym_template_string,
- sym_arguments,
- ACTIONS(4307), 12,
- anon_sym_STAR,
- anon_sym_BANG,
- anon_sym_in,
- anon_sym_GT,
- anon_sym_GT_GT,
- anon_sym_AMP,
- anon_sym_PIPE,
- anon_sym_PLUS,
- anon_sym_DASH,
- anon_sym_SLASH,
- anon_sym_EQ_EQ,
- anon_sym_BANG_EQ,
- ACTIONS(4305), 19,
- sym__automatic_semicolon,
- sym__ternary_qmark,
- anon_sym_as,
- anon_sym_COMMA,
- anon_sym_of,
- anon_sym_SEMI,
- anon_sym_AMP_AMP,
- anon_sym_PIPE_PIPE,
- anon_sym_GT_GT_GT,
- anon_sym_LT_LT,
- anon_sym_CARET,
- anon_sym_PERCENT,
- anon_sym_LT_EQ,
- anon_sym_EQ_EQ_EQ,
- anon_sym_BANG_EQ_EQ,
- anon_sym_GT_EQ,
- anon_sym_QMARK_QMARK,
- anon_sym_instanceof,
- anon_sym_satisfies,
- [40428] = 4,
- ACTIONS(4678), 1,
- anon_sym_EQ,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(4676), 13,
- anon_sym_STAR,
- anon_sym_BANG,
- anon_sym_in,
- anon_sym_GT,
- anon_sym_GT_GT,
- anon_sym_AMP,
- anon_sym_PIPE,
- anon_sym_PLUS,
- anon_sym_DASH,
- anon_sym_SLASH,
- anon_sym_LT,
- anon_sym_EQ_EQ,
- anon_sym_BANG_EQ,
- ACTIONS(4680), 30,
- sym__ternary_qmark,
- anon_sym_as,
- anon_sym_LBRACE,
- anon_sym_COMMA,
- anon_sym_RBRACE,
- anon_sym_LPAREN,
- anon_sym_RPAREN,
- anon_sym_COLON,
- anon_sym_LBRACK,
- anon_sym_RBRACK,
- anon_sym_DOT,
- anon_sym_QMARK_DOT,
- anon_sym_AMP_AMP,
- anon_sym_PIPE_PIPE,
- anon_sym_GT_GT_GT,
- anon_sym_LT_LT,
- anon_sym_CARET,
- anon_sym_PERCENT,
- anon_sym_STAR_STAR,
- anon_sym_LT_EQ,
- anon_sym_EQ_EQ_EQ,
- anon_sym_BANG_EQ_EQ,
- anon_sym_GT_EQ,
- anon_sym_QMARK_QMARK,
- anon_sym_instanceof,
- anon_sym_PLUS_PLUS,
- anon_sym_DASH_DASH,
- anon_sym_BQUOTE,
- anon_sym_satisfies,
- anon_sym_implements,
- [40483] = 26,
- ACTIONS(89), 1,
- anon_sym_BQUOTE,
- ACTIONS(4059), 1,
- anon_sym_QMARK_DOT,
- ACTIONS(4307), 1,
- anon_sym_BANG,
- ACTIONS(4519), 1,
- anon_sym_LPAREN,
- ACTIONS(4523), 1,
- anon_sym_LBRACK,
- ACTIONS(4525), 1,
- anon_sym_DOT,
- ACTIONS(4586), 1,
- anon_sym_GT_GT,
- ACTIONS(4590), 1,
- anon_sym_AMP,
- ACTIONS(4592), 1,
- anon_sym_CARET,
- ACTIONS(4594), 1,
- anon_sym_PIPE,
- ACTIONS(4598), 1,
- anon_sym_PERCENT,
- ACTIONS(4600), 1,
- anon_sym_STAR_STAR,
- ACTIONS(4602), 1,
- anon_sym_LT,
- STATE(1812), 1,
- sym_type_arguments,
- STATE(4772), 1,
- sym_optional_chain,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(4545), 2,
- anon_sym_PLUS_PLUS,
- anon_sym_DASH_DASH,
- ACTIONS(4578), 2,
- anon_sym_STAR,
- anon_sym_SLASH,
- ACTIONS(4580), 2,
- anon_sym_in,
- anon_sym_GT,
- ACTIONS(4588), 2,
- anon_sym_GT_GT_GT,
- anon_sym_LT_LT,
- ACTIONS(4596), 2,
- anon_sym_PLUS,
- anon_sym_DASH,
- ACTIONS(4606), 2,
- anon_sym_EQ_EQ,
- anon_sym_BANG_EQ,
- ACTIONS(4608), 2,
- anon_sym_EQ_EQ_EQ,
- anon_sym_BANG_EQ_EQ,
- STATE(2133), 2,
- sym_template_string,
- sym_arguments,
- ACTIONS(4604), 3,
- anon_sym_LT_EQ,
- anon_sym_GT_EQ,
- anon_sym_instanceof,
- ACTIONS(4305), 10,
- sym__automatic_semicolon,
- sym__ternary_qmark,
- anon_sym_as,
- anon_sym_COMMA,
- anon_sym_of,
- anon_sym_SEMI,
- anon_sym_AMP_AMP,
- anon_sym_PIPE_PIPE,
- anon_sym_QMARK_QMARK,
- anon_sym_satisfies,
- [40582] = 16,
- ACTIONS(1594), 1,
- anon_sym_DQUOTE,
- ACTIONS(1596), 1,
- anon_sym_SQUOTE,
- ACTIONS(3737), 1,
- anon_sym_COMMA,
- ACTIONS(3838), 1,
- anon_sym_RBRACE,
- ACTIONS(4241), 1,
- anon_sym_STAR,
- ACTIONS(4243), 1,
- anon_sym_EQ,
- ACTIONS(4247), 1,
- anon_sym_async,
- ACTIONS(4658), 1,
- anon_sym_LBRACK,
- STATE(4671), 1,
- aux_sym_object_repeat1,
- STATE(4672), 1,
- aux_sym_object_pattern_repeat1,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(4249), 2,
- sym_number,
- sym_private_property_identifier,
- ACTIONS(4253), 2,
- anon_sym_get,
- anon_sym_set,
- STATE(3081), 3,
- sym_string,
- sym__property_name,
- sym_computed_property_name,
- ACTIONS(3743), 7,
- sym__automatic_semicolon,
- anon_sym_LPAREN,
- anon_sym_SEMI,
- anon_sym_COLON,
- anon_sym_LT,
- anon_sym_QMARK,
- anon_sym_PIPE_RBRACE,
- ACTIONS(3607), 20,
- anon_sym_export,
- anon_sym_type,
- anon_sym_namespace,
- anon_sym_let,
- anon_sym_new,
- sym_identifier,
- anon_sym_static,
- anon_sym_readonly,
- anon_sym_declare,
- anon_sym_public,
- anon_sym_private,
- anon_sym_protected,
- anon_sym_override,
- anon_sym_module,
- anon_sym_any,
- anon_sym_number,
- anon_sym_boolean,
- anon_sym_string,
- anon_sym_symbol,
- anon_sym_object,
- [40661] = 32,
- ACTIONS(89), 1,
- anon_sym_BQUOTE,
- ACTIONS(4059), 1,
- anon_sym_QMARK_DOT,
- ACTIONS(4519), 1,
- anon_sym_LPAREN,
- ACTIONS(4523), 1,
- anon_sym_LBRACK,
- ACTIONS(4525), 1,
- anon_sym_DOT,
- ACTIONS(4527), 1,
- anon_sym_GT_GT,
- ACTIONS(4533), 1,
- anon_sym_PERCENT,
- ACTIONS(4535), 1,
- anon_sym_STAR_STAR,
- ACTIONS(4537), 1,
- anon_sym_LT,
- ACTIONS(4553), 1,
- anon_sym_AMP,
- ACTIONS(4555), 1,
- anon_sym_as,
- ACTIONS(4562), 1,
- anon_sym_BANG,
- ACTIONS(4564), 1,
- anon_sym_AMP_AMP,
- ACTIONS(4566), 1,
- anon_sym_PIPE_PIPE,
- ACTIONS(4568), 1,
- anon_sym_CARET,
- ACTIONS(4570), 1,
- anon_sym_PIPE,
- ACTIONS(4572), 1,
- anon_sym_QMARK_QMARK,
- ACTIONS(4574), 1,
- anon_sym_satisfies,
- ACTIONS(4576), 1,
- sym__ternary_qmark,
- STATE(1812), 1,
- sym_type_arguments,
- STATE(4772), 1,
- sym_optional_chain,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(4517), 2,
- anon_sym_STAR,
- anon_sym_SLASH,
- ACTIONS(4521), 2,
- anon_sym_in,
- anon_sym_GT,
- ACTIONS(4529), 2,
- anon_sym_GT_GT_GT,
- anon_sym_LT_LT,
- ACTIONS(4531), 2,
- anon_sym_PLUS,
- anon_sym_DASH,
- ACTIONS(4541), 2,
- anon_sym_EQ_EQ,
- anon_sym_BANG_EQ,
- ACTIONS(4543), 2,
- anon_sym_EQ_EQ_EQ,
- anon_sym_BANG_EQ_EQ,
- ACTIONS(4545), 2,
- anon_sym_PLUS_PLUS,
- anon_sym_DASH_DASH,
- STATE(2133), 2,
- sym_template_string,
- sym_arguments,
- ACTIONS(4539), 3,
- anon_sym_LT_EQ,
- anon_sym_GT_EQ,
- anon_sym_instanceof,
- ACTIONS(4283), 4,
- sym__automatic_semicolon,
- anon_sym_COMMA,
- anon_sym_RBRACE,
- anon_sym_SEMI,
- [40772] = 6,
- ACTIONS(4330), 1,
- anon_sym_extends,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(4691), 2,
- anon_sym_COMMA,
- anon_sym_LBRACK,
- ACTIONS(4694), 3,
- anon_sym_GT,
- anon_sym_AMP,
- anon_sym_PIPE,
- ACTIONS(3400), 10,
- anon_sym_STAR,
- anon_sym_BANG,
- anon_sym_in,
- anon_sym_GT_GT,
- anon_sym_PLUS,
- anon_sym_DASH,
- anon_sym_SLASH,
- anon_sym_LT,
- anon_sym_EQ_EQ,
- anon_sym_BANG_EQ,
- ACTIONS(3404), 28,
- sym__ternary_qmark,
- anon_sym_as,
- anon_sym_LBRACE,
- anon_sym_RBRACE,
- anon_sym_LPAREN,
- anon_sym_RPAREN,
- anon_sym_COLON,
- anon_sym_RBRACK,
- anon_sym_DOT,
- anon_sym_QMARK_DOT,
- anon_sym_AMP_AMP,
- anon_sym_PIPE_PIPE,
- anon_sym_GT_GT_GT,
- anon_sym_LT_LT,
- anon_sym_CARET,
- anon_sym_PERCENT,
- anon_sym_STAR_STAR,
- anon_sym_LT_EQ,
- anon_sym_EQ_EQ_EQ,
- anon_sym_BANG_EQ_EQ,
- anon_sym_GT_EQ,
- anon_sym_QMARK_QMARK,
- anon_sym_instanceof,
- anon_sym_PLUS_PLUS,
- anon_sym_DASH_DASH,
- anon_sym_BQUOTE,
- anon_sym_satisfies,
- anon_sym_implements,
- [40831] = 34,
- ACTIONS(89), 1,
- anon_sym_BQUOTE,
- ACTIONS(4059), 1,
- anon_sym_QMARK_DOT,
- ACTIONS(4519), 1,
- anon_sym_LPAREN,
- ACTIONS(4523), 1,
- anon_sym_LBRACK,
- ACTIONS(4525), 1,
- anon_sym_DOT,
- ACTIONS(4527), 1,
- anon_sym_GT_GT,
- ACTIONS(4533), 1,
- anon_sym_PERCENT,
- ACTIONS(4535), 1,
- anon_sym_STAR_STAR,
- ACTIONS(4537), 1,
- anon_sym_LT,
- ACTIONS(4553), 1,
- anon_sym_AMP,
- ACTIONS(4555), 1,
- anon_sym_as,
- ACTIONS(4562), 1,
- anon_sym_BANG,
- ACTIONS(4564), 1,
- anon_sym_AMP_AMP,
- ACTIONS(4566), 1,
- anon_sym_PIPE_PIPE,
- ACTIONS(4568), 1,
- anon_sym_CARET,
- ACTIONS(4570), 1,
- anon_sym_PIPE,
- ACTIONS(4572), 1,
- anon_sym_QMARK_QMARK,
- ACTIONS(4574), 1,
- anon_sym_satisfies,
- ACTIONS(4576), 1,
- sym__ternary_qmark,
- ACTIONS(4669), 1,
- anon_sym_COMMA,
- ACTIONS(4672), 1,
- anon_sym_RBRACE,
- STATE(1812), 1,
- sym_type_arguments,
- STATE(4772), 1,
- sym_optional_chain,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(4257), 2,
- sym__automatic_semicolon,
- anon_sym_SEMI,
- ACTIONS(4517), 2,
- anon_sym_STAR,
- anon_sym_SLASH,
- ACTIONS(4521), 2,
- anon_sym_in,
- anon_sym_GT,
- ACTIONS(4529), 2,
- anon_sym_GT_GT_GT,
- anon_sym_LT_LT,
- ACTIONS(4531), 2,
- anon_sym_PLUS,
- anon_sym_DASH,
- ACTIONS(4541), 2,
- anon_sym_EQ_EQ,
- anon_sym_BANG_EQ,
- ACTIONS(4543), 2,
- anon_sym_EQ_EQ_EQ,
- anon_sym_BANG_EQ_EQ,
- ACTIONS(4545), 2,
- anon_sym_PLUS_PLUS,
- anon_sym_DASH_DASH,
- STATE(2133), 2,
- sym_template_string,
- sym_arguments,
- ACTIONS(4539), 3,
- anon_sym_LT_EQ,
- anon_sym_GT_EQ,
- anon_sym_instanceof,
- [40946] = 6,
- ACTIONS(4041), 1,
- anon_sym_extends,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(4697), 2,
- anon_sym_COMMA,
- anon_sym_LBRACK,
- ACTIONS(4700), 3,
- anon_sym_GT,
- anon_sym_AMP,
- anon_sym_PIPE,
- ACTIONS(3400), 10,
- anon_sym_STAR,
- anon_sym_BANG,
- anon_sym_in,
- anon_sym_GT_GT,
- anon_sym_PLUS,
- anon_sym_DASH,
- anon_sym_SLASH,
- anon_sym_LT,
- anon_sym_EQ_EQ,
- anon_sym_BANG_EQ,
- ACTIONS(3404), 28,
- sym__ternary_qmark,
- anon_sym_as,
- anon_sym_LBRACE,
- anon_sym_RBRACE,
- anon_sym_LPAREN,
- anon_sym_RPAREN,
- anon_sym_COLON,
- anon_sym_RBRACK,
- anon_sym_DOT,
- anon_sym_QMARK_DOT,
- anon_sym_AMP_AMP,
- anon_sym_PIPE_PIPE,
- anon_sym_GT_GT_GT,
- anon_sym_LT_LT,
- anon_sym_CARET,
- anon_sym_PERCENT,
- anon_sym_STAR_STAR,
- anon_sym_LT_EQ,
- anon_sym_EQ_EQ_EQ,
- anon_sym_BANG_EQ_EQ,
- anon_sym_GT_EQ,
- anon_sym_QMARK_QMARK,
- anon_sym_instanceof,
- anon_sym_PLUS_PLUS,
- anon_sym_DASH_DASH,
- anon_sym_BQUOTE,
- anon_sym_satisfies,
- anon_sym_implements,
- [41005] = 32,
- ACTIONS(825), 1,
- anon_sym_BQUOTE,
- ACTIONS(3969), 1,
- anon_sym_LPAREN,
- ACTIONS(3971), 1,
- anon_sym_LBRACK,
- ACTIONS(3973), 1,
- anon_sym_DOT,
- ACTIONS(4051), 1,
- anon_sym_as,
- ACTIONS(4055), 1,
- anon_sym_BANG,
- ACTIONS(4059), 1,
- anon_sym_QMARK_DOT,
- ACTIONS(4061), 1,
- anon_sym_AMP_AMP,
- ACTIONS(4063), 1,
- anon_sym_PIPE_PIPE,
- ACTIONS(4065), 1,
- anon_sym_GT_GT,
- ACTIONS(4069), 1,
- anon_sym_AMP,
- ACTIONS(4071), 1,
- anon_sym_CARET,
- ACTIONS(4073), 1,
- anon_sym_PIPE,
- ACTIONS(4077), 1,
- anon_sym_PERCENT,
- ACTIONS(4079), 1,
- anon_sym_STAR_STAR,
- ACTIONS(4081), 1,
- anon_sym_LT,
- ACTIONS(4089), 1,
- anon_sym_QMARK_QMARK,
- ACTIONS(4093), 1,
- anon_sym_satisfies,
- ACTIONS(4095), 1,
- sym__ternary_qmark,
- STATE(1447), 1,
- sym_type_arguments,
- STATE(5080), 1,
- sym_optional_chain,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(4049), 2,
- anon_sym_STAR,
- anon_sym_SLASH,
- ACTIONS(4057), 2,
- anon_sym_in,
- anon_sym_GT,
- ACTIONS(4067), 2,
- anon_sym_GT_GT_GT,
- anon_sym_LT_LT,
- ACTIONS(4075), 2,
- anon_sym_PLUS,
- anon_sym_DASH,
- ACTIONS(4085), 2,
- anon_sym_EQ_EQ,
- anon_sym_BANG_EQ,
- ACTIONS(4087), 2,
- anon_sym_EQ_EQ_EQ,
- anon_sym_BANG_EQ_EQ,
- ACTIONS(4091), 2,
- anon_sym_PLUS_PLUS,
- anon_sym_DASH_DASH,
- STATE(1757), 2,
- sym_template_string,
- sym_arguments,
- ACTIONS(4083), 3,
- anon_sym_LT_EQ,
- anon_sym_GT_EQ,
- anon_sym_instanceof,
- ACTIONS(4703), 4,
- anon_sym_COMMA,
- anon_sym_RBRACE,
- anon_sym_RPAREN,
- anon_sym_RBRACK,
- [41116] = 27,
- ACTIONS(89), 1,
- anon_sym_BQUOTE,
- ACTIONS(4059), 1,
- anon_sym_QMARK_DOT,
- ACTIONS(4307), 1,
- anon_sym_BANG,
- ACTIONS(4519), 1,
- anon_sym_LPAREN,
- ACTIONS(4523), 1,
- anon_sym_LBRACK,
- ACTIONS(4525), 1,
- anon_sym_DOT,
- ACTIONS(4582), 1,
- anon_sym_AMP_AMP,
- ACTIONS(4586), 1,
- anon_sym_GT_GT,
- ACTIONS(4590), 1,
- anon_sym_AMP,
- ACTIONS(4592), 1,
- anon_sym_CARET,
- ACTIONS(4594), 1,
- anon_sym_PIPE,
- ACTIONS(4598), 1,
- anon_sym_PERCENT,
- ACTIONS(4600), 1,
- anon_sym_STAR_STAR,
- ACTIONS(4602), 1,
- anon_sym_LT,
- STATE(1812), 1,
- sym_type_arguments,
- STATE(4772), 1,
- sym_optional_chain,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(4545), 2,
- anon_sym_PLUS_PLUS,
- anon_sym_DASH_DASH,
- ACTIONS(4578), 2,
- anon_sym_STAR,
- anon_sym_SLASH,
- ACTIONS(4580), 2,
- anon_sym_in,
- anon_sym_GT,
- ACTIONS(4588), 2,
- anon_sym_GT_GT_GT,
- anon_sym_LT_LT,
- ACTIONS(4596), 2,
- anon_sym_PLUS,
- anon_sym_DASH,
- ACTIONS(4606), 2,
- anon_sym_EQ_EQ,
- anon_sym_BANG_EQ,
- ACTIONS(4608), 2,
- anon_sym_EQ_EQ_EQ,
- anon_sym_BANG_EQ_EQ,
- STATE(2133), 2,
- sym_template_string,
- sym_arguments,
- ACTIONS(4604), 3,
- anon_sym_LT_EQ,
- anon_sym_GT_EQ,
- anon_sym_instanceof,
- ACTIONS(4305), 9,
- sym__automatic_semicolon,
- sym__ternary_qmark,
- anon_sym_as,
- anon_sym_COMMA,
- anon_sym_of,
- anon_sym_SEMI,
- anon_sym_PIPE_PIPE,
- anon_sym_QMARK_QMARK,
- anon_sym_satisfies,
- [41217] = 17,
- ACTIONS(89), 1,
- anon_sym_BQUOTE,
- ACTIONS(4059), 1,
- anon_sym_QMARK_DOT,
- ACTIONS(4519), 1,
- anon_sym_LPAREN,
- ACTIONS(4523), 1,
- anon_sym_LBRACK,
- ACTIONS(4525), 1,
- anon_sym_DOT,
- ACTIONS(4598), 1,
- anon_sym_PERCENT,
- ACTIONS(4600), 1,
- anon_sym_STAR_STAR,
- ACTIONS(4688), 1,
- anon_sym_LT,
- STATE(1812), 1,
- sym_type_arguments,
- STATE(4772), 1,
- sym_optional_chain,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(4545), 2,
- anon_sym_PLUS_PLUS,
- anon_sym_DASH_DASH,
- ACTIONS(4578), 2,
- anon_sym_STAR,
- anon_sym_SLASH,
- ACTIONS(4596), 2,
- anon_sym_PLUS,
- anon_sym_DASH,
- STATE(2133), 2,
- sym_template_string,
- sym_arguments,
- ACTIONS(4307), 8,
- anon_sym_BANG,
- anon_sym_in,
- anon_sym_GT,
- anon_sym_GT_GT,
- anon_sym_AMP,
- anon_sym_PIPE,
- anon_sym_EQ_EQ,
- anon_sym_BANG_EQ,
- ACTIONS(4305), 18,
- sym__automatic_semicolon,
- sym__ternary_qmark,
- anon_sym_as,
- anon_sym_COMMA,
- anon_sym_of,
- anon_sym_SEMI,
- anon_sym_AMP_AMP,
- anon_sym_PIPE_PIPE,
- anon_sym_GT_GT_GT,
- anon_sym_LT_LT,
- anon_sym_CARET,
- anon_sym_LT_EQ,
- anon_sym_EQ_EQ_EQ,
- anon_sym_BANG_EQ_EQ,
- anon_sym_GT_EQ,
- anon_sym_QMARK_QMARK,
- anon_sym_instanceof,
- anon_sym_satisfies,
- [41298] = 23,
- ACTIONS(89), 1,
- anon_sym_BQUOTE,
- ACTIONS(4059), 1,
- anon_sym_QMARK_DOT,
- ACTIONS(4519), 1,
- anon_sym_LPAREN,
- ACTIONS(4523), 1,
- anon_sym_LBRACK,
- ACTIONS(4525), 1,
- anon_sym_DOT,
- ACTIONS(4586), 1,
- anon_sym_GT_GT,
- ACTIONS(4598), 1,
- anon_sym_PERCENT,
- ACTIONS(4600), 1,
- anon_sym_STAR_STAR,
- ACTIONS(4602), 1,
- anon_sym_LT,
- STATE(1812), 1,
- sym_type_arguments,
- STATE(4772), 1,
- sym_optional_chain,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(4545), 2,
- anon_sym_PLUS_PLUS,
- anon_sym_DASH_DASH,
- ACTIONS(4578), 2,
- anon_sym_STAR,
- anon_sym_SLASH,
- ACTIONS(4580), 2,
- anon_sym_in,
- anon_sym_GT,
- ACTIONS(4588), 2,
- anon_sym_GT_GT_GT,
- anon_sym_LT_LT,
- ACTIONS(4596), 2,
- anon_sym_PLUS,
- anon_sym_DASH,
- ACTIONS(4606), 2,
- anon_sym_EQ_EQ,
- anon_sym_BANG_EQ,
- ACTIONS(4608), 2,
- anon_sym_EQ_EQ_EQ,
- anon_sym_BANG_EQ_EQ,
- STATE(2133), 2,
- sym_template_string,
- sym_arguments,
- ACTIONS(4307), 3,
- anon_sym_BANG,
- anon_sym_AMP,
- anon_sym_PIPE,
- ACTIONS(4604), 3,
- anon_sym_LT_EQ,
- anon_sym_GT_EQ,
- anon_sym_instanceof,
- ACTIONS(4305), 11,
- sym__automatic_semicolon,
- sym__ternary_qmark,
- anon_sym_as,
- anon_sym_COMMA,
- anon_sym_of,
- anon_sym_SEMI,
- anon_sym_AMP_AMP,
- anon_sym_PIPE_PIPE,
- anon_sym_CARET,
- anon_sym_QMARK_QMARK,
- anon_sym_satisfies,
- [41391] = 24,
- ACTIONS(89), 1,
- anon_sym_BQUOTE,
- ACTIONS(4059), 1,
- anon_sym_QMARK_DOT,
- ACTIONS(4519), 1,
- anon_sym_LPAREN,
- ACTIONS(4523), 1,
- anon_sym_LBRACK,
- ACTIONS(4525), 1,
- anon_sym_DOT,
- ACTIONS(4586), 1,
- anon_sym_GT_GT,
- ACTIONS(4590), 1,
- anon_sym_AMP,
- ACTIONS(4598), 1,
- anon_sym_PERCENT,
- ACTIONS(4600), 1,
- anon_sym_STAR_STAR,
- ACTIONS(4602), 1,
- anon_sym_LT,
- STATE(1812), 1,
- sym_type_arguments,
- STATE(4772), 1,
- sym_optional_chain,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(4307), 2,
- anon_sym_BANG,
- anon_sym_PIPE,
- ACTIONS(4545), 2,
- anon_sym_PLUS_PLUS,
- anon_sym_DASH_DASH,
- ACTIONS(4578), 2,
- anon_sym_STAR,
- anon_sym_SLASH,
- ACTIONS(4580), 2,
- anon_sym_in,
- anon_sym_GT,
- ACTIONS(4588), 2,
- anon_sym_GT_GT_GT,
- anon_sym_LT_LT,
- ACTIONS(4596), 2,
- anon_sym_PLUS,
- anon_sym_DASH,
- ACTIONS(4606), 2,
- anon_sym_EQ_EQ,
- anon_sym_BANG_EQ,
- ACTIONS(4608), 2,
- anon_sym_EQ_EQ_EQ,
- anon_sym_BANG_EQ_EQ,
- STATE(2133), 2,
- sym_template_string,
- sym_arguments,
- ACTIONS(4604), 3,
- anon_sym_LT_EQ,
- anon_sym_GT_EQ,
- anon_sym_instanceof,
- ACTIONS(4305), 11,
- sym__automatic_semicolon,
- sym__ternary_qmark,
- anon_sym_as,
- anon_sym_COMMA,
- anon_sym_of,
- anon_sym_SEMI,
- anon_sym_AMP_AMP,
- anon_sym_PIPE_PIPE,
- anon_sym_CARET,
- anon_sym_QMARK_QMARK,
- anon_sym_satisfies,
- [41486] = 3,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(4705), 13,
- anon_sym_STAR,
- anon_sym_BANG,
- anon_sym_in,
- anon_sym_GT,
- anon_sym_GT_GT,
- anon_sym_AMP,
- anon_sym_PIPE,
- anon_sym_PLUS,
- anon_sym_DASH,
- anon_sym_SLASH,
- anon_sym_LT,
- anon_sym_EQ_EQ,
- anon_sym_BANG_EQ,
- ACTIONS(4707), 31,
- sym__ternary_qmark,
- anon_sym_as,
- anon_sym_LBRACE,
- anon_sym_COMMA,
- anon_sym_RBRACE,
- anon_sym_LPAREN,
- anon_sym_RPAREN,
- anon_sym_of,
- anon_sym_COLON,
- anon_sym_LBRACK,
- anon_sym_RBRACK,
- anon_sym_DOT,
- anon_sym_QMARK_DOT,
- anon_sym_AMP_AMP,
- anon_sym_PIPE_PIPE,
- anon_sym_GT_GT_GT,
- anon_sym_LT_LT,
- anon_sym_CARET,
- anon_sym_PERCENT,
- anon_sym_STAR_STAR,
- anon_sym_LT_EQ,
- anon_sym_EQ_EQ_EQ,
- anon_sym_BANG_EQ_EQ,
- anon_sym_GT_EQ,
- anon_sym_QMARK_QMARK,
- anon_sym_instanceof,
- anon_sym_PLUS_PLUS,
- anon_sym_DASH_DASH,
- anon_sym_BQUOTE,
- anon_sym_satisfies,
- anon_sym_implements,
- [41539] = 3,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(4709), 13,
- anon_sym_STAR,
- anon_sym_BANG,
- anon_sym_in,
- anon_sym_GT,
- anon_sym_GT_GT,
- anon_sym_AMP,
- anon_sym_PIPE,
- anon_sym_PLUS,
- anon_sym_DASH,
- anon_sym_SLASH,
- anon_sym_LT,
- anon_sym_EQ_EQ,
- anon_sym_BANG_EQ,
- ACTIONS(4711), 31,
- sym__ternary_qmark,
- anon_sym_as,
- anon_sym_LBRACE,
- anon_sym_COMMA,
- anon_sym_RBRACE,
- anon_sym_LPAREN,
- anon_sym_RPAREN,
- anon_sym_of,
- anon_sym_COLON,
- anon_sym_LBRACK,
- anon_sym_RBRACK,
- anon_sym_DOT,
- anon_sym_QMARK_DOT,
- anon_sym_AMP_AMP,
- anon_sym_PIPE_PIPE,
- anon_sym_GT_GT_GT,
- anon_sym_LT_LT,
- anon_sym_CARET,
- anon_sym_PERCENT,
- anon_sym_STAR_STAR,
- anon_sym_LT_EQ,
- anon_sym_EQ_EQ_EQ,
- anon_sym_BANG_EQ_EQ,
- anon_sym_GT_EQ,
- anon_sym_QMARK_QMARK,
- anon_sym_instanceof,
- anon_sym_PLUS_PLUS,
- anon_sym_DASH_DASH,
- anon_sym_BQUOTE,
- anon_sym_satisfies,
- anon_sym_implements,
- [41592] = 3,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(4713), 13,
- anon_sym_STAR,
- anon_sym_BANG,
- anon_sym_in,
- anon_sym_GT,
- anon_sym_GT_GT,
- anon_sym_AMP,
- anon_sym_PIPE,
- anon_sym_PLUS,
- anon_sym_DASH,
- anon_sym_SLASH,
- anon_sym_LT,
- anon_sym_EQ_EQ,
- anon_sym_BANG_EQ,
- ACTIONS(4715), 31,
- sym__ternary_qmark,
- anon_sym_as,
- anon_sym_LBRACE,
- anon_sym_COMMA,
- anon_sym_RBRACE,
- anon_sym_LPAREN,
- anon_sym_RPAREN,
- anon_sym_of,
- anon_sym_COLON,
- anon_sym_LBRACK,
- anon_sym_RBRACK,
- anon_sym_DOT,
- anon_sym_QMARK_DOT,
- anon_sym_AMP_AMP,
- anon_sym_PIPE_PIPE,
- anon_sym_GT_GT_GT,
- anon_sym_LT_LT,
- anon_sym_CARET,
- anon_sym_PERCENT,
- anon_sym_STAR_STAR,
- anon_sym_LT_EQ,
- anon_sym_EQ_EQ_EQ,
- anon_sym_BANG_EQ_EQ,
- anon_sym_GT_EQ,
- anon_sym_QMARK_QMARK,
- anon_sym_instanceof,
- anon_sym_PLUS_PLUS,
- anon_sym_DASH_DASH,
- anon_sym_BQUOTE,
- anon_sym_satisfies,
- anon_sym_implements,
- [41645] = 3,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(4717), 13,
- anon_sym_STAR,
- anon_sym_BANG,
- anon_sym_in,
- anon_sym_GT,
- anon_sym_GT_GT,
- anon_sym_AMP,
- anon_sym_PIPE,
- anon_sym_PLUS,
- anon_sym_DASH,
- anon_sym_SLASH,
- anon_sym_LT,
- anon_sym_EQ_EQ,
- anon_sym_BANG_EQ,
- ACTIONS(4350), 31,
- sym__ternary_qmark,
- anon_sym_as,
- anon_sym_LBRACE,
- anon_sym_COMMA,
- anon_sym_RBRACE,
- anon_sym_LPAREN,
- anon_sym_RPAREN,
- anon_sym_of,
- anon_sym_COLON,
- anon_sym_LBRACK,
- anon_sym_RBRACK,
- anon_sym_DOT,
- anon_sym_QMARK_DOT,
- anon_sym_AMP_AMP,
- anon_sym_PIPE_PIPE,
- anon_sym_GT_GT_GT,
- anon_sym_LT_LT,
- anon_sym_CARET,
- anon_sym_PERCENT,
- anon_sym_STAR_STAR,
- anon_sym_LT_EQ,
- anon_sym_EQ_EQ_EQ,
- anon_sym_BANG_EQ_EQ,
- anon_sym_GT_EQ,
- anon_sym_QMARK_QMARK,
- anon_sym_instanceof,
- anon_sym_PLUS_PLUS,
- anon_sym_DASH_DASH,
- anon_sym_BQUOTE,
- anon_sym_satisfies,
- anon_sym_implements,
- [41698] = 25,
- ACTIONS(89), 1,
- anon_sym_BQUOTE,
- ACTIONS(4059), 1,
- anon_sym_QMARK_DOT,
- ACTIONS(4519), 1,
- anon_sym_LPAREN,
- ACTIONS(4523), 1,
- anon_sym_LBRACK,
- ACTIONS(4525), 1,
- anon_sym_DOT,
- ACTIONS(4586), 1,
- anon_sym_GT_GT,
- ACTIONS(4590), 1,
- anon_sym_AMP,
- ACTIONS(4592), 1,
- anon_sym_CARET,
- ACTIONS(4598), 1,
- anon_sym_PERCENT,
- ACTIONS(4600), 1,
- anon_sym_STAR_STAR,
- ACTIONS(4602), 1,
- anon_sym_LT,
- STATE(1812), 1,
- sym_type_arguments,
- STATE(4772), 1,
- sym_optional_chain,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(4307), 2,
- anon_sym_BANG,
- anon_sym_PIPE,
- ACTIONS(4545), 2,
- anon_sym_PLUS_PLUS,
- anon_sym_DASH_DASH,
- ACTIONS(4578), 2,
- anon_sym_STAR,
- anon_sym_SLASH,
- ACTIONS(4580), 2,
- anon_sym_in,
- anon_sym_GT,
- ACTIONS(4588), 2,
- anon_sym_GT_GT_GT,
- anon_sym_LT_LT,
- ACTIONS(4596), 2,
- anon_sym_PLUS,
- anon_sym_DASH,
- ACTIONS(4606), 2,
- anon_sym_EQ_EQ,
- anon_sym_BANG_EQ,
- ACTIONS(4608), 2,
- anon_sym_EQ_EQ_EQ,
- anon_sym_BANG_EQ_EQ,
- STATE(2133), 2,
- sym_template_string,
- sym_arguments,
- ACTIONS(4604), 3,
- anon_sym_LT_EQ,
- anon_sym_GT_EQ,
- anon_sym_instanceof,
- ACTIONS(4305), 10,
- sym__automatic_semicolon,
- sym__ternary_qmark,
- anon_sym_as,
- anon_sym_COMMA,
- anon_sym_of,
- anon_sym_SEMI,
- anon_sym_AMP_AMP,
- anon_sym_PIPE_PIPE,
- anon_sym_QMARK_QMARK,
- anon_sym_satisfies,
- [41795] = 16,
- ACTIONS(89), 1,
- anon_sym_BQUOTE,
- ACTIONS(4059), 1,
- anon_sym_QMARK_DOT,
- ACTIONS(4519), 1,
- anon_sym_LPAREN,
- ACTIONS(4523), 1,
- anon_sym_LBRACK,
- ACTIONS(4525), 1,
- anon_sym_DOT,
- ACTIONS(4598), 1,
- anon_sym_PERCENT,
- ACTIONS(4600), 1,
- anon_sym_STAR_STAR,
- ACTIONS(4688), 1,
- anon_sym_LT,
- STATE(1812), 1,
- sym_type_arguments,
- STATE(4772), 1,
- sym_optional_chain,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(4545), 2,
- anon_sym_PLUS_PLUS,
- anon_sym_DASH_DASH,
- ACTIONS(4578), 2,
- anon_sym_STAR,
- anon_sym_SLASH,
- STATE(2133), 2,
- sym_template_string,
- sym_arguments,
- ACTIONS(4307), 10,
- anon_sym_BANG,
- anon_sym_in,
- anon_sym_GT,
- anon_sym_GT_GT,
- anon_sym_AMP,
- anon_sym_PIPE,
- anon_sym_PLUS,
- anon_sym_DASH,
- anon_sym_EQ_EQ,
- anon_sym_BANG_EQ,
- ACTIONS(4305), 18,
- sym__automatic_semicolon,
- sym__ternary_qmark,
- anon_sym_as,
- anon_sym_COMMA,
- anon_sym_of,
- anon_sym_SEMI,
- anon_sym_AMP_AMP,
- anon_sym_PIPE_PIPE,
- anon_sym_GT_GT_GT,
- anon_sym_LT_LT,
- anon_sym_CARET,
- anon_sym_LT_EQ,
- anon_sym_EQ_EQ_EQ,
- anon_sym_BANG_EQ_EQ,
- anon_sym_GT_EQ,
- anon_sym_QMARK_QMARK,
- anon_sym_instanceof,
- anon_sym_satisfies,
- [41874] = 3,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(4719), 13,
- anon_sym_STAR,
- anon_sym_BANG,
- anon_sym_in,
- anon_sym_GT,
- anon_sym_GT_GT,
- anon_sym_AMP,
- anon_sym_PIPE,
- anon_sym_PLUS,
- anon_sym_DASH,
- anon_sym_SLASH,
- anon_sym_LT,
- anon_sym_EQ_EQ,
- anon_sym_BANG_EQ,
- ACTIONS(4721), 31,
- sym__ternary_qmark,
- anon_sym_as,
- anon_sym_LBRACE,
- anon_sym_COMMA,
- anon_sym_RBRACE,
- anon_sym_LPAREN,
- anon_sym_RPAREN,
- anon_sym_of,
- anon_sym_COLON,
- anon_sym_LBRACK,
- anon_sym_RBRACK,
- anon_sym_DOT,
- anon_sym_QMARK_DOT,
- anon_sym_AMP_AMP,
- anon_sym_PIPE_PIPE,
- anon_sym_GT_GT_GT,
- anon_sym_LT_LT,
- anon_sym_CARET,
- anon_sym_PERCENT,
- anon_sym_STAR_STAR,
- anon_sym_LT_EQ,
- anon_sym_EQ_EQ_EQ,
- anon_sym_BANG_EQ_EQ,
- anon_sym_GT_EQ,
- anon_sym_QMARK_QMARK,
- anon_sym_instanceof,
- anon_sym_PLUS_PLUS,
- anon_sym_DASH_DASH,
- anon_sym_BQUOTE,
- anon_sym_satisfies,
- anon_sym_implements,
- [41927] = 3,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(4723), 13,
- anon_sym_STAR,
- anon_sym_BANG,
- anon_sym_in,
- anon_sym_GT,
- anon_sym_GT_GT,
- anon_sym_AMP,
- anon_sym_PIPE,
- anon_sym_PLUS,
- anon_sym_DASH,
- anon_sym_SLASH,
- anon_sym_LT,
- anon_sym_EQ_EQ,
- anon_sym_BANG_EQ,
- ACTIONS(4725), 31,
- sym__ternary_qmark,
- anon_sym_as,
- anon_sym_LBRACE,
- anon_sym_COMMA,
- anon_sym_RBRACE,
- anon_sym_LPAREN,
- anon_sym_RPAREN,
- anon_sym_of,
- anon_sym_COLON,
- anon_sym_LBRACK,
- anon_sym_RBRACK,
- anon_sym_DOT,
- anon_sym_QMARK_DOT,
- anon_sym_AMP_AMP,
- anon_sym_PIPE_PIPE,
- anon_sym_GT_GT_GT,
- anon_sym_LT_LT,
- anon_sym_CARET,
- anon_sym_PERCENT,
- anon_sym_STAR_STAR,
- anon_sym_LT_EQ,
- anon_sym_EQ_EQ_EQ,
- anon_sym_BANG_EQ_EQ,
- anon_sym_GT_EQ,
- anon_sym_QMARK_QMARK,
- anon_sym_instanceof,
- anon_sym_PLUS_PLUS,
- anon_sym_DASH_DASH,
- anon_sym_BQUOTE,
- anon_sym_satisfies,
- anon_sym_implements,
- [41980] = 3,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(4727), 13,
- anon_sym_STAR,
- anon_sym_BANG,
- anon_sym_in,
- anon_sym_GT,
- anon_sym_GT_GT,
- anon_sym_AMP,
- anon_sym_PIPE,
- anon_sym_PLUS,
- anon_sym_DASH,
- anon_sym_SLASH,
- anon_sym_LT,
- anon_sym_EQ_EQ,
- anon_sym_BANG_EQ,
- ACTIONS(4729), 31,
- sym__ternary_qmark,
- anon_sym_as,
- anon_sym_LBRACE,
- anon_sym_COMMA,
- anon_sym_RBRACE,
- anon_sym_LPAREN,
- anon_sym_RPAREN,
- anon_sym_of,
- anon_sym_COLON,
- anon_sym_LBRACK,
- anon_sym_RBRACK,
- anon_sym_DOT,
- anon_sym_QMARK_DOT,
- anon_sym_AMP_AMP,
- anon_sym_PIPE_PIPE,
- anon_sym_GT_GT_GT,
- anon_sym_LT_LT,
- anon_sym_CARET,
- anon_sym_PERCENT,
- anon_sym_STAR_STAR,
- anon_sym_LT_EQ,
- anon_sym_EQ_EQ_EQ,
- anon_sym_BANG_EQ_EQ,
- anon_sym_GT_EQ,
- anon_sym_QMARK_QMARK,
- anon_sym_instanceof,
- anon_sym_PLUS_PLUS,
- anon_sym_DASH_DASH,
- anon_sym_BQUOTE,
- anon_sym_satisfies,
- anon_sym_implements,
- [42033] = 3,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(4731), 13,
- anon_sym_STAR,
- anon_sym_BANG,
- anon_sym_in,
- anon_sym_GT,
- anon_sym_GT_GT,
- anon_sym_AMP,
- anon_sym_PIPE,
- anon_sym_PLUS,
- anon_sym_DASH,
- anon_sym_SLASH,
- anon_sym_LT,
- anon_sym_EQ_EQ,
- anon_sym_BANG_EQ,
- ACTIONS(4733), 31,
- sym__ternary_qmark,
- anon_sym_as,
- anon_sym_LBRACE,
- anon_sym_COMMA,
- anon_sym_RBRACE,
- anon_sym_LPAREN,
- anon_sym_RPAREN,
- anon_sym_of,
- anon_sym_COLON,
- anon_sym_LBRACK,
- anon_sym_RBRACK,
- anon_sym_DOT,
- anon_sym_QMARK_DOT,
- anon_sym_AMP_AMP,
- anon_sym_PIPE_PIPE,
- anon_sym_GT_GT_GT,
- anon_sym_LT_LT,
- anon_sym_CARET,
- anon_sym_PERCENT,
- anon_sym_STAR_STAR,
- anon_sym_LT_EQ,
- anon_sym_EQ_EQ_EQ,
- anon_sym_BANG_EQ_EQ,
- anon_sym_GT_EQ,
- anon_sym_QMARK_QMARK,
- anon_sym_instanceof,
- anon_sym_PLUS_PLUS,
- anon_sym_DASH_DASH,
- anon_sym_BQUOTE,
- anon_sym_satisfies,
- anon_sym_implements,
- [42086] = 3,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(1753), 13,
- anon_sym_STAR,
- anon_sym_BANG,
- anon_sym_in,
- anon_sym_GT,
- anon_sym_GT_GT,
- anon_sym_AMP,
- anon_sym_PIPE,
- anon_sym_PLUS,
- anon_sym_DASH,
- anon_sym_SLASH,
- anon_sym_LT,
- anon_sym_EQ_EQ,
- anon_sym_BANG_EQ,
- ACTIONS(1751), 31,
- sym__automatic_semicolon,
- sym__ternary_qmark,
- anon_sym_as,
- anon_sym_COMMA,
- anon_sym_RBRACE,
- anon_sym_else,
- anon_sym_LPAREN,
- anon_sym_of,
- anon_sym_while,
- anon_sym_SEMI,
- anon_sym_LBRACK,
- anon_sym_DOT,
- anon_sym_QMARK_DOT,
- anon_sym_AMP_AMP,
- anon_sym_PIPE_PIPE,
- anon_sym_GT_GT_GT,
- anon_sym_LT_LT,
- anon_sym_CARET,
- anon_sym_PERCENT,
- anon_sym_STAR_STAR,
- anon_sym_LT_EQ,
- anon_sym_EQ_EQ_EQ,
- anon_sym_BANG_EQ_EQ,
- anon_sym_GT_EQ,
- anon_sym_QMARK_QMARK,
- anon_sym_instanceof,
- anon_sym_PLUS_PLUS,
- anon_sym_DASH_DASH,
- anon_sym_BQUOTE,
- anon_sym_satisfies,
- anon_sym_PIPE_RBRACE,
- [42139] = 3,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(1879), 13,
- anon_sym_STAR,
- anon_sym_BANG,
- anon_sym_in,
- anon_sym_GT,
- anon_sym_GT_GT,
- anon_sym_AMP,
- anon_sym_PIPE,
- anon_sym_PLUS,
- anon_sym_DASH,
- anon_sym_SLASH,
- anon_sym_LT,
- anon_sym_EQ_EQ,
- anon_sym_BANG_EQ,
- ACTIONS(1881), 31,
- sym__ternary_qmark,
- anon_sym_as,
- anon_sym_LBRACE,
- anon_sym_COMMA,
- anon_sym_RBRACE,
- anon_sym_LPAREN,
- anon_sym_RPAREN,
- anon_sym_of,
- anon_sym_COLON,
- anon_sym_LBRACK,
- anon_sym_RBRACK,
- anon_sym_DOT,
- anon_sym_QMARK_DOT,
- anon_sym_AMP_AMP,
- anon_sym_PIPE_PIPE,
- anon_sym_GT_GT_GT,
- anon_sym_LT_LT,
- anon_sym_CARET,
- anon_sym_PERCENT,
- anon_sym_STAR_STAR,
- anon_sym_LT_EQ,
- anon_sym_EQ_EQ_EQ,
- anon_sym_BANG_EQ_EQ,
- anon_sym_GT_EQ,
- anon_sym_QMARK_QMARK,
- anon_sym_instanceof,
- anon_sym_PLUS_PLUS,
- anon_sym_DASH_DASH,
- anon_sym_BQUOTE,
- anon_sym_satisfies,
- anon_sym_implements,
- [42192] = 17,
- ACTIONS(89), 1,
- anon_sym_BQUOTE,
- ACTIONS(4059), 1,
- anon_sym_QMARK_DOT,
- ACTIONS(4519), 1,
- anon_sym_LPAREN,
- ACTIONS(4523), 1,
- anon_sym_LBRACK,
- ACTIONS(4525), 1,
- anon_sym_DOT,
- ACTIONS(4555), 1,
- anon_sym_as,
- ACTIONS(4562), 1,
- anon_sym_BANG,
- ACTIONS(4574), 1,
- anon_sym_satisfies,
- ACTIONS(4600), 1,
- anon_sym_STAR_STAR,
- ACTIONS(4688), 1,
- anon_sym_LT,
- STATE(1812), 1,
- sym_type_arguments,
- STATE(4772), 1,
- sym_optional_chain,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(4545), 2,
- anon_sym_PLUS_PLUS,
- anon_sym_DASH_DASH,
- STATE(2133), 2,
- sym_template_string,
- sym_arguments,
- ACTIONS(4307), 11,
- anon_sym_STAR,
- anon_sym_in,
- anon_sym_GT,
- anon_sym_GT_GT,
- anon_sym_AMP,
- anon_sym_PIPE,
- anon_sym_PLUS,
- anon_sym_DASH,
- anon_sym_SLASH,
- anon_sym_EQ_EQ,
- anon_sym_BANG_EQ,
- ACTIONS(4305), 17,
- sym__automatic_semicolon,
- sym__ternary_qmark,
- anon_sym_COMMA,
- anon_sym_of,
- anon_sym_SEMI,
- anon_sym_AMP_AMP,
- anon_sym_PIPE_PIPE,
- anon_sym_GT_GT_GT,
- anon_sym_LT_LT,
- anon_sym_CARET,
- anon_sym_PERCENT,
- anon_sym_LT_EQ,
- anon_sym_EQ_EQ_EQ,
- anon_sym_BANG_EQ_EQ,
- anon_sym_GT_EQ,
- anon_sym_QMARK_QMARK,
- anon_sym_instanceof,
- [42273] = 3,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(4735), 13,
- anon_sym_STAR,
- anon_sym_BANG,
- anon_sym_in,
- anon_sym_GT,
- anon_sym_GT_GT,
- anon_sym_AMP,
- anon_sym_PIPE,
- anon_sym_PLUS,
- anon_sym_DASH,
- anon_sym_SLASH,
- anon_sym_LT,
- anon_sym_EQ_EQ,
- anon_sym_BANG_EQ,
- ACTIONS(4737), 31,
- sym__ternary_qmark,
- anon_sym_as,
- anon_sym_LBRACE,
- anon_sym_COMMA,
- anon_sym_RBRACE,
- anon_sym_LPAREN,
- anon_sym_RPAREN,
- anon_sym_of,
- anon_sym_COLON,
- anon_sym_LBRACK,
- anon_sym_RBRACK,
- anon_sym_DOT,
- anon_sym_QMARK_DOT,
- anon_sym_AMP_AMP,
- anon_sym_PIPE_PIPE,
- anon_sym_GT_GT_GT,
- anon_sym_LT_LT,
- anon_sym_CARET,
- anon_sym_PERCENT,
- anon_sym_STAR_STAR,
- anon_sym_LT_EQ,
- anon_sym_EQ_EQ_EQ,
- anon_sym_BANG_EQ_EQ,
- anon_sym_GT_EQ,
- anon_sym_QMARK_QMARK,
- anon_sym_instanceof,
- anon_sym_PLUS_PLUS,
- anon_sym_DASH_DASH,
- anon_sym_BQUOTE,
- anon_sym_satisfies,
- anon_sym_implements,
- [42326] = 3,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(1767), 13,
- anon_sym_STAR,
- anon_sym_BANG,
- anon_sym_in,
- anon_sym_GT,
- anon_sym_GT_GT,
- anon_sym_AMP,
- anon_sym_PIPE,
- anon_sym_PLUS,
- anon_sym_DASH,
- anon_sym_SLASH,
- anon_sym_LT,
- anon_sym_EQ_EQ,
- anon_sym_BANG_EQ,
- ACTIONS(1765), 31,
- sym__ternary_qmark,
- anon_sym_as,
- anon_sym_LBRACE,
- anon_sym_COMMA,
- anon_sym_RBRACE,
- anon_sym_LPAREN,
- anon_sym_RPAREN,
- anon_sym_of,
- anon_sym_COLON,
- anon_sym_LBRACK,
- anon_sym_RBRACK,
- anon_sym_DOT,
- anon_sym_QMARK_DOT,
- anon_sym_AMP_AMP,
- anon_sym_PIPE_PIPE,
- anon_sym_GT_GT_GT,
- anon_sym_LT_LT,
- anon_sym_CARET,
- anon_sym_PERCENT,
- anon_sym_STAR_STAR,
- anon_sym_LT_EQ,
- anon_sym_EQ_EQ_EQ,
- anon_sym_BANG_EQ_EQ,
- anon_sym_GT_EQ,
- anon_sym_QMARK_QMARK,
- anon_sym_instanceof,
- anon_sym_PLUS_PLUS,
- anon_sym_DASH_DASH,
- anon_sym_BQUOTE,
- anon_sym_satisfies,
- anon_sym_implements,
- [42379] = 8,
- ACTIONS(4519), 1,
- anon_sym_LPAREN,
- ACTIONS(4549), 1,
- anon_sym_LT,
- ACTIONS(4739), 1,
- anon_sym_DOT,
- STATE(2046), 1,
- sym_arguments,
- STATE(2049), 1,
- sym_type_arguments,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(3418), 12,
- anon_sym_STAR,
- anon_sym_BANG,
- anon_sym_in,
- anon_sym_GT,
- anon_sym_GT_GT,
- anon_sym_AMP,
- anon_sym_PIPE,
- anon_sym_PLUS,
- anon_sym_DASH,
- anon_sym_SLASH,
- anon_sym_EQ_EQ,
- anon_sym_BANG_EQ,
- ACTIONS(3406), 27,
- sym__automatic_semicolon,
- sym__ternary_qmark,
- anon_sym_as,
- anon_sym_COMMA,
- anon_sym_RBRACE,
- anon_sym_of,
- anon_sym_SEMI,
- anon_sym_LBRACK,
- anon_sym_QMARK_DOT,
- anon_sym_AMP_AMP,
- anon_sym_PIPE_PIPE,
- anon_sym_GT_GT_GT,
- anon_sym_LT_LT,
- anon_sym_CARET,
- anon_sym_PERCENT,
- anon_sym_STAR_STAR,
- anon_sym_LT_EQ,
- anon_sym_EQ_EQ_EQ,
- anon_sym_BANG_EQ_EQ,
- anon_sym_GT_EQ,
- anon_sym_QMARK_QMARK,
- anon_sym_instanceof,
- anon_sym_PLUS_PLUS,
- anon_sym_DASH_DASH,
- anon_sym_BQUOTE,
- anon_sym_satisfies,
- anon_sym_extends,
- [42442] = 8,
- ACTIONS(4519), 1,
- anon_sym_LPAREN,
- ACTIONS(4549), 1,
- anon_sym_LT,
- ACTIONS(4741), 1,
- anon_sym_DOT,
- STATE(2076), 1,
- sym_arguments,
- STATE(2078), 1,
- sym_type_arguments,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(3979), 12,
- anon_sym_STAR,
- anon_sym_BANG,
- anon_sym_in,
- anon_sym_GT,
- anon_sym_GT_GT,
- anon_sym_AMP,
- anon_sym_PIPE,
- anon_sym_PLUS,
- anon_sym_DASH,
- anon_sym_SLASH,
- anon_sym_EQ_EQ,
- anon_sym_BANG_EQ,
- ACTIONS(3981), 27,
- sym__automatic_semicolon,
- sym__ternary_qmark,
- anon_sym_as,
- anon_sym_COMMA,
- anon_sym_RBRACE,
- anon_sym_of,
- anon_sym_SEMI,
- anon_sym_LBRACK,
- anon_sym_QMARK_DOT,
- anon_sym_AMP_AMP,
- anon_sym_PIPE_PIPE,
- anon_sym_GT_GT_GT,
- anon_sym_LT_LT,
- anon_sym_CARET,
- anon_sym_PERCENT,
- anon_sym_STAR_STAR,
- anon_sym_LT_EQ,
- anon_sym_EQ_EQ_EQ,
- anon_sym_BANG_EQ_EQ,
- anon_sym_GT_EQ,
- anon_sym_QMARK_QMARK,
- anon_sym_instanceof,
- anon_sym_PLUS_PLUS,
- anon_sym_DASH_DASH,
- anon_sym_BQUOTE,
- anon_sym_satisfies,
- anon_sym_extends,
- [42505] = 8,
- ACTIONS(4519), 1,
- anon_sym_LPAREN,
- ACTIONS(4549), 1,
- anon_sym_LT,
- ACTIONS(4743), 1,
- anon_sym_DOT,
- STATE(2086), 1,
- sym_arguments,
- STATE(2088), 1,
- sym_type_arguments,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(3985), 12,
- anon_sym_STAR,
- anon_sym_BANG,
- anon_sym_in,
- anon_sym_GT,
- anon_sym_GT_GT,
- anon_sym_AMP,
- anon_sym_PIPE,
- anon_sym_PLUS,
- anon_sym_DASH,
- anon_sym_SLASH,
- anon_sym_EQ_EQ,
- anon_sym_BANG_EQ,
- ACTIONS(3987), 27,
- sym__automatic_semicolon,
- sym__ternary_qmark,
- anon_sym_as,
- anon_sym_COMMA,
- anon_sym_RBRACE,
- anon_sym_of,
- anon_sym_SEMI,
- anon_sym_LBRACK,
- anon_sym_QMARK_DOT,
- anon_sym_AMP_AMP,
- anon_sym_PIPE_PIPE,
- anon_sym_GT_GT_GT,
- anon_sym_LT_LT,
- anon_sym_CARET,
- anon_sym_PERCENT,
- anon_sym_STAR_STAR,
- anon_sym_LT_EQ,
- anon_sym_EQ_EQ_EQ,
- anon_sym_BANG_EQ_EQ,
- anon_sym_GT_EQ,
- anon_sym_QMARK_QMARK,
- anon_sym_instanceof,
- anon_sym_PLUS_PLUS,
- anon_sym_DASH_DASH,
- anon_sym_BQUOTE,
- anon_sym_satisfies,
- anon_sym_extends,
- [42568] = 3,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(1923), 13,
- anon_sym_STAR,
- anon_sym_BANG,
- anon_sym_in,
- anon_sym_GT,
- anon_sym_GT_GT,
- anon_sym_AMP,
- anon_sym_PIPE,
- anon_sym_PLUS,
- anon_sym_DASH,
- anon_sym_SLASH,
- anon_sym_LT,
- anon_sym_EQ_EQ,
- anon_sym_BANG_EQ,
- ACTIONS(1921), 31,
- sym__automatic_semicolon,
- sym__ternary_qmark,
- anon_sym_as,
- anon_sym_COMMA,
- anon_sym_RBRACE,
- anon_sym_else,
- anon_sym_LPAREN,
- anon_sym_of,
- anon_sym_while,
- anon_sym_SEMI,
- anon_sym_LBRACK,
- anon_sym_DOT,
- anon_sym_QMARK_DOT,
- anon_sym_AMP_AMP,
- anon_sym_PIPE_PIPE,
- anon_sym_GT_GT_GT,
- anon_sym_LT_LT,
- anon_sym_CARET,
- anon_sym_PERCENT,
- anon_sym_STAR_STAR,
- anon_sym_LT_EQ,
- anon_sym_EQ_EQ_EQ,
- anon_sym_BANG_EQ_EQ,
- anon_sym_GT_EQ,
- anon_sym_QMARK_QMARK,
- anon_sym_instanceof,
- anon_sym_PLUS_PLUS,
- anon_sym_DASH_DASH,
- anon_sym_BQUOTE,
- anon_sym_satisfies,
- anon_sym_PIPE_RBRACE,
- [42621] = 32,
- ACTIONS(89), 1,
- anon_sym_BQUOTE,
- ACTIONS(4059), 1,
- anon_sym_QMARK_DOT,
- ACTIONS(4519), 1,
- anon_sym_LPAREN,
- ACTIONS(4523), 1,
- anon_sym_LBRACK,
- ACTIONS(4525), 1,
- anon_sym_DOT,
- ACTIONS(4527), 1,
- anon_sym_GT_GT,
- ACTIONS(4533), 1,
- anon_sym_PERCENT,
- ACTIONS(4535), 1,
- anon_sym_STAR_STAR,
- ACTIONS(4537), 1,
- anon_sym_LT,
- ACTIONS(4553), 1,
- anon_sym_AMP,
- ACTIONS(4555), 1,
- anon_sym_as,
- ACTIONS(4562), 1,
- anon_sym_BANG,
- ACTIONS(4564), 1,
- anon_sym_AMP_AMP,
- ACTIONS(4566), 1,
- anon_sym_PIPE_PIPE,
- ACTIONS(4568), 1,
- anon_sym_CARET,
- ACTIONS(4570), 1,
- anon_sym_PIPE,
- ACTIONS(4572), 1,
- anon_sym_QMARK_QMARK,
- ACTIONS(4574), 1,
- anon_sym_satisfies,
- ACTIONS(4576), 1,
- sym__ternary_qmark,
- STATE(1812), 1,
- sym_type_arguments,
- STATE(4772), 1,
- sym_optional_chain,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(4517), 2,
- anon_sym_STAR,
- anon_sym_SLASH,
- ACTIONS(4521), 2,
- anon_sym_in,
- anon_sym_GT,
- ACTIONS(4529), 2,
- anon_sym_GT_GT_GT,
- anon_sym_LT_LT,
- ACTIONS(4531), 2,
- anon_sym_PLUS,
- anon_sym_DASH,
- ACTIONS(4541), 2,
- anon_sym_EQ_EQ,
- anon_sym_BANG_EQ,
- ACTIONS(4543), 2,
- anon_sym_EQ_EQ_EQ,
- anon_sym_BANG_EQ_EQ,
- ACTIONS(4545), 2,
- anon_sym_PLUS_PLUS,
- anon_sym_DASH_DASH,
- STATE(2133), 2,
- sym_template_string,
- sym_arguments,
- ACTIONS(4539), 3,
- anon_sym_LT_EQ,
- anon_sym_GT_EQ,
- anon_sym_instanceof,
- ACTIONS(4374), 4,
- sym__automatic_semicolon,
- anon_sym_COMMA,
- anon_sym_RBRACE,
- anon_sym_SEMI,
- [42732] = 4,
- ACTIONS(4745), 1,
- sym__automatic_semicolon,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(1873), 13,
- anon_sym_STAR,
- anon_sym_BANG,
- anon_sym_in,
- anon_sym_GT,
- anon_sym_GT_GT,
- anon_sym_AMP,
- anon_sym_PIPE,
- anon_sym_PLUS,
- anon_sym_DASH,
- anon_sym_SLASH,
- anon_sym_LT,
- anon_sym_EQ_EQ,
- anon_sym_BANG_EQ,
- ACTIONS(1871), 30,
- sym__ternary_qmark,
- anon_sym_as,
- anon_sym_COMMA,
- anon_sym_RBRACE,
- anon_sym_else,
- anon_sym_LPAREN,
- anon_sym_of,
- anon_sym_while,
- anon_sym_SEMI,
- anon_sym_LBRACK,
- anon_sym_DOT,
- anon_sym_QMARK_DOT,
- anon_sym_AMP_AMP,
- anon_sym_PIPE_PIPE,
- anon_sym_GT_GT_GT,
- anon_sym_LT_LT,
- anon_sym_CARET,
- anon_sym_PERCENT,
- anon_sym_STAR_STAR,
- anon_sym_LT_EQ,
- anon_sym_EQ_EQ_EQ,
- anon_sym_BANG_EQ_EQ,
- anon_sym_GT_EQ,
- anon_sym_QMARK_QMARK,
- anon_sym_instanceof,
- anon_sym_PLUS_PLUS,
- anon_sym_DASH_DASH,
- anon_sym_BQUOTE,
- anon_sym_satisfies,
- anon_sym_PIPE_RBRACE,
- [42787] = 5,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(1726), 2,
- anon_sym_EQ,
- anon_sym_QMARK,
- ACTIONS(4747), 5,
- anon_sym_COMMA,
- anon_sym_RBRACE,
- anon_sym_RPAREN,
- anon_sym_COLON,
- anon_sym_RBRACK,
- ACTIONS(1724), 13,
- anon_sym_STAR,
- anon_sym_BANG,
- anon_sym_in,
- anon_sym_GT,
- anon_sym_GT_GT,
- anon_sym_AMP,
- anon_sym_PIPE,
- anon_sym_PLUS,
- anon_sym_DASH,
- anon_sym_SLASH,
- anon_sym_LT,
- anon_sym_EQ_EQ,
- anon_sym_BANG_EQ,
- ACTIONS(1728), 24,
- sym__ternary_qmark,
- anon_sym_as,
- anon_sym_LPAREN,
- anon_sym_of,
- anon_sym_LBRACK,
- anon_sym_DOT,
- anon_sym_QMARK_DOT,
- anon_sym_AMP_AMP,
- anon_sym_PIPE_PIPE,
- anon_sym_GT_GT_GT,
- anon_sym_LT_LT,
- anon_sym_CARET,
- anon_sym_PERCENT,
- anon_sym_STAR_STAR,
- anon_sym_LT_EQ,
- anon_sym_EQ_EQ_EQ,
- anon_sym_BANG_EQ_EQ,
- anon_sym_GT_EQ,
- anon_sym_QMARK_QMARK,
- anon_sym_instanceof,
- anon_sym_PLUS_PLUS,
- anon_sym_DASH_DASH,
- anon_sym_BQUOTE,
- anon_sym_satisfies,
- [42844] = 15,
- ACTIONS(2275), 1,
- anon_sym_DQUOTE,
- ACTIONS(2277), 1,
- anon_sym_SQUOTE,
- ACTIONS(3737), 1,
- anon_sym_COMMA,
- ACTIONS(3817), 1,
- anon_sym_RBRACE,
- ACTIONS(4241), 1,
- anon_sym_STAR,
- ACTIONS(4243), 1,
- anon_sym_EQ,
- ACTIONS(4634), 1,
- anon_sym_LBRACK,
- STATE(4672), 1,
- aux_sym_object_pattern_repeat1,
- STATE(5156), 1,
- aux_sym_object_repeat1,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(4636), 2,
- sym_number,
- sym_private_property_identifier,
- ACTIONS(4638), 2,
- anon_sym_get,
- anon_sym_set,
- STATE(3770), 3,
- sym_string,
- sym__property_name,
- sym_computed_property_name,
- ACTIONS(3743), 7,
- sym__automatic_semicolon,
- anon_sym_LPAREN,
- anon_sym_SEMI,
- anon_sym_COLON,
- anon_sym_LT,
- anon_sym_QMARK,
- anon_sym_PIPE_RBRACE,
- ACTIONS(2307), 21,
- anon_sym_export,
- anon_sym_type,
- anon_sym_namespace,
- anon_sym_let,
- anon_sym_async,
- anon_sym_new,
- sym_identifier,
- anon_sym_static,
- anon_sym_readonly,
- anon_sym_declare,
- anon_sym_public,
- anon_sym_private,
- anon_sym_protected,
- anon_sym_override,
- anon_sym_module,
- anon_sym_any,
- anon_sym_number,
- anon_sym_boolean,
- anon_sym_string,
- anon_sym_symbol,
- anon_sym_object,
- [42921] = 12,
- ACTIONS(89), 1,
- anon_sym_BQUOTE,
- ACTIONS(4059), 1,
- anon_sym_QMARK_DOT,
- ACTIONS(4519), 1,
- anon_sym_LPAREN,
- ACTIONS(4523), 1,
- anon_sym_LBRACK,
- ACTIONS(4525), 1,
- anon_sym_DOT,
- ACTIONS(4750), 1,
- anon_sym_LT,
- STATE(1812), 1,
- sym_type_arguments,
- STATE(4772), 1,
- sym_optional_chain,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- STATE(2133), 2,
- sym_template_string,
- sym_arguments,
- ACTIONS(4230), 12,
- anon_sym_STAR,
- anon_sym_BANG,
- anon_sym_in,
- anon_sym_GT,
- anon_sym_GT_GT,
- anon_sym_AMP,
- anon_sym_PIPE,
- anon_sym_PLUS,
- anon_sym_DASH,
- anon_sym_SLASH,
- anon_sym_EQ_EQ,
- anon_sym_BANG_EQ,
- ACTIONS(4232), 22,
- sym__automatic_semicolon,
- sym__ternary_qmark,
- anon_sym_as,
- anon_sym_COMMA,
- anon_sym_RBRACE,
- anon_sym_SEMI,
- anon_sym_AMP_AMP,
- anon_sym_PIPE_PIPE,
- anon_sym_GT_GT_GT,
- anon_sym_LT_LT,
- anon_sym_CARET,
- anon_sym_PERCENT,
- anon_sym_STAR_STAR,
- anon_sym_LT_EQ,
- anon_sym_EQ_EQ_EQ,
- anon_sym_BANG_EQ_EQ,
- anon_sym_GT_EQ,
- anon_sym_QMARK_QMARK,
- anon_sym_instanceof,
- anon_sym_PLUS_PLUS,
- anon_sym_DASH_DASH,
- anon_sym_satisfies,
- [42992] = 3,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(4753), 13,
- anon_sym_STAR,
- anon_sym_BANG,
- anon_sym_in,
- anon_sym_GT,
- anon_sym_GT_GT,
- anon_sym_AMP,
- anon_sym_PIPE,
- anon_sym_PLUS,
- anon_sym_DASH,
- anon_sym_SLASH,
- anon_sym_LT,
- anon_sym_EQ_EQ,
- anon_sym_BANG_EQ,
- ACTIONS(4755), 31,
- sym__ternary_qmark,
- anon_sym_as,
- anon_sym_LBRACE,
- anon_sym_COMMA,
- anon_sym_RBRACE,
- anon_sym_LPAREN,
- anon_sym_RPAREN,
- anon_sym_of,
- anon_sym_COLON,
- anon_sym_LBRACK,
- anon_sym_RBRACK,
- anon_sym_DOT,
- anon_sym_QMARK_DOT,
- anon_sym_AMP_AMP,
- anon_sym_PIPE_PIPE,
- anon_sym_GT_GT_GT,
- anon_sym_LT_LT,
- anon_sym_CARET,
- anon_sym_PERCENT,
- anon_sym_STAR_STAR,
- anon_sym_LT_EQ,
- anon_sym_EQ_EQ_EQ,
- anon_sym_BANG_EQ_EQ,
- anon_sym_GT_EQ,
- anon_sym_QMARK_QMARK,
- anon_sym_instanceof,
- anon_sym_PLUS_PLUS,
- anon_sym_DASH_DASH,
- anon_sym_BQUOTE,
- anon_sym_satisfies,
- anon_sym_implements,
- [43045] = 3,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(1815), 13,
- anon_sym_STAR,
- anon_sym_BANG,
- anon_sym_in,
- anon_sym_GT,
- anon_sym_GT_GT,
- anon_sym_AMP,
- anon_sym_PIPE,
- anon_sym_PLUS,
- anon_sym_DASH,
- anon_sym_SLASH,
- anon_sym_LT,
- anon_sym_EQ_EQ,
- anon_sym_BANG_EQ,
- ACTIONS(1817), 31,
- sym__ternary_qmark,
- anon_sym_as,
- anon_sym_LBRACE,
- anon_sym_COMMA,
- anon_sym_RBRACE,
- anon_sym_LPAREN,
- anon_sym_RPAREN,
- anon_sym_of,
- anon_sym_COLON,
- anon_sym_LBRACK,
- anon_sym_RBRACK,
- anon_sym_DOT,
- anon_sym_QMARK_DOT,
- anon_sym_AMP_AMP,
- anon_sym_PIPE_PIPE,
- anon_sym_GT_GT_GT,
- anon_sym_LT_LT,
- anon_sym_CARET,
- anon_sym_PERCENT,
- anon_sym_STAR_STAR,
- anon_sym_LT_EQ,
- anon_sym_EQ_EQ_EQ,
- anon_sym_BANG_EQ_EQ,
- anon_sym_GT_EQ,
- anon_sym_QMARK_QMARK,
- anon_sym_instanceof,
- anon_sym_PLUS_PLUS,
- anon_sym_DASH_DASH,
- anon_sym_BQUOTE,
- anon_sym_satisfies,
- anon_sym_implements,
- [43098] = 3,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(1753), 13,
- anon_sym_STAR,
- anon_sym_BANG,
- anon_sym_in,
- anon_sym_GT,
- anon_sym_GT_GT,
- anon_sym_AMP,
- anon_sym_PIPE,
- anon_sym_PLUS,
- anon_sym_DASH,
- anon_sym_SLASH,
- anon_sym_LT,
- anon_sym_EQ_EQ,
- anon_sym_BANG_EQ,
- ACTIONS(1751), 31,
- sym__ternary_qmark,
- anon_sym_as,
- anon_sym_LBRACE,
- anon_sym_COMMA,
- anon_sym_RBRACE,
- anon_sym_LPAREN,
- anon_sym_RPAREN,
- anon_sym_of,
- anon_sym_COLON,
- anon_sym_LBRACK,
- anon_sym_RBRACK,
- anon_sym_DOT,
- anon_sym_QMARK_DOT,
- anon_sym_AMP_AMP,
- anon_sym_PIPE_PIPE,
- anon_sym_GT_GT_GT,
- anon_sym_LT_LT,
- anon_sym_CARET,
- anon_sym_PERCENT,
- anon_sym_STAR_STAR,
- anon_sym_LT_EQ,
- anon_sym_EQ_EQ_EQ,
- anon_sym_BANG_EQ_EQ,
- anon_sym_GT_EQ,
- anon_sym_QMARK_QMARK,
- anon_sym_instanceof,
- anon_sym_PLUS_PLUS,
- anon_sym_DASH_DASH,
- anon_sym_BQUOTE,
- anon_sym_satisfies,
- anon_sym_implements,
- [43151] = 16,
- ACTIONS(1594), 1,
- anon_sym_DQUOTE,
- ACTIONS(1596), 1,
- anon_sym_SQUOTE,
- ACTIONS(3737), 1,
- anon_sym_COMMA,
- ACTIONS(3817), 1,
- anon_sym_RBRACE,
- ACTIONS(4241), 1,
- anon_sym_STAR,
- ACTIONS(4243), 1,
- anon_sym_EQ,
- ACTIONS(4247), 1,
- anon_sym_async,
- ACTIONS(4658), 1,
- anon_sym_LBRACK,
- STATE(4672), 1,
- aux_sym_object_pattern_repeat1,
- STATE(5156), 1,
- aux_sym_object_repeat1,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(4249), 2,
- sym_number,
- sym_private_property_identifier,
- ACTIONS(4253), 2,
- anon_sym_get,
- anon_sym_set,
- STATE(3081), 3,
- sym_string,
- sym__property_name,
- sym_computed_property_name,
- ACTIONS(3743), 7,
- sym__automatic_semicolon,
- anon_sym_LPAREN,
- anon_sym_SEMI,
- anon_sym_COLON,
- anon_sym_LT,
- anon_sym_QMARK,
- anon_sym_PIPE_RBRACE,
- ACTIONS(3607), 20,
- anon_sym_export,
- anon_sym_type,
- anon_sym_namespace,
- anon_sym_let,
- anon_sym_new,
- sym_identifier,
- anon_sym_static,
- anon_sym_readonly,
- anon_sym_declare,
- anon_sym_public,
- anon_sym_private,
- anon_sym_protected,
- anon_sym_override,
- anon_sym_module,
- anon_sym_any,
- anon_sym_number,
- anon_sym_boolean,
- anon_sym_string,
- anon_sym_symbol,
- anon_sym_object,
- [43230] = 3,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(1899), 13,
- anon_sym_STAR,
- anon_sym_BANG,
- anon_sym_in,
- anon_sym_GT,
- anon_sym_GT_GT,
- anon_sym_AMP,
- anon_sym_PIPE,
- anon_sym_PLUS,
- anon_sym_DASH,
- anon_sym_SLASH,
- anon_sym_LT,
- anon_sym_EQ_EQ,
- anon_sym_BANG_EQ,
- ACTIONS(1901), 31,
- sym__ternary_qmark,
- anon_sym_as,
- anon_sym_LBRACE,
- anon_sym_COMMA,
- anon_sym_RBRACE,
- anon_sym_LPAREN,
- anon_sym_RPAREN,
- anon_sym_of,
- anon_sym_COLON,
- anon_sym_LBRACK,
- anon_sym_RBRACK,
- anon_sym_DOT,
- anon_sym_QMARK_DOT,
- anon_sym_AMP_AMP,
- anon_sym_PIPE_PIPE,
- anon_sym_GT_GT_GT,
- anon_sym_LT_LT,
- anon_sym_CARET,
- anon_sym_PERCENT,
- anon_sym_STAR_STAR,
- anon_sym_LT_EQ,
- anon_sym_EQ_EQ_EQ,
- anon_sym_BANG_EQ_EQ,
- anon_sym_GT_EQ,
- anon_sym_QMARK_QMARK,
- anon_sym_instanceof,
- anon_sym_PLUS_PLUS,
- anon_sym_DASH_DASH,
- anon_sym_BQUOTE,
- anon_sym_satisfies,
- anon_sym_implements,
- [43283] = 34,
- ACTIONS(89), 1,
- anon_sym_BQUOTE,
- ACTIONS(4059), 1,
- anon_sym_QMARK_DOT,
- ACTIONS(4519), 1,
- anon_sym_LPAREN,
- ACTIONS(4523), 1,
- anon_sym_LBRACK,
- ACTIONS(4525), 1,
- anon_sym_DOT,
- ACTIONS(4527), 1,
- anon_sym_GT_GT,
- ACTIONS(4533), 1,
- anon_sym_PERCENT,
- ACTIONS(4535), 1,
- anon_sym_STAR_STAR,
- ACTIONS(4537), 1,
- anon_sym_LT,
- ACTIONS(4553), 1,
- anon_sym_AMP,
- ACTIONS(4555), 1,
- anon_sym_as,
- ACTIONS(4562), 1,
- anon_sym_BANG,
- ACTIONS(4564), 1,
- anon_sym_AMP_AMP,
- ACTIONS(4566), 1,
- anon_sym_PIPE_PIPE,
- ACTIONS(4568), 1,
- anon_sym_CARET,
- ACTIONS(4570), 1,
- anon_sym_PIPE,
- ACTIONS(4572), 1,
- anon_sym_QMARK_QMARK,
- ACTIONS(4574), 1,
- anon_sym_satisfies,
- ACTIONS(4576), 1,
- sym__ternary_qmark,
- ACTIONS(4757), 1,
- anon_sym_COMMA,
- STATE(1812), 1,
- sym_type_arguments,
- STATE(4513), 1,
- aux_sym_sequence_expression_repeat1,
- STATE(4772), 1,
- sym_optional_chain,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(4517), 2,
- anon_sym_STAR,
- anon_sym_SLASH,
- ACTIONS(4521), 2,
- anon_sym_in,
- anon_sym_GT,
- ACTIONS(4529), 2,
- anon_sym_GT_GT_GT,
- anon_sym_LT_LT,
- ACTIONS(4531), 2,
- anon_sym_PLUS,
- anon_sym_DASH,
- ACTIONS(4541), 2,
- anon_sym_EQ_EQ,
- anon_sym_BANG_EQ,
- ACTIONS(4543), 2,
- anon_sym_EQ_EQ_EQ,
- anon_sym_BANG_EQ_EQ,
- ACTIONS(4545), 2,
- anon_sym_PLUS_PLUS,
- anon_sym_DASH_DASH,
- ACTIONS(4759), 2,
- sym__automatic_semicolon,
- anon_sym_SEMI,
- STATE(2133), 2,
- sym_template_string,
- sym_arguments,
- ACTIONS(4539), 3,
- anon_sym_LT_EQ,
- anon_sym_GT_EQ,
- anon_sym_instanceof,
- [43398] = 4,
- ACTIONS(1726), 1,
- anon_sym_EQ,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(1724), 13,
- anon_sym_STAR,
- anon_sym_BANG,
- anon_sym_in,
- anon_sym_GT,
- anon_sym_GT_GT,
- anon_sym_AMP,
- anon_sym_PIPE,
- anon_sym_PLUS,
- anon_sym_DASH,
- anon_sym_SLASH,
- anon_sym_LT,
- anon_sym_EQ_EQ,
- anon_sym_BANG_EQ,
- ACTIONS(1728), 30,
- sym__ternary_qmark,
- anon_sym_as,
- anon_sym_LBRACE,
- anon_sym_COMMA,
- anon_sym_RBRACE,
- anon_sym_LPAREN,
- anon_sym_RPAREN,
- anon_sym_COLON,
- anon_sym_LBRACK,
- anon_sym_RBRACK,
- anon_sym_DOT,
- anon_sym_QMARK_DOT,
- anon_sym_AMP_AMP,
- anon_sym_PIPE_PIPE,
- anon_sym_GT_GT_GT,
- anon_sym_LT_LT,
- anon_sym_CARET,
- anon_sym_PERCENT,
- anon_sym_STAR_STAR,
- anon_sym_LT_EQ,
- anon_sym_EQ_EQ_EQ,
- anon_sym_BANG_EQ_EQ,
- anon_sym_GT_EQ,
- anon_sym_QMARK_QMARK,
- anon_sym_instanceof,
- anon_sym_PLUS_PLUS,
- anon_sym_DASH_DASH,
- anon_sym_BQUOTE,
- anon_sym_satisfies,
- anon_sym_implements,
- [43453] = 5,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(4440), 2,
- anon_sym_EQ,
- anon_sym_QMARK,
- ACTIONS(4761), 5,
- anon_sym_COMMA,
- anon_sym_RBRACE,
- anon_sym_RPAREN,
- anon_sym_COLON,
- anon_sym_RBRACK,
- ACTIONS(4438), 13,
- anon_sym_STAR,
- anon_sym_BANG,
- anon_sym_in,
- anon_sym_GT,
- anon_sym_GT_GT,
- anon_sym_AMP,
- anon_sym_PIPE,
- anon_sym_PLUS,
- anon_sym_DASH,
- anon_sym_SLASH,
- anon_sym_LT,
- anon_sym_EQ_EQ,
- anon_sym_BANG_EQ,
- ACTIONS(4442), 24,
- sym__ternary_qmark,
- anon_sym_as,
- anon_sym_LPAREN,
- anon_sym_of,
- anon_sym_LBRACK,
- anon_sym_DOT,
- anon_sym_QMARK_DOT,
- anon_sym_AMP_AMP,
- anon_sym_PIPE_PIPE,
- anon_sym_GT_GT_GT,
- anon_sym_LT_LT,
- anon_sym_CARET,
- anon_sym_PERCENT,
- anon_sym_STAR_STAR,
- anon_sym_LT_EQ,
- anon_sym_EQ_EQ_EQ,
- anon_sym_BANG_EQ_EQ,
- anon_sym_GT_EQ,
- anon_sym_QMARK_QMARK,
- anon_sym_instanceof,
- anon_sym_PLUS_PLUS,
- anon_sym_DASH_DASH,
- anon_sym_BQUOTE,
- anon_sym_satisfies,
- [43510] = 3,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(4764), 13,
- anon_sym_STAR,
- anon_sym_BANG,
- anon_sym_in,
- anon_sym_GT,
- anon_sym_GT_GT,
- anon_sym_AMP,
- anon_sym_PIPE,
- anon_sym_PLUS,
- anon_sym_DASH,
- anon_sym_SLASH,
- anon_sym_LT,
- anon_sym_EQ_EQ,
- anon_sym_BANG_EQ,
- ACTIONS(4766), 31,
- sym__ternary_qmark,
- anon_sym_as,
- anon_sym_LBRACE,
- anon_sym_COMMA,
- anon_sym_RBRACE,
- anon_sym_LPAREN,
- anon_sym_RPAREN,
- anon_sym_of,
- anon_sym_COLON,
- anon_sym_LBRACK,
- anon_sym_RBRACK,
- anon_sym_DOT,
- anon_sym_QMARK_DOT,
- anon_sym_AMP_AMP,
- anon_sym_PIPE_PIPE,
- anon_sym_GT_GT_GT,
- anon_sym_LT_LT,
- anon_sym_CARET,
- anon_sym_PERCENT,
- anon_sym_STAR_STAR,
- anon_sym_LT_EQ,
- anon_sym_EQ_EQ_EQ,
- anon_sym_BANG_EQ_EQ,
- anon_sym_GT_EQ,
- anon_sym_QMARK_QMARK,
- anon_sym_instanceof,
- anon_sym_PLUS_PLUS,
- anon_sym_DASH_DASH,
- anon_sym_BQUOTE,
- anon_sym_satisfies,
- anon_sym_implements,
- [43563] = 17,
- ACTIONS(89), 1,
- anon_sym_BQUOTE,
- ACTIONS(4059), 1,
- anon_sym_QMARK_DOT,
- ACTIONS(4519), 1,
- anon_sym_LPAREN,
- ACTIONS(4523), 1,
- anon_sym_LBRACK,
- ACTIONS(4525), 1,
- anon_sym_DOT,
- ACTIONS(4533), 1,
- anon_sym_PERCENT,
- ACTIONS(4535), 1,
- anon_sym_STAR_STAR,
- ACTIONS(4623), 1,
- anon_sym_LT,
- STATE(1812), 1,
- sym_type_arguments,
- STATE(4772), 1,
- sym_optional_chain,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(4517), 2,
- anon_sym_STAR,
- anon_sym_SLASH,
- ACTIONS(4531), 2,
- anon_sym_PLUS,
- anon_sym_DASH,
- ACTIONS(4545), 2,
- anon_sym_PLUS_PLUS,
- anon_sym_DASH_DASH,
- STATE(2133), 2,
- sym_template_string,
- sym_arguments,
- ACTIONS(4307), 8,
- anon_sym_BANG,
- anon_sym_in,
- anon_sym_GT,
- anon_sym_GT_GT,
- anon_sym_AMP,
- anon_sym_PIPE,
- anon_sym_EQ_EQ,
- anon_sym_BANG_EQ,
- ACTIONS(4305), 18,
- sym__automatic_semicolon,
- sym__ternary_qmark,
- anon_sym_as,
- anon_sym_COMMA,
- anon_sym_RBRACE,
- anon_sym_SEMI,
- anon_sym_AMP_AMP,
- anon_sym_PIPE_PIPE,
- anon_sym_GT_GT_GT,
- anon_sym_LT_LT,
- anon_sym_CARET,
- anon_sym_LT_EQ,
- anon_sym_EQ_EQ_EQ,
- anon_sym_BANG_EQ_EQ,
- anon_sym_GT_EQ,
- anon_sym_QMARK_QMARK,
- anon_sym_instanceof,
- anon_sym_satisfies,
- [43644] = 3,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(1927), 13,
- anon_sym_STAR,
- anon_sym_BANG,
- anon_sym_in,
- anon_sym_GT,
- anon_sym_GT_GT,
- anon_sym_AMP,
- anon_sym_PIPE,
- anon_sym_PLUS,
- anon_sym_DASH,
- anon_sym_SLASH,
- anon_sym_LT,
- anon_sym_EQ_EQ,
- anon_sym_BANG_EQ,
- ACTIONS(1925), 31,
- sym__ternary_qmark,
- anon_sym_as,
- anon_sym_LBRACE,
- anon_sym_COMMA,
- anon_sym_RBRACE,
- anon_sym_LPAREN,
- anon_sym_RPAREN,
- anon_sym_of,
- anon_sym_COLON,
- anon_sym_LBRACK,
- anon_sym_RBRACK,
- anon_sym_DOT,
- anon_sym_QMARK_DOT,
- anon_sym_AMP_AMP,
- anon_sym_PIPE_PIPE,
- anon_sym_GT_GT_GT,
- anon_sym_LT_LT,
- anon_sym_CARET,
- anon_sym_PERCENT,
- anon_sym_STAR_STAR,
- anon_sym_LT_EQ,
- anon_sym_EQ_EQ_EQ,
- anon_sym_BANG_EQ_EQ,
- anon_sym_GT_EQ,
- anon_sym_QMARK_QMARK,
- anon_sym_instanceof,
- anon_sym_PLUS_PLUS,
- anon_sym_DASH_DASH,
- anon_sym_BQUOTE,
- anon_sym_satisfies,
- anon_sym_implements,
- [43697] = 3,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(4768), 13,
- anon_sym_STAR,
- anon_sym_BANG,
- anon_sym_in,
- anon_sym_GT,
- anon_sym_GT_GT,
- anon_sym_AMP,
- anon_sym_PIPE,
- anon_sym_PLUS,
- anon_sym_DASH,
- anon_sym_SLASH,
- anon_sym_LT,
- anon_sym_EQ_EQ,
- anon_sym_BANG_EQ,
- ACTIONS(4770), 31,
- sym__ternary_qmark,
- anon_sym_as,
- anon_sym_LBRACE,
- anon_sym_COMMA,
- anon_sym_RBRACE,
- anon_sym_LPAREN,
- anon_sym_RPAREN,
- anon_sym_of,
- anon_sym_COLON,
- anon_sym_LBRACK,
- anon_sym_RBRACK,
- anon_sym_DOT,
- anon_sym_QMARK_DOT,
- anon_sym_AMP_AMP,
- anon_sym_PIPE_PIPE,
- anon_sym_GT_GT_GT,
- anon_sym_LT_LT,
- anon_sym_CARET,
- anon_sym_PERCENT,
- anon_sym_STAR_STAR,
- anon_sym_LT_EQ,
- anon_sym_EQ_EQ_EQ,
- anon_sym_BANG_EQ_EQ,
- anon_sym_GT_EQ,
- anon_sym_QMARK_QMARK,
- anon_sym_instanceof,
- anon_sym_PLUS_PLUS,
- anon_sym_DASH_DASH,
- anon_sym_BQUOTE,
- anon_sym_satisfies,
- anon_sym_implements,
- [43750] = 3,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(4772), 13,
- anon_sym_STAR,
- anon_sym_BANG,
- anon_sym_in,
- anon_sym_GT,
- anon_sym_GT_GT,
- anon_sym_AMP,
- anon_sym_PIPE,
- anon_sym_PLUS,
- anon_sym_DASH,
- anon_sym_SLASH,
- anon_sym_LT,
- anon_sym_EQ_EQ,
- anon_sym_BANG_EQ,
- ACTIONS(4372), 31,
- sym__ternary_qmark,
- anon_sym_as,
- anon_sym_LBRACE,
- anon_sym_COMMA,
- anon_sym_RBRACE,
- anon_sym_LPAREN,
- anon_sym_RPAREN,
- anon_sym_of,
- anon_sym_COLON,
- anon_sym_LBRACK,
- anon_sym_RBRACK,
- anon_sym_DOT,
- anon_sym_QMARK_DOT,
- anon_sym_AMP_AMP,
- anon_sym_PIPE_PIPE,
- anon_sym_GT_GT_GT,
- anon_sym_LT_LT,
- anon_sym_CARET,
- anon_sym_PERCENT,
- anon_sym_STAR_STAR,
- anon_sym_LT_EQ,
- anon_sym_EQ_EQ_EQ,
- anon_sym_BANG_EQ_EQ,
- anon_sym_GT_EQ,
- anon_sym_QMARK_QMARK,
- anon_sym_instanceof,
- anon_sym_PLUS_PLUS,
- anon_sym_DASH_DASH,
- anon_sym_BQUOTE,
- anon_sym_satisfies,
- anon_sym_implements,
- [43803] = 3,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(4774), 13,
- anon_sym_STAR,
- anon_sym_BANG,
- anon_sym_in,
- anon_sym_GT,
- anon_sym_GT_GT,
- anon_sym_AMP,
- anon_sym_PIPE,
- anon_sym_PLUS,
- anon_sym_DASH,
- anon_sym_SLASH,
- anon_sym_LT,
- anon_sym_EQ_EQ,
- anon_sym_BANG_EQ,
- ACTIONS(4776), 31,
- sym__ternary_qmark,
- anon_sym_as,
- anon_sym_LBRACE,
- anon_sym_COMMA,
- anon_sym_RBRACE,
- anon_sym_LPAREN,
- anon_sym_RPAREN,
- anon_sym_of,
- anon_sym_COLON,
- anon_sym_LBRACK,
- anon_sym_RBRACK,
- anon_sym_DOT,
- anon_sym_QMARK_DOT,
- anon_sym_AMP_AMP,
- anon_sym_PIPE_PIPE,
- anon_sym_GT_GT_GT,
- anon_sym_LT_LT,
- anon_sym_CARET,
- anon_sym_PERCENT,
- anon_sym_STAR_STAR,
- anon_sym_LT_EQ,
- anon_sym_EQ_EQ_EQ,
- anon_sym_BANG_EQ_EQ,
- anon_sym_GT_EQ,
- anon_sym_QMARK_QMARK,
- anon_sym_instanceof,
- anon_sym_PLUS_PLUS,
- anon_sym_DASH_DASH,
- anon_sym_BQUOTE,
- anon_sym_satisfies,
- anon_sym_implements,
- [43856] = 3,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(4778), 13,
- anon_sym_STAR,
- anon_sym_BANG,
- anon_sym_in,
- anon_sym_GT,
- anon_sym_GT_GT,
- anon_sym_AMP,
- anon_sym_PIPE,
- anon_sym_PLUS,
- anon_sym_DASH,
- anon_sym_SLASH,
- anon_sym_LT,
- anon_sym_EQ_EQ,
- anon_sym_BANG_EQ,
- ACTIONS(4374), 31,
- sym__ternary_qmark,
- anon_sym_as,
- anon_sym_LBRACE,
- anon_sym_COMMA,
- anon_sym_RBRACE,
- anon_sym_LPAREN,
- anon_sym_RPAREN,
- anon_sym_of,
- anon_sym_COLON,
- anon_sym_LBRACK,
- anon_sym_RBRACK,
- anon_sym_DOT,
- anon_sym_QMARK_DOT,
- anon_sym_AMP_AMP,
- anon_sym_PIPE_PIPE,
- anon_sym_GT_GT_GT,
- anon_sym_LT_LT,
- anon_sym_CARET,
- anon_sym_PERCENT,
- anon_sym_STAR_STAR,
- anon_sym_LT_EQ,
- anon_sym_EQ_EQ_EQ,
- anon_sym_BANG_EQ_EQ,
- anon_sym_GT_EQ,
- anon_sym_QMARK_QMARK,
- anon_sym_instanceof,
- anon_sym_PLUS_PLUS,
- anon_sym_DASH_DASH,
- anon_sym_BQUOTE,
- anon_sym_satisfies,
- anon_sym_implements,
- [43909] = 3,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(1829), 13,
- anon_sym_STAR,
- anon_sym_BANG,
- anon_sym_in,
- anon_sym_GT,
- anon_sym_GT_GT,
- anon_sym_AMP,
- anon_sym_PIPE,
- anon_sym_PLUS,
- anon_sym_DASH,
- anon_sym_SLASH,
- anon_sym_LT,
- anon_sym_EQ_EQ,
- anon_sym_BANG_EQ,
- ACTIONS(1831), 31,
- sym__ternary_qmark,
- anon_sym_as,
- anon_sym_LBRACE,
- anon_sym_COMMA,
- anon_sym_RBRACE,
- anon_sym_LPAREN,
- anon_sym_RPAREN,
- anon_sym_of,
- anon_sym_COLON,
- anon_sym_LBRACK,
- anon_sym_RBRACK,
- anon_sym_DOT,
- anon_sym_QMARK_DOT,
- anon_sym_AMP_AMP,
- anon_sym_PIPE_PIPE,
- anon_sym_GT_GT_GT,
- anon_sym_LT_LT,
- anon_sym_CARET,
- anon_sym_PERCENT,
- anon_sym_STAR_STAR,
- anon_sym_LT_EQ,
- anon_sym_EQ_EQ_EQ,
- anon_sym_BANG_EQ_EQ,
- anon_sym_GT_EQ,
- anon_sym_QMARK_QMARK,
- anon_sym_instanceof,
- anon_sym_PLUS_PLUS,
- anon_sym_DASH_DASH,
- anon_sym_BQUOTE,
- anon_sym_satisfies,
- anon_sym_implements,
- [43962] = 4,
- ACTIONS(4780), 1,
- sym__automatic_semicolon,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(1722), 13,
- anon_sym_STAR,
- anon_sym_BANG,
- anon_sym_in,
- anon_sym_GT,
- anon_sym_GT_GT,
- anon_sym_AMP,
- anon_sym_PIPE,
- anon_sym_PLUS,
- anon_sym_DASH,
- anon_sym_SLASH,
- anon_sym_LT,
- anon_sym_EQ_EQ,
- anon_sym_BANG_EQ,
- ACTIONS(1720), 30,
- sym__ternary_qmark,
- anon_sym_as,
- anon_sym_COMMA,
- anon_sym_RBRACE,
- anon_sym_else,
- anon_sym_LPAREN,
- anon_sym_of,
- anon_sym_while,
- anon_sym_SEMI,
- anon_sym_LBRACK,
- anon_sym_DOT,
- anon_sym_QMARK_DOT,
- anon_sym_AMP_AMP,
- anon_sym_PIPE_PIPE,
- anon_sym_GT_GT_GT,
- anon_sym_LT_LT,
- anon_sym_CARET,
- anon_sym_PERCENT,
- anon_sym_STAR_STAR,
- anon_sym_LT_EQ,
- anon_sym_EQ_EQ_EQ,
- anon_sym_BANG_EQ_EQ,
- anon_sym_GT_EQ,
- anon_sym_QMARK_QMARK,
- anon_sym_instanceof,
- anon_sym_PLUS_PLUS,
- anon_sym_DASH_DASH,
- anon_sym_BQUOTE,
- anon_sym_satisfies,
- anon_sym_PIPE_RBRACE,
- [44017] = 21,
- ACTIONS(89), 1,
- anon_sym_BQUOTE,
- ACTIONS(4059), 1,
- anon_sym_QMARK_DOT,
- ACTIONS(4519), 1,
- anon_sym_LPAREN,
- ACTIONS(4523), 1,
- anon_sym_LBRACK,
- ACTIONS(4525), 1,
- anon_sym_DOT,
- ACTIONS(4586), 1,
- anon_sym_GT_GT,
- ACTIONS(4598), 1,
- anon_sym_PERCENT,
- ACTIONS(4600), 1,
- anon_sym_STAR_STAR,
- ACTIONS(4602), 1,
- anon_sym_LT,
- STATE(1812), 1,
- sym_type_arguments,
- STATE(4772), 1,
- sym_optional_chain,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(4545), 2,
- anon_sym_PLUS_PLUS,
- anon_sym_DASH_DASH,
- ACTIONS(4578), 2,
- anon_sym_STAR,
- anon_sym_SLASH,
- ACTIONS(4580), 2,
- anon_sym_in,
- anon_sym_GT,
- ACTIONS(4588), 2,
- anon_sym_GT_GT_GT,
- anon_sym_LT_LT,
- ACTIONS(4596), 2,
- anon_sym_PLUS,
- anon_sym_DASH,
- STATE(2133), 2,
- sym_template_string,
- sym_arguments,
- ACTIONS(4604), 3,
- anon_sym_LT_EQ,
- anon_sym_GT_EQ,
- anon_sym_instanceof,
- ACTIONS(4307), 5,
- anon_sym_BANG,
- anon_sym_AMP,
- anon_sym_PIPE,
- anon_sym_EQ_EQ,
- anon_sym_BANG_EQ,
- ACTIONS(4305), 13,
- sym__automatic_semicolon,
- sym__ternary_qmark,
- anon_sym_as,
- anon_sym_COMMA,
- anon_sym_of,
- anon_sym_SEMI,
- anon_sym_AMP_AMP,
- anon_sym_PIPE_PIPE,
- anon_sym_CARET,
- anon_sym_EQ_EQ_EQ,
- anon_sym_BANG_EQ_EQ,
- anon_sym_QMARK_QMARK,
- anon_sym_satisfies,
- [44106] = 3,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(4782), 13,
- anon_sym_STAR,
- anon_sym_BANG,
- anon_sym_in,
- anon_sym_GT,
- anon_sym_GT_GT,
- anon_sym_AMP,
- anon_sym_PIPE,
- anon_sym_PLUS,
- anon_sym_DASH,
- anon_sym_SLASH,
- anon_sym_LT,
- anon_sym_EQ_EQ,
- anon_sym_BANG_EQ,
- ACTIONS(4784), 31,
- sym__ternary_qmark,
- anon_sym_as,
- anon_sym_LBRACE,
- anon_sym_COMMA,
- anon_sym_RBRACE,
- anon_sym_LPAREN,
- anon_sym_RPAREN,
- anon_sym_of,
- anon_sym_COLON,
- anon_sym_LBRACK,
- anon_sym_RBRACK,
- anon_sym_DOT,
- anon_sym_QMARK_DOT,
- anon_sym_AMP_AMP,
- anon_sym_PIPE_PIPE,
- anon_sym_GT_GT_GT,
- anon_sym_LT_LT,
- anon_sym_CARET,
- anon_sym_PERCENT,
- anon_sym_STAR_STAR,
- anon_sym_LT_EQ,
- anon_sym_EQ_EQ_EQ,
- anon_sym_BANG_EQ_EQ,
- anon_sym_GT_EQ,
- anon_sym_QMARK_QMARK,
- anon_sym_instanceof,
- anon_sym_PLUS_PLUS,
- anon_sym_DASH_DASH,
- anon_sym_BQUOTE,
- anon_sym_satisfies,
- anon_sym_implements,
- [44159] = 11,
- ACTIONS(4519), 1,
- anon_sym_LPAREN,
- ACTIONS(4523), 1,
- anon_sym_LBRACK,
- ACTIONS(4525), 1,
- anon_sym_DOT,
- ACTIONS(4549), 1,
- anon_sym_LT,
- ACTIONS(4786), 1,
- anon_sym_QMARK_DOT,
- STATE(1975), 1,
- sym_type_arguments,
- STATE(2148), 1,
- sym_arguments,
- STATE(4772), 1,
- sym_optional_chain,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(3965), 12,
- anon_sym_STAR,
- anon_sym_BANG,
- anon_sym_in,
- anon_sym_GT,
- anon_sym_GT_GT,
- anon_sym_AMP,
- anon_sym_PIPE,
- anon_sym_PLUS,
- anon_sym_DASH,
- anon_sym_SLASH,
- anon_sym_EQ_EQ,
- anon_sym_BANG_EQ,
- ACTIONS(3967), 24,
- sym__automatic_semicolon,
- sym__ternary_qmark,
- anon_sym_as,
- anon_sym_COMMA,
- anon_sym_RBRACE,
- anon_sym_of,
- anon_sym_SEMI,
- anon_sym_AMP_AMP,
- anon_sym_PIPE_PIPE,
- anon_sym_GT_GT_GT,
- anon_sym_LT_LT,
- anon_sym_CARET,
- anon_sym_PERCENT,
- anon_sym_STAR_STAR,
- anon_sym_LT_EQ,
- anon_sym_EQ_EQ_EQ,
- anon_sym_BANG_EQ_EQ,
- anon_sym_GT_EQ,
- anon_sym_QMARK_QMARK,
- anon_sym_instanceof,
- anon_sym_PLUS_PLUS,
- anon_sym_DASH_DASH,
- anon_sym_BQUOTE,
- anon_sym_satisfies,
- [44228] = 32,
- ACTIONS(89), 1,
- anon_sym_BQUOTE,
- ACTIONS(4059), 1,
- anon_sym_QMARK_DOT,
- ACTIONS(4519), 1,
- anon_sym_LPAREN,
- ACTIONS(4523), 1,
- anon_sym_LBRACK,
- ACTIONS(4525), 1,
- anon_sym_DOT,
- ACTIONS(4527), 1,
- anon_sym_GT_GT,
- ACTIONS(4533), 1,
- anon_sym_PERCENT,
- ACTIONS(4535), 1,
- anon_sym_STAR_STAR,
- ACTIONS(4537), 1,
- anon_sym_LT,
- ACTIONS(4553), 1,
- anon_sym_AMP,
- ACTIONS(4555), 1,
- anon_sym_as,
- ACTIONS(4562), 1,
- anon_sym_BANG,
- ACTIONS(4564), 1,
- anon_sym_AMP_AMP,
- ACTIONS(4566), 1,
- anon_sym_PIPE_PIPE,
- ACTIONS(4568), 1,
- anon_sym_CARET,
- ACTIONS(4570), 1,
- anon_sym_PIPE,
- ACTIONS(4572), 1,
- anon_sym_QMARK_QMARK,
- ACTIONS(4574), 1,
- anon_sym_satisfies,
- ACTIONS(4576), 1,
- sym__ternary_qmark,
- STATE(1812), 1,
- sym_type_arguments,
- STATE(4772), 1,
- sym_optional_chain,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(4517), 2,
- anon_sym_STAR,
- anon_sym_SLASH,
- ACTIONS(4521), 2,
- anon_sym_in,
- anon_sym_GT,
- ACTIONS(4529), 2,
- anon_sym_GT_GT_GT,
- anon_sym_LT_LT,
- ACTIONS(4531), 2,
- anon_sym_PLUS,
- anon_sym_DASH,
- ACTIONS(4541), 2,
- anon_sym_EQ_EQ,
- anon_sym_BANG_EQ,
- ACTIONS(4543), 2,
- anon_sym_EQ_EQ_EQ,
- anon_sym_BANG_EQ_EQ,
- ACTIONS(4545), 2,
- anon_sym_PLUS_PLUS,
- anon_sym_DASH_DASH,
- STATE(2133), 2,
- sym_template_string,
- sym_arguments,
- ACTIONS(4539), 3,
- anon_sym_LT_EQ,
- anon_sym_GT_EQ,
- anon_sym_instanceof,
- ACTIONS(4255), 4,
- sym__automatic_semicolon,
- anon_sym_COMMA,
- anon_sym_RBRACE,
- anon_sym_SEMI,
- [44339] = 3,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(4788), 13,
- anon_sym_STAR,
- anon_sym_BANG,
- anon_sym_in,
- anon_sym_GT,
- anon_sym_GT_GT,
- anon_sym_AMP,
- anon_sym_PIPE,
- anon_sym_PLUS,
- anon_sym_DASH,
- anon_sym_SLASH,
- anon_sym_LT,
- anon_sym_EQ_EQ,
- anon_sym_BANG_EQ,
- ACTIONS(4790), 31,
- sym__ternary_qmark,
- anon_sym_as,
- anon_sym_LBRACE,
- anon_sym_COMMA,
- anon_sym_RBRACE,
- anon_sym_LPAREN,
- anon_sym_RPAREN,
- anon_sym_of,
- anon_sym_COLON,
- anon_sym_LBRACK,
- anon_sym_RBRACK,
- anon_sym_DOT,
- anon_sym_QMARK_DOT,
- anon_sym_AMP_AMP,
- anon_sym_PIPE_PIPE,
- anon_sym_GT_GT_GT,
- anon_sym_LT_LT,
- anon_sym_CARET,
- anon_sym_PERCENT,
- anon_sym_STAR_STAR,
- anon_sym_LT_EQ,
- anon_sym_EQ_EQ_EQ,
- anon_sym_BANG_EQ_EQ,
- anon_sym_GT_EQ,
- anon_sym_QMARK_QMARK,
- anon_sym_instanceof,
- anon_sym_PLUS_PLUS,
- anon_sym_DASH_DASH,
- anon_sym_BQUOTE,
- anon_sym_satisfies,
- anon_sym_implements,
- [44392] = 28,
- ACTIONS(89), 1,
- anon_sym_BQUOTE,
- ACTIONS(4059), 1,
- anon_sym_QMARK_DOT,
- ACTIONS(4307), 1,
- anon_sym_BANG,
- ACTIONS(4519), 1,
- anon_sym_LPAREN,
- ACTIONS(4523), 1,
- anon_sym_LBRACK,
- ACTIONS(4525), 1,
- anon_sym_DOT,
- ACTIONS(4582), 1,
- anon_sym_AMP_AMP,
- ACTIONS(4584), 1,
- anon_sym_PIPE_PIPE,
- ACTIONS(4586), 1,
- anon_sym_GT_GT,
- ACTIONS(4590), 1,
- anon_sym_AMP,
- ACTIONS(4592), 1,
- anon_sym_CARET,
- ACTIONS(4594), 1,
- anon_sym_PIPE,
- ACTIONS(4598), 1,
- anon_sym_PERCENT,
- ACTIONS(4600), 1,
- anon_sym_STAR_STAR,
- ACTIONS(4602), 1,
- anon_sym_LT,
- STATE(1812), 1,
- sym_type_arguments,
- STATE(4772), 1,
- sym_optional_chain,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(4545), 2,
- anon_sym_PLUS_PLUS,
- anon_sym_DASH_DASH,
- ACTIONS(4578), 2,
- anon_sym_STAR,
- anon_sym_SLASH,
- ACTIONS(4580), 2,
- anon_sym_in,
- anon_sym_GT,
- ACTIONS(4588), 2,
- anon_sym_GT_GT_GT,
- anon_sym_LT_LT,
- ACTIONS(4596), 2,
- anon_sym_PLUS,
- anon_sym_DASH,
- ACTIONS(4606), 2,
- anon_sym_EQ_EQ,
- anon_sym_BANG_EQ,
- ACTIONS(4608), 2,
- anon_sym_EQ_EQ_EQ,
- anon_sym_BANG_EQ_EQ,
- STATE(2133), 2,
- sym_template_string,
- sym_arguments,
- ACTIONS(4604), 3,
- anon_sym_LT_EQ,
- anon_sym_GT_EQ,
- anon_sym_instanceof,
- ACTIONS(4305), 8,
- sym__automatic_semicolon,
- sym__ternary_qmark,
- anon_sym_as,
- anon_sym_COMMA,
- anon_sym_of,
- anon_sym_SEMI,
- anon_sym_QMARK_QMARK,
- anon_sym_satisfies,
- [44495] = 3,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(4792), 13,
- anon_sym_STAR,
- anon_sym_BANG,
- anon_sym_in,
- anon_sym_GT,
- anon_sym_GT_GT,
- anon_sym_AMP,
- anon_sym_PIPE,
- anon_sym_PLUS,
- anon_sym_DASH,
- anon_sym_SLASH,
- anon_sym_LT,
- anon_sym_EQ_EQ,
- anon_sym_BANG_EQ,
- ACTIONS(4794), 31,
- sym__ternary_qmark,
- anon_sym_as,
- anon_sym_LBRACE,
- anon_sym_COMMA,
- anon_sym_RBRACE,
- anon_sym_LPAREN,
- anon_sym_RPAREN,
- anon_sym_of,
- anon_sym_COLON,
- anon_sym_LBRACK,
- anon_sym_RBRACK,
- anon_sym_DOT,
- anon_sym_QMARK_DOT,
- anon_sym_AMP_AMP,
- anon_sym_PIPE_PIPE,
- anon_sym_GT_GT_GT,
- anon_sym_LT_LT,
- anon_sym_CARET,
- anon_sym_PERCENT,
- anon_sym_STAR_STAR,
- anon_sym_LT_EQ,
- anon_sym_EQ_EQ_EQ,
- anon_sym_BANG_EQ_EQ,
- anon_sym_GT_EQ,
- anon_sym_QMARK_QMARK,
- anon_sym_instanceof,
- anon_sym_PLUS_PLUS,
- anon_sym_DASH_DASH,
- anon_sym_BQUOTE,
- anon_sym_satisfies,
- anon_sym_implements,
- [44548] = 3,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(4796), 13,
- anon_sym_STAR,
- anon_sym_BANG,
- anon_sym_in,
- anon_sym_GT,
- anon_sym_GT_GT,
- anon_sym_AMP,
- anon_sym_PIPE,
- anon_sym_PLUS,
- anon_sym_DASH,
- anon_sym_SLASH,
- anon_sym_LT,
- anon_sym_EQ_EQ,
- anon_sym_BANG_EQ,
- ACTIONS(4798), 31,
- sym__ternary_qmark,
- anon_sym_as,
- anon_sym_LBRACE,
- anon_sym_COMMA,
- anon_sym_RBRACE,
- anon_sym_LPAREN,
- anon_sym_RPAREN,
- anon_sym_of,
- anon_sym_COLON,
- anon_sym_LBRACK,
- anon_sym_RBRACK,
- anon_sym_DOT,
- anon_sym_QMARK_DOT,
- anon_sym_AMP_AMP,
- anon_sym_PIPE_PIPE,
- anon_sym_GT_GT_GT,
- anon_sym_LT_LT,
- anon_sym_CARET,
- anon_sym_PERCENT,
- anon_sym_STAR_STAR,
- anon_sym_LT_EQ,
- anon_sym_EQ_EQ_EQ,
- anon_sym_BANG_EQ_EQ,
- anon_sym_GT_EQ,
- anon_sym_QMARK_QMARK,
- anon_sym_instanceof,
- anon_sym_PLUS_PLUS,
- anon_sym_DASH_DASH,
- anon_sym_BQUOTE,
- anon_sym_satisfies,
- anon_sym_implements,
- [44601] = 3,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(4800), 13,
- anon_sym_STAR,
- anon_sym_BANG,
- anon_sym_in,
- anon_sym_GT,
- anon_sym_GT_GT,
- anon_sym_AMP,
- anon_sym_PIPE,
- anon_sym_PLUS,
- anon_sym_DASH,
- anon_sym_SLASH,
- anon_sym_LT,
- anon_sym_EQ_EQ,
- anon_sym_BANG_EQ,
- ACTIONS(4802), 31,
- sym__ternary_qmark,
- anon_sym_as,
- anon_sym_LBRACE,
- anon_sym_COMMA,
- anon_sym_RBRACE,
- anon_sym_LPAREN,
- anon_sym_RPAREN,
- anon_sym_of,
- anon_sym_COLON,
- anon_sym_LBRACK,
- anon_sym_RBRACK,
- anon_sym_DOT,
- anon_sym_QMARK_DOT,
- anon_sym_AMP_AMP,
- anon_sym_PIPE_PIPE,
- anon_sym_GT_GT_GT,
- anon_sym_LT_LT,
- anon_sym_CARET,
- anon_sym_PERCENT,
- anon_sym_STAR_STAR,
- anon_sym_LT_EQ,
- anon_sym_EQ_EQ_EQ,
- anon_sym_BANG_EQ_EQ,
- anon_sym_GT_EQ,
- anon_sym_QMARK_QMARK,
- anon_sym_instanceof,
- anon_sym_PLUS_PLUS,
- anon_sym_DASH_DASH,
- anon_sym_BQUOTE,
- anon_sym_satisfies,
- anon_sym_implements,
- [44654] = 3,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(4804), 13,
- anon_sym_STAR,
- anon_sym_BANG,
- anon_sym_in,
- anon_sym_GT,
- anon_sym_GT_GT,
- anon_sym_AMP,
- anon_sym_PIPE,
- anon_sym_PLUS,
- anon_sym_DASH,
- anon_sym_SLASH,
- anon_sym_LT,
- anon_sym_EQ_EQ,
- anon_sym_BANG_EQ,
- ACTIONS(4806), 31,
- sym__ternary_qmark,
- anon_sym_as,
- anon_sym_LBRACE,
- anon_sym_COMMA,
- anon_sym_RBRACE,
- anon_sym_LPAREN,
- anon_sym_RPAREN,
- anon_sym_of,
- anon_sym_COLON,
- anon_sym_LBRACK,
- anon_sym_RBRACK,
- anon_sym_DOT,
- anon_sym_QMARK_DOT,
- anon_sym_AMP_AMP,
- anon_sym_PIPE_PIPE,
- anon_sym_GT_GT_GT,
- anon_sym_LT_LT,
- anon_sym_CARET,
- anon_sym_PERCENT,
- anon_sym_STAR_STAR,
- anon_sym_LT_EQ,
- anon_sym_EQ_EQ_EQ,
- anon_sym_BANG_EQ_EQ,
- anon_sym_GT_EQ,
- anon_sym_QMARK_QMARK,
- anon_sym_instanceof,
- anon_sym_PLUS_PLUS,
- anon_sym_DASH_DASH,
- anon_sym_BQUOTE,
- anon_sym_satisfies,
- anon_sym_implements,
- [44707] = 13,
- ACTIONS(89), 1,
- anon_sym_BQUOTE,
- ACTIONS(4059), 1,
- anon_sym_QMARK_DOT,
- ACTIONS(4519), 1,
- anon_sym_LPAREN,
- ACTIONS(4523), 1,
- anon_sym_LBRACK,
- ACTIONS(4525), 1,
- anon_sym_DOT,
- ACTIONS(4808), 1,
- anon_sym_LT,
- STATE(1812), 1,
- sym_type_arguments,
- STATE(4772), 1,
- sym_optional_chain,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(4545), 2,
- anon_sym_PLUS_PLUS,
- anon_sym_DASH_DASH,
- STATE(2133), 2,
- sym_template_string,
- sym_arguments,
- ACTIONS(4170), 12,
- anon_sym_STAR,
- anon_sym_BANG,
- anon_sym_in,
- anon_sym_GT,
- anon_sym_GT_GT,
- anon_sym_AMP,
- anon_sym_PIPE,
- anon_sym_PLUS,
- anon_sym_DASH,
- anon_sym_SLASH,
- anon_sym_EQ_EQ,
- anon_sym_BANG_EQ,
- ACTIONS(4172), 20,
- sym__automatic_semicolon,
- sym__ternary_qmark,
- anon_sym_as,
- anon_sym_COMMA,
- anon_sym_RBRACE,
- anon_sym_SEMI,
- anon_sym_AMP_AMP,
- anon_sym_PIPE_PIPE,
- anon_sym_GT_GT_GT,
- anon_sym_LT_LT,
- anon_sym_CARET,
- anon_sym_PERCENT,
- anon_sym_STAR_STAR,
- anon_sym_LT_EQ,
- anon_sym_EQ_EQ_EQ,
- anon_sym_BANG_EQ_EQ,
- anon_sym_GT_EQ,
- anon_sym_QMARK_QMARK,
- anon_sym_instanceof,
- anon_sym_satisfies,
- [44780] = 3,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(4811), 13,
- anon_sym_STAR,
- anon_sym_BANG,
- anon_sym_in,
- anon_sym_GT,
- anon_sym_GT_GT,
- anon_sym_AMP,
- anon_sym_PIPE,
- anon_sym_PLUS,
- anon_sym_DASH,
- anon_sym_SLASH,
- anon_sym_LT,
- anon_sym_EQ_EQ,
- anon_sym_BANG_EQ,
- ACTIONS(4813), 31,
- sym__ternary_qmark,
- anon_sym_as,
- anon_sym_LBRACE,
- anon_sym_COMMA,
- anon_sym_RBRACE,
- anon_sym_LPAREN,
- anon_sym_RPAREN,
- anon_sym_of,
- anon_sym_COLON,
- anon_sym_LBRACK,
- anon_sym_RBRACK,
- anon_sym_DOT,
- anon_sym_QMARK_DOT,
- anon_sym_AMP_AMP,
- anon_sym_PIPE_PIPE,
- anon_sym_GT_GT_GT,
- anon_sym_LT_LT,
- anon_sym_CARET,
- anon_sym_PERCENT,
- anon_sym_STAR_STAR,
- anon_sym_LT_EQ,
- anon_sym_EQ_EQ_EQ,
- anon_sym_BANG_EQ_EQ,
- anon_sym_GT_EQ,
- anon_sym_QMARK_QMARK,
- anon_sym_instanceof,
- anon_sym_PLUS_PLUS,
- anon_sym_DASH_DASH,
- anon_sym_BQUOTE,
- anon_sym_satisfies,
- anon_sym_implements,
- [44833] = 3,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(4800), 13,
- anon_sym_STAR,
- anon_sym_BANG,
- anon_sym_in,
- anon_sym_GT,
- anon_sym_GT_GT,
- anon_sym_AMP,
- anon_sym_PIPE,
- anon_sym_PLUS,
- anon_sym_DASH,
- anon_sym_SLASH,
- anon_sym_LT,
- anon_sym_EQ_EQ,
- anon_sym_BANG_EQ,
- ACTIONS(4802), 31,
- sym__ternary_qmark,
- anon_sym_as,
- anon_sym_LBRACE,
- anon_sym_COMMA,
- anon_sym_RBRACE,
- anon_sym_LPAREN,
- anon_sym_RPAREN,
- anon_sym_of,
- anon_sym_COLON,
- anon_sym_LBRACK,
- anon_sym_RBRACK,
- anon_sym_DOT,
- anon_sym_QMARK_DOT,
- anon_sym_AMP_AMP,
- anon_sym_PIPE_PIPE,
- anon_sym_GT_GT_GT,
- anon_sym_LT_LT,
- anon_sym_CARET,
- anon_sym_PERCENT,
- anon_sym_STAR_STAR,
- anon_sym_LT_EQ,
- anon_sym_EQ_EQ_EQ,
- anon_sym_BANG_EQ_EQ,
- anon_sym_GT_EQ,
- anon_sym_QMARK_QMARK,
- anon_sym_instanceof,
- anon_sym_PLUS_PLUS,
- anon_sym_DASH_DASH,
- anon_sym_BQUOTE,
- anon_sym_satisfies,
- anon_sym_implements,
- [44886] = 3,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(4815), 13,
- anon_sym_STAR,
- anon_sym_BANG,
- anon_sym_in,
- anon_sym_GT,
- anon_sym_GT_GT,
- anon_sym_AMP,
- anon_sym_PIPE,
- anon_sym_PLUS,
- anon_sym_DASH,
- anon_sym_SLASH,
- anon_sym_LT,
- anon_sym_EQ_EQ,
- anon_sym_BANG_EQ,
- ACTIONS(4817), 31,
- sym__ternary_qmark,
- anon_sym_as,
- anon_sym_LBRACE,
- anon_sym_COMMA,
- anon_sym_RBRACE,
- anon_sym_LPAREN,
- anon_sym_RPAREN,
- anon_sym_of,
- anon_sym_COLON,
- anon_sym_LBRACK,
- anon_sym_RBRACK,
- anon_sym_DOT,
- anon_sym_QMARK_DOT,
- anon_sym_AMP_AMP,
- anon_sym_PIPE_PIPE,
- anon_sym_GT_GT_GT,
- anon_sym_LT_LT,
- anon_sym_CARET,
- anon_sym_PERCENT,
- anon_sym_STAR_STAR,
- anon_sym_LT_EQ,
- anon_sym_EQ_EQ_EQ,
- anon_sym_BANG_EQ_EQ,
- anon_sym_GT_EQ,
- anon_sym_QMARK_QMARK,
- anon_sym_instanceof,
- anon_sym_PLUS_PLUS,
- anon_sym_DASH_DASH,
- anon_sym_BQUOTE,
- anon_sym_satisfies,
- anon_sym_implements,
- [44939] = 3,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(4819), 13,
- anon_sym_STAR,
- anon_sym_BANG,
- anon_sym_in,
- anon_sym_GT,
- anon_sym_GT_GT,
- anon_sym_AMP,
- anon_sym_PIPE,
- anon_sym_PLUS,
- anon_sym_DASH,
- anon_sym_SLASH,
- anon_sym_LT,
- anon_sym_EQ_EQ,
- anon_sym_BANG_EQ,
- ACTIONS(4821), 31,
- sym__ternary_qmark,
- anon_sym_as,
- anon_sym_LBRACE,
- anon_sym_COMMA,
- anon_sym_RBRACE,
- anon_sym_LPAREN,
- anon_sym_RPAREN,
- anon_sym_of,
- anon_sym_COLON,
- anon_sym_LBRACK,
- anon_sym_RBRACK,
- anon_sym_DOT,
- anon_sym_QMARK_DOT,
- anon_sym_AMP_AMP,
- anon_sym_PIPE_PIPE,
- anon_sym_GT_GT_GT,
- anon_sym_LT_LT,
- anon_sym_CARET,
- anon_sym_PERCENT,
- anon_sym_STAR_STAR,
- anon_sym_LT_EQ,
- anon_sym_EQ_EQ_EQ,
- anon_sym_BANG_EQ_EQ,
- anon_sym_GT_EQ,
- anon_sym_QMARK_QMARK,
- anon_sym_instanceof,
- anon_sym_PLUS_PLUS,
- anon_sym_DASH_DASH,
- anon_sym_BQUOTE,
- anon_sym_satisfies,
- anon_sym_implements,
- [44992] = 3,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(4823), 13,
- anon_sym_STAR,
- anon_sym_BANG,
- anon_sym_in,
- anon_sym_GT,
- anon_sym_GT_GT,
- anon_sym_AMP,
- anon_sym_PIPE,
- anon_sym_PLUS,
- anon_sym_DASH,
- anon_sym_SLASH,
- anon_sym_LT,
- anon_sym_EQ_EQ,
- anon_sym_BANG_EQ,
- ACTIONS(4825), 31,
- sym__ternary_qmark,
- anon_sym_as,
- anon_sym_LBRACE,
- anon_sym_COMMA,
- anon_sym_RBRACE,
- anon_sym_LPAREN,
- anon_sym_RPAREN,
- anon_sym_of,
- anon_sym_COLON,
- anon_sym_LBRACK,
- anon_sym_RBRACK,
- anon_sym_DOT,
- anon_sym_QMARK_DOT,
- anon_sym_AMP_AMP,
- anon_sym_PIPE_PIPE,
- anon_sym_GT_GT_GT,
- anon_sym_LT_LT,
- anon_sym_CARET,
- anon_sym_PERCENT,
- anon_sym_STAR_STAR,
- anon_sym_LT_EQ,
- anon_sym_EQ_EQ_EQ,
- anon_sym_BANG_EQ_EQ,
- anon_sym_GT_EQ,
- anon_sym_QMARK_QMARK,
- anon_sym_instanceof,
- anon_sym_PLUS_PLUS,
- anon_sym_DASH_DASH,
- anon_sym_BQUOTE,
- anon_sym_satisfies,
- anon_sym_implements,
- [45045] = 17,
- ACTIONS(1594), 1,
- anon_sym_DQUOTE,
- ACTIONS(1596), 1,
- anon_sym_SQUOTE,
- ACTIONS(3633), 1,
- anon_sym_override,
- ACTIONS(4245), 1,
- anon_sym_LBRACK,
- ACTIONS(4827), 1,
- anon_sym_STAR,
- ACTIONS(4829), 1,
- anon_sym_LBRACE,
- ACTIONS(4831), 1,
- anon_sym_async,
- ACTIONS(4835), 1,
- anon_sym_readonly,
- ACTIONS(4839), 1,
- sym__automatic_semicolon,
- STATE(2625), 1,
- sym_statement_block,
- STATE(2700), 1,
- sym_override_modifier,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(4833), 2,
- sym_number,
- sym_private_property_identifier,
- ACTIONS(4837), 2,
- anon_sym_get,
- anon_sym_set,
- STATE(2980), 3,
- sym_string,
- sym__property_name,
- sym_computed_property_name,
- ACTIONS(3743), 8,
- anon_sym_EQ,
- anon_sym_COMMA,
- anon_sym_BANG,
- anon_sym_LPAREN,
- anon_sym_SEMI,
- anon_sym_COLON,
- anon_sym_LT,
- anon_sym_QMARK,
- ACTIONS(3607), 18,
- anon_sym_export,
- anon_sym_type,
- anon_sym_namespace,
- anon_sym_let,
- anon_sym_new,
- sym_identifier,
- anon_sym_static,
- anon_sym_declare,
- anon_sym_public,
- anon_sym_private,
- anon_sym_protected,
- anon_sym_module,
- anon_sym_any,
- anon_sym_number,
- anon_sym_boolean,
- anon_sym_string,
- anon_sym_symbol,
- anon_sym_object,
- [45126] = 3,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(4800), 13,
- anon_sym_STAR,
- anon_sym_BANG,
- anon_sym_in,
- anon_sym_GT,
- anon_sym_GT_GT,
- anon_sym_AMP,
- anon_sym_PIPE,
- anon_sym_PLUS,
- anon_sym_DASH,
- anon_sym_SLASH,
- anon_sym_LT,
- anon_sym_EQ_EQ,
- anon_sym_BANG_EQ,
- ACTIONS(4802), 31,
- sym__ternary_qmark,
- anon_sym_as,
- anon_sym_LBRACE,
- anon_sym_COMMA,
- anon_sym_RBRACE,
- anon_sym_LPAREN,
- anon_sym_RPAREN,
- anon_sym_of,
- anon_sym_COLON,
- anon_sym_LBRACK,
- anon_sym_RBRACK,
- anon_sym_DOT,
- anon_sym_QMARK_DOT,
- anon_sym_AMP_AMP,
- anon_sym_PIPE_PIPE,
- anon_sym_GT_GT_GT,
- anon_sym_LT_LT,
- anon_sym_CARET,
- anon_sym_PERCENT,
- anon_sym_STAR_STAR,
- anon_sym_LT_EQ,
- anon_sym_EQ_EQ_EQ,
- anon_sym_BANG_EQ_EQ,
- anon_sym_GT_EQ,
- anon_sym_QMARK_QMARK,
- anon_sym_instanceof,
- anon_sym_PLUS_PLUS,
- anon_sym_DASH_DASH,
- anon_sym_BQUOTE,
- anon_sym_satisfies,
- anon_sym_implements,
- [45179] = 32,
- ACTIONS(89), 1,
- anon_sym_BQUOTE,
- ACTIONS(4059), 1,
- anon_sym_QMARK_DOT,
- ACTIONS(4519), 1,
- anon_sym_LPAREN,
- ACTIONS(4523), 1,
- anon_sym_LBRACK,
- ACTIONS(4525), 1,
- anon_sym_DOT,
- ACTIONS(4527), 1,
- anon_sym_GT_GT,
- ACTIONS(4533), 1,
- anon_sym_PERCENT,
- ACTIONS(4535), 1,
- anon_sym_STAR_STAR,
- ACTIONS(4537), 1,
- anon_sym_LT,
- ACTIONS(4553), 1,
- anon_sym_AMP,
- ACTIONS(4555), 1,
- anon_sym_as,
- ACTIONS(4562), 1,
- anon_sym_BANG,
- ACTIONS(4564), 1,
- anon_sym_AMP_AMP,
- ACTIONS(4566), 1,
- anon_sym_PIPE_PIPE,
- ACTIONS(4568), 1,
- anon_sym_CARET,
- ACTIONS(4570), 1,
- anon_sym_PIPE,
- ACTIONS(4572), 1,
- anon_sym_QMARK_QMARK,
- ACTIONS(4574), 1,
- anon_sym_satisfies,
- ACTIONS(4576), 1,
- sym__ternary_qmark,
- STATE(1812), 1,
- sym_type_arguments,
- STATE(4772), 1,
- sym_optional_chain,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(4517), 2,
- anon_sym_STAR,
- anon_sym_SLASH,
- ACTIONS(4521), 2,
- anon_sym_in,
- anon_sym_GT,
- ACTIONS(4529), 2,
- anon_sym_GT_GT_GT,
- anon_sym_LT_LT,
- ACTIONS(4531), 2,
- anon_sym_PLUS,
- anon_sym_DASH,
- ACTIONS(4541), 2,
- anon_sym_EQ_EQ,
- anon_sym_BANG_EQ,
- ACTIONS(4543), 2,
- anon_sym_EQ_EQ_EQ,
- anon_sym_BANG_EQ_EQ,
- ACTIONS(4545), 2,
- anon_sym_PLUS_PLUS,
- anon_sym_DASH_DASH,
- STATE(2133), 2,
- sym_template_string,
- sym_arguments,
- ACTIONS(4539), 3,
- anon_sym_LT_EQ,
- anon_sym_GT_EQ,
- anon_sym_instanceof,
- ACTIONS(4299), 4,
- sym__automatic_semicolon,
- anon_sym_COMMA,
- anon_sym_RBRACE,
- anon_sym_SEMI,
- [45290] = 3,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(1923), 13,
- anon_sym_STAR,
- anon_sym_BANG,
- anon_sym_in,
- anon_sym_GT,
- anon_sym_GT_GT,
- anon_sym_AMP,
- anon_sym_PIPE,
- anon_sym_PLUS,
- anon_sym_DASH,
- anon_sym_SLASH,
- anon_sym_LT,
- anon_sym_EQ_EQ,
- anon_sym_BANG_EQ,
- ACTIONS(1921), 31,
- sym__ternary_qmark,
- anon_sym_as,
- anon_sym_LBRACE,
- anon_sym_COMMA,
- anon_sym_RBRACE,
- anon_sym_LPAREN,
- anon_sym_RPAREN,
- anon_sym_of,
- anon_sym_COLON,
- anon_sym_LBRACK,
- anon_sym_RBRACK,
- anon_sym_DOT,
- anon_sym_QMARK_DOT,
- anon_sym_AMP_AMP,
- anon_sym_PIPE_PIPE,
- anon_sym_GT_GT_GT,
- anon_sym_LT_LT,
- anon_sym_CARET,
- anon_sym_PERCENT,
- anon_sym_STAR_STAR,
- anon_sym_LT_EQ,
- anon_sym_EQ_EQ_EQ,
- anon_sym_BANG_EQ_EQ,
- anon_sym_GT_EQ,
- anon_sym_QMARK_QMARK,
- anon_sym_instanceof,
- anon_sym_PLUS_PLUS,
- anon_sym_DASH_DASH,
- anon_sym_BQUOTE,
- anon_sym_satisfies,
- anon_sym_implements,
- [45343] = 32,
- ACTIONS(89), 1,
- anon_sym_BQUOTE,
- ACTIONS(4059), 1,
- anon_sym_QMARK_DOT,
- ACTIONS(4519), 1,
- anon_sym_LPAREN,
- ACTIONS(4523), 1,
- anon_sym_LBRACK,
- ACTIONS(4525), 1,
- anon_sym_DOT,
- ACTIONS(4555), 1,
- anon_sym_as,
- ACTIONS(4562), 1,
- anon_sym_BANG,
- ACTIONS(4574), 1,
- anon_sym_satisfies,
- ACTIONS(4582), 1,
- anon_sym_AMP_AMP,
- ACTIONS(4584), 1,
- anon_sym_PIPE_PIPE,
- ACTIONS(4586), 1,
- anon_sym_GT_GT,
- ACTIONS(4590), 1,
- anon_sym_AMP,
- ACTIONS(4592), 1,
- anon_sym_CARET,
- ACTIONS(4594), 1,
- anon_sym_PIPE,
- ACTIONS(4598), 1,
- anon_sym_PERCENT,
- ACTIONS(4600), 1,
- anon_sym_STAR_STAR,
- ACTIONS(4602), 1,
- anon_sym_LT,
- ACTIONS(4610), 1,
- anon_sym_QMARK_QMARK,
- ACTIONS(4612), 1,
- sym__ternary_qmark,
- STATE(1812), 1,
- sym_type_arguments,
- STATE(4772), 1,
- sym_optional_chain,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(4545), 2,
- anon_sym_PLUS_PLUS,
- anon_sym_DASH_DASH,
- ACTIONS(4578), 2,
- anon_sym_STAR,
- anon_sym_SLASH,
- ACTIONS(4580), 2,
- anon_sym_in,
- anon_sym_GT,
- ACTIONS(4588), 2,
- anon_sym_GT_GT_GT,
- anon_sym_LT_LT,
- ACTIONS(4596), 2,
- anon_sym_PLUS,
- anon_sym_DASH,
- ACTIONS(4606), 2,
- anon_sym_EQ_EQ,
- anon_sym_BANG_EQ,
- ACTIONS(4608), 2,
- anon_sym_EQ_EQ_EQ,
- anon_sym_BANG_EQ_EQ,
- STATE(2133), 2,
- sym_template_string,
- sym_arguments,
- ACTIONS(4604), 3,
- anon_sym_LT_EQ,
- anon_sym_GT_EQ,
- anon_sym_instanceof,
- ACTIONS(4350), 4,
- sym__automatic_semicolon,
- anon_sym_COMMA,
- anon_sym_of,
- anon_sym_SEMI,
- [45454] = 32,
- ACTIONS(89), 1,
- anon_sym_BQUOTE,
- ACTIONS(4059), 1,
- anon_sym_QMARK_DOT,
- ACTIONS(4519), 1,
- anon_sym_LPAREN,
- ACTIONS(4523), 1,
- anon_sym_LBRACK,
- ACTIONS(4525), 1,
- anon_sym_DOT,
- ACTIONS(4555), 1,
- anon_sym_as,
- ACTIONS(4562), 1,
- anon_sym_BANG,
- ACTIONS(4574), 1,
- anon_sym_satisfies,
- ACTIONS(4582), 1,
- anon_sym_AMP_AMP,
- ACTIONS(4584), 1,
- anon_sym_PIPE_PIPE,
- ACTIONS(4586), 1,
- anon_sym_GT_GT,
- ACTIONS(4590), 1,
- anon_sym_AMP,
- ACTIONS(4592), 1,
- anon_sym_CARET,
- ACTIONS(4594), 1,
- anon_sym_PIPE,
- ACTIONS(4598), 1,
- anon_sym_PERCENT,
- ACTIONS(4600), 1,
- anon_sym_STAR_STAR,
- ACTIONS(4602), 1,
- anon_sym_LT,
- ACTIONS(4610), 1,
- anon_sym_QMARK_QMARK,
- ACTIONS(4612), 1,
- sym__ternary_qmark,
- STATE(1812), 1,
- sym_type_arguments,
- STATE(4772), 1,
- sym_optional_chain,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(4545), 2,
- anon_sym_PLUS_PLUS,
- anon_sym_DASH_DASH,
- ACTIONS(4578), 2,
- anon_sym_STAR,
- anon_sym_SLASH,
- ACTIONS(4580), 2,
- anon_sym_in,
- anon_sym_GT,
- ACTIONS(4588), 2,
- anon_sym_GT_GT_GT,
- anon_sym_LT_LT,
- ACTIONS(4596), 2,
- anon_sym_PLUS,
- anon_sym_DASH,
- ACTIONS(4606), 2,
- anon_sym_EQ_EQ,
- anon_sym_BANG_EQ,
- ACTIONS(4608), 2,
- anon_sym_EQ_EQ_EQ,
- anon_sym_BANG_EQ_EQ,
- STATE(2133), 2,
- sym_template_string,
- sym_arguments,
- ACTIONS(4604), 3,
- anon_sym_LT_EQ,
- anon_sym_GT_EQ,
- anon_sym_instanceof,
- ACTIONS(4352), 4,
- sym__automatic_semicolon,
- anon_sym_COMMA,
- anon_sym_of,
- anon_sym_SEMI,
- [45565] = 32,
- ACTIONS(89), 1,
- anon_sym_BQUOTE,
- ACTIONS(4059), 1,
- anon_sym_QMARK_DOT,
- ACTIONS(4519), 1,
- anon_sym_LPAREN,
- ACTIONS(4523), 1,
- anon_sym_LBRACK,
- ACTIONS(4525), 1,
- anon_sym_DOT,
- ACTIONS(4527), 1,
- anon_sym_GT_GT,
- ACTIONS(4533), 1,
- anon_sym_PERCENT,
- ACTIONS(4535), 1,
- anon_sym_STAR_STAR,
- ACTIONS(4537), 1,
- anon_sym_LT,
- ACTIONS(4553), 1,
- anon_sym_AMP,
- ACTIONS(4555), 1,
- anon_sym_as,
- ACTIONS(4562), 1,
- anon_sym_BANG,
- ACTIONS(4564), 1,
- anon_sym_AMP_AMP,
- ACTIONS(4566), 1,
- anon_sym_PIPE_PIPE,
- ACTIONS(4568), 1,
- anon_sym_CARET,
- ACTIONS(4570), 1,
- anon_sym_PIPE,
- ACTIONS(4572), 1,
- anon_sym_QMARK_QMARK,
- ACTIONS(4574), 1,
- anon_sym_satisfies,
- ACTIONS(4576), 1,
- sym__ternary_qmark,
- STATE(1812), 1,
- sym_type_arguments,
- STATE(4772), 1,
- sym_optional_chain,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(4517), 2,
- anon_sym_STAR,
- anon_sym_SLASH,
- ACTIONS(4521), 2,
- anon_sym_in,
- anon_sym_GT,
- ACTIONS(4529), 2,
- anon_sym_GT_GT_GT,
- anon_sym_LT_LT,
- ACTIONS(4531), 2,
- anon_sym_PLUS,
- anon_sym_DASH,
- ACTIONS(4541), 2,
- anon_sym_EQ_EQ,
- anon_sym_BANG_EQ,
- ACTIONS(4543), 2,
- anon_sym_EQ_EQ_EQ,
- anon_sym_BANG_EQ_EQ,
- ACTIONS(4545), 2,
- anon_sym_PLUS_PLUS,
- anon_sym_DASH_DASH,
- STATE(2133), 2,
- sym_template_string,
- sym_arguments,
- ACTIONS(4539), 3,
- anon_sym_LT_EQ,
- anon_sym_GT_EQ,
- anon_sym_instanceof,
- ACTIONS(4376), 4,
- sym__automatic_semicolon,
- anon_sym_COMMA,
- anon_sym_RBRACE,
- anon_sym_SEMI,
- [45676] = 32,
- ACTIONS(89), 1,
- anon_sym_BQUOTE,
- ACTIONS(4059), 1,
- anon_sym_QMARK_DOT,
- ACTIONS(4519), 1,
- anon_sym_LPAREN,
- ACTIONS(4523), 1,
- anon_sym_LBRACK,
- ACTIONS(4525), 1,
- anon_sym_DOT,
- ACTIONS(4527), 1,
- anon_sym_GT_GT,
- ACTIONS(4533), 1,
- anon_sym_PERCENT,
- ACTIONS(4535), 1,
- anon_sym_STAR_STAR,
- ACTIONS(4537), 1,
- anon_sym_LT,
- ACTIONS(4553), 1,
- anon_sym_AMP,
- ACTIONS(4555), 1,
- anon_sym_as,
- ACTIONS(4562), 1,
- anon_sym_BANG,
- ACTIONS(4564), 1,
- anon_sym_AMP_AMP,
- ACTIONS(4566), 1,
- anon_sym_PIPE_PIPE,
- ACTIONS(4568), 1,
- anon_sym_CARET,
- ACTIONS(4570), 1,
- anon_sym_PIPE,
- ACTIONS(4572), 1,
- anon_sym_QMARK_QMARK,
- ACTIONS(4574), 1,
- anon_sym_satisfies,
- ACTIONS(4576), 1,
- sym__ternary_qmark,
- STATE(1812), 1,
- sym_type_arguments,
- STATE(4772), 1,
- sym_optional_chain,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(4517), 2,
- anon_sym_STAR,
- anon_sym_SLASH,
- ACTIONS(4521), 2,
- anon_sym_in,
- anon_sym_GT,
- ACTIONS(4529), 2,
- anon_sym_GT_GT_GT,
- anon_sym_LT_LT,
- ACTIONS(4531), 2,
- anon_sym_PLUS,
- anon_sym_DASH,
- ACTIONS(4541), 2,
- anon_sym_EQ_EQ,
- anon_sym_BANG_EQ,
- ACTIONS(4543), 2,
- anon_sym_EQ_EQ_EQ,
- anon_sym_BANG_EQ_EQ,
- ACTIONS(4545), 2,
- anon_sym_PLUS_PLUS,
- anon_sym_DASH_DASH,
- STATE(2133), 2,
- sym_template_string,
- sym_arguments,
- ACTIONS(4539), 3,
- anon_sym_LT_EQ,
- anon_sym_GT_EQ,
- anon_sym_instanceof,
- ACTIONS(4257), 4,
- sym__automatic_semicolon,
- anon_sym_COMMA,
- anon_sym_RBRACE,
- anon_sym_SEMI,
- [45787] = 19,
- ACTIONS(89), 1,
- anon_sym_BQUOTE,
- ACTIONS(4059), 1,
- anon_sym_QMARK_DOT,
- ACTIONS(4519), 1,
- anon_sym_LPAREN,
- ACTIONS(4523), 1,
- anon_sym_LBRACK,
- ACTIONS(4525), 1,
- anon_sym_DOT,
- ACTIONS(4527), 1,
- anon_sym_GT_GT,
- ACTIONS(4533), 1,
- anon_sym_PERCENT,
- ACTIONS(4535), 1,
- anon_sym_STAR_STAR,
- ACTIONS(4537), 1,
- anon_sym_LT,
- STATE(1812), 1,
- sym_type_arguments,
- STATE(4772), 1,
- sym_optional_chain,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(4517), 2,
- anon_sym_STAR,
- anon_sym_SLASH,
- ACTIONS(4529), 2,
- anon_sym_GT_GT_GT,
- anon_sym_LT_LT,
- ACTIONS(4531), 2,
- anon_sym_PLUS,
- anon_sym_DASH,
- ACTIONS(4545), 2,
- anon_sym_PLUS_PLUS,
- anon_sym_DASH_DASH,
- STATE(2133), 2,
- sym_template_string,
- sym_arguments,
- ACTIONS(4307), 7,
- anon_sym_BANG,
- anon_sym_in,
- anon_sym_GT,
- anon_sym_AMP,
- anon_sym_PIPE,
- anon_sym_EQ_EQ,
- anon_sym_BANG_EQ,
- ACTIONS(4305), 16,
- sym__automatic_semicolon,
- sym__ternary_qmark,
- anon_sym_as,
- anon_sym_COMMA,
- anon_sym_RBRACE,
- anon_sym_SEMI,
- anon_sym_AMP_AMP,
- anon_sym_PIPE_PIPE,
- anon_sym_CARET,
- anon_sym_LT_EQ,
- anon_sym_EQ_EQ_EQ,
- anon_sym_BANG_EQ_EQ,
- anon_sym_GT_EQ,
- anon_sym_QMARK_QMARK,
- anon_sym_instanceof,
- anon_sym_satisfies,
- [45872] = 32,
- ACTIONS(89), 1,
- anon_sym_BQUOTE,
- ACTIONS(4059), 1,
- anon_sym_QMARK_DOT,
- ACTIONS(4519), 1,
- anon_sym_LPAREN,
- ACTIONS(4523), 1,
- anon_sym_LBRACK,
- ACTIONS(4525), 1,
- anon_sym_DOT,
- ACTIONS(4527), 1,
- anon_sym_GT_GT,
- ACTIONS(4533), 1,
- anon_sym_PERCENT,
- ACTIONS(4535), 1,
- anon_sym_STAR_STAR,
- ACTIONS(4537), 1,
- anon_sym_LT,
- ACTIONS(4553), 1,
- anon_sym_AMP,
- ACTIONS(4555), 1,
- anon_sym_as,
- ACTIONS(4562), 1,
- anon_sym_BANG,
- ACTIONS(4564), 1,
- anon_sym_AMP_AMP,
- ACTIONS(4566), 1,
- anon_sym_PIPE_PIPE,
- ACTIONS(4568), 1,
- anon_sym_CARET,
- ACTIONS(4570), 1,
- anon_sym_PIPE,
- ACTIONS(4572), 1,
- anon_sym_QMARK_QMARK,
- ACTIONS(4574), 1,
- anon_sym_satisfies,
- ACTIONS(4576), 1,
- sym__ternary_qmark,
- STATE(1812), 1,
- sym_type_arguments,
- STATE(4772), 1,
- sym_optional_chain,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(4517), 2,
- anon_sym_STAR,
- anon_sym_SLASH,
- ACTIONS(4521), 2,
- anon_sym_in,
- anon_sym_GT,
- ACTIONS(4529), 2,
- anon_sym_GT_GT_GT,
- anon_sym_LT_LT,
- ACTIONS(4531), 2,
- anon_sym_PLUS,
- anon_sym_DASH,
- ACTIONS(4541), 2,
- anon_sym_EQ_EQ,
- anon_sym_BANG_EQ,
- ACTIONS(4543), 2,
- anon_sym_EQ_EQ_EQ,
- anon_sym_BANG_EQ_EQ,
- ACTIONS(4545), 2,
- anon_sym_PLUS_PLUS,
- anon_sym_DASH_DASH,
- STATE(2133), 2,
- sym_template_string,
- sym_arguments,
- ACTIONS(4539), 3,
- anon_sym_LT_EQ,
- anon_sym_GT_EQ,
- anon_sym_instanceof,
- ACTIONS(4053), 4,
- sym__automatic_semicolon,
- anon_sym_COMMA,
- anon_sym_RBRACE,
- anon_sym_SEMI,
- [45983] = 15,
- ACTIONS(2275), 1,
- anon_sym_DQUOTE,
- ACTIONS(2277), 1,
- anon_sym_SQUOTE,
- ACTIONS(3737), 1,
- anon_sym_COMMA,
- ACTIONS(3824), 1,
- anon_sym_RBRACE,
- ACTIONS(4241), 1,
- anon_sym_STAR,
- ACTIONS(4243), 1,
- anon_sym_EQ,
- ACTIONS(4634), 1,
- anon_sym_LBRACK,
- STATE(4672), 1,
- aux_sym_object_pattern_repeat1,
- STATE(5156), 1,
- aux_sym_object_repeat1,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(4636), 2,
- sym_number,
- sym_private_property_identifier,
- ACTIONS(4638), 2,
- anon_sym_get,
- anon_sym_set,
- STATE(3770), 3,
- sym_string,
- sym__property_name,
- sym_computed_property_name,
- ACTIONS(3743), 7,
- sym__automatic_semicolon,
- anon_sym_LPAREN,
- anon_sym_SEMI,
- anon_sym_COLON,
- anon_sym_LT,
- anon_sym_QMARK,
- anon_sym_PIPE_RBRACE,
- ACTIONS(2307), 21,
- anon_sym_export,
- anon_sym_type,
- anon_sym_namespace,
- anon_sym_let,
- anon_sym_async,
- anon_sym_new,
- sym_identifier,
- anon_sym_static,
- anon_sym_readonly,
- anon_sym_declare,
- anon_sym_public,
- anon_sym_private,
- anon_sym_protected,
- anon_sym_override,
- anon_sym_module,
- anon_sym_any,
- anon_sym_number,
- anon_sym_boolean,
- anon_sym_string,
- anon_sym_symbol,
- anon_sym_object,
- [46060] = 3,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(4842), 13,
- anon_sym_STAR,
- anon_sym_BANG,
- anon_sym_in,
- anon_sym_GT,
- anon_sym_GT_GT,
- anon_sym_AMP,
- anon_sym_PIPE,
- anon_sym_PLUS,
- anon_sym_DASH,
- anon_sym_SLASH,
- anon_sym_LT,
- anon_sym_EQ_EQ,
- anon_sym_BANG_EQ,
- ACTIONS(4844), 31,
- sym__ternary_qmark,
- anon_sym_as,
- anon_sym_LBRACE,
- anon_sym_COMMA,
- anon_sym_RBRACE,
- anon_sym_LPAREN,
- anon_sym_RPAREN,
- anon_sym_of,
- anon_sym_COLON,
- anon_sym_LBRACK,
- anon_sym_RBRACK,
- anon_sym_DOT,
- anon_sym_QMARK_DOT,
- anon_sym_AMP_AMP,
- anon_sym_PIPE_PIPE,
- anon_sym_GT_GT_GT,
- anon_sym_LT_LT,
- anon_sym_CARET,
- anon_sym_PERCENT,
- anon_sym_STAR_STAR,
- anon_sym_LT_EQ,
- anon_sym_EQ_EQ_EQ,
- anon_sym_BANG_EQ_EQ,
- anon_sym_GT_EQ,
- anon_sym_QMARK_QMARK,
- anon_sym_instanceof,
- anon_sym_PLUS_PLUS,
- anon_sym_DASH_DASH,
- anon_sym_BQUOTE,
- anon_sym_satisfies,
- anon_sym_implements,
- [46113] = 3,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(4846), 13,
- anon_sym_STAR,
- anon_sym_BANG,
- anon_sym_in,
- anon_sym_GT,
- anon_sym_GT_GT,
- anon_sym_AMP,
- anon_sym_PIPE,
- anon_sym_PLUS,
- anon_sym_DASH,
- anon_sym_SLASH,
- anon_sym_LT,
- anon_sym_EQ_EQ,
- anon_sym_BANG_EQ,
- ACTIONS(4848), 31,
- sym__ternary_qmark,
- anon_sym_as,
- anon_sym_LBRACE,
- anon_sym_COMMA,
- anon_sym_RBRACE,
- anon_sym_LPAREN,
- anon_sym_RPAREN,
- anon_sym_of,
- anon_sym_COLON,
- anon_sym_LBRACK,
- anon_sym_RBRACK,
- anon_sym_DOT,
- anon_sym_QMARK_DOT,
- anon_sym_AMP_AMP,
- anon_sym_PIPE_PIPE,
- anon_sym_GT_GT_GT,
- anon_sym_LT_LT,
- anon_sym_CARET,
- anon_sym_PERCENT,
- anon_sym_STAR_STAR,
- anon_sym_LT_EQ,
- anon_sym_EQ_EQ_EQ,
- anon_sym_BANG_EQ_EQ,
- anon_sym_GT_EQ,
- anon_sym_QMARK_QMARK,
- anon_sym_instanceof,
- anon_sym_PLUS_PLUS,
- anon_sym_DASH_DASH,
- anon_sym_BQUOTE,
- anon_sym_satisfies,
- anon_sym_implements,
- [46166] = 21,
- ACTIONS(89), 1,
- anon_sym_BQUOTE,
- ACTIONS(4059), 1,
- anon_sym_QMARK_DOT,
- ACTIONS(4519), 1,
- anon_sym_LPAREN,
- ACTIONS(4523), 1,
- anon_sym_LBRACK,
- ACTIONS(4525), 1,
- anon_sym_DOT,
- ACTIONS(4527), 1,
- anon_sym_GT_GT,
- ACTIONS(4533), 1,
- anon_sym_PERCENT,
- ACTIONS(4535), 1,
- anon_sym_STAR_STAR,
- ACTIONS(4537), 1,
- anon_sym_LT,
- STATE(1812), 1,
- sym_type_arguments,
- STATE(4772), 1,
- sym_optional_chain,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(4517), 2,
- anon_sym_STAR,
- anon_sym_SLASH,
- ACTIONS(4521), 2,
- anon_sym_in,
- anon_sym_GT,
- ACTIONS(4529), 2,
- anon_sym_GT_GT_GT,
- anon_sym_LT_LT,
- ACTIONS(4531), 2,
- anon_sym_PLUS,
- anon_sym_DASH,
- ACTIONS(4545), 2,
- anon_sym_PLUS_PLUS,
- anon_sym_DASH_DASH,
- STATE(2133), 2,
- sym_template_string,
- sym_arguments,
- ACTIONS(4539), 3,
- anon_sym_LT_EQ,
- anon_sym_GT_EQ,
- anon_sym_instanceof,
- ACTIONS(4307), 5,
- anon_sym_BANG,
- anon_sym_AMP,
- anon_sym_PIPE,
- anon_sym_EQ_EQ,
- anon_sym_BANG_EQ,
- ACTIONS(4305), 13,
- sym__automatic_semicolon,
- sym__ternary_qmark,
- anon_sym_as,
- anon_sym_COMMA,
- anon_sym_RBRACE,
- anon_sym_SEMI,
- anon_sym_AMP_AMP,
- anon_sym_PIPE_PIPE,
- anon_sym_CARET,
- anon_sym_EQ_EQ_EQ,
- anon_sym_BANG_EQ_EQ,
- anon_sym_QMARK_QMARK,
- anon_sym_satisfies,
- [46255] = 34,
- ACTIONS(89), 1,
- anon_sym_BQUOTE,
- ACTIONS(4059), 1,
- anon_sym_QMARK_DOT,
- ACTIONS(4519), 1,
- anon_sym_LPAREN,
- ACTIONS(4523), 1,
- anon_sym_LBRACK,
- ACTIONS(4525), 1,
- anon_sym_DOT,
- ACTIONS(4527), 1,
- anon_sym_GT_GT,
- ACTIONS(4533), 1,
- anon_sym_PERCENT,
- ACTIONS(4535), 1,
- anon_sym_STAR_STAR,
- ACTIONS(4537), 1,
- anon_sym_LT,
- ACTIONS(4553), 1,
- anon_sym_AMP,
- ACTIONS(4555), 1,
- anon_sym_as,
- ACTIONS(4562), 1,
- anon_sym_BANG,
- ACTIONS(4564), 1,
- anon_sym_AMP_AMP,
- ACTIONS(4566), 1,
- anon_sym_PIPE_PIPE,
- ACTIONS(4568), 1,
- anon_sym_CARET,
- ACTIONS(4570), 1,
- anon_sym_PIPE,
- ACTIONS(4572), 1,
- anon_sym_QMARK_QMARK,
- ACTIONS(4574), 1,
- anon_sym_satisfies,
- ACTIONS(4576), 1,
- sym__ternary_qmark,
- ACTIONS(4757), 1,
- anon_sym_COMMA,
- STATE(1812), 1,
- sym_type_arguments,
- STATE(4513), 1,
- aux_sym_sequence_expression_repeat1,
- STATE(4772), 1,
- sym_optional_chain,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(4517), 2,
- anon_sym_STAR,
- anon_sym_SLASH,
- ACTIONS(4521), 2,
- anon_sym_in,
- anon_sym_GT,
- ACTIONS(4529), 2,
- anon_sym_GT_GT_GT,
- anon_sym_LT_LT,
- ACTIONS(4531), 2,
- anon_sym_PLUS,
- anon_sym_DASH,
- ACTIONS(4541), 2,
- anon_sym_EQ_EQ,
- anon_sym_BANG_EQ,
- ACTIONS(4543), 2,
- anon_sym_EQ_EQ_EQ,
- anon_sym_BANG_EQ_EQ,
- ACTIONS(4545), 2,
- anon_sym_PLUS_PLUS,
- anon_sym_DASH_DASH,
- ACTIONS(4850), 2,
- sym__automatic_semicolon,
- anon_sym_SEMI,
- STATE(2133), 2,
- sym_template_string,
- sym_arguments,
- ACTIONS(4539), 3,
- anon_sym_LT_EQ,
- anon_sym_GT_EQ,
- anon_sym_instanceof,
- [46370] = 28,
- ACTIONS(89), 1,
- anon_sym_BQUOTE,
- ACTIONS(4059), 1,
- anon_sym_QMARK_DOT,
- ACTIONS(4307), 1,
- anon_sym_BANG,
- ACTIONS(4519), 1,
- anon_sym_LPAREN,
- ACTIONS(4523), 1,
- anon_sym_LBRACK,
- ACTIONS(4525), 1,
- anon_sym_DOT,
- ACTIONS(4527), 1,
- anon_sym_GT_GT,
- ACTIONS(4533), 1,
- anon_sym_PERCENT,
- ACTIONS(4535), 1,
- anon_sym_STAR_STAR,
- ACTIONS(4537), 1,
- anon_sym_LT,
- ACTIONS(4553), 1,
- anon_sym_AMP,
- ACTIONS(4564), 1,
- anon_sym_AMP_AMP,
- ACTIONS(4566), 1,
- anon_sym_PIPE_PIPE,
- ACTIONS(4568), 1,
- anon_sym_CARET,
- ACTIONS(4570), 1,
- anon_sym_PIPE,
- STATE(1812), 1,
- sym_type_arguments,
- STATE(4772), 1,
- sym_optional_chain,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(4517), 2,
- anon_sym_STAR,
- anon_sym_SLASH,
- ACTIONS(4521), 2,
- anon_sym_in,
- anon_sym_GT,
- ACTIONS(4529), 2,
- anon_sym_GT_GT_GT,
- anon_sym_LT_LT,
- ACTIONS(4531), 2,
- anon_sym_PLUS,
- anon_sym_DASH,
- ACTIONS(4541), 2,
- anon_sym_EQ_EQ,
- anon_sym_BANG_EQ,
- ACTIONS(4543), 2,
- anon_sym_EQ_EQ_EQ,
- anon_sym_BANG_EQ_EQ,
- ACTIONS(4545), 2,
- anon_sym_PLUS_PLUS,
- anon_sym_DASH_DASH,
- STATE(2133), 2,
- sym_template_string,
- sym_arguments,
- ACTIONS(4539), 3,
- anon_sym_LT_EQ,
- anon_sym_GT_EQ,
- anon_sym_instanceof,
- ACTIONS(4305), 8,
- sym__automatic_semicolon,
- sym__ternary_qmark,
- anon_sym_as,
- anon_sym_COMMA,
- anon_sym_RBRACE,
- anon_sym_SEMI,
- anon_sym_QMARK_QMARK,
- anon_sym_satisfies,
- [46473] = 16,
- ACTIONS(1594), 1,
- anon_sym_DQUOTE,
- ACTIONS(1596), 1,
- anon_sym_SQUOTE,
- ACTIONS(3737), 1,
- anon_sym_COMMA,
- ACTIONS(3824), 1,
- anon_sym_RBRACE,
- ACTIONS(4241), 1,
- anon_sym_STAR,
- ACTIONS(4243), 1,
- anon_sym_EQ,
- ACTIONS(4247), 1,
- anon_sym_async,
- ACTIONS(4658), 1,
- anon_sym_LBRACK,
- STATE(4672), 1,
- aux_sym_object_pattern_repeat1,
- STATE(5156), 1,
- aux_sym_object_repeat1,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(4249), 2,
- sym_number,
- sym_private_property_identifier,
- ACTIONS(4253), 2,
- anon_sym_get,
- anon_sym_set,
- STATE(3081), 3,
- sym_string,
- sym__property_name,
- sym_computed_property_name,
- ACTIONS(3743), 7,
- sym__automatic_semicolon,
- anon_sym_LPAREN,
- anon_sym_SEMI,
- anon_sym_COLON,
- anon_sym_LT,
- anon_sym_QMARK,
- anon_sym_PIPE_RBRACE,
- ACTIONS(3607), 20,
- anon_sym_export,
- anon_sym_type,
- anon_sym_namespace,
- anon_sym_let,
- anon_sym_new,
- sym_identifier,
- anon_sym_static,
- anon_sym_readonly,
- anon_sym_declare,
- anon_sym_public,
- anon_sym_private,
- anon_sym_protected,
- anon_sym_override,
- anon_sym_module,
- anon_sym_any,
- anon_sym_number,
- anon_sym_boolean,
- anon_sym_string,
- anon_sym_symbol,
- anon_sym_object,
- [46552] = 34,
- ACTIONS(89), 1,
- anon_sym_BQUOTE,
- ACTIONS(4059), 1,
- anon_sym_QMARK_DOT,
- ACTIONS(4519), 1,
- anon_sym_LPAREN,
- ACTIONS(4523), 1,
- anon_sym_LBRACK,
- ACTIONS(4525), 1,
- anon_sym_DOT,
- ACTIONS(4527), 1,
- anon_sym_GT_GT,
- ACTIONS(4533), 1,
- anon_sym_PERCENT,
- ACTIONS(4535), 1,
- anon_sym_STAR_STAR,
- ACTIONS(4537), 1,
- anon_sym_LT,
- ACTIONS(4553), 1,
- anon_sym_AMP,
- ACTIONS(4555), 1,
- anon_sym_as,
- ACTIONS(4562), 1,
- anon_sym_BANG,
- ACTIONS(4564), 1,
- anon_sym_AMP_AMP,
- ACTIONS(4566), 1,
- anon_sym_PIPE_PIPE,
- ACTIONS(4568), 1,
- anon_sym_CARET,
- ACTIONS(4570), 1,
- anon_sym_PIPE,
- ACTIONS(4572), 1,
- anon_sym_QMARK_QMARK,
- ACTIONS(4574), 1,
- anon_sym_satisfies,
- ACTIONS(4576), 1,
- sym__ternary_qmark,
- ACTIONS(4757), 1,
- anon_sym_COMMA,
- STATE(1812), 1,
- sym_type_arguments,
- STATE(4513), 1,
- aux_sym_sequence_expression_repeat1,
- STATE(4772), 1,
- sym_optional_chain,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(4517), 2,
- anon_sym_STAR,
- anon_sym_SLASH,
- ACTIONS(4521), 2,
- anon_sym_in,
- anon_sym_GT,
- ACTIONS(4529), 2,
- anon_sym_GT_GT_GT,
- anon_sym_LT_LT,
- ACTIONS(4531), 2,
- anon_sym_PLUS,
- anon_sym_DASH,
- ACTIONS(4541), 2,
- anon_sym_EQ_EQ,
- anon_sym_BANG_EQ,
- ACTIONS(4543), 2,
- anon_sym_EQ_EQ_EQ,
- anon_sym_BANG_EQ_EQ,
- ACTIONS(4545), 2,
- anon_sym_PLUS_PLUS,
- anon_sym_DASH_DASH,
- ACTIONS(4852), 2,
- sym__automatic_semicolon,
- anon_sym_SEMI,
- STATE(2133), 2,
- sym_template_string,
- sym_arguments,
- ACTIONS(4539), 3,
- anon_sym_LT_EQ,
- anon_sym_GT_EQ,
- anon_sym_instanceof,
- [46667] = 33,
- ACTIONS(89), 1,
- anon_sym_BQUOTE,
- ACTIONS(4059), 1,
- anon_sym_QMARK_DOT,
- ACTIONS(4519), 1,
- anon_sym_LPAREN,
- ACTIONS(4523), 1,
- anon_sym_LBRACK,
- ACTIONS(4525), 1,
- anon_sym_DOT,
- ACTIONS(4527), 1,
- anon_sym_GT_GT,
- ACTIONS(4533), 1,
- anon_sym_PERCENT,
- ACTIONS(4535), 1,
- anon_sym_STAR_STAR,
- ACTIONS(4537), 1,
- anon_sym_LT,
- ACTIONS(4553), 1,
- anon_sym_AMP,
- ACTIONS(4555), 1,
- anon_sym_as,
- ACTIONS(4562), 1,
- anon_sym_BANG,
- ACTIONS(4564), 1,
- anon_sym_AMP_AMP,
- ACTIONS(4566), 1,
- anon_sym_PIPE_PIPE,
- ACTIONS(4568), 1,
- anon_sym_CARET,
- ACTIONS(4570), 1,
- anon_sym_PIPE,
- ACTIONS(4572), 1,
- anon_sym_QMARK_QMARK,
- ACTIONS(4574), 1,
- anon_sym_satisfies,
- ACTIONS(4576), 1,
- sym__ternary_qmark,
- STATE(1812), 1,
- sym_type_arguments,
- STATE(4772), 1,
- sym_optional_chain,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(4517), 2,
- anon_sym_STAR,
- anon_sym_SLASH,
- ACTIONS(4521), 2,
- anon_sym_in,
- anon_sym_GT,
- ACTIONS(4529), 2,
- anon_sym_GT_GT_GT,
- anon_sym_LT_LT,
- ACTIONS(4531), 2,
- anon_sym_PLUS,
- anon_sym_DASH,
- ACTIONS(4541), 2,
- anon_sym_EQ_EQ,
- anon_sym_BANG_EQ,
- ACTIONS(4543), 2,
- anon_sym_EQ_EQ_EQ,
- anon_sym_BANG_EQ_EQ,
- ACTIONS(4545), 2,
- anon_sym_PLUS_PLUS,
- anon_sym_DASH_DASH,
- ACTIONS(4672), 2,
- anon_sym_COMMA,
- anon_sym_RBRACE,
- ACTIONS(4854), 2,
- sym__automatic_semicolon,
- anon_sym_SEMI,
- STATE(2133), 2,
- sym_template_string,
- sym_arguments,
- ACTIONS(4539), 3,
- anon_sym_LT_EQ,
- anon_sym_GT_EQ,
- anon_sym_instanceof,
- [46780] = 32,
- ACTIONS(89), 1,
- anon_sym_BQUOTE,
- ACTIONS(4059), 1,
- anon_sym_QMARK_DOT,
- ACTIONS(4519), 1,
- anon_sym_LPAREN,
- ACTIONS(4523), 1,
- anon_sym_LBRACK,
- ACTIONS(4525), 1,
- anon_sym_DOT,
- ACTIONS(4555), 1,
- anon_sym_as,
- ACTIONS(4562), 1,
- anon_sym_BANG,
- ACTIONS(4574), 1,
- anon_sym_satisfies,
- ACTIONS(4582), 1,
- anon_sym_AMP_AMP,
- ACTIONS(4584), 1,
- anon_sym_PIPE_PIPE,
- ACTIONS(4586), 1,
- anon_sym_GT_GT,
- ACTIONS(4590), 1,
- anon_sym_AMP,
- ACTIONS(4592), 1,
- anon_sym_CARET,
- ACTIONS(4594), 1,
- anon_sym_PIPE,
- ACTIONS(4598), 1,
- anon_sym_PERCENT,
- ACTIONS(4600), 1,
- anon_sym_STAR_STAR,
- ACTIONS(4602), 1,
- anon_sym_LT,
- ACTIONS(4610), 1,
- anon_sym_QMARK_QMARK,
- ACTIONS(4612), 1,
- sym__ternary_qmark,
- STATE(1812), 1,
- sym_type_arguments,
- STATE(4772), 1,
- sym_optional_chain,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(4545), 2,
- anon_sym_PLUS_PLUS,
- anon_sym_DASH_DASH,
- ACTIONS(4578), 2,
- anon_sym_STAR,
- anon_sym_SLASH,
- ACTIONS(4580), 2,
- anon_sym_in,
- anon_sym_GT,
- ACTIONS(4588), 2,
- anon_sym_GT_GT_GT,
- anon_sym_LT_LT,
- ACTIONS(4596), 2,
- anon_sym_PLUS,
- anon_sym_DASH,
- ACTIONS(4606), 2,
- anon_sym_EQ_EQ,
- anon_sym_BANG_EQ,
- ACTIONS(4608), 2,
- anon_sym_EQ_EQ_EQ,
- anon_sym_BANG_EQ_EQ,
- STATE(2133), 2,
- sym_template_string,
- sym_arguments,
- ACTIONS(4604), 3,
- anon_sym_LT_EQ,
- anon_sym_GT_EQ,
- anon_sym_instanceof,
- ACTIONS(4255), 4,
- sym__automatic_semicolon,
- anon_sym_COMMA,
- anon_sym_of,
- anon_sym_SEMI,
- [46891] = 3,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(4856), 13,
- anon_sym_STAR,
- anon_sym_BANG,
- anon_sym_in,
- anon_sym_GT,
- anon_sym_GT_GT,
- anon_sym_AMP,
- anon_sym_PIPE,
- anon_sym_PLUS,
- anon_sym_DASH,
- anon_sym_SLASH,
- anon_sym_LT,
- anon_sym_EQ_EQ,
- anon_sym_BANG_EQ,
- ACTIONS(4858), 31,
- sym__ternary_qmark,
- anon_sym_as,
- anon_sym_LBRACE,
- anon_sym_COMMA,
- anon_sym_RBRACE,
- anon_sym_LPAREN,
- anon_sym_RPAREN,
- anon_sym_of,
- anon_sym_COLON,
- anon_sym_LBRACK,
- anon_sym_RBRACK,
- anon_sym_DOT,
- anon_sym_QMARK_DOT,
- anon_sym_AMP_AMP,
- anon_sym_PIPE_PIPE,
- anon_sym_GT_GT_GT,
- anon_sym_LT_LT,
- anon_sym_CARET,
- anon_sym_PERCENT,
- anon_sym_STAR_STAR,
- anon_sym_LT_EQ,
- anon_sym_EQ_EQ_EQ,
- anon_sym_BANG_EQ_EQ,
- anon_sym_GT_EQ,
- anon_sym_QMARK_QMARK,
- anon_sym_instanceof,
- anon_sym_PLUS_PLUS,
- anon_sym_DASH_DASH,
- anon_sym_BQUOTE,
- anon_sym_satisfies,
- anon_sym_implements,
- [46944] = 3,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(4860), 13,
- anon_sym_STAR,
- anon_sym_BANG,
- anon_sym_in,
- anon_sym_GT,
- anon_sym_GT_GT,
- anon_sym_AMP,
- anon_sym_PIPE,
- anon_sym_PLUS,
- anon_sym_DASH,
- anon_sym_SLASH,
- anon_sym_LT,
- anon_sym_EQ_EQ,
- anon_sym_BANG_EQ,
- ACTIONS(4862), 31,
- sym__ternary_qmark,
- anon_sym_as,
- anon_sym_LBRACE,
- anon_sym_COMMA,
- anon_sym_RBRACE,
- anon_sym_LPAREN,
- anon_sym_RPAREN,
- anon_sym_of,
- anon_sym_COLON,
- anon_sym_LBRACK,
- anon_sym_RBRACK,
- anon_sym_DOT,
- anon_sym_QMARK_DOT,
- anon_sym_AMP_AMP,
- anon_sym_PIPE_PIPE,
- anon_sym_GT_GT_GT,
- anon_sym_LT_LT,
- anon_sym_CARET,
- anon_sym_PERCENT,
- anon_sym_STAR_STAR,
- anon_sym_LT_EQ,
- anon_sym_EQ_EQ_EQ,
- anon_sym_BANG_EQ_EQ,
- anon_sym_GT_EQ,
- anon_sym_QMARK_QMARK,
- anon_sym_instanceof,
- anon_sym_PLUS_PLUS,
- anon_sym_DASH_DASH,
- anon_sym_BQUOTE,
- anon_sym_satisfies,
- anon_sym_implements,
- [46997] = 16,
- ACTIONS(1594), 1,
- anon_sym_DQUOTE,
- ACTIONS(1596), 1,
- anon_sym_SQUOTE,
- ACTIONS(3633), 1,
- anon_sym_override,
- ACTIONS(4245), 1,
- anon_sym_LBRACK,
- ACTIONS(4866), 1,
- anon_sym_static,
- ACTIONS(4868), 1,
- anon_sym_readonly,
- ACTIONS(4870), 1,
- anon_sym_abstract,
- ACTIONS(4872), 1,
- anon_sym_accessor,
- STATE(2644), 1,
- sym_accessibility_modifier,
- STATE(2741), 1,
- sym_override_modifier,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(4864), 2,
- sym_number,
- sym_private_property_identifier,
- ACTIONS(3631), 3,
- anon_sym_public,
- anon_sym_private,
- anon_sym_protected,
- STATE(3354), 3,
- sym_string,
- sym__property_name,
- sym_computed_property_name,
- ACTIONS(3743), 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(3607), 17,
- anon_sym_export,
- anon_sym_type,
- anon_sym_namespace,
- anon_sym_let,
- anon_sym_async,
- anon_sym_new,
- sym_identifier,
- anon_sym_get,
- anon_sym_set,
- anon_sym_declare,
- anon_sym_module,
- anon_sym_any,
- anon_sym_number,
- anon_sym_boolean,
- anon_sym_string,
- anon_sym_symbol,
- anon_sym_object,
- [47076] = 3,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(4874), 13,
- anon_sym_STAR,
- anon_sym_BANG,
- anon_sym_in,
- anon_sym_GT,
- anon_sym_GT_GT,
- anon_sym_AMP,
- anon_sym_PIPE,
- anon_sym_PLUS,
- anon_sym_DASH,
- anon_sym_SLASH,
- anon_sym_LT,
- anon_sym_EQ_EQ,
- anon_sym_BANG_EQ,
- ACTIONS(4876), 31,
- sym__ternary_qmark,
- anon_sym_as,
- anon_sym_LBRACE,
- anon_sym_COMMA,
- anon_sym_RBRACE,
- anon_sym_LPAREN,
- anon_sym_RPAREN,
- anon_sym_of,
- anon_sym_COLON,
- anon_sym_LBRACK,
- anon_sym_RBRACK,
- anon_sym_DOT,
- anon_sym_QMARK_DOT,
- anon_sym_AMP_AMP,
- anon_sym_PIPE_PIPE,
- anon_sym_GT_GT_GT,
- anon_sym_LT_LT,
- anon_sym_CARET,
- anon_sym_PERCENT,
- anon_sym_STAR_STAR,
- anon_sym_LT_EQ,
- anon_sym_EQ_EQ_EQ,
- anon_sym_BANG_EQ_EQ,
- anon_sym_GT_EQ,
- anon_sym_QMARK_QMARK,
- anon_sym_instanceof,
- anon_sym_PLUS_PLUS,
- anon_sym_DASH_DASH,
- anon_sym_BQUOTE,
- anon_sym_satisfies,
- anon_sym_implements,
- [47129] = 3,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(4450), 13,
- anon_sym_STAR,
- anon_sym_BANG,
- anon_sym_in,
- anon_sym_GT,
- anon_sym_GT_GT,
- anon_sym_AMP,
- anon_sym_PIPE,
- anon_sym_PLUS,
- anon_sym_DASH,
- anon_sym_SLASH,
- anon_sym_LT,
- anon_sym_EQ_EQ,
- anon_sym_BANG_EQ,
- ACTIONS(4452), 31,
- sym__ternary_qmark,
- anon_sym_as,
- anon_sym_LBRACE,
- anon_sym_COMMA,
- anon_sym_RBRACE,
- anon_sym_LPAREN,
- anon_sym_RPAREN,
- anon_sym_of,
- anon_sym_COLON,
- anon_sym_LBRACK,
- anon_sym_RBRACK,
- anon_sym_DOT,
- anon_sym_QMARK_DOT,
- anon_sym_AMP_AMP,
- anon_sym_PIPE_PIPE,
- anon_sym_GT_GT_GT,
- anon_sym_LT_LT,
- anon_sym_CARET,
- anon_sym_PERCENT,
- anon_sym_STAR_STAR,
- anon_sym_LT_EQ,
- anon_sym_EQ_EQ_EQ,
- anon_sym_BANG_EQ_EQ,
- anon_sym_GT_EQ,
- anon_sym_QMARK_QMARK,
- anon_sym_instanceof,
- anon_sym_PLUS_PLUS,
- anon_sym_DASH_DASH,
- anon_sym_BQUOTE,
- anon_sym_satisfies,
- anon_sym_implements,
- [47182] = 3,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(1839), 13,
- anon_sym_STAR,
- anon_sym_BANG,
- anon_sym_in,
- anon_sym_GT,
- anon_sym_GT_GT,
- anon_sym_AMP,
- anon_sym_PIPE,
- anon_sym_PLUS,
- anon_sym_DASH,
- anon_sym_SLASH,
- anon_sym_LT,
- anon_sym_EQ_EQ,
- anon_sym_BANG_EQ,
- ACTIONS(1841), 31,
- sym__ternary_qmark,
- anon_sym_as,
- anon_sym_LBRACE,
- anon_sym_COMMA,
- anon_sym_RBRACE,
- anon_sym_LPAREN,
- anon_sym_RPAREN,
- anon_sym_of,
- anon_sym_COLON,
- anon_sym_LBRACK,
- anon_sym_RBRACK,
- anon_sym_DOT,
- anon_sym_QMARK_DOT,
- anon_sym_AMP_AMP,
- anon_sym_PIPE_PIPE,
- anon_sym_GT_GT_GT,
- anon_sym_LT_LT,
- anon_sym_CARET,
- anon_sym_PERCENT,
- anon_sym_STAR_STAR,
- anon_sym_LT_EQ,
- anon_sym_EQ_EQ_EQ,
- anon_sym_BANG_EQ_EQ,
- anon_sym_GT_EQ,
- anon_sym_QMARK_QMARK,
- anon_sym_instanceof,
- anon_sym_PLUS_PLUS,
- anon_sym_DASH_DASH,
- anon_sym_BQUOTE,
- anon_sym_satisfies,
- anon_sym_implements,
- [47235] = 32,
- ACTIONS(89), 1,
- anon_sym_BQUOTE,
- ACTIONS(4059), 1,
- anon_sym_QMARK_DOT,
- ACTIONS(4519), 1,
- anon_sym_LPAREN,
- ACTIONS(4523), 1,
- anon_sym_LBRACK,
- ACTIONS(4525), 1,
- anon_sym_DOT,
- ACTIONS(4555), 1,
- anon_sym_as,
- ACTIONS(4562), 1,
- anon_sym_BANG,
- ACTIONS(4574), 1,
- anon_sym_satisfies,
- ACTIONS(4582), 1,
- anon_sym_AMP_AMP,
- ACTIONS(4584), 1,
- anon_sym_PIPE_PIPE,
- ACTIONS(4586), 1,
- anon_sym_GT_GT,
- ACTIONS(4590), 1,
- anon_sym_AMP,
- ACTIONS(4592), 1,
- anon_sym_CARET,
- ACTIONS(4594), 1,
- anon_sym_PIPE,
- ACTIONS(4598), 1,
- anon_sym_PERCENT,
- ACTIONS(4600), 1,
- anon_sym_STAR_STAR,
- ACTIONS(4602), 1,
- anon_sym_LT,
- ACTIONS(4610), 1,
- anon_sym_QMARK_QMARK,
- ACTIONS(4612), 1,
- sym__ternary_qmark,
- STATE(1812), 1,
- sym_type_arguments,
- STATE(4772), 1,
- sym_optional_chain,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(4545), 2,
- anon_sym_PLUS_PLUS,
- anon_sym_DASH_DASH,
- ACTIONS(4578), 2,
- anon_sym_STAR,
- anon_sym_SLASH,
- ACTIONS(4580), 2,
- anon_sym_in,
- anon_sym_GT,
- ACTIONS(4588), 2,
- anon_sym_GT_GT_GT,
- anon_sym_LT_LT,
- ACTIONS(4596), 2,
- anon_sym_PLUS,
- anon_sym_DASH,
- ACTIONS(4606), 2,
- anon_sym_EQ_EQ,
- anon_sym_BANG_EQ,
- ACTIONS(4608), 2,
- anon_sym_EQ_EQ_EQ,
- anon_sym_BANG_EQ_EQ,
- STATE(2133), 2,
- sym_template_string,
- sym_arguments,
- ACTIONS(4604), 3,
- anon_sym_LT_EQ,
- anon_sym_GT_EQ,
- anon_sym_instanceof,
- ACTIONS(4257), 4,
- sym__automatic_semicolon,
- anon_sym_COMMA,
- anon_sym_of,
- anon_sym_SEMI,
- [47346] = 32,
- ACTIONS(89), 1,
- anon_sym_BQUOTE,
- ACTIONS(4059), 1,
- anon_sym_QMARK_DOT,
- ACTIONS(4519), 1,
- anon_sym_LPAREN,
- ACTIONS(4523), 1,
- anon_sym_LBRACK,
- ACTIONS(4525), 1,
- anon_sym_DOT,
- ACTIONS(4527), 1,
- anon_sym_GT_GT,
- ACTIONS(4533), 1,
- anon_sym_PERCENT,
- ACTIONS(4535), 1,
- anon_sym_STAR_STAR,
- ACTIONS(4537), 1,
- anon_sym_LT,
- ACTIONS(4553), 1,
- anon_sym_AMP,
- ACTIONS(4555), 1,
- anon_sym_as,
- ACTIONS(4562), 1,
- anon_sym_BANG,
- ACTIONS(4564), 1,
- anon_sym_AMP_AMP,
- ACTIONS(4566), 1,
- anon_sym_PIPE_PIPE,
- ACTIONS(4568), 1,
- anon_sym_CARET,
- ACTIONS(4570), 1,
- anon_sym_PIPE,
- ACTIONS(4572), 1,
- anon_sym_QMARK_QMARK,
- ACTIONS(4574), 1,
- anon_sym_satisfies,
- ACTIONS(4576), 1,
- sym__ternary_qmark,
- STATE(1812), 1,
- sym_type_arguments,
- STATE(4772), 1,
- sym_optional_chain,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(4517), 2,
- anon_sym_STAR,
- anon_sym_SLASH,
- ACTIONS(4521), 2,
- anon_sym_in,
- anon_sym_GT,
- ACTIONS(4529), 2,
- anon_sym_GT_GT_GT,
- anon_sym_LT_LT,
- ACTIONS(4531), 2,
- anon_sym_PLUS,
- anon_sym_DASH,
- ACTIONS(4541), 2,
- anon_sym_EQ_EQ,
- anon_sym_BANG_EQ,
- ACTIONS(4543), 2,
- anon_sym_EQ_EQ_EQ,
- anon_sym_BANG_EQ_EQ,
- ACTIONS(4545), 2,
- anon_sym_PLUS_PLUS,
- anon_sym_DASH_DASH,
- STATE(2133), 2,
- sym_template_string,
- sym_arguments,
- ACTIONS(4539), 3,
- anon_sym_LT_EQ,
- anon_sym_GT_EQ,
- anon_sym_instanceof,
- ACTIONS(4370), 4,
- sym__automatic_semicolon,
- anon_sym_COMMA,
- anon_sym_RBRACE,
- anon_sym_SEMI,
- [47457] = 6,
- ACTIONS(4408), 1,
- anon_sym_extends,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(4878), 2,
- anon_sym_COMMA,
- anon_sym_LBRACK,
- ACTIONS(4881), 3,
- anon_sym_GT,
- anon_sym_AMP,
- anon_sym_PIPE,
- ACTIONS(4774), 10,
- anon_sym_STAR,
- anon_sym_BANG,
- anon_sym_in,
- anon_sym_GT_GT,
- anon_sym_PLUS,
- anon_sym_DASH,
- anon_sym_SLASH,
- anon_sym_LT,
- anon_sym_EQ_EQ,
- anon_sym_BANG_EQ,
- ACTIONS(4776), 28,
- sym__ternary_qmark,
- anon_sym_as,
- anon_sym_LBRACE,
- anon_sym_RBRACE,
- anon_sym_LPAREN,
- anon_sym_RPAREN,
- anon_sym_COLON,
- anon_sym_RBRACK,
- anon_sym_DOT,
- anon_sym_QMARK_DOT,
- anon_sym_AMP_AMP,
- anon_sym_PIPE_PIPE,
- anon_sym_GT_GT_GT,
- anon_sym_LT_LT,
- anon_sym_CARET,
- anon_sym_PERCENT,
- anon_sym_STAR_STAR,
- anon_sym_LT_EQ,
- anon_sym_EQ_EQ_EQ,
- anon_sym_BANG_EQ_EQ,
- anon_sym_GT_EQ,
- anon_sym_QMARK_QMARK,
- anon_sym_instanceof,
- anon_sym_PLUS_PLUS,
- anon_sym_DASH_DASH,
- anon_sym_BQUOTE,
- anon_sym_satisfies,
- anon_sym_implements,
- [47516] = 32,
- ACTIONS(89), 1,
- anon_sym_BQUOTE,
- ACTIONS(4059), 1,
- anon_sym_QMARK_DOT,
- ACTIONS(4519), 1,
- anon_sym_LPAREN,
- ACTIONS(4523), 1,
- anon_sym_LBRACK,
- ACTIONS(4525), 1,
- anon_sym_DOT,
- ACTIONS(4527), 1,
- anon_sym_GT_GT,
- ACTIONS(4533), 1,
- anon_sym_PERCENT,
- ACTIONS(4535), 1,
- anon_sym_STAR_STAR,
- ACTIONS(4537), 1,
- anon_sym_LT,
- ACTIONS(4553), 1,
- anon_sym_AMP,
- ACTIONS(4555), 1,
- anon_sym_as,
- ACTIONS(4562), 1,
- anon_sym_BANG,
- ACTIONS(4564), 1,
- anon_sym_AMP_AMP,
- ACTIONS(4566), 1,
- anon_sym_PIPE_PIPE,
- ACTIONS(4568), 1,
- anon_sym_CARET,
- ACTIONS(4570), 1,
- anon_sym_PIPE,
- ACTIONS(4572), 1,
- anon_sym_QMARK_QMARK,
- ACTIONS(4574), 1,
- anon_sym_satisfies,
- ACTIONS(4576), 1,
- sym__ternary_qmark,
- STATE(1812), 1,
- sym_type_arguments,
- STATE(4772), 1,
- sym_optional_chain,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(4517), 2,
- anon_sym_STAR,
- anon_sym_SLASH,
- ACTIONS(4521), 2,
- anon_sym_in,
- anon_sym_GT,
- ACTIONS(4529), 2,
- anon_sym_GT_GT_GT,
- anon_sym_LT_LT,
- ACTIONS(4531), 2,
- anon_sym_PLUS,
- anon_sym_DASH,
- ACTIONS(4541), 2,
- anon_sym_EQ_EQ,
- anon_sym_BANG_EQ,
- ACTIONS(4543), 2,
- anon_sym_EQ_EQ_EQ,
- anon_sym_BANG_EQ_EQ,
- ACTIONS(4545), 2,
- anon_sym_PLUS_PLUS,
- anon_sym_DASH_DASH,
- STATE(2133), 2,
- sym_template_string,
- sym_arguments,
- ACTIONS(4539), 3,
- anon_sym_LT_EQ,
- anon_sym_GT_EQ,
- anon_sym_instanceof,
- ACTIONS(4350), 4,
- sym__automatic_semicolon,
- anon_sym_COMMA,
- anon_sym_RBRACE,
- anon_sym_SEMI,
- [47627] = 3,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(1773), 13,
- anon_sym_STAR,
- anon_sym_BANG,
- anon_sym_in,
- anon_sym_GT,
- anon_sym_GT_GT,
- anon_sym_AMP,
- anon_sym_PIPE,
- anon_sym_PLUS,
- anon_sym_DASH,
- anon_sym_SLASH,
- anon_sym_LT,
- anon_sym_EQ_EQ,
- anon_sym_BANG_EQ,
- ACTIONS(1775), 31,
- sym__ternary_qmark,
- anon_sym_as,
- anon_sym_LBRACE,
- anon_sym_COMMA,
- anon_sym_RBRACE,
- anon_sym_LPAREN,
- anon_sym_RPAREN,
- anon_sym_of,
- anon_sym_COLON,
- anon_sym_LBRACK,
- anon_sym_RBRACK,
- anon_sym_DOT,
- anon_sym_QMARK_DOT,
- anon_sym_AMP_AMP,
- anon_sym_PIPE_PIPE,
- anon_sym_GT_GT_GT,
- anon_sym_LT_LT,
- anon_sym_CARET,
- anon_sym_PERCENT,
- anon_sym_STAR_STAR,
- anon_sym_LT_EQ,
- anon_sym_EQ_EQ_EQ,
- anon_sym_BANG_EQ_EQ,
- anon_sym_GT_EQ,
- anon_sym_QMARK_QMARK,
- anon_sym_instanceof,
- anon_sym_PLUS_PLUS,
- anon_sym_DASH_DASH,
- anon_sym_BQUOTE,
- anon_sym_satisfies,
- anon_sym_implements,
- [47680] = 32,
- ACTIONS(89), 1,
- anon_sym_BQUOTE,
- ACTIONS(4059), 1,
- anon_sym_QMARK_DOT,
- ACTIONS(4519), 1,
- anon_sym_LPAREN,
- ACTIONS(4523), 1,
- anon_sym_LBRACK,
- ACTIONS(4525), 1,
- anon_sym_DOT,
- ACTIONS(4527), 1,
- anon_sym_GT_GT,
- ACTIONS(4533), 1,
- anon_sym_PERCENT,
- ACTIONS(4535), 1,
- anon_sym_STAR_STAR,
- ACTIONS(4537), 1,
- anon_sym_LT,
- ACTIONS(4553), 1,
- anon_sym_AMP,
- ACTIONS(4555), 1,
- anon_sym_as,
- ACTIONS(4562), 1,
- anon_sym_BANG,
- ACTIONS(4564), 1,
- anon_sym_AMP_AMP,
- ACTIONS(4566), 1,
- anon_sym_PIPE_PIPE,
- ACTIONS(4568), 1,
- anon_sym_CARET,
- ACTIONS(4570), 1,
- anon_sym_PIPE,
- ACTIONS(4572), 1,
- anon_sym_QMARK_QMARK,
- ACTIONS(4574), 1,
- anon_sym_satisfies,
- ACTIONS(4576), 1,
- sym__ternary_qmark,
- STATE(1812), 1,
- sym_type_arguments,
- STATE(4772), 1,
- sym_optional_chain,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(4517), 2,
- anon_sym_STAR,
- anon_sym_SLASH,
- ACTIONS(4521), 2,
- anon_sym_in,
- anon_sym_GT,
- ACTIONS(4529), 2,
- anon_sym_GT_GT_GT,
- anon_sym_LT_LT,
- ACTIONS(4531), 2,
- anon_sym_PLUS,
- anon_sym_DASH,
- ACTIONS(4541), 2,
- anon_sym_EQ_EQ,
- anon_sym_BANG_EQ,
- ACTIONS(4543), 2,
- anon_sym_EQ_EQ_EQ,
- anon_sym_BANG_EQ_EQ,
- ACTIONS(4545), 2,
- anon_sym_PLUS_PLUS,
- anon_sym_DASH_DASH,
- STATE(2133), 2,
- sym_template_string,
- sym_arguments,
- ACTIONS(4539), 3,
- anon_sym_LT_EQ,
- anon_sym_GT_EQ,
- anon_sym_instanceof,
- ACTIONS(4352), 4,
- sym__automatic_semicolon,
- anon_sym_COMMA,
- anon_sym_RBRACE,
- anon_sym_SEMI,
- [47791] = 3,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(1927), 13,
- anon_sym_STAR,
- anon_sym_BANG,
- anon_sym_in,
- anon_sym_GT,
- anon_sym_GT_GT,
- anon_sym_AMP,
- anon_sym_PIPE,
- anon_sym_PLUS,
- anon_sym_DASH,
- anon_sym_SLASH,
- anon_sym_LT,
- anon_sym_EQ_EQ,
- anon_sym_BANG_EQ,
- ACTIONS(1925), 31,
- sym__automatic_semicolon,
- sym__ternary_qmark,
- anon_sym_as,
- anon_sym_COMMA,
- anon_sym_RBRACE,
- anon_sym_else,
- anon_sym_LPAREN,
- anon_sym_of,
- anon_sym_while,
- anon_sym_SEMI,
- anon_sym_LBRACK,
- anon_sym_DOT,
- anon_sym_QMARK_DOT,
- anon_sym_AMP_AMP,
- anon_sym_PIPE_PIPE,
- anon_sym_GT_GT_GT,
- anon_sym_LT_LT,
- anon_sym_CARET,
- anon_sym_PERCENT,
- anon_sym_STAR_STAR,
- anon_sym_LT_EQ,
- anon_sym_EQ_EQ_EQ,
- anon_sym_BANG_EQ_EQ,
- anon_sym_GT_EQ,
- anon_sym_QMARK_QMARK,
- anon_sym_instanceof,
- anon_sym_PLUS_PLUS,
- anon_sym_DASH_DASH,
- anon_sym_BQUOTE,
- anon_sym_satisfies,
- anon_sym_PIPE_RBRACE,
- [47844] = 32,
- ACTIONS(89), 1,
- anon_sym_BQUOTE,
- ACTIONS(4059), 1,
- anon_sym_QMARK_DOT,
- ACTIONS(4519), 1,
- anon_sym_LPAREN,
- ACTIONS(4523), 1,
- anon_sym_LBRACK,
- ACTIONS(4525), 1,
- anon_sym_DOT,
- ACTIONS(4527), 1,
- anon_sym_GT_GT,
- ACTIONS(4533), 1,
- anon_sym_PERCENT,
- ACTIONS(4535), 1,
- anon_sym_STAR_STAR,
- ACTIONS(4537), 1,
- anon_sym_LT,
- ACTIONS(4553), 1,
- anon_sym_AMP,
- ACTIONS(4555), 1,
- anon_sym_as,
- ACTIONS(4562), 1,
- anon_sym_BANG,
- ACTIONS(4564), 1,
- anon_sym_AMP_AMP,
- ACTIONS(4566), 1,
- anon_sym_PIPE_PIPE,
- ACTIONS(4568), 1,
- anon_sym_CARET,
- ACTIONS(4570), 1,
- anon_sym_PIPE,
- ACTIONS(4572), 1,
- anon_sym_QMARK_QMARK,
- ACTIONS(4574), 1,
- anon_sym_satisfies,
- ACTIONS(4576), 1,
- sym__ternary_qmark,
- STATE(1812), 1,
- sym_type_arguments,
- STATE(4772), 1,
- sym_optional_chain,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(4517), 2,
- anon_sym_STAR,
- anon_sym_SLASH,
- ACTIONS(4521), 2,
- anon_sym_in,
- anon_sym_GT,
- ACTIONS(4529), 2,
- anon_sym_GT_GT_GT,
- anon_sym_LT_LT,
- ACTIONS(4531), 2,
- anon_sym_PLUS,
- anon_sym_DASH,
- ACTIONS(4541), 2,
- anon_sym_EQ_EQ,
- anon_sym_BANG_EQ,
- ACTIONS(4543), 2,
- anon_sym_EQ_EQ_EQ,
- anon_sym_BANG_EQ_EQ,
- ACTIONS(4545), 2,
- anon_sym_PLUS_PLUS,
- anon_sym_DASH_DASH,
- STATE(2133), 2,
- sym_template_string,
- sym_arguments,
- ACTIONS(4539), 3,
- anon_sym_LT_EQ,
- anon_sym_GT_EQ,
- anon_sym_instanceof,
- ACTIONS(4210), 4,
- sym__automatic_semicolon,
- anon_sym_COMMA,
- anon_sym_RBRACE,
- anon_sym_SEMI,
- [47955] = 3,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(4884), 13,
- anon_sym_STAR,
- anon_sym_BANG,
- anon_sym_in,
- anon_sym_GT,
- anon_sym_GT_GT,
- anon_sym_AMP,
- anon_sym_PIPE,
- anon_sym_PLUS,
- anon_sym_DASH,
- anon_sym_SLASH,
- anon_sym_LT,
- anon_sym_EQ_EQ,
- anon_sym_BANG_EQ,
- ACTIONS(4886), 31,
- sym__ternary_qmark,
- anon_sym_as,
- anon_sym_LBRACE,
- anon_sym_COMMA,
- anon_sym_RBRACE,
- anon_sym_LPAREN,
- anon_sym_RPAREN,
- anon_sym_of,
- anon_sym_COLON,
- anon_sym_LBRACK,
- anon_sym_RBRACK,
- anon_sym_DOT,
- anon_sym_QMARK_DOT,
- anon_sym_AMP_AMP,
- anon_sym_PIPE_PIPE,
- anon_sym_GT_GT_GT,
- anon_sym_LT_LT,
- anon_sym_CARET,
- anon_sym_PERCENT,
- anon_sym_STAR_STAR,
- anon_sym_LT_EQ,
- anon_sym_EQ_EQ_EQ,
- anon_sym_BANG_EQ_EQ,
- anon_sym_GT_EQ,
- anon_sym_QMARK_QMARK,
- anon_sym_instanceof,
- anon_sym_PLUS_PLUS,
- anon_sym_DASH_DASH,
- anon_sym_BQUOTE,
- anon_sym_satisfies,
- anon_sym_implements,
- [48008] = 32,
- ACTIONS(89), 1,
- anon_sym_BQUOTE,
- ACTIONS(4059), 1,
- anon_sym_QMARK_DOT,
- ACTIONS(4519), 1,
- anon_sym_LPAREN,
- ACTIONS(4523), 1,
- anon_sym_LBRACK,
- ACTIONS(4525), 1,
- anon_sym_DOT,
- ACTIONS(4555), 1,
- anon_sym_as,
- ACTIONS(4562), 1,
- anon_sym_BANG,
- ACTIONS(4574), 1,
- anon_sym_satisfies,
- ACTIONS(4582), 1,
- anon_sym_AMP_AMP,
- ACTIONS(4584), 1,
- anon_sym_PIPE_PIPE,
- ACTIONS(4586), 1,
- anon_sym_GT_GT,
- ACTIONS(4590), 1,
- anon_sym_AMP,
- ACTIONS(4592), 1,
- anon_sym_CARET,
- ACTIONS(4594), 1,
- anon_sym_PIPE,
- ACTIONS(4598), 1,
- anon_sym_PERCENT,
- ACTIONS(4600), 1,
- anon_sym_STAR_STAR,
- ACTIONS(4602), 1,
- anon_sym_LT,
- ACTIONS(4610), 1,
- anon_sym_QMARK_QMARK,
- ACTIONS(4612), 1,
- sym__ternary_qmark,
- STATE(1812), 1,
- sym_type_arguments,
- STATE(4772), 1,
- sym_optional_chain,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(4545), 2,
- anon_sym_PLUS_PLUS,
- anon_sym_DASH_DASH,
- ACTIONS(4578), 2,
- anon_sym_STAR,
- anon_sym_SLASH,
- ACTIONS(4580), 2,
- anon_sym_in,
- anon_sym_GT,
- ACTIONS(4588), 2,
- anon_sym_GT_GT_GT,
- anon_sym_LT_LT,
- ACTIONS(4596), 2,
- anon_sym_PLUS,
- anon_sym_DASH,
- ACTIONS(4606), 2,
- anon_sym_EQ_EQ,
- anon_sym_BANG_EQ,
- ACTIONS(4608), 2,
- anon_sym_EQ_EQ_EQ,
- anon_sym_BANG_EQ_EQ,
- STATE(2133), 2,
- sym_template_string,
- sym_arguments,
- ACTIONS(4604), 3,
- anon_sym_LT_EQ,
- anon_sym_GT_EQ,
- anon_sym_instanceof,
- ACTIONS(4370), 4,
- sym__automatic_semicolon,
- anon_sym_COMMA,
- anon_sym_of,
- anon_sym_SEMI,
- [48119] = 3,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(4888), 13,
- anon_sym_STAR,
- anon_sym_BANG,
- anon_sym_in,
- anon_sym_GT,
- anon_sym_GT_GT,
- anon_sym_AMP,
- anon_sym_PIPE,
- anon_sym_PLUS,
- anon_sym_DASH,
- anon_sym_SLASH,
- anon_sym_LT,
- anon_sym_EQ_EQ,
- anon_sym_BANG_EQ,
- ACTIONS(4890), 31,
- sym__ternary_qmark,
- anon_sym_as,
- anon_sym_LBRACE,
- anon_sym_COMMA,
- anon_sym_RBRACE,
- anon_sym_LPAREN,
- anon_sym_RPAREN,
- anon_sym_of,
- anon_sym_COLON,
- anon_sym_LBRACK,
- anon_sym_RBRACK,
- anon_sym_DOT,
- anon_sym_QMARK_DOT,
- anon_sym_AMP_AMP,
- anon_sym_PIPE_PIPE,
- anon_sym_GT_GT_GT,
- anon_sym_LT_LT,
- anon_sym_CARET,
- anon_sym_PERCENT,
- anon_sym_STAR_STAR,
- anon_sym_LT_EQ,
- anon_sym_EQ_EQ_EQ,
- anon_sym_BANG_EQ_EQ,
- anon_sym_GT_EQ,
- anon_sym_QMARK_QMARK,
- anon_sym_instanceof,
- anon_sym_PLUS_PLUS,
- anon_sym_DASH_DASH,
- anon_sym_BQUOTE,
- anon_sym_satisfies,
- anon_sym_implements,
- [48172] = 16,
- ACTIONS(1594), 1,
- anon_sym_DQUOTE,
- ACTIONS(1596), 1,
- anon_sym_SQUOTE,
- ACTIONS(3633), 1,
- anon_sym_override,
- ACTIONS(4245), 1,
- anon_sym_LBRACK,
- ACTIONS(4894), 1,
- anon_sym_static,
- ACTIONS(4896), 1,
- anon_sym_readonly,
- ACTIONS(4898), 1,
- anon_sym_abstract,
- ACTIONS(4900), 1,
- anon_sym_accessor,
- STATE(2655), 1,
- sym_accessibility_modifier,
- STATE(2735), 1,
- sym_override_modifier,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(4892), 2,
- sym_number,
- sym_private_property_identifier,
- ACTIONS(3631), 3,
- anon_sym_public,
- anon_sym_private,
- anon_sym_protected,
- STATE(3288), 3,
- sym_string,
- sym__property_name,
- sym_computed_property_name,
- ACTIONS(3743), 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(3607), 17,
- anon_sym_export,
- anon_sym_type,
- anon_sym_namespace,
- anon_sym_let,
- anon_sym_async,
- anon_sym_new,
- sym_identifier,
- anon_sym_get,
- anon_sym_set,
- anon_sym_declare,
- anon_sym_module,
- anon_sym_any,
- anon_sym_number,
- anon_sym_boolean,
- anon_sym_string,
- anon_sym_symbol,
- anon_sym_object,
- [48251] = 3,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(4902), 13,
- anon_sym_STAR,
- anon_sym_BANG,
- anon_sym_in,
- anon_sym_GT,
- anon_sym_GT_GT,
- anon_sym_AMP,
- anon_sym_PIPE,
- anon_sym_PLUS,
- anon_sym_DASH,
- anon_sym_SLASH,
- anon_sym_LT,
- anon_sym_EQ_EQ,
- anon_sym_BANG_EQ,
- ACTIONS(4904), 31,
- sym__ternary_qmark,
- anon_sym_as,
- anon_sym_LBRACE,
- anon_sym_COMMA,
- anon_sym_RBRACE,
- anon_sym_LPAREN,
- anon_sym_RPAREN,
- anon_sym_of,
- anon_sym_COLON,
- anon_sym_LBRACK,
- anon_sym_RBRACK,
- anon_sym_DOT,
- anon_sym_QMARK_DOT,
- anon_sym_AMP_AMP,
- anon_sym_PIPE_PIPE,
- anon_sym_GT_GT_GT,
- anon_sym_LT_LT,
- anon_sym_CARET,
- anon_sym_PERCENT,
- anon_sym_STAR_STAR,
- anon_sym_LT_EQ,
- anon_sym_EQ_EQ_EQ,
- anon_sym_BANG_EQ_EQ,
- anon_sym_GT_EQ,
- anon_sym_QMARK_QMARK,
- anon_sym_instanceof,
- anon_sym_PLUS_PLUS,
- anon_sym_DASH_DASH,
- anon_sym_BQUOTE,
- anon_sym_satisfies,
- anon_sym_implements,
- [48304] = 32,
- ACTIONS(89), 1,
- anon_sym_BQUOTE,
- ACTIONS(4059), 1,
- anon_sym_QMARK_DOT,
- ACTIONS(4519), 1,
- anon_sym_LPAREN,
- ACTIONS(4523), 1,
- anon_sym_LBRACK,
- ACTIONS(4525), 1,
- anon_sym_DOT,
- ACTIONS(4555), 1,
- anon_sym_as,
- ACTIONS(4562), 1,
- anon_sym_BANG,
- ACTIONS(4574), 1,
- anon_sym_satisfies,
- ACTIONS(4582), 1,
- anon_sym_AMP_AMP,
- ACTIONS(4584), 1,
- anon_sym_PIPE_PIPE,
- ACTIONS(4586), 1,
- anon_sym_GT_GT,
- ACTIONS(4590), 1,
- anon_sym_AMP,
- ACTIONS(4592), 1,
- anon_sym_CARET,
- ACTIONS(4594), 1,
- anon_sym_PIPE,
- ACTIONS(4598), 1,
- anon_sym_PERCENT,
- ACTIONS(4600), 1,
- anon_sym_STAR_STAR,
- ACTIONS(4602), 1,
- anon_sym_LT,
- ACTIONS(4610), 1,
- anon_sym_QMARK_QMARK,
- ACTIONS(4612), 1,
- sym__ternary_qmark,
- STATE(1812), 1,
- sym_type_arguments,
- STATE(4772), 1,
- sym_optional_chain,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(4545), 2,
- anon_sym_PLUS_PLUS,
- anon_sym_DASH_DASH,
- ACTIONS(4578), 2,
- anon_sym_STAR,
- anon_sym_SLASH,
- ACTIONS(4580), 2,
- anon_sym_in,
- anon_sym_GT,
- ACTIONS(4588), 2,
- anon_sym_GT_GT_GT,
- anon_sym_LT_LT,
- ACTIONS(4596), 2,
- anon_sym_PLUS,
- anon_sym_DASH,
- ACTIONS(4606), 2,
- anon_sym_EQ_EQ,
- anon_sym_BANG_EQ,
- ACTIONS(4608), 2,
- anon_sym_EQ_EQ_EQ,
- anon_sym_BANG_EQ_EQ,
- STATE(2133), 2,
- sym_template_string,
- sym_arguments,
- ACTIONS(4604), 3,
- anon_sym_LT_EQ,
- anon_sym_GT_EQ,
- anon_sym_instanceof,
- ACTIONS(4372), 4,
- sym__automatic_semicolon,
- anon_sym_COMMA,
- anon_sym_of,
- anon_sym_SEMI,
- [48415] = 32,
- ACTIONS(89), 1,
- anon_sym_BQUOTE,
- ACTIONS(4059), 1,
- anon_sym_QMARK_DOT,
- ACTIONS(4519), 1,
- anon_sym_LPAREN,
- ACTIONS(4523), 1,
- anon_sym_LBRACK,
- ACTIONS(4525), 1,
- anon_sym_DOT,
- ACTIONS(4555), 1,
- anon_sym_as,
- ACTIONS(4562), 1,
- anon_sym_BANG,
- ACTIONS(4574), 1,
- anon_sym_satisfies,
- ACTIONS(4582), 1,
- anon_sym_AMP_AMP,
- ACTIONS(4584), 1,
- anon_sym_PIPE_PIPE,
- ACTIONS(4586), 1,
- anon_sym_GT_GT,
- ACTIONS(4590), 1,
- anon_sym_AMP,
- ACTIONS(4592), 1,
- anon_sym_CARET,
- ACTIONS(4594), 1,
- anon_sym_PIPE,
- ACTIONS(4598), 1,
- anon_sym_PERCENT,
- ACTIONS(4600), 1,
- anon_sym_STAR_STAR,
- ACTIONS(4602), 1,
- anon_sym_LT,
- ACTIONS(4610), 1,
- anon_sym_QMARK_QMARK,
- ACTIONS(4612), 1,
- sym__ternary_qmark,
- STATE(1812), 1,
- sym_type_arguments,
- STATE(4772), 1,
- sym_optional_chain,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(4545), 2,
- anon_sym_PLUS_PLUS,
- anon_sym_DASH_DASH,
- ACTIONS(4578), 2,
- anon_sym_STAR,
- anon_sym_SLASH,
- ACTIONS(4580), 2,
- anon_sym_in,
- anon_sym_GT,
- ACTIONS(4588), 2,
- anon_sym_GT_GT_GT,
- anon_sym_LT_LT,
- ACTIONS(4596), 2,
- anon_sym_PLUS,
- anon_sym_DASH,
- ACTIONS(4606), 2,
- anon_sym_EQ_EQ,
- anon_sym_BANG_EQ,
- ACTIONS(4608), 2,
- anon_sym_EQ_EQ_EQ,
- anon_sym_BANG_EQ_EQ,
- STATE(2133), 2,
- sym_template_string,
- sym_arguments,
- ACTIONS(4604), 3,
- anon_sym_LT_EQ,
- anon_sym_GT_EQ,
- anon_sym_instanceof,
- ACTIONS(4374), 4,
- sym__automatic_semicolon,
- anon_sym_COMMA,
- anon_sym_of,
- anon_sym_SEMI,
- [48526] = 3,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(4906), 13,
- anon_sym_STAR,
- anon_sym_BANG,
- anon_sym_in,
- anon_sym_GT,
- anon_sym_GT_GT,
- anon_sym_AMP,
- anon_sym_PIPE,
- anon_sym_PLUS,
- anon_sym_DASH,
- anon_sym_SLASH,
- anon_sym_LT,
- anon_sym_EQ_EQ,
- anon_sym_BANG_EQ,
- ACTIONS(4908), 31,
- sym__ternary_qmark,
- anon_sym_as,
- anon_sym_LBRACE,
- anon_sym_COMMA,
- anon_sym_RBRACE,
- anon_sym_LPAREN,
- anon_sym_RPAREN,
- anon_sym_of,
- anon_sym_COLON,
- anon_sym_LBRACK,
- anon_sym_RBRACK,
- anon_sym_DOT,
- anon_sym_QMARK_DOT,
- anon_sym_AMP_AMP,
- anon_sym_PIPE_PIPE,
- anon_sym_GT_GT_GT,
- anon_sym_LT_LT,
- anon_sym_CARET,
- anon_sym_PERCENT,
- anon_sym_STAR_STAR,
- anon_sym_LT_EQ,
- anon_sym_EQ_EQ_EQ,
- anon_sym_BANG_EQ_EQ,
- anon_sym_GT_EQ,
- anon_sym_QMARK_QMARK,
- anon_sym_instanceof,
- anon_sym_PLUS_PLUS,
- anon_sym_DASH_DASH,
- anon_sym_BQUOTE,
- anon_sym_satisfies,
- anon_sym_implements,
- [48579] = 3,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(4910), 13,
- anon_sym_STAR,
- anon_sym_BANG,
- anon_sym_in,
- anon_sym_GT,
- anon_sym_GT_GT,
- anon_sym_AMP,
- anon_sym_PIPE,
- anon_sym_PLUS,
- anon_sym_DASH,
- anon_sym_SLASH,
- anon_sym_LT,
- anon_sym_EQ_EQ,
- anon_sym_BANG_EQ,
- ACTIONS(4912), 31,
- sym__ternary_qmark,
- anon_sym_as,
- anon_sym_LBRACE,
- anon_sym_COMMA,
- anon_sym_RBRACE,
- anon_sym_LPAREN,
- anon_sym_RPAREN,
- anon_sym_of,
- anon_sym_COLON,
- anon_sym_LBRACK,
- anon_sym_RBRACK,
- anon_sym_DOT,
- anon_sym_QMARK_DOT,
- anon_sym_AMP_AMP,
- anon_sym_PIPE_PIPE,
- anon_sym_GT_GT_GT,
- anon_sym_LT_LT,
- anon_sym_CARET,
- anon_sym_PERCENT,
- anon_sym_STAR_STAR,
- anon_sym_LT_EQ,
- anon_sym_EQ_EQ_EQ,
- anon_sym_BANG_EQ_EQ,
- anon_sym_GT_EQ,
- anon_sym_QMARK_QMARK,
- anon_sym_instanceof,
- anon_sym_PLUS_PLUS,
- anon_sym_DASH_DASH,
- anon_sym_BQUOTE,
- anon_sym_satisfies,
- anon_sym_implements,
- [48632] = 3,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(4914), 13,
- anon_sym_STAR,
- anon_sym_BANG,
- anon_sym_in,
- anon_sym_GT,
- anon_sym_GT_GT,
- anon_sym_AMP,
- anon_sym_PIPE,
- anon_sym_PLUS,
- anon_sym_DASH,
- anon_sym_SLASH,
- anon_sym_LT,
- anon_sym_EQ_EQ,
- anon_sym_BANG_EQ,
- ACTIONS(4916), 31,
- sym__ternary_qmark,
- anon_sym_as,
- anon_sym_LBRACE,
- anon_sym_COMMA,
- anon_sym_RBRACE,
- anon_sym_LPAREN,
- anon_sym_RPAREN,
- anon_sym_of,
- anon_sym_COLON,
- anon_sym_LBRACK,
- anon_sym_RBRACK,
- anon_sym_DOT,
- anon_sym_QMARK_DOT,
- anon_sym_AMP_AMP,
- anon_sym_PIPE_PIPE,
- anon_sym_GT_GT_GT,
- anon_sym_LT_LT,
- anon_sym_CARET,
- anon_sym_PERCENT,
- anon_sym_STAR_STAR,
- anon_sym_LT_EQ,
- anon_sym_EQ_EQ_EQ,
- anon_sym_BANG_EQ_EQ,
- anon_sym_GT_EQ,
- anon_sym_QMARK_QMARK,
- anon_sym_instanceof,
- anon_sym_PLUS_PLUS,
- anon_sym_DASH_DASH,
- anon_sym_BQUOTE,
- anon_sym_satisfies,
- anon_sym_implements,
- [48685] = 3,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(1767), 13,
- anon_sym_STAR,
- anon_sym_BANG,
- anon_sym_in,
- anon_sym_GT,
- anon_sym_GT_GT,
- anon_sym_AMP,
- anon_sym_PIPE,
- anon_sym_PLUS,
- anon_sym_DASH,
- anon_sym_SLASH,
- anon_sym_LT,
- anon_sym_EQ_EQ,
- anon_sym_BANG_EQ,
- ACTIONS(1765), 31,
- sym__automatic_semicolon,
- sym__ternary_qmark,
- anon_sym_as,
- anon_sym_COMMA,
- anon_sym_RBRACE,
- anon_sym_else,
- anon_sym_LPAREN,
- anon_sym_of,
- anon_sym_while,
- anon_sym_SEMI,
- anon_sym_LBRACK,
- anon_sym_DOT,
- anon_sym_QMARK_DOT,
- anon_sym_AMP_AMP,
- anon_sym_PIPE_PIPE,
- anon_sym_GT_GT_GT,
- anon_sym_LT_LT,
- anon_sym_CARET,
- anon_sym_PERCENT,
- anon_sym_STAR_STAR,
- anon_sym_LT_EQ,
- anon_sym_EQ_EQ_EQ,
- anon_sym_BANG_EQ_EQ,
- anon_sym_GT_EQ,
- anon_sym_QMARK_QMARK,
- anon_sym_instanceof,
- anon_sym_PLUS_PLUS,
- anon_sym_DASH_DASH,
- anon_sym_BQUOTE,
- anon_sym_satisfies,
- anon_sym_PIPE_RBRACE,
- [48738] = 32,
- ACTIONS(89), 1,
- anon_sym_BQUOTE,
- ACTIONS(4059), 1,
- anon_sym_QMARK_DOT,
- ACTIONS(4519), 1,
- anon_sym_LPAREN,
- ACTIONS(4523), 1,
- anon_sym_LBRACK,
- ACTIONS(4525), 1,
- anon_sym_DOT,
- ACTIONS(4527), 1,
- anon_sym_GT_GT,
- ACTIONS(4533), 1,
- anon_sym_PERCENT,
- ACTIONS(4535), 1,
- anon_sym_STAR_STAR,
- ACTIONS(4537), 1,
- anon_sym_LT,
- ACTIONS(4553), 1,
- anon_sym_AMP,
- ACTIONS(4555), 1,
- anon_sym_as,
- ACTIONS(4562), 1,
- anon_sym_BANG,
- ACTIONS(4564), 1,
- anon_sym_AMP_AMP,
- ACTIONS(4566), 1,
- anon_sym_PIPE_PIPE,
- ACTIONS(4568), 1,
- anon_sym_CARET,
- ACTIONS(4570), 1,
- anon_sym_PIPE,
- ACTIONS(4572), 1,
- anon_sym_QMARK_QMARK,
- ACTIONS(4574), 1,
- anon_sym_satisfies,
- ACTIONS(4576), 1,
- sym__ternary_qmark,
- STATE(1812), 1,
- sym_type_arguments,
- STATE(4772), 1,
- sym_optional_chain,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(4517), 2,
- anon_sym_STAR,
- anon_sym_SLASH,
- ACTIONS(4521), 2,
- anon_sym_in,
- anon_sym_GT,
- ACTIONS(4529), 2,
- anon_sym_GT_GT_GT,
- anon_sym_LT_LT,
- ACTIONS(4531), 2,
- anon_sym_PLUS,
- anon_sym_DASH,
- ACTIONS(4541), 2,
- anon_sym_EQ_EQ,
- anon_sym_BANG_EQ,
- ACTIONS(4543), 2,
- anon_sym_EQ_EQ_EQ,
- anon_sym_BANG_EQ_EQ,
- ACTIONS(4545), 2,
- anon_sym_PLUS_PLUS,
- anon_sym_DASH_DASH,
- STATE(2133), 2,
- sym_template_string,
- sym_arguments,
- ACTIONS(4539), 3,
- anon_sym_LT_EQ,
- anon_sym_GT_EQ,
- anon_sym_instanceof,
- ACTIONS(4372), 4,
- sym__automatic_semicolon,
- anon_sym_COMMA,
- anon_sym_RBRACE,
- anon_sym_SEMI,
- [48849] = 32,
- ACTIONS(89), 1,
- anon_sym_BQUOTE,
- ACTIONS(4059), 1,
- anon_sym_QMARK_DOT,
- ACTIONS(4519), 1,
- anon_sym_LPAREN,
- ACTIONS(4523), 1,
- anon_sym_LBRACK,
- ACTIONS(4525), 1,
- anon_sym_DOT,
- ACTIONS(4555), 1,
- anon_sym_as,
- ACTIONS(4562), 1,
- anon_sym_BANG,
- ACTIONS(4574), 1,
- anon_sym_satisfies,
- ACTIONS(4582), 1,
- anon_sym_AMP_AMP,
- ACTIONS(4584), 1,
- anon_sym_PIPE_PIPE,
- ACTIONS(4586), 1,
- anon_sym_GT_GT,
- ACTIONS(4590), 1,
- anon_sym_AMP,
- ACTIONS(4592), 1,
- anon_sym_CARET,
- ACTIONS(4594), 1,
- anon_sym_PIPE,
- ACTIONS(4598), 1,
- anon_sym_PERCENT,
- ACTIONS(4600), 1,
- anon_sym_STAR_STAR,
- ACTIONS(4602), 1,
- anon_sym_LT,
- ACTIONS(4610), 1,
- anon_sym_QMARK_QMARK,
- ACTIONS(4612), 1,
- sym__ternary_qmark,
- STATE(1812), 1,
- sym_type_arguments,
- STATE(4772), 1,
- sym_optional_chain,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(4545), 2,
- anon_sym_PLUS_PLUS,
- anon_sym_DASH_DASH,
- ACTIONS(4578), 2,
- anon_sym_STAR,
- anon_sym_SLASH,
- ACTIONS(4580), 2,
- anon_sym_in,
- anon_sym_GT,
- ACTIONS(4588), 2,
- anon_sym_GT_GT_GT,
- anon_sym_LT_LT,
- ACTIONS(4596), 2,
- anon_sym_PLUS,
- anon_sym_DASH,
- ACTIONS(4606), 2,
- anon_sym_EQ_EQ,
- anon_sym_BANG_EQ,
- ACTIONS(4608), 2,
- anon_sym_EQ_EQ_EQ,
- anon_sym_BANG_EQ_EQ,
- STATE(2133), 2,
- sym_template_string,
- sym_arguments,
- ACTIONS(4604), 3,
- anon_sym_LT_EQ,
- anon_sym_GT_EQ,
- anon_sym_instanceof,
- ACTIONS(4376), 4,
- sym__automatic_semicolon,
- anon_sym_COMMA,
- anon_sym_of,
- anon_sym_SEMI,
- [48960] = 32,
- ACTIONS(89), 1,
- anon_sym_BQUOTE,
- ACTIONS(4059), 1,
- anon_sym_QMARK_DOT,
- ACTIONS(4519), 1,
- anon_sym_LPAREN,
- ACTIONS(4523), 1,
- anon_sym_LBRACK,
- ACTIONS(4525), 1,
- anon_sym_DOT,
- ACTIONS(4555), 1,
- anon_sym_as,
- ACTIONS(4562), 1,
- anon_sym_BANG,
- ACTIONS(4574), 1,
- anon_sym_satisfies,
- ACTIONS(4582), 1,
- anon_sym_AMP_AMP,
- ACTIONS(4584), 1,
- anon_sym_PIPE_PIPE,
- ACTIONS(4586), 1,
- anon_sym_GT_GT,
- ACTIONS(4590), 1,
- anon_sym_AMP,
- ACTIONS(4592), 1,
- anon_sym_CARET,
- ACTIONS(4594), 1,
- anon_sym_PIPE,
- ACTIONS(4598), 1,
- anon_sym_PERCENT,
- ACTIONS(4600), 1,
- anon_sym_STAR_STAR,
- ACTIONS(4602), 1,
- anon_sym_LT,
- ACTIONS(4610), 1,
- anon_sym_QMARK_QMARK,
- ACTIONS(4612), 1,
- sym__ternary_qmark,
- STATE(1812), 1,
- sym_type_arguments,
- STATE(4772), 1,
- sym_optional_chain,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(4545), 2,
- anon_sym_PLUS_PLUS,
- anon_sym_DASH_DASH,
- ACTIONS(4578), 2,
- anon_sym_STAR,
- anon_sym_SLASH,
- ACTIONS(4580), 2,
- anon_sym_in,
- anon_sym_GT,
- ACTIONS(4588), 2,
- anon_sym_GT_GT_GT,
- anon_sym_LT_LT,
- ACTIONS(4596), 2,
- anon_sym_PLUS,
- anon_sym_DASH,
- ACTIONS(4606), 2,
- anon_sym_EQ_EQ,
- anon_sym_BANG_EQ,
- ACTIONS(4608), 2,
- anon_sym_EQ_EQ_EQ,
- anon_sym_BANG_EQ_EQ,
- STATE(2133), 2,
- sym_template_string,
- sym_arguments,
- ACTIONS(4604), 3,
- anon_sym_LT_EQ,
- anon_sym_GT_EQ,
- anon_sym_instanceof,
- ACTIONS(4053), 4,
- sym__automatic_semicolon,
- anon_sym_COMMA,
- anon_sym_of,
- anon_sym_SEMI,
- [49071] = 3,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(4918), 13,
- anon_sym_STAR,
- anon_sym_BANG,
- anon_sym_in,
- anon_sym_GT,
- anon_sym_GT_GT,
- anon_sym_AMP,
- anon_sym_PIPE,
- anon_sym_PLUS,
- anon_sym_DASH,
- anon_sym_SLASH,
- anon_sym_LT,
- anon_sym_EQ_EQ,
- anon_sym_BANG_EQ,
- ACTIONS(4920), 31,
- sym__ternary_qmark,
- anon_sym_as,
- anon_sym_LBRACE,
- anon_sym_COMMA,
- anon_sym_RBRACE,
- anon_sym_LPAREN,
- anon_sym_RPAREN,
- anon_sym_of,
- anon_sym_COLON,
- anon_sym_LBRACK,
- anon_sym_RBRACK,
- anon_sym_DOT,
- anon_sym_QMARK_DOT,
- anon_sym_AMP_AMP,
- anon_sym_PIPE_PIPE,
- anon_sym_GT_GT_GT,
- anon_sym_LT_LT,
- anon_sym_CARET,
- anon_sym_PERCENT,
- anon_sym_STAR_STAR,
- anon_sym_LT_EQ,
- anon_sym_EQ_EQ_EQ,
- anon_sym_BANG_EQ_EQ,
- anon_sym_GT_EQ,
- anon_sym_QMARK_QMARK,
- anon_sym_instanceof,
- anon_sym_PLUS_PLUS,
- anon_sym_DASH_DASH,
- anon_sym_BQUOTE,
- anon_sym_satisfies,
- anon_sym_implements,
- [49124] = 3,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(4922), 13,
- anon_sym_STAR,
- anon_sym_BANG,
- anon_sym_in,
- anon_sym_GT,
- anon_sym_GT_GT,
- anon_sym_AMP,
- anon_sym_PIPE,
- anon_sym_PLUS,
- anon_sym_DASH,
- anon_sym_SLASH,
- anon_sym_LT,
- anon_sym_EQ_EQ,
- anon_sym_BANG_EQ,
- ACTIONS(4299), 31,
- sym__ternary_qmark,
- anon_sym_as,
- anon_sym_LBRACE,
- anon_sym_COMMA,
- anon_sym_RBRACE,
- anon_sym_LPAREN,
- anon_sym_RPAREN,
- anon_sym_of,
- anon_sym_COLON,
- anon_sym_LBRACK,
- anon_sym_RBRACK,
- anon_sym_DOT,
- anon_sym_QMARK_DOT,
- anon_sym_AMP_AMP,
- anon_sym_PIPE_PIPE,
- anon_sym_GT_GT_GT,
- anon_sym_LT_LT,
- anon_sym_CARET,
- anon_sym_PERCENT,
- anon_sym_STAR_STAR,
- anon_sym_LT_EQ,
- anon_sym_EQ_EQ_EQ,
- anon_sym_BANG_EQ_EQ,
- anon_sym_GT_EQ,
- anon_sym_QMARK_QMARK,
- anon_sym_instanceof,
- anon_sym_PLUS_PLUS,
- anon_sym_DASH_DASH,
- anon_sym_BQUOTE,
- anon_sym_satisfies,
- anon_sym_implements,
- [49177] = 32,
- ACTIONS(89), 1,
- anon_sym_BQUOTE,
- ACTIONS(4059), 1,
- anon_sym_QMARK_DOT,
- ACTIONS(4519), 1,
- anon_sym_LPAREN,
- ACTIONS(4523), 1,
- anon_sym_LBRACK,
- ACTIONS(4525), 1,
- anon_sym_DOT,
- ACTIONS(4555), 1,
- anon_sym_as,
- ACTIONS(4562), 1,
- anon_sym_BANG,
- ACTIONS(4574), 1,
- anon_sym_satisfies,
- ACTIONS(4582), 1,
- anon_sym_AMP_AMP,
- ACTIONS(4584), 1,
- anon_sym_PIPE_PIPE,
- ACTIONS(4586), 1,
- anon_sym_GT_GT,
- ACTIONS(4590), 1,
- anon_sym_AMP,
- ACTIONS(4592), 1,
- anon_sym_CARET,
- ACTIONS(4594), 1,
- anon_sym_PIPE,
- ACTIONS(4598), 1,
- anon_sym_PERCENT,
- ACTIONS(4600), 1,
- anon_sym_STAR_STAR,
- ACTIONS(4602), 1,
- anon_sym_LT,
- ACTIONS(4610), 1,
- anon_sym_QMARK_QMARK,
- ACTIONS(4612), 1,
- sym__ternary_qmark,
- STATE(1812), 1,
- sym_type_arguments,
- STATE(4772), 1,
- sym_optional_chain,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(4545), 2,
- anon_sym_PLUS_PLUS,
- anon_sym_DASH_DASH,
- ACTIONS(4578), 2,
- anon_sym_STAR,
- anon_sym_SLASH,
- ACTIONS(4580), 2,
- anon_sym_in,
- anon_sym_GT,
- ACTIONS(4588), 2,
- anon_sym_GT_GT_GT,
- anon_sym_LT_LT,
- ACTIONS(4596), 2,
- anon_sym_PLUS,
- anon_sym_DASH,
- ACTIONS(4606), 2,
- anon_sym_EQ_EQ,
- anon_sym_BANG_EQ,
- ACTIONS(4608), 2,
- anon_sym_EQ_EQ_EQ,
- anon_sym_BANG_EQ_EQ,
- STATE(2133), 2,
- sym_template_string,
- sym_arguments,
- ACTIONS(4604), 3,
- anon_sym_LT_EQ,
- anon_sym_GT_EQ,
- anon_sym_instanceof,
- ACTIONS(4283), 4,
- sym__automatic_semicolon,
- anon_sym_COMMA,
- anon_sym_of,
- anon_sym_SEMI,
- [49288] = 3,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(4924), 13,
- anon_sym_STAR,
- anon_sym_BANG,
- anon_sym_in,
- anon_sym_GT,
- anon_sym_GT_GT,
- anon_sym_AMP,
- anon_sym_PIPE,
- anon_sym_PLUS,
- anon_sym_DASH,
- anon_sym_SLASH,
- anon_sym_LT,
- anon_sym_EQ_EQ,
- anon_sym_BANG_EQ,
- ACTIONS(4926), 31,
- sym__ternary_qmark,
- anon_sym_as,
- anon_sym_LBRACE,
- anon_sym_COMMA,
- anon_sym_RBRACE,
- anon_sym_LPAREN,
- anon_sym_RPAREN,
- anon_sym_of,
- anon_sym_COLON,
- anon_sym_LBRACK,
- anon_sym_RBRACK,
- anon_sym_DOT,
- anon_sym_QMARK_DOT,
- anon_sym_AMP_AMP,
- anon_sym_PIPE_PIPE,
- anon_sym_GT_GT_GT,
- anon_sym_LT_LT,
- anon_sym_CARET,
- anon_sym_PERCENT,
- anon_sym_STAR_STAR,
- anon_sym_LT_EQ,
- anon_sym_EQ_EQ_EQ,
- anon_sym_BANG_EQ_EQ,
- anon_sym_GT_EQ,
- anon_sym_QMARK_QMARK,
- anon_sym_instanceof,
- anon_sym_PLUS_PLUS,
- anon_sym_DASH_DASH,
- anon_sym_BQUOTE,
- anon_sym_satisfies,
- anon_sym_implements,
- [49341] = 3,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(4928), 13,
- anon_sym_STAR,
- anon_sym_BANG,
- anon_sym_in,
- anon_sym_GT,
- anon_sym_GT_GT,
- anon_sym_AMP,
- anon_sym_PIPE,
- anon_sym_PLUS,
- anon_sym_DASH,
- anon_sym_SLASH,
- anon_sym_LT,
- anon_sym_EQ_EQ,
- anon_sym_BANG_EQ,
- ACTIONS(4930), 31,
- sym__ternary_qmark,
- anon_sym_as,
- anon_sym_LBRACE,
- anon_sym_COMMA,
- anon_sym_RBRACE,
- anon_sym_LPAREN,
- anon_sym_RPAREN,
- anon_sym_of,
- anon_sym_COLON,
- anon_sym_LBRACK,
- anon_sym_RBRACK,
- anon_sym_DOT,
- anon_sym_QMARK_DOT,
- anon_sym_AMP_AMP,
- anon_sym_PIPE_PIPE,
- anon_sym_GT_GT_GT,
- anon_sym_LT_LT,
- anon_sym_CARET,
- anon_sym_PERCENT,
- anon_sym_STAR_STAR,
- anon_sym_LT_EQ,
- anon_sym_EQ_EQ_EQ,
- anon_sym_BANG_EQ_EQ,
- anon_sym_GT_EQ,
- anon_sym_QMARK_QMARK,
- anon_sym_instanceof,
- anon_sym_PLUS_PLUS,
- anon_sym_DASH_DASH,
- anon_sym_BQUOTE,
- anon_sym_satisfies,
- anon_sym_implements,
- [49394] = 14,
- ACTIONS(89), 1,
- anon_sym_BQUOTE,
- ACTIONS(4059), 1,
- anon_sym_QMARK_DOT,
- ACTIONS(4519), 1,
- anon_sym_LPAREN,
- ACTIONS(4523), 1,
- anon_sym_LBRACK,
- ACTIONS(4525), 1,
- anon_sym_DOT,
- ACTIONS(4535), 1,
- anon_sym_STAR_STAR,
- ACTIONS(4623), 1,
- anon_sym_LT,
- STATE(1812), 1,
- sym_type_arguments,
- STATE(4772), 1,
- sym_optional_chain,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(4545), 2,
- anon_sym_PLUS_PLUS,
- anon_sym_DASH_DASH,
- STATE(2133), 2,
- sym_template_string,
- sym_arguments,
- ACTIONS(4307), 12,
- anon_sym_STAR,
- anon_sym_BANG,
- anon_sym_in,
- anon_sym_GT,
- anon_sym_GT_GT,
- anon_sym_AMP,
- anon_sym_PIPE,
- anon_sym_PLUS,
- anon_sym_DASH,
- anon_sym_SLASH,
- anon_sym_EQ_EQ,
- anon_sym_BANG_EQ,
- ACTIONS(4305), 19,
- sym__automatic_semicolon,
- sym__ternary_qmark,
- anon_sym_as,
- anon_sym_COMMA,
- anon_sym_RBRACE,
- anon_sym_SEMI,
- anon_sym_AMP_AMP,
- anon_sym_PIPE_PIPE,
- anon_sym_GT_GT_GT,
- anon_sym_LT_LT,
- anon_sym_CARET,
- anon_sym_PERCENT,
- anon_sym_LT_EQ,
- anon_sym_EQ_EQ_EQ,
- anon_sym_BANG_EQ_EQ,
- anon_sym_GT_EQ,
- anon_sym_QMARK_QMARK,
- anon_sym_instanceof,
- anon_sym_satisfies,
- [49469] = 26,
- ACTIONS(89), 1,
- anon_sym_BQUOTE,
- ACTIONS(4059), 1,
- anon_sym_QMARK_DOT,
- ACTIONS(4307), 1,
- anon_sym_BANG,
- ACTIONS(4519), 1,
- anon_sym_LPAREN,
- ACTIONS(4523), 1,
- anon_sym_LBRACK,
- ACTIONS(4525), 1,
- anon_sym_DOT,
- ACTIONS(4527), 1,
- anon_sym_GT_GT,
- ACTIONS(4533), 1,
- anon_sym_PERCENT,
- ACTIONS(4535), 1,
- anon_sym_STAR_STAR,
- ACTIONS(4537), 1,
- anon_sym_LT,
- ACTIONS(4553), 1,
- anon_sym_AMP,
- ACTIONS(4568), 1,
- anon_sym_CARET,
- ACTIONS(4570), 1,
- anon_sym_PIPE,
- STATE(1812), 1,
- sym_type_arguments,
- STATE(4772), 1,
- sym_optional_chain,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(4517), 2,
- anon_sym_STAR,
- anon_sym_SLASH,
- ACTIONS(4521), 2,
- anon_sym_in,
- anon_sym_GT,
- ACTIONS(4529), 2,
- anon_sym_GT_GT_GT,
- anon_sym_LT_LT,
- ACTIONS(4531), 2,
- anon_sym_PLUS,
- anon_sym_DASH,
- ACTIONS(4541), 2,
- anon_sym_EQ_EQ,
- anon_sym_BANG_EQ,
- ACTIONS(4543), 2,
- anon_sym_EQ_EQ_EQ,
- anon_sym_BANG_EQ_EQ,
- ACTIONS(4545), 2,
- anon_sym_PLUS_PLUS,
- anon_sym_DASH_DASH,
- STATE(2133), 2,
- sym_template_string,
- sym_arguments,
- ACTIONS(4539), 3,
- anon_sym_LT_EQ,
- anon_sym_GT_EQ,
- anon_sym_instanceof,
- ACTIONS(4305), 10,
- sym__automatic_semicolon,
- sym__ternary_qmark,
- anon_sym_as,
- anon_sym_COMMA,
- anon_sym_RBRACE,
- anon_sym_SEMI,
- anon_sym_AMP_AMP,
- anon_sym_PIPE_PIPE,
- anon_sym_QMARK_QMARK,
- anon_sym_satisfies,
- [49568] = 34,
- ACTIONS(89), 1,
- anon_sym_BQUOTE,
- ACTIONS(4059), 1,
- anon_sym_QMARK_DOT,
- ACTIONS(4519), 1,
- anon_sym_LPAREN,
- ACTIONS(4523), 1,
- anon_sym_LBRACK,
- ACTIONS(4525), 1,
- anon_sym_DOT,
- ACTIONS(4527), 1,
- anon_sym_GT_GT,
- ACTIONS(4533), 1,
- anon_sym_PERCENT,
- ACTIONS(4535), 1,
- anon_sym_STAR_STAR,
- ACTIONS(4537), 1,
- anon_sym_LT,
- ACTIONS(4553), 1,
- anon_sym_AMP,
- ACTIONS(4555), 1,
- anon_sym_as,
- ACTIONS(4562), 1,
- anon_sym_BANG,
- ACTIONS(4564), 1,
- anon_sym_AMP_AMP,
- ACTIONS(4566), 1,
- anon_sym_PIPE_PIPE,
- ACTIONS(4568), 1,
- anon_sym_CARET,
- ACTIONS(4570), 1,
- anon_sym_PIPE,
- ACTIONS(4572), 1,
- anon_sym_QMARK_QMARK,
- ACTIONS(4574), 1,
- anon_sym_satisfies,
- ACTIONS(4576), 1,
- sym__ternary_qmark,
- ACTIONS(4672), 1,
- anon_sym_RBRACE,
- ACTIONS(4932), 1,
- anon_sym_COMMA,
- STATE(1812), 1,
- sym_type_arguments,
- STATE(4772), 1,
- sym_optional_chain,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(4297), 2,
- sym__automatic_semicolon,
- anon_sym_SEMI,
- ACTIONS(4517), 2,
- anon_sym_STAR,
- anon_sym_SLASH,
- ACTIONS(4521), 2,
- anon_sym_in,
- anon_sym_GT,
- ACTIONS(4529), 2,
- anon_sym_GT_GT_GT,
- anon_sym_LT_LT,
- ACTIONS(4531), 2,
- anon_sym_PLUS,
- anon_sym_DASH,
- ACTIONS(4541), 2,
- anon_sym_EQ_EQ,
- anon_sym_BANG_EQ,
- ACTIONS(4543), 2,
- anon_sym_EQ_EQ_EQ,
- anon_sym_BANG_EQ_EQ,
- ACTIONS(4545), 2,
- anon_sym_PLUS_PLUS,
- anon_sym_DASH_DASH,
- STATE(2133), 2,
- sym_template_string,
- sym_arguments,
- ACTIONS(4539), 3,
- anon_sym_LT_EQ,
- anon_sym_GT_EQ,
- anon_sym_instanceof,
- [49683] = 27,
- ACTIONS(89), 1,
- anon_sym_BQUOTE,
- ACTIONS(4059), 1,
- anon_sym_QMARK_DOT,
- ACTIONS(4307), 1,
- anon_sym_BANG,
- ACTIONS(4519), 1,
- anon_sym_LPAREN,
- ACTIONS(4523), 1,
- anon_sym_LBRACK,
- ACTIONS(4525), 1,
- anon_sym_DOT,
- ACTIONS(4527), 1,
- anon_sym_GT_GT,
- ACTIONS(4533), 1,
- anon_sym_PERCENT,
- ACTIONS(4535), 1,
- anon_sym_STAR_STAR,
- ACTIONS(4537), 1,
- anon_sym_LT,
- ACTIONS(4553), 1,
- anon_sym_AMP,
- ACTIONS(4564), 1,
- anon_sym_AMP_AMP,
- ACTIONS(4568), 1,
- anon_sym_CARET,
- ACTIONS(4570), 1,
- anon_sym_PIPE,
- STATE(1812), 1,
- sym_type_arguments,
- STATE(4772), 1,
- sym_optional_chain,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(4517), 2,
- anon_sym_STAR,
- anon_sym_SLASH,
- ACTIONS(4521), 2,
- anon_sym_in,
- anon_sym_GT,
- ACTIONS(4529), 2,
- anon_sym_GT_GT_GT,
- anon_sym_LT_LT,
- ACTIONS(4531), 2,
- anon_sym_PLUS,
- anon_sym_DASH,
- ACTIONS(4541), 2,
- anon_sym_EQ_EQ,
- anon_sym_BANG_EQ,
- ACTIONS(4543), 2,
- anon_sym_EQ_EQ_EQ,
- anon_sym_BANG_EQ_EQ,
- ACTIONS(4545), 2,
- anon_sym_PLUS_PLUS,
- anon_sym_DASH_DASH,
- STATE(2133), 2,
- sym_template_string,
- sym_arguments,
- ACTIONS(4539), 3,
- anon_sym_LT_EQ,
- anon_sym_GT_EQ,
- anon_sym_instanceof,
- ACTIONS(4305), 9,
- sym__automatic_semicolon,
- sym__ternary_qmark,
- anon_sym_as,
- anon_sym_COMMA,
- anon_sym_RBRACE,
- anon_sym_SEMI,
- anon_sym_PIPE_PIPE,
- anon_sym_QMARK_QMARK,
- anon_sym_satisfies,
- [49784] = 32,
- ACTIONS(89), 1,
- anon_sym_BQUOTE,
- ACTIONS(4059), 1,
- anon_sym_QMARK_DOT,
- ACTIONS(4519), 1,
- anon_sym_LPAREN,
- ACTIONS(4523), 1,
- anon_sym_LBRACK,
- ACTIONS(4525), 1,
- anon_sym_DOT,
- ACTIONS(4527), 1,
- anon_sym_GT_GT,
- ACTIONS(4533), 1,
- anon_sym_PERCENT,
- ACTIONS(4535), 1,
- anon_sym_STAR_STAR,
- ACTIONS(4537), 1,
- anon_sym_LT,
- ACTIONS(4553), 1,
- anon_sym_AMP,
- ACTIONS(4555), 1,
- anon_sym_as,
- ACTIONS(4562), 1,
- anon_sym_BANG,
- ACTIONS(4564), 1,
- anon_sym_AMP_AMP,
- ACTIONS(4566), 1,
- anon_sym_PIPE_PIPE,
- ACTIONS(4568), 1,
- anon_sym_CARET,
- ACTIONS(4570), 1,
- anon_sym_PIPE,
- ACTIONS(4572), 1,
- anon_sym_QMARK_QMARK,
- ACTIONS(4574), 1,
- anon_sym_satisfies,
- ACTIONS(4576), 1,
- sym__ternary_qmark,
- STATE(1812), 1,
- sym_type_arguments,
- STATE(4772), 1,
- sym_optional_chain,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(4517), 2,
- anon_sym_STAR,
- anon_sym_SLASH,
- ACTIONS(4521), 2,
- anon_sym_in,
- anon_sym_GT,
- ACTIONS(4529), 2,
- anon_sym_GT_GT_GT,
- anon_sym_LT_LT,
- ACTIONS(4531), 2,
- anon_sym_PLUS,
- anon_sym_DASH,
- ACTIONS(4541), 2,
- anon_sym_EQ_EQ,
- anon_sym_BANG_EQ,
- ACTIONS(4543), 2,
- anon_sym_EQ_EQ_EQ,
- anon_sym_BANG_EQ_EQ,
- ACTIONS(4545), 2,
- anon_sym_PLUS_PLUS,
- anon_sym_DASH_DASH,
- STATE(2133), 2,
- sym_template_string,
- sym_arguments,
- ACTIONS(4539), 3,
- anon_sym_LT_EQ,
- anon_sym_GT_EQ,
- anon_sym_instanceof,
- ACTIONS(4297), 4,
- sym__automatic_semicolon,
- anon_sym_COMMA,
- anon_sym_RBRACE,
- anon_sym_SEMI,
- [49895] = 7,
- ACTIONS(1726), 1,
- anon_sym_EQ,
- ACTIONS(4414), 1,
- anon_sym_LBRACK,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(2331), 2,
- anon_sym_COMMA,
- anon_sym_extends,
- ACTIONS(4417), 3,
- anon_sym_GT,
- anon_sym_AMP,
- anon_sym_PIPE,
- ACTIONS(1724), 10,
- anon_sym_STAR,
- anon_sym_BANG,
- anon_sym_in,
- anon_sym_GT_GT,
- anon_sym_PLUS,
- anon_sym_DASH,
- anon_sym_SLASH,
- anon_sym_LT,
- anon_sym_EQ_EQ,
- anon_sym_BANG_EQ,
- ACTIONS(1728), 26,
- sym__ternary_qmark,
- anon_sym_as,
- anon_sym_RBRACE,
- anon_sym_LPAREN,
- anon_sym_of,
- anon_sym_COLON,
- anon_sym_RBRACK,
- anon_sym_DOT,
- anon_sym_QMARK_DOT,
- anon_sym_AMP_AMP,
- anon_sym_PIPE_PIPE,
- anon_sym_GT_GT_GT,
- anon_sym_LT_LT,
- anon_sym_CARET,
- anon_sym_PERCENT,
- anon_sym_STAR_STAR,
- anon_sym_LT_EQ,
- anon_sym_EQ_EQ_EQ,
- anon_sym_BANG_EQ_EQ,
- anon_sym_GT_EQ,
- anon_sym_QMARK_QMARK,
- anon_sym_instanceof,
- anon_sym_PLUS_PLUS,
- anon_sym_DASH_DASH,
- anon_sym_BQUOTE,
- anon_sym_satisfies,
- [49955] = 32,
- ACTIONS(825), 1,
- anon_sym_BQUOTE,
- ACTIONS(3969), 1,
- anon_sym_LPAREN,
- ACTIONS(3971), 1,
- anon_sym_LBRACK,
- ACTIONS(3973), 1,
- anon_sym_DOT,
- ACTIONS(4051), 1,
- anon_sym_as,
- ACTIONS(4055), 1,
- anon_sym_BANG,
- ACTIONS(4059), 1,
- anon_sym_QMARK_DOT,
- ACTIONS(4093), 1,
- anon_sym_satisfies,
- ACTIONS(4939), 1,
- anon_sym_AMP_AMP,
- ACTIONS(4941), 1,
- anon_sym_PIPE_PIPE,
- ACTIONS(4943), 1,
- anon_sym_GT_GT,
- ACTIONS(4947), 1,
- anon_sym_AMP,
- ACTIONS(4949), 1,
- anon_sym_CARET,
- ACTIONS(4951), 1,
- anon_sym_PIPE,
- ACTIONS(4955), 1,
- anon_sym_PERCENT,
- ACTIONS(4957), 1,
- anon_sym_STAR_STAR,
- ACTIONS(4959), 1,
- anon_sym_LT,
- ACTIONS(4967), 1,
- anon_sym_QMARK_QMARK,
- ACTIONS(4969), 1,
- sym__ternary_qmark,
- STATE(1447), 1,
- sym_type_arguments,
- STATE(5080), 1,
- sym_optional_chain,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(4091), 2,
- anon_sym_PLUS_PLUS,
- anon_sym_DASH_DASH,
- ACTIONS(4935), 2,
- anon_sym_STAR,
- anon_sym_SLASH,
- ACTIONS(4937), 2,
- anon_sym_in,
- anon_sym_GT,
- ACTIONS(4945), 2,
- anon_sym_GT_GT_GT,
- anon_sym_LT_LT,
- ACTIONS(4953), 2,
- anon_sym_PLUS,
- anon_sym_DASH,
- ACTIONS(4963), 2,
- anon_sym_EQ_EQ,
- anon_sym_BANG_EQ,
- ACTIONS(4965), 2,
- anon_sym_EQ_EQ_EQ,
- anon_sym_BANG_EQ_EQ,
- STATE(1757), 2,
- sym_template_string,
- sym_arguments,
- ACTIONS(4210), 3,
- anon_sym_LBRACE,
- anon_sym_COMMA,
- anon_sym_implements,
- ACTIONS(4961), 3,
- anon_sym_LT_EQ,
- anon_sym_GT_EQ,
- anon_sym_instanceof,
- [50065] = 32,
- ACTIONS(825), 1,
- anon_sym_BQUOTE,
- ACTIONS(3969), 1,
- anon_sym_LPAREN,
- ACTIONS(3971), 1,
- anon_sym_LBRACK,
- ACTIONS(3973), 1,
- anon_sym_DOT,
- ACTIONS(4051), 1,
- anon_sym_as,
- ACTIONS(4055), 1,
- anon_sym_BANG,
- ACTIONS(4059), 1,
- anon_sym_QMARK_DOT,
- ACTIONS(4093), 1,
- anon_sym_satisfies,
- ACTIONS(4939), 1,
- anon_sym_AMP_AMP,
- ACTIONS(4941), 1,
- anon_sym_PIPE_PIPE,
- ACTIONS(4943), 1,
- anon_sym_GT_GT,
- ACTIONS(4947), 1,
- anon_sym_AMP,
- ACTIONS(4949), 1,
- anon_sym_CARET,
- ACTIONS(4951), 1,
- anon_sym_PIPE,
- ACTIONS(4955), 1,
- anon_sym_PERCENT,
- ACTIONS(4957), 1,
- anon_sym_STAR_STAR,
- ACTIONS(4959), 1,
- anon_sym_LT,
- ACTIONS(4967), 1,
- anon_sym_QMARK_QMARK,
- ACTIONS(4969), 1,
- sym__ternary_qmark,
- STATE(2143), 1,
- sym_type_arguments,
- STATE(5080), 1,
- sym_optional_chain,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(4091), 2,
- anon_sym_PLUS_PLUS,
- anon_sym_DASH_DASH,
- ACTIONS(4935), 2,
- anon_sym_STAR,
- anon_sym_SLASH,
- ACTIONS(4937), 2,
- anon_sym_in,
- anon_sym_GT,
- ACTIONS(4945), 2,
- anon_sym_GT_GT_GT,
- anon_sym_LT_LT,
- ACTIONS(4953), 2,
- anon_sym_PLUS,
- anon_sym_DASH,
- ACTIONS(4963), 2,
- anon_sym_EQ_EQ,
- anon_sym_BANG_EQ,
- ACTIONS(4965), 2,
- anon_sym_EQ_EQ_EQ,
- anon_sym_BANG_EQ_EQ,
- STATE(1757), 2,
- sym_template_string,
- sym_arguments,
- ACTIONS(4961), 3,
- anon_sym_LT_EQ,
- anon_sym_GT_EQ,
- anon_sym_instanceof,
- ACTIONS(4971), 3,
- anon_sym_LBRACE,
- anon_sym_COMMA,
- anon_sym_implements,
- [50175] = 6,
- ACTIONS(3499), 1,
- anon_sym_QMARK,
- ACTIONS(3511), 1,
- anon_sym_EQ,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(3514), 5,
- anon_sym_COMMA,
- anon_sym_RBRACE,
- anon_sym_RPAREN,
- anon_sym_COLON,
- anon_sym_RBRACK,
- ACTIONS(3400), 13,
- anon_sym_STAR,
- anon_sym_BANG,
- anon_sym_in,
- anon_sym_GT,
- anon_sym_GT_GT,
- anon_sym_AMP,
- anon_sym_PIPE,
- anon_sym_PLUS,
- anon_sym_DASH,
- anon_sym_SLASH,
- anon_sym_LT,
- anon_sym_EQ_EQ,
- anon_sym_BANG_EQ,
- ACTIONS(3404), 23,
- sym__ternary_qmark,
- anon_sym_as,
- anon_sym_LPAREN,
- anon_sym_LBRACK,
- anon_sym_DOT,
- anon_sym_QMARK_DOT,
- anon_sym_AMP_AMP,
- anon_sym_PIPE_PIPE,
- anon_sym_GT_GT_GT,
- anon_sym_LT_LT,
- anon_sym_CARET,
- anon_sym_PERCENT,
- anon_sym_STAR_STAR,
- anon_sym_LT_EQ,
- anon_sym_EQ_EQ_EQ,
- anon_sym_BANG_EQ_EQ,
- anon_sym_GT_EQ,
- anon_sym_QMARK_QMARK,
- anon_sym_instanceof,
- anon_sym_PLUS_PLUS,
- anon_sym_DASH_DASH,
- anon_sym_BQUOTE,
- anon_sym_satisfies,
- [50233] = 6,
- ACTIONS(3475), 1,
- anon_sym_EQ,
- ACTIONS(3551), 1,
- anon_sym_QMARK,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(3549), 5,
- anon_sym_COMMA,
- anon_sym_RBRACE,
- anon_sym_RPAREN,
- anon_sym_COLON,
- anon_sym_RBRACK,
- ACTIONS(3400), 13,
- anon_sym_STAR,
- anon_sym_BANG,
- anon_sym_in,
- anon_sym_GT,
- anon_sym_GT_GT,
- anon_sym_AMP,
- anon_sym_PIPE,
- anon_sym_PLUS,
- anon_sym_DASH,
- anon_sym_SLASH,
- anon_sym_LT,
- anon_sym_EQ_EQ,
- anon_sym_BANG_EQ,
- ACTIONS(3404), 23,
- sym__ternary_qmark,
- anon_sym_as,
- anon_sym_LPAREN,
- anon_sym_LBRACK,
- anon_sym_DOT,
- anon_sym_QMARK_DOT,
- anon_sym_AMP_AMP,
- anon_sym_PIPE_PIPE,
- anon_sym_GT_GT_GT,
- anon_sym_LT_LT,
- anon_sym_CARET,
- anon_sym_PERCENT,
- anon_sym_STAR_STAR,
- anon_sym_LT_EQ,
- anon_sym_EQ_EQ_EQ,
- anon_sym_BANG_EQ_EQ,
- anon_sym_GT_EQ,
- anon_sym_QMARK_QMARK,
- anon_sym_instanceof,
- anon_sym_PLUS_PLUS,
- anon_sym_DASH_DASH,
- anon_sym_BQUOTE,
- anon_sym_satisfies,
- [50291] = 34,
- ACTIONS(825), 1,
- anon_sym_BQUOTE,
- ACTIONS(3969), 1,
- anon_sym_LPAREN,
- ACTIONS(3971), 1,
- anon_sym_LBRACK,
- ACTIONS(3973), 1,
- anon_sym_DOT,
- ACTIONS(4051), 1,
- anon_sym_as,
- ACTIONS(4055), 1,
- anon_sym_BANG,
- ACTIONS(4059), 1,
- anon_sym_QMARK_DOT,
- ACTIONS(4061), 1,
- anon_sym_AMP_AMP,
- ACTIONS(4063), 1,
- anon_sym_PIPE_PIPE,
- ACTIONS(4065), 1,
- anon_sym_GT_GT,
- ACTIONS(4069), 1,
- anon_sym_AMP,
- ACTIONS(4071), 1,
- anon_sym_CARET,
- ACTIONS(4073), 1,
- anon_sym_PIPE,
- ACTIONS(4077), 1,
- anon_sym_PERCENT,
- ACTIONS(4079), 1,
- anon_sym_STAR_STAR,
- ACTIONS(4081), 1,
- anon_sym_LT,
- ACTIONS(4089), 1,
- anon_sym_QMARK_QMARK,
- ACTIONS(4093), 1,
- anon_sym_satisfies,
- ACTIONS(4095), 1,
- sym__ternary_qmark,
- ACTIONS(4267), 1,
- anon_sym_COMMA,
- ACTIONS(4973), 1,
- anon_sym_RBRACE,
- STATE(1447), 1,
- sym_type_arguments,
- STATE(3803), 1,
- aux_sym_sequence_expression_repeat1,
- STATE(5080), 1,
- sym_optional_chain,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(4049), 2,
- anon_sym_STAR,
- anon_sym_SLASH,
- ACTIONS(4057), 2,
- anon_sym_in,
- anon_sym_GT,
- ACTIONS(4067), 2,
- anon_sym_GT_GT_GT,
- anon_sym_LT_LT,
- ACTIONS(4075), 2,
- anon_sym_PLUS,
- anon_sym_DASH,
- ACTIONS(4085), 2,
- anon_sym_EQ_EQ,
- anon_sym_BANG_EQ,
- ACTIONS(4087), 2,
- anon_sym_EQ_EQ_EQ,
- anon_sym_BANG_EQ_EQ,
- ACTIONS(4091), 2,
- anon_sym_PLUS_PLUS,
- anon_sym_DASH_DASH,
- STATE(1757), 2,
- sym_template_string,
- sym_arguments,
- ACTIONS(4083), 3,
- anon_sym_LT_EQ,
- anon_sym_GT_EQ,
- anon_sym_instanceof,
- [50405] = 3,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(1652), 13,
- anon_sym_STAR,
- anon_sym_BANG,
- anon_sym_in,
- anon_sym_GT,
- anon_sym_GT_GT,
- anon_sym_AMP,
- anon_sym_PIPE,
- anon_sym_PLUS,
- anon_sym_DASH,
- anon_sym_SLASH,
- anon_sym_LT,
- anon_sym_EQ_EQ,
- anon_sym_BANG_EQ,
- ACTIONS(1650), 30,
- sym__automatic_semicolon,
- sym__ternary_qmark,
- anon_sym_as,
- anon_sym_COMMA,
- anon_sym_RBRACE,
- anon_sym_LPAREN,
- anon_sym_of,
- anon_sym_SEMI,
- anon_sym_LBRACK,
- anon_sym_DOT,
- anon_sym_QMARK_DOT,
- anon_sym_AMP_AMP,
- anon_sym_PIPE_PIPE,
- anon_sym_GT_GT_GT,
- anon_sym_LT_LT,
- anon_sym_CARET,
- anon_sym_PERCENT,
- anon_sym_STAR_STAR,
- anon_sym_LT_EQ,
- anon_sym_EQ_EQ_EQ,
- anon_sym_BANG_EQ_EQ,
- anon_sym_GT_EQ,
- anon_sym_QMARK_QMARK,
- anon_sym_instanceof,
- anon_sym_PLUS_PLUS,
- anon_sym_DASH_DASH,
- anon_sym_BQUOTE,
- anon_sym_satisfies,
- anon_sym_extends,
- anon_sym_is,
- [50457] = 6,
- ACTIONS(4547), 1,
- anon_sym_DOT,
- ACTIONS(4549), 1,
- anon_sym_LT,
- STATE(2024), 1,
- sym_type_arguments,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(4007), 12,
- anon_sym_STAR,
- anon_sym_BANG,
- anon_sym_in,
- anon_sym_GT,
- anon_sym_GT_GT,
- anon_sym_AMP,
- anon_sym_PIPE,
- anon_sym_PLUS,
- anon_sym_DASH,
- anon_sym_SLASH,
- anon_sym_EQ_EQ,
- anon_sym_BANG_EQ,
- ACTIONS(3461), 28,
- sym__automatic_semicolon,
- sym__ternary_qmark,
- anon_sym_as,
- anon_sym_COMMA,
- anon_sym_RBRACE,
- anon_sym_LPAREN,
- anon_sym_of,
- anon_sym_SEMI,
- anon_sym_LBRACK,
- anon_sym_QMARK_DOT,
- anon_sym_AMP_AMP,
- anon_sym_PIPE_PIPE,
- anon_sym_GT_GT_GT,
- anon_sym_LT_LT,
- anon_sym_CARET,
- anon_sym_PERCENT,
- anon_sym_STAR_STAR,
- anon_sym_LT_EQ,
- anon_sym_EQ_EQ_EQ,
- anon_sym_BANG_EQ_EQ,
- anon_sym_GT_EQ,
- anon_sym_QMARK_QMARK,
- anon_sym_instanceof,
- anon_sym_PLUS_PLUS,
- anon_sym_DASH_DASH,
- anon_sym_BQUOTE,
- anon_sym_satisfies,
- anon_sym_extends,
- [50515] = 5,
- ACTIONS(4549), 1,
- anon_sym_LT,
- STATE(2033), 1,
- sym_type_arguments,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(4025), 12,
- anon_sym_STAR,
- anon_sym_BANG,
- anon_sym_in,
- anon_sym_GT,
- anon_sym_GT_GT,
- anon_sym_AMP,
- anon_sym_PIPE,
- anon_sym_PLUS,
- anon_sym_DASH,
- anon_sym_SLASH,
- anon_sym_EQ_EQ,
- anon_sym_BANG_EQ,
- ACTIONS(4027), 29,
- sym__automatic_semicolon,
- sym__ternary_qmark,
- anon_sym_as,
- anon_sym_COMMA,
- anon_sym_RBRACE,
- anon_sym_LPAREN,
- anon_sym_of,
- anon_sym_SEMI,
- anon_sym_LBRACK,
- anon_sym_DOT,
- anon_sym_QMARK_DOT,
- anon_sym_AMP_AMP,
- anon_sym_PIPE_PIPE,
- anon_sym_GT_GT_GT,
- anon_sym_LT_LT,
- anon_sym_CARET,
- anon_sym_PERCENT,
- anon_sym_STAR_STAR,
- anon_sym_LT_EQ,
- anon_sym_EQ_EQ_EQ,
- anon_sym_BANG_EQ_EQ,
- anon_sym_GT_EQ,
- anon_sym_QMARK_QMARK,
- anon_sym_instanceof,
- anon_sym_PLUS_PLUS,
- anon_sym_DASH_DASH,
- anon_sym_BQUOTE,
- anon_sym_satisfies,
- anon_sym_extends,
- [50571] = 6,
- ACTIONS(4519), 1,
- anon_sym_LPAREN,
- ACTIONS(4975), 1,
- anon_sym_DOT,
- STATE(2034), 1,
- sym_arguments,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(4019), 13,
- anon_sym_STAR,
- anon_sym_BANG,
- anon_sym_in,
- anon_sym_GT,
- anon_sym_GT_GT,
- anon_sym_AMP,
- anon_sym_PIPE,
- anon_sym_PLUS,
- anon_sym_DASH,
- anon_sym_SLASH,
- anon_sym_LT,
- anon_sym_EQ_EQ,
- anon_sym_BANG_EQ,
- ACTIONS(4021), 27,
- sym__automatic_semicolon,
- sym__ternary_qmark,
- anon_sym_as,
- anon_sym_COMMA,
- anon_sym_RBRACE,
- anon_sym_of,
- anon_sym_SEMI,
- anon_sym_LBRACK,
- anon_sym_QMARK_DOT,
- anon_sym_AMP_AMP,
- anon_sym_PIPE_PIPE,
- anon_sym_GT_GT_GT,
- anon_sym_LT_LT,
- anon_sym_CARET,
- anon_sym_PERCENT,
- anon_sym_STAR_STAR,
- anon_sym_LT_EQ,
- anon_sym_EQ_EQ_EQ,
- anon_sym_BANG_EQ_EQ,
- anon_sym_GT_EQ,
- anon_sym_QMARK_QMARK,
- anon_sym_instanceof,
- anon_sym_PLUS_PLUS,
- anon_sym_DASH_DASH,
- anon_sym_BQUOTE,
- anon_sym_satisfies,
- anon_sym_extends,
- [50629] = 3,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(3131), 13,
- anon_sym_STAR,
- anon_sym_BANG,
- anon_sym_in,
- anon_sym_GT,
- anon_sym_GT_GT,
- anon_sym_AMP,
- anon_sym_PIPE,
- anon_sym_PLUS,
- anon_sym_DASH,
- anon_sym_SLASH,
- anon_sym_LT,
- anon_sym_EQ_EQ,
- anon_sym_BANG_EQ,
- ACTIONS(3133), 30,
- sym__automatic_semicolon,
- sym__ternary_qmark,
- anon_sym_as,
- anon_sym_COMMA,
- anon_sym_RBRACE,
- anon_sym_LPAREN,
- anon_sym_of,
- anon_sym_SEMI,
- anon_sym_LBRACK,
- anon_sym_DOT,
- anon_sym_QMARK_DOT,
- anon_sym_AMP_AMP,
- anon_sym_PIPE_PIPE,
- anon_sym_GT_GT_GT,
- anon_sym_LT_LT,
- anon_sym_CARET,
- anon_sym_PERCENT,
- anon_sym_STAR_STAR,
- anon_sym_LT_EQ,
- anon_sym_EQ_EQ_EQ,
- anon_sym_BANG_EQ_EQ,
- anon_sym_GT_EQ,
- anon_sym_QMARK_QMARK,
- anon_sym_instanceof,
- anon_sym_PLUS_PLUS,
- anon_sym_DASH_DASH,
- anon_sym_BQUOTE,
- anon_sym_satisfies,
- anon_sym_extends,
- anon_sym_PIPE_RBRACE,
- [50681] = 34,
- ACTIONS(825), 1,
- anon_sym_BQUOTE,
- ACTIONS(1931), 1,
- anon_sym_COMMA,
- ACTIONS(3969), 1,
- anon_sym_LPAREN,
- ACTIONS(3971), 1,
- anon_sym_LBRACK,
- ACTIONS(3973), 1,
- anon_sym_DOT,
- ACTIONS(4051), 1,
- anon_sym_as,
- ACTIONS(4055), 1,
- anon_sym_BANG,
- ACTIONS(4059), 1,
- anon_sym_QMARK_DOT,
- ACTIONS(4061), 1,
- anon_sym_AMP_AMP,
- ACTIONS(4063), 1,
- anon_sym_PIPE_PIPE,
- ACTIONS(4065), 1,
- anon_sym_GT_GT,
- ACTIONS(4069), 1,
- anon_sym_AMP,
- ACTIONS(4071), 1,
- anon_sym_CARET,
- ACTIONS(4073), 1,
- anon_sym_PIPE,
- ACTIONS(4077), 1,
- anon_sym_PERCENT,
- ACTIONS(4079), 1,
- anon_sym_STAR_STAR,
- ACTIONS(4081), 1,
- anon_sym_LT,
- ACTIONS(4089), 1,
- anon_sym_QMARK_QMARK,
- ACTIONS(4093), 1,
- anon_sym_satisfies,
- ACTIONS(4095), 1,
- sym__ternary_qmark,
- ACTIONS(4977), 1,
- anon_sym_RPAREN,
- STATE(1447), 1,
- sym_type_arguments,
- STATE(4581), 1,
- aux_sym_array_repeat1,
- STATE(5080), 1,
- sym_optional_chain,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(4049), 2,
- anon_sym_STAR,
- anon_sym_SLASH,
- ACTIONS(4057), 2,
- anon_sym_in,
- anon_sym_GT,
- ACTIONS(4067), 2,
- anon_sym_GT_GT_GT,
- anon_sym_LT_LT,
- ACTIONS(4075), 2,
- anon_sym_PLUS,
- anon_sym_DASH,
- ACTIONS(4085), 2,
- anon_sym_EQ_EQ,
- anon_sym_BANG_EQ,
- ACTIONS(4087), 2,
- anon_sym_EQ_EQ_EQ,
- anon_sym_BANG_EQ_EQ,
- ACTIONS(4091), 2,
- anon_sym_PLUS_PLUS,
- anon_sym_DASH_DASH,
- STATE(1757), 2,
- sym_template_string,
- sym_arguments,
- ACTIONS(4083), 3,
- anon_sym_LT_EQ,
- anon_sym_GT_EQ,
- anon_sym_instanceof,
- [50795] = 32,
- ACTIONS(89), 1,
- anon_sym_BQUOTE,
- ACTIONS(4059), 1,
- anon_sym_QMARK_DOT,
- ACTIONS(4519), 1,
- anon_sym_LPAREN,
- ACTIONS(4523), 1,
- anon_sym_LBRACK,
- ACTIONS(4525), 1,
- anon_sym_DOT,
- ACTIONS(4527), 1,
- anon_sym_GT_GT,
- ACTIONS(4533), 1,
- anon_sym_PERCENT,
- ACTIONS(4535), 1,
- anon_sym_STAR_STAR,
- ACTIONS(4537), 1,
- anon_sym_LT,
- ACTIONS(4553), 1,
- anon_sym_AMP,
- ACTIONS(4555), 1,
- anon_sym_as,
- ACTIONS(4562), 1,
- anon_sym_BANG,
- ACTIONS(4564), 1,
- anon_sym_AMP_AMP,
- ACTIONS(4566), 1,
- anon_sym_PIPE_PIPE,
- ACTIONS(4568), 1,
- anon_sym_CARET,
- ACTIONS(4570), 1,
- anon_sym_PIPE,
- ACTIONS(4572), 1,
- anon_sym_QMARK_QMARK,
- ACTIONS(4574), 1,
- anon_sym_satisfies,
- ACTIONS(4576), 1,
- sym__ternary_qmark,
- STATE(1812), 1,
- sym_type_arguments,
- STATE(4772), 1,
- sym_optional_chain,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(4517), 2,
- anon_sym_STAR,
- anon_sym_SLASH,
- ACTIONS(4521), 2,
- anon_sym_in,
- anon_sym_GT,
- ACTIONS(4529), 2,
- anon_sym_GT_GT_GT,
- anon_sym_LT_LT,
- ACTIONS(4531), 2,
- anon_sym_PLUS,
- anon_sym_DASH,
- ACTIONS(4541), 2,
- anon_sym_EQ_EQ,
- anon_sym_BANG_EQ,
- ACTIONS(4543), 2,
- anon_sym_EQ_EQ_EQ,
- anon_sym_BANG_EQ_EQ,
- ACTIONS(4545), 2,
- anon_sym_PLUS_PLUS,
- anon_sym_DASH_DASH,
- STATE(2133), 2,
- sym_template_string,
- sym_arguments,
- ACTIONS(4322), 3,
- sym__automatic_semicolon,
- anon_sym_COMMA,
- anon_sym_SEMI,
- ACTIONS(4539), 3,
- anon_sym_LT_EQ,
- anon_sym_GT_EQ,
- anon_sym_instanceof,
- [50905] = 34,
- ACTIONS(825), 1,
- anon_sym_BQUOTE,
- ACTIONS(3969), 1,
- anon_sym_LPAREN,
- ACTIONS(3971), 1,
- anon_sym_LBRACK,
- ACTIONS(3973), 1,
- anon_sym_DOT,
- ACTIONS(4051), 1,
- anon_sym_as,
- ACTIONS(4055), 1,
- anon_sym_BANG,
- ACTIONS(4059), 1,
- anon_sym_QMARK_DOT,
- ACTIONS(4061), 1,
- anon_sym_AMP_AMP,
- ACTIONS(4063), 1,
- anon_sym_PIPE_PIPE,
- ACTIONS(4065), 1,
- anon_sym_GT_GT,
- ACTIONS(4069), 1,
- anon_sym_AMP,
- ACTIONS(4071), 1,
- anon_sym_CARET,
- ACTIONS(4073), 1,
- anon_sym_PIPE,
- ACTIONS(4077), 1,
- anon_sym_PERCENT,
- ACTIONS(4079), 1,
- anon_sym_STAR_STAR,
- ACTIONS(4081), 1,
- anon_sym_LT,
- ACTIONS(4089), 1,
- anon_sym_QMARK_QMARK,
- ACTIONS(4093), 1,
- anon_sym_satisfies,
- ACTIONS(4095), 1,
- sym__ternary_qmark,
- ACTIONS(4267), 1,
- anon_sym_COMMA,
- ACTIONS(4979), 1,
- anon_sym_RBRACK,
- STATE(1447), 1,
- sym_type_arguments,
- STATE(3803), 1,
- aux_sym_sequence_expression_repeat1,
- STATE(5080), 1,
- sym_optional_chain,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(4049), 2,
- anon_sym_STAR,
- anon_sym_SLASH,
- ACTIONS(4057), 2,
- anon_sym_in,
- anon_sym_GT,
- ACTIONS(4067), 2,
- anon_sym_GT_GT_GT,
- anon_sym_LT_LT,
- ACTIONS(4075), 2,
- anon_sym_PLUS,
- anon_sym_DASH,
- ACTIONS(4085), 2,
- anon_sym_EQ_EQ,
- anon_sym_BANG_EQ,
- ACTIONS(4087), 2,
- anon_sym_EQ_EQ_EQ,
- anon_sym_BANG_EQ_EQ,
- ACTIONS(4091), 2,
- anon_sym_PLUS_PLUS,
- anon_sym_DASH_DASH,
- STATE(1757), 2,
- sym_template_string,
- sym_arguments,
- ACTIONS(4083), 3,
- anon_sym_LT_EQ,
- anon_sym_GT_EQ,
- anon_sym_instanceof,
- [51019] = 7,
- ACTIONS(3402), 1,
- anon_sym_EQ,
- ACTIONS(4330), 1,
- anon_sym_extends,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(4691), 2,
- anon_sym_COMMA,
- anon_sym_LBRACK,
- ACTIONS(4694), 3,
- anon_sym_GT,
- anon_sym_AMP,
- anon_sym_PIPE,
- ACTIONS(3400), 10,
- anon_sym_STAR,
- anon_sym_BANG,
- anon_sym_in,
- anon_sym_GT_GT,
- anon_sym_PLUS,
- anon_sym_DASH,
- anon_sym_SLASH,
- anon_sym_LT,
- anon_sym_EQ_EQ,
- anon_sym_BANG_EQ,
- ACTIONS(3404), 26,
- sym__ternary_qmark,
- anon_sym_as,
- anon_sym_RBRACE,
- anon_sym_LPAREN,
- anon_sym_RPAREN,
- anon_sym_COLON,
- anon_sym_RBRACK,
- anon_sym_DOT,
- anon_sym_QMARK_DOT,
- anon_sym_AMP_AMP,
- anon_sym_PIPE_PIPE,
- anon_sym_GT_GT_GT,
- anon_sym_LT_LT,
- anon_sym_CARET,
- anon_sym_PERCENT,
- anon_sym_STAR_STAR,
- anon_sym_LT_EQ,
- anon_sym_EQ_EQ_EQ,
- anon_sym_BANG_EQ_EQ,
- anon_sym_GT_EQ,
- anon_sym_QMARK_QMARK,
- anon_sym_instanceof,
- anon_sym_PLUS_PLUS,
- anon_sym_DASH_DASH,
- anon_sym_BQUOTE,
- anon_sym_satisfies,
- [51079] = 32,
- ACTIONS(825), 1,
- anon_sym_BQUOTE,
- ACTIONS(3969), 1,
- anon_sym_LPAREN,
- ACTIONS(3971), 1,
- anon_sym_LBRACK,
- ACTIONS(3973), 1,
- anon_sym_DOT,
- ACTIONS(4051), 1,
- anon_sym_as,
- ACTIONS(4055), 1,
- anon_sym_BANG,
- ACTIONS(4059), 1,
- anon_sym_QMARK_DOT,
- ACTIONS(4061), 1,
- anon_sym_AMP_AMP,
- ACTIONS(4063), 1,
- anon_sym_PIPE_PIPE,
- ACTIONS(4065), 1,
- anon_sym_GT_GT,
- ACTIONS(4069), 1,
- anon_sym_AMP,
- ACTIONS(4071), 1,
- anon_sym_CARET,
- ACTIONS(4073), 1,
- anon_sym_PIPE,
- ACTIONS(4077), 1,
- anon_sym_PERCENT,
- ACTIONS(4079), 1,
- anon_sym_STAR_STAR,
- ACTIONS(4081), 1,
- anon_sym_LT,
- ACTIONS(4089), 1,
- anon_sym_QMARK_QMARK,
- ACTIONS(4093), 1,
- anon_sym_satisfies,
- ACTIONS(4095), 1,
- sym__ternary_qmark,
- STATE(1447), 1,
- sym_type_arguments,
- STATE(5080), 1,
- sym_optional_chain,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(4049), 2,
- anon_sym_STAR,
- anon_sym_SLASH,
- ACTIONS(4057), 2,
- anon_sym_in,
- anon_sym_GT,
- ACTIONS(4067), 2,
- anon_sym_GT_GT_GT,
- anon_sym_LT_LT,
- ACTIONS(4075), 2,
- anon_sym_PLUS,
- anon_sym_DASH,
- ACTIONS(4085), 2,
- anon_sym_EQ_EQ,
- anon_sym_BANG_EQ,
- ACTIONS(4087), 2,
- anon_sym_EQ_EQ_EQ,
- anon_sym_BANG_EQ_EQ,
- ACTIONS(4091), 2,
- anon_sym_PLUS_PLUS,
- anon_sym_DASH_DASH,
- STATE(1757), 2,
- sym_template_string,
- sym_arguments,
- ACTIONS(4083), 3,
- anon_sym_LT_EQ,
- anon_sym_GT_EQ,
- anon_sym_instanceof,
- ACTIONS(4614), 3,
- anon_sym_COMMA,
- anon_sym_RBRACE,
- anon_sym_RPAREN,
- [51189] = 34,
- ACTIONS(825), 1,
- anon_sym_BQUOTE,
- ACTIONS(3969), 1,
- anon_sym_LPAREN,
- ACTIONS(3971), 1,
- anon_sym_LBRACK,
- ACTIONS(3973), 1,
- anon_sym_DOT,
- ACTIONS(4051), 1,
- anon_sym_as,
- ACTIONS(4055), 1,
- anon_sym_BANG,
- ACTIONS(4059), 1,
- anon_sym_QMARK_DOT,
- ACTIONS(4061), 1,
- anon_sym_AMP_AMP,
- ACTIONS(4063), 1,
- anon_sym_PIPE_PIPE,
- ACTIONS(4065), 1,
- anon_sym_GT_GT,
- ACTIONS(4069), 1,
- anon_sym_AMP,
- ACTIONS(4071), 1,
- anon_sym_CARET,
- ACTIONS(4073), 1,
- anon_sym_PIPE,
- ACTIONS(4077), 1,
- anon_sym_PERCENT,
- ACTIONS(4079), 1,
- anon_sym_STAR_STAR,
- ACTIONS(4081), 1,
- anon_sym_LT,
- ACTIONS(4089), 1,
- anon_sym_QMARK_QMARK,
- ACTIONS(4093), 1,
- anon_sym_satisfies,
- ACTIONS(4095), 1,
- sym__ternary_qmark,
- ACTIONS(4267), 1,
- anon_sym_COMMA,
- ACTIONS(4981), 1,
- anon_sym_RBRACE,
- STATE(1447), 1,
- sym_type_arguments,
- STATE(3803), 1,
- aux_sym_sequence_expression_repeat1,
- STATE(5080), 1,
- sym_optional_chain,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(4049), 2,
- anon_sym_STAR,
- anon_sym_SLASH,
- ACTIONS(4057), 2,
- anon_sym_in,
- anon_sym_GT,
- ACTIONS(4067), 2,
- anon_sym_GT_GT_GT,
- anon_sym_LT_LT,
- ACTIONS(4075), 2,
- anon_sym_PLUS,
- anon_sym_DASH,
- ACTIONS(4085), 2,
- anon_sym_EQ_EQ,
- anon_sym_BANG_EQ,
- ACTIONS(4087), 2,
- anon_sym_EQ_EQ_EQ,
- anon_sym_BANG_EQ_EQ,
- ACTIONS(4091), 2,
- anon_sym_PLUS_PLUS,
- anon_sym_DASH_DASH,
- STATE(1757), 2,
- sym_template_string,
- sym_arguments,
- ACTIONS(4083), 3,
- anon_sym_LT_EQ,
- anon_sym_GT_EQ,
- anon_sym_instanceof,
- [51303] = 3,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(4045), 13,
- anon_sym_STAR,
- anon_sym_BANG,
- anon_sym_in,
- anon_sym_GT,
- anon_sym_GT_GT,
- anon_sym_AMP,
- anon_sym_PIPE,
- anon_sym_PLUS,
- anon_sym_DASH,
- anon_sym_SLASH,
- anon_sym_LT,
- anon_sym_EQ_EQ,
- anon_sym_BANG_EQ,
- ACTIONS(4047), 30,
- sym__automatic_semicolon,
- sym__ternary_qmark,
- anon_sym_as,
- anon_sym_COMMA,
- anon_sym_RBRACE,
- anon_sym_LPAREN,
- anon_sym_of,
- anon_sym_SEMI,
- anon_sym_LBRACK,
- anon_sym_DOT,
- anon_sym_QMARK_DOT,
- anon_sym_AMP_AMP,
- anon_sym_PIPE_PIPE,
- anon_sym_GT_GT_GT,
- anon_sym_LT_LT,
- anon_sym_CARET,
- anon_sym_PERCENT,
- anon_sym_STAR_STAR,
- anon_sym_LT_EQ,
- anon_sym_EQ_EQ_EQ,
- anon_sym_BANG_EQ_EQ,
- anon_sym_GT_EQ,
- anon_sym_QMARK_QMARK,
- anon_sym_instanceof,
- anon_sym_PLUS_PLUS,
- anon_sym_DASH_DASH,
- anon_sym_BQUOTE,
- anon_sym_satisfies,
- anon_sym_extends,
- anon_sym_is,
- [51355] = 13,
- ACTIONS(2275), 1,
- anon_sym_DQUOTE,
- ACTIONS(2277), 1,
- anon_sym_SQUOTE,
- ACTIONS(3737), 1,
- anon_sym_COMMA,
- ACTIONS(3824), 1,
- anon_sym_RBRACE,
- ACTIONS(4243), 1,
- anon_sym_EQ,
- ACTIONS(4634), 1,
- anon_sym_LBRACK,
- STATE(4672), 1,
- aux_sym_object_pattern_repeat1,
- STATE(5156), 1,
- aux_sym_object_repeat1,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(4636), 2,
- sym_number,
- sym_private_property_identifier,
- STATE(3770), 3,
- sym_string,
- sym__property_name,
- sym_computed_property_name,
- ACTIONS(3743), 7,
- sym__automatic_semicolon,
- anon_sym_LPAREN,
- anon_sym_SEMI,
- anon_sym_COLON,
- anon_sym_LT,
- anon_sym_QMARK,
- anon_sym_PIPE_RBRACE,
- ACTIONS(2307), 23,
- anon_sym_export,
- anon_sym_type,
- anon_sym_namespace,
- anon_sym_let,
- anon_sym_async,
- anon_sym_new,
- sym_identifier,
- anon_sym_static,
- anon_sym_readonly,
- anon_sym_get,
- anon_sym_set,
- anon_sym_declare,
- anon_sym_public,
- anon_sym_private,
- anon_sym_protected,
- anon_sym_override,
- anon_sym_module,
- anon_sym_any,
- anon_sym_number,
- anon_sym_boolean,
- anon_sym_string,
- anon_sym_symbol,
- anon_sym_object,
- [51427] = 4,
- ACTIONS(4551), 1,
- anon_sym_is,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(4039), 13,
- anon_sym_STAR,
- anon_sym_BANG,
- anon_sym_in,
- anon_sym_GT,
- anon_sym_GT_GT,
- anon_sym_AMP,
- anon_sym_PIPE,
- anon_sym_PLUS,
- anon_sym_DASH,
- anon_sym_SLASH,
- anon_sym_LT,
- anon_sym_EQ_EQ,
- anon_sym_BANG_EQ,
- ACTIONS(4041), 29,
- sym__automatic_semicolon,
- sym__ternary_qmark,
- anon_sym_as,
- anon_sym_COMMA,
- anon_sym_RBRACE,
- anon_sym_LPAREN,
- anon_sym_of,
- anon_sym_SEMI,
- anon_sym_LBRACK,
- anon_sym_DOT,
- anon_sym_QMARK_DOT,
- anon_sym_AMP_AMP,
- anon_sym_PIPE_PIPE,
- anon_sym_GT_GT_GT,
- anon_sym_LT_LT,
- anon_sym_CARET,
- anon_sym_PERCENT,
- anon_sym_STAR_STAR,
- anon_sym_LT_EQ,
- anon_sym_EQ_EQ_EQ,
- anon_sym_BANG_EQ_EQ,
- anon_sym_GT_EQ,
- anon_sym_QMARK_QMARK,
- anon_sym_instanceof,
- anon_sym_PLUS_PLUS,
- anon_sym_DASH_DASH,
- anon_sym_BQUOTE,
- anon_sym_satisfies,
- anon_sym_extends,
- [51481] = 4,
- ACTIONS(4983), 1,
- anon_sym_is,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(4025), 13,
- anon_sym_STAR,
- anon_sym_BANG,
- anon_sym_in,
- anon_sym_GT,
- anon_sym_GT_GT,
- anon_sym_AMP,
- anon_sym_PIPE,
- anon_sym_PLUS,
- anon_sym_DASH,
- anon_sym_SLASH,
- anon_sym_LT,
- anon_sym_EQ_EQ,
- anon_sym_BANG_EQ,
- ACTIONS(4027), 29,
- sym__automatic_semicolon,
- sym__ternary_qmark,
- anon_sym_as,
- anon_sym_COMMA,
- anon_sym_RBRACE,
- anon_sym_LPAREN,
- anon_sym_of,
- anon_sym_SEMI,
- anon_sym_LBRACK,
- anon_sym_DOT,
- anon_sym_QMARK_DOT,
- anon_sym_AMP_AMP,
- anon_sym_PIPE_PIPE,
- anon_sym_GT_GT_GT,
- anon_sym_LT_LT,
- anon_sym_CARET,
- anon_sym_PERCENT,
- anon_sym_STAR_STAR,
- anon_sym_LT_EQ,
- anon_sym_EQ_EQ_EQ,
- anon_sym_BANG_EQ_EQ,
- anon_sym_GT_EQ,
- anon_sym_QMARK_QMARK,
- anon_sym_instanceof,
- anon_sym_PLUS_PLUS,
- anon_sym_DASH_DASH,
- anon_sym_BQUOTE,
- anon_sym_satisfies,
- anon_sym_extends,
- [51535] = 6,
- ACTIONS(89), 1,
- anon_sym_BQUOTE,
- ACTIONS(4519), 1,
- anon_sym_LPAREN,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- STATE(2222), 2,
- sym_template_string,
- sym_arguments,
- ACTIONS(4035), 13,
- anon_sym_STAR,
- anon_sym_BANG,
- anon_sym_in,
- anon_sym_GT,
- anon_sym_GT_GT,
- anon_sym_AMP,
- anon_sym_PIPE,
- anon_sym_PLUS,
- anon_sym_DASH,
- anon_sym_SLASH,
- anon_sym_LT,
- anon_sym_EQ_EQ,
- anon_sym_BANG_EQ,
- ACTIONS(4037), 26,
- sym__automatic_semicolon,
- sym__ternary_qmark,
- anon_sym_as,
- anon_sym_COMMA,
- anon_sym_RBRACE,
- anon_sym_of,
- anon_sym_SEMI,
- anon_sym_LBRACK,
- anon_sym_DOT,
- anon_sym_QMARK_DOT,
- anon_sym_AMP_AMP,
- anon_sym_PIPE_PIPE,
- anon_sym_GT_GT_GT,
- anon_sym_LT_LT,
- anon_sym_CARET,
- anon_sym_PERCENT,
- anon_sym_STAR_STAR,
- anon_sym_LT_EQ,
- anon_sym_EQ_EQ_EQ,
- anon_sym_BANG_EQ_EQ,
- anon_sym_GT_EQ,
- anon_sym_QMARK_QMARK,
- anon_sym_instanceof,
- anon_sym_PLUS_PLUS,
- anon_sym_DASH_DASH,
- anon_sym_satisfies,
- [51593] = 13,
- ACTIONS(2275), 1,
- anon_sym_DQUOTE,
- ACTIONS(2277), 1,
- anon_sym_SQUOTE,
- ACTIONS(3737), 1,
- anon_sym_COMMA,
- ACTIONS(3817), 1,
- anon_sym_RBRACE,
- ACTIONS(4243), 1,
- anon_sym_EQ,
- ACTIONS(4634), 1,
- anon_sym_LBRACK,
- STATE(4672), 1,
- aux_sym_object_pattern_repeat1,
- STATE(5156), 1,
- aux_sym_object_repeat1,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(4636), 2,
- sym_number,
- sym_private_property_identifier,
- STATE(3770), 3,
- sym_string,
- sym__property_name,
- sym_computed_property_name,
- ACTIONS(3743), 7,
- sym__automatic_semicolon,
- anon_sym_LPAREN,
- anon_sym_SEMI,
- anon_sym_COLON,
- anon_sym_LT,
- anon_sym_QMARK,
- anon_sym_PIPE_RBRACE,
- ACTIONS(2307), 23,
- anon_sym_export,
- anon_sym_type,
- anon_sym_namespace,
- anon_sym_let,
- anon_sym_async,
- anon_sym_new,
- sym_identifier,
- anon_sym_static,
- anon_sym_readonly,
- anon_sym_get,
- anon_sym_set,
- anon_sym_declare,
- anon_sym_public,
- anon_sym_private,
- anon_sym_protected,
- anon_sym_override,
- anon_sym_module,
- anon_sym_any,
- anon_sym_number,
- anon_sym_boolean,
- anon_sym_string,
- anon_sym_symbol,
- anon_sym_object,
- [51665] = 32,
- ACTIONS(89), 1,
- anon_sym_BQUOTE,
- ACTIONS(4059), 1,
- anon_sym_QMARK_DOT,
- ACTIONS(4519), 1,
- anon_sym_LPAREN,
- ACTIONS(4523), 1,
- anon_sym_LBRACK,
- ACTIONS(4525), 1,
- anon_sym_DOT,
- ACTIONS(4527), 1,
- anon_sym_GT_GT,
- ACTIONS(4533), 1,
- anon_sym_PERCENT,
- ACTIONS(4535), 1,
- anon_sym_STAR_STAR,
- ACTIONS(4537), 1,
- anon_sym_LT,
- ACTIONS(4553), 1,
- anon_sym_AMP,
- ACTIONS(4555), 1,
- anon_sym_as,
- ACTIONS(4562), 1,
- anon_sym_BANG,
- ACTIONS(4564), 1,
- anon_sym_AMP_AMP,
- ACTIONS(4566), 1,
- anon_sym_PIPE_PIPE,
- ACTIONS(4568), 1,
- anon_sym_CARET,
- ACTIONS(4570), 1,
- anon_sym_PIPE,
- ACTIONS(4572), 1,
- anon_sym_QMARK_QMARK,
- ACTIONS(4574), 1,
- anon_sym_satisfies,
- ACTIONS(4576), 1,
- sym__ternary_qmark,
- STATE(1812), 1,
- sym_type_arguments,
- STATE(4772), 1,
- sym_optional_chain,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(4517), 2,
- anon_sym_STAR,
- anon_sym_SLASH,
- ACTIONS(4521), 2,
- anon_sym_in,
- anon_sym_GT,
- ACTIONS(4529), 2,
- anon_sym_GT_GT_GT,
- anon_sym_LT_LT,
- ACTIONS(4531), 2,
- anon_sym_PLUS,
- anon_sym_DASH,
- ACTIONS(4541), 2,
- anon_sym_EQ_EQ,
- anon_sym_BANG_EQ,
- ACTIONS(4543), 2,
- anon_sym_EQ_EQ_EQ,
- anon_sym_BANG_EQ_EQ,
- ACTIONS(4545), 2,
- anon_sym_PLUS_PLUS,
- anon_sym_DASH_DASH,
- STATE(2133), 2,
- sym_template_string,
- sym_arguments,
- ACTIONS(4539), 3,
- anon_sym_LT_EQ,
- anon_sym_GT_EQ,
- anon_sym_instanceof,
- ACTIONS(4614), 3,
- sym__automatic_semicolon,
- anon_sym_COMMA,
- anon_sym_SEMI,
- [51775] = 4,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(4460), 4,
- anon_sym_COMMA,
- anon_sym_RPAREN,
- anon_sym_RBRACK,
- anon_sym_extends,
- ACTIONS(4450), 13,
- anon_sym_STAR,
- anon_sym_BANG,
- anon_sym_in,
- anon_sym_GT,
- anon_sym_GT_GT,
- anon_sym_AMP,
- anon_sym_PIPE,
- anon_sym_PLUS,
- anon_sym_DASH,
- anon_sym_SLASH,
- anon_sym_LT,
- anon_sym_EQ_EQ,
- anon_sym_BANG_EQ,
- ACTIONS(4452), 26,
- sym__ternary_qmark,
- anon_sym_as,
- anon_sym_RBRACE,
- anon_sym_LPAREN,
- anon_sym_of,
- anon_sym_COLON,
- anon_sym_LBRACK,
- anon_sym_DOT,
- anon_sym_QMARK_DOT,
- anon_sym_AMP_AMP,
- anon_sym_PIPE_PIPE,
- anon_sym_GT_GT_GT,
- anon_sym_LT_LT,
- anon_sym_CARET,
- anon_sym_PERCENT,
- anon_sym_STAR_STAR,
- anon_sym_LT_EQ,
- anon_sym_EQ_EQ_EQ,
- anon_sym_BANG_EQ_EQ,
- anon_sym_GT_EQ,
- anon_sym_QMARK_QMARK,
- anon_sym_instanceof,
- anon_sym_PLUS_PLUS,
- anon_sym_DASH_DASH,
- anon_sym_BQUOTE,
- anon_sym_satisfies,
- [51829] = 4,
- ACTIONS(4551), 1,
- anon_sym_is,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(4013), 13,
- anon_sym_STAR,
- anon_sym_BANG,
- anon_sym_in,
- anon_sym_GT,
- anon_sym_GT_GT,
- anon_sym_AMP,
- anon_sym_PIPE,
- anon_sym_PLUS,
- anon_sym_DASH,
- anon_sym_SLASH,
- anon_sym_LT,
- anon_sym_EQ_EQ,
- anon_sym_BANG_EQ,
- ACTIONS(4015), 29,
- sym__automatic_semicolon,
- sym__ternary_qmark,
- anon_sym_as,
- anon_sym_COMMA,
- anon_sym_RBRACE,
- anon_sym_LPAREN,
- anon_sym_of,
- anon_sym_SEMI,
- anon_sym_LBRACK,
- anon_sym_DOT,
- anon_sym_QMARK_DOT,
- anon_sym_AMP_AMP,
- anon_sym_PIPE_PIPE,
- anon_sym_GT_GT_GT,
- anon_sym_LT_LT,
- anon_sym_CARET,
- anon_sym_PERCENT,
- anon_sym_STAR_STAR,
- anon_sym_LT_EQ,
- anon_sym_EQ_EQ_EQ,
- anon_sym_BANG_EQ_EQ,
- anon_sym_GT_EQ,
- anon_sym_QMARK_QMARK,
- anon_sym_instanceof,
- anon_sym_PLUS_PLUS,
- anon_sym_DASH_DASH,
- anon_sym_BQUOTE,
- anon_sym_satisfies,
- anon_sym_extends,
- [51883] = 4,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(4456), 4,
- anon_sym_COMMA,
- anon_sym_RPAREN,
- anon_sym_RBRACK,
- anon_sym_extends,
- ACTIONS(4450), 13,
- anon_sym_STAR,
- anon_sym_BANG,
- anon_sym_in,
- anon_sym_GT,
- anon_sym_GT_GT,
- anon_sym_AMP,
- anon_sym_PIPE,
- anon_sym_PLUS,
- anon_sym_DASH,
- anon_sym_SLASH,
- anon_sym_LT,
- anon_sym_EQ_EQ,
- anon_sym_BANG_EQ,
- ACTIONS(4452), 26,
- sym__ternary_qmark,
- anon_sym_as,
- anon_sym_RBRACE,
- anon_sym_LPAREN,
- anon_sym_of,
- anon_sym_COLON,
- anon_sym_LBRACK,
- anon_sym_DOT,
- anon_sym_QMARK_DOT,
- anon_sym_AMP_AMP,
- anon_sym_PIPE_PIPE,
- anon_sym_GT_GT_GT,
- anon_sym_LT_LT,
- anon_sym_CARET,
- anon_sym_PERCENT,
- anon_sym_STAR_STAR,
- anon_sym_LT_EQ,
- anon_sym_EQ_EQ_EQ,
- anon_sym_BANG_EQ_EQ,
- anon_sym_GT_EQ,
- anon_sym_QMARK_QMARK,
- anon_sym_instanceof,
- anon_sym_PLUS_PLUS,
- anon_sym_DASH_DASH,
- anon_sym_BQUOTE,
- anon_sym_satisfies,
- [51937] = 5,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(4440), 2,
- anon_sym_EQ,
- anon_sym_QMARK,
- ACTIONS(4985), 5,
- anon_sym_COMMA,
- anon_sym_RBRACE,
- anon_sym_RPAREN,
- anon_sym_COLON,
- anon_sym_RBRACK,
- ACTIONS(4438), 13,
- anon_sym_STAR,
- anon_sym_BANG,
- anon_sym_in,
- anon_sym_GT,
- anon_sym_GT_GT,
- anon_sym_AMP,
- anon_sym_PIPE,
- anon_sym_PLUS,
- anon_sym_DASH,
- anon_sym_SLASH,
- anon_sym_LT,
- anon_sym_EQ_EQ,
- anon_sym_BANG_EQ,
- ACTIONS(4442), 23,
- sym__ternary_qmark,
- anon_sym_as,
- anon_sym_LPAREN,
- anon_sym_LBRACK,
- anon_sym_DOT,
- anon_sym_QMARK_DOT,
- anon_sym_AMP_AMP,
- anon_sym_PIPE_PIPE,
- anon_sym_GT_GT_GT,
- anon_sym_LT_LT,
- anon_sym_CARET,
- anon_sym_PERCENT,
- anon_sym_STAR_STAR,
- anon_sym_LT_EQ,
- anon_sym_EQ_EQ_EQ,
- anon_sym_BANG_EQ_EQ,
- anon_sym_GT_EQ,
- anon_sym_QMARK_QMARK,
- anon_sym_instanceof,
- anon_sym_PLUS_PLUS,
- anon_sym_DASH_DASH,
- anon_sym_BQUOTE,
- anon_sym_satisfies,
- [51993] = 5,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(4678), 2,
- anon_sym_EQ,
- anon_sym_QMARK,
- ACTIONS(4987), 5,
- anon_sym_COMMA,
- anon_sym_RBRACE,
- anon_sym_RPAREN,
- anon_sym_COLON,
- anon_sym_RBRACK,
- ACTIONS(4676), 13,
- anon_sym_STAR,
- anon_sym_BANG,
- anon_sym_in,
- anon_sym_GT,
- anon_sym_GT_GT,
- anon_sym_AMP,
- anon_sym_PIPE,
- anon_sym_PLUS,
- anon_sym_DASH,
- anon_sym_SLASH,
- anon_sym_LT,
- anon_sym_EQ_EQ,
- anon_sym_BANG_EQ,
- ACTIONS(4680), 23,
- sym__ternary_qmark,
- anon_sym_as,
- anon_sym_LPAREN,
- anon_sym_LBRACK,
- anon_sym_DOT,
- anon_sym_QMARK_DOT,
- anon_sym_AMP_AMP,
- anon_sym_PIPE_PIPE,
- anon_sym_GT_GT_GT,
- anon_sym_LT_LT,
- anon_sym_CARET,
- anon_sym_PERCENT,
- anon_sym_STAR_STAR,
- anon_sym_LT_EQ,
- anon_sym_EQ_EQ_EQ,
- anon_sym_BANG_EQ_EQ,
- anon_sym_GT_EQ,
- anon_sym_QMARK_QMARK,
- anon_sym_instanceof,
- anon_sym_PLUS_PLUS,
- anon_sym_DASH_DASH,
- anon_sym_BQUOTE,
- anon_sym_satisfies,
- [52049] = 5,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(1726), 2,
- anon_sym_EQ,
- anon_sym_QMARK,
- ACTIONS(4989), 5,
- anon_sym_COMMA,
- anon_sym_RBRACE,
- anon_sym_RPAREN,
- anon_sym_COLON,
- anon_sym_RBRACK,
- ACTIONS(1724), 13,
- anon_sym_STAR,
- anon_sym_BANG,
- anon_sym_in,
- anon_sym_GT,
- anon_sym_GT_GT,
- anon_sym_AMP,
- anon_sym_PIPE,
- anon_sym_PLUS,
- anon_sym_DASH,
- anon_sym_SLASH,
- anon_sym_LT,
- anon_sym_EQ_EQ,
- anon_sym_BANG_EQ,
- ACTIONS(1728), 23,
- sym__ternary_qmark,
- anon_sym_as,
- anon_sym_LPAREN,
- anon_sym_LBRACK,
- anon_sym_DOT,
- anon_sym_QMARK_DOT,
- anon_sym_AMP_AMP,
- anon_sym_PIPE_PIPE,
- anon_sym_GT_GT_GT,
- anon_sym_LT_LT,
- anon_sym_CARET,
- anon_sym_PERCENT,
- anon_sym_STAR_STAR,
- anon_sym_LT_EQ,
- anon_sym_EQ_EQ_EQ,
- anon_sym_BANG_EQ_EQ,
- anon_sym_GT_EQ,
- anon_sym_QMARK_QMARK,
- anon_sym_instanceof,
- anon_sym_PLUS_PLUS,
- anon_sym_DASH_DASH,
- anon_sym_BQUOTE,
- anon_sym_satisfies,
- [52105] = 32,
- ACTIONS(825), 1,
- anon_sym_BQUOTE,
- ACTIONS(3969), 1,
- anon_sym_LPAREN,
- ACTIONS(3971), 1,
- anon_sym_LBRACK,
- ACTIONS(3973), 1,
- anon_sym_DOT,
- ACTIONS(4051), 1,
- anon_sym_as,
- ACTIONS(4055), 1,
- anon_sym_BANG,
- ACTIONS(4059), 1,
- anon_sym_QMARK_DOT,
- ACTIONS(4061), 1,
- anon_sym_AMP_AMP,
- ACTIONS(4063), 1,
- anon_sym_PIPE_PIPE,
- ACTIONS(4065), 1,
- anon_sym_GT_GT,
- ACTIONS(4069), 1,
- anon_sym_AMP,
- ACTIONS(4071), 1,
- anon_sym_CARET,
- ACTIONS(4073), 1,
- anon_sym_PIPE,
- ACTIONS(4077), 1,
- anon_sym_PERCENT,
- ACTIONS(4079), 1,
- anon_sym_STAR_STAR,
- ACTIONS(4081), 1,
- anon_sym_LT,
- ACTIONS(4089), 1,
- anon_sym_QMARK_QMARK,
- ACTIONS(4093), 1,
- anon_sym_satisfies,
- ACTIONS(4095), 1,
- sym__ternary_qmark,
- STATE(1447), 1,
- sym_type_arguments,
- STATE(5080), 1,
- sym_optional_chain,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(4049), 2,
- anon_sym_STAR,
- anon_sym_SLASH,
- ACTIONS(4057), 2,
- anon_sym_in,
- anon_sym_GT,
- ACTIONS(4067), 2,
- anon_sym_GT_GT_GT,
- anon_sym_LT_LT,
- ACTIONS(4075), 2,
- anon_sym_PLUS,
- anon_sym_DASH,
- ACTIONS(4085), 2,
- anon_sym_EQ_EQ,
- anon_sym_BANG_EQ,
- ACTIONS(4087), 2,
- anon_sym_EQ_EQ_EQ,
- anon_sym_BANG_EQ_EQ,
- ACTIONS(4091), 2,
- anon_sym_PLUS_PLUS,
- anon_sym_DASH_DASH,
- STATE(1757), 2,
- sym_template_string,
- sym_arguments,
- ACTIONS(4083), 3,
- anon_sym_LT_EQ,
- anon_sym_GT_EQ,
- anon_sym_instanceof,
- ACTIONS(4991), 3,
- anon_sym_COMMA,
- anon_sym_RBRACE,
- anon_sym_RBRACK,
- [52215] = 7,
- ACTIONS(3454), 1,
- anon_sym_EQ,
- ACTIONS(4691), 1,
- anon_sym_LBRACK,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(4694), 2,
- anon_sym_AMP,
- anon_sym_PIPE,
- ACTIONS(4330), 6,
- sym__automatic_semicolon,
- anon_sym_COMMA,
- anon_sym_RBRACE,
- anon_sym_SEMI,
- anon_sym_extends,
- anon_sym_PIPE_RBRACE,
- ACTIONS(3400), 11,
- anon_sym_STAR,
- anon_sym_BANG,
- anon_sym_in,
- anon_sym_GT,
- anon_sym_GT_GT,
- anon_sym_PLUS,
- anon_sym_DASH,
- anon_sym_SLASH,
- anon_sym_LT,
- anon_sym_EQ_EQ,
- anon_sym_BANG_EQ,
- ACTIONS(3404), 22,
- sym__ternary_qmark,
- anon_sym_as,
- anon_sym_LPAREN,
- anon_sym_DOT,
- anon_sym_QMARK_DOT,
- anon_sym_AMP_AMP,
- anon_sym_PIPE_PIPE,
- anon_sym_GT_GT_GT,
- anon_sym_LT_LT,
- anon_sym_CARET,
- anon_sym_PERCENT,
- anon_sym_STAR_STAR,
- anon_sym_LT_EQ,
- anon_sym_EQ_EQ_EQ,
- anon_sym_BANG_EQ_EQ,
- anon_sym_GT_EQ,
- anon_sym_QMARK_QMARK,
- anon_sym_instanceof,
- anon_sym_PLUS_PLUS,
- anon_sym_DASH_DASH,
- anon_sym_BQUOTE,
- anon_sym_satisfies,
- [52275] = 7,
- ACTIONS(4440), 1,
- anon_sym_EQ,
- ACTIONS(4444), 1,
- anon_sym_LBRACK,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(4392), 2,
- anon_sym_COMMA,
- anon_sym_extends,
- ACTIONS(4447), 3,
- anon_sym_GT,
- anon_sym_AMP,
- anon_sym_PIPE,
- ACTIONS(4438), 10,
- anon_sym_STAR,
- anon_sym_BANG,
- anon_sym_in,
- anon_sym_GT_GT,
- anon_sym_PLUS,
- anon_sym_DASH,
- anon_sym_SLASH,
- anon_sym_LT,
- anon_sym_EQ_EQ,
- anon_sym_BANG_EQ,
- ACTIONS(4442), 26,
- sym__ternary_qmark,
- anon_sym_as,
- anon_sym_RBRACE,
- anon_sym_LPAREN,
- anon_sym_of,
- anon_sym_COLON,
- anon_sym_RBRACK,
- anon_sym_DOT,
- anon_sym_QMARK_DOT,
- anon_sym_AMP_AMP,
- anon_sym_PIPE_PIPE,
- anon_sym_GT_GT_GT,
- anon_sym_LT_LT,
- anon_sym_CARET,
- anon_sym_PERCENT,
- anon_sym_STAR_STAR,
- anon_sym_LT_EQ,
- anon_sym_EQ_EQ_EQ,
- anon_sym_BANG_EQ_EQ,
- anon_sym_GT_EQ,
- anon_sym_QMARK_QMARK,
- anon_sym_instanceof,
- anon_sym_PLUS_PLUS,
- anon_sym_DASH_DASH,
- anon_sym_BQUOTE,
- anon_sym_satisfies,
- [52335] = 14,
- ACTIONS(1594), 1,
- anon_sym_DQUOTE,
- ACTIONS(1596), 1,
- anon_sym_SQUOTE,
- ACTIONS(3633), 1,
- anon_sym_override,
- ACTIONS(4245), 1,
- anon_sym_LBRACK,
- ACTIONS(4995), 1,
- anon_sym_static,
- ACTIONS(4997), 1,
- anon_sym_readonly,
- ACTIONS(4999), 1,
- anon_sym_abstract,
- ACTIONS(5001), 1,
- anon_sym_accessor,
- STATE(2728), 1,
- sym_override_modifier,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(4993), 2,
- sym_number,
- sym_private_property_identifier,
- STATE(3277), 3,
- sym_string,
- sym__property_name,
- sym_computed_property_name,
- ACTIONS(3743), 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(3607), 20,
- anon_sym_export,
- anon_sym_type,
- anon_sym_namespace,
- anon_sym_let,
- anon_sym_async,
- anon_sym_new,
- sym_identifier,
- anon_sym_get,
- anon_sym_set,
- anon_sym_declare,
- anon_sym_public,
- anon_sym_private,
- anon_sym_protected,
- anon_sym_module,
- anon_sym_any,
- anon_sym_number,
- anon_sym_boolean,
- anon_sym_string,
- anon_sym_symbol,
- anon_sym_object,
- [52409] = 33,
- ACTIONS(89), 1,
- anon_sym_BQUOTE,
- ACTIONS(4059), 1,
- anon_sym_QMARK_DOT,
- ACTIONS(4257), 1,
- anon_sym_COMMA,
- ACTIONS(4519), 1,
- anon_sym_LPAREN,
- ACTIONS(4523), 1,
- anon_sym_LBRACK,
- ACTIONS(4525), 1,
- anon_sym_DOT,
- ACTIONS(4527), 1,
- anon_sym_GT_GT,
- ACTIONS(4533), 1,
- anon_sym_PERCENT,
- ACTIONS(4535), 1,
- anon_sym_STAR_STAR,
- ACTIONS(4537), 1,
- anon_sym_LT,
- ACTIONS(4553), 1,
- anon_sym_AMP,
- ACTIONS(4555), 1,
- anon_sym_as,
- ACTIONS(4562), 1,
- anon_sym_BANG,
- ACTIONS(4564), 1,
- anon_sym_AMP_AMP,
- ACTIONS(4566), 1,
- anon_sym_PIPE_PIPE,
- ACTIONS(4568), 1,
- anon_sym_CARET,
- ACTIONS(4570), 1,
- anon_sym_PIPE,
- ACTIONS(4572), 1,
- anon_sym_QMARK_QMARK,
- ACTIONS(4574), 1,
- anon_sym_satisfies,
- ACTIONS(4576), 1,
- sym__ternary_qmark,
- STATE(1812), 1,
- sym_type_arguments,
- STATE(4772), 1,
- sym_optional_chain,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(4517), 2,
- anon_sym_STAR,
- anon_sym_SLASH,
- ACTIONS(4521), 2,
- anon_sym_in,
- anon_sym_GT,
- ACTIONS(4529), 2,
- anon_sym_GT_GT_GT,
- anon_sym_LT_LT,
- ACTIONS(4531), 2,
- anon_sym_PLUS,
- anon_sym_DASH,
- ACTIONS(4541), 2,
- anon_sym_EQ_EQ,
- anon_sym_BANG_EQ,
- ACTIONS(4543), 2,
- anon_sym_EQ_EQ_EQ,
- anon_sym_BANG_EQ_EQ,
- ACTIONS(4545), 2,
- anon_sym_PLUS_PLUS,
- anon_sym_DASH_DASH,
- ACTIONS(4674), 2,
- sym__automatic_semicolon,
- anon_sym_SEMI,
- STATE(2133), 2,
- sym_template_string,
- sym_arguments,
- ACTIONS(4539), 3,
- anon_sym_LT_EQ,
- anon_sym_GT_EQ,
- anon_sym_instanceof,
- [52521] = 8,
- ACTIONS(1726), 1,
- anon_sym_EQ,
- ACTIONS(4414), 1,
- anon_sym_LBRACK,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(4417), 2,
- anon_sym_AMP,
- anon_sym_PIPE,
- ACTIONS(5003), 2,
- anon_sym_COMMA,
- anon_sym_RBRACE,
- ACTIONS(2331), 4,
- sym__automatic_semicolon,
- anon_sym_SEMI,
- anon_sym_extends,
- anon_sym_PIPE_RBRACE,
- ACTIONS(1724), 11,
- anon_sym_STAR,
- anon_sym_BANG,
- anon_sym_in,
- anon_sym_GT,
- anon_sym_GT_GT,
- anon_sym_PLUS,
- anon_sym_DASH,
- anon_sym_SLASH,
- anon_sym_LT,
- anon_sym_EQ_EQ,
- anon_sym_BANG_EQ,
- ACTIONS(1728), 22,
- sym__ternary_qmark,
- anon_sym_as,
- anon_sym_LPAREN,
- anon_sym_DOT,
- anon_sym_QMARK_DOT,
- anon_sym_AMP_AMP,
- anon_sym_PIPE_PIPE,
- anon_sym_GT_GT_GT,
- anon_sym_LT_LT,
- anon_sym_CARET,
- anon_sym_PERCENT,
- anon_sym_STAR_STAR,
- anon_sym_LT_EQ,
- anon_sym_EQ_EQ_EQ,
- anon_sym_BANG_EQ_EQ,
- anon_sym_GT_EQ,
- anon_sym_QMARK_QMARK,
- anon_sym_instanceof,
- anon_sym_PLUS_PLUS,
- anon_sym_DASH_DASH,
- anon_sym_BQUOTE,
- anon_sym_satisfies,
- [52583] = 8,
- ACTIONS(4440), 1,
- anon_sym_EQ,
- ACTIONS(4444), 1,
- anon_sym_LBRACK,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(4447), 2,
- anon_sym_AMP,
- anon_sym_PIPE,
- ACTIONS(5007), 2,
- anon_sym_COMMA,
- anon_sym_RBRACE,
- ACTIONS(4392), 4,
- sym__automatic_semicolon,
- anon_sym_SEMI,
- anon_sym_extends,
- anon_sym_PIPE_RBRACE,
- ACTIONS(4438), 11,
- anon_sym_STAR,
- anon_sym_BANG,
- anon_sym_in,
- anon_sym_GT,
- anon_sym_GT_GT,
- anon_sym_PLUS,
- anon_sym_DASH,
- anon_sym_SLASH,
- anon_sym_LT,
- anon_sym_EQ_EQ,
- anon_sym_BANG_EQ,
- ACTIONS(4442), 22,
- sym__ternary_qmark,
- anon_sym_as,
- anon_sym_LPAREN,
- anon_sym_DOT,
- anon_sym_QMARK_DOT,
- anon_sym_AMP_AMP,
- anon_sym_PIPE_PIPE,
- anon_sym_GT_GT_GT,
- anon_sym_LT_LT,
- anon_sym_CARET,
- anon_sym_PERCENT,
- anon_sym_STAR_STAR,
- anon_sym_LT_EQ,
- anon_sym_EQ_EQ_EQ,
- anon_sym_BANG_EQ_EQ,
- anon_sym_GT_EQ,
- anon_sym_QMARK_QMARK,
- anon_sym_instanceof,
- anon_sym_PLUS_PLUS,
- anon_sym_DASH_DASH,
- anon_sym_BQUOTE,
- anon_sym_satisfies,
- [52645] = 32,
- ACTIONS(825), 1,
- anon_sym_BQUOTE,
- ACTIONS(3969), 1,
- anon_sym_LPAREN,
- ACTIONS(3971), 1,
- anon_sym_LBRACK,
- ACTIONS(3973), 1,
- anon_sym_DOT,
- ACTIONS(4051), 1,
- anon_sym_as,
- ACTIONS(4055), 1,
- anon_sym_BANG,
- ACTIONS(4059), 1,
- anon_sym_QMARK_DOT,
- ACTIONS(4061), 1,
- anon_sym_AMP_AMP,
- ACTIONS(4063), 1,
- anon_sym_PIPE_PIPE,
- ACTIONS(4065), 1,
- anon_sym_GT_GT,
- ACTIONS(4069), 1,
- anon_sym_AMP,
- ACTIONS(4071), 1,
- anon_sym_CARET,
- ACTIONS(4073), 1,
- anon_sym_PIPE,
- ACTIONS(4077), 1,
- anon_sym_PERCENT,
- ACTIONS(4079), 1,
- anon_sym_STAR_STAR,
- ACTIONS(4081), 1,
- anon_sym_LT,
- ACTIONS(4089), 1,
- anon_sym_QMARK_QMARK,
- ACTIONS(4093), 1,
- anon_sym_satisfies,
- ACTIONS(4095), 1,
- sym__ternary_qmark,
- STATE(1447), 1,
- sym_type_arguments,
- STATE(5080), 1,
- sym_optional_chain,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(4049), 2,
- anon_sym_STAR,
- anon_sym_SLASH,
- ACTIONS(4057), 2,
- anon_sym_in,
- anon_sym_GT,
- ACTIONS(4067), 2,
- anon_sym_GT_GT_GT,
- anon_sym_LT_LT,
- ACTIONS(4075), 2,
- anon_sym_PLUS,
- anon_sym_DASH,
- ACTIONS(4085), 2,
- anon_sym_EQ_EQ,
- anon_sym_BANG_EQ,
- ACTIONS(4087), 2,
- anon_sym_EQ_EQ_EQ,
- anon_sym_BANG_EQ_EQ,
- ACTIONS(4091), 2,
- anon_sym_PLUS_PLUS,
- anon_sym_DASH_DASH,
- STATE(1757), 2,
- sym_template_string,
- sym_arguments,
- ACTIONS(4083), 3,
- anon_sym_LT_EQ,
- anon_sym_GT_EQ,
- anon_sym_instanceof,
- ACTIONS(5011), 3,
- anon_sym_COMMA,
- anon_sym_RPAREN,
- anon_sym_RBRACK,
- [52755] = 34,
- ACTIONS(825), 1,
- anon_sym_BQUOTE,
- ACTIONS(1931), 1,
- anon_sym_COMMA,
- ACTIONS(3969), 1,
- anon_sym_LPAREN,
- ACTIONS(3971), 1,
- anon_sym_LBRACK,
- ACTIONS(3973), 1,
- anon_sym_DOT,
- ACTIONS(4051), 1,
- anon_sym_as,
- ACTIONS(4055), 1,
- anon_sym_BANG,
- ACTIONS(4059), 1,
- anon_sym_QMARK_DOT,
- ACTIONS(4061), 1,
- anon_sym_AMP_AMP,
- ACTIONS(4063), 1,
- anon_sym_PIPE_PIPE,
- ACTIONS(4065), 1,
- anon_sym_GT_GT,
- ACTIONS(4069), 1,
- anon_sym_AMP,
- ACTIONS(4071), 1,
- anon_sym_CARET,
- ACTIONS(4073), 1,
- anon_sym_PIPE,
- ACTIONS(4077), 1,
- anon_sym_PERCENT,
- ACTIONS(4079), 1,
- anon_sym_STAR_STAR,
- ACTIONS(4081), 1,
- anon_sym_LT,
- ACTIONS(4089), 1,
- anon_sym_QMARK_QMARK,
- ACTIONS(4093), 1,
- anon_sym_satisfies,
- ACTIONS(4095), 1,
- sym__ternary_qmark,
- ACTIONS(5013), 1,
- anon_sym_RBRACK,
- STATE(1447), 1,
- sym_type_arguments,
- STATE(4593), 1,
- aux_sym_array_repeat1,
- STATE(5080), 1,
- sym_optional_chain,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(4049), 2,
- anon_sym_STAR,
- anon_sym_SLASH,
- ACTIONS(4057), 2,
- anon_sym_in,
- anon_sym_GT,
- ACTIONS(4067), 2,
- anon_sym_GT_GT_GT,
- anon_sym_LT_LT,
- ACTIONS(4075), 2,
- anon_sym_PLUS,
- anon_sym_DASH,
- ACTIONS(4085), 2,
- anon_sym_EQ_EQ,
- anon_sym_BANG_EQ,
- ACTIONS(4087), 2,
- anon_sym_EQ_EQ_EQ,
- anon_sym_BANG_EQ_EQ,
- ACTIONS(4091), 2,
- anon_sym_PLUS_PLUS,
- anon_sym_DASH_DASH,
- STATE(1757), 2,
- sym_template_string,
- sym_arguments,
- ACTIONS(4083), 3,
- anon_sym_LT_EQ,
- anon_sym_GT_EQ,
- anon_sym_instanceof,
- [52869] = 3,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(3123), 13,
- anon_sym_STAR,
- anon_sym_BANG,
- anon_sym_in,
- anon_sym_GT,
- anon_sym_GT_GT,
- anon_sym_AMP,
- anon_sym_PIPE,
- anon_sym_PLUS,
- anon_sym_DASH,
- anon_sym_SLASH,
- anon_sym_LT,
- anon_sym_EQ_EQ,
- anon_sym_BANG_EQ,
- ACTIONS(3125), 30,
- sym__automatic_semicolon,
- sym__ternary_qmark,
- anon_sym_as,
- anon_sym_COMMA,
- anon_sym_RBRACE,
- anon_sym_LPAREN,
- anon_sym_of,
- anon_sym_SEMI,
- anon_sym_LBRACK,
- anon_sym_DOT,
- anon_sym_QMARK_DOT,
- anon_sym_AMP_AMP,
- anon_sym_PIPE_PIPE,
- anon_sym_GT_GT_GT,
- anon_sym_LT_LT,
- anon_sym_CARET,
- anon_sym_PERCENT,
- anon_sym_STAR_STAR,
- anon_sym_LT_EQ,
- anon_sym_EQ_EQ_EQ,
- anon_sym_BANG_EQ_EQ,
- anon_sym_GT_EQ,
- anon_sym_QMARK_QMARK,
- anon_sym_instanceof,
- anon_sym_PLUS_PLUS,
- anon_sym_DASH_DASH,
- anon_sym_BQUOTE,
- anon_sym_satisfies,
- anon_sym_extends,
- anon_sym_PIPE_RBRACE,
- [52921] = 7,
- ACTIONS(1726), 1,
- anon_sym_EQ,
- ACTIONS(2331), 1,
- anon_sym_extends,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(4414), 2,
- anon_sym_COMMA,
- anon_sym_LBRACK,
- ACTIONS(4417), 3,
- anon_sym_GT,
- anon_sym_AMP,
- anon_sym_PIPE,
- ACTIONS(1724), 10,
- anon_sym_STAR,
- anon_sym_BANG,
- anon_sym_in,
- anon_sym_GT_GT,
- anon_sym_PLUS,
- anon_sym_DASH,
- anon_sym_SLASH,
- anon_sym_LT,
- anon_sym_EQ_EQ,
- anon_sym_BANG_EQ,
- ACTIONS(1728), 26,
- sym__automatic_semicolon,
- sym__ternary_qmark,
- anon_sym_as,
- anon_sym_RBRACE,
- anon_sym_LPAREN,
- anon_sym_of,
- anon_sym_SEMI,
- anon_sym_DOT,
- anon_sym_QMARK_DOT,
- anon_sym_AMP_AMP,
- anon_sym_PIPE_PIPE,
- anon_sym_GT_GT_GT,
- anon_sym_LT_LT,
- anon_sym_CARET,
- anon_sym_PERCENT,
- anon_sym_STAR_STAR,
- anon_sym_LT_EQ,
- anon_sym_EQ_EQ_EQ,
- anon_sym_BANG_EQ_EQ,
- anon_sym_GT_EQ,
- anon_sym_QMARK_QMARK,
- anon_sym_instanceof,
- anon_sym_PLUS_PLUS,
- anon_sym_DASH_DASH,
- anon_sym_BQUOTE,
- anon_sym_satisfies,
- [52981] = 34,
- ACTIONS(825), 1,
- anon_sym_BQUOTE,
- ACTIONS(1931), 1,
- anon_sym_COMMA,
- ACTIONS(3969), 1,
- anon_sym_LPAREN,
- ACTIONS(3971), 1,
- anon_sym_LBRACK,
- ACTIONS(3973), 1,
- anon_sym_DOT,
- ACTIONS(4051), 1,
- anon_sym_as,
- ACTIONS(4055), 1,
- anon_sym_BANG,
- ACTIONS(4059), 1,
- anon_sym_QMARK_DOT,
- ACTIONS(4061), 1,
- anon_sym_AMP_AMP,
- ACTIONS(4063), 1,
- anon_sym_PIPE_PIPE,
- ACTIONS(4065), 1,
- anon_sym_GT_GT,
- ACTIONS(4069), 1,
- anon_sym_AMP,
- ACTIONS(4071), 1,
- anon_sym_CARET,
- ACTIONS(4073), 1,
- anon_sym_PIPE,
- ACTIONS(4077), 1,
- anon_sym_PERCENT,
- ACTIONS(4079), 1,
- anon_sym_STAR_STAR,
- ACTIONS(4081), 1,
- anon_sym_LT,
- ACTIONS(4089), 1,
- anon_sym_QMARK_QMARK,
- ACTIONS(4093), 1,
- anon_sym_satisfies,
- ACTIONS(4095), 1,
- sym__ternary_qmark,
- ACTIONS(5015), 1,
- anon_sym_RPAREN,
- STATE(1447), 1,
- sym_type_arguments,
- STATE(4821), 1,
- aux_sym_array_repeat1,
- STATE(5080), 1,
- sym_optional_chain,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(4049), 2,
- anon_sym_STAR,
- anon_sym_SLASH,
- ACTIONS(4057), 2,
- anon_sym_in,
- anon_sym_GT,
- ACTIONS(4067), 2,
- anon_sym_GT_GT_GT,
- anon_sym_LT_LT,
- ACTIONS(4075), 2,
- anon_sym_PLUS,
- anon_sym_DASH,
- ACTIONS(4085), 2,
- anon_sym_EQ_EQ,
- anon_sym_BANG_EQ,
- ACTIONS(4087), 2,
- anon_sym_EQ_EQ_EQ,
- anon_sym_BANG_EQ_EQ,
- ACTIONS(4091), 2,
- anon_sym_PLUS_PLUS,
- anon_sym_DASH_DASH,
- STATE(1757), 2,
- sym_template_string,
- sym_arguments,
- ACTIONS(4083), 3,
- anon_sym_LT_EQ,
- anon_sym_GT_EQ,
- anon_sym_instanceof,
- [53095] = 34,
- ACTIONS(825), 1,
- anon_sym_BQUOTE,
- ACTIONS(3969), 1,
- anon_sym_LPAREN,
- ACTIONS(3971), 1,
- anon_sym_LBRACK,
- ACTIONS(3973), 1,
- anon_sym_DOT,
- ACTIONS(4051), 1,
- anon_sym_as,
- ACTIONS(4055), 1,
- anon_sym_BANG,
- ACTIONS(4059), 1,
- anon_sym_QMARK_DOT,
- ACTIONS(4061), 1,
- anon_sym_AMP_AMP,
- ACTIONS(4063), 1,
- anon_sym_PIPE_PIPE,
- ACTIONS(4065), 1,
- anon_sym_GT_GT,
- ACTIONS(4069), 1,
- anon_sym_AMP,
- ACTIONS(4071), 1,
- anon_sym_CARET,
- ACTIONS(4073), 1,
- anon_sym_PIPE,
- ACTIONS(4077), 1,
- anon_sym_PERCENT,
- ACTIONS(4079), 1,
- anon_sym_STAR_STAR,
- ACTIONS(4081), 1,
- anon_sym_LT,
- ACTIONS(4089), 1,
- anon_sym_QMARK_QMARK,
- ACTIONS(4093), 1,
- anon_sym_satisfies,
- ACTIONS(4095), 1,
- sym__ternary_qmark,
- ACTIONS(4267), 1,
- anon_sym_COMMA,
- ACTIONS(5017), 1,
- anon_sym_RBRACK,
- STATE(1447), 1,
- sym_type_arguments,
- STATE(3803), 1,
- aux_sym_sequence_expression_repeat1,
- STATE(5080), 1,
- sym_optional_chain,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(4049), 2,
- anon_sym_STAR,
- anon_sym_SLASH,
- ACTIONS(4057), 2,
- anon_sym_in,
- anon_sym_GT,
- ACTIONS(4067), 2,
- anon_sym_GT_GT_GT,
- anon_sym_LT_LT,
- ACTIONS(4075), 2,
- anon_sym_PLUS,
- anon_sym_DASH,
- ACTIONS(4085), 2,
- anon_sym_EQ_EQ,
- anon_sym_BANG_EQ,
- ACTIONS(4087), 2,
- anon_sym_EQ_EQ_EQ,
- anon_sym_BANG_EQ_EQ,
- ACTIONS(4091), 2,
- anon_sym_PLUS_PLUS,
- anon_sym_DASH_DASH,
- STATE(1757), 2,
- sym_template_string,
- sym_arguments,
- ACTIONS(4083), 3,
- anon_sym_LT_EQ,
- anon_sym_GT_EQ,
- anon_sym_instanceof,
- [53209] = 34,
- ACTIONS(825), 1,
- anon_sym_BQUOTE,
- ACTIONS(3969), 1,
- anon_sym_LPAREN,
- ACTIONS(3971), 1,
- anon_sym_LBRACK,
- ACTIONS(3973), 1,
- anon_sym_DOT,
- ACTIONS(4051), 1,
- anon_sym_as,
- ACTIONS(4055), 1,
- anon_sym_BANG,
- ACTIONS(4059), 1,
- anon_sym_QMARK_DOT,
- ACTIONS(4061), 1,
- anon_sym_AMP_AMP,
- ACTIONS(4063), 1,
- anon_sym_PIPE_PIPE,
- ACTIONS(4065), 1,
- anon_sym_GT_GT,
- ACTIONS(4069), 1,
- anon_sym_AMP,
- ACTIONS(4071), 1,
- anon_sym_CARET,
- ACTIONS(4073), 1,
- anon_sym_PIPE,
- ACTIONS(4077), 1,
- anon_sym_PERCENT,
- ACTIONS(4079), 1,
- anon_sym_STAR_STAR,
- ACTIONS(4081), 1,
- anon_sym_LT,
- ACTIONS(4089), 1,
- anon_sym_QMARK_QMARK,
- ACTIONS(4093), 1,
- anon_sym_satisfies,
- ACTIONS(4095), 1,
- sym__ternary_qmark,
- ACTIONS(4267), 1,
- anon_sym_COMMA,
- ACTIONS(5019), 1,
- anon_sym_RBRACE,
- STATE(1447), 1,
- sym_type_arguments,
- STATE(3803), 1,
- aux_sym_sequence_expression_repeat1,
- STATE(5080), 1,
- sym_optional_chain,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(4049), 2,
- anon_sym_STAR,
- anon_sym_SLASH,
- ACTIONS(4057), 2,
- anon_sym_in,
- anon_sym_GT,
- ACTIONS(4067), 2,
- anon_sym_GT_GT_GT,
- anon_sym_LT_LT,
- ACTIONS(4075), 2,
- anon_sym_PLUS,
- anon_sym_DASH,
- ACTIONS(4085), 2,
- anon_sym_EQ_EQ,
- anon_sym_BANG_EQ,
- ACTIONS(4087), 2,
- anon_sym_EQ_EQ_EQ,
- anon_sym_BANG_EQ_EQ,
- ACTIONS(4091), 2,
- anon_sym_PLUS_PLUS,
- anon_sym_DASH_DASH,
- STATE(1757), 2,
- sym_template_string,
- sym_arguments,
- ACTIONS(4083), 3,
- anon_sym_LT_EQ,
- anon_sym_GT_EQ,
- anon_sym_instanceof,
- [53323] = 13,
- ACTIONS(2275), 1,
- anon_sym_DQUOTE,
- ACTIONS(2277), 1,
- anon_sym_SQUOTE,
- ACTIONS(3737), 1,
- anon_sym_COMMA,
- ACTIONS(3838), 1,
- anon_sym_RBRACE,
- ACTIONS(4243), 1,
- anon_sym_EQ,
- ACTIONS(4634), 1,
- anon_sym_LBRACK,
- STATE(4671), 1,
- aux_sym_object_repeat1,
- STATE(4672), 1,
- aux_sym_object_pattern_repeat1,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(4636), 2,
- sym_number,
- sym_private_property_identifier,
- STATE(3770), 3,
- sym_string,
- sym__property_name,
- sym_computed_property_name,
- ACTIONS(3743), 7,
- sym__automatic_semicolon,
- anon_sym_LPAREN,
- anon_sym_SEMI,
- anon_sym_COLON,
- anon_sym_LT,
- anon_sym_QMARK,
- anon_sym_PIPE_RBRACE,
- ACTIONS(2307), 23,
- anon_sym_export,
- anon_sym_type,
- anon_sym_namespace,
- anon_sym_let,
- anon_sym_async,
- anon_sym_new,
- sym_identifier,
- anon_sym_static,
- anon_sym_readonly,
- anon_sym_get,
- anon_sym_set,
- anon_sym_declare,
- anon_sym_public,
- anon_sym_private,
- anon_sym_protected,
- anon_sym_override,
- anon_sym_module,
- anon_sym_any,
- anon_sym_number,
- anon_sym_boolean,
- anon_sym_string,
- anon_sym_symbol,
- anon_sym_object,
- [53395] = 34,
- ACTIONS(825), 1,
- anon_sym_BQUOTE,
- ACTIONS(1931), 1,
- anon_sym_COMMA,
- ACTIONS(3969), 1,
- anon_sym_LPAREN,
- ACTIONS(3971), 1,
- anon_sym_LBRACK,
- ACTIONS(3973), 1,
- anon_sym_DOT,
- ACTIONS(4051), 1,
- anon_sym_as,
- ACTIONS(4055), 1,
- anon_sym_BANG,
- ACTIONS(4059), 1,
- anon_sym_QMARK_DOT,
- ACTIONS(4061), 1,
- anon_sym_AMP_AMP,
- ACTIONS(4063), 1,
- anon_sym_PIPE_PIPE,
- ACTIONS(4065), 1,
- anon_sym_GT_GT,
- ACTIONS(4069), 1,
- anon_sym_AMP,
- ACTIONS(4071), 1,
- anon_sym_CARET,
- ACTIONS(4073), 1,
- anon_sym_PIPE,
- ACTIONS(4077), 1,
- anon_sym_PERCENT,
- ACTIONS(4079), 1,
- anon_sym_STAR_STAR,
- ACTIONS(4081), 1,
- anon_sym_LT,
- ACTIONS(4089), 1,
- anon_sym_QMARK_QMARK,
- ACTIONS(4093), 1,
- anon_sym_satisfies,
- ACTIONS(4095), 1,
- sym__ternary_qmark,
- ACTIONS(5021), 1,
- anon_sym_RBRACK,
- STATE(1447), 1,
- sym_type_arguments,
- STATE(5080), 1,
- sym_optional_chain,
- STATE(5170), 1,
- aux_sym_array_repeat1,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(4049), 2,
- anon_sym_STAR,
- anon_sym_SLASH,
- ACTIONS(4057), 2,
- anon_sym_in,
- anon_sym_GT,
- ACTIONS(4067), 2,
- anon_sym_GT_GT_GT,
- anon_sym_LT_LT,
- ACTIONS(4075), 2,
- anon_sym_PLUS,
- anon_sym_DASH,
- ACTIONS(4085), 2,
- anon_sym_EQ_EQ,
- anon_sym_BANG_EQ,
- ACTIONS(4087), 2,
- anon_sym_EQ_EQ_EQ,
- anon_sym_BANG_EQ_EQ,
- ACTIONS(4091), 2,
- anon_sym_PLUS_PLUS,
- anon_sym_DASH_DASH,
- STATE(1757), 2,
- sym_template_string,
- sym_arguments,
- ACTIONS(4083), 3,
- anon_sym_LT_EQ,
- anon_sym_GT_EQ,
- anon_sym_instanceof,
- [53509] = 34,
- ACTIONS(825), 1,
- anon_sym_BQUOTE,
- ACTIONS(3969), 1,
- anon_sym_LPAREN,
- ACTIONS(3971), 1,
- anon_sym_LBRACK,
- ACTIONS(3973), 1,
- anon_sym_DOT,
- ACTIONS(4051), 1,
- anon_sym_as,
- ACTIONS(4055), 1,
- anon_sym_BANG,
- ACTIONS(4059), 1,
- anon_sym_QMARK_DOT,
- ACTIONS(4061), 1,
- anon_sym_AMP_AMP,
- ACTIONS(4063), 1,
- anon_sym_PIPE_PIPE,
- ACTIONS(4065), 1,
- anon_sym_GT_GT,
- ACTIONS(4069), 1,
- anon_sym_AMP,
- ACTIONS(4071), 1,
- anon_sym_CARET,
- ACTIONS(4073), 1,
- anon_sym_PIPE,
- ACTIONS(4077), 1,
- anon_sym_PERCENT,
- ACTIONS(4079), 1,
- anon_sym_STAR_STAR,
- ACTIONS(4081), 1,
- anon_sym_LT,
- ACTIONS(4089), 1,
- anon_sym_QMARK_QMARK,
- ACTIONS(4093), 1,
- anon_sym_satisfies,
- ACTIONS(4095), 1,
- sym__ternary_qmark,
- ACTIONS(4267), 1,
- anon_sym_COMMA,
- ACTIONS(5023), 1,
- anon_sym_RBRACK,
- STATE(1447), 1,
- sym_type_arguments,
- STATE(3803), 1,
- aux_sym_sequence_expression_repeat1,
- STATE(5080), 1,
- sym_optional_chain,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(4049), 2,
- anon_sym_STAR,
- anon_sym_SLASH,
- ACTIONS(4057), 2,
- anon_sym_in,
- anon_sym_GT,
- ACTIONS(4067), 2,
- anon_sym_GT_GT_GT,
- anon_sym_LT_LT,
- ACTIONS(4075), 2,
- anon_sym_PLUS,
- anon_sym_DASH,
- ACTIONS(4085), 2,
- anon_sym_EQ_EQ,
- anon_sym_BANG_EQ,
- ACTIONS(4087), 2,
- anon_sym_EQ_EQ_EQ,
- anon_sym_BANG_EQ_EQ,
- ACTIONS(4091), 2,
- anon_sym_PLUS_PLUS,
- anon_sym_DASH_DASH,
- STATE(1757), 2,
- sym_template_string,
- sym_arguments,
- ACTIONS(4083), 3,
- anon_sym_LT_EQ,
- anon_sym_GT_EQ,
- anon_sym_instanceof,
- [53623] = 7,
- ACTIONS(4392), 1,
- anon_sym_extends,
- ACTIONS(4440), 1,
- anon_sym_EQ,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(4444), 2,
- anon_sym_COMMA,
- anon_sym_LBRACK,
- ACTIONS(4447), 3,
- anon_sym_GT,
- anon_sym_AMP,
- anon_sym_PIPE,
- ACTIONS(4438), 10,
- anon_sym_STAR,
- anon_sym_BANG,
- anon_sym_in,
- anon_sym_GT_GT,
- anon_sym_PLUS,
- anon_sym_DASH,
- anon_sym_SLASH,
- anon_sym_LT,
- anon_sym_EQ_EQ,
- anon_sym_BANG_EQ,
- ACTIONS(4442), 26,
- sym__automatic_semicolon,
- sym__ternary_qmark,
- anon_sym_as,
- anon_sym_RBRACE,
- anon_sym_LPAREN,
- anon_sym_of,
- anon_sym_SEMI,
- anon_sym_DOT,
- anon_sym_QMARK_DOT,
- anon_sym_AMP_AMP,
- anon_sym_PIPE_PIPE,
- anon_sym_GT_GT_GT,
- anon_sym_LT_LT,
- anon_sym_CARET,
- anon_sym_PERCENT,
- anon_sym_STAR_STAR,
- anon_sym_LT_EQ,
- anon_sym_EQ_EQ_EQ,
- anon_sym_BANG_EQ_EQ,
- anon_sym_GT_EQ,
- anon_sym_QMARK_QMARK,
- anon_sym_instanceof,
- anon_sym_PLUS_PLUS,
- anon_sym_DASH_DASH,
- anon_sym_BQUOTE,
- anon_sym_satisfies,
- [53683] = 34,
- ACTIONS(825), 1,
- anon_sym_BQUOTE,
- ACTIONS(3969), 1,
- anon_sym_LPAREN,
- ACTIONS(3971), 1,
- anon_sym_LBRACK,
- ACTIONS(3973), 1,
- anon_sym_DOT,
- ACTIONS(4051), 1,
- anon_sym_as,
- ACTIONS(4055), 1,
- anon_sym_BANG,
- ACTIONS(4059), 1,
- anon_sym_QMARK_DOT,
- ACTIONS(4061), 1,
- anon_sym_AMP_AMP,
- ACTIONS(4063), 1,
- anon_sym_PIPE_PIPE,
- ACTIONS(4065), 1,
- anon_sym_GT_GT,
- ACTIONS(4069), 1,
- anon_sym_AMP,
- ACTIONS(4071), 1,
- anon_sym_CARET,
- ACTIONS(4073), 1,
- anon_sym_PIPE,
- ACTIONS(4077), 1,
- anon_sym_PERCENT,
- ACTIONS(4079), 1,
- anon_sym_STAR_STAR,
- ACTIONS(4081), 1,
- anon_sym_LT,
- ACTIONS(4089), 1,
- anon_sym_QMARK_QMARK,
- ACTIONS(4093), 1,
- anon_sym_satisfies,
- ACTIONS(4095), 1,
- sym__ternary_qmark,
- ACTIONS(4267), 1,
- anon_sym_COMMA,
- ACTIONS(5025), 1,
- anon_sym_RBRACK,
- STATE(1447), 1,
- sym_type_arguments,
- STATE(3803), 1,
- aux_sym_sequence_expression_repeat1,
- STATE(5080), 1,
- sym_optional_chain,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(4049), 2,
- anon_sym_STAR,
- anon_sym_SLASH,
- ACTIONS(4057), 2,
- anon_sym_in,
- anon_sym_GT,
- ACTIONS(4067), 2,
- anon_sym_GT_GT_GT,
- anon_sym_LT_LT,
- ACTIONS(4075), 2,
- anon_sym_PLUS,
- anon_sym_DASH,
- ACTIONS(4085), 2,
- anon_sym_EQ_EQ,
- anon_sym_BANG_EQ,
- ACTIONS(4087), 2,
- anon_sym_EQ_EQ_EQ,
- anon_sym_BANG_EQ_EQ,
- ACTIONS(4091), 2,
- anon_sym_PLUS_PLUS,
- anon_sym_DASH_DASH,
- STATE(1757), 2,
- sym_template_string,
- sym_arguments,
- ACTIONS(4083), 3,
- anon_sym_LT_EQ,
- anon_sym_GT_EQ,
- anon_sym_instanceof,
- [53797] = 13,
- ACTIONS(2275), 1,
- anon_sym_DQUOTE,
- ACTIONS(2277), 1,
- anon_sym_SQUOTE,
- ACTIONS(3737), 1,
- anon_sym_COMMA,
- ACTIONS(3740), 1,
- anon_sym_RBRACE,
- ACTIONS(4243), 1,
- anon_sym_EQ,
- ACTIONS(4634), 1,
- anon_sym_LBRACK,
- STATE(4672), 1,
- aux_sym_object_pattern_repeat1,
- STATE(5156), 1,
- aux_sym_object_repeat1,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(4636), 2,
- sym_number,
- sym_private_property_identifier,
- STATE(3770), 3,
- sym_string,
- sym__property_name,
- sym_computed_property_name,
- ACTIONS(3743), 7,
- sym__automatic_semicolon,
- anon_sym_LPAREN,
- anon_sym_SEMI,
- anon_sym_COLON,
- anon_sym_LT,
- anon_sym_QMARK,
- anon_sym_PIPE_RBRACE,
- ACTIONS(2307), 23,
- anon_sym_export,
- anon_sym_type,
- anon_sym_namespace,
- anon_sym_let,
- anon_sym_async,
- anon_sym_new,
- sym_identifier,
- anon_sym_static,
- anon_sym_readonly,
- anon_sym_get,
- anon_sym_set,
- anon_sym_declare,
- anon_sym_public,
- anon_sym_private,
- anon_sym_protected,
- anon_sym_override,
- anon_sym_module,
- anon_sym_any,
- anon_sym_number,
- anon_sym_boolean,
- anon_sym_string,
- anon_sym_symbol,
- anon_sym_object,
- [53869] = 6,
- ACTIONS(3454), 1,
- anon_sym_EQ,
- ACTIONS(3499), 1,
- anon_sym_QMARK,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(3496), 5,
- anon_sym_COMMA,
- anon_sym_RBRACE,
- anon_sym_RPAREN,
- anon_sym_COLON,
- anon_sym_RBRACK,
- ACTIONS(3400), 13,
- anon_sym_STAR,
- anon_sym_BANG,
- anon_sym_in,
- anon_sym_GT,
- anon_sym_GT_GT,
- anon_sym_AMP,
- anon_sym_PIPE,
- anon_sym_PLUS,
- anon_sym_DASH,
- anon_sym_SLASH,
- anon_sym_LT,
- anon_sym_EQ_EQ,
- anon_sym_BANG_EQ,
- ACTIONS(3404), 23,
- sym__ternary_qmark,
- anon_sym_as,
- anon_sym_LPAREN,
- anon_sym_LBRACK,
- anon_sym_DOT,
- anon_sym_QMARK_DOT,
- anon_sym_AMP_AMP,
- anon_sym_PIPE_PIPE,
- anon_sym_GT_GT_GT,
- anon_sym_LT_LT,
- anon_sym_CARET,
- anon_sym_PERCENT,
- anon_sym_STAR_STAR,
- anon_sym_LT_EQ,
- anon_sym_EQ_EQ_EQ,
- anon_sym_BANG_EQ_EQ,
- anon_sym_GT_EQ,
- anon_sym_QMARK_QMARK,
- anon_sym_instanceof,
- anon_sym_PLUS_PLUS,
- anon_sym_DASH_DASH,
- anon_sym_BQUOTE,
- anon_sym_satisfies,
- [53927] = 34,
- ACTIONS(825), 1,
- anon_sym_BQUOTE,
- ACTIONS(1931), 1,
- anon_sym_COMMA,
- ACTIONS(3969), 1,
- anon_sym_LPAREN,
- ACTIONS(3971), 1,
- anon_sym_LBRACK,
- ACTIONS(3973), 1,
- anon_sym_DOT,
- ACTIONS(4051), 1,
- anon_sym_as,
- ACTIONS(4055), 1,
- anon_sym_BANG,
- ACTIONS(4059), 1,
- anon_sym_QMARK_DOT,
- ACTIONS(4061), 1,
- anon_sym_AMP_AMP,
- ACTIONS(4063), 1,
- anon_sym_PIPE_PIPE,
- ACTIONS(4065), 1,
- anon_sym_GT_GT,
- ACTIONS(4069), 1,
- anon_sym_AMP,
- ACTIONS(4071), 1,
- anon_sym_CARET,
- ACTIONS(4073), 1,
- anon_sym_PIPE,
- ACTIONS(4077), 1,
- anon_sym_PERCENT,
- ACTIONS(4079), 1,
- anon_sym_STAR_STAR,
- ACTIONS(4081), 1,
- anon_sym_LT,
- ACTIONS(4089), 1,
- anon_sym_QMARK_QMARK,
- ACTIONS(4093), 1,
- anon_sym_satisfies,
- ACTIONS(4095), 1,
- sym__ternary_qmark,
- ACTIONS(5027), 1,
- anon_sym_RPAREN,
- STATE(1447), 1,
- sym_type_arguments,
- STATE(4569), 1,
- aux_sym_array_repeat1,
- STATE(5080), 1,
- sym_optional_chain,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(4049), 2,
- anon_sym_STAR,
- anon_sym_SLASH,
- ACTIONS(4057), 2,
- anon_sym_in,
- anon_sym_GT,
- ACTIONS(4067), 2,
- anon_sym_GT_GT_GT,
- anon_sym_LT_LT,
- ACTIONS(4075), 2,
- anon_sym_PLUS,
- anon_sym_DASH,
- ACTIONS(4085), 2,
- anon_sym_EQ_EQ,
- anon_sym_BANG_EQ,
- ACTIONS(4087), 2,
- anon_sym_EQ_EQ_EQ,
- anon_sym_BANG_EQ_EQ,
- ACTIONS(4091), 2,
- anon_sym_PLUS_PLUS,
- anon_sym_DASH_DASH,
- STATE(1757), 2,
- sym_template_string,
- sym_arguments,
- ACTIONS(4083), 3,
- anon_sym_LT_EQ,
- anon_sym_GT_EQ,
- anon_sym_instanceof,
- [54041] = 13,
- ACTIONS(2275), 1,
- anon_sym_DQUOTE,
- ACTIONS(2277), 1,
- anon_sym_SQUOTE,
- ACTIONS(3737), 1,
- anon_sym_COMMA,
- ACTIONS(3829), 1,
- anon_sym_RBRACE,
- ACTIONS(4243), 1,
- anon_sym_EQ,
- ACTIONS(4634), 1,
- anon_sym_LBRACK,
- STATE(4672), 1,
- aux_sym_object_pattern_repeat1,
- STATE(5156), 1,
- aux_sym_object_repeat1,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(4636), 2,
- sym_number,
- sym_private_property_identifier,
- STATE(3770), 3,
- sym_string,
- sym__property_name,
- sym_computed_property_name,
- ACTIONS(3743), 7,
- sym__automatic_semicolon,
- anon_sym_LPAREN,
- anon_sym_SEMI,
- anon_sym_COLON,
- anon_sym_LT,
- anon_sym_QMARK,
- anon_sym_PIPE_RBRACE,
- ACTIONS(2307), 23,
- anon_sym_export,
- anon_sym_type,
- anon_sym_namespace,
- anon_sym_let,
- anon_sym_async,
- anon_sym_new,
- sym_identifier,
- anon_sym_static,
- anon_sym_readonly,
- anon_sym_get,
- anon_sym_set,
- anon_sym_declare,
- anon_sym_public,
- anon_sym_private,
- anon_sym_protected,
- anon_sym_override,
- anon_sym_module,
- anon_sym_any,
- anon_sym_number,
- anon_sym_boolean,
- anon_sym_string,
- anon_sym_symbol,
- anon_sym_object,
- [54113] = 34,
- ACTIONS(825), 1,
- anon_sym_BQUOTE,
- ACTIONS(1931), 1,
- anon_sym_COMMA,
- ACTIONS(3969), 1,
- anon_sym_LPAREN,
- ACTIONS(3971), 1,
- anon_sym_LBRACK,
- ACTIONS(3973), 1,
- anon_sym_DOT,
- ACTIONS(4051), 1,
- anon_sym_as,
- ACTIONS(4055), 1,
- anon_sym_BANG,
- ACTIONS(4059), 1,
- anon_sym_QMARK_DOT,
- ACTIONS(4061), 1,
- anon_sym_AMP_AMP,
- ACTIONS(4063), 1,
- anon_sym_PIPE_PIPE,
- ACTIONS(4065), 1,
- anon_sym_GT_GT,
- ACTIONS(4069), 1,
- anon_sym_AMP,
- ACTIONS(4071), 1,
- anon_sym_CARET,
- ACTIONS(4073), 1,
- anon_sym_PIPE,
- ACTIONS(4077), 1,
- anon_sym_PERCENT,
- ACTIONS(4079), 1,
- anon_sym_STAR_STAR,
- ACTIONS(4081), 1,
- anon_sym_LT,
- ACTIONS(4089), 1,
- anon_sym_QMARK_QMARK,
- ACTIONS(4093), 1,
- anon_sym_satisfies,
- ACTIONS(4095), 1,
- sym__ternary_qmark,
- ACTIONS(5029), 1,
- anon_sym_RPAREN,
- STATE(1447), 1,
- sym_type_arguments,
- STATE(4623), 1,
- aux_sym_array_repeat1,
- STATE(5080), 1,
- sym_optional_chain,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(4049), 2,
- anon_sym_STAR,
- anon_sym_SLASH,
- ACTIONS(4057), 2,
- anon_sym_in,
- anon_sym_GT,
- ACTIONS(4067), 2,
- anon_sym_GT_GT_GT,
- anon_sym_LT_LT,
- ACTIONS(4075), 2,
- anon_sym_PLUS,
- anon_sym_DASH,
- ACTIONS(4085), 2,
- anon_sym_EQ_EQ,
- anon_sym_BANG_EQ,
- ACTIONS(4087), 2,
- anon_sym_EQ_EQ_EQ,
- anon_sym_BANG_EQ_EQ,
- ACTIONS(4091), 2,
- anon_sym_PLUS_PLUS,
- anon_sym_DASH_DASH,
- STATE(1757), 2,
- sym_template_string,
- sym_arguments,
- ACTIONS(4083), 3,
- anon_sym_LT_EQ,
- anon_sym_GT_EQ,
- anon_sym_instanceof,
- [54227] = 34,
- ACTIONS(825), 1,
- anon_sym_BQUOTE,
- ACTIONS(3969), 1,
- anon_sym_LPAREN,
- ACTIONS(3971), 1,
- anon_sym_LBRACK,
- ACTIONS(3973), 1,
- anon_sym_DOT,
- ACTIONS(4051), 1,
- anon_sym_as,
- ACTIONS(4055), 1,
- anon_sym_BANG,
- ACTIONS(4059), 1,
- anon_sym_QMARK_DOT,
- ACTIONS(4061), 1,
- anon_sym_AMP_AMP,
- ACTIONS(4063), 1,
- anon_sym_PIPE_PIPE,
- ACTIONS(4065), 1,
- anon_sym_GT_GT,
- ACTIONS(4069), 1,
- anon_sym_AMP,
- ACTIONS(4071), 1,
- anon_sym_CARET,
- ACTIONS(4073), 1,
- anon_sym_PIPE,
- ACTIONS(4077), 1,
- anon_sym_PERCENT,
- ACTIONS(4079), 1,
- anon_sym_STAR_STAR,
- ACTIONS(4081), 1,
- anon_sym_LT,
- ACTIONS(4089), 1,
- anon_sym_QMARK_QMARK,
- ACTIONS(4093), 1,
- anon_sym_satisfies,
- ACTIONS(4095), 1,
- sym__ternary_qmark,
- ACTIONS(4267), 1,
- anon_sym_COMMA,
- ACTIONS(5031), 1,
- anon_sym_COLON,
- STATE(1447), 1,
- sym_type_arguments,
- STATE(3803), 1,
- aux_sym_sequence_expression_repeat1,
- STATE(5080), 1,
- sym_optional_chain,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(4049), 2,
- anon_sym_STAR,
- anon_sym_SLASH,
- ACTIONS(4057), 2,
- anon_sym_in,
- anon_sym_GT,
- ACTIONS(4067), 2,
- anon_sym_GT_GT_GT,
- anon_sym_LT_LT,
- ACTIONS(4075), 2,
- anon_sym_PLUS,
- anon_sym_DASH,
- ACTIONS(4085), 2,
- anon_sym_EQ_EQ,
- anon_sym_BANG_EQ,
- ACTIONS(4087), 2,
- anon_sym_EQ_EQ_EQ,
- anon_sym_BANG_EQ_EQ,
- ACTIONS(4091), 2,
- anon_sym_PLUS_PLUS,
- anon_sym_DASH_DASH,
- STATE(1757), 2,
- sym_template_string,
- sym_arguments,
- ACTIONS(4083), 3,
- anon_sym_LT_EQ,
- anon_sym_GT_EQ,
- anon_sym_instanceof,
- [54341] = 34,
- ACTIONS(825), 1,
- anon_sym_BQUOTE,
- ACTIONS(3969), 1,
- anon_sym_LPAREN,
- ACTIONS(3971), 1,
- anon_sym_LBRACK,
- ACTIONS(3973), 1,
- anon_sym_DOT,
- ACTIONS(4051), 1,
- anon_sym_as,
- ACTIONS(4055), 1,
- anon_sym_BANG,
- ACTIONS(4059), 1,
- anon_sym_QMARK_DOT,
- ACTIONS(4061), 1,
- anon_sym_AMP_AMP,
- ACTIONS(4063), 1,
- anon_sym_PIPE_PIPE,
- ACTIONS(4065), 1,
- anon_sym_GT_GT,
- ACTIONS(4069), 1,
- anon_sym_AMP,
- ACTIONS(4071), 1,
- anon_sym_CARET,
- ACTIONS(4073), 1,
- anon_sym_PIPE,
- ACTIONS(4077), 1,
- anon_sym_PERCENT,
- ACTIONS(4079), 1,
- anon_sym_STAR_STAR,
- ACTIONS(4081), 1,
- anon_sym_LT,
- ACTIONS(4089), 1,
- anon_sym_QMARK_QMARK,
- ACTIONS(4093), 1,
- anon_sym_satisfies,
- ACTIONS(4095), 1,
- sym__ternary_qmark,
- ACTIONS(4267), 1,
- anon_sym_COMMA,
- ACTIONS(5033), 1,
- anon_sym_RPAREN,
- STATE(1447), 1,
- sym_type_arguments,
- STATE(3803), 1,
- aux_sym_sequence_expression_repeat1,
- STATE(5080), 1,
- sym_optional_chain,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(4049), 2,
- anon_sym_STAR,
- anon_sym_SLASH,
- ACTIONS(4057), 2,
- anon_sym_in,
- anon_sym_GT,
- ACTIONS(4067), 2,
- anon_sym_GT_GT_GT,
- anon_sym_LT_LT,
- ACTIONS(4075), 2,
- anon_sym_PLUS,
- anon_sym_DASH,
- ACTIONS(4085), 2,
- anon_sym_EQ_EQ,
- anon_sym_BANG_EQ,
- ACTIONS(4087), 2,
- anon_sym_EQ_EQ_EQ,
- anon_sym_BANG_EQ_EQ,
- ACTIONS(4091), 2,
- anon_sym_PLUS_PLUS,
- anon_sym_DASH_DASH,
- STATE(1757), 2,
- sym_template_string,
- sym_arguments,
- ACTIONS(4083), 3,
- anon_sym_LT_EQ,
- anon_sym_GT_EQ,
- anon_sym_instanceof,
- [54455] = 34,
- ACTIONS(825), 1,
- anon_sym_BQUOTE,
- ACTIONS(1931), 1,
- anon_sym_COMMA,
- ACTIONS(3969), 1,
- anon_sym_LPAREN,
- ACTIONS(3971), 1,
- anon_sym_LBRACK,
- ACTIONS(3973), 1,
- anon_sym_DOT,
- ACTIONS(4051), 1,
- anon_sym_as,
- ACTIONS(4055), 1,
- anon_sym_BANG,
- ACTIONS(4059), 1,
- anon_sym_QMARK_DOT,
- ACTIONS(4061), 1,
- anon_sym_AMP_AMP,
- ACTIONS(4063), 1,
- anon_sym_PIPE_PIPE,
- ACTIONS(4065), 1,
- anon_sym_GT_GT,
- ACTIONS(4069), 1,
- anon_sym_AMP,
- ACTIONS(4071), 1,
- anon_sym_CARET,
- ACTIONS(4073), 1,
- anon_sym_PIPE,
- ACTIONS(4077), 1,
- anon_sym_PERCENT,
- ACTIONS(4079), 1,
- anon_sym_STAR_STAR,
- ACTIONS(4081), 1,
- anon_sym_LT,
- ACTIONS(4089), 1,
- anon_sym_QMARK_QMARK,
- ACTIONS(4093), 1,
- anon_sym_satisfies,
- ACTIONS(4095), 1,
- sym__ternary_qmark,
- ACTIONS(5035), 1,
- anon_sym_RPAREN,
- STATE(1447), 1,
- sym_type_arguments,
- STATE(4653), 1,
- aux_sym_array_repeat1,
- STATE(5080), 1,
- sym_optional_chain,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(4049), 2,
- anon_sym_STAR,
- anon_sym_SLASH,
- ACTIONS(4057), 2,
- anon_sym_in,
- anon_sym_GT,
- ACTIONS(4067), 2,
- anon_sym_GT_GT_GT,
- anon_sym_LT_LT,
- ACTIONS(4075), 2,
- anon_sym_PLUS,
- anon_sym_DASH,
- ACTIONS(4085), 2,
- anon_sym_EQ_EQ,
- anon_sym_BANG_EQ,
- ACTIONS(4087), 2,
- anon_sym_EQ_EQ_EQ,
- anon_sym_BANG_EQ_EQ,
- ACTIONS(4091), 2,
- anon_sym_PLUS_PLUS,
- anon_sym_DASH_DASH,
- STATE(1757), 2,
- sym_template_string,
- sym_arguments,
- ACTIONS(4083), 3,
- anon_sym_LT_EQ,
- anon_sym_GT_EQ,
- anon_sym_instanceof,
- [54569] = 34,
- ACTIONS(825), 1,
- anon_sym_BQUOTE,
- ACTIONS(3969), 1,
- anon_sym_LPAREN,
- ACTIONS(3971), 1,
- anon_sym_LBRACK,
- ACTIONS(3973), 1,
- anon_sym_DOT,
- ACTIONS(4051), 1,
- anon_sym_as,
- ACTIONS(4055), 1,
- anon_sym_BANG,
- ACTIONS(4059), 1,
- anon_sym_QMARK_DOT,
- ACTIONS(4061), 1,
- anon_sym_AMP_AMP,
- ACTIONS(4063), 1,
- anon_sym_PIPE_PIPE,
- ACTIONS(4065), 1,
- anon_sym_GT_GT,
- ACTIONS(4069), 1,
- anon_sym_AMP,
- ACTIONS(4071), 1,
- anon_sym_CARET,
- ACTIONS(4073), 1,
- anon_sym_PIPE,
- ACTIONS(4077), 1,
- anon_sym_PERCENT,
- ACTIONS(4079), 1,
- anon_sym_STAR_STAR,
- ACTIONS(4081), 1,
- anon_sym_LT,
- ACTIONS(4089), 1,
- anon_sym_QMARK_QMARK,
- ACTIONS(4093), 1,
- anon_sym_satisfies,
- ACTIONS(4095), 1,
- sym__ternary_qmark,
- ACTIONS(4267), 1,
- anon_sym_COMMA,
- ACTIONS(5037), 1,
- anon_sym_RPAREN,
- STATE(1447), 1,
- sym_type_arguments,
- STATE(3803), 1,
- aux_sym_sequence_expression_repeat1,
- STATE(5080), 1,
- sym_optional_chain,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(4049), 2,
- anon_sym_STAR,
- anon_sym_SLASH,
- ACTIONS(4057), 2,
- anon_sym_in,
- anon_sym_GT,
- ACTIONS(4067), 2,
- anon_sym_GT_GT_GT,
- anon_sym_LT_LT,
- ACTIONS(4075), 2,
- anon_sym_PLUS,
- anon_sym_DASH,
- ACTIONS(4085), 2,
- anon_sym_EQ_EQ,
- anon_sym_BANG_EQ,
- ACTIONS(4087), 2,
- anon_sym_EQ_EQ_EQ,
- anon_sym_BANG_EQ_EQ,
- ACTIONS(4091), 2,
- anon_sym_PLUS_PLUS,
- anon_sym_DASH_DASH,
- STATE(1757), 2,
- sym_template_string,
- sym_arguments,
- ACTIONS(4083), 3,
- anon_sym_LT_EQ,
- anon_sym_GT_EQ,
- anon_sym_instanceof,
- [54683] = 34,
- ACTIONS(825), 1,
- anon_sym_BQUOTE,
- ACTIONS(3969), 1,
- anon_sym_LPAREN,
- ACTIONS(3971), 1,
- anon_sym_LBRACK,
- ACTIONS(3973), 1,
- anon_sym_DOT,
- ACTIONS(4051), 1,
- anon_sym_as,
- ACTIONS(4055), 1,
- anon_sym_BANG,
- ACTIONS(4059), 1,
- anon_sym_QMARK_DOT,
- ACTIONS(4061), 1,
- anon_sym_AMP_AMP,
- ACTIONS(4063), 1,
- anon_sym_PIPE_PIPE,
- ACTIONS(4065), 1,
- anon_sym_GT_GT,
- ACTIONS(4069), 1,
- anon_sym_AMP,
- ACTIONS(4071), 1,
- anon_sym_CARET,
- ACTIONS(4073), 1,
- anon_sym_PIPE,
- ACTIONS(4077), 1,
- anon_sym_PERCENT,
- ACTIONS(4079), 1,
- anon_sym_STAR_STAR,
- ACTIONS(4081), 1,
- anon_sym_LT,
- ACTIONS(4089), 1,
- anon_sym_QMARK_QMARK,
- ACTIONS(4093), 1,
- anon_sym_satisfies,
- ACTIONS(4095), 1,
- sym__ternary_qmark,
- ACTIONS(4267), 1,
- anon_sym_COMMA,
- ACTIONS(5039), 1,
- anon_sym_RPAREN,
- STATE(1447), 1,
- sym_type_arguments,
- STATE(3803), 1,
- aux_sym_sequence_expression_repeat1,
- STATE(5080), 1,
- sym_optional_chain,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(4049), 2,
- anon_sym_STAR,
- anon_sym_SLASH,
- ACTIONS(4057), 2,
- anon_sym_in,
- anon_sym_GT,
- ACTIONS(4067), 2,
- anon_sym_GT_GT_GT,
- anon_sym_LT_LT,
- ACTIONS(4075), 2,
- anon_sym_PLUS,
- anon_sym_DASH,
- ACTIONS(4085), 2,
- anon_sym_EQ_EQ,
- anon_sym_BANG_EQ,
- ACTIONS(4087), 2,
- anon_sym_EQ_EQ_EQ,
- anon_sym_BANG_EQ_EQ,
- ACTIONS(4091), 2,
- anon_sym_PLUS_PLUS,
- anon_sym_DASH_DASH,
- STATE(1757), 2,
- sym_template_string,
- sym_arguments,
- ACTIONS(4083), 3,
- anon_sym_LT_EQ,
- anon_sym_GT_EQ,
- anon_sym_instanceof,
- [54797] = 34,
- ACTIONS(825), 1,
- anon_sym_BQUOTE,
- ACTIONS(1931), 1,
- anon_sym_COMMA,
- ACTIONS(3969), 1,
- anon_sym_LPAREN,
- ACTIONS(3971), 1,
- anon_sym_LBRACK,
- ACTIONS(3973), 1,
- anon_sym_DOT,
- ACTIONS(4051), 1,
- anon_sym_as,
- ACTIONS(4055), 1,
- anon_sym_BANG,
- ACTIONS(4059), 1,
- anon_sym_QMARK_DOT,
- ACTIONS(4061), 1,
- anon_sym_AMP_AMP,
- ACTIONS(4063), 1,
- anon_sym_PIPE_PIPE,
- ACTIONS(4065), 1,
- anon_sym_GT_GT,
- ACTIONS(4069), 1,
- anon_sym_AMP,
- ACTIONS(4071), 1,
- anon_sym_CARET,
- ACTIONS(4073), 1,
- anon_sym_PIPE,
- ACTIONS(4077), 1,
- anon_sym_PERCENT,
- ACTIONS(4079), 1,
- anon_sym_STAR_STAR,
- ACTIONS(4081), 1,
- anon_sym_LT,
- ACTIONS(4089), 1,
- anon_sym_QMARK_QMARK,
- ACTIONS(4093), 1,
- anon_sym_satisfies,
- ACTIONS(4095), 1,
- sym__ternary_qmark,
- ACTIONS(5041), 1,
- anon_sym_RPAREN,
- STATE(1447), 1,
- sym_type_arguments,
- STATE(4681), 1,
- aux_sym_array_repeat1,
- STATE(5080), 1,
- sym_optional_chain,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(4049), 2,
- anon_sym_STAR,
- anon_sym_SLASH,
- ACTIONS(4057), 2,
- anon_sym_in,
- anon_sym_GT,
- ACTIONS(4067), 2,
- anon_sym_GT_GT_GT,
- anon_sym_LT_LT,
- ACTIONS(4075), 2,
- anon_sym_PLUS,
- anon_sym_DASH,
- ACTIONS(4085), 2,
- anon_sym_EQ_EQ,
- anon_sym_BANG_EQ,
- ACTIONS(4087), 2,
- anon_sym_EQ_EQ_EQ,
- anon_sym_BANG_EQ_EQ,
- ACTIONS(4091), 2,
- anon_sym_PLUS_PLUS,
- anon_sym_DASH_DASH,
- STATE(1757), 2,
- sym_template_string,
- sym_arguments,
- ACTIONS(4083), 3,
- anon_sym_LT_EQ,
- anon_sym_GT_EQ,
- anon_sym_instanceof,
- [54911] = 34,
- ACTIONS(825), 1,
- anon_sym_BQUOTE,
- ACTIONS(1931), 1,
- anon_sym_COMMA,
- ACTIONS(3969), 1,
- anon_sym_LPAREN,
- ACTIONS(3971), 1,
- anon_sym_LBRACK,
- ACTIONS(3973), 1,
- anon_sym_DOT,
- ACTIONS(4051), 1,
- anon_sym_as,
- ACTIONS(4055), 1,
- anon_sym_BANG,
- ACTIONS(4059), 1,
- anon_sym_QMARK_DOT,
- ACTIONS(4061), 1,
- anon_sym_AMP_AMP,
- ACTIONS(4063), 1,
- anon_sym_PIPE_PIPE,
- ACTIONS(4065), 1,
- anon_sym_GT_GT,
- ACTIONS(4069), 1,
- anon_sym_AMP,
- ACTIONS(4071), 1,
- anon_sym_CARET,
- ACTIONS(4073), 1,
- anon_sym_PIPE,
- ACTIONS(4077), 1,
- anon_sym_PERCENT,
- ACTIONS(4079), 1,
- anon_sym_STAR_STAR,
- ACTIONS(4081), 1,
- anon_sym_LT,
- ACTIONS(4089), 1,
- anon_sym_QMARK_QMARK,
- ACTIONS(4093), 1,
- anon_sym_satisfies,
- ACTIONS(4095), 1,
- sym__ternary_qmark,
- ACTIONS(5043), 1,
- anon_sym_RPAREN,
- STATE(1447), 1,
- sym_type_arguments,
- STATE(4701), 1,
- aux_sym_array_repeat1,
- STATE(5080), 1,
- sym_optional_chain,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(4049), 2,
- anon_sym_STAR,
- anon_sym_SLASH,
- ACTIONS(4057), 2,
- anon_sym_in,
- anon_sym_GT,
- ACTIONS(4067), 2,
- anon_sym_GT_GT_GT,
- anon_sym_LT_LT,
- ACTIONS(4075), 2,
- anon_sym_PLUS,
- anon_sym_DASH,
- ACTIONS(4085), 2,
- anon_sym_EQ_EQ,
- anon_sym_BANG_EQ,
- ACTIONS(4087), 2,
- anon_sym_EQ_EQ_EQ,
- anon_sym_BANG_EQ_EQ,
- ACTIONS(4091), 2,
- anon_sym_PLUS_PLUS,
- anon_sym_DASH_DASH,
- STATE(1757), 2,
- sym_template_string,
- sym_arguments,
- ACTIONS(4083), 3,
- anon_sym_LT_EQ,
- anon_sym_GT_EQ,
- anon_sym_instanceof,
- [55025] = 14,
- ACTIONS(1594), 1,
- anon_sym_DQUOTE,
- ACTIONS(1596), 1,
- anon_sym_SQUOTE,
- ACTIONS(3633), 1,
- anon_sym_override,
- ACTIONS(4245), 1,
- anon_sym_LBRACK,
- ACTIONS(5047), 1,
- anon_sym_static,
- ACTIONS(5049), 1,
- anon_sym_readonly,
- ACTIONS(5051), 1,
- anon_sym_abstract,
- ACTIONS(5053), 1,
- anon_sym_accessor,
- STATE(2768), 1,
- sym_override_modifier,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(5045), 2,
- sym_number,
- sym_private_property_identifier,
- STATE(3389), 3,
- sym_string,
- sym__property_name,
- sym_computed_property_name,
- ACTIONS(3743), 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(3607), 20,
- anon_sym_export,
- anon_sym_type,
- anon_sym_namespace,
- anon_sym_let,
- anon_sym_async,
- anon_sym_new,
- sym_identifier,
- anon_sym_get,
- anon_sym_set,
- anon_sym_declare,
- anon_sym_public,
- anon_sym_private,
- anon_sym_protected,
- anon_sym_module,
- anon_sym_any,
- anon_sym_number,
- anon_sym_boolean,
- anon_sym_string,
- anon_sym_symbol,
- anon_sym_object,
- [55099] = 34,
- ACTIONS(825), 1,
- anon_sym_BQUOTE,
- ACTIONS(3969), 1,
- anon_sym_LPAREN,
- ACTIONS(3971), 1,
- anon_sym_LBRACK,
- ACTIONS(3973), 1,
- anon_sym_DOT,
- ACTIONS(4051), 1,
- anon_sym_as,
- ACTIONS(4055), 1,
- anon_sym_BANG,
- ACTIONS(4059), 1,
- anon_sym_QMARK_DOT,
- ACTIONS(4061), 1,
- anon_sym_AMP_AMP,
- ACTIONS(4063), 1,
- anon_sym_PIPE_PIPE,
- ACTIONS(4065), 1,
- anon_sym_GT_GT,
- ACTIONS(4069), 1,
- anon_sym_AMP,
- ACTIONS(4071), 1,
- anon_sym_CARET,
- ACTIONS(4073), 1,
- anon_sym_PIPE,
- ACTIONS(4077), 1,
- anon_sym_PERCENT,
- ACTIONS(4079), 1,
- anon_sym_STAR_STAR,
- ACTIONS(4081), 1,
- anon_sym_LT,
- ACTIONS(4089), 1,
- anon_sym_QMARK_QMARK,
- ACTIONS(4093), 1,
- anon_sym_satisfies,
- ACTIONS(4095), 1,
- sym__ternary_qmark,
- ACTIONS(4267), 1,
- anon_sym_COMMA,
- ACTIONS(5055), 1,
- anon_sym_RPAREN,
- STATE(1447), 1,
- sym_type_arguments,
- STATE(3803), 1,
- aux_sym_sequence_expression_repeat1,
- STATE(5080), 1,
- sym_optional_chain,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(4049), 2,
- anon_sym_STAR,
- anon_sym_SLASH,
- ACTIONS(4057), 2,
- anon_sym_in,
- anon_sym_GT,
- ACTIONS(4067), 2,
- anon_sym_GT_GT_GT,
- anon_sym_LT_LT,
- ACTIONS(4075), 2,
- anon_sym_PLUS,
- anon_sym_DASH,
- ACTIONS(4085), 2,
- anon_sym_EQ_EQ,
- anon_sym_BANG_EQ,
- ACTIONS(4087), 2,
- anon_sym_EQ_EQ_EQ,
- anon_sym_BANG_EQ_EQ,
- ACTIONS(4091), 2,
- anon_sym_PLUS_PLUS,
- anon_sym_DASH_DASH,
- STATE(1757), 2,
- sym_template_string,
- sym_arguments,
- ACTIONS(4083), 3,
- anon_sym_LT_EQ,
- anon_sym_GT_EQ,
- anon_sym_instanceof,
- [55213] = 3,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(3127), 13,
- anon_sym_STAR,
- anon_sym_BANG,
- anon_sym_in,
- anon_sym_GT,
- anon_sym_GT_GT,
- anon_sym_AMP,
- anon_sym_PIPE,
- anon_sym_PLUS,
- anon_sym_DASH,
- anon_sym_SLASH,
- anon_sym_LT,
- anon_sym_EQ_EQ,
- anon_sym_BANG_EQ,
- ACTIONS(3129), 30,
- sym__automatic_semicolon,
- sym__ternary_qmark,
- anon_sym_as,
- anon_sym_COMMA,
- anon_sym_RBRACE,
- anon_sym_LPAREN,
- anon_sym_of,
- anon_sym_SEMI,
- anon_sym_LBRACK,
- anon_sym_DOT,
- anon_sym_QMARK_DOT,
- anon_sym_AMP_AMP,
- anon_sym_PIPE_PIPE,
- anon_sym_GT_GT_GT,
- anon_sym_LT_LT,
- anon_sym_CARET,
- anon_sym_PERCENT,
- anon_sym_STAR_STAR,
- anon_sym_LT_EQ,
- anon_sym_EQ_EQ_EQ,
- anon_sym_BANG_EQ_EQ,
- anon_sym_GT_EQ,
- anon_sym_QMARK_QMARK,
- anon_sym_instanceof,
- anon_sym_PLUS_PLUS,
- anon_sym_DASH_DASH,
- anon_sym_BQUOTE,
- anon_sym_satisfies,
- anon_sym_extends,
- anon_sym_PIPE_RBRACE,
- [55265] = 16,
- ACTIONS(1594), 1,
- anon_sym_DQUOTE,
- ACTIONS(1596), 1,
- anon_sym_SQUOTE,
- ACTIONS(3633), 1,
- anon_sym_override,
- ACTIONS(4241), 1,
- anon_sym_STAR,
- ACTIONS(4243), 1,
- anon_sym_EQ,
- ACTIONS(4245), 1,
- anon_sym_LBRACK,
- ACTIONS(4247), 1,
- anon_sym_async,
- ACTIONS(4251), 1,
- anon_sym_readonly,
- STATE(2701), 1,
- sym_override_modifier,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(3959), 2,
- anon_sym_COMMA,
- anon_sym_RBRACE,
- ACTIONS(4249), 2,
- sym_number,
- sym_private_property_identifier,
- ACTIONS(4253), 2,
- anon_sym_get,
- anon_sym_set,
- STATE(3081), 3,
- sym_string,
- sym__property_name,
- sym_computed_property_name,
- ACTIONS(3743), 7,
- sym__automatic_semicolon,
- anon_sym_LPAREN,
- anon_sym_SEMI,
- anon_sym_COLON,
- anon_sym_LT,
- anon_sym_QMARK,
- anon_sym_PIPE_RBRACE,
- ACTIONS(3607), 18,
- anon_sym_export,
- anon_sym_type,
- anon_sym_namespace,
- anon_sym_let,
- anon_sym_new,
- sym_identifier,
- anon_sym_static,
- anon_sym_declare,
- anon_sym_public,
- anon_sym_private,
- anon_sym_protected,
- anon_sym_module,
- anon_sym_any,
- anon_sym_number,
- anon_sym_boolean,
- anon_sym_string,
- anon_sym_symbol,
- anon_sym_object,
- [55343] = 34,
- ACTIONS(825), 1,
- anon_sym_BQUOTE,
- ACTIONS(3969), 1,
- anon_sym_LPAREN,
- ACTIONS(3971), 1,
- anon_sym_LBRACK,
- ACTIONS(3973), 1,
- anon_sym_DOT,
- ACTIONS(4051), 1,
- anon_sym_as,
- ACTIONS(4055), 1,
- anon_sym_BANG,
- ACTIONS(4059), 1,
- anon_sym_QMARK_DOT,
- ACTIONS(4061), 1,
- anon_sym_AMP_AMP,
- ACTIONS(4063), 1,
- anon_sym_PIPE_PIPE,
- ACTIONS(4065), 1,
- anon_sym_GT_GT,
- ACTIONS(4069), 1,
- anon_sym_AMP,
- ACTIONS(4071), 1,
- anon_sym_CARET,
- ACTIONS(4073), 1,
- anon_sym_PIPE,
- ACTIONS(4077), 1,
- anon_sym_PERCENT,
- ACTIONS(4079), 1,
- anon_sym_STAR_STAR,
- ACTIONS(4081), 1,
- anon_sym_LT,
- ACTIONS(4089), 1,
- anon_sym_QMARK_QMARK,
- ACTIONS(4093), 1,
- anon_sym_satisfies,
- ACTIONS(4095), 1,
- sym__ternary_qmark,
- ACTIONS(4267), 1,
- anon_sym_COMMA,
- ACTIONS(5057), 1,
- anon_sym_RPAREN,
- STATE(1447), 1,
- sym_type_arguments,
- STATE(3803), 1,
- aux_sym_sequence_expression_repeat1,
- STATE(5080), 1,
- sym_optional_chain,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(4049), 2,
- anon_sym_STAR,
- anon_sym_SLASH,
- ACTIONS(4057), 2,
- anon_sym_in,
- anon_sym_GT,
- ACTIONS(4067), 2,
- anon_sym_GT_GT_GT,
- anon_sym_LT_LT,
- ACTIONS(4075), 2,
- anon_sym_PLUS,
- anon_sym_DASH,
- ACTIONS(4085), 2,
- anon_sym_EQ_EQ,
- anon_sym_BANG_EQ,
- ACTIONS(4087), 2,
- anon_sym_EQ_EQ_EQ,
- anon_sym_BANG_EQ_EQ,
- ACTIONS(4091), 2,
- anon_sym_PLUS_PLUS,
- anon_sym_DASH_DASH,
- STATE(1757), 2,
- sym_template_string,
- sym_arguments,
- ACTIONS(4083), 3,
- anon_sym_LT_EQ,
- anon_sym_GT_EQ,
- anon_sym_instanceof,
- [55457] = 32,
- ACTIONS(825), 1,
- anon_sym_BQUOTE,
- ACTIONS(3969), 1,
- anon_sym_LPAREN,
- ACTIONS(3971), 1,
- anon_sym_LBRACK,
- ACTIONS(3973), 1,
- anon_sym_DOT,
- ACTIONS(4051), 1,
- anon_sym_as,
- ACTIONS(4055), 1,
- anon_sym_BANG,
- ACTIONS(4059), 1,
- anon_sym_QMARK_DOT,
- ACTIONS(4093), 1,
- anon_sym_satisfies,
- ACTIONS(4939), 1,
- anon_sym_AMP_AMP,
- ACTIONS(4941), 1,
- anon_sym_PIPE_PIPE,
- ACTIONS(4943), 1,
- anon_sym_GT_GT,
- ACTIONS(4947), 1,
- anon_sym_AMP,
- ACTIONS(4949), 1,
- anon_sym_CARET,
- ACTIONS(4951), 1,
- anon_sym_PIPE,
- ACTIONS(4955), 1,
- anon_sym_PERCENT,
- ACTIONS(4957), 1,
- anon_sym_STAR_STAR,
- ACTIONS(4959), 1,
- anon_sym_LT,
- ACTIONS(4967), 1,
- anon_sym_QMARK_QMARK,
- ACTIONS(4969), 1,
- sym__ternary_qmark,
- STATE(1447), 1,
- sym_type_arguments,
- STATE(5080), 1,
- sym_optional_chain,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(4091), 2,
- anon_sym_PLUS_PLUS,
- anon_sym_DASH_DASH,
- ACTIONS(4935), 2,
- anon_sym_STAR,
- anon_sym_SLASH,
- ACTIONS(4937), 2,
- anon_sym_in,
- anon_sym_GT,
- ACTIONS(4945), 2,
- anon_sym_GT_GT_GT,
- anon_sym_LT_LT,
- ACTIONS(4953), 2,
- anon_sym_PLUS,
- anon_sym_DASH,
- ACTIONS(4963), 2,
- anon_sym_EQ_EQ,
- anon_sym_BANG_EQ,
- ACTIONS(4965), 2,
- anon_sym_EQ_EQ_EQ,
- anon_sym_BANG_EQ_EQ,
- STATE(1757), 2,
- sym_template_string,
- sym_arguments,
- ACTIONS(4255), 3,
- anon_sym_LBRACE,
- anon_sym_COMMA,
- anon_sym_implements,
- ACTIONS(4961), 3,
- anon_sym_LT_EQ,
- anon_sym_GT_EQ,
- anon_sym_instanceof,
- [55567] = 32,
- ACTIONS(825), 1,
- anon_sym_BQUOTE,
- ACTIONS(3969), 1,
- anon_sym_LPAREN,
- ACTIONS(3971), 1,
- anon_sym_LBRACK,
- ACTIONS(3973), 1,
- anon_sym_DOT,
- ACTIONS(4051), 1,
- anon_sym_as,
- ACTIONS(4055), 1,
- anon_sym_BANG,
- ACTIONS(4059), 1,
- anon_sym_QMARK_DOT,
- ACTIONS(4093), 1,
- anon_sym_satisfies,
- ACTIONS(4939), 1,
- anon_sym_AMP_AMP,
- ACTIONS(4941), 1,
- anon_sym_PIPE_PIPE,
- ACTIONS(4943), 1,
- anon_sym_GT_GT,
- ACTIONS(4947), 1,
- anon_sym_AMP,
- ACTIONS(4949), 1,
- anon_sym_CARET,
- ACTIONS(4951), 1,
- anon_sym_PIPE,
- ACTIONS(4955), 1,
- anon_sym_PERCENT,
- ACTIONS(4957), 1,
- anon_sym_STAR_STAR,
- ACTIONS(4959), 1,
- anon_sym_LT,
- ACTIONS(4967), 1,
- anon_sym_QMARK_QMARK,
- ACTIONS(4969), 1,
- sym__ternary_qmark,
- STATE(1447), 1,
- sym_type_arguments,
- STATE(5080), 1,
- sym_optional_chain,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(4091), 2,
- anon_sym_PLUS_PLUS,
- anon_sym_DASH_DASH,
- ACTIONS(4935), 2,
- anon_sym_STAR,
- anon_sym_SLASH,
- ACTIONS(4937), 2,
- anon_sym_in,
- anon_sym_GT,
- ACTIONS(4945), 2,
- anon_sym_GT_GT_GT,
- anon_sym_LT_LT,
- ACTIONS(4953), 2,
- anon_sym_PLUS,
- anon_sym_DASH,
- ACTIONS(4963), 2,
- anon_sym_EQ_EQ,
- anon_sym_BANG_EQ,
- ACTIONS(4965), 2,
- anon_sym_EQ_EQ_EQ,
- anon_sym_BANG_EQ_EQ,
- STATE(1757), 2,
- sym_template_string,
- sym_arguments,
- ACTIONS(4257), 3,
- anon_sym_LBRACE,
- anon_sym_COMMA,
- anon_sym_implements,
- ACTIONS(4961), 3,
- anon_sym_LT_EQ,
- anon_sym_GT_EQ,
- anon_sym_instanceof,
- [55677] = 32,
- ACTIONS(825), 1,
- anon_sym_BQUOTE,
- ACTIONS(3969), 1,
- anon_sym_LPAREN,
- ACTIONS(3971), 1,
- anon_sym_LBRACK,
- ACTIONS(3973), 1,
- anon_sym_DOT,
- ACTIONS(4051), 1,
- anon_sym_as,
- ACTIONS(4055), 1,
- anon_sym_BANG,
- ACTIONS(4059), 1,
- anon_sym_QMARK_DOT,
- ACTIONS(4093), 1,
- anon_sym_satisfies,
- ACTIONS(4939), 1,
- anon_sym_AMP_AMP,
- ACTIONS(4941), 1,
- anon_sym_PIPE_PIPE,
- ACTIONS(4943), 1,
- anon_sym_GT_GT,
- ACTIONS(4947), 1,
- anon_sym_AMP,
- ACTIONS(4949), 1,
- anon_sym_CARET,
- ACTIONS(4951), 1,
- anon_sym_PIPE,
- ACTIONS(4955), 1,
- anon_sym_PERCENT,
- ACTIONS(4957), 1,
- anon_sym_STAR_STAR,
- ACTIONS(4959), 1,
- anon_sym_LT,
- ACTIONS(4967), 1,
- anon_sym_QMARK_QMARK,
- ACTIONS(4969), 1,
- sym__ternary_qmark,
- STATE(1447), 1,
- sym_type_arguments,
- STATE(5080), 1,
- sym_optional_chain,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(4091), 2,
- anon_sym_PLUS_PLUS,
- anon_sym_DASH_DASH,
- ACTIONS(4935), 2,
- anon_sym_STAR,
- anon_sym_SLASH,
- ACTIONS(4937), 2,
- anon_sym_in,
- anon_sym_GT,
- ACTIONS(4945), 2,
- anon_sym_GT_GT_GT,
- anon_sym_LT_LT,
- ACTIONS(4953), 2,
- anon_sym_PLUS,
- anon_sym_DASH,
- ACTIONS(4963), 2,
- anon_sym_EQ_EQ,
- anon_sym_BANG_EQ,
- ACTIONS(4965), 2,
- anon_sym_EQ_EQ_EQ,
- anon_sym_BANG_EQ_EQ,
- STATE(1757), 2,
- sym_template_string,
- sym_arguments,
- ACTIONS(4283), 3,
- anon_sym_LBRACE,
- anon_sym_COMMA,
- anon_sym_implements,
- ACTIONS(4961), 3,
- anon_sym_LT_EQ,
- anon_sym_GT_EQ,
- anon_sym_instanceof,
- [55787] = 32,
- ACTIONS(825), 1,
- anon_sym_BQUOTE,
- ACTIONS(3969), 1,
- anon_sym_LPAREN,
- ACTIONS(3971), 1,
- anon_sym_LBRACK,
- ACTIONS(3973), 1,
- anon_sym_DOT,
- ACTIONS(4051), 1,
- anon_sym_as,
- ACTIONS(4055), 1,
- anon_sym_BANG,
- ACTIONS(4059), 1,
- anon_sym_QMARK_DOT,
- ACTIONS(4093), 1,
- anon_sym_satisfies,
- ACTIONS(4939), 1,
- anon_sym_AMP_AMP,
- ACTIONS(4941), 1,
- anon_sym_PIPE_PIPE,
- ACTIONS(4943), 1,
- anon_sym_GT_GT,
- ACTIONS(4947), 1,
- anon_sym_AMP,
- ACTIONS(4949), 1,
- anon_sym_CARET,
- ACTIONS(4951), 1,
- anon_sym_PIPE,
- ACTIONS(4955), 1,
- anon_sym_PERCENT,
- ACTIONS(4957), 1,
- anon_sym_STAR_STAR,
- ACTIONS(4959), 1,
- anon_sym_LT,
- ACTIONS(4967), 1,
- anon_sym_QMARK_QMARK,
- ACTIONS(4969), 1,
- sym__ternary_qmark,
- STATE(1447), 1,
- sym_type_arguments,
- STATE(5080), 1,
- sym_optional_chain,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(4091), 2,
- anon_sym_PLUS_PLUS,
- anon_sym_DASH_DASH,
- ACTIONS(4935), 2,
- anon_sym_STAR,
- anon_sym_SLASH,
- ACTIONS(4937), 2,
- anon_sym_in,
- anon_sym_GT,
- ACTIONS(4945), 2,
- anon_sym_GT_GT_GT,
- anon_sym_LT_LT,
- ACTIONS(4953), 2,
- anon_sym_PLUS,
- anon_sym_DASH,
- ACTIONS(4963), 2,
- anon_sym_EQ_EQ,
- anon_sym_BANG_EQ,
- ACTIONS(4965), 2,
- anon_sym_EQ_EQ_EQ,
- anon_sym_BANG_EQ_EQ,
- STATE(1757), 2,
- sym_template_string,
- sym_arguments,
- ACTIONS(4297), 3,
- anon_sym_LBRACE,
- anon_sym_COMMA,
- anon_sym_implements,
- ACTIONS(4961), 3,
- anon_sym_LT_EQ,
- anon_sym_GT_EQ,
- anon_sym_instanceof,
- [55897] = 32,
- ACTIONS(825), 1,
- anon_sym_BQUOTE,
- ACTIONS(3969), 1,
- anon_sym_LPAREN,
- ACTIONS(3971), 1,
- anon_sym_LBRACK,
- ACTIONS(3973), 1,
- anon_sym_DOT,
- ACTIONS(4051), 1,
- anon_sym_as,
- ACTIONS(4055), 1,
- anon_sym_BANG,
- ACTIONS(4059), 1,
- anon_sym_QMARK_DOT,
- ACTIONS(4093), 1,
- anon_sym_satisfies,
- ACTIONS(4939), 1,
- anon_sym_AMP_AMP,
- ACTIONS(4941), 1,
- anon_sym_PIPE_PIPE,
- ACTIONS(4943), 1,
- anon_sym_GT_GT,
- ACTIONS(4947), 1,
- anon_sym_AMP,
- ACTIONS(4949), 1,
- anon_sym_CARET,
- ACTIONS(4951), 1,
- anon_sym_PIPE,
- ACTIONS(4955), 1,
- anon_sym_PERCENT,
- ACTIONS(4957), 1,
- anon_sym_STAR_STAR,
- ACTIONS(4959), 1,
- anon_sym_LT,
- ACTIONS(4967), 1,
- anon_sym_QMARK_QMARK,
- ACTIONS(4969), 1,
- sym__ternary_qmark,
- STATE(1447), 1,
- sym_type_arguments,
- STATE(5080), 1,
- sym_optional_chain,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(4091), 2,
- anon_sym_PLUS_PLUS,
- anon_sym_DASH_DASH,
- ACTIONS(4935), 2,
- anon_sym_STAR,
- anon_sym_SLASH,
- ACTIONS(4937), 2,
- anon_sym_in,
- anon_sym_GT,
- ACTIONS(4945), 2,
- anon_sym_GT_GT_GT,
- anon_sym_LT_LT,
- ACTIONS(4953), 2,
- anon_sym_PLUS,
- anon_sym_DASH,
- ACTIONS(4963), 2,
- anon_sym_EQ_EQ,
- anon_sym_BANG_EQ,
- ACTIONS(4965), 2,
- anon_sym_EQ_EQ_EQ,
- anon_sym_BANG_EQ_EQ,
- STATE(1757), 2,
- sym_template_string,
- sym_arguments,
- ACTIONS(4299), 3,
- anon_sym_LBRACE,
- anon_sym_COMMA,
- anon_sym_implements,
- ACTIONS(4961), 3,
- anon_sym_LT_EQ,
- anon_sym_GT_EQ,
- anon_sym_instanceof,
- [56007] = 19,
- ACTIONS(825), 1,
- anon_sym_BQUOTE,
- ACTIONS(3969), 1,
- anon_sym_LPAREN,
- ACTIONS(3971), 1,
- anon_sym_LBRACK,
- ACTIONS(3973), 1,
- anon_sym_DOT,
- ACTIONS(4059), 1,
- anon_sym_QMARK_DOT,
- ACTIONS(4943), 1,
- anon_sym_GT_GT,
- ACTIONS(4955), 1,
- anon_sym_PERCENT,
- ACTIONS(4957), 1,
- anon_sym_STAR_STAR,
- ACTIONS(4959), 1,
- anon_sym_LT,
- STATE(1447), 1,
- sym_type_arguments,
- STATE(5080), 1,
- sym_optional_chain,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(4091), 2,
- anon_sym_PLUS_PLUS,
- anon_sym_DASH_DASH,
- ACTIONS(4935), 2,
- anon_sym_STAR,
- anon_sym_SLASH,
- ACTIONS(4945), 2,
- anon_sym_GT_GT_GT,
- anon_sym_LT_LT,
- ACTIONS(4953), 2,
- anon_sym_PLUS,
- anon_sym_DASH,
- STATE(1757), 2,
- sym_template_string,
- sym_arguments,
- ACTIONS(4307), 7,
- anon_sym_BANG,
- anon_sym_in,
- anon_sym_GT,
- anon_sym_AMP,
- anon_sym_PIPE,
- anon_sym_EQ_EQ,
- anon_sym_BANG_EQ,
- ACTIONS(4305), 15,
- sym__ternary_qmark,
- anon_sym_as,
- anon_sym_LBRACE,
- anon_sym_COMMA,
- anon_sym_AMP_AMP,
- anon_sym_PIPE_PIPE,
- anon_sym_CARET,
- anon_sym_LT_EQ,
- anon_sym_EQ_EQ_EQ,
- anon_sym_BANG_EQ_EQ,
- anon_sym_GT_EQ,
- anon_sym_QMARK_QMARK,
- anon_sym_instanceof,
- anon_sym_satisfies,
- anon_sym_implements,
- [56091] = 14,
- ACTIONS(825), 1,
- anon_sym_BQUOTE,
- ACTIONS(3969), 1,
- anon_sym_LPAREN,
- ACTIONS(3971), 1,
- anon_sym_LBRACK,
- ACTIONS(3973), 1,
- anon_sym_DOT,
- ACTIONS(4059), 1,
- anon_sym_QMARK_DOT,
- ACTIONS(4957), 1,
- anon_sym_STAR_STAR,
- ACTIONS(5059), 1,
- anon_sym_LT,
- STATE(1447), 1,
- sym_type_arguments,
- STATE(5080), 1,
- sym_optional_chain,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(4091), 2,
- anon_sym_PLUS_PLUS,
- anon_sym_DASH_DASH,
- STATE(1757), 2,
- sym_template_string,
- sym_arguments,
- ACTIONS(4307), 12,
- anon_sym_STAR,
- anon_sym_BANG,
- anon_sym_in,
- anon_sym_GT,
- anon_sym_GT_GT,
- anon_sym_AMP,
- anon_sym_PIPE,
- anon_sym_PLUS,
- anon_sym_DASH,
- anon_sym_SLASH,
- anon_sym_EQ_EQ,
- anon_sym_BANG_EQ,
- ACTIONS(4305), 18,
- sym__ternary_qmark,
- anon_sym_as,
- anon_sym_LBRACE,
- anon_sym_COMMA,
- anon_sym_AMP_AMP,
- anon_sym_PIPE_PIPE,
- anon_sym_GT_GT_GT,
- anon_sym_LT_LT,
- anon_sym_CARET,
- anon_sym_PERCENT,
- anon_sym_LT_EQ,
- anon_sym_EQ_EQ_EQ,
- anon_sym_BANG_EQ_EQ,
- anon_sym_GT_EQ,
- anon_sym_QMARK_QMARK,
- anon_sym_instanceof,
- anon_sym_satisfies,
- anon_sym_implements,
- [56165] = 26,
- ACTIONS(825), 1,
- anon_sym_BQUOTE,
- ACTIONS(3969), 1,
- anon_sym_LPAREN,
- ACTIONS(3971), 1,
- anon_sym_LBRACK,
- ACTIONS(3973), 1,
- anon_sym_DOT,
- ACTIONS(4059), 1,
- anon_sym_QMARK_DOT,
- ACTIONS(4307), 1,
- anon_sym_BANG,
- ACTIONS(4943), 1,
- anon_sym_GT_GT,
- ACTIONS(4947), 1,
- anon_sym_AMP,
- ACTIONS(4949), 1,
- anon_sym_CARET,
- ACTIONS(4951), 1,
- anon_sym_PIPE,
- ACTIONS(4955), 1,
- anon_sym_PERCENT,
- ACTIONS(4957), 1,
- anon_sym_STAR_STAR,
- ACTIONS(4959), 1,
- anon_sym_LT,
- STATE(1447), 1,
- sym_type_arguments,
- STATE(5080), 1,
- sym_optional_chain,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(4091), 2,
- anon_sym_PLUS_PLUS,
- anon_sym_DASH_DASH,
- ACTIONS(4935), 2,
- anon_sym_STAR,
- anon_sym_SLASH,
- ACTIONS(4937), 2,
- anon_sym_in,
- anon_sym_GT,
- ACTIONS(4945), 2,
- anon_sym_GT_GT_GT,
- anon_sym_LT_LT,
- ACTIONS(4953), 2,
- anon_sym_PLUS,
- anon_sym_DASH,
- ACTIONS(4963), 2,
- anon_sym_EQ_EQ,
- anon_sym_BANG_EQ,
- ACTIONS(4965), 2,
- anon_sym_EQ_EQ_EQ,
- anon_sym_BANG_EQ_EQ,
- STATE(1757), 2,
- sym_template_string,
- sym_arguments,
- ACTIONS(4961), 3,
- anon_sym_LT_EQ,
- anon_sym_GT_EQ,
- anon_sym_instanceof,
- ACTIONS(4305), 9,
- sym__ternary_qmark,
- anon_sym_as,
- anon_sym_LBRACE,
- anon_sym_COMMA,
- anon_sym_AMP_AMP,
- anon_sym_PIPE_PIPE,
- anon_sym_QMARK_QMARK,
- anon_sym_satisfies,
- anon_sym_implements,
- [56263] = 27,
- ACTIONS(825), 1,
- anon_sym_BQUOTE,
- ACTIONS(3969), 1,
- anon_sym_LPAREN,
- ACTIONS(3971), 1,
- anon_sym_LBRACK,
- ACTIONS(3973), 1,
- anon_sym_DOT,
- ACTIONS(4059), 1,
- anon_sym_QMARK_DOT,
- ACTIONS(4307), 1,
- anon_sym_BANG,
- ACTIONS(4939), 1,
- anon_sym_AMP_AMP,
- ACTIONS(4943), 1,
- anon_sym_GT_GT,
- ACTIONS(4947), 1,
- anon_sym_AMP,
- ACTIONS(4949), 1,
- anon_sym_CARET,
- ACTIONS(4951), 1,
- anon_sym_PIPE,
- ACTIONS(4955), 1,
- anon_sym_PERCENT,
- ACTIONS(4957), 1,
- anon_sym_STAR_STAR,
- ACTIONS(4959), 1,
- anon_sym_LT,
- STATE(1447), 1,
- sym_type_arguments,
- STATE(5080), 1,
- sym_optional_chain,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(4091), 2,
- anon_sym_PLUS_PLUS,
- anon_sym_DASH_DASH,
- ACTIONS(4935), 2,
- anon_sym_STAR,
- anon_sym_SLASH,
- ACTIONS(4937), 2,
- anon_sym_in,
- anon_sym_GT,
- ACTIONS(4945), 2,
- anon_sym_GT_GT_GT,
- anon_sym_LT_LT,
- ACTIONS(4953), 2,
- anon_sym_PLUS,
- anon_sym_DASH,
- ACTIONS(4963), 2,
- anon_sym_EQ_EQ,
- anon_sym_BANG_EQ,
- ACTIONS(4965), 2,
- anon_sym_EQ_EQ_EQ,
- anon_sym_BANG_EQ_EQ,
- STATE(1757), 2,
- sym_template_string,
- sym_arguments,
- ACTIONS(4961), 3,
- anon_sym_LT_EQ,
- anon_sym_GT_EQ,
- anon_sym_instanceof,
- ACTIONS(4305), 8,
- sym__ternary_qmark,
- anon_sym_as,
- anon_sym_LBRACE,
- anon_sym_COMMA,
- anon_sym_PIPE_PIPE,
- anon_sym_QMARK_QMARK,
- anon_sym_satisfies,
- anon_sym_implements,
- [56363] = 17,
- ACTIONS(825), 1,
- anon_sym_BQUOTE,
- ACTIONS(3969), 1,
- anon_sym_LPAREN,
- ACTIONS(3971), 1,
- anon_sym_LBRACK,
- ACTIONS(3973), 1,
- anon_sym_DOT,
- ACTIONS(4059), 1,
- anon_sym_QMARK_DOT,
- ACTIONS(4955), 1,
- anon_sym_PERCENT,
- ACTIONS(4957), 1,
- anon_sym_STAR_STAR,
- ACTIONS(5059), 1,
- anon_sym_LT,
- STATE(1447), 1,
- sym_type_arguments,
- STATE(5080), 1,
- sym_optional_chain,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(4091), 2,
- anon_sym_PLUS_PLUS,
- anon_sym_DASH_DASH,
- ACTIONS(4935), 2,
- anon_sym_STAR,
- anon_sym_SLASH,
- ACTIONS(4953), 2,
- anon_sym_PLUS,
- anon_sym_DASH,
- STATE(1757), 2,
- sym_template_string,
- sym_arguments,
- ACTIONS(4307), 8,
- anon_sym_BANG,
- anon_sym_in,
- anon_sym_GT,
- anon_sym_GT_GT,
- anon_sym_AMP,
- anon_sym_PIPE,
- anon_sym_EQ_EQ,
- anon_sym_BANG_EQ,
- ACTIONS(4305), 17,
- sym__ternary_qmark,
- anon_sym_as,
- anon_sym_LBRACE,
- anon_sym_COMMA,
- anon_sym_AMP_AMP,
- anon_sym_PIPE_PIPE,
- anon_sym_GT_GT_GT,
- anon_sym_LT_LT,
- anon_sym_CARET,
- anon_sym_LT_EQ,
- anon_sym_EQ_EQ_EQ,
- anon_sym_BANG_EQ_EQ,
- anon_sym_GT_EQ,
- anon_sym_QMARK_QMARK,
- anon_sym_instanceof,
- anon_sym_satisfies,
- anon_sym_implements,
- [56443] = 23,
- ACTIONS(825), 1,
- anon_sym_BQUOTE,
- ACTIONS(3969), 1,
- anon_sym_LPAREN,
- ACTIONS(3971), 1,
- anon_sym_LBRACK,
- ACTIONS(3973), 1,
- anon_sym_DOT,
- ACTIONS(4059), 1,
- anon_sym_QMARK_DOT,
- ACTIONS(4943), 1,
- anon_sym_GT_GT,
- ACTIONS(4955), 1,
- anon_sym_PERCENT,
- ACTIONS(4957), 1,
- anon_sym_STAR_STAR,
- ACTIONS(4959), 1,
- anon_sym_LT,
- STATE(1447), 1,
- sym_type_arguments,
- STATE(5080), 1,
- sym_optional_chain,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(4091), 2,
- anon_sym_PLUS_PLUS,
- anon_sym_DASH_DASH,
- ACTIONS(4935), 2,
- anon_sym_STAR,
- anon_sym_SLASH,
- ACTIONS(4937), 2,
- anon_sym_in,
- anon_sym_GT,
- ACTIONS(4945), 2,
- anon_sym_GT_GT_GT,
- anon_sym_LT_LT,
- ACTIONS(4953), 2,
- anon_sym_PLUS,
- anon_sym_DASH,
- ACTIONS(4963), 2,
- anon_sym_EQ_EQ,
- anon_sym_BANG_EQ,
- ACTIONS(4965), 2,
- anon_sym_EQ_EQ_EQ,
- anon_sym_BANG_EQ_EQ,
- STATE(1757), 2,
- sym_template_string,
- sym_arguments,
- ACTIONS(4307), 3,
- anon_sym_BANG,
- anon_sym_AMP,
- anon_sym_PIPE,
- ACTIONS(4961), 3,
- anon_sym_LT_EQ,
- anon_sym_GT_EQ,
- anon_sym_instanceof,
- ACTIONS(4305), 10,
- sym__ternary_qmark,
- anon_sym_as,
- anon_sym_LBRACE,
- anon_sym_COMMA,
- anon_sym_AMP_AMP,
- anon_sym_PIPE_PIPE,
- anon_sym_CARET,
- anon_sym_QMARK_QMARK,
- anon_sym_satisfies,
- anon_sym_implements,
- [56535] = 24,
- ACTIONS(825), 1,
- anon_sym_BQUOTE,
- ACTIONS(3969), 1,
- anon_sym_LPAREN,
- ACTIONS(3971), 1,
- anon_sym_LBRACK,
- ACTIONS(3973), 1,
- anon_sym_DOT,
- ACTIONS(4059), 1,
- anon_sym_QMARK_DOT,
- ACTIONS(4943), 1,
- anon_sym_GT_GT,
- ACTIONS(4947), 1,
- anon_sym_AMP,
- ACTIONS(4955), 1,
- anon_sym_PERCENT,
- ACTIONS(4957), 1,
- anon_sym_STAR_STAR,
- ACTIONS(4959), 1,
- anon_sym_LT,
- STATE(1447), 1,
- sym_type_arguments,
- STATE(5080), 1,
- sym_optional_chain,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(4091), 2,
- anon_sym_PLUS_PLUS,
- anon_sym_DASH_DASH,
- ACTIONS(4307), 2,
- anon_sym_BANG,
- anon_sym_PIPE,
- ACTIONS(4935), 2,
- anon_sym_STAR,
- anon_sym_SLASH,
- ACTIONS(4937), 2,
- anon_sym_in,
- anon_sym_GT,
- ACTIONS(4945), 2,
- anon_sym_GT_GT_GT,
- anon_sym_LT_LT,
- ACTIONS(4953), 2,
- anon_sym_PLUS,
- anon_sym_DASH,
- ACTIONS(4963), 2,
- anon_sym_EQ_EQ,
- anon_sym_BANG_EQ,
- ACTIONS(4965), 2,
- anon_sym_EQ_EQ_EQ,
- anon_sym_BANG_EQ_EQ,
- STATE(1757), 2,
- sym_template_string,
- sym_arguments,
- ACTIONS(4961), 3,
- anon_sym_LT_EQ,
- anon_sym_GT_EQ,
- anon_sym_instanceof,
- ACTIONS(4305), 10,
- sym__ternary_qmark,
- anon_sym_as,
- anon_sym_LBRACE,
- anon_sym_COMMA,
- anon_sym_AMP_AMP,
- anon_sym_PIPE_PIPE,
- anon_sym_CARET,
- anon_sym_QMARK_QMARK,
- anon_sym_satisfies,
- anon_sym_implements,
- [56629] = 25,
- ACTIONS(825), 1,
- anon_sym_BQUOTE,
- ACTIONS(3969), 1,
- anon_sym_LPAREN,
- ACTIONS(3971), 1,
- anon_sym_LBRACK,
- ACTIONS(3973), 1,
- anon_sym_DOT,
- ACTIONS(4059), 1,
- anon_sym_QMARK_DOT,
- ACTIONS(4943), 1,
- anon_sym_GT_GT,
- ACTIONS(4947), 1,
- anon_sym_AMP,
- ACTIONS(4949), 1,
- anon_sym_CARET,
- ACTIONS(4955), 1,
- anon_sym_PERCENT,
- ACTIONS(4957), 1,
- anon_sym_STAR_STAR,
- ACTIONS(4959), 1,
- anon_sym_LT,
- STATE(1447), 1,
- sym_type_arguments,
- STATE(5080), 1,
- sym_optional_chain,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(4091), 2,
- anon_sym_PLUS_PLUS,
- anon_sym_DASH_DASH,
- ACTIONS(4307), 2,
- anon_sym_BANG,
- anon_sym_PIPE,
- ACTIONS(4935), 2,
- anon_sym_STAR,
- anon_sym_SLASH,
- ACTIONS(4937), 2,
- anon_sym_in,
- anon_sym_GT,
- ACTIONS(4945), 2,
- anon_sym_GT_GT_GT,
- anon_sym_LT_LT,
- ACTIONS(4953), 2,
- anon_sym_PLUS,
- anon_sym_DASH,
- ACTIONS(4963), 2,
- anon_sym_EQ_EQ,
- anon_sym_BANG_EQ,
- ACTIONS(4965), 2,
- anon_sym_EQ_EQ_EQ,
- anon_sym_BANG_EQ_EQ,
- STATE(1757), 2,
- sym_template_string,
- sym_arguments,
- ACTIONS(4961), 3,
- anon_sym_LT_EQ,
- anon_sym_GT_EQ,
- anon_sym_instanceof,
- ACTIONS(4305), 9,
- sym__ternary_qmark,
- anon_sym_as,
- anon_sym_LBRACE,
- anon_sym_COMMA,
- anon_sym_AMP_AMP,
- anon_sym_PIPE_PIPE,
- anon_sym_QMARK_QMARK,
- anon_sym_satisfies,
- anon_sym_implements,
- [56725] = 16,
- ACTIONS(825), 1,
- anon_sym_BQUOTE,
- ACTIONS(3969), 1,
- anon_sym_LPAREN,
- ACTIONS(3971), 1,
- anon_sym_LBRACK,
- ACTIONS(3973), 1,
- anon_sym_DOT,
- ACTIONS(4059), 1,
- anon_sym_QMARK_DOT,
- ACTIONS(4955), 1,
- anon_sym_PERCENT,
- ACTIONS(4957), 1,
- anon_sym_STAR_STAR,
- ACTIONS(5059), 1,
- anon_sym_LT,
- STATE(1447), 1,
- sym_type_arguments,
- STATE(5080), 1,
- sym_optional_chain,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(4091), 2,
- anon_sym_PLUS_PLUS,
- anon_sym_DASH_DASH,
- ACTIONS(4935), 2,
- anon_sym_STAR,
- anon_sym_SLASH,
- STATE(1757), 2,
- sym_template_string,
- sym_arguments,
- ACTIONS(4307), 10,
- anon_sym_BANG,
- anon_sym_in,
- anon_sym_GT,
- anon_sym_GT_GT,
- anon_sym_AMP,
- anon_sym_PIPE,
- anon_sym_PLUS,
- anon_sym_DASH,
- anon_sym_EQ_EQ,
- anon_sym_BANG_EQ,
- ACTIONS(4305), 17,
- sym__ternary_qmark,
- anon_sym_as,
- anon_sym_LBRACE,
- anon_sym_COMMA,
- anon_sym_AMP_AMP,
- anon_sym_PIPE_PIPE,
- anon_sym_GT_GT_GT,
- anon_sym_LT_LT,
- anon_sym_CARET,
- anon_sym_LT_EQ,
- anon_sym_EQ_EQ_EQ,
- anon_sym_BANG_EQ_EQ,
- anon_sym_GT_EQ,
- anon_sym_QMARK_QMARK,
- anon_sym_instanceof,
- anon_sym_satisfies,
- anon_sym_implements,
- [56803] = 17,
- ACTIONS(825), 1,
- anon_sym_BQUOTE,
- ACTIONS(3969), 1,
- anon_sym_LPAREN,
- ACTIONS(3971), 1,
- anon_sym_LBRACK,
- ACTIONS(3973), 1,
- anon_sym_DOT,
- ACTIONS(4051), 1,
- anon_sym_as,
- ACTIONS(4055), 1,
- anon_sym_BANG,
- ACTIONS(4059), 1,
- anon_sym_QMARK_DOT,
- ACTIONS(4093), 1,
- anon_sym_satisfies,
- ACTIONS(4957), 1,
- anon_sym_STAR_STAR,
- ACTIONS(5059), 1,
- anon_sym_LT,
- STATE(1447), 1,
- sym_type_arguments,
- STATE(5080), 1,
- sym_optional_chain,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(4091), 2,
- anon_sym_PLUS_PLUS,
- anon_sym_DASH_DASH,
- STATE(1757), 2,
- sym_template_string,
- sym_arguments,
- ACTIONS(4307), 11,
- anon_sym_STAR,
- anon_sym_in,
- anon_sym_GT,
- anon_sym_GT_GT,
- anon_sym_AMP,
- anon_sym_PIPE,
- anon_sym_PLUS,
- anon_sym_DASH,
- anon_sym_SLASH,
- anon_sym_EQ_EQ,
- anon_sym_BANG_EQ,
- ACTIONS(4305), 16,
- sym__ternary_qmark,
- anon_sym_LBRACE,
- anon_sym_COMMA,
- anon_sym_AMP_AMP,
- anon_sym_PIPE_PIPE,
- anon_sym_GT_GT_GT,
- anon_sym_LT_LT,
- anon_sym_CARET,
- anon_sym_PERCENT,
- anon_sym_LT_EQ,
- anon_sym_EQ_EQ_EQ,
- anon_sym_BANG_EQ_EQ,
- anon_sym_GT_EQ,
- anon_sym_QMARK_QMARK,
- anon_sym_instanceof,
- anon_sym_implements,
- [56883] = 21,
- ACTIONS(825), 1,
- anon_sym_BQUOTE,
- ACTIONS(3969), 1,
- anon_sym_LPAREN,
- ACTIONS(3971), 1,
- anon_sym_LBRACK,
- ACTIONS(3973), 1,
- anon_sym_DOT,
- ACTIONS(4059), 1,
- anon_sym_QMARK_DOT,
- ACTIONS(4943), 1,
- anon_sym_GT_GT,
- ACTIONS(4955), 1,
- anon_sym_PERCENT,
- ACTIONS(4957), 1,
- anon_sym_STAR_STAR,
- ACTIONS(4959), 1,
- anon_sym_LT,
- STATE(1447), 1,
- sym_type_arguments,
- STATE(5080), 1,
- sym_optional_chain,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(4091), 2,
- anon_sym_PLUS_PLUS,
- anon_sym_DASH_DASH,
- ACTIONS(4935), 2,
- anon_sym_STAR,
- anon_sym_SLASH,
- ACTIONS(4937), 2,
- anon_sym_in,
- anon_sym_GT,
- ACTIONS(4945), 2,
- anon_sym_GT_GT_GT,
- anon_sym_LT_LT,
- ACTIONS(4953), 2,
- anon_sym_PLUS,
- anon_sym_DASH,
- STATE(1757), 2,
- sym_template_string,
- sym_arguments,
- ACTIONS(4961), 3,
- anon_sym_LT_EQ,
- anon_sym_GT_EQ,
- anon_sym_instanceof,
- ACTIONS(4307), 5,
- anon_sym_BANG,
- anon_sym_AMP,
- anon_sym_PIPE,
- anon_sym_EQ_EQ,
- anon_sym_BANG_EQ,
- ACTIONS(4305), 12,
- sym__ternary_qmark,
- anon_sym_as,
- anon_sym_LBRACE,
- anon_sym_COMMA,
- anon_sym_AMP_AMP,
- anon_sym_PIPE_PIPE,
- anon_sym_CARET,
- anon_sym_EQ_EQ_EQ,
- anon_sym_BANG_EQ_EQ,
- anon_sym_QMARK_QMARK,
- anon_sym_satisfies,
- anon_sym_implements,
- [56971] = 28,
- ACTIONS(825), 1,
- anon_sym_BQUOTE,
- ACTIONS(3969), 1,
- anon_sym_LPAREN,
- ACTIONS(3971), 1,
- anon_sym_LBRACK,
- ACTIONS(3973), 1,
- anon_sym_DOT,
- ACTIONS(4059), 1,
- anon_sym_QMARK_DOT,
- ACTIONS(4307), 1,
- anon_sym_BANG,
- ACTIONS(4939), 1,
- anon_sym_AMP_AMP,
- ACTIONS(4941), 1,
- anon_sym_PIPE_PIPE,
- ACTIONS(4943), 1,
- anon_sym_GT_GT,
- ACTIONS(4947), 1,
- anon_sym_AMP,
- ACTIONS(4949), 1,
- anon_sym_CARET,
- ACTIONS(4951), 1,
- anon_sym_PIPE,
- ACTIONS(4955), 1,
- anon_sym_PERCENT,
- ACTIONS(4957), 1,
- anon_sym_STAR_STAR,
- ACTIONS(4959), 1,
- anon_sym_LT,
- STATE(1447), 1,
- sym_type_arguments,
- STATE(5080), 1,
- sym_optional_chain,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(4091), 2,
- anon_sym_PLUS_PLUS,
- anon_sym_DASH_DASH,
- ACTIONS(4935), 2,
- anon_sym_STAR,
- anon_sym_SLASH,
- ACTIONS(4937), 2,
- anon_sym_in,
- anon_sym_GT,
- ACTIONS(4945), 2,
- anon_sym_GT_GT_GT,
- anon_sym_LT_LT,
- ACTIONS(4953), 2,
- anon_sym_PLUS,
- anon_sym_DASH,
- ACTIONS(4963), 2,
- anon_sym_EQ_EQ,
- anon_sym_BANG_EQ,
- ACTIONS(4965), 2,
- anon_sym_EQ_EQ_EQ,
- anon_sym_BANG_EQ_EQ,
- STATE(1757), 2,
- sym_template_string,
- sym_arguments,
- ACTIONS(4961), 3,
- anon_sym_LT_EQ,
- anon_sym_GT_EQ,
- anon_sym_instanceof,
- ACTIONS(4305), 7,
- sym__ternary_qmark,
- anon_sym_as,
- anon_sym_LBRACE,
- anon_sym_COMMA,
- anon_sym_QMARK_QMARK,
- anon_sym_satisfies,
- anon_sym_implements,
- [57073] = 32,
- ACTIONS(825), 1,
- anon_sym_BQUOTE,
- ACTIONS(3969), 1,
- anon_sym_LPAREN,
- ACTIONS(3971), 1,
- anon_sym_LBRACK,
- ACTIONS(3973), 1,
- anon_sym_DOT,
- ACTIONS(4051), 1,
- anon_sym_as,
- ACTIONS(4055), 1,
- anon_sym_BANG,
- ACTIONS(4059), 1,
- anon_sym_QMARK_DOT,
- ACTIONS(4093), 1,
- anon_sym_satisfies,
- ACTIONS(4939), 1,
- anon_sym_AMP_AMP,
- ACTIONS(4941), 1,
- anon_sym_PIPE_PIPE,
- ACTIONS(4943), 1,
- anon_sym_GT_GT,
- ACTIONS(4947), 1,
- anon_sym_AMP,
- ACTIONS(4949), 1,
- anon_sym_CARET,
- ACTIONS(4951), 1,
- anon_sym_PIPE,
- ACTIONS(4955), 1,
- anon_sym_PERCENT,
- ACTIONS(4957), 1,
- anon_sym_STAR_STAR,
- ACTIONS(4959), 1,
- anon_sym_LT,
- ACTIONS(4967), 1,
- anon_sym_QMARK_QMARK,
- ACTIONS(4969), 1,
- sym__ternary_qmark,
- STATE(1447), 1,
- sym_type_arguments,
- STATE(5080), 1,
- sym_optional_chain,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(4091), 2,
- anon_sym_PLUS_PLUS,
- anon_sym_DASH_DASH,
- ACTIONS(4935), 2,
- anon_sym_STAR,
- anon_sym_SLASH,
- ACTIONS(4937), 2,
- anon_sym_in,
- anon_sym_GT,
- ACTIONS(4945), 2,
- anon_sym_GT_GT_GT,
- anon_sym_LT_LT,
- ACTIONS(4953), 2,
- anon_sym_PLUS,
- anon_sym_DASH,
- ACTIONS(4963), 2,
- anon_sym_EQ_EQ,
- anon_sym_BANG_EQ,
- ACTIONS(4965), 2,
- anon_sym_EQ_EQ_EQ,
- anon_sym_BANG_EQ_EQ,
- STATE(1757), 2,
- sym_template_string,
- sym_arguments,
- ACTIONS(4350), 3,
- anon_sym_LBRACE,
- anon_sym_COMMA,
- anon_sym_implements,
- ACTIONS(4961), 3,
- anon_sym_LT_EQ,
- anon_sym_GT_EQ,
- anon_sym_instanceof,
- [57183] = 32,
- ACTIONS(825), 1,
- anon_sym_BQUOTE,
- ACTIONS(3969), 1,
- anon_sym_LPAREN,
- ACTIONS(3971), 1,
- anon_sym_LBRACK,
- ACTIONS(3973), 1,
- anon_sym_DOT,
- ACTIONS(4051), 1,
- anon_sym_as,
- ACTIONS(4055), 1,
- anon_sym_BANG,
- ACTIONS(4059), 1,
- anon_sym_QMARK_DOT,
- ACTIONS(4093), 1,
- anon_sym_satisfies,
- ACTIONS(4939), 1,
- anon_sym_AMP_AMP,
- ACTIONS(4941), 1,
- anon_sym_PIPE_PIPE,
- ACTIONS(4943), 1,
- anon_sym_GT_GT,
- ACTIONS(4947), 1,
- anon_sym_AMP,
- ACTIONS(4949), 1,
- anon_sym_CARET,
- ACTIONS(4951), 1,
- anon_sym_PIPE,
- ACTIONS(4955), 1,
- anon_sym_PERCENT,
- ACTIONS(4957), 1,
- anon_sym_STAR_STAR,
- ACTIONS(4959), 1,
- anon_sym_LT,
- ACTIONS(4967), 1,
- anon_sym_QMARK_QMARK,
- ACTIONS(4969), 1,
- sym__ternary_qmark,
- STATE(1447), 1,
- sym_type_arguments,
- STATE(5080), 1,
- sym_optional_chain,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(4091), 2,
- anon_sym_PLUS_PLUS,
- anon_sym_DASH_DASH,
- ACTIONS(4935), 2,
- anon_sym_STAR,
- anon_sym_SLASH,
- ACTIONS(4937), 2,
- anon_sym_in,
- anon_sym_GT,
- ACTIONS(4945), 2,
- anon_sym_GT_GT_GT,
- anon_sym_LT_LT,
- ACTIONS(4953), 2,
- anon_sym_PLUS,
- anon_sym_DASH,
- ACTIONS(4963), 2,
- anon_sym_EQ_EQ,
- anon_sym_BANG_EQ,
- ACTIONS(4965), 2,
- anon_sym_EQ_EQ_EQ,
- anon_sym_BANG_EQ_EQ,
- STATE(1757), 2,
- sym_template_string,
- sym_arguments,
- ACTIONS(4352), 3,
- anon_sym_LBRACE,
- anon_sym_COMMA,
- anon_sym_implements,
- ACTIONS(4961), 3,
- anon_sym_LT_EQ,
- anon_sym_GT_EQ,
- anon_sym_instanceof,
- [57293] = 32,
- ACTIONS(825), 1,
- anon_sym_BQUOTE,
- ACTIONS(3969), 1,
- anon_sym_LPAREN,
- ACTIONS(3971), 1,
- anon_sym_LBRACK,
- ACTIONS(3973), 1,
- anon_sym_DOT,
- ACTIONS(4051), 1,
- anon_sym_as,
- ACTIONS(4055), 1,
- anon_sym_BANG,
- ACTIONS(4059), 1,
- anon_sym_QMARK_DOT,
- ACTIONS(4093), 1,
- anon_sym_satisfies,
- ACTIONS(4939), 1,
- anon_sym_AMP_AMP,
- ACTIONS(4941), 1,
- anon_sym_PIPE_PIPE,
- ACTIONS(4943), 1,
- anon_sym_GT_GT,
- ACTIONS(4947), 1,
- anon_sym_AMP,
- ACTIONS(4949), 1,
- anon_sym_CARET,
- ACTIONS(4951), 1,
- anon_sym_PIPE,
- ACTIONS(4955), 1,
- anon_sym_PERCENT,
- ACTIONS(4957), 1,
- anon_sym_STAR_STAR,
- ACTIONS(4959), 1,
- anon_sym_LT,
- ACTIONS(4967), 1,
- anon_sym_QMARK_QMARK,
- ACTIONS(4969), 1,
- sym__ternary_qmark,
- STATE(1447), 1,
- sym_type_arguments,
- STATE(5080), 1,
- sym_optional_chain,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(4091), 2,
- anon_sym_PLUS_PLUS,
- anon_sym_DASH_DASH,
- ACTIONS(4935), 2,
- anon_sym_STAR,
- anon_sym_SLASH,
- ACTIONS(4937), 2,
- anon_sym_in,
- anon_sym_GT,
- ACTIONS(4945), 2,
- anon_sym_GT_GT_GT,
- anon_sym_LT_LT,
- ACTIONS(4953), 2,
- anon_sym_PLUS,
- anon_sym_DASH,
- ACTIONS(4963), 2,
- anon_sym_EQ_EQ,
- anon_sym_BANG_EQ,
- ACTIONS(4965), 2,
- anon_sym_EQ_EQ_EQ,
- anon_sym_BANG_EQ_EQ,
- STATE(1757), 2,
- sym_template_string,
- sym_arguments,
- ACTIONS(4370), 3,
- anon_sym_LBRACE,
- anon_sym_COMMA,
- anon_sym_implements,
- ACTIONS(4961), 3,
- anon_sym_LT_EQ,
- anon_sym_GT_EQ,
- anon_sym_instanceof,
- [57403] = 32,
- ACTIONS(825), 1,
- anon_sym_BQUOTE,
- ACTIONS(3969), 1,
- anon_sym_LPAREN,
- ACTIONS(3971), 1,
- anon_sym_LBRACK,
- ACTIONS(3973), 1,
- anon_sym_DOT,
- ACTIONS(4051), 1,
- anon_sym_as,
- ACTIONS(4055), 1,
- anon_sym_BANG,
- ACTIONS(4059), 1,
- anon_sym_QMARK_DOT,
- ACTIONS(4093), 1,
- anon_sym_satisfies,
- ACTIONS(4939), 1,
- anon_sym_AMP_AMP,
- ACTIONS(4941), 1,
- anon_sym_PIPE_PIPE,
- ACTIONS(4943), 1,
- anon_sym_GT_GT,
- ACTIONS(4947), 1,
- anon_sym_AMP,
- ACTIONS(4949), 1,
- anon_sym_CARET,
- ACTIONS(4951), 1,
- anon_sym_PIPE,
- ACTIONS(4955), 1,
- anon_sym_PERCENT,
- ACTIONS(4957), 1,
- anon_sym_STAR_STAR,
- ACTIONS(4959), 1,
- anon_sym_LT,
- ACTIONS(4967), 1,
- anon_sym_QMARK_QMARK,
- ACTIONS(4969), 1,
- sym__ternary_qmark,
- STATE(1447), 1,
- sym_type_arguments,
- STATE(5080), 1,
- sym_optional_chain,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(4091), 2,
- anon_sym_PLUS_PLUS,
- anon_sym_DASH_DASH,
- ACTIONS(4935), 2,
- anon_sym_STAR,
- anon_sym_SLASH,
- ACTIONS(4937), 2,
- anon_sym_in,
- anon_sym_GT,
- ACTIONS(4945), 2,
- anon_sym_GT_GT_GT,
- anon_sym_LT_LT,
- ACTIONS(4953), 2,
- anon_sym_PLUS,
- anon_sym_DASH,
- ACTIONS(4963), 2,
- anon_sym_EQ_EQ,
- anon_sym_BANG_EQ,
- ACTIONS(4965), 2,
- anon_sym_EQ_EQ_EQ,
- anon_sym_BANG_EQ_EQ,
- STATE(1757), 2,
- sym_template_string,
- sym_arguments,
- ACTIONS(4372), 3,
- anon_sym_LBRACE,
- anon_sym_COMMA,
- anon_sym_implements,
- ACTIONS(4961), 3,
- anon_sym_LT_EQ,
- anon_sym_GT_EQ,
- anon_sym_instanceof,
- [57513] = 32,
- ACTIONS(825), 1,
- anon_sym_BQUOTE,
- ACTIONS(3969), 1,
- anon_sym_LPAREN,
- ACTIONS(3971), 1,
- anon_sym_LBRACK,
- ACTIONS(3973), 1,
- anon_sym_DOT,
- ACTIONS(4051), 1,
- anon_sym_as,
- ACTIONS(4055), 1,
- anon_sym_BANG,
- ACTIONS(4059), 1,
- anon_sym_QMARK_DOT,
- ACTIONS(4093), 1,
- anon_sym_satisfies,
- ACTIONS(4939), 1,
- anon_sym_AMP_AMP,
- ACTIONS(4941), 1,
- anon_sym_PIPE_PIPE,
- ACTIONS(4943), 1,
- anon_sym_GT_GT,
- ACTIONS(4947), 1,
- anon_sym_AMP,
- ACTIONS(4949), 1,
- anon_sym_CARET,
- ACTIONS(4951), 1,
- anon_sym_PIPE,
- ACTIONS(4955), 1,
- anon_sym_PERCENT,
- ACTIONS(4957), 1,
- anon_sym_STAR_STAR,
- ACTIONS(4959), 1,
- anon_sym_LT,
- ACTIONS(4967), 1,
- anon_sym_QMARK_QMARK,
- ACTIONS(4969), 1,
- sym__ternary_qmark,
- STATE(1447), 1,
- sym_type_arguments,
- STATE(5080), 1,
- sym_optional_chain,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(4091), 2,
- anon_sym_PLUS_PLUS,
- anon_sym_DASH_DASH,
- ACTIONS(4935), 2,
- anon_sym_STAR,
- anon_sym_SLASH,
- ACTIONS(4937), 2,
- anon_sym_in,
- anon_sym_GT,
- ACTIONS(4945), 2,
- anon_sym_GT_GT_GT,
- anon_sym_LT_LT,
- ACTIONS(4953), 2,
- anon_sym_PLUS,
- anon_sym_DASH,
- ACTIONS(4963), 2,
- anon_sym_EQ_EQ,
- anon_sym_BANG_EQ,
- ACTIONS(4965), 2,
- anon_sym_EQ_EQ_EQ,
- anon_sym_BANG_EQ_EQ,
- STATE(1757), 2,
- sym_template_string,
- sym_arguments,
- ACTIONS(4374), 3,
- anon_sym_LBRACE,
- anon_sym_COMMA,
- anon_sym_implements,
- ACTIONS(4961), 3,
- anon_sym_LT_EQ,
- anon_sym_GT_EQ,
- anon_sym_instanceof,
- [57623] = 32,
- ACTIONS(825), 1,
- anon_sym_BQUOTE,
- ACTIONS(3969), 1,
- anon_sym_LPAREN,
- ACTIONS(3971), 1,
- anon_sym_LBRACK,
- ACTIONS(3973), 1,
- anon_sym_DOT,
- ACTIONS(4051), 1,
- anon_sym_as,
- ACTIONS(4055), 1,
- anon_sym_BANG,
- ACTIONS(4059), 1,
- anon_sym_QMARK_DOT,
- ACTIONS(4093), 1,
- anon_sym_satisfies,
- ACTIONS(4939), 1,
- anon_sym_AMP_AMP,
- ACTIONS(4941), 1,
- anon_sym_PIPE_PIPE,
- ACTIONS(4943), 1,
- anon_sym_GT_GT,
- ACTIONS(4947), 1,
- anon_sym_AMP,
- ACTIONS(4949), 1,
- anon_sym_CARET,
- ACTIONS(4951), 1,
- anon_sym_PIPE,
- ACTIONS(4955), 1,
- anon_sym_PERCENT,
- ACTIONS(4957), 1,
- anon_sym_STAR_STAR,
- ACTIONS(4959), 1,
- anon_sym_LT,
- ACTIONS(4967), 1,
- anon_sym_QMARK_QMARK,
- ACTIONS(4969), 1,
- sym__ternary_qmark,
- STATE(1447), 1,
- sym_type_arguments,
- STATE(5080), 1,
- sym_optional_chain,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(4091), 2,
- anon_sym_PLUS_PLUS,
- anon_sym_DASH_DASH,
- ACTIONS(4935), 2,
- anon_sym_STAR,
- anon_sym_SLASH,
- ACTIONS(4937), 2,
- anon_sym_in,
- anon_sym_GT,
- ACTIONS(4945), 2,
- anon_sym_GT_GT_GT,
- anon_sym_LT_LT,
- ACTIONS(4953), 2,
- anon_sym_PLUS,
- anon_sym_DASH,
- ACTIONS(4963), 2,
- anon_sym_EQ_EQ,
- anon_sym_BANG_EQ,
- ACTIONS(4965), 2,
- anon_sym_EQ_EQ_EQ,
- anon_sym_BANG_EQ_EQ,
- STATE(1757), 2,
- sym_template_string,
- sym_arguments,
- ACTIONS(4376), 3,
- anon_sym_LBRACE,
- anon_sym_COMMA,
- anon_sym_implements,
- ACTIONS(4961), 3,
- anon_sym_LT_EQ,
- anon_sym_GT_EQ,
- anon_sym_instanceof,
- [57733] = 32,
- ACTIONS(825), 1,
- anon_sym_BQUOTE,
- ACTIONS(3969), 1,
- anon_sym_LPAREN,
- ACTIONS(3971), 1,
- anon_sym_LBRACK,
- ACTIONS(3973), 1,
- anon_sym_DOT,
- ACTIONS(4051), 1,
- anon_sym_as,
- ACTIONS(4055), 1,
- anon_sym_BANG,
- ACTIONS(4059), 1,
- anon_sym_QMARK_DOT,
- ACTIONS(4093), 1,
- anon_sym_satisfies,
- ACTIONS(4939), 1,
- anon_sym_AMP_AMP,
- ACTIONS(4941), 1,
- anon_sym_PIPE_PIPE,
- ACTIONS(4943), 1,
- anon_sym_GT_GT,
- ACTIONS(4947), 1,
- anon_sym_AMP,
- ACTIONS(4949), 1,
- anon_sym_CARET,
- ACTIONS(4951), 1,
- anon_sym_PIPE,
- ACTIONS(4955), 1,
- anon_sym_PERCENT,
- ACTIONS(4957), 1,
- anon_sym_STAR_STAR,
- ACTIONS(4959), 1,
- anon_sym_LT,
- ACTIONS(4967), 1,
- anon_sym_QMARK_QMARK,
- ACTIONS(4969), 1,
- sym__ternary_qmark,
- STATE(1447), 1,
- sym_type_arguments,
- STATE(5080), 1,
- sym_optional_chain,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(4091), 2,
- anon_sym_PLUS_PLUS,
- anon_sym_DASH_DASH,
- ACTIONS(4935), 2,
- anon_sym_STAR,
- anon_sym_SLASH,
- ACTIONS(4937), 2,
- anon_sym_in,
- anon_sym_GT,
- ACTIONS(4945), 2,
- anon_sym_GT_GT_GT,
- anon_sym_LT_LT,
- ACTIONS(4953), 2,
- anon_sym_PLUS,
- anon_sym_DASH,
- ACTIONS(4963), 2,
- anon_sym_EQ_EQ,
- anon_sym_BANG_EQ,
- ACTIONS(4965), 2,
- anon_sym_EQ_EQ_EQ,
- anon_sym_BANG_EQ_EQ,
- STATE(1757), 2,
- sym_template_string,
- sym_arguments,
- ACTIONS(4053), 3,
- anon_sym_LBRACE,
- anon_sym_COMMA,
- anon_sym_implements,
- ACTIONS(4961), 3,
- anon_sym_LT_EQ,
- anon_sym_GT_EQ,
- anon_sym_instanceof,
- [57843] = 32,
- ACTIONS(825), 1,
- anon_sym_BQUOTE,
- ACTIONS(3969), 1,
- anon_sym_LPAREN,
- ACTIONS(3971), 1,
- anon_sym_LBRACK,
- ACTIONS(3973), 1,
- anon_sym_DOT,
- ACTIONS(4051), 1,
- anon_sym_as,
- ACTIONS(4055), 1,
- anon_sym_BANG,
- ACTIONS(4059), 1,
- anon_sym_QMARK_DOT,
- ACTIONS(4093), 1,
- anon_sym_satisfies,
- ACTIONS(4939), 1,
- anon_sym_AMP_AMP,
- ACTIONS(4941), 1,
- anon_sym_PIPE_PIPE,
- ACTIONS(4943), 1,
- anon_sym_GT_GT,
- ACTIONS(4947), 1,
- anon_sym_AMP,
- ACTIONS(4949), 1,
- anon_sym_CARET,
- ACTIONS(4951), 1,
- anon_sym_PIPE,
- ACTIONS(4955), 1,
- anon_sym_PERCENT,
- ACTIONS(4957), 1,
- anon_sym_STAR_STAR,
- ACTIONS(4959), 1,
- anon_sym_LT,
- ACTIONS(4967), 1,
- anon_sym_QMARK_QMARK,
- ACTIONS(4969), 1,
- sym__ternary_qmark,
- STATE(1447), 1,
- sym_type_arguments,
- STATE(5080), 1,
- sym_optional_chain,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(4091), 2,
- anon_sym_PLUS_PLUS,
- anon_sym_DASH_DASH,
- ACTIONS(4935), 2,
- anon_sym_STAR,
- anon_sym_SLASH,
- ACTIONS(4937), 2,
- anon_sym_in,
- anon_sym_GT,
- ACTIONS(4945), 2,
- anon_sym_GT_GT_GT,
- anon_sym_LT_LT,
- ACTIONS(4953), 2,
- anon_sym_PLUS,
- anon_sym_DASH,
- ACTIONS(4963), 2,
- anon_sym_EQ_EQ,
- anon_sym_BANG_EQ,
- ACTIONS(4965), 2,
- anon_sym_EQ_EQ_EQ,
- anon_sym_BANG_EQ_EQ,
- STATE(1757), 2,
- sym_template_string,
- sym_arguments,
- ACTIONS(4388), 3,
- anon_sym_LBRACE,
- anon_sym_COMMA,
- anon_sym_implements,
- ACTIONS(4961), 3,
- anon_sym_LT_EQ,
- anon_sym_GT_EQ,
- anon_sym_instanceof,
- [57953] = 34,
- ACTIONS(825), 1,
- anon_sym_BQUOTE,
- ACTIONS(3969), 1,
- anon_sym_LPAREN,
- ACTIONS(3971), 1,
- anon_sym_LBRACK,
- ACTIONS(3973), 1,
- anon_sym_DOT,
- ACTIONS(4051), 1,
- anon_sym_as,
- ACTIONS(4055), 1,
- anon_sym_BANG,
- ACTIONS(4059), 1,
- anon_sym_QMARK_DOT,
- ACTIONS(4061), 1,
- anon_sym_AMP_AMP,
- ACTIONS(4063), 1,
- anon_sym_PIPE_PIPE,
- ACTIONS(4065), 1,
- anon_sym_GT_GT,
- ACTIONS(4069), 1,
- anon_sym_AMP,
- ACTIONS(4071), 1,
- anon_sym_CARET,
- ACTIONS(4073), 1,
- anon_sym_PIPE,
- ACTIONS(4077), 1,
- anon_sym_PERCENT,
- ACTIONS(4079), 1,
- anon_sym_STAR_STAR,
- ACTIONS(4081), 1,
- anon_sym_LT,
- ACTIONS(4089), 1,
- anon_sym_QMARK_QMARK,
- ACTIONS(4093), 1,
- anon_sym_satisfies,
- ACTIONS(4095), 1,
- sym__ternary_qmark,
- ACTIONS(4267), 1,
- anon_sym_COMMA,
- ACTIONS(5062), 1,
- anon_sym_RPAREN,
- STATE(1447), 1,
- sym_type_arguments,
- STATE(3803), 1,
- aux_sym_sequence_expression_repeat1,
- STATE(5080), 1,
- sym_optional_chain,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(4049), 2,
- anon_sym_STAR,
- anon_sym_SLASH,
- ACTIONS(4057), 2,
- anon_sym_in,
- anon_sym_GT,
- ACTIONS(4067), 2,
- anon_sym_GT_GT_GT,
- anon_sym_LT_LT,
- ACTIONS(4075), 2,
- anon_sym_PLUS,
- anon_sym_DASH,
- ACTIONS(4085), 2,
- anon_sym_EQ_EQ,
- anon_sym_BANG_EQ,
- ACTIONS(4087), 2,
- anon_sym_EQ_EQ_EQ,
- anon_sym_BANG_EQ_EQ,
- ACTIONS(4091), 2,
- anon_sym_PLUS_PLUS,
- anon_sym_DASH_DASH,
- STATE(1757), 2,
- sym_template_string,
- sym_arguments,
- ACTIONS(4083), 3,
- anon_sym_LT_EQ,
- anon_sym_GT_EQ,
- anon_sym_instanceof,
- [58067] = 34,
- ACTIONS(825), 1,
- anon_sym_BQUOTE,
- ACTIONS(1931), 1,
- anon_sym_COMMA,
- ACTIONS(3969), 1,
- anon_sym_LPAREN,
- ACTIONS(3971), 1,
- anon_sym_LBRACK,
- ACTIONS(3973), 1,
- anon_sym_DOT,
- ACTIONS(4051), 1,
- anon_sym_as,
- ACTIONS(4055), 1,
- anon_sym_BANG,
- ACTIONS(4059), 1,
- anon_sym_QMARK_DOT,
- ACTIONS(4061), 1,
- anon_sym_AMP_AMP,
- ACTIONS(4063), 1,
- anon_sym_PIPE_PIPE,
- ACTIONS(4065), 1,
- anon_sym_GT_GT,
- ACTIONS(4069), 1,
- anon_sym_AMP,
- ACTIONS(4071), 1,
- anon_sym_CARET,
- ACTIONS(4073), 1,
- anon_sym_PIPE,
- ACTIONS(4077), 1,
- anon_sym_PERCENT,
- ACTIONS(4079), 1,
- anon_sym_STAR_STAR,
- ACTIONS(4081), 1,
- anon_sym_LT,
- ACTIONS(4089), 1,
- anon_sym_QMARK_QMARK,
- ACTIONS(4093), 1,
- anon_sym_satisfies,
- ACTIONS(4095), 1,
- sym__ternary_qmark,
- ACTIONS(5064), 1,
- anon_sym_RBRACK,
- STATE(1447), 1,
- sym_type_arguments,
- STATE(5080), 1,
- sym_optional_chain,
- STATE(5170), 1,
- aux_sym_array_repeat1,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(4049), 2,
- anon_sym_STAR,
- anon_sym_SLASH,
- ACTIONS(4057), 2,
- anon_sym_in,
- anon_sym_GT,
- ACTIONS(4067), 2,
- anon_sym_GT_GT_GT,
- anon_sym_LT_LT,
- ACTIONS(4075), 2,
- anon_sym_PLUS,
- anon_sym_DASH,
- ACTIONS(4085), 2,
- anon_sym_EQ_EQ,
- anon_sym_BANG_EQ,
- ACTIONS(4087), 2,
- anon_sym_EQ_EQ_EQ,
- anon_sym_BANG_EQ_EQ,
- ACTIONS(4091), 2,
- anon_sym_PLUS_PLUS,
- anon_sym_DASH_DASH,
- STATE(1757), 2,
- sym_template_string,
- sym_arguments,
- ACTIONS(4083), 3,
- anon_sym_LT_EQ,
- anon_sym_GT_EQ,
- anon_sym_instanceof,
- [58181] = 34,
- ACTIONS(825), 1,
- anon_sym_BQUOTE,
- ACTIONS(3969), 1,
- anon_sym_LPAREN,
- ACTIONS(3971), 1,
- anon_sym_LBRACK,
- ACTIONS(3973), 1,
- anon_sym_DOT,
- ACTIONS(4051), 1,
- anon_sym_as,
- ACTIONS(4055), 1,
- anon_sym_BANG,
- ACTIONS(4059), 1,
- anon_sym_QMARK_DOT,
- ACTIONS(4061), 1,
- anon_sym_AMP_AMP,
- ACTIONS(4063), 1,
- anon_sym_PIPE_PIPE,
- ACTIONS(4065), 1,
- anon_sym_GT_GT,
- ACTIONS(4069), 1,
- anon_sym_AMP,
- ACTIONS(4071), 1,
- anon_sym_CARET,
- ACTIONS(4073), 1,
- anon_sym_PIPE,
- ACTIONS(4077), 1,
- anon_sym_PERCENT,
- ACTIONS(4079), 1,
- anon_sym_STAR_STAR,
- ACTIONS(4081), 1,
- anon_sym_LT,
- ACTIONS(4089), 1,
- anon_sym_QMARK_QMARK,
- ACTIONS(4093), 1,
- anon_sym_satisfies,
- ACTIONS(4095), 1,
- sym__ternary_qmark,
- ACTIONS(4267), 1,
- anon_sym_COMMA,
- ACTIONS(5066), 1,
- anon_sym_RPAREN,
- STATE(1447), 1,
- sym_type_arguments,
- STATE(3803), 1,
- aux_sym_sequence_expression_repeat1,
- STATE(5080), 1,
- sym_optional_chain,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(4049), 2,
- anon_sym_STAR,
- anon_sym_SLASH,
- ACTIONS(4057), 2,
- anon_sym_in,
- anon_sym_GT,
- ACTIONS(4067), 2,
- anon_sym_GT_GT_GT,
- anon_sym_LT_LT,
- ACTIONS(4075), 2,
- anon_sym_PLUS,
- anon_sym_DASH,
- ACTIONS(4085), 2,
- anon_sym_EQ_EQ,
- anon_sym_BANG_EQ,
- ACTIONS(4087), 2,
- anon_sym_EQ_EQ_EQ,
- anon_sym_BANG_EQ_EQ,
- ACTIONS(4091), 2,
- anon_sym_PLUS_PLUS,
- anon_sym_DASH_DASH,
- STATE(1757), 2,
- sym_template_string,
- sym_arguments,
- ACTIONS(4083), 3,
- anon_sym_LT_EQ,
- anon_sym_GT_EQ,
- anon_sym_instanceof,
- [58295] = 34,
- ACTIONS(825), 1,
- anon_sym_BQUOTE,
- ACTIONS(3969), 1,
- anon_sym_LPAREN,
- ACTIONS(3971), 1,
- anon_sym_LBRACK,
- ACTIONS(3973), 1,
- anon_sym_DOT,
- ACTIONS(4051), 1,
- anon_sym_as,
- ACTIONS(4055), 1,
- anon_sym_BANG,
- ACTIONS(4059), 1,
- anon_sym_QMARK_DOT,
- ACTIONS(4061), 1,
- anon_sym_AMP_AMP,
- ACTIONS(4063), 1,
- anon_sym_PIPE_PIPE,
- ACTIONS(4065), 1,
- anon_sym_GT_GT,
- ACTIONS(4069), 1,
- anon_sym_AMP,
- ACTIONS(4071), 1,
- anon_sym_CARET,
- ACTIONS(4073), 1,
- anon_sym_PIPE,
- ACTIONS(4077), 1,
- anon_sym_PERCENT,
- ACTIONS(4079), 1,
- anon_sym_STAR_STAR,
- ACTIONS(4081), 1,
- anon_sym_LT,
- ACTIONS(4089), 1,
- anon_sym_QMARK_QMARK,
- ACTIONS(4093), 1,
- anon_sym_satisfies,
- ACTIONS(4095), 1,
- sym__ternary_qmark,
- ACTIONS(4267), 1,
- anon_sym_COMMA,
- ACTIONS(5068), 1,
- anon_sym_RPAREN,
- STATE(1447), 1,
- sym_type_arguments,
- STATE(3803), 1,
- aux_sym_sequence_expression_repeat1,
- STATE(5080), 1,
- sym_optional_chain,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(4049), 2,
- anon_sym_STAR,
- anon_sym_SLASH,
- ACTIONS(4057), 2,
- anon_sym_in,
- anon_sym_GT,
- ACTIONS(4067), 2,
- anon_sym_GT_GT_GT,
- anon_sym_LT_LT,
- ACTIONS(4075), 2,
- anon_sym_PLUS,
- anon_sym_DASH,
- ACTIONS(4085), 2,
- anon_sym_EQ_EQ,
- anon_sym_BANG_EQ,
- ACTIONS(4087), 2,
- anon_sym_EQ_EQ_EQ,
- anon_sym_BANG_EQ_EQ,
- ACTIONS(4091), 2,
- anon_sym_PLUS_PLUS,
- anon_sym_DASH_DASH,
- STATE(1757), 2,
- sym_template_string,
- sym_arguments,
- ACTIONS(4083), 3,
- anon_sym_LT_EQ,
- anon_sym_GT_EQ,
- anon_sym_instanceof,
- [58409] = 34,
- ACTIONS(825), 1,
- anon_sym_BQUOTE,
- ACTIONS(3969), 1,
- anon_sym_LPAREN,
- ACTIONS(3971), 1,
- anon_sym_LBRACK,
- ACTIONS(3973), 1,
- anon_sym_DOT,
- ACTIONS(4051), 1,
- anon_sym_as,
- ACTIONS(4055), 1,
- anon_sym_BANG,
- ACTIONS(4059), 1,
- anon_sym_QMARK_DOT,
- ACTIONS(4061), 1,
- anon_sym_AMP_AMP,
- ACTIONS(4063), 1,
- anon_sym_PIPE_PIPE,
- ACTIONS(4065), 1,
- anon_sym_GT_GT,
- ACTIONS(4069), 1,
- anon_sym_AMP,
- ACTIONS(4071), 1,
- anon_sym_CARET,
- ACTIONS(4073), 1,
- anon_sym_PIPE,
- ACTIONS(4077), 1,
- anon_sym_PERCENT,
- ACTIONS(4079), 1,
- anon_sym_STAR_STAR,
- ACTIONS(4081), 1,
- anon_sym_LT,
- ACTIONS(4089), 1,
- anon_sym_QMARK_QMARK,
- ACTIONS(4093), 1,
- anon_sym_satisfies,
- ACTIONS(4095), 1,
- sym__ternary_qmark,
- ACTIONS(4267), 1,
- anon_sym_COMMA,
- ACTIONS(5070), 1,
- anon_sym_RPAREN,
- STATE(1447), 1,
- sym_type_arguments,
- STATE(3803), 1,
- aux_sym_sequence_expression_repeat1,
- STATE(5080), 1,
- sym_optional_chain,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(4049), 2,
- anon_sym_STAR,
- anon_sym_SLASH,
- ACTIONS(4057), 2,
- anon_sym_in,
- anon_sym_GT,
- ACTIONS(4067), 2,
- anon_sym_GT_GT_GT,
- anon_sym_LT_LT,
- ACTIONS(4075), 2,
- anon_sym_PLUS,
- anon_sym_DASH,
- ACTIONS(4085), 2,
- anon_sym_EQ_EQ,
- anon_sym_BANG_EQ,
- ACTIONS(4087), 2,
- anon_sym_EQ_EQ_EQ,
- anon_sym_BANG_EQ_EQ,
- ACTIONS(4091), 2,
- anon_sym_PLUS_PLUS,
- anon_sym_DASH_DASH,
- STATE(1757), 2,
- sym_template_string,
- sym_arguments,
- ACTIONS(4083), 3,
- anon_sym_LT_EQ,
- anon_sym_GT_EQ,
- anon_sym_instanceof,
- [58523] = 34,
- ACTIONS(825), 1,
- anon_sym_BQUOTE,
- ACTIONS(3969), 1,
- anon_sym_LPAREN,
- ACTIONS(3971), 1,
- anon_sym_LBRACK,
- ACTIONS(3973), 1,
- anon_sym_DOT,
- ACTIONS(4051), 1,
- anon_sym_as,
- ACTIONS(4055), 1,
- anon_sym_BANG,
- ACTIONS(4059), 1,
- anon_sym_QMARK_DOT,
- ACTIONS(4061), 1,
- anon_sym_AMP_AMP,
- ACTIONS(4063), 1,
- anon_sym_PIPE_PIPE,
- ACTIONS(4065), 1,
- anon_sym_GT_GT,
- ACTIONS(4069), 1,
- anon_sym_AMP,
- ACTIONS(4071), 1,
- anon_sym_CARET,
- ACTIONS(4073), 1,
- anon_sym_PIPE,
- ACTIONS(4077), 1,
- anon_sym_PERCENT,
- ACTIONS(4079), 1,
- anon_sym_STAR_STAR,
- ACTIONS(4081), 1,
- anon_sym_LT,
- ACTIONS(4089), 1,
- anon_sym_QMARK_QMARK,
- ACTIONS(4093), 1,
- anon_sym_satisfies,
- ACTIONS(4095), 1,
- sym__ternary_qmark,
- ACTIONS(4267), 1,
- anon_sym_COMMA,
- ACTIONS(5072), 1,
- anon_sym_RPAREN,
- STATE(1447), 1,
- sym_type_arguments,
- STATE(3803), 1,
- aux_sym_sequence_expression_repeat1,
- STATE(5080), 1,
- sym_optional_chain,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(4049), 2,
- anon_sym_STAR,
- anon_sym_SLASH,
- ACTIONS(4057), 2,
- anon_sym_in,
- anon_sym_GT,
- ACTIONS(4067), 2,
- anon_sym_GT_GT_GT,
- anon_sym_LT_LT,
- ACTIONS(4075), 2,
- anon_sym_PLUS,
- anon_sym_DASH,
- ACTIONS(4085), 2,
- anon_sym_EQ_EQ,
- anon_sym_BANG_EQ,
- ACTIONS(4087), 2,
- anon_sym_EQ_EQ_EQ,
- anon_sym_BANG_EQ_EQ,
- ACTIONS(4091), 2,
- anon_sym_PLUS_PLUS,
- anon_sym_DASH_DASH,
- STATE(1757), 2,
- sym_template_string,
- sym_arguments,
- ACTIONS(4083), 3,
- anon_sym_LT_EQ,
- anon_sym_GT_EQ,
- anon_sym_instanceof,
- [58637] = 13,
- ACTIONS(825), 1,
- anon_sym_BQUOTE,
- ACTIONS(3969), 1,
- anon_sym_LPAREN,
- ACTIONS(3971), 1,
- anon_sym_LBRACK,
- ACTIONS(3973), 1,
- anon_sym_DOT,
- ACTIONS(4059), 1,
- anon_sym_QMARK_DOT,
- ACTIONS(5074), 1,
- anon_sym_LT,
- STATE(1447), 1,
- sym_type_arguments,
- STATE(5080), 1,
- sym_optional_chain,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(4091), 2,
- anon_sym_PLUS_PLUS,
- anon_sym_DASH_DASH,
- STATE(1757), 2,
- sym_template_string,
- sym_arguments,
- ACTIONS(4170), 12,
- anon_sym_STAR,
- anon_sym_BANG,
- anon_sym_in,
- anon_sym_GT,
- anon_sym_GT_GT,
- anon_sym_AMP,
- anon_sym_PIPE,
- anon_sym_PLUS,
- anon_sym_DASH,
- anon_sym_SLASH,
- anon_sym_EQ_EQ,
- anon_sym_BANG_EQ,
- ACTIONS(4172), 19,
- sym__ternary_qmark,
- anon_sym_as,
- anon_sym_LBRACE,
- anon_sym_COMMA,
- anon_sym_AMP_AMP,
- anon_sym_PIPE_PIPE,
- anon_sym_GT_GT_GT,
- anon_sym_LT_LT,
- anon_sym_CARET,
- anon_sym_PERCENT,
- anon_sym_STAR_STAR,
- anon_sym_LT_EQ,
- anon_sym_EQ_EQ_EQ,
- anon_sym_BANG_EQ_EQ,
- anon_sym_GT_EQ,
- anon_sym_QMARK_QMARK,
- anon_sym_instanceof,
- anon_sym_satisfies,
- anon_sym_implements,
- [58709] = 16,
- ACTIONS(825), 1,
- anon_sym_BQUOTE,
- ACTIONS(3969), 1,
- anon_sym_LPAREN,
- ACTIONS(3971), 1,
- anon_sym_LBRACK,
- ACTIONS(3973), 1,
- anon_sym_DOT,
- ACTIONS(4051), 1,
- anon_sym_as,
- ACTIONS(4055), 1,
- anon_sym_BANG,
- ACTIONS(4059), 1,
- anon_sym_QMARK_DOT,
- ACTIONS(4093), 1,
- anon_sym_satisfies,
- ACTIONS(5077), 1,
- anon_sym_LT,
- STATE(1447), 1,
- sym_type_arguments,
- STATE(5080), 1,
- sym_optional_chain,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(4091), 2,
- anon_sym_PLUS_PLUS,
- anon_sym_DASH_DASH,
- STATE(1757), 2,
- sym_template_string,
- sym_arguments,
- ACTIONS(4199), 11,
- anon_sym_STAR,
- anon_sym_in,
- anon_sym_GT,
- anon_sym_GT_GT,
- anon_sym_AMP,
- anon_sym_PIPE,
- anon_sym_PLUS,
- anon_sym_DASH,
- anon_sym_SLASH,
- anon_sym_EQ_EQ,
- anon_sym_BANG_EQ,
- ACTIONS(4201), 17,
- sym__ternary_qmark,
- anon_sym_LBRACE,
- anon_sym_COMMA,
- anon_sym_AMP_AMP,
- anon_sym_PIPE_PIPE,
- anon_sym_GT_GT_GT,
- anon_sym_LT_LT,
- anon_sym_CARET,
- anon_sym_PERCENT,
- anon_sym_STAR_STAR,
- anon_sym_LT_EQ,
- anon_sym_EQ_EQ_EQ,
- anon_sym_BANG_EQ_EQ,
- anon_sym_GT_EQ,
- anon_sym_QMARK_QMARK,
- anon_sym_instanceof,
- anon_sym_implements,
- [58787] = 12,
- ACTIONS(825), 1,
- anon_sym_BQUOTE,
- ACTIONS(3969), 1,
- anon_sym_LPAREN,
- ACTIONS(3971), 1,
- anon_sym_LBRACK,
- ACTIONS(3973), 1,
- anon_sym_DOT,
- ACTIONS(4059), 1,
- anon_sym_QMARK_DOT,
- ACTIONS(5080), 1,
- anon_sym_LT,
- STATE(1447), 1,
- sym_type_arguments,
- STATE(5080), 1,
- sym_optional_chain,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- STATE(1757), 2,
- sym_template_string,
- sym_arguments,
- ACTIONS(4230), 12,
- anon_sym_STAR,
- anon_sym_BANG,
- anon_sym_in,
- anon_sym_GT,
- anon_sym_GT_GT,
- anon_sym_AMP,
- anon_sym_PIPE,
- anon_sym_PLUS,
- anon_sym_DASH,
- anon_sym_SLASH,
- anon_sym_EQ_EQ,
- anon_sym_BANG_EQ,
- ACTIONS(4232), 21,
- sym__ternary_qmark,
- anon_sym_as,
- anon_sym_LBRACE,
- anon_sym_COMMA,
- anon_sym_AMP_AMP,
- anon_sym_PIPE_PIPE,
- anon_sym_GT_GT_GT,
- anon_sym_LT_LT,
- anon_sym_CARET,
- anon_sym_PERCENT,
- anon_sym_STAR_STAR,
- anon_sym_LT_EQ,
- anon_sym_EQ_EQ_EQ,
- anon_sym_BANG_EQ_EQ,
- anon_sym_GT_EQ,
- anon_sym_QMARK_QMARK,
- anon_sym_instanceof,
- anon_sym_PLUS_PLUS,
- anon_sym_DASH_DASH,
- anon_sym_satisfies,
- anon_sym_implements,
- [58857] = 5,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(4402), 3,
- anon_sym_GT,
- anon_sym_AMP,
- anon_sym_PIPE,
- ACTIONS(4404), 3,
- anon_sym_COMMA,
- anon_sym_LBRACK,
- anon_sym_extends,
- ACTIONS(3400), 10,
- anon_sym_STAR,
- anon_sym_BANG,
- anon_sym_in,
- anon_sym_GT_GT,
- anon_sym_PLUS,
- anon_sym_DASH,
- anon_sym_SLASH,
- anon_sym_LT,
- anon_sym_EQ_EQ,
- anon_sym_BANG_EQ,
- ACTIONS(3404), 26,
- sym__automatic_semicolon,
- sym__ternary_qmark,
- anon_sym_as,
- anon_sym_RBRACE,
- anon_sym_LPAREN,
- anon_sym_of,
- anon_sym_SEMI,
- anon_sym_DOT,
- anon_sym_QMARK_DOT,
- anon_sym_AMP_AMP,
- anon_sym_PIPE_PIPE,
- anon_sym_GT_GT_GT,
- anon_sym_LT_LT,
- anon_sym_CARET,
- anon_sym_PERCENT,
- anon_sym_STAR_STAR,
- anon_sym_LT_EQ,
- anon_sym_EQ_EQ_EQ,
- anon_sym_BANG_EQ_EQ,
- anon_sym_GT_EQ,
- anon_sym_QMARK_QMARK,
- anon_sym_instanceof,
- anon_sym_PLUS_PLUS,
- anon_sym_DASH_DASH,
- anon_sym_BQUOTE,
- anon_sym_satisfies,
- [58912] = 6,
- ACTIONS(5083), 1,
- anon_sym_AMP,
- ACTIONS(5085), 1,
- anon_sym_PIPE,
- ACTIONS(5087), 1,
- anon_sym_extends,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(4195), 11,
- anon_sym_STAR,
- anon_sym_BANG,
- anon_sym_in,
- anon_sym_GT,
- anon_sym_GT_GT,
- anon_sym_PLUS,
- anon_sym_DASH,
- anon_sym_SLASH,
- anon_sym_LT,
- anon_sym_EQ_EQ,
- anon_sym_BANG_EQ,
- ACTIONS(4197), 28,
- sym__automatic_semicolon,
- sym__ternary_qmark,
- anon_sym_as,
- anon_sym_COMMA,
- anon_sym_RBRACE,
- anon_sym_LPAREN,
- anon_sym_of,
- anon_sym_SEMI,
- anon_sym_LBRACK,
- anon_sym_DOT,
- anon_sym_QMARK_DOT,
- anon_sym_AMP_AMP,
- anon_sym_PIPE_PIPE,
- anon_sym_GT_GT_GT,
- anon_sym_LT_LT,
- anon_sym_CARET,
- anon_sym_PERCENT,
- anon_sym_STAR_STAR,
- anon_sym_LT_EQ,
- anon_sym_EQ_EQ_EQ,
- anon_sym_BANG_EQ_EQ,
- anon_sym_GT_EQ,
- anon_sym_QMARK_QMARK,
- anon_sym_instanceof,
- anon_sym_PLUS_PLUS,
- anon_sym_DASH_DASH,
- anon_sym_BQUOTE,
- anon_sym_satisfies,
- [58969] = 3,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(4206), 13,
- anon_sym_STAR,
- anon_sym_BANG,
- anon_sym_in,
- anon_sym_GT,
- anon_sym_GT_GT,
- anon_sym_AMP,
- anon_sym_PIPE,
- anon_sym_PLUS,
- anon_sym_DASH,
- anon_sym_SLASH,
- anon_sym_LT,
- anon_sym_EQ_EQ,
- anon_sym_BANG_EQ,
- ACTIONS(4208), 29,
- sym__automatic_semicolon,
- sym__ternary_qmark,
- anon_sym_as,
- anon_sym_COMMA,
- anon_sym_RBRACE,
- anon_sym_LPAREN,
- anon_sym_of,
- anon_sym_SEMI,
- anon_sym_LBRACK,
- anon_sym_DOT,
- anon_sym_QMARK_DOT,
- anon_sym_AMP_AMP,
- anon_sym_PIPE_PIPE,
- anon_sym_GT_GT_GT,
- anon_sym_LT_LT,
- anon_sym_CARET,
- anon_sym_PERCENT,
- anon_sym_STAR_STAR,
- anon_sym_LT_EQ,
- anon_sym_EQ_EQ_EQ,
- anon_sym_BANG_EQ_EQ,
- anon_sym_GT_EQ,
- anon_sym_QMARK_QMARK,
- anon_sym_instanceof,
- anon_sym_PLUS_PLUS,
- anon_sym_DASH_DASH,
- anon_sym_BQUOTE,
- anon_sym_satisfies,
- anon_sym_extends,
- [59020] = 3,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(4212), 13,
- anon_sym_STAR,
- anon_sym_BANG,
- anon_sym_in,
- anon_sym_GT,
- anon_sym_GT_GT,
- anon_sym_AMP,
- anon_sym_PIPE,
- anon_sym_PLUS,
- anon_sym_DASH,
- anon_sym_SLASH,
- anon_sym_LT,
- anon_sym_EQ_EQ,
- anon_sym_BANG_EQ,
- ACTIONS(4214), 29,
- sym__automatic_semicolon,
- sym__ternary_qmark,
- anon_sym_as,
- anon_sym_COMMA,
- anon_sym_RBRACE,
- anon_sym_LPAREN,
- anon_sym_of,
- anon_sym_SEMI,
- anon_sym_LBRACK,
- anon_sym_DOT,
- anon_sym_QMARK_DOT,
- anon_sym_AMP_AMP,
- anon_sym_PIPE_PIPE,
- anon_sym_GT_GT_GT,
- anon_sym_LT_LT,
- anon_sym_CARET,
- anon_sym_PERCENT,
- anon_sym_STAR_STAR,
- anon_sym_LT_EQ,
- anon_sym_EQ_EQ_EQ,
- anon_sym_BANG_EQ_EQ,
- anon_sym_GT_EQ,
- anon_sym_QMARK_QMARK,
- anon_sym_instanceof,
- anon_sym_PLUS_PLUS,
- anon_sym_DASH_DASH,
- anon_sym_BQUOTE,
- anon_sym_satisfies,
- anon_sym_extends,
- [59071] = 6,
- ACTIONS(5083), 1,
- anon_sym_AMP,
- ACTIONS(5085), 1,
- anon_sym_PIPE,
- ACTIONS(5087), 1,
- anon_sym_extends,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(4212), 11,
- anon_sym_STAR,
- anon_sym_BANG,
- anon_sym_in,
- anon_sym_GT,
- anon_sym_GT_GT,
- anon_sym_PLUS,
- anon_sym_DASH,
- anon_sym_SLASH,
- anon_sym_LT,
- anon_sym_EQ_EQ,
- anon_sym_BANG_EQ,
- ACTIONS(4214), 28,
- sym__automatic_semicolon,
- sym__ternary_qmark,
- anon_sym_as,
- anon_sym_COMMA,
- anon_sym_RBRACE,
- anon_sym_LPAREN,
- anon_sym_of,
- anon_sym_SEMI,
- anon_sym_LBRACK,
- anon_sym_DOT,
- anon_sym_QMARK_DOT,
- anon_sym_AMP_AMP,
- anon_sym_PIPE_PIPE,
- anon_sym_GT_GT_GT,
- anon_sym_LT_LT,
- anon_sym_CARET,
- anon_sym_PERCENT,
- anon_sym_STAR_STAR,
- anon_sym_LT_EQ,
- anon_sym_EQ_EQ_EQ,
- anon_sym_BANG_EQ_EQ,
- anon_sym_GT_EQ,
- anon_sym_QMARK_QMARK,
- anon_sym_instanceof,
- anon_sym_PLUS_PLUS,
- anon_sym_DASH_DASH,
- anon_sym_BQUOTE,
- anon_sym_satisfies,
- [59128] = 3,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(4142), 13,
- anon_sym_STAR,
- anon_sym_BANG,
- anon_sym_in,
- anon_sym_GT,
- anon_sym_GT_GT,
- anon_sym_AMP,
- anon_sym_PIPE,
- anon_sym_PLUS,
- anon_sym_DASH,
- anon_sym_SLASH,
- anon_sym_LT,
- anon_sym_EQ_EQ,
- anon_sym_BANG_EQ,
- ACTIONS(4144), 29,
- sym__automatic_semicolon,
- sym__ternary_qmark,
- anon_sym_as,
- anon_sym_COMMA,
- anon_sym_RBRACE,
- anon_sym_LPAREN,
- anon_sym_of,
- anon_sym_SEMI,
- anon_sym_LBRACK,
- anon_sym_DOT,
- anon_sym_QMARK_DOT,
- anon_sym_AMP_AMP,
- anon_sym_PIPE_PIPE,
- anon_sym_GT_GT_GT,
- anon_sym_LT_LT,
- anon_sym_CARET,
- anon_sym_PERCENT,
- anon_sym_STAR_STAR,
- anon_sym_LT_EQ,
- anon_sym_EQ_EQ_EQ,
- anon_sym_BANG_EQ_EQ,
- anon_sym_GT_EQ,
- anon_sym_QMARK_QMARK,
- anon_sym_instanceof,
- anon_sym_PLUS_PLUS,
- anon_sym_DASH_DASH,
- anon_sym_BQUOTE,
- anon_sym_satisfies,
- anon_sym_extends,
- [59179] = 3,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(2325), 13,
- anon_sym_STAR,
- anon_sym_BANG,
- anon_sym_in,
- anon_sym_GT,
- anon_sym_GT_GT,
- anon_sym_AMP,
- anon_sym_PIPE,
- anon_sym_PLUS,
- anon_sym_DASH,
- anon_sym_SLASH,
- anon_sym_LT,
- anon_sym_EQ_EQ,
- anon_sym_BANG_EQ,
- ACTIONS(2323), 29,
- sym__automatic_semicolon,
- sym__ternary_qmark,
- anon_sym_as,
- anon_sym_COMMA,
- anon_sym_RBRACE,
- anon_sym_LPAREN,
- anon_sym_of,
- anon_sym_SEMI,
- anon_sym_LBRACK,
- anon_sym_DOT,
- anon_sym_QMARK_DOT,
- anon_sym_AMP_AMP,
- anon_sym_PIPE_PIPE,
- anon_sym_GT_GT_GT,
- anon_sym_LT_LT,
- anon_sym_CARET,
- anon_sym_PERCENT,
- anon_sym_STAR_STAR,
- anon_sym_LT_EQ,
- anon_sym_EQ_EQ_EQ,
- anon_sym_BANG_EQ_EQ,
- anon_sym_GT_EQ,
- anon_sym_QMARK_QMARK,
- anon_sym_instanceof,
- anon_sym_PLUS_PLUS,
- anon_sym_DASH_DASH,
- anon_sym_BQUOTE,
- anon_sym_satisfies,
- anon_sym_extends,
- [59230] = 3,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(4216), 13,
- anon_sym_STAR,
- anon_sym_BANG,
- anon_sym_in,
- anon_sym_GT,
- anon_sym_GT_GT,
- anon_sym_AMP,
- anon_sym_PIPE,
- anon_sym_PLUS,
- anon_sym_DASH,
- anon_sym_SLASH,
- anon_sym_LT,
- anon_sym_EQ_EQ,
- anon_sym_BANG_EQ,
- ACTIONS(4218), 29,
- sym__automatic_semicolon,
- sym__ternary_qmark,
- anon_sym_as,
- anon_sym_COMMA,
- anon_sym_RBRACE,
- anon_sym_LPAREN,
- anon_sym_of,
- anon_sym_SEMI,
- anon_sym_LBRACK,
- anon_sym_DOT,
- anon_sym_QMARK_DOT,
- anon_sym_AMP_AMP,
- anon_sym_PIPE_PIPE,
- anon_sym_GT_GT_GT,
- anon_sym_LT_LT,
- anon_sym_CARET,
- anon_sym_PERCENT,
- anon_sym_STAR_STAR,
- anon_sym_LT_EQ,
- anon_sym_EQ_EQ_EQ,
- anon_sym_BANG_EQ_EQ,
- anon_sym_GT_EQ,
- anon_sym_QMARK_QMARK,
- anon_sym_instanceof,
- anon_sym_PLUS_PLUS,
- anon_sym_DASH_DASH,
- anon_sym_BQUOTE,
- anon_sym_satisfies,
- anon_sym_extends,
- [59281] = 3,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(4220), 13,
- anon_sym_STAR,
- anon_sym_BANG,
- anon_sym_in,
- anon_sym_GT,
- anon_sym_GT_GT,
- anon_sym_AMP,
- anon_sym_PIPE,
- anon_sym_PLUS,
- anon_sym_DASH,
- anon_sym_SLASH,
- anon_sym_LT,
- anon_sym_EQ_EQ,
- anon_sym_BANG_EQ,
- ACTIONS(4222), 29,
- sym__automatic_semicolon,
- sym__ternary_qmark,
- anon_sym_as,
- anon_sym_COMMA,
- anon_sym_RBRACE,
- anon_sym_LPAREN,
- anon_sym_of,
- anon_sym_SEMI,
- anon_sym_LBRACK,
- anon_sym_DOT,
- anon_sym_QMARK_DOT,
- anon_sym_AMP_AMP,
- anon_sym_PIPE_PIPE,
- anon_sym_GT_GT_GT,
- anon_sym_LT_LT,
- anon_sym_CARET,
- anon_sym_PERCENT,
- anon_sym_STAR_STAR,
- anon_sym_LT_EQ,
- anon_sym_EQ_EQ_EQ,
- anon_sym_BANG_EQ_EQ,
- anon_sym_GT_EQ,
- anon_sym_QMARK_QMARK,
- anon_sym_instanceof,
- anon_sym_PLUS_PLUS,
- anon_sym_DASH_DASH,
- anon_sym_BQUOTE,
- anon_sym_satisfies,
- anon_sym_extends,
- [59332] = 3,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(4220), 13,
- anon_sym_STAR,
- anon_sym_BANG,
- anon_sym_in,
- anon_sym_GT,
- anon_sym_GT_GT,
- anon_sym_AMP,
- anon_sym_PIPE,
- anon_sym_PLUS,
- anon_sym_DASH,
- anon_sym_SLASH,
- anon_sym_LT,
- anon_sym_EQ_EQ,
- anon_sym_BANG_EQ,
- ACTIONS(4222), 29,
- sym__automatic_semicolon,
- sym__ternary_qmark,
- anon_sym_as,
- anon_sym_COMMA,
- anon_sym_RBRACE,
- anon_sym_LPAREN,
- anon_sym_of,
- anon_sym_SEMI,
- anon_sym_LBRACK,
- anon_sym_DOT,
- anon_sym_QMARK_DOT,
- anon_sym_AMP_AMP,
- anon_sym_PIPE_PIPE,
- anon_sym_GT_GT_GT,
- anon_sym_LT_LT,
- anon_sym_CARET,
- anon_sym_PERCENT,
- anon_sym_STAR_STAR,
- anon_sym_LT_EQ,
- anon_sym_EQ_EQ_EQ,
- anon_sym_BANG_EQ_EQ,
- anon_sym_GT_EQ,
- anon_sym_QMARK_QMARK,
- anon_sym_instanceof,
- anon_sym_PLUS_PLUS,
- anon_sym_DASH_DASH,
- anon_sym_BQUOTE,
- anon_sym_satisfies,
- anon_sym_extends,
- [59383] = 3,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(4220), 13,
- anon_sym_STAR,
- anon_sym_BANG,
- anon_sym_in,
- anon_sym_GT,
- anon_sym_GT_GT,
- anon_sym_AMP,
- anon_sym_PIPE,
- anon_sym_PLUS,
- anon_sym_DASH,
- anon_sym_SLASH,
- anon_sym_LT,
- anon_sym_EQ_EQ,
- anon_sym_BANG_EQ,
- ACTIONS(4222), 29,
- sym__automatic_semicolon,
- sym__ternary_qmark,
- anon_sym_as,
- anon_sym_COMMA,
- anon_sym_RBRACE,
- anon_sym_LPAREN,
- anon_sym_of,
- anon_sym_SEMI,
- anon_sym_LBRACK,
- anon_sym_DOT,
- anon_sym_QMARK_DOT,
- anon_sym_AMP_AMP,
- anon_sym_PIPE_PIPE,
- anon_sym_GT_GT_GT,
- anon_sym_LT_LT,
- anon_sym_CARET,
- anon_sym_PERCENT,
- anon_sym_STAR_STAR,
- anon_sym_LT_EQ,
- anon_sym_EQ_EQ_EQ,
- anon_sym_BANG_EQ_EQ,
- anon_sym_GT_EQ,
- anon_sym_QMARK_QMARK,
- anon_sym_instanceof,
- anon_sym_PLUS_PLUS,
- anon_sym_DASH_DASH,
- anon_sym_BQUOTE,
- anon_sym_satisfies,
- anon_sym_extends,
- [59434] = 3,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(4224), 13,
- anon_sym_STAR,
- anon_sym_BANG,
- anon_sym_in,
- anon_sym_GT,
- anon_sym_GT_GT,
- anon_sym_AMP,
- anon_sym_PIPE,
- anon_sym_PLUS,
- anon_sym_DASH,
- anon_sym_SLASH,
- anon_sym_LT,
- anon_sym_EQ_EQ,
- anon_sym_BANG_EQ,
- ACTIONS(4226), 29,
- sym__automatic_semicolon,
- sym__ternary_qmark,
- anon_sym_as,
- anon_sym_COMMA,
- anon_sym_RBRACE,
- anon_sym_LPAREN,
- anon_sym_of,
- anon_sym_SEMI,
- anon_sym_LBRACK,
- anon_sym_DOT,
- anon_sym_QMARK_DOT,
- anon_sym_AMP_AMP,
- anon_sym_PIPE_PIPE,
- anon_sym_GT_GT_GT,
- anon_sym_LT_LT,
- anon_sym_CARET,
- anon_sym_PERCENT,
- anon_sym_STAR_STAR,
- anon_sym_LT_EQ,
- anon_sym_EQ_EQ_EQ,
- anon_sym_BANG_EQ_EQ,
- anon_sym_GT_EQ,
- anon_sym_QMARK_QMARK,
- anon_sym_instanceof,
- anon_sym_PLUS_PLUS,
- anon_sym_DASH_DASH,
- anon_sym_BQUOTE,
- anon_sym_satisfies,
- anon_sym_extends,
- [59485] = 3,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(4224), 13,
- anon_sym_STAR,
- anon_sym_BANG,
- anon_sym_in,
- anon_sym_GT,
- anon_sym_GT_GT,
- anon_sym_AMP,
- anon_sym_PIPE,
- anon_sym_PLUS,
- anon_sym_DASH,
- anon_sym_SLASH,
- anon_sym_LT,
- anon_sym_EQ_EQ,
- anon_sym_BANG_EQ,
- ACTIONS(4226), 29,
- sym__automatic_semicolon,
- sym__ternary_qmark,
- anon_sym_as,
- anon_sym_COMMA,
- anon_sym_RBRACE,
- anon_sym_LPAREN,
- anon_sym_of,
- anon_sym_SEMI,
- anon_sym_LBRACK,
- anon_sym_DOT,
- anon_sym_QMARK_DOT,
- anon_sym_AMP_AMP,
- anon_sym_PIPE_PIPE,
- anon_sym_GT_GT_GT,
- anon_sym_LT_LT,
- anon_sym_CARET,
- anon_sym_PERCENT,
- anon_sym_STAR_STAR,
- anon_sym_LT_EQ,
- anon_sym_EQ_EQ_EQ,
- anon_sym_BANG_EQ_EQ,
- anon_sym_GT_EQ,
- anon_sym_QMARK_QMARK,
- anon_sym_instanceof,
- anon_sym_PLUS_PLUS,
- anon_sym_DASH_DASH,
- anon_sym_BQUOTE,
- anon_sym_satisfies,
- anon_sym_extends,
- [59536] = 3,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(4224), 13,
- anon_sym_STAR,
- anon_sym_BANG,
- anon_sym_in,
- anon_sym_GT,
- anon_sym_GT_GT,
- anon_sym_AMP,
- anon_sym_PIPE,
- anon_sym_PLUS,
- anon_sym_DASH,
- anon_sym_SLASH,
- anon_sym_LT,
- anon_sym_EQ_EQ,
- anon_sym_BANG_EQ,
- ACTIONS(4226), 29,
- sym__automatic_semicolon,
- sym__ternary_qmark,
- anon_sym_as,
- anon_sym_COMMA,
- anon_sym_RBRACE,
- anon_sym_LPAREN,
- anon_sym_of,
- anon_sym_SEMI,
- anon_sym_LBRACK,
- anon_sym_DOT,
- anon_sym_QMARK_DOT,
- anon_sym_AMP_AMP,
- anon_sym_PIPE_PIPE,
- anon_sym_GT_GT_GT,
- anon_sym_LT_LT,
- anon_sym_CARET,
- anon_sym_PERCENT,
- anon_sym_STAR_STAR,
- anon_sym_LT_EQ,
- anon_sym_EQ_EQ_EQ,
- anon_sym_BANG_EQ_EQ,
- anon_sym_GT_EQ,
- anon_sym_QMARK_QMARK,
- anon_sym_instanceof,
- anon_sym_PLUS_PLUS,
- anon_sym_DASH_DASH,
- anon_sym_BQUOTE,
- anon_sym_satisfies,
- anon_sym_extends,
- [59587] = 3,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(4237), 13,
- anon_sym_STAR,
- anon_sym_BANG,
- anon_sym_in,
- anon_sym_GT,
- anon_sym_GT_GT,
- anon_sym_AMP,
- anon_sym_PIPE,
- anon_sym_PLUS,
- anon_sym_DASH,
- anon_sym_SLASH,
- anon_sym_LT,
- anon_sym_EQ_EQ,
- anon_sym_BANG_EQ,
- ACTIONS(4239), 29,
- sym__automatic_semicolon,
- sym__ternary_qmark,
- anon_sym_as,
- anon_sym_COMMA,
- anon_sym_RBRACE,
- anon_sym_LPAREN,
- anon_sym_of,
- anon_sym_SEMI,
- anon_sym_LBRACK,
- anon_sym_DOT,
- anon_sym_QMARK_DOT,
- anon_sym_AMP_AMP,
- anon_sym_PIPE_PIPE,
- anon_sym_GT_GT_GT,
- anon_sym_LT_LT,
- anon_sym_CARET,
- anon_sym_PERCENT,
- anon_sym_STAR_STAR,
- anon_sym_LT_EQ,
- anon_sym_EQ_EQ_EQ,
- anon_sym_BANG_EQ_EQ,
- anon_sym_GT_EQ,
- anon_sym_QMARK_QMARK,
- anon_sym_instanceof,
- anon_sym_PLUS_PLUS,
- anon_sym_DASH_DASH,
- anon_sym_BQUOTE,
- anon_sym_satisfies,
- anon_sym_extends,
- [59638] = 3,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(4237), 13,
- anon_sym_STAR,
- anon_sym_BANG,
- anon_sym_in,
- anon_sym_GT,
- anon_sym_GT_GT,
- anon_sym_AMP,
- anon_sym_PIPE,
- anon_sym_PLUS,
- anon_sym_DASH,
- anon_sym_SLASH,
- anon_sym_LT,
- anon_sym_EQ_EQ,
- anon_sym_BANG_EQ,
- ACTIONS(4239), 29,
- sym__automatic_semicolon,
- sym__ternary_qmark,
- anon_sym_as,
- anon_sym_COMMA,
- anon_sym_RBRACE,
- anon_sym_LPAREN,
- anon_sym_of,
- anon_sym_SEMI,
- anon_sym_LBRACK,
- anon_sym_DOT,
- anon_sym_QMARK_DOT,
- anon_sym_AMP_AMP,
- anon_sym_PIPE_PIPE,
- anon_sym_GT_GT_GT,
- anon_sym_LT_LT,
- anon_sym_CARET,
- anon_sym_PERCENT,
- anon_sym_STAR_STAR,
- anon_sym_LT_EQ,
- anon_sym_EQ_EQ_EQ,
- anon_sym_BANG_EQ_EQ,
- anon_sym_GT_EQ,
- anon_sym_QMARK_QMARK,
- anon_sym_instanceof,
- anon_sym_PLUS_PLUS,
- anon_sym_DASH_DASH,
- anon_sym_BQUOTE,
- anon_sym_satisfies,
- anon_sym_extends,
- [59689] = 3,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(4237), 13,
- anon_sym_STAR,
- anon_sym_BANG,
- anon_sym_in,
- anon_sym_GT,
- anon_sym_GT_GT,
- anon_sym_AMP,
- anon_sym_PIPE,
- anon_sym_PLUS,
- anon_sym_DASH,
- anon_sym_SLASH,
- anon_sym_LT,
- anon_sym_EQ_EQ,
- anon_sym_BANG_EQ,
- ACTIONS(4239), 29,
- sym__automatic_semicolon,
- sym__ternary_qmark,
- anon_sym_as,
- anon_sym_COMMA,
- anon_sym_RBRACE,
- anon_sym_LPAREN,
- anon_sym_of,
- anon_sym_SEMI,
- anon_sym_LBRACK,
- anon_sym_DOT,
- anon_sym_QMARK_DOT,
- anon_sym_AMP_AMP,
- anon_sym_PIPE_PIPE,
- anon_sym_GT_GT_GT,
- anon_sym_LT_LT,
- anon_sym_CARET,
- anon_sym_PERCENT,
- anon_sym_STAR_STAR,
- anon_sym_LT_EQ,
- anon_sym_EQ_EQ_EQ,
- anon_sym_BANG_EQ_EQ,
- anon_sym_GT_EQ,
- anon_sym_QMARK_QMARK,
- anon_sym_instanceof,
- anon_sym_PLUS_PLUS,
- anon_sym_DASH_DASH,
- anon_sym_BQUOTE,
- anon_sym_satisfies,
- anon_sym_extends,
- [59740] = 3,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(4259), 13,
- anon_sym_STAR,
- anon_sym_BANG,
- anon_sym_in,
- anon_sym_GT,
- anon_sym_GT_GT,
- anon_sym_AMP,
- anon_sym_PIPE,
- anon_sym_PLUS,
- anon_sym_DASH,
- anon_sym_SLASH,
- anon_sym_LT,
- anon_sym_EQ_EQ,
- anon_sym_BANG_EQ,
- ACTIONS(4261), 29,
- sym__automatic_semicolon,
- sym__ternary_qmark,
- anon_sym_as,
- anon_sym_COMMA,
- anon_sym_RBRACE,
- anon_sym_LPAREN,
- anon_sym_of,
- anon_sym_SEMI,
- anon_sym_LBRACK,
- anon_sym_DOT,
- anon_sym_QMARK_DOT,
- anon_sym_AMP_AMP,
- anon_sym_PIPE_PIPE,
- anon_sym_GT_GT_GT,
- anon_sym_LT_LT,
- anon_sym_CARET,
- anon_sym_PERCENT,
- anon_sym_STAR_STAR,
- anon_sym_LT_EQ,
- anon_sym_EQ_EQ_EQ,
- anon_sym_BANG_EQ_EQ,
- anon_sym_GT_EQ,
- anon_sym_QMARK_QMARK,
- anon_sym_instanceof,
- anon_sym_PLUS_PLUS,
- anon_sym_DASH_DASH,
- anon_sym_BQUOTE,
- anon_sym_satisfies,
- anon_sym_extends,
- [59791] = 3,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(4263), 13,
- anon_sym_STAR,
- anon_sym_BANG,
- anon_sym_in,
- anon_sym_GT,
- anon_sym_GT_GT,
- anon_sym_AMP,
- anon_sym_PIPE,
- anon_sym_PLUS,
- anon_sym_DASH,
- anon_sym_SLASH,
- anon_sym_LT,
- anon_sym_EQ_EQ,
- anon_sym_BANG_EQ,
- ACTIONS(4265), 29,
- sym__automatic_semicolon,
- sym__ternary_qmark,
- anon_sym_as,
- anon_sym_COMMA,
- anon_sym_RBRACE,
- anon_sym_LPAREN,
- anon_sym_of,
- anon_sym_SEMI,
- anon_sym_LBRACK,
- anon_sym_DOT,
- anon_sym_QMARK_DOT,
- anon_sym_AMP_AMP,
- anon_sym_PIPE_PIPE,
- anon_sym_GT_GT_GT,
- anon_sym_LT_LT,
- anon_sym_CARET,
- anon_sym_PERCENT,
- anon_sym_STAR_STAR,
- anon_sym_LT_EQ,
- anon_sym_EQ_EQ_EQ,
- anon_sym_BANG_EQ_EQ,
- anon_sym_GT_EQ,
- anon_sym_QMARK_QMARK,
- anon_sym_instanceof,
- anon_sym_PLUS_PLUS,
- anon_sym_DASH_DASH,
- anon_sym_BQUOTE,
- anon_sym_satisfies,
- anon_sym_extends,
- [59842] = 3,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(4271), 13,
- anon_sym_STAR,
- anon_sym_BANG,
- anon_sym_in,
- anon_sym_GT,
- anon_sym_GT_GT,
- anon_sym_AMP,
- anon_sym_PIPE,
- anon_sym_PLUS,
- anon_sym_DASH,
- anon_sym_SLASH,
- anon_sym_LT,
- anon_sym_EQ_EQ,
- anon_sym_BANG_EQ,
- ACTIONS(4273), 29,
- sym__automatic_semicolon,
- sym__ternary_qmark,
- anon_sym_as,
- anon_sym_COMMA,
- anon_sym_RBRACE,
- anon_sym_LPAREN,
- anon_sym_of,
- anon_sym_SEMI,
- anon_sym_LBRACK,
- anon_sym_DOT,
- anon_sym_QMARK_DOT,
- anon_sym_AMP_AMP,
- anon_sym_PIPE_PIPE,
- anon_sym_GT_GT_GT,
- anon_sym_LT_LT,
- anon_sym_CARET,
- anon_sym_PERCENT,
- anon_sym_STAR_STAR,
- anon_sym_LT_EQ,
- anon_sym_EQ_EQ_EQ,
- anon_sym_BANG_EQ_EQ,
- anon_sym_GT_EQ,
- anon_sym_QMARK_QMARK,
- anon_sym_instanceof,
- anon_sym_PLUS_PLUS,
- anon_sym_DASH_DASH,
- anon_sym_BQUOTE,
- anon_sym_satisfies,
- anon_sym_extends,
- [59893] = 3,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(2329), 13,
- anon_sym_STAR,
- anon_sym_BANG,
- anon_sym_in,
- anon_sym_GT,
- anon_sym_GT_GT,
- anon_sym_AMP,
- anon_sym_PIPE,
- anon_sym_PLUS,
- anon_sym_DASH,
- anon_sym_SLASH,
- anon_sym_LT,
- anon_sym_EQ_EQ,
- anon_sym_BANG_EQ,
- ACTIONS(2327), 29,
- sym__automatic_semicolon,
- sym__ternary_qmark,
- anon_sym_as,
- anon_sym_COMMA,
- anon_sym_RBRACE,
- anon_sym_LPAREN,
- anon_sym_of,
- anon_sym_SEMI,
- anon_sym_LBRACK,
- anon_sym_DOT,
- anon_sym_QMARK_DOT,
- anon_sym_AMP_AMP,
- anon_sym_PIPE_PIPE,
- anon_sym_GT_GT_GT,
- anon_sym_LT_LT,
- anon_sym_CARET,
- anon_sym_PERCENT,
- anon_sym_STAR_STAR,
- anon_sym_LT_EQ,
- anon_sym_EQ_EQ_EQ,
- anon_sym_BANG_EQ_EQ,
- anon_sym_GT_EQ,
- anon_sym_QMARK_QMARK,
- anon_sym_instanceof,
- anon_sym_PLUS_PLUS,
- anon_sym_DASH_DASH,
- anon_sym_BQUOTE,
- anon_sym_satisfies,
- anon_sym_extends,
- [59944] = 3,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(4275), 13,
- anon_sym_STAR,
- anon_sym_BANG,
- anon_sym_in,
- anon_sym_GT,
- anon_sym_GT_GT,
- anon_sym_AMP,
- anon_sym_PIPE,
- anon_sym_PLUS,
- anon_sym_DASH,
- anon_sym_SLASH,
- anon_sym_LT,
- anon_sym_EQ_EQ,
- anon_sym_BANG_EQ,
- ACTIONS(4277), 29,
- sym__automatic_semicolon,
- sym__ternary_qmark,
- anon_sym_as,
- anon_sym_COMMA,
- anon_sym_RBRACE,
- anon_sym_LPAREN,
- anon_sym_of,
- anon_sym_SEMI,
- anon_sym_LBRACK,
- anon_sym_DOT,
- anon_sym_QMARK_DOT,
- anon_sym_AMP_AMP,
- anon_sym_PIPE_PIPE,
- anon_sym_GT_GT_GT,
- anon_sym_LT_LT,
- anon_sym_CARET,
- anon_sym_PERCENT,
- anon_sym_STAR_STAR,
- anon_sym_LT_EQ,
- anon_sym_EQ_EQ_EQ,
- anon_sym_BANG_EQ_EQ,
- anon_sym_GT_EQ,
- anon_sym_QMARK_QMARK,
- anon_sym_instanceof,
- anon_sym_PLUS_PLUS,
- anon_sym_DASH_DASH,
- anon_sym_BQUOTE,
- anon_sym_satisfies,
- anon_sym_extends,
- [59995] = 3,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(4279), 13,
- anon_sym_STAR,
- anon_sym_BANG,
- anon_sym_in,
- anon_sym_GT,
- anon_sym_GT_GT,
- anon_sym_AMP,
- anon_sym_PIPE,
- anon_sym_PLUS,
- anon_sym_DASH,
- anon_sym_SLASH,
- anon_sym_LT,
- anon_sym_EQ_EQ,
- anon_sym_BANG_EQ,
- ACTIONS(4281), 29,
- sym__automatic_semicolon,
- sym__ternary_qmark,
- anon_sym_as,
- anon_sym_COMMA,
- anon_sym_RBRACE,
- anon_sym_LPAREN,
- anon_sym_of,
- anon_sym_SEMI,
- anon_sym_LBRACK,
- anon_sym_DOT,
- anon_sym_QMARK_DOT,
- anon_sym_AMP_AMP,
- anon_sym_PIPE_PIPE,
- anon_sym_GT_GT_GT,
- anon_sym_LT_LT,
- anon_sym_CARET,
- anon_sym_PERCENT,
- anon_sym_STAR_STAR,
- anon_sym_LT_EQ,
- anon_sym_EQ_EQ_EQ,
- anon_sym_BANG_EQ_EQ,
- anon_sym_GT_EQ,
- anon_sym_QMARK_QMARK,
- anon_sym_instanceof,
- anon_sym_PLUS_PLUS,
- anon_sym_DASH_DASH,
- anon_sym_BQUOTE,
- anon_sym_satisfies,
- anon_sym_extends,
- [60046] = 3,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(4279), 13,
- anon_sym_STAR,
- anon_sym_BANG,
- anon_sym_in,
- anon_sym_GT,
- anon_sym_GT_GT,
- anon_sym_AMP,
- anon_sym_PIPE,
- anon_sym_PLUS,
- anon_sym_DASH,
- anon_sym_SLASH,
- anon_sym_LT,
- anon_sym_EQ_EQ,
- anon_sym_BANG_EQ,
- ACTIONS(4281), 29,
- sym__automatic_semicolon,
- sym__ternary_qmark,
- anon_sym_as,
- anon_sym_COMMA,
- anon_sym_RBRACE,
- anon_sym_LPAREN,
- anon_sym_of,
- anon_sym_SEMI,
- anon_sym_LBRACK,
- anon_sym_DOT,
- anon_sym_QMARK_DOT,
- anon_sym_AMP_AMP,
- anon_sym_PIPE_PIPE,
- anon_sym_GT_GT_GT,
- anon_sym_LT_LT,
- anon_sym_CARET,
- anon_sym_PERCENT,
- anon_sym_STAR_STAR,
- anon_sym_LT_EQ,
- anon_sym_EQ_EQ_EQ,
- anon_sym_BANG_EQ_EQ,
- anon_sym_GT_EQ,
- anon_sym_QMARK_QMARK,
- anon_sym_instanceof,
- anon_sym_PLUS_PLUS,
- anon_sym_DASH_DASH,
- anon_sym_BQUOTE,
- anon_sym_satisfies,
- anon_sym_extends,
- [60097] = 3,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(4279), 13,
- anon_sym_STAR,
- anon_sym_BANG,
- anon_sym_in,
- anon_sym_GT,
- anon_sym_GT_GT,
- anon_sym_AMP,
- anon_sym_PIPE,
- anon_sym_PLUS,
- anon_sym_DASH,
- anon_sym_SLASH,
- anon_sym_LT,
- anon_sym_EQ_EQ,
- anon_sym_BANG_EQ,
- ACTIONS(4281), 29,
- sym__automatic_semicolon,
- sym__ternary_qmark,
- anon_sym_as,
- anon_sym_COMMA,
- anon_sym_RBRACE,
- anon_sym_LPAREN,
- anon_sym_of,
- anon_sym_SEMI,
- anon_sym_LBRACK,
- anon_sym_DOT,
- anon_sym_QMARK_DOT,
- anon_sym_AMP_AMP,
- anon_sym_PIPE_PIPE,
- anon_sym_GT_GT_GT,
- anon_sym_LT_LT,
- anon_sym_CARET,
- anon_sym_PERCENT,
- anon_sym_STAR_STAR,
- anon_sym_LT_EQ,
- anon_sym_EQ_EQ_EQ,
- anon_sym_BANG_EQ_EQ,
- anon_sym_GT_EQ,
- anon_sym_QMARK_QMARK,
- anon_sym_instanceof,
- anon_sym_PLUS_PLUS,
- anon_sym_DASH_DASH,
- anon_sym_BQUOTE,
- anon_sym_satisfies,
- anon_sym_extends,
- [60148] = 3,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(4285), 13,
- anon_sym_STAR,
- anon_sym_BANG,
- anon_sym_in,
- anon_sym_GT,
- anon_sym_GT_GT,
- anon_sym_AMP,
- anon_sym_PIPE,
- anon_sym_PLUS,
- anon_sym_DASH,
- anon_sym_SLASH,
- anon_sym_LT,
- anon_sym_EQ_EQ,
- anon_sym_BANG_EQ,
- ACTIONS(4287), 29,
- sym__automatic_semicolon,
- sym__ternary_qmark,
- anon_sym_as,
- anon_sym_COMMA,
- anon_sym_RBRACE,
- anon_sym_LPAREN,
- anon_sym_of,
- anon_sym_SEMI,
- anon_sym_LBRACK,
- anon_sym_DOT,
- anon_sym_QMARK_DOT,
- anon_sym_AMP_AMP,
- anon_sym_PIPE_PIPE,
- anon_sym_GT_GT_GT,
- anon_sym_LT_LT,
- anon_sym_CARET,
- anon_sym_PERCENT,
- anon_sym_STAR_STAR,
- anon_sym_LT_EQ,
- anon_sym_EQ_EQ_EQ,
- anon_sym_BANG_EQ_EQ,
- anon_sym_GT_EQ,
- anon_sym_QMARK_QMARK,
- anon_sym_instanceof,
- anon_sym_PLUS_PLUS,
- anon_sym_DASH_DASH,
- anon_sym_BQUOTE,
- anon_sym_satisfies,
- anon_sym_extends,
- [60199] = 3,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(4285), 13,
- anon_sym_STAR,
- anon_sym_BANG,
- anon_sym_in,
- anon_sym_GT,
- anon_sym_GT_GT,
- anon_sym_AMP,
- anon_sym_PIPE,
- anon_sym_PLUS,
- anon_sym_DASH,
- anon_sym_SLASH,
- anon_sym_LT,
- anon_sym_EQ_EQ,
- anon_sym_BANG_EQ,
- ACTIONS(4287), 29,
- sym__automatic_semicolon,
- sym__ternary_qmark,
- anon_sym_as,
- anon_sym_COMMA,
- anon_sym_RBRACE,
- anon_sym_LPAREN,
- anon_sym_of,
- anon_sym_SEMI,
- anon_sym_LBRACK,
- anon_sym_DOT,
- anon_sym_QMARK_DOT,
- anon_sym_AMP_AMP,
- anon_sym_PIPE_PIPE,
- anon_sym_GT_GT_GT,
- anon_sym_LT_LT,
- anon_sym_CARET,
- anon_sym_PERCENT,
- anon_sym_STAR_STAR,
- anon_sym_LT_EQ,
- anon_sym_EQ_EQ_EQ,
- anon_sym_BANG_EQ_EQ,
- anon_sym_GT_EQ,
- anon_sym_QMARK_QMARK,
- anon_sym_instanceof,
- anon_sym_PLUS_PLUS,
- anon_sym_DASH_DASH,
- anon_sym_BQUOTE,
- anon_sym_satisfies,
- anon_sym_extends,
- [60250] = 3,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(4285), 13,
- anon_sym_STAR,
- anon_sym_BANG,
- anon_sym_in,
- anon_sym_GT,
- anon_sym_GT_GT,
- anon_sym_AMP,
- anon_sym_PIPE,
- anon_sym_PLUS,
- anon_sym_DASH,
- anon_sym_SLASH,
- anon_sym_LT,
- anon_sym_EQ_EQ,
- anon_sym_BANG_EQ,
- ACTIONS(4287), 29,
- sym__automatic_semicolon,
- sym__ternary_qmark,
- anon_sym_as,
- anon_sym_COMMA,
- anon_sym_RBRACE,
- anon_sym_LPAREN,
- anon_sym_of,
- anon_sym_SEMI,
- anon_sym_LBRACK,
- anon_sym_DOT,
- anon_sym_QMARK_DOT,
- anon_sym_AMP_AMP,
- anon_sym_PIPE_PIPE,
- anon_sym_GT_GT_GT,
- anon_sym_LT_LT,
- anon_sym_CARET,
- anon_sym_PERCENT,
- anon_sym_STAR_STAR,
- anon_sym_LT_EQ,
- anon_sym_EQ_EQ_EQ,
- anon_sym_BANG_EQ_EQ,
- anon_sym_GT_EQ,
- anon_sym_QMARK_QMARK,
- anon_sym_instanceof,
- anon_sym_PLUS_PLUS,
- anon_sym_DASH_DASH,
- anon_sym_BQUOTE,
- anon_sym_satisfies,
- anon_sym_extends,
- [60301] = 3,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(4293), 13,
- anon_sym_STAR,
- anon_sym_BANG,
- anon_sym_in,
- anon_sym_GT,
- anon_sym_GT_GT,
- anon_sym_AMP,
- anon_sym_PIPE,
- anon_sym_PLUS,
- anon_sym_DASH,
- anon_sym_SLASH,
- anon_sym_LT,
- anon_sym_EQ_EQ,
- anon_sym_BANG_EQ,
- ACTIONS(4295), 29,
- sym__automatic_semicolon,
- sym__ternary_qmark,
- anon_sym_as,
- anon_sym_COMMA,
- anon_sym_RBRACE,
- anon_sym_LPAREN,
- anon_sym_of,
- anon_sym_SEMI,
- anon_sym_LBRACK,
- anon_sym_DOT,
- anon_sym_QMARK_DOT,
- anon_sym_AMP_AMP,
- anon_sym_PIPE_PIPE,
- anon_sym_GT_GT_GT,
- anon_sym_LT_LT,
- anon_sym_CARET,
- anon_sym_PERCENT,
- anon_sym_STAR_STAR,
- anon_sym_LT_EQ,
- anon_sym_EQ_EQ_EQ,
- anon_sym_BANG_EQ_EQ,
- anon_sym_GT_EQ,
- anon_sym_QMARK_QMARK,
- anon_sym_instanceof,
- anon_sym_PLUS_PLUS,
- anon_sym_DASH_DASH,
- anon_sym_BQUOTE,
- anon_sym_satisfies,
- anon_sym_extends,
- [60352] = 3,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(4293), 13,
- anon_sym_STAR,
- anon_sym_BANG,
- anon_sym_in,
- anon_sym_GT,
- anon_sym_GT_GT,
- anon_sym_AMP,
- anon_sym_PIPE,
- anon_sym_PLUS,
- anon_sym_DASH,
- anon_sym_SLASH,
- anon_sym_LT,
- anon_sym_EQ_EQ,
- anon_sym_BANG_EQ,
- ACTIONS(4295), 29,
- sym__automatic_semicolon,
- sym__ternary_qmark,
- anon_sym_as,
- anon_sym_COMMA,
- anon_sym_RBRACE,
- anon_sym_LPAREN,
- anon_sym_of,
- anon_sym_SEMI,
- anon_sym_LBRACK,
- anon_sym_DOT,
- anon_sym_QMARK_DOT,
- anon_sym_AMP_AMP,
- anon_sym_PIPE_PIPE,
- anon_sym_GT_GT_GT,
- anon_sym_LT_LT,
- anon_sym_CARET,
- anon_sym_PERCENT,
- anon_sym_STAR_STAR,
- anon_sym_LT_EQ,
- anon_sym_EQ_EQ_EQ,
- anon_sym_BANG_EQ_EQ,
- anon_sym_GT_EQ,
- anon_sym_QMARK_QMARK,
- anon_sym_instanceof,
- anon_sym_PLUS_PLUS,
- anon_sym_DASH_DASH,
- anon_sym_BQUOTE,
- anon_sym_satisfies,
- anon_sym_extends,
- [60403] = 3,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(4293), 13,
- anon_sym_STAR,
- anon_sym_BANG,
- anon_sym_in,
- anon_sym_GT,
- anon_sym_GT_GT,
- anon_sym_AMP,
- anon_sym_PIPE,
- anon_sym_PLUS,
- anon_sym_DASH,
- anon_sym_SLASH,
- anon_sym_LT,
- anon_sym_EQ_EQ,
- anon_sym_BANG_EQ,
- ACTIONS(4295), 29,
- sym__automatic_semicolon,
- sym__ternary_qmark,
- anon_sym_as,
- anon_sym_COMMA,
- anon_sym_RBRACE,
- anon_sym_LPAREN,
- anon_sym_of,
- anon_sym_SEMI,
- anon_sym_LBRACK,
- anon_sym_DOT,
- anon_sym_QMARK_DOT,
- anon_sym_AMP_AMP,
- anon_sym_PIPE_PIPE,
- anon_sym_GT_GT_GT,
- anon_sym_LT_LT,
- anon_sym_CARET,
- anon_sym_PERCENT,
- anon_sym_STAR_STAR,
- anon_sym_LT_EQ,
- anon_sym_EQ_EQ_EQ,
- anon_sym_BANG_EQ_EQ,
- anon_sym_GT_EQ,
- anon_sym_QMARK_QMARK,
- anon_sym_instanceof,
- anon_sym_PLUS_PLUS,
- anon_sym_DASH_DASH,
- anon_sym_BQUOTE,
- anon_sym_satisfies,
- anon_sym_extends,
- [60454] = 3,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(4301), 13,
- anon_sym_STAR,
- anon_sym_BANG,
- anon_sym_in,
- anon_sym_GT,
- anon_sym_GT_GT,
- anon_sym_AMP,
- anon_sym_PIPE,
- anon_sym_PLUS,
- anon_sym_DASH,
- anon_sym_SLASH,
- anon_sym_LT,
- anon_sym_EQ_EQ,
- anon_sym_BANG_EQ,
- ACTIONS(4303), 29,
- sym__automatic_semicolon,
- sym__ternary_qmark,
- anon_sym_as,
- anon_sym_COMMA,
- anon_sym_RBRACE,
- anon_sym_LPAREN,
- anon_sym_of,
- anon_sym_SEMI,
- anon_sym_LBRACK,
- anon_sym_DOT,
- anon_sym_QMARK_DOT,
- anon_sym_AMP_AMP,
- anon_sym_PIPE_PIPE,
- anon_sym_GT_GT_GT,
- anon_sym_LT_LT,
- anon_sym_CARET,
- anon_sym_PERCENT,
- anon_sym_STAR_STAR,
- anon_sym_LT_EQ,
- anon_sym_EQ_EQ_EQ,
- anon_sym_BANG_EQ_EQ,
- anon_sym_GT_EQ,
- anon_sym_QMARK_QMARK,
- anon_sym_instanceof,
- anon_sym_PLUS_PLUS,
- anon_sym_DASH_DASH,
- anon_sym_BQUOTE,
- anon_sym_satisfies,
- anon_sym_extends,
- [60505] = 6,
- ACTIONS(5083), 1,
- anon_sym_AMP,
- ACTIONS(5085), 1,
- anon_sym_PIPE,
- ACTIONS(5087), 1,
- anon_sym_extends,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(4309), 11,
- anon_sym_STAR,
- anon_sym_BANG,
- anon_sym_in,
- anon_sym_GT,
- anon_sym_GT_GT,
- anon_sym_PLUS,
- anon_sym_DASH,
- anon_sym_SLASH,
- anon_sym_LT,
- anon_sym_EQ_EQ,
- anon_sym_BANG_EQ,
- ACTIONS(4311), 28,
- sym__automatic_semicolon,
- sym__ternary_qmark,
- anon_sym_as,
- anon_sym_COMMA,
- anon_sym_RBRACE,
- anon_sym_LPAREN,
- anon_sym_of,
- anon_sym_SEMI,
- anon_sym_LBRACK,
- anon_sym_DOT,
- anon_sym_QMARK_DOT,
- anon_sym_AMP_AMP,
- anon_sym_PIPE_PIPE,
- anon_sym_GT_GT_GT,
- anon_sym_LT_LT,
- anon_sym_CARET,
- anon_sym_PERCENT,
- anon_sym_STAR_STAR,
- anon_sym_LT_EQ,
- anon_sym_EQ_EQ_EQ,
- anon_sym_BANG_EQ_EQ,
- anon_sym_GT_EQ,
- anon_sym_QMARK_QMARK,
- anon_sym_instanceof,
- anon_sym_PLUS_PLUS,
- anon_sym_DASH_DASH,
- anon_sym_BQUOTE,
- anon_sym_satisfies,
- [60562] = 5,
- ACTIONS(1726), 1,
- anon_sym_EQ,
- ACTIONS(4780), 1,
- sym__automatic_semicolon,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(1722), 13,
- anon_sym_STAR,
- anon_sym_BANG,
- anon_sym_in,
- anon_sym_GT,
- anon_sym_GT_GT,
- anon_sym_AMP,
- anon_sym_PIPE,
- anon_sym_PLUS,
- anon_sym_DASH,
- anon_sym_SLASH,
- anon_sym_LT,
- anon_sym_EQ_EQ,
- anon_sym_BANG_EQ,
- ACTIONS(1720), 27,
- sym__ternary_qmark,
- anon_sym_as,
- anon_sym_COMMA,
- anon_sym_RBRACE,
- anon_sym_LPAREN,
- anon_sym_of,
- anon_sym_SEMI,
- anon_sym_LBRACK,
- anon_sym_DOT,
- anon_sym_QMARK_DOT,
- anon_sym_AMP_AMP,
- anon_sym_PIPE_PIPE,
- anon_sym_GT_GT_GT,
- anon_sym_LT_LT,
- anon_sym_CARET,
- anon_sym_PERCENT,
- anon_sym_STAR_STAR,
- anon_sym_LT_EQ,
- anon_sym_EQ_EQ_EQ,
- anon_sym_BANG_EQ_EQ,
- anon_sym_GT_EQ,
- anon_sym_QMARK_QMARK,
- anon_sym_instanceof,
- anon_sym_PLUS_PLUS,
- anon_sym_DASH_DASH,
- anon_sym_BQUOTE,
- anon_sym_satisfies,
- [60617] = 32,
- ACTIONS(825), 1,
- anon_sym_BQUOTE,
- ACTIONS(3969), 1,
- anon_sym_LPAREN,
- ACTIONS(3971), 1,
- anon_sym_LBRACK,
- ACTIONS(3973), 1,
- anon_sym_DOT,
- ACTIONS(4051), 1,
- anon_sym_as,
- ACTIONS(4055), 1,
- anon_sym_BANG,
- ACTIONS(4059), 1,
- anon_sym_QMARK_DOT,
- ACTIONS(4061), 1,
- anon_sym_AMP_AMP,
- ACTIONS(4063), 1,
- anon_sym_PIPE_PIPE,
- ACTIONS(4065), 1,
- anon_sym_GT_GT,
- ACTIONS(4069), 1,
- anon_sym_AMP,
- ACTIONS(4071), 1,
- anon_sym_CARET,
- ACTIONS(4073), 1,
- anon_sym_PIPE,
- ACTIONS(4077), 1,
- anon_sym_PERCENT,
- ACTIONS(4079), 1,
- anon_sym_STAR_STAR,
- ACTIONS(4081), 1,
- anon_sym_LT,
- ACTIONS(4089), 1,
- anon_sym_QMARK_QMARK,
- ACTIONS(4093), 1,
- anon_sym_satisfies,
- ACTIONS(4095), 1,
- sym__ternary_qmark,
- STATE(1447), 1,
- sym_type_arguments,
- STATE(5080), 1,
- sym_optional_chain,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(4049), 2,
- anon_sym_STAR,
- anon_sym_SLASH,
- ACTIONS(4057), 2,
- anon_sym_in,
- anon_sym_GT,
- ACTIONS(4067), 2,
- anon_sym_GT_GT_GT,
- anon_sym_LT_LT,
- ACTIONS(4075), 2,
- anon_sym_PLUS,
- anon_sym_DASH,
- ACTIONS(4085), 2,
- anon_sym_EQ_EQ,
- anon_sym_BANG_EQ,
- ACTIONS(4087), 2,
- anon_sym_EQ_EQ_EQ,
- anon_sym_BANG_EQ_EQ,
- ACTIONS(4091), 2,
- anon_sym_PLUS_PLUS,
- anon_sym_DASH_DASH,
- ACTIONS(5089), 2,
- anon_sym_COMMA,
- anon_sym_RBRACE,
- STATE(1757), 2,
- sym_template_string,
- sym_arguments,
- ACTIONS(4083), 3,
- anon_sym_LT_EQ,
- anon_sym_GT_EQ,
- anon_sym_instanceof,
- [60726] = 19,
- ACTIONS(241), 1,
- anon_sym_COMMA,
- ACTIONS(725), 1,
- anon_sym_RBRACE,
- ACTIONS(2275), 1,
- anon_sym_DQUOTE,
- ACTIONS(2277), 1,
- anon_sym_SQUOTE,
- ACTIONS(2309), 1,
- anon_sym_async,
- ACTIONS(2311), 1,
- anon_sym_readonly,
- ACTIONS(2315), 1,
- anon_sym_override,
- ACTIONS(4243), 1,
- anon_sym_EQ,
- ACTIONS(4634), 1,
- anon_sym_LBRACK,
- ACTIONS(5091), 1,
- anon_sym_STAR,
- STATE(2719), 1,
- sym_override_modifier,
- STATE(4672), 1,
- aux_sym_object_pattern_repeat1,
- STATE(5156), 1,
- aux_sym_object_repeat1,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(2285), 2,
- sym_number,
- sym_private_property_identifier,
- ACTIONS(2313), 2,
- anon_sym_get,
- anon_sym_set,
- STATE(3788), 3,
- sym_string,
- sym__property_name,
- sym_computed_property_name,
- ACTIONS(3743), 4,
- anon_sym_LPAREN,
- anon_sym_COLON,
- anon_sym_LT,
- anon_sym_QMARK,
- ACTIONS(2307), 18,
- anon_sym_export,
- anon_sym_type,
- anon_sym_namespace,
- anon_sym_let,
- anon_sym_new,
- sym_identifier,
- anon_sym_static,
- anon_sym_declare,
- anon_sym_public,
- anon_sym_private,
- anon_sym_protected,
- anon_sym_module,
- anon_sym_any,
- anon_sym_number,
- anon_sym_boolean,
- anon_sym_string,
- anon_sym_symbol,
- anon_sym_object,
- [60809] = 6,
- ACTIONS(4697), 1,
- anon_sym_LBRACK,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(4041), 2,
- anon_sym_COMMA,
- anon_sym_extends,
- ACTIONS(4700), 3,
- anon_sym_GT,
- anon_sym_AMP,
- anon_sym_PIPE,
- ACTIONS(3400), 10,
- anon_sym_STAR,
- anon_sym_BANG,
- anon_sym_in,
- anon_sym_GT_GT,
- anon_sym_PLUS,
- anon_sym_DASH,
- anon_sym_SLASH,
- anon_sym_LT,
- anon_sym_EQ_EQ,
- anon_sym_BANG_EQ,
- ACTIONS(3404), 26,
- sym__ternary_qmark,
- anon_sym_as,
- anon_sym_RBRACE,
- anon_sym_LPAREN,
- anon_sym_of,
- anon_sym_COLON,
- anon_sym_RBRACK,
- anon_sym_DOT,
- anon_sym_QMARK_DOT,
- anon_sym_AMP_AMP,
- anon_sym_PIPE_PIPE,
- anon_sym_GT_GT_GT,
- anon_sym_LT_LT,
- anon_sym_CARET,
- anon_sym_PERCENT,
- anon_sym_STAR_STAR,
- anon_sym_LT_EQ,
- anon_sym_EQ_EQ_EQ,
- anon_sym_BANG_EQ_EQ,
- anon_sym_GT_EQ,
- anon_sym_QMARK_QMARK,
- anon_sym_instanceof,
- anon_sym_PLUS_PLUS,
- anon_sym_DASH_DASH,
- anon_sym_BQUOTE,
- anon_sym_satisfies,
- [60866] = 4,
- ACTIONS(5093), 1,
- anon_sym_DOT,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(4336), 13,
- anon_sym_STAR,
- anon_sym_BANG,
- anon_sym_in,
- anon_sym_GT,
- anon_sym_GT_GT,
- anon_sym_AMP,
- anon_sym_PIPE,
- anon_sym_PLUS,
- anon_sym_DASH,
- anon_sym_SLASH,
- anon_sym_LT,
- anon_sym_EQ_EQ,
- anon_sym_BANG_EQ,
- ACTIONS(4338), 28,
- sym__automatic_semicolon,
- sym__ternary_qmark,
- anon_sym_as,
- anon_sym_COMMA,
- anon_sym_RBRACE,
- anon_sym_LPAREN,
- anon_sym_of,
- anon_sym_SEMI,
- anon_sym_LBRACK,
- anon_sym_QMARK_DOT,
- anon_sym_AMP_AMP,
- anon_sym_PIPE_PIPE,
- anon_sym_GT_GT_GT,
- anon_sym_LT_LT,
- anon_sym_CARET,
- anon_sym_PERCENT,
- anon_sym_STAR_STAR,
- anon_sym_LT_EQ,
- anon_sym_EQ_EQ_EQ,
- anon_sym_BANG_EQ_EQ,
- anon_sym_GT_EQ,
- anon_sym_QMARK_QMARK,
- anon_sym_instanceof,
- anon_sym_PLUS_PLUS,
- anon_sym_DASH_DASH,
- anon_sym_BQUOTE,
- anon_sym_satisfies,
- anon_sym_extends,
- [60919] = 3,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(4342), 13,
- anon_sym_STAR,
- anon_sym_BANG,
- anon_sym_in,
- anon_sym_GT,
- anon_sym_GT_GT,
- anon_sym_AMP,
- anon_sym_PIPE,
- anon_sym_PLUS,
- anon_sym_DASH,
- anon_sym_SLASH,
- anon_sym_LT,
- anon_sym_EQ_EQ,
- anon_sym_BANG_EQ,
- ACTIONS(4344), 29,
- sym__automatic_semicolon,
- sym__ternary_qmark,
- anon_sym_as,
- anon_sym_COMMA,
- anon_sym_RBRACE,
- anon_sym_LPAREN,
- anon_sym_of,
- anon_sym_SEMI,
- anon_sym_LBRACK,
- anon_sym_DOT,
- anon_sym_QMARK_DOT,
- anon_sym_AMP_AMP,
- anon_sym_PIPE_PIPE,
- anon_sym_GT_GT_GT,
- anon_sym_LT_LT,
- anon_sym_CARET,
- anon_sym_PERCENT,
- anon_sym_STAR_STAR,
- anon_sym_LT_EQ,
- anon_sym_EQ_EQ_EQ,
- anon_sym_BANG_EQ_EQ,
- anon_sym_GT_EQ,
- anon_sym_QMARK_QMARK,
- anon_sym_instanceof,
- anon_sym_PLUS_PLUS,
- anon_sym_DASH_DASH,
- anon_sym_BQUOTE,
- anon_sym_satisfies,
- anon_sym_extends,
- [60970] = 9,
- ACTIONS(2331), 1,
- anon_sym_extends,
- ACTIONS(4414), 1,
- anon_sym_LBRACK,
- ACTIONS(5095), 1,
- anon_sym_RPAREN,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(1726), 2,
- anon_sym_EQ,
- anon_sym_QMARK,
- ACTIONS(4417), 2,
- anon_sym_AMP,
- anon_sym_PIPE,
- ACTIONS(4989), 2,
- anon_sym_COMMA,
- anon_sym_COLON,
- ACTIONS(1724), 11,
- anon_sym_STAR,
- anon_sym_BANG,
- anon_sym_in,
- anon_sym_GT,
- anon_sym_GT_GT,
- anon_sym_PLUS,
- anon_sym_DASH,
- anon_sym_SLASH,
- anon_sym_LT,
- anon_sym_EQ_EQ,
- anon_sym_BANG_EQ,
- ACTIONS(1728), 22,
- sym__ternary_qmark,
- anon_sym_as,
- anon_sym_LPAREN,
- anon_sym_DOT,
- anon_sym_QMARK_DOT,
- anon_sym_AMP_AMP,
- anon_sym_PIPE_PIPE,
- anon_sym_GT_GT_GT,
- anon_sym_LT_LT,
- anon_sym_CARET,
- anon_sym_PERCENT,
- anon_sym_STAR_STAR,
- anon_sym_LT_EQ,
- anon_sym_EQ_EQ_EQ,
- anon_sym_BANG_EQ_EQ,
- anon_sym_GT_EQ,
- anon_sym_QMARK_QMARK,
- anon_sym_instanceof,
- anon_sym_PLUS_PLUS,
- anon_sym_DASH_DASH,
- anon_sym_BQUOTE,
- anon_sym_satisfies,
- [61033] = 4,
- ACTIONS(5098), 1,
- anon_sym_LBRACK,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(4342), 13,
- anon_sym_STAR,
- anon_sym_BANG,
- anon_sym_in,
- anon_sym_GT,
- anon_sym_GT_GT,
- anon_sym_AMP,
- anon_sym_PIPE,
- anon_sym_PLUS,
- anon_sym_DASH,
- anon_sym_SLASH,
- anon_sym_LT,
- anon_sym_EQ_EQ,
- anon_sym_BANG_EQ,
- ACTIONS(4344), 28,
- sym__automatic_semicolon,
- sym__ternary_qmark,
- anon_sym_as,
- anon_sym_COMMA,
- anon_sym_RBRACE,
- anon_sym_LPAREN,
- anon_sym_of,
- anon_sym_SEMI,
- anon_sym_DOT,
- anon_sym_QMARK_DOT,
- anon_sym_AMP_AMP,
- anon_sym_PIPE_PIPE,
- anon_sym_GT_GT_GT,
- anon_sym_LT_LT,
- anon_sym_CARET,
- anon_sym_PERCENT,
- anon_sym_STAR_STAR,
- anon_sym_LT_EQ,
- anon_sym_EQ_EQ_EQ,
- anon_sym_BANG_EQ_EQ,
- anon_sym_GT_EQ,
- anon_sym_QMARK_QMARK,
- anon_sym_instanceof,
- anon_sym_PLUS_PLUS,
- anon_sym_DASH_DASH,
- anon_sym_BQUOTE,
- anon_sym_satisfies,
- anon_sym_extends,
- [61086] = 3,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(4366), 13,
- anon_sym_STAR,
- anon_sym_BANG,
- anon_sym_in,
- anon_sym_GT,
- anon_sym_GT_GT,
- anon_sym_AMP,
- anon_sym_PIPE,
- anon_sym_PLUS,
- anon_sym_DASH,
- anon_sym_SLASH,
- anon_sym_LT,
- anon_sym_EQ_EQ,
- anon_sym_BANG_EQ,
- ACTIONS(4368), 29,
- sym__automatic_semicolon,
- sym__ternary_qmark,
- anon_sym_as,
- anon_sym_COMMA,
- anon_sym_RBRACE,
- anon_sym_LPAREN,
- anon_sym_of,
- anon_sym_SEMI,
- anon_sym_LBRACK,
- anon_sym_DOT,
- anon_sym_QMARK_DOT,
- anon_sym_AMP_AMP,
- anon_sym_PIPE_PIPE,
- anon_sym_GT_GT_GT,
- anon_sym_LT_LT,
- anon_sym_CARET,
- anon_sym_PERCENT,
- anon_sym_STAR_STAR,
- anon_sym_LT_EQ,
- anon_sym_EQ_EQ_EQ,
- anon_sym_BANG_EQ_EQ,
- anon_sym_GT_EQ,
- anon_sym_QMARK_QMARK,
- anon_sym_instanceof,
- anon_sym_PLUS_PLUS,
- anon_sym_DASH_DASH,
- anon_sym_BQUOTE,
- anon_sym_satisfies,
- anon_sym_extends,
- [61137] = 9,
- ACTIONS(4392), 1,
- anon_sym_extends,
- ACTIONS(4444), 1,
- anon_sym_LBRACK,
- ACTIONS(5100), 1,
- anon_sym_RPAREN,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(4440), 2,
- anon_sym_EQ,
- anon_sym_QMARK,
- ACTIONS(4447), 2,
- anon_sym_AMP,
- anon_sym_PIPE,
- ACTIONS(4985), 2,
- anon_sym_COMMA,
- anon_sym_COLON,
- ACTIONS(4438), 11,
- anon_sym_STAR,
- anon_sym_BANG,
- anon_sym_in,
- anon_sym_GT,
- anon_sym_GT_GT,
- anon_sym_PLUS,
- anon_sym_DASH,
- anon_sym_SLASH,
- anon_sym_LT,
- anon_sym_EQ_EQ,
- anon_sym_BANG_EQ,
- ACTIONS(4442), 22,
- sym__ternary_qmark,
- anon_sym_as,
- anon_sym_LPAREN,
- anon_sym_DOT,
- anon_sym_QMARK_DOT,
- anon_sym_AMP_AMP,
- anon_sym_PIPE_PIPE,
- anon_sym_GT_GT_GT,
- anon_sym_LT_LT,
- anon_sym_CARET,
- anon_sym_PERCENT,
- anon_sym_STAR_STAR,
- anon_sym_LT_EQ,
- anon_sym_EQ_EQ_EQ,
- anon_sym_BANG_EQ_EQ,
- anon_sym_GT_EQ,
- anon_sym_QMARK_QMARK,
- anon_sym_instanceof,
- anon_sym_PLUS_PLUS,
- anon_sym_DASH_DASH,
- anon_sym_BQUOTE,
- anon_sym_satisfies,
- [61200] = 4,
- ACTIONS(5107), 1,
- sym_regex_flags,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(5103), 16,
- anon_sym_STAR,
- anon_sym_as,
- anon_sym_BANG,
- anon_sym_in,
- anon_sym_GT,
- anon_sym_GT_GT,
- anon_sym_AMP,
- anon_sym_PIPE,
- anon_sym_PLUS,
- anon_sym_DASH,
- anon_sym_SLASH,
- anon_sym_LT,
- anon_sym_EQ_EQ,
- anon_sym_BANG_EQ,
- anon_sym_instanceof,
- anon_sym_satisfies,
- ACTIONS(5105), 25,
- sym__ternary_qmark,
- anon_sym_COMMA,
- anon_sym_RBRACE,
- anon_sym_LPAREN,
- anon_sym_RPAREN,
- anon_sym_COLON,
- anon_sym_LBRACK,
- anon_sym_RBRACK,
- anon_sym_DOT,
- anon_sym_QMARK_DOT,
- anon_sym_AMP_AMP,
- anon_sym_PIPE_PIPE,
- anon_sym_GT_GT_GT,
- anon_sym_LT_LT,
- anon_sym_CARET,
- anon_sym_PERCENT,
- anon_sym_STAR_STAR,
- anon_sym_LT_EQ,
- anon_sym_EQ_EQ_EQ,
- anon_sym_BANG_EQ_EQ,
- anon_sym_GT_EQ,
- anon_sym_QMARK_QMARK,
- anon_sym_PLUS_PLUS,
- anon_sym_DASH_DASH,
- anon_sym_BQUOTE,
- [61253] = 3,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(4324), 13,
- anon_sym_STAR,
- anon_sym_BANG,
- anon_sym_in,
- anon_sym_GT,
- anon_sym_GT_GT,
- anon_sym_AMP,
- anon_sym_PIPE,
- anon_sym_PLUS,
- anon_sym_DASH,
- anon_sym_SLASH,
- anon_sym_LT,
- anon_sym_EQ_EQ,
- anon_sym_BANG_EQ,
- ACTIONS(4326), 29,
- sym__automatic_semicolon,
- sym__ternary_qmark,
- anon_sym_as,
- anon_sym_COMMA,
- anon_sym_RBRACE,
- anon_sym_LPAREN,
- anon_sym_of,
- anon_sym_SEMI,
- anon_sym_LBRACK,
- anon_sym_DOT,
- anon_sym_QMARK_DOT,
- anon_sym_AMP_AMP,
- anon_sym_PIPE_PIPE,
- anon_sym_GT_GT_GT,
- anon_sym_LT_LT,
- anon_sym_CARET,
- anon_sym_PERCENT,
- anon_sym_STAR_STAR,
- anon_sym_LT_EQ,
- anon_sym_EQ_EQ_EQ,
- anon_sym_BANG_EQ_EQ,
- anon_sym_GT_EQ,
- anon_sym_QMARK_QMARK,
- anon_sym_instanceof,
- anon_sym_PLUS_PLUS,
- anon_sym_DASH_DASH,
- anon_sym_BQUOTE,
- anon_sym_satisfies,
- anon_sym_extends,
- [61304] = 3,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(4025), 13,
- anon_sym_STAR,
- anon_sym_BANG,
- anon_sym_in,
- anon_sym_GT,
- anon_sym_GT_GT,
- anon_sym_AMP,
- anon_sym_PIPE,
- anon_sym_PLUS,
- anon_sym_DASH,
- anon_sym_SLASH,
- anon_sym_LT,
- anon_sym_EQ_EQ,
- anon_sym_BANG_EQ,
- ACTIONS(4027), 29,
- sym__automatic_semicolon,
- sym__ternary_qmark,
- anon_sym_as,
- anon_sym_COMMA,
- anon_sym_RBRACE,
- anon_sym_LPAREN,
- anon_sym_of,
- anon_sym_SEMI,
- anon_sym_LBRACK,
- anon_sym_DOT,
- anon_sym_QMARK_DOT,
- anon_sym_AMP_AMP,
- anon_sym_PIPE_PIPE,
- anon_sym_GT_GT_GT,
- anon_sym_LT_LT,
- anon_sym_CARET,
- anon_sym_PERCENT,
- anon_sym_STAR_STAR,
- anon_sym_LT_EQ,
- anon_sym_EQ_EQ_EQ,
- anon_sym_BANG_EQ_EQ,
- anon_sym_GT_EQ,
- anon_sym_QMARK_QMARK,
- anon_sym_instanceof,
- anon_sym_PLUS_PLUS,
- anon_sym_DASH_DASH,
- anon_sym_BQUOTE,
- anon_sym_satisfies,
- anon_sym_extends,
- [61355] = 3,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(4013), 13,
- anon_sym_STAR,
- anon_sym_BANG,
- anon_sym_in,
- anon_sym_GT,
- anon_sym_GT_GT,
- anon_sym_AMP,
- anon_sym_PIPE,
- anon_sym_PLUS,
- anon_sym_DASH,
- anon_sym_SLASH,
- anon_sym_LT,
- anon_sym_EQ_EQ,
- anon_sym_BANG_EQ,
- ACTIONS(4015), 29,
- sym__automatic_semicolon,
- sym__ternary_qmark,
- anon_sym_as,
- anon_sym_COMMA,
- anon_sym_RBRACE,
- anon_sym_LPAREN,
- anon_sym_of,
- anon_sym_SEMI,
- anon_sym_LBRACK,
- anon_sym_DOT,
- anon_sym_QMARK_DOT,
- anon_sym_AMP_AMP,
- anon_sym_PIPE_PIPE,
- anon_sym_GT_GT_GT,
- anon_sym_LT_LT,
- anon_sym_CARET,
- anon_sym_PERCENT,
- anon_sym_STAR_STAR,
- anon_sym_LT_EQ,
- anon_sym_EQ_EQ_EQ,
- anon_sym_BANG_EQ_EQ,
- anon_sym_GT_EQ,
- anon_sym_QMARK_QMARK,
- anon_sym_instanceof,
- anon_sym_PLUS_PLUS,
- anon_sym_DASH_DASH,
- anon_sym_BQUOTE,
- anon_sym_satisfies,
- anon_sym_extends,
- [61406] = 4,
- ACTIONS(4027), 1,
- anon_sym_extends,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(4318), 13,
- anon_sym_STAR,
- anon_sym_BANG,
- anon_sym_in,
- anon_sym_GT,
- anon_sym_GT_GT,
- anon_sym_AMP,
- anon_sym_PIPE,
- anon_sym_PLUS,
- anon_sym_DASH,
- anon_sym_SLASH,
- anon_sym_LT,
- anon_sym_EQ_EQ,
- anon_sym_BANG_EQ,
- ACTIONS(4320), 28,
- sym__automatic_semicolon,
- sym__ternary_qmark,
- anon_sym_as,
- anon_sym_COMMA,
- anon_sym_RBRACE,
- anon_sym_LPAREN,
- anon_sym_of,
- anon_sym_SEMI,
- anon_sym_LBRACK,
- anon_sym_DOT,
- anon_sym_QMARK_DOT,
- anon_sym_AMP_AMP,
- anon_sym_PIPE_PIPE,
- anon_sym_GT_GT_GT,
- anon_sym_LT_LT,
- anon_sym_CARET,
- anon_sym_PERCENT,
- anon_sym_STAR_STAR,
- anon_sym_LT_EQ,
- anon_sym_EQ_EQ_EQ,
- anon_sym_BANG_EQ_EQ,
- anon_sym_GT_EQ,
- anon_sym_QMARK_QMARK,
- anon_sym_instanceof,
- anon_sym_PLUS_PLUS,
- anon_sym_DASH_DASH,
- anon_sym_BQUOTE,
- anon_sym_satisfies,
- [61459] = 6,
- ACTIONS(5083), 1,
- anon_sym_AMP,
- ACTIONS(5085), 1,
- anon_sym_PIPE,
- ACTIONS(5087), 1,
- anon_sym_extends,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(4356), 11,
- anon_sym_STAR,
- anon_sym_BANG,
- anon_sym_in,
- anon_sym_GT,
- anon_sym_GT_GT,
- anon_sym_PLUS,
- anon_sym_DASH,
- anon_sym_SLASH,
- anon_sym_LT,
- anon_sym_EQ_EQ,
- anon_sym_BANG_EQ,
- ACTIONS(4358), 28,
- sym__automatic_semicolon,
- sym__ternary_qmark,
- anon_sym_as,
- anon_sym_COMMA,
- anon_sym_RBRACE,
- anon_sym_LPAREN,
- anon_sym_of,
- anon_sym_SEMI,
- anon_sym_LBRACK,
- anon_sym_DOT,
- anon_sym_QMARK_DOT,
- anon_sym_AMP_AMP,
- anon_sym_PIPE_PIPE,
- anon_sym_GT_GT_GT,
- anon_sym_LT_LT,
- anon_sym_CARET,
- anon_sym_PERCENT,
- anon_sym_STAR_STAR,
- anon_sym_LT_EQ,
- anon_sym_EQ_EQ_EQ,
- anon_sym_BANG_EQ_EQ,
- anon_sym_GT_EQ,
- anon_sym_QMARK_QMARK,
- anon_sym_instanceof,
- anon_sym_PLUS_PLUS,
- anon_sym_DASH_DASH,
- anon_sym_BQUOTE,
- anon_sym_satisfies,
- [61516] = 6,
- ACTIONS(5083), 1,
- anon_sym_AMP,
- ACTIONS(5085), 1,
- anon_sym_PIPE,
- ACTIONS(5087), 1,
- anon_sym_extends,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(4360), 11,
- anon_sym_STAR,
- anon_sym_BANG,
- anon_sym_in,
- anon_sym_GT,
- anon_sym_GT_GT,
- anon_sym_PLUS,
- anon_sym_DASH,
- anon_sym_SLASH,
- anon_sym_LT,
- anon_sym_EQ_EQ,
- anon_sym_BANG_EQ,
- ACTIONS(4362), 28,
- sym__automatic_semicolon,
- sym__ternary_qmark,
- anon_sym_as,
- anon_sym_COMMA,
- anon_sym_RBRACE,
- anon_sym_LPAREN,
- anon_sym_of,
- anon_sym_SEMI,
- anon_sym_LBRACK,
- anon_sym_DOT,
- anon_sym_QMARK_DOT,
- anon_sym_AMP_AMP,
- anon_sym_PIPE_PIPE,
- anon_sym_GT_GT_GT,
- anon_sym_LT_LT,
- anon_sym_CARET,
- anon_sym_PERCENT,
- anon_sym_STAR_STAR,
- anon_sym_LT_EQ,
- anon_sym_EQ_EQ_EQ,
- anon_sym_BANG_EQ_EQ,
- anon_sym_GT_EQ,
- anon_sym_QMARK_QMARK,
- anon_sym_instanceof,
- anon_sym_PLUS_PLUS,
- anon_sym_DASH_DASH,
- anon_sym_BQUOTE,
- anon_sym_satisfies,
- [61573] = 6,
- ACTIONS(5083), 1,
- anon_sym_AMP,
- ACTIONS(5085), 1,
- anon_sym_PIPE,
- ACTIONS(5087), 1,
- anon_sym_extends,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(4318), 11,
- anon_sym_STAR,
- anon_sym_BANG,
- anon_sym_in,
- anon_sym_GT,
- anon_sym_GT_GT,
- anon_sym_PLUS,
- anon_sym_DASH,
- anon_sym_SLASH,
- anon_sym_LT,
- anon_sym_EQ_EQ,
- anon_sym_BANG_EQ,
- ACTIONS(4320), 28,
- sym__automatic_semicolon,
- sym__ternary_qmark,
- anon_sym_as,
- anon_sym_COMMA,
- anon_sym_RBRACE,
- anon_sym_LPAREN,
- anon_sym_of,
- anon_sym_SEMI,
- anon_sym_LBRACK,
- anon_sym_DOT,
- anon_sym_QMARK_DOT,
- anon_sym_AMP_AMP,
- anon_sym_PIPE_PIPE,
- anon_sym_GT_GT_GT,
- anon_sym_LT_LT,
- anon_sym_CARET,
- anon_sym_PERCENT,
- anon_sym_STAR_STAR,
- anon_sym_LT_EQ,
- anon_sym_EQ_EQ_EQ,
- anon_sym_BANG_EQ_EQ,
- anon_sym_GT_EQ,
- anon_sym_QMARK_QMARK,
- anon_sym_instanceof,
- anon_sym_PLUS_PLUS,
- anon_sym_DASH_DASH,
- anon_sym_BQUOTE,
- anon_sym_satisfies,
- [61630] = 4,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(1993), 6,
- anon_sym_STAR,
- anon_sym_LBRACK,
- anon_sym_DQUOTE,
- anon_sym_SQUOTE,
- sym_number,
- sym_private_property_identifier,
- ACTIONS(3743), 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(1991), 25,
- anon_sym_export,
- anon_sym_type,
- anon_sym_namespace,
- anon_sym_let,
- anon_sym_async,
- anon_sym_new,
- sym_identifier,
- anon_sym_static,
- anon_sym_readonly,
- anon_sym_get,
- anon_sym_set,
- anon_sym_declare,
- anon_sym_public,
- anon_sym_private,
- anon_sym_protected,
- anon_sym_override,
- anon_sym_module,
- anon_sym_any,
- anon_sym_number,
- anon_sym_boolean,
- anon_sym_string,
- anon_sym_symbol,
- anon_sym_object,
- anon_sym_abstract,
- anon_sym_accessor,
- [61683] = 4,
- ACTIONS(3402), 1,
- anon_sym_EQ,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(3400), 13,
- anon_sym_STAR,
- anon_sym_BANG,
- anon_sym_in,
- anon_sym_GT,
- anon_sym_GT_GT,
- anon_sym_AMP,
- anon_sym_PIPE,
- anon_sym_PLUS,
- anon_sym_DASH,
- anon_sym_SLASH,
- anon_sym_LT,
- anon_sym_EQ_EQ,
- anon_sym_BANG_EQ,
- ACTIONS(3404), 28,
- sym__ternary_qmark,
- anon_sym_as,
- anon_sym_COMMA,
- anon_sym_RBRACE,
- anon_sym_LPAREN,
- anon_sym_RPAREN,
- anon_sym_COLON,
- anon_sym_LBRACK,
- anon_sym_RBRACK,
- anon_sym_DOT,
- anon_sym_QMARK_DOT,
- anon_sym_AMP_AMP,
- anon_sym_PIPE_PIPE,
- anon_sym_GT_GT_GT,
- anon_sym_LT_LT,
- anon_sym_CARET,
- anon_sym_PERCENT,
- anon_sym_STAR_STAR,
- anon_sym_LT_EQ,
- anon_sym_EQ_EQ_EQ,
- anon_sym_BANG_EQ_EQ,
- anon_sym_GT_EQ,
- anon_sym_QMARK_QMARK,
- anon_sym_instanceof,
- anon_sym_PLUS_PLUS,
- anon_sym_DASH_DASH,
- anon_sym_BQUOTE,
- anon_sym_satisfies,
- [61736] = 19,
- ACTIONS(241), 1,
- anon_sym_COMMA,
- ACTIONS(2275), 1,
- anon_sym_DQUOTE,
- ACTIONS(2277), 1,
- anon_sym_SQUOTE,
- ACTIONS(2309), 1,
- anon_sym_async,
- ACTIONS(2311), 1,
- anon_sym_readonly,
- ACTIONS(2315), 1,
- anon_sym_override,
- ACTIONS(4243), 1,
- anon_sym_EQ,
- ACTIONS(4634), 1,
- anon_sym_LBRACK,
- ACTIONS(5091), 1,
- anon_sym_STAR,
- ACTIONS(5109), 1,
- anon_sym_RBRACE,
- STATE(2719), 1,
- sym_override_modifier,
- STATE(4672), 1,
- aux_sym_object_pattern_repeat1,
- STATE(5156), 1,
- aux_sym_object_repeat1,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(2285), 2,
- sym_number,
- sym_private_property_identifier,
- ACTIONS(2313), 2,
- anon_sym_get,
- anon_sym_set,
- STATE(3788), 3,
- sym_string,
- sym__property_name,
- sym_computed_property_name,
- ACTIONS(3743), 4,
- anon_sym_LPAREN,
- anon_sym_COLON,
- anon_sym_LT,
- anon_sym_QMARK,
- ACTIONS(2307), 18,
- anon_sym_export,
- anon_sym_type,
- anon_sym_namespace,
- anon_sym_let,
- anon_sym_new,
- sym_identifier,
- anon_sym_static,
- anon_sym_declare,
- anon_sym_public,
- anon_sym_private,
- anon_sym_protected,
- anon_sym_module,
- anon_sym_any,
- anon_sym_number,
- anon_sym_boolean,
- anon_sym_string,
- anon_sym_symbol,
- anon_sym_object,
- [61819] = 6,
- ACTIONS(4691), 1,
- anon_sym_LBRACK,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(4330), 2,
- anon_sym_COMMA,
- anon_sym_extends,
- ACTIONS(4694), 3,
- anon_sym_GT,
- anon_sym_AMP,
- anon_sym_PIPE,
- ACTIONS(3400), 10,
- anon_sym_STAR,
- anon_sym_BANG,
- anon_sym_in,
- anon_sym_GT_GT,
- anon_sym_PLUS,
- anon_sym_DASH,
- anon_sym_SLASH,
- anon_sym_LT,
- anon_sym_EQ_EQ,
- anon_sym_BANG_EQ,
- ACTIONS(3404), 26,
- sym__ternary_qmark,
- anon_sym_as,
- anon_sym_RBRACE,
- anon_sym_LPAREN,
- anon_sym_of,
- anon_sym_COLON,
- anon_sym_RBRACK,
- anon_sym_DOT,
- anon_sym_QMARK_DOT,
- anon_sym_AMP_AMP,
- anon_sym_PIPE_PIPE,
- anon_sym_GT_GT_GT,
- anon_sym_LT_LT,
- anon_sym_CARET,
- anon_sym_PERCENT,
- anon_sym_STAR_STAR,
- anon_sym_LT_EQ,
- anon_sym_EQ_EQ_EQ,
- anon_sym_BANG_EQ_EQ,
- anon_sym_GT_EQ,
- anon_sym_QMARK_QMARK,
- anon_sym_instanceof,
- anon_sym_PLUS_PLUS,
- anon_sym_DASH_DASH,
- anon_sym_BQUOTE,
- anon_sym_satisfies,
- [61876] = 7,
- ACTIONS(4523), 1,
- anon_sym_LBRACK,
- ACTIONS(4525), 1,
- anon_sym_DOT,
- ACTIONS(4786), 1,
- anon_sym_QMARK_DOT,
- STATE(4772), 1,
- sym_optional_chain,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(1787), 13,
- anon_sym_STAR,
- anon_sym_BANG,
- anon_sym_in,
- anon_sym_GT,
- anon_sym_GT_GT,
- anon_sym_AMP,
- anon_sym_PIPE,
- anon_sym_PLUS,
- anon_sym_DASH,
- anon_sym_SLASH,
- anon_sym_LT,
- anon_sym_EQ_EQ,
- anon_sym_BANG_EQ,
- ACTIONS(1789), 25,
- sym__automatic_semicolon,
- sym__ternary_qmark,
- anon_sym_as,
- anon_sym_COMMA,
- anon_sym_RBRACE,
- anon_sym_LPAREN,
- anon_sym_of,
- anon_sym_SEMI,
- anon_sym_AMP_AMP,
- anon_sym_PIPE_PIPE,
- anon_sym_GT_GT_GT,
- anon_sym_LT_LT,
- anon_sym_CARET,
- anon_sym_PERCENT,
- anon_sym_STAR_STAR,
- anon_sym_LT_EQ,
- anon_sym_EQ_EQ_EQ,
- anon_sym_BANG_EQ_EQ,
- anon_sym_GT_EQ,
- anon_sym_QMARK_QMARK,
- anon_sym_instanceof,
- anon_sym_PLUS_PLUS,
- anon_sym_DASH_DASH,
- anon_sym_BQUOTE,
- anon_sym_satisfies,
- [61935] = 3,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(4328), 13,
- anon_sym_STAR,
- anon_sym_BANG,
- anon_sym_in,
- anon_sym_GT,
- anon_sym_GT_GT,
- anon_sym_AMP,
- anon_sym_PIPE,
- anon_sym_PLUS,
- anon_sym_DASH,
- anon_sym_SLASH,
- anon_sym_LT,
- anon_sym_EQ_EQ,
- anon_sym_BANG_EQ,
- ACTIONS(4330), 29,
- sym__automatic_semicolon,
- sym__ternary_qmark,
- anon_sym_as,
- anon_sym_COMMA,
- anon_sym_RBRACE,
- anon_sym_LPAREN,
- anon_sym_of,
- anon_sym_SEMI,
- anon_sym_LBRACK,
- anon_sym_DOT,
- anon_sym_QMARK_DOT,
- anon_sym_AMP_AMP,
- anon_sym_PIPE_PIPE,
- anon_sym_GT_GT_GT,
- anon_sym_LT_LT,
- anon_sym_CARET,
- anon_sym_PERCENT,
- anon_sym_STAR_STAR,
- anon_sym_LT_EQ,
- anon_sym_EQ_EQ_EQ,
- anon_sym_BANG_EQ_EQ,
- anon_sym_GT_EQ,
- anon_sym_QMARK_QMARK,
- anon_sym_instanceof,
- anon_sym_PLUS_PLUS,
- anon_sym_DASH_DASH,
- anon_sym_BQUOTE,
- anon_sym_satisfies,
- anon_sym_extends,
- [61986] = 14,
- ACTIONS(170), 1,
- anon_sym_DOT_DOT_DOT,
- ACTIONS(1506), 1,
- anon_sym_DQUOTE,
- ACTIONS(1508), 1,
- anon_sym_SQUOTE,
- ACTIONS(3199), 1,
- anon_sym_LBRACE,
- ACTIONS(3847), 1,
- anon_sym_LBRACK,
- ACTIONS(5113), 1,
- anon_sym_COMMA,
- ACTIONS(5115), 1,
- anon_sym_RBRACE,
- STATE(4848), 1,
- aux_sym_object_pattern_repeat1,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(5117), 2,
- sym_number,
- sym_private_property_identifier,
- STATE(4834), 3,
- sym_object_assignment_pattern,
- sym_rest_pattern,
- sym_pair_pattern,
- STATE(5634), 3,
- sym_string,
- sym__property_name,
- sym_computed_property_name,
- STATE(5760), 3,
- sym_object_pattern,
- sym_array_pattern,
- sym__destructuring_pattern,
- ACTIONS(5111), 23,
- anon_sym_export,
- anon_sym_type,
- anon_sym_namespace,
- anon_sym_let,
- anon_sym_async,
- anon_sym_new,
- sym_identifier,
- anon_sym_static,
- anon_sym_readonly,
- anon_sym_get,
- anon_sym_set,
- anon_sym_declare,
- anon_sym_public,
- anon_sym_private,
- anon_sym_protected,
- anon_sym_override,
- anon_sym_module,
- anon_sym_any,
- anon_sym_number,
- anon_sym_boolean,
- anon_sym_string,
- anon_sym_symbol,
- anon_sym_object,
- [62059] = 32,
- ACTIONS(89), 1,
- anon_sym_BQUOTE,
- ACTIONS(4059), 1,
- anon_sym_QMARK_DOT,
- ACTIONS(4519), 1,
- anon_sym_LPAREN,
- ACTIONS(4523), 1,
- anon_sym_LBRACK,
- ACTIONS(4525), 1,
- anon_sym_DOT,
- ACTIONS(4555), 1,
- anon_sym_as,
- ACTIONS(4562), 1,
- anon_sym_BANG,
- ACTIONS(4574), 1,
- anon_sym_satisfies,
- ACTIONS(5125), 1,
- anon_sym_AMP_AMP,
- ACTIONS(5127), 1,
- anon_sym_PIPE_PIPE,
- ACTIONS(5129), 1,
- anon_sym_GT_GT,
- ACTIONS(5133), 1,
- anon_sym_AMP,
- ACTIONS(5135), 1,
- anon_sym_CARET,
- ACTIONS(5137), 1,
- anon_sym_PIPE,
- ACTIONS(5141), 1,
- anon_sym_PERCENT,
- ACTIONS(5143), 1,
- anon_sym_STAR_STAR,
- ACTIONS(5145), 1,
- anon_sym_LT,
- ACTIONS(5153), 1,
- anon_sym_QMARK_QMARK,
- ACTIONS(5155), 1,
- sym__ternary_qmark,
- STATE(1812), 1,
- sym_type_arguments,
- STATE(4772), 1,
- sym_optional_chain,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(4545), 2,
- anon_sym_PLUS_PLUS,
- anon_sym_DASH_DASH,
- ACTIONS(5119), 2,
- anon_sym_STAR,
- anon_sym_SLASH,
- ACTIONS(5121), 2,
- anon_sym_in,
- anon_sym_GT,
- ACTIONS(5123), 2,
- sym__automatic_semicolon,
- anon_sym_SEMI,
- ACTIONS(5131), 2,
- anon_sym_GT_GT_GT,
- anon_sym_LT_LT,
- ACTIONS(5139), 2,
- anon_sym_PLUS,
- anon_sym_DASH,
- ACTIONS(5149), 2,
- anon_sym_EQ_EQ,
- anon_sym_BANG_EQ,
- ACTIONS(5151), 2,
- anon_sym_EQ_EQ_EQ,
- anon_sym_BANG_EQ_EQ,
- STATE(2133), 2,
- sym_template_string,
- sym_arguments,
- ACTIONS(5147), 3,
- anon_sym_LT_EQ,
- anon_sym_GT_EQ,
- anon_sym_instanceof,
- [62168] = 7,
- ACTIONS(3410), 1,
- anon_sym_DOT,
- ACTIONS(3414), 1,
- anon_sym_QMARK_DOT,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(3418), 2,
- anon_sym_AMP,
- anon_sym_PIPE,
- ACTIONS(3406), 7,
- sym__automatic_semicolon,
- anon_sym_COMMA,
- anon_sym_RBRACE,
- anon_sym_SEMI,
- anon_sym_LBRACK,
- anon_sym_extends,
- anon_sym_PIPE_RBRACE,
- ACTIONS(3400), 11,
- anon_sym_STAR,
- anon_sym_BANG,
- anon_sym_in,
- anon_sym_GT,
- anon_sym_GT_GT,
- anon_sym_PLUS,
- anon_sym_DASH,
- anon_sym_SLASH,
- anon_sym_LT,
- anon_sym_EQ_EQ,
- anon_sym_BANG_EQ,
- ACTIONS(3404), 20,
- sym__ternary_qmark,
- 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,
- anon_sym_satisfies,
- [62227] = 6,
- ACTIONS(4330), 1,
- anon_sym_extends,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(4691), 2,
- anon_sym_COMMA,
- anon_sym_LBRACK,
- ACTIONS(4694), 3,
- anon_sym_GT,
- anon_sym_AMP,
- anon_sym_PIPE,
- ACTIONS(3400), 10,
- anon_sym_STAR,
- anon_sym_BANG,
- anon_sym_in,
- anon_sym_GT_GT,
- anon_sym_PLUS,
- anon_sym_DASH,
- anon_sym_SLASH,
- anon_sym_LT,
- anon_sym_EQ_EQ,
- anon_sym_BANG_EQ,
- ACTIONS(3404), 26,
- sym__automatic_semicolon,
- sym__ternary_qmark,
- anon_sym_as,
- anon_sym_RBRACE,
- anon_sym_LPAREN,
- anon_sym_of,
- anon_sym_SEMI,
- anon_sym_DOT,
- anon_sym_QMARK_DOT,
- anon_sym_AMP_AMP,
- anon_sym_PIPE_PIPE,
- anon_sym_GT_GT_GT,
- anon_sym_LT_LT,
- anon_sym_CARET,
- anon_sym_PERCENT,
- anon_sym_STAR_STAR,
- anon_sym_LT_EQ,
- anon_sym_EQ_EQ_EQ,
- anon_sym_BANG_EQ_EQ,
- anon_sym_GT_EQ,
- anon_sym_QMARK_QMARK,
- anon_sym_instanceof,
- anon_sym_PLUS_PLUS,
- anon_sym_DASH_DASH,
- anon_sym_BQUOTE,
- anon_sym_satisfies,
- [62284] = 5,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(4402), 2,
- anon_sym_AMP,
- anon_sym_PIPE,
- ACTIONS(4404), 7,
- sym__automatic_semicolon,
- anon_sym_COMMA,
- anon_sym_RBRACE,
- anon_sym_SEMI,
- anon_sym_LBRACK,
- anon_sym_extends,
- anon_sym_PIPE_RBRACE,
- ACTIONS(3400), 11,
- anon_sym_STAR,
- anon_sym_BANG,
- anon_sym_in,
- anon_sym_GT,
- anon_sym_GT_GT,
- anon_sym_PLUS,
- anon_sym_DASH,
- anon_sym_SLASH,
- anon_sym_LT,
- anon_sym_EQ_EQ,
- anon_sym_BANG_EQ,
- ACTIONS(3404), 22,
- sym__ternary_qmark,
- anon_sym_as,
- anon_sym_LPAREN,
- anon_sym_DOT,
- anon_sym_QMARK_DOT,
- anon_sym_AMP_AMP,
- anon_sym_PIPE_PIPE,
- anon_sym_GT_GT_GT,
- anon_sym_LT_LT,
- anon_sym_CARET,
- anon_sym_PERCENT,
- anon_sym_STAR_STAR,
- anon_sym_LT_EQ,
- anon_sym_EQ_EQ_EQ,
- anon_sym_BANG_EQ_EQ,
- anon_sym_GT_EQ,
- anon_sym_QMARK_QMARK,
- anon_sym_instanceof,
- anon_sym_PLUS_PLUS,
- anon_sym_DASH_DASH,
- anon_sym_BQUOTE,
- anon_sym_satisfies,
- [62339] = 6,
- ACTIONS(4878), 1,
- anon_sym_LBRACK,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(4408), 2,
- anon_sym_COMMA,
- anon_sym_extends,
- ACTIONS(4881), 3,
- anon_sym_GT,
- anon_sym_AMP,
- anon_sym_PIPE,
- ACTIONS(4774), 10,
- anon_sym_STAR,
- anon_sym_BANG,
- anon_sym_in,
- anon_sym_GT_GT,
- anon_sym_PLUS,
- anon_sym_DASH,
- anon_sym_SLASH,
- anon_sym_LT,
- anon_sym_EQ_EQ,
- anon_sym_BANG_EQ,
- ACTIONS(4776), 26,
- sym__ternary_qmark,
- anon_sym_as,
- anon_sym_RBRACE,
- anon_sym_LPAREN,
- anon_sym_of,
- anon_sym_COLON,
- anon_sym_RBRACK,
- anon_sym_DOT,
- anon_sym_QMARK_DOT,
- anon_sym_AMP_AMP,
- anon_sym_PIPE_PIPE,
- anon_sym_GT_GT_GT,
- anon_sym_LT_LT,
- anon_sym_CARET,
- anon_sym_PERCENT,
- anon_sym_STAR_STAR,
- anon_sym_LT_EQ,
- anon_sym_EQ_EQ_EQ,
- anon_sym_BANG_EQ_EQ,
- anon_sym_GT_EQ,
- anon_sym_QMARK_QMARK,
- anon_sym_instanceof,
- anon_sym_PLUS_PLUS,
- anon_sym_DASH_DASH,
- anon_sym_BQUOTE,
- anon_sym_satisfies,
- [62396] = 14,
- ACTIONS(1594), 1,
- anon_sym_DQUOTE,
- ACTIONS(1596), 1,
- anon_sym_SQUOTE,
- ACTIONS(3633), 1,
- anon_sym_override,
- ACTIONS(4245), 1,
- anon_sym_LBRACK,
- ACTIONS(5157), 1,
- anon_sym_STAR,
- ACTIONS(5159), 1,
- anon_sym_async,
- ACTIONS(5163), 1,
- anon_sym_readonly,
- STATE(2705), 1,
- sym_override_modifier,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(5161), 2,
- sym_number,
- sym_private_property_identifier,
- ACTIONS(5165), 2,
- anon_sym_get,
- anon_sym_set,
- STATE(2964), 3,
- sym_string,
- sym__property_name,
- sym_computed_property_name,
- ACTIONS(3743), 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(3607), 18,
- anon_sym_export,
- anon_sym_type,
- anon_sym_namespace,
- anon_sym_let,
- anon_sym_new,
- sym_identifier,
- anon_sym_static,
- anon_sym_declare,
- anon_sym_public,
- anon_sym_private,
- anon_sym_protected,
- anon_sym_module,
- anon_sym_any,
- anon_sym_number,
- anon_sym_boolean,
- anon_sym_string,
- anon_sym_symbol,
- anon_sym_object,
- [62469] = 12,
- ACTIONS(1594), 1,
- anon_sym_DQUOTE,
- ACTIONS(1596), 1,
- anon_sym_SQUOTE,
- ACTIONS(4245), 1,
- anon_sym_LBRACK,
- ACTIONS(5001), 1,
- anon_sym_abstract,
- ACTIONS(5157), 1,
- anon_sym_STAR,
- ACTIONS(5159), 1,
- anon_sym_async,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(5161), 2,
- sym_number,
- sym_private_property_identifier,
- ACTIONS(5165), 2,
- anon_sym_get,
- anon_sym_set,
- STATE(2964), 3,
- sym_string,
- sym__property_name,
- sym_computed_property_name,
- ACTIONS(3743), 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(3607), 20,
- anon_sym_export,
- anon_sym_type,
- anon_sym_namespace,
- anon_sym_let,
- anon_sym_new,
- sym_identifier,
- anon_sym_static,
- anon_sym_readonly,
- anon_sym_declare,
- anon_sym_public,
- anon_sym_private,
- anon_sym_protected,
- anon_sym_override,
- anon_sym_module,
- anon_sym_any,
- anon_sym_number,
- anon_sym_boolean,
- anon_sym_string,
- anon_sym_symbol,
- anon_sym_object,
- [62538] = 6,
- ACTIONS(4041), 1,
- anon_sym_extends,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(4697), 2,
- anon_sym_COMMA,
- anon_sym_LBRACK,
- ACTIONS(4700), 3,
- anon_sym_GT,
- anon_sym_AMP,
- anon_sym_PIPE,
- ACTIONS(3400), 10,
- anon_sym_STAR,
- anon_sym_BANG,
- anon_sym_in,
- anon_sym_GT_GT,
- anon_sym_PLUS,
- anon_sym_DASH,
- anon_sym_SLASH,
- anon_sym_LT,
- anon_sym_EQ_EQ,
- anon_sym_BANG_EQ,
- ACTIONS(3404), 26,
- sym__automatic_semicolon,
- sym__ternary_qmark,
- anon_sym_as,
- anon_sym_RBRACE,
- anon_sym_LPAREN,
- anon_sym_of,
- anon_sym_SEMI,
- anon_sym_DOT,
- anon_sym_QMARK_DOT,
- anon_sym_AMP_AMP,
- anon_sym_PIPE_PIPE,
- anon_sym_GT_GT_GT,
- anon_sym_LT_LT,
- anon_sym_CARET,
- anon_sym_PERCENT,
- anon_sym_STAR_STAR,
- anon_sym_LT_EQ,
- anon_sym_EQ_EQ_EQ,
- anon_sym_BANG_EQ_EQ,
- anon_sym_GT_EQ,
- anon_sym_QMARK_QMARK,
- anon_sym_instanceof,
- anon_sym_PLUS_PLUS,
- anon_sym_DASH_DASH,
- anon_sym_BQUOTE,
- anon_sym_satisfies,
- [62595] = 14,
- ACTIONS(1594), 1,
- anon_sym_DQUOTE,
- ACTIONS(1596), 1,
- anon_sym_SQUOTE,
- ACTIONS(3633), 1,
- anon_sym_override,
- ACTIONS(4245), 1,
- anon_sym_LBRACK,
- ACTIONS(5167), 1,
- anon_sym_STAR,
- ACTIONS(5169), 1,
- anon_sym_async,
- ACTIONS(5173), 1,
- anon_sym_readonly,
- STATE(2708), 1,
- sym_override_modifier,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(5171), 2,
- sym_number,
- sym_private_property_identifier,
- ACTIONS(5175), 2,
- anon_sym_get,
- anon_sym_set,
- STATE(2986), 3,
- sym_string,
- sym__property_name,
- sym_computed_property_name,
- ACTIONS(3743), 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(3607), 18,
- anon_sym_export,
- anon_sym_type,
- anon_sym_namespace,
- anon_sym_let,
- anon_sym_new,
- sym_identifier,
- anon_sym_static,
- anon_sym_declare,
- anon_sym_public,
- anon_sym_private,
- anon_sym_protected,
- anon_sym_module,
- anon_sym_any,
- anon_sym_number,
- anon_sym_boolean,
- anon_sym_string,
- anon_sym_symbol,
- anon_sym_object,
- [62668] = 12,
- ACTIONS(1594), 1,
- anon_sym_DQUOTE,
- ACTIONS(1596), 1,
- anon_sym_SQUOTE,
- ACTIONS(4245), 1,
- anon_sym_LBRACK,
- ACTIONS(5167), 1,
- anon_sym_STAR,
- ACTIONS(5169), 1,
- anon_sym_async,
- ACTIONS(5179), 1,
- anon_sym_abstract,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(5175), 2,
- anon_sym_get,
- anon_sym_set,
- ACTIONS(5177), 2,
- sym_number,
- sym_private_property_identifier,
- STATE(2987), 3,
- sym_string,
- sym__property_name,
- sym_computed_property_name,
- ACTIONS(3743), 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(3607), 20,
- anon_sym_export,
- anon_sym_type,
- anon_sym_namespace,
- anon_sym_let,
- anon_sym_new,
- sym_identifier,
- anon_sym_static,
- anon_sym_readonly,
- anon_sym_declare,
- anon_sym_public,
- anon_sym_private,
- anon_sym_protected,
- anon_sym_override,
- anon_sym_module,
- anon_sym_any,
- anon_sym_number,
- anon_sym_boolean,
- anon_sym_string,
- anon_sym_symbol,
- anon_sym_object,
- [62737] = 7,
- ACTIONS(3448), 1,
- anon_sym_EQ,
- ACTIONS(4330), 1,
- anon_sym_extends,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(4691), 2,
- anon_sym_COMMA,
- anon_sym_LBRACK,
- ACTIONS(4694), 3,
- anon_sym_GT,
- anon_sym_AMP,
- anon_sym_PIPE,
- ACTIONS(3400), 10,
- anon_sym_STAR,
- anon_sym_BANG,
- anon_sym_in,
- anon_sym_GT_GT,
- anon_sym_PLUS,
- anon_sym_DASH,
- anon_sym_SLASH,
- anon_sym_LT,
- anon_sym_EQ_EQ,
- anon_sym_BANG_EQ,
- ACTIONS(3404), 25,
- sym__automatic_semicolon,
- sym__ternary_qmark,
- anon_sym_as,
- anon_sym_RBRACE,
- anon_sym_LPAREN,
- anon_sym_SEMI,
- anon_sym_DOT,
- anon_sym_QMARK_DOT,
- anon_sym_AMP_AMP,
- anon_sym_PIPE_PIPE,
- anon_sym_GT_GT_GT,
- anon_sym_LT_LT,
- anon_sym_CARET,
- anon_sym_PERCENT,
- anon_sym_STAR_STAR,
- anon_sym_LT_EQ,
- anon_sym_EQ_EQ_EQ,
- anon_sym_BANG_EQ_EQ,
- anon_sym_GT_EQ,
- anon_sym_QMARK_QMARK,
- anon_sym_instanceof,
- anon_sym_PLUS_PLUS,
- anon_sym_DASH_DASH,
- anon_sym_BQUOTE,
- anon_sym_satisfies,
- [62796] = 14,
- ACTIONS(1594), 1,
- anon_sym_DQUOTE,
- ACTIONS(1596), 1,
- anon_sym_SQUOTE,
- ACTIONS(3633), 1,
- anon_sym_override,
- ACTIONS(4245), 1,
- anon_sym_LBRACK,
- ACTIONS(5181), 1,
- anon_sym_STAR,
- ACTIONS(5183), 1,
- anon_sym_async,
- ACTIONS(5187), 1,
- anon_sym_readonly,
- STATE(2712), 1,
- sym_override_modifier,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(5185), 2,
- sym_number,
- sym_private_property_identifier,
- ACTIONS(5189), 2,
- anon_sym_get,
- anon_sym_set,
- STATE(3057), 3,
- sym_string,
- sym__property_name,
- sym_computed_property_name,
- ACTIONS(3743), 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(3607), 18,
- anon_sym_export,
- anon_sym_type,
- anon_sym_namespace,
- anon_sym_let,
- anon_sym_new,
- sym_identifier,
- anon_sym_static,
- anon_sym_declare,
- anon_sym_public,
- anon_sym_private,
- anon_sym_protected,
- anon_sym_module,
- anon_sym_any,
- anon_sym_number,
- anon_sym_boolean,
- anon_sym_string,
- anon_sym_symbol,
- anon_sym_object,
- [62869] = 9,
- ACTIONS(4041), 1,
- anon_sym_extends,
- ACTIONS(4697), 1,
- anon_sym_LBRACK,
- ACTIONS(5195), 1,
- anon_sym_RPAREN,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(4700), 2,
- anon_sym_AMP,
- anon_sym_PIPE,
- ACTIONS(5191), 2,
- anon_sym_EQ,
- anon_sym_QMARK,
- ACTIONS(5193), 2,
- anon_sym_COMMA,
- anon_sym_COLON,
- ACTIONS(3400), 11,
- anon_sym_STAR,
- anon_sym_BANG,
- anon_sym_in,
- anon_sym_GT,
- anon_sym_GT_GT,
- anon_sym_PLUS,
- anon_sym_DASH,
- anon_sym_SLASH,
- anon_sym_LT,
- anon_sym_EQ_EQ,
- anon_sym_BANG_EQ,
- ACTIONS(3404), 22,
- sym__ternary_qmark,
- anon_sym_as,
- anon_sym_LPAREN,
- anon_sym_DOT,
- anon_sym_QMARK_DOT,
- anon_sym_AMP_AMP,
- anon_sym_PIPE_PIPE,
- anon_sym_GT_GT_GT,
- anon_sym_LT_LT,
- anon_sym_CARET,
- anon_sym_PERCENT,
- anon_sym_STAR_STAR,
- anon_sym_LT_EQ,
- anon_sym_EQ_EQ_EQ,
- anon_sym_BANG_EQ_EQ,
- anon_sym_GT_EQ,
- anon_sym_QMARK_QMARK,
- anon_sym_instanceof,
- anon_sym_PLUS_PLUS,
- anon_sym_DASH_DASH,
- anon_sym_BQUOTE,
- anon_sym_satisfies,
- [62932] = 9,
- ACTIONS(3499), 1,
- anon_sym_QMARK,
- ACTIONS(3511), 1,
- anon_sym_EQ,
- ACTIONS(4691), 1,
- anon_sym_LBRACK,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(3514), 2,
- anon_sym_COMMA,
- anon_sym_COLON,
- ACTIONS(4330), 2,
- anon_sym_RPAREN,
- anon_sym_extends,
- ACTIONS(4694), 2,
- anon_sym_AMP,
- anon_sym_PIPE,
- ACTIONS(3400), 11,
- anon_sym_STAR,
- anon_sym_BANG,
- anon_sym_in,
- anon_sym_GT,
- anon_sym_GT_GT,
- anon_sym_PLUS,
- anon_sym_DASH,
- anon_sym_SLASH,
- anon_sym_LT,
- anon_sym_EQ_EQ,
- anon_sym_BANG_EQ,
- ACTIONS(3404), 22,
- sym__ternary_qmark,
- anon_sym_as,
- anon_sym_LPAREN,
- anon_sym_DOT,
- anon_sym_QMARK_DOT,
- anon_sym_AMP_AMP,
- anon_sym_PIPE_PIPE,
- anon_sym_GT_GT_GT,
- anon_sym_LT_LT,
- anon_sym_CARET,
- anon_sym_PERCENT,
- anon_sym_STAR_STAR,
- anon_sym_LT_EQ,
- anon_sym_EQ_EQ_EQ,
- anon_sym_BANG_EQ_EQ,
- anon_sym_GT_EQ,
- anon_sym_QMARK_QMARK,
- anon_sym_instanceof,
- anon_sym_PLUS_PLUS,
- anon_sym_DASH_DASH,
- anon_sym_BQUOTE,
- anon_sym_satisfies,
- [62995] = 19,
- ACTIONS(241), 1,
- anon_sym_COMMA,
- ACTIONS(2275), 1,
- anon_sym_DQUOTE,
- ACTIONS(2277), 1,
- anon_sym_SQUOTE,
- ACTIONS(2309), 1,
- anon_sym_async,
- ACTIONS(2311), 1,
- anon_sym_readonly,
- ACTIONS(2315), 1,
- anon_sym_override,
- ACTIONS(4243), 1,
- anon_sym_EQ,
- ACTIONS(4634), 1,
- anon_sym_LBRACK,
- ACTIONS(5091), 1,
- anon_sym_STAR,
- ACTIONS(5198), 1,
- anon_sym_RBRACE,
- STATE(2719), 1,
- sym_override_modifier,
- STATE(4671), 1,
- aux_sym_object_repeat1,
- STATE(4672), 1,
- aux_sym_object_pattern_repeat1,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(2285), 2,
- sym_number,
- sym_private_property_identifier,
- ACTIONS(2313), 2,
- anon_sym_get,
- anon_sym_set,
- STATE(3788), 3,
- sym_string,
- sym__property_name,
- sym_computed_property_name,
- ACTIONS(3743), 4,
- anon_sym_LPAREN,
- anon_sym_COLON,
- anon_sym_LT,
- anon_sym_QMARK,
- ACTIONS(2307), 18,
- anon_sym_export,
- anon_sym_type,
- anon_sym_namespace,
- anon_sym_let,
- anon_sym_new,
- sym_identifier,
- anon_sym_static,
- anon_sym_declare,
- anon_sym_public,
- anon_sym_private,
- anon_sym_protected,
- anon_sym_module,
- anon_sym_any,
- anon_sym_number,
- anon_sym_boolean,
- anon_sym_string,
- anon_sym_symbol,
- anon_sym_object,
- [63078] = 9,
- ACTIONS(2331), 1,
- anon_sym_extends,
- ACTIONS(4414), 1,
- anon_sym_LBRACK,
- ACTIONS(5003), 1,
- anon_sym_RPAREN,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(1726), 2,
- anon_sym_EQ,
- anon_sym_QMARK,
- ACTIONS(4417), 2,
- anon_sym_AMP,
- anon_sym_PIPE,
- ACTIONS(4747), 2,
- anon_sym_COMMA,
- anon_sym_COLON,
- ACTIONS(1724), 11,
- anon_sym_STAR,
- anon_sym_BANG,
- anon_sym_in,
- anon_sym_GT,
- anon_sym_GT_GT,
- anon_sym_PLUS,
- anon_sym_DASH,
- anon_sym_SLASH,
- anon_sym_LT,
- anon_sym_EQ_EQ,
- anon_sym_BANG_EQ,
- ACTIONS(1728), 22,
- sym__ternary_qmark,
- anon_sym_as,
- anon_sym_LPAREN,
- anon_sym_DOT,
- anon_sym_QMARK_DOT,
- anon_sym_AMP_AMP,
- anon_sym_PIPE_PIPE,
- anon_sym_GT_GT_GT,
- anon_sym_LT_LT,
- anon_sym_CARET,
- anon_sym_PERCENT,
- anon_sym_STAR_STAR,
- anon_sym_LT_EQ,
- anon_sym_EQ_EQ_EQ,
- anon_sym_BANG_EQ_EQ,
- anon_sym_GT_EQ,
- anon_sym_QMARK_QMARK,
- anon_sym_instanceof,
- anon_sym_PLUS_PLUS,
- anon_sym_DASH_DASH,
- anon_sym_BQUOTE,
- anon_sym_satisfies,
- [63141] = 9,
- ACTIONS(4392), 1,
- anon_sym_extends,
- ACTIONS(4444), 1,
- anon_sym_LBRACK,
- ACTIONS(5007), 1,
- anon_sym_RPAREN,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(4440), 2,
- anon_sym_EQ,
- anon_sym_QMARK,
- ACTIONS(4447), 2,
- anon_sym_AMP,
- anon_sym_PIPE,
- ACTIONS(4761), 2,
- anon_sym_COMMA,
- anon_sym_COLON,
- ACTIONS(4438), 11,
- anon_sym_STAR,
- anon_sym_BANG,
- anon_sym_in,
- anon_sym_GT,
- anon_sym_GT_GT,
- anon_sym_PLUS,
- anon_sym_DASH,
- anon_sym_SLASH,
- anon_sym_LT,
- anon_sym_EQ_EQ,
- anon_sym_BANG_EQ,
- ACTIONS(4442), 22,
- sym__ternary_qmark,
- anon_sym_as,
- anon_sym_LPAREN,
- anon_sym_DOT,
- anon_sym_QMARK_DOT,
- anon_sym_AMP_AMP,
- anon_sym_PIPE_PIPE,
- anon_sym_GT_GT_GT,
- anon_sym_LT_LT,
- anon_sym_CARET,
- anon_sym_PERCENT,
- anon_sym_STAR_STAR,
- anon_sym_LT_EQ,
- anon_sym_EQ_EQ_EQ,
- anon_sym_BANG_EQ_EQ,
- anon_sym_GT_EQ,
- anon_sym_QMARK_QMARK,
- anon_sym_instanceof,
- anon_sym_PLUS_PLUS,
- anon_sym_DASH_DASH,
- anon_sym_BQUOTE,
- anon_sym_satisfies,
- [63204] = 4,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(4460), 4,
- sym__automatic_semicolon,
- anon_sym_SEMI,
- anon_sym_extends,
- anon_sym_PIPE_RBRACE,
- ACTIONS(4450), 13,
- anon_sym_STAR,
- anon_sym_BANG,
- anon_sym_in,
- anon_sym_GT,
- anon_sym_GT_GT,
- anon_sym_AMP,
- anon_sym_PIPE,
- anon_sym_PLUS,
- anon_sym_DASH,
- anon_sym_SLASH,
- anon_sym_LT,
- anon_sym_EQ_EQ,
- anon_sym_BANG_EQ,
- ACTIONS(4452), 25,
- sym__ternary_qmark,
- anon_sym_as,
- anon_sym_COMMA,
- anon_sym_RBRACE,
- anon_sym_LPAREN,
- anon_sym_LBRACK,
- anon_sym_DOT,
- anon_sym_QMARK_DOT,
- anon_sym_AMP_AMP,
- anon_sym_PIPE_PIPE,
- anon_sym_GT_GT_GT,
- anon_sym_LT_LT,
- anon_sym_CARET,
- anon_sym_PERCENT,
- anon_sym_STAR_STAR,
- anon_sym_LT_EQ,
- anon_sym_EQ_EQ_EQ,
- anon_sym_BANG_EQ_EQ,
- anon_sym_GT_EQ,
- anon_sym_QMARK_QMARK,
- anon_sym_instanceof,
- anon_sym_PLUS_PLUS,
- anon_sym_DASH_DASH,
- anon_sym_BQUOTE,
- anon_sym_satisfies,
- [63257] = 4,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(4456), 4,
- sym__automatic_semicolon,
- anon_sym_SEMI,
- anon_sym_extends,
- anon_sym_PIPE_RBRACE,
- ACTIONS(4450), 13,
- anon_sym_STAR,
- anon_sym_BANG,
- anon_sym_in,
- anon_sym_GT,
- anon_sym_GT_GT,
- anon_sym_AMP,
- anon_sym_PIPE,
- anon_sym_PLUS,
- anon_sym_DASH,
- anon_sym_SLASH,
- anon_sym_LT,
- anon_sym_EQ_EQ,
- anon_sym_BANG_EQ,
- ACTIONS(4452), 25,
- sym__ternary_qmark,
- anon_sym_as,
- anon_sym_COMMA,
- anon_sym_RBRACE,
- anon_sym_LPAREN,
- anon_sym_LBRACK,
- anon_sym_DOT,
- anon_sym_QMARK_DOT,
- anon_sym_AMP_AMP,
- anon_sym_PIPE_PIPE,
- anon_sym_GT_GT_GT,
- anon_sym_LT_LT,
- anon_sym_CARET,
- anon_sym_PERCENT,
- anon_sym_STAR_STAR,
- anon_sym_LT_EQ,
- anon_sym_EQ_EQ_EQ,
- anon_sym_BANG_EQ_EQ,
- anon_sym_GT_EQ,
- anon_sym_QMARK_QMARK,
- anon_sym_instanceof,
- anon_sym_PLUS_PLUS,
- anon_sym_DASH_DASH,
- anon_sym_BQUOTE,
- anon_sym_satisfies,
- [63310] = 19,
- ACTIONS(241), 1,
- anon_sym_COMMA,
- ACTIONS(2275), 1,
- anon_sym_DQUOTE,
- ACTIONS(2277), 1,
- anon_sym_SQUOTE,
- ACTIONS(2309), 1,
- anon_sym_async,
- ACTIONS(2311), 1,
- anon_sym_readonly,
- ACTIONS(2315), 1,
- anon_sym_override,
- ACTIONS(4243), 1,
- anon_sym_EQ,
- ACTIONS(4634), 1,
- anon_sym_LBRACK,
- ACTIONS(5091), 1,
- anon_sym_STAR,
- ACTIONS(5200), 1,
- anon_sym_RBRACE,
- STATE(2719), 1,
- sym_override_modifier,
- STATE(4672), 1,
- aux_sym_object_pattern_repeat1,
- STATE(5156), 1,
- aux_sym_object_repeat1,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(2285), 2,
- sym_number,
- sym_private_property_identifier,
- ACTIONS(2313), 2,
- anon_sym_get,
- anon_sym_set,
- STATE(3788), 3,
- sym_string,
- sym__property_name,
- sym_computed_property_name,
- ACTIONS(3743), 4,
- anon_sym_LPAREN,
- anon_sym_COLON,
- anon_sym_LT,
- anon_sym_QMARK,
- ACTIONS(2307), 18,
- anon_sym_export,
- anon_sym_type,
- anon_sym_namespace,
- anon_sym_let,
- anon_sym_new,
- sym_identifier,
- anon_sym_static,
- anon_sym_declare,
- anon_sym_public,
- anon_sym_private,
- anon_sym_protected,
- anon_sym_module,
- anon_sym_any,
- anon_sym_number,
- anon_sym_boolean,
- anon_sym_string,
- anon_sym_symbol,
- anon_sym_object,
- [63393] = 10,
- ACTIONS(1726), 1,
- anon_sym_EQ,
- ACTIONS(2331), 1,
- anon_sym_extends,
- ACTIONS(2333), 1,
- anon_sym_QMARK,
- ACTIONS(4414), 1,
- anon_sym_LBRACK,
- ACTIONS(4989), 1,
- anon_sym_COLON,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(4417), 2,
- anon_sym_AMP,
- anon_sym_PIPE,
- ACTIONS(5003), 2,
- anon_sym_COMMA,
- anon_sym_RBRACK,
- ACTIONS(1724), 11,
- anon_sym_STAR,
- anon_sym_BANG,
- anon_sym_in,
- anon_sym_GT,
- anon_sym_GT_GT,
- anon_sym_PLUS,
- anon_sym_DASH,
- anon_sym_SLASH,
- anon_sym_LT,
- anon_sym_EQ_EQ,
- anon_sym_BANG_EQ,
- ACTIONS(1728), 22,
- sym__ternary_qmark,
- anon_sym_as,
- anon_sym_LPAREN,
- anon_sym_DOT,
- anon_sym_QMARK_DOT,
- anon_sym_AMP_AMP,
- anon_sym_PIPE_PIPE,
- anon_sym_GT_GT_GT,
- anon_sym_LT_LT,
- anon_sym_CARET,
- anon_sym_PERCENT,
- anon_sym_STAR_STAR,
- anon_sym_LT_EQ,
- anon_sym_EQ_EQ_EQ,
- anon_sym_BANG_EQ_EQ,
- anon_sym_GT_EQ,
- anon_sym_QMARK_QMARK,
- anon_sym_instanceof,
- anon_sym_PLUS_PLUS,
- anon_sym_DASH_DASH,
- anon_sym_BQUOTE,
- anon_sym_satisfies,
- [63458] = 10,
- ACTIONS(4390), 1,
- anon_sym_QMARK,
- ACTIONS(4392), 1,
- anon_sym_extends,
- ACTIONS(4440), 1,
- anon_sym_EQ,
- ACTIONS(4444), 1,
- anon_sym_LBRACK,
- ACTIONS(4985), 1,
- anon_sym_COLON,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(4447), 2,
- anon_sym_AMP,
- anon_sym_PIPE,
- ACTIONS(5007), 2,
- anon_sym_COMMA,
- anon_sym_RBRACK,
- ACTIONS(4438), 11,
- anon_sym_STAR,
- anon_sym_BANG,
- anon_sym_in,
- anon_sym_GT,
- anon_sym_GT_GT,
- anon_sym_PLUS,
- anon_sym_DASH,
- anon_sym_SLASH,
- anon_sym_LT,
- anon_sym_EQ_EQ,
- anon_sym_BANG_EQ,
- ACTIONS(4442), 22,
- sym__ternary_qmark,
- anon_sym_as,
- anon_sym_LPAREN,
- anon_sym_DOT,
- anon_sym_QMARK_DOT,
- anon_sym_AMP_AMP,
- anon_sym_PIPE_PIPE,
- anon_sym_GT_GT_GT,
- anon_sym_LT_LT,
- anon_sym_CARET,
- anon_sym_PERCENT,
- anon_sym_STAR_STAR,
- anon_sym_LT_EQ,
- anon_sym_EQ_EQ_EQ,
- anon_sym_BANG_EQ_EQ,
- anon_sym_GT_EQ,
- anon_sym_QMARK_QMARK,
- anon_sym_instanceof,
- anon_sym_PLUS_PLUS,
- anon_sym_DASH_DASH,
- anon_sym_BQUOTE,
- anon_sym_satisfies,
- [63523] = 19,
- ACTIONS(241), 1,
- anon_sym_COMMA,
- ACTIONS(2275), 1,
- anon_sym_DQUOTE,
- ACTIONS(2277), 1,
- anon_sym_SQUOTE,
- ACTIONS(2309), 1,
- anon_sym_async,
- ACTIONS(2311), 1,
- anon_sym_readonly,
- ACTIONS(2315), 1,
- anon_sym_override,
- ACTIONS(4243), 1,
- anon_sym_EQ,
- ACTIONS(4634), 1,
- anon_sym_LBRACK,
- ACTIONS(5091), 1,
- anon_sym_STAR,
- ACTIONS(5202), 1,
- anon_sym_RBRACE,
- STATE(2719), 1,
- sym_override_modifier,
- STATE(4672), 1,
- aux_sym_object_pattern_repeat1,
- STATE(5156), 1,
- aux_sym_object_repeat1,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(2285), 2,
- sym_number,
- sym_private_property_identifier,
- ACTIONS(2313), 2,
- anon_sym_get,
- anon_sym_set,
- STATE(3788), 3,
- sym_string,
- sym__property_name,
- sym_computed_property_name,
- ACTIONS(3743), 4,
- anon_sym_LPAREN,
- anon_sym_COLON,
- anon_sym_LT,
- anon_sym_QMARK,
- ACTIONS(2307), 18,
- anon_sym_export,
- anon_sym_type,
- anon_sym_namespace,
- anon_sym_let,
- anon_sym_new,
- sym_identifier,
- anon_sym_static,
- anon_sym_declare,
- anon_sym_public,
- anon_sym_private,
- anon_sym_protected,
- anon_sym_module,
- anon_sym_any,
- anon_sym_number,
- anon_sym_boolean,
- anon_sym_string,
- anon_sym_symbol,
- anon_sym_object,
- [63606] = 6,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(4694), 2,
- anon_sym_AMP,
- anon_sym_PIPE,
- ACTIONS(4691), 3,
- anon_sym_COMMA,
- anon_sym_RBRACE,
- anon_sym_LBRACK,
- ACTIONS(4330), 4,
- sym__automatic_semicolon,
- anon_sym_SEMI,
- anon_sym_extends,
- anon_sym_PIPE_RBRACE,
- ACTIONS(3400), 11,
- anon_sym_STAR,
- anon_sym_BANG,
- anon_sym_in,
- anon_sym_GT,
- anon_sym_GT_GT,
- anon_sym_PLUS,
- anon_sym_DASH,
- anon_sym_SLASH,
- anon_sym_LT,
- anon_sym_EQ_EQ,
- anon_sym_BANG_EQ,
- ACTIONS(3404), 22,
- sym__ternary_qmark,
- anon_sym_as,
- anon_sym_LPAREN,
- anon_sym_DOT,
- anon_sym_QMARK_DOT,
- anon_sym_AMP_AMP,
- anon_sym_PIPE_PIPE,
- anon_sym_GT_GT_GT,
- anon_sym_LT_LT,
- anon_sym_CARET,
- anon_sym_PERCENT,
- anon_sym_STAR_STAR,
- anon_sym_LT_EQ,
- anon_sym_EQ_EQ_EQ,
- anon_sym_BANG_EQ_EQ,
- anon_sym_GT_EQ,
- anon_sym_QMARK_QMARK,
- anon_sym_instanceof,
- anon_sym_PLUS_PLUS,
- anon_sym_DASH_DASH,
- anon_sym_BQUOTE,
- anon_sym_satisfies,
- [63663] = 6,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(4881), 2,
- anon_sym_AMP,
- anon_sym_PIPE,
- ACTIONS(4878), 3,
- anon_sym_COMMA,
- anon_sym_RBRACE,
- anon_sym_LBRACK,
- ACTIONS(4408), 4,
- sym__automatic_semicolon,
- anon_sym_SEMI,
- anon_sym_extends,
- anon_sym_PIPE_RBRACE,
- ACTIONS(4774), 11,
- anon_sym_STAR,
- anon_sym_BANG,
- anon_sym_in,
- anon_sym_GT,
- anon_sym_GT_GT,
- anon_sym_PLUS,
- anon_sym_DASH,
- anon_sym_SLASH,
- anon_sym_LT,
- anon_sym_EQ_EQ,
- anon_sym_BANG_EQ,
- ACTIONS(4776), 22,
- sym__ternary_qmark,
- anon_sym_as,
- anon_sym_LPAREN,
- anon_sym_DOT,
- anon_sym_QMARK_DOT,
- anon_sym_AMP_AMP,
- anon_sym_PIPE_PIPE,
- anon_sym_GT_GT_GT,
- anon_sym_LT_LT,
- anon_sym_CARET,
- anon_sym_PERCENT,
- anon_sym_STAR_STAR,
- anon_sym_LT_EQ,
- anon_sym_EQ_EQ_EQ,
- anon_sym_BANG_EQ_EQ,
- anon_sym_GT_EQ,
- anon_sym_QMARK_QMARK,
- anon_sym_instanceof,
- anon_sym_PLUS_PLUS,
- anon_sym_DASH_DASH,
- anon_sym_BQUOTE,
- anon_sym_satisfies,
- [63720] = 6,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(4700), 2,
- anon_sym_AMP,
- anon_sym_PIPE,
- ACTIONS(4697), 3,
- anon_sym_COMMA,
- anon_sym_RBRACE,
- anon_sym_LBRACK,
- ACTIONS(4041), 4,
- sym__automatic_semicolon,
- anon_sym_SEMI,
- anon_sym_extends,
- anon_sym_PIPE_RBRACE,
- ACTIONS(3400), 11,
- anon_sym_STAR,
- anon_sym_BANG,
- anon_sym_in,
- anon_sym_GT,
- anon_sym_GT_GT,
- anon_sym_PLUS,
- anon_sym_DASH,
- anon_sym_SLASH,
- anon_sym_LT,
- anon_sym_EQ_EQ,
- anon_sym_BANG_EQ,
- ACTIONS(3404), 22,
- sym__ternary_qmark,
- anon_sym_as,
- anon_sym_LPAREN,
- anon_sym_DOT,
- anon_sym_QMARK_DOT,
- anon_sym_AMP_AMP,
- anon_sym_PIPE_PIPE,
- anon_sym_GT_GT_GT,
- anon_sym_LT_LT,
- anon_sym_CARET,
- anon_sym_PERCENT,
- anon_sym_STAR_STAR,
- anon_sym_LT_EQ,
- anon_sym_EQ_EQ_EQ,
- anon_sym_BANG_EQ_EQ,
- anon_sym_GT_EQ,
- anon_sym_QMARK_QMARK,
- anon_sym_instanceof,
- anon_sym_PLUS_PLUS,
- anon_sym_DASH_DASH,
- anon_sym_BQUOTE,
- anon_sym_satisfies,
- [63777] = 5,
- ACTIONS(4519), 1,
- anon_sym_LPAREN,
- STATE(2188), 1,
- sym_arguments,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(4289), 13,
- anon_sym_STAR,
- anon_sym_BANG,
- anon_sym_in,
- anon_sym_GT,
- anon_sym_GT_GT,
- anon_sym_AMP,
- anon_sym_PIPE,
- anon_sym_PLUS,
- anon_sym_DASH,
- anon_sym_SLASH,
- anon_sym_LT,
- anon_sym_EQ_EQ,
- anon_sym_BANG_EQ,
- ACTIONS(4291), 27,
- sym__automatic_semicolon,
- sym__ternary_qmark,
- anon_sym_as,
- anon_sym_COMMA,
- anon_sym_RBRACE,
- anon_sym_of,
- anon_sym_SEMI,
- anon_sym_LBRACK,
- anon_sym_DOT,
- anon_sym_QMARK_DOT,
- anon_sym_AMP_AMP,
- anon_sym_PIPE_PIPE,
- anon_sym_GT_GT_GT,
- anon_sym_LT_LT,
- anon_sym_CARET,
- anon_sym_PERCENT,
- anon_sym_STAR_STAR,
- anon_sym_LT_EQ,
- anon_sym_EQ_EQ_EQ,
- anon_sym_BANG_EQ_EQ,
- anon_sym_GT_EQ,
- anon_sym_QMARK_QMARK,
- anon_sym_instanceof,
- anon_sym_PLUS_PLUS,
- anon_sym_DASH_DASH,
- anon_sym_BQUOTE,
- anon_sym_satisfies,
- [63832] = 3,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(2333), 13,
- anon_sym_STAR,
- anon_sym_BANG,
- anon_sym_in,
- anon_sym_GT,
- anon_sym_GT_GT,
- anon_sym_AMP,
- anon_sym_PIPE,
- anon_sym_PLUS,
- anon_sym_DASH,
- anon_sym_SLASH,
- anon_sym_LT,
- anon_sym_EQ_EQ,
- anon_sym_BANG_EQ,
- ACTIONS(2331), 29,
- sym__automatic_semicolon,
- sym__ternary_qmark,
- anon_sym_as,
- anon_sym_COMMA,
- anon_sym_RBRACE,
- anon_sym_LPAREN,
- anon_sym_of,
- anon_sym_SEMI,
- anon_sym_LBRACK,
- anon_sym_DOT,
- anon_sym_QMARK_DOT,
- anon_sym_AMP_AMP,
- anon_sym_PIPE_PIPE,
- anon_sym_GT_GT_GT,
- anon_sym_LT_LT,
- anon_sym_CARET,
- anon_sym_PERCENT,
- anon_sym_STAR_STAR,
- anon_sym_LT_EQ,
- anon_sym_EQ_EQ_EQ,
- anon_sym_BANG_EQ_EQ,
- anon_sym_GT_EQ,
- anon_sym_QMARK_QMARK,
- anon_sym_instanceof,
- anon_sym_PLUS_PLUS,
- anon_sym_DASH_DASH,
- anon_sym_BQUOTE,
- anon_sym_satisfies,
- anon_sym_extends,
- [63883] = 4,
- ACTIONS(4678), 1,
- anon_sym_EQ,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(4676), 13,
- anon_sym_STAR,
- anon_sym_BANG,
- anon_sym_in,
- anon_sym_GT,
- anon_sym_GT_GT,
- anon_sym_AMP,
- anon_sym_PIPE,
- anon_sym_PLUS,
- anon_sym_DASH,
- anon_sym_SLASH,
- anon_sym_LT,
- anon_sym_EQ_EQ,
- anon_sym_BANG_EQ,
- ACTIONS(4680), 28,
- sym__automatic_semicolon,
- sym__ternary_qmark,
- anon_sym_as,
- anon_sym_COMMA,
- anon_sym_RBRACE,
- anon_sym_LPAREN,
- anon_sym_of,
- anon_sym_SEMI,
- anon_sym_LBRACK,
- anon_sym_DOT,
- anon_sym_QMARK_DOT,
- anon_sym_AMP_AMP,
- anon_sym_PIPE_PIPE,
- anon_sym_GT_GT_GT,
- anon_sym_LT_LT,
- anon_sym_CARET,
- anon_sym_PERCENT,
- anon_sym_STAR_STAR,
- anon_sym_LT_EQ,
- anon_sym_EQ_EQ_EQ,
- anon_sym_BANG_EQ_EQ,
- anon_sym_GT_EQ,
- anon_sym_QMARK_QMARK,
- anon_sym_instanceof,
- anon_sym_PLUS_PLUS,
- anon_sym_DASH_DASH,
- anon_sym_BQUOTE,
- anon_sym_satisfies,
- [63936] = 4,
- ACTIONS(3475), 1,
- anon_sym_EQ,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(3400), 13,
- anon_sym_STAR,
- anon_sym_BANG,
- anon_sym_in,
- anon_sym_GT,
- anon_sym_GT_GT,
- anon_sym_AMP,
- anon_sym_PIPE,
- anon_sym_PLUS,
- anon_sym_DASH,
- anon_sym_SLASH,
- anon_sym_LT,
- anon_sym_EQ_EQ,
- anon_sym_BANG_EQ,
- ACTIONS(3404), 28,
- sym__automatic_semicolon,
- sym__ternary_qmark,
- anon_sym_as,
- anon_sym_COMMA,
- anon_sym_RBRACE,
- anon_sym_LPAREN,
- anon_sym_of,
- anon_sym_SEMI,
- anon_sym_LBRACK,
- anon_sym_DOT,
- anon_sym_QMARK_DOT,
- anon_sym_AMP_AMP,
- anon_sym_PIPE_PIPE,
- anon_sym_GT_GT_GT,
- anon_sym_LT_LT,
- anon_sym_CARET,
- anon_sym_PERCENT,
- anon_sym_STAR_STAR,
- anon_sym_LT_EQ,
- anon_sym_EQ_EQ_EQ,
- anon_sym_BANG_EQ_EQ,
- anon_sym_GT_EQ,
- anon_sym_QMARK_QMARK,
- anon_sym_instanceof,
- anon_sym_PLUS_PLUS,
- anon_sym_DASH_DASH,
- anon_sym_BQUOTE,
- anon_sym_satisfies,
- [63989] = 14,
- ACTIONS(170), 1,
- anon_sym_DOT_DOT_DOT,
- ACTIONS(1506), 1,
- anon_sym_DQUOTE,
- ACTIONS(1508), 1,
- anon_sym_SQUOTE,
- ACTIONS(3199), 1,
- anon_sym_LBRACE,
- ACTIONS(3847), 1,
- anon_sym_LBRACK,
- ACTIONS(5113), 1,
- anon_sym_COMMA,
- ACTIONS(5206), 1,
- anon_sym_RBRACE,
- STATE(4759), 1,
- aux_sym_object_pattern_repeat1,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(5117), 2,
- sym_number,
- sym_private_property_identifier,
- STATE(4861), 3,
- sym_object_assignment_pattern,
- sym_rest_pattern,
- sym_pair_pattern,
- STATE(5634), 3,
- sym_string,
- sym__property_name,
- sym_computed_property_name,
- STATE(5760), 3,
- sym_object_pattern,
- sym_array_pattern,
- sym__destructuring_pattern,
- ACTIONS(5204), 23,
- anon_sym_export,
- anon_sym_type,
- anon_sym_namespace,
- anon_sym_let,
- anon_sym_async,
- anon_sym_new,
- sym_identifier,
- anon_sym_static,
- anon_sym_readonly,
- anon_sym_get,
- anon_sym_set,
- anon_sym_declare,
- anon_sym_public,
- anon_sym_private,
- anon_sym_protected,
- anon_sym_override,
- anon_sym_module,
- anon_sym_any,
- anon_sym_number,
- anon_sym_boolean,
- anon_sym_string,
- anon_sym_symbol,
- anon_sym_object,
- [64062] = 6,
- ACTIONS(5083), 1,
- anon_sym_AMP,
- ACTIONS(5085), 1,
- anon_sym_PIPE,
- ACTIONS(5087), 1,
- anon_sym_extends,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(4346), 11,
- anon_sym_STAR,
- anon_sym_BANG,
- anon_sym_in,
- anon_sym_GT,
- anon_sym_GT_GT,
- anon_sym_PLUS,
- anon_sym_DASH,
- anon_sym_SLASH,
- anon_sym_LT,
- anon_sym_EQ_EQ,
- anon_sym_BANG_EQ,
- ACTIONS(4348), 28,
- sym__automatic_semicolon,
- sym__ternary_qmark,
- anon_sym_as,
- anon_sym_COMMA,
- anon_sym_RBRACE,
- anon_sym_LPAREN,
- anon_sym_of,
- anon_sym_SEMI,
- anon_sym_LBRACK,
- anon_sym_DOT,
- anon_sym_QMARK_DOT,
- anon_sym_AMP_AMP,
- anon_sym_PIPE_PIPE,
- anon_sym_GT_GT_GT,
- anon_sym_LT_LT,
- anon_sym_CARET,
- anon_sym_PERCENT,
- anon_sym_STAR_STAR,
- anon_sym_LT_EQ,
- anon_sym_EQ_EQ_EQ,
- anon_sym_BANG_EQ_EQ,
- anon_sym_GT_EQ,
- anon_sym_QMARK_QMARK,
- anon_sym_instanceof,
- anon_sym_PLUS_PLUS,
- anon_sym_DASH_DASH,
- anon_sym_BQUOTE,
- anon_sym_satisfies,
- [64119] = 4,
- ACTIONS(4739), 1,
- anon_sym_DOT,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(3418), 13,
- anon_sym_STAR,
- anon_sym_BANG,
- anon_sym_in,
- anon_sym_GT,
- anon_sym_GT_GT,
- anon_sym_AMP,
- anon_sym_PIPE,
- anon_sym_PLUS,
- anon_sym_DASH,
- anon_sym_SLASH,
- anon_sym_LT,
- anon_sym_EQ_EQ,
- anon_sym_BANG_EQ,
- ACTIONS(3406), 28,
- sym__automatic_semicolon,
- sym__ternary_qmark,
- anon_sym_as,
- anon_sym_COMMA,
- anon_sym_RBRACE,
- anon_sym_LPAREN,
- anon_sym_of,
- anon_sym_SEMI,
- anon_sym_LBRACK,
- anon_sym_QMARK_DOT,
- anon_sym_AMP_AMP,
- anon_sym_PIPE_PIPE,
- anon_sym_GT_GT_GT,
- anon_sym_LT_LT,
- anon_sym_CARET,
- anon_sym_PERCENT,
- anon_sym_STAR_STAR,
- anon_sym_LT_EQ,
- anon_sym_EQ_EQ_EQ,
- anon_sym_BANG_EQ_EQ,
- anon_sym_GT_EQ,
- anon_sym_QMARK_QMARK,
- anon_sym_instanceof,
- anon_sym_PLUS_PLUS,
- anon_sym_DASH_DASH,
- anon_sym_BQUOTE,
- anon_sym_satisfies,
- anon_sym_extends,
- [64172] = 32,
- ACTIONS(89), 1,
- anon_sym_BQUOTE,
- ACTIONS(4059), 1,
- anon_sym_QMARK_DOT,
- ACTIONS(4519), 1,
- anon_sym_LPAREN,
- ACTIONS(4523), 1,
- anon_sym_LBRACK,
- ACTIONS(4525), 1,
- anon_sym_DOT,
- ACTIONS(4555), 1,
- anon_sym_as,
- ACTIONS(4562), 1,
- anon_sym_BANG,
- ACTIONS(4574), 1,
- anon_sym_satisfies,
- ACTIONS(5125), 1,
- anon_sym_AMP_AMP,
- ACTIONS(5127), 1,
- anon_sym_PIPE_PIPE,
- ACTIONS(5129), 1,
- anon_sym_GT_GT,
- ACTIONS(5133), 1,
- anon_sym_AMP,
- ACTIONS(5135), 1,
- anon_sym_CARET,
- ACTIONS(5137), 1,
- anon_sym_PIPE,
- ACTIONS(5141), 1,
- anon_sym_PERCENT,
- ACTIONS(5143), 1,
- anon_sym_STAR_STAR,
- ACTIONS(5145), 1,
- anon_sym_LT,
- ACTIONS(5153), 1,
- anon_sym_QMARK_QMARK,
- ACTIONS(5155), 1,
- sym__ternary_qmark,
- STATE(1812), 1,
- sym_type_arguments,
- STATE(4772), 1,
- sym_optional_chain,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(4545), 2,
- anon_sym_PLUS_PLUS,
- anon_sym_DASH_DASH,
- ACTIONS(5119), 2,
- anon_sym_STAR,
- anon_sym_SLASH,
- ACTIONS(5121), 2,
- anon_sym_in,
- anon_sym_GT,
- ACTIONS(5131), 2,
- anon_sym_GT_GT_GT,
- anon_sym_LT_LT,
- ACTIONS(5139), 2,
- anon_sym_PLUS,
- anon_sym_DASH,
- ACTIONS(5149), 2,
- anon_sym_EQ_EQ,
- anon_sym_BANG_EQ,
- ACTIONS(5151), 2,
- anon_sym_EQ_EQ_EQ,
- anon_sym_BANG_EQ_EQ,
- ACTIONS(5208), 2,
- sym__automatic_semicolon,
- anon_sym_SEMI,
- STATE(2133), 2,
- sym_template_string,
- sym_arguments,
- ACTIONS(5147), 3,
- anon_sym_LT_EQ,
- anon_sym_GT_EQ,
- anon_sym_instanceof,
- [64281] = 32,
- ACTIONS(89), 1,
- anon_sym_BQUOTE,
- ACTIONS(4059), 1,
- anon_sym_QMARK_DOT,
- ACTIONS(4519), 1,
- anon_sym_LPAREN,
- ACTIONS(4523), 1,
- anon_sym_LBRACK,
- ACTIONS(4525), 1,
- anon_sym_DOT,
- ACTIONS(4555), 1,
- anon_sym_as,
- ACTIONS(4562), 1,
- anon_sym_BANG,
- ACTIONS(4574), 1,
- anon_sym_satisfies,
- ACTIONS(5125), 1,
- anon_sym_AMP_AMP,
- ACTIONS(5127), 1,
- anon_sym_PIPE_PIPE,
- ACTIONS(5129), 1,
- anon_sym_GT_GT,
- ACTIONS(5133), 1,
- anon_sym_AMP,
- ACTIONS(5135), 1,
- anon_sym_CARET,
- ACTIONS(5137), 1,
- anon_sym_PIPE,
- ACTIONS(5141), 1,
- anon_sym_PERCENT,
- ACTIONS(5143), 1,
- anon_sym_STAR_STAR,
- ACTIONS(5145), 1,
- anon_sym_LT,
- ACTIONS(5153), 1,
- anon_sym_QMARK_QMARK,
- ACTIONS(5155), 1,
- sym__ternary_qmark,
- STATE(1812), 1,
- sym_type_arguments,
- STATE(4772), 1,
- sym_optional_chain,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(4255), 2,
- sym__automatic_semicolon,
- anon_sym_SEMI,
- ACTIONS(4545), 2,
- anon_sym_PLUS_PLUS,
- anon_sym_DASH_DASH,
- ACTIONS(5119), 2,
- anon_sym_STAR,
- anon_sym_SLASH,
- ACTIONS(5121), 2,
- anon_sym_in,
- anon_sym_GT,
- ACTIONS(5131), 2,
- anon_sym_GT_GT_GT,
- anon_sym_LT_LT,
- ACTIONS(5139), 2,
- anon_sym_PLUS,
- anon_sym_DASH,
- ACTIONS(5149), 2,
- anon_sym_EQ_EQ,
- anon_sym_BANG_EQ,
- ACTIONS(5151), 2,
- anon_sym_EQ_EQ_EQ,
- anon_sym_BANG_EQ_EQ,
- STATE(2133), 2,
- sym_template_string,
- sym_arguments,
- ACTIONS(5147), 3,
- anon_sym_LT_EQ,
- anon_sym_GT_EQ,
- anon_sym_instanceof,
- [64390] = 32,
- ACTIONS(89), 1,
- anon_sym_BQUOTE,
- ACTIONS(4059), 1,
- anon_sym_QMARK_DOT,
- ACTIONS(4519), 1,
- anon_sym_LPAREN,
- ACTIONS(4523), 1,
- anon_sym_LBRACK,
- ACTIONS(4525), 1,
- anon_sym_DOT,
- ACTIONS(4555), 1,
- anon_sym_as,
- ACTIONS(4562), 1,
- anon_sym_BANG,
- ACTIONS(4574), 1,
- anon_sym_satisfies,
- ACTIONS(5125), 1,
- anon_sym_AMP_AMP,
- ACTIONS(5127), 1,
- anon_sym_PIPE_PIPE,
- ACTIONS(5129), 1,
- anon_sym_GT_GT,
- ACTIONS(5133), 1,
- anon_sym_AMP,
- ACTIONS(5135), 1,
- anon_sym_CARET,
- ACTIONS(5137), 1,
- anon_sym_PIPE,
- ACTIONS(5141), 1,
- anon_sym_PERCENT,
- ACTIONS(5143), 1,
- anon_sym_STAR_STAR,
- ACTIONS(5145), 1,
- anon_sym_LT,
- ACTIONS(5153), 1,
- anon_sym_QMARK_QMARK,
- ACTIONS(5155), 1,
- sym__ternary_qmark,
- STATE(1812), 1,
- sym_type_arguments,
- STATE(4772), 1,
- sym_optional_chain,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(4257), 2,
- sym__automatic_semicolon,
- anon_sym_SEMI,
- ACTIONS(4545), 2,
- anon_sym_PLUS_PLUS,
- anon_sym_DASH_DASH,
- ACTIONS(5119), 2,
- anon_sym_STAR,
- anon_sym_SLASH,
- ACTIONS(5121), 2,
- anon_sym_in,
- anon_sym_GT,
- ACTIONS(5131), 2,
- anon_sym_GT_GT_GT,
- anon_sym_LT_LT,
- ACTIONS(5139), 2,
- anon_sym_PLUS,
- anon_sym_DASH,
- ACTIONS(5149), 2,
- anon_sym_EQ_EQ,
- anon_sym_BANG_EQ,
- ACTIONS(5151), 2,
- anon_sym_EQ_EQ_EQ,
- anon_sym_BANG_EQ_EQ,
- STATE(2133), 2,
- sym_template_string,
- sym_arguments,
- ACTIONS(5147), 3,
- anon_sym_LT_EQ,
- anon_sym_GT_EQ,
- anon_sym_instanceof,
- [64499] = 4,
- ACTIONS(5210), 1,
- anon_sym_DOT,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(4378), 13,
- anon_sym_STAR,
- anon_sym_BANG,
- anon_sym_in,
- anon_sym_GT,
- anon_sym_GT_GT,
- anon_sym_AMP,
- anon_sym_PIPE,
- anon_sym_PLUS,
- anon_sym_DASH,
- anon_sym_SLASH,
- anon_sym_LT,
- anon_sym_EQ_EQ,
- anon_sym_BANG_EQ,
- ACTIONS(4380), 28,
- sym__automatic_semicolon,
- sym__ternary_qmark,
- anon_sym_as,
- anon_sym_COMMA,
- anon_sym_RBRACE,
- anon_sym_LPAREN,
- anon_sym_of,
- anon_sym_SEMI,
- anon_sym_LBRACK,
- anon_sym_QMARK_DOT,
- anon_sym_AMP_AMP,
- anon_sym_PIPE_PIPE,
- anon_sym_GT_GT_GT,
- anon_sym_LT_LT,
- anon_sym_CARET,
- anon_sym_PERCENT,
- anon_sym_STAR_STAR,
- anon_sym_LT_EQ,
- anon_sym_EQ_EQ_EQ,
- anon_sym_BANG_EQ_EQ,
- anon_sym_GT_EQ,
- anon_sym_QMARK_QMARK,
- anon_sym_instanceof,
- anon_sym_PLUS_PLUS,
- anon_sym_DASH_DASH,
- anon_sym_BQUOTE,
- anon_sym_satisfies,
- anon_sym_extends,
- [64552] = 32,
- ACTIONS(89), 1,
- anon_sym_BQUOTE,
- ACTIONS(4059), 1,
- anon_sym_QMARK_DOT,
- ACTIONS(4519), 1,
- anon_sym_LPAREN,
- ACTIONS(4523), 1,
- anon_sym_LBRACK,
- ACTIONS(4525), 1,
- anon_sym_DOT,
- ACTIONS(4555), 1,
- anon_sym_as,
- ACTIONS(4562), 1,
- anon_sym_BANG,
- ACTIONS(4574), 1,
- anon_sym_satisfies,
- ACTIONS(5125), 1,
- anon_sym_AMP_AMP,
- ACTIONS(5127), 1,
- anon_sym_PIPE_PIPE,
- ACTIONS(5129), 1,
- anon_sym_GT_GT,
- ACTIONS(5133), 1,
- anon_sym_AMP,
- ACTIONS(5135), 1,
- anon_sym_CARET,
- ACTIONS(5137), 1,
- anon_sym_PIPE,
- ACTIONS(5141), 1,
- anon_sym_PERCENT,
- ACTIONS(5143), 1,
- anon_sym_STAR_STAR,
- ACTIONS(5145), 1,
- anon_sym_LT,
- ACTIONS(5153), 1,
- anon_sym_QMARK_QMARK,
- ACTIONS(5155), 1,
- sym__ternary_qmark,
- STATE(1812), 1,
- sym_type_arguments,
- STATE(4772), 1,
- sym_optional_chain,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(4283), 2,
- sym__automatic_semicolon,
- anon_sym_SEMI,
- ACTIONS(4545), 2,
- anon_sym_PLUS_PLUS,
- anon_sym_DASH_DASH,
- ACTIONS(5119), 2,
- anon_sym_STAR,
- anon_sym_SLASH,
- ACTIONS(5121), 2,
- anon_sym_in,
- anon_sym_GT,
- ACTIONS(5131), 2,
- anon_sym_GT_GT_GT,
- anon_sym_LT_LT,
- ACTIONS(5139), 2,
- anon_sym_PLUS,
- anon_sym_DASH,
- ACTIONS(5149), 2,
- anon_sym_EQ_EQ,
- anon_sym_BANG_EQ,
- ACTIONS(5151), 2,
- anon_sym_EQ_EQ_EQ,
- anon_sym_BANG_EQ_EQ,
- STATE(2133), 2,
- sym_template_string,
- sym_arguments,
- ACTIONS(5147), 3,
- anon_sym_LT_EQ,
- anon_sym_GT_EQ,
- anon_sym_instanceof,
- [64661] = 3,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(4384), 13,
- anon_sym_STAR,
- anon_sym_BANG,
- anon_sym_in,
- anon_sym_GT,
- anon_sym_GT_GT,
- anon_sym_AMP,
- anon_sym_PIPE,
- anon_sym_PLUS,
- anon_sym_DASH,
- anon_sym_SLASH,
- anon_sym_LT,
- anon_sym_EQ_EQ,
- anon_sym_BANG_EQ,
- ACTIONS(4386), 29,
- sym__automatic_semicolon,
- sym__ternary_qmark,
- anon_sym_as,
- anon_sym_COMMA,
- anon_sym_RBRACE,
- anon_sym_LPAREN,
- anon_sym_of,
- anon_sym_SEMI,
- anon_sym_LBRACK,
- anon_sym_DOT,
- anon_sym_QMARK_DOT,
- anon_sym_AMP_AMP,
- anon_sym_PIPE_PIPE,
- anon_sym_GT_GT_GT,
- anon_sym_LT_LT,
- anon_sym_CARET,
- anon_sym_PERCENT,
- anon_sym_STAR_STAR,
- anon_sym_LT_EQ,
- anon_sym_EQ_EQ_EQ,
- anon_sym_BANG_EQ_EQ,
- anon_sym_GT_EQ,
- anon_sym_QMARK_QMARK,
- anon_sym_instanceof,
- anon_sym_PLUS_PLUS,
- anon_sym_DASH_DASH,
- anon_sym_BQUOTE,
- anon_sym_satisfies,
- anon_sym_extends,
- [64712] = 32,
- ACTIONS(89), 1,
- anon_sym_BQUOTE,
- ACTIONS(4059), 1,
- anon_sym_QMARK_DOT,
- ACTIONS(4519), 1,
- anon_sym_LPAREN,
- ACTIONS(4523), 1,
- anon_sym_LBRACK,
- ACTIONS(4525), 1,
- anon_sym_DOT,
- ACTIONS(4555), 1,
- anon_sym_as,
- ACTIONS(4562), 1,
- anon_sym_BANG,
- ACTIONS(4574), 1,
- anon_sym_satisfies,
- ACTIONS(5125), 1,
- anon_sym_AMP_AMP,
- ACTIONS(5127), 1,
- anon_sym_PIPE_PIPE,
- ACTIONS(5129), 1,
- anon_sym_GT_GT,
- ACTIONS(5133), 1,
- anon_sym_AMP,
- ACTIONS(5135), 1,
- anon_sym_CARET,
- ACTIONS(5137), 1,
- anon_sym_PIPE,
- ACTIONS(5141), 1,
- anon_sym_PERCENT,
- ACTIONS(5143), 1,
- anon_sym_STAR_STAR,
- ACTIONS(5145), 1,
- anon_sym_LT,
- ACTIONS(5153), 1,
- anon_sym_QMARK_QMARK,
- ACTIONS(5155), 1,
- sym__ternary_qmark,
- STATE(1812), 1,
- sym_type_arguments,
- STATE(4772), 1,
- sym_optional_chain,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(4297), 2,
- sym__automatic_semicolon,
- anon_sym_SEMI,
- ACTIONS(4545), 2,
- anon_sym_PLUS_PLUS,
- anon_sym_DASH_DASH,
- ACTIONS(5119), 2,
- anon_sym_STAR,
- anon_sym_SLASH,
- ACTIONS(5121), 2,
- anon_sym_in,
- anon_sym_GT,
- ACTIONS(5131), 2,
- anon_sym_GT_GT_GT,
- anon_sym_LT_LT,
- ACTIONS(5139), 2,
- anon_sym_PLUS,
- anon_sym_DASH,
- ACTIONS(5149), 2,
- anon_sym_EQ_EQ,
- anon_sym_BANG_EQ,
- ACTIONS(5151), 2,
- anon_sym_EQ_EQ_EQ,
- anon_sym_BANG_EQ_EQ,
- STATE(2133), 2,
- sym_template_string,
- sym_arguments,
- ACTIONS(5147), 3,
- anon_sym_LT_EQ,
- anon_sym_GT_EQ,
- anon_sym_instanceof,
- [64821] = 32,
- ACTIONS(89), 1,
- anon_sym_BQUOTE,
- ACTIONS(4059), 1,
- anon_sym_QMARK_DOT,
- ACTIONS(4519), 1,
- anon_sym_LPAREN,
- ACTIONS(4523), 1,
- anon_sym_LBRACK,
- ACTIONS(4525), 1,
- anon_sym_DOT,
- ACTIONS(4555), 1,
- anon_sym_as,
- ACTIONS(4562), 1,
- anon_sym_BANG,
- ACTIONS(4574), 1,
- anon_sym_satisfies,
- ACTIONS(5125), 1,
- anon_sym_AMP_AMP,
- ACTIONS(5127), 1,
- anon_sym_PIPE_PIPE,
- ACTIONS(5129), 1,
- anon_sym_GT_GT,
- ACTIONS(5133), 1,
- anon_sym_AMP,
- ACTIONS(5135), 1,
- anon_sym_CARET,
- ACTIONS(5137), 1,
- anon_sym_PIPE,
- ACTIONS(5141), 1,
- anon_sym_PERCENT,
- ACTIONS(5143), 1,
- anon_sym_STAR_STAR,
- ACTIONS(5145), 1,
- anon_sym_LT,
- ACTIONS(5153), 1,
- anon_sym_QMARK_QMARK,
- ACTIONS(5155), 1,
- sym__ternary_qmark,
- STATE(1812), 1,
- sym_type_arguments,
- STATE(4772), 1,
- sym_optional_chain,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(4299), 2,
- sym__automatic_semicolon,
- anon_sym_SEMI,
- ACTIONS(4545), 2,
- anon_sym_PLUS_PLUS,
- anon_sym_DASH_DASH,
- ACTIONS(5119), 2,
- anon_sym_STAR,
- anon_sym_SLASH,
- ACTIONS(5121), 2,
- anon_sym_in,
- anon_sym_GT,
- ACTIONS(5131), 2,
- anon_sym_GT_GT_GT,
- anon_sym_LT_LT,
- ACTIONS(5139), 2,
- anon_sym_PLUS,
- anon_sym_DASH,
- ACTIONS(5149), 2,
- anon_sym_EQ_EQ,
- anon_sym_BANG_EQ,
- ACTIONS(5151), 2,
- anon_sym_EQ_EQ_EQ,
- anon_sym_BANG_EQ_EQ,
- STATE(2133), 2,
- sym_template_string,
- sym_arguments,
- ACTIONS(5147), 3,
- anon_sym_LT_EQ,
- anon_sym_GT_EQ,
- anon_sym_instanceof,
- [64930] = 19,
- ACTIONS(89), 1,
- anon_sym_BQUOTE,
- ACTIONS(4059), 1,
- anon_sym_QMARK_DOT,
- ACTIONS(4519), 1,
- anon_sym_LPAREN,
- ACTIONS(4523), 1,
- anon_sym_LBRACK,
- ACTIONS(4525), 1,
- anon_sym_DOT,
- ACTIONS(5129), 1,
- anon_sym_GT_GT,
- ACTIONS(5141), 1,
- anon_sym_PERCENT,
- ACTIONS(5143), 1,
- anon_sym_STAR_STAR,
- ACTIONS(5145), 1,
- anon_sym_LT,
- STATE(1812), 1,
- sym_type_arguments,
- STATE(4772), 1,
- sym_optional_chain,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(4545), 2,
- anon_sym_PLUS_PLUS,
- anon_sym_DASH_DASH,
- ACTIONS(5119), 2,
- anon_sym_STAR,
- anon_sym_SLASH,
- ACTIONS(5131), 2,
- anon_sym_GT_GT_GT,
- anon_sym_LT_LT,
- ACTIONS(5139), 2,
- anon_sym_PLUS,
- anon_sym_DASH,
- STATE(2133), 2,
- sym_template_string,
- sym_arguments,
- ACTIONS(4307), 7,
- anon_sym_BANG,
- anon_sym_in,
- anon_sym_GT,
- anon_sym_AMP,
- anon_sym_PIPE,
- anon_sym_EQ_EQ,
- anon_sym_BANG_EQ,
- ACTIONS(4305), 14,
- sym__automatic_semicolon,
- sym__ternary_qmark,
- anon_sym_as,
- anon_sym_SEMI,
- anon_sym_AMP_AMP,
- anon_sym_PIPE_PIPE,
- anon_sym_CARET,
- anon_sym_LT_EQ,
- anon_sym_EQ_EQ_EQ,
- anon_sym_BANG_EQ_EQ,
- anon_sym_GT_EQ,
- anon_sym_QMARK_QMARK,
- anon_sym_instanceof,
- anon_sym_satisfies,
- [65013] = 9,
- ACTIONS(4041), 1,
- anon_sym_extends,
- ACTIONS(4697), 1,
- anon_sym_LBRACK,
- ACTIONS(5215), 1,
- anon_sym_RPAREN,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(4700), 2,
- anon_sym_AMP,
- anon_sym_PIPE,
- ACTIONS(5191), 2,
- anon_sym_EQ,
- anon_sym_QMARK,
- ACTIONS(5212), 2,
- anon_sym_COMMA,
- anon_sym_COLON,
- ACTIONS(3400), 11,
- anon_sym_STAR,
- anon_sym_BANG,
- anon_sym_in,
- anon_sym_GT,
- anon_sym_GT_GT,
- anon_sym_PLUS,
- anon_sym_DASH,
- anon_sym_SLASH,
- anon_sym_LT,
- anon_sym_EQ_EQ,
- anon_sym_BANG_EQ,
- ACTIONS(3404), 22,
- sym__ternary_qmark,
- anon_sym_as,
- anon_sym_LPAREN,
- anon_sym_DOT,
- anon_sym_QMARK_DOT,
- anon_sym_AMP_AMP,
- anon_sym_PIPE_PIPE,
- anon_sym_GT_GT_GT,
- anon_sym_LT_LT,
- anon_sym_CARET,
- anon_sym_PERCENT,
- anon_sym_STAR_STAR,
- anon_sym_LT_EQ,
- anon_sym_EQ_EQ_EQ,
- anon_sym_BANG_EQ_EQ,
- anon_sym_GT_EQ,
- anon_sym_QMARK_QMARK,
- anon_sym_instanceof,
- anon_sym_PLUS_PLUS,
- anon_sym_DASH_DASH,
- anon_sym_BQUOTE,
- anon_sym_satisfies,
- [65076] = 14,
- ACTIONS(89), 1,
- anon_sym_BQUOTE,
- ACTIONS(4059), 1,
- anon_sym_QMARK_DOT,
- ACTIONS(4519), 1,
- anon_sym_LPAREN,
- ACTIONS(4523), 1,
- anon_sym_LBRACK,
- ACTIONS(4525), 1,
- anon_sym_DOT,
- ACTIONS(5143), 1,
- anon_sym_STAR_STAR,
- ACTIONS(5219), 1,
- anon_sym_LT,
- STATE(1812), 1,
- sym_type_arguments,
- STATE(4772), 1,
- sym_optional_chain,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(4545), 2,
- anon_sym_PLUS_PLUS,
- anon_sym_DASH_DASH,
- STATE(2133), 2,
- sym_template_string,
- sym_arguments,
- ACTIONS(4307), 12,
- anon_sym_STAR,
- anon_sym_BANG,
- anon_sym_in,
- anon_sym_GT,
- anon_sym_GT_GT,
- anon_sym_AMP,
- anon_sym_PIPE,
- anon_sym_PLUS,
- anon_sym_DASH,
- anon_sym_SLASH,
- anon_sym_EQ_EQ,
- anon_sym_BANG_EQ,
- ACTIONS(4305), 17,
- sym__automatic_semicolon,
- sym__ternary_qmark,
- anon_sym_as,
- anon_sym_SEMI,
- anon_sym_AMP_AMP,
- anon_sym_PIPE_PIPE,
- anon_sym_GT_GT_GT,
- anon_sym_LT_LT,
- anon_sym_CARET,
- anon_sym_PERCENT,
- anon_sym_LT_EQ,
- anon_sym_EQ_EQ_EQ,
- anon_sym_BANG_EQ_EQ,
- anon_sym_GT_EQ,
- anon_sym_QMARK_QMARK,
- anon_sym_instanceof,
- anon_sym_satisfies,
- [65149] = 9,
- ACTIONS(3454), 1,
- anon_sym_EQ,
- ACTIONS(3499), 1,
- anon_sym_QMARK,
- ACTIONS(4691), 1,
- anon_sym_LBRACK,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(3496), 2,
- anon_sym_COMMA,
- anon_sym_COLON,
- ACTIONS(4330), 2,
- anon_sym_RPAREN,
- anon_sym_extends,
- ACTIONS(4694), 2,
- anon_sym_AMP,
- anon_sym_PIPE,
- ACTIONS(3400), 11,
- anon_sym_STAR,
- anon_sym_BANG,
- anon_sym_in,
- anon_sym_GT,
- anon_sym_GT_GT,
- anon_sym_PLUS,
- anon_sym_DASH,
- anon_sym_SLASH,
- anon_sym_LT,
- anon_sym_EQ_EQ,
- anon_sym_BANG_EQ,
- ACTIONS(3404), 22,
- sym__ternary_qmark,
- anon_sym_as,
- anon_sym_LPAREN,
- anon_sym_DOT,
- anon_sym_QMARK_DOT,
- anon_sym_AMP_AMP,
- anon_sym_PIPE_PIPE,
- anon_sym_GT_GT_GT,
- anon_sym_LT_LT,
- anon_sym_CARET,
- anon_sym_PERCENT,
- anon_sym_STAR_STAR,
- anon_sym_LT_EQ,
- anon_sym_EQ_EQ_EQ,
- anon_sym_BANG_EQ_EQ,
- anon_sym_GT_EQ,
- anon_sym_QMARK_QMARK,
- anon_sym_instanceof,
- anon_sym_PLUS_PLUS,
- anon_sym_DASH_DASH,
- anon_sym_BQUOTE,
- anon_sym_satisfies,
- [65212] = 26,
- ACTIONS(89), 1,
- anon_sym_BQUOTE,
- ACTIONS(4059), 1,
- anon_sym_QMARK_DOT,
- ACTIONS(4307), 1,
- anon_sym_BANG,
- ACTIONS(4519), 1,
- anon_sym_LPAREN,
- ACTIONS(4523), 1,
- anon_sym_LBRACK,
- ACTIONS(4525), 1,
- anon_sym_DOT,
- ACTIONS(5129), 1,
- anon_sym_GT_GT,
- ACTIONS(5133), 1,
- anon_sym_AMP,
- ACTIONS(5135), 1,
- anon_sym_CARET,
- ACTIONS(5137), 1,
- anon_sym_PIPE,
- ACTIONS(5141), 1,
- anon_sym_PERCENT,
- ACTIONS(5143), 1,
- anon_sym_STAR_STAR,
- ACTIONS(5145), 1,
- anon_sym_LT,
- STATE(1812), 1,
- sym_type_arguments,
- STATE(4772), 1,
- sym_optional_chain,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(4545), 2,
- anon_sym_PLUS_PLUS,
- anon_sym_DASH_DASH,
- ACTIONS(5119), 2,
- anon_sym_STAR,
- anon_sym_SLASH,
- ACTIONS(5121), 2,
- anon_sym_in,
- anon_sym_GT,
- ACTIONS(5131), 2,
- anon_sym_GT_GT_GT,
- anon_sym_LT_LT,
- ACTIONS(5139), 2,
- anon_sym_PLUS,
- anon_sym_DASH,
- ACTIONS(5149), 2,
- anon_sym_EQ_EQ,
- anon_sym_BANG_EQ,
- ACTIONS(5151), 2,
- anon_sym_EQ_EQ_EQ,
- anon_sym_BANG_EQ_EQ,
- STATE(2133), 2,
- sym_template_string,
- sym_arguments,
- ACTIONS(5147), 3,
- anon_sym_LT_EQ,
- anon_sym_GT_EQ,
- anon_sym_instanceof,
- ACTIONS(4305), 8,
- sym__automatic_semicolon,
- sym__ternary_qmark,
- anon_sym_as,
- anon_sym_SEMI,
- anon_sym_AMP_AMP,
- anon_sym_PIPE_PIPE,
- anon_sym_QMARK_QMARK,
- anon_sym_satisfies,
- [65309] = 27,
- ACTIONS(89), 1,
- anon_sym_BQUOTE,
- ACTIONS(4059), 1,
- anon_sym_QMARK_DOT,
- ACTIONS(4307), 1,
- anon_sym_BANG,
- ACTIONS(4519), 1,
- anon_sym_LPAREN,
- ACTIONS(4523), 1,
- anon_sym_LBRACK,
- ACTIONS(4525), 1,
- anon_sym_DOT,
- ACTIONS(5125), 1,
- anon_sym_AMP_AMP,
- ACTIONS(5129), 1,
- anon_sym_GT_GT,
- ACTIONS(5133), 1,
- anon_sym_AMP,
- ACTIONS(5135), 1,
- anon_sym_CARET,
- ACTIONS(5137), 1,
- anon_sym_PIPE,
- ACTIONS(5141), 1,
- anon_sym_PERCENT,
- ACTIONS(5143), 1,
- anon_sym_STAR_STAR,
- ACTIONS(5145), 1,
- anon_sym_LT,
- STATE(1812), 1,
- sym_type_arguments,
- STATE(4772), 1,
- sym_optional_chain,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(4545), 2,
- anon_sym_PLUS_PLUS,
- anon_sym_DASH_DASH,
- ACTIONS(5119), 2,
- anon_sym_STAR,
- anon_sym_SLASH,
- ACTIONS(5121), 2,
- anon_sym_in,
- anon_sym_GT,
- ACTIONS(5131), 2,
- anon_sym_GT_GT_GT,
- anon_sym_LT_LT,
- ACTIONS(5139), 2,
- anon_sym_PLUS,
- anon_sym_DASH,
- ACTIONS(5149), 2,
- anon_sym_EQ_EQ,
- anon_sym_BANG_EQ,
- ACTIONS(5151), 2,
- anon_sym_EQ_EQ_EQ,
- anon_sym_BANG_EQ_EQ,
- STATE(2133), 2,
- sym_template_string,
- sym_arguments,
- ACTIONS(5147), 3,
- anon_sym_LT_EQ,
- anon_sym_GT_EQ,
- anon_sym_instanceof,
- ACTIONS(4305), 7,
- sym__automatic_semicolon,
- sym__ternary_qmark,
- anon_sym_as,
- anon_sym_SEMI,
- anon_sym_PIPE_PIPE,
- anon_sym_QMARK_QMARK,
- anon_sym_satisfies,
- [65408] = 17,
- ACTIONS(89), 1,
- anon_sym_BQUOTE,
- ACTIONS(4059), 1,
- anon_sym_QMARK_DOT,
- ACTIONS(4519), 1,
- anon_sym_LPAREN,
- ACTIONS(4523), 1,
- anon_sym_LBRACK,
- ACTIONS(4525), 1,
- anon_sym_DOT,
- ACTIONS(5141), 1,
- anon_sym_PERCENT,
- ACTIONS(5143), 1,
- anon_sym_STAR_STAR,
- ACTIONS(5219), 1,
- anon_sym_LT,
- STATE(1812), 1,
- sym_type_arguments,
- STATE(4772), 1,
- sym_optional_chain,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(4545), 2,
- anon_sym_PLUS_PLUS,
- anon_sym_DASH_DASH,
- ACTIONS(5119), 2,
- anon_sym_STAR,
- anon_sym_SLASH,
- ACTIONS(5139), 2,
- anon_sym_PLUS,
- anon_sym_DASH,
- STATE(2133), 2,
- sym_template_string,
- sym_arguments,
- ACTIONS(4307), 8,
- anon_sym_BANG,
- anon_sym_in,
- anon_sym_GT,
- anon_sym_GT_GT,
- anon_sym_AMP,
- anon_sym_PIPE,
- anon_sym_EQ_EQ,
- anon_sym_BANG_EQ,
- ACTIONS(4305), 16,
- sym__automatic_semicolon,
- sym__ternary_qmark,
- anon_sym_as,
- anon_sym_SEMI,
- anon_sym_AMP_AMP,
- anon_sym_PIPE_PIPE,
- anon_sym_GT_GT_GT,
- anon_sym_LT_LT,
- anon_sym_CARET,
- anon_sym_LT_EQ,
- anon_sym_EQ_EQ_EQ,
- anon_sym_BANG_EQ_EQ,
- anon_sym_GT_EQ,
- anon_sym_QMARK_QMARK,
- anon_sym_instanceof,
- anon_sym_satisfies,
- [65487] = 23,
- ACTIONS(89), 1,
- anon_sym_BQUOTE,
- ACTIONS(4059), 1,
- anon_sym_QMARK_DOT,
- ACTIONS(4519), 1,
- anon_sym_LPAREN,
- ACTIONS(4523), 1,
- anon_sym_LBRACK,
- ACTIONS(4525), 1,
- anon_sym_DOT,
- ACTIONS(5129), 1,
- anon_sym_GT_GT,
- ACTIONS(5141), 1,
- anon_sym_PERCENT,
- ACTIONS(5143), 1,
- anon_sym_STAR_STAR,
- ACTIONS(5145), 1,
- anon_sym_LT,
- STATE(1812), 1,
- sym_type_arguments,
- STATE(4772), 1,
- sym_optional_chain,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(4545), 2,
- anon_sym_PLUS_PLUS,
- anon_sym_DASH_DASH,
- ACTIONS(5119), 2,
- anon_sym_STAR,
- anon_sym_SLASH,
- ACTIONS(5121), 2,
- anon_sym_in,
- anon_sym_GT,
- ACTIONS(5131), 2,
- anon_sym_GT_GT_GT,
- anon_sym_LT_LT,
- ACTIONS(5139), 2,
- anon_sym_PLUS,
- anon_sym_DASH,
- ACTIONS(5149), 2,
- anon_sym_EQ_EQ,
- anon_sym_BANG_EQ,
- ACTIONS(5151), 2,
- anon_sym_EQ_EQ_EQ,
- anon_sym_BANG_EQ_EQ,
- STATE(2133), 2,
- sym_template_string,
- sym_arguments,
- ACTIONS(4307), 3,
- anon_sym_BANG,
- anon_sym_AMP,
- anon_sym_PIPE,
- ACTIONS(5147), 3,
- anon_sym_LT_EQ,
- anon_sym_GT_EQ,
- anon_sym_instanceof,
- ACTIONS(4305), 9,
- sym__automatic_semicolon,
- sym__ternary_qmark,
- anon_sym_as,
- anon_sym_SEMI,
- anon_sym_AMP_AMP,
- anon_sym_PIPE_PIPE,
- anon_sym_CARET,
- anon_sym_QMARK_QMARK,
- anon_sym_satisfies,
- [65578] = 24,
- ACTIONS(89), 1,
- anon_sym_BQUOTE,
- ACTIONS(4059), 1,
- anon_sym_QMARK_DOT,
- ACTIONS(4519), 1,
- anon_sym_LPAREN,
- ACTIONS(4523), 1,
- anon_sym_LBRACK,
- ACTIONS(4525), 1,
- anon_sym_DOT,
- ACTIONS(5129), 1,
- anon_sym_GT_GT,
- ACTIONS(5133), 1,
- anon_sym_AMP,
- ACTIONS(5141), 1,
- anon_sym_PERCENT,
- ACTIONS(5143), 1,
- anon_sym_STAR_STAR,
- ACTIONS(5145), 1,
- anon_sym_LT,
- STATE(1812), 1,
- sym_type_arguments,
- STATE(4772), 1,
- sym_optional_chain,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(4307), 2,
- anon_sym_BANG,
- anon_sym_PIPE,
- ACTIONS(4545), 2,
- anon_sym_PLUS_PLUS,
- anon_sym_DASH_DASH,
- ACTIONS(5119), 2,
- anon_sym_STAR,
- anon_sym_SLASH,
- ACTIONS(5121), 2,
- anon_sym_in,
- anon_sym_GT,
- ACTIONS(5131), 2,
- anon_sym_GT_GT_GT,
- anon_sym_LT_LT,
- ACTIONS(5139), 2,
- anon_sym_PLUS,
- anon_sym_DASH,
- ACTIONS(5149), 2,
- anon_sym_EQ_EQ,
- anon_sym_BANG_EQ,
- ACTIONS(5151), 2,
- anon_sym_EQ_EQ_EQ,
- anon_sym_BANG_EQ_EQ,
- STATE(2133), 2,
- sym_template_string,
- sym_arguments,
- ACTIONS(5147), 3,
- anon_sym_LT_EQ,
- anon_sym_GT_EQ,
- anon_sym_instanceof,
- ACTIONS(4305), 9,
- sym__automatic_semicolon,
- sym__ternary_qmark,
- anon_sym_as,
- anon_sym_SEMI,
- anon_sym_AMP_AMP,
- anon_sym_PIPE_PIPE,
- anon_sym_CARET,
- anon_sym_QMARK_QMARK,
- anon_sym_satisfies,
- [65671] = 25,
- ACTIONS(89), 1,
- anon_sym_BQUOTE,
- ACTIONS(4059), 1,
- anon_sym_QMARK_DOT,
- ACTIONS(4519), 1,
- anon_sym_LPAREN,
- ACTIONS(4523), 1,
- anon_sym_LBRACK,
- ACTIONS(4525), 1,
- anon_sym_DOT,
- ACTIONS(5129), 1,
- anon_sym_GT_GT,
- ACTIONS(5133), 1,
- anon_sym_AMP,
- ACTIONS(5135), 1,
- anon_sym_CARET,
- ACTIONS(5141), 1,
- anon_sym_PERCENT,
- ACTIONS(5143), 1,
- anon_sym_STAR_STAR,
- ACTIONS(5145), 1,
- anon_sym_LT,
- STATE(1812), 1,
- sym_type_arguments,
- STATE(4772), 1,
- sym_optional_chain,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(4307), 2,
- anon_sym_BANG,
- anon_sym_PIPE,
- ACTIONS(4545), 2,
- anon_sym_PLUS_PLUS,
- anon_sym_DASH_DASH,
- ACTIONS(5119), 2,
- anon_sym_STAR,
- anon_sym_SLASH,
- ACTIONS(5121), 2,
- anon_sym_in,
- anon_sym_GT,
- ACTIONS(5131), 2,
- anon_sym_GT_GT_GT,
- anon_sym_LT_LT,
- ACTIONS(5139), 2,
- anon_sym_PLUS,
- anon_sym_DASH,
- ACTIONS(5149), 2,
- anon_sym_EQ_EQ,
- anon_sym_BANG_EQ,
- ACTIONS(5151), 2,
- anon_sym_EQ_EQ_EQ,
- anon_sym_BANG_EQ_EQ,
- STATE(2133), 2,
- sym_template_string,
- sym_arguments,
- ACTIONS(5147), 3,
- anon_sym_LT_EQ,
- anon_sym_GT_EQ,
- anon_sym_instanceof,
- ACTIONS(4305), 8,
- sym__automatic_semicolon,
- sym__ternary_qmark,
- anon_sym_as,
- anon_sym_SEMI,
- anon_sym_AMP_AMP,
- anon_sym_PIPE_PIPE,
- anon_sym_QMARK_QMARK,
- anon_sym_satisfies,
- [65766] = 16,
- ACTIONS(89), 1,
- anon_sym_BQUOTE,
- ACTIONS(4059), 1,
- anon_sym_QMARK_DOT,
- ACTIONS(4519), 1,
- anon_sym_LPAREN,
- ACTIONS(4523), 1,
- anon_sym_LBRACK,
- ACTIONS(4525), 1,
- anon_sym_DOT,
- ACTIONS(5141), 1,
- anon_sym_PERCENT,
- ACTIONS(5143), 1,
- anon_sym_STAR_STAR,
- ACTIONS(5219), 1,
- anon_sym_LT,
- STATE(1812), 1,
- sym_type_arguments,
- STATE(4772), 1,
- sym_optional_chain,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(4545), 2,
- anon_sym_PLUS_PLUS,
- anon_sym_DASH_DASH,
- ACTIONS(5119), 2,
- anon_sym_STAR,
- anon_sym_SLASH,
- STATE(2133), 2,
- sym_template_string,
- sym_arguments,
- ACTIONS(4307), 10,
- anon_sym_BANG,
- anon_sym_in,
- anon_sym_GT,
- anon_sym_GT_GT,
- anon_sym_AMP,
- anon_sym_PIPE,
- anon_sym_PLUS,
- anon_sym_DASH,
- anon_sym_EQ_EQ,
- anon_sym_BANG_EQ,
- ACTIONS(4305), 16,
- sym__automatic_semicolon,
- sym__ternary_qmark,
- anon_sym_as,
- anon_sym_SEMI,
- anon_sym_AMP_AMP,
- anon_sym_PIPE_PIPE,
- anon_sym_GT_GT_GT,
- anon_sym_LT_LT,
- anon_sym_CARET,
- anon_sym_LT_EQ,
- anon_sym_EQ_EQ_EQ,
- anon_sym_BANG_EQ_EQ,
- anon_sym_GT_EQ,
- anon_sym_QMARK_QMARK,
- anon_sym_instanceof,
- anon_sym_satisfies,
- [65843] = 17,
- ACTIONS(89), 1,
- anon_sym_BQUOTE,
- ACTIONS(4059), 1,
- anon_sym_QMARK_DOT,
- ACTIONS(4519), 1,
- anon_sym_LPAREN,
- ACTIONS(4523), 1,
- anon_sym_LBRACK,
- ACTIONS(4525), 1,
- anon_sym_DOT,
- ACTIONS(4555), 1,
- anon_sym_as,
- ACTIONS(4562), 1,
- anon_sym_BANG,
- ACTIONS(4574), 1,
- anon_sym_satisfies,
- ACTIONS(5143), 1,
- anon_sym_STAR_STAR,
- ACTIONS(5219), 1,
- anon_sym_LT,
- STATE(1812), 1,
- sym_type_arguments,
- STATE(4772), 1,
- sym_optional_chain,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(4545), 2,
- anon_sym_PLUS_PLUS,
- anon_sym_DASH_DASH,
- STATE(2133), 2,
- sym_template_string,
- sym_arguments,
- ACTIONS(4307), 11,
- anon_sym_STAR,
- anon_sym_in,
- anon_sym_GT,
- anon_sym_GT_GT,
- anon_sym_AMP,
- anon_sym_PIPE,
- anon_sym_PLUS,
- anon_sym_DASH,
- anon_sym_SLASH,
- anon_sym_EQ_EQ,
- anon_sym_BANG_EQ,
- ACTIONS(4305), 15,
- sym__automatic_semicolon,
- sym__ternary_qmark,
- anon_sym_SEMI,
- anon_sym_AMP_AMP,
- anon_sym_PIPE_PIPE,
- anon_sym_GT_GT_GT,
- anon_sym_LT_LT,
- anon_sym_CARET,
- anon_sym_PERCENT,
- anon_sym_LT_EQ,
- anon_sym_EQ_EQ_EQ,
- anon_sym_BANG_EQ_EQ,
- anon_sym_GT_EQ,
- anon_sym_QMARK_QMARK,
- anon_sym_instanceof,
- [65922] = 21,
- ACTIONS(89), 1,
- anon_sym_BQUOTE,
- ACTIONS(4059), 1,
- anon_sym_QMARK_DOT,
- ACTIONS(4519), 1,
- anon_sym_LPAREN,
- ACTIONS(4523), 1,
- anon_sym_LBRACK,
- ACTIONS(4525), 1,
- anon_sym_DOT,
- ACTIONS(5129), 1,
- anon_sym_GT_GT,
- ACTIONS(5141), 1,
- anon_sym_PERCENT,
- ACTIONS(5143), 1,
- anon_sym_STAR_STAR,
- ACTIONS(5145), 1,
- anon_sym_LT,
- STATE(1812), 1,
- sym_type_arguments,
- STATE(4772), 1,
- sym_optional_chain,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(4545), 2,
- anon_sym_PLUS_PLUS,
- anon_sym_DASH_DASH,
- ACTIONS(5119), 2,
- anon_sym_STAR,
- anon_sym_SLASH,
- ACTIONS(5121), 2,
- anon_sym_in,
- anon_sym_GT,
- ACTIONS(5131), 2,
- anon_sym_GT_GT_GT,
- anon_sym_LT_LT,
- ACTIONS(5139), 2,
- anon_sym_PLUS,
- anon_sym_DASH,
- STATE(2133), 2,
- sym_template_string,
- sym_arguments,
- ACTIONS(5147), 3,
- anon_sym_LT_EQ,
- anon_sym_GT_EQ,
- anon_sym_instanceof,
- ACTIONS(4307), 5,
- anon_sym_BANG,
- anon_sym_AMP,
- anon_sym_PIPE,
- anon_sym_EQ_EQ,
- anon_sym_BANG_EQ,
- ACTIONS(4305), 11,
- sym__automatic_semicolon,
- sym__ternary_qmark,
- anon_sym_as,
- anon_sym_SEMI,
- anon_sym_AMP_AMP,
- anon_sym_PIPE_PIPE,
- anon_sym_CARET,
- anon_sym_EQ_EQ_EQ,
- anon_sym_BANG_EQ_EQ,
- anon_sym_QMARK_QMARK,
- anon_sym_satisfies,
- [66009] = 28,
- ACTIONS(89), 1,
- anon_sym_BQUOTE,
- ACTIONS(4059), 1,
- anon_sym_QMARK_DOT,
- ACTIONS(4307), 1,
- anon_sym_BANG,
- ACTIONS(4519), 1,
- anon_sym_LPAREN,
- ACTIONS(4523), 1,
- anon_sym_LBRACK,
- ACTIONS(4525), 1,
- anon_sym_DOT,
- ACTIONS(5125), 1,
- anon_sym_AMP_AMP,
- ACTIONS(5127), 1,
- anon_sym_PIPE_PIPE,
- ACTIONS(5129), 1,
- anon_sym_GT_GT,
- ACTIONS(5133), 1,
- anon_sym_AMP,
- ACTIONS(5135), 1,
- anon_sym_CARET,
- ACTIONS(5137), 1,
- anon_sym_PIPE,
- ACTIONS(5141), 1,
- anon_sym_PERCENT,
- ACTIONS(5143), 1,
- anon_sym_STAR_STAR,
- ACTIONS(5145), 1,
- anon_sym_LT,
- STATE(1812), 1,
- sym_type_arguments,
- STATE(4772), 1,
- sym_optional_chain,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(4545), 2,
- anon_sym_PLUS_PLUS,
- anon_sym_DASH_DASH,
- ACTIONS(5119), 2,
- anon_sym_STAR,
- anon_sym_SLASH,
- ACTIONS(5121), 2,
- anon_sym_in,
- anon_sym_GT,
- ACTIONS(5131), 2,
- anon_sym_GT_GT_GT,
- anon_sym_LT_LT,
- ACTIONS(5139), 2,
- anon_sym_PLUS,
- anon_sym_DASH,
- ACTIONS(5149), 2,
- anon_sym_EQ_EQ,
- anon_sym_BANG_EQ,
- ACTIONS(5151), 2,
- anon_sym_EQ_EQ_EQ,
- anon_sym_BANG_EQ_EQ,
- STATE(2133), 2,
- sym_template_string,
- sym_arguments,
- ACTIONS(5147), 3,
- anon_sym_LT_EQ,
- anon_sym_GT_EQ,
- anon_sym_instanceof,
- ACTIONS(4305), 6,
- sym__automatic_semicolon,
- sym__ternary_qmark,
- anon_sym_as,
- anon_sym_SEMI,
- anon_sym_QMARK_QMARK,
- anon_sym_satisfies,
- [66110] = 3,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(4039), 13,
- anon_sym_STAR,
- anon_sym_BANG,
- anon_sym_in,
- anon_sym_GT,
- anon_sym_GT_GT,
- anon_sym_AMP,
- anon_sym_PIPE,
- anon_sym_PLUS,
- anon_sym_DASH,
- anon_sym_SLASH,
- anon_sym_LT,
- anon_sym_EQ_EQ,
- anon_sym_BANG_EQ,
- ACTIONS(4041), 29,
- sym__automatic_semicolon,
- sym__ternary_qmark,
- anon_sym_as,
- anon_sym_COMMA,
- anon_sym_RBRACE,
- anon_sym_LPAREN,
- anon_sym_of,
- anon_sym_SEMI,
- anon_sym_LBRACK,
- anon_sym_DOT,
- anon_sym_QMARK_DOT,
- anon_sym_AMP_AMP,
- anon_sym_PIPE_PIPE,
- anon_sym_GT_GT_GT,
- anon_sym_LT_LT,
- anon_sym_CARET,
- anon_sym_PERCENT,
- anon_sym_STAR_STAR,
- anon_sym_LT_EQ,
- anon_sym_EQ_EQ_EQ,
- anon_sym_BANG_EQ_EQ,
- anon_sym_GT_EQ,
- anon_sym_QMARK_QMARK,
- anon_sym_instanceof,
- anon_sym_PLUS_PLUS,
- anon_sym_DASH_DASH,
- anon_sym_BQUOTE,
- anon_sym_satisfies,
- anon_sym_extends,
- [66161] = 32,
- ACTIONS(89), 1,
- anon_sym_BQUOTE,
- ACTIONS(4059), 1,
- anon_sym_QMARK_DOT,
- ACTIONS(4519), 1,
- anon_sym_LPAREN,
- ACTIONS(4523), 1,
- anon_sym_LBRACK,
- ACTIONS(4525), 1,
- anon_sym_DOT,
- ACTIONS(4555), 1,
- anon_sym_as,
- ACTIONS(4562), 1,
- anon_sym_BANG,
- ACTIONS(4574), 1,
- anon_sym_satisfies,
- ACTIONS(5125), 1,
- anon_sym_AMP_AMP,
- ACTIONS(5127), 1,
- anon_sym_PIPE_PIPE,
- ACTIONS(5129), 1,
- anon_sym_GT_GT,
- ACTIONS(5133), 1,
- anon_sym_AMP,
- ACTIONS(5135), 1,
- anon_sym_CARET,
- ACTIONS(5137), 1,
- anon_sym_PIPE,
- ACTIONS(5141), 1,
- anon_sym_PERCENT,
- ACTIONS(5143), 1,
- anon_sym_STAR_STAR,
- ACTIONS(5145), 1,
- anon_sym_LT,
- ACTIONS(5153), 1,
- anon_sym_QMARK_QMARK,
- ACTIONS(5155), 1,
- sym__ternary_qmark,
- STATE(1812), 1,
- sym_type_arguments,
- STATE(4772), 1,
- sym_optional_chain,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(4350), 2,
- sym__automatic_semicolon,
- anon_sym_SEMI,
- ACTIONS(4545), 2,
- anon_sym_PLUS_PLUS,
- anon_sym_DASH_DASH,
- ACTIONS(5119), 2,
- anon_sym_STAR,
- anon_sym_SLASH,
- ACTIONS(5121), 2,
- anon_sym_in,
- anon_sym_GT,
- ACTIONS(5131), 2,
- anon_sym_GT_GT_GT,
- anon_sym_LT_LT,
- ACTIONS(5139), 2,
- anon_sym_PLUS,
- anon_sym_DASH,
- ACTIONS(5149), 2,
- anon_sym_EQ_EQ,
- anon_sym_BANG_EQ,
- ACTIONS(5151), 2,
- anon_sym_EQ_EQ_EQ,
- anon_sym_BANG_EQ_EQ,
- STATE(2133), 2,
- sym_template_string,
- sym_arguments,
- ACTIONS(5147), 3,
- anon_sym_LT_EQ,
- anon_sym_GT_EQ,
- anon_sym_instanceof,
- [66270] = 32,
- ACTIONS(89), 1,
- anon_sym_BQUOTE,
- ACTIONS(4059), 1,
- anon_sym_QMARK_DOT,
- ACTIONS(4519), 1,
- anon_sym_LPAREN,
- ACTIONS(4523), 1,
- anon_sym_LBRACK,
- ACTIONS(4525), 1,
- anon_sym_DOT,
- ACTIONS(4555), 1,
- anon_sym_as,
- ACTIONS(4562), 1,
- anon_sym_BANG,
- ACTIONS(4574), 1,
- anon_sym_satisfies,
- ACTIONS(5125), 1,
- anon_sym_AMP_AMP,
- ACTIONS(5127), 1,
- anon_sym_PIPE_PIPE,
- ACTIONS(5129), 1,
- anon_sym_GT_GT,
- ACTIONS(5133), 1,
- anon_sym_AMP,
- ACTIONS(5135), 1,
- anon_sym_CARET,
- ACTIONS(5137), 1,
- anon_sym_PIPE,
- ACTIONS(5141), 1,
- anon_sym_PERCENT,
- ACTIONS(5143), 1,
- anon_sym_STAR_STAR,
- ACTIONS(5145), 1,
- anon_sym_LT,
- ACTIONS(5153), 1,
- anon_sym_QMARK_QMARK,
- ACTIONS(5155), 1,
- sym__ternary_qmark,
- STATE(1812), 1,
- sym_type_arguments,
- STATE(4772), 1,
- sym_optional_chain,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(4352), 2,
- sym__automatic_semicolon,
- anon_sym_SEMI,
- ACTIONS(4545), 2,
- anon_sym_PLUS_PLUS,
- anon_sym_DASH_DASH,
- ACTIONS(5119), 2,
- anon_sym_STAR,
- anon_sym_SLASH,
- ACTIONS(5121), 2,
- anon_sym_in,
- anon_sym_GT,
- ACTIONS(5131), 2,
- anon_sym_GT_GT_GT,
- anon_sym_LT_LT,
- ACTIONS(5139), 2,
- anon_sym_PLUS,
- anon_sym_DASH,
- ACTIONS(5149), 2,
- anon_sym_EQ_EQ,
- anon_sym_BANG_EQ,
- ACTIONS(5151), 2,
- anon_sym_EQ_EQ_EQ,
- anon_sym_BANG_EQ_EQ,
- STATE(2133), 2,
- sym_template_string,
- sym_arguments,
- ACTIONS(5147), 3,
- anon_sym_LT_EQ,
- anon_sym_GT_EQ,
- anon_sym_instanceof,
- [66379] = 3,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(4390), 13,
- anon_sym_STAR,
- anon_sym_BANG,
- anon_sym_in,
- anon_sym_GT,
- anon_sym_GT_GT,
- anon_sym_AMP,
- anon_sym_PIPE,
- anon_sym_PLUS,
- anon_sym_DASH,
- anon_sym_SLASH,
- anon_sym_LT,
- anon_sym_EQ_EQ,
- anon_sym_BANG_EQ,
- ACTIONS(4392), 29,
- sym__automatic_semicolon,
- sym__ternary_qmark,
- anon_sym_as,
- anon_sym_COMMA,
- anon_sym_RBRACE,
- anon_sym_LPAREN,
- anon_sym_of,
- anon_sym_SEMI,
- anon_sym_LBRACK,
- anon_sym_DOT,
- anon_sym_QMARK_DOT,
- anon_sym_AMP_AMP,
- anon_sym_PIPE_PIPE,
- anon_sym_GT_GT_GT,
- anon_sym_LT_LT,
- anon_sym_CARET,
- anon_sym_PERCENT,
- anon_sym_STAR_STAR,
- anon_sym_LT_EQ,
- anon_sym_EQ_EQ_EQ,
- anon_sym_BANG_EQ_EQ,
- anon_sym_GT_EQ,
- anon_sym_QMARK_QMARK,
- anon_sym_instanceof,
- anon_sym_PLUS_PLUS,
- anon_sym_DASH_DASH,
- anon_sym_BQUOTE,
- anon_sym_satisfies,
- anon_sym_extends,
- [66430] = 7,
- ACTIONS(3440), 1,
- anon_sym_DOT,
- ACTIONS(3442), 1,
- anon_sym_QMARK_DOT,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(3406), 3,
- anon_sym_COMMA,
- anon_sym_LBRACK,
- anon_sym_extends,
- ACTIONS(3418), 3,
- anon_sym_GT,
- anon_sym_AMP,
- anon_sym_PIPE,
- ACTIONS(3400), 10,
- anon_sym_STAR,
- anon_sym_BANG,
- anon_sym_in,
- anon_sym_GT_GT,
- anon_sym_PLUS,
- anon_sym_DASH,
- anon_sym_SLASH,
- anon_sym_LT,
- anon_sym_EQ_EQ,
- anon_sym_BANG_EQ,
- ACTIONS(3404), 24,
- sym__automatic_semicolon,
- sym__ternary_qmark,
- anon_sym_as,
- anon_sym_RBRACE,
- anon_sym_LPAREN,
- anon_sym_of,
- anon_sym_SEMI,
- anon_sym_AMP_AMP,
- anon_sym_PIPE_PIPE,
- anon_sym_GT_GT_GT,
- anon_sym_LT_LT,
- anon_sym_CARET,
- anon_sym_PERCENT,
- anon_sym_STAR_STAR,
- anon_sym_LT_EQ,
- anon_sym_EQ_EQ_EQ,
- anon_sym_BANG_EQ_EQ,
- anon_sym_GT_EQ,
- anon_sym_QMARK_QMARK,
- anon_sym_instanceof,
- anon_sym_PLUS_PLUS,
- anon_sym_DASH_DASH,
- anon_sym_BQUOTE,
- anon_sym_satisfies,
- [66489] = 32,
- ACTIONS(89), 1,
- anon_sym_BQUOTE,
- ACTIONS(4059), 1,
- anon_sym_QMARK_DOT,
- ACTIONS(4519), 1,
- anon_sym_LPAREN,
- ACTIONS(4523), 1,
- anon_sym_LBRACK,
- ACTIONS(4525), 1,
- anon_sym_DOT,
- ACTIONS(4555), 1,
- anon_sym_as,
- ACTIONS(4562), 1,
- anon_sym_BANG,
- ACTIONS(4574), 1,
- anon_sym_satisfies,
- ACTIONS(5125), 1,
- anon_sym_AMP_AMP,
- ACTIONS(5127), 1,
- anon_sym_PIPE_PIPE,
- ACTIONS(5129), 1,
- anon_sym_GT_GT,
- ACTIONS(5133), 1,
- anon_sym_AMP,
- ACTIONS(5135), 1,
- anon_sym_CARET,
- ACTIONS(5137), 1,
- anon_sym_PIPE,
- ACTIONS(5141), 1,
- anon_sym_PERCENT,
- ACTIONS(5143), 1,
- anon_sym_STAR_STAR,
- ACTIONS(5145), 1,
- anon_sym_LT,
- ACTIONS(5153), 1,
- anon_sym_QMARK_QMARK,
- ACTIONS(5155), 1,
- sym__ternary_qmark,
- STATE(1812), 1,
- sym_type_arguments,
- STATE(4772), 1,
- sym_optional_chain,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(4370), 2,
- sym__automatic_semicolon,
- anon_sym_SEMI,
- ACTIONS(4545), 2,
- anon_sym_PLUS_PLUS,
- anon_sym_DASH_DASH,
- ACTIONS(5119), 2,
- anon_sym_STAR,
- anon_sym_SLASH,
- ACTIONS(5121), 2,
- anon_sym_in,
- anon_sym_GT,
- ACTIONS(5131), 2,
- anon_sym_GT_GT_GT,
- anon_sym_LT_LT,
- ACTIONS(5139), 2,
- anon_sym_PLUS,
- anon_sym_DASH,
- ACTIONS(5149), 2,
- anon_sym_EQ_EQ,
- anon_sym_BANG_EQ,
- ACTIONS(5151), 2,
- anon_sym_EQ_EQ_EQ,
- anon_sym_BANG_EQ_EQ,
- STATE(2133), 2,
- sym_template_string,
- sym_arguments,
- ACTIONS(5147), 3,
- anon_sym_LT_EQ,
- anon_sym_GT_EQ,
- anon_sym_instanceof,
- [66598] = 32,
- ACTIONS(89), 1,
- anon_sym_BQUOTE,
- ACTIONS(4059), 1,
- anon_sym_QMARK_DOT,
- ACTIONS(4519), 1,
- anon_sym_LPAREN,
- ACTIONS(4523), 1,
- anon_sym_LBRACK,
- ACTIONS(4525), 1,
- anon_sym_DOT,
- ACTIONS(4555), 1,
- anon_sym_as,
- ACTIONS(4562), 1,
- anon_sym_BANG,
- ACTIONS(4574), 1,
- anon_sym_satisfies,
- ACTIONS(5125), 1,
- anon_sym_AMP_AMP,
- ACTIONS(5127), 1,
- anon_sym_PIPE_PIPE,
- ACTIONS(5129), 1,
- anon_sym_GT_GT,
- ACTIONS(5133), 1,
- anon_sym_AMP,
- ACTIONS(5135), 1,
- anon_sym_CARET,
- ACTIONS(5137), 1,
- anon_sym_PIPE,
- ACTIONS(5141), 1,
- anon_sym_PERCENT,
- ACTIONS(5143), 1,
- anon_sym_STAR_STAR,
- ACTIONS(5145), 1,
- anon_sym_LT,
- ACTIONS(5153), 1,
- anon_sym_QMARK_QMARK,
- ACTIONS(5155), 1,
- sym__ternary_qmark,
- STATE(1812), 1,
- sym_type_arguments,
- STATE(4772), 1,
- sym_optional_chain,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(4372), 2,
- sym__automatic_semicolon,
- anon_sym_SEMI,
- ACTIONS(4545), 2,
- anon_sym_PLUS_PLUS,
- anon_sym_DASH_DASH,
- ACTIONS(5119), 2,
- anon_sym_STAR,
- anon_sym_SLASH,
- ACTIONS(5121), 2,
- anon_sym_in,
- anon_sym_GT,
- ACTIONS(5131), 2,
- anon_sym_GT_GT_GT,
- anon_sym_LT_LT,
- ACTIONS(5139), 2,
- anon_sym_PLUS,
- anon_sym_DASH,
- ACTIONS(5149), 2,
- anon_sym_EQ_EQ,
- anon_sym_BANG_EQ,
- ACTIONS(5151), 2,
- anon_sym_EQ_EQ_EQ,
- anon_sym_BANG_EQ_EQ,
- STATE(2133), 2,
- sym_template_string,
- sym_arguments,
- ACTIONS(5147), 3,
- anon_sym_LT_EQ,
- anon_sym_GT_EQ,
- anon_sym_instanceof,
- [66707] = 32,
- ACTIONS(89), 1,
- anon_sym_BQUOTE,
- ACTIONS(4059), 1,
- anon_sym_QMARK_DOT,
- ACTIONS(4519), 1,
- anon_sym_LPAREN,
- ACTIONS(4523), 1,
- anon_sym_LBRACK,
- ACTIONS(4525), 1,
- anon_sym_DOT,
- ACTIONS(4555), 1,
- anon_sym_as,
- ACTIONS(4562), 1,
- anon_sym_BANG,
- ACTIONS(4574), 1,
- anon_sym_satisfies,
- ACTIONS(5125), 1,
- anon_sym_AMP_AMP,
- ACTIONS(5127), 1,
- anon_sym_PIPE_PIPE,
- ACTIONS(5129), 1,
- anon_sym_GT_GT,
- ACTIONS(5133), 1,
- anon_sym_AMP,
- ACTIONS(5135), 1,
- anon_sym_CARET,
- ACTIONS(5137), 1,
- anon_sym_PIPE,
- ACTIONS(5141), 1,
- anon_sym_PERCENT,
- ACTIONS(5143), 1,
- anon_sym_STAR_STAR,
- ACTIONS(5145), 1,
- anon_sym_LT,
- ACTIONS(5153), 1,
- anon_sym_QMARK_QMARK,
- ACTIONS(5155), 1,
- sym__ternary_qmark,
- STATE(1812), 1,
- sym_type_arguments,
- STATE(4772), 1,
- sym_optional_chain,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(4374), 2,
- sym__automatic_semicolon,
- anon_sym_SEMI,
- ACTIONS(4545), 2,
- anon_sym_PLUS_PLUS,
- anon_sym_DASH_DASH,
- ACTIONS(5119), 2,
- anon_sym_STAR,
- anon_sym_SLASH,
- ACTIONS(5121), 2,
- anon_sym_in,
- anon_sym_GT,
- ACTIONS(5131), 2,
- anon_sym_GT_GT_GT,
- anon_sym_LT_LT,
- ACTIONS(5139), 2,
- anon_sym_PLUS,
- anon_sym_DASH,
- ACTIONS(5149), 2,
- anon_sym_EQ_EQ,
- anon_sym_BANG_EQ,
- ACTIONS(5151), 2,
- anon_sym_EQ_EQ_EQ,
- anon_sym_BANG_EQ_EQ,
- STATE(2133), 2,
- sym_template_string,
- sym_arguments,
- ACTIONS(5147), 3,
- anon_sym_LT_EQ,
- anon_sym_GT_EQ,
- anon_sym_instanceof,
- [66816] = 32,
- ACTIONS(89), 1,
- anon_sym_BQUOTE,
- ACTIONS(4059), 1,
- anon_sym_QMARK_DOT,
- ACTIONS(4519), 1,
- anon_sym_LPAREN,
- ACTIONS(4523), 1,
- anon_sym_LBRACK,
- ACTIONS(4525), 1,
- anon_sym_DOT,
- ACTIONS(4555), 1,
- anon_sym_as,
- ACTIONS(4562), 1,
- anon_sym_BANG,
- ACTIONS(4574), 1,
- anon_sym_satisfies,
- ACTIONS(5125), 1,
- anon_sym_AMP_AMP,
- ACTIONS(5127), 1,
- anon_sym_PIPE_PIPE,
- ACTIONS(5129), 1,
- anon_sym_GT_GT,
- ACTIONS(5133), 1,
- anon_sym_AMP,
- ACTIONS(5135), 1,
- anon_sym_CARET,
- ACTIONS(5137), 1,
- anon_sym_PIPE,
- ACTIONS(5141), 1,
- anon_sym_PERCENT,
- ACTIONS(5143), 1,
- anon_sym_STAR_STAR,
- ACTIONS(5145), 1,
- anon_sym_LT,
- ACTIONS(5153), 1,
- anon_sym_QMARK_QMARK,
- ACTIONS(5155), 1,
- sym__ternary_qmark,
- STATE(1812), 1,
- sym_type_arguments,
- STATE(4772), 1,
- sym_optional_chain,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(4376), 2,
- sym__automatic_semicolon,
- anon_sym_SEMI,
- ACTIONS(4545), 2,
- anon_sym_PLUS_PLUS,
- anon_sym_DASH_DASH,
- ACTIONS(5119), 2,
- anon_sym_STAR,
- anon_sym_SLASH,
- ACTIONS(5121), 2,
- anon_sym_in,
- anon_sym_GT,
- ACTIONS(5131), 2,
- anon_sym_GT_GT_GT,
- anon_sym_LT_LT,
- ACTIONS(5139), 2,
- anon_sym_PLUS,
- anon_sym_DASH,
- ACTIONS(5149), 2,
- anon_sym_EQ_EQ,
- anon_sym_BANG_EQ,
- ACTIONS(5151), 2,
- anon_sym_EQ_EQ_EQ,
- anon_sym_BANG_EQ_EQ,
- STATE(2133), 2,
- sym_template_string,
- sym_arguments,
- ACTIONS(5147), 3,
- anon_sym_LT_EQ,
- anon_sym_GT_EQ,
- anon_sym_instanceof,
- [66925] = 32,
- ACTIONS(89), 1,
- anon_sym_BQUOTE,
- ACTIONS(4059), 1,
- anon_sym_QMARK_DOT,
- ACTIONS(4519), 1,
- anon_sym_LPAREN,
- ACTIONS(4523), 1,
- anon_sym_LBRACK,
- ACTIONS(4525), 1,
- anon_sym_DOT,
- ACTIONS(4555), 1,
- anon_sym_as,
- ACTIONS(4562), 1,
- anon_sym_BANG,
- ACTIONS(4574), 1,
- anon_sym_satisfies,
- ACTIONS(5125), 1,
- anon_sym_AMP_AMP,
- ACTIONS(5127), 1,
- anon_sym_PIPE_PIPE,
- ACTIONS(5129), 1,
- anon_sym_GT_GT,
- ACTIONS(5133), 1,
- anon_sym_AMP,
- ACTIONS(5135), 1,
- anon_sym_CARET,
- ACTIONS(5137), 1,
- anon_sym_PIPE,
- ACTIONS(5141), 1,
- anon_sym_PERCENT,
- ACTIONS(5143), 1,
- anon_sym_STAR_STAR,
- ACTIONS(5145), 1,
- anon_sym_LT,
- ACTIONS(5153), 1,
- anon_sym_QMARK_QMARK,
- ACTIONS(5155), 1,
- sym__ternary_qmark,
- STATE(1812), 1,
- sym_type_arguments,
- STATE(4772), 1,
- sym_optional_chain,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(4053), 2,
- sym__automatic_semicolon,
- anon_sym_SEMI,
- ACTIONS(4545), 2,
- anon_sym_PLUS_PLUS,
- anon_sym_DASH_DASH,
- ACTIONS(5119), 2,
- anon_sym_STAR,
- anon_sym_SLASH,
- ACTIONS(5121), 2,
- anon_sym_in,
- anon_sym_GT,
- ACTIONS(5131), 2,
- anon_sym_GT_GT_GT,
- anon_sym_LT_LT,
- ACTIONS(5139), 2,
- anon_sym_PLUS,
- anon_sym_DASH,
- ACTIONS(5149), 2,
- anon_sym_EQ_EQ,
- anon_sym_BANG_EQ,
- ACTIONS(5151), 2,
- anon_sym_EQ_EQ_EQ,
- anon_sym_BANG_EQ_EQ,
- STATE(2133), 2,
- sym_template_string,
- sym_arguments,
- ACTIONS(5147), 3,
- anon_sym_LT_EQ,
- anon_sym_GT_EQ,
- anon_sym_instanceof,
- [67034] = 3,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(4394), 13,
- anon_sym_STAR,
- anon_sym_BANG,
- anon_sym_in,
- anon_sym_GT,
- anon_sym_GT_GT,
- anon_sym_AMP,
- anon_sym_PIPE,
- anon_sym_PLUS,
- anon_sym_DASH,
- anon_sym_SLASH,
- anon_sym_LT,
- anon_sym_EQ_EQ,
- anon_sym_BANG_EQ,
- ACTIONS(4396), 29,
- sym__automatic_semicolon,
- sym__ternary_qmark,
- anon_sym_as,
- anon_sym_COMMA,
- anon_sym_RBRACE,
- anon_sym_LPAREN,
- anon_sym_of,
- anon_sym_SEMI,
- anon_sym_LBRACK,
- anon_sym_DOT,
- anon_sym_QMARK_DOT,
- anon_sym_AMP_AMP,
- anon_sym_PIPE_PIPE,
- anon_sym_GT_GT_GT,
- anon_sym_LT_LT,
- anon_sym_CARET,
- anon_sym_PERCENT,
- anon_sym_STAR_STAR,
- anon_sym_LT_EQ,
- anon_sym_EQ_EQ_EQ,
- anon_sym_BANG_EQ_EQ,
- anon_sym_GT_EQ,
- anon_sym_QMARK_QMARK,
- anon_sym_instanceof,
- anon_sym_PLUS_PLUS,
- anon_sym_DASH_DASH,
- anon_sym_BQUOTE,
- anon_sym_satisfies,
- anon_sym_extends,
- [67085] = 4,
- ACTIONS(5083), 1,
- anon_sym_AMP,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(4398), 12,
- anon_sym_STAR,
- anon_sym_BANG,
- anon_sym_in,
- anon_sym_GT,
- anon_sym_GT_GT,
- anon_sym_PIPE,
- anon_sym_PLUS,
- anon_sym_DASH,
- anon_sym_SLASH,
- anon_sym_LT,
- anon_sym_EQ_EQ,
- anon_sym_BANG_EQ,
- ACTIONS(4400), 29,
- sym__automatic_semicolon,
- sym__ternary_qmark,
- anon_sym_as,
- anon_sym_COMMA,
- anon_sym_RBRACE,
- anon_sym_LPAREN,
- anon_sym_of,
- anon_sym_SEMI,
- anon_sym_LBRACK,
- anon_sym_DOT,
- anon_sym_QMARK_DOT,
- anon_sym_AMP_AMP,
- anon_sym_PIPE_PIPE,
- anon_sym_GT_GT_GT,
- anon_sym_LT_LT,
- anon_sym_CARET,
- anon_sym_PERCENT,
- anon_sym_STAR_STAR,
- anon_sym_LT_EQ,
- anon_sym_EQ_EQ_EQ,
- anon_sym_BANG_EQ_EQ,
- anon_sym_GT_EQ,
- anon_sym_QMARK_QMARK,
- anon_sym_instanceof,
- anon_sym_PLUS_PLUS,
- anon_sym_DASH_DASH,
- anon_sym_BQUOTE,
- anon_sym_satisfies,
- anon_sym_extends,
- [67138] = 3,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(4402), 13,
- anon_sym_STAR,
- anon_sym_BANG,
- anon_sym_in,
- anon_sym_GT,
- anon_sym_GT_GT,
- anon_sym_AMP,
- anon_sym_PIPE,
- anon_sym_PLUS,
- anon_sym_DASH,
- anon_sym_SLASH,
- anon_sym_LT,
- anon_sym_EQ_EQ,
- anon_sym_BANG_EQ,
- ACTIONS(4404), 29,
- sym__automatic_semicolon,
- sym__ternary_qmark,
- anon_sym_as,
- anon_sym_COMMA,
- anon_sym_RBRACE,
- anon_sym_LPAREN,
- anon_sym_of,
- anon_sym_SEMI,
- anon_sym_LBRACK,
- anon_sym_DOT,
- anon_sym_QMARK_DOT,
- anon_sym_AMP_AMP,
- anon_sym_PIPE_PIPE,
- anon_sym_GT_GT_GT,
- anon_sym_LT_LT,
- anon_sym_CARET,
- anon_sym_PERCENT,
- anon_sym_STAR_STAR,
- anon_sym_LT_EQ,
- anon_sym_EQ_EQ_EQ,
- anon_sym_BANG_EQ_EQ,
- anon_sym_GT_EQ,
- anon_sym_QMARK_QMARK,
- anon_sym_instanceof,
- anon_sym_PLUS_PLUS,
- anon_sym_DASH_DASH,
- anon_sym_BQUOTE,
- anon_sym_satisfies,
- anon_sym_extends,
- [67189] = 33,
- ACTIONS(89), 1,
- anon_sym_BQUOTE,
- ACTIONS(4059), 1,
- anon_sym_QMARK_DOT,
- ACTIONS(4519), 1,
- anon_sym_LPAREN,
- ACTIONS(4523), 1,
- anon_sym_LBRACK,
- ACTIONS(4525), 1,
- anon_sym_DOT,
- ACTIONS(4555), 1,
- anon_sym_as,
- ACTIONS(4562), 1,
- anon_sym_BANG,
- ACTIONS(4574), 1,
- anon_sym_satisfies,
- ACTIONS(5125), 1,
- anon_sym_AMP_AMP,
- ACTIONS(5127), 1,
- anon_sym_PIPE_PIPE,
- ACTIONS(5129), 1,
- anon_sym_GT_GT,
- ACTIONS(5133), 1,
- anon_sym_AMP,
- ACTIONS(5135), 1,
- anon_sym_CARET,
- ACTIONS(5137), 1,
- anon_sym_PIPE,
- ACTIONS(5141), 1,
- anon_sym_PERCENT,
- ACTIONS(5143), 1,
- anon_sym_STAR_STAR,
- ACTIONS(5145), 1,
- anon_sym_LT,
- ACTIONS(5153), 1,
- anon_sym_QMARK_QMARK,
- ACTIONS(5155), 1,
- sym__ternary_qmark,
- ACTIONS(5222), 1,
- anon_sym_SEMI,
- ACTIONS(5224), 1,
- sym__automatic_semicolon,
- STATE(1812), 1,
- sym_type_arguments,
- STATE(4772), 1,
- sym_optional_chain,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(4545), 2,
- anon_sym_PLUS_PLUS,
- anon_sym_DASH_DASH,
- ACTIONS(5119), 2,
- anon_sym_STAR,
- anon_sym_SLASH,
- ACTIONS(5121), 2,
- anon_sym_in,
- anon_sym_GT,
- ACTIONS(5131), 2,
- anon_sym_GT_GT_GT,
- anon_sym_LT_LT,
- ACTIONS(5139), 2,
- anon_sym_PLUS,
- anon_sym_DASH,
- ACTIONS(5149), 2,
- anon_sym_EQ_EQ,
- anon_sym_BANG_EQ,
- ACTIONS(5151), 2,
- anon_sym_EQ_EQ_EQ,
- anon_sym_BANG_EQ_EQ,
- STATE(2133), 2,
- sym_template_string,
- sym_arguments,
- ACTIONS(5147), 3,
- anon_sym_LT_EQ,
- anon_sym_GT_EQ,
- anon_sym_instanceof,
- [67300] = 12,
- ACTIONS(1594), 1,
- anon_sym_DQUOTE,
- ACTIONS(1596), 1,
- anon_sym_SQUOTE,
- ACTIONS(4658), 1,
- anon_sym_LBRACK,
- ACTIONS(4827), 1,
- anon_sym_STAR,
- ACTIONS(4831), 1,
- anon_sym_async,
- ACTIONS(4872), 1,
- anon_sym_abstract,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(4833), 2,
- sym_number,
- sym_private_property_identifier,
- ACTIONS(4837), 2,
- anon_sym_get,
- anon_sym_set,
- STATE(2980), 3,
- sym_string,
- sym__property_name,
- sym_computed_property_name,
- ACTIONS(3743), 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(3607), 20,
- anon_sym_export,
- anon_sym_type,
- anon_sym_namespace,
- anon_sym_let,
- anon_sym_new,
- sym_identifier,
- anon_sym_static,
- anon_sym_readonly,
- anon_sym_declare,
- anon_sym_public,
- anon_sym_private,
- anon_sym_protected,
- anon_sym_override,
- anon_sym_module,
- anon_sym_any,
- anon_sym_number,
- anon_sym_boolean,
- anon_sym_string,
- anon_sym_symbol,
- anon_sym_object,
- [67369] = 3,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(4185), 13,
- anon_sym_STAR,
- anon_sym_BANG,
- anon_sym_in,
- anon_sym_GT,
- anon_sym_GT_GT,
- anon_sym_AMP,
- anon_sym_PIPE,
- anon_sym_PLUS,
- anon_sym_DASH,
- anon_sym_SLASH,
- anon_sym_LT,
- anon_sym_EQ_EQ,
- anon_sym_BANG_EQ,
- ACTIONS(4187), 29,
- sym__automatic_semicolon,
- sym__ternary_qmark,
- anon_sym_as,
- anon_sym_COMMA,
- anon_sym_RBRACE,
- anon_sym_LPAREN,
- anon_sym_of,
- anon_sym_SEMI,
- anon_sym_LBRACK,
- anon_sym_DOT,
- anon_sym_QMARK_DOT,
- anon_sym_AMP_AMP,
- anon_sym_PIPE_PIPE,
- anon_sym_GT_GT_GT,
- anon_sym_LT_LT,
- anon_sym_CARET,
- anon_sym_PERCENT,
- anon_sym_STAR_STAR,
- anon_sym_LT_EQ,
- anon_sym_EQ_EQ_EQ,
- anon_sym_BANG_EQ_EQ,
- anon_sym_GT_EQ,
- anon_sym_QMARK_QMARK,
- anon_sym_instanceof,
- anon_sym_PLUS_PLUS,
- anon_sym_DASH_DASH,
- anon_sym_BQUOTE,
- anon_sym_satisfies,
- anon_sym_extends,
- [67420] = 6,
- ACTIONS(4408), 1,
- anon_sym_extends,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(4878), 2,
- anon_sym_COMMA,
- anon_sym_LBRACK,
- ACTIONS(4881), 3,
- anon_sym_GT,
- anon_sym_AMP,
- anon_sym_PIPE,
- ACTIONS(4774), 10,
- anon_sym_STAR,
- anon_sym_BANG,
- anon_sym_in,
- anon_sym_GT_GT,
- anon_sym_PLUS,
- anon_sym_DASH,
- anon_sym_SLASH,
- anon_sym_LT,
- anon_sym_EQ_EQ,
- anon_sym_BANG_EQ,
- ACTIONS(4776), 26,
- sym__automatic_semicolon,
- sym__ternary_qmark,
- anon_sym_as,
- anon_sym_RBRACE,
- anon_sym_LPAREN,
- anon_sym_of,
- anon_sym_SEMI,
- anon_sym_DOT,
- anon_sym_QMARK_DOT,
- anon_sym_AMP_AMP,
- anon_sym_PIPE_PIPE,
- anon_sym_GT_GT_GT,
- anon_sym_LT_LT,
- anon_sym_CARET,
- anon_sym_PERCENT,
- anon_sym_STAR_STAR,
- anon_sym_LT_EQ,
- anon_sym_EQ_EQ_EQ,
- anon_sym_BANG_EQ_EQ,
- anon_sym_GT_EQ,
- anon_sym_QMARK_QMARK,
- anon_sym_instanceof,
- anon_sym_PLUS_PLUS,
- anon_sym_DASH_DASH,
- anon_sym_BQUOTE,
- anon_sym_satisfies,
- [67477] = 4,
- ACTIONS(4460), 1,
- anon_sym_extends,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(4450), 13,
- anon_sym_STAR,
- anon_sym_BANG,
- anon_sym_in,
- anon_sym_GT,
- anon_sym_GT_GT,
- anon_sym_AMP,
- anon_sym_PIPE,
- anon_sym_PLUS,
- anon_sym_DASH,
- anon_sym_SLASH,
- anon_sym_LT,
- anon_sym_EQ_EQ,
- anon_sym_BANG_EQ,
- ACTIONS(4452), 28,
- sym__automatic_semicolon,
- sym__ternary_qmark,
- anon_sym_as,
- anon_sym_COMMA,
- anon_sym_RBRACE,
- anon_sym_LPAREN,
- anon_sym_of,
- anon_sym_SEMI,
- anon_sym_LBRACK,
- anon_sym_DOT,
- anon_sym_QMARK_DOT,
- anon_sym_AMP_AMP,
- anon_sym_PIPE_PIPE,
- anon_sym_GT_GT_GT,
- anon_sym_LT_LT,
- anon_sym_CARET,
- anon_sym_PERCENT,
- anon_sym_STAR_STAR,
- anon_sym_LT_EQ,
- anon_sym_EQ_EQ_EQ,
- anon_sym_BANG_EQ_EQ,
- anon_sym_GT_EQ,
- anon_sym_QMARK_QMARK,
- anon_sym_instanceof,
- anon_sym_PLUS_PLUS,
- anon_sym_DASH_DASH,
- anon_sym_BQUOTE,
- anon_sym_satisfies,
- [67530] = 3,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(4406), 13,
- anon_sym_STAR,
- anon_sym_BANG,
- anon_sym_in,
- anon_sym_GT,
- anon_sym_GT_GT,
- anon_sym_AMP,
- anon_sym_PIPE,
- anon_sym_PLUS,
- anon_sym_DASH,
- anon_sym_SLASH,
- anon_sym_LT,
- anon_sym_EQ_EQ,
- anon_sym_BANG_EQ,
- ACTIONS(4408), 29,
- sym__automatic_semicolon,
- sym__ternary_qmark,
- anon_sym_as,
- anon_sym_COMMA,
- anon_sym_RBRACE,
- anon_sym_LPAREN,
- anon_sym_of,
- anon_sym_SEMI,
- anon_sym_LBRACK,
- anon_sym_DOT,
- anon_sym_QMARK_DOT,
- anon_sym_AMP_AMP,
- anon_sym_PIPE_PIPE,
- anon_sym_GT_GT_GT,
- anon_sym_LT_LT,
- anon_sym_CARET,
- anon_sym_PERCENT,
- anon_sym_STAR_STAR,
- anon_sym_LT_EQ,
- anon_sym_EQ_EQ_EQ,
- anon_sym_BANG_EQ_EQ,
- anon_sym_GT_EQ,
- anon_sym_QMARK_QMARK,
- anon_sym_instanceof,
- anon_sym_PLUS_PLUS,
- anon_sym_DASH_DASH,
- anon_sym_BQUOTE,
- anon_sym_satisfies,
- anon_sym_extends,
- [67581] = 33,
- ACTIONS(89), 1,
- anon_sym_BQUOTE,
- ACTIONS(4059), 1,
- anon_sym_QMARK_DOT,
- ACTIONS(4519), 1,
- anon_sym_LPAREN,
- ACTIONS(4523), 1,
- anon_sym_LBRACK,
- ACTIONS(4525), 1,
- anon_sym_DOT,
- ACTIONS(4555), 1,
- anon_sym_as,
- ACTIONS(4562), 1,
- anon_sym_BANG,
- ACTIONS(4574), 1,
- anon_sym_satisfies,
- ACTIONS(5125), 1,
- anon_sym_AMP_AMP,
- ACTIONS(5127), 1,
- anon_sym_PIPE_PIPE,
- ACTIONS(5129), 1,
- anon_sym_GT_GT,
- ACTIONS(5133), 1,
- anon_sym_AMP,
- ACTIONS(5135), 1,
- anon_sym_CARET,
- ACTIONS(5137), 1,
- anon_sym_PIPE,
- ACTIONS(5141), 1,
- anon_sym_PERCENT,
- ACTIONS(5143), 1,
- anon_sym_STAR_STAR,
- ACTIONS(5145), 1,
- anon_sym_LT,
- ACTIONS(5153), 1,
- anon_sym_QMARK_QMARK,
- ACTIONS(5155), 1,
- sym__ternary_qmark,
- ACTIONS(5226), 1,
- anon_sym_SEMI,
- ACTIONS(5228), 1,
- sym__automatic_semicolon,
- STATE(1812), 1,
- sym_type_arguments,
- STATE(4772), 1,
- sym_optional_chain,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(4545), 2,
- anon_sym_PLUS_PLUS,
- anon_sym_DASH_DASH,
- ACTIONS(5119), 2,
- anon_sym_STAR,
- anon_sym_SLASH,
- ACTIONS(5121), 2,
- anon_sym_in,
- anon_sym_GT,
- ACTIONS(5131), 2,
- anon_sym_GT_GT_GT,
- anon_sym_LT_LT,
- ACTIONS(5139), 2,
- anon_sym_PLUS,
- anon_sym_DASH,
- ACTIONS(5149), 2,
- anon_sym_EQ_EQ,
- anon_sym_BANG_EQ,
- ACTIONS(5151), 2,
- anon_sym_EQ_EQ_EQ,
- anon_sym_BANG_EQ_EQ,
- STATE(2133), 2,
- sym_template_string,
- sym_arguments,
- ACTIONS(5147), 3,
- anon_sym_LT_EQ,
- anon_sym_GT_EQ,
- anon_sym_instanceof,
- [67692] = 3,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(4410), 13,
- anon_sym_STAR,
- anon_sym_BANG,
- anon_sym_in,
- anon_sym_GT,
- anon_sym_GT_GT,
- anon_sym_AMP,
- anon_sym_PIPE,
- anon_sym_PLUS,
- anon_sym_DASH,
- anon_sym_SLASH,
- anon_sym_LT,
- anon_sym_EQ_EQ,
- anon_sym_BANG_EQ,
- ACTIONS(4412), 29,
- sym__automatic_semicolon,
- sym__ternary_qmark,
- anon_sym_as,
- anon_sym_COMMA,
- anon_sym_RBRACE,
- anon_sym_LPAREN,
- anon_sym_of,
- anon_sym_SEMI,
- anon_sym_LBRACK,
- anon_sym_DOT,
- anon_sym_QMARK_DOT,
- anon_sym_AMP_AMP,
- anon_sym_PIPE_PIPE,
- anon_sym_GT_GT_GT,
- anon_sym_LT_LT,
- anon_sym_CARET,
- anon_sym_PERCENT,
- anon_sym_STAR_STAR,
- anon_sym_LT_EQ,
- anon_sym_EQ_EQ_EQ,
- anon_sym_BANG_EQ_EQ,
- anon_sym_GT_EQ,
- anon_sym_QMARK_QMARK,
- anon_sym_instanceof,
- anon_sym_PLUS_PLUS,
- anon_sym_DASH_DASH,
- anon_sym_BQUOTE,
- anon_sym_satisfies,
- anon_sym_extends,
- [67743] = 6,
- ACTIONS(5083), 1,
- anon_sym_AMP,
- ACTIONS(5085), 1,
- anon_sym_PIPE,
- ACTIONS(5087), 1,
- anon_sym_extends,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(4420), 11,
- anon_sym_STAR,
- anon_sym_BANG,
- anon_sym_in,
- anon_sym_GT,
- anon_sym_GT_GT,
- anon_sym_PLUS,
- anon_sym_DASH,
- anon_sym_SLASH,
- anon_sym_LT,
- anon_sym_EQ_EQ,
- anon_sym_BANG_EQ,
- ACTIONS(4422), 28,
- sym__automatic_semicolon,
- sym__ternary_qmark,
- anon_sym_as,
- anon_sym_COMMA,
- anon_sym_RBRACE,
- anon_sym_LPAREN,
- anon_sym_of,
- anon_sym_SEMI,
- anon_sym_LBRACK,
- anon_sym_DOT,
- anon_sym_QMARK_DOT,
- anon_sym_AMP_AMP,
- anon_sym_PIPE_PIPE,
- anon_sym_GT_GT_GT,
- anon_sym_LT_LT,
- anon_sym_CARET,
- anon_sym_PERCENT,
- anon_sym_STAR_STAR,
- anon_sym_LT_EQ,
- anon_sym_EQ_EQ_EQ,
- anon_sym_BANG_EQ_EQ,
- anon_sym_GT_EQ,
- anon_sym_QMARK_QMARK,
- anon_sym_instanceof,
- anon_sym_PLUS_PLUS,
- anon_sym_DASH_DASH,
- anon_sym_BQUOTE,
- anon_sym_satisfies,
- [67800] = 32,
- ACTIONS(825), 1,
- anon_sym_BQUOTE,
- ACTIONS(3969), 1,
- anon_sym_LPAREN,
- ACTIONS(3971), 1,
- anon_sym_LBRACK,
- ACTIONS(3973), 1,
- anon_sym_DOT,
- ACTIONS(4051), 1,
- anon_sym_as,
- ACTIONS(4055), 1,
- anon_sym_BANG,
- ACTIONS(4059), 1,
- anon_sym_QMARK_DOT,
- ACTIONS(4061), 1,
- anon_sym_AMP_AMP,
- ACTIONS(4063), 1,
- anon_sym_PIPE_PIPE,
- ACTIONS(4065), 1,
- anon_sym_GT_GT,
- ACTIONS(4069), 1,
- anon_sym_AMP,
- ACTIONS(4071), 1,
- anon_sym_CARET,
- ACTIONS(4073), 1,
- anon_sym_PIPE,
- ACTIONS(4077), 1,
- anon_sym_PERCENT,
- ACTIONS(4079), 1,
- anon_sym_STAR_STAR,
- ACTIONS(4081), 1,
- anon_sym_LT,
- ACTIONS(4089), 1,
- anon_sym_QMARK_QMARK,
- ACTIONS(4093), 1,
- anon_sym_satisfies,
- ACTIONS(4095), 1,
- sym__ternary_qmark,
- STATE(1447), 1,
- sym_type_arguments,
- STATE(5080), 1,
- sym_optional_chain,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(4049), 2,
- anon_sym_STAR,
- anon_sym_SLASH,
- ACTIONS(4057), 2,
- anon_sym_in,
- anon_sym_GT,
- ACTIONS(4067), 2,
- anon_sym_GT_GT_GT,
- anon_sym_LT_LT,
- ACTIONS(4075), 2,
- anon_sym_PLUS,
- anon_sym_DASH,
- ACTIONS(4085), 2,
- anon_sym_EQ_EQ,
- anon_sym_BANG_EQ,
- ACTIONS(4087), 2,
- anon_sym_EQ_EQ_EQ,
- anon_sym_BANG_EQ_EQ,
- ACTIONS(4091), 2,
- anon_sym_PLUS_PLUS,
- anon_sym_DASH_DASH,
- ACTIONS(4672), 2,
- anon_sym_COMMA,
- anon_sym_RBRACE,
- STATE(1757), 2,
- sym_template_string,
- sym_arguments,
- ACTIONS(4083), 3,
- anon_sym_LT_EQ,
- anon_sym_GT_EQ,
- anon_sym_instanceof,
- [67909] = 6,
- ACTIONS(4344), 1,
- anon_sym_extends,
- ACTIONS(5098), 1,
- anon_sym_LBRACK,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(4342), 2,
- anon_sym_AMP,
- anon_sym_PIPE,
- ACTIONS(4424), 11,
- anon_sym_STAR,
- anon_sym_BANG,
- anon_sym_in,
- anon_sym_GT,
- anon_sym_GT_GT,
- anon_sym_PLUS,
- anon_sym_DASH,
- anon_sym_SLASH,
- anon_sym_LT,
- anon_sym_EQ_EQ,
- anon_sym_BANG_EQ,
- ACTIONS(4426), 27,
- sym__automatic_semicolon,
- sym__ternary_qmark,
- anon_sym_as,
- anon_sym_COMMA,
- anon_sym_RBRACE,
- anon_sym_LPAREN,
- anon_sym_of,
- anon_sym_SEMI,
- anon_sym_DOT,
- anon_sym_QMARK_DOT,
- anon_sym_AMP_AMP,
- anon_sym_PIPE_PIPE,
- anon_sym_GT_GT_GT,
- anon_sym_LT_LT,
- anon_sym_CARET,
- anon_sym_PERCENT,
- anon_sym_STAR_STAR,
- anon_sym_LT_EQ,
- anon_sym_EQ_EQ_EQ,
- anon_sym_BANG_EQ_EQ,
- anon_sym_GT_EQ,
- anon_sym_QMARK_QMARK,
- anon_sym_instanceof,
- anon_sym_PLUS_PLUS,
- anon_sym_DASH_DASH,
- anon_sym_BQUOTE,
- anon_sym_satisfies,
- [67966] = 32,
- ACTIONS(825), 1,
- anon_sym_BQUOTE,
- ACTIONS(3969), 1,
- anon_sym_LPAREN,
- ACTIONS(3971), 1,
- anon_sym_LBRACK,
- ACTIONS(3973), 1,
- anon_sym_DOT,
- ACTIONS(4051), 1,
- anon_sym_as,
- ACTIONS(4055), 1,
- anon_sym_BANG,
- ACTIONS(4059), 1,
- anon_sym_QMARK_DOT,
- ACTIONS(4061), 1,
- anon_sym_AMP_AMP,
- ACTIONS(4063), 1,
- anon_sym_PIPE_PIPE,
- ACTIONS(4065), 1,
- anon_sym_GT_GT,
- ACTIONS(4069), 1,
- anon_sym_AMP,
- ACTIONS(4071), 1,
- anon_sym_CARET,
- ACTIONS(4073), 1,
- anon_sym_PIPE,
- ACTIONS(4077), 1,
- anon_sym_PERCENT,
- ACTIONS(4079), 1,
- anon_sym_STAR_STAR,
- ACTIONS(4081), 1,
- anon_sym_LT,
- ACTIONS(4089), 1,
- anon_sym_QMARK_QMARK,
- ACTIONS(4093), 1,
- anon_sym_satisfies,
- ACTIONS(4095), 1,
- sym__ternary_qmark,
- STATE(1447), 1,
- sym_type_arguments,
- STATE(5080), 1,
- sym_optional_chain,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(4049), 2,
- anon_sym_STAR,
- anon_sym_SLASH,
- ACTIONS(4057), 2,
- anon_sym_in,
- anon_sym_GT,
- ACTIONS(4067), 2,
- anon_sym_GT_GT_GT,
- anon_sym_LT_LT,
- ACTIONS(4075), 2,
- anon_sym_PLUS,
- anon_sym_DASH,
- ACTIONS(4085), 2,
- anon_sym_EQ_EQ,
- anon_sym_BANG_EQ,
- ACTIONS(4087), 2,
- anon_sym_EQ_EQ_EQ,
- anon_sym_BANG_EQ_EQ,
- ACTIONS(4091), 2,
- anon_sym_PLUS_PLUS,
- anon_sym_DASH_DASH,
- ACTIONS(4560), 2,
- anon_sym_COMMA,
- anon_sym_RBRACE,
- STATE(1757), 2,
- sym_template_string,
- sym_arguments,
- ACTIONS(4083), 3,
- anon_sym_LT_EQ,
- anon_sym_GT_EQ,
- anon_sym_instanceof,
- [68075] = 4,
- ACTIONS(5230), 1,
- anon_sym_extends,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(4428), 13,
- anon_sym_STAR,
- anon_sym_BANG,
- anon_sym_in,
- anon_sym_GT,
- anon_sym_GT_GT,
- anon_sym_AMP,
- anon_sym_PIPE,
- anon_sym_PLUS,
- anon_sym_DASH,
- anon_sym_SLASH,
- anon_sym_LT,
- anon_sym_EQ_EQ,
- anon_sym_BANG_EQ,
- ACTIONS(4430), 28,
- sym__automatic_semicolon,
- sym__ternary_qmark,
- anon_sym_as,
- anon_sym_COMMA,
- anon_sym_RBRACE,
- anon_sym_LPAREN,
- anon_sym_of,
- anon_sym_SEMI,
- anon_sym_LBRACK,
- anon_sym_DOT,
- anon_sym_QMARK_DOT,
- anon_sym_AMP_AMP,
- anon_sym_PIPE_PIPE,
- anon_sym_GT_GT_GT,
- anon_sym_LT_LT,
- anon_sym_CARET,
- anon_sym_PERCENT,
- anon_sym_STAR_STAR,
- anon_sym_LT_EQ,
- anon_sym_EQ_EQ_EQ,
- anon_sym_BANG_EQ_EQ,
- anon_sym_GT_EQ,
- anon_sym_QMARK_QMARK,
- anon_sym_instanceof,
- anon_sym_PLUS_PLUS,
- anon_sym_DASH_DASH,
- anon_sym_BQUOTE,
- anon_sym_satisfies,
- [68128] = 4,
- ACTIONS(5098), 1,
- anon_sym_LBRACK,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(4434), 13,
- anon_sym_STAR,
- anon_sym_BANG,
- anon_sym_in,
- anon_sym_GT,
- anon_sym_GT_GT,
- anon_sym_AMP,
- anon_sym_PIPE,
- anon_sym_PLUS,
- anon_sym_DASH,
- anon_sym_SLASH,
- anon_sym_LT,
- anon_sym_EQ_EQ,
- anon_sym_BANG_EQ,
- ACTIONS(4436), 28,
- sym__automatic_semicolon,
- sym__ternary_qmark,
- anon_sym_as,
- anon_sym_COMMA,
- anon_sym_RBRACE,
- anon_sym_LPAREN,
- anon_sym_of,
- anon_sym_SEMI,
- anon_sym_DOT,
- anon_sym_QMARK_DOT,
- anon_sym_AMP_AMP,
- anon_sym_PIPE_PIPE,
- anon_sym_GT_GT_GT,
- anon_sym_LT_LT,
- anon_sym_CARET,
- anon_sym_PERCENT,
- anon_sym_STAR_STAR,
- anon_sym_LT_EQ,
- anon_sym_EQ_EQ_EQ,
- anon_sym_BANG_EQ_EQ,
- anon_sym_GT_EQ,
- anon_sym_QMARK_QMARK,
- anon_sym_instanceof,
- anon_sym_PLUS_PLUS,
- anon_sym_DASH_DASH,
- anon_sym_BQUOTE,
- anon_sym_satisfies,
- anon_sym_extends,
- [68181] = 6,
- ACTIONS(1726), 1,
- anon_sym_EQ,
- ACTIONS(1730), 1,
- sym__automatic_semicolon,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(1720), 2,
- anon_sym_else,
- anon_sym_while,
- ACTIONS(1724), 13,
- anon_sym_STAR,
- anon_sym_BANG,
- anon_sym_in,
- anon_sym_GT,
- anon_sym_GT_GT,
- anon_sym_AMP,
- anon_sym_PIPE,
- anon_sym_PLUS,
- anon_sym_DASH,
- anon_sym_SLASH,
- anon_sym_LT,
- anon_sym_EQ_EQ,
- anon_sym_BANG_EQ,
- ACTIONS(1728), 25,
- sym__ternary_qmark,
- anon_sym_as,
- anon_sym_COMMA,
- anon_sym_LPAREN,
- anon_sym_SEMI,
- anon_sym_LBRACK,
- anon_sym_DOT,
- anon_sym_QMARK_DOT,
- anon_sym_AMP_AMP,
- anon_sym_PIPE_PIPE,
- anon_sym_GT_GT_GT,
- anon_sym_LT_LT,
- anon_sym_CARET,
- anon_sym_PERCENT,
- anon_sym_STAR_STAR,
- anon_sym_LT_EQ,
- anon_sym_EQ_EQ_EQ,
- anon_sym_BANG_EQ_EQ,
- anon_sym_GT_EQ,
- anon_sym_QMARK_QMARK,
- anon_sym_instanceof,
- anon_sym_PLUS_PLUS,
- anon_sym_DASH_DASH,
- anon_sym_BQUOTE,
- anon_sym_satisfies,
- [68238] = 3,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(4458), 13,
- anon_sym_STAR,
- anon_sym_BANG,
- anon_sym_in,
- anon_sym_GT,
- anon_sym_GT_GT,
- anon_sym_AMP,
- anon_sym_PIPE,
- anon_sym_PLUS,
- anon_sym_DASH,
- anon_sym_SLASH,
- anon_sym_LT,
- anon_sym_EQ_EQ,
- anon_sym_BANG_EQ,
- ACTIONS(4460), 29,
- sym__automatic_semicolon,
- sym__ternary_qmark,
- anon_sym_as,
- anon_sym_COMMA,
- anon_sym_RBRACE,
- anon_sym_LPAREN,
- anon_sym_of,
- anon_sym_SEMI,
- anon_sym_LBRACK,
- anon_sym_DOT,
- anon_sym_QMARK_DOT,
- anon_sym_AMP_AMP,
- anon_sym_PIPE_PIPE,
- anon_sym_GT_GT_GT,
- anon_sym_LT_LT,
- anon_sym_CARET,
- anon_sym_PERCENT,
- anon_sym_STAR_STAR,
- anon_sym_LT_EQ,
- anon_sym_EQ_EQ_EQ,
- anon_sym_BANG_EQ_EQ,
- anon_sym_GT_EQ,
- anon_sym_QMARK_QMARK,
- anon_sym_instanceof,
- anon_sym_PLUS_PLUS,
- anon_sym_DASH_DASH,
- anon_sym_BQUOTE,
- anon_sym_satisfies,
- anon_sym_extends,
- [68289] = 3,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(4462), 13,
- anon_sym_STAR,
- anon_sym_BANG,
- anon_sym_in,
- anon_sym_GT,
- anon_sym_GT_GT,
- anon_sym_AMP,
- anon_sym_PIPE,
- anon_sym_PLUS,
- anon_sym_DASH,
- anon_sym_SLASH,
- anon_sym_LT,
- anon_sym_EQ_EQ,
- anon_sym_BANG_EQ,
- ACTIONS(4464), 29,
- sym__automatic_semicolon,
- sym__ternary_qmark,
- anon_sym_as,
- anon_sym_COMMA,
- anon_sym_RBRACE,
- anon_sym_LPAREN,
- anon_sym_of,
- anon_sym_SEMI,
- anon_sym_LBRACK,
- anon_sym_DOT,
- anon_sym_QMARK_DOT,
- anon_sym_AMP_AMP,
- anon_sym_PIPE_PIPE,
- anon_sym_GT_GT_GT,
- anon_sym_LT_LT,
- anon_sym_CARET,
- anon_sym_PERCENT,
- anon_sym_STAR_STAR,
- anon_sym_LT_EQ,
- anon_sym_EQ_EQ_EQ,
- anon_sym_BANG_EQ_EQ,
- anon_sym_GT_EQ,
- anon_sym_QMARK_QMARK,
- anon_sym_instanceof,
- anon_sym_PLUS_PLUS,
- anon_sym_DASH_DASH,
- anon_sym_BQUOTE,
- anon_sym_satisfies,
- anon_sym_extends,
- [68340] = 3,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(4466), 13,
- anon_sym_STAR,
- anon_sym_BANG,
- anon_sym_in,
- anon_sym_GT,
- anon_sym_GT_GT,
- anon_sym_AMP,
- anon_sym_PIPE,
- anon_sym_PLUS,
- anon_sym_DASH,
- anon_sym_SLASH,
- anon_sym_LT,
- anon_sym_EQ_EQ,
- anon_sym_BANG_EQ,
- ACTIONS(4468), 29,
- sym__automatic_semicolon,
- sym__ternary_qmark,
- anon_sym_as,
- anon_sym_COMMA,
- anon_sym_RBRACE,
- anon_sym_LPAREN,
- anon_sym_of,
- anon_sym_SEMI,
- anon_sym_LBRACK,
- anon_sym_DOT,
- anon_sym_QMARK_DOT,
- anon_sym_AMP_AMP,
- anon_sym_PIPE_PIPE,
- anon_sym_GT_GT_GT,
- anon_sym_LT_LT,
- anon_sym_CARET,
- anon_sym_PERCENT,
- anon_sym_STAR_STAR,
- anon_sym_LT_EQ,
- anon_sym_EQ_EQ_EQ,
- anon_sym_BANG_EQ_EQ,
- anon_sym_GT_EQ,
- anon_sym_QMARK_QMARK,
- anon_sym_instanceof,
- anon_sym_PLUS_PLUS,
- anon_sym_DASH_DASH,
- anon_sym_BQUOTE,
- anon_sym_satisfies,
- anon_sym_extends,
- [68391] = 3,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(4332), 13,
- anon_sym_STAR,
- anon_sym_BANG,
- anon_sym_in,
- anon_sym_GT,
- anon_sym_GT_GT,
- anon_sym_AMP,
- anon_sym_PIPE,
- anon_sym_PLUS,
- anon_sym_DASH,
- anon_sym_SLASH,
- anon_sym_LT,
- anon_sym_EQ_EQ,
- anon_sym_BANG_EQ,
- ACTIONS(4334), 29,
- sym__automatic_semicolon,
- sym__ternary_qmark,
- anon_sym_as,
- anon_sym_COMMA,
- anon_sym_RBRACE,
- anon_sym_LPAREN,
- anon_sym_of,
- anon_sym_SEMI,
- anon_sym_LBRACK,
- anon_sym_DOT,
- anon_sym_QMARK_DOT,
- anon_sym_AMP_AMP,
- anon_sym_PIPE_PIPE,
- anon_sym_GT_GT_GT,
- anon_sym_LT_LT,
- anon_sym_CARET,
- anon_sym_PERCENT,
- anon_sym_STAR_STAR,
- anon_sym_LT_EQ,
- anon_sym_EQ_EQ_EQ,
- anon_sym_BANG_EQ_EQ,
- anon_sym_GT_EQ,
- anon_sym_QMARK_QMARK,
- anon_sym_instanceof,
- anon_sym_PLUS_PLUS,
- anon_sym_DASH_DASH,
- anon_sym_BQUOTE,
- anon_sym_satisfies,
- anon_sym_extends,
- [68442] = 19,
- ACTIONS(241), 1,
- anon_sym_COMMA,
- ACTIONS(702), 1,
- anon_sym_RBRACE,
- ACTIONS(2275), 1,
- anon_sym_DQUOTE,
- ACTIONS(2277), 1,
- anon_sym_SQUOTE,
- ACTIONS(2309), 1,
- anon_sym_async,
- ACTIONS(2311), 1,
- anon_sym_readonly,
- ACTIONS(2315), 1,
- anon_sym_override,
- ACTIONS(4243), 1,
- anon_sym_EQ,
- ACTIONS(4634), 1,
- anon_sym_LBRACK,
- ACTIONS(5091), 1,
- anon_sym_STAR,
- STATE(2719), 1,
- sym_override_modifier,
- STATE(4672), 1,
- aux_sym_object_pattern_repeat1,
- STATE(5156), 1,
- aux_sym_object_repeat1,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(2285), 2,
- sym_number,
- sym_private_property_identifier,
- ACTIONS(2313), 2,
- anon_sym_get,
- anon_sym_set,
- STATE(3788), 3,
- sym_string,
- sym__property_name,
- sym_computed_property_name,
- ACTIONS(3743), 4,
- anon_sym_LPAREN,
- anon_sym_COLON,
- anon_sym_LT,
- anon_sym_QMARK,
- ACTIONS(2307), 18,
- anon_sym_export,
- anon_sym_type,
- anon_sym_namespace,
- anon_sym_let,
- anon_sym_new,
- sym_identifier,
- anon_sym_static,
- anon_sym_declare,
- anon_sym_public,
- anon_sym_private,
- anon_sym_protected,
- anon_sym_module,
- anon_sym_any,
- anon_sym_number,
- anon_sym_boolean,
- anon_sym_string,
- anon_sym_symbol,
- anon_sym_object,
- [68525] = 3,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(2337), 13,
- anon_sym_STAR,
- anon_sym_BANG,
- anon_sym_in,
- anon_sym_GT,
- anon_sym_GT_GT,
- anon_sym_AMP,
- anon_sym_PIPE,
- anon_sym_PLUS,
- anon_sym_DASH,
- anon_sym_SLASH,
- anon_sym_LT,
- anon_sym_EQ_EQ,
- anon_sym_BANG_EQ,
- ACTIONS(2335), 29,
- sym__automatic_semicolon,
- sym__ternary_qmark,
- anon_sym_as,
- anon_sym_COMMA,
- anon_sym_RBRACE,
- anon_sym_LPAREN,
- anon_sym_of,
- anon_sym_SEMI,
- anon_sym_LBRACK,
- anon_sym_DOT,
- anon_sym_QMARK_DOT,
- anon_sym_AMP_AMP,
- anon_sym_PIPE_PIPE,
- anon_sym_GT_GT_GT,
- anon_sym_LT_LT,
- anon_sym_CARET,
- anon_sym_PERCENT,
- anon_sym_STAR_STAR,
- anon_sym_LT_EQ,
- anon_sym_EQ_EQ_EQ,
- anon_sym_BANG_EQ_EQ,
- anon_sym_GT_EQ,
- anon_sym_QMARK_QMARK,
- anon_sym_instanceof,
- anon_sym_PLUS_PLUS,
- anon_sym_DASH_DASH,
- anon_sym_BQUOTE,
- anon_sym_satisfies,
- anon_sym_extends,
- [68576] = 4,
- ACTIONS(1726), 1,
- anon_sym_EQ,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(1724), 13,
- anon_sym_STAR,
- anon_sym_BANG,
- anon_sym_in,
- anon_sym_GT,
- anon_sym_GT_GT,
- anon_sym_AMP,
- anon_sym_PIPE,
- anon_sym_PLUS,
- anon_sym_DASH,
- anon_sym_SLASH,
- anon_sym_LT,
- anon_sym_EQ_EQ,
- anon_sym_BANG_EQ,
- ACTIONS(1728), 28,
- sym__automatic_semicolon,
- sym__ternary_qmark,
- anon_sym_as,
- anon_sym_COMMA,
- anon_sym_RBRACE,
- anon_sym_LPAREN,
- anon_sym_of,
- anon_sym_SEMI,
- anon_sym_LBRACK,
- anon_sym_DOT,
- anon_sym_QMARK_DOT,
- anon_sym_AMP_AMP,
- anon_sym_PIPE_PIPE,
- anon_sym_GT_GT_GT,
- anon_sym_LT_LT,
- anon_sym_CARET,
- anon_sym_PERCENT,
- anon_sym_STAR_STAR,
- anon_sym_LT_EQ,
- anon_sym_EQ_EQ_EQ,
- anon_sym_BANG_EQ_EQ,
- anon_sym_GT_EQ,
- anon_sym_QMARK_QMARK,
- anon_sym_instanceof,
- anon_sym_PLUS_PLUS,
- anon_sym_DASH_DASH,
- anon_sym_BQUOTE,
- anon_sym_satisfies,
- [68629] = 19,
- ACTIONS(241), 1,
- anon_sym_COMMA,
- ACTIONS(727), 1,
- anon_sym_RBRACE,
- ACTIONS(2275), 1,
- anon_sym_DQUOTE,
- ACTIONS(2277), 1,
- anon_sym_SQUOTE,
- ACTIONS(2309), 1,
- anon_sym_async,
- ACTIONS(2311), 1,
- anon_sym_readonly,
- ACTIONS(2315), 1,
- anon_sym_override,
- ACTIONS(4243), 1,
- anon_sym_EQ,
- ACTIONS(4634), 1,
- anon_sym_LBRACK,
- ACTIONS(5091), 1,
- anon_sym_STAR,
- STATE(2719), 1,
- sym_override_modifier,
- STATE(4671), 1,
- aux_sym_object_repeat1,
- STATE(4672), 1,
- aux_sym_object_pattern_repeat1,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(2285), 2,
- sym_number,
- sym_private_property_identifier,
- ACTIONS(2313), 2,
- anon_sym_get,
- anon_sym_set,
- STATE(3788), 3,
- sym_string,
- sym__property_name,
- sym_computed_property_name,
- ACTIONS(3743), 4,
- anon_sym_LPAREN,
- anon_sym_COLON,
- anon_sym_LT,
- anon_sym_QMARK,
- ACTIONS(2307), 18,
- anon_sym_export,
- anon_sym_type,
- anon_sym_namespace,
- anon_sym_let,
- anon_sym_new,
- sym_identifier,
- anon_sym_static,
- anon_sym_declare,
- anon_sym_public,
- anon_sym_private,
- anon_sym_protected,
- anon_sym_module,
- anon_sym_any,
- anon_sym_number,
- anon_sym_boolean,
- anon_sym_string,
- anon_sym_symbol,
- anon_sym_object,
- [68712] = 13,
- ACTIONS(89), 1,
- anon_sym_BQUOTE,
- ACTIONS(4059), 1,
- anon_sym_QMARK_DOT,
- ACTIONS(4519), 1,
- anon_sym_LPAREN,
- ACTIONS(4523), 1,
- anon_sym_LBRACK,
- ACTIONS(4525), 1,
- anon_sym_DOT,
- ACTIONS(5232), 1,
- anon_sym_LT,
- STATE(1812), 1,
- sym_type_arguments,
- STATE(4772), 1,
- sym_optional_chain,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(4545), 2,
- anon_sym_PLUS_PLUS,
- anon_sym_DASH_DASH,
- STATE(2133), 2,
- sym_template_string,
- sym_arguments,
- ACTIONS(4170), 12,
- anon_sym_STAR,
- anon_sym_BANG,
- anon_sym_in,
- anon_sym_GT,
- anon_sym_GT_GT,
- anon_sym_AMP,
- anon_sym_PIPE,
- anon_sym_PLUS,
- anon_sym_DASH,
- anon_sym_SLASH,
- anon_sym_EQ_EQ,
- anon_sym_BANG_EQ,
- ACTIONS(4172), 18,
- sym__automatic_semicolon,
- sym__ternary_qmark,
- anon_sym_as,
- anon_sym_SEMI,
- anon_sym_AMP_AMP,
- anon_sym_PIPE_PIPE,
- anon_sym_GT_GT_GT,
- anon_sym_LT_LT,
- anon_sym_CARET,
- anon_sym_PERCENT,
- anon_sym_STAR_STAR,
- anon_sym_LT_EQ,
- anon_sym_EQ_EQ_EQ,
- anon_sym_BANG_EQ_EQ,
- anon_sym_GT_EQ,
- anon_sym_QMARK_QMARK,
- anon_sym_instanceof,
- anon_sym_satisfies,
- [68783] = 16,
- ACTIONS(89), 1,
- anon_sym_BQUOTE,
- ACTIONS(4059), 1,
- anon_sym_QMARK_DOT,
- ACTIONS(4519), 1,
- anon_sym_LPAREN,
- ACTIONS(4523), 1,
- anon_sym_LBRACK,
- ACTIONS(4525), 1,
- anon_sym_DOT,
- ACTIONS(4555), 1,
- anon_sym_as,
- ACTIONS(4562), 1,
- anon_sym_BANG,
- ACTIONS(4574), 1,
- anon_sym_satisfies,
- ACTIONS(5235), 1,
- anon_sym_LT,
- STATE(1812), 1,
- sym_type_arguments,
- STATE(4772), 1,
- sym_optional_chain,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(4545), 2,
- anon_sym_PLUS_PLUS,
- anon_sym_DASH_DASH,
- STATE(2133), 2,
- sym_template_string,
- sym_arguments,
- ACTIONS(4199), 11,
- anon_sym_STAR,
- anon_sym_in,
- anon_sym_GT,
- anon_sym_GT_GT,
- anon_sym_AMP,
- anon_sym_PIPE,
- anon_sym_PLUS,
- anon_sym_DASH,
- anon_sym_SLASH,
- anon_sym_EQ_EQ,
- anon_sym_BANG_EQ,
- ACTIONS(4201), 16,
- sym__automatic_semicolon,
- sym__ternary_qmark,
- anon_sym_SEMI,
- anon_sym_AMP_AMP,
- anon_sym_PIPE_PIPE,
- anon_sym_GT_GT_GT,
- anon_sym_LT_LT,
- anon_sym_CARET,
- anon_sym_PERCENT,
- anon_sym_STAR_STAR,
- anon_sym_LT_EQ,
- anon_sym_EQ_EQ_EQ,
- anon_sym_BANG_EQ_EQ,
- anon_sym_GT_EQ,
- anon_sym_QMARK_QMARK,
- anon_sym_instanceof,
- [68860] = 32,
- ACTIONS(89), 1,
- anon_sym_BQUOTE,
- ACTIONS(4059), 1,
- anon_sym_QMARK_DOT,
- ACTIONS(4519), 1,
- anon_sym_LPAREN,
- ACTIONS(4523), 1,
- anon_sym_LBRACK,
- ACTIONS(4525), 1,
- anon_sym_DOT,
- ACTIONS(4555), 1,
- anon_sym_as,
- ACTIONS(4562), 1,
- anon_sym_BANG,
- ACTIONS(4574), 1,
- anon_sym_satisfies,
- ACTIONS(5125), 1,
- anon_sym_AMP_AMP,
- ACTIONS(5127), 1,
- anon_sym_PIPE_PIPE,
- ACTIONS(5129), 1,
- anon_sym_GT_GT,
- ACTIONS(5133), 1,
- anon_sym_AMP,
- ACTIONS(5135), 1,
- anon_sym_CARET,
- ACTIONS(5137), 1,
- anon_sym_PIPE,
- ACTIONS(5141), 1,
- anon_sym_PERCENT,
- ACTIONS(5143), 1,
- anon_sym_STAR_STAR,
- ACTIONS(5145), 1,
- anon_sym_LT,
- ACTIONS(5153), 1,
- anon_sym_QMARK_QMARK,
- ACTIONS(5155), 1,
- sym__ternary_qmark,
- STATE(1812), 1,
- sym_type_arguments,
- STATE(4772), 1,
- sym_optional_chain,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(4210), 2,
- sym__automatic_semicolon,
- anon_sym_SEMI,
- ACTIONS(4545), 2,
- anon_sym_PLUS_PLUS,
- anon_sym_DASH_DASH,
- ACTIONS(5119), 2,
- anon_sym_STAR,
- anon_sym_SLASH,
- ACTIONS(5121), 2,
- anon_sym_in,
- anon_sym_GT,
- ACTIONS(5131), 2,
- anon_sym_GT_GT_GT,
- anon_sym_LT_LT,
- ACTIONS(5139), 2,
- anon_sym_PLUS,
- anon_sym_DASH,
- ACTIONS(5149), 2,
- anon_sym_EQ_EQ,
- anon_sym_BANG_EQ,
- ACTIONS(5151), 2,
- anon_sym_EQ_EQ_EQ,
- anon_sym_BANG_EQ_EQ,
- STATE(2133), 2,
- sym_template_string,
- sym_arguments,
- ACTIONS(5147), 3,
- anon_sym_LT_EQ,
- anon_sym_GT_EQ,
- anon_sym_instanceof,
- [68969] = 12,
- ACTIONS(89), 1,
- anon_sym_BQUOTE,
- ACTIONS(4059), 1,
- anon_sym_QMARK_DOT,
- ACTIONS(4519), 1,
- anon_sym_LPAREN,
- ACTIONS(4523), 1,
- anon_sym_LBRACK,
- ACTIONS(4525), 1,
- anon_sym_DOT,
- ACTIONS(5238), 1,
- anon_sym_LT,
- STATE(1812), 1,
- sym_type_arguments,
- STATE(4772), 1,
- sym_optional_chain,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- STATE(2133), 2,
- sym_template_string,
- sym_arguments,
- ACTIONS(4230), 12,
- anon_sym_STAR,
- anon_sym_BANG,
- anon_sym_in,
- anon_sym_GT,
- anon_sym_GT_GT,
- anon_sym_AMP,
- anon_sym_PIPE,
- anon_sym_PLUS,
- anon_sym_DASH,
- anon_sym_SLASH,
- anon_sym_EQ_EQ,
- anon_sym_BANG_EQ,
- ACTIONS(4232), 20,
- sym__automatic_semicolon,
- sym__ternary_qmark,
- anon_sym_as,
- anon_sym_SEMI,
- anon_sym_AMP_AMP,
- anon_sym_PIPE_PIPE,
- anon_sym_GT_GT_GT,
- anon_sym_LT_LT,
- anon_sym_CARET,
- anon_sym_PERCENT,
- anon_sym_STAR_STAR,
- anon_sym_LT_EQ,
- anon_sym_EQ_EQ_EQ,
- anon_sym_BANG_EQ_EQ,
- anon_sym_GT_EQ,
- anon_sym_QMARK_QMARK,
- anon_sym_instanceof,
- anon_sym_PLUS_PLUS,
- anon_sym_DASH_DASH,
- anon_sym_satisfies,
- [69038] = 14,
- ACTIONS(1594), 1,
- anon_sym_DQUOTE,
- ACTIONS(1596), 1,
- anon_sym_SQUOTE,
- ACTIONS(3633), 1,
- anon_sym_override,
- ACTIONS(4245), 1,
- anon_sym_LBRACK,
- ACTIONS(5241), 1,
- anon_sym_STAR,
- ACTIONS(5243), 1,
- anon_sym_async,
- ACTIONS(5247), 1,
- anon_sym_readonly,
- STATE(2706), 1,
- sym_override_modifier,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(5245), 2,
- sym_number,
- sym_private_property_identifier,
- ACTIONS(5249), 2,
- anon_sym_get,
- anon_sym_set,
- STATE(2971), 3,
- sym_string,
- sym__property_name,
- sym_computed_property_name,
- ACTIONS(3743), 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(3607), 18,
- anon_sym_export,
- anon_sym_type,
- anon_sym_namespace,
- anon_sym_let,
- anon_sym_new,
- sym_identifier,
- anon_sym_static,
- anon_sym_declare,
- anon_sym_public,
- anon_sym_private,
- anon_sym_protected,
- anon_sym_module,
- anon_sym_any,
- anon_sym_number,
- anon_sym_boolean,
- anon_sym_string,
- anon_sym_symbol,
- anon_sym_object,
- [69111] = 12,
- ACTIONS(1594), 1,
- anon_sym_DQUOTE,
- ACTIONS(1596), 1,
- anon_sym_SQUOTE,
- ACTIONS(4245), 1,
- anon_sym_LBRACK,
- ACTIONS(5241), 1,
- anon_sym_STAR,
- ACTIONS(5243), 1,
- anon_sym_async,
- ACTIONS(5253), 1,
- anon_sym_abstract,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(5249), 2,
- anon_sym_get,
- anon_sym_set,
- ACTIONS(5251), 2,
- sym_number,
- sym_private_property_identifier,
- STATE(2974), 3,
- sym_string,
- sym__property_name,
- sym_computed_property_name,
- ACTIONS(3743), 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(3607), 20,
- anon_sym_export,
- anon_sym_type,
- anon_sym_namespace,
- anon_sym_let,
- anon_sym_new,
- sym_identifier,
- anon_sym_static,
- anon_sym_readonly,
- anon_sym_declare,
- anon_sym_public,
- anon_sym_private,
- anon_sym_protected,
- anon_sym_override,
- anon_sym_module,
- anon_sym_any,
- anon_sym_number,
- anon_sym_boolean,
- anon_sym_string,
- anon_sym_symbol,
- anon_sym_object,
- [69180] = 3,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(4454), 13,
- anon_sym_STAR,
- anon_sym_BANG,
- anon_sym_in,
- anon_sym_GT,
- anon_sym_GT_GT,
- anon_sym_AMP,
- anon_sym_PIPE,
- anon_sym_PLUS,
- anon_sym_DASH,
- anon_sym_SLASH,
- anon_sym_LT,
- anon_sym_EQ_EQ,
- anon_sym_BANG_EQ,
- ACTIONS(4456), 29,
- sym__automatic_semicolon,
- sym__ternary_qmark,
- anon_sym_as,
- anon_sym_COMMA,
- anon_sym_RBRACE,
- anon_sym_LPAREN,
- anon_sym_of,
- anon_sym_SEMI,
- anon_sym_LBRACK,
- anon_sym_DOT,
- anon_sym_QMARK_DOT,
- anon_sym_AMP_AMP,
- anon_sym_PIPE_PIPE,
- anon_sym_GT_GT_GT,
- anon_sym_LT_LT,
- anon_sym_CARET,
- anon_sym_PERCENT,
- anon_sym_STAR_STAR,
- anon_sym_LT_EQ,
- anon_sym_EQ_EQ_EQ,
- anon_sym_BANG_EQ_EQ,
- anon_sym_GT_EQ,
- anon_sym_QMARK_QMARK,
- anon_sym_instanceof,
- anon_sym_PLUS_PLUS,
- anon_sym_DASH_DASH,
- anon_sym_BQUOTE,
- anon_sym_satisfies,
- anon_sym_extends,
- [69231] = 7,
- ACTIONS(3450), 1,
- anon_sym_EQ,
- ACTIONS(4330), 1,
- anon_sym_extends,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(4691), 2,
- anon_sym_COMMA,
- anon_sym_LBRACK,
- ACTIONS(4694), 3,
- anon_sym_GT,
- anon_sym_AMP,
- anon_sym_PIPE,
- ACTIONS(3400), 10,
- anon_sym_STAR,
- anon_sym_BANG,
- anon_sym_in,
- anon_sym_GT_GT,
- anon_sym_PLUS,
- anon_sym_DASH,
- anon_sym_SLASH,
- anon_sym_LT,
- anon_sym_EQ_EQ,
- anon_sym_BANG_EQ,
- ACTIONS(3404), 25,
- sym__automatic_semicolon,
- sym__ternary_qmark,
- anon_sym_as,
- anon_sym_LPAREN,
- anon_sym_of,
- anon_sym_SEMI,
- anon_sym_DOT,
- anon_sym_QMARK_DOT,
- anon_sym_AMP_AMP,
- anon_sym_PIPE_PIPE,
- anon_sym_GT_GT_GT,
- anon_sym_LT_LT,
- anon_sym_CARET,
- anon_sym_PERCENT,
- anon_sym_STAR_STAR,
- anon_sym_LT_EQ,
- anon_sym_EQ_EQ_EQ,
- anon_sym_BANG_EQ_EQ,
- anon_sym_GT_EQ,
- anon_sym_QMARK_QMARK,
- anon_sym_instanceof,
- anon_sym_PLUS_PLUS,
- anon_sym_DASH_DASH,
- anon_sym_BQUOTE,
- anon_sym_satisfies,
- [69290] = 14,
- ACTIONS(1594), 1,
- anon_sym_DQUOTE,
- ACTIONS(1596), 1,
- anon_sym_SQUOTE,
- ACTIONS(3633), 1,
- anon_sym_override,
- ACTIONS(4245), 1,
- anon_sym_LBRACK,
- ACTIONS(5255), 1,
- anon_sym_STAR,
- ACTIONS(5257), 1,
- anon_sym_async,
- ACTIONS(5261), 1,
- anon_sym_readonly,
- STATE(2715), 1,
- sym_override_modifier,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(5259), 2,
- sym_number,
- sym_private_property_identifier,
- ACTIONS(5263), 2,
- anon_sym_get,
- anon_sym_set,
- STATE(3039), 3,
- sym_string,
- sym__property_name,
- sym_computed_property_name,
- ACTIONS(3743), 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(3607), 18,
- anon_sym_export,
- anon_sym_type,
- anon_sym_namespace,
- anon_sym_let,
- anon_sym_new,
- sym_identifier,
- anon_sym_static,
- anon_sym_declare,
- anon_sym_public,
- anon_sym_private,
- anon_sym_protected,
- anon_sym_module,
- anon_sym_any,
- anon_sym_number,
- anon_sym_boolean,
- anon_sym_string,
- anon_sym_symbol,
- anon_sym_object,
- [69363] = 3,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(4476), 13,
- anon_sym_STAR,
- anon_sym_BANG,
- anon_sym_in,
- anon_sym_GT,
- anon_sym_GT_GT,
- anon_sym_AMP,
- anon_sym_PIPE,
- anon_sym_PLUS,
- anon_sym_DASH,
- anon_sym_SLASH,
- anon_sym_LT,
- anon_sym_EQ_EQ,
- anon_sym_BANG_EQ,
- ACTIONS(4478), 29,
- sym__automatic_semicolon,
- sym__ternary_qmark,
- anon_sym_as,
- anon_sym_COMMA,
- anon_sym_RBRACE,
- anon_sym_LPAREN,
- anon_sym_of,
- anon_sym_SEMI,
- anon_sym_LBRACK,
- anon_sym_DOT,
- anon_sym_QMARK_DOT,
- anon_sym_AMP_AMP,
- anon_sym_PIPE_PIPE,
- anon_sym_GT_GT_GT,
- anon_sym_LT_LT,
- anon_sym_CARET,
- anon_sym_PERCENT,
- anon_sym_STAR_STAR,
- anon_sym_LT_EQ,
- anon_sym_EQ_EQ_EQ,
- anon_sym_BANG_EQ_EQ,
- anon_sym_GT_EQ,
- anon_sym_QMARK_QMARK,
- anon_sym_instanceof,
- anon_sym_PLUS_PLUS,
- anon_sym_DASH_DASH,
- anon_sym_BQUOTE,
- anon_sym_satisfies,
- anon_sym_extends,
- [69414] = 9,
- ACTIONS(4041), 1,
- anon_sym_extends,
- ACTIONS(4697), 1,
- anon_sym_LBRACK,
- ACTIONS(5269), 1,
- anon_sym_RPAREN,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(4700), 2,
- anon_sym_AMP,
- anon_sym_PIPE,
- ACTIONS(5265), 2,
- anon_sym_EQ,
- anon_sym_QMARK,
- ACTIONS(5267), 2,
- anon_sym_COMMA,
- anon_sym_COLON,
- ACTIONS(3400), 11,
- anon_sym_STAR,
- anon_sym_BANG,
- anon_sym_in,
- anon_sym_GT,
- anon_sym_GT_GT,
- anon_sym_PLUS,
- anon_sym_DASH,
- anon_sym_SLASH,
- anon_sym_LT,
- anon_sym_EQ_EQ,
- anon_sym_BANG_EQ,
- ACTIONS(3404), 22,
- sym__ternary_qmark,
- anon_sym_as,
- anon_sym_LPAREN,
- anon_sym_DOT,
- anon_sym_QMARK_DOT,
- anon_sym_AMP_AMP,
- anon_sym_PIPE_PIPE,
- anon_sym_GT_GT_GT,
- anon_sym_LT_LT,
- anon_sym_CARET,
- anon_sym_PERCENT,
- anon_sym_STAR_STAR,
- anon_sym_LT_EQ,
- anon_sym_EQ_EQ_EQ,
- anon_sym_BANG_EQ_EQ,
- anon_sym_GT_EQ,
- anon_sym_QMARK_QMARK,
- anon_sym_instanceof,
- anon_sym_PLUS_PLUS,
- anon_sym_DASH_DASH,
- anon_sym_BQUOTE,
- anon_sym_satisfies,
- [69477] = 32,
- ACTIONS(825), 1,
- anon_sym_BQUOTE,
- ACTIONS(3969), 1,
- anon_sym_LPAREN,
- ACTIONS(3971), 1,
- anon_sym_LBRACK,
- ACTIONS(3973), 1,
- anon_sym_DOT,
- ACTIONS(4051), 1,
- anon_sym_as,
- ACTIONS(4055), 1,
- anon_sym_BANG,
- ACTIONS(4059), 1,
- anon_sym_QMARK_DOT,
- ACTIONS(4093), 1,
- anon_sym_satisfies,
- ACTIONS(5276), 1,
- anon_sym_AMP_AMP,
- ACTIONS(5278), 1,
- anon_sym_PIPE_PIPE,
- ACTIONS(5280), 1,
- anon_sym_GT_GT,
- ACTIONS(5284), 1,
- anon_sym_AMP,
- ACTIONS(5286), 1,
- anon_sym_CARET,
- ACTIONS(5288), 1,
- anon_sym_PIPE,
- ACTIONS(5292), 1,
- anon_sym_PERCENT,
- ACTIONS(5294), 1,
- anon_sym_STAR_STAR,
- ACTIONS(5296), 1,
- anon_sym_LT,
- ACTIONS(5304), 1,
- anon_sym_QMARK_QMARK,
- ACTIONS(5306), 1,
- sym__ternary_qmark,
- STATE(1447), 1,
- sym_type_arguments,
- STATE(5080), 1,
- sym_optional_chain,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(4091), 2,
- anon_sym_PLUS_PLUS,
- anon_sym_DASH_DASH,
- ACTIONS(4255), 2,
- anon_sym_RBRACE,
- anon_sym_COLON,
- ACTIONS(5272), 2,
- anon_sym_STAR,
- anon_sym_SLASH,
- ACTIONS(5274), 2,
- anon_sym_in,
- anon_sym_GT,
- ACTIONS(5282), 2,
- anon_sym_GT_GT_GT,
- anon_sym_LT_LT,
- ACTIONS(5290), 2,
- anon_sym_PLUS,
- anon_sym_DASH,
- ACTIONS(5300), 2,
- anon_sym_EQ_EQ,
- anon_sym_BANG_EQ,
- ACTIONS(5302), 2,
- anon_sym_EQ_EQ_EQ,
- anon_sym_BANG_EQ_EQ,
- STATE(1757), 2,
- sym_template_string,
- sym_arguments,
- ACTIONS(5298), 3,
- anon_sym_LT_EQ,
- anon_sym_GT_EQ,
- anon_sym_instanceof,
- [69586] = 32,
- ACTIONS(825), 1,
- anon_sym_BQUOTE,
- ACTIONS(3969), 1,
- anon_sym_LPAREN,
- ACTIONS(3971), 1,
- anon_sym_LBRACK,
- ACTIONS(3973), 1,
- anon_sym_DOT,
- ACTIONS(4051), 1,
- anon_sym_as,
- ACTIONS(4055), 1,
- anon_sym_BANG,
- ACTIONS(4059), 1,
- anon_sym_QMARK_DOT,
- ACTIONS(4093), 1,
- anon_sym_satisfies,
- ACTIONS(5276), 1,
- anon_sym_AMP_AMP,
- ACTIONS(5278), 1,
- anon_sym_PIPE_PIPE,
- ACTIONS(5280), 1,
- anon_sym_GT_GT,
- ACTIONS(5284), 1,
- anon_sym_AMP,
- ACTIONS(5286), 1,
- anon_sym_CARET,
- ACTIONS(5288), 1,
- anon_sym_PIPE,
- ACTIONS(5292), 1,
- anon_sym_PERCENT,
- ACTIONS(5294), 1,
- anon_sym_STAR_STAR,
- ACTIONS(5296), 1,
- anon_sym_LT,
- ACTIONS(5304), 1,
- anon_sym_QMARK_QMARK,
- ACTIONS(5306), 1,
- sym__ternary_qmark,
- STATE(1447), 1,
- sym_type_arguments,
- STATE(5080), 1,
- sym_optional_chain,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(4091), 2,
- anon_sym_PLUS_PLUS,
- anon_sym_DASH_DASH,
- ACTIONS(4257), 2,
- anon_sym_RBRACE,
- anon_sym_COLON,
- ACTIONS(5272), 2,
- anon_sym_STAR,
- anon_sym_SLASH,
- ACTIONS(5274), 2,
- anon_sym_in,
- anon_sym_GT,
- ACTIONS(5282), 2,
- anon_sym_GT_GT_GT,
- anon_sym_LT_LT,
- ACTIONS(5290), 2,
- anon_sym_PLUS,
- anon_sym_DASH,
- ACTIONS(5300), 2,
- anon_sym_EQ_EQ,
- anon_sym_BANG_EQ,
- ACTIONS(5302), 2,
- anon_sym_EQ_EQ_EQ,
- anon_sym_BANG_EQ_EQ,
- STATE(1757), 2,
- sym_template_string,
- sym_arguments,
- ACTIONS(5298), 3,
- anon_sym_LT_EQ,
- anon_sym_GT_EQ,
- anon_sym_instanceof,
- [69695] = 32,
- ACTIONS(825), 1,
- anon_sym_BQUOTE,
- ACTIONS(3969), 1,
- anon_sym_LPAREN,
- ACTIONS(3971), 1,
- anon_sym_LBRACK,
- ACTIONS(3973), 1,
- anon_sym_DOT,
- ACTIONS(4051), 1,
- anon_sym_as,
- ACTIONS(4055), 1,
- anon_sym_BANG,
- ACTIONS(4059), 1,
- anon_sym_QMARK_DOT,
- ACTIONS(4093), 1,
- anon_sym_satisfies,
- ACTIONS(5276), 1,
- anon_sym_AMP_AMP,
- ACTIONS(5278), 1,
- anon_sym_PIPE_PIPE,
- ACTIONS(5280), 1,
- anon_sym_GT_GT,
- ACTIONS(5284), 1,
- anon_sym_AMP,
- ACTIONS(5286), 1,
- anon_sym_CARET,
- ACTIONS(5288), 1,
- anon_sym_PIPE,
- ACTIONS(5292), 1,
- anon_sym_PERCENT,
- ACTIONS(5294), 1,
- anon_sym_STAR_STAR,
- ACTIONS(5296), 1,
- anon_sym_LT,
- ACTIONS(5304), 1,
- anon_sym_QMARK_QMARK,
- ACTIONS(5306), 1,
- sym__ternary_qmark,
- STATE(1447), 1,
- sym_type_arguments,
- STATE(5080), 1,
- sym_optional_chain,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(4091), 2,
- anon_sym_PLUS_PLUS,
- anon_sym_DASH_DASH,
- ACTIONS(4283), 2,
- anon_sym_RBRACE,
- anon_sym_COLON,
- ACTIONS(5272), 2,
- anon_sym_STAR,
- anon_sym_SLASH,
- ACTIONS(5274), 2,
- anon_sym_in,
- anon_sym_GT,
- ACTIONS(5282), 2,
- anon_sym_GT_GT_GT,
- anon_sym_LT_LT,
- ACTIONS(5290), 2,
- anon_sym_PLUS,
- anon_sym_DASH,
- ACTIONS(5300), 2,
- anon_sym_EQ_EQ,
- anon_sym_BANG_EQ,
- ACTIONS(5302), 2,
- anon_sym_EQ_EQ_EQ,
- anon_sym_BANG_EQ_EQ,
- STATE(1757), 2,
- sym_template_string,
- sym_arguments,
- ACTIONS(5298), 3,
- anon_sym_LT_EQ,
- anon_sym_GT_EQ,
- anon_sym_instanceof,
- [69804] = 32,
- ACTIONS(825), 1,
- anon_sym_BQUOTE,
- ACTIONS(3969), 1,
- anon_sym_LPAREN,
- ACTIONS(3971), 1,
- anon_sym_LBRACK,
- ACTIONS(3973), 1,
- anon_sym_DOT,
- ACTIONS(4051), 1,
- anon_sym_as,
- ACTIONS(4055), 1,
- anon_sym_BANG,
- ACTIONS(4059), 1,
- anon_sym_QMARK_DOT,
- ACTIONS(4093), 1,
- anon_sym_satisfies,
- ACTIONS(5276), 1,
- anon_sym_AMP_AMP,
- ACTIONS(5278), 1,
- anon_sym_PIPE_PIPE,
- ACTIONS(5280), 1,
- anon_sym_GT_GT,
- ACTIONS(5284), 1,
- anon_sym_AMP,
- ACTIONS(5286), 1,
- anon_sym_CARET,
- ACTIONS(5288), 1,
- anon_sym_PIPE,
- ACTIONS(5292), 1,
- anon_sym_PERCENT,
- ACTIONS(5294), 1,
- anon_sym_STAR_STAR,
- ACTIONS(5296), 1,
- anon_sym_LT,
- ACTIONS(5304), 1,
- anon_sym_QMARK_QMARK,
- ACTIONS(5306), 1,
- sym__ternary_qmark,
- STATE(1447), 1,
- sym_type_arguments,
- STATE(5080), 1,
- sym_optional_chain,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(4091), 2,
- anon_sym_PLUS_PLUS,
- anon_sym_DASH_DASH,
- ACTIONS(4297), 2,
- anon_sym_RBRACE,
- anon_sym_COLON,
- ACTIONS(5272), 2,
- anon_sym_STAR,
- anon_sym_SLASH,
- ACTIONS(5274), 2,
- anon_sym_in,
- anon_sym_GT,
- ACTIONS(5282), 2,
- anon_sym_GT_GT_GT,
- anon_sym_LT_LT,
- ACTIONS(5290), 2,
- anon_sym_PLUS,
- anon_sym_DASH,
- ACTIONS(5300), 2,
- anon_sym_EQ_EQ,
- anon_sym_BANG_EQ,
- ACTIONS(5302), 2,
- anon_sym_EQ_EQ_EQ,
- anon_sym_BANG_EQ_EQ,
- STATE(1757), 2,
- sym_template_string,
- sym_arguments,
- ACTIONS(5298), 3,
- anon_sym_LT_EQ,
- anon_sym_GT_EQ,
- anon_sym_instanceof,
- [69913] = 32,
- ACTIONS(825), 1,
- anon_sym_BQUOTE,
- ACTIONS(3969), 1,
- anon_sym_LPAREN,
- ACTIONS(3971), 1,
- anon_sym_LBRACK,
- ACTIONS(3973), 1,
- anon_sym_DOT,
- ACTIONS(4051), 1,
- anon_sym_as,
- ACTIONS(4055), 1,
- anon_sym_BANG,
- ACTIONS(4059), 1,
- anon_sym_QMARK_DOT,
- ACTIONS(4093), 1,
- anon_sym_satisfies,
- ACTIONS(5276), 1,
- anon_sym_AMP_AMP,
- ACTIONS(5278), 1,
- anon_sym_PIPE_PIPE,
- ACTIONS(5280), 1,
- anon_sym_GT_GT,
- ACTIONS(5284), 1,
- anon_sym_AMP,
- ACTIONS(5286), 1,
- anon_sym_CARET,
- ACTIONS(5288), 1,
- anon_sym_PIPE,
- ACTIONS(5292), 1,
- anon_sym_PERCENT,
- ACTIONS(5294), 1,
- anon_sym_STAR_STAR,
- ACTIONS(5296), 1,
- anon_sym_LT,
- ACTIONS(5304), 1,
- anon_sym_QMARK_QMARK,
- ACTIONS(5306), 1,
- sym__ternary_qmark,
- STATE(1447), 1,
- sym_type_arguments,
- STATE(5080), 1,
- sym_optional_chain,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(4091), 2,
- anon_sym_PLUS_PLUS,
- anon_sym_DASH_DASH,
- ACTIONS(4299), 2,
- anon_sym_RBRACE,
- anon_sym_COLON,
- ACTIONS(5272), 2,
- anon_sym_STAR,
- anon_sym_SLASH,
- ACTIONS(5274), 2,
- anon_sym_in,
- anon_sym_GT,
- ACTIONS(5282), 2,
- anon_sym_GT_GT_GT,
- anon_sym_LT_LT,
- ACTIONS(5290), 2,
- anon_sym_PLUS,
- anon_sym_DASH,
- ACTIONS(5300), 2,
- anon_sym_EQ_EQ,
- anon_sym_BANG_EQ,
- ACTIONS(5302), 2,
- anon_sym_EQ_EQ_EQ,
- anon_sym_BANG_EQ_EQ,
- STATE(1757), 2,
- sym_template_string,
- sym_arguments,
- ACTIONS(5298), 3,
- anon_sym_LT_EQ,
- anon_sym_GT_EQ,
- anon_sym_instanceof,
- [70022] = 19,
- ACTIONS(825), 1,
- anon_sym_BQUOTE,
- ACTIONS(3969), 1,
- anon_sym_LPAREN,
- ACTIONS(3971), 1,
- anon_sym_LBRACK,
- ACTIONS(3973), 1,
- anon_sym_DOT,
- ACTIONS(4059), 1,
- anon_sym_QMARK_DOT,
- ACTIONS(5280), 1,
- anon_sym_GT_GT,
- ACTIONS(5292), 1,
- anon_sym_PERCENT,
- ACTIONS(5294), 1,
- anon_sym_STAR_STAR,
- ACTIONS(5296), 1,
- anon_sym_LT,
- STATE(1447), 1,
- sym_type_arguments,
- STATE(5080), 1,
- sym_optional_chain,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(4091), 2,
- anon_sym_PLUS_PLUS,
- anon_sym_DASH_DASH,
- ACTIONS(5272), 2,
- anon_sym_STAR,
- anon_sym_SLASH,
- ACTIONS(5282), 2,
- anon_sym_GT_GT_GT,
- anon_sym_LT_LT,
- ACTIONS(5290), 2,
- anon_sym_PLUS,
- anon_sym_DASH,
- STATE(1757), 2,
- sym_template_string,
- sym_arguments,
- ACTIONS(4307), 7,
- anon_sym_BANG,
- anon_sym_in,
- anon_sym_GT,
- anon_sym_AMP,
- anon_sym_PIPE,
- anon_sym_EQ_EQ,
- anon_sym_BANG_EQ,
- ACTIONS(4305), 14,
- sym__ternary_qmark,
- anon_sym_as,
- anon_sym_RBRACE,
- anon_sym_COLON,
- anon_sym_AMP_AMP,
- anon_sym_PIPE_PIPE,
- anon_sym_CARET,
- anon_sym_LT_EQ,
- anon_sym_EQ_EQ_EQ,
- anon_sym_BANG_EQ_EQ,
- anon_sym_GT_EQ,
- anon_sym_QMARK_QMARK,
- anon_sym_instanceof,
- anon_sym_satisfies,
- [70105] = 14,
- ACTIONS(825), 1,
- anon_sym_BQUOTE,
- ACTIONS(3969), 1,
- anon_sym_LPAREN,
- ACTIONS(3971), 1,
- anon_sym_LBRACK,
- ACTIONS(3973), 1,
- anon_sym_DOT,
- ACTIONS(4059), 1,
- anon_sym_QMARK_DOT,
- ACTIONS(5294), 1,
- anon_sym_STAR_STAR,
- ACTIONS(5308), 1,
- anon_sym_LT,
- STATE(1447), 1,
- sym_type_arguments,
- STATE(5080), 1,
- sym_optional_chain,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(4091), 2,
- anon_sym_PLUS_PLUS,
- anon_sym_DASH_DASH,
- STATE(1757), 2,
- sym_template_string,
- sym_arguments,
- ACTIONS(4307), 12,
- anon_sym_STAR,
- anon_sym_BANG,
- anon_sym_in,
- anon_sym_GT,
- anon_sym_GT_GT,
- anon_sym_AMP,
- anon_sym_PIPE,
- anon_sym_PLUS,
- anon_sym_DASH,
- anon_sym_SLASH,
- anon_sym_EQ_EQ,
- anon_sym_BANG_EQ,
- ACTIONS(4305), 17,
- sym__ternary_qmark,
- anon_sym_as,
- anon_sym_RBRACE,
- anon_sym_COLON,
- anon_sym_AMP_AMP,
- anon_sym_PIPE_PIPE,
- anon_sym_GT_GT_GT,
- anon_sym_LT_LT,
- anon_sym_CARET,
- anon_sym_PERCENT,
- anon_sym_LT_EQ,
- anon_sym_EQ_EQ_EQ,
- anon_sym_BANG_EQ_EQ,
- anon_sym_GT_EQ,
- anon_sym_QMARK_QMARK,
- anon_sym_instanceof,
- anon_sym_satisfies,
- [70178] = 26,
- ACTIONS(825), 1,
- anon_sym_BQUOTE,
- ACTIONS(3969), 1,
- anon_sym_LPAREN,
- ACTIONS(3971), 1,
- anon_sym_LBRACK,
- ACTIONS(3973), 1,
- anon_sym_DOT,
- ACTIONS(4059), 1,
- anon_sym_QMARK_DOT,
- ACTIONS(4307), 1,
- anon_sym_BANG,
- ACTIONS(5280), 1,
- anon_sym_GT_GT,
- ACTIONS(5284), 1,
- anon_sym_AMP,
- ACTIONS(5286), 1,
- anon_sym_CARET,
- ACTIONS(5288), 1,
- anon_sym_PIPE,
- ACTIONS(5292), 1,
- anon_sym_PERCENT,
- ACTIONS(5294), 1,
- anon_sym_STAR_STAR,
- ACTIONS(5296), 1,
- anon_sym_LT,
- STATE(1447), 1,
- sym_type_arguments,
- STATE(5080), 1,
- sym_optional_chain,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(4091), 2,
- anon_sym_PLUS_PLUS,
- anon_sym_DASH_DASH,
- ACTIONS(5272), 2,
- anon_sym_STAR,
- anon_sym_SLASH,
- ACTIONS(5274), 2,
- anon_sym_in,
- anon_sym_GT,
- ACTIONS(5282), 2,
- anon_sym_GT_GT_GT,
- anon_sym_LT_LT,
- ACTIONS(5290), 2,
- anon_sym_PLUS,
- anon_sym_DASH,
- ACTIONS(5300), 2,
- anon_sym_EQ_EQ,
- anon_sym_BANG_EQ,
- ACTIONS(5302), 2,
- anon_sym_EQ_EQ_EQ,
- anon_sym_BANG_EQ_EQ,
- STATE(1757), 2,
- sym_template_string,
- sym_arguments,
- ACTIONS(5298), 3,
- anon_sym_LT_EQ,
- anon_sym_GT_EQ,
- anon_sym_instanceof,
- ACTIONS(4305), 8,
- sym__ternary_qmark,
- anon_sym_as,
- anon_sym_RBRACE,
- anon_sym_COLON,
- anon_sym_AMP_AMP,
- anon_sym_PIPE_PIPE,
- anon_sym_QMARK_QMARK,
- anon_sym_satisfies,
- [70275] = 27,
- ACTIONS(825), 1,
- anon_sym_BQUOTE,
- ACTIONS(3969), 1,
- anon_sym_LPAREN,
- ACTIONS(3971), 1,
- anon_sym_LBRACK,
- ACTIONS(3973), 1,
- anon_sym_DOT,
- ACTIONS(4059), 1,
- anon_sym_QMARK_DOT,
- ACTIONS(4307), 1,
- anon_sym_BANG,
- ACTIONS(5276), 1,
- anon_sym_AMP_AMP,
- ACTIONS(5280), 1,
- anon_sym_GT_GT,
- ACTIONS(5284), 1,
- anon_sym_AMP,
- ACTIONS(5286), 1,
- anon_sym_CARET,
- ACTIONS(5288), 1,
- anon_sym_PIPE,
- ACTIONS(5292), 1,
- anon_sym_PERCENT,
- ACTIONS(5294), 1,
- anon_sym_STAR_STAR,
- ACTIONS(5296), 1,
- anon_sym_LT,
- STATE(1447), 1,
- sym_type_arguments,
- STATE(5080), 1,
- sym_optional_chain,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(4091), 2,
- anon_sym_PLUS_PLUS,
- anon_sym_DASH_DASH,
- ACTIONS(5272), 2,
- anon_sym_STAR,
- anon_sym_SLASH,
- ACTIONS(5274), 2,
- anon_sym_in,
- anon_sym_GT,
- ACTIONS(5282), 2,
- anon_sym_GT_GT_GT,
- anon_sym_LT_LT,
- ACTIONS(5290), 2,
- anon_sym_PLUS,
- anon_sym_DASH,
- ACTIONS(5300), 2,
- anon_sym_EQ_EQ,
- anon_sym_BANG_EQ,
- ACTIONS(5302), 2,
- anon_sym_EQ_EQ_EQ,
- anon_sym_BANG_EQ_EQ,
- STATE(1757), 2,
- sym_template_string,
- sym_arguments,
- ACTIONS(5298), 3,
- anon_sym_LT_EQ,
- anon_sym_GT_EQ,
- anon_sym_instanceof,
- ACTIONS(4305), 7,
- sym__ternary_qmark,
- anon_sym_as,
- anon_sym_RBRACE,
- anon_sym_COLON,
- anon_sym_PIPE_PIPE,
- anon_sym_QMARK_QMARK,
- anon_sym_satisfies,
- [70374] = 17,
- ACTIONS(825), 1,
- anon_sym_BQUOTE,
- ACTIONS(3969), 1,
- anon_sym_LPAREN,
- ACTIONS(3971), 1,
- anon_sym_LBRACK,
- ACTIONS(3973), 1,
- anon_sym_DOT,
- ACTIONS(4059), 1,
- anon_sym_QMARK_DOT,
- ACTIONS(5292), 1,
- anon_sym_PERCENT,
- ACTIONS(5294), 1,
- anon_sym_STAR_STAR,
- ACTIONS(5308), 1,
- anon_sym_LT,
- STATE(1447), 1,
- sym_type_arguments,
- STATE(5080), 1,
- sym_optional_chain,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(4091), 2,
- anon_sym_PLUS_PLUS,
- anon_sym_DASH_DASH,
- ACTIONS(5272), 2,
- anon_sym_STAR,
- anon_sym_SLASH,
- ACTIONS(5290), 2,
- anon_sym_PLUS,
- anon_sym_DASH,
- STATE(1757), 2,
- sym_template_string,
- sym_arguments,
- ACTIONS(4307), 8,
- anon_sym_BANG,
- anon_sym_in,
- anon_sym_GT,
- anon_sym_GT_GT,
- anon_sym_AMP,
- anon_sym_PIPE,
- anon_sym_EQ_EQ,
- anon_sym_BANG_EQ,
- ACTIONS(4305), 16,
- sym__ternary_qmark,
- anon_sym_as,
- anon_sym_RBRACE,
- anon_sym_COLON,
- anon_sym_AMP_AMP,
- anon_sym_PIPE_PIPE,
- anon_sym_GT_GT_GT,
- anon_sym_LT_LT,
- anon_sym_CARET,
- anon_sym_LT_EQ,
- anon_sym_EQ_EQ_EQ,
- anon_sym_BANG_EQ_EQ,
- anon_sym_GT_EQ,
- anon_sym_QMARK_QMARK,
- anon_sym_instanceof,
- anon_sym_satisfies,
- [70453] = 23,
- ACTIONS(825), 1,
- anon_sym_BQUOTE,
- ACTIONS(3969), 1,
- anon_sym_LPAREN,
- ACTIONS(3971), 1,
- anon_sym_LBRACK,
- ACTIONS(3973), 1,
- anon_sym_DOT,
- ACTIONS(4059), 1,
- anon_sym_QMARK_DOT,
- ACTIONS(5280), 1,
- anon_sym_GT_GT,
- ACTIONS(5292), 1,
- anon_sym_PERCENT,
- ACTIONS(5294), 1,
- anon_sym_STAR_STAR,
- ACTIONS(5296), 1,
- anon_sym_LT,
- STATE(1447), 1,
- sym_type_arguments,
- STATE(5080), 1,
- sym_optional_chain,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(4091), 2,
- anon_sym_PLUS_PLUS,
- anon_sym_DASH_DASH,
- ACTIONS(5272), 2,
- anon_sym_STAR,
- anon_sym_SLASH,
- ACTIONS(5274), 2,
- anon_sym_in,
- anon_sym_GT,
- ACTIONS(5282), 2,
- anon_sym_GT_GT_GT,
- anon_sym_LT_LT,
- ACTIONS(5290), 2,
- anon_sym_PLUS,
- anon_sym_DASH,
- ACTIONS(5300), 2,
- anon_sym_EQ_EQ,
- anon_sym_BANG_EQ,
- ACTIONS(5302), 2,
- anon_sym_EQ_EQ_EQ,
- anon_sym_BANG_EQ_EQ,
- STATE(1757), 2,
- sym_template_string,
- sym_arguments,
- ACTIONS(4307), 3,
- anon_sym_BANG,
- anon_sym_AMP,
- anon_sym_PIPE,
- ACTIONS(5298), 3,
- anon_sym_LT_EQ,
- anon_sym_GT_EQ,
- anon_sym_instanceof,
- ACTIONS(4305), 9,
- sym__ternary_qmark,
- anon_sym_as,
- anon_sym_RBRACE,
- anon_sym_COLON,
- anon_sym_AMP_AMP,
- anon_sym_PIPE_PIPE,
- anon_sym_CARET,
- anon_sym_QMARK_QMARK,
- anon_sym_satisfies,
- [70544] = 24,
- ACTIONS(825), 1,
- anon_sym_BQUOTE,
- ACTIONS(3969), 1,
- anon_sym_LPAREN,
- ACTIONS(3971), 1,
- anon_sym_LBRACK,
- ACTIONS(3973), 1,
- anon_sym_DOT,
- ACTIONS(4059), 1,
- anon_sym_QMARK_DOT,
- ACTIONS(5280), 1,
- anon_sym_GT_GT,
- ACTIONS(5284), 1,
- anon_sym_AMP,
- ACTIONS(5292), 1,
- anon_sym_PERCENT,
- ACTIONS(5294), 1,
- anon_sym_STAR_STAR,
- ACTIONS(5296), 1,
- anon_sym_LT,
- STATE(1447), 1,
- sym_type_arguments,
- STATE(5080), 1,
- sym_optional_chain,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(4091), 2,
- anon_sym_PLUS_PLUS,
- anon_sym_DASH_DASH,
- ACTIONS(4307), 2,
- anon_sym_BANG,
- anon_sym_PIPE,
- ACTIONS(5272), 2,
- anon_sym_STAR,
- anon_sym_SLASH,
- ACTIONS(5274), 2,
- anon_sym_in,
- anon_sym_GT,
- ACTIONS(5282), 2,
- anon_sym_GT_GT_GT,
- anon_sym_LT_LT,
- ACTIONS(5290), 2,
- anon_sym_PLUS,
- anon_sym_DASH,
- ACTIONS(5300), 2,
- anon_sym_EQ_EQ,
- anon_sym_BANG_EQ,
- ACTIONS(5302), 2,
- anon_sym_EQ_EQ_EQ,
- anon_sym_BANG_EQ_EQ,
- STATE(1757), 2,
- sym_template_string,
- sym_arguments,
- ACTIONS(5298), 3,
- anon_sym_LT_EQ,
- anon_sym_GT_EQ,
- anon_sym_instanceof,
- ACTIONS(4305), 9,
- sym__ternary_qmark,
- anon_sym_as,
- anon_sym_RBRACE,
- anon_sym_COLON,
- anon_sym_AMP_AMP,
- anon_sym_PIPE_PIPE,
- anon_sym_CARET,
- anon_sym_QMARK_QMARK,
- anon_sym_satisfies,
- [70637] = 25,
- ACTIONS(825), 1,
- anon_sym_BQUOTE,
- ACTIONS(3969), 1,
- anon_sym_LPAREN,
- ACTIONS(3971), 1,
- anon_sym_LBRACK,
- ACTIONS(3973), 1,
- anon_sym_DOT,
- ACTIONS(4059), 1,
- anon_sym_QMARK_DOT,
- ACTIONS(5280), 1,
- anon_sym_GT_GT,
- ACTIONS(5284), 1,
- anon_sym_AMP,
- ACTIONS(5286), 1,
- anon_sym_CARET,
- ACTIONS(5292), 1,
- anon_sym_PERCENT,
- ACTIONS(5294), 1,
- anon_sym_STAR_STAR,
- ACTIONS(5296), 1,
- anon_sym_LT,
- STATE(1447), 1,
- sym_type_arguments,
- STATE(5080), 1,
- sym_optional_chain,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(4091), 2,
- anon_sym_PLUS_PLUS,
- anon_sym_DASH_DASH,
- ACTIONS(4307), 2,
- anon_sym_BANG,
- anon_sym_PIPE,
- ACTIONS(5272), 2,
- anon_sym_STAR,
- anon_sym_SLASH,
- ACTIONS(5274), 2,
- anon_sym_in,
- anon_sym_GT,
- ACTIONS(5282), 2,
- anon_sym_GT_GT_GT,
- anon_sym_LT_LT,
- ACTIONS(5290), 2,
- anon_sym_PLUS,
- anon_sym_DASH,
- ACTIONS(5300), 2,
- anon_sym_EQ_EQ,
- anon_sym_BANG_EQ,
- ACTIONS(5302), 2,
- anon_sym_EQ_EQ_EQ,
- anon_sym_BANG_EQ_EQ,
- STATE(1757), 2,
- sym_template_string,
- sym_arguments,
- ACTIONS(5298), 3,
- anon_sym_LT_EQ,
- anon_sym_GT_EQ,
- anon_sym_instanceof,
- ACTIONS(4305), 8,
- sym__ternary_qmark,
- anon_sym_as,
- anon_sym_RBRACE,
- anon_sym_COLON,
- anon_sym_AMP_AMP,
- anon_sym_PIPE_PIPE,
- anon_sym_QMARK_QMARK,
- anon_sym_satisfies,
- [70732] = 16,
- ACTIONS(825), 1,
- anon_sym_BQUOTE,
- ACTIONS(3969), 1,
- anon_sym_LPAREN,
- ACTIONS(3971), 1,
- anon_sym_LBRACK,
- ACTIONS(3973), 1,
- anon_sym_DOT,
- ACTIONS(4059), 1,
- anon_sym_QMARK_DOT,
- ACTIONS(5292), 1,
- anon_sym_PERCENT,
- ACTIONS(5294), 1,
- anon_sym_STAR_STAR,
- ACTIONS(5308), 1,
- anon_sym_LT,
- STATE(1447), 1,
- sym_type_arguments,
- STATE(5080), 1,
- sym_optional_chain,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(4091), 2,
- anon_sym_PLUS_PLUS,
- anon_sym_DASH_DASH,
- ACTIONS(5272), 2,
- anon_sym_STAR,
- anon_sym_SLASH,
- STATE(1757), 2,
- sym_template_string,
- sym_arguments,
- ACTIONS(4307), 10,
- anon_sym_BANG,
- anon_sym_in,
- anon_sym_GT,
- anon_sym_GT_GT,
- anon_sym_AMP,
- anon_sym_PIPE,
- anon_sym_PLUS,
- anon_sym_DASH,
- anon_sym_EQ_EQ,
- anon_sym_BANG_EQ,
- ACTIONS(4305), 16,
- sym__ternary_qmark,
- anon_sym_as,
- anon_sym_RBRACE,
- anon_sym_COLON,
- anon_sym_AMP_AMP,
- anon_sym_PIPE_PIPE,
- anon_sym_GT_GT_GT,
- anon_sym_LT_LT,
- anon_sym_CARET,
- anon_sym_LT_EQ,
- anon_sym_EQ_EQ_EQ,
- anon_sym_BANG_EQ_EQ,
- anon_sym_GT_EQ,
- anon_sym_QMARK_QMARK,
- anon_sym_instanceof,
- anon_sym_satisfies,
- [70809] = 17,
- ACTIONS(825), 1,
- anon_sym_BQUOTE,
- ACTIONS(3969), 1,
- anon_sym_LPAREN,
- ACTIONS(3971), 1,
- anon_sym_LBRACK,
- ACTIONS(3973), 1,
- anon_sym_DOT,
- ACTIONS(4051), 1,
- anon_sym_as,
- ACTIONS(4055), 1,
- anon_sym_BANG,
- ACTIONS(4059), 1,
- anon_sym_QMARK_DOT,
- ACTIONS(4093), 1,
- anon_sym_satisfies,
- ACTIONS(5294), 1,
- anon_sym_STAR_STAR,
- ACTIONS(5308), 1,
- anon_sym_LT,
- STATE(1447), 1,
- sym_type_arguments,
- STATE(5080), 1,
- sym_optional_chain,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(4091), 2,
- anon_sym_PLUS_PLUS,
- anon_sym_DASH_DASH,
- STATE(1757), 2,
- sym_template_string,
- sym_arguments,
- ACTIONS(4307), 11,
- anon_sym_STAR,
- anon_sym_in,
- anon_sym_GT,
- anon_sym_GT_GT,
- anon_sym_AMP,
- anon_sym_PIPE,
- anon_sym_PLUS,
- anon_sym_DASH,
- anon_sym_SLASH,
- anon_sym_EQ_EQ,
- anon_sym_BANG_EQ,
- ACTIONS(4305), 15,
- sym__ternary_qmark,
- anon_sym_RBRACE,
- anon_sym_COLON,
- anon_sym_AMP_AMP,
- anon_sym_PIPE_PIPE,
- anon_sym_GT_GT_GT,
- anon_sym_LT_LT,
- anon_sym_CARET,
- anon_sym_PERCENT,
- anon_sym_LT_EQ,
- anon_sym_EQ_EQ_EQ,
- anon_sym_BANG_EQ_EQ,
- anon_sym_GT_EQ,
- anon_sym_QMARK_QMARK,
- anon_sym_instanceof,
- [70888] = 21,
- ACTIONS(825), 1,
- anon_sym_BQUOTE,
- ACTIONS(3969), 1,
- anon_sym_LPAREN,
- ACTIONS(3971), 1,
- anon_sym_LBRACK,
- ACTIONS(3973), 1,
- anon_sym_DOT,
- ACTIONS(4059), 1,
- anon_sym_QMARK_DOT,
- ACTIONS(5280), 1,
- anon_sym_GT_GT,
- ACTIONS(5292), 1,
- anon_sym_PERCENT,
- ACTIONS(5294), 1,
- anon_sym_STAR_STAR,
- ACTIONS(5296), 1,
- anon_sym_LT,
- STATE(1447), 1,
- sym_type_arguments,
- STATE(5080), 1,
- sym_optional_chain,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(4091), 2,
- anon_sym_PLUS_PLUS,
- anon_sym_DASH_DASH,
- ACTIONS(5272), 2,
- anon_sym_STAR,
- anon_sym_SLASH,
- ACTIONS(5274), 2,
- anon_sym_in,
- anon_sym_GT,
- ACTIONS(5282), 2,
- anon_sym_GT_GT_GT,
- anon_sym_LT_LT,
- ACTIONS(5290), 2,
- anon_sym_PLUS,
- anon_sym_DASH,
- STATE(1757), 2,
- sym_template_string,
- sym_arguments,
- ACTIONS(5298), 3,
- anon_sym_LT_EQ,
- anon_sym_GT_EQ,
- anon_sym_instanceof,
- ACTIONS(4307), 5,
- anon_sym_BANG,
- anon_sym_AMP,
- anon_sym_PIPE,
- anon_sym_EQ_EQ,
- anon_sym_BANG_EQ,
- ACTIONS(4305), 11,
- sym__ternary_qmark,
- anon_sym_as,
- anon_sym_RBRACE,
- anon_sym_COLON,
- anon_sym_AMP_AMP,
- anon_sym_PIPE_PIPE,
- anon_sym_CARET,
- anon_sym_EQ_EQ_EQ,
- anon_sym_BANG_EQ_EQ,
- anon_sym_QMARK_QMARK,
- anon_sym_satisfies,
- [70975] = 28,
- ACTIONS(825), 1,
- anon_sym_BQUOTE,
- ACTIONS(3969), 1,
- anon_sym_LPAREN,
- ACTIONS(3971), 1,
- anon_sym_LBRACK,
- ACTIONS(3973), 1,
- anon_sym_DOT,
- ACTIONS(4059), 1,
- anon_sym_QMARK_DOT,
- ACTIONS(4307), 1,
- anon_sym_BANG,
- ACTIONS(5276), 1,
- anon_sym_AMP_AMP,
- ACTIONS(5278), 1,
- anon_sym_PIPE_PIPE,
- ACTIONS(5280), 1,
- anon_sym_GT_GT,
- ACTIONS(5284), 1,
- anon_sym_AMP,
- ACTIONS(5286), 1,
- anon_sym_CARET,
- ACTIONS(5288), 1,
- anon_sym_PIPE,
- ACTIONS(5292), 1,
- anon_sym_PERCENT,
- ACTIONS(5294), 1,
- anon_sym_STAR_STAR,
- ACTIONS(5296), 1,
- anon_sym_LT,
- STATE(1447), 1,
- sym_type_arguments,
- STATE(5080), 1,
- sym_optional_chain,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(4091), 2,
- anon_sym_PLUS_PLUS,
- anon_sym_DASH_DASH,
- ACTIONS(5272), 2,
- anon_sym_STAR,
- anon_sym_SLASH,
- ACTIONS(5274), 2,
- anon_sym_in,
- anon_sym_GT,
- ACTIONS(5282), 2,
- anon_sym_GT_GT_GT,
- anon_sym_LT_LT,
- ACTIONS(5290), 2,
- anon_sym_PLUS,
- anon_sym_DASH,
- ACTIONS(5300), 2,
- anon_sym_EQ_EQ,
- anon_sym_BANG_EQ,
- ACTIONS(5302), 2,
- anon_sym_EQ_EQ_EQ,
- anon_sym_BANG_EQ_EQ,
- STATE(1757), 2,
- sym_template_string,
- sym_arguments,
- ACTIONS(5298), 3,
- anon_sym_LT_EQ,
- anon_sym_GT_EQ,
- anon_sym_instanceof,
- ACTIONS(4305), 6,
- sym__ternary_qmark,
- anon_sym_as,
- anon_sym_RBRACE,
- anon_sym_COLON,
- anon_sym_QMARK_QMARK,
- anon_sym_satisfies,
- [71076] = 32,
- ACTIONS(825), 1,
- anon_sym_BQUOTE,
- ACTIONS(3969), 1,
- anon_sym_LPAREN,
- ACTIONS(3971), 1,
- anon_sym_LBRACK,
- ACTIONS(3973), 1,
- anon_sym_DOT,
- ACTIONS(4051), 1,
- anon_sym_as,
- ACTIONS(4055), 1,
- anon_sym_BANG,
- ACTIONS(4059), 1,
- anon_sym_QMARK_DOT,
- ACTIONS(4093), 1,
- anon_sym_satisfies,
- ACTIONS(5276), 1,
- anon_sym_AMP_AMP,
- ACTIONS(5278), 1,
- anon_sym_PIPE_PIPE,
- ACTIONS(5280), 1,
- anon_sym_GT_GT,
- ACTIONS(5284), 1,
- anon_sym_AMP,
- ACTIONS(5286), 1,
- anon_sym_CARET,
- ACTIONS(5288), 1,
- anon_sym_PIPE,
- ACTIONS(5292), 1,
- anon_sym_PERCENT,
- ACTIONS(5294), 1,
- anon_sym_STAR_STAR,
- ACTIONS(5296), 1,
- anon_sym_LT,
- ACTIONS(5304), 1,
- anon_sym_QMARK_QMARK,
- ACTIONS(5306), 1,
- sym__ternary_qmark,
- STATE(1447), 1,
- sym_type_arguments,
- STATE(5080), 1,
- sym_optional_chain,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(4091), 2,
- anon_sym_PLUS_PLUS,
- anon_sym_DASH_DASH,
- ACTIONS(4350), 2,
- anon_sym_RBRACE,
- anon_sym_COLON,
- ACTIONS(5272), 2,
- anon_sym_STAR,
- anon_sym_SLASH,
- ACTIONS(5274), 2,
- anon_sym_in,
- anon_sym_GT,
- ACTIONS(5282), 2,
- anon_sym_GT_GT_GT,
- anon_sym_LT_LT,
- ACTIONS(5290), 2,
- anon_sym_PLUS,
- anon_sym_DASH,
- ACTIONS(5300), 2,
- anon_sym_EQ_EQ,
- anon_sym_BANG_EQ,
- ACTIONS(5302), 2,
- anon_sym_EQ_EQ_EQ,
- anon_sym_BANG_EQ_EQ,
- STATE(1757), 2,
- sym_template_string,
- sym_arguments,
- ACTIONS(5298), 3,
- anon_sym_LT_EQ,
- anon_sym_GT_EQ,
- anon_sym_instanceof,
- [71185] = 32,
- ACTIONS(825), 1,
- anon_sym_BQUOTE,
- ACTIONS(3969), 1,
- anon_sym_LPAREN,
- ACTIONS(3971), 1,
- anon_sym_LBRACK,
- ACTIONS(3973), 1,
- anon_sym_DOT,
- ACTIONS(4051), 1,
- anon_sym_as,
- ACTIONS(4055), 1,
- anon_sym_BANG,
- ACTIONS(4059), 1,
- anon_sym_QMARK_DOT,
- ACTIONS(4093), 1,
- anon_sym_satisfies,
- ACTIONS(5276), 1,
- anon_sym_AMP_AMP,
- ACTIONS(5278), 1,
- anon_sym_PIPE_PIPE,
- ACTIONS(5280), 1,
- anon_sym_GT_GT,
- ACTIONS(5284), 1,
- anon_sym_AMP,
- ACTIONS(5286), 1,
- anon_sym_CARET,
- ACTIONS(5288), 1,
- anon_sym_PIPE,
- ACTIONS(5292), 1,
- anon_sym_PERCENT,
- ACTIONS(5294), 1,
- anon_sym_STAR_STAR,
- ACTIONS(5296), 1,
- anon_sym_LT,
- ACTIONS(5304), 1,
- anon_sym_QMARK_QMARK,
- ACTIONS(5306), 1,
- sym__ternary_qmark,
- STATE(1447), 1,
- sym_type_arguments,
- STATE(5080), 1,
- sym_optional_chain,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(4091), 2,
- anon_sym_PLUS_PLUS,
- anon_sym_DASH_DASH,
- ACTIONS(4352), 2,
- anon_sym_RBRACE,
- anon_sym_COLON,
- ACTIONS(5272), 2,
- anon_sym_STAR,
- anon_sym_SLASH,
- ACTIONS(5274), 2,
- anon_sym_in,
- anon_sym_GT,
- ACTIONS(5282), 2,
- anon_sym_GT_GT_GT,
- anon_sym_LT_LT,
- ACTIONS(5290), 2,
- anon_sym_PLUS,
- anon_sym_DASH,
- ACTIONS(5300), 2,
- anon_sym_EQ_EQ,
- anon_sym_BANG_EQ,
- ACTIONS(5302), 2,
- anon_sym_EQ_EQ_EQ,
- anon_sym_BANG_EQ_EQ,
- STATE(1757), 2,
- sym_template_string,
- sym_arguments,
- ACTIONS(5298), 3,
- anon_sym_LT_EQ,
- anon_sym_GT_EQ,
- anon_sym_instanceof,
- [71294] = 32,
- ACTIONS(825), 1,
- anon_sym_BQUOTE,
- ACTIONS(3969), 1,
- anon_sym_LPAREN,
- ACTIONS(3971), 1,
- anon_sym_LBRACK,
- ACTIONS(3973), 1,
- anon_sym_DOT,
- ACTIONS(4051), 1,
- anon_sym_as,
- ACTIONS(4055), 1,
- anon_sym_BANG,
- ACTIONS(4059), 1,
- anon_sym_QMARK_DOT,
- ACTIONS(4093), 1,
- anon_sym_satisfies,
- ACTIONS(5276), 1,
- anon_sym_AMP_AMP,
- ACTIONS(5278), 1,
- anon_sym_PIPE_PIPE,
- ACTIONS(5280), 1,
- anon_sym_GT_GT,
- ACTIONS(5284), 1,
- anon_sym_AMP,
- ACTIONS(5286), 1,
- anon_sym_CARET,
- ACTIONS(5288), 1,
- anon_sym_PIPE,
- ACTIONS(5292), 1,
- anon_sym_PERCENT,
- ACTIONS(5294), 1,
- anon_sym_STAR_STAR,
- ACTIONS(5296), 1,
- anon_sym_LT,
- ACTIONS(5304), 1,
- anon_sym_QMARK_QMARK,
- ACTIONS(5306), 1,
- sym__ternary_qmark,
- STATE(1447), 1,
- sym_type_arguments,
- STATE(5080), 1,
- sym_optional_chain,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(4091), 2,
- anon_sym_PLUS_PLUS,
- anon_sym_DASH_DASH,
- ACTIONS(4370), 2,
- anon_sym_RBRACE,
- anon_sym_COLON,
- ACTIONS(5272), 2,
- anon_sym_STAR,
- anon_sym_SLASH,
- ACTIONS(5274), 2,
- anon_sym_in,
- anon_sym_GT,
- ACTIONS(5282), 2,
- anon_sym_GT_GT_GT,
- anon_sym_LT_LT,
- ACTIONS(5290), 2,
- anon_sym_PLUS,
- anon_sym_DASH,
- ACTIONS(5300), 2,
- anon_sym_EQ_EQ,
- anon_sym_BANG_EQ,
- ACTIONS(5302), 2,
- anon_sym_EQ_EQ_EQ,
- anon_sym_BANG_EQ_EQ,
- STATE(1757), 2,
- sym_template_string,
- sym_arguments,
- ACTIONS(5298), 3,
- anon_sym_LT_EQ,
- anon_sym_GT_EQ,
- anon_sym_instanceof,
- [71403] = 32,
- ACTIONS(825), 1,
- anon_sym_BQUOTE,
- ACTIONS(3969), 1,
- anon_sym_LPAREN,
- ACTIONS(3971), 1,
- anon_sym_LBRACK,
- ACTIONS(3973), 1,
- anon_sym_DOT,
- ACTIONS(4051), 1,
- anon_sym_as,
- ACTIONS(4055), 1,
- anon_sym_BANG,
- ACTIONS(4059), 1,
- anon_sym_QMARK_DOT,
- ACTIONS(4093), 1,
- anon_sym_satisfies,
- ACTIONS(5276), 1,
- anon_sym_AMP_AMP,
- ACTIONS(5278), 1,
- anon_sym_PIPE_PIPE,
- ACTIONS(5280), 1,
- anon_sym_GT_GT,
- ACTIONS(5284), 1,
- anon_sym_AMP,
- ACTIONS(5286), 1,
- anon_sym_CARET,
- ACTIONS(5288), 1,
- anon_sym_PIPE,
- ACTIONS(5292), 1,
- anon_sym_PERCENT,
- ACTIONS(5294), 1,
- anon_sym_STAR_STAR,
- ACTIONS(5296), 1,
- anon_sym_LT,
- ACTIONS(5304), 1,
- anon_sym_QMARK_QMARK,
- ACTIONS(5306), 1,
- sym__ternary_qmark,
- STATE(1447), 1,
- sym_type_arguments,
- STATE(5080), 1,
- sym_optional_chain,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(4091), 2,
- anon_sym_PLUS_PLUS,
- anon_sym_DASH_DASH,
- ACTIONS(4372), 2,
- anon_sym_RBRACE,
- anon_sym_COLON,
- ACTIONS(5272), 2,
- anon_sym_STAR,
- anon_sym_SLASH,
- ACTIONS(5274), 2,
- anon_sym_in,
- anon_sym_GT,
- ACTIONS(5282), 2,
- anon_sym_GT_GT_GT,
- anon_sym_LT_LT,
- ACTIONS(5290), 2,
- anon_sym_PLUS,
- anon_sym_DASH,
- ACTIONS(5300), 2,
- anon_sym_EQ_EQ,
- anon_sym_BANG_EQ,
- ACTIONS(5302), 2,
- anon_sym_EQ_EQ_EQ,
- anon_sym_BANG_EQ_EQ,
- STATE(1757), 2,
- sym_template_string,
- sym_arguments,
- ACTIONS(5298), 3,
- anon_sym_LT_EQ,
- anon_sym_GT_EQ,
- anon_sym_instanceof,
- [71512] = 32,
- ACTIONS(825), 1,
- anon_sym_BQUOTE,
- ACTIONS(3969), 1,
- anon_sym_LPAREN,
- ACTIONS(3971), 1,
- anon_sym_LBRACK,
- ACTIONS(3973), 1,
- anon_sym_DOT,
- ACTIONS(4051), 1,
- anon_sym_as,
- ACTIONS(4055), 1,
- anon_sym_BANG,
- ACTIONS(4059), 1,
- anon_sym_QMARK_DOT,
- ACTIONS(4093), 1,
- anon_sym_satisfies,
- ACTIONS(5276), 1,
- anon_sym_AMP_AMP,
- ACTIONS(5278), 1,
- anon_sym_PIPE_PIPE,
- ACTIONS(5280), 1,
- anon_sym_GT_GT,
- ACTIONS(5284), 1,
- anon_sym_AMP,
- ACTIONS(5286), 1,
- anon_sym_CARET,
- ACTIONS(5288), 1,
- anon_sym_PIPE,
- ACTIONS(5292), 1,
- anon_sym_PERCENT,
- ACTIONS(5294), 1,
- anon_sym_STAR_STAR,
- ACTIONS(5296), 1,
- anon_sym_LT,
- ACTIONS(5304), 1,
- anon_sym_QMARK_QMARK,
- ACTIONS(5306), 1,
- sym__ternary_qmark,
- STATE(1447), 1,
- sym_type_arguments,
- STATE(5080), 1,
- sym_optional_chain,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(4091), 2,
- anon_sym_PLUS_PLUS,
- anon_sym_DASH_DASH,
- ACTIONS(4374), 2,
- anon_sym_RBRACE,
- anon_sym_COLON,
- ACTIONS(5272), 2,
- anon_sym_STAR,
- anon_sym_SLASH,
- ACTIONS(5274), 2,
- anon_sym_in,
- anon_sym_GT,
- ACTIONS(5282), 2,
- anon_sym_GT_GT_GT,
- anon_sym_LT_LT,
- ACTIONS(5290), 2,
- anon_sym_PLUS,
- anon_sym_DASH,
- ACTIONS(5300), 2,
- anon_sym_EQ_EQ,
- anon_sym_BANG_EQ,
- ACTIONS(5302), 2,
- anon_sym_EQ_EQ_EQ,
- anon_sym_BANG_EQ_EQ,
- STATE(1757), 2,
- sym_template_string,
- sym_arguments,
- ACTIONS(5298), 3,
- anon_sym_LT_EQ,
- anon_sym_GT_EQ,
- anon_sym_instanceof,
- [71621] = 32,
- ACTIONS(825), 1,
- anon_sym_BQUOTE,
- ACTIONS(3969), 1,
- anon_sym_LPAREN,
- ACTIONS(3971), 1,
- anon_sym_LBRACK,
- ACTIONS(3973), 1,
- anon_sym_DOT,
- ACTIONS(4051), 1,
- anon_sym_as,
- ACTIONS(4055), 1,
- anon_sym_BANG,
- ACTIONS(4059), 1,
- anon_sym_QMARK_DOT,
- ACTIONS(4093), 1,
- anon_sym_satisfies,
- ACTIONS(5276), 1,
- anon_sym_AMP_AMP,
- ACTIONS(5278), 1,
- anon_sym_PIPE_PIPE,
- ACTIONS(5280), 1,
- anon_sym_GT_GT,
- ACTIONS(5284), 1,
- anon_sym_AMP,
- ACTIONS(5286), 1,
- anon_sym_CARET,
- ACTIONS(5288), 1,
- anon_sym_PIPE,
- ACTIONS(5292), 1,
- anon_sym_PERCENT,
- ACTIONS(5294), 1,
- anon_sym_STAR_STAR,
- ACTIONS(5296), 1,
- anon_sym_LT,
- ACTIONS(5304), 1,
- anon_sym_QMARK_QMARK,
- ACTIONS(5306), 1,
- sym__ternary_qmark,
- STATE(1447), 1,
- sym_type_arguments,
- STATE(5080), 1,
- sym_optional_chain,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(4091), 2,
- anon_sym_PLUS_PLUS,
- anon_sym_DASH_DASH,
- ACTIONS(4376), 2,
- anon_sym_RBRACE,
- anon_sym_COLON,
- ACTIONS(5272), 2,
- anon_sym_STAR,
- anon_sym_SLASH,
- ACTIONS(5274), 2,
- anon_sym_in,
- anon_sym_GT,
- ACTIONS(5282), 2,
- anon_sym_GT_GT_GT,
- anon_sym_LT_LT,
- ACTIONS(5290), 2,
- anon_sym_PLUS,
- anon_sym_DASH,
- ACTIONS(5300), 2,
- anon_sym_EQ_EQ,
- anon_sym_BANG_EQ,
- ACTIONS(5302), 2,
- anon_sym_EQ_EQ_EQ,
- anon_sym_BANG_EQ_EQ,
- STATE(1757), 2,
- sym_template_string,
- sym_arguments,
- ACTIONS(5298), 3,
- anon_sym_LT_EQ,
- anon_sym_GT_EQ,
- anon_sym_instanceof,
- [71730] = 32,
- ACTIONS(825), 1,
- anon_sym_BQUOTE,
- ACTIONS(3969), 1,
- anon_sym_LPAREN,
- ACTIONS(3971), 1,
- anon_sym_LBRACK,
- ACTIONS(3973), 1,
- anon_sym_DOT,
- ACTIONS(4051), 1,
- anon_sym_as,
- ACTIONS(4055), 1,
- anon_sym_BANG,
- ACTIONS(4059), 1,
- anon_sym_QMARK_DOT,
- ACTIONS(4093), 1,
- anon_sym_satisfies,
- ACTIONS(5276), 1,
- anon_sym_AMP_AMP,
- ACTIONS(5278), 1,
- anon_sym_PIPE_PIPE,
- ACTIONS(5280), 1,
- anon_sym_GT_GT,
- ACTIONS(5284), 1,
- anon_sym_AMP,
- ACTIONS(5286), 1,
- anon_sym_CARET,
- ACTIONS(5288), 1,
- anon_sym_PIPE,
- ACTIONS(5292), 1,
- anon_sym_PERCENT,
- ACTIONS(5294), 1,
- anon_sym_STAR_STAR,
- ACTIONS(5296), 1,
- anon_sym_LT,
- ACTIONS(5304), 1,
- anon_sym_QMARK_QMARK,
- ACTIONS(5306), 1,
- sym__ternary_qmark,
- STATE(1447), 1,
- sym_type_arguments,
- STATE(5080), 1,
- sym_optional_chain,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(4053), 2,
- anon_sym_RBRACE,
- anon_sym_COLON,
- ACTIONS(4091), 2,
- anon_sym_PLUS_PLUS,
- anon_sym_DASH_DASH,
- ACTIONS(5272), 2,
- anon_sym_STAR,
- anon_sym_SLASH,
- ACTIONS(5274), 2,
- anon_sym_in,
- anon_sym_GT,
- ACTIONS(5282), 2,
- anon_sym_GT_GT_GT,
- anon_sym_LT_LT,
- ACTIONS(5290), 2,
- anon_sym_PLUS,
- anon_sym_DASH,
- ACTIONS(5300), 2,
- anon_sym_EQ_EQ,
- anon_sym_BANG_EQ,
- ACTIONS(5302), 2,
- anon_sym_EQ_EQ_EQ,
- anon_sym_BANG_EQ_EQ,
- STATE(1757), 2,
- sym_template_string,
- sym_arguments,
- ACTIONS(5298), 3,
- anon_sym_LT_EQ,
- anon_sym_GT_EQ,
- anon_sym_instanceof,
- [71839] = 32,
- ACTIONS(825), 1,
- anon_sym_BQUOTE,
- ACTIONS(3969), 1,
- anon_sym_LPAREN,
- ACTIONS(3971), 1,
- anon_sym_LBRACK,
- ACTIONS(3973), 1,
- anon_sym_DOT,
- ACTIONS(4051), 1,
- anon_sym_as,
- ACTIONS(4055), 1,
- anon_sym_BANG,
- ACTIONS(4059), 1,
- anon_sym_QMARK_DOT,
- ACTIONS(4093), 1,
- anon_sym_satisfies,
- ACTIONS(5276), 1,
- anon_sym_AMP_AMP,
- ACTIONS(5278), 1,
- anon_sym_PIPE_PIPE,
- ACTIONS(5280), 1,
- anon_sym_GT_GT,
- ACTIONS(5284), 1,
- anon_sym_AMP,
- ACTIONS(5286), 1,
- anon_sym_CARET,
- ACTIONS(5288), 1,
- anon_sym_PIPE,
- ACTIONS(5292), 1,
- anon_sym_PERCENT,
- ACTIONS(5294), 1,
- anon_sym_STAR_STAR,
- ACTIONS(5296), 1,
- anon_sym_LT,
- ACTIONS(5304), 1,
- anon_sym_QMARK_QMARK,
- ACTIONS(5306), 1,
- sym__ternary_qmark,
- STATE(1447), 1,
- sym_type_arguments,
- STATE(5080), 1,
- sym_optional_chain,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(4091), 2,
- anon_sym_PLUS_PLUS,
- anon_sym_DASH_DASH,
- ACTIONS(4388), 2,
- anon_sym_RBRACE,
- anon_sym_COLON,
- ACTIONS(5272), 2,
- anon_sym_STAR,
- anon_sym_SLASH,
- ACTIONS(5274), 2,
- anon_sym_in,
- anon_sym_GT,
- ACTIONS(5282), 2,
- anon_sym_GT_GT_GT,
- anon_sym_LT_LT,
- ACTIONS(5290), 2,
- anon_sym_PLUS,
- anon_sym_DASH,
- ACTIONS(5300), 2,
- anon_sym_EQ_EQ,
- anon_sym_BANG_EQ,
- ACTIONS(5302), 2,
- anon_sym_EQ_EQ_EQ,
- anon_sym_BANG_EQ_EQ,
- STATE(1757), 2,
- sym_template_string,
- sym_arguments,
- ACTIONS(5298), 3,
- anon_sym_LT_EQ,
- anon_sym_GT_EQ,
- anon_sym_instanceof,
- [71948] = 3,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(4480), 13,
- anon_sym_STAR,
- anon_sym_BANG,
- anon_sym_in,
- anon_sym_GT,
- anon_sym_GT_GT,
- anon_sym_AMP,
- anon_sym_PIPE,
- anon_sym_PLUS,
- anon_sym_DASH,
- anon_sym_SLASH,
- anon_sym_LT,
- anon_sym_EQ_EQ,
- anon_sym_BANG_EQ,
- ACTIONS(4482), 29,
- sym__automatic_semicolon,
- sym__ternary_qmark,
- anon_sym_as,
- anon_sym_COMMA,
- anon_sym_RBRACE,
- anon_sym_LPAREN,
- anon_sym_of,
- anon_sym_SEMI,
- anon_sym_LBRACK,
- anon_sym_DOT,
- anon_sym_QMARK_DOT,
- anon_sym_AMP_AMP,
- anon_sym_PIPE_PIPE,
- anon_sym_GT_GT_GT,
- anon_sym_LT_LT,
- anon_sym_CARET,
- anon_sym_PERCENT,
- anon_sym_STAR_STAR,
- anon_sym_LT_EQ,
- anon_sym_EQ_EQ_EQ,
- anon_sym_BANG_EQ_EQ,
- anon_sym_GT_EQ,
- anon_sym_QMARK_QMARK,
- anon_sym_instanceof,
- anon_sym_PLUS_PLUS,
- anon_sym_DASH_DASH,
- anon_sym_BQUOTE,
- anon_sym_satisfies,
- anon_sym_extends,
- [71999] = 12,
- ACTIONS(2275), 1,
- anon_sym_DQUOTE,
- ACTIONS(2277), 1,
- anon_sym_SQUOTE,
- ACTIONS(4241), 1,
- anon_sym_STAR,
- ACTIONS(4243), 1,
- anon_sym_EQ,
- ACTIONS(4634), 1,
- anon_sym_LBRACK,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(3959), 2,
- anon_sym_COMMA,
- anon_sym_RBRACE,
- ACTIONS(4636), 2,
- sym_number,
- sym_private_property_identifier,
- ACTIONS(4638), 2,
- anon_sym_get,
- anon_sym_set,
- STATE(3770), 3,
- sym_string,
- sym__property_name,
- sym_computed_property_name,
- ACTIONS(3743), 7,
- sym__automatic_semicolon,
- anon_sym_LPAREN,
- anon_sym_SEMI,
- anon_sym_COLON,
- anon_sym_LT,
- anon_sym_QMARK,
- anon_sym_PIPE_RBRACE,
- ACTIONS(2307), 21,
- anon_sym_export,
- anon_sym_type,
- anon_sym_namespace,
- anon_sym_let,
- anon_sym_async,
- anon_sym_new,
- sym_identifier,
- anon_sym_static,
- anon_sym_readonly,
- anon_sym_declare,
- anon_sym_public,
- anon_sym_private,
- anon_sym_protected,
- anon_sym_override,
- anon_sym_module,
- anon_sym_any,
- anon_sym_number,
- anon_sym_boolean,
- anon_sym_string,
- anon_sym_symbol,
- anon_sym_object,
- [72068] = 3,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(4484), 13,
- anon_sym_STAR,
- anon_sym_BANG,
- anon_sym_in,
- anon_sym_GT,
- anon_sym_GT_GT,
- anon_sym_AMP,
- anon_sym_PIPE,
- anon_sym_PLUS,
- anon_sym_DASH,
- anon_sym_SLASH,
- anon_sym_LT,
- anon_sym_EQ_EQ,
- anon_sym_BANG_EQ,
- ACTIONS(4486), 29,
- sym__automatic_semicolon,
- sym__ternary_qmark,
- anon_sym_as,
- anon_sym_COMMA,
- anon_sym_RBRACE,
- anon_sym_LPAREN,
- anon_sym_of,
- anon_sym_SEMI,
- anon_sym_LBRACK,
- anon_sym_DOT,
- anon_sym_QMARK_DOT,
- anon_sym_AMP_AMP,
- anon_sym_PIPE_PIPE,
- anon_sym_GT_GT_GT,
- anon_sym_LT_LT,
- anon_sym_CARET,
- anon_sym_PERCENT,
- anon_sym_STAR_STAR,
- anon_sym_LT_EQ,
- anon_sym_EQ_EQ_EQ,
- anon_sym_BANG_EQ_EQ,
- anon_sym_GT_EQ,
- anon_sym_QMARK_QMARK,
- anon_sym_instanceof,
- anon_sym_PLUS_PLUS,
- anon_sym_DASH_DASH,
- anon_sym_BQUOTE,
- anon_sym_satisfies,
- anon_sym_extends,
- [72119] = 13,
- ACTIONS(1594), 1,
- anon_sym_DQUOTE,
- ACTIONS(1596), 1,
- anon_sym_SQUOTE,
- ACTIONS(4241), 1,
- anon_sym_STAR,
- ACTIONS(4243), 1,
- anon_sym_EQ,
- ACTIONS(4247), 1,
- anon_sym_async,
- ACTIONS(4658), 1,
- anon_sym_LBRACK,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(3959), 2,
- anon_sym_COMMA,
- anon_sym_RBRACE,
- ACTIONS(4249), 2,
- sym_number,
- sym_private_property_identifier,
- ACTIONS(4253), 2,
- anon_sym_get,
- anon_sym_set,
- STATE(3081), 3,
- sym_string,
- sym__property_name,
- sym_computed_property_name,
- ACTIONS(3743), 7,
- sym__automatic_semicolon,
- anon_sym_LPAREN,
- anon_sym_SEMI,
- anon_sym_COLON,
- anon_sym_LT,
- anon_sym_QMARK,
- anon_sym_PIPE_RBRACE,
- ACTIONS(3607), 20,
- anon_sym_export,
- anon_sym_type,
- anon_sym_namespace,
- anon_sym_let,
- anon_sym_new,
- sym_identifier,
- anon_sym_static,
- anon_sym_readonly,
- anon_sym_declare,
- anon_sym_public,
- anon_sym_private,
- anon_sym_protected,
- anon_sym_override,
- anon_sym_module,
- anon_sym_any,
- anon_sym_number,
- anon_sym_boolean,
- anon_sym_string,
- anon_sym_symbol,
- anon_sym_object,
- [72190] = 14,
- ACTIONS(1594), 1,
- anon_sym_DQUOTE,
- ACTIONS(1596), 1,
- anon_sym_SQUOTE,
- ACTIONS(3633), 1,
- anon_sym_override,
- ACTIONS(4245), 1,
- anon_sym_LBRACK,
- ACTIONS(5311), 1,
- anon_sym_STAR,
- ACTIONS(5313), 1,
- anon_sym_async,
- ACTIONS(5317), 1,
- anon_sym_readonly,
- STATE(2710), 1,
- sym_override_modifier,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(5315), 2,
- sym_number,
- sym_private_property_identifier,
- ACTIONS(5319), 2,
- anon_sym_get,
- anon_sym_set,
- STATE(3074), 3,
- sym_string,
- sym__property_name,
- sym_computed_property_name,
- ACTIONS(3743), 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(3607), 18,
- anon_sym_export,
- anon_sym_type,
- anon_sym_namespace,
- anon_sym_let,
- anon_sym_new,
- sym_identifier,
- anon_sym_static,
- anon_sym_declare,
- anon_sym_public,
- anon_sym_private,
- anon_sym_protected,
- anon_sym_module,
- anon_sym_any,
- anon_sym_number,
- anon_sym_boolean,
- anon_sym_string,
- anon_sym_symbol,
- anon_sym_object,
- [72263] = 4,
- ACTIONS(4456), 1,
- anon_sym_extends,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(4450), 13,
- anon_sym_STAR,
- anon_sym_BANG,
- anon_sym_in,
- anon_sym_GT,
- anon_sym_GT_GT,
- anon_sym_AMP,
- anon_sym_PIPE,
- anon_sym_PLUS,
- anon_sym_DASH,
- anon_sym_SLASH,
- anon_sym_LT,
- anon_sym_EQ_EQ,
- anon_sym_BANG_EQ,
- ACTIONS(4452), 28,
- sym__automatic_semicolon,
- sym__ternary_qmark,
- anon_sym_as,
- anon_sym_COMMA,
- anon_sym_RBRACE,
- anon_sym_LPAREN,
- anon_sym_of,
- anon_sym_SEMI,
- anon_sym_LBRACK,
- anon_sym_DOT,
- anon_sym_QMARK_DOT,
- anon_sym_AMP_AMP,
- anon_sym_PIPE_PIPE,
- anon_sym_GT_GT_GT,
- anon_sym_LT_LT,
- anon_sym_CARET,
- anon_sym_PERCENT,
- anon_sym_STAR_STAR,
- anon_sym_LT_EQ,
- anon_sym_EQ_EQ_EQ,
- anon_sym_BANG_EQ_EQ,
- anon_sym_GT_EQ,
- anon_sym_QMARK_QMARK,
- anon_sym_instanceof,
- anon_sym_PLUS_PLUS,
- anon_sym_DASH_DASH,
- anon_sym_BQUOTE,
- anon_sym_satisfies,
- [72316] = 13,
- ACTIONS(825), 1,
- anon_sym_BQUOTE,
- ACTIONS(3969), 1,
- anon_sym_LPAREN,
- ACTIONS(3971), 1,
- anon_sym_LBRACK,
- ACTIONS(3973), 1,
- anon_sym_DOT,
- ACTIONS(4059), 1,
- anon_sym_QMARK_DOT,
- ACTIONS(5321), 1,
- anon_sym_LT,
- STATE(1447), 1,
- sym_type_arguments,
- STATE(5080), 1,
- sym_optional_chain,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(4091), 2,
- anon_sym_PLUS_PLUS,
- anon_sym_DASH_DASH,
- STATE(1757), 2,
- sym_template_string,
- sym_arguments,
- ACTIONS(4170), 12,
- anon_sym_STAR,
- anon_sym_BANG,
- anon_sym_in,
- anon_sym_GT,
- anon_sym_GT_GT,
- anon_sym_AMP,
- anon_sym_PIPE,
- anon_sym_PLUS,
- anon_sym_DASH,
- anon_sym_SLASH,
- anon_sym_EQ_EQ,
- anon_sym_BANG_EQ,
- ACTIONS(4172), 18,
- sym__ternary_qmark,
- anon_sym_as,
- anon_sym_RBRACE,
- anon_sym_COLON,
- anon_sym_AMP_AMP,
- anon_sym_PIPE_PIPE,
- anon_sym_GT_GT_GT,
- anon_sym_LT_LT,
- anon_sym_CARET,
- anon_sym_PERCENT,
- anon_sym_STAR_STAR,
- anon_sym_LT_EQ,
- anon_sym_EQ_EQ_EQ,
- anon_sym_BANG_EQ_EQ,
- anon_sym_GT_EQ,
- anon_sym_QMARK_QMARK,
- anon_sym_instanceof,
- anon_sym_satisfies,
- [72387] = 16,
- ACTIONS(825), 1,
- anon_sym_BQUOTE,
- ACTIONS(3969), 1,
- anon_sym_LPAREN,
- ACTIONS(3971), 1,
- anon_sym_LBRACK,
- ACTIONS(3973), 1,
- anon_sym_DOT,
- ACTIONS(4051), 1,
- anon_sym_as,
- ACTIONS(4055), 1,
- anon_sym_BANG,
- ACTIONS(4059), 1,
- anon_sym_QMARK_DOT,
- ACTIONS(4093), 1,
- anon_sym_satisfies,
- ACTIONS(5324), 1,
- anon_sym_LT,
- STATE(1447), 1,
- sym_type_arguments,
- STATE(5080), 1,
- sym_optional_chain,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(4091), 2,
- anon_sym_PLUS_PLUS,
- anon_sym_DASH_DASH,
- STATE(1757), 2,
- sym_template_string,
- sym_arguments,
- ACTIONS(4199), 11,
- anon_sym_STAR,
- anon_sym_in,
- anon_sym_GT,
- anon_sym_GT_GT,
- anon_sym_AMP,
- anon_sym_PIPE,
- anon_sym_PLUS,
- anon_sym_DASH,
- anon_sym_SLASH,
- anon_sym_EQ_EQ,
- anon_sym_BANG_EQ,
- ACTIONS(4201), 16,
- sym__ternary_qmark,
- anon_sym_RBRACE,
- anon_sym_COLON,
- anon_sym_AMP_AMP,
- anon_sym_PIPE_PIPE,
- anon_sym_GT_GT_GT,
- anon_sym_LT_LT,
- anon_sym_CARET,
- anon_sym_PERCENT,
- anon_sym_STAR_STAR,
- anon_sym_LT_EQ,
- anon_sym_EQ_EQ_EQ,
- anon_sym_BANG_EQ_EQ,
- anon_sym_GT_EQ,
- anon_sym_QMARK_QMARK,
- anon_sym_instanceof,
- [72464] = 32,
- ACTIONS(825), 1,
- anon_sym_BQUOTE,
- ACTIONS(3969), 1,
- anon_sym_LPAREN,
- ACTIONS(3971), 1,
- anon_sym_LBRACK,
- ACTIONS(3973), 1,
- anon_sym_DOT,
- ACTIONS(4051), 1,
- anon_sym_as,
- ACTIONS(4055), 1,
- anon_sym_BANG,
- ACTIONS(4059), 1,
- anon_sym_QMARK_DOT,
- ACTIONS(4093), 1,
- anon_sym_satisfies,
- ACTIONS(5276), 1,
- anon_sym_AMP_AMP,
- ACTIONS(5278), 1,
- anon_sym_PIPE_PIPE,
- ACTIONS(5280), 1,
- anon_sym_GT_GT,
- ACTIONS(5284), 1,
- anon_sym_AMP,
- ACTIONS(5286), 1,
- anon_sym_CARET,
- ACTIONS(5288), 1,
- anon_sym_PIPE,
- ACTIONS(5292), 1,
- anon_sym_PERCENT,
- ACTIONS(5294), 1,
- anon_sym_STAR_STAR,
- ACTIONS(5296), 1,
- anon_sym_LT,
- ACTIONS(5304), 1,
- anon_sym_QMARK_QMARK,
- ACTIONS(5306), 1,
- sym__ternary_qmark,
- STATE(1447), 1,
- sym_type_arguments,
- STATE(5080), 1,
- sym_optional_chain,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(4091), 2,
- anon_sym_PLUS_PLUS,
- anon_sym_DASH_DASH,
- ACTIONS(4210), 2,
- anon_sym_RBRACE,
- anon_sym_COLON,
- ACTIONS(5272), 2,
- anon_sym_STAR,
- anon_sym_SLASH,
- ACTIONS(5274), 2,
- anon_sym_in,
- anon_sym_GT,
- ACTIONS(5282), 2,
- anon_sym_GT_GT_GT,
- anon_sym_LT_LT,
- ACTIONS(5290), 2,
- anon_sym_PLUS,
- anon_sym_DASH,
- ACTIONS(5300), 2,
- anon_sym_EQ_EQ,
- anon_sym_BANG_EQ,
- ACTIONS(5302), 2,
- anon_sym_EQ_EQ_EQ,
- anon_sym_BANG_EQ_EQ,
- STATE(1757), 2,
- sym_template_string,
- sym_arguments,
- ACTIONS(5298), 3,
- anon_sym_LT_EQ,
- anon_sym_GT_EQ,
- anon_sym_instanceof,
- [72573] = 12,
- ACTIONS(825), 1,
- anon_sym_BQUOTE,
- ACTIONS(3969), 1,
- anon_sym_LPAREN,
- ACTIONS(3971), 1,
- anon_sym_LBRACK,
- ACTIONS(3973), 1,
- anon_sym_DOT,
- ACTIONS(4059), 1,
- anon_sym_QMARK_DOT,
- ACTIONS(5327), 1,
- anon_sym_LT,
- STATE(1447), 1,
- sym_type_arguments,
- STATE(5080), 1,
- sym_optional_chain,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- STATE(1757), 2,
- sym_template_string,
- sym_arguments,
- ACTIONS(4230), 12,
- anon_sym_STAR,
- anon_sym_BANG,
- anon_sym_in,
- anon_sym_GT,
- anon_sym_GT_GT,
- anon_sym_AMP,
- anon_sym_PIPE,
- anon_sym_PLUS,
- anon_sym_DASH,
- anon_sym_SLASH,
- anon_sym_EQ_EQ,
- anon_sym_BANG_EQ,
- ACTIONS(4232), 20,
- sym__ternary_qmark,
- anon_sym_as,
- anon_sym_RBRACE,
- anon_sym_COLON,
- anon_sym_AMP_AMP,
- anon_sym_PIPE_PIPE,
- anon_sym_GT_GT_GT,
- anon_sym_LT_LT,
- anon_sym_CARET,
- anon_sym_PERCENT,
- anon_sym_STAR_STAR,
- anon_sym_LT_EQ,
- anon_sym_EQ_EQ_EQ,
- anon_sym_BANG_EQ_EQ,
- anon_sym_GT_EQ,
- anon_sym_QMARK_QMARK,
- anon_sym_instanceof,
- anon_sym_PLUS_PLUS,
- anon_sym_DASH_DASH,
- anon_sym_satisfies,
- [72642] = 3,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(4488), 13,
- anon_sym_STAR,
- anon_sym_BANG,
- anon_sym_in,
- anon_sym_GT,
- anon_sym_GT_GT,
- anon_sym_AMP,
- anon_sym_PIPE,
- anon_sym_PLUS,
- anon_sym_DASH,
- anon_sym_SLASH,
- anon_sym_LT,
- anon_sym_EQ_EQ,
- anon_sym_BANG_EQ,
- ACTIONS(4490), 29,
- sym__automatic_semicolon,
- sym__ternary_qmark,
- anon_sym_as,
- anon_sym_COMMA,
- anon_sym_RBRACE,
- anon_sym_LPAREN,
- anon_sym_of,
- anon_sym_SEMI,
- anon_sym_LBRACK,
- anon_sym_DOT,
- anon_sym_QMARK_DOT,
- anon_sym_AMP_AMP,
- anon_sym_PIPE_PIPE,
- anon_sym_GT_GT_GT,
- anon_sym_LT_LT,
- anon_sym_CARET,
- anon_sym_PERCENT,
- anon_sym_STAR_STAR,
- anon_sym_LT_EQ,
- anon_sym_EQ_EQ_EQ,
- anon_sym_BANG_EQ_EQ,
- anon_sym_GT_EQ,
- anon_sym_QMARK_QMARK,
- anon_sym_instanceof,
- anon_sym_PLUS_PLUS,
- anon_sym_DASH_DASH,
- anon_sym_BQUOTE,
- anon_sym_satisfies,
- anon_sym_extends,
- [72693] = 32,
- ACTIONS(89), 1,
- anon_sym_BQUOTE,
- ACTIONS(4059), 1,
- anon_sym_QMARK_DOT,
- ACTIONS(4519), 1,
- anon_sym_LPAREN,
- ACTIONS(4523), 1,
- anon_sym_LBRACK,
- ACTIONS(4525), 1,
- anon_sym_DOT,
- ACTIONS(4555), 1,
- anon_sym_as,
- ACTIONS(4562), 1,
- anon_sym_BANG,
- ACTIONS(4574), 1,
- anon_sym_satisfies,
- ACTIONS(5125), 1,
- anon_sym_AMP_AMP,
- ACTIONS(5127), 1,
- anon_sym_PIPE_PIPE,
- ACTIONS(5129), 1,
- anon_sym_GT_GT,
- ACTIONS(5133), 1,
- anon_sym_AMP,
- ACTIONS(5135), 1,
- anon_sym_CARET,
- ACTIONS(5137), 1,
- anon_sym_PIPE,
- ACTIONS(5141), 1,
- anon_sym_PERCENT,
- ACTIONS(5143), 1,
- anon_sym_STAR_STAR,
- ACTIONS(5145), 1,
- anon_sym_LT,
- ACTIONS(5153), 1,
- anon_sym_QMARK_QMARK,
- ACTIONS(5155), 1,
- sym__ternary_qmark,
- STATE(1812), 1,
- sym_type_arguments,
- STATE(4772), 1,
- sym_optional_chain,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(4545), 2,
- anon_sym_PLUS_PLUS,
- anon_sym_DASH_DASH,
- ACTIONS(4854), 2,
- sym__automatic_semicolon,
- anon_sym_SEMI,
- ACTIONS(5119), 2,
- anon_sym_STAR,
- anon_sym_SLASH,
- ACTIONS(5121), 2,
- anon_sym_in,
- anon_sym_GT,
- ACTIONS(5131), 2,
- anon_sym_GT_GT_GT,
- anon_sym_LT_LT,
- ACTIONS(5139), 2,
- anon_sym_PLUS,
- anon_sym_DASH,
- ACTIONS(5149), 2,
- anon_sym_EQ_EQ,
- anon_sym_BANG_EQ,
- ACTIONS(5151), 2,
- anon_sym_EQ_EQ_EQ,
- anon_sym_BANG_EQ_EQ,
- STATE(2133), 2,
- sym_template_string,
- sym_arguments,
- ACTIONS(5147), 3,
- anon_sym_LT_EQ,
- anon_sym_GT_EQ,
- anon_sym_instanceof,
- [72802] = 3,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(4492), 13,
- anon_sym_STAR,
- anon_sym_BANG,
- anon_sym_in,
- anon_sym_GT,
- anon_sym_GT_GT,
- anon_sym_AMP,
- anon_sym_PIPE,
- anon_sym_PLUS,
- anon_sym_DASH,
- anon_sym_SLASH,
- anon_sym_LT,
- anon_sym_EQ_EQ,
- anon_sym_BANG_EQ,
- ACTIONS(4494), 29,
- sym__automatic_semicolon,
- sym__ternary_qmark,
- anon_sym_as,
- anon_sym_COMMA,
- anon_sym_RBRACE,
- anon_sym_LPAREN,
- anon_sym_of,
- anon_sym_SEMI,
- anon_sym_LBRACK,
- anon_sym_DOT,
- anon_sym_QMARK_DOT,
- anon_sym_AMP_AMP,
- anon_sym_PIPE_PIPE,
- anon_sym_GT_GT_GT,
- anon_sym_LT_LT,
- anon_sym_CARET,
- anon_sym_PERCENT,
- anon_sym_STAR_STAR,
- anon_sym_LT_EQ,
- anon_sym_EQ_EQ_EQ,
- anon_sym_BANG_EQ_EQ,
- anon_sym_GT_EQ,
- anon_sym_QMARK_QMARK,
- anon_sym_instanceof,
- anon_sym_PLUS_PLUS,
- anon_sym_DASH_DASH,
- anon_sym_BQUOTE,
- anon_sym_satisfies,
- anon_sym_extends,
- [72853] = 3,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(4496), 13,
- anon_sym_STAR,
- anon_sym_BANG,
- anon_sym_in,
- anon_sym_GT,
- anon_sym_GT_GT,
- anon_sym_AMP,
- anon_sym_PIPE,
- anon_sym_PLUS,
- anon_sym_DASH,
- anon_sym_SLASH,
- anon_sym_LT,
- anon_sym_EQ_EQ,
- anon_sym_BANG_EQ,
- ACTIONS(4498), 29,
- sym__automatic_semicolon,
- sym__ternary_qmark,
- anon_sym_as,
- anon_sym_COMMA,
- anon_sym_RBRACE,
- anon_sym_LPAREN,
- anon_sym_of,
- anon_sym_SEMI,
- anon_sym_LBRACK,
- anon_sym_DOT,
- anon_sym_QMARK_DOT,
- anon_sym_AMP_AMP,
- anon_sym_PIPE_PIPE,
- anon_sym_GT_GT_GT,
- anon_sym_LT_LT,
- anon_sym_CARET,
- anon_sym_PERCENT,
- anon_sym_STAR_STAR,
- anon_sym_LT_EQ,
- anon_sym_EQ_EQ_EQ,
- anon_sym_BANG_EQ_EQ,
- anon_sym_GT_EQ,
- anon_sym_QMARK_QMARK,
- anon_sym_instanceof,
- anon_sym_PLUS_PLUS,
- anon_sym_DASH_DASH,
- anon_sym_BQUOTE,
- anon_sym_satisfies,
- anon_sym_extends,
- [72904] = 3,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(4500), 13,
- anon_sym_STAR,
- anon_sym_BANG,
- anon_sym_in,
- anon_sym_GT,
- anon_sym_GT_GT,
- anon_sym_AMP,
- anon_sym_PIPE,
- anon_sym_PLUS,
- anon_sym_DASH,
- anon_sym_SLASH,
- anon_sym_LT,
- anon_sym_EQ_EQ,
- anon_sym_BANG_EQ,
- ACTIONS(4502), 29,
- sym__automatic_semicolon,
- sym__ternary_qmark,
- anon_sym_as,
- anon_sym_COMMA,
- anon_sym_RBRACE,
- anon_sym_LPAREN,
- anon_sym_of,
- anon_sym_SEMI,
- anon_sym_LBRACK,
- anon_sym_DOT,
- anon_sym_QMARK_DOT,
- anon_sym_AMP_AMP,
- anon_sym_PIPE_PIPE,
- anon_sym_GT_GT_GT,
- anon_sym_LT_LT,
- anon_sym_CARET,
- anon_sym_PERCENT,
- anon_sym_STAR_STAR,
- anon_sym_LT_EQ,
- anon_sym_EQ_EQ_EQ,
- anon_sym_BANG_EQ_EQ,
- anon_sym_GT_EQ,
- anon_sym_QMARK_QMARK,
- anon_sym_instanceof,
- anon_sym_PLUS_PLUS,
- anon_sym_DASH_DASH,
- anon_sym_BQUOTE,
- anon_sym_satisfies,
- anon_sym_extends,
- [72955] = 3,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(4504), 13,
- anon_sym_STAR,
- anon_sym_BANG,
- anon_sym_in,
- anon_sym_GT,
- anon_sym_GT_GT,
- anon_sym_AMP,
- anon_sym_PIPE,
- anon_sym_PLUS,
- anon_sym_DASH,
- anon_sym_SLASH,
- anon_sym_LT,
- anon_sym_EQ_EQ,
- anon_sym_BANG_EQ,
- ACTIONS(4506), 29,
- sym__automatic_semicolon,
- sym__ternary_qmark,
- anon_sym_as,
- anon_sym_COMMA,
- anon_sym_RBRACE,
- anon_sym_LPAREN,
- anon_sym_of,
- anon_sym_SEMI,
- anon_sym_LBRACK,
- anon_sym_DOT,
- anon_sym_QMARK_DOT,
- anon_sym_AMP_AMP,
- anon_sym_PIPE_PIPE,
- anon_sym_GT_GT_GT,
- anon_sym_LT_LT,
- anon_sym_CARET,
- anon_sym_PERCENT,
- anon_sym_STAR_STAR,
- anon_sym_LT_EQ,
- anon_sym_EQ_EQ_EQ,
- anon_sym_BANG_EQ_EQ,
- anon_sym_GT_EQ,
- anon_sym_QMARK_QMARK,
- anon_sym_instanceof,
- anon_sym_PLUS_PLUS,
- anon_sym_DASH_DASH,
- anon_sym_BQUOTE,
- anon_sym_satisfies,
- anon_sym_extends,
- [73006] = 4,
- ACTIONS(4508), 1,
- anon_sym_DOT,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(4097), 13,
- anon_sym_STAR,
- anon_sym_BANG,
- anon_sym_in,
- anon_sym_GT,
- anon_sym_GT_GT,
- anon_sym_AMP,
- anon_sym_PIPE,
- anon_sym_PLUS,
- anon_sym_DASH,
- anon_sym_SLASH,
- anon_sym_LT,
- anon_sym_EQ_EQ,
- anon_sym_BANG_EQ,
- ACTIONS(4099), 28,
- sym__automatic_semicolon,
- sym__ternary_qmark,
- anon_sym_as,
- anon_sym_COMMA,
- anon_sym_RBRACE,
- anon_sym_LPAREN,
- anon_sym_of,
- anon_sym_SEMI,
- anon_sym_LBRACK,
- anon_sym_QMARK_DOT,
- anon_sym_AMP_AMP,
- anon_sym_PIPE_PIPE,
- anon_sym_GT_GT_GT,
- anon_sym_LT_LT,
- anon_sym_CARET,
- anon_sym_PERCENT,
- anon_sym_STAR_STAR,
- anon_sym_LT_EQ,
- anon_sym_EQ_EQ_EQ,
- anon_sym_BANG_EQ_EQ,
- anon_sym_GT_EQ,
- anon_sym_QMARK_QMARK,
- anon_sym_instanceof,
- anon_sym_PLUS_PLUS,
- anon_sym_DASH_DASH,
- anon_sym_BQUOTE,
- anon_sym_satisfies,
- anon_sym_extends,
- [73059] = 3,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(3596), 13,
- anon_sym_STAR,
- anon_sym_BANG,
- anon_sym_in,
- anon_sym_GT,
- anon_sym_GT_GT,
- anon_sym_AMP,
- anon_sym_PIPE,
- anon_sym_PLUS,
- anon_sym_DASH,
- anon_sym_SLASH,
- anon_sym_LT,
- anon_sym_EQ_EQ,
- anon_sym_BANG_EQ,
- ACTIONS(3446), 29,
- sym__automatic_semicolon,
- sym__ternary_qmark,
- anon_sym_as,
- anon_sym_COMMA,
- anon_sym_RBRACE,
- anon_sym_LPAREN,
- anon_sym_of,
- anon_sym_SEMI,
- anon_sym_LBRACK,
- anon_sym_DOT,
- anon_sym_QMARK_DOT,
- anon_sym_AMP_AMP,
- anon_sym_PIPE_PIPE,
- anon_sym_GT_GT_GT,
- anon_sym_LT_LT,
- anon_sym_CARET,
- anon_sym_PERCENT,
- anon_sym_STAR_STAR,
- anon_sym_LT_EQ,
- anon_sym_EQ_EQ_EQ,
- anon_sym_BANG_EQ_EQ,
- anon_sym_GT_EQ,
- anon_sym_QMARK_QMARK,
- anon_sym_instanceof,
- anon_sym_PLUS_PLUS,
- anon_sym_DASH_DASH,
- anon_sym_BQUOTE,
- anon_sym_satisfies,
- anon_sym_extends,
- [73110] = 3,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(3598), 13,
- anon_sym_STAR,
- anon_sym_BANG,
- anon_sym_in,
- anon_sym_GT,
- anon_sym_GT_GT,
- anon_sym_AMP,
- anon_sym_PIPE,
- anon_sym_PLUS,
- anon_sym_DASH,
- anon_sym_SLASH,
- anon_sym_LT,
- anon_sym_EQ_EQ,
- anon_sym_BANG_EQ,
- ACTIONS(3382), 29,
- sym__automatic_semicolon,
- sym__ternary_qmark,
- anon_sym_as,
- anon_sym_COMMA,
- anon_sym_RBRACE,
- anon_sym_LPAREN,
- anon_sym_of,
- anon_sym_SEMI,
- anon_sym_LBRACK,
- anon_sym_DOT,
- anon_sym_QMARK_DOT,
- anon_sym_AMP_AMP,
- anon_sym_PIPE_PIPE,
- anon_sym_GT_GT_GT,
- anon_sym_LT_LT,
- anon_sym_CARET,
- anon_sym_PERCENT,
- anon_sym_STAR_STAR,
- anon_sym_LT_EQ,
- anon_sym_EQ_EQ_EQ,
- anon_sym_BANG_EQ_EQ,
- anon_sym_GT_EQ,
- anon_sym_QMARK_QMARK,
- anon_sym_instanceof,
- anon_sym_PLUS_PLUS,
- anon_sym_DASH_DASH,
- anon_sym_BQUOTE,
- anon_sym_satisfies,
- anon_sym_extends,
- [73161] = 4,
- ACTIONS(4101), 1,
- anon_sym_DOT,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(4097), 13,
- anon_sym_STAR,
- anon_sym_BANG,
- anon_sym_in,
- anon_sym_GT,
- anon_sym_GT_GT,
- anon_sym_AMP,
- anon_sym_PIPE,
- anon_sym_PLUS,
- anon_sym_DASH,
- anon_sym_SLASH,
- anon_sym_LT,
- anon_sym_EQ_EQ,
- anon_sym_BANG_EQ,
- ACTIONS(4099), 28,
- sym__automatic_semicolon,
- sym__ternary_qmark,
- anon_sym_as,
- anon_sym_COMMA,
- anon_sym_RBRACE,
- anon_sym_LPAREN,
- anon_sym_of,
- anon_sym_SEMI,
- anon_sym_LBRACK,
- anon_sym_QMARK_DOT,
- anon_sym_AMP_AMP,
- anon_sym_PIPE_PIPE,
- anon_sym_GT_GT_GT,
- anon_sym_LT_LT,
- anon_sym_CARET,
- anon_sym_PERCENT,
- anon_sym_STAR_STAR,
- anon_sym_LT_EQ,
- anon_sym_EQ_EQ_EQ,
- anon_sym_BANG_EQ_EQ,
- anon_sym_GT_EQ,
- anon_sym_QMARK_QMARK,
- anon_sym_instanceof,
- anon_sym_PLUS_PLUS,
- anon_sym_DASH_DASH,
- anon_sym_BQUOTE,
- anon_sym_satisfies,
- anon_sym_extends,
- [73214] = 3,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(4104), 13,
- anon_sym_STAR,
- anon_sym_BANG,
- anon_sym_in,
- anon_sym_GT,
- anon_sym_GT_GT,
- anon_sym_AMP,
- anon_sym_PIPE,
- anon_sym_PLUS,
- anon_sym_DASH,
- anon_sym_SLASH,
- anon_sym_LT,
- anon_sym_EQ_EQ,
- anon_sym_BANG_EQ,
- ACTIONS(4106), 29,
- sym__automatic_semicolon,
- sym__ternary_qmark,
- anon_sym_as,
- anon_sym_COMMA,
- anon_sym_RBRACE,
- anon_sym_LPAREN,
- anon_sym_of,
- anon_sym_SEMI,
- anon_sym_LBRACK,
- anon_sym_DOT,
- anon_sym_QMARK_DOT,
- anon_sym_AMP_AMP,
- anon_sym_PIPE_PIPE,
- anon_sym_GT_GT_GT,
- anon_sym_LT_LT,
- anon_sym_CARET,
- anon_sym_PERCENT,
- anon_sym_STAR_STAR,
- anon_sym_LT_EQ,
- anon_sym_EQ_EQ_EQ,
- anon_sym_BANG_EQ_EQ,
- anon_sym_GT_EQ,
- anon_sym_QMARK_QMARK,
- anon_sym_instanceof,
- anon_sym_PLUS_PLUS,
- anon_sym_DASH_DASH,
- anon_sym_BQUOTE,
- anon_sym_satisfies,
- anon_sym_extends,
- [73265] = 6,
- ACTIONS(5083), 1,
- anon_sym_AMP,
- ACTIONS(5085), 1,
- anon_sym_PIPE,
- ACTIONS(5087), 1,
- anon_sym_extends,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(4104), 11,
- anon_sym_STAR,
- anon_sym_BANG,
- anon_sym_in,
- anon_sym_GT,
- anon_sym_GT_GT,
- anon_sym_PLUS,
- anon_sym_DASH,
- anon_sym_SLASH,
- anon_sym_LT,
- anon_sym_EQ_EQ,
- anon_sym_BANG_EQ,
- ACTIONS(4106), 28,
- sym__automatic_semicolon,
- sym__ternary_qmark,
- anon_sym_as,
- anon_sym_COMMA,
- anon_sym_RBRACE,
- anon_sym_LPAREN,
- anon_sym_of,
- anon_sym_SEMI,
- anon_sym_LBRACK,
- anon_sym_DOT,
- anon_sym_QMARK_DOT,
- anon_sym_AMP_AMP,
- anon_sym_PIPE_PIPE,
- anon_sym_GT_GT_GT,
- anon_sym_LT_LT,
- anon_sym_CARET,
- anon_sym_PERCENT,
- anon_sym_STAR_STAR,
- anon_sym_LT_EQ,
- anon_sym_EQ_EQ_EQ,
- anon_sym_BANG_EQ_EQ,
- anon_sym_GT_EQ,
- anon_sym_QMARK_QMARK,
- anon_sym_instanceof,
- anon_sym_PLUS_PLUS,
- anon_sym_DASH_DASH,
- anon_sym_BQUOTE,
- anon_sym_satisfies,
- [73322] = 3,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(4114), 13,
- anon_sym_STAR,
- anon_sym_BANG,
- anon_sym_in,
- anon_sym_GT,
- anon_sym_GT_GT,
- anon_sym_AMP,
- anon_sym_PIPE,
- anon_sym_PLUS,
- anon_sym_DASH,
- anon_sym_SLASH,
- anon_sym_LT,
- anon_sym_EQ_EQ,
- anon_sym_BANG_EQ,
- ACTIONS(4116), 29,
- sym__automatic_semicolon,
- sym__ternary_qmark,
- anon_sym_as,
- anon_sym_COMMA,
- anon_sym_RBRACE,
- anon_sym_LPAREN,
- anon_sym_of,
- anon_sym_SEMI,
- anon_sym_LBRACK,
- anon_sym_DOT,
- anon_sym_QMARK_DOT,
- anon_sym_AMP_AMP,
- anon_sym_PIPE_PIPE,
- anon_sym_GT_GT_GT,
- anon_sym_LT_LT,
- anon_sym_CARET,
- anon_sym_PERCENT,
- anon_sym_STAR_STAR,
- anon_sym_LT_EQ,
- anon_sym_EQ_EQ_EQ,
- anon_sym_BANG_EQ_EQ,
- anon_sym_GT_EQ,
- anon_sym_QMARK_QMARK,
- anon_sym_instanceof,
- anon_sym_PLUS_PLUS,
- anon_sym_DASH_DASH,
- anon_sym_BQUOTE,
- anon_sym_satisfies,
- anon_sym_extends,
- [73373] = 3,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(4118), 13,
- anon_sym_STAR,
- anon_sym_BANG,
- anon_sym_in,
- anon_sym_GT,
- anon_sym_GT_GT,
- anon_sym_AMP,
- anon_sym_PIPE,
- anon_sym_PLUS,
- anon_sym_DASH,
- anon_sym_SLASH,
- anon_sym_LT,
- anon_sym_EQ_EQ,
- anon_sym_BANG_EQ,
- ACTIONS(4120), 29,
- sym__automatic_semicolon,
- sym__ternary_qmark,
- anon_sym_as,
- anon_sym_COMMA,
- anon_sym_RBRACE,
- anon_sym_LPAREN,
- anon_sym_of,
- anon_sym_SEMI,
- anon_sym_LBRACK,
- anon_sym_DOT,
- anon_sym_QMARK_DOT,
- anon_sym_AMP_AMP,
- anon_sym_PIPE_PIPE,
- anon_sym_GT_GT_GT,
- anon_sym_LT_LT,
- anon_sym_CARET,
- anon_sym_PERCENT,
- anon_sym_STAR_STAR,
- anon_sym_LT_EQ,
- anon_sym_EQ_EQ_EQ,
- anon_sym_BANG_EQ_EQ,
- anon_sym_GT_EQ,
- anon_sym_QMARK_QMARK,
- anon_sym_instanceof,
- anon_sym_PLUS_PLUS,
- anon_sym_DASH_DASH,
- anon_sym_BQUOTE,
- anon_sym_satisfies,
- anon_sym_extends,
- [73424] = 3,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(4122), 13,
- anon_sym_STAR,
- anon_sym_BANG,
- anon_sym_in,
- anon_sym_GT,
- anon_sym_GT_GT,
- anon_sym_AMP,
- anon_sym_PIPE,
- anon_sym_PLUS,
- anon_sym_DASH,
- anon_sym_SLASH,
- anon_sym_LT,
- anon_sym_EQ_EQ,
- anon_sym_BANG_EQ,
- ACTIONS(4124), 29,
- sym__automatic_semicolon,
- sym__ternary_qmark,
- anon_sym_as,
- anon_sym_COMMA,
- anon_sym_RBRACE,
- anon_sym_LPAREN,
- anon_sym_of,
- anon_sym_SEMI,
- anon_sym_LBRACK,
- anon_sym_DOT,
- anon_sym_QMARK_DOT,
- anon_sym_AMP_AMP,
- anon_sym_PIPE_PIPE,
- anon_sym_GT_GT_GT,
- anon_sym_LT_LT,
- anon_sym_CARET,
- anon_sym_PERCENT,
- anon_sym_STAR_STAR,
- anon_sym_LT_EQ,
- anon_sym_EQ_EQ_EQ,
- anon_sym_BANG_EQ_EQ,
- anon_sym_GT_EQ,
- anon_sym_QMARK_QMARK,
- anon_sym_instanceof,
- anon_sym_PLUS_PLUS,
- anon_sym_DASH_DASH,
- anon_sym_BQUOTE,
- anon_sym_satisfies,
- anon_sym_extends,
- [73475] = 3,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(4126), 13,
- anon_sym_STAR,
- anon_sym_BANG,
- anon_sym_in,
- anon_sym_GT,
- anon_sym_GT_GT,
- anon_sym_AMP,
- anon_sym_PIPE,
- anon_sym_PLUS,
- anon_sym_DASH,
- anon_sym_SLASH,
- anon_sym_LT,
- anon_sym_EQ_EQ,
- anon_sym_BANG_EQ,
- ACTIONS(4128), 29,
- sym__automatic_semicolon,
- sym__ternary_qmark,
- anon_sym_as,
- anon_sym_COMMA,
- anon_sym_RBRACE,
- anon_sym_LPAREN,
- anon_sym_of,
- anon_sym_SEMI,
- anon_sym_LBRACK,
- anon_sym_DOT,
- anon_sym_QMARK_DOT,
- anon_sym_AMP_AMP,
- anon_sym_PIPE_PIPE,
- anon_sym_GT_GT_GT,
- anon_sym_LT_LT,
- anon_sym_CARET,
- anon_sym_PERCENT,
- anon_sym_STAR_STAR,
- anon_sym_LT_EQ,
- anon_sym_EQ_EQ_EQ,
- anon_sym_BANG_EQ_EQ,
- anon_sym_GT_EQ,
- anon_sym_QMARK_QMARK,
- anon_sym_instanceof,
- anon_sym_PLUS_PLUS,
- anon_sym_DASH_DASH,
- anon_sym_BQUOTE,
- anon_sym_satisfies,
- anon_sym_extends,
- [73526] = 3,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(4130), 13,
- anon_sym_STAR,
- anon_sym_BANG,
- anon_sym_in,
- anon_sym_GT,
- anon_sym_GT_GT,
- anon_sym_AMP,
- anon_sym_PIPE,
- anon_sym_PLUS,
- anon_sym_DASH,
- anon_sym_SLASH,
- anon_sym_LT,
- anon_sym_EQ_EQ,
- anon_sym_BANG_EQ,
- ACTIONS(4132), 29,
- sym__automatic_semicolon,
- sym__ternary_qmark,
- anon_sym_as,
- anon_sym_COMMA,
- anon_sym_RBRACE,
- anon_sym_LPAREN,
- anon_sym_of,
- anon_sym_SEMI,
- anon_sym_LBRACK,
- anon_sym_DOT,
- anon_sym_QMARK_DOT,
- anon_sym_AMP_AMP,
- anon_sym_PIPE_PIPE,
- anon_sym_GT_GT_GT,
- anon_sym_LT_LT,
- anon_sym_CARET,
- anon_sym_PERCENT,
- anon_sym_STAR_STAR,
- anon_sym_LT_EQ,
- anon_sym_EQ_EQ_EQ,
- anon_sym_BANG_EQ_EQ,
- anon_sym_GT_EQ,
- anon_sym_QMARK_QMARK,
- anon_sym_instanceof,
- anon_sym_PLUS_PLUS,
- anon_sym_DASH_DASH,
- anon_sym_BQUOTE,
- anon_sym_satisfies,
- anon_sym_extends,
- [73577] = 4,
- ACTIONS(5083), 1,
- anon_sym_AMP,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(4134), 12,
- anon_sym_STAR,
- anon_sym_BANG,
- anon_sym_in,
- anon_sym_GT,
- anon_sym_GT_GT,
- anon_sym_PIPE,
- anon_sym_PLUS,
- anon_sym_DASH,
- anon_sym_SLASH,
- anon_sym_LT,
- anon_sym_EQ_EQ,
- anon_sym_BANG_EQ,
- ACTIONS(4136), 29,
- sym__automatic_semicolon,
- sym__ternary_qmark,
- anon_sym_as,
- anon_sym_COMMA,
- anon_sym_RBRACE,
- anon_sym_LPAREN,
- anon_sym_of,
- anon_sym_SEMI,
- anon_sym_LBRACK,
- anon_sym_DOT,
- anon_sym_QMARK_DOT,
- anon_sym_AMP_AMP,
- anon_sym_PIPE_PIPE,
- anon_sym_GT_GT_GT,
- anon_sym_LT_LT,
- anon_sym_CARET,
- anon_sym_PERCENT,
- anon_sym_STAR_STAR,
- anon_sym_LT_EQ,
- anon_sym_EQ_EQ_EQ,
- anon_sym_BANG_EQ_EQ,
- anon_sym_GT_EQ,
- anon_sym_QMARK_QMARK,
- anon_sym_instanceof,
- anon_sym_PLUS_PLUS,
- anon_sym_DASH_DASH,
- anon_sym_BQUOTE,
- anon_sym_satisfies,
- anon_sym_extends,
- [73630] = 3,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(4138), 13,
- anon_sym_STAR,
- anon_sym_BANG,
- anon_sym_in,
- anon_sym_GT,
- anon_sym_GT_GT,
- anon_sym_AMP,
- anon_sym_PIPE,
- anon_sym_PLUS,
- anon_sym_DASH,
- anon_sym_SLASH,
- anon_sym_LT,
- anon_sym_EQ_EQ,
- anon_sym_BANG_EQ,
- ACTIONS(4140), 29,
- sym__automatic_semicolon,
- sym__ternary_qmark,
- anon_sym_as,
- anon_sym_COMMA,
- anon_sym_RBRACE,
- anon_sym_LPAREN,
- anon_sym_of,
- anon_sym_SEMI,
- anon_sym_LBRACK,
- anon_sym_DOT,
- anon_sym_QMARK_DOT,
- anon_sym_AMP_AMP,
- anon_sym_PIPE_PIPE,
- anon_sym_GT_GT_GT,
- anon_sym_LT_LT,
- anon_sym_CARET,
- anon_sym_PERCENT,
- anon_sym_STAR_STAR,
- anon_sym_LT_EQ,
- anon_sym_EQ_EQ_EQ,
- anon_sym_BANG_EQ_EQ,
- anon_sym_GT_EQ,
- anon_sym_QMARK_QMARK,
- anon_sym_instanceof,
- anon_sym_PLUS_PLUS,
- anon_sym_DASH_DASH,
- anon_sym_BQUOTE,
- anon_sym_satisfies,
- anon_sym_extends,
- [73681] = 3,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(4470), 13,
- anon_sym_STAR,
- anon_sym_BANG,
- anon_sym_in,
- anon_sym_GT,
- anon_sym_GT_GT,
- anon_sym_AMP,
- anon_sym_PIPE,
- anon_sym_PLUS,
- anon_sym_DASH,
- anon_sym_SLASH,
- anon_sym_LT,
- anon_sym_EQ_EQ,
- anon_sym_BANG_EQ,
- ACTIONS(4472), 29,
- sym__automatic_semicolon,
- sym__ternary_qmark,
- anon_sym_as,
- anon_sym_COMMA,
- anon_sym_RBRACE,
- anon_sym_LPAREN,
- anon_sym_of,
- anon_sym_SEMI,
- anon_sym_LBRACK,
- anon_sym_DOT,
- anon_sym_QMARK_DOT,
- anon_sym_AMP_AMP,
- anon_sym_PIPE_PIPE,
- anon_sym_GT_GT_GT,
- anon_sym_LT_LT,
- anon_sym_CARET,
- anon_sym_PERCENT,
- anon_sym_STAR_STAR,
- anon_sym_LT_EQ,
- anon_sym_EQ_EQ_EQ,
- anon_sym_BANG_EQ_EQ,
- anon_sym_GT_EQ,
- anon_sym_QMARK_QMARK,
- anon_sym_instanceof,
- anon_sym_PLUS_PLUS,
- anon_sym_DASH_DASH,
- anon_sym_BQUOTE,
- anon_sym_satisfies,
- anon_sym_extends,
- [73732] = 3,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(2321), 13,
- anon_sym_STAR,
- anon_sym_BANG,
- anon_sym_in,
- anon_sym_GT,
- anon_sym_GT_GT,
- anon_sym_AMP,
- anon_sym_PIPE,
- anon_sym_PLUS,
- anon_sym_DASH,
- anon_sym_SLASH,
- anon_sym_LT,
- anon_sym_EQ_EQ,
- anon_sym_BANG_EQ,
- ACTIONS(2319), 29,
- sym__automatic_semicolon,
- sym__ternary_qmark,
- anon_sym_as,
- anon_sym_COMMA,
- anon_sym_RBRACE,
- anon_sym_LPAREN,
- anon_sym_of,
- anon_sym_SEMI,
- anon_sym_LBRACK,
- anon_sym_DOT,
- anon_sym_QMARK_DOT,
- anon_sym_AMP_AMP,
- anon_sym_PIPE_PIPE,
- anon_sym_GT_GT_GT,
- anon_sym_LT_LT,
- anon_sym_CARET,
- anon_sym_PERCENT,
- anon_sym_STAR_STAR,
- anon_sym_LT_EQ,
- anon_sym_EQ_EQ_EQ,
- anon_sym_BANG_EQ_EQ,
- anon_sym_GT_EQ,
- anon_sym_QMARK_QMARK,
- anon_sym_instanceof,
- anon_sym_PLUS_PLUS,
- anon_sym_DASH_DASH,
- anon_sym_BQUOTE,
- anon_sym_satisfies,
- anon_sym_extends,
- [73783] = 3,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(4511), 13,
- anon_sym_STAR,
- anon_sym_BANG,
- anon_sym_in,
- anon_sym_GT,
- anon_sym_GT_GT,
- anon_sym_AMP,
- anon_sym_PIPE,
- anon_sym_PLUS,
- anon_sym_DASH,
- anon_sym_SLASH,
- anon_sym_LT,
- anon_sym_EQ_EQ,
- anon_sym_BANG_EQ,
- ACTIONS(4513), 29,
- sym__automatic_semicolon,
- sym__ternary_qmark,
- anon_sym_as,
- anon_sym_COMMA,
- anon_sym_RBRACE,
- anon_sym_LPAREN,
- anon_sym_of,
- anon_sym_SEMI,
- anon_sym_LBRACK,
- anon_sym_DOT,
- anon_sym_QMARK_DOT,
- anon_sym_AMP_AMP,
- anon_sym_PIPE_PIPE,
- anon_sym_GT_GT_GT,
- anon_sym_LT_LT,
- anon_sym_CARET,
- anon_sym_PERCENT,
- anon_sym_STAR_STAR,
- anon_sym_LT_EQ,
- anon_sym_EQ_EQ_EQ,
- anon_sym_BANG_EQ_EQ,
- anon_sym_GT_EQ,
- anon_sym_QMARK_QMARK,
- anon_sym_instanceof,
- anon_sym_PLUS_PLUS,
- anon_sym_DASH_DASH,
- anon_sym_BQUOTE,
- anon_sym_satisfies,
- anon_sym_extends,
- [73834] = 3,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(4146), 13,
- anon_sym_STAR,
- anon_sym_BANG,
- anon_sym_in,
- anon_sym_GT,
- anon_sym_GT_GT,
- anon_sym_AMP,
- anon_sym_PIPE,
- anon_sym_PLUS,
- anon_sym_DASH,
- anon_sym_SLASH,
- anon_sym_LT,
- anon_sym_EQ_EQ,
- anon_sym_BANG_EQ,
- ACTIONS(4148), 29,
- sym__automatic_semicolon,
- sym__ternary_qmark,
- anon_sym_as,
- anon_sym_COMMA,
- anon_sym_RBRACE,
- anon_sym_LPAREN,
- anon_sym_of,
- anon_sym_SEMI,
- anon_sym_LBRACK,
- anon_sym_DOT,
- anon_sym_QMARK_DOT,
- anon_sym_AMP_AMP,
- anon_sym_PIPE_PIPE,
- anon_sym_GT_GT_GT,
- anon_sym_LT_LT,
- anon_sym_CARET,
- anon_sym_PERCENT,
- anon_sym_STAR_STAR,
- anon_sym_LT_EQ,
- anon_sym_EQ_EQ_EQ,
- anon_sym_BANG_EQ_EQ,
- anon_sym_GT_EQ,
- anon_sym_QMARK_QMARK,
- anon_sym_instanceof,
- anon_sym_PLUS_PLUS,
- anon_sym_DASH_DASH,
- anon_sym_BQUOTE,
- anon_sym_satisfies,
- anon_sym_extends,
- [73885] = 3,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(4150), 13,
- anon_sym_STAR,
- anon_sym_BANG,
- anon_sym_in,
- anon_sym_GT,
- anon_sym_GT_GT,
- anon_sym_AMP,
- anon_sym_PIPE,
- anon_sym_PLUS,
- anon_sym_DASH,
- anon_sym_SLASH,
- anon_sym_LT,
- anon_sym_EQ_EQ,
- anon_sym_BANG_EQ,
- ACTIONS(4152), 29,
- sym__automatic_semicolon,
- sym__ternary_qmark,
- anon_sym_as,
- anon_sym_COMMA,
- anon_sym_RBRACE,
- anon_sym_LPAREN,
- anon_sym_of,
- anon_sym_SEMI,
- anon_sym_LBRACK,
- anon_sym_DOT,
- anon_sym_QMARK_DOT,
- anon_sym_AMP_AMP,
- anon_sym_PIPE_PIPE,
- anon_sym_GT_GT_GT,
- anon_sym_LT_LT,
- anon_sym_CARET,
- anon_sym_PERCENT,
- anon_sym_STAR_STAR,
- anon_sym_LT_EQ,
- anon_sym_EQ_EQ_EQ,
- anon_sym_BANG_EQ_EQ,
- anon_sym_GT_EQ,
- anon_sym_QMARK_QMARK,
- anon_sym_instanceof,
- anon_sym_PLUS_PLUS,
- anon_sym_DASH_DASH,
- anon_sym_BQUOTE,
- anon_sym_satisfies,
- anon_sym_extends,
- [73936] = 3,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(4154), 13,
- anon_sym_STAR,
- anon_sym_BANG,
- anon_sym_in,
- anon_sym_GT,
- anon_sym_GT_GT,
- anon_sym_AMP,
- anon_sym_PIPE,
- anon_sym_PLUS,
- anon_sym_DASH,
- anon_sym_SLASH,
- anon_sym_LT,
- anon_sym_EQ_EQ,
- anon_sym_BANG_EQ,
- ACTIONS(4156), 29,
- sym__automatic_semicolon,
- sym__ternary_qmark,
- anon_sym_as,
- anon_sym_COMMA,
- anon_sym_RBRACE,
- anon_sym_LPAREN,
- anon_sym_of,
- anon_sym_SEMI,
- anon_sym_LBRACK,
- anon_sym_DOT,
- anon_sym_QMARK_DOT,
- anon_sym_AMP_AMP,
- anon_sym_PIPE_PIPE,
- anon_sym_GT_GT_GT,
- anon_sym_LT_LT,
- anon_sym_CARET,
- anon_sym_PERCENT,
- anon_sym_STAR_STAR,
- anon_sym_LT_EQ,
- anon_sym_EQ_EQ_EQ,
- anon_sym_BANG_EQ_EQ,
- anon_sym_GT_EQ,
- anon_sym_QMARK_QMARK,
- anon_sym_instanceof,
- anon_sym_PLUS_PLUS,
- anon_sym_DASH_DASH,
- anon_sym_BQUOTE,
- anon_sym_satisfies,
- anon_sym_extends,
- [73987] = 3,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(4150), 13,
- anon_sym_STAR,
- anon_sym_BANG,
- anon_sym_in,
- anon_sym_GT,
- anon_sym_GT_GT,
- anon_sym_AMP,
- anon_sym_PIPE,
- anon_sym_PLUS,
- anon_sym_DASH,
- anon_sym_SLASH,
- anon_sym_LT,
- anon_sym_EQ_EQ,
- anon_sym_BANG_EQ,
- ACTIONS(4152), 29,
- sym__automatic_semicolon,
- sym__ternary_qmark,
- anon_sym_as,
- anon_sym_COMMA,
- anon_sym_RBRACE,
- anon_sym_LPAREN,
- anon_sym_of,
- anon_sym_SEMI,
- anon_sym_LBRACK,
- anon_sym_DOT,
- anon_sym_QMARK_DOT,
- anon_sym_AMP_AMP,
- anon_sym_PIPE_PIPE,
- anon_sym_GT_GT_GT,
- anon_sym_LT_LT,
- anon_sym_CARET,
- anon_sym_PERCENT,
- anon_sym_STAR_STAR,
- anon_sym_LT_EQ,
- anon_sym_EQ_EQ_EQ,
- anon_sym_BANG_EQ_EQ,
- anon_sym_GT_EQ,
- anon_sym_QMARK_QMARK,
- anon_sym_instanceof,
- anon_sym_PLUS_PLUS,
- anon_sym_DASH_DASH,
- anon_sym_BQUOTE,
- anon_sym_satisfies,
- anon_sym_extends,
- [74038] = 3,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(4154), 13,
- anon_sym_STAR,
- anon_sym_BANG,
- anon_sym_in,
- anon_sym_GT,
- anon_sym_GT_GT,
- anon_sym_AMP,
- anon_sym_PIPE,
- anon_sym_PLUS,
- anon_sym_DASH,
- anon_sym_SLASH,
- anon_sym_LT,
- anon_sym_EQ_EQ,
- anon_sym_BANG_EQ,
- ACTIONS(4156), 29,
- sym__automatic_semicolon,
- sym__ternary_qmark,
- anon_sym_as,
- anon_sym_COMMA,
- anon_sym_RBRACE,
- anon_sym_LPAREN,
- anon_sym_of,
- anon_sym_SEMI,
- anon_sym_LBRACK,
- anon_sym_DOT,
- anon_sym_QMARK_DOT,
- anon_sym_AMP_AMP,
- anon_sym_PIPE_PIPE,
- anon_sym_GT_GT_GT,
- anon_sym_LT_LT,
- anon_sym_CARET,
- anon_sym_PERCENT,
- anon_sym_STAR_STAR,
- anon_sym_LT_EQ,
- anon_sym_EQ_EQ_EQ,
- anon_sym_BANG_EQ_EQ,
- anon_sym_GT_EQ,
- anon_sym_QMARK_QMARK,
- anon_sym_instanceof,
- anon_sym_PLUS_PLUS,
- anon_sym_DASH_DASH,
- anon_sym_BQUOTE,
- anon_sym_satisfies,
- anon_sym_extends,
- [74089] = 3,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(4158), 13,
- anon_sym_STAR,
- anon_sym_BANG,
- anon_sym_in,
- anon_sym_GT,
- anon_sym_GT_GT,
- anon_sym_AMP,
- anon_sym_PIPE,
- anon_sym_PLUS,
- anon_sym_DASH,
- anon_sym_SLASH,
- anon_sym_LT,
- anon_sym_EQ_EQ,
- anon_sym_BANG_EQ,
- ACTIONS(4160), 29,
- sym__automatic_semicolon,
- sym__ternary_qmark,
- anon_sym_as,
- anon_sym_COMMA,
- anon_sym_RBRACE,
- anon_sym_LPAREN,
- anon_sym_of,
- anon_sym_SEMI,
- anon_sym_LBRACK,
- anon_sym_DOT,
- anon_sym_QMARK_DOT,
- anon_sym_AMP_AMP,
- anon_sym_PIPE_PIPE,
- anon_sym_GT_GT_GT,
- anon_sym_LT_LT,
- anon_sym_CARET,
- anon_sym_PERCENT,
- anon_sym_STAR_STAR,
- anon_sym_LT_EQ,
- anon_sym_EQ_EQ_EQ,
- anon_sym_BANG_EQ_EQ,
- anon_sym_GT_EQ,
- anon_sym_QMARK_QMARK,
- anon_sym_instanceof,
- anon_sym_PLUS_PLUS,
- anon_sym_DASH_DASH,
- anon_sym_BQUOTE,
- anon_sym_satisfies,
- anon_sym_extends,
- [74140] = 4,
- ACTIONS(4440), 1,
- anon_sym_EQ,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(4438), 13,
- anon_sym_STAR,
- anon_sym_BANG,
- anon_sym_in,
- anon_sym_GT,
- anon_sym_GT_GT,
- anon_sym_AMP,
- anon_sym_PIPE,
- anon_sym_PLUS,
- anon_sym_DASH,
- anon_sym_SLASH,
- anon_sym_LT,
- anon_sym_EQ_EQ,
- anon_sym_BANG_EQ,
- ACTIONS(4442), 28,
- sym__automatic_semicolon,
- sym__ternary_qmark,
- anon_sym_as,
- anon_sym_COMMA,
- anon_sym_RBRACE,
- anon_sym_LPAREN,
- anon_sym_of,
- anon_sym_SEMI,
- anon_sym_LBRACK,
- anon_sym_DOT,
- anon_sym_QMARK_DOT,
- anon_sym_AMP_AMP,
- anon_sym_PIPE_PIPE,
- anon_sym_GT_GT_GT,
- anon_sym_LT_LT,
- anon_sym_CARET,
- anon_sym_PERCENT,
- anon_sym_STAR_STAR,
- anon_sym_LT_EQ,
- anon_sym_EQ_EQ_EQ,
- anon_sym_BANG_EQ_EQ,
- anon_sym_GT_EQ,
- anon_sym_QMARK_QMARK,
- anon_sym_instanceof,
- anon_sym_PLUS_PLUS,
- anon_sym_DASH_DASH,
- anon_sym_BQUOTE,
- anon_sym_satisfies,
- [74193] = 3,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(4162), 13,
- anon_sym_STAR,
- anon_sym_BANG,
- anon_sym_in,
- anon_sym_GT,
- anon_sym_GT_GT,
- anon_sym_AMP,
- anon_sym_PIPE,
- anon_sym_PLUS,
- anon_sym_DASH,
- anon_sym_SLASH,
- anon_sym_LT,
- anon_sym_EQ_EQ,
- anon_sym_BANG_EQ,
- ACTIONS(4164), 29,
- sym__automatic_semicolon,
- sym__ternary_qmark,
- anon_sym_as,
- anon_sym_COMMA,
- anon_sym_RBRACE,
- anon_sym_LPAREN,
- anon_sym_of,
- anon_sym_SEMI,
- anon_sym_LBRACK,
- anon_sym_DOT,
- anon_sym_QMARK_DOT,
- anon_sym_AMP_AMP,
- anon_sym_PIPE_PIPE,
- anon_sym_GT_GT_GT,
- anon_sym_LT_LT,
- anon_sym_CARET,
- anon_sym_PERCENT,
- anon_sym_STAR_STAR,
- anon_sym_LT_EQ,
- anon_sym_EQ_EQ_EQ,
- anon_sym_BANG_EQ_EQ,
- anon_sym_GT_EQ,
- anon_sym_QMARK_QMARK,
- anon_sym_instanceof,
- anon_sym_PLUS_PLUS,
- anon_sym_DASH_DASH,
- anon_sym_BQUOTE,
- anon_sym_satisfies,
- anon_sym_extends,
- [74244] = 3,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(4158), 13,
- anon_sym_STAR,
- anon_sym_BANG,
- anon_sym_in,
- anon_sym_GT,
- anon_sym_GT_GT,
- anon_sym_AMP,
- anon_sym_PIPE,
- anon_sym_PLUS,
- anon_sym_DASH,
- anon_sym_SLASH,
- anon_sym_LT,
- anon_sym_EQ_EQ,
- anon_sym_BANG_EQ,
- ACTIONS(4160), 29,
- sym__automatic_semicolon,
- sym__ternary_qmark,
- anon_sym_as,
- anon_sym_COMMA,
- anon_sym_RBRACE,
- anon_sym_LPAREN,
- anon_sym_of,
- anon_sym_SEMI,
- anon_sym_LBRACK,
- anon_sym_DOT,
- anon_sym_QMARK_DOT,
- anon_sym_AMP_AMP,
- anon_sym_PIPE_PIPE,
- anon_sym_GT_GT_GT,
- anon_sym_LT_LT,
- anon_sym_CARET,
- anon_sym_PERCENT,
- anon_sym_STAR_STAR,
- anon_sym_LT_EQ,
- anon_sym_EQ_EQ_EQ,
- anon_sym_BANG_EQ_EQ,
- anon_sym_GT_EQ,
- anon_sym_QMARK_QMARK,
- anon_sym_instanceof,
- anon_sym_PLUS_PLUS,
- anon_sym_DASH_DASH,
- anon_sym_BQUOTE,
- anon_sym_satisfies,
- anon_sym_extends,
- [74295] = 3,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(4162), 13,
- anon_sym_STAR,
- anon_sym_BANG,
- anon_sym_in,
- anon_sym_GT,
- anon_sym_GT_GT,
- anon_sym_AMP,
- anon_sym_PIPE,
- anon_sym_PLUS,
- anon_sym_DASH,
- anon_sym_SLASH,
- anon_sym_LT,
- anon_sym_EQ_EQ,
- anon_sym_BANG_EQ,
- ACTIONS(4164), 29,
- sym__automatic_semicolon,
- sym__ternary_qmark,
- anon_sym_as,
- anon_sym_COMMA,
- anon_sym_RBRACE,
- anon_sym_LPAREN,
- anon_sym_of,
- anon_sym_SEMI,
- anon_sym_LBRACK,
- anon_sym_DOT,
- anon_sym_QMARK_DOT,
- anon_sym_AMP_AMP,
- anon_sym_PIPE_PIPE,
- anon_sym_GT_GT_GT,
- anon_sym_LT_LT,
- anon_sym_CARET,
- anon_sym_PERCENT,
- anon_sym_STAR_STAR,
- anon_sym_LT_EQ,
- anon_sym_EQ_EQ_EQ,
- anon_sym_BANG_EQ_EQ,
- anon_sym_GT_EQ,
- anon_sym_QMARK_QMARK,
- anon_sym_instanceof,
- anon_sym_PLUS_PLUS,
- anon_sym_DASH_DASH,
- anon_sym_BQUOTE,
- anon_sym_satisfies,
- anon_sym_extends,
- [74346] = 3,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(4166), 13,
- anon_sym_STAR,
- anon_sym_BANG,
- anon_sym_in,
- anon_sym_GT,
- anon_sym_GT_GT,
- anon_sym_AMP,
- anon_sym_PIPE,
- anon_sym_PLUS,
- anon_sym_DASH,
- anon_sym_SLASH,
- anon_sym_LT,
- anon_sym_EQ_EQ,
- anon_sym_BANG_EQ,
- ACTIONS(4168), 29,
- sym__automatic_semicolon,
- sym__ternary_qmark,
- anon_sym_as,
- anon_sym_COMMA,
- anon_sym_RBRACE,
- anon_sym_LPAREN,
- anon_sym_of,
- anon_sym_SEMI,
- anon_sym_LBRACK,
- anon_sym_DOT,
- anon_sym_QMARK_DOT,
- anon_sym_AMP_AMP,
- anon_sym_PIPE_PIPE,
- anon_sym_GT_GT_GT,
- anon_sym_LT_LT,
- anon_sym_CARET,
- anon_sym_PERCENT,
- anon_sym_STAR_STAR,
- anon_sym_LT_EQ,
- anon_sym_EQ_EQ_EQ,
- anon_sym_BANG_EQ_EQ,
- anon_sym_GT_EQ,
- anon_sym_QMARK_QMARK,
- anon_sym_instanceof,
- anon_sym_PLUS_PLUS,
- anon_sym_DASH_DASH,
- anon_sym_BQUOTE,
- anon_sym_satisfies,
- anon_sym_extends,
- [74397] = 3,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(4177), 13,
- anon_sym_STAR,
- anon_sym_BANG,
- anon_sym_in,
- anon_sym_GT,
- anon_sym_GT_GT,
- anon_sym_AMP,
- anon_sym_PIPE,
- anon_sym_PLUS,
- anon_sym_DASH,
- anon_sym_SLASH,
- anon_sym_LT,
- anon_sym_EQ_EQ,
- anon_sym_BANG_EQ,
- ACTIONS(4179), 29,
- sym__automatic_semicolon,
- sym__ternary_qmark,
- anon_sym_as,
- anon_sym_COMMA,
- anon_sym_RBRACE,
- anon_sym_LPAREN,
- anon_sym_of,
- anon_sym_SEMI,
- anon_sym_LBRACK,
- anon_sym_DOT,
- anon_sym_QMARK_DOT,
- anon_sym_AMP_AMP,
- anon_sym_PIPE_PIPE,
- anon_sym_GT_GT_GT,
- anon_sym_LT_LT,
- anon_sym_CARET,
- anon_sym_PERCENT,
- anon_sym_STAR_STAR,
- anon_sym_LT_EQ,
- anon_sym_EQ_EQ_EQ,
- anon_sym_BANG_EQ_EQ,
- anon_sym_GT_EQ,
- anon_sym_QMARK_QMARK,
- anon_sym_instanceof,
- anon_sym_PLUS_PLUS,
- anon_sym_DASH_DASH,
- anon_sym_BQUOTE,
- anon_sym_satisfies,
- anon_sym_extends,
- [74448] = 3,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(4166), 13,
- anon_sym_STAR,
- anon_sym_BANG,
- anon_sym_in,
- anon_sym_GT,
- anon_sym_GT_GT,
- anon_sym_AMP,
- anon_sym_PIPE,
- anon_sym_PLUS,
- anon_sym_DASH,
- anon_sym_SLASH,
- anon_sym_LT,
- anon_sym_EQ_EQ,
- anon_sym_BANG_EQ,
- ACTIONS(4168), 29,
- sym__automatic_semicolon,
- sym__ternary_qmark,
- anon_sym_as,
- anon_sym_COMMA,
- anon_sym_RBRACE,
- anon_sym_LPAREN,
- anon_sym_of,
- anon_sym_SEMI,
- anon_sym_LBRACK,
- anon_sym_DOT,
- anon_sym_QMARK_DOT,
- anon_sym_AMP_AMP,
- anon_sym_PIPE_PIPE,
- anon_sym_GT_GT_GT,
- anon_sym_LT_LT,
- anon_sym_CARET,
- anon_sym_PERCENT,
- anon_sym_STAR_STAR,
- anon_sym_LT_EQ,
- anon_sym_EQ_EQ_EQ,
- anon_sym_BANG_EQ_EQ,
- anon_sym_GT_EQ,
- anon_sym_QMARK_QMARK,
- anon_sym_instanceof,
- anon_sym_PLUS_PLUS,
- anon_sym_DASH_DASH,
- anon_sym_BQUOTE,
- anon_sym_satisfies,
- anon_sym_extends,
- [74499] = 3,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(4177), 13,
- anon_sym_STAR,
- anon_sym_BANG,
- anon_sym_in,
- anon_sym_GT,
- anon_sym_GT_GT,
- anon_sym_AMP,
- anon_sym_PIPE,
- anon_sym_PLUS,
- anon_sym_DASH,
- anon_sym_SLASH,
- anon_sym_LT,
- anon_sym_EQ_EQ,
- anon_sym_BANG_EQ,
- ACTIONS(4179), 29,
- sym__automatic_semicolon,
- sym__ternary_qmark,
- anon_sym_as,
- anon_sym_COMMA,
- anon_sym_RBRACE,
- anon_sym_LPAREN,
- anon_sym_of,
- anon_sym_SEMI,
- anon_sym_LBRACK,
- anon_sym_DOT,
- anon_sym_QMARK_DOT,
- anon_sym_AMP_AMP,
- anon_sym_PIPE_PIPE,
- anon_sym_GT_GT_GT,
- anon_sym_LT_LT,
- anon_sym_CARET,
- anon_sym_PERCENT,
- anon_sym_STAR_STAR,
- anon_sym_LT_EQ,
- anon_sym_EQ_EQ_EQ,
- anon_sym_BANG_EQ_EQ,
- anon_sym_GT_EQ,
- anon_sym_QMARK_QMARK,
- anon_sym_instanceof,
- anon_sym_PLUS_PLUS,
- anon_sym_DASH_DASH,
- anon_sym_BQUOTE,
- anon_sym_satisfies,
- anon_sym_extends,
- [74550] = 3,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(4181), 13,
- anon_sym_STAR,
- anon_sym_BANG,
- anon_sym_in,
- anon_sym_GT,
- anon_sym_GT_GT,
- anon_sym_AMP,
- anon_sym_PIPE,
- anon_sym_PLUS,
- anon_sym_DASH,
- anon_sym_SLASH,
- anon_sym_LT,
- anon_sym_EQ_EQ,
- anon_sym_BANG_EQ,
- ACTIONS(4183), 29,
- sym__automatic_semicolon,
- sym__ternary_qmark,
- anon_sym_as,
- anon_sym_COMMA,
- anon_sym_RBRACE,
- anon_sym_LPAREN,
- anon_sym_of,
- anon_sym_SEMI,
- anon_sym_LBRACK,
- anon_sym_DOT,
- anon_sym_QMARK_DOT,
- anon_sym_AMP_AMP,
- anon_sym_PIPE_PIPE,
- anon_sym_GT_GT_GT,
- anon_sym_LT_LT,
- anon_sym_CARET,
- anon_sym_PERCENT,
- anon_sym_STAR_STAR,
- anon_sym_LT_EQ,
- anon_sym_EQ_EQ_EQ,
- anon_sym_BANG_EQ_EQ,
- anon_sym_GT_EQ,
- anon_sym_QMARK_QMARK,
- anon_sym_instanceof,
- anon_sym_PLUS_PLUS,
- anon_sym_DASH_DASH,
- anon_sym_BQUOTE,
- anon_sym_satisfies,
- anon_sym_extends,
- [74601] = 32,
- ACTIONS(89), 1,
- anon_sym_BQUOTE,
- ACTIONS(4059), 1,
- anon_sym_QMARK_DOT,
- ACTIONS(4519), 1,
- anon_sym_LPAREN,
- ACTIONS(4523), 1,
- anon_sym_LBRACK,
- ACTIONS(4525), 1,
- anon_sym_DOT,
- ACTIONS(4555), 1,
- anon_sym_as,
- ACTIONS(4562), 1,
- anon_sym_BANG,
- ACTIONS(4574), 1,
- anon_sym_satisfies,
- ACTIONS(5125), 1,
- anon_sym_AMP_AMP,
- ACTIONS(5127), 1,
- anon_sym_PIPE_PIPE,
- ACTIONS(5129), 1,
- anon_sym_GT_GT,
- ACTIONS(5133), 1,
- anon_sym_AMP,
- ACTIONS(5135), 1,
- anon_sym_CARET,
- ACTIONS(5137), 1,
- anon_sym_PIPE,
- ACTIONS(5141), 1,
- anon_sym_PERCENT,
- ACTIONS(5143), 1,
- anon_sym_STAR_STAR,
- ACTIONS(5145), 1,
- anon_sym_LT,
- ACTIONS(5153), 1,
- anon_sym_QMARK_QMARK,
- ACTIONS(5155), 1,
- sym__ternary_qmark,
- STATE(1812), 1,
- sym_type_arguments,
- STATE(4772), 1,
- sym_optional_chain,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(4388), 2,
- sym__automatic_semicolon,
- anon_sym_SEMI,
- ACTIONS(4545), 2,
- anon_sym_PLUS_PLUS,
- anon_sym_DASH_DASH,
- ACTIONS(5119), 2,
- anon_sym_STAR,
- anon_sym_SLASH,
- ACTIONS(5121), 2,
- anon_sym_in,
- anon_sym_GT,
- ACTIONS(5131), 2,
- anon_sym_GT_GT_GT,
- anon_sym_LT_LT,
- ACTIONS(5139), 2,
- anon_sym_PLUS,
- anon_sym_DASH,
- ACTIONS(5149), 2,
- anon_sym_EQ_EQ,
- anon_sym_BANG_EQ,
- ACTIONS(5151), 2,
- anon_sym_EQ_EQ_EQ,
- anon_sym_BANG_EQ_EQ,
- STATE(2133), 2,
- sym_template_string,
- sym_arguments,
- ACTIONS(5147), 3,
- anon_sym_LT_EQ,
- anon_sym_GT_EQ,
- anon_sym_instanceof,
- [74710] = 3,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(4800), 13,
- anon_sym_STAR,
- anon_sym_BANG,
- anon_sym_in,
- anon_sym_GT,
- anon_sym_GT_GT,
- anon_sym_AMP,
- anon_sym_PIPE,
- anon_sym_PLUS,
- anon_sym_DASH,
- anon_sym_SLASH,
- anon_sym_LT,
- anon_sym_EQ_EQ,
- anon_sym_BANG_EQ,
- ACTIONS(4802), 28,
- sym__automatic_semicolon,
- sym__ternary_qmark,
- anon_sym_as,
- anon_sym_COMMA,
- anon_sym_RBRACE,
- anon_sym_LPAREN,
- anon_sym_of,
- anon_sym_SEMI,
- anon_sym_LBRACK,
- anon_sym_DOT,
- anon_sym_QMARK_DOT,
- anon_sym_AMP_AMP,
- anon_sym_PIPE_PIPE,
- anon_sym_GT_GT_GT,
- anon_sym_LT_LT,
- anon_sym_CARET,
- anon_sym_PERCENT,
- anon_sym_STAR_STAR,
- anon_sym_LT_EQ,
- anon_sym_EQ_EQ_EQ,
- anon_sym_BANG_EQ_EQ,
- anon_sym_GT_EQ,
- anon_sym_QMARK_QMARK,
- anon_sym_instanceof,
- anon_sym_PLUS_PLUS,
- anon_sym_DASH_DASH,
- anon_sym_BQUOTE,
- anon_sym_satisfies,
- [74760] = 5,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(5330), 2,
- anon_sym_EQ,
- anon_sym_QMARK,
- ACTIONS(5332), 3,
- anon_sym_COMMA,
- anon_sym_RPAREN,
- anon_sym_COLON,
- ACTIONS(3400), 13,
- anon_sym_STAR,
- anon_sym_BANG,
- anon_sym_in,
- anon_sym_GT,
- anon_sym_GT_GT,
- anon_sym_AMP,
- anon_sym_PIPE,
- anon_sym_PLUS,
- anon_sym_DASH,
- anon_sym_SLASH,
- anon_sym_LT,
- anon_sym_EQ_EQ,
- anon_sym_BANG_EQ,
- ACTIONS(3404), 23,
- sym__ternary_qmark,
- anon_sym_as,
- anon_sym_LPAREN,
- anon_sym_LBRACK,
- anon_sym_DOT,
- anon_sym_QMARK_DOT,
- anon_sym_AMP_AMP,
- anon_sym_PIPE_PIPE,
- anon_sym_GT_GT_GT,
- anon_sym_LT_LT,
- anon_sym_CARET,
- anon_sym_PERCENT,
- anon_sym_STAR_STAR,
- anon_sym_LT_EQ,
- anon_sym_EQ_EQ_EQ,
- anon_sym_BANG_EQ_EQ,
- anon_sym_GT_EQ,
- anon_sym_QMARK_QMARK,
- anon_sym_instanceof,
- anon_sym_PLUS_PLUS,
- anon_sym_DASH_DASH,
- anon_sym_BQUOTE,
- anon_sym_satisfies,
- [74814] = 5,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(5330), 2,
- anon_sym_EQ,
- anon_sym_QMARK,
- ACTIONS(5332), 3,
- anon_sym_COMMA,
- anon_sym_RPAREN,
- anon_sym_COLON,
- ACTIONS(3400), 13,
- anon_sym_STAR,
- anon_sym_BANG,
- anon_sym_in,
- anon_sym_GT,
- anon_sym_GT_GT,
- anon_sym_AMP,
- anon_sym_PIPE,
- anon_sym_PLUS,
- anon_sym_DASH,
- anon_sym_SLASH,
- anon_sym_LT,
- anon_sym_EQ_EQ,
- anon_sym_BANG_EQ,
- ACTIONS(3404), 23,
- sym__ternary_qmark,
- anon_sym_as,
- anon_sym_LPAREN,
- anon_sym_LBRACK,
- anon_sym_DOT,
- anon_sym_QMARK_DOT,
- anon_sym_AMP_AMP,
- anon_sym_PIPE_PIPE,
- anon_sym_GT_GT_GT,
- anon_sym_LT_LT,
- anon_sym_CARET,
- anon_sym_PERCENT,
- anon_sym_STAR_STAR,
- anon_sym_LT_EQ,
- anon_sym_EQ_EQ_EQ,
- anon_sym_BANG_EQ_EQ,
- anon_sym_GT_EQ,
- anon_sym_QMARK_QMARK,
- anon_sym_instanceof,
- anon_sym_PLUS_PLUS,
- anon_sym_DASH_DASH,
- anon_sym_BQUOTE,
- anon_sym_satisfies,
- [74868] = 4,
- ACTIONS(5334), 1,
- sym_regex_flags,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(5103), 17,
- anon_sym_STAR,
- anon_sym_as,
- anon_sym_BANG,
- anon_sym_in,
- anon_sym_of,
- anon_sym_GT,
- anon_sym_GT_GT,
- anon_sym_AMP,
- anon_sym_PIPE,
- anon_sym_PLUS,
- anon_sym_DASH,
- anon_sym_SLASH,
- anon_sym_LT,
- anon_sym_EQ_EQ,
- anon_sym_BANG_EQ,
- anon_sym_instanceof,
- anon_sym_satisfies,
- ACTIONS(5105), 23,
- sym__automatic_semicolon,
- sym__ternary_qmark,
- anon_sym_COMMA,
- anon_sym_LPAREN,
- anon_sym_SEMI,
- anon_sym_LBRACK,
- anon_sym_DOT,
- anon_sym_QMARK_DOT,
- anon_sym_AMP_AMP,
- anon_sym_PIPE_PIPE,
- anon_sym_GT_GT_GT,
- anon_sym_LT_LT,
- anon_sym_CARET,
- anon_sym_PERCENT,
- anon_sym_STAR_STAR,
- anon_sym_LT_EQ,
- anon_sym_EQ_EQ_EQ,
- anon_sym_BANG_EQ_EQ,
- anon_sym_GT_EQ,
- anon_sym_QMARK_QMARK,
- anon_sym_PLUS_PLUS,
- anon_sym_DASH_DASH,
- anon_sym_BQUOTE,
- [74920] = 3,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(4723), 13,
- anon_sym_STAR,
- anon_sym_BANG,
- anon_sym_in,
- anon_sym_GT,
- anon_sym_GT_GT,
- anon_sym_AMP,
- anon_sym_PIPE,
- anon_sym_PLUS,
- anon_sym_DASH,
- anon_sym_SLASH,
- anon_sym_LT,
- anon_sym_EQ_EQ,
- anon_sym_BANG_EQ,
- ACTIONS(4725), 28,
- sym__automatic_semicolon,
- sym__ternary_qmark,
- anon_sym_as,
- anon_sym_COMMA,
- anon_sym_RBRACE,
- anon_sym_LPAREN,
- anon_sym_of,
- anon_sym_SEMI,
- anon_sym_LBRACK,
- anon_sym_DOT,
- anon_sym_QMARK_DOT,
- anon_sym_AMP_AMP,
- anon_sym_PIPE_PIPE,
- anon_sym_GT_GT_GT,
- anon_sym_LT_LT,
- anon_sym_CARET,
- anon_sym_PERCENT,
- anon_sym_STAR_STAR,
- anon_sym_LT_EQ,
- anon_sym_EQ_EQ_EQ,
- anon_sym_BANG_EQ_EQ,
- anon_sym_GT_EQ,
- anon_sym_QMARK_QMARK,
- anon_sym_instanceof,
- anon_sym_PLUS_PLUS,
- anon_sym_DASH_DASH,
- anon_sym_BQUOTE,
- anon_sym_satisfies,
- [74970] = 7,
- ACTIONS(3501), 1,
- anon_sym_EQ,
- ACTIONS(4691), 1,
- anon_sym_LBRACK,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(4330), 2,
- anon_sym_COMMA,
- anon_sym_extends,
- ACTIONS(4694), 3,
- anon_sym_GT,
- anon_sym_AMP,
- anon_sym_PIPE,
- ACTIONS(3400), 10,
- anon_sym_STAR,
- anon_sym_BANG,
- anon_sym_in,
- anon_sym_GT_GT,
- anon_sym_PLUS,
- anon_sym_DASH,
- anon_sym_SLASH,
- anon_sym_LT,
- anon_sym_EQ_EQ,
- anon_sym_BANG_EQ,
- ACTIONS(3404), 24,
- sym__automatic_semicolon,
- sym__ternary_qmark,
- anon_sym_as,
- anon_sym_LPAREN,
- anon_sym_SEMI,
- anon_sym_DOT,
- anon_sym_QMARK_DOT,
- anon_sym_AMP_AMP,
- anon_sym_PIPE_PIPE,
- anon_sym_GT_GT_GT,
- anon_sym_LT_LT,
- anon_sym_CARET,
- anon_sym_PERCENT,
- anon_sym_STAR_STAR,
- anon_sym_LT_EQ,
- anon_sym_EQ_EQ_EQ,
- anon_sym_BANG_EQ_EQ,
- anon_sym_GT_EQ,
- anon_sym_QMARK_QMARK,
- anon_sym_instanceof,
- anon_sym_PLUS_PLUS,
- anon_sym_DASH_DASH,
- anon_sym_BQUOTE,
- anon_sym_satisfies,
- [75028] = 5,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(5330), 2,
- anon_sym_EQ,
- anon_sym_QMARK,
- ACTIONS(5332), 3,
- anon_sym_COMMA,
- anon_sym_RPAREN,
- anon_sym_COLON,
- ACTIONS(3400), 13,
- anon_sym_STAR,
- anon_sym_BANG,
- anon_sym_in,
- anon_sym_GT,
- anon_sym_GT_GT,
- anon_sym_AMP,
- anon_sym_PIPE,
- anon_sym_PLUS,
- anon_sym_DASH,
- anon_sym_SLASH,
- anon_sym_LT,
- anon_sym_EQ_EQ,
- anon_sym_BANG_EQ,
- ACTIONS(3404), 23,
- sym__ternary_qmark,
- anon_sym_as,
- anon_sym_LPAREN,
- anon_sym_LBRACK,
- anon_sym_DOT,
- anon_sym_QMARK_DOT,
- anon_sym_AMP_AMP,
- anon_sym_PIPE_PIPE,
- anon_sym_GT_GT_GT,
- anon_sym_LT_LT,
- anon_sym_CARET,
- anon_sym_PERCENT,
- anon_sym_STAR_STAR,
- anon_sym_LT_EQ,
- anon_sym_EQ_EQ_EQ,
- anon_sym_BANG_EQ_EQ,
- anon_sym_GT_EQ,
- anon_sym_QMARK_QMARK,
- anon_sym_instanceof,
- anon_sym_PLUS_PLUS,
- anon_sym_DASH_DASH,
- anon_sym_BQUOTE,
- anon_sym_satisfies,
- [75082] = 33,
- ACTIONS(825), 1,
- anon_sym_BQUOTE,
- ACTIONS(3969), 1,
- anon_sym_LPAREN,
- ACTIONS(3971), 1,
- anon_sym_LBRACK,
- ACTIONS(3973), 1,
- anon_sym_DOT,
- ACTIONS(4051), 1,
- anon_sym_as,
- ACTIONS(4055), 1,
- anon_sym_BANG,
- ACTIONS(4059), 1,
- anon_sym_QMARK_DOT,
- ACTIONS(4093), 1,
- anon_sym_satisfies,
- ACTIONS(4614), 1,
- anon_sym_of,
- ACTIONS(5338), 1,
- anon_sym_in,
- ACTIONS(5341), 1,
- anon_sym_GT,
- ACTIONS(5343), 1,
- anon_sym_AMP_AMP,
- ACTIONS(5345), 1,
- anon_sym_PIPE_PIPE,
- ACTIONS(5347), 1,
- anon_sym_GT_GT,
- ACTIONS(5351), 1,
- anon_sym_AMP,
- ACTIONS(5353), 1,
- anon_sym_CARET,
- ACTIONS(5355), 1,
- anon_sym_PIPE,
- ACTIONS(5359), 1,
- anon_sym_PERCENT,
- ACTIONS(5361), 1,
- anon_sym_STAR_STAR,
- ACTIONS(5363), 1,
- anon_sym_LT,
- ACTIONS(5371), 1,
- anon_sym_QMARK_QMARK,
- ACTIONS(5373), 1,
- sym__ternary_qmark,
- STATE(1447), 1,
- sym_type_arguments,
- STATE(5080), 1,
- sym_optional_chain,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(4091), 2,
- anon_sym_PLUS_PLUS,
- anon_sym_DASH_DASH,
- ACTIONS(5336), 2,
- anon_sym_STAR,
- anon_sym_SLASH,
- ACTIONS(5349), 2,
- anon_sym_GT_GT_GT,
- anon_sym_LT_LT,
- ACTIONS(5357), 2,
- anon_sym_PLUS,
- anon_sym_DASH,
- ACTIONS(5367), 2,
- anon_sym_EQ_EQ,
- anon_sym_BANG_EQ,
- ACTIONS(5369), 2,
- anon_sym_EQ_EQ_EQ,
- anon_sym_BANG_EQ_EQ,
- STATE(1757), 2,
- sym_template_string,
- sym_arguments,
- ACTIONS(5365), 3,
- anon_sym_LT_EQ,
- anon_sym_GT_EQ,
- anon_sym_instanceof,
- [75192] = 3,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(4735), 13,
- anon_sym_STAR,
- anon_sym_BANG,
- anon_sym_in,
- anon_sym_GT,
- anon_sym_GT_GT,
- anon_sym_AMP,
- anon_sym_PIPE,
- anon_sym_PLUS,
- anon_sym_DASH,
- anon_sym_SLASH,
- anon_sym_LT,
- anon_sym_EQ_EQ,
- anon_sym_BANG_EQ,
- ACTIONS(4737), 28,
- sym__automatic_semicolon,
- sym__ternary_qmark,
- anon_sym_as,
- anon_sym_COMMA,
- anon_sym_RBRACE,
- anon_sym_LPAREN,
- anon_sym_of,
- anon_sym_SEMI,
- anon_sym_LBRACK,
- anon_sym_DOT,
- anon_sym_QMARK_DOT,
- anon_sym_AMP_AMP,
- anon_sym_PIPE_PIPE,
- anon_sym_GT_GT_GT,
- anon_sym_LT_LT,
- anon_sym_CARET,
- anon_sym_PERCENT,
- anon_sym_STAR_STAR,
- anon_sym_LT_EQ,
- anon_sym_EQ_EQ_EQ,
- anon_sym_BANG_EQ_EQ,
- anon_sym_GT_EQ,
- anon_sym_QMARK_QMARK,
- anon_sym_instanceof,
- anon_sym_PLUS_PLUS,
- anon_sym_DASH_DASH,
- anon_sym_BQUOTE,
- anon_sym_satisfies,
- [75242] = 3,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(4450), 13,
- anon_sym_STAR,
- anon_sym_BANG,
- anon_sym_in,
- anon_sym_GT,
- anon_sym_GT_GT,
- anon_sym_AMP,
- anon_sym_PIPE,
- anon_sym_PLUS,
- anon_sym_DASH,
- anon_sym_SLASH,
- anon_sym_LT,
- anon_sym_EQ_EQ,
- anon_sym_BANG_EQ,
- ACTIONS(4452), 28,
- sym__automatic_semicolon,
- sym__ternary_qmark,
- anon_sym_as,
- anon_sym_COMMA,
- anon_sym_RBRACE,
- anon_sym_LPAREN,
- anon_sym_of,
- anon_sym_SEMI,
- anon_sym_LBRACK,
- anon_sym_DOT,
- anon_sym_QMARK_DOT,
- anon_sym_AMP_AMP,
- anon_sym_PIPE_PIPE,
- anon_sym_GT_GT_GT,
- anon_sym_LT_LT,
- anon_sym_CARET,
- anon_sym_PERCENT,
- anon_sym_STAR_STAR,
- anon_sym_LT_EQ,
- anon_sym_EQ_EQ_EQ,
- anon_sym_BANG_EQ_EQ,
- anon_sym_GT_EQ,
- anon_sym_QMARK_QMARK,
- anon_sym_instanceof,
- anon_sym_PLUS_PLUS,
- anon_sym_DASH_DASH,
- anon_sym_BQUOTE,
- anon_sym_satisfies,
- [75292] = 5,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(5191), 2,
- anon_sym_EQ,
- anon_sym_QMARK,
- ACTIONS(5193), 3,
- anon_sym_COMMA,
- anon_sym_RPAREN,
- anon_sym_COLON,
- ACTIONS(3400), 13,
- anon_sym_STAR,
- anon_sym_BANG,
- anon_sym_in,
- anon_sym_GT,
- anon_sym_GT_GT,
- anon_sym_AMP,
- anon_sym_PIPE,
- anon_sym_PLUS,
- anon_sym_DASH,
- anon_sym_SLASH,
- anon_sym_LT,
- anon_sym_EQ_EQ,
- anon_sym_BANG_EQ,
- ACTIONS(3404), 23,
- sym__ternary_qmark,
- anon_sym_as,
- anon_sym_LPAREN,
- anon_sym_LBRACK,
- anon_sym_DOT,
- anon_sym_QMARK_DOT,
- anon_sym_AMP_AMP,
- anon_sym_PIPE_PIPE,
- anon_sym_GT_GT_GT,
- anon_sym_LT_LT,
- anon_sym_CARET,
- anon_sym_PERCENT,
- anon_sym_STAR_STAR,
- anon_sym_LT_EQ,
- anon_sym_EQ_EQ_EQ,
- anon_sym_BANG_EQ_EQ,
- anon_sym_GT_EQ,
- anon_sym_QMARK_QMARK,
- anon_sym_instanceof,
- anon_sym_PLUS_PLUS,
- anon_sym_DASH_DASH,
- anon_sym_BQUOTE,
- anon_sym_satisfies,
- [75346] = 5,
- ACTIONS(1833), 1,
- sym__automatic_semicolon,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(1825), 2,
- anon_sym_else,
- anon_sym_while,
- ACTIONS(1829), 13,
- anon_sym_STAR,
- anon_sym_BANG,
- anon_sym_in,
- anon_sym_GT,
- anon_sym_GT_GT,
- anon_sym_AMP,
- anon_sym_PIPE,
- anon_sym_PLUS,
- anon_sym_DASH,
- anon_sym_SLASH,
- anon_sym_LT,
- anon_sym_EQ_EQ,
- anon_sym_BANG_EQ,
- ACTIONS(1831), 25,
- sym__ternary_qmark,
- anon_sym_as,
- anon_sym_COMMA,
- anon_sym_LPAREN,
- anon_sym_SEMI,
- anon_sym_LBRACK,
- anon_sym_DOT,
- anon_sym_QMARK_DOT,
- anon_sym_AMP_AMP,
- anon_sym_PIPE_PIPE,
- anon_sym_GT_GT_GT,
- anon_sym_LT_LT,
- anon_sym_CARET,
- anon_sym_PERCENT,
- anon_sym_STAR_STAR,
- anon_sym_LT_EQ,
- anon_sym_EQ_EQ_EQ,
- anon_sym_BANG_EQ_EQ,
- anon_sym_GT_EQ,
- anon_sym_QMARK_QMARK,
- anon_sym_instanceof,
- anon_sym_PLUS_PLUS,
- anon_sym_DASH_DASH,
- anon_sym_BQUOTE,
- anon_sym_satisfies,
- [75400] = 10,
- ACTIONS(2275), 1,
- anon_sym_DQUOTE,
- ACTIONS(2277), 1,
- anon_sym_SQUOTE,
- ACTIONS(4634), 1,
- anon_sym_LBRACK,
- ACTIONS(5157), 1,
- anon_sym_STAR,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(5375), 2,
- sym_number,
- sym_private_property_identifier,
- ACTIONS(5377), 2,
- anon_sym_get,
- anon_sym_set,
- STATE(3731), 3,
- sym_string,
- sym__property_name,
- sym_computed_property_name,
- ACTIONS(3743), 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(2307), 21,
- anon_sym_export,
- anon_sym_type,
- anon_sym_namespace,
- anon_sym_let,
- anon_sym_async,
- anon_sym_new,
- sym_identifier,
- anon_sym_static,
- anon_sym_readonly,
- anon_sym_declare,
- anon_sym_public,
- anon_sym_private,
- anon_sym_protected,
- anon_sym_override,
- anon_sym_module,
- anon_sym_any,
- anon_sym_number,
- anon_sym_boolean,
- anon_sym_string,
- anon_sym_symbol,
- anon_sym_object,
- [75464] = 11,
- ACTIONS(1594), 1,
- anon_sym_DQUOTE,
- ACTIONS(1596), 1,
- anon_sym_SQUOTE,
- ACTIONS(4245), 1,
- anon_sym_LBRACK,
- ACTIONS(5157), 1,
- anon_sym_STAR,
- ACTIONS(5159), 1,
- anon_sym_async,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(5161), 2,
- sym_number,
- sym_private_property_identifier,
- ACTIONS(5165), 2,
- anon_sym_get,
- anon_sym_set,
- STATE(2964), 3,
- sym_string,
- sym__property_name,
- sym_computed_property_name,
- ACTIONS(3743), 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(3607), 20,
- anon_sym_export,
- anon_sym_type,
- anon_sym_namespace,
- anon_sym_let,
- anon_sym_new,
- sym_identifier,
- anon_sym_static,
- anon_sym_readonly,
- anon_sym_declare,
- anon_sym_public,
- anon_sym_private,
- anon_sym_protected,
- anon_sym_override,
- anon_sym_module,
- anon_sym_any,
- anon_sym_number,
- anon_sym_boolean,
- anon_sym_string,
- anon_sym_symbol,
- anon_sym_object,
- [75530] = 10,
- ACTIONS(2275), 1,
- anon_sym_DQUOTE,
- ACTIONS(2277), 1,
- anon_sym_SQUOTE,
- ACTIONS(4634), 1,
- anon_sym_LBRACK,
- ACTIONS(5379), 1,
- anon_sym_STAR,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(5381), 2,
- sym_number,
- sym_private_property_identifier,
- ACTIONS(5383), 2,
- anon_sym_get,
- anon_sym_set,
- STATE(3854), 3,
- sym_string,
- sym__property_name,
- sym_computed_property_name,
- ACTIONS(3743), 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(2307), 21,
- anon_sym_export,
- anon_sym_type,
- anon_sym_namespace,
- anon_sym_let,
- anon_sym_async,
- anon_sym_new,
- sym_identifier,
- anon_sym_static,
- anon_sym_readonly,
- anon_sym_declare,
- anon_sym_public,
- anon_sym_private,
- anon_sym_protected,
- anon_sym_override,
- anon_sym_module,
- anon_sym_any,
- anon_sym_number,
- anon_sym_boolean,
- anon_sym_string,
- anon_sym_symbol,
- anon_sym_object,
- [75594] = 5,
- ACTIONS(1819), 1,
- sym__automatic_semicolon,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(1811), 2,
- anon_sym_else,
- anon_sym_while,
- ACTIONS(1815), 13,
- anon_sym_STAR,
- anon_sym_BANG,
- anon_sym_in,
- anon_sym_GT,
- anon_sym_GT_GT,
- anon_sym_AMP,
- anon_sym_PIPE,
- anon_sym_PLUS,
- anon_sym_DASH,
- anon_sym_SLASH,
- anon_sym_LT,
- anon_sym_EQ_EQ,
- anon_sym_BANG_EQ,
- ACTIONS(1817), 25,
- sym__ternary_qmark,
- anon_sym_as,
- anon_sym_COMMA,
- anon_sym_LPAREN,
- anon_sym_SEMI,
- anon_sym_LBRACK,
- anon_sym_DOT,
- anon_sym_QMARK_DOT,
- anon_sym_AMP_AMP,
- anon_sym_PIPE_PIPE,
- anon_sym_GT_GT_GT,
- anon_sym_LT_LT,
- anon_sym_CARET,
- anon_sym_PERCENT,
- anon_sym_STAR_STAR,
- anon_sym_LT_EQ,
- anon_sym_EQ_EQ_EQ,
- anon_sym_BANG_EQ_EQ,
- anon_sym_GT_EQ,
- anon_sym_QMARK_QMARK,
- anon_sym_instanceof,
- anon_sym_PLUS_PLUS,
- anon_sym_DASH_DASH,
- anon_sym_BQUOTE,
- anon_sym_satisfies,
- [75648] = 10,
- ACTIONS(2275), 1,
- anon_sym_DQUOTE,
- ACTIONS(2277), 1,
- anon_sym_SQUOTE,
- ACTIONS(4634), 1,
- anon_sym_LBRACK,
- ACTIONS(5167), 1,
- anon_sym_STAR,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(5385), 2,
- sym_number,
- sym_private_property_identifier,
- ACTIONS(5387), 2,
- anon_sym_get,
- anon_sym_set,
- STATE(3824), 3,
- sym_string,
- sym__property_name,
- sym_computed_property_name,
- ACTIONS(3743), 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(2307), 21,
- anon_sym_export,
- anon_sym_type,
- anon_sym_namespace,
- anon_sym_let,
- anon_sym_async,
- anon_sym_new,
- sym_identifier,
- anon_sym_static,
- anon_sym_readonly,
- anon_sym_declare,
- anon_sym_public,
- anon_sym_private,
- anon_sym_protected,
- anon_sym_override,
- anon_sym_module,
- anon_sym_any,
- anon_sym_number,
- anon_sym_boolean,
- anon_sym_string,
- anon_sym_symbol,
- anon_sym_object,
- [75712] = 3,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(4842), 13,
- anon_sym_STAR,
- anon_sym_BANG,
- anon_sym_in,
- anon_sym_GT,
- anon_sym_GT_GT,
- anon_sym_AMP,
- anon_sym_PIPE,
- anon_sym_PLUS,
- anon_sym_DASH,
- anon_sym_SLASH,
- anon_sym_LT,
- anon_sym_EQ_EQ,
- anon_sym_BANG_EQ,
- ACTIONS(4844), 28,
- sym__automatic_semicolon,
- sym__ternary_qmark,
- anon_sym_as,
- anon_sym_COMMA,
- anon_sym_RBRACE,
- anon_sym_LPAREN,
- anon_sym_of,
- anon_sym_SEMI,
- anon_sym_LBRACK,
- anon_sym_DOT,
- anon_sym_QMARK_DOT,
- anon_sym_AMP_AMP,
- anon_sym_PIPE_PIPE,
- anon_sym_GT_GT_GT,
- anon_sym_LT_LT,
- anon_sym_CARET,
- anon_sym_PERCENT,
- anon_sym_STAR_STAR,
- anon_sym_LT_EQ,
- anon_sym_EQ_EQ_EQ,
- anon_sym_BANG_EQ_EQ,
- anon_sym_GT_EQ,
- anon_sym_QMARK_QMARK,
- anon_sym_instanceof,
- anon_sym_PLUS_PLUS,
- anon_sym_DASH_DASH,
- anon_sym_BQUOTE,
- anon_sym_satisfies,
- [75762] = 3,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(4846), 13,
- anon_sym_STAR,
- anon_sym_BANG,
- anon_sym_in,
- anon_sym_GT,
- anon_sym_GT_GT,
- anon_sym_AMP,
- anon_sym_PIPE,
- anon_sym_PLUS,
- anon_sym_DASH,
- anon_sym_SLASH,
- anon_sym_LT,
- anon_sym_EQ_EQ,
- anon_sym_BANG_EQ,
- ACTIONS(4848), 28,
- sym__automatic_semicolon,
- sym__ternary_qmark,
- anon_sym_as,
- anon_sym_COMMA,
- anon_sym_RBRACE,
- anon_sym_LPAREN,
- anon_sym_of,
- anon_sym_SEMI,
- anon_sym_LBRACK,
- anon_sym_DOT,
- anon_sym_QMARK_DOT,
- anon_sym_AMP_AMP,
- anon_sym_PIPE_PIPE,
- anon_sym_GT_GT_GT,
- anon_sym_LT_LT,
- anon_sym_CARET,
- anon_sym_PERCENT,
- anon_sym_STAR_STAR,
- anon_sym_LT_EQ,
- anon_sym_EQ_EQ_EQ,
- anon_sym_BANG_EQ_EQ,
- anon_sym_GT_EQ,
- anon_sym_QMARK_QMARK,
- anon_sym_instanceof,
- anon_sym_PLUS_PLUS,
- anon_sym_DASH_DASH,
- anon_sym_BQUOTE,
- anon_sym_satisfies,
- [75812] = 7,
- ACTIONS(825), 1,
- anon_sym_BQUOTE,
- ACTIONS(3969), 1,
- anon_sym_LPAREN,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- STATE(1626), 2,
- sym_template_string,
- sym_arguments,
- ACTIONS(5389), 3,
- anon_sym_LBRACE,
- anon_sym_COMMA,
- anon_sym_implements,
- ACTIONS(4035), 13,
- anon_sym_STAR,
- anon_sym_BANG,
- anon_sym_in,
- anon_sym_GT,
- anon_sym_GT_GT,
- anon_sym_AMP,
- anon_sym_PIPE,
- anon_sym_PLUS,
- anon_sym_DASH,
- anon_sym_SLASH,
- anon_sym_LT,
- anon_sym_EQ_EQ,
- anon_sym_BANG_EQ,
- ACTIONS(4037), 21,
- sym__ternary_qmark,
- anon_sym_as,
- anon_sym_LBRACK,
- anon_sym_DOT,
- anon_sym_QMARK_DOT,
- anon_sym_AMP_AMP,
- anon_sym_PIPE_PIPE,
- anon_sym_GT_GT_GT,
- anon_sym_LT_LT,
- anon_sym_CARET,
- anon_sym_PERCENT,
- anon_sym_STAR_STAR,
- anon_sym_LT_EQ,
- anon_sym_EQ_EQ_EQ,
- anon_sym_BANG_EQ_EQ,
- anon_sym_GT_EQ,
- anon_sym_QMARK_QMARK,
- anon_sym_instanceof,
- anon_sym_PLUS_PLUS,
- anon_sym_DASH_DASH,
- anon_sym_satisfies,
- [75870] = 10,
- ACTIONS(2275), 1,
- anon_sym_DQUOTE,
- ACTIONS(2277), 1,
- anon_sym_SQUOTE,
- ACTIONS(4634), 1,
- anon_sym_LBRACK,
- ACTIONS(5181), 1,
- anon_sym_STAR,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(5391), 2,
- sym_number,
- sym_private_property_identifier,
- ACTIONS(5393), 2,
- anon_sym_get,
- anon_sym_set,
- STATE(3734), 3,
- sym_string,
- sym__property_name,
- sym_computed_property_name,
- ACTIONS(3743), 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(2307), 21,
- anon_sym_export,
- anon_sym_type,
- anon_sym_namespace,
- anon_sym_let,
- anon_sym_async,
- anon_sym_new,
- sym_identifier,
- anon_sym_static,
- anon_sym_readonly,
- anon_sym_declare,
- anon_sym_public,
- anon_sym_private,
- anon_sym_protected,
- anon_sym_override,
- anon_sym_module,
- anon_sym_any,
- anon_sym_number,
- anon_sym_boolean,
- anon_sym_string,
- anon_sym_symbol,
- anon_sym_object,
- [75934] = 3,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(4856), 13,
- anon_sym_STAR,
- anon_sym_BANG,
- anon_sym_in,
- anon_sym_GT,
- anon_sym_GT_GT,
- anon_sym_AMP,
- anon_sym_PIPE,
- anon_sym_PLUS,
- anon_sym_DASH,
- anon_sym_SLASH,
- anon_sym_LT,
- anon_sym_EQ_EQ,
- anon_sym_BANG_EQ,
- ACTIONS(4858), 28,
- sym__automatic_semicolon,
- sym__ternary_qmark,
- anon_sym_as,
- anon_sym_COMMA,
- anon_sym_RBRACE,
- anon_sym_LPAREN,
- anon_sym_of,
- anon_sym_SEMI,
- anon_sym_LBRACK,
- anon_sym_DOT,
- anon_sym_QMARK_DOT,
- anon_sym_AMP_AMP,
- anon_sym_PIPE_PIPE,
- anon_sym_GT_GT_GT,
- anon_sym_LT_LT,
- anon_sym_CARET,
- anon_sym_PERCENT,
- anon_sym_STAR_STAR,
- anon_sym_LT_EQ,
- anon_sym_EQ_EQ_EQ,
- anon_sym_BANG_EQ_EQ,
- anon_sym_GT_EQ,
- anon_sym_QMARK_QMARK,
- anon_sym_instanceof,
- anon_sym_PLUS_PLUS,
- anon_sym_DASH_DASH,
- anon_sym_BQUOTE,
- anon_sym_satisfies,
- [75984] = 11,
- ACTIONS(1594), 1,
- anon_sym_DQUOTE,
- ACTIONS(1596), 1,
- anon_sym_SQUOTE,
- ACTIONS(4658), 1,
- anon_sym_LBRACK,
- ACTIONS(5181), 1,
- anon_sym_STAR,
- ACTIONS(5183), 1,
- anon_sym_async,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(5185), 2,
- sym_number,
- sym_private_property_identifier,
- ACTIONS(5189), 2,
- anon_sym_get,
- anon_sym_set,
- STATE(3057), 3,
- sym_string,
- sym__property_name,
- sym_computed_property_name,
- ACTIONS(3743), 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(3607), 20,
- anon_sym_export,
- anon_sym_type,
- anon_sym_namespace,
- anon_sym_let,
- anon_sym_new,
- sym_identifier,
- anon_sym_static,
- anon_sym_readonly,
- anon_sym_declare,
- anon_sym_public,
- anon_sym_private,
- anon_sym_protected,
- anon_sym_override,
- anon_sym_module,
- anon_sym_any,
- anon_sym_number,
- anon_sym_boolean,
- anon_sym_string,
- anon_sym_symbol,
- anon_sym_object,
- [76050] = 3,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(4860), 13,
- anon_sym_STAR,
- anon_sym_BANG,
- anon_sym_in,
- anon_sym_GT,
- anon_sym_GT_GT,
- anon_sym_AMP,
- anon_sym_PIPE,
- anon_sym_PLUS,
- anon_sym_DASH,
- anon_sym_SLASH,
- anon_sym_LT,
- anon_sym_EQ_EQ,
- anon_sym_BANG_EQ,
- ACTIONS(4862), 28,
- sym__automatic_semicolon,
- sym__ternary_qmark,
- anon_sym_as,
- anon_sym_COMMA,
- anon_sym_RBRACE,
- anon_sym_LPAREN,
- anon_sym_of,
- anon_sym_SEMI,
- anon_sym_LBRACK,
- anon_sym_DOT,
- anon_sym_QMARK_DOT,
- anon_sym_AMP_AMP,
- anon_sym_PIPE_PIPE,
- anon_sym_GT_GT_GT,
- anon_sym_LT_LT,
- anon_sym_CARET,
- anon_sym_PERCENT,
- anon_sym_STAR_STAR,
- anon_sym_LT_EQ,
- anon_sym_EQ_EQ_EQ,
- anon_sym_BANG_EQ_EQ,
- anon_sym_GT_EQ,
- anon_sym_QMARK_QMARK,
- anon_sym_instanceof,
- anon_sym_PLUS_PLUS,
- anon_sym_DASH_DASH,
- anon_sym_BQUOTE,
- anon_sym_satisfies,
- [76100] = 3,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(4874), 13,
- anon_sym_STAR,
- anon_sym_BANG,
- anon_sym_in,
- anon_sym_GT,
- anon_sym_GT_GT,
- anon_sym_AMP,
- anon_sym_PIPE,
- anon_sym_PLUS,
- anon_sym_DASH,
- anon_sym_SLASH,
- anon_sym_LT,
- anon_sym_EQ_EQ,
- anon_sym_BANG_EQ,
- ACTIONS(4876), 28,
- sym__automatic_semicolon,
- sym__ternary_qmark,
- anon_sym_as,
- anon_sym_COMMA,
- anon_sym_RBRACE,
- anon_sym_LPAREN,
- anon_sym_of,
- anon_sym_SEMI,
- anon_sym_LBRACK,
- anon_sym_DOT,
- anon_sym_QMARK_DOT,
- anon_sym_AMP_AMP,
- anon_sym_PIPE_PIPE,
- anon_sym_GT_GT_GT,
- anon_sym_LT_LT,
- anon_sym_CARET,
- anon_sym_PERCENT,
- anon_sym_STAR_STAR,
- anon_sym_LT_EQ,
- anon_sym_EQ_EQ_EQ,
- anon_sym_BANG_EQ_EQ,
- anon_sym_GT_EQ,
- anon_sym_QMARK_QMARK,
- anon_sym_instanceof,
- anon_sym_PLUS_PLUS,
- anon_sym_DASH_DASH,
- anon_sym_BQUOTE,
- anon_sym_satisfies,
- [76150] = 3,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(4660), 13,
- anon_sym_STAR,
- anon_sym_BANG,
- anon_sym_in,
- anon_sym_GT,
- anon_sym_GT_GT,
- anon_sym_AMP,
- anon_sym_PIPE,
- anon_sym_PLUS,
- anon_sym_DASH,
- anon_sym_SLASH,
- anon_sym_LT,
- anon_sym_EQ_EQ,
- anon_sym_BANG_EQ,
- ACTIONS(4255), 28,
- sym__automatic_semicolon,
- sym__ternary_qmark,
- anon_sym_as,
- anon_sym_COMMA,
- anon_sym_RBRACE,
- anon_sym_LPAREN,
- anon_sym_of,
- anon_sym_SEMI,
- anon_sym_LBRACK,
- anon_sym_DOT,
- anon_sym_QMARK_DOT,
- anon_sym_AMP_AMP,
- anon_sym_PIPE_PIPE,
- anon_sym_GT_GT_GT,
- anon_sym_LT_LT,
- anon_sym_CARET,
- anon_sym_PERCENT,
- anon_sym_STAR_STAR,
- anon_sym_LT_EQ,
- anon_sym_EQ_EQ_EQ,
- anon_sym_BANG_EQ_EQ,
- anon_sym_GT_EQ,
- anon_sym_QMARK_QMARK,
- anon_sym_instanceof,
- anon_sym_PLUS_PLUS,
- anon_sym_DASH_DASH,
- anon_sym_BQUOTE,
- anon_sym_satisfies,
- [76200] = 6,
- ACTIONS(4440), 1,
- anon_sym_EQ,
- ACTIONS(4985), 1,
- anon_sym_of,
- ACTIONS(5395), 1,
- anon_sym_in,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(4438), 12,
- anon_sym_STAR,
- anon_sym_BANG,
- anon_sym_GT,
- anon_sym_GT_GT,
- anon_sym_AMP,
- anon_sym_PIPE,
- anon_sym_PLUS,
- anon_sym_DASH,
- anon_sym_SLASH,
- anon_sym_LT,
- anon_sym_EQ_EQ,
- anon_sym_BANG_EQ,
- ACTIONS(4442), 26,
- sym__automatic_semicolon,
- sym__ternary_qmark,
- anon_sym_as,
- anon_sym_COMMA,
- anon_sym_LPAREN,
- anon_sym_SEMI,
- anon_sym_LBRACK,
- anon_sym_DOT,
- anon_sym_QMARK_DOT,
- anon_sym_AMP_AMP,
- anon_sym_PIPE_PIPE,
- anon_sym_GT_GT_GT,
- anon_sym_LT_LT,
- anon_sym_CARET,
- anon_sym_PERCENT,
- anon_sym_STAR_STAR,
- anon_sym_LT_EQ,
- anon_sym_EQ_EQ_EQ,
- anon_sym_BANG_EQ_EQ,
- anon_sym_GT_EQ,
- anon_sym_QMARK_QMARK,
- anon_sym_instanceof,
- anon_sym_PLUS_PLUS,
- anon_sym_DASH_DASH,
- anon_sym_BQUOTE,
- anon_sym_satisfies,
- [76256] = 6,
- ACTIONS(4678), 1,
- anon_sym_EQ,
- ACTIONS(4987), 1,
- anon_sym_of,
- ACTIONS(5398), 1,
- anon_sym_in,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(4676), 12,
- anon_sym_STAR,
- anon_sym_BANG,
- anon_sym_GT,
- anon_sym_GT_GT,
- anon_sym_AMP,
- anon_sym_PIPE,
- anon_sym_PLUS,
- anon_sym_DASH,
- anon_sym_SLASH,
- anon_sym_LT,
- anon_sym_EQ_EQ,
- anon_sym_BANG_EQ,
- ACTIONS(4680), 26,
- sym__automatic_semicolon,
- sym__ternary_qmark,
- anon_sym_as,
- anon_sym_COMMA,
- anon_sym_LPAREN,
- anon_sym_SEMI,
- anon_sym_LBRACK,
- anon_sym_DOT,
- anon_sym_QMARK_DOT,
- anon_sym_AMP_AMP,
- anon_sym_PIPE_PIPE,
- anon_sym_GT_GT_GT,
- anon_sym_LT_LT,
- anon_sym_CARET,
- anon_sym_PERCENT,
- anon_sym_STAR_STAR,
- anon_sym_LT_EQ,
- anon_sym_EQ_EQ_EQ,
- anon_sym_BANG_EQ_EQ,
- anon_sym_GT_EQ,
- anon_sym_QMARK_QMARK,
- anon_sym_instanceof,
- anon_sym_PLUS_PLUS,
- anon_sym_DASH_DASH,
- anon_sym_BQUOTE,
- anon_sym_satisfies,
- [76312] = 6,
- ACTIONS(1726), 1,
- anon_sym_EQ,
- ACTIONS(4989), 1,
- anon_sym_of,
- ACTIONS(5401), 1,
- anon_sym_in,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(1724), 12,
- anon_sym_STAR,
- anon_sym_BANG,
- anon_sym_GT,
- anon_sym_GT_GT,
- anon_sym_AMP,
- anon_sym_PIPE,
- anon_sym_PLUS,
- anon_sym_DASH,
- anon_sym_SLASH,
- anon_sym_LT,
- anon_sym_EQ_EQ,
- anon_sym_BANG_EQ,
- ACTIONS(1728), 26,
- sym__automatic_semicolon,
- sym__ternary_qmark,
- anon_sym_as,
- anon_sym_COMMA,
- anon_sym_LPAREN,
- anon_sym_SEMI,
- anon_sym_LBRACK,
- anon_sym_DOT,
- anon_sym_QMARK_DOT,
- anon_sym_AMP_AMP,
- anon_sym_PIPE_PIPE,
- anon_sym_GT_GT_GT,
- anon_sym_LT_LT,
- anon_sym_CARET,
- anon_sym_PERCENT,
- anon_sym_STAR_STAR,
- anon_sym_LT_EQ,
- anon_sym_EQ_EQ_EQ,
- anon_sym_BANG_EQ_EQ,
- anon_sym_GT_EQ,
- anon_sym_QMARK_QMARK,
- anon_sym_instanceof,
- anon_sym_PLUS_PLUS,
- anon_sym_DASH_DASH,
- anon_sym_BQUOTE,
- anon_sym_satisfies,
- [76368] = 15,
- ACTIONS(241), 1,
- anon_sym_COMMA,
- ACTIONS(2275), 1,
- anon_sym_DQUOTE,
- ACTIONS(2277), 1,
- anon_sym_SQUOTE,
- ACTIONS(4243), 1,
- anon_sym_EQ,
- ACTIONS(4634), 1,
- anon_sym_LBRACK,
- ACTIONS(5091), 1,
- anon_sym_STAR,
- ACTIONS(5198), 1,
- anon_sym_RBRACE,
- STATE(4671), 1,
- aux_sym_object_repeat1,
- STATE(4672), 1,
- aux_sym_object_pattern_repeat1,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(2285), 2,
- sym_number,
- sym_private_property_identifier,
- ACTIONS(2313), 2,
- anon_sym_get,
- anon_sym_set,
- STATE(3788), 3,
- sym_string,
- sym__property_name,
- sym_computed_property_name,
- ACTIONS(3743), 4,
- anon_sym_LPAREN,
- anon_sym_COLON,
- anon_sym_LT,
- anon_sym_QMARK,
- ACTIONS(2307), 21,
- anon_sym_export,
- anon_sym_type,
- anon_sym_namespace,
- anon_sym_let,
- anon_sym_async,
- anon_sym_new,
- sym_identifier,
- anon_sym_static,
- anon_sym_readonly,
- anon_sym_declare,
- anon_sym_public,
- anon_sym_private,
- anon_sym_protected,
- anon_sym_override,
- anon_sym_module,
- anon_sym_any,
- anon_sym_number,
- anon_sym_boolean,
- anon_sym_string,
- anon_sym_symbol,
- anon_sym_object,
- [76442] = 16,
- ACTIONS(241), 1,
- anon_sym_COMMA,
- ACTIONS(2275), 1,
- anon_sym_DQUOTE,
- ACTIONS(2277), 1,
- anon_sym_SQUOTE,
- ACTIONS(2309), 1,
- anon_sym_async,
- ACTIONS(4243), 1,
- anon_sym_EQ,
- ACTIONS(4634), 1,
- anon_sym_LBRACK,
- ACTIONS(5091), 1,
- anon_sym_STAR,
- ACTIONS(5198), 1,
- anon_sym_RBRACE,
- STATE(4671), 1,
- aux_sym_object_repeat1,
- STATE(4672), 1,
- aux_sym_object_pattern_repeat1,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(2285), 2,
- sym_number,
- sym_private_property_identifier,
- ACTIONS(2313), 2,
- anon_sym_get,
- anon_sym_set,
- STATE(3788), 3,
- sym_string,
- sym__property_name,
- sym_computed_property_name,
- ACTIONS(3743), 4,
- anon_sym_LPAREN,
- anon_sym_COLON,
- anon_sym_LT,
- anon_sym_QMARK,
- ACTIONS(2307), 20,
- anon_sym_export,
- anon_sym_type,
- anon_sym_namespace,
- anon_sym_let,
- anon_sym_new,
- sym_identifier,
- anon_sym_static,
- anon_sym_readonly,
- anon_sym_declare,
- anon_sym_public,
- anon_sym_private,
- anon_sym_protected,
- anon_sym_override,
- anon_sym_module,
- anon_sym_any,
- anon_sym_number,
- anon_sym_boolean,
- anon_sym_string,
- anon_sym_symbol,
- anon_sym_object,
- [76518] = 6,
- ACTIONS(4330), 1,
- anon_sym_extends,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(4694), 2,
- anon_sym_AMP,
- anon_sym_PIPE,
- ACTIONS(4691), 3,
- anon_sym_RBRACE,
- anon_sym_RPAREN,
- anon_sym_LBRACK,
- ACTIONS(3400), 11,
- anon_sym_STAR,
- anon_sym_BANG,
- anon_sym_in,
- anon_sym_GT,
- anon_sym_GT_GT,
- anon_sym_PLUS,
- anon_sym_DASH,
- anon_sym_SLASH,
- anon_sym_LT,
- anon_sym_EQ_EQ,
- anon_sym_BANG_EQ,
- ACTIONS(3404), 24,
- sym__ternary_qmark,
- anon_sym_as,
- anon_sym_COMMA,
- anon_sym_LPAREN,
- anon_sym_COLON,
- anon_sym_DOT,
- anon_sym_QMARK_DOT,
- anon_sym_AMP_AMP,
- anon_sym_PIPE_PIPE,
- anon_sym_GT_GT_GT,
- anon_sym_LT_LT,
- anon_sym_CARET,
- anon_sym_PERCENT,
- anon_sym_STAR_STAR,
- anon_sym_LT_EQ,
- anon_sym_EQ_EQ_EQ,
- anon_sym_BANG_EQ_EQ,
- anon_sym_GT_EQ,
- anon_sym_QMARK_QMARK,
- anon_sym_instanceof,
- anon_sym_PLUS_PLUS,
- anon_sym_DASH_DASH,
- anon_sym_BQUOTE,
- anon_sym_satisfies,
- [76574] = 6,
- ACTIONS(4408), 1,
- anon_sym_extends,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(4881), 2,
- anon_sym_AMP,
- anon_sym_PIPE,
- ACTIONS(4878), 3,
- anon_sym_RBRACE,
- anon_sym_RPAREN,
- anon_sym_LBRACK,
- ACTIONS(4774), 11,
- anon_sym_STAR,
- anon_sym_BANG,
- anon_sym_in,
- anon_sym_GT,
- anon_sym_GT_GT,
- anon_sym_PLUS,
- anon_sym_DASH,
- anon_sym_SLASH,
- anon_sym_LT,
- anon_sym_EQ_EQ,
- anon_sym_BANG_EQ,
- ACTIONS(4776), 24,
- sym__ternary_qmark,
- anon_sym_as,
- anon_sym_COMMA,
- anon_sym_LPAREN,
- anon_sym_COLON,
- anon_sym_DOT,
- anon_sym_QMARK_DOT,
- anon_sym_AMP_AMP,
- anon_sym_PIPE_PIPE,
- anon_sym_GT_GT_GT,
- anon_sym_LT_LT,
- anon_sym_CARET,
- anon_sym_PERCENT,
- anon_sym_STAR_STAR,
- anon_sym_LT_EQ,
- anon_sym_EQ_EQ_EQ,
- anon_sym_BANG_EQ_EQ,
- anon_sym_GT_EQ,
- anon_sym_QMARK_QMARK,
- anon_sym_instanceof,
- anon_sym_PLUS_PLUS,
- anon_sym_DASH_DASH,
- anon_sym_BQUOTE,
- anon_sym_satisfies,
- [76630] = 9,
- ACTIONS(3402), 1,
- anon_sym_EQ,
- ACTIONS(3549), 1,
- anon_sym_COLON,
- ACTIONS(4330), 1,
- anon_sym_extends,
- ACTIONS(4691), 1,
- anon_sym_LBRACK,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(4694), 2,
- anon_sym_AMP,
- anon_sym_PIPE,
- ACTIONS(5404), 2,
- anon_sym_COMMA,
- anon_sym_RBRACK,
- ACTIONS(3400), 11,
- anon_sym_STAR,
- anon_sym_BANG,
- anon_sym_in,
- anon_sym_GT,
- anon_sym_GT_GT,
- anon_sym_PLUS,
- anon_sym_DASH,
- anon_sym_SLASH,
- anon_sym_LT,
- anon_sym_EQ_EQ,
- anon_sym_BANG_EQ,
- ACTIONS(3404), 22,
- sym__ternary_qmark,
- anon_sym_as,
- anon_sym_LPAREN,
- anon_sym_DOT,
- anon_sym_QMARK_DOT,
- anon_sym_AMP_AMP,
- anon_sym_PIPE_PIPE,
- anon_sym_GT_GT_GT,
- anon_sym_LT_LT,
- anon_sym_CARET,
- anon_sym_PERCENT,
- anon_sym_STAR_STAR,
- anon_sym_LT_EQ,
- anon_sym_EQ_EQ_EQ,
- anon_sym_BANG_EQ_EQ,
- anon_sym_GT_EQ,
- anon_sym_QMARK_QMARK,
- anon_sym_instanceof,
- anon_sym_PLUS_PLUS,
- anon_sym_DASH_DASH,
- anon_sym_BQUOTE,
- anon_sym_satisfies,
- [76692] = 3,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(4764), 13,
- anon_sym_STAR,
- anon_sym_BANG,
- anon_sym_in,
- anon_sym_GT,
- anon_sym_GT_GT,
- anon_sym_AMP,
- anon_sym_PIPE,
- anon_sym_PLUS,
- anon_sym_DASH,
- anon_sym_SLASH,
- anon_sym_LT,
- anon_sym_EQ_EQ,
- anon_sym_BANG_EQ,
- ACTIONS(4766), 28,
- sym__automatic_semicolon,
- sym__ternary_qmark,
- anon_sym_as,
- anon_sym_COMMA,
- anon_sym_RBRACE,
- anon_sym_LPAREN,
- anon_sym_of,
- anon_sym_SEMI,
- anon_sym_LBRACK,
- anon_sym_DOT,
- anon_sym_QMARK_DOT,
- anon_sym_AMP_AMP,
- anon_sym_PIPE_PIPE,
- anon_sym_GT_GT_GT,
- anon_sym_LT_LT,
- anon_sym_CARET,
- anon_sym_PERCENT,
- anon_sym_STAR_STAR,
- anon_sym_LT_EQ,
- anon_sym_EQ_EQ_EQ,
- anon_sym_BANG_EQ_EQ,
- anon_sym_GT_EQ,
- anon_sym_QMARK_QMARK,
- anon_sym_instanceof,
- anon_sym_PLUS_PLUS,
- anon_sym_DASH_DASH,
- anon_sym_BQUOTE,
- anon_sym_satisfies,
- [76742] = 3,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(4515), 13,
- anon_sym_STAR,
- anon_sym_BANG,
- anon_sym_in,
- anon_sym_GT,
- anon_sym_GT_GT,
- anon_sym_AMP,
- anon_sym_PIPE,
- anon_sym_PLUS,
- anon_sym_DASH,
- anon_sym_SLASH,
- anon_sym_LT,
- anon_sym_EQ_EQ,
- anon_sym_BANG_EQ,
- ACTIONS(4370), 28,
- sym__automatic_semicolon,
- sym__ternary_qmark,
- anon_sym_as,
- anon_sym_COMMA,
- anon_sym_RBRACE,
- anon_sym_LPAREN,
- anon_sym_of,
- anon_sym_SEMI,
- anon_sym_LBRACK,
- anon_sym_DOT,
- anon_sym_QMARK_DOT,
- anon_sym_AMP_AMP,
- anon_sym_PIPE_PIPE,
- anon_sym_GT_GT_GT,
- anon_sym_LT_LT,
- anon_sym_CARET,
- anon_sym_PERCENT,
- anon_sym_STAR_STAR,
- anon_sym_LT_EQ,
- anon_sym_EQ_EQ_EQ,
- anon_sym_BANG_EQ_EQ,
- anon_sym_GT_EQ,
- anon_sym_QMARK_QMARK,
- anon_sym_instanceof,
- anon_sym_PLUS_PLUS,
- anon_sym_DASH_DASH,
- anon_sym_BQUOTE,
- anon_sym_satisfies,
- [76792] = 3,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(4768), 13,
- anon_sym_STAR,
- anon_sym_BANG,
- anon_sym_in,
- anon_sym_GT,
- anon_sym_GT_GT,
- anon_sym_AMP,
- anon_sym_PIPE,
- anon_sym_PLUS,
- anon_sym_DASH,
- anon_sym_SLASH,
- anon_sym_LT,
- anon_sym_EQ_EQ,
- anon_sym_BANG_EQ,
- ACTIONS(4770), 28,
- sym__automatic_semicolon,
- sym__ternary_qmark,
- anon_sym_as,
- anon_sym_COMMA,
- anon_sym_RBRACE,
- anon_sym_LPAREN,
- anon_sym_of,
- anon_sym_SEMI,
- anon_sym_LBRACK,
- anon_sym_DOT,
- anon_sym_QMARK_DOT,
- anon_sym_AMP_AMP,
- anon_sym_PIPE_PIPE,
- anon_sym_GT_GT_GT,
- anon_sym_LT_LT,
- anon_sym_CARET,
- anon_sym_PERCENT,
- anon_sym_STAR_STAR,
- anon_sym_LT_EQ,
- anon_sym_EQ_EQ_EQ,
- anon_sym_BANG_EQ_EQ,
- anon_sym_GT_EQ,
- anon_sym_QMARK_QMARK,
- anon_sym_instanceof,
- anon_sym_PLUS_PLUS,
- anon_sym_DASH_DASH,
- anon_sym_BQUOTE,
- anon_sym_satisfies,
- [76842] = 3,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(4772), 13,
- anon_sym_STAR,
- anon_sym_BANG,
- anon_sym_in,
- anon_sym_GT,
- anon_sym_GT_GT,
- anon_sym_AMP,
- anon_sym_PIPE,
- anon_sym_PLUS,
- anon_sym_DASH,
- anon_sym_SLASH,
- anon_sym_LT,
- anon_sym_EQ_EQ,
- anon_sym_BANG_EQ,
- ACTIONS(4372), 28,
- sym__automatic_semicolon,
- sym__ternary_qmark,
- anon_sym_as,
- anon_sym_COMMA,
- anon_sym_RBRACE,
- anon_sym_LPAREN,
- anon_sym_of,
- anon_sym_SEMI,
- anon_sym_LBRACK,
- anon_sym_DOT,
- anon_sym_QMARK_DOT,
- anon_sym_AMP_AMP,
- anon_sym_PIPE_PIPE,
- anon_sym_GT_GT_GT,
- anon_sym_LT_LT,
- anon_sym_CARET,
- anon_sym_PERCENT,
- anon_sym_STAR_STAR,
- anon_sym_LT_EQ,
- anon_sym_EQ_EQ_EQ,
- anon_sym_BANG_EQ_EQ,
- anon_sym_GT_EQ,
- anon_sym_QMARK_QMARK,
- anon_sym_instanceof,
- anon_sym_PLUS_PLUS,
- anon_sym_DASH_DASH,
- anon_sym_BQUOTE,
- anon_sym_satisfies,
- [76892] = 15,
- ACTIONS(241), 1,
- anon_sym_COMMA,
- ACTIONS(2275), 1,
- anon_sym_DQUOTE,
- ACTIONS(2277), 1,
- anon_sym_SQUOTE,
- ACTIONS(4243), 1,
- anon_sym_EQ,
- ACTIONS(4634), 1,
- anon_sym_LBRACK,
- ACTIONS(5091), 1,
- anon_sym_STAR,
- ACTIONS(5200), 1,
- anon_sym_RBRACE,
- STATE(4672), 1,
- aux_sym_object_pattern_repeat1,
- STATE(5156), 1,
- aux_sym_object_repeat1,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(2285), 2,
- sym_number,
- sym_private_property_identifier,
- ACTIONS(2313), 2,
- anon_sym_get,
- anon_sym_set,
- STATE(3788), 3,
- sym_string,
- sym__property_name,
- sym_computed_property_name,
- ACTIONS(3743), 4,
- anon_sym_LPAREN,
- anon_sym_COLON,
- anon_sym_LT,
- anon_sym_QMARK,
- ACTIONS(2307), 21,
- anon_sym_export,
- anon_sym_type,
- anon_sym_namespace,
- anon_sym_let,
- anon_sym_async,
- anon_sym_new,
- sym_identifier,
- anon_sym_static,
- anon_sym_readonly,
- anon_sym_declare,
- anon_sym_public,
- anon_sym_private,
- anon_sym_protected,
- anon_sym_override,
- anon_sym_module,
- anon_sym_any,
- anon_sym_number,
- anon_sym_boolean,
- anon_sym_string,
- anon_sym_symbol,
- anon_sym_object,
- [76966] = 4,
- ACTIONS(5334), 1,
- sym_regex_flags,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(5103), 16,
- anon_sym_STAR,
- anon_sym_as,
- anon_sym_BANG,
- anon_sym_in,
- anon_sym_GT,
- anon_sym_GT_GT,
- anon_sym_AMP,
- anon_sym_PIPE,
- anon_sym_PLUS,
- anon_sym_DASH,
- anon_sym_SLASH,
- anon_sym_LT,
- anon_sym_EQ_EQ,
- anon_sym_BANG_EQ,
- anon_sym_instanceof,
- anon_sym_satisfies,
- ACTIONS(5105), 24,
- sym__automatic_semicolon,
- sym__ternary_qmark,
- anon_sym_COMMA,
- anon_sym_RBRACE,
- anon_sym_LPAREN,
- anon_sym_SEMI,
- anon_sym_LBRACK,
- anon_sym_DOT,
- anon_sym_QMARK_DOT,
- anon_sym_AMP_AMP,
- anon_sym_PIPE_PIPE,
- anon_sym_GT_GT_GT,
- anon_sym_LT_LT,
- anon_sym_CARET,
- anon_sym_PERCENT,
- anon_sym_STAR_STAR,
- anon_sym_LT_EQ,
- anon_sym_EQ_EQ_EQ,
- anon_sym_BANG_EQ_EQ,
- anon_sym_GT_EQ,
- anon_sym_QMARK_QMARK,
- anon_sym_PLUS_PLUS,
- anon_sym_DASH_DASH,
- anon_sym_BQUOTE,
- [77018] = 16,
- ACTIONS(241), 1,
- anon_sym_COMMA,
- ACTIONS(2275), 1,
- anon_sym_DQUOTE,
- ACTIONS(2277), 1,
- anon_sym_SQUOTE,
- ACTIONS(2309), 1,
- anon_sym_async,
- ACTIONS(4243), 1,
- anon_sym_EQ,
- ACTIONS(4634), 1,
- anon_sym_LBRACK,
- ACTIONS(5091), 1,
- anon_sym_STAR,
- ACTIONS(5200), 1,
- anon_sym_RBRACE,
- STATE(4672), 1,
- aux_sym_object_pattern_repeat1,
- STATE(5156), 1,
- aux_sym_object_repeat1,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(2285), 2,
- sym_number,
- sym_private_property_identifier,
- ACTIONS(2313), 2,
- anon_sym_get,
- anon_sym_set,
- STATE(3788), 3,
- sym_string,
- sym__property_name,
- sym_computed_property_name,
- ACTIONS(3743), 4,
- anon_sym_LPAREN,
- anon_sym_COLON,
- anon_sym_LT,
- anon_sym_QMARK,
- ACTIONS(2307), 20,
- anon_sym_export,
- anon_sym_type,
- anon_sym_namespace,
- anon_sym_let,
- anon_sym_new,
- sym_identifier,
- anon_sym_static,
- anon_sym_readonly,
- anon_sym_declare,
- anon_sym_public,
- anon_sym_private,
- anon_sym_protected,
- anon_sym_override,
- anon_sym_module,
- anon_sym_any,
- anon_sym_number,
- anon_sym_boolean,
- anon_sym_string,
- anon_sym_symbol,
- anon_sym_object,
- [77094] = 9,
- ACTIONS(3737), 1,
- anon_sym_COMMA,
- ACTIONS(3838), 1,
- anon_sym_RBRACE,
- ACTIONS(4243), 1,
- anon_sym_EQ,
- STATE(4671), 1,
- aux_sym_object_repeat1,
- STATE(4672), 1,
- aux_sym_object_pattern_repeat1,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(1993), 6,
- anon_sym_STAR,
- anon_sym_LBRACK,
- anon_sym_DQUOTE,
- anon_sym_SQUOTE,
- sym_number,
- sym_private_property_identifier,
- ACTIONS(3743), 7,
- sym__automatic_semicolon,
- anon_sym_LPAREN,
- anon_sym_SEMI,
- anon_sym_COLON,
- anon_sym_LT,
- anon_sym_QMARK,
- anon_sym_PIPE_RBRACE,
- ACTIONS(1991), 23,
- anon_sym_export,
- anon_sym_type,
- anon_sym_namespace,
- anon_sym_let,
- anon_sym_async,
- anon_sym_new,
- sym_identifier,
- anon_sym_static,
- anon_sym_readonly,
- anon_sym_get,
- anon_sym_set,
- anon_sym_declare,
- anon_sym_public,
- anon_sym_private,
- anon_sym_protected,
- anon_sym_override,
- anon_sym_module,
- anon_sym_any,
- anon_sym_number,
- anon_sym_boolean,
- anon_sym_string,
- anon_sym_symbol,
- anon_sym_object,
- [77156] = 9,
- ACTIONS(3737), 1,
- anon_sym_COMMA,
- ACTIONS(3838), 1,
- anon_sym_RBRACE,
- ACTIONS(4243), 1,
- anon_sym_EQ,
- STATE(4671), 1,
- aux_sym_object_repeat1,
- STATE(4672), 1,
- aux_sym_object_pattern_repeat1,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(2003), 6,
- anon_sym_STAR,
- anon_sym_LBRACK,
- anon_sym_DQUOTE,
- anon_sym_SQUOTE,
- sym_number,
- sym_private_property_identifier,
- ACTIONS(3743), 7,
- sym__automatic_semicolon,
- anon_sym_LPAREN,
- anon_sym_SEMI,
- anon_sym_COLON,
- anon_sym_LT,
- anon_sym_QMARK,
- anon_sym_PIPE_RBRACE,
- ACTIONS(2001), 23,
- anon_sym_export,
- anon_sym_type,
- anon_sym_namespace,
- anon_sym_let,
- anon_sym_async,
- anon_sym_new,
- sym_identifier,
- anon_sym_static,
- anon_sym_readonly,
- anon_sym_get,
- anon_sym_set,
- anon_sym_declare,
- anon_sym_public,
- anon_sym_private,
- anon_sym_protected,
- anon_sym_override,
- anon_sym_module,
- anon_sym_any,
- anon_sym_number,
- anon_sym_boolean,
- anon_sym_string,
- anon_sym_symbol,
- anon_sym_object,
- [77218] = 3,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(4778), 13,
- anon_sym_STAR,
- anon_sym_BANG,
- anon_sym_in,
- anon_sym_GT,
- anon_sym_GT_GT,
- anon_sym_AMP,
- anon_sym_PIPE,
- anon_sym_PLUS,
- anon_sym_DASH,
- anon_sym_SLASH,
- anon_sym_LT,
- anon_sym_EQ_EQ,
- anon_sym_BANG_EQ,
- ACTIONS(4374), 28,
- sym__automatic_semicolon,
- sym__ternary_qmark,
- anon_sym_as,
- anon_sym_COMMA,
- anon_sym_RBRACE,
- anon_sym_LPAREN,
- anon_sym_of,
- anon_sym_SEMI,
- anon_sym_LBRACK,
- anon_sym_DOT,
- anon_sym_QMARK_DOT,
- anon_sym_AMP_AMP,
- anon_sym_PIPE_PIPE,
- anon_sym_GT_GT_GT,
- anon_sym_LT_LT,
- anon_sym_CARET,
- anon_sym_PERCENT,
- anon_sym_STAR_STAR,
- anon_sym_LT_EQ,
- anon_sym_EQ_EQ_EQ,
- anon_sym_BANG_EQ_EQ,
- anon_sym_GT_EQ,
- anon_sym_QMARK_QMARK,
- anon_sym_instanceof,
- anon_sym_PLUS_PLUS,
- anon_sym_DASH_DASH,
- anon_sym_BQUOTE,
- anon_sym_satisfies,
- [77268] = 3,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(4888), 13,
- anon_sym_STAR,
- anon_sym_BANG,
- anon_sym_in,
- anon_sym_GT,
- anon_sym_GT_GT,
- anon_sym_AMP,
- anon_sym_PIPE,
- anon_sym_PLUS,
- anon_sym_DASH,
- anon_sym_SLASH,
- anon_sym_LT,
- anon_sym_EQ_EQ,
- anon_sym_BANG_EQ,
- ACTIONS(4890), 28,
- sym__automatic_semicolon,
- sym__ternary_qmark,
- anon_sym_as,
- anon_sym_COMMA,
- anon_sym_RBRACE,
- anon_sym_LPAREN,
- anon_sym_of,
- anon_sym_SEMI,
- anon_sym_LBRACK,
- anon_sym_DOT,
- anon_sym_QMARK_DOT,
- anon_sym_AMP_AMP,
- anon_sym_PIPE_PIPE,
- anon_sym_GT_GT_GT,
- anon_sym_LT_LT,
- anon_sym_CARET,
- anon_sym_PERCENT,
- anon_sym_STAR_STAR,
- anon_sym_LT_EQ,
- anon_sym_EQ_EQ_EQ,
- anon_sym_BANG_EQ_EQ,
- anon_sym_GT_EQ,
- anon_sym_QMARK_QMARK,
- anon_sym_instanceof,
- anon_sym_PLUS_PLUS,
- anon_sym_DASH_DASH,
- anon_sym_BQUOTE,
- anon_sym_satisfies,
- [77318] = 3,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(4782), 13,
- anon_sym_STAR,
- anon_sym_BANG,
- anon_sym_in,
- anon_sym_GT,
- anon_sym_GT_GT,
- anon_sym_AMP,
- anon_sym_PIPE,
- anon_sym_PLUS,
- anon_sym_DASH,
- anon_sym_SLASH,
- anon_sym_LT,
- anon_sym_EQ_EQ,
- anon_sym_BANG_EQ,
- ACTIONS(4784), 28,
- sym__automatic_semicolon,
- sym__ternary_qmark,
- anon_sym_as,
- anon_sym_COMMA,
- anon_sym_RBRACE,
- anon_sym_LPAREN,
- anon_sym_of,
- anon_sym_SEMI,
- anon_sym_LBRACK,
- anon_sym_DOT,
- anon_sym_QMARK_DOT,
- anon_sym_AMP_AMP,
- anon_sym_PIPE_PIPE,
- anon_sym_GT_GT_GT,
- anon_sym_LT_LT,
- anon_sym_CARET,
- anon_sym_PERCENT,
- anon_sym_STAR_STAR,
- anon_sym_LT_EQ,
- anon_sym_EQ_EQ_EQ,
- anon_sym_BANG_EQ_EQ,
- anon_sym_GT_EQ,
- anon_sym_QMARK_QMARK,
- anon_sym_instanceof,
- anon_sym_PLUS_PLUS,
- anon_sym_DASH_DASH,
- anon_sym_BQUOTE,
- anon_sym_satisfies,
- [77368] = 15,
- ACTIONS(241), 1,
- anon_sym_COMMA,
- ACTIONS(2275), 1,
- anon_sym_DQUOTE,
- ACTIONS(2277), 1,
- anon_sym_SQUOTE,
- ACTIONS(4243), 1,
- anon_sym_EQ,
- ACTIONS(4634), 1,
- anon_sym_LBRACK,
- ACTIONS(5091), 1,
- anon_sym_STAR,
- ACTIONS(5202), 1,
- anon_sym_RBRACE,
- STATE(4672), 1,
- aux_sym_object_pattern_repeat1,
- STATE(5156), 1,
- aux_sym_object_repeat1,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(2285), 2,
- sym_number,
- sym_private_property_identifier,
- ACTIONS(2313), 2,
- anon_sym_get,
- anon_sym_set,
- STATE(3788), 3,
- sym_string,
- sym__property_name,
- sym_computed_property_name,
- ACTIONS(3743), 4,
- anon_sym_LPAREN,
- anon_sym_COLON,
- anon_sym_LT,
- anon_sym_QMARK,
- ACTIONS(2307), 21,
- anon_sym_export,
- anon_sym_type,
- anon_sym_namespace,
- anon_sym_let,
- anon_sym_async,
- anon_sym_new,
- sym_identifier,
- anon_sym_static,
- anon_sym_readonly,
- anon_sym_declare,
- anon_sym_public,
- anon_sym_private,
- anon_sym_protected,
- anon_sym_override,
- anon_sym_module,
- anon_sym_any,
- anon_sym_number,
- anon_sym_boolean,
- anon_sym_string,
- anon_sym_symbol,
- anon_sym_object,
- [77442] = 10,
- ACTIONS(2275), 1,
- anon_sym_DQUOTE,
- ACTIONS(2277), 1,
- anon_sym_SQUOTE,
- ACTIONS(4634), 1,
- anon_sym_LBRACK,
- ACTIONS(5241), 1,
- anon_sym_STAR,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(5408), 2,
- sym_number,
- sym_private_property_identifier,
- ACTIONS(5410), 2,
- anon_sym_get,
- anon_sym_set,
- STATE(3757), 3,
- sym_string,
- sym__property_name,
- sym_computed_property_name,
- ACTIONS(3743), 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(2307), 21,
- anon_sym_export,
- anon_sym_type,
- anon_sym_namespace,
- anon_sym_let,
- anon_sym_async,
- anon_sym_new,
- sym_identifier,
- anon_sym_static,
- anon_sym_readonly,
- anon_sym_declare,
- anon_sym_public,
- anon_sym_private,
- anon_sym_protected,
- anon_sym_override,
- anon_sym_module,
- anon_sym_any,
- anon_sym_number,
- anon_sym_boolean,
- anon_sym_string,
- anon_sym_symbol,
- anon_sym_object,
- [77506] = 16,
- ACTIONS(241), 1,
- anon_sym_COMMA,
- ACTIONS(2275), 1,
- anon_sym_DQUOTE,
- ACTIONS(2277), 1,
- anon_sym_SQUOTE,
- ACTIONS(2309), 1,
- anon_sym_async,
- ACTIONS(4243), 1,
- anon_sym_EQ,
- ACTIONS(4634), 1,
- anon_sym_LBRACK,
- ACTIONS(5091), 1,
- anon_sym_STAR,
- ACTIONS(5202), 1,
- anon_sym_RBRACE,
- STATE(4672), 1,
- aux_sym_object_pattern_repeat1,
- STATE(5156), 1,
- aux_sym_object_repeat1,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(2285), 2,
- sym_number,
- sym_private_property_identifier,
- ACTIONS(2313), 2,
- anon_sym_get,
- anon_sym_set,
- STATE(3788), 3,
- sym_string,
- sym__property_name,
- sym_computed_property_name,
- ACTIONS(3743), 4,
- anon_sym_LPAREN,
- anon_sym_COLON,
- anon_sym_LT,
- anon_sym_QMARK,
- ACTIONS(2307), 20,
- anon_sym_export,
- anon_sym_type,
- anon_sym_namespace,
- anon_sym_let,
- anon_sym_new,
- sym_identifier,
- anon_sym_static,
- anon_sym_readonly,
- anon_sym_declare,
- anon_sym_public,
- anon_sym_private,
- anon_sym_protected,
- anon_sym_override,
- anon_sym_module,
- anon_sym_any,
- anon_sym_number,
- anon_sym_boolean,
- anon_sym_string,
- anon_sym_symbol,
- anon_sym_object,
- [77582] = 7,
- ACTIONS(1726), 1,
- anon_sym_EQ,
- ACTIONS(4414), 1,
- anon_sym_LBRACK,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(2331), 2,
- anon_sym_COMMA,
- anon_sym_extends,
- ACTIONS(4417), 3,
- anon_sym_GT,
- anon_sym_AMP,
- anon_sym_PIPE,
- ACTIONS(1724), 10,
- anon_sym_STAR,
- anon_sym_BANG,
- anon_sym_in,
- anon_sym_GT_GT,
- anon_sym_PLUS,
- anon_sym_DASH,
- anon_sym_SLASH,
- anon_sym_LT,
- anon_sym_EQ_EQ,
- anon_sym_BANG_EQ,
- ACTIONS(1728), 24,
- sym__automatic_semicolon,
- sym__ternary_qmark,
- anon_sym_as,
- anon_sym_LPAREN,
- anon_sym_SEMI,
- anon_sym_DOT,
- anon_sym_QMARK_DOT,
- anon_sym_AMP_AMP,
- anon_sym_PIPE_PIPE,
- anon_sym_GT_GT_GT,
- anon_sym_LT_LT,
- anon_sym_CARET,
- anon_sym_PERCENT,
- anon_sym_STAR_STAR,
- anon_sym_LT_EQ,
- anon_sym_EQ_EQ_EQ,
- anon_sym_BANG_EQ_EQ,
- anon_sym_GT_EQ,
- anon_sym_QMARK_QMARK,
- anon_sym_instanceof,
- anon_sym_PLUS_PLUS,
- anon_sym_DASH_DASH,
- anon_sym_BQUOTE,
- anon_sym_satisfies,
- [77640] = 7,
- ACTIONS(4440), 1,
- anon_sym_EQ,
- ACTIONS(4444), 1,
- anon_sym_LBRACK,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(4392), 2,
- anon_sym_COMMA,
- anon_sym_extends,
- ACTIONS(4447), 3,
- anon_sym_GT,
- anon_sym_AMP,
- anon_sym_PIPE,
- ACTIONS(4438), 10,
- anon_sym_STAR,
- anon_sym_BANG,
- anon_sym_in,
- anon_sym_GT_GT,
- anon_sym_PLUS,
- anon_sym_DASH,
- anon_sym_SLASH,
- anon_sym_LT,
- anon_sym_EQ_EQ,
- anon_sym_BANG_EQ,
- ACTIONS(4442), 24,
- sym__automatic_semicolon,
- sym__ternary_qmark,
- anon_sym_as,
- anon_sym_LPAREN,
- anon_sym_SEMI,
- anon_sym_DOT,
- anon_sym_QMARK_DOT,
- anon_sym_AMP_AMP,
- anon_sym_PIPE_PIPE,
- anon_sym_GT_GT_GT,
- anon_sym_LT_LT,
- anon_sym_CARET,
- anon_sym_PERCENT,
- anon_sym_STAR_STAR,
- anon_sym_LT_EQ,
- anon_sym_EQ_EQ_EQ,
- anon_sym_BANG_EQ_EQ,
- anon_sym_GT_EQ,
- anon_sym_QMARK_QMARK,
- anon_sym_instanceof,
- anon_sym_PLUS_PLUS,
- anon_sym_DASH_DASH,
- anon_sym_BQUOTE,
- anon_sym_satisfies,
- [77698] = 15,
- ACTIONS(241), 1,
- anon_sym_COMMA,
- ACTIONS(702), 1,
- anon_sym_RBRACE,
- ACTIONS(2275), 1,
- anon_sym_DQUOTE,
- ACTIONS(2277), 1,
- anon_sym_SQUOTE,
- ACTIONS(4243), 1,
- anon_sym_EQ,
- ACTIONS(4634), 1,
- anon_sym_LBRACK,
- ACTIONS(5091), 1,
- anon_sym_STAR,
- STATE(4672), 1,
- aux_sym_object_pattern_repeat1,
- STATE(5156), 1,
- aux_sym_object_repeat1,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(2285), 2,
- sym_number,
- sym_private_property_identifier,
- ACTIONS(2313), 2,
- anon_sym_get,
- anon_sym_set,
- STATE(3788), 3,
- sym_string,
- sym__property_name,
- sym_computed_property_name,
- ACTIONS(3743), 4,
- anon_sym_LPAREN,
- anon_sym_COLON,
- anon_sym_LT,
- anon_sym_QMARK,
- ACTIONS(2307), 21,
- anon_sym_export,
- anon_sym_type,
- anon_sym_namespace,
- anon_sym_let,
- anon_sym_async,
- anon_sym_new,
- sym_identifier,
- anon_sym_static,
- anon_sym_readonly,
- anon_sym_declare,
- anon_sym_public,
- anon_sym_private,
- anon_sym_protected,
- anon_sym_override,
- anon_sym_module,
- anon_sym_any,
- anon_sym_number,
- anon_sym_boolean,
- anon_sym_string,
- anon_sym_symbol,
- anon_sym_object,
- [77772] = 8,
- ACTIONS(1726), 1,
- anon_sym_EQ,
- ACTIONS(4414), 1,
- anon_sym_LBRACK,
- ACTIONS(4989), 1,
- anon_sym_COLON,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(4417), 2,
- anon_sym_AMP,
- anon_sym_PIPE,
- ACTIONS(2331), 3,
- anon_sym_COMMA,
- anon_sym_RBRACK,
- anon_sym_extends,
- ACTIONS(1724), 11,
- anon_sym_STAR,
- anon_sym_BANG,
- anon_sym_in,
- anon_sym_GT,
- anon_sym_GT_GT,
- anon_sym_PLUS,
- anon_sym_DASH,
- anon_sym_SLASH,
- anon_sym_LT,
- anon_sym_EQ_EQ,
- anon_sym_BANG_EQ,
- ACTIONS(1728), 22,
- sym__ternary_qmark,
- anon_sym_as,
- anon_sym_LPAREN,
- anon_sym_DOT,
- anon_sym_QMARK_DOT,
- anon_sym_AMP_AMP,
- anon_sym_PIPE_PIPE,
- anon_sym_GT_GT_GT,
- anon_sym_LT_LT,
- anon_sym_CARET,
- anon_sym_PERCENT,
- anon_sym_STAR_STAR,
- anon_sym_LT_EQ,
- anon_sym_EQ_EQ_EQ,
- anon_sym_BANG_EQ_EQ,
- anon_sym_GT_EQ,
- anon_sym_QMARK_QMARK,
- anon_sym_instanceof,
- anon_sym_PLUS_PLUS,
- anon_sym_DASH_DASH,
- anon_sym_BQUOTE,
- anon_sym_satisfies,
- [77832] = 8,
- ACTIONS(4440), 1,
- anon_sym_EQ,
- ACTIONS(4444), 1,
- anon_sym_LBRACK,
- ACTIONS(4985), 1,
- anon_sym_COLON,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(4447), 2,
- anon_sym_AMP,
- anon_sym_PIPE,
- ACTIONS(4392), 3,
- anon_sym_COMMA,
- anon_sym_RBRACK,
- anon_sym_extends,
- ACTIONS(4438), 11,
- anon_sym_STAR,
- anon_sym_BANG,
- anon_sym_in,
- anon_sym_GT,
- anon_sym_GT_GT,
- anon_sym_PLUS,
- anon_sym_DASH,
- anon_sym_SLASH,
- anon_sym_LT,
- anon_sym_EQ_EQ,
- anon_sym_BANG_EQ,
- ACTIONS(4442), 22,
- sym__ternary_qmark,
- anon_sym_as,
- anon_sym_LPAREN,
- anon_sym_DOT,
- anon_sym_QMARK_DOT,
- anon_sym_AMP_AMP,
- anon_sym_PIPE_PIPE,
- anon_sym_GT_GT_GT,
- anon_sym_LT_LT,
- anon_sym_CARET,
- anon_sym_PERCENT,
- anon_sym_STAR_STAR,
- anon_sym_LT_EQ,
- anon_sym_EQ_EQ_EQ,
- anon_sym_BANG_EQ_EQ,
- anon_sym_GT_EQ,
- anon_sym_QMARK_QMARK,
- anon_sym_instanceof,
- anon_sym_PLUS_PLUS,
- anon_sym_DASH_DASH,
- anon_sym_BQUOTE,
- anon_sym_satisfies,
- [77892] = 9,
- ACTIONS(3737), 1,
- anon_sym_COMMA,
- ACTIONS(3824), 1,
- anon_sym_RBRACE,
- ACTIONS(4243), 1,
- anon_sym_EQ,
- STATE(4672), 1,
- aux_sym_object_pattern_repeat1,
- STATE(5156), 1,
- aux_sym_object_repeat1,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(1993), 6,
- anon_sym_STAR,
- anon_sym_LBRACK,
- anon_sym_DQUOTE,
- anon_sym_SQUOTE,
- sym_number,
- sym_private_property_identifier,
- ACTIONS(3743), 7,
- sym__automatic_semicolon,
- anon_sym_LPAREN,
- anon_sym_SEMI,
- anon_sym_COLON,
- anon_sym_LT,
- anon_sym_QMARK,
- anon_sym_PIPE_RBRACE,
- ACTIONS(1991), 23,
- anon_sym_export,
- anon_sym_type,
- anon_sym_namespace,
- anon_sym_let,
- anon_sym_async,
- anon_sym_new,
- sym_identifier,
- anon_sym_static,
- anon_sym_readonly,
- anon_sym_get,
- anon_sym_set,
- anon_sym_declare,
- anon_sym_public,
- anon_sym_private,
- anon_sym_protected,
- anon_sym_override,
- anon_sym_module,
- anon_sym_any,
- anon_sym_number,
- anon_sym_boolean,
- anon_sym_string,
- anon_sym_symbol,
- anon_sym_object,
- [77954] = 9,
- ACTIONS(3737), 1,
- anon_sym_COMMA,
- ACTIONS(3824), 1,
- anon_sym_RBRACE,
- ACTIONS(4243), 1,
- anon_sym_EQ,
- STATE(4672), 1,
- aux_sym_object_pattern_repeat1,
- STATE(5156), 1,
- aux_sym_object_repeat1,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(2003), 6,
- anon_sym_STAR,
- anon_sym_LBRACK,
- anon_sym_DQUOTE,
- anon_sym_SQUOTE,
- sym_number,
- sym_private_property_identifier,
- ACTIONS(3743), 7,
- sym__automatic_semicolon,
- anon_sym_LPAREN,
- anon_sym_SEMI,
- anon_sym_COLON,
- anon_sym_LT,
- anon_sym_QMARK,
- anon_sym_PIPE_RBRACE,
- ACTIONS(2001), 23,
- anon_sym_export,
- anon_sym_type,
- anon_sym_namespace,
- anon_sym_let,
- anon_sym_async,
- anon_sym_new,
- sym_identifier,
- anon_sym_static,
- anon_sym_readonly,
- anon_sym_get,
- anon_sym_set,
- anon_sym_declare,
- anon_sym_public,
- anon_sym_private,
- anon_sym_protected,
- anon_sym_override,
- anon_sym_module,
- anon_sym_any,
- anon_sym_number,
- anon_sym_boolean,
- anon_sym_string,
- anon_sym_symbol,
- anon_sym_object,
- [78016] = 9,
- ACTIONS(3737), 1,
- anon_sym_COMMA,
- ACTIONS(3740), 1,
- anon_sym_RBRACE,
- ACTIONS(4243), 1,
- anon_sym_EQ,
- STATE(4672), 1,
- aux_sym_object_pattern_repeat1,
- STATE(5156), 1,
- aux_sym_object_repeat1,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(1993), 6,
- anon_sym_STAR,
- anon_sym_LBRACK,
- anon_sym_DQUOTE,
- anon_sym_SQUOTE,
- sym_number,
- sym_private_property_identifier,
- ACTIONS(3743), 7,
- sym__automatic_semicolon,
- anon_sym_LPAREN,
- anon_sym_SEMI,
- anon_sym_COLON,
- anon_sym_LT,
- anon_sym_QMARK,
- anon_sym_PIPE_RBRACE,
- ACTIONS(1991), 23,
- anon_sym_export,
- anon_sym_type,
- anon_sym_namespace,
- anon_sym_let,
- anon_sym_async,
- anon_sym_new,
- sym_identifier,
- anon_sym_static,
- anon_sym_readonly,
- anon_sym_get,
- anon_sym_set,
- anon_sym_declare,
- anon_sym_public,
- anon_sym_private,
- anon_sym_protected,
- anon_sym_override,
- anon_sym_module,
- anon_sym_any,
- anon_sym_number,
- anon_sym_boolean,
- anon_sym_string,
- anon_sym_symbol,
- anon_sym_object,
- [78078] = 9,
- ACTIONS(3737), 1,
- anon_sym_COMMA,
- ACTIONS(3740), 1,
- anon_sym_RBRACE,
- ACTIONS(4243), 1,
- anon_sym_EQ,
- STATE(4672), 1,
- aux_sym_object_pattern_repeat1,
- STATE(5156), 1,
- aux_sym_object_repeat1,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(2003), 6,
- anon_sym_STAR,
- anon_sym_LBRACK,
- anon_sym_DQUOTE,
- anon_sym_SQUOTE,
- sym_number,
- sym_private_property_identifier,
- ACTIONS(3743), 7,
- sym__automatic_semicolon,
- anon_sym_LPAREN,
- anon_sym_SEMI,
- anon_sym_COLON,
- anon_sym_LT,
- anon_sym_QMARK,
- anon_sym_PIPE_RBRACE,
- ACTIONS(2001), 23,
- anon_sym_export,
- anon_sym_type,
- anon_sym_namespace,
- anon_sym_let,
- anon_sym_async,
- anon_sym_new,
- sym_identifier,
- anon_sym_static,
- anon_sym_readonly,
- anon_sym_get,
- anon_sym_set,
- anon_sym_declare,
- anon_sym_public,
- anon_sym_private,
- anon_sym_protected,
- anon_sym_override,
- anon_sym_module,
- anon_sym_any,
- anon_sym_number,
- anon_sym_boolean,
- anon_sym_string,
- anon_sym_symbol,
- anon_sym_object,
- [78140] = 11,
- ACTIONS(1594), 1,
- anon_sym_DQUOTE,
- ACTIONS(1596), 1,
- anon_sym_SQUOTE,
- ACTIONS(4245), 1,
- anon_sym_LBRACK,
- ACTIONS(5379), 1,
- anon_sym_STAR,
- ACTIONS(5412), 1,
- anon_sym_async,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(5414), 2,
- sym_number,
- sym_private_property_identifier,
- ACTIONS(5416), 2,
- anon_sym_get,
- anon_sym_set,
- STATE(2981), 3,
- sym_string,
- sym__property_name,
- sym_computed_property_name,
- ACTIONS(3743), 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(3607), 20,
- anon_sym_export,
- anon_sym_type,
- anon_sym_namespace,
- anon_sym_let,
- anon_sym_new,
- sym_identifier,
- anon_sym_static,
- anon_sym_readonly,
- anon_sym_declare,
- anon_sym_public,
- anon_sym_private,
- anon_sym_protected,
- anon_sym_override,
- anon_sym_module,
- anon_sym_any,
- anon_sym_number,
- anon_sym_boolean,
- anon_sym_string,
- anon_sym_symbol,
- anon_sym_object,
- [78206] = 16,
- ACTIONS(241), 1,
- anon_sym_COMMA,
- ACTIONS(702), 1,
- anon_sym_RBRACE,
- ACTIONS(2275), 1,
- anon_sym_DQUOTE,
- ACTIONS(2277), 1,
- anon_sym_SQUOTE,
- ACTIONS(2309), 1,
- anon_sym_async,
- ACTIONS(4243), 1,
- anon_sym_EQ,
- ACTIONS(4634), 1,
- anon_sym_LBRACK,
- ACTIONS(5091), 1,
- anon_sym_STAR,
- STATE(4672), 1,
- aux_sym_object_pattern_repeat1,
- STATE(5156), 1,
- aux_sym_object_repeat1,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(2285), 2,
- sym_number,
- sym_private_property_identifier,
- ACTIONS(2313), 2,
- anon_sym_get,
- anon_sym_set,
- STATE(3788), 3,
- sym_string,
- sym__property_name,
- sym_computed_property_name,
- ACTIONS(3743), 4,
- anon_sym_LPAREN,
- anon_sym_COLON,
- anon_sym_LT,
- anon_sym_QMARK,
- ACTIONS(2307), 20,
- anon_sym_export,
- anon_sym_type,
- anon_sym_namespace,
- anon_sym_let,
- anon_sym_new,
- sym_identifier,
- anon_sym_static,
- anon_sym_readonly,
- anon_sym_declare,
- anon_sym_public,
- anon_sym_private,
- anon_sym_protected,
- anon_sym_override,
- anon_sym_module,
- anon_sym_any,
- anon_sym_number,
- anon_sym_boolean,
- anon_sym_string,
- anon_sym_symbol,
- anon_sym_object,
- [78282] = 9,
- ACTIONS(3737), 1,
- anon_sym_COMMA,
- ACTIONS(3817), 1,
- anon_sym_RBRACE,
- ACTIONS(4243), 1,
- anon_sym_EQ,
- STATE(4672), 1,
- aux_sym_object_pattern_repeat1,
- STATE(5156), 1,
- aux_sym_object_repeat1,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(1993), 6,
- anon_sym_STAR,
- anon_sym_LBRACK,
- anon_sym_DQUOTE,
- anon_sym_SQUOTE,
- sym_number,
- sym_private_property_identifier,
- ACTIONS(3743), 7,
- sym__automatic_semicolon,
- anon_sym_LPAREN,
- anon_sym_SEMI,
- anon_sym_COLON,
- anon_sym_LT,
- anon_sym_QMARK,
- anon_sym_PIPE_RBRACE,
- ACTIONS(1991), 23,
- anon_sym_export,
- anon_sym_type,
- anon_sym_namespace,
- anon_sym_let,
- anon_sym_async,
- anon_sym_new,
- sym_identifier,
- anon_sym_static,
- anon_sym_readonly,
- anon_sym_get,
- anon_sym_set,
- anon_sym_declare,
- anon_sym_public,
- anon_sym_private,
- anon_sym_protected,
- anon_sym_override,
- anon_sym_module,
- anon_sym_any,
- anon_sym_number,
- anon_sym_boolean,
- anon_sym_string,
- anon_sym_symbol,
- anon_sym_object,
- [78344] = 9,
- ACTIONS(3737), 1,
- anon_sym_COMMA,
- ACTIONS(3817), 1,
- anon_sym_RBRACE,
- ACTIONS(4243), 1,
- anon_sym_EQ,
- STATE(4672), 1,
- aux_sym_object_pattern_repeat1,
- STATE(5156), 1,
- aux_sym_object_repeat1,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(2003), 6,
- anon_sym_STAR,
- anon_sym_LBRACK,
- anon_sym_DQUOTE,
- anon_sym_SQUOTE,
- sym_number,
- sym_private_property_identifier,
- ACTIONS(3743), 7,
- sym__automatic_semicolon,
- anon_sym_LPAREN,
- anon_sym_SEMI,
- anon_sym_COLON,
- anon_sym_LT,
- anon_sym_QMARK,
- anon_sym_PIPE_RBRACE,
- ACTIONS(2001), 23,
- anon_sym_export,
- anon_sym_type,
- anon_sym_namespace,
- anon_sym_let,
- anon_sym_async,
- anon_sym_new,
- sym_identifier,
- anon_sym_static,
- anon_sym_readonly,
- anon_sym_get,
- anon_sym_set,
- anon_sym_declare,
- anon_sym_public,
- anon_sym_private,
- anon_sym_protected,
- anon_sym_override,
- anon_sym_module,
- anon_sym_any,
- anon_sym_number,
- anon_sym_boolean,
- anon_sym_string,
- anon_sym_symbol,
- anon_sym_object,
- [78406] = 9,
- ACTIONS(3737), 1,
- anon_sym_COMMA,
- ACTIONS(3829), 1,
- anon_sym_RBRACE,
- ACTIONS(4243), 1,
- anon_sym_EQ,
- STATE(4672), 1,
- aux_sym_object_pattern_repeat1,
- STATE(5156), 1,
- aux_sym_object_repeat1,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(1993), 6,
- anon_sym_STAR,
- anon_sym_LBRACK,
- anon_sym_DQUOTE,
- anon_sym_SQUOTE,
- sym_number,
- sym_private_property_identifier,
- ACTIONS(3743), 7,
- sym__automatic_semicolon,
- anon_sym_LPAREN,
- anon_sym_SEMI,
- anon_sym_COLON,
- anon_sym_LT,
- anon_sym_QMARK,
- anon_sym_PIPE_RBRACE,
- ACTIONS(1991), 23,
- anon_sym_export,
- anon_sym_type,
- anon_sym_namespace,
- anon_sym_let,
- anon_sym_async,
- anon_sym_new,
- sym_identifier,
- anon_sym_static,
- anon_sym_readonly,
- anon_sym_get,
- anon_sym_set,
- anon_sym_declare,
- anon_sym_public,
- anon_sym_private,
- anon_sym_protected,
- anon_sym_override,
- anon_sym_module,
- anon_sym_any,
- anon_sym_number,
- anon_sym_boolean,
- anon_sym_string,
- anon_sym_symbol,
- anon_sym_object,
- [78468] = 9,
- ACTIONS(3737), 1,
- anon_sym_COMMA,
- ACTIONS(3829), 1,
- anon_sym_RBRACE,
- ACTIONS(4243), 1,
- anon_sym_EQ,
- STATE(4672), 1,
- aux_sym_object_pattern_repeat1,
- STATE(5156), 1,
- aux_sym_object_repeat1,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(2003), 6,
- anon_sym_STAR,
- anon_sym_LBRACK,
- anon_sym_DQUOTE,
- anon_sym_SQUOTE,
- sym_number,
- sym_private_property_identifier,
- ACTIONS(3743), 7,
- sym__automatic_semicolon,
- anon_sym_LPAREN,
- anon_sym_SEMI,
- anon_sym_COLON,
- anon_sym_LT,
- anon_sym_QMARK,
- anon_sym_PIPE_RBRACE,
- ACTIONS(2001), 23,
- anon_sym_export,
- anon_sym_type,
- anon_sym_namespace,
- anon_sym_let,
- anon_sym_async,
- anon_sym_new,
- sym_identifier,
- anon_sym_static,
- anon_sym_readonly,
- anon_sym_get,
- anon_sym_set,
- anon_sym_declare,
- anon_sym_public,
- anon_sym_private,
- anon_sym_protected,
- anon_sym_override,
- anon_sym_module,
- anon_sym_any,
- anon_sym_number,
- anon_sym_boolean,
- anon_sym_string,
- anon_sym_symbol,
- anon_sym_object,
- [78530] = 3,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(4788), 13,
- anon_sym_STAR,
- anon_sym_BANG,
- anon_sym_in,
- anon_sym_GT,
- anon_sym_GT_GT,
- anon_sym_AMP,
- anon_sym_PIPE,
- anon_sym_PLUS,
- anon_sym_DASH,
- anon_sym_SLASH,
- anon_sym_LT,
- anon_sym_EQ_EQ,
- anon_sym_BANG_EQ,
- ACTIONS(4790), 28,
- sym__automatic_semicolon,
- sym__ternary_qmark,
- anon_sym_as,
- anon_sym_COMMA,
- anon_sym_RBRACE,
- anon_sym_LPAREN,
- anon_sym_of,
- anon_sym_SEMI,
- anon_sym_LBRACK,
- anon_sym_DOT,
- anon_sym_QMARK_DOT,
- anon_sym_AMP_AMP,
- anon_sym_PIPE_PIPE,
- anon_sym_GT_GT_GT,
- anon_sym_LT_LT,
- anon_sym_CARET,
- anon_sym_PERCENT,
- anon_sym_STAR_STAR,
- anon_sym_LT_EQ,
- anon_sym_EQ_EQ_EQ,
- anon_sym_BANG_EQ_EQ,
- anon_sym_GT_EQ,
- anon_sym_QMARK_QMARK,
- anon_sym_instanceof,
- anon_sym_PLUS_PLUS,
- anon_sym_DASH_DASH,
- anon_sym_BQUOTE,
- anon_sym_satisfies,
- [78580] = 3,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(4796), 13,
- anon_sym_STAR,
- anon_sym_BANG,
- anon_sym_in,
- anon_sym_GT,
- anon_sym_GT_GT,
- anon_sym_AMP,
- anon_sym_PIPE,
- anon_sym_PLUS,
- anon_sym_DASH,
- anon_sym_SLASH,
- anon_sym_LT,
- anon_sym_EQ_EQ,
- anon_sym_BANG_EQ,
- ACTIONS(4798), 28,
- sym__automatic_semicolon,
- sym__ternary_qmark,
- anon_sym_as,
- anon_sym_COMMA,
- anon_sym_RBRACE,
- anon_sym_LPAREN,
- anon_sym_of,
- anon_sym_SEMI,
- anon_sym_LBRACK,
- anon_sym_DOT,
- anon_sym_QMARK_DOT,
- anon_sym_AMP_AMP,
- anon_sym_PIPE_PIPE,
- anon_sym_GT_GT_GT,
- anon_sym_LT_LT,
- anon_sym_CARET,
- anon_sym_PERCENT,
- anon_sym_STAR_STAR,
- anon_sym_LT_EQ,
- anon_sym_EQ_EQ_EQ,
- anon_sym_BANG_EQ_EQ,
- anon_sym_GT_EQ,
- anon_sym_QMARK_QMARK,
- anon_sym_instanceof,
- anon_sym_PLUS_PLUS,
- anon_sym_DASH_DASH,
- anon_sym_BQUOTE,
- anon_sym_satisfies,
- [78630] = 3,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(4800), 13,
- anon_sym_STAR,
- anon_sym_BANG,
- anon_sym_in,
- anon_sym_GT,
- anon_sym_GT_GT,
- anon_sym_AMP,
- anon_sym_PIPE,
- anon_sym_PLUS,
- anon_sym_DASH,
- anon_sym_SLASH,
- anon_sym_LT,
- anon_sym_EQ_EQ,
- anon_sym_BANG_EQ,
- ACTIONS(4802), 28,
- sym__automatic_semicolon,
- sym__ternary_qmark,
- anon_sym_as,
- anon_sym_COMMA,
- anon_sym_RBRACE,
- anon_sym_LPAREN,
- anon_sym_of,
- anon_sym_SEMI,
- anon_sym_LBRACK,
- anon_sym_DOT,
- anon_sym_QMARK_DOT,
- anon_sym_AMP_AMP,
- anon_sym_PIPE_PIPE,
- anon_sym_GT_GT_GT,
- anon_sym_LT_LT,
- anon_sym_CARET,
- anon_sym_PERCENT,
- anon_sym_STAR_STAR,
- anon_sym_LT_EQ,
- anon_sym_EQ_EQ_EQ,
- anon_sym_BANG_EQ_EQ,
- anon_sym_GT_EQ,
- anon_sym_QMARK_QMARK,
- anon_sym_instanceof,
- anon_sym_PLUS_PLUS,
- anon_sym_DASH_DASH,
- anon_sym_BQUOTE,
- anon_sym_satisfies,
- [78680] = 3,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(4804), 13,
- anon_sym_STAR,
- anon_sym_BANG,
- anon_sym_in,
- anon_sym_GT,
- anon_sym_GT_GT,
- anon_sym_AMP,
- anon_sym_PIPE,
- anon_sym_PLUS,
- anon_sym_DASH,
- anon_sym_SLASH,
- anon_sym_LT,
- anon_sym_EQ_EQ,
- anon_sym_BANG_EQ,
- ACTIONS(4806), 28,
- sym__automatic_semicolon,
- sym__ternary_qmark,
- anon_sym_as,
- anon_sym_COMMA,
- anon_sym_RBRACE,
- anon_sym_LPAREN,
- anon_sym_of,
- anon_sym_SEMI,
- anon_sym_LBRACK,
- anon_sym_DOT,
- anon_sym_QMARK_DOT,
- anon_sym_AMP_AMP,
- anon_sym_PIPE_PIPE,
- anon_sym_GT_GT_GT,
- anon_sym_LT_LT,
- anon_sym_CARET,
- anon_sym_PERCENT,
- anon_sym_STAR_STAR,
- anon_sym_LT_EQ,
- anon_sym_EQ_EQ_EQ,
- anon_sym_BANG_EQ_EQ,
- anon_sym_GT_EQ,
- anon_sym_QMARK_QMARK,
- anon_sym_instanceof,
- anon_sym_PLUS_PLUS,
- anon_sym_DASH_DASH,
- anon_sym_BQUOTE,
- anon_sym_satisfies,
- [78730] = 3,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(4800), 13,
- anon_sym_STAR,
- anon_sym_BANG,
- anon_sym_in,
- anon_sym_GT,
- anon_sym_GT_GT,
- anon_sym_AMP,
- anon_sym_PIPE,
- anon_sym_PLUS,
- anon_sym_DASH,
- anon_sym_SLASH,
- anon_sym_LT,
- anon_sym_EQ_EQ,
- anon_sym_BANG_EQ,
- ACTIONS(4802), 28,
- sym__automatic_semicolon,
- sym__ternary_qmark,
- anon_sym_as,
- anon_sym_COMMA,
- anon_sym_RBRACE,
- anon_sym_LPAREN,
- anon_sym_of,
- anon_sym_SEMI,
- anon_sym_LBRACK,
- anon_sym_DOT,
- anon_sym_QMARK_DOT,
- anon_sym_AMP_AMP,
- anon_sym_PIPE_PIPE,
- anon_sym_GT_GT_GT,
- anon_sym_LT_LT,
- anon_sym_CARET,
- anon_sym_PERCENT,
- anon_sym_STAR_STAR,
- anon_sym_LT_EQ,
- anon_sym_EQ_EQ_EQ,
- anon_sym_BANG_EQ_EQ,
- anon_sym_GT_EQ,
- anon_sym_QMARK_QMARK,
- anon_sym_instanceof,
- anon_sym_PLUS_PLUS,
- anon_sym_DASH_DASH,
- anon_sym_BQUOTE,
- anon_sym_satisfies,
- [78780] = 3,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(4815), 13,
- anon_sym_STAR,
- anon_sym_BANG,
- anon_sym_in,
- anon_sym_GT,
- anon_sym_GT_GT,
- anon_sym_AMP,
- anon_sym_PIPE,
- anon_sym_PLUS,
- anon_sym_DASH,
- anon_sym_SLASH,
- anon_sym_LT,
- anon_sym_EQ_EQ,
- anon_sym_BANG_EQ,
- ACTIONS(4817), 28,
- sym__automatic_semicolon,
- sym__ternary_qmark,
- anon_sym_as,
- anon_sym_COMMA,
- anon_sym_RBRACE,
- anon_sym_LPAREN,
- anon_sym_of,
- anon_sym_SEMI,
- anon_sym_LBRACK,
- anon_sym_DOT,
- anon_sym_QMARK_DOT,
- anon_sym_AMP_AMP,
- anon_sym_PIPE_PIPE,
- anon_sym_GT_GT_GT,
- anon_sym_LT_LT,
- anon_sym_CARET,
- anon_sym_PERCENT,
- anon_sym_STAR_STAR,
- anon_sym_LT_EQ,
- anon_sym_EQ_EQ_EQ,
- anon_sym_BANG_EQ_EQ,
- anon_sym_GT_EQ,
- anon_sym_QMARK_QMARK,
- anon_sym_instanceof,
- anon_sym_PLUS_PLUS,
- anon_sym_DASH_DASH,
- anon_sym_BQUOTE,
- anon_sym_satisfies,
- [78830] = 3,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(4819), 13,
- anon_sym_STAR,
- anon_sym_BANG,
- anon_sym_in,
- anon_sym_GT,
- anon_sym_GT_GT,
- anon_sym_AMP,
- anon_sym_PIPE,
- anon_sym_PLUS,
- anon_sym_DASH,
- anon_sym_SLASH,
- anon_sym_LT,
- anon_sym_EQ_EQ,
- anon_sym_BANG_EQ,
- ACTIONS(4821), 28,
- sym__automatic_semicolon,
- sym__ternary_qmark,
- anon_sym_as,
- anon_sym_COMMA,
- anon_sym_RBRACE,
- anon_sym_LPAREN,
- anon_sym_of,
- anon_sym_SEMI,
- anon_sym_LBRACK,
- anon_sym_DOT,
- anon_sym_QMARK_DOT,
- anon_sym_AMP_AMP,
- anon_sym_PIPE_PIPE,
- anon_sym_GT_GT_GT,
- anon_sym_LT_LT,
- anon_sym_CARET,
- anon_sym_PERCENT,
- anon_sym_STAR_STAR,
- anon_sym_LT_EQ,
- anon_sym_EQ_EQ_EQ,
- anon_sym_BANG_EQ_EQ,
- anon_sym_GT_EQ,
- anon_sym_QMARK_QMARK,
- anon_sym_instanceof,
- anon_sym_PLUS_PLUS,
- anon_sym_DASH_DASH,
- anon_sym_BQUOTE,
- anon_sym_satisfies,
- [78880] = 7,
- ACTIONS(5418), 1,
- anon_sym_LPAREN,
- ACTIONS(5421), 1,
- anon_sym_COLON,
- ACTIONS(5423), 1,
- anon_sym_LT,
- ACTIONS(5426), 1,
- anon_sym_QMARK,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(3400), 12,
- anon_sym_STAR,
- anon_sym_BANG,
- anon_sym_in,
- anon_sym_GT,
- anon_sym_GT_GT,
- anon_sym_AMP,
- anon_sym_PIPE,
- anon_sym_PLUS,
- anon_sym_DASH,
- anon_sym_SLASH,
- anon_sym_EQ_EQ,
- anon_sym_BANG_EQ,
- ACTIONS(3404), 25,
- sym__automatic_semicolon,
- sym__ternary_qmark,
- anon_sym_as,
- anon_sym_COMMA,
- anon_sym_SEMI,
- anon_sym_LBRACK,
- anon_sym_DOT,
- anon_sym_QMARK_DOT,
- anon_sym_AMP_AMP,
- anon_sym_PIPE_PIPE,
- anon_sym_GT_GT_GT,
- anon_sym_LT_LT,
- anon_sym_CARET,
- anon_sym_PERCENT,
- anon_sym_STAR_STAR,
- anon_sym_LT_EQ,
- anon_sym_EQ_EQ_EQ,
- anon_sym_BANG_EQ_EQ,
- anon_sym_GT_EQ,
- anon_sym_QMARK_QMARK,
- anon_sym_instanceof,
- anon_sym_PLUS_PLUS,
- anon_sym_DASH_DASH,
- anon_sym_BQUOTE,
- anon_sym_satisfies,
- [78938] = 5,
- ACTIONS(1763), 1,
- sym__automatic_semicolon,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(1755), 2,
- anon_sym_else,
- anon_sym_while,
- ACTIONS(1759), 13,
- anon_sym_STAR,
- anon_sym_BANG,
- anon_sym_in,
- anon_sym_GT,
- anon_sym_GT_GT,
- anon_sym_AMP,
- anon_sym_PIPE,
- anon_sym_PLUS,
- anon_sym_DASH,
- anon_sym_SLASH,
- anon_sym_LT,
- anon_sym_EQ_EQ,
- anon_sym_BANG_EQ,
- ACTIONS(1761), 25,
- sym__ternary_qmark,
- anon_sym_as,
- anon_sym_COMMA,
- anon_sym_LPAREN,
- anon_sym_SEMI,
- anon_sym_LBRACK,
- anon_sym_DOT,
- anon_sym_QMARK_DOT,
- anon_sym_AMP_AMP,
- anon_sym_PIPE_PIPE,
- anon_sym_GT_GT_GT,
- anon_sym_LT_LT,
- anon_sym_CARET,
- anon_sym_PERCENT,
- anon_sym_STAR_STAR,
- anon_sym_LT_EQ,
- anon_sym_EQ_EQ_EQ,
- anon_sym_BANG_EQ_EQ,
- anon_sym_GT_EQ,
- anon_sym_QMARK_QMARK,
- anon_sym_instanceof,
- anon_sym_PLUS_PLUS,
- anon_sym_DASH_DASH,
- anon_sym_BQUOTE,
- anon_sym_satisfies,
- [78992] = 5,
- ACTIONS(1853), 1,
- sym__automatic_semicolon,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(1845), 2,
- anon_sym_else,
- anon_sym_while,
- ACTIONS(1849), 13,
- anon_sym_STAR,
- anon_sym_BANG,
- anon_sym_in,
- anon_sym_GT,
- anon_sym_GT_GT,
- anon_sym_AMP,
- anon_sym_PIPE,
- anon_sym_PLUS,
- anon_sym_DASH,
- anon_sym_SLASH,
- anon_sym_LT,
- anon_sym_EQ_EQ,
- anon_sym_BANG_EQ,
- ACTIONS(1851), 25,
- sym__ternary_qmark,
- anon_sym_as,
- anon_sym_COMMA,
- anon_sym_LPAREN,
- anon_sym_SEMI,
- anon_sym_LBRACK,
- anon_sym_DOT,
- anon_sym_QMARK_DOT,
- anon_sym_AMP_AMP,
- anon_sym_PIPE_PIPE,
- anon_sym_GT_GT_GT,
- anon_sym_LT_LT,
- anon_sym_CARET,
- anon_sym_PERCENT,
- anon_sym_STAR_STAR,
- anon_sym_LT_EQ,
- anon_sym_EQ_EQ_EQ,
- anon_sym_BANG_EQ_EQ,
- anon_sym_GT_EQ,
- anon_sym_QMARK_QMARK,
- anon_sym_instanceof,
- anon_sym_PLUS_PLUS,
- anon_sym_DASH_DASH,
- anon_sym_BQUOTE,
- anon_sym_satisfies,
- [79046] = 3,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(4727), 13,
- anon_sym_STAR,
- anon_sym_BANG,
- anon_sym_in,
- anon_sym_GT,
- anon_sym_GT_GT,
- anon_sym_AMP,
- anon_sym_PIPE,
- anon_sym_PLUS,
- anon_sym_DASH,
- anon_sym_SLASH,
- anon_sym_LT,
- anon_sym_EQ_EQ,
- anon_sym_BANG_EQ,
- ACTIONS(4729), 28,
- sym__automatic_semicolon,
- sym__ternary_qmark,
- anon_sym_as,
- anon_sym_COMMA,
- anon_sym_RBRACE,
- anon_sym_LPAREN,
- anon_sym_of,
- anon_sym_SEMI,
- anon_sym_LBRACK,
- anon_sym_DOT,
- anon_sym_QMARK_DOT,
- anon_sym_AMP_AMP,
- anon_sym_PIPE_PIPE,
- anon_sym_GT_GT_GT,
- anon_sym_LT_LT,
- anon_sym_CARET,
- anon_sym_PERCENT,
- anon_sym_STAR_STAR,
- anon_sym_LT_EQ,
- anon_sym_EQ_EQ_EQ,
- anon_sym_BANG_EQ_EQ,
- anon_sym_GT_EQ,
- anon_sym_QMARK_QMARK,
- anon_sym_instanceof,
- anon_sym_PLUS_PLUS,
- anon_sym_DASH_DASH,
- anon_sym_BQUOTE,
- anon_sym_satisfies,
- [79096] = 32,
- ACTIONS(825), 1,
- anon_sym_BQUOTE,
- ACTIONS(3969), 1,
- anon_sym_LPAREN,
- ACTIONS(3971), 1,
- anon_sym_LBRACK,
- ACTIONS(3973), 1,
- anon_sym_DOT,
- ACTIONS(4051), 1,
- anon_sym_as,
- ACTIONS(4055), 1,
- anon_sym_BANG,
- ACTIONS(4059), 1,
- anon_sym_QMARK_DOT,
- ACTIONS(4093), 1,
- anon_sym_satisfies,
- ACTIONS(5432), 1,
- anon_sym_RBRACK,
- ACTIONS(5434), 1,
- anon_sym_AMP_AMP,
- ACTIONS(5436), 1,
- anon_sym_PIPE_PIPE,
- ACTIONS(5438), 1,
- anon_sym_GT_GT,
- ACTIONS(5442), 1,
- anon_sym_AMP,
- ACTIONS(5444), 1,
- anon_sym_CARET,
- ACTIONS(5446), 1,
- anon_sym_PIPE,
- ACTIONS(5450), 1,
- anon_sym_PERCENT,
- ACTIONS(5452), 1,
- anon_sym_STAR_STAR,
- ACTIONS(5454), 1,
- anon_sym_LT,
- ACTIONS(5462), 1,
- anon_sym_QMARK_QMARK,
- ACTIONS(5464), 1,
- sym__ternary_qmark,
- STATE(1447), 1,
- sym_type_arguments,
- STATE(5080), 1,
- sym_optional_chain,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(4091), 2,
- anon_sym_PLUS_PLUS,
- anon_sym_DASH_DASH,
- ACTIONS(5428), 2,
- anon_sym_STAR,
- anon_sym_SLASH,
- ACTIONS(5430), 2,
- anon_sym_in,
- anon_sym_GT,
- ACTIONS(5440), 2,
- anon_sym_GT_GT_GT,
- anon_sym_LT_LT,
- ACTIONS(5448), 2,
- anon_sym_PLUS,
- anon_sym_DASH,
- ACTIONS(5458), 2,
- anon_sym_EQ_EQ,
- anon_sym_BANG_EQ,
- ACTIONS(5460), 2,
- anon_sym_EQ_EQ_EQ,
- anon_sym_BANG_EQ_EQ,
- STATE(1757), 2,
- sym_template_string,
- sym_arguments,
- ACTIONS(5456), 3,
- anon_sym_LT_EQ,
- anon_sym_GT_EQ,
- anon_sym_instanceof,
- [79204] = 5,
- ACTIONS(1867), 1,
- sym__automatic_semicolon,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(1859), 2,
- anon_sym_else,
- anon_sym_while,
- ACTIONS(1863), 13,
- anon_sym_STAR,
- anon_sym_BANG,
- anon_sym_in,
- anon_sym_GT,
- anon_sym_GT_GT,
- anon_sym_AMP,
- anon_sym_PIPE,
- anon_sym_PLUS,
- anon_sym_DASH,
- anon_sym_SLASH,
- anon_sym_LT,
- anon_sym_EQ_EQ,
- anon_sym_BANG_EQ,
- ACTIONS(1865), 25,
- sym__ternary_qmark,
- anon_sym_as,
- anon_sym_COMMA,
- anon_sym_LPAREN,
- anon_sym_SEMI,
- anon_sym_LBRACK,
- anon_sym_DOT,
- anon_sym_QMARK_DOT,
- anon_sym_AMP_AMP,
- anon_sym_PIPE_PIPE,
- anon_sym_GT_GT_GT,
- anon_sym_LT_LT,
- anon_sym_CARET,
- anon_sym_PERCENT,
- anon_sym_STAR_STAR,
- anon_sym_LT_EQ,
- anon_sym_EQ_EQ_EQ,
- anon_sym_BANG_EQ_EQ,
- anon_sym_GT_EQ,
- anon_sym_QMARK_QMARK,
- anon_sym_instanceof,
- anon_sym_PLUS_PLUS,
- anon_sym_DASH_DASH,
- anon_sym_BQUOTE,
- anon_sym_satisfies,
- [79258] = 5,
- ACTIONS(1742), 1,
- sym__automatic_semicolon,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(1734), 2,
- anon_sym_else,
- anon_sym_while,
- ACTIONS(1738), 13,
- anon_sym_STAR,
- anon_sym_BANG,
- anon_sym_in,
- anon_sym_GT,
- anon_sym_GT_GT,
- anon_sym_AMP,
- anon_sym_PIPE,
- anon_sym_PLUS,
- anon_sym_DASH,
- anon_sym_SLASH,
- anon_sym_LT,
- anon_sym_EQ_EQ,
- anon_sym_BANG_EQ,
- ACTIONS(1740), 25,
- sym__ternary_qmark,
- anon_sym_as,
- anon_sym_COMMA,
- anon_sym_LPAREN,
- anon_sym_SEMI,
- anon_sym_LBRACK,
- anon_sym_DOT,
- anon_sym_QMARK_DOT,
- anon_sym_AMP_AMP,
- anon_sym_PIPE_PIPE,
- anon_sym_GT_GT_GT,
- anon_sym_LT_LT,
- anon_sym_CARET,
- anon_sym_PERCENT,
- anon_sym_STAR_STAR,
- anon_sym_LT_EQ,
- anon_sym_EQ_EQ_EQ,
- anon_sym_BANG_EQ_EQ,
- anon_sym_GT_EQ,
- anon_sym_QMARK_QMARK,
- anon_sym_instanceof,
- anon_sym_PLUS_PLUS,
- anon_sym_DASH_DASH,
- anon_sym_BQUOTE,
- anon_sym_satisfies,
- [79312] = 10,
- ACTIONS(2275), 1,
- anon_sym_DQUOTE,
- ACTIONS(2277), 1,
- anon_sym_SQUOTE,
- ACTIONS(4634), 1,
- anon_sym_LBRACK,
- ACTIONS(5466), 1,
- anon_sym_STAR,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(5468), 2,
- sym_number,
- sym_private_property_identifier,
- ACTIONS(5470), 2,
- anon_sym_get,
- anon_sym_set,
- STATE(3878), 3,
- sym_string,
- sym__property_name,
- sym_computed_property_name,
- ACTIONS(3743), 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(2307), 21,
- anon_sym_export,
- anon_sym_type,
- anon_sym_namespace,
- anon_sym_let,
- anon_sym_async,
- anon_sym_new,
- sym_identifier,
- anon_sym_static,
- anon_sym_readonly,
- anon_sym_declare,
- anon_sym_public,
- anon_sym_private,
- anon_sym_protected,
- anon_sym_override,
- anon_sym_module,
- anon_sym_any,
- anon_sym_number,
- anon_sym_boolean,
- anon_sym_string,
- anon_sym_symbol,
- anon_sym_object,
- [79376] = 32,
- ACTIONS(825), 1,
- anon_sym_BQUOTE,
- ACTIONS(3969), 1,
- anon_sym_LPAREN,
- ACTIONS(3971), 1,
- anon_sym_LBRACK,
- ACTIONS(3973), 1,
- anon_sym_DOT,
- ACTIONS(4051), 1,
- anon_sym_as,
- ACTIONS(4055), 1,
- anon_sym_BANG,
- ACTIONS(4059), 1,
- anon_sym_QMARK_DOT,
- ACTIONS(4093), 1,
- anon_sym_satisfies,
- ACTIONS(5276), 1,
- anon_sym_AMP_AMP,
- ACTIONS(5278), 1,
- anon_sym_PIPE_PIPE,
- ACTIONS(5280), 1,
- anon_sym_GT_GT,
- ACTIONS(5284), 1,
- anon_sym_AMP,
- ACTIONS(5286), 1,
- anon_sym_CARET,
- ACTIONS(5288), 1,
- anon_sym_PIPE,
- ACTIONS(5292), 1,
- anon_sym_PERCENT,
- ACTIONS(5294), 1,
- anon_sym_STAR_STAR,
- ACTIONS(5296), 1,
- anon_sym_LT,
- ACTIONS(5304), 1,
- anon_sym_QMARK_QMARK,
- ACTIONS(5306), 1,
- sym__ternary_qmark,
- ACTIONS(5472), 1,
- anon_sym_COLON,
- STATE(1447), 1,
- sym_type_arguments,
- STATE(5080), 1,
- sym_optional_chain,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(4091), 2,
- anon_sym_PLUS_PLUS,
- anon_sym_DASH_DASH,
- ACTIONS(5272), 2,
- anon_sym_STAR,
- anon_sym_SLASH,
- ACTIONS(5274), 2,
- anon_sym_in,
- anon_sym_GT,
- ACTIONS(5282), 2,
- anon_sym_GT_GT_GT,
- anon_sym_LT_LT,
- ACTIONS(5290), 2,
- anon_sym_PLUS,
- anon_sym_DASH,
- ACTIONS(5300), 2,
- anon_sym_EQ_EQ,
- anon_sym_BANG_EQ,
- ACTIONS(5302), 2,
- anon_sym_EQ_EQ_EQ,
- anon_sym_BANG_EQ_EQ,
- STATE(1757), 2,
- sym_template_string,
- sym_arguments,
- ACTIONS(5298), 3,
- anon_sym_LT_EQ,
- anon_sym_GT_EQ,
- anon_sym_instanceof,
- [79484] = 7,
- ACTIONS(5474), 1,
- anon_sym_LPAREN,
- ACTIONS(5477), 1,
- anon_sym_COLON,
- ACTIONS(5479), 1,
- anon_sym_LT,
- ACTIONS(5482), 1,
- anon_sym_QMARK,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(4811), 12,
- anon_sym_STAR,
- anon_sym_BANG,
- anon_sym_in,
- anon_sym_GT,
- anon_sym_GT_GT,
- anon_sym_AMP,
- anon_sym_PIPE,
- anon_sym_PLUS,
- anon_sym_DASH,
- anon_sym_SLASH,
- anon_sym_EQ_EQ,
- anon_sym_BANG_EQ,
- ACTIONS(4813), 25,
- sym__automatic_semicolon,
- sym__ternary_qmark,
- anon_sym_as,
- anon_sym_COMMA,
- anon_sym_SEMI,
- anon_sym_LBRACK,
- anon_sym_DOT,
- anon_sym_QMARK_DOT,
- anon_sym_AMP_AMP,
- anon_sym_PIPE_PIPE,
- anon_sym_GT_GT_GT,
- anon_sym_LT_LT,
- anon_sym_CARET,
- anon_sym_PERCENT,
- anon_sym_STAR_STAR,
- anon_sym_LT_EQ,
- anon_sym_EQ_EQ_EQ,
- anon_sym_BANG_EQ_EQ,
- anon_sym_GT_EQ,
- anon_sym_QMARK_QMARK,
- anon_sym_instanceof,
- anon_sym_PLUS_PLUS,
- anon_sym_DASH_DASH,
- anon_sym_BQUOTE,
- anon_sym_satisfies,
- [79542] = 3,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(4902), 13,
- anon_sym_STAR,
- anon_sym_BANG,
- anon_sym_in,
- anon_sym_GT,
- anon_sym_GT_GT,
- anon_sym_AMP,
- anon_sym_PIPE,
- anon_sym_PLUS,
- anon_sym_DASH,
- anon_sym_SLASH,
- anon_sym_LT,
- anon_sym_EQ_EQ,
- anon_sym_BANG_EQ,
- ACTIONS(4904), 28,
- sym__automatic_semicolon,
- sym__ternary_qmark,
- anon_sym_as,
- anon_sym_COMMA,
- anon_sym_RBRACE,
- anon_sym_LPAREN,
- anon_sym_of,
- anon_sym_SEMI,
- anon_sym_LBRACK,
- anon_sym_DOT,
- anon_sym_QMARK_DOT,
- anon_sym_AMP_AMP,
- anon_sym_PIPE_PIPE,
- anon_sym_GT_GT_GT,
- anon_sym_LT_LT,
- anon_sym_CARET,
- anon_sym_PERCENT,
- anon_sym_STAR_STAR,
- anon_sym_LT_EQ,
- anon_sym_EQ_EQ_EQ,
- anon_sym_BANG_EQ_EQ,
- anon_sym_GT_EQ,
- anon_sym_QMARK_QMARK,
- anon_sym_instanceof,
- anon_sym_PLUS_PLUS,
- anon_sym_DASH_DASH,
- anon_sym_BQUOTE,
- anon_sym_satisfies,
- [79592] = 5,
- ACTIONS(1883), 1,
- sym__automatic_semicolon,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(1875), 2,
- anon_sym_else,
- anon_sym_while,
- ACTIONS(1879), 13,
- anon_sym_STAR,
- anon_sym_BANG,
- anon_sym_in,
- anon_sym_GT,
- anon_sym_GT_GT,
- anon_sym_AMP,
- anon_sym_PIPE,
- anon_sym_PLUS,
- anon_sym_DASH,
- anon_sym_SLASH,
- anon_sym_LT,
- anon_sym_EQ_EQ,
- anon_sym_BANG_EQ,
- ACTIONS(1881), 25,
- sym__ternary_qmark,
- anon_sym_as,
- anon_sym_COMMA,
- anon_sym_LPAREN,
- anon_sym_SEMI,
- anon_sym_LBRACK,
- anon_sym_DOT,
- anon_sym_QMARK_DOT,
- anon_sym_AMP_AMP,
- anon_sym_PIPE_PIPE,
- anon_sym_GT_GT_GT,
- anon_sym_LT_LT,
- anon_sym_CARET,
- anon_sym_PERCENT,
- anon_sym_STAR_STAR,
- anon_sym_LT_EQ,
- anon_sym_EQ_EQ_EQ,
- anon_sym_BANG_EQ_EQ,
- anon_sym_GT_EQ,
- anon_sym_QMARK_QMARK,
- anon_sym_instanceof,
- anon_sym_PLUS_PLUS,
- anon_sym_DASH_DASH,
- anon_sym_BQUOTE,
- anon_sym_satisfies,
- [79646] = 10,
- ACTIONS(2275), 1,
- anon_sym_DQUOTE,
- ACTIONS(2277), 1,
- anon_sym_SQUOTE,
- ACTIONS(4634), 1,
- anon_sym_LBRACK,
- ACTIONS(5484), 1,
- anon_sym_STAR,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(5486), 2,
- sym_number,
- sym_private_property_identifier,
- ACTIONS(5488), 2,
- anon_sym_get,
- anon_sym_set,
- STATE(3843), 3,
- sym_string,
- sym__property_name,
- sym_computed_property_name,
- ACTIONS(3743), 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(2307), 21,
- anon_sym_export,
- anon_sym_type,
- anon_sym_namespace,
- anon_sym_let,
- anon_sym_async,
- anon_sym_new,
- sym_identifier,
- anon_sym_static,
- anon_sym_readonly,
- anon_sym_declare,
- anon_sym_public,
- anon_sym_private,
- anon_sym_protected,
- anon_sym_override,
- anon_sym_module,
- anon_sym_any,
- anon_sym_number,
- anon_sym_boolean,
- anon_sym_string,
- anon_sym_symbol,
- anon_sym_object,
- [79710] = 3,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(4811), 13,
- anon_sym_STAR,
- anon_sym_BANG,
- anon_sym_in,
- anon_sym_GT,
- anon_sym_GT_GT,
- anon_sym_AMP,
- anon_sym_PIPE,
- anon_sym_PLUS,
- anon_sym_DASH,
- anon_sym_SLASH,
- anon_sym_LT,
- anon_sym_EQ_EQ,
- anon_sym_BANG_EQ,
- ACTIONS(4813), 28,
- sym__automatic_semicolon,
- sym__ternary_qmark,
- anon_sym_as,
- anon_sym_COMMA,
- anon_sym_RBRACE,
- anon_sym_LPAREN,
- anon_sym_of,
- anon_sym_SEMI,
- anon_sym_LBRACK,
- anon_sym_DOT,
- anon_sym_QMARK_DOT,
- anon_sym_AMP_AMP,
- anon_sym_PIPE_PIPE,
- anon_sym_GT_GT_GT,
- anon_sym_LT_LT,
- anon_sym_CARET,
- anon_sym_PERCENT,
- anon_sym_STAR_STAR,
- anon_sym_LT_EQ,
- anon_sym_EQ_EQ_EQ,
- anon_sym_BANG_EQ_EQ,
- anon_sym_GT_EQ,
- anon_sym_QMARK_QMARK,
- anon_sym_instanceof,
- anon_sym_PLUS_PLUS,
- anon_sym_DASH_DASH,
- anon_sym_BQUOTE,
- anon_sym_satisfies,
- [79760] = 3,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(4914), 13,
- anon_sym_STAR,
- anon_sym_BANG,
- anon_sym_in,
- anon_sym_GT,
- anon_sym_GT_GT,
- anon_sym_AMP,
- anon_sym_PIPE,
- anon_sym_PLUS,
- anon_sym_DASH,
- anon_sym_SLASH,
- anon_sym_LT,
- anon_sym_EQ_EQ,
- anon_sym_BANG_EQ,
- ACTIONS(4916), 28,
- sym__automatic_semicolon,
- sym__ternary_qmark,
- anon_sym_as,
- anon_sym_COMMA,
- anon_sym_RBRACE,
- anon_sym_LPAREN,
- anon_sym_of,
- anon_sym_SEMI,
- anon_sym_LBRACK,
- anon_sym_DOT,
- anon_sym_QMARK_DOT,
- anon_sym_AMP_AMP,
- anon_sym_PIPE_PIPE,
- anon_sym_GT_GT_GT,
- anon_sym_LT_LT,
- anon_sym_CARET,
- anon_sym_PERCENT,
- anon_sym_STAR_STAR,
- anon_sym_LT_EQ,
- anon_sym_EQ_EQ_EQ,
- anon_sym_BANG_EQ_EQ,
- anon_sym_GT_EQ,
- anon_sym_QMARK_QMARK,
- anon_sym_instanceof,
- anon_sym_PLUS_PLUS,
- anon_sym_DASH_DASH,
- anon_sym_BQUOTE,
- anon_sym_satisfies,
- [79810] = 11,
- ACTIONS(1594), 1,
- anon_sym_DQUOTE,
- ACTIONS(1596), 1,
- anon_sym_SQUOTE,
- ACTIONS(4245), 1,
- anon_sym_LBRACK,
- ACTIONS(5484), 1,
- anon_sym_STAR,
- ACTIONS(5490), 1,
- anon_sym_async,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(5492), 2,
- sym_number,
- sym_private_property_identifier,
- ACTIONS(5494), 2,
- anon_sym_get,
- anon_sym_set,
- STATE(3063), 3,
- sym_string,
- sym__property_name,
- sym_computed_property_name,
- ACTIONS(3743), 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(3607), 20,
- anon_sym_export,
- anon_sym_type,
- anon_sym_namespace,
- anon_sym_let,
- anon_sym_new,
- sym_identifier,
- anon_sym_static,
- anon_sym_readonly,
- anon_sym_declare,
- anon_sym_public,
- anon_sym_private,
- anon_sym_protected,
- anon_sym_override,
- anon_sym_module,
- anon_sym_any,
- anon_sym_number,
- anon_sym_boolean,
- anon_sym_string,
- anon_sym_symbol,
- anon_sym_object,
- [79876] = 11,
- ACTIONS(1594), 1,
- anon_sym_DQUOTE,
- ACTIONS(1596), 1,
- anon_sym_SQUOTE,
- ACTIONS(4245), 1,
- anon_sym_LBRACK,
- ACTIONS(5496), 1,
- anon_sym_STAR,
- ACTIONS(5498), 1,
- anon_sym_async,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(5500), 2,
- sym_number,
- sym_private_property_identifier,
- ACTIONS(5502), 2,
- anon_sym_get,
- anon_sym_set,
- STATE(3009), 3,
- sym_string,
- sym__property_name,
- sym_computed_property_name,
- ACTIONS(3743), 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(3607), 20,
- anon_sym_export,
- anon_sym_type,
- anon_sym_namespace,
- anon_sym_let,
- anon_sym_new,
- sym_identifier,
- anon_sym_static,
- anon_sym_readonly,
- anon_sym_declare,
- anon_sym_public,
- anon_sym_private,
- anon_sym_protected,
- anon_sym_override,
- anon_sym_module,
- anon_sym_any,
- anon_sym_number,
- anon_sym_boolean,
- anon_sym_string,
- anon_sym_symbol,
- anon_sym_object,
- [79942] = 32,
- ACTIONS(825), 1,
- anon_sym_BQUOTE,
- ACTIONS(3969), 1,
- anon_sym_LPAREN,
- ACTIONS(3971), 1,
- anon_sym_LBRACK,
- ACTIONS(3973), 1,
- anon_sym_DOT,
- ACTIONS(4051), 1,
- anon_sym_as,
- ACTIONS(4055), 1,
- anon_sym_BANG,
- ACTIONS(4059), 1,
- anon_sym_QMARK_DOT,
- ACTIONS(4093), 1,
- anon_sym_satisfies,
- ACTIONS(5434), 1,
- anon_sym_AMP_AMP,
- ACTIONS(5436), 1,
- anon_sym_PIPE_PIPE,
- ACTIONS(5438), 1,
- anon_sym_GT_GT,
- ACTIONS(5442), 1,
- anon_sym_AMP,
- ACTIONS(5444), 1,
- anon_sym_CARET,
- ACTIONS(5446), 1,
- anon_sym_PIPE,
- ACTIONS(5450), 1,
- anon_sym_PERCENT,
- ACTIONS(5452), 1,
- anon_sym_STAR_STAR,
- ACTIONS(5454), 1,
- anon_sym_LT,
- ACTIONS(5462), 1,
- anon_sym_QMARK_QMARK,
- ACTIONS(5464), 1,
- sym__ternary_qmark,
- ACTIONS(5504), 1,
- anon_sym_RBRACK,
- STATE(1447), 1,
- sym_type_arguments,
- STATE(5080), 1,
- sym_optional_chain,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(4091), 2,
- anon_sym_PLUS_PLUS,
- anon_sym_DASH_DASH,
- ACTIONS(5428), 2,
- anon_sym_STAR,
- anon_sym_SLASH,
- ACTIONS(5430), 2,
- anon_sym_in,
- anon_sym_GT,
- ACTIONS(5440), 2,
- anon_sym_GT_GT_GT,
- anon_sym_LT_LT,
- ACTIONS(5448), 2,
- anon_sym_PLUS,
- anon_sym_DASH,
- ACTIONS(5458), 2,
- anon_sym_EQ_EQ,
- anon_sym_BANG_EQ,
- ACTIONS(5460), 2,
- anon_sym_EQ_EQ_EQ,
- anon_sym_BANG_EQ_EQ,
- STATE(1757), 2,
- sym_template_string,
- sym_arguments,
- ACTIONS(5456), 3,
- anon_sym_LT_EQ,
- anon_sym_GT_EQ,
- anon_sym_instanceof,
- [80050] = 3,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(4823), 13,
- anon_sym_STAR,
- anon_sym_BANG,
- anon_sym_in,
- anon_sym_GT,
- anon_sym_GT_GT,
- anon_sym_AMP,
- anon_sym_PIPE,
- anon_sym_PLUS,
- anon_sym_DASH,
- anon_sym_SLASH,
- anon_sym_LT,
- anon_sym_EQ_EQ,
- anon_sym_BANG_EQ,
- ACTIONS(4825), 28,
- sym__automatic_semicolon,
- sym__ternary_qmark,
- anon_sym_as,
- anon_sym_COMMA,
- anon_sym_RBRACE,
- anon_sym_LPAREN,
- anon_sym_of,
- anon_sym_SEMI,
- anon_sym_LBRACK,
- anon_sym_DOT,
- anon_sym_QMARK_DOT,
- anon_sym_AMP_AMP,
- anon_sym_PIPE_PIPE,
- anon_sym_GT_GT_GT,
- anon_sym_LT_LT,
- anon_sym_CARET,
- anon_sym_PERCENT,
- anon_sym_STAR_STAR,
- anon_sym_LT_EQ,
- anon_sym_EQ_EQ_EQ,
- anon_sym_BANG_EQ_EQ,
- anon_sym_GT_EQ,
- anon_sym_QMARK_QMARK,
- anon_sym_instanceof,
- anon_sym_PLUS_PLUS,
- anon_sym_DASH_DASH,
- anon_sym_BQUOTE,
- anon_sym_satisfies,
- [80100] = 10,
- ACTIONS(2275), 1,
- anon_sym_DQUOTE,
- ACTIONS(2277), 1,
- anon_sym_SQUOTE,
- ACTIONS(4634), 1,
- anon_sym_LBRACK,
- ACTIONS(4827), 1,
- anon_sym_STAR,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(5506), 2,
- sym_number,
- sym_private_property_identifier,
- ACTIONS(5508), 2,
- anon_sym_get,
- anon_sym_set,
- STATE(3747), 3,
- sym_string,
- sym__property_name,
- sym_computed_property_name,
- ACTIONS(3743), 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(2307), 21,
- anon_sym_export,
- anon_sym_type,
- anon_sym_namespace,
- anon_sym_let,
- anon_sym_async,
- anon_sym_new,
- sym_identifier,
- anon_sym_static,
- anon_sym_readonly,
- anon_sym_declare,
- anon_sym_public,
- anon_sym_private,
- anon_sym_protected,
- anon_sym_override,
- anon_sym_module,
- anon_sym_any,
- anon_sym_number,
- anon_sym_boolean,
- anon_sym_string,
- anon_sym_symbol,
- anon_sym_object,
- [80164] = 3,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(4922), 13,
- anon_sym_STAR,
- anon_sym_BANG,
- anon_sym_in,
- anon_sym_GT,
- anon_sym_GT_GT,
- anon_sym_AMP,
- anon_sym_PIPE,
- anon_sym_PLUS,
- anon_sym_DASH,
- anon_sym_SLASH,
- anon_sym_LT,
- anon_sym_EQ_EQ,
- anon_sym_BANG_EQ,
- ACTIONS(4299), 28,
- sym__automatic_semicolon,
- sym__ternary_qmark,
- anon_sym_as,
- anon_sym_COMMA,
- anon_sym_RBRACE,
- anon_sym_LPAREN,
- anon_sym_of,
- anon_sym_SEMI,
- anon_sym_LBRACK,
- anon_sym_DOT,
- anon_sym_QMARK_DOT,
- anon_sym_AMP_AMP,
- anon_sym_PIPE_PIPE,
- anon_sym_GT_GT_GT,
- anon_sym_LT_LT,
- anon_sym_CARET,
- anon_sym_PERCENT,
- anon_sym_STAR_STAR,
- anon_sym_LT_EQ,
- anon_sym_EQ_EQ_EQ,
- anon_sym_BANG_EQ_EQ,
- anon_sym_GT_EQ,
- anon_sym_QMARK_QMARK,
- anon_sym_instanceof,
- anon_sym_PLUS_PLUS,
- anon_sym_DASH_DASH,
- anon_sym_BQUOTE,
- anon_sym_satisfies,
- [80214] = 5,
- ACTIONS(1893), 1,
- sym__automatic_semicolon,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(1885), 2,
- anon_sym_else,
- anon_sym_while,
- ACTIONS(1889), 13,
- anon_sym_STAR,
- anon_sym_BANG,
- anon_sym_in,
- anon_sym_GT,
- anon_sym_GT_GT,
- anon_sym_AMP,
- anon_sym_PIPE,
- anon_sym_PLUS,
- anon_sym_DASH,
- anon_sym_SLASH,
- anon_sym_LT,
- anon_sym_EQ_EQ,
- anon_sym_BANG_EQ,
- ACTIONS(1891), 25,
- sym__ternary_qmark,
- anon_sym_as,
- anon_sym_COMMA,
- anon_sym_LPAREN,
- anon_sym_SEMI,
- anon_sym_LBRACK,
- anon_sym_DOT,
- anon_sym_QMARK_DOT,
- anon_sym_AMP_AMP,
- anon_sym_PIPE_PIPE,
- anon_sym_GT_GT_GT,
- anon_sym_LT_LT,
- anon_sym_CARET,
- anon_sym_PERCENT,
- anon_sym_STAR_STAR,
- anon_sym_LT_EQ,
- anon_sym_EQ_EQ_EQ,
- anon_sym_BANG_EQ_EQ,
- anon_sym_GT_EQ,
- anon_sym_QMARK_QMARK,
- anon_sym_instanceof,
- anon_sym_PLUS_PLUS,
- anon_sym_DASH_DASH,
- anon_sym_BQUOTE,
- anon_sym_satisfies,
- [80268] = 3,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(4753), 13,
- anon_sym_STAR,
- anon_sym_BANG,
- anon_sym_in,
- anon_sym_GT,
- anon_sym_GT_GT,
- anon_sym_AMP,
- anon_sym_PIPE,
- anon_sym_PLUS,
- anon_sym_DASH,
- anon_sym_SLASH,
- anon_sym_LT,
- anon_sym_EQ_EQ,
- anon_sym_BANG_EQ,
- ACTIONS(4755), 28,
- sym__automatic_semicolon,
- sym__ternary_qmark,
- anon_sym_as,
- anon_sym_COMMA,
- anon_sym_RBRACE,
- anon_sym_LPAREN,
- anon_sym_of,
- anon_sym_SEMI,
- anon_sym_LBRACK,
- anon_sym_DOT,
- anon_sym_QMARK_DOT,
- anon_sym_AMP_AMP,
- anon_sym_PIPE_PIPE,
- anon_sym_GT_GT_GT,
- anon_sym_LT_LT,
- anon_sym_CARET,
- anon_sym_PERCENT,
- anon_sym_STAR_STAR,
- anon_sym_LT_EQ,
- anon_sym_EQ_EQ_EQ,
- anon_sym_BANG_EQ_EQ,
- anon_sym_GT_EQ,
- anon_sym_QMARK_QMARK,
- anon_sym_instanceof,
- anon_sym_PLUS_PLUS,
- anon_sym_DASH_DASH,
- anon_sym_BQUOTE,
- anon_sym_satisfies,
- [80318] = 5,
- ACTIONS(1903), 1,
- sym__automatic_semicolon,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(1895), 2,
- anon_sym_else,
- anon_sym_while,
- ACTIONS(1899), 13,
- anon_sym_STAR,
- anon_sym_BANG,
- anon_sym_in,
- anon_sym_GT,
- anon_sym_GT_GT,
- anon_sym_AMP,
- anon_sym_PIPE,
- anon_sym_PLUS,
- anon_sym_DASH,
- anon_sym_SLASH,
- anon_sym_LT,
- anon_sym_EQ_EQ,
- anon_sym_BANG_EQ,
- ACTIONS(1901), 25,
- sym__ternary_qmark,
- anon_sym_as,
- anon_sym_COMMA,
- anon_sym_LPAREN,
- anon_sym_SEMI,
- anon_sym_LBRACK,
- anon_sym_DOT,
- anon_sym_QMARK_DOT,
- anon_sym_AMP_AMP,
- anon_sym_PIPE_PIPE,
- anon_sym_GT_GT_GT,
- anon_sym_LT_LT,
- anon_sym_CARET,
- anon_sym_PERCENT,
- anon_sym_STAR_STAR,
- anon_sym_LT_EQ,
- anon_sym_EQ_EQ_EQ,
- anon_sym_BANG_EQ_EQ,
- anon_sym_GT_EQ,
- anon_sym_QMARK_QMARK,
- anon_sym_instanceof,
- anon_sym_PLUS_PLUS,
- anon_sym_DASH_DASH,
- anon_sym_BQUOTE,
- anon_sym_satisfies,
- [80372] = 3,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(4906), 13,
- anon_sym_STAR,
- anon_sym_BANG,
- anon_sym_in,
- anon_sym_GT,
- anon_sym_GT_GT,
- anon_sym_AMP,
- anon_sym_PIPE,
- anon_sym_PLUS,
- anon_sym_DASH,
- anon_sym_SLASH,
- anon_sym_LT,
- anon_sym_EQ_EQ,
- anon_sym_BANG_EQ,
- ACTIONS(4908), 28,
- sym__automatic_semicolon,
- sym__ternary_qmark,
- anon_sym_as,
- anon_sym_COMMA,
- anon_sym_RBRACE,
- anon_sym_LPAREN,
- anon_sym_of,
- anon_sym_SEMI,
- anon_sym_LBRACK,
- anon_sym_DOT,
- anon_sym_QMARK_DOT,
- anon_sym_AMP_AMP,
- anon_sym_PIPE_PIPE,
- anon_sym_GT_GT_GT,
- anon_sym_LT_LT,
- anon_sym_CARET,
- anon_sym_PERCENT,
- anon_sym_STAR_STAR,
- anon_sym_LT_EQ,
- anon_sym_EQ_EQ_EQ,
- anon_sym_BANG_EQ_EQ,
- anon_sym_GT_EQ,
- anon_sym_QMARK_QMARK,
- anon_sym_instanceof,
- anon_sym_PLUS_PLUS,
- anon_sym_DASH_DASH,
- anon_sym_BQUOTE,
- anon_sym_satisfies,
- [80422] = 3,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(4910), 13,
- anon_sym_STAR,
- anon_sym_BANG,
- anon_sym_in,
- anon_sym_GT,
- anon_sym_GT_GT,
- anon_sym_AMP,
- anon_sym_PIPE,
- anon_sym_PLUS,
- anon_sym_DASH,
- anon_sym_SLASH,
- anon_sym_LT,
- anon_sym_EQ_EQ,
- anon_sym_BANG_EQ,
- ACTIONS(4912), 28,
- sym__automatic_semicolon,
- sym__ternary_qmark,
- anon_sym_as,
- anon_sym_COMMA,
- anon_sym_RBRACE,
- anon_sym_LPAREN,
- anon_sym_of,
- anon_sym_SEMI,
- anon_sym_LBRACK,
- anon_sym_DOT,
- anon_sym_QMARK_DOT,
- anon_sym_AMP_AMP,
- anon_sym_PIPE_PIPE,
- anon_sym_GT_GT_GT,
- anon_sym_LT_LT,
- anon_sym_CARET,
- anon_sym_PERCENT,
- anon_sym_STAR_STAR,
- anon_sym_LT_EQ,
- anon_sym_EQ_EQ_EQ,
- anon_sym_BANG_EQ_EQ,
- anon_sym_GT_EQ,
- anon_sym_QMARK_QMARK,
- anon_sym_instanceof,
- anon_sym_PLUS_PLUS,
- anon_sym_DASH_DASH,
- anon_sym_BQUOTE,
- anon_sym_satisfies,
- [80472] = 3,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(4918), 13,
- anon_sym_STAR,
- anon_sym_BANG,
- anon_sym_in,
- anon_sym_GT,
- anon_sym_GT_GT,
- anon_sym_AMP,
- anon_sym_PIPE,
- anon_sym_PLUS,
- anon_sym_DASH,
- anon_sym_SLASH,
- anon_sym_LT,
- anon_sym_EQ_EQ,
- anon_sym_BANG_EQ,
- ACTIONS(4920), 28,
- sym__automatic_semicolon,
- sym__ternary_qmark,
- anon_sym_as,
- anon_sym_COMMA,
- anon_sym_RBRACE,
- anon_sym_LPAREN,
- anon_sym_of,
- anon_sym_SEMI,
- anon_sym_LBRACK,
- anon_sym_DOT,
- anon_sym_QMARK_DOT,
- anon_sym_AMP_AMP,
- anon_sym_PIPE_PIPE,
- anon_sym_GT_GT_GT,
- anon_sym_LT_LT,
- anon_sym_CARET,
- anon_sym_PERCENT,
- anon_sym_STAR_STAR,
- anon_sym_LT_EQ,
- anon_sym_EQ_EQ_EQ,
- anon_sym_BANG_EQ_EQ,
- anon_sym_GT_EQ,
- anon_sym_QMARK_QMARK,
- anon_sym_instanceof,
- anon_sym_PLUS_PLUS,
- anon_sym_DASH_DASH,
- anon_sym_BQUOTE,
- anon_sym_satisfies,
- [80522] = 3,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(4619), 13,
- anon_sym_STAR,
- anon_sym_BANG,
- anon_sym_in,
- anon_sym_GT,
- anon_sym_GT_GT,
- anon_sym_AMP,
- anon_sym_PIPE,
- anon_sym_PLUS,
- anon_sym_DASH,
- anon_sym_SLASH,
- anon_sym_LT,
- anon_sym_EQ_EQ,
- anon_sym_BANG_EQ,
- ACTIONS(4621), 28,
- sym__automatic_semicolon,
- sym__ternary_qmark,
- anon_sym_as,
- anon_sym_COMMA,
- anon_sym_RBRACE,
- anon_sym_LPAREN,
- anon_sym_of,
- anon_sym_SEMI,
- anon_sym_LBRACK,
- anon_sym_DOT,
- anon_sym_QMARK_DOT,
- anon_sym_AMP_AMP,
- anon_sym_PIPE_PIPE,
- anon_sym_GT_GT_GT,
- anon_sym_LT_LT,
- anon_sym_CARET,
- anon_sym_PERCENT,
- anon_sym_STAR_STAR,
- anon_sym_LT_EQ,
- anon_sym_EQ_EQ_EQ,
- anon_sym_BANG_EQ_EQ,
- anon_sym_GT_EQ,
- anon_sym_QMARK_QMARK,
- anon_sym_instanceof,
- anon_sym_PLUS_PLUS,
- anon_sym_DASH_DASH,
- anon_sym_BQUOTE,
- anon_sym_satisfies,
- [80572] = 3,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(4924), 13,
- anon_sym_STAR,
- anon_sym_BANG,
- anon_sym_in,
- anon_sym_GT,
- anon_sym_GT_GT,
- anon_sym_AMP,
- anon_sym_PIPE,
- anon_sym_PLUS,
- anon_sym_DASH,
- anon_sym_SLASH,
- anon_sym_LT,
- anon_sym_EQ_EQ,
- anon_sym_BANG_EQ,
- ACTIONS(4926), 28,
- sym__automatic_semicolon,
- sym__ternary_qmark,
- anon_sym_as,
- anon_sym_COMMA,
- anon_sym_RBRACE,
- anon_sym_LPAREN,
- anon_sym_of,
- anon_sym_SEMI,
- anon_sym_LBRACK,
- anon_sym_DOT,
- anon_sym_QMARK_DOT,
- anon_sym_AMP_AMP,
- anon_sym_PIPE_PIPE,
- anon_sym_GT_GT_GT,
- anon_sym_LT_LT,
- anon_sym_CARET,
- anon_sym_PERCENT,
- anon_sym_STAR_STAR,
- anon_sym_LT_EQ,
- anon_sym_EQ_EQ_EQ,
- anon_sym_BANG_EQ_EQ,
- anon_sym_GT_EQ,
- anon_sym_QMARK_QMARK,
- anon_sym_instanceof,
- anon_sym_PLUS_PLUS,
- anon_sym_DASH_DASH,
- anon_sym_BQUOTE,
- anon_sym_satisfies,
- [80622] = 3,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(4792), 13,
- anon_sym_STAR,
- anon_sym_BANG,
- anon_sym_in,
- anon_sym_GT,
- anon_sym_GT_GT,
- anon_sym_AMP,
- anon_sym_PIPE,
- anon_sym_PLUS,
- anon_sym_DASH,
- anon_sym_SLASH,
- anon_sym_LT,
- anon_sym_EQ_EQ,
- anon_sym_BANG_EQ,
- ACTIONS(4794), 28,
- sym__automatic_semicolon,
- sym__ternary_qmark,
- anon_sym_as,
- anon_sym_COMMA,
- anon_sym_RBRACE,
- anon_sym_LPAREN,
- anon_sym_of,
- anon_sym_SEMI,
- anon_sym_LBRACK,
- anon_sym_DOT,
- anon_sym_QMARK_DOT,
- anon_sym_AMP_AMP,
- anon_sym_PIPE_PIPE,
- anon_sym_GT_GT_GT,
- anon_sym_LT_LT,
- anon_sym_CARET,
- anon_sym_PERCENT,
- anon_sym_STAR_STAR,
- anon_sym_LT_EQ,
- anon_sym_EQ_EQ_EQ,
- anon_sym_BANG_EQ_EQ,
- anon_sym_GT_EQ,
- anon_sym_QMARK_QMARK,
- anon_sym_instanceof,
- anon_sym_PLUS_PLUS,
- anon_sym_DASH_DASH,
- anon_sym_BQUOTE,
- anon_sym_satisfies,
- [80672] = 5,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(5191), 2,
- anon_sym_EQ,
- anon_sym_QMARK,
- ACTIONS(5212), 3,
- anon_sym_COMMA,
- anon_sym_RPAREN,
- anon_sym_COLON,
- ACTIONS(3400), 13,
- anon_sym_STAR,
- anon_sym_BANG,
- anon_sym_in,
- anon_sym_GT,
- anon_sym_GT_GT,
- anon_sym_AMP,
- anon_sym_PIPE,
- anon_sym_PLUS,
- anon_sym_DASH,
- anon_sym_SLASH,
- anon_sym_LT,
- anon_sym_EQ_EQ,
- anon_sym_BANG_EQ,
- ACTIONS(3404), 23,
- sym__ternary_qmark,
- anon_sym_as,
- anon_sym_LPAREN,
- anon_sym_LBRACK,
- anon_sym_DOT,
- anon_sym_QMARK_DOT,
- anon_sym_AMP_AMP,
- anon_sym_PIPE_PIPE,
- anon_sym_GT_GT_GT,
- anon_sym_LT_LT,
- anon_sym_CARET,
- anon_sym_PERCENT,
- anon_sym_STAR_STAR,
- anon_sym_LT_EQ,
- anon_sym_EQ_EQ_EQ,
- anon_sym_BANG_EQ_EQ,
- anon_sym_GT_EQ,
- anon_sym_QMARK_QMARK,
- anon_sym_instanceof,
- anon_sym_PLUS_PLUS,
- anon_sym_DASH_DASH,
- anon_sym_BQUOTE,
- anon_sym_satisfies,
- [80726] = 32,
- ACTIONS(825), 1,
- anon_sym_BQUOTE,
- ACTIONS(3969), 1,
- anon_sym_LPAREN,
- ACTIONS(3971), 1,
- anon_sym_LBRACK,
- ACTIONS(3973), 1,
- anon_sym_DOT,
- ACTIONS(4051), 1,
- anon_sym_as,
- ACTIONS(4055), 1,
- anon_sym_BANG,
- ACTIONS(4059), 1,
- anon_sym_QMARK_DOT,
- ACTIONS(4093), 1,
- anon_sym_satisfies,
- ACTIONS(5276), 1,
- anon_sym_AMP_AMP,
- ACTIONS(5278), 1,
- anon_sym_PIPE_PIPE,
- ACTIONS(5280), 1,
- anon_sym_GT_GT,
- ACTIONS(5284), 1,
- anon_sym_AMP,
- ACTIONS(5286), 1,
- anon_sym_CARET,
- ACTIONS(5288), 1,
- anon_sym_PIPE,
- ACTIONS(5292), 1,
- anon_sym_PERCENT,
- ACTIONS(5294), 1,
- anon_sym_STAR_STAR,
- ACTIONS(5296), 1,
- anon_sym_LT,
- ACTIONS(5304), 1,
- anon_sym_QMARK_QMARK,
- ACTIONS(5306), 1,
- sym__ternary_qmark,
- ACTIONS(5510), 1,
- anon_sym_COLON,
- STATE(1447), 1,
- sym_type_arguments,
- STATE(5080), 1,
- sym_optional_chain,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(4091), 2,
- anon_sym_PLUS_PLUS,
- anon_sym_DASH_DASH,
- ACTIONS(5272), 2,
- anon_sym_STAR,
- anon_sym_SLASH,
- ACTIONS(5274), 2,
- anon_sym_in,
- anon_sym_GT,
- ACTIONS(5282), 2,
- anon_sym_GT_GT_GT,
- anon_sym_LT_LT,
- ACTIONS(5290), 2,
- anon_sym_PLUS,
- anon_sym_DASH,
- ACTIONS(5300), 2,
- anon_sym_EQ_EQ,
- anon_sym_BANG_EQ,
- ACTIONS(5302), 2,
- anon_sym_EQ_EQ_EQ,
- anon_sym_BANG_EQ_EQ,
- STATE(1757), 2,
- sym_template_string,
- sym_arguments,
- ACTIONS(5298), 3,
- anon_sym_LT_EQ,
- anon_sym_GT_EQ,
- anon_sym_instanceof,
- [80834] = 3,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(1805), 13,
- anon_sym_STAR,
- anon_sym_BANG,
- anon_sym_in,
- anon_sym_GT,
- anon_sym_GT_GT,
- anon_sym_AMP,
- anon_sym_PIPE,
- anon_sym_PLUS,
- anon_sym_DASH,
- anon_sym_SLASH,
- anon_sym_LT,
- anon_sym_EQ_EQ,
- anon_sym_BANG_EQ,
- ACTIONS(1807), 28,
- sym__automatic_semicolon,
- sym__ternary_qmark,
- anon_sym_as,
- anon_sym_COMMA,
- anon_sym_RBRACE,
- anon_sym_LPAREN,
- anon_sym_of,
- anon_sym_SEMI,
- anon_sym_LBRACK,
- anon_sym_DOT,
- anon_sym_QMARK_DOT,
- anon_sym_AMP_AMP,
- anon_sym_PIPE_PIPE,
- anon_sym_GT_GT_GT,
- anon_sym_LT_LT,
- anon_sym_CARET,
- anon_sym_PERCENT,
- anon_sym_STAR_STAR,
- anon_sym_LT_EQ,
- anon_sym_EQ_EQ_EQ,
- anon_sym_BANG_EQ_EQ,
- anon_sym_GT_EQ,
- anon_sym_QMARK_QMARK,
- anon_sym_instanceof,
- anon_sym_PLUS_PLUS,
- anon_sym_DASH_DASH,
- anon_sym_BQUOTE,
- anon_sym_satisfies,
- [80884] = 3,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(1839), 13,
- anon_sym_STAR,
- anon_sym_BANG,
- anon_sym_in,
- anon_sym_GT,
- anon_sym_GT_GT,
- anon_sym_AMP,
- anon_sym_PIPE,
- anon_sym_PLUS,
- anon_sym_DASH,
- anon_sym_SLASH,
- anon_sym_LT,
- anon_sym_EQ_EQ,
- anon_sym_BANG_EQ,
- ACTIONS(1841), 28,
- sym__automatic_semicolon,
- sym__ternary_qmark,
- anon_sym_as,
- anon_sym_COMMA,
- anon_sym_RBRACE,
- anon_sym_LPAREN,
- anon_sym_of,
- anon_sym_SEMI,
- anon_sym_LBRACK,
- anon_sym_DOT,
- anon_sym_QMARK_DOT,
- anon_sym_AMP_AMP,
- anon_sym_PIPE_PIPE,
- anon_sym_GT_GT_GT,
- anon_sym_LT_LT,
- anon_sym_CARET,
- anon_sym_PERCENT,
- anon_sym_STAR_STAR,
- anon_sym_LT_EQ,
- anon_sym_EQ_EQ_EQ,
- anon_sym_BANG_EQ_EQ,
- anon_sym_GT_EQ,
- anon_sym_QMARK_QMARK,
- anon_sym_instanceof,
- anon_sym_PLUS_PLUS,
- anon_sym_DASH_DASH,
- anon_sym_BQUOTE,
- anon_sym_satisfies,
- [80934] = 3,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(1773), 13,
- anon_sym_STAR,
- anon_sym_BANG,
- anon_sym_in,
- anon_sym_GT,
- anon_sym_GT_GT,
- anon_sym_AMP,
- anon_sym_PIPE,
- anon_sym_PLUS,
- anon_sym_DASH,
- anon_sym_SLASH,
- anon_sym_LT,
- anon_sym_EQ_EQ,
- anon_sym_BANG_EQ,
- ACTIONS(1775), 28,
- sym__automatic_semicolon,
- sym__ternary_qmark,
- anon_sym_as,
- anon_sym_COMMA,
- anon_sym_RBRACE,
- anon_sym_LPAREN,
- anon_sym_of,
- anon_sym_SEMI,
- anon_sym_LBRACK,
- anon_sym_DOT,
- anon_sym_QMARK_DOT,
- anon_sym_AMP_AMP,
- anon_sym_PIPE_PIPE,
- anon_sym_GT_GT_GT,
- anon_sym_LT_LT,
- anon_sym_CARET,
- anon_sym_PERCENT,
- anon_sym_STAR_STAR,
- anon_sym_LT_EQ,
- anon_sym_EQ_EQ_EQ,
- anon_sym_BANG_EQ_EQ,
- anon_sym_GT_EQ,
- anon_sym_QMARK_QMARK,
- anon_sym_instanceof,
- anon_sym_PLUS_PLUS,
- anon_sym_DASH_DASH,
- anon_sym_BQUOTE,
- anon_sym_satisfies,
- [80984] = 3,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(1829), 13,
- anon_sym_STAR,
- anon_sym_BANG,
- anon_sym_in,
- anon_sym_GT,
- anon_sym_GT_GT,
- anon_sym_AMP,
- anon_sym_PIPE,
- anon_sym_PLUS,
- anon_sym_DASH,
- anon_sym_SLASH,
- anon_sym_LT,
- anon_sym_EQ_EQ,
- anon_sym_BANG_EQ,
- ACTIONS(1831), 28,
- sym__automatic_semicolon,
- sym__ternary_qmark,
- anon_sym_as,
- anon_sym_COMMA,
- anon_sym_RBRACE,
- anon_sym_LPAREN,
- anon_sym_of,
- anon_sym_SEMI,
- anon_sym_LBRACK,
- anon_sym_DOT,
- anon_sym_QMARK_DOT,
- anon_sym_AMP_AMP,
- anon_sym_PIPE_PIPE,
- anon_sym_GT_GT_GT,
- anon_sym_LT_LT,
- anon_sym_CARET,
- anon_sym_PERCENT,
- anon_sym_STAR_STAR,
- anon_sym_LT_EQ,
- anon_sym_EQ_EQ_EQ,
- anon_sym_BANG_EQ_EQ,
- anon_sym_GT_EQ,
- anon_sym_QMARK_QMARK,
- anon_sym_instanceof,
- anon_sym_PLUS_PLUS,
- anon_sym_DASH_DASH,
- anon_sym_BQUOTE,
- anon_sym_satisfies,
- [81034] = 12,
- ACTIONS(170), 1,
- anon_sym_DOT_DOT_DOT,
- ACTIONS(1506), 1,
- anon_sym_DQUOTE,
- ACTIONS(1508), 1,
- anon_sym_SQUOTE,
- ACTIONS(3199), 1,
- anon_sym_LBRACE,
- ACTIONS(3847), 1,
- anon_sym_LBRACK,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(5117), 2,
- sym_number,
- sym_private_property_identifier,
- ACTIONS(5514), 2,
- anon_sym_COMMA,
- anon_sym_RBRACE,
- STATE(5227), 3,
- sym_object_assignment_pattern,
- sym_rest_pattern,
- sym_pair_pattern,
- STATE(5634), 3,
- sym_string,
- sym__property_name,
- sym_computed_property_name,
- STATE(5760), 3,
- sym_object_pattern,
- sym_array_pattern,
- sym__destructuring_pattern,
- ACTIONS(5512), 23,
- anon_sym_export,
- anon_sym_type,
- anon_sym_namespace,
- anon_sym_let,
- anon_sym_async,
- anon_sym_new,
- sym_identifier,
- anon_sym_static,
- anon_sym_readonly,
- anon_sym_get,
- anon_sym_set,
- anon_sym_declare,
- anon_sym_public,
- anon_sym_private,
- anon_sym_protected,
- anon_sym_override,
- anon_sym_module,
- anon_sym_any,
- anon_sym_number,
- anon_sym_boolean,
- anon_sym_string,
- anon_sym_symbol,
- anon_sym_object,
- [81102] = 3,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(4719), 13,
- anon_sym_STAR,
- anon_sym_BANG,
- anon_sym_in,
- anon_sym_GT,
- anon_sym_GT_GT,
- anon_sym_AMP,
- anon_sym_PIPE,
- anon_sym_PLUS,
- anon_sym_DASH,
- anon_sym_SLASH,
- anon_sym_LT,
- anon_sym_EQ_EQ,
- anon_sym_BANG_EQ,
- ACTIONS(4721), 28,
- sym__automatic_semicolon,
- sym__ternary_qmark,
- anon_sym_as,
- anon_sym_COMMA,
- anon_sym_RBRACE,
- anon_sym_LPAREN,
- anon_sym_of,
- anon_sym_SEMI,
- anon_sym_LBRACK,
- anon_sym_DOT,
- anon_sym_QMARK_DOT,
- anon_sym_AMP_AMP,
- anon_sym_PIPE_PIPE,
- anon_sym_GT_GT_GT,
- anon_sym_LT_LT,
- anon_sym_CARET,
- anon_sym_PERCENT,
- anon_sym_STAR_STAR,
- anon_sym_LT_EQ,
- anon_sym_EQ_EQ_EQ,
- anon_sym_BANG_EQ_EQ,
- anon_sym_GT_EQ,
- anon_sym_QMARK_QMARK,
- anon_sym_instanceof,
- anon_sym_PLUS_PLUS,
- anon_sym_DASH_DASH,
- anon_sym_BQUOTE,
- anon_sym_satisfies,
- [81152] = 3,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(4774), 13,
- anon_sym_STAR,
- anon_sym_BANG,
- anon_sym_in,
- anon_sym_GT,
- anon_sym_GT_GT,
- anon_sym_AMP,
- anon_sym_PIPE,
- anon_sym_PLUS,
- anon_sym_DASH,
- anon_sym_SLASH,
- anon_sym_LT,
- anon_sym_EQ_EQ,
- anon_sym_BANG_EQ,
- ACTIONS(4776), 28,
- sym__automatic_semicolon,
- sym__ternary_qmark,
- anon_sym_as,
- anon_sym_COMMA,
- anon_sym_RBRACE,
- anon_sym_LPAREN,
- anon_sym_of,
- anon_sym_SEMI,
- anon_sym_LBRACK,
- anon_sym_DOT,
- anon_sym_QMARK_DOT,
- anon_sym_AMP_AMP,
- anon_sym_PIPE_PIPE,
- anon_sym_GT_GT_GT,
- anon_sym_LT_LT,
- anon_sym_CARET,
- anon_sym_PERCENT,
- anon_sym_STAR_STAR,
- anon_sym_LT_EQ,
- anon_sym_EQ_EQ_EQ,
- anon_sym_BANG_EQ_EQ,
- anon_sym_GT_EQ,
- anon_sym_QMARK_QMARK,
- anon_sym_instanceof,
- anon_sym_PLUS_PLUS,
- anon_sym_DASH_DASH,
- anon_sym_BQUOTE,
- anon_sym_satisfies,
- [81202] = 3,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(1787), 13,
- anon_sym_STAR,
- anon_sym_BANG,
- anon_sym_in,
- anon_sym_GT,
- anon_sym_GT_GT,
- anon_sym_AMP,
- anon_sym_PIPE,
- anon_sym_PLUS,
- anon_sym_DASH,
- anon_sym_SLASH,
- anon_sym_LT,
- anon_sym_EQ_EQ,
- anon_sym_BANG_EQ,
- ACTIONS(1789), 28,
- sym__automatic_semicolon,
- sym__ternary_qmark,
- anon_sym_as,
- anon_sym_COMMA,
- anon_sym_RBRACE,
- anon_sym_LPAREN,
- anon_sym_of,
- anon_sym_SEMI,
- anon_sym_LBRACK,
- anon_sym_DOT,
- anon_sym_QMARK_DOT,
- anon_sym_AMP_AMP,
- anon_sym_PIPE_PIPE,
- anon_sym_GT_GT_GT,
- anon_sym_LT_LT,
- anon_sym_CARET,
- anon_sym_PERCENT,
- anon_sym_STAR_STAR,
- anon_sym_LT_EQ,
- anon_sym_EQ_EQ_EQ,
- anon_sym_BANG_EQ_EQ,
- anon_sym_GT_EQ,
- anon_sym_QMARK_QMARK,
- anon_sym_instanceof,
- anon_sym_PLUS_PLUS,
- anon_sym_DASH_DASH,
- anon_sym_BQUOTE,
- anon_sym_satisfies,
- [81252] = 5,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(5516), 2,
- anon_sym_EQ,
- anon_sym_QMARK,
- ACTIONS(5518), 3,
- anon_sym_COMMA,
- anon_sym_RPAREN,
- anon_sym_COLON,
- ACTIONS(3400), 13,
- anon_sym_STAR,
- anon_sym_BANG,
- anon_sym_in,
- anon_sym_GT,
- anon_sym_GT_GT,
- anon_sym_AMP,
- anon_sym_PIPE,
- anon_sym_PLUS,
- anon_sym_DASH,
- anon_sym_SLASH,
- anon_sym_LT,
- anon_sym_EQ_EQ,
- anon_sym_BANG_EQ,
- ACTIONS(3404), 23,
- sym__ternary_qmark,
- anon_sym_as,
- anon_sym_LPAREN,
- anon_sym_LBRACK,
- anon_sym_DOT,
- anon_sym_QMARK_DOT,
- anon_sym_AMP_AMP,
- anon_sym_PIPE_PIPE,
- anon_sym_GT_GT_GT,
- anon_sym_LT_LT,
- anon_sym_CARET,
- anon_sym_PERCENT,
- anon_sym_STAR_STAR,
- anon_sym_LT_EQ,
- anon_sym_EQ_EQ_EQ,
- anon_sym_BANG_EQ_EQ,
- anon_sym_GT_EQ,
- anon_sym_QMARK_QMARK,
- anon_sym_instanceof,
- anon_sym_PLUS_PLUS,
- anon_sym_DASH_DASH,
- anon_sym_BQUOTE,
- anon_sym_satisfies,
- [81306] = 5,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(5520), 2,
- anon_sym_EQ,
- anon_sym_QMARK,
- ACTIONS(5522), 3,
- anon_sym_COMMA,
- anon_sym_RPAREN,
- anon_sym_COLON,
- ACTIONS(3400), 13,
- anon_sym_STAR,
- anon_sym_BANG,
- anon_sym_in,
- anon_sym_GT,
- anon_sym_GT_GT,
- anon_sym_AMP,
- anon_sym_PIPE,
- anon_sym_PLUS,
- anon_sym_DASH,
- anon_sym_SLASH,
- anon_sym_LT,
- anon_sym_EQ_EQ,
- anon_sym_BANG_EQ,
- ACTIONS(3404), 23,
- sym__ternary_qmark,
- anon_sym_as,
- anon_sym_LPAREN,
- anon_sym_LBRACK,
- anon_sym_DOT,
- anon_sym_QMARK_DOT,
- anon_sym_AMP_AMP,
- anon_sym_PIPE_PIPE,
- anon_sym_GT_GT_GT,
- anon_sym_LT_LT,
- anon_sym_CARET,
- anon_sym_PERCENT,
- anon_sym_STAR_STAR,
- anon_sym_LT_EQ,
- anon_sym_EQ_EQ_EQ,
- anon_sym_BANG_EQ_EQ,
- anon_sym_GT_EQ,
- anon_sym_QMARK_QMARK,
- anon_sym_instanceof,
- anon_sym_PLUS_PLUS,
- anon_sym_DASH_DASH,
- anon_sym_BQUOTE,
- anon_sym_satisfies,
- [81360] = 5,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(5520), 2,
- anon_sym_EQ,
- anon_sym_QMARK,
- ACTIONS(5522), 3,
- anon_sym_COMMA,
- anon_sym_RPAREN,
- anon_sym_COLON,
- ACTIONS(3400), 13,
- anon_sym_STAR,
- anon_sym_BANG,
- anon_sym_in,
- anon_sym_GT,
- anon_sym_GT_GT,
- anon_sym_AMP,
- anon_sym_PIPE,
- anon_sym_PLUS,
- anon_sym_DASH,
- anon_sym_SLASH,
- anon_sym_LT,
- anon_sym_EQ_EQ,
- anon_sym_BANG_EQ,
- ACTIONS(3404), 23,
- sym__ternary_qmark,
- anon_sym_as,
- anon_sym_LPAREN,
- anon_sym_LBRACK,
- anon_sym_DOT,
- anon_sym_QMARK_DOT,
- anon_sym_AMP_AMP,
- anon_sym_PIPE_PIPE,
- anon_sym_GT_GT_GT,
- anon_sym_LT_LT,
- anon_sym_CARET,
- anon_sym_PERCENT,
- anon_sym_STAR_STAR,
- anon_sym_LT_EQ,
- anon_sym_EQ_EQ_EQ,
- anon_sym_BANG_EQ_EQ,
- anon_sym_GT_EQ,
- anon_sym_QMARK_QMARK,
- anon_sym_instanceof,
- anon_sym_PLUS_PLUS,
- anon_sym_DASH_DASH,
- anon_sym_BQUOTE,
- anon_sym_satisfies,
- [81414] = 5,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(5520), 2,
- anon_sym_EQ,
- anon_sym_QMARK,
- ACTIONS(5522), 3,
- anon_sym_COMMA,
- anon_sym_RPAREN,
- anon_sym_COLON,
- ACTIONS(3400), 13,
- anon_sym_STAR,
- anon_sym_BANG,
- anon_sym_in,
- anon_sym_GT,
- anon_sym_GT_GT,
- anon_sym_AMP,
- anon_sym_PIPE,
- anon_sym_PLUS,
- anon_sym_DASH,
- anon_sym_SLASH,
- anon_sym_LT,
- anon_sym_EQ_EQ,
- anon_sym_BANG_EQ,
- ACTIONS(3404), 23,
- sym__ternary_qmark,
- anon_sym_as,
- anon_sym_LPAREN,
- anon_sym_LBRACK,
- anon_sym_DOT,
- anon_sym_QMARK_DOT,
- anon_sym_AMP_AMP,
- anon_sym_PIPE_PIPE,
- anon_sym_GT_GT_GT,
- anon_sym_LT_LT,
- anon_sym_CARET,
- anon_sym_PERCENT,
- anon_sym_STAR_STAR,
- anon_sym_LT_EQ,
- anon_sym_EQ_EQ_EQ,
- anon_sym_BANG_EQ_EQ,
- anon_sym_GT_EQ,
- anon_sym_QMARK_QMARK,
- anon_sym_instanceof,
- anon_sym_PLUS_PLUS,
- anon_sym_DASH_DASH,
- anon_sym_BQUOTE,
- anon_sym_satisfies,
- [81468] = 10,
- ACTIONS(2275), 1,
- anon_sym_DQUOTE,
- ACTIONS(2277), 1,
- anon_sym_SQUOTE,
- ACTIONS(4634), 1,
- anon_sym_LBRACK,
- ACTIONS(5524), 1,
- anon_sym_STAR,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(5526), 2,
- sym_number,
- sym_private_property_identifier,
- ACTIONS(5528), 2,
- anon_sym_get,
- anon_sym_set,
- STATE(3842), 3,
- sym_string,
- sym__property_name,
- sym_computed_property_name,
- ACTIONS(3743), 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(2307), 21,
- anon_sym_export,
- anon_sym_type,
- anon_sym_namespace,
- anon_sym_let,
- anon_sym_async,
- anon_sym_new,
- sym_identifier,
- anon_sym_static,
- anon_sym_readonly,
- anon_sym_declare,
- anon_sym_public,
- anon_sym_private,
- anon_sym_protected,
- anon_sym_override,
- anon_sym_module,
- anon_sym_any,
- anon_sym_number,
- anon_sym_boolean,
- anon_sym_string,
- anon_sym_symbol,
- anon_sym_object,
- [81532] = 10,
- ACTIONS(2275), 1,
- anon_sym_DQUOTE,
- ACTIONS(2277), 1,
- anon_sym_SQUOTE,
- ACTIONS(4634), 1,
- anon_sym_LBRACK,
- ACTIONS(5530), 1,
- anon_sym_STAR,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(5532), 2,
- sym_number,
- sym_private_property_identifier,
- ACTIONS(5534), 2,
- anon_sym_get,
- anon_sym_set,
- STATE(3798), 3,
- sym_string,
- sym__property_name,
- sym_computed_property_name,
- ACTIONS(3743), 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(2307), 21,
- anon_sym_export,
- anon_sym_type,
- anon_sym_namespace,
- anon_sym_let,
- anon_sym_async,
- anon_sym_new,
- sym_identifier,
- anon_sym_static,
- anon_sym_readonly,
- anon_sym_declare,
- anon_sym_public,
- anon_sym_private,
- anon_sym_protected,
- anon_sym_override,
- anon_sym_module,
- anon_sym_any,
- anon_sym_number,
- anon_sym_boolean,
- anon_sym_string,
- anon_sym_symbol,
- anon_sym_object,
- [81596] = 11,
- ACTIONS(1594), 1,
- anon_sym_DQUOTE,
- ACTIONS(1596), 1,
- anon_sym_SQUOTE,
- ACTIONS(4245), 1,
- anon_sym_LBRACK,
- ACTIONS(5530), 1,
- anon_sym_STAR,
- ACTIONS(5536), 1,
- anon_sym_async,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(5538), 2,
- sym_number,
- sym_private_property_identifier,
- ACTIONS(5540), 2,
- anon_sym_get,
- anon_sym_set,
- STATE(2966), 3,
- sym_string,
- sym__property_name,
- sym_computed_property_name,
- ACTIONS(3743), 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(3607), 20,
- anon_sym_export,
- anon_sym_type,
- anon_sym_namespace,
- anon_sym_let,
- anon_sym_new,
- sym_identifier,
- anon_sym_static,
- anon_sym_readonly,
- anon_sym_declare,
- anon_sym_public,
- anon_sym_private,
- anon_sym_protected,
- anon_sym_override,
- anon_sym_module,
- anon_sym_any,
- anon_sym_number,
- anon_sym_boolean,
- anon_sym_string,
- anon_sym_symbol,
- anon_sym_object,
- [81662] = 15,
- ACTIONS(241), 1,
- anon_sym_COMMA,
- ACTIONS(727), 1,
- anon_sym_RBRACE,
- ACTIONS(2275), 1,
- anon_sym_DQUOTE,
- ACTIONS(2277), 1,
- anon_sym_SQUOTE,
- ACTIONS(4243), 1,
- anon_sym_EQ,
- ACTIONS(4634), 1,
- anon_sym_LBRACK,
- ACTIONS(5091), 1,
- anon_sym_STAR,
- STATE(4671), 1,
- aux_sym_object_repeat1,
- STATE(4672), 1,
- aux_sym_object_pattern_repeat1,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(2285), 2,
- sym_number,
- sym_private_property_identifier,
- ACTIONS(2313), 2,
- anon_sym_get,
- anon_sym_set,
- STATE(3788), 3,
- sym_string,
- sym__property_name,
- sym_computed_property_name,
- ACTIONS(3743), 4,
- anon_sym_LPAREN,
- anon_sym_COLON,
- anon_sym_LT,
- anon_sym_QMARK,
- ACTIONS(2307), 21,
- anon_sym_export,
- anon_sym_type,
- anon_sym_namespace,
- anon_sym_let,
- anon_sym_async,
- anon_sym_new,
- sym_identifier,
- anon_sym_static,
- anon_sym_readonly,
- anon_sym_declare,
- anon_sym_public,
- anon_sym_private,
- anon_sym_protected,
- anon_sym_override,
- anon_sym_module,
- anon_sym_any,
- anon_sym_number,
- anon_sym_boolean,
- anon_sym_string,
- anon_sym_symbol,
- anon_sym_object,
- [81736] = 16,
- ACTIONS(241), 1,
- anon_sym_COMMA,
- ACTIONS(727), 1,
- anon_sym_RBRACE,
- ACTIONS(2275), 1,
- anon_sym_DQUOTE,
- ACTIONS(2277), 1,
- anon_sym_SQUOTE,
- ACTIONS(2309), 1,
- anon_sym_async,
- ACTIONS(4243), 1,
- anon_sym_EQ,
- ACTIONS(4634), 1,
- anon_sym_LBRACK,
- ACTIONS(5091), 1,
- anon_sym_STAR,
- STATE(4671), 1,
- aux_sym_object_repeat1,
- STATE(4672), 1,
- aux_sym_object_pattern_repeat1,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(2285), 2,
- sym_number,
- sym_private_property_identifier,
- ACTIONS(2313), 2,
- anon_sym_get,
- anon_sym_set,
- STATE(3788), 3,
- sym_string,
- sym__property_name,
- sym_computed_property_name,
- ACTIONS(3743), 4,
- anon_sym_LPAREN,
- anon_sym_COLON,
- anon_sym_LT,
- anon_sym_QMARK,
- ACTIONS(2307), 20,
- anon_sym_export,
- anon_sym_type,
- anon_sym_namespace,
- anon_sym_let,
- anon_sym_new,
- sym_identifier,
- anon_sym_static,
- anon_sym_readonly,
- anon_sym_declare,
- anon_sym_public,
- anon_sym_private,
- anon_sym_protected,
- anon_sym_override,
- anon_sym_module,
- anon_sym_any,
- anon_sym_number,
- anon_sym_boolean,
- anon_sym_string,
- anon_sym_symbol,
- anon_sym_object,
- [81812] = 10,
- ACTIONS(2275), 1,
- anon_sym_DQUOTE,
- ACTIONS(2277), 1,
- anon_sym_SQUOTE,
- ACTIONS(4634), 1,
- anon_sym_LBRACK,
- ACTIONS(5542), 1,
- anon_sym_STAR,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(5544), 2,
- sym_number,
- sym_private_property_identifier,
- ACTIONS(5546), 2,
- anon_sym_get,
- anon_sym_set,
- STATE(3817), 3,
- sym_string,
- sym__property_name,
- sym_computed_property_name,
- ACTIONS(3743), 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(2307), 21,
- anon_sym_export,
- anon_sym_type,
- anon_sym_namespace,
- anon_sym_let,
- anon_sym_async,
- anon_sym_new,
- sym_identifier,
- anon_sym_static,
- anon_sym_readonly,
- anon_sym_declare,
- anon_sym_public,
- anon_sym_private,
- anon_sym_protected,
- anon_sym_override,
- anon_sym_module,
- anon_sym_any,
- anon_sym_number,
- anon_sym_boolean,
- anon_sym_string,
- anon_sym_symbol,
- anon_sym_object,
- [81876] = 11,
- ACTIONS(1594), 1,
- anon_sym_DQUOTE,
- ACTIONS(1596), 1,
- anon_sym_SQUOTE,
- ACTIONS(4245), 1,
- anon_sym_LBRACK,
- ACTIONS(5241), 1,
- anon_sym_STAR,
- ACTIONS(5243), 1,
- anon_sym_async,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(5249), 2,
- anon_sym_get,
- anon_sym_set,
- ACTIONS(5548), 2,
- sym_number,
- sym_private_property_identifier,
- STATE(2967), 3,
- sym_string,
- sym__property_name,
- sym_computed_property_name,
- ACTIONS(3743), 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(3607), 20,
- anon_sym_export,
- anon_sym_type,
- anon_sym_namespace,
- anon_sym_let,
- anon_sym_new,
- sym_identifier,
- anon_sym_static,
- anon_sym_readonly,
- anon_sym_declare,
- anon_sym_public,
- anon_sym_private,
- anon_sym_protected,
- anon_sym_override,
- anon_sym_module,
- anon_sym_any,
- anon_sym_number,
- anon_sym_boolean,
- anon_sym_string,
- anon_sym_symbol,
- anon_sym_object,
- [81942] = 32,
- ACTIONS(825), 1,
- anon_sym_BQUOTE,
- ACTIONS(3969), 1,
- anon_sym_LPAREN,
- ACTIONS(3971), 1,
- anon_sym_LBRACK,
- ACTIONS(3973), 1,
- anon_sym_DOT,
- ACTIONS(4051), 1,
- anon_sym_as,
- ACTIONS(4055), 1,
- anon_sym_BANG,
- ACTIONS(4059), 1,
- anon_sym_QMARK_DOT,
- ACTIONS(4093), 1,
- anon_sym_satisfies,
- ACTIONS(4703), 1,
- anon_sym_RBRACE,
- ACTIONS(5276), 1,
- anon_sym_AMP_AMP,
- ACTIONS(5278), 1,
- anon_sym_PIPE_PIPE,
- ACTIONS(5280), 1,
- anon_sym_GT_GT,
- ACTIONS(5284), 1,
- anon_sym_AMP,
- ACTIONS(5286), 1,
- anon_sym_CARET,
- ACTIONS(5288), 1,
- anon_sym_PIPE,
- ACTIONS(5292), 1,
- anon_sym_PERCENT,
- ACTIONS(5294), 1,
- anon_sym_STAR_STAR,
- ACTIONS(5296), 1,
- anon_sym_LT,
- ACTIONS(5304), 1,
- anon_sym_QMARK_QMARK,
- ACTIONS(5306), 1,
- sym__ternary_qmark,
- STATE(1447), 1,
- sym_type_arguments,
- STATE(5080), 1,
- sym_optional_chain,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(4091), 2,
- anon_sym_PLUS_PLUS,
- anon_sym_DASH_DASH,
- ACTIONS(5272), 2,
- anon_sym_STAR,
- anon_sym_SLASH,
- ACTIONS(5274), 2,
- anon_sym_in,
- anon_sym_GT,
- ACTIONS(5282), 2,
- anon_sym_GT_GT_GT,
- anon_sym_LT_LT,
- ACTIONS(5290), 2,
- anon_sym_PLUS,
- anon_sym_DASH,
- ACTIONS(5300), 2,
- anon_sym_EQ_EQ,
- anon_sym_BANG_EQ,
- ACTIONS(5302), 2,
- anon_sym_EQ_EQ_EQ,
- anon_sym_BANG_EQ_EQ,
- STATE(1757), 2,
- sym_template_string,
- sym_arguments,
- ACTIONS(5298), 3,
- anon_sym_LT_EQ,
- anon_sym_GT_EQ,
- anon_sym_instanceof,
- [82050] = 5,
- ACTIONS(1809), 1,
- sym__automatic_semicolon,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(1801), 2,
- anon_sym_else,
- anon_sym_while,
- ACTIONS(1805), 13,
- anon_sym_STAR,
- anon_sym_BANG,
- anon_sym_in,
- anon_sym_GT,
- anon_sym_GT_GT,
- anon_sym_AMP,
- anon_sym_PIPE,
- anon_sym_PLUS,
- anon_sym_DASH,
- anon_sym_SLASH,
- anon_sym_LT,
- anon_sym_EQ_EQ,
- anon_sym_BANG_EQ,
- ACTIONS(1807), 25,
- sym__ternary_qmark,
- anon_sym_as,
- anon_sym_COMMA,
- anon_sym_LPAREN,
- anon_sym_SEMI,
- anon_sym_LBRACK,
- anon_sym_DOT,
- anon_sym_QMARK_DOT,
- anon_sym_AMP_AMP,
- anon_sym_PIPE_PIPE,
- anon_sym_GT_GT_GT,
- anon_sym_LT_LT,
- anon_sym_CARET,
- anon_sym_PERCENT,
- anon_sym_STAR_STAR,
- anon_sym_LT_EQ,
- anon_sym_EQ_EQ_EQ,
- anon_sym_BANG_EQ_EQ,
- anon_sym_GT_EQ,
- anon_sym_QMARK_QMARK,
- anon_sym_instanceof,
- anon_sym_PLUS_PLUS,
- anon_sym_DASH_DASH,
- anon_sym_BQUOTE,
- anon_sym_satisfies,
- [82104] = 11,
- ACTIONS(1594), 1,
- anon_sym_DQUOTE,
- ACTIONS(1596), 1,
- anon_sym_SQUOTE,
- ACTIONS(4245), 1,
- anon_sym_LBRACK,
- ACTIONS(5241), 1,
- anon_sym_STAR,
- ACTIONS(5243), 1,
- anon_sym_async,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(5249), 2,
- anon_sym_get,
- anon_sym_set,
- ACTIONS(5550), 2,
- sym_number,
- sym_private_property_identifier,
- STATE(2977), 3,
- sym_string,
- sym__property_name,
- sym_computed_property_name,
- ACTIONS(3743), 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(3607), 20,
- anon_sym_export,
- anon_sym_type,
- anon_sym_namespace,
- anon_sym_let,
- anon_sym_new,
- sym_identifier,
- anon_sym_static,
- anon_sym_readonly,
- anon_sym_declare,
- anon_sym_public,
- anon_sym_private,
- anon_sym_protected,
- anon_sym_override,
- anon_sym_module,
- anon_sym_any,
- anon_sym_number,
- anon_sym_boolean,
- anon_sym_string,
- anon_sym_symbol,
- anon_sym_object,
- [82170] = 5,
- ACTIONS(1843), 1,
- sym__automatic_semicolon,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(1835), 2,
- anon_sym_else,
- anon_sym_while,
- ACTIONS(1839), 13,
- anon_sym_STAR,
- anon_sym_BANG,
- anon_sym_in,
- anon_sym_GT,
- anon_sym_GT_GT,
- anon_sym_AMP,
- anon_sym_PIPE,
- anon_sym_PLUS,
- anon_sym_DASH,
- anon_sym_SLASH,
- anon_sym_LT,
- anon_sym_EQ_EQ,
- anon_sym_BANG_EQ,
- ACTIONS(1841), 25,
- sym__ternary_qmark,
- anon_sym_as,
- anon_sym_COMMA,
- anon_sym_LPAREN,
- anon_sym_SEMI,
- anon_sym_LBRACK,
- anon_sym_DOT,
- anon_sym_QMARK_DOT,
- anon_sym_AMP_AMP,
- anon_sym_PIPE_PIPE,
- anon_sym_GT_GT_GT,
- anon_sym_LT_LT,
- anon_sym_CARET,
- anon_sym_PERCENT,
- anon_sym_STAR_STAR,
- anon_sym_LT_EQ,
- anon_sym_EQ_EQ_EQ,
- anon_sym_BANG_EQ_EQ,
- anon_sym_GT_EQ,
- anon_sym_QMARK_QMARK,
- anon_sym_instanceof,
- anon_sym_PLUS_PLUS,
- anon_sym_DASH_DASH,
- anon_sym_BQUOTE,
- anon_sym_satisfies,
- [82224] = 10,
- ACTIONS(2275), 1,
- anon_sym_DQUOTE,
- ACTIONS(2277), 1,
- anon_sym_SQUOTE,
- ACTIONS(4634), 1,
- anon_sym_LBRACK,
- ACTIONS(5255), 1,
- anon_sym_STAR,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(5552), 2,
- sym_number,
- sym_private_property_identifier,
- ACTIONS(5554), 2,
- anon_sym_get,
- anon_sym_set,
- STATE(3767), 3,
- sym_string,
- sym__property_name,
- sym_computed_property_name,
- ACTIONS(3743), 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(2307), 21,
- anon_sym_export,
- anon_sym_type,
- anon_sym_namespace,
- anon_sym_let,
- anon_sym_async,
- anon_sym_new,
- sym_identifier,
- anon_sym_static,
- anon_sym_readonly,
- anon_sym_declare,
- anon_sym_public,
- anon_sym_private,
- anon_sym_protected,
- anon_sym_override,
- anon_sym_module,
- anon_sym_any,
- anon_sym_number,
- anon_sym_boolean,
- anon_sym_string,
- anon_sym_symbol,
- anon_sym_object,
- [82288] = 11,
- ACTIONS(1594), 1,
- anon_sym_DQUOTE,
- ACTIONS(1596), 1,
- anon_sym_SQUOTE,
- ACTIONS(4245), 1,
- anon_sym_LBRACK,
- ACTIONS(5255), 1,
- anon_sym_STAR,
- ACTIONS(5257), 1,
- anon_sym_async,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(5259), 2,
- sym_number,
- sym_private_property_identifier,
- ACTIONS(5263), 2,
- anon_sym_get,
- anon_sym_set,
- STATE(3039), 3,
- sym_string,
- sym__property_name,
- sym_computed_property_name,
- ACTIONS(3743), 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(3607), 20,
- anon_sym_export,
- anon_sym_type,
- anon_sym_namespace,
- anon_sym_let,
- anon_sym_new,
- sym_identifier,
- anon_sym_static,
- anon_sym_readonly,
- anon_sym_declare,
- anon_sym_public,
- anon_sym_private,
- anon_sym_protected,
- anon_sym_override,
- anon_sym_module,
- anon_sym_any,
- anon_sym_number,
- anon_sym_boolean,
- anon_sym_string,
- anon_sym_symbol,
- anon_sym_object,
- [82354] = 10,
- ACTIONS(2275), 1,
- anon_sym_DQUOTE,
- ACTIONS(2277), 1,
- anon_sym_SQUOTE,
- ACTIONS(4634), 1,
- anon_sym_LBRACK,
- ACTIONS(5311), 1,
- anon_sym_STAR,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(5556), 2,
- sym_number,
- sym_private_property_identifier,
- ACTIONS(5558), 2,
- anon_sym_get,
- anon_sym_set,
- STATE(3808), 3,
- sym_string,
- sym__property_name,
- sym_computed_property_name,
- ACTIONS(3743), 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(2307), 21,
- anon_sym_export,
- anon_sym_type,
- anon_sym_namespace,
- anon_sym_let,
- anon_sym_async,
- anon_sym_new,
- sym_identifier,
- anon_sym_static,
- anon_sym_readonly,
- anon_sym_declare,
- anon_sym_public,
- anon_sym_private,
- anon_sym_protected,
- anon_sym_override,
- anon_sym_module,
- anon_sym_any,
- anon_sym_number,
- anon_sym_boolean,
- anon_sym_string,
- anon_sym_symbol,
- anon_sym_object,
- [82418] = 10,
- ACTIONS(2275), 1,
- anon_sym_DQUOTE,
- ACTIONS(2277), 1,
- anon_sym_SQUOTE,
- ACTIONS(4634), 1,
- anon_sym_LBRACK,
- ACTIONS(5560), 1,
- anon_sym_STAR,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(5562), 2,
- sym_number,
- sym_private_property_identifier,
- ACTIONS(5564), 2,
- anon_sym_get,
- anon_sym_set,
- STATE(3914), 3,
- sym_string,
- sym__property_name,
- sym_computed_property_name,
- ACTIONS(3743), 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(2307), 21,
- anon_sym_export,
- anon_sym_type,
- anon_sym_namespace,
- anon_sym_let,
- anon_sym_async,
- anon_sym_new,
- sym_identifier,
- anon_sym_static,
- anon_sym_readonly,
- anon_sym_declare,
- anon_sym_public,
- anon_sym_private,
- anon_sym_protected,
- anon_sym_override,
- anon_sym_module,
- anon_sym_any,
- anon_sym_number,
- anon_sym_boolean,
- anon_sym_string,
- anon_sym_symbol,
- anon_sym_object,
- [82482] = 10,
- ACTIONS(2275), 1,
- anon_sym_DQUOTE,
- ACTIONS(2277), 1,
- anon_sym_SQUOTE,
- ACTIONS(4634), 1,
- anon_sym_LBRACK,
- ACTIONS(5496), 1,
- anon_sym_STAR,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(5566), 2,
- sym_number,
- sym_private_property_identifier,
- ACTIONS(5568), 2,
- anon_sym_get,
- anon_sym_set,
- STATE(3832), 3,
- sym_string,
- sym__property_name,
- sym_computed_property_name,
- ACTIONS(3743), 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(2307), 21,
- anon_sym_export,
- anon_sym_type,
- anon_sym_namespace,
- anon_sym_let,
- anon_sym_async,
- anon_sym_new,
- sym_identifier,
- anon_sym_static,
- anon_sym_readonly,
- anon_sym_declare,
- anon_sym_public,
- anon_sym_private,
- anon_sym_protected,
- anon_sym_override,
- anon_sym_module,
- anon_sym_any,
- anon_sym_number,
- anon_sym_boolean,
- anon_sym_string,
- anon_sym_symbol,
- anon_sym_object,
- [82546] = 10,
- ACTIONS(2275), 1,
- anon_sym_DQUOTE,
- ACTIONS(2277), 1,
- anon_sym_SQUOTE,
- ACTIONS(4634), 1,
- anon_sym_LBRACK,
- ACTIONS(5570), 1,
- anon_sym_STAR,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(5572), 2,
- sym_number,
- sym_private_property_identifier,
- ACTIONS(5574), 2,
- anon_sym_get,
- anon_sym_set,
- STATE(3834), 3,
- sym_string,
- sym__property_name,
- sym_computed_property_name,
- ACTIONS(3743), 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(2307), 21,
- anon_sym_export,
- anon_sym_type,
- anon_sym_namespace,
- anon_sym_let,
- anon_sym_async,
- anon_sym_new,
- sym_identifier,
- anon_sym_static,
- anon_sym_readonly,
- anon_sym_declare,
- anon_sym_public,
- anon_sym_private,
- anon_sym_protected,
- anon_sym_override,
- anon_sym_module,
- anon_sym_any,
- anon_sym_number,
- anon_sym_boolean,
- anon_sym_string,
- anon_sym_symbol,
- anon_sym_object,
- [82610] = 8,
- ACTIONS(3475), 1,
- anon_sym_EQ,
- ACTIONS(3549), 1,
- anon_sym_COLON,
- ACTIONS(4691), 1,
- anon_sym_LBRACK,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(4694), 2,
- anon_sym_AMP,
- anon_sym_PIPE,
- ACTIONS(4330), 3,
- anon_sym_COMMA,
- anon_sym_RBRACK,
- anon_sym_extends,
- ACTIONS(3400), 11,
- anon_sym_STAR,
- anon_sym_BANG,
- anon_sym_in,
- anon_sym_GT,
- anon_sym_GT_GT,
- anon_sym_PLUS,
- anon_sym_DASH,
- anon_sym_SLASH,
- anon_sym_LT,
- anon_sym_EQ_EQ,
- anon_sym_BANG_EQ,
- ACTIONS(3404), 22,
- sym__ternary_qmark,
- anon_sym_as,
- anon_sym_LPAREN,
- anon_sym_DOT,
- anon_sym_QMARK_DOT,
- anon_sym_AMP_AMP,
- anon_sym_PIPE_PIPE,
- anon_sym_GT_GT_GT,
- anon_sym_LT_LT,
- anon_sym_CARET,
- anon_sym_PERCENT,
- anon_sym_STAR_STAR,
- anon_sym_LT_EQ,
- anon_sym_EQ_EQ_EQ,
- anon_sym_BANG_EQ_EQ,
- anon_sym_GT_EQ,
- anon_sym_QMARK_QMARK,
- anon_sym_instanceof,
- anon_sym_PLUS_PLUS,
- anon_sym_DASH_DASH,
- anon_sym_BQUOTE,
- anon_sym_satisfies,
- [82670] = 3,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(4884), 13,
- anon_sym_STAR,
- anon_sym_BANG,
- anon_sym_in,
- anon_sym_GT,
- anon_sym_GT_GT,
- anon_sym_AMP,
- anon_sym_PIPE,
- anon_sym_PLUS,
- anon_sym_DASH,
- anon_sym_SLASH,
- anon_sym_LT,
- anon_sym_EQ_EQ,
- anon_sym_BANG_EQ,
- ACTIONS(4886), 28,
- sym__automatic_semicolon,
- sym__ternary_qmark,
- anon_sym_as,
- anon_sym_COMMA,
- anon_sym_RBRACE,
- anon_sym_LPAREN,
- anon_sym_of,
- anon_sym_SEMI,
- anon_sym_LBRACK,
- anon_sym_DOT,
- anon_sym_QMARK_DOT,
- anon_sym_AMP_AMP,
- anon_sym_PIPE_PIPE,
- anon_sym_GT_GT_GT,
- anon_sym_LT_LT,
- anon_sym_CARET,
- anon_sym_PERCENT,
- anon_sym_STAR_STAR,
- anon_sym_LT_EQ,
- anon_sym_EQ_EQ_EQ,
- anon_sym_BANG_EQ_EQ,
- anon_sym_GT_EQ,
- anon_sym_QMARK_QMARK,
- anon_sym_instanceof,
- anon_sym_PLUS_PLUS,
- anon_sym_DASH_DASH,
- anon_sym_BQUOTE,
- anon_sym_satisfies,
- [82720] = 32,
- ACTIONS(825), 1,
- anon_sym_BQUOTE,
- ACTIONS(3969), 1,
- anon_sym_LPAREN,
- ACTIONS(3971), 1,
- anon_sym_LBRACK,
- ACTIONS(3973), 1,
- anon_sym_DOT,
- ACTIONS(4051), 1,
- anon_sym_as,
- ACTIONS(4055), 1,
- anon_sym_BANG,
- ACTIONS(4059), 1,
- anon_sym_QMARK_DOT,
- ACTIONS(4093), 1,
- anon_sym_satisfies,
- ACTIONS(5276), 1,
- anon_sym_AMP_AMP,
- ACTIONS(5278), 1,
- anon_sym_PIPE_PIPE,
- ACTIONS(5280), 1,
- anon_sym_GT_GT,
- ACTIONS(5284), 1,
- anon_sym_AMP,
- ACTIONS(5286), 1,
- anon_sym_CARET,
- ACTIONS(5288), 1,
- anon_sym_PIPE,
- ACTIONS(5292), 1,
- anon_sym_PERCENT,
- ACTIONS(5294), 1,
- anon_sym_STAR_STAR,
- ACTIONS(5296), 1,
- anon_sym_LT,
- ACTIONS(5304), 1,
- anon_sym_QMARK_QMARK,
- ACTIONS(5306), 1,
- sym__ternary_qmark,
- ACTIONS(5576), 1,
- anon_sym_COLON,
- STATE(1447), 1,
- sym_type_arguments,
- STATE(5080), 1,
- sym_optional_chain,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(4091), 2,
- anon_sym_PLUS_PLUS,
- anon_sym_DASH_DASH,
- ACTIONS(5272), 2,
- anon_sym_STAR,
- anon_sym_SLASH,
- ACTIONS(5274), 2,
- anon_sym_in,
- anon_sym_GT,
- ACTIONS(5282), 2,
- anon_sym_GT_GT_GT,
- anon_sym_LT_LT,
- ACTIONS(5290), 2,
- anon_sym_PLUS,
- anon_sym_DASH,
- ACTIONS(5300), 2,
- anon_sym_EQ_EQ,
- anon_sym_BANG_EQ,
- ACTIONS(5302), 2,
- anon_sym_EQ_EQ_EQ,
- anon_sym_BANG_EQ_EQ,
- STATE(1757), 2,
- sym_template_string,
- sym_arguments,
- ACTIONS(5298), 3,
- anon_sym_LT_EQ,
- anon_sym_GT_EQ,
- anon_sym_instanceof,
- [82828] = 3,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(4650), 13,
- anon_sym_STAR,
- anon_sym_BANG,
- anon_sym_in,
- anon_sym_GT,
- anon_sym_GT_GT,
- anon_sym_AMP,
- anon_sym_PIPE,
- anon_sym_PLUS,
- anon_sym_DASH,
- anon_sym_SLASH,
- anon_sym_LT,
- anon_sym_EQ_EQ,
- anon_sym_BANG_EQ,
- ACTIONS(4652), 28,
- sym__automatic_semicolon,
- sym__ternary_qmark,
- anon_sym_as,
- anon_sym_COMMA,
- anon_sym_RBRACE,
- anon_sym_LPAREN,
- anon_sym_of,
- anon_sym_SEMI,
- anon_sym_LBRACK,
- anon_sym_DOT,
- anon_sym_QMARK_DOT,
- anon_sym_AMP_AMP,
- anon_sym_PIPE_PIPE,
- anon_sym_GT_GT_GT,
- anon_sym_LT_LT,
- anon_sym_CARET,
- anon_sym_PERCENT,
- anon_sym_STAR_STAR,
- anon_sym_LT_EQ,
- anon_sym_EQ_EQ_EQ,
- anon_sym_BANG_EQ_EQ,
- anon_sym_GT_EQ,
- anon_sym_QMARK_QMARK,
- anon_sym_instanceof,
- anon_sym_PLUS_PLUS,
- anon_sym_DASH_DASH,
- anon_sym_BQUOTE,
- anon_sym_satisfies,
- [82878] = 3,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(4705), 13,
- anon_sym_STAR,
- anon_sym_BANG,
- anon_sym_in,
- anon_sym_GT,
- anon_sym_GT_GT,
- anon_sym_AMP,
- anon_sym_PIPE,
- anon_sym_PLUS,
- anon_sym_DASH,
- anon_sym_SLASH,
- anon_sym_LT,
- anon_sym_EQ_EQ,
- anon_sym_BANG_EQ,
- ACTIONS(4707), 28,
- sym__automatic_semicolon,
- sym__ternary_qmark,
- anon_sym_as,
- anon_sym_COMMA,
- anon_sym_RBRACE,
- anon_sym_LPAREN,
- anon_sym_of,
- anon_sym_SEMI,
- anon_sym_LBRACK,
- anon_sym_DOT,
- anon_sym_QMARK_DOT,
- anon_sym_AMP_AMP,
- anon_sym_PIPE_PIPE,
- anon_sym_GT_GT_GT,
- anon_sym_LT_LT,
- anon_sym_CARET,
- anon_sym_PERCENT,
- anon_sym_STAR_STAR,
- anon_sym_LT_EQ,
- anon_sym_EQ_EQ_EQ,
- anon_sym_BANG_EQ_EQ,
- anon_sym_GT_EQ,
- anon_sym_QMARK_QMARK,
- anon_sym_instanceof,
- anon_sym_PLUS_PLUS,
- anon_sym_DASH_DASH,
- anon_sym_BQUOTE,
- anon_sym_satisfies,
- [82928] = 4,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(1783), 5,
- sym__automatic_semicolon,
- anon_sym_COMMA,
- anon_sym_RBRACE,
- anon_sym_SEMI,
- anon_sym_PIPE_RBRACE,
- ACTIONS(1787), 13,
- anon_sym_STAR,
- anon_sym_BANG,
- anon_sym_in,
- anon_sym_GT,
- anon_sym_GT_GT,
- anon_sym_AMP,
- anon_sym_PIPE,
- anon_sym_PLUS,
- anon_sym_DASH,
- anon_sym_SLASH,
- anon_sym_LT,
- anon_sym_EQ_EQ,
- anon_sym_BANG_EQ,
- ACTIONS(1789), 23,
- sym__ternary_qmark,
- anon_sym_as,
- anon_sym_LPAREN,
- anon_sym_LBRACK,
- anon_sym_DOT,
- anon_sym_QMARK_DOT,
- anon_sym_AMP_AMP,
- anon_sym_PIPE_PIPE,
- anon_sym_GT_GT_GT,
- anon_sym_LT_LT,
- anon_sym_CARET,
- anon_sym_PERCENT,
- anon_sym_STAR_STAR,
- anon_sym_LT_EQ,
- anon_sym_EQ_EQ_EQ,
- anon_sym_BANG_EQ_EQ,
- anon_sym_GT_EQ,
- anon_sym_QMARK_QMARK,
- anon_sym_instanceof,
- anon_sym_PLUS_PLUS,
- anon_sym_DASH_DASH,
- anon_sym_BQUOTE,
- anon_sym_satisfies,
- [82980] = 3,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(4731), 13,
- anon_sym_STAR,
- anon_sym_BANG,
- anon_sym_in,
- anon_sym_GT,
- anon_sym_GT_GT,
- anon_sym_AMP,
- anon_sym_PIPE,
- anon_sym_PLUS,
- anon_sym_DASH,
- anon_sym_SLASH,
- anon_sym_LT,
- anon_sym_EQ_EQ,
- anon_sym_BANG_EQ,
- ACTIONS(4733), 28,
- sym__automatic_semicolon,
- sym__ternary_qmark,
- anon_sym_as,
- anon_sym_COMMA,
- anon_sym_RBRACE,
- anon_sym_LPAREN,
- anon_sym_of,
- anon_sym_SEMI,
- anon_sym_LBRACK,
- anon_sym_DOT,
- anon_sym_QMARK_DOT,
- anon_sym_AMP_AMP,
- anon_sym_PIPE_PIPE,
- anon_sym_GT_GT_GT,
- anon_sym_LT_LT,
- anon_sym_CARET,
- anon_sym_PERCENT,
- anon_sym_STAR_STAR,
- anon_sym_LT_EQ,
- anon_sym_EQ_EQ_EQ,
- anon_sym_BANG_EQ_EQ,
- anon_sym_GT_EQ,
- anon_sym_QMARK_QMARK,
- anon_sym_instanceof,
- anon_sym_PLUS_PLUS,
- anon_sym_DASH_DASH,
- anon_sym_BQUOTE,
- anon_sym_satisfies,
- [83030] = 3,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(1879), 13,
- anon_sym_STAR,
- anon_sym_BANG,
- anon_sym_in,
- anon_sym_GT,
- anon_sym_GT_GT,
- anon_sym_AMP,
- anon_sym_PIPE,
- anon_sym_PLUS,
- anon_sym_DASH,
- anon_sym_SLASH,
- anon_sym_LT,
- anon_sym_EQ_EQ,
- anon_sym_BANG_EQ,
- ACTIONS(1881), 28,
- sym__automatic_semicolon,
- sym__ternary_qmark,
- anon_sym_as,
- anon_sym_COMMA,
- anon_sym_RBRACE,
- anon_sym_LPAREN,
- anon_sym_of,
- anon_sym_SEMI,
- anon_sym_LBRACK,
- anon_sym_DOT,
- anon_sym_QMARK_DOT,
- anon_sym_AMP_AMP,
- anon_sym_PIPE_PIPE,
- anon_sym_GT_GT_GT,
- anon_sym_LT_LT,
- anon_sym_CARET,
- anon_sym_PERCENT,
- anon_sym_STAR_STAR,
- anon_sym_LT_EQ,
- anon_sym_EQ_EQ_EQ,
- anon_sym_BANG_EQ_EQ,
- anon_sym_GT_EQ,
- anon_sym_QMARK_QMARK,
- anon_sym_instanceof,
- anon_sym_PLUS_PLUS,
- anon_sym_DASH_DASH,
- anon_sym_BQUOTE,
- anon_sym_satisfies,
- [83080] = 15,
- ACTIONS(241), 1,
- anon_sym_COMMA,
- ACTIONS(725), 1,
- anon_sym_RBRACE,
- ACTIONS(2275), 1,
- anon_sym_DQUOTE,
- ACTIONS(2277), 1,
- anon_sym_SQUOTE,
- ACTIONS(4243), 1,
- anon_sym_EQ,
- ACTIONS(4634), 1,
- anon_sym_LBRACK,
- ACTIONS(5091), 1,
- anon_sym_STAR,
- STATE(4672), 1,
- aux_sym_object_pattern_repeat1,
- STATE(5156), 1,
- aux_sym_object_repeat1,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(2285), 2,
- sym_number,
- sym_private_property_identifier,
- ACTIONS(2313), 2,
- anon_sym_get,
- anon_sym_set,
- STATE(3788), 3,
- sym_string,
- sym__property_name,
- sym_computed_property_name,
- ACTIONS(3743), 4,
- anon_sym_LPAREN,
- anon_sym_COLON,
- anon_sym_LT,
- anon_sym_QMARK,
- ACTIONS(2307), 21,
- anon_sym_export,
- anon_sym_type,
- anon_sym_namespace,
- anon_sym_let,
- anon_sym_async,
- anon_sym_new,
- sym_identifier,
- anon_sym_static,
- anon_sym_readonly,
- anon_sym_declare,
- anon_sym_public,
- anon_sym_private,
- anon_sym_protected,
- anon_sym_override,
- anon_sym_module,
- anon_sym_any,
- anon_sym_number,
- anon_sym_boolean,
- anon_sym_string,
- anon_sym_symbol,
- anon_sym_object,
- [83154] = 16,
- ACTIONS(241), 1,
- anon_sym_COMMA,
- ACTIONS(725), 1,
- anon_sym_RBRACE,
- ACTIONS(2275), 1,
- anon_sym_DQUOTE,
- ACTIONS(2277), 1,
- anon_sym_SQUOTE,
- ACTIONS(2309), 1,
- anon_sym_async,
- ACTIONS(4243), 1,
- anon_sym_EQ,
- ACTIONS(4634), 1,
- anon_sym_LBRACK,
- ACTIONS(5091), 1,
- anon_sym_STAR,
- STATE(4672), 1,
- aux_sym_object_pattern_repeat1,
- STATE(5156), 1,
- aux_sym_object_repeat1,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(2285), 2,
- sym_number,
- sym_private_property_identifier,
- ACTIONS(2313), 2,
- anon_sym_get,
- anon_sym_set,
- STATE(3788), 3,
- sym_string,
- sym__property_name,
- sym_computed_property_name,
- ACTIONS(3743), 4,
- anon_sym_LPAREN,
- anon_sym_COLON,
- anon_sym_LT,
- anon_sym_QMARK,
- ACTIONS(2307), 20,
- anon_sym_export,
- anon_sym_type,
- anon_sym_namespace,
- anon_sym_let,
- anon_sym_new,
- sym_identifier,
- anon_sym_static,
- anon_sym_readonly,
- anon_sym_declare,
- anon_sym_public,
- anon_sym_private,
- anon_sym_protected,
- anon_sym_override,
- anon_sym_module,
- anon_sym_any,
- anon_sym_number,
- anon_sym_boolean,
- anon_sym_string,
- anon_sym_symbol,
- anon_sym_object,
- [83230] = 3,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(4654), 13,
- anon_sym_STAR,
- anon_sym_BANG,
- anon_sym_in,
- anon_sym_GT,
- anon_sym_GT_GT,
- anon_sym_AMP,
- anon_sym_PIPE,
- anon_sym_PLUS,
- anon_sym_DASH,
- anon_sym_SLASH,
- anon_sym_LT,
- anon_sym_EQ_EQ,
- anon_sym_BANG_EQ,
- ACTIONS(4656), 28,
- sym__automatic_semicolon,
- sym__ternary_qmark,
- anon_sym_as,
- anon_sym_COMMA,
- anon_sym_RBRACE,
- anon_sym_LPAREN,
- anon_sym_of,
- anon_sym_SEMI,
- anon_sym_LBRACK,
- anon_sym_DOT,
- anon_sym_QMARK_DOT,
- anon_sym_AMP_AMP,
- anon_sym_PIPE_PIPE,
- anon_sym_GT_GT_GT,
- anon_sym_LT_LT,
- anon_sym_CARET,
- anon_sym_PERCENT,
- anon_sym_STAR_STAR,
- anon_sym_LT_EQ,
- anon_sym_EQ_EQ_EQ,
- anon_sym_BANG_EQ_EQ,
- anon_sym_GT_EQ,
- anon_sym_QMARK_QMARK,
- anon_sym_instanceof,
- anon_sym_PLUS_PLUS,
- anon_sym_DASH_DASH,
- anon_sym_BQUOTE,
- anon_sym_satisfies,
- [83280] = 4,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(1875), 5,
- sym__automatic_semicolon,
- anon_sym_COMMA,
- anon_sym_RBRACE,
- anon_sym_SEMI,
- anon_sym_PIPE_RBRACE,
- ACTIONS(1879), 13,
- anon_sym_STAR,
- anon_sym_BANG,
- anon_sym_in,
- anon_sym_GT,
- anon_sym_GT_GT,
- anon_sym_AMP,
- anon_sym_PIPE,
- anon_sym_PLUS,
- anon_sym_DASH,
- anon_sym_SLASH,
- anon_sym_LT,
- anon_sym_EQ_EQ,
- anon_sym_BANG_EQ,
- ACTIONS(1881), 23,
- sym__ternary_qmark,
- anon_sym_as,
- anon_sym_LPAREN,
- anon_sym_LBRACK,
- anon_sym_DOT,
- anon_sym_QMARK_DOT,
- anon_sym_AMP_AMP,
- anon_sym_PIPE_PIPE,
- anon_sym_GT_GT_GT,
- anon_sym_LT_LT,
- anon_sym_CARET,
- anon_sym_PERCENT,
- anon_sym_STAR_STAR,
- anon_sym_LT_EQ,
- anon_sym_EQ_EQ_EQ,
- anon_sym_BANG_EQ_EQ,
- anon_sym_GT_EQ,
- anon_sym_QMARK_QMARK,
- anon_sym_instanceof,
- anon_sym_PLUS_PLUS,
- anon_sym_DASH_DASH,
- anon_sym_BQUOTE,
- anon_sym_satisfies,
- [83332] = 10,
- ACTIONS(2275), 1,
- anon_sym_DQUOTE,
- ACTIONS(2277), 1,
- anon_sym_SQUOTE,
- ACTIONS(4243), 1,
- anon_sym_EQ,
- ACTIONS(4634), 1,
- anon_sym_LBRACK,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(3959), 2,
- anon_sym_COMMA,
- anon_sym_RBRACE,
- ACTIONS(4636), 2,
- sym_number,
- sym_private_property_identifier,
- STATE(3770), 3,
- sym_string,
- sym__property_name,
- sym_computed_property_name,
- ACTIONS(3743), 7,
- sym__automatic_semicolon,
- anon_sym_LPAREN,
- anon_sym_SEMI,
- anon_sym_COLON,
- anon_sym_LT,
- anon_sym_QMARK,
- anon_sym_PIPE_RBRACE,
- ACTIONS(2307), 23,
- anon_sym_export,
- anon_sym_type,
- anon_sym_namespace,
- anon_sym_let,
- anon_sym_async,
- anon_sym_new,
- sym_identifier,
- anon_sym_static,
- anon_sym_readonly,
- anon_sym_get,
- anon_sym_set,
- anon_sym_declare,
- anon_sym_public,
- anon_sym_private,
- anon_sym_protected,
- anon_sym_override,
- anon_sym_module,
- anon_sym_any,
- anon_sym_number,
- anon_sym_boolean,
- anon_sym_string,
- anon_sym_symbol,
- anon_sym_object,
- [83396] = 11,
- ACTIONS(1594), 1,
- anon_sym_DQUOTE,
- ACTIONS(1596), 1,
- anon_sym_SQUOTE,
- ACTIONS(4245), 1,
- anon_sym_LBRACK,
- ACTIONS(5311), 1,
- anon_sym_STAR,
- ACTIONS(5313), 1,
- anon_sym_async,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(5315), 2,
- sym_number,
- sym_private_property_identifier,
- ACTIONS(5319), 2,
- anon_sym_get,
- anon_sym_set,
- STATE(3074), 3,
- sym_string,
- sym__property_name,
- sym_computed_property_name,
- ACTIONS(3743), 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(3607), 20,
- anon_sym_export,
- anon_sym_type,
- anon_sym_namespace,
- anon_sym_let,
- anon_sym_new,
- sym_identifier,
- anon_sym_static,
- anon_sym_readonly,
- anon_sym_declare,
- anon_sym_public,
- anon_sym_private,
- anon_sym_protected,
- anon_sym_override,
- anon_sym_module,
- anon_sym_any,
- anon_sym_number,
- anon_sym_boolean,
- anon_sym_string,
- anon_sym_symbol,
- anon_sym_object,
- [83462] = 3,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(4630), 13,
- anon_sym_STAR,
- anon_sym_BANG,
- anon_sym_in,
- anon_sym_GT,
- anon_sym_GT_GT,
- anon_sym_AMP,
- anon_sym_PIPE,
- anon_sym_PLUS,
- anon_sym_DASH,
- anon_sym_SLASH,
- anon_sym_LT,
- anon_sym_EQ_EQ,
- anon_sym_BANG_EQ,
- ACTIONS(4632), 28,
- sym__automatic_semicolon,
- sym__ternary_qmark,
- anon_sym_as,
- anon_sym_COMMA,
- anon_sym_RBRACE,
- anon_sym_LPAREN,
- anon_sym_of,
- anon_sym_SEMI,
- anon_sym_LBRACK,
- anon_sym_DOT,
- anon_sym_QMARK_DOT,
- anon_sym_AMP_AMP,
- anon_sym_PIPE_PIPE,
- anon_sym_GT_GT_GT,
- anon_sym_LT_LT,
- anon_sym_CARET,
- anon_sym_PERCENT,
- anon_sym_STAR_STAR,
- anon_sym_LT_EQ,
- anon_sym_EQ_EQ_EQ,
- anon_sym_BANG_EQ_EQ,
- anon_sym_GT_EQ,
- anon_sym_QMARK_QMARK,
- anon_sym_instanceof,
- anon_sym_PLUS_PLUS,
- anon_sym_DASH_DASH,
- anon_sym_BQUOTE,
- anon_sym_satisfies,
- [83512] = 7,
- ACTIONS(4328), 1,
- anon_sym_QMARK,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(4330), 2,
- anon_sym_RPAREN,
- anon_sym_extends,
- ACTIONS(4694), 2,
- anon_sym_AMP,
- anon_sym_PIPE,
- ACTIONS(4691), 3,
- anon_sym_COMMA,
- anon_sym_LBRACK,
- anon_sym_RBRACK,
- ACTIONS(3400), 11,
- anon_sym_STAR,
- anon_sym_BANG,
- anon_sym_in,
- anon_sym_GT,
- anon_sym_GT_GT,
- anon_sym_PLUS,
- anon_sym_DASH,
- anon_sym_SLASH,
- anon_sym_LT,
- anon_sym_EQ_EQ,
- anon_sym_BANG_EQ,
- ACTIONS(3404), 22,
- sym__ternary_qmark,
- anon_sym_as,
- anon_sym_LPAREN,
- anon_sym_DOT,
- anon_sym_QMARK_DOT,
- anon_sym_AMP_AMP,
- anon_sym_PIPE_PIPE,
- anon_sym_GT_GT_GT,
- anon_sym_LT_LT,
- anon_sym_CARET,
- anon_sym_PERCENT,
- anon_sym_STAR_STAR,
- anon_sym_LT_EQ,
- anon_sym_EQ_EQ_EQ,
- anon_sym_BANG_EQ_EQ,
- anon_sym_GT_EQ,
- anon_sym_QMARK_QMARK,
- anon_sym_instanceof,
- anon_sym_PLUS_PLUS,
- anon_sym_DASH_DASH,
- anon_sym_BQUOTE,
- anon_sym_satisfies,
- [83570] = 5,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(5578), 2,
- anon_sym_EQ,
- anon_sym_QMARK,
- ACTIONS(5580), 3,
- anon_sym_COMMA,
- anon_sym_RPAREN,
- anon_sym_COLON,
- ACTIONS(3400), 13,
- anon_sym_STAR,
- anon_sym_BANG,
- anon_sym_in,
- anon_sym_GT,
- anon_sym_GT_GT,
- anon_sym_AMP,
- anon_sym_PIPE,
- anon_sym_PLUS,
- anon_sym_DASH,
- anon_sym_SLASH,
- anon_sym_LT,
- anon_sym_EQ_EQ,
- anon_sym_BANG_EQ,
- ACTIONS(3404), 23,
- sym__ternary_qmark,
- anon_sym_as,
- anon_sym_LPAREN,
- anon_sym_LBRACK,
- anon_sym_DOT,
- anon_sym_QMARK_DOT,
- anon_sym_AMP_AMP,
- anon_sym_PIPE_PIPE,
- anon_sym_GT_GT_GT,
- anon_sym_LT_LT,
- anon_sym_CARET,
- anon_sym_PERCENT,
- anon_sym_STAR_STAR,
- anon_sym_LT_EQ,
- anon_sym_EQ_EQ_EQ,
- anon_sym_BANG_EQ_EQ,
- anon_sym_GT_EQ,
- anon_sym_QMARK_QMARK,
- anon_sym_instanceof,
- anon_sym_PLUS_PLUS,
- anon_sym_DASH_DASH,
- anon_sym_BQUOTE,
- anon_sym_satisfies,
- [83624] = 3,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(1815), 13,
- anon_sym_STAR,
- anon_sym_BANG,
- anon_sym_in,
- anon_sym_GT,
- anon_sym_GT_GT,
- anon_sym_AMP,
- anon_sym_PIPE,
- anon_sym_PLUS,
- anon_sym_DASH,
- anon_sym_SLASH,
- anon_sym_LT,
- anon_sym_EQ_EQ,
- anon_sym_BANG_EQ,
- ACTIONS(1817), 28,
- sym__automatic_semicolon,
- sym__ternary_qmark,
- anon_sym_as,
- anon_sym_COMMA,
- anon_sym_RBRACE,
- anon_sym_LPAREN,
- anon_sym_of,
- anon_sym_SEMI,
- anon_sym_LBRACK,
- anon_sym_DOT,
- anon_sym_QMARK_DOT,
- anon_sym_AMP_AMP,
- anon_sym_PIPE_PIPE,
- anon_sym_GT_GT_GT,
- anon_sym_LT_LT,
- anon_sym_CARET,
- anon_sym_PERCENT,
- anon_sym_STAR_STAR,
- anon_sym_LT_EQ,
- anon_sym_EQ_EQ_EQ,
- anon_sym_BANG_EQ_EQ,
- anon_sym_GT_EQ,
- anon_sym_QMARK_QMARK,
- anon_sym_instanceof,
- anon_sym_PLUS_PLUS,
- anon_sym_DASH_DASH,
- anon_sym_BQUOTE,
- anon_sym_satisfies,
- [83674] = 3,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(1759), 13,
- anon_sym_STAR,
- anon_sym_BANG,
- anon_sym_in,
- anon_sym_GT,
- anon_sym_GT_GT,
- anon_sym_AMP,
- anon_sym_PIPE,
- anon_sym_PLUS,
- anon_sym_DASH,
- anon_sym_SLASH,
- anon_sym_LT,
- anon_sym_EQ_EQ,
- anon_sym_BANG_EQ,
- ACTIONS(1761), 28,
- sym__automatic_semicolon,
- sym__ternary_qmark,
- anon_sym_as,
- anon_sym_COMMA,
- anon_sym_RBRACE,
- anon_sym_LPAREN,
- anon_sym_of,
- anon_sym_SEMI,
- anon_sym_LBRACK,
- anon_sym_DOT,
- anon_sym_QMARK_DOT,
- anon_sym_AMP_AMP,
- anon_sym_PIPE_PIPE,
- anon_sym_GT_GT_GT,
- anon_sym_LT_LT,
- anon_sym_CARET,
- anon_sym_PERCENT,
- anon_sym_STAR_STAR,
- anon_sym_LT_EQ,
- anon_sym_EQ_EQ_EQ,
- anon_sym_BANG_EQ_EQ,
- anon_sym_GT_EQ,
- anon_sym_QMARK_QMARK,
- anon_sym_instanceof,
- anon_sym_PLUS_PLUS,
- anon_sym_DASH_DASH,
- anon_sym_BQUOTE,
- anon_sym_satisfies,
- [83724] = 3,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(1849), 13,
- anon_sym_STAR,
- anon_sym_BANG,
- anon_sym_in,
- anon_sym_GT,
- anon_sym_GT_GT,
- anon_sym_AMP,
- anon_sym_PIPE,
- anon_sym_PLUS,
- anon_sym_DASH,
- anon_sym_SLASH,
- anon_sym_LT,
- anon_sym_EQ_EQ,
- anon_sym_BANG_EQ,
- ACTIONS(1851), 28,
- sym__automatic_semicolon,
- sym__ternary_qmark,
- anon_sym_as,
- anon_sym_COMMA,
- anon_sym_RBRACE,
- anon_sym_LPAREN,
- anon_sym_of,
- anon_sym_SEMI,
- anon_sym_LBRACK,
- anon_sym_DOT,
- anon_sym_QMARK_DOT,
- anon_sym_AMP_AMP,
- anon_sym_PIPE_PIPE,
- anon_sym_GT_GT_GT,
- anon_sym_LT_LT,
- anon_sym_CARET,
- anon_sym_PERCENT,
- anon_sym_STAR_STAR,
- anon_sym_LT_EQ,
- anon_sym_EQ_EQ_EQ,
- anon_sym_BANG_EQ_EQ,
- anon_sym_GT_EQ,
- anon_sym_QMARK_QMARK,
- anon_sym_instanceof,
- anon_sym_PLUS_PLUS,
- anon_sym_DASH_DASH,
- anon_sym_BQUOTE,
- anon_sym_satisfies,
- [83774] = 3,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(1863), 13,
- anon_sym_STAR,
- anon_sym_BANG,
- anon_sym_in,
- anon_sym_GT,
- anon_sym_GT_GT,
- anon_sym_AMP,
- anon_sym_PIPE,
- anon_sym_PLUS,
- anon_sym_DASH,
- anon_sym_SLASH,
- anon_sym_LT,
- anon_sym_EQ_EQ,
- anon_sym_BANG_EQ,
- ACTIONS(1865), 28,
- sym__automatic_semicolon,
- sym__ternary_qmark,
- anon_sym_as,
- anon_sym_COMMA,
- anon_sym_RBRACE,
- anon_sym_LPAREN,
- anon_sym_of,
- anon_sym_SEMI,
- anon_sym_LBRACK,
- anon_sym_DOT,
- anon_sym_QMARK_DOT,
- anon_sym_AMP_AMP,
- anon_sym_PIPE_PIPE,
- anon_sym_GT_GT_GT,
- anon_sym_LT_LT,
- anon_sym_CARET,
- anon_sym_PERCENT,
- anon_sym_STAR_STAR,
- anon_sym_LT_EQ,
- anon_sym_EQ_EQ_EQ,
- anon_sym_BANG_EQ_EQ,
- anon_sym_GT_EQ,
- anon_sym_QMARK_QMARK,
- anon_sym_instanceof,
- anon_sym_PLUS_PLUS,
- anon_sym_DASH_DASH,
- anon_sym_BQUOTE,
- anon_sym_satisfies,
- [83824] = 3,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(1738), 13,
- anon_sym_STAR,
- anon_sym_BANG,
- anon_sym_in,
- anon_sym_GT,
- anon_sym_GT_GT,
- anon_sym_AMP,
- anon_sym_PIPE,
- anon_sym_PLUS,
- anon_sym_DASH,
- anon_sym_SLASH,
- anon_sym_LT,
- anon_sym_EQ_EQ,
- anon_sym_BANG_EQ,
- ACTIONS(1740), 28,
- sym__automatic_semicolon,
- sym__ternary_qmark,
- anon_sym_as,
- anon_sym_COMMA,
- anon_sym_RBRACE,
- anon_sym_LPAREN,
- anon_sym_of,
- anon_sym_SEMI,
- anon_sym_LBRACK,
- anon_sym_DOT,
- anon_sym_QMARK_DOT,
- anon_sym_AMP_AMP,
- anon_sym_PIPE_PIPE,
- anon_sym_GT_GT_GT,
- anon_sym_LT_LT,
- anon_sym_CARET,
- anon_sym_PERCENT,
- anon_sym_STAR_STAR,
- anon_sym_LT_EQ,
- anon_sym_EQ_EQ_EQ,
- anon_sym_BANG_EQ_EQ,
- anon_sym_GT_EQ,
- anon_sym_QMARK_QMARK,
- anon_sym_instanceof,
- anon_sym_PLUS_PLUS,
- anon_sym_DASH_DASH,
- anon_sym_BQUOTE,
- anon_sym_satisfies,
- [83874] = 32,
- ACTIONS(825), 1,
- anon_sym_BQUOTE,
- ACTIONS(3969), 1,
- anon_sym_LPAREN,
- ACTIONS(3971), 1,
- anon_sym_LBRACK,
- ACTIONS(3973), 1,
- anon_sym_DOT,
- ACTIONS(4051), 1,
- anon_sym_as,
- ACTIONS(4055), 1,
- anon_sym_BANG,
- ACTIONS(4059), 1,
- anon_sym_QMARK_DOT,
- ACTIONS(4093), 1,
- anon_sym_satisfies,
- ACTIONS(5276), 1,
- anon_sym_AMP_AMP,
- ACTIONS(5278), 1,
- anon_sym_PIPE_PIPE,
- ACTIONS(5280), 1,
- anon_sym_GT_GT,
- ACTIONS(5284), 1,
- anon_sym_AMP,
- ACTIONS(5286), 1,
- anon_sym_CARET,
- ACTIONS(5288), 1,
- anon_sym_PIPE,
- ACTIONS(5292), 1,
- anon_sym_PERCENT,
- ACTIONS(5294), 1,
- anon_sym_STAR_STAR,
- ACTIONS(5296), 1,
- anon_sym_LT,
- ACTIONS(5304), 1,
- anon_sym_QMARK_QMARK,
- ACTIONS(5306), 1,
- sym__ternary_qmark,
- ACTIONS(5582), 1,
- anon_sym_COLON,
- STATE(1447), 1,
- sym_type_arguments,
- STATE(5080), 1,
- sym_optional_chain,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(4091), 2,
- anon_sym_PLUS_PLUS,
- anon_sym_DASH_DASH,
- ACTIONS(5272), 2,
- anon_sym_STAR,
- anon_sym_SLASH,
- ACTIONS(5274), 2,
- anon_sym_in,
- anon_sym_GT,
- ACTIONS(5282), 2,
- anon_sym_GT_GT_GT,
- anon_sym_LT_LT,
- ACTIONS(5290), 2,
- anon_sym_PLUS,
- anon_sym_DASH,
- ACTIONS(5300), 2,
- anon_sym_EQ_EQ,
- anon_sym_BANG_EQ,
- ACTIONS(5302), 2,
- anon_sym_EQ_EQ_EQ,
- anon_sym_BANG_EQ_EQ,
- STATE(1757), 2,
- sym_template_string,
- sym_arguments,
- ACTIONS(5298), 3,
- anon_sym_LT_EQ,
- anon_sym_GT_EQ,
- anon_sym_instanceof,
- [83982] = 32,
- ACTIONS(825), 1,
- anon_sym_BQUOTE,
- ACTIONS(3969), 1,
- anon_sym_LPAREN,
- ACTIONS(3971), 1,
- anon_sym_LBRACK,
- ACTIONS(3973), 1,
- anon_sym_DOT,
- ACTIONS(4051), 1,
- anon_sym_as,
- ACTIONS(4055), 1,
- anon_sym_BANG,
- ACTIONS(4059), 1,
- anon_sym_QMARK_DOT,
- ACTIONS(4093), 1,
- anon_sym_satisfies,
- ACTIONS(4255), 1,
- anon_sym_RBRACK,
- ACTIONS(5434), 1,
- anon_sym_AMP_AMP,
- ACTIONS(5436), 1,
- anon_sym_PIPE_PIPE,
- ACTIONS(5438), 1,
- anon_sym_GT_GT,
- ACTIONS(5442), 1,
- anon_sym_AMP,
- ACTIONS(5444), 1,
- anon_sym_CARET,
- ACTIONS(5446), 1,
- anon_sym_PIPE,
- ACTIONS(5450), 1,
- anon_sym_PERCENT,
- ACTIONS(5452), 1,
- anon_sym_STAR_STAR,
- ACTIONS(5454), 1,
- anon_sym_LT,
- ACTIONS(5462), 1,
- anon_sym_QMARK_QMARK,
- ACTIONS(5464), 1,
- sym__ternary_qmark,
- STATE(1447), 1,
- sym_type_arguments,
- STATE(5080), 1,
- sym_optional_chain,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(4091), 2,
- anon_sym_PLUS_PLUS,
- anon_sym_DASH_DASH,
- ACTIONS(5428), 2,
- anon_sym_STAR,
- anon_sym_SLASH,
- ACTIONS(5430), 2,
- anon_sym_in,
- anon_sym_GT,
- ACTIONS(5440), 2,
- anon_sym_GT_GT_GT,
- anon_sym_LT_LT,
- ACTIONS(5448), 2,
- anon_sym_PLUS,
- anon_sym_DASH,
- ACTIONS(5458), 2,
- anon_sym_EQ_EQ,
- anon_sym_BANG_EQ,
- ACTIONS(5460), 2,
- anon_sym_EQ_EQ_EQ,
- anon_sym_BANG_EQ_EQ,
- STATE(1757), 2,
- sym_template_string,
- sym_arguments,
- ACTIONS(5456), 3,
- anon_sym_LT_EQ,
- anon_sym_GT_EQ,
- anon_sym_instanceof,
- [84090] = 32,
- ACTIONS(825), 1,
- anon_sym_BQUOTE,
- ACTIONS(3969), 1,
- anon_sym_LPAREN,
- ACTIONS(3971), 1,
- anon_sym_LBRACK,
- ACTIONS(3973), 1,
- anon_sym_DOT,
- ACTIONS(4051), 1,
- anon_sym_as,
- ACTIONS(4055), 1,
- anon_sym_BANG,
- ACTIONS(4059), 1,
- anon_sym_QMARK_DOT,
- ACTIONS(4093), 1,
- anon_sym_satisfies,
- ACTIONS(4257), 1,
- anon_sym_RBRACK,
- ACTIONS(5434), 1,
- anon_sym_AMP_AMP,
- ACTIONS(5436), 1,
- anon_sym_PIPE_PIPE,
- ACTIONS(5438), 1,
- anon_sym_GT_GT,
- ACTIONS(5442), 1,
- anon_sym_AMP,
- ACTIONS(5444), 1,
- anon_sym_CARET,
- ACTIONS(5446), 1,
- anon_sym_PIPE,
- ACTIONS(5450), 1,
- anon_sym_PERCENT,
- ACTIONS(5452), 1,
- anon_sym_STAR_STAR,
- ACTIONS(5454), 1,
- anon_sym_LT,
- ACTIONS(5462), 1,
- anon_sym_QMARK_QMARK,
- ACTIONS(5464), 1,
- sym__ternary_qmark,
- STATE(1447), 1,
- sym_type_arguments,
- STATE(5080), 1,
- sym_optional_chain,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(4091), 2,
- anon_sym_PLUS_PLUS,
- anon_sym_DASH_DASH,
- ACTIONS(5428), 2,
- anon_sym_STAR,
- anon_sym_SLASH,
- ACTIONS(5430), 2,
- anon_sym_in,
- anon_sym_GT,
- ACTIONS(5440), 2,
- anon_sym_GT_GT_GT,
- anon_sym_LT_LT,
- ACTIONS(5448), 2,
- anon_sym_PLUS,
- anon_sym_DASH,
- ACTIONS(5458), 2,
- anon_sym_EQ_EQ,
- anon_sym_BANG_EQ,
- ACTIONS(5460), 2,
- anon_sym_EQ_EQ_EQ,
- anon_sym_BANG_EQ_EQ,
- STATE(1757), 2,
- sym_template_string,
- sym_arguments,
- ACTIONS(5456), 3,
- anon_sym_LT_EQ,
- anon_sym_GT_EQ,
- anon_sym_instanceof,
- [84198] = 32,
- ACTIONS(825), 1,
- anon_sym_BQUOTE,
- ACTIONS(3969), 1,
- anon_sym_LPAREN,
- ACTIONS(3971), 1,
- anon_sym_LBRACK,
- ACTIONS(3973), 1,
- anon_sym_DOT,
- ACTIONS(4051), 1,
- anon_sym_as,
- ACTIONS(4055), 1,
- anon_sym_BANG,
- ACTIONS(4059), 1,
- anon_sym_QMARK_DOT,
- ACTIONS(4093), 1,
- anon_sym_satisfies,
- ACTIONS(4283), 1,
- anon_sym_RBRACK,
- ACTIONS(5434), 1,
- anon_sym_AMP_AMP,
- ACTIONS(5436), 1,
- anon_sym_PIPE_PIPE,
- ACTIONS(5438), 1,
- anon_sym_GT_GT,
- ACTIONS(5442), 1,
- anon_sym_AMP,
- ACTIONS(5444), 1,
- anon_sym_CARET,
- ACTIONS(5446), 1,
- anon_sym_PIPE,
- ACTIONS(5450), 1,
- anon_sym_PERCENT,
- ACTIONS(5452), 1,
- anon_sym_STAR_STAR,
- ACTIONS(5454), 1,
- anon_sym_LT,
- ACTIONS(5462), 1,
- anon_sym_QMARK_QMARK,
- ACTIONS(5464), 1,
- sym__ternary_qmark,
- STATE(1447), 1,
- sym_type_arguments,
- STATE(5080), 1,
- sym_optional_chain,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(4091), 2,
- anon_sym_PLUS_PLUS,
- anon_sym_DASH_DASH,
- ACTIONS(5428), 2,
- anon_sym_STAR,
- anon_sym_SLASH,
- ACTIONS(5430), 2,
- anon_sym_in,
- anon_sym_GT,
- ACTIONS(5440), 2,
- anon_sym_GT_GT_GT,
- anon_sym_LT_LT,
- ACTIONS(5448), 2,
- anon_sym_PLUS,
- anon_sym_DASH,
- ACTIONS(5458), 2,
- anon_sym_EQ_EQ,
- anon_sym_BANG_EQ,
- ACTIONS(5460), 2,
- anon_sym_EQ_EQ_EQ,
- anon_sym_BANG_EQ_EQ,
- STATE(1757), 2,
- sym_template_string,
- sym_arguments,
- ACTIONS(5456), 3,
- anon_sym_LT_EQ,
- anon_sym_GT_EQ,
- anon_sym_instanceof,
- [84306] = 32,
- ACTIONS(825), 1,
- anon_sym_BQUOTE,
- ACTIONS(3969), 1,
- anon_sym_LPAREN,
- ACTIONS(3971), 1,
- anon_sym_LBRACK,
- ACTIONS(3973), 1,
- anon_sym_DOT,
- ACTIONS(4051), 1,
- anon_sym_as,
- ACTIONS(4055), 1,
- anon_sym_BANG,
- ACTIONS(4059), 1,
- anon_sym_QMARK_DOT,
- ACTIONS(4093), 1,
- anon_sym_satisfies,
- ACTIONS(4297), 1,
- anon_sym_RBRACK,
- ACTIONS(5434), 1,
- anon_sym_AMP_AMP,
- ACTIONS(5436), 1,
- anon_sym_PIPE_PIPE,
- ACTIONS(5438), 1,
- anon_sym_GT_GT,
- ACTIONS(5442), 1,
- anon_sym_AMP,
- ACTIONS(5444), 1,
- anon_sym_CARET,
- ACTIONS(5446), 1,
- anon_sym_PIPE,
- ACTIONS(5450), 1,
- anon_sym_PERCENT,
- ACTIONS(5452), 1,
- anon_sym_STAR_STAR,
- ACTIONS(5454), 1,
- anon_sym_LT,
- ACTIONS(5462), 1,
- anon_sym_QMARK_QMARK,
- ACTIONS(5464), 1,
- sym__ternary_qmark,
- STATE(1447), 1,
- sym_type_arguments,
- STATE(5080), 1,
- sym_optional_chain,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(4091), 2,
- anon_sym_PLUS_PLUS,
- anon_sym_DASH_DASH,
- ACTIONS(5428), 2,
- anon_sym_STAR,
- anon_sym_SLASH,
- ACTIONS(5430), 2,
- anon_sym_in,
- anon_sym_GT,
- ACTIONS(5440), 2,
- anon_sym_GT_GT_GT,
- anon_sym_LT_LT,
- ACTIONS(5448), 2,
- anon_sym_PLUS,
- anon_sym_DASH,
- ACTIONS(5458), 2,
- anon_sym_EQ_EQ,
- anon_sym_BANG_EQ,
- ACTIONS(5460), 2,
- anon_sym_EQ_EQ_EQ,
- anon_sym_BANG_EQ_EQ,
- STATE(1757), 2,
- sym_template_string,
- sym_arguments,
- ACTIONS(5456), 3,
- anon_sym_LT_EQ,
- anon_sym_GT_EQ,
- anon_sym_instanceof,
- [84414] = 32,
- ACTIONS(825), 1,
- anon_sym_BQUOTE,
- ACTIONS(3969), 1,
- anon_sym_LPAREN,
- ACTIONS(3971), 1,
- anon_sym_LBRACK,
- ACTIONS(3973), 1,
- anon_sym_DOT,
- ACTIONS(4051), 1,
- anon_sym_as,
- ACTIONS(4055), 1,
- anon_sym_BANG,
- ACTIONS(4059), 1,
- anon_sym_QMARK_DOT,
- ACTIONS(4093), 1,
- anon_sym_satisfies,
- ACTIONS(4299), 1,
- anon_sym_RBRACK,
- ACTIONS(5434), 1,
- anon_sym_AMP_AMP,
- ACTIONS(5436), 1,
- anon_sym_PIPE_PIPE,
- ACTIONS(5438), 1,
- anon_sym_GT_GT,
- ACTIONS(5442), 1,
- anon_sym_AMP,
- ACTIONS(5444), 1,
- anon_sym_CARET,
- ACTIONS(5446), 1,
- anon_sym_PIPE,
- ACTIONS(5450), 1,
- anon_sym_PERCENT,
- ACTIONS(5452), 1,
- anon_sym_STAR_STAR,
- ACTIONS(5454), 1,
- anon_sym_LT,
- ACTIONS(5462), 1,
- anon_sym_QMARK_QMARK,
- ACTIONS(5464), 1,
- sym__ternary_qmark,
- STATE(1447), 1,
- sym_type_arguments,
- STATE(5080), 1,
- sym_optional_chain,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(4091), 2,
- anon_sym_PLUS_PLUS,
- anon_sym_DASH_DASH,
- ACTIONS(5428), 2,
- anon_sym_STAR,
- anon_sym_SLASH,
- ACTIONS(5430), 2,
- anon_sym_in,
- anon_sym_GT,
- ACTIONS(5440), 2,
- anon_sym_GT_GT_GT,
- anon_sym_LT_LT,
- ACTIONS(5448), 2,
- anon_sym_PLUS,
- anon_sym_DASH,
- ACTIONS(5458), 2,
- anon_sym_EQ_EQ,
- anon_sym_BANG_EQ,
- ACTIONS(5460), 2,
- anon_sym_EQ_EQ_EQ,
- anon_sym_BANG_EQ_EQ,
- STATE(1757), 2,
- sym_template_string,
- sym_arguments,
- ACTIONS(5456), 3,
- anon_sym_LT_EQ,
- anon_sym_GT_EQ,
- anon_sym_instanceof,
- [84522] = 19,
- ACTIONS(825), 1,
- anon_sym_BQUOTE,
- ACTIONS(3969), 1,
- anon_sym_LPAREN,
- ACTIONS(3971), 1,
- anon_sym_LBRACK,
- ACTIONS(3973), 1,
- anon_sym_DOT,
- ACTIONS(4059), 1,
- anon_sym_QMARK_DOT,
- ACTIONS(5438), 1,
- anon_sym_GT_GT,
- ACTIONS(5450), 1,
- anon_sym_PERCENT,
- ACTIONS(5452), 1,
- anon_sym_STAR_STAR,
- ACTIONS(5454), 1,
- anon_sym_LT,
- STATE(1447), 1,
- sym_type_arguments,
- STATE(5080), 1,
- sym_optional_chain,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(4091), 2,
- anon_sym_PLUS_PLUS,
- anon_sym_DASH_DASH,
- ACTIONS(5428), 2,
- anon_sym_STAR,
- anon_sym_SLASH,
- ACTIONS(5440), 2,
- anon_sym_GT_GT_GT,
- anon_sym_LT_LT,
- ACTIONS(5448), 2,
- anon_sym_PLUS,
- anon_sym_DASH,
- STATE(1757), 2,
- sym_template_string,
- sym_arguments,
- ACTIONS(4307), 7,
- anon_sym_BANG,
- anon_sym_in,
- anon_sym_GT,
- anon_sym_AMP,
- anon_sym_PIPE,
- anon_sym_EQ_EQ,
- anon_sym_BANG_EQ,
- ACTIONS(4305), 13,
- sym__ternary_qmark,
- anon_sym_as,
- anon_sym_RBRACK,
- anon_sym_AMP_AMP,
- anon_sym_PIPE_PIPE,
- anon_sym_CARET,
- anon_sym_LT_EQ,
- anon_sym_EQ_EQ_EQ,
- anon_sym_BANG_EQ_EQ,
- anon_sym_GT_EQ,
- anon_sym_QMARK_QMARK,
- anon_sym_instanceof,
- anon_sym_satisfies,
- [84604] = 14,
- ACTIONS(825), 1,
- anon_sym_BQUOTE,
- ACTIONS(3969), 1,
- anon_sym_LPAREN,
- ACTIONS(3971), 1,
- anon_sym_LBRACK,
- ACTIONS(3973), 1,
- anon_sym_DOT,
- ACTIONS(4059), 1,
- anon_sym_QMARK_DOT,
- ACTIONS(5452), 1,
- anon_sym_STAR_STAR,
- ACTIONS(5584), 1,
- anon_sym_LT,
- STATE(1447), 1,
- sym_type_arguments,
- STATE(5080), 1,
- sym_optional_chain,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(4091), 2,
- anon_sym_PLUS_PLUS,
- anon_sym_DASH_DASH,
- STATE(1757), 2,
- sym_template_string,
- sym_arguments,
- ACTIONS(4307), 12,
- anon_sym_STAR,
- anon_sym_BANG,
- anon_sym_in,
- anon_sym_GT,
- anon_sym_GT_GT,
- anon_sym_AMP,
- anon_sym_PIPE,
- anon_sym_PLUS,
- anon_sym_DASH,
- anon_sym_SLASH,
- anon_sym_EQ_EQ,
- anon_sym_BANG_EQ,
- ACTIONS(4305), 16,
- sym__ternary_qmark,
- anon_sym_as,
- anon_sym_RBRACK,
- anon_sym_AMP_AMP,
- anon_sym_PIPE_PIPE,
- anon_sym_GT_GT_GT,
- anon_sym_LT_LT,
- anon_sym_CARET,
- anon_sym_PERCENT,
- anon_sym_LT_EQ,
- anon_sym_EQ_EQ_EQ,
- anon_sym_BANG_EQ_EQ,
- anon_sym_GT_EQ,
- anon_sym_QMARK_QMARK,
- anon_sym_instanceof,
- anon_sym_satisfies,
- [84676] = 26,
- ACTIONS(825), 1,
- anon_sym_BQUOTE,
- ACTIONS(3969), 1,
- anon_sym_LPAREN,
- ACTIONS(3971), 1,
- anon_sym_LBRACK,
- ACTIONS(3973), 1,
- anon_sym_DOT,
- ACTIONS(4059), 1,
- anon_sym_QMARK_DOT,
- ACTIONS(4307), 1,
- anon_sym_BANG,
- ACTIONS(5438), 1,
- anon_sym_GT_GT,
- ACTIONS(5442), 1,
- anon_sym_AMP,
- ACTIONS(5444), 1,
- anon_sym_CARET,
- ACTIONS(5446), 1,
- anon_sym_PIPE,
- ACTIONS(5450), 1,
- anon_sym_PERCENT,
- ACTIONS(5452), 1,
- anon_sym_STAR_STAR,
- ACTIONS(5454), 1,
- anon_sym_LT,
- STATE(1447), 1,
- sym_type_arguments,
- STATE(5080), 1,
- sym_optional_chain,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(4091), 2,
- anon_sym_PLUS_PLUS,
- anon_sym_DASH_DASH,
- ACTIONS(5428), 2,
- anon_sym_STAR,
- anon_sym_SLASH,
- ACTIONS(5430), 2,
- anon_sym_in,
- anon_sym_GT,
- ACTIONS(5440), 2,
- anon_sym_GT_GT_GT,
- anon_sym_LT_LT,
- ACTIONS(5448), 2,
- anon_sym_PLUS,
- anon_sym_DASH,
- ACTIONS(5458), 2,
- anon_sym_EQ_EQ,
- anon_sym_BANG_EQ,
- ACTIONS(5460), 2,
- anon_sym_EQ_EQ_EQ,
- anon_sym_BANG_EQ_EQ,
- STATE(1757), 2,
- sym_template_string,
- sym_arguments,
- ACTIONS(5456), 3,
- anon_sym_LT_EQ,
- anon_sym_GT_EQ,
- anon_sym_instanceof,
- ACTIONS(4305), 7,
- sym__ternary_qmark,
- anon_sym_as,
- anon_sym_RBRACK,
- anon_sym_AMP_AMP,
- anon_sym_PIPE_PIPE,
- anon_sym_QMARK_QMARK,
- anon_sym_satisfies,
- [84772] = 27,
- ACTIONS(825), 1,
- anon_sym_BQUOTE,
- ACTIONS(3969), 1,
- anon_sym_LPAREN,
- ACTIONS(3971), 1,
- anon_sym_LBRACK,
- ACTIONS(3973), 1,
- anon_sym_DOT,
- ACTIONS(4059), 1,
- anon_sym_QMARK_DOT,
- ACTIONS(4307), 1,
- anon_sym_BANG,
- ACTIONS(5434), 1,
- anon_sym_AMP_AMP,
- ACTIONS(5438), 1,
- anon_sym_GT_GT,
- ACTIONS(5442), 1,
- anon_sym_AMP,
- ACTIONS(5444), 1,
- anon_sym_CARET,
- ACTIONS(5446), 1,
- anon_sym_PIPE,
- ACTIONS(5450), 1,
- anon_sym_PERCENT,
- ACTIONS(5452), 1,
- anon_sym_STAR_STAR,
- ACTIONS(5454), 1,
- anon_sym_LT,
- STATE(1447), 1,
- sym_type_arguments,
- STATE(5080), 1,
- sym_optional_chain,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(4091), 2,
- anon_sym_PLUS_PLUS,
- anon_sym_DASH_DASH,
- ACTIONS(5428), 2,
- anon_sym_STAR,
- anon_sym_SLASH,
- ACTIONS(5430), 2,
- anon_sym_in,
- anon_sym_GT,
- ACTIONS(5440), 2,
- anon_sym_GT_GT_GT,
- anon_sym_LT_LT,
- ACTIONS(5448), 2,
- anon_sym_PLUS,
- anon_sym_DASH,
- ACTIONS(5458), 2,
- anon_sym_EQ_EQ,
- anon_sym_BANG_EQ,
- ACTIONS(5460), 2,
- anon_sym_EQ_EQ_EQ,
- anon_sym_BANG_EQ_EQ,
- STATE(1757), 2,
- sym_template_string,
- sym_arguments,
- ACTIONS(5456), 3,
- anon_sym_LT_EQ,
- anon_sym_GT_EQ,
- anon_sym_instanceof,
- ACTIONS(4305), 6,
- sym__ternary_qmark,
- anon_sym_as,
- anon_sym_RBRACK,
- anon_sym_PIPE_PIPE,
- anon_sym_QMARK_QMARK,
- anon_sym_satisfies,
- [84870] = 17,
- ACTIONS(825), 1,
- anon_sym_BQUOTE,
- ACTIONS(3969), 1,
- anon_sym_LPAREN,
- ACTIONS(3971), 1,
- anon_sym_LBRACK,
- ACTIONS(3973), 1,
- anon_sym_DOT,
- ACTIONS(4059), 1,
- anon_sym_QMARK_DOT,
- ACTIONS(5450), 1,
- anon_sym_PERCENT,
- ACTIONS(5452), 1,
- anon_sym_STAR_STAR,
- ACTIONS(5584), 1,
- anon_sym_LT,
- STATE(1447), 1,
- sym_type_arguments,
- STATE(5080), 1,
- sym_optional_chain,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(4091), 2,
- anon_sym_PLUS_PLUS,
- anon_sym_DASH_DASH,
- ACTIONS(5428), 2,
- anon_sym_STAR,
- anon_sym_SLASH,
- ACTIONS(5448), 2,
- anon_sym_PLUS,
- anon_sym_DASH,
- STATE(1757), 2,
- sym_template_string,
- sym_arguments,
- ACTIONS(4307), 8,
- anon_sym_BANG,
- anon_sym_in,
- anon_sym_GT,
- anon_sym_GT_GT,
- anon_sym_AMP,
- anon_sym_PIPE,
- anon_sym_EQ_EQ,
- anon_sym_BANG_EQ,
- ACTIONS(4305), 15,
- sym__ternary_qmark,
- anon_sym_as,
- anon_sym_RBRACK,
- anon_sym_AMP_AMP,
- anon_sym_PIPE_PIPE,
- anon_sym_GT_GT_GT,
- anon_sym_LT_LT,
- anon_sym_CARET,
- anon_sym_LT_EQ,
- anon_sym_EQ_EQ_EQ,
- anon_sym_BANG_EQ_EQ,
- anon_sym_GT_EQ,
- anon_sym_QMARK_QMARK,
- anon_sym_instanceof,
- anon_sym_satisfies,
- [84948] = 23,
- ACTIONS(825), 1,
- anon_sym_BQUOTE,
- ACTIONS(3969), 1,
- anon_sym_LPAREN,
- ACTIONS(3971), 1,
- anon_sym_LBRACK,
- ACTIONS(3973), 1,
- anon_sym_DOT,
- ACTIONS(4059), 1,
- anon_sym_QMARK_DOT,
- ACTIONS(5438), 1,
- anon_sym_GT_GT,
- ACTIONS(5450), 1,
- anon_sym_PERCENT,
- ACTIONS(5452), 1,
- anon_sym_STAR_STAR,
- ACTIONS(5454), 1,
- anon_sym_LT,
- STATE(1447), 1,
- sym_type_arguments,
- STATE(5080), 1,
- sym_optional_chain,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(4091), 2,
- anon_sym_PLUS_PLUS,
- anon_sym_DASH_DASH,
- ACTIONS(5428), 2,
- anon_sym_STAR,
- anon_sym_SLASH,
- ACTIONS(5430), 2,
- anon_sym_in,
- anon_sym_GT,
- ACTIONS(5440), 2,
- anon_sym_GT_GT_GT,
- anon_sym_LT_LT,
- ACTIONS(5448), 2,
- anon_sym_PLUS,
- anon_sym_DASH,
- ACTIONS(5458), 2,
- anon_sym_EQ_EQ,
- anon_sym_BANG_EQ,
- ACTIONS(5460), 2,
- anon_sym_EQ_EQ_EQ,
- anon_sym_BANG_EQ_EQ,
- STATE(1757), 2,
- sym_template_string,
- sym_arguments,
- ACTIONS(4307), 3,
- anon_sym_BANG,
- anon_sym_AMP,
- anon_sym_PIPE,
- ACTIONS(5456), 3,
- anon_sym_LT_EQ,
- anon_sym_GT_EQ,
- anon_sym_instanceof,
- ACTIONS(4305), 8,
- sym__ternary_qmark,
- anon_sym_as,
- anon_sym_RBRACK,
- anon_sym_AMP_AMP,
- anon_sym_PIPE_PIPE,
- anon_sym_CARET,
- anon_sym_QMARK_QMARK,
- anon_sym_satisfies,
- [85038] = 24,
- ACTIONS(825), 1,
- anon_sym_BQUOTE,
- ACTIONS(3969), 1,
- anon_sym_LPAREN,
- ACTIONS(3971), 1,
- anon_sym_LBRACK,
- ACTIONS(3973), 1,
- anon_sym_DOT,
- ACTIONS(4059), 1,
- anon_sym_QMARK_DOT,
- ACTIONS(5438), 1,
- anon_sym_GT_GT,
- ACTIONS(5442), 1,
- anon_sym_AMP,
- ACTIONS(5450), 1,
- anon_sym_PERCENT,
- ACTIONS(5452), 1,
- anon_sym_STAR_STAR,
- ACTIONS(5454), 1,
- anon_sym_LT,
- STATE(1447), 1,
- sym_type_arguments,
- STATE(5080), 1,
- sym_optional_chain,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(4091), 2,
- anon_sym_PLUS_PLUS,
- anon_sym_DASH_DASH,
- ACTIONS(4307), 2,
- anon_sym_BANG,
- anon_sym_PIPE,
- ACTIONS(5428), 2,
- anon_sym_STAR,
- anon_sym_SLASH,
- ACTIONS(5430), 2,
- anon_sym_in,
- anon_sym_GT,
- ACTIONS(5440), 2,
- anon_sym_GT_GT_GT,
- anon_sym_LT_LT,
- ACTIONS(5448), 2,
- anon_sym_PLUS,
- anon_sym_DASH,
- ACTIONS(5458), 2,
- anon_sym_EQ_EQ,
- anon_sym_BANG_EQ,
- ACTIONS(5460), 2,
- anon_sym_EQ_EQ_EQ,
- anon_sym_BANG_EQ_EQ,
- STATE(1757), 2,
- sym_template_string,
- sym_arguments,
- ACTIONS(5456), 3,
- anon_sym_LT_EQ,
- anon_sym_GT_EQ,
- anon_sym_instanceof,
- ACTIONS(4305), 8,
- sym__ternary_qmark,
- anon_sym_as,
- anon_sym_RBRACK,
- anon_sym_AMP_AMP,
- anon_sym_PIPE_PIPE,
- anon_sym_CARET,
- anon_sym_QMARK_QMARK,
- anon_sym_satisfies,
- [85130] = 25,
- ACTIONS(825), 1,
- anon_sym_BQUOTE,
- ACTIONS(3969), 1,
- anon_sym_LPAREN,
- ACTIONS(3971), 1,
- anon_sym_LBRACK,
- ACTIONS(3973), 1,
- anon_sym_DOT,
- ACTIONS(4059), 1,
- anon_sym_QMARK_DOT,
- ACTIONS(5438), 1,
- anon_sym_GT_GT,
- ACTIONS(5442), 1,
- anon_sym_AMP,
- ACTIONS(5444), 1,
- anon_sym_CARET,
- ACTIONS(5450), 1,
- anon_sym_PERCENT,
- ACTIONS(5452), 1,
- anon_sym_STAR_STAR,
- ACTIONS(5454), 1,
- anon_sym_LT,
- STATE(1447), 1,
- sym_type_arguments,
- STATE(5080), 1,
- sym_optional_chain,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(4091), 2,
- anon_sym_PLUS_PLUS,
- anon_sym_DASH_DASH,
- ACTIONS(4307), 2,
- anon_sym_BANG,
- anon_sym_PIPE,
- ACTIONS(5428), 2,
- anon_sym_STAR,
- anon_sym_SLASH,
- ACTIONS(5430), 2,
- anon_sym_in,
- anon_sym_GT,
- ACTIONS(5440), 2,
- anon_sym_GT_GT_GT,
- anon_sym_LT_LT,
- ACTIONS(5448), 2,
- anon_sym_PLUS,
- anon_sym_DASH,
- ACTIONS(5458), 2,
- anon_sym_EQ_EQ,
- anon_sym_BANG_EQ,
- ACTIONS(5460), 2,
- anon_sym_EQ_EQ_EQ,
- anon_sym_BANG_EQ_EQ,
- STATE(1757), 2,
- sym_template_string,
- sym_arguments,
- ACTIONS(5456), 3,
- anon_sym_LT_EQ,
- anon_sym_GT_EQ,
- anon_sym_instanceof,
- ACTIONS(4305), 7,
- sym__ternary_qmark,
- anon_sym_as,
- anon_sym_RBRACK,
- anon_sym_AMP_AMP,
- anon_sym_PIPE_PIPE,
- anon_sym_QMARK_QMARK,
- anon_sym_satisfies,
- [85224] = 16,
- ACTIONS(825), 1,
- anon_sym_BQUOTE,
- ACTIONS(3969), 1,
- anon_sym_LPAREN,
- ACTIONS(3971), 1,
- anon_sym_LBRACK,
- ACTIONS(3973), 1,
- anon_sym_DOT,
- ACTIONS(4059), 1,
- anon_sym_QMARK_DOT,
- ACTIONS(5450), 1,
- anon_sym_PERCENT,
- ACTIONS(5452), 1,
- anon_sym_STAR_STAR,
- ACTIONS(5584), 1,
- anon_sym_LT,
- STATE(1447), 1,
- sym_type_arguments,
- STATE(5080), 1,
- sym_optional_chain,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(4091), 2,
- anon_sym_PLUS_PLUS,
- anon_sym_DASH_DASH,
- ACTIONS(5428), 2,
- anon_sym_STAR,
- anon_sym_SLASH,
- STATE(1757), 2,
- sym_template_string,
- sym_arguments,
- ACTIONS(4307), 10,
- anon_sym_BANG,
- anon_sym_in,
- anon_sym_GT,
- anon_sym_GT_GT,
- anon_sym_AMP,
- anon_sym_PIPE,
- anon_sym_PLUS,
- anon_sym_DASH,
- anon_sym_EQ_EQ,
- anon_sym_BANG_EQ,
- ACTIONS(4305), 15,
- sym__ternary_qmark,
- anon_sym_as,
- anon_sym_RBRACK,
- anon_sym_AMP_AMP,
- anon_sym_PIPE_PIPE,
- anon_sym_GT_GT_GT,
- anon_sym_LT_LT,
- anon_sym_CARET,
- anon_sym_LT_EQ,
- anon_sym_EQ_EQ_EQ,
- anon_sym_BANG_EQ_EQ,
- anon_sym_GT_EQ,
- anon_sym_QMARK_QMARK,
- anon_sym_instanceof,
- anon_sym_satisfies,
- [85300] = 17,
- ACTIONS(825), 1,
- anon_sym_BQUOTE,
- ACTIONS(3969), 1,
- anon_sym_LPAREN,
- ACTIONS(3971), 1,
- anon_sym_LBRACK,
- ACTIONS(3973), 1,
- anon_sym_DOT,
- ACTIONS(4051), 1,
- anon_sym_as,
- ACTIONS(4055), 1,
- anon_sym_BANG,
- ACTIONS(4059), 1,
- anon_sym_QMARK_DOT,
- ACTIONS(4093), 1,
- anon_sym_satisfies,
- ACTIONS(5452), 1,
- anon_sym_STAR_STAR,
- ACTIONS(5584), 1,
- anon_sym_LT,
- STATE(1447), 1,
- sym_type_arguments,
- STATE(5080), 1,
- sym_optional_chain,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(4091), 2,
- anon_sym_PLUS_PLUS,
- anon_sym_DASH_DASH,
- STATE(1757), 2,
- sym_template_string,
- sym_arguments,
- ACTIONS(4307), 11,
- anon_sym_STAR,
- anon_sym_in,
- anon_sym_GT,
- anon_sym_GT_GT,
- anon_sym_AMP,
- anon_sym_PIPE,
- anon_sym_PLUS,
- anon_sym_DASH,
- anon_sym_SLASH,
- anon_sym_EQ_EQ,
- anon_sym_BANG_EQ,
- ACTIONS(4305), 14,
- sym__ternary_qmark,
- anon_sym_RBRACK,
- anon_sym_AMP_AMP,
- anon_sym_PIPE_PIPE,
- anon_sym_GT_GT_GT,
- anon_sym_LT_LT,
- anon_sym_CARET,
- anon_sym_PERCENT,
- anon_sym_LT_EQ,
- anon_sym_EQ_EQ_EQ,
- anon_sym_BANG_EQ_EQ,
- anon_sym_GT_EQ,
- anon_sym_QMARK_QMARK,
- anon_sym_instanceof,
- [85378] = 21,
- ACTIONS(825), 1,
- anon_sym_BQUOTE,
- ACTIONS(3969), 1,
- anon_sym_LPAREN,
- ACTIONS(3971), 1,
- anon_sym_LBRACK,
- ACTIONS(3973), 1,
- anon_sym_DOT,
- ACTIONS(4059), 1,
- anon_sym_QMARK_DOT,
- ACTIONS(5438), 1,
- anon_sym_GT_GT,
- ACTIONS(5450), 1,
- anon_sym_PERCENT,
- ACTIONS(5452), 1,
- anon_sym_STAR_STAR,
- ACTIONS(5454), 1,
- anon_sym_LT,
- STATE(1447), 1,
- sym_type_arguments,
- STATE(5080), 1,
- sym_optional_chain,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(4091), 2,
- anon_sym_PLUS_PLUS,
- anon_sym_DASH_DASH,
- ACTIONS(5428), 2,
- anon_sym_STAR,
- anon_sym_SLASH,
- ACTIONS(5430), 2,
- anon_sym_in,
- anon_sym_GT,
- ACTIONS(5440), 2,
- anon_sym_GT_GT_GT,
- anon_sym_LT_LT,
- ACTIONS(5448), 2,
- anon_sym_PLUS,
- anon_sym_DASH,
- STATE(1757), 2,
- sym_template_string,
- sym_arguments,
- ACTIONS(5456), 3,
- anon_sym_LT_EQ,
- anon_sym_GT_EQ,
- anon_sym_instanceof,
- ACTIONS(4307), 5,
- anon_sym_BANG,
- anon_sym_AMP,
- anon_sym_PIPE,
- anon_sym_EQ_EQ,
- anon_sym_BANG_EQ,
- ACTIONS(4305), 10,
- sym__ternary_qmark,
- anon_sym_as,
- anon_sym_RBRACK,
- anon_sym_AMP_AMP,
- anon_sym_PIPE_PIPE,
- anon_sym_CARET,
- anon_sym_EQ_EQ_EQ,
- anon_sym_BANG_EQ_EQ,
- anon_sym_QMARK_QMARK,
- anon_sym_satisfies,
- [85464] = 28,
- ACTIONS(825), 1,
- anon_sym_BQUOTE,
- ACTIONS(3969), 1,
- anon_sym_LPAREN,
- ACTIONS(3971), 1,
- anon_sym_LBRACK,
- ACTIONS(3973), 1,
- anon_sym_DOT,
- ACTIONS(4059), 1,
- anon_sym_QMARK_DOT,
- ACTIONS(4307), 1,
- anon_sym_BANG,
- ACTIONS(5434), 1,
- anon_sym_AMP_AMP,
- ACTIONS(5436), 1,
- anon_sym_PIPE_PIPE,
- ACTIONS(5438), 1,
- anon_sym_GT_GT,
- ACTIONS(5442), 1,
- anon_sym_AMP,
- ACTIONS(5444), 1,
- anon_sym_CARET,
- ACTIONS(5446), 1,
- anon_sym_PIPE,
- ACTIONS(5450), 1,
- anon_sym_PERCENT,
- ACTIONS(5452), 1,
- anon_sym_STAR_STAR,
- ACTIONS(5454), 1,
- anon_sym_LT,
- STATE(1447), 1,
- sym_type_arguments,
- STATE(5080), 1,
- sym_optional_chain,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(4091), 2,
- anon_sym_PLUS_PLUS,
- anon_sym_DASH_DASH,
- ACTIONS(5428), 2,
- anon_sym_STAR,
- anon_sym_SLASH,
- ACTIONS(5430), 2,
- anon_sym_in,
- anon_sym_GT,
- ACTIONS(5440), 2,
- anon_sym_GT_GT_GT,
- anon_sym_LT_LT,
- ACTIONS(5448), 2,
- anon_sym_PLUS,
- anon_sym_DASH,
- ACTIONS(5458), 2,
- anon_sym_EQ_EQ,
- anon_sym_BANG_EQ,
- ACTIONS(5460), 2,
- anon_sym_EQ_EQ_EQ,
- anon_sym_BANG_EQ_EQ,
- STATE(1757), 2,
- sym_template_string,
- sym_arguments,
- ACTIONS(5456), 3,
- anon_sym_LT_EQ,
- anon_sym_GT_EQ,
- anon_sym_instanceof,
- ACTIONS(4305), 5,
- sym__ternary_qmark,
- anon_sym_as,
- anon_sym_RBRACK,
- anon_sym_QMARK_QMARK,
- anon_sym_satisfies,
- [85564] = 32,
- ACTIONS(825), 1,
- anon_sym_BQUOTE,
- ACTIONS(3969), 1,
- anon_sym_LPAREN,
- ACTIONS(3971), 1,
- anon_sym_LBRACK,
- ACTIONS(3973), 1,
- anon_sym_DOT,
- ACTIONS(4051), 1,
- anon_sym_as,
- ACTIONS(4055), 1,
- anon_sym_BANG,
- ACTIONS(4059), 1,
- anon_sym_QMARK_DOT,
- ACTIONS(4093), 1,
- anon_sym_satisfies,
- ACTIONS(4350), 1,
- anon_sym_RBRACK,
- ACTIONS(5434), 1,
- anon_sym_AMP_AMP,
- ACTIONS(5436), 1,
- anon_sym_PIPE_PIPE,
- ACTIONS(5438), 1,
- anon_sym_GT_GT,
- ACTIONS(5442), 1,
- anon_sym_AMP,
- ACTIONS(5444), 1,
- anon_sym_CARET,
- ACTIONS(5446), 1,
- anon_sym_PIPE,
- ACTIONS(5450), 1,
- anon_sym_PERCENT,
- ACTIONS(5452), 1,
- anon_sym_STAR_STAR,
- ACTIONS(5454), 1,
- anon_sym_LT,
- ACTIONS(5462), 1,
- anon_sym_QMARK_QMARK,
- ACTIONS(5464), 1,
- sym__ternary_qmark,
- STATE(1447), 1,
- sym_type_arguments,
- STATE(5080), 1,
- sym_optional_chain,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(4091), 2,
- anon_sym_PLUS_PLUS,
- anon_sym_DASH_DASH,
- ACTIONS(5428), 2,
- anon_sym_STAR,
- anon_sym_SLASH,
- ACTIONS(5430), 2,
- anon_sym_in,
- anon_sym_GT,
- ACTIONS(5440), 2,
- anon_sym_GT_GT_GT,
- anon_sym_LT_LT,
- ACTIONS(5448), 2,
- anon_sym_PLUS,
- anon_sym_DASH,
- ACTIONS(5458), 2,
- anon_sym_EQ_EQ,
- anon_sym_BANG_EQ,
- ACTIONS(5460), 2,
- anon_sym_EQ_EQ_EQ,
- anon_sym_BANG_EQ_EQ,
- STATE(1757), 2,
- sym_template_string,
- sym_arguments,
- ACTIONS(5456), 3,
- anon_sym_LT_EQ,
- anon_sym_GT_EQ,
- anon_sym_instanceof,
- [85672] = 32,
- ACTIONS(825), 1,
- anon_sym_BQUOTE,
- ACTIONS(3969), 1,
- anon_sym_LPAREN,
- ACTIONS(3971), 1,
- anon_sym_LBRACK,
- ACTIONS(3973), 1,
- anon_sym_DOT,
- ACTIONS(4051), 1,
- anon_sym_as,
- ACTIONS(4055), 1,
- anon_sym_BANG,
- ACTIONS(4059), 1,
- anon_sym_QMARK_DOT,
- ACTIONS(4093), 1,
- anon_sym_satisfies,
- ACTIONS(4352), 1,
- anon_sym_RBRACK,
- ACTIONS(5434), 1,
- anon_sym_AMP_AMP,
- ACTIONS(5436), 1,
- anon_sym_PIPE_PIPE,
- ACTIONS(5438), 1,
- anon_sym_GT_GT,
- ACTIONS(5442), 1,
- anon_sym_AMP,
- ACTIONS(5444), 1,
- anon_sym_CARET,
- ACTIONS(5446), 1,
- anon_sym_PIPE,
- ACTIONS(5450), 1,
- anon_sym_PERCENT,
- ACTIONS(5452), 1,
- anon_sym_STAR_STAR,
- ACTIONS(5454), 1,
- anon_sym_LT,
- ACTIONS(5462), 1,
- anon_sym_QMARK_QMARK,
- ACTIONS(5464), 1,
- sym__ternary_qmark,
- STATE(1447), 1,
- sym_type_arguments,
- STATE(5080), 1,
- sym_optional_chain,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(4091), 2,
- anon_sym_PLUS_PLUS,
- anon_sym_DASH_DASH,
- ACTIONS(5428), 2,
- anon_sym_STAR,
- anon_sym_SLASH,
- ACTIONS(5430), 2,
- anon_sym_in,
- anon_sym_GT,
- ACTIONS(5440), 2,
- anon_sym_GT_GT_GT,
- anon_sym_LT_LT,
- ACTIONS(5448), 2,
- anon_sym_PLUS,
- anon_sym_DASH,
- ACTIONS(5458), 2,
- anon_sym_EQ_EQ,
- anon_sym_BANG_EQ,
- ACTIONS(5460), 2,
- anon_sym_EQ_EQ_EQ,
- anon_sym_BANG_EQ_EQ,
- STATE(1757), 2,
- sym_template_string,
- sym_arguments,
- ACTIONS(5456), 3,
- anon_sym_LT_EQ,
- anon_sym_GT_EQ,
- anon_sym_instanceof,
- [85780] = 32,
- ACTIONS(825), 1,
- anon_sym_BQUOTE,
- ACTIONS(3969), 1,
- anon_sym_LPAREN,
- ACTIONS(3971), 1,
- anon_sym_LBRACK,
- ACTIONS(3973), 1,
- anon_sym_DOT,
- ACTIONS(4051), 1,
- anon_sym_as,
- ACTIONS(4055), 1,
- anon_sym_BANG,
- ACTIONS(4059), 1,
- anon_sym_QMARK_DOT,
- ACTIONS(4093), 1,
- anon_sym_satisfies,
- ACTIONS(4370), 1,
- anon_sym_RBRACK,
- ACTIONS(5434), 1,
- anon_sym_AMP_AMP,
- ACTIONS(5436), 1,
- anon_sym_PIPE_PIPE,
- ACTIONS(5438), 1,
- anon_sym_GT_GT,
- ACTIONS(5442), 1,
- anon_sym_AMP,
- ACTIONS(5444), 1,
- anon_sym_CARET,
- ACTIONS(5446), 1,
- anon_sym_PIPE,
- ACTIONS(5450), 1,
- anon_sym_PERCENT,
- ACTIONS(5452), 1,
- anon_sym_STAR_STAR,
- ACTIONS(5454), 1,
- anon_sym_LT,
- ACTIONS(5462), 1,
- anon_sym_QMARK_QMARK,
- ACTIONS(5464), 1,
- sym__ternary_qmark,
- STATE(1447), 1,
- sym_type_arguments,
- STATE(5080), 1,
- sym_optional_chain,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(4091), 2,
- anon_sym_PLUS_PLUS,
- anon_sym_DASH_DASH,
- ACTIONS(5428), 2,
- anon_sym_STAR,
- anon_sym_SLASH,
- ACTIONS(5430), 2,
- anon_sym_in,
- anon_sym_GT,
- ACTIONS(5440), 2,
- anon_sym_GT_GT_GT,
- anon_sym_LT_LT,
- ACTIONS(5448), 2,
- anon_sym_PLUS,
- anon_sym_DASH,
- ACTIONS(5458), 2,
- anon_sym_EQ_EQ,
- anon_sym_BANG_EQ,
- ACTIONS(5460), 2,
- anon_sym_EQ_EQ_EQ,
- anon_sym_BANG_EQ_EQ,
- STATE(1757), 2,
- sym_template_string,
- sym_arguments,
- ACTIONS(5456), 3,
- anon_sym_LT_EQ,
- anon_sym_GT_EQ,
- anon_sym_instanceof,
- [85888] = 32,
- ACTIONS(825), 1,
- anon_sym_BQUOTE,
- ACTIONS(3969), 1,
- anon_sym_LPAREN,
- ACTIONS(3971), 1,
- anon_sym_LBRACK,
- ACTIONS(3973), 1,
- anon_sym_DOT,
- ACTIONS(4051), 1,
- anon_sym_as,
- ACTIONS(4055), 1,
- anon_sym_BANG,
- ACTIONS(4059), 1,
- anon_sym_QMARK_DOT,
- ACTIONS(4093), 1,
- anon_sym_satisfies,
- ACTIONS(4372), 1,
- anon_sym_RBRACK,
- ACTIONS(5434), 1,
- anon_sym_AMP_AMP,
- ACTIONS(5436), 1,
- anon_sym_PIPE_PIPE,
- ACTIONS(5438), 1,
- anon_sym_GT_GT,
- ACTIONS(5442), 1,
- anon_sym_AMP,
- ACTIONS(5444), 1,
- anon_sym_CARET,
- ACTIONS(5446), 1,
- anon_sym_PIPE,
- ACTIONS(5450), 1,
- anon_sym_PERCENT,
- ACTIONS(5452), 1,
- anon_sym_STAR_STAR,
- ACTIONS(5454), 1,
- anon_sym_LT,
- ACTIONS(5462), 1,
- anon_sym_QMARK_QMARK,
- ACTIONS(5464), 1,
- sym__ternary_qmark,
- STATE(1447), 1,
- sym_type_arguments,
- STATE(5080), 1,
- sym_optional_chain,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(4091), 2,
- anon_sym_PLUS_PLUS,
- anon_sym_DASH_DASH,
- ACTIONS(5428), 2,
- anon_sym_STAR,
- anon_sym_SLASH,
- ACTIONS(5430), 2,
- anon_sym_in,
- anon_sym_GT,
- ACTIONS(5440), 2,
- anon_sym_GT_GT_GT,
- anon_sym_LT_LT,
- ACTIONS(5448), 2,
- anon_sym_PLUS,
- anon_sym_DASH,
- ACTIONS(5458), 2,
- anon_sym_EQ_EQ,
- anon_sym_BANG_EQ,
- ACTIONS(5460), 2,
- anon_sym_EQ_EQ_EQ,
- anon_sym_BANG_EQ_EQ,
- STATE(1757), 2,
- sym_template_string,
- sym_arguments,
- ACTIONS(5456), 3,
- anon_sym_LT_EQ,
- anon_sym_GT_EQ,
- anon_sym_instanceof,
- [85996] = 32,
- ACTIONS(825), 1,
- anon_sym_BQUOTE,
- ACTIONS(3969), 1,
- anon_sym_LPAREN,
- ACTIONS(3971), 1,
- anon_sym_LBRACK,
- ACTIONS(3973), 1,
- anon_sym_DOT,
- ACTIONS(4051), 1,
- anon_sym_as,
- ACTIONS(4055), 1,
- anon_sym_BANG,
- ACTIONS(4059), 1,
- anon_sym_QMARK_DOT,
- ACTIONS(4093), 1,
- anon_sym_satisfies,
- ACTIONS(4374), 1,
- anon_sym_RBRACK,
- ACTIONS(5434), 1,
- anon_sym_AMP_AMP,
- ACTIONS(5436), 1,
- anon_sym_PIPE_PIPE,
- ACTIONS(5438), 1,
- anon_sym_GT_GT,
- ACTIONS(5442), 1,
- anon_sym_AMP,
- ACTIONS(5444), 1,
- anon_sym_CARET,
- ACTIONS(5446), 1,
- anon_sym_PIPE,
- ACTIONS(5450), 1,
- anon_sym_PERCENT,
- ACTIONS(5452), 1,
- anon_sym_STAR_STAR,
- ACTIONS(5454), 1,
- anon_sym_LT,
- ACTIONS(5462), 1,
- anon_sym_QMARK_QMARK,
- ACTIONS(5464), 1,
- sym__ternary_qmark,
- STATE(1447), 1,
- sym_type_arguments,
- STATE(5080), 1,
- sym_optional_chain,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(4091), 2,
- anon_sym_PLUS_PLUS,
- anon_sym_DASH_DASH,
- ACTIONS(5428), 2,
- anon_sym_STAR,
- anon_sym_SLASH,
- ACTIONS(5430), 2,
- anon_sym_in,
- anon_sym_GT,
- ACTIONS(5440), 2,
- anon_sym_GT_GT_GT,
- anon_sym_LT_LT,
- ACTIONS(5448), 2,
- anon_sym_PLUS,
- anon_sym_DASH,
- ACTIONS(5458), 2,
- anon_sym_EQ_EQ,
- anon_sym_BANG_EQ,
- ACTIONS(5460), 2,
- anon_sym_EQ_EQ_EQ,
- anon_sym_BANG_EQ_EQ,
- STATE(1757), 2,
- sym_template_string,
- sym_arguments,
- ACTIONS(5456), 3,
- anon_sym_LT_EQ,
- anon_sym_GT_EQ,
- anon_sym_instanceof,
- [86104] = 32,
- ACTIONS(825), 1,
- anon_sym_BQUOTE,
- ACTIONS(3969), 1,
- anon_sym_LPAREN,
- ACTIONS(3971), 1,
- anon_sym_LBRACK,
- ACTIONS(3973), 1,
- anon_sym_DOT,
- ACTIONS(4051), 1,
- anon_sym_as,
- ACTIONS(4055), 1,
- anon_sym_BANG,
- ACTIONS(4059), 1,
- anon_sym_QMARK_DOT,
- ACTIONS(4093), 1,
- anon_sym_satisfies,
- ACTIONS(4376), 1,
- anon_sym_RBRACK,
- ACTIONS(5434), 1,
- anon_sym_AMP_AMP,
- ACTIONS(5436), 1,
- anon_sym_PIPE_PIPE,
- ACTIONS(5438), 1,
- anon_sym_GT_GT,
- ACTIONS(5442), 1,
- anon_sym_AMP,
- ACTIONS(5444), 1,
- anon_sym_CARET,
- ACTIONS(5446), 1,
- anon_sym_PIPE,
- ACTIONS(5450), 1,
- anon_sym_PERCENT,
- ACTIONS(5452), 1,
- anon_sym_STAR_STAR,
- ACTIONS(5454), 1,
- anon_sym_LT,
- ACTIONS(5462), 1,
- anon_sym_QMARK_QMARK,
- ACTIONS(5464), 1,
- sym__ternary_qmark,
- STATE(1447), 1,
- sym_type_arguments,
- STATE(5080), 1,
- sym_optional_chain,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(4091), 2,
- anon_sym_PLUS_PLUS,
- anon_sym_DASH_DASH,
- ACTIONS(5428), 2,
- anon_sym_STAR,
- anon_sym_SLASH,
- ACTIONS(5430), 2,
- anon_sym_in,
- anon_sym_GT,
- ACTIONS(5440), 2,
- anon_sym_GT_GT_GT,
- anon_sym_LT_LT,
- ACTIONS(5448), 2,
- anon_sym_PLUS,
- anon_sym_DASH,
- ACTIONS(5458), 2,
- anon_sym_EQ_EQ,
- anon_sym_BANG_EQ,
- ACTIONS(5460), 2,
- anon_sym_EQ_EQ_EQ,
- anon_sym_BANG_EQ_EQ,
- STATE(1757), 2,
- sym_template_string,
- sym_arguments,
- ACTIONS(5456), 3,
- anon_sym_LT_EQ,
- anon_sym_GT_EQ,
- anon_sym_instanceof,
- [86212] = 32,
- ACTIONS(825), 1,
- anon_sym_BQUOTE,
- ACTIONS(3969), 1,
- anon_sym_LPAREN,
- ACTIONS(3971), 1,
- anon_sym_LBRACK,
- ACTIONS(3973), 1,
- anon_sym_DOT,
- ACTIONS(4051), 1,
- anon_sym_as,
- ACTIONS(4053), 1,
- anon_sym_RBRACK,
- ACTIONS(4055), 1,
- anon_sym_BANG,
- ACTIONS(4059), 1,
- anon_sym_QMARK_DOT,
- ACTIONS(4093), 1,
- anon_sym_satisfies,
- ACTIONS(5434), 1,
- anon_sym_AMP_AMP,
- ACTIONS(5436), 1,
- anon_sym_PIPE_PIPE,
- ACTIONS(5438), 1,
- anon_sym_GT_GT,
- ACTIONS(5442), 1,
- anon_sym_AMP,
- ACTIONS(5444), 1,
- anon_sym_CARET,
- ACTIONS(5446), 1,
- anon_sym_PIPE,
- ACTIONS(5450), 1,
- anon_sym_PERCENT,
- ACTIONS(5452), 1,
- anon_sym_STAR_STAR,
- ACTIONS(5454), 1,
- anon_sym_LT,
- ACTIONS(5462), 1,
- anon_sym_QMARK_QMARK,
- ACTIONS(5464), 1,
- sym__ternary_qmark,
- STATE(1447), 1,
- sym_type_arguments,
- STATE(5080), 1,
- sym_optional_chain,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(4091), 2,
- anon_sym_PLUS_PLUS,
- anon_sym_DASH_DASH,
- ACTIONS(5428), 2,
- anon_sym_STAR,
- anon_sym_SLASH,
- ACTIONS(5430), 2,
- anon_sym_in,
- anon_sym_GT,
- ACTIONS(5440), 2,
- anon_sym_GT_GT_GT,
- anon_sym_LT_LT,
- ACTIONS(5448), 2,
- anon_sym_PLUS,
- anon_sym_DASH,
- ACTIONS(5458), 2,
- anon_sym_EQ_EQ,
- anon_sym_BANG_EQ,
- ACTIONS(5460), 2,
- anon_sym_EQ_EQ_EQ,
- anon_sym_BANG_EQ_EQ,
- STATE(1757), 2,
- sym_template_string,
- sym_arguments,
- ACTIONS(5456), 3,
- anon_sym_LT_EQ,
- anon_sym_GT_EQ,
- anon_sym_instanceof,
- [86320] = 32,
- ACTIONS(825), 1,
- anon_sym_BQUOTE,
- ACTIONS(3969), 1,
- anon_sym_LPAREN,
- ACTIONS(3971), 1,
- anon_sym_LBRACK,
- ACTIONS(3973), 1,
- anon_sym_DOT,
- ACTIONS(4051), 1,
- anon_sym_as,
- ACTIONS(4055), 1,
- anon_sym_BANG,
- ACTIONS(4059), 1,
- anon_sym_QMARK_DOT,
- ACTIONS(4093), 1,
- anon_sym_satisfies,
- ACTIONS(4388), 1,
- anon_sym_RBRACK,
- ACTIONS(5434), 1,
- anon_sym_AMP_AMP,
- ACTIONS(5436), 1,
- anon_sym_PIPE_PIPE,
- ACTIONS(5438), 1,
- anon_sym_GT_GT,
- ACTIONS(5442), 1,
- anon_sym_AMP,
- ACTIONS(5444), 1,
- anon_sym_CARET,
- ACTIONS(5446), 1,
- anon_sym_PIPE,
- ACTIONS(5450), 1,
- anon_sym_PERCENT,
- ACTIONS(5452), 1,
- anon_sym_STAR_STAR,
- ACTIONS(5454), 1,
- anon_sym_LT,
- ACTIONS(5462), 1,
- anon_sym_QMARK_QMARK,
- ACTIONS(5464), 1,
- sym__ternary_qmark,
- STATE(1447), 1,
- sym_type_arguments,
- STATE(5080), 1,
- sym_optional_chain,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(4091), 2,
- anon_sym_PLUS_PLUS,
- anon_sym_DASH_DASH,
- ACTIONS(5428), 2,
- anon_sym_STAR,
- anon_sym_SLASH,
- ACTIONS(5430), 2,
- anon_sym_in,
- anon_sym_GT,
- ACTIONS(5440), 2,
- anon_sym_GT_GT_GT,
- anon_sym_LT_LT,
- ACTIONS(5448), 2,
- anon_sym_PLUS,
- anon_sym_DASH,
- ACTIONS(5458), 2,
- anon_sym_EQ_EQ,
- anon_sym_BANG_EQ,
- ACTIONS(5460), 2,
- anon_sym_EQ_EQ_EQ,
- anon_sym_BANG_EQ_EQ,
- STATE(1757), 2,
- sym_template_string,
- sym_arguments,
- ACTIONS(5456), 3,
- anon_sym_LT_EQ,
- anon_sym_GT_EQ,
- anon_sym_instanceof,
- [86428] = 4,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(1801), 5,
- sym__automatic_semicolon,
- anon_sym_COMMA,
- anon_sym_RBRACE,
- anon_sym_SEMI,
- anon_sym_PIPE_RBRACE,
- ACTIONS(1805), 13,
- anon_sym_STAR,
- anon_sym_BANG,
- anon_sym_in,
- anon_sym_GT,
- anon_sym_GT_GT,
- anon_sym_AMP,
- anon_sym_PIPE,
- anon_sym_PLUS,
- anon_sym_DASH,
- anon_sym_SLASH,
- anon_sym_LT,
- anon_sym_EQ_EQ,
- anon_sym_BANG_EQ,
- ACTIONS(1807), 23,
- sym__ternary_qmark,
- anon_sym_as,
- anon_sym_LPAREN,
- anon_sym_LBRACK,
- anon_sym_DOT,
- anon_sym_QMARK_DOT,
- anon_sym_AMP_AMP,
- anon_sym_PIPE_PIPE,
- anon_sym_GT_GT_GT,
- anon_sym_LT_LT,
- anon_sym_CARET,
- anon_sym_PERCENT,
- anon_sym_STAR_STAR,
- anon_sym_LT_EQ,
- anon_sym_EQ_EQ_EQ,
- anon_sym_BANG_EQ_EQ,
- anon_sym_GT_EQ,
- anon_sym_QMARK_QMARK,
- anon_sym_instanceof,
- anon_sym_PLUS_PLUS,
- anon_sym_DASH_DASH,
- anon_sym_BQUOTE,
- anon_sym_satisfies,
- [86480] = 13,
- ACTIONS(825), 1,
- anon_sym_BQUOTE,
- ACTIONS(3969), 1,
- anon_sym_LPAREN,
- ACTIONS(3971), 1,
- anon_sym_LBRACK,
- ACTIONS(3973), 1,
- anon_sym_DOT,
- ACTIONS(4059), 1,
- anon_sym_QMARK_DOT,
- ACTIONS(5587), 1,
- anon_sym_LT,
- STATE(1447), 1,
- sym_type_arguments,
- STATE(5080), 1,
- sym_optional_chain,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(4091), 2,
- anon_sym_PLUS_PLUS,
- anon_sym_DASH_DASH,
- STATE(1757), 2,
- sym_template_string,
- sym_arguments,
- ACTIONS(4170), 12,
- anon_sym_STAR,
- anon_sym_BANG,
- anon_sym_in,
- anon_sym_GT,
- anon_sym_GT_GT,
- anon_sym_AMP,
- anon_sym_PIPE,
- anon_sym_PLUS,
- anon_sym_DASH,
- anon_sym_SLASH,
- anon_sym_EQ_EQ,
- anon_sym_BANG_EQ,
- ACTIONS(4172), 17,
- sym__ternary_qmark,
- anon_sym_as,
- anon_sym_RBRACK,
- anon_sym_AMP_AMP,
- anon_sym_PIPE_PIPE,
- anon_sym_GT_GT_GT,
- anon_sym_LT_LT,
- anon_sym_CARET,
- anon_sym_PERCENT,
- anon_sym_STAR_STAR,
- anon_sym_LT_EQ,
- anon_sym_EQ_EQ_EQ,
- anon_sym_BANG_EQ_EQ,
- anon_sym_GT_EQ,
- anon_sym_QMARK_QMARK,
- anon_sym_instanceof,
- anon_sym_satisfies,
- [86550] = 16,
- ACTIONS(825), 1,
- anon_sym_BQUOTE,
- ACTIONS(3969), 1,
- anon_sym_LPAREN,
- ACTIONS(3971), 1,
- anon_sym_LBRACK,
- ACTIONS(3973), 1,
- anon_sym_DOT,
- ACTIONS(4051), 1,
- anon_sym_as,
- ACTIONS(4055), 1,
- anon_sym_BANG,
- ACTIONS(4059), 1,
- anon_sym_QMARK_DOT,
- ACTIONS(4093), 1,
- anon_sym_satisfies,
- ACTIONS(5590), 1,
- anon_sym_LT,
- STATE(1447), 1,
- sym_type_arguments,
- STATE(5080), 1,
- sym_optional_chain,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(4091), 2,
- anon_sym_PLUS_PLUS,
- anon_sym_DASH_DASH,
- STATE(1757), 2,
- sym_template_string,
- sym_arguments,
- ACTIONS(4199), 11,
- anon_sym_STAR,
- anon_sym_in,
- anon_sym_GT,
- anon_sym_GT_GT,
- anon_sym_AMP,
- anon_sym_PIPE,
- anon_sym_PLUS,
- anon_sym_DASH,
- anon_sym_SLASH,
- anon_sym_EQ_EQ,
- anon_sym_BANG_EQ,
- ACTIONS(4201), 15,
- sym__ternary_qmark,
- anon_sym_RBRACK,
- anon_sym_AMP_AMP,
- anon_sym_PIPE_PIPE,
- anon_sym_GT_GT_GT,
- anon_sym_LT_LT,
- anon_sym_CARET,
- anon_sym_PERCENT,
- anon_sym_STAR_STAR,
- anon_sym_LT_EQ,
- anon_sym_EQ_EQ_EQ,
- anon_sym_BANG_EQ_EQ,
- anon_sym_GT_EQ,
- anon_sym_QMARK_QMARK,
- anon_sym_instanceof,
- [86626] = 6,
- ACTIONS(3448), 1,
- anon_sym_EQ,
- ACTIONS(3586), 1,
- anon_sym_in,
- ACTIONS(3589), 1,
- anon_sym_of,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(3400), 12,
- anon_sym_STAR,
- anon_sym_BANG,
- anon_sym_GT,
- anon_sym_GT_GT,
- anon_sym_AMP,
- anon_sym_PIPE,
- anon_sym_PLUS,
- anon_sym_DASH,
- anon_sym_SLASH,
- anon_sym_LT,
- anon_sym_EQ_EQ,
- anon_sym_BANG_EQ,
- ACTIONS(3404), 26,
- sym__automatic_semicolon,
- sym__ternary_qmark,
- anon_sym_as,
- anon_sym_COMMA,
- anon_sym_LPAREN,
- anon_sym_SEMI,
- anon_sym_LBRACK,
- anon_sym_DOT,
- anon_sym_QMARK_DOT,
- anon_sym_AMP_AMP,
- anon_sym_PIPE_PIPE,
- anon_sym_GT_GT_GT,
- anon_sym_LT_LT,
- anon_sym_CARET,
- anon_sym_PERCENT,
- anon_sym_STAR_STAR,
- anon_sym_LT_EQ,
- anon_sym_EQ_EQ_EQ,
- anon_sym_BANG_EQ_EQ,
- anon_sym_GT_EQ,
- anon_sym_QMARK_QMARK,
- anon_sym_instanceof,
- anon_sym_PLUS_PLUS,
- anon_sym_DASH_DASH,
- anon_sym_BQUOTE,
- anon_sym_satisfies,
- [86682] = 32,
- ACTIONS(825), 1,
- anon_sym_BQUOTE,
- ACTIONS(3969), 1,
- anon_sym_LPAREN,
- ACTIONS(3971), 1,
- anon_sym_LBRACK,
- ACTIONS(3973), 1,
- anon_sym_DOT,
- ACTIONS(4051), 1,
- anon_sym_as,
- ACTIONS(4055), 1,
- anon_sym_BANG,
- ACTIONS(4059), 1,
- anon_sym_QMARK_DOT,
- ACTIONS(4093), 1,
- anon_sym_satisfies,
- ACTIONS(4210), 1,
- anon_sym_RBRACK,
- ACTIONS(5434), 1,
- anon_sym_AMP_AMP,
- ACTIONS(5436), 1,
- anon_sym_PIPE_PIPE,
- ACTIONS(5438), 1,
- anon_sym_GT_GT,
- ACTIONS(5442), 1,
- anon_sym_AMP,
- ACTIONS(5444), 1,
- anon_sym_CARET,
- ACTIONS(5446), 1,
- anon_sym_PIPE,
- ACTIONS(5450), 1,
- anon_sym_PERCENT,
- ACTIONS(5452), 1,
- anon_sym_STAR_STAR,
- ACTIONS(5454), 1,
- anon_sym_LT,
- ACTIONS(5462), 1,
- anon_sym_QMARK_QMARK,
- ACTIONS(5464), 1,
- sym__ternary_qmark,
- STATE(1447), 1,
- sym_type_arguments,
- STATE(5080), 1,
- sym_optional_chain,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(4091), 2,
- anon_sym_PLUS_PLUS,
- anon_sym_DASH_DASH,
- ACTIONS(5428), 2,
- anon_sym_STAR,
- anon_sym_SLASH,
- ACTIONS(5430), 2,
- anon_sym_in,
- anon_sym_GT,
- ACTIONS(5440), 2,
- anon_sym_GT_GT_GT,
- anon_sym_LT_LT,
- ACTIONS(5448), 2,
- anon_sym_PLUS,
- anon_sym_DASH,
- ACTIONS(5458), 2,
- anon_sym_EQ_EQ,
- anon_sym_BANG_EQ,
- ACTIONS(5460), 2,
- anon_sym_EQ_EQ_EQ,
- anon_sym_BANG_EQ_EQ,
- STATE(1757), 2,
- sym_template_string,
- sym_arguments,
- ACTIONS(5456), 3,
- anon_sym_LT_EQ,
- anon_sym_GT_EQ,
- anon_sym_instanceof,
- [86790] = 12,
- ACTIONS(825), 1,
- anon_sym_BQUOTE,
- ACTIONS(3969), 1,
- anon_sym_LPAREN,
- ACTIONS(3971), 1,
- anon_sym_LBRACK,
- ACTIONS(3973), 1,
- anon_sym_DOT,
- ACTIONS(4059), 1,
- anon_sym_QMARK_DOT,
- ACTIONS(5593), 1,
- anon_sym_LT,
- STATE(1447), 1,
- sym_type_arguments,
- STATE(5080), 1,
- sym_optional_chain,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- STATE(1757), 2,
- sym_template_string,
- sym_arguments,
- ACTIONS(4230), 12,
- anon_sym_STAR,
- anon_sym_BANG,
- anon_sym_in,
- anon_sym_GT,
- anon_sym_GT_GT,
- anon_sym_AMP,
- anon_sym_PIPE,
- anon_sym_PLUS,
- anon_sym_DASH,
- anon_sym_SLASH,
- anon_sym_EQ_EQ,
- anon_sym_BANG_EQ,
- ACTIONS(4232), 19,
- sym__ternary_qmark,
- anon_sym_as,
- anon_sym_RBRACK,
- anon_sym_AMP_AMP,
- anon_sym_PIPE_PIPE,
- anon_sym_GT_GT_GT,
- anon_sym_LT_LT,
- anon_sym_CARET,
- anon_sym_PERCENT,
- anon_sym_STAR_STAR,
- anon_sym_LT_EQ,
- anon_sym_EQ_EQ_EQ,
- anon_sym_BANG_EQ_EQ,
- anon_sym_GT_EQ,
- anon_sym_QMARK_QMARK,
- anon_sym_instanceof,
- anon_sym_PLUS_PLUS,
- anon_sym_DASH_DASH,
- anon_sym_satisfies,
- [86858] = 3,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(3400), 13,
- anon_sym_STAR,
- anon_sym_BANG,
- anon_sym_in,
- anon_sym_GT,
- anon_sym_GT_GT,
- anon_sym_AMP,
- anon_sym_PIPE,
- anon_sym_PLUS,
- anon_sym_DASH,
- anon_sym_SLASH,
- anon_sym_LT,
- anon_sym_EQ_EQ,
- anon_sym_BANG_EQ,
- ACTIONS(3404), 28,
- sym__automatic_semicolon,
- sym__ternary_qmark,
- anon_sym_as,
- anon_sym_COMMA,
- anon_sym_RBRACE,
- anon_sym_LPAREN,
- anon_sym_of,
- anon_sym_SEMI,
- anon_sym_LBRACK,
- anon_sym_DOT,
- anon_sym_QMARK_DOT,
- anon_sym_AMP_AMP,
- anon_sym_PIPE_PIPE,
- anon_sym_GT_GT_GT,
- anon_sym_LT_LT,
- anon_sym_CARET,
- anon_sym_PERCENT,
- anon_sym_STAR_STAR,
- anon_sym_LT_EQ,
- anon_sym_EQ_EQ_EQ,
- anon_sym_BANG_EQ_EQ,
- anon_sym_GT_EQ,
- anon_sym_QMARK_QMARK,
- anon_sym_instanceof,
- anon_sym_PLUS_PLUS,
- anon_sym_DASH_DASH,
- anon_sym_BQUOTE,
- anon_sym_satisfies,
- [86908] = 5,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(5596), 2,
- anon_sym_EQ,
- anon_sym_QMARK,
- ACTIONS(5598), 3,
- anon_sym_COMMA,
- anon_sym_RPAREN,
- anon_sym_COLON,
- ACTIONS(3400), 13,
- anon_sym_STAR,
- anon_sym_BANG,
- anon_sym_in,
- anon_sym_GT,
- anon_sym_GT_GT,
- anon_sym_AMP,
- anon_sym_PIPE,
- anon_sym_PLUS,
- anon_sym_DASH,
- anon_sym_SLASH,
- anon_sym_LT,
- anon_sym_EQ_EQ,
- anon_sym_BANG_EQ,
- ACTIONS(3404), 23,
- sym__ternary_qmark,
- anon_sym_as,
- anon_sym_LPAREN,
- anon_sym_LBRACK,
- anon_sym_DOT,
- anon_sym_QMARK_DOT,
- anon_sym_AMP_AMP,
- anon_sym_PIPE_PIPE,
- anon_sym_GT_GT_GT,
- anon_sym_LT_LT,
- anon_sym_CARET,
- anon_sym_PERCENT,
- anon_sym_STAR_STAR,
- anon_sym_LT_EQ,
- anon_sym_EQ_EQ_EQ,
- anon_sym_BANG_EQ_EQ,
- anon_sym_GT_EQ,
- anon_sym_QMARK_QMARK,
- anon_sym_instanceof,
- anon_sym_PLUS_PLUS,
- anon_sym_DASH_DASH,
- anon_sym_BQUOTE,
- anon_sym_satisfies,
- [86962] = 5,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(5265), 2,
- anon_sym_EQ,
- anon_sym_QMARK,
- ACTIONS(5267), 3,
- anon_sym_COMMA,
- anon_sym_RPAREN,
- anon_sym_COLON,
- ACTIONS(3400), 13,
- anon_sym_STAR,
- anon_sym_BANG,
- anon_sym_in,
- anon_sym_GT,
- anon_sym_GT_GT,
- anon_sym_AMP,
- anon_sym_PIPE,
- anon_sym_PLUS,
- anon_sym_DASH,
- anon_sym_SLASH,
- anon_sym_LT,
- anon_sym_EQ_EQ,
- anon_sym_BANG_EQ,
- ACTIONS(3404), 23,
- sym__ternary_qmark,
- anon_sym_as,
- anon_sym_LPAREN,
- anon_sym_LBRACK,
- anon_sym_DOT,
- anon_sym_QMARK_DOT,
- anon_sym_AMP_AMP,
- anon_sym_PIPE_PIPE,
- anon_sym_GT_GT_GT,
- anon_sym_LT_LT,
- anon_sym_CARET,
- anon_sym_PERCENT,
- anon_sym_STAR_STAR,
- anon_sym_LT_EQ,
- anon_sym_EQ_EQ_EQ,
- anon_sym_BANG_EQ_EQ,
- anon_sym_GT_EQ,
- anon_sym_QMARK_QMARK,
- anon_sym_instanceof,
- anon_sym_PLUS_PLUS,
- anon_sym_DASH_DASH,
- anon_sym_BQUOTE,
- anon_sym_satisfies,
- [87016] = 32,
- ACTIONS(825), 1,
- anon_sym_BQUOTE,
- ACTIONS(3969), 1,
- anon_sym_LPAREN,
- ACTIONS(3971), 1,
- anon_sym_LBRACK,
- ACTIONS(3973), 1,
- anon_sym_DOT,
- ACTIONS(4051), 1,
- anon_sym_as,
- ACTIONS(4055), 1,
- anon_sym_BANG,
- ACTIONS(4059), 1,
- anon_sym_QMARK_DOT,
- ACTIONS(4093), 1,
- anon_sym_satisfies,
- ACTIONS(5276), 1,
- anon_sym_AMP_AMP,
- ACTIONS(5278), 1,
- anon_sym_PIPE_PIPE,
- ACTIONS(5280), 1,
- anon_sym_GT_GT,
- ACTIONS(5284), 1,
- anon_sym_AMP,
- ACTIONS(5286), 1,
- anon_sym_CARET,
- ACTIONS(5288), 1,
- anon_sym_PIPE,
- ACTIONS(5292), 1,
- anon_sym_PERCENT,
- ACTIONS(5294), 1,
- anon_sym_STAR_STAR,
- ACTIONS(5296), 1,
- anon_sym_LT,
- ACTIONS(5304), 1,
- anon_sym_QMARK_QMARK,
- ACTIONS(5306), 1,
- sym__ternary_qmark,
- ACTIONS(5600), 1,
- anon_sym_COLON,
- STATE(1447), 1,
- sym_type_arguments,
- STATE(5080), 1,
- sym_optional_chain,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(4091), 2,
- anon_sym_PLUS_PLUS,
- anon_sym_DASH_DASH,
- ACTIONS(5272), 2,
- anon_sym_STAR,
- anon_sym_SLASH,
- ACTIONS(5274), 2,
- anon_sym_in,
- anon_sym_GT,
- ACTIONS(5282), 2,
- anon_sym_GT_GT_GT,
- anon_sym_LT_LT,
- ACTIONS(5290), 2,
- anon_sym_PLUS,
- anon_sym_DASH,
- ACTIONS(5300), 2,
- anon_sym_EQ_EQ,
- anon_sym_BANG_EQ,
- ACTIONS(5302), 2,
- anon_sym_EQ_EQ_EQ,
- anon_sym_BANG_EQ_EQ,
- STATE(1757), 2,
- sym_template_string,
- sym_arguments,
- ACTIONS(5298), 3,
- anon_sym_LT_EQ,
- anon_sym_GT_EQ,
- anon_sym_instanceof,
- [87124] = 10,
- ACTIONS(2275), 1,
- anon_sym_DQUOTE,
- ACTIONS(2277), 1,
- anon_sym_SQUOTE,
- ACTIONS(4634), 1,
- anon_sym_LBRACK,
- ACTIONS(5602), 1,
- anon_sym_STAR,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(5604), 2,
- sym_number,
- sym_private_property_identifier,
- ACTIONS(5606), 2,
- anon_sym_get,
- anon_sym_set,
- STATE(3822), 3,
- sym_string,
- sym__property_name,
- sym_computed_property_name,
- ACTIONS(3743), 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(2307), 21,
- anon_sym_export,
- anon_sym_type,
- anon_sym_namespace,
- anon_sym_let,
- anon_sym_async,
- anon_sym_new,
- sym_identifier,
- anon_sym_static,
- anon_sym_readonly,
- anon_sym_declare,
- anon_sym_public,
- anon_sym_private,
- anon_sym_protected,
- anon_sym_override,
- anon_sym_module,
- anon_sym_any,
- anon_sym_number,
- anon_sym_boolean,
- anon_sym_string,
- anon_sym_symbol,
- anon_sym_object,
- [87188] = 4,
- ACTIONS(3448), 1,
- anon_sym_EQ,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(3400), 13,
- anon_sym_STAR,
- anon_sym_BANG,
- anon_sym_in,
- anon_sym_GT,
- anon_sym_GT_GT,
- anon_sym_AMP,
- anon_sym_PIPE,
- anon_sym_PLUS,
- anon_sym_DASH,
- anon_sym_SLASH,
- anon_sym_LT,
- anon_sym_EQ_EQ,
- anon_sym_BANG_EQ,
- ACTIONS(3404), 27,
- sym__automatic_semicolon,
- sym__ternary_qmark,
- anon_sym_as,
- anon_sym_COMMA,
- anon_sym_RBRACE,
- anon_sym_LPAREN,
- anon_sym_SEMI,
- anon_sym_LBRACK,
- anon_sym_DOT,
- anon_sym_QMARK_DOT,
- anon_sym_AMP_AMP,
- anon_sym_PIPE_PIPE,
- anon_sym_GT_GT_GT,
- anon_sym_LT_LT,
- anon_sym_CARET,
- anon_sym_PERCENT,
- anon_sym_STAR_STAR,
- anon_sym_LT_EQ,
- anon_sym_EQ_EQ_EQ,
- anon_sym_BANG_EQ_EQ,
- anon_sym_GT_EQ,
- anon_sym_QMARK_QMARK,
- anon_sym_instanceof,
- anon_sym_PLUS_PLUS,
- anon_sym_DASH_DASH,
- anon_sym_BQUOTE,
- anon_sym_satisfies,
- [87240] = 11,
- ACTIONS(1594), 1,
- anon_sym_DQUOTE,
- ACTIONS(1596), 1,
- anon_sym_SQUOTE,
- ACTIONS(4245), 1,
- anon_sym_LBRACK,
- ACTIONS(5602), 1,
- anon_sym_STAR,
- ACTIONS(5608), 1,
- anon_sym_async,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(5610), 2,
- sym_number,
- sym_private_property_identifier,
- ACTIONS(5612), 2,
- anon_sym_get,
- anon_sym_set,
- STATE(2984), 3,
- sym_string,
- sym__property_name,
- sym_computed_property_name,
- ACTIONS(3743), 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(3607), 20,
- anon_sym_export,
- anon_sym_type,
- anon_sym_namespace,
- anon_sym_let,
- anon_sym_new,
- sym_identifier,
- anon_sym_static,
- anon_sym_readonly,
- anon_sym_declare,
- anon_sym_public,
- anon_sym_private,
- anon_sym_protected,
- anon_sym_override,
- anon_sym_module,
- anon_sym_any,
- anon_sym_number,
- anon_sym_boolean,
- anon_sym_string,
- anon_sym_symbol,
- anon_sym_object,
- [87306] = 11,
- ACTIONS(1594), 1,
- anon_sym_DQUOTE,
- ACTIONS(1596), 1,
- anon_sym_SQUOTE,
- ACTIONS(4245), 1,
- anon_sym_LBRACK,
- ACTIONS(5542), 1,
- anon_sym_STAR,
- ACTIONS(5614), 1,
- anon_sym_async,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(5616), 2,
- sym_number,
- sym_private_property_identifier,
- ACTIONS(5618), 2,
- anon_sym_get,
- anon_sym_set,
- STATE(2994), 3,
- sym_string,
- sym__property_name,
- sym_computed_property_name,
- ACTIONS(3743), 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(3607), 20,
- anon_sym_export,
- anon_sym_type,
- anon_sym_namespace,
- anon_sym_let,
- anon_sym_new,
- sym_identifier,
- anon_sym_static,
- anon_sym_readonly,
- anon_sym_declare,
- anon_sym_public,
- anon_sym_private,
- anon_sym_protected,
- anon_sym_override,
- anon_sym_module,
- anon_sym_any,
- anon_sym_number,
- anon_sym_boolean,
- anon_sym_string,
- anon_sym_symbol,
- anon_sym_object,
- [87372] = 32,
- ACTIONS(825), 1,
- anon_sym_BQUOTE,
- ACTIONS(3969), 1,
- anon_sym_LPAREN,
- ACTIONS(3971), 1,
- anon_sym_LBRACK,
- ACTIONS(3973), 1,
- anon_sym_DOT,
- ACTIONS(4051), 1,
- anon_sym_as,
- ACTIONS(4055), 1,
- anon_sym_BANG,
- ACTIONS(4059), 1,
- anon_sym_QMARK_DOT,
- ACTIONS(4093), 1,
- anon_sym_satisfies,
- ACTIONS(5276), 1,
- anon_sym_AMP_AMP,
- ACTIONS(5278), 1,
- anon_sym_PIPE_PIPE,
- ACTIONS(5280), 1,
- anon_sym_GT_GT,
- ACTIONS(5284), 1,
- anon_sym_AMP,
- ACTIONS(5286), 1,
- anon_sym_CARET,
- ACTIONS(5288), 1,
- anon_sym_PIPE,
- ACTIONS(5292), 1,
- anon_sym_PERCENT,
- ACTIONS(5294), 1,
- anon_sym_STAR_STAR,
- ACTIONS(5296), 1,
- anon_sym_LT,
- ACTIONS(5304), 1,
- anon_sym_QMARK_QMARK,
- ACTIONS(5306), 1,
- sym__ternary_qmark,
- ACTIONS(5620), 1,
- anon_sym_COLON,
- STATE(1447), 1,
- sym_type_arguments,
- STATE(5080), 1,
- sym_optional_chain,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(4091), 2,
- anon_sym_PLUS_PLUS,
- anon_sym_DASH_DASH,
- ACTIONS(5272), 2,
- anon_sym_STAR,
- anon_sym_SLASH,
- ACTIONS(5274), 2,
- anon_sym_in,
- anon_sym_GT,
- ACTIONS(5282), 2,
- anon_sym_GT_GT_GT,
- anon_sym_LT_LT,
- ACTIONS(5290), 2,
- anon_sym_PLUS,
- anon_sym_DASH,
- ACTIONS(5300), 2,
- anon_sym_EQ_EQ,
- anon_sym_BANG_EQ,
- ACTIONS(5302), 2,
- anon_sym_EQ_EQ_EQ,
- anon_sym_BANG_EQ_EQ,
- STATE(1757), 2,
- sym_template_string,
- sym_arguments,
- ACTIONS(5298), 3,
- anon_sym_LT_EQ,
- anon_sym_GT_EQ,
- anon_sym_instanceof,
- [87480] = 11,
- ACTIONS(1594), 1,
- anon_sym_DQUOTE,
- ACTIONS(1596), 1,
- anon_sym_SQUOTE,
- ACTIONS(4245), 1,
- anon_sym_LBRACK,
- ACTIONS(5542), 1,
- anon_sym_STAR,
- ACTIONS(5614), 1,
- anon_sym_async,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(5618), 2,
- anon_sym_get,
- anon_sym_set,
- ACTIONS(5622), 2,
- sym_number,
- sym_private_property_identifier,
- STATE(2956), 3,
- sym_string,
- sym__property_name,
- sym_computed_property_name,
- ACTIONS(3743), 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(3607), 20,
- anon_sym_export,
- anon_sym_type,
- anon_sym_namespace,
- anon_sym_let,
- anon_sym_new,
- sym_identifier,
- anon_sym_static,
- anon_sym_readonly,
- anon_sym_declare,
- anon_sym_public,
- anon_sym_private,
- anon_sym_protected,
- anon_sym_override,
- anon_sym_module,
- anon_sym_any,
- anon_sym_number,
- anon_sym_boolean,
- anon_sym_string,
- anon_sym_symbol,
- anon_sym_object,
- [87546] = 11,
- ACTIONS(1594), 1,
- anon_sym_DQUOTE,
- ACTIONS(1596), 1,
- anon_sym_SQUOTE,
- ACTIONS(4245), 1,
- anon_sym_LBRACK,
- ACTIONS(5542), 1,
- anon_sym_STAR,
- ACTIONS(5614), 1,
- anon_sym_async,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(5618), 2,
- anon_sym_get,
- anon_sym_set,
- ACTIONS(5624), 2,
- sym_number,
- sym_private_property_identifier,
- STATE(2965), 3,
- sym_string,
- sym__property_name,
- sym_computed_property_name,
- ACTIONS(3743), 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(3607), 20,
- anon_sym_export,
- anon_sym_type,
- anon_sym_namespace,
- anon_sym_let,
- anon_sym_new,
- sym_identifier,
- anon_sym_static,
- anon_sym_readonly,
- anon_sym_declare,
- anon_sym_public,
- anon_sym_private,
- anon_sym_protected,
- anon_sym_override,
- anon_sym_module,
- anon_sym_any,
- anon_sym_number,
- anon_sym_boolean,
- anon_sym_string,
- anon_sym_symbol,
- anon_sym_object,
- [87612] = 4,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(1835), 5,
- sym__automatic_semicolon,
- anon_sym_COMMA,
- anon_sym_RBRACE,
- anon_sym_SEMI,
- anon_sym_PIPE_RBRACE,
- ACTIONS(1839), 13,
- anon_sym_STAR,
- anon_sym_BANG,
- anon_sym_in,
- anon_sym_GT,
- anon_sym_GT_GT,
- anon_sym_AMP,
- anon_sym_PIPE,
- anon_sym_PLUS,
- anon_sym_DASH,
- anon_sym_SLASH,
- anon_sym_LT,
- anon_sym_EQ_EQ,
- anon_sym_BANG_EQ,
- ACTIONS(1841), 23,
- sym__ternary_qmark,
- anon_sym_as,
- anon_sym_LPAREN,
- anon_sym_LBRACK,
- anon_sym_DOT,
- anon_sym_QMARK_DOT,
- anon_sym_AMP_AMP,
- anon_sym_PIPE_PIPE,
- anon_sym_GT_GT_GT,
- anon_sym_LT_LT,
- anon_sym_CARET,
- anon_sym_PERCENT,
- anon_sym_STAR_STAR,
- anon_sym_LT_EQ,
- anon_sym_EQ_EQ_EQ,
- anon_sym_BANG_EQ_EQ,
- anon_sym_GT_EQ,
- anon_sym_QMARK_QMARK,
- anon_sym_instanceof,
- anon_sym_PLUS_PLUS,
- anon_sym_DASH_DASH,
- anon_sym_BQUOTE,
- anon_sym_satisfies,
- [87664] = 32,
- ACTIONS(825), 1,
- anon_sym_BQUOTE,
- ACTIONS(3969), 1,
- anon_sym_LPAREN,
- ACTIONS(3971), 1,
- anon_sym_LBRACK,
- ACTIONS(3973), 1,
- anon_sym_DOT,
- ACTIONS(4051), 1,
- anon_sym_as,
- ACTIONS(4055), 1,
- anon_sym_BANG,
- ACTIONS(4059), 1,
- anon_sym_QMARK_DOT,
- ACTIONS(4093), 1,
- anon_sym_satisfies,
- ACTIONS(5276), 1,
- anon_sym_AMP_AMP,
- ACTIONS(5278), 1,
- anon_sym_PIPE_PIPE,
- ACTIONS(5280), 1,
- anon_sym_GT_GT,
- ACTIONS(5284), 1,
- anon_sym_AMP,
- ACTIONS(5286), 1,
- anon_sym_CARET,
- ACTIONS(5288), 1,
- anon_sym_PIPE,
- ACTIONS(5292), 1,
- anon_sym_PERCENT,
- ACTIONS(5294), 1,
- anon_sym_STAR_STAR,
- ACTIONS(5296), 1,
- anon_sym_LT,
- ACTIONS(5304), 1,
- anon_sym_QMARK_QMARK,
- ACTIONS(5306), 1,
- sym__ternary_qmark,
- ACTIONS(5626), 1,
- anon_sym_COLON,
- STATE(1447), 1,
- sym_type_arguments,
- STATE(5080), 1,
- sym_optional_chain,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(4091), 2,
- anon_sym_PLUS_PLUS,
- anon_sym_DASH_DASH,
- ACTIONS(5272), 2,
- anon_sym_STAR,
- anon_sym_SLASH,
- ACTIONS(5274), 2,
- anon_sym_in,
- anon_sym_GT,
- ACTIONS(5282), 2,
- anon_sym_GT_GT_GT,
- anon_sym_LT_LT,
- ACTIONS(5290), 2,
- anon_sym_PLUS,
- anon_sym_DASH,
- ACTIONS(5300), 2,
- anon_sym_EQ_EQ,
- anon_sym_BANG_EQ,
- ACTIONS(5302), 2,
- anon_sym_EQ_EQ_EQ,
- anon_sym_BANG_EQ_EQ,
- STATE(1757), 2,
- sym_template_string,
- sym_arguments,
- ACTIONS(5298), 3,
- anon_sym_LT_EQ,
- anon_sym_GT_EQ,
- anon_sym_instanceof,
- [87772] = 10,
- ACTIONS(2275), 1,
- anon_sym_DQUOTE,
- ACTIONS(2277), 1,
- anon_sym_SQUOTE,
- ACTIONS(4634), 1,
- anon_sym_LBRACK,
- ACTIONS(5628), 1,
- anon_sym_STAR,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(5630), 2,
- sym_number,
- sym_private_property_identifier,
- ACTIONS(5632), 2,
- anon_sym_get,
- anon_sym_set,
- STATE(3880), 3,
- sym_string,
- sym__property_name,
- sym_computed_property_name,
- ACTIONS(3743), 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(2307), 21,
- anon_sym_export,
- anon_sym_type,
- anon_sym_namespace,
- anon_sym_let,
- anon_sym_async,
- anon_sym_new,
- sym_identifier,
- anon_sym_static,
- anon_sym_readonly,
- anon_sym_declare,
- anon_sym_public,
- anon_sym_private,
- anon_sym_protected,
- anon_sym_override,
- anon_sym_module,
- anon_sym_any,
- anon_sym_number,
- anon_sym_boolean,
- anon_sym_string,
- anon_sym_symbol,
- anon_sym_object,
- [87836] = 11,
- ACTIONS(1594), 1,
- anon_sym_DQUOTE,
- ACTIONS(1596), 1,
- anon_sym_SQUOTE,
- ACTIONS(4245), 1,
- anon_sym_LBRACK,
- ACTIONS(5628), 1,
- anon_sym_STAR,
- ACTIONS(5634), 1,
- anon_sym_async,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(5636), 2,
- sym_number,
- sym_private_property_identifier,
- ACTIONS(5638), 2,
- anon_sym_get,
- anon_sym_set,
- STATE(3038), 3,
- sym_string,
- sym__property_name,
- sym_computed_property_name,
- ACTIONS(3743), 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(3607), 20,
- anon_sym_export,
- anon_sym_type,
- anon_sym_namespace,
- anon_sym_let,
- anon_sym_new,
- sym_identifier,
- anon_sym_static,
- anon_sym_readonly,
- anon_sym_declare,
- anon_sym_public,
- anon_sym_private,
- anon_sym_protected,
- anon_sym_override,
- anon_sym_module,
- anon_sym_any,
- anon_sym_number,
- anon_sym_boolean,
- anon_sym_string,
- anon_sym_symbol,
- anon_sym_object,
- [87902] = 8,
- ACTIONS(3454), 1,
- anon_sym_EQ,
- ACTIONS(4328), 1,
- anon_sym_QMARK,
- ACTIONS(4691), 1,
- anon_sym_LBRACK,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(4694), 2,
- anon_sym_AMP,
- anon_sym_PIPE,
- ACTIONS(4330), 3,
- anon_sym_COMMA,
- anon_sym_RBRACK,
- anon_sym_extends,
- ACTIONS(3400), 11,
- anon_sym_STAR,
- anon_sym_BANG,
- anon_sym_in,
- anon_sym_GT,
- anon_sym_GT_GT,
- anon_sym_PLUS,
- anon_sym_DASH,
- anon_sym_SLASH,
- anon_sym_LT,
- anon_sym_EQ_EQ,
- anon_sym_BANG_EQ,
- ACTIONS(3404), 22,
- sym__ternary_qmark,
- anon_sym_as,
- anon_sym_LPAREN,
- anon_sym_DOT,
- anon_sym_QMARK_DOT,
- anon_sym_AMP_AMP,
- anon_sym_PIPE_PIPE,
- anon_sym_GT_GT_GT,
- anon_sym_LT_LT,
- anon_sym_CARET,
- anon_sym_PERCENT,
- anon_sym_STAR_STAR,
- anon_sym_LT_EQ,
- anon_sym_EQ_EQ_EQ,
- anon_sym_BANG_EQ_EQ,
- anon_sym_GT_EQ,
- anon_sym_QMARK_QMARK,
- anon_sym_instanceof,
- anon_sym_PLUS_PLUS,
- anon_sym_DASH_DASH,
- anon_sym_BQUOTE,
- anon_sym_satisfies,
- [87962] = 5,
- ACTIONS(5640), 1,
- sym__automatic_semicolon,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(1769), 4,
- anon_sym_COMMA,
- anon_sym_RBRACE,
- anon_sym_SEMI,
- anon_sym_PIPE_RBRACE,
- ACTIONS(1773), 13,
- anon_sym_STAR,
- anon_sym_BANG,
- anon_sym_in,
- anon_sym_GT,
- anon_sym_GT_GT,
- anon_sym_AMP,
- anon_sym_PIPE,
- anon_sym_PLUS,
- anon_sym_DASH,
- anon_sym_SLASH,
- anon_sym_LT,
- anon_sym_EQ_EQ,
- anon_sym_BANG_EQ,
- ACTIONS(1775), 23,
- sym__ternary_qmark,
- anon_sym_as,
- anon_sym_LPAREN,
- anon_sym_LBRACK,
- anon_sym_DOT,
- anon_sym_QMARK_DOT,
- anon_sym_AMP_AMP,
- anon_sym_PIPE_PIPE,
- anon_sym_GT_GT_GT,
- anon_sym_LT_LT,
- anon_sym_CARET,
- anon_sym_PERCENT,
- anon_sym_STAR_STAR,
- anon_sym_LT_EQ,
- anon_sym_EQ_EQ_EQ,
- anon_sym_BANG_EQ_EQ,
- anon_sym_GT_EQ,
- anon_sym_QMARK_QMARK,
- anon_sym_instanceof,
- anon_sym_PLUS_PLUS,
- anon_sym_DASH_DASH,
- anon_sym_BQUOTE,
- anon_sym_satisfies,
- [88016] = 21,
- ACTIONS(235), 1,
- anon_sym_STAR,
- ACTIONS(1935), 1,
- anon_sym_DOT_DOT_DOT,
- ACTIONS(2275), 1,
- anon_sym_DQUOTE,
- ACTIONS(2277), 1,
- anon_sym_SQUOTE,
- ACTIONS(4634), 1,
- anon_sym_LBRACK,
- ACTIONS(5644), 1,
- anon_sym_COMMA,
- ACTIONS(5646), 1,
- anon_sym_RBRACE,
- ACTIONS(5648), 1,
- anon_sym_async,
- ACTIONS(5652), 1,
- anon_sym_static,
- ACTIONS(5654), 1,
- anon_sym_readonly,
- ACTIONS(5660), 1,
- anon_sym_override,
- STATE(2682), 1,
- sym_accessibility_modifier,
- STATE(2711), 1,
- sym_override_modifier,
- STATE(5089), 1,
- aux_sym_object_repeat1,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(5650), 2,
- sym_number,
- sym_private_property_identifier,
- ACTIONS(5656), 2,
- anon_sym_get,
- anon_sym_set,
- ACTIONS(5658), 3,
- anon_sym_public,
- anon_sym_private,
- anon_sym_protected,
- STATE(3611), 3,
- sym_string,
- sym__property_name,
- sym_computed_property_name,
- STATE(5086), 3,
- sym_spread_element,
- sym_method_definition,
- sym_pair,
- ACTIONS(5642), 14,
- anon_sym_export,
- anon_sym_type,
- anon_sym_namespace,
- anon_sym_let,
- anon_sym_new,
- sym_identifier,
- anon_sym_declare,
- anon_sym_module,
- anon_sym_any,
- anon_sym_number,
- anon_sym_boolean,
- anon_sym_string,
- anon_sym_symbol,
- anon_sym_object,
- [88102] = 7,
- ACTIONS(3440), 1,
- anon_sym_DOT,
- ACTIONS(3442), 1,
- anon_sym_QMARK_DOT,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(3418), 2,
- anon_sym_AMP,
- anon_sym_PIPE,
- ACTIONS(3406), 4,
- anon_sym_RBRACE,
- anon_sym_RPAREN,
- anon_sym_LBRACK,
- anon_sym_extends,
- ACTIONS(3400), 11,
- anon_sym_STAR,
- anon_sym_BANG,
- anon_sym_in,
- anon_sym_GT,
- anon_sym_GT_GT,
- anon_sym_PLUS,
- anon_sym_DASH,
- anon_sym_SLASH,
- anon_sym_LT,
- anon_sym_EQ_EQ,
- anon_sym_BANG_EQ,
- ACTIONS(3404), 22,
- sym__ternary_qmark,
- anon_sym_as,
- anon_sym_COMMA,
- anon_sym_LPAREN,
- anon_sym_COLON,
- anon_sym_AMP_AMP,
- anon_sym_PIPE_PIPE,
- anon_sym_GT_GT_GT,
- anon_sym_LT_LT,
- anon_sym_CARET,
- anon_sym_PERCENT,
- anon_sym_STAR_STAR,
- anon_sym_LT_EQ,
- anon_sym_EQ_EQ_EQ,
- anon_sym_BANG_EQ_EQ,
- anon_sym_GT_EQ,
- anon_sym_QMARK_QMARK,
- anon_sym_instanceof,
- anon_sym_PLUS_PLUS,
- anon_sym_DASH_DASH,
- anon_sym_BQUOTE,
- anon_sym_satisfies,
- [88160] = 10,
- ACTIONS(2275), 1,
- anon_sym_DQUOTE,
- ACTIONS(2277), 1,
- anon_sym_SQUOTE,
- ACTIONS(4634), 1,
- anon_sym_LBRACK,
- ACTIONS(5662), 1,
- anon_sym_STAR,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(5664), 2,
- sym_number,
- sym_private_property_identifier,
- ACTIONS(5666), 2,
- anon_sym_get,
- anon_sym_set,
- STATE(3772), 3,
- sym_string,
- sym__property_name,
- sym_computed_property_name,
- ACTIONS(3743), 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(2307), 21,
- anon_sym_export,
- anon_sym_type,
- anon_sym_namespace,
- anon_sym_let,
- anon_sym_async,
- anon_sym_new,
- sym_identifier,
- anon_sym_static,
- anon_sym_readonly,
- anon_sym_declare,
- anon_sym_public,
- anon_sym_private,
- anon_sym_protected,
- anon_sym_override,
- anon_sym_module,
- anon_sym_any,
- anon_sym_number,
- anon_sym_boolean,
- anon_sym_string,
- anon_sym_symbol,
- anon_sym_object,
- [88224] = 5,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(4402), 2,
- anon_sym_AMP,
- anon_sym_PIPE,
- ACTIONS(4404), 4,
- anon_sym_RBRACE,
- anon_sym_RPAREN,
- anon_sym_LBRACK,
- anon_sym_extends,
- ACTIONS(3400), 11,
- anon_sym_STAR,
- anon_sym_BANG,
- anon_sym_in,
- anon_sym_GT,
- anon_sym_GT_GT,
- anon_sym_PLUS,
- anon_sym_DASH,
- anon_sym_SLASH,
- anon_sym_LT,
- anon_sym_EQ_EQ,
- anon_sym_BANG_EQ,
- ACTIONS(3404), 24,
- sym__ternary_qmark,
- anon_sym_as,
- anon_sym_COMMA,
- anon_sym_LPAREN,
- anon_sym_COLON,
- anon_sym_DOT,
- anon_sym_QMARK_DOT,
- anon_sym_AMP_AMP,
- anon_sym_PIPE_PIPE,
- anon_sym_GT_GT_GT,
- anon_sym_LT_LT,
- anon_sym_CARET,
- anon_sym_PERCENT,
- anon_sym_STAR_STAR,
- anon_sym_LT_EQ,
- anon_sym_EQ_EQ_EQ,
- anon_sym_BANG_EQ_EQ,
- anon_sym_GT_EQ,
- anon_sym_QMARK_QMARK,
- anon_sym_instanceof,
- anon_sym_PLUS_PLUS,
- anon_sym_DASH_DASH,
- anon_sym_BQUOTE,
- anon_sym_satisfies,
- [88278] = 7,
- ACTIONS(4406), 1,
- anon_sym_QMARK,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(4408), 2,
- anon_sym_RPAREN,
- anon_sym_extends,
- ACTIONS(4881), 2,
- anon_sym_AMP,
- anon_sym_PIPE,
- ACTIONS(4878), 3,
- anon_sym_COMMA,
- anon_sym_LBRACK,
- anon_sym_RBRACK,
- ACTIONS(4774), 11,
- anon_sym_STAR,
- anon_sym_BANG,
- anon_sym_in,
- anon_sym_GT,
- anon_sym_GT_GT,
- anon_sym_PLUS,
- anon_sym_DASH,
- anon_sym_SLASH,
- anon_sym_LT,
- anon_sym_EQ_EQ,
- anon_sym_BANG_EQ,
- ACTIONS(4776), 22,
- sym__ternary_qmark,
- anon_sym_as,
- anon_sym_LPAREN,
- anon_sym_DOT,
- anon_sym_QMARK_DOT,
- anon_sym_AMP_AMP,
- anon_sym_PIPE_PIPE,
- anon_sym_GT_GT_GT,
- anon_sym_LT_LT,
- anon_sym_CARET,
- anon_sym_PERCENT,
- anon_sym_STAR_STAR,
- anon_sym_LT_EQ,
- anon_sym_EQ_EQ_EQ,
- anon_sym_BANG_EQ_EQ,
- anon_sym_GT_EQ,
- anon_sym_QMARK_QMARK,
- anon_sym_instanceof,
- anon_sym_PLUS_PLUS,
- anon_sym_DASH_DASH,
- anon_sym_BQUOTE,
- anon_sym_satisfies,
- [88336] = 4,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(1783), 2,
- anon_sym_else,
- anon_sym_while,
- ACTIONS(1787), 13,
- anon_sym_STAR,
- anon_sym_BANG,
- anon_sym_in,
- anon_sym_GT,
- anon_sym_GT_GT,
- anon_sym_AMP,
- anon_sym_PIPE,
- anon_sym_PLUS,
- anon_sym_DASH,
- anon_sym_SLASH,
- anon_sym_LT,
- anon_sym_EQ_EQ,
- anon_sym_BANG_EQ,
- ACTIONS(1789), 26,
- sym__automatic_semicolon,
- sym__ternary_qmark,
- anon_sym_as,
- anon_sym_COMMA,
- anon_sym_LPAREN,
- anon_sym_SEMI,
- anon_sym_LBRACK,
- anon_sym_DOT,
- anon_sym_QMARK_DOT,
- anon_sym_AMP_AMP,
- anon_sym_PIPE_PIPE,
- anon_sym_GT_GT_GT,
- anon_sym_LT_LT,
- anon_sym_CARET,
- anon_sym_PERCENT,
- anon_sym_STAR_STAR,
- anon_sym_LT_EQ,
- anon_sym_EQ_EQ_EQ,
- anon_sym_BANG_EQ_EQ,
- anon_sym_GT_EQ,
- anon_sym_QMARK_QMARK,
- anon_sym_instanceof,
- anon_sym_PLUS_PLUS,
- anon_sym_DASH_DASH,
- anon_sym_BQUOTE,
- anon_sym_satisfies,
- [88388] = 4,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(1825), 5,
- sym__automatic_semicolon,
- anon_sym_COMMA,
- anon_sym_RBRACE,
- anon_sym_SEMI,
- anon_sym_PIPE_RBRACE,
- ACTIONS(1829), 13,
- anon_sym_STAR,
- anon_sym_BANG,
- anon_sym_in,
- anon_sym_GT,
- anon_sym_GT_GT,
- anon_sym_AMP,
- anon_sym_PIPE,
- anon_sym_PLUS,
- anon_sym_DASH,
- anon_sym_SLASH,
- anon_sym_LT,
- anon_sym_EQ_EQ,
- anon_sym_BANG_EQ,
- ACTIONS(1831), 23,
- sym__ternary_qmark,
- anon_sym_as,
- anon_sym_LPAREN,
- anon_sym_LBRACK,
- anon_sym_DOT,
- anon_sym_QMARK_DOT,
- anon_sym_AMP_AMP,
- anon_sym_PIPE_PIPE,
- anon_sym_GT_GT_GT,
- anon_sym_LT_LT,
- anon_sym_CARET,
- anon_sym_PERCENT,
- anon_sym_STAR_STAR,
- anon_sym_LT_EQ,
- anon_sym_EQ_EQ_EQ,
- anon_sym_BANG_EQ_EQ,
- anon_sym_GT_EQ,
- anon_sym_QMARK_QMARK,
- anon_sym_instanceof,
- anon_sym_PLUS_PLUS,
- anon_sym_DASH_DASH,
- anon_sym_BQUOTE,
- anon_sym_satisfies,
- [88440] = 7,
- ACTIONS(3542), 1,
- anon_sym_EQ,
- ACTIONS(4330), 1,
- anon_sym_extends,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(4691), 2,
- anon_sym_COMMA,
- anon_sym_LBRACK,
- ACTIONS(4694), 3,
- anon_sym_GT,
- anon_sym_AMP,
- anon_sym_PIPE,
- ACTIONS(3400), 10,
- anon_sym_STAR,
- anon_sym_BANG,
- anon_sym_in,
- anon_sym_GT_GT,
- anon_sym_PLUS,
- anon_sym_DASH,
- anon_sym_SLASH,
- anon_sym_LT,
- anon_sym_EQ_EQ,
- anon_sym_BANG_EQ,
- ACTIONS(3404), 24,
- sym__ternary_qmark,
- anon_sym_as,
- anon_sym_LBRACE,
- anon_sym_LPAREN,
- anon_sym_DOT,
- anon_sym_QMARK_DOT,
- anon_sym_AMP_AMP,
- anon_sym_PIPE_PIPE,
- anon_sym_GT_GT_GT,
- anon_sym_LT_LT,
- anon_sym_CARET,
- anon_sym_PERCENT,
- anon_sym_STAR_STAR,
- anon_sym_LT_EQ,
- anon_sym_EQ_EQ_EQ,
- anon_sym_BANG_EQ_EQ,
- anon_sym_GT_EQ,
- anon_sym_QMARK_QMARK,
- anon_sym_instanceof,
- anon_sym_PLUS_PLUS,
- anon_sym_DASH_DASH,
- anon_sym_BQUOTE,
- anon_sym_satisfies,
- anon_sym_implements,
- [88498] = 4,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(1811), 5,
- sym__automatic_semicolon,
- anon_sym_COMMA,
- anon_sym_RBRACE,
- anon_sym_SEMI,
- anon_sym_PIPE_RBRACE,
- ACTIONS(1815), 13,
- anon_sym_STAR,
- anon_sym_BANG,
- anon_sym_in,
- anon_sym_GT,
- anon_sym_GT_GT,
- anon_sym_AMP,
- anon_sym_PIPE,
- anon_sym_PLUS,
- anon_sym_DASH,
- anon_sym_SLASH,
- anon_sym_LT,
- anon_sym_EQ_EQ,
- anon_sym_BANG_EQ,
- ACTIONS(1817), 23,
- sym__ternary_qmark,
- anon_sym_as,
- anon_sym_LPAREN,
- anon_sym_LBRACK,
- anon_sym_DOT,
- anon_sym_QMARK_DOT,
- anon_sym_AMP_AMP,
- anon_sym_PIPE_PIPE,
- anon_sym_GT_GT_GT,
- anon_sym_LT_LT,
- anon_sym_CARET,
- anon_sym_PERCENT,
- anon_sym_STAR_STAR,
- anon_sym_LT_EQ,
- anon_sym_EQ_EQ_EQ,
- anon_sym_BANG_EQ_EQ,
- anon_sym_GT_EQ,
- anon_sym_QMARK_QMARK,
- anon_sym_instanceof,
- anon_sym_PLUS_PLUS,
- anon_sym_DASH_DASH,
- anon_sym_BQUOTE,
- anon_sym_satisfies,
- [88550] = 5,
- ACTIONS(5668), 1,
- sym__automatic_semicolon,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(1755), 4,
- anon_sym_COMMA,
- anon_sym_RBRACE,
- anon_sym_SEMI,
- anon_sym_PIPE_RBRACE,
- ACTIONS(1759), 13,
- anon_sym_STAR,
- anon_sym_BANG,
- anon_sym_in,
- anon_sym_GT,
- anon_sym_GT_GT,
- anon_sym_AMP,
- anon_sym_PIPE,
- anon_sym_PLUS,
- anon_sym_DASH,
- anon_sym_SLASH,
- anon_sym_LT,
- anon_sym_EQ_EQ,
- anon_sym_BANG_EQ,
- ACTIONS(1761), 23,
- sym__ternary_qmark,
- anon_sym_as,
- anon_sym_LPAREN,
- anon_sym_LBRACK,
- anon_sym_DOT,
- anon_sym_QMARK_DOT,
- anon_sym_AMP_AMP,
- anon_sym_PIPE_PIPE,
- anon_sym_GT_GT_GT,
- anon_sym_LT_LT,
- anon_sym_CARET,
- anon_sym_PERCENT,
- anon_sym_STAR_STAR,
- anon_sym_LT_EQ,
- anon_sym_EQ_EQ_EQ,
- anon_sym_BANG_EQ_EQ,
- anon_sym_GT_EQ,
- anon_sym_QMARK_QMARK,
- anon_sym_instanceof,
- anon_sym_PLUS_PLUS,
- anon_sym_DASH_DASH,
- anon_sym_BQUOTE,
- anon_sym_satisfies,
- [88604] = 5,
- ACTIONS(5670), 1,
- sym__automatic_semicolon,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(1845), 4,
- anon_sym_COMMA,
- anon_sym_RBRACE,
- anon_sym_SEMI,
- anon_sym_PIPE_RBRACE,
- ACTIONS(1849), 13,
- anon_sym_STAR,
- anon_sym_BANG,
- anon_sym_in,
- anon_sym_GT,
- anon_sym_GT_GT,
- anon_sym_AMP,
- anon_sym_PIPE,
- anon_sym_PLUS,
- anon_sym_DASH,
- anon_sym_SLASH,
- anon_sym_LT,
- anon_sym_EQ_EQ,
- anon_sym_BANG_EQ,
- ACTIONS(1851), 23,
- sym__ternary_qmark,
- anon_sym_as,
- anon_sym_LPAREN,
- anon_sym_LBRACK,
- anon_sym_DOT,
- anon_sym_QMARK_DOT,
- anon_sym_AMP_AMP,
- anon_sym_PIPE_PIPE,
- anon_sym_GT_GT_GT,
- anon_sym_LT_LT,
- anon_sym_CARET,
- anon_sym_PERCENT,
- anon_sym_STAR_STAR,
- anon_sym_LT_EQ,
- anon_sym_EQ_EQ_EQ,
- anon_sym_BANG_EQ_EQ,
- anon_sym_GT_EQ,
- anon_sym_QMARK_QMARK,
- anon_sym_instanceof,
- anon_sym_PLUS_PLUS,
- anon_sym_DASH_DASH,
- anon_sym_BQUOTE,
- anon_sym_satisfies,
- [88658] = 3,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(4665), 13,
- anon_sym_STAR,
- anon_sym_BANG,
- anon_sym_in,
- anon_sym_GT,
- anon_sym_GT_GT,
- anon_sym_AMP,
- anon_sym_PIPE,
- anon_sym_PLUS,
- anon_sym_DASH,
- anon_sym_SLASH,
- anon_sym_LT,
- anon_sym_EQ_EQ,
- anon_sym_BANG_EQ,
- ACTIONS(4667), 28,
- sym__automatic_semicolon,
- sym__ternary_qmark,
- anon_sym_as,
- anon_sym_COMMA,
- anon_sym_RBRACE,
- anon_sym_LPAREN,
- anon_sym_of,
- anon_sym_SEMI,
- anon_sym_LBRACK,
- anon_sym_DOT,
- anon_sym_QMARK_DOT,
- anon_sym_AMP_AMP,
- anon_sym_PIPE_PIPE,
- anon_sym_GT_GT_GT,
- anon_sym_LT_LT,
- anon_sym_CARET,
- anon_sym_PERCENT,
- anon_sym_STAR_STAR,
- anon_sym_LT_EQ,
- anon_sym_EQ_EQ_EQ,
- anon_sym_BANG_EQ_EQ,
- anon_sym_GT_EQ,
- anon_sym_QMARK_QMARK,
- anon_sym_instanceof,
- anon_sym_PLUS_PLUS,
- anon_sym_DASH_DASH,
- anon_sym_BQUOTE,
- anon_sym_satisfies,
- [88708] = 3,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(4709), 13,
- anon_sym_STAR,
- anon_sym_BANG,
- anon_sym_in,
- anon_sym_GT,
- anon_sym_GT_GT,
- anon_sym_AMP,
- anon_sym_PIPE,
- anon_sym_PLUS,
- anon_sym_DASH,
- anon_sym_SLASH,
- anon_sym_LT,
- anon_sym_EQ_EQ,
- anon_sym_BANG_EQ,
- ACTIONS(4711), 28,
- sym__automatic_semicolon,
- sym__ternary_qmark,
- anon_sym_as,
- anon_sym_COMMA,
- anon_sym_RBRACE,
- anon_sym_LPAREN,
- anon_sym_of,
- anon_sym_SEMI,
- anon_sym_LBRACK,
- anon_sym_DOT,
- anon_sym_QMARK_DOT,
- anon_sym_AMP_AMP,
- anon_sym_PIPE_PIPE,
- anon_sym_GT_GT_GT,
- anon_sym_LT_LT,
- anon_sym_CARET,
- anon_sym_PERCENT,
- anon_sym_STAR_STAR,
- anon_sym_LT_EQ,
- anon_sym_EQ_EQ_EQ,
- anon_sym_BANG_EQ_EQ,
- anon_sym_GT_EQ,
- anon_sym_QMARK_QMARK,
- anon_sym_instanceof,
- anon_sym_PLUS_PLUS,
- anon_sym_DASH_DASH,
- anon_sym_BQUOTE,
- anon_sym_satisfies,
- [88758] = 4,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(1859), 5,
- sym__automatic_semicolon,
- anon_sym_COMMA,
- anon_sym_RBRACE,
- anon_sym_SEMI,
- anon_sym_PIPE_RBRACE,
- ACTIONS(1863), 13,
- anon_sym_STAR,
- anon_sym_BANG,
- anon_sym_in,
- anon_sym_GT,
- anon_sym_GT_GT,
- anon_sym_AMP,
- anon_sym_PIPE,
- anon_sym_PLUS,
- anon_sym_DASH,
- anon_sym_SLASH,
- anon_sym_LT,
- anon_sym_EQ_EQ,
- anon_sym_BANG_EQ,
- ACTIONS(1865), 23,
- sym__ternary_qmark,
- anon_sym_as,
- anon_sym_LPAREN,
- anon_sym_LBRACK,
- anon_sym_DOT,
- anon_sym_QMARK_DOT,
- anon_sym_AMP_AMP,
- anon_sym_PIPE_PIPE,
- anon_sym_GT_GT_GT,
- anon_sym_LT_LT,
- anon_sym_CARET,
- anon_sym_PERCENT,
- anon_sym_STAR_STAR,
- anon_sym_LT_EQ,
- anon_sym_EQ_EQ_EQ,
- anon_sym_BANG_EQ_EQ,
- anon_sym_GT_EQ,
- anon_sym_QMARK_QMARK,
- anon_sym_instanceof,
- anon_sym_PLUS_PLUS,
- anon_sym_DASH_DASH,
- anon_sym_BQUOTE,
- anon_sym_satisfies,
- [88810] = 4,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(1734), 5,
- sym__automatic_semicolon,
- anon_sym_COMMA,
- anon_sym_RBRACE,
- anon_sym_SEMI,
- anon_sym_PIPE_RBRACE,
- ACTIONS(1738), 13,
- anon_sym_STAR,
- anon_sym_BANG,
- anon_sym_in,
- anon_sym_GT,
- anon_sym_GT_GT,
- anon_sym_AMP,
- anon_sym_PIPE,
- anon_sym_PLUS,
- anon_sym_DASH,
- anon_sym_SLASH,
- anon_sym_LT,
- anon_sym_EQ_EQ,
- anon_sym_BANG_EQ,
- ACTIONS(1740), 23,
- sym__ternary_qmark,
- anon_sym_as,
- anon_sym_LPAREN,
- anon_sym_LBRACK,
- anon_sym_DOT,
- anon_sym_QMARK_DOT,
- anon_sym_AMP_AMP,
- anon_sym_PIPE_PIPE,
- anon_sym_GT_GT_GT,
- anon_sym_LT_LT,
- anon_sym_CARET,
- anon_sym_PERCENT,
- anon_sym_STAR_STAR,
- anon_sym_LT_EQ,
- anon_sym_EQ_EQ_EQ,
- anon_sym_BANG_EQ_EQ,
- anon_sym_GT_EQ,
- anon_sym_QMARK_QMARK,
- anon_sym_instanceof,
- anon_sym_PLUS_PLUS,
- anon_sym_DASH_DASH,
- anon_sym_BQUOTE,
- anon_sym_satisfies,
- [88862] = 3,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(4640), 13,
- anon_sym_STAR,
- anon_sym_BANG,
- anon_sym_in,
- anon_sym_GT,
- anon_sym_GT_GT,
- anon_sym_AMP,
- anon_sym_PIPE,
- anon_sym_PLUS,
- anon_sym_DASH,
- anon_sym_SLASH,
- anon_sym_LT,
- anon_sym_EQ_EQ,
- anon_sym_BANG_EQ,
- ACTIONS(4642), 28,
- sym__automatic_semicolon,
- sym__ternary_qmark,
- anon_sym_as,
- anon_sym_COMMA,
- anon_sym_RBRACE,
- anon_sym_LPAREN,
- anon_sym_of,
- anon_sym_SEMI,
- anon_sym_LBRACK,
- anon_sym_DOT,
- anon_sym_QMARK_DOT,
- anon_sym_AMP_AMP,
- anon_sym_PIPE_PIPE,
- anon_sym_GT_GT_GT,
- anon_sym_LT_LT,
- anon_sym_CARET,
- anon_sym_PERCENT,
- anon_sym_STAR_STAR,
- anon_sym_LT_EQ,
- anon_sym_EQ_EQ_EQ,
- anon_sym_BANG_EQ_EQ,
- anon_sym_GT_EQ,
- anon_sym_QMARK_QMARK,
- anon_sym_instanceof,
- anon_sym_PLUS_PLUS,
- anon_sym_DASH_DASH,
- anon_sym_BQUOTE,
- anon_sym_satisfies,
- [88912] = 5,
- ACTIONS(5672), 1,
- sym__automatic_semicolon,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(1885), 4,
- anon_sym_COMMA,
- anon_sym_RBRACE,
- anon_sym_SEMI,
- anon_sym_PIPE_RBRACE,
- ACTIONS(1889), 13,
- anon_sym_STAR,
- anon_sym_BANG,
- anon_sym_in,
- anon_sym_GT,
- anon_sym_GT_GT,
- anon_sym_AMP,
- anon_sym_PIPE,
- anon_sym_PLUS,
- anon_sym_DASH,
- anon_sym_SLASH,
- anon_sym_LT,
- anon_sym_EQ_EQ,
- anon_sym_BANG_EQ,
- ACTIONS(1891), 23,
- sym__ternary_qmark,
- anon_sym_as,
- anon_sym_LPAREN,
- anon_sym_LBRACK,
- anon_sym_DOT,
- anon_sym_QMARK_DOT,
- anon_sym_AMP_AMP,
- anon_sym_PIPE_PIPE,
- anon_sym_GT_GT_GT,
- anon_sym_LT_LT,
- anon_sym_CARET,
- anon_sym_PERCENT,
- anon_sym_STAR_STAR,
- anon_sym_LT_EQ,
- anon_sym_EQ_EQ_EQ,
- anon_sym_BANG_EQ_EQ,
- anon_sym_GT_EQ,
- anon_sym_QMARK_QMARK,
- anon_sym_instanceof,
- anon_sym_PLUS_PLUS,
- anon_sym_DASH_DASH,
- anon_sym_BQUOTE,
- anon_sym_satisfies,
- [88966] = 7,
- ACTIONS(3518), 1,
- anon_sym_EQ,
- ACTIONS(4691), 1,
- anon_sym_LBRACK,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(4330), 2,
- anon_sym_COMMA,
- anon_sym_extends,
- ACTIONS(4694), 3,
- anon_sym_GT,
- anon_sym_AMP,
- anon_sym_PIPE,
- ACTIONS(3400), 10,
- anon_sym_STAR,
- anon_sym_BANG,
- anon_sym_in,
- anon_sym_GT_GT,
- anon_sym_PLUS,
- anon_sym_DASH,
- anon_sym_SLASH,
- anon_sym_LT,
- anon_sym_EQ_EQ,
- anon_sym_BANG_EQ,
- ACTIONS(3404), 24,
- sym__ternary_qmark,
- anon_sym_as,
- anon_sym_RBRACE,
- anon_sym_LPAREN,
- anon_sym_COLON,
- anon_sym_DOT,
- anon_sym_QMARK_DOT,
- anon_sym_AMP_AMP,
- anon_sym_PIPE_PIPE,
- anon_sym_GT_GT_GT,
- anon_sym_LT_LT,
- anon_sym_CARET,
- anon_sym_PERCENT,
- anon_sym_STAR_STAR,
- anon_sym_LT_EQ,
- anon_sym_EQ_EQ_EQ,
- anon_sym_BANG_EQ_EQ,
- anon_sym_GT_EQ,
- anon_sym_QMARK_QMARK,
- anon_sym_instanceof,
- anon_sym_PLUS_PLUS,
- anon_sym_DASH_DASH,
- anon_sym_BQUOTE,
- anon_sym_satisfies,
- [89024] = 32,
- ACTIONS(825), 1,
- anon_sym_BQUOTE,
- ACTIONS(3969), 1,
- anon_sym_LPAREN,
- ACTIONS(3971), 1,
- anon_sym_LBRACK,
- ACTIONS(3973), 1,
- anon_sym_DOT,
- ACTIONS(4051), 1,
- anon_sym_as,
- ACTIONS(4055), 1,
- anon_sym_BANG,
- ACTIONS(4059), 1,
- anon_sym_QMARK_DOT,
- ACTIONS(4093), 1,
- anon_sym_satisfies,
- ACTIONS(5276), 1,
- anon_sym_AMP_AMP,
- ACTIONS(5278), 1,
- anon_sym_PIPE_PIPE,
- ACTIONS(5280), 1,
- anon_sym_GT_GT,
- ACTIONS(5284), 1,
- anon_sym_AMP,
- ACTIONS(5286), 1,
- anon_sym_CARET,
- ACTIONS(5288), 1,
- anon_sym_PIPE,
- ACTIONS(5292), 1,
- anon_sym_PERCENT,
- ACTIONS(5294), 1,
- anon_sym_STAR_STAR,
- ACTIONS(5296), 1,
- anon_sym_LT,
- ACTIONS(5304), 1,
- anon_sym_QMARK_QMARK,
- ACTIONS(5306), 1,
- sym__ternary_qmark,
- ACTIONS(5674), 1,
- anon_sym_COLON,
- STATE(1447), 1,
- sym_type_arguments,
- STATE(5080), 1,
- sym_optional_chain,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(4091), 2,
- anon_sym_PLUS_PLUS,
- anon_sym_DASH_DASH,
- ACTIONS(5272), 2,
- anon_sym_STAR,
- anon_sym_SLASH,
- ACTIONS(5274), 2,
- anon_sym_in,
- anon_sym_GT,
- ACTIONS(5282), 2,
- anon_sym_GT_GT_GT,
- anon_sym_LT_LT,
- ACTIONS(5290), 2,
- anon_sym_PLUS,
- anon_sym_DASH,
- ACTIONS(5300), 2,
- anon_sym_EQ_EQ,
- anon_sym_BANG_EQ,
- ACTIONS(5302), 2,
- anon_sym_EQ_EQ_EQ,
- anon_sym_BANG_EQ_EQ,
- STATE(1757), 2,
- sym_template_string,
- sym_arguments,
- ACTIONS(5298), 3,
- anon_sym_LT_EQ,
- anon_sym_GT_EQ,
- anon_sym_instanceof,
- [89132] = 32,
- ACTIONS(825), 1,
- anon_sym_BQUOTE,
- ACTIONS(3969), 1,
- anon_sym_LPAREN,
- ACTIONS(3971), 1,
- anon_sym_LBRACK,
- ACTIONS(3973), 1,
- anon_sym_DOT,
- ACTIONS(4051), 1,
- anon_sym_as,
- ACTIONS(4055), 1,
- anon_sym_BANG,
- ACTIONS(4059), 1,
- anon_sym_QMARK_DOT,
- ACTIONS(4093), 1,
- anon_sym_satisfies,
- ACTIONS(4255), 1,
- anon_sym_of,
- ACTIONS(5343), 1,
- anon_sym_AMP_AMP,
- ACTIONS(5345), 1,
- anon_sym_PIPE_PIPE,
- ACTIONS(5347), 1,
- anon_sym_GT_GT,
- ACTIONS(5351), 1,
- anon_sym_AMP,
- ACTIONS(5353), 1,
- anon_sym_CARET,
- ACTIONS(5355), 1,
- anon_sym_PIPE,
- ACTIONS(5359), 1,
- anon_sym_PERCENT,
- ACTIONS(5361), 1,
- anon_sym_STAR_STAR,
- ACTIONS(5363), 1,
- anon_sym_LT,
- ACTIONS(5371), 1,
- anon_sym_QMARK_QMARK,
- ACTIONS(5373), 1,
- sym__ternary_qmark,
- STATE(1447), 1,
- sym_type_arguments,
- STATE(5080), 1,
- sym_optional_chain,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(4091), 2,
- anon_sym_PLUS_PLUS,
- anon_sym_DASH_DASH,
- ACTIONS(5336), 2,
- anon_sym_STAR,
- anon_sym_SLASH,
- ACTIONS(5341), 2,
- anon_sym_in,
- anon_sym_GT,
- ACTIONS(5349), 2,
- anon_sym_GT_GT_GT,
- anon_sym_LT_LT,
- ACTIONS(5357), 2,
- anon_sym_PLUS,
- anon_sym_DASH,
- ACTIONS(5367), 2,
- anon_sym_EQ_EQ,
- anon_sym_BANG_EQ,
- ACTIONS(5369), 2,
- anon_sym_EQ_EQ_EQ,
- anon_sym_BANG_EQ_EQ,
- STATE(1757), 2,
- sym_template_string,
- sym_arguments,
- ACTIONS(5365), 3,
- anon_sym_LT_EQ,
- anon_sym_GT_EQ,
- anon_sym_instanceof,
- [89240] = 32,
- ACTIONS(825), 1,
- anon_sym_BQUOTE,
- ACTIONS(3969), 1,
- anon_sym_LPAREN,
- ACTIONS(3971), 1,
- anon_sym_LBRACK,
- ACTIONS(3973), 1,
- anon_sym_DOT,
- ACTIONS(4051), 1,
- anon_sym_as,
- ACTIONS(4055), 1,
- anon_sym_BANG,
- ACTIONS(4059), 1,
- anon_sym_QMARK_DOT,
- ACTIONS(4093), 1,
- anon_sym_satisfies,
- ACTIONS(4257), 1,
- anon_sym_of,
- ACTIONS(5343), 1,
- anon_sym_AMP_AMP,
- ACTIONS(5345), 1,
- anon_sym_PIPE_PIPE,
- ACTIONS(5347), 1,
- anon_sym_GT_GT,
- ACTIONS(5351), 1,
- anon_sym_AMP,
- ACTIONS(5353), 1,
- anon_sym_CARET,
- ACTIONS(5355), 1,
- anon_sym_PIPE,
- ACTIONS(5359), 1,
- anon_sym_PERCENT,
- ACTIONS(5361), 1,
- anon_sym_STAR_STAR,
- ACTIONS(5363), 1,
- anon_sym_LT,
- ACTIONS(5371), 1,
- anon_sym_QMARK_QMARK,
- ACTIONS(5373), 1,
- sym__ternary_qmark,
- STATE(1447), 1,
- sym_type_arguments,
- STATE(5080), 1,
- sym_optional_chain,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(4091), 2,
- anon_sym_PLUS_PLUS,
- anon_sym_DASH_DASH,
- ACTIONS(5336), 2,
- anon_sym_STAR,
- anon_sym_SLASH,
- ACTIONS(5341), 2,
- anon_sym_in,
- anon_sym_GT,
- ACTIONS(5349), 2,
- anon_sym_GT_GT_GT,
- anon_sym_LT_LT,
- ACTIONS(5357), 2,
- anon_sym_PLUS,
- anon_sym_DASH,
- ACTIONS(5367), 2,
- anon_sym_EQ_EQ,
- anon_sym_BANG_EQ,
- ACTIONS(5369), 2,
- anon_sym_EQ_EQ_EQ,
- anon_sym_BANG_EQ_EQ,
- STATE(1757), 2,
- sym_template_string,
- sym_arguments,
- ACTIONS(5365), 3,
- anon_sym_LT_EQ,
- anon_sym_GT_EQ,
- anon_sym_instanceof,
- [89348] = 32,
- ACTIONS(825), 1,
- anon_sym_BQUOTE,
- ACTIONS(3969), 1,
- anon_sym_LPAREN,
- ACTIONS(3971), 1,
- anon_sym_LBRACK,
- ACTIONS(3973), 1,
- anon_sym_DOT,
- ACTIONS(4051), 1,
- anon_sym_as,
- ACTIONS(4055), 1,
- anon_sym_BANG,
- ACTIONS(4059), 1,
- anon_sym_QMARK_DOT,
- ACTIONS(4093), 1,
- anon_sym_satisfies,
- ACTIONS(4283), 1,
- anon_sym_of,
- ACTIONS(5343), 1,
- anon_sym_AMP_AMP,
- ACTIONS(5345), 1,
- anon_sym_PIPE_PIPE,
- ACTIONS(5347), 1,
- anon_sym_GT_GT,
- ACTIONS(5351), 1,
- anon_sym_AMP,
- ACTIONS(5353), 1,
- anon_sym_CARET,
- ACTIONS(5355), 1,
- anon_sym_PIPE,
- ACTIONS(5359), 1,
- anon_sym_PERCENT,
- ACTIONS(5361), 1,
- anon_sym_STAR_STAR,
- ACTIONS(5363), 1,
- anon_sym_LT,
- ACTIONS(5371), 1,
- anon_sym_QMARK_QMARK,
- ACTIONS(5373), 1,
- sym__ternary_qmark,
- STATE(1447), 1,
- sym_type_arguments,
- STATE(5080), 1,
- sym_optional_chain,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(4091), 2,
- anon_sym_PLUS_PLUS,
- anon_sym_DASH_DASH,
- ACTIONS(5336), 2,
- anon_sym_STAR,
- anon_sym_SLASH,
- ACTIONS(5341), 2,
- anon_sym_in,
- anon_sym_GT,
- ACTIONS(5349), 2,
- anon_sym_GT_GT_GT,
- anon_sym_LT_LT,
- ACTIONS(5357), 2,
- anon_sym_PLUS,
- anon_sym_DASH,
- ACTIONS(5367), 2,
- anon_sym_EQ_EQ,
- anon_sym_BANG_EQ,
- ACTIONS(5369), 2,
- anon_sym_EQ_EQ_EQ,
- anon_sym_BANG_EQ_EQ,
- STATE(1757), 2,
- sym_template_string,
- sym_arguments,
- ACTIONS(5365), 3,
- anon_sym_LT_EQ,
- anon_sym_GT_EQ,
- anon_sym_instanceof,
- [89456] = 32,
- ACTIONS(825), 1,
- anon_sym_BQUOTE,
- ACTIONS(3969), 1,
- anon_sym_LPAREN,
- ACTIONS(3971), 1,
- anon_sym_LBRACK,
- ACTIONS(3973), 1,
- anon_sym_DOT,
- ACTIONS(4051), 1,
- anon_sym_as,
- ACTIONS(4055), 1,
- anon_sym_BANG,
- ACTIONS(4059), 1,
- anon_sym_QMARK_DOT,
- ACTIONS(4093), 1,
- anon_sym_satisfies,
- ACTIONS(4297), 1,
- anon_sym_of,
- ACTIONS(5343), 1,
- anon_sym_AMP_AMP,
- ACTIONS(5345), 1,
- anon_sym_PIPE_PIPE,
- ACTIONS(5347), 1,
- anon_sym_GT_GT,
- ACTIONS(5351), 1,
- anon_sym_AMP,
- ACTIONS(5353), 1,
- anon_sym_CARET,
- ACTIONS(5355), 1,
- anon_sym_PIPE,
- ACTIONS(5359), 1,
- anon_sym_PERCENT,
- ACTIONS(5361), 1,
- anon_sym_STAR_STAR,
- ACTIONS(5363), 1,
- anon_sym_LT,
- ACTIONS(5371), 1,
- anon_sym_QMARK_QMARK,
- ACTIONS(5373), 1,
- sym__ternary_qmark,
- STATE(1447), 1,
- sym_type_arguments,
- STATE(5080), 1,
- sym_optional_chain,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(4091), 2,
- anon_sym_PLUS_PLUS,
- anon_sym_DASH_DASH,
- ACTIONS(5336), 2,
- anon_sym_STAR,
- anon_sym_SLASH,
- ACTIONS(5341), 2,
- anon_sym_in,
- anon_sym_GT,
- ACTIONS(5349), 2,
- anon_sym_GT_GT_GT,
- anon_sym_LT_LT,
- ACTIONS(5357), 2,
- anon_sym_PLUS,
- anon_sym_DASH,
- ACTIONS(5367), 2,
- anon_sym_EQ_EQ,
- anon_sym_BANG_EQ,
- ACTIONS(5369), 2,
- anon_sym_EQ_EQ_EQ,
- anon_sym_BANG_EQ_EQ,
- STATE(1757), 2,
- sym_template_string,
- sym_arguments,
- ACTIONS(5365), 3,
- anon_sym_LT_EQ,
- anon_sym_GT_EQ,
- anon_sym_instanceof,
- [89564] = 32,
- ACTIONS(825), 1,
- anon_sym_BQUOTE,
- ACTIONS(3969), 1,
- anon_sym_LPAREN,
- ACTIONS(3971), 1,
- anon_sym_LBRACK,
- ACTIONS(3973), 1,
- anon_sym_DOT,
- ACTIONS(4051), 1,
- anon_sym_as,
- ACTIONS(4055), 1,
- anon_sym_BANG,
- ACTIONS(4059), 1,
- anon_sym_QMARK_DOT,
- ACTIONS(4093), 1,
- anon_sym_satisfies,
- ACTIONS(4299), 1,
- anon_sym_of,
- ACTIONS(5343), 1,
- anon_sym_AMP_AMP,
- ACTIONS(5345), 1,
- anon_sym_PIPE_PIPE,
- ACTIONS(5347), 1,
- anon_sym_GT_GT,
- ACTIONS(5351), 1,
- anon_sym_AMP,
- ACTIONS(5353), 1,
- anon_sym_CARET,
- ACTIONS(5355), 1,
- anon_sym_PIPE,
- ACTIONS(5359), 1,
- anon_sym_PERCENT,
- ACTIONS(5361), 1,
- anon_sym_STAR_STAR,
- ACTIONS(5363), 1,
- anon_sym_LT,
- ACTIONS(5371), 1,
- anon_sym_QMARK_QMARK,
- ACTIONS(5373), 1,
- sym__ternary_qmark,
- STATE(1447), 1,
- sym_type_arguments,
- STATE(5080), 1,
- sym_optional_chain,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(4091), 2,
- anon_sym_PLUS_PLUS,
- anon_sym_DASH_DASH,
- ACTIONS(5336), 2,
- anon_sym_STAR,
- anon_sym_SLASH,
- ACTIONS(5341), 2,
- anon_sym_in,
- anon_sym_GT,
- ACTIONS(5349), 2,
- anon_sym_GT_GT_GT,
- anon_sym_LT_LT,
- ACTIONS(5357), 2,
- anon_sym_PLUS,
- anon_sym_DASH,
- ACTIONS(5367), 2,
- anon_sym_EQ_EQ,
- anon_sym_BANG_EQ,
- ACTIONS(5369), 2,
- anon_sym_EQ_EQ_EQ,
- anon_sym_BANG_EQ_EQ,
- STATE(1757), 2,
- sym_template_string,
- sym_arguments,
- ACTIONS(5365), 3,
- anon_sym_LT_EQ,
- anon_sym_GT_EQ,
- anon_sym_instanceof,
- [89672] = 19,
- ACTIONS(825), 1,
- anon_sym_BQUOTE,
- ACTIONS(3969), 1,
- anon_sym_LPAREN,
- ACTIONS(3971), 1,
- anon_sym_LBRACK,
- ACTIONS(3973), 1,
- anon_sym_DOT,
- ACTIONS(4059), 1,
- anon_sym_QMARK_DOT,
- ACTIONS(5347), 1,
- anon_sym_GT_GT,
- ACTIONS(5359), 1,
- anon_sym_PERCENT,
- ACTIONS(5361), 1,
- anon_sym_STAR_STAR,
- ACTIONS(5363), 1,
- anon_sym_LT,
- STATE(1447), 1,
- sym_type_arguments,
- STATE(5080), 1,
- sym_optional_chain,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(4091), 2,
- anon_sym_PLUS_PLUS,
- anon_sym_DASH_DASH,
- ACTIONS(5336), 2,
- anon_sym_STAR,
- anon_sym_SLASH,
- ACTIONS(5349), 2,
- anon_sym_GT_GT_GT,
- anon_sym_LT_LT,
- ACTIONS(5357), 2,
- anon_sym_PLUS,
- anon_sym_DASH,
- STATE(1757), 2,
- sym_template_string,
- sym_arguments,
- ACTIONS(4307), 7,
- anon_sym_BANG,
- anon_sym_in,
- anon_sym_GT,
- anon_sym_AMP,
- anon_sym_PIPE,
- anon_sym_EQ_EQ,
- anon_sym_BANG_EQ,
- ACTIONS(4305), 13,
- sym__ternary_qmark,
- anon_sym_as,
- anon_sym_of,
- anon_sym_AMP_AMP,
- anon_sym_PIPE_PIPE,
- anon_sym_CARET,
- anon_sym_LT_EQ,
- anon_sym_EQ_EQ_EQ,
- anon_sym_BANG_EQ_EQ,
- anon_sym_GT_EQ,
- anon_sym_QMARK_QMARK,
- anon_sym_instanceof,
- anon_sym_satisfies,
- [89754] = 14,
- ACTIONS(825), 1,
- anon_sym_BQUOTE,
- ACTIONS(3969), 1,
- anon_sym_LPAREN,
- ACTIONS(3971), 1,
- anon_sym_LBRACK,
- ACTIONS(3973), 1,
- anon_sym_DOT,
- ACTIONS(4059), 1,
- anon_sym_QMARK_DOT,
- ACTIONS(5361), 1,
- anon_sym_STAR_STAR,
- ACTIONS(5676), 1,
- anon_sym_LT,
- STATE(1447), 1,
- sym_type_arguments,
- STATE(5080), 1,
- sym_optional_chain,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(4091), 2,
- anon_sym_PLUS_PLUS,
- anon_sym_DASH_DASH,
- STATE(1757), 2,
- sym_template_string,
- sym_arguments,
- ACTIONS(4307), 12,
- anon_sym_STAR,
- anon_sym_BANG,
- anon_sym_in,
- anon_sym_GT,
- anon_sym_GT_GT,
- anon_sym_AMP,
- anon_sym_PIPE,
- anon_sym_PLUS,
- anon_sym_DASH,
- anon_sym_SLASH,
- anon_sym_EQ_EQ,
- anon_sym_BANG_EQ,
- ACTIONS(4305), 16,
- sym__ternary_qmark,
- anon_sym_as,
- anon_sym_of,
- anon_sym_AMP_AMP,
- anon_sym_PIPE_PIPE,
- anon_sym_GT_GT_GT,
- anon_sym_LT_LT,
- anon_sym_CARET,
- anon_sym_PERCENT,
- anon_sym_LT_EQ,
- anon_sym_EQ_EQ_EQ,
- anon_sym_BANG_EQ_EQ,
- anon_sym_GT_EQ,
- anon_sym_QMARK_QMARK,
- anon_sym_instanceof,
- anon_sym_satisfies,
- [89826] = 26,
- ACTIONS(825), 1,
- anon_sym_BQUOTE,
- ACTIONS(3969), 1,
- anon_sym_LPAREN,
- ACTIONS(3971), 1,
- anon_sym_LBRACK,
- ACTIONS(3973), 1,
- anon_sym_DOT,
- ACTIONS(4059), 1,
- anon_sym_QMARK_DOT,
- ACTIONS(4307), 1,
- anon_sym_BANG,
- ACTIONS(5347), 1,
- anon_sym_GT_GT,
- ACTIONS(5351), 1,
- anon_sym_AMP,
- ACTIONS(5353), 1,
- anon_sym_CARET,
- ACTIONS(5355), 1,
- anon_sym_PIPE,
- ACTIONS(5359), 1,
- anon_sym_PERCENT,
- ACTIONS(5361), 1,
- anon_sym_STAR_STAR,
- ACTIONS(5363), 1,
- anon_sym_LT,
- STATE(1447), 1,
- sym_type_arguments,
- STATE(5080), 1,
- sym_optional_chain,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(4091), 2,
- anon_sym_PLUS_PLUS,
- anon_sym_DASH_DASH,
- ACTIONS(5336), 2,
- anon_sym_STAR,
- anon_sym_SLASH,
- ACTIONS(5341), 2,
- anon_sym_in,
- anon_sym_GT,
- ACTIONS(5349), 2,
- anon_sym_GT_GT_GT,
- anon_sym_LT_LT,
- ACTIONS(5357), 2,
- anon_sym_PLUS,
- anon_sym_DASH,
- ACTIONS(5367), 2,
- anon_sym_EQ_EQ,
- anon_sym_BANG_EQ,
- ACTIONS(5369), 2,
- anon_sym_EQ_EQ_EQ,
- anon_sym_BANG_EQ_EQ,
- STATE(1757), 2,
- sym_template_string,
- sym_arguments,
- ACTIONS(5365), 3,
- anon_sym_LT_EQ,
- anon_sym_GT_EQ,
- anon_sym_instanceof,
- ACTIONS(4305), 7,
- sym__ternary_qmark,
- anon_sym_as,
- anon_sym_of,
- anon_sym_AMP_AMP,
- anon_sym_PIPE_PIPE,
- anon_sym_QMARK_QMARK,
- anon_sym_satisfies,
- [89922] = 27,
- ACTIONS(825), 1,
- anon_sym_BQUOTE,
- ACTIONS(3969), 1,
- anon_sym_LPAREN,
- ACTIONS(3971), 1,
- anon_sym_LBRACK,
- ACTIONS(3973), 1,
- anon_sym_DOT,
- ACTIONS(4059), 1,
- anon_sym_QMARK_DOT,
- ACTIONS(4307), 1,
- anon_sym_BANG,
- ACTIONS(5343), 1,
- anon_sym_AMP_AMP,
- ACTIONS(5347), 1,
- anon_sym_GT_GT,
- ACTIONS(5351), 1,
- anon_sym_AMP,
- ACTIONS(5353), 1,
- anon_sym_CARET,
- ACTIONS(5355), 1,
- anon_sym_PIPE,
- ACTIONS(5359), 1,
- anon_sym_PERCENT,
- ACTIONS(5361), 1,
- anon_sym_STAR_STAR,
- ACTIONS(5363), 1,
- anon_sym_LT,
- STATE(1447), 1,
- sym_type_arguments,
- STATE(5080), 1,
- sym_optional_chain,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(4091), 2,
- anon_sym_PLUS_PLUS,
- anon_sym_DASH_DASH,
- ACTIONS(5336), 2,
- anon_sym_STAR,
- anon_sym_SLASH,
- ACTIONS(5341), 2,
- anon_sym_in,
- anon_sym_GT,
- ACTIONS(5349), 2,
- anon_sym_GT_GT_GT,
- anon_sym_LT_LT,
- ACTIONS(5357), 2,
- anon_sym_PLUS,
- anon_sym_DASH,
- ACTIONS(5367), 2,
- anon_sym_EQ_EQ,
- anon_sym_BANG_EQ,
- ACTIONS(5369), 2,
- anon_sym_EQ_EQ_EQ,
- anon_sym_BANG_EQ_EQ,
- STATE(1757), 2,
- sym_template_string,
- sym_arguments,
- ACTIONS(5365), 3,
- anon_sym_LT_EQ,
- anon_sym_GT_EQ,
- anon_sym_instanceof,
- ACTIONS(4305), 6,
- sym__ternary_qmark,
- anon_sym_as,
- anon_sym_of,
- anon_sym_PIPE_PIPE,
- anon_sym_QMARK_QMARK,
- anon_sym_satisfies,
- [90020] = 17,
- ACTIONS(825), 1,
- anon_sym_BQUOTE,
- ACTIONS(3969), 1,
- anon_sym_LPAREN,
- ACTIONS(3971), 1,
- anon_sym_LBRACK,
- ACTIONS(3973), 1,
- anon_sym_DOT,
- ACTIONS(4059), 1,
- anon_sym_QMARK_DOT,
- ACTIONS(5359), 1,
- anon_sym_PERCENT,
- ACTIONS(5361), 1,
- anon_sym_STAR_STAR,
- ACTIONS(5676), 1,
- anon_sym_LT,
- STATE(1447), 1,
- sym_type_arguments,
- STATE(5080), 1,
- sym_optional_chain,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(4091), 2,
- anon_sym_PLUS_PLUS,
- anon_sym_DASH_DASH,
- ACTIONS(5336), 2,
- anon_sym_STAR,
- anon_sym_SLASH,
- ACTIONS(5357), 2,
- anon_sym_PLUS,
- anon_sym_DASH,
- STATE(1757), 2,
- sym_template_string,
- sym_arguments,
- ACTIONS(4307), 8,
- anon_sym_BANG,
- anon_sym_in,
- anon_sym_GT,
- anon_sym_GT_GT,
- anon_sym_AMP,
- anon_sym_PIPE,
- anon_sym_EQ_EQ,
- anon_sym_BANG_EQ,
- ACTIONS(4305), 15,
- sym__ternary_qmark,
- anon_sym_as,
- anon_sym_of,
- anon_sym_AMP_AMP,
- anon_sym_PIPE_PIPE,
- anon_sym_GT_GT_GT,
- anon_sym_LT_LT,
- anon_sym_CARET,
- anon_sym_LT_EQ,
- anon_sym_EQ_EQ_EQ,
- anon_sym_BANG_EQ_EQ,
- anon_sym_GT_EQ,
- anon_sym_QMARK_QMARK,
- anon_sym_instanceof,
- anon_sym_satisfies,
- [90098] = 23,
- ACTIONS(825), 1,
- anon_sym_BQUOTE,
- ACTIONS(3969), 1,
- anon_sym_LPAREN,
- ACTIONS(3971), 1,
- anon_sym_LBRACK,
- ACTIONS(3973), 1,
- anon_sym_DOT,
- ACTIONS(4059), 1,
- anon_sym_QMARK_DOT,
- ACTIONS(5347), 1,
- anon_sym_GT_GT,
- ACTIONS(5359), 1,
- anon_sym_PERCENT,
- ACTIONS(5361), 1,
- anon_sym_STAR_STAR,
- ACTIONS(5363), 1,
- anon_sym_LT,
- STATE(1447), 1,
- sym_type_arguments,
- STATE(5080), 1,
- sym_optional_chain,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(4091), 2,
- anon_sym_PLUS_PLUS,
- anon_sym_DASH_DASH,
- ACTIONS(5336), 2,
- anon_sym_STAR,
- anon_sym_SLASH,
- ACTIONS(5341), 2,
- anon_sym_in,
- anon_sym_GT,
- ACTIONS(5349), 2,
- anon_sym_GT_GT_GT,
- anon_sym_LT_LT,
- ACTIONS(5357), 2,
- anon_sym_PLUS,
- anon_sym_DASH,
- ACTIONS(5367), 2,
- anon_sym_EQ_EQ,
- anon_sym_BANG_EQ,
- ACTIONS(5369), 2,
- anon_sym_EQ_EQ_EQ,
- anon_sym_BANG_EQ_EQ,
- STATE(1757), 2,
- sym_template_string,
- sym_arguments,
- ACTIONS(4307), 3,
- anon_sym_BANG,
- anon_sym_AMP,
- anon_sym_PIPE,
- ACTIONS(5365), 3,
- anon_sym_LT_EQ,
- anon_sym_GT_EQ,
- anon_sym_instanceof,
- ACTIONS(4305), 8,
- sym__ternary_qmark,
- anon_sym_as,
- anon_sym_of,
- anon_sym_AMP_AMP,
- anon_sym_PIPE_PIPE,
- anon_sym_CARET,
- anon_sym_QMARK_QMARK,
- anon_sym_satisfies,
- [90188] = 24,
- ACTIONS(825), 1,
- anon_sym_BQUOTE,
- ACTIONS(3969), 1,
- anon_sym_LPAREN,
- ACTIONS(3971), 1,
- anon_sym_LBRACK,
- ACTIONS(3973), 1,
- anon_sym_DOT,
- ACTIONS(4059), 1,
- anon_sym_QMARK_DOT,
- ACTIONS(5347), 1,
- anon_sym_GT_GT,
- ACTIONS(5351), 1,
- anon_sym_AMP,
- ACTIONS(5359), 1,
- anon_sym_PERCENT,
- ACTIONS(5361), 1,
- anon_sym_STAR_STAR,
- ACTIONS(5363), 1,
- anon_sym_LT,
- STATE(1447), 1,
- sym_type_arguments,
- STATE(5080), 1,
- sym_optional_chain,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(4091), 2,
- anon_sym_PLUS_PLUS,
- anon_sym_DASH_DASH,
- ACTIONS(4307), 2,
- anon_sym_BANG,
- anon_sym_PIPE,
- ACTIONS(5336), 2,
- anon_sym_STAR,
- anon_sym_SLASH,
- ACTIONS(5341), 2,
- anon_sym_in,
- anon_sym_GT,
- ACTIONS(5349), 2,
- anon_sym_GT_GT_GT,
- anon_sym_LT_LT,
- ACTIONS(5357), 2,
- anon_sym_PLUS,
- anon_sym_DASH,
- ACTIONS(5367), 2,
- anon_sym_EQ_EQ,
- anon_sym_BANG_EQ,
- ACTIONS(5369), 2,
- anon_sym_EQ_EQ_EQ,
- anon_sym_BANG_EQ_EQ,
- STATE(1757), 2,
- sym_template_string,
- sym_arguments,
- ACTIONS(5365), 3,
- anon_sym_LT_EQ,
- anon_sym_GT_EQ,
- anon_sym_instanceof,
- ACTIONS(4305), 8,
- sym__ternary_qmark,
- anon_sym_as,
- anon_sym_of,
- anon_sym_AMP_AMP,
- anon_sym_PIPE_PIPE,
- anon_sym_CARET,
- anon_sym_QMARK_QMARK,
- anon_sym_satisfies,
- [90280] = 25,
- ACTIONS(825), 1,
- anon_sym_BQUOTE,
- ACTIONS(3969), 1,
- anon_sym_LPAREN,
- ACTIONS(3971), 1,
- anon_sym_LBRACK,
- ACTIONS(3973), 1,
- anon_sym_DOT,
- ACTIONS(4059), 1,
- anon_sym_QMARK_DOT,
- ACTIONS(5347), 1,
- anon_sym_GT_GT,
- ACTIONS(5351), 1,
- anon_sym_AMP,
- ACTIONS(5353), 1,
- anon_sym_CARET,
- ACTIONS(5359), 1,
- anon_sym_PERCENT,
- ACTIONS(5361), 1,
- anon_sym_STAR_STAR,
- ACTIONS(5363), 1,
- anon_sym_LT,
- STATE(1447), 1,
- sym_type_arguments,
- STATE(5080), 1,
- sym_optional_chain,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(4091), 2,
- anon_sym_PLUS_PLUS,
- anon_sym_DASH_DASH,
- ACTIONS(4307), 2,
- anon_sym_BANG,
- anon_sym_PIPE,
- ACTIONS(5336), 2,
- anon_sym_STAR,
- anon_sym_SLASH,
- ACTIONS(5341), 2,
- anon_sym_in,
- anon_sym_GT,
- ACTIONS(5349), 2,
- anon_sym_GT_GT_GT,
- anon_sym_LT_LT,
- ACTIONS(5357), 2,
- anon_sym_PLUS,
- anon_sym_DASH,
- ACTIONS(5367), 2,
- anon_sym_EQ_EQ,
- anon_sym_BANG_EQ,
- ACTIONS(5369), 2,
- anon_sym_EQ_EQ_EQ,
- anon_sym_BANG_EQ_EQ,
- STATE(1757), 2,
- sym_template_string,
- sym_arguments,
- ACTIONS(5365), 3,
- anon_sym_LT_EQ,
- anon_sym_GT_EQ,
- anon_sym_instanceof,
- ACTIONS(4305), 7,
- sym__ternary_qmark,
- anon_sym_as,
- anon_sym_of,
- anon_sym_AMP_AMP,
- anon_sym_PIPE_PIPE,
- anon_sym_QMARK_QMARK,
- anon_sym_satisfies,
- [90374] = 16,
- ACTIONS(825), 1,
- anon_sym_BQUOTE,
- ACTIONS(3969), 1,
- anon_sym_LPAREN,
- ACTIONS(3971), 1,
- anon_sym_LBRACK,
- ACTIONS(3973), 1,
- anon_sym_DOT,
- ACTIONS(4059), 1,
- anon_sym_QMARK_DOT,
- ACTIONS(5359), 1,
- anon_sym_PERCENT,
- ACTIONS(5361), 1,
- anon_sym_STAR_STAR,
- ACTIONS(5676), 1,
- anon_sym_LT,
- STATE(1447), 1,
- sym_type_arguments,
- STATE(5080), 1,
- sym_optional_chain,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(4091), 2,
- anon_sym_PLUS_PLUS,
- anon_sym_DASH_DASH,
- ACTIONS(5336), 2,
- anon_sym_STAR,
- anon_sym_SLASH,
- STATE(1757), 2,
- sym_template_string,
- sym_arguments,
- ACTIONS(4307), 10,
- anon_sym_BANG,
- anon_sym_in,
- anon_sym_GT,
- anon_sym_GT_GT,
- anon_sym_AMP,
- anon_sym_PIPE,
- anon_sym_PLUS,
- anon_sym_DASH,
- anon_sym_EQ_EQ,
- anon_sym_BANG_EQ,
- ACTIONS(4305), 15,
- sym__ternary_qmark,
- anon_sym_as,
- anon_sym_of,
- anon_sym_AMP_AMP,
- anon_sym_PIPE_PIPE,
- anon_sym_GT_GT_GT,
- anon_sym_LT_LT,
- anon_sym_CARET,
- anon_sym_LT_EQ,
- anon_sym_EQ_EQ_EQ,
- anon_sym_BANG_EQ_EQ,
- anon_sym_GT_EQ,
- anon_sym_QMARK_QMARK,
- anon_sym_instanceof,
- anon_sym_satisfies,
- [90450] = 17,
- ACTIONS(825), 1,
- anon_sym_BQUOTE,
- ACTIONS(3969), 1,
- anon_sym_LPAREN,
- ACTIONS(3971), 1,
- anon_sym_LBRACK,
- ACTIONS(3973), 1,
- anon_sym_DOT,
- ACTIONS(4051), 1,
- anon_sym_as,
- ACTIONS(4055), 1,
- anon_sym_BANG,
- ACTIONS(4059), 1,
- anon_sym_QMARK_DOT,
- ACTIONS(4093), 1,
- anon_sym_satisfies,
- ACTIONS(5361), 1,
- anon_sym_STAR_STAR,
- ACTIONS(5676), 1,
- anon_sym_LT,
- STATE(1447), 1,
- sym_type_arguments,
- STATE(5080), 1,
- sym_optional_chain,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(4091), 2,
- anon_sym_PLUS_PLUS,
- anon_sym_DASH_DASH,
- STATE(1757), 2,
- sym_template_string,
- sym_arguments,
- ACTIONS(4307), 11,
- anon_sym_STAR,
- anon_sym_in,
- anon_sym_GT,
- anon_sym_GT_GT,
- anon_sym_AMP,
- anon_sym_PIPE,
- anon_sym_PLUS,
- anon_sym_DASH,
- anon_sym_SLASH,
- anon_sym_EQ_EQ,
- anon_sym_BANG_EQ,
- ACTIONS(4305), 14,
- sym__ternary_qmark,
- anon_sym_of,
- anon_sym_AMP_AMP,
- anon_sym_PIPE_PIPE,
- anon_sym_GT_GT_GT,
- anon_sym_LT_LT,
- anon_sym_CARET,
- anon_sym_PERCENT,
- anon_sym_LT_EQ,
- anon_sym_EQ_EQ_EQ,
- anon_sym_BANG_EQ_EQ,
- anon_sym_GT_EQ,
- anon_sym_QMARK_QMARK,
- anon_sym_instanceof,
- [90528] = 21,
- ACTIONS(825), 1,
- anon_sym_BQUOTE,
- ACTIONS(3969), 1,
- anon_sym_LPAREN,
- ACTIONS(3971), 1,
- anon_sym_LBRACK,
- ACTIONS(3973), 1,
- anon_sym_DOT,
- ACTIONS(4059), 1,
- anon_sym_QMARK_DOT,
- ACTIONS(5347), 1,
- anon_sym_GT_GT,
- ACTIONS(5359), 1,
- anon_sym_PERCENT,
- ACTIONS(5361), 1,
- anon_sym_STAR_STAR,
- ACTIONS(5363), 1,
- anon_sym_LT,
- STATE(1447), 1,
- sym_type_arguments,
- STATE(5080), 1,
- sym_optional_chain,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(4091), 2,
- anon_sym_PLUS_PLUS,
- anon_sym_DASH_DASH,
- ACTIONS(5336), 2,
- anon_sym_STAR,
- anon_sym_SLASH,
- ACTIONS(5341), 2,
- anon_sym_in,
- anon_sym_GT,
- ACTIONS(5349), 2,
- anon_sym_GT_GT_GT,
- anon_sym_LT_LT,
- ACTIONS(5357), 2,
- anon_sym_PLUS,
- anon_sym_DASH,
- STATE(1757), 2,
- sym_template_string,
- sym_arguments,
- ACTIONS(5365), 3,
- anon_sym_LT_EQ,
- anon_sym_GT_EQ,
- anon_sym_instanceof,
- ACTIONS(4307), 5,
- anon_sym_BANG,
- anon_sym_AMP,
- anon_sym_PIPE,
- anon_sym_EQ_EQ,
- anon_sym_BANG_EQ,
- ACTIONS(4305), 10,
- sym__ternary_qmark,
- anon_sym_as,
- anon_sym_of,
- anon_sym_AMP_AMP,
- anon_sym_PIPE_PIPE,
- anon_sym_CARET,
- anon_sym_EQ_EQ_EQ,
- anon_sym_BANG_EQ_EQ,
- anon_sym_QMARK_QMARK,
- anon_sym_satisfies,
- [90614] = 28,
- ACTIONS(825), 1,
- anon_sym_BQUOTE,
- ACTIONS(3969), 1,
- anon_sym_LPAREN,
- ACTIONS(3971), 1,
- anon_sym_LBRACK,
- ACTIONS(3973), 1,
- anon_sym_DOT,
- ACTIONS(4059), 1,
- anon_sym_QMARK_DOT,
- ACTIONS(4307), 1,
- anon_sym_BANG,
- ACTIONS(5343), 1,
- anon_sym_AMP_AMP,
- ACTIONS(5345), 1,
- anon_sym_PIPE_PIPE,
- ACTIONS(5347), 1,
- anon_sym_GT_GT,
- ACTIONS(5351), 1,
- anon_sym_AMP,
- ACTIONS(5353), 1,
- anon_sym_CARET,
- ACTIONS(5355), 1,
- anon_sym_PIPE,
- ACTIONS(5359), 1,
- anon_sym_PERCENT,
- ACTIONS(5361), 1,
- anon_sym_STAR_STAR,
- ACTIONS(5363), 1,
- anon_sym_LT,
- STATE(1447), 1,
- sym_type_arguments,
- STATE(5080), 1,
- sym_optional_chain,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(4091), 2,
- anon_sym_PLUS_PLUS,
- anon_sym_DASH_DASH,
- ACTIONS(5336), 2,
- anon_sym_STAR,
- anon_sym_SLASH,
- ACTIONS(5341), 2,
- anon_sym_in,
- anon_sym_GT,
- ACTIONS(5349), 2,
- anon_sym_GT_GT_GT,
- anon_sym_LT_LT,
- ACTIONS(5357), 2,
- anon_sym_PLUS,
- anon_sym_DASH,
- ACTIONS(5367), 2,
- anon_sym_EQ_EQ,
- anon_sym_BANG_EQ,
- ACTIONS(5369), 2,
- anon_sym_EQ_EQ_EQ,
- anon_sym_BANG_EQ_EQ,
- STATE(1757), 2,
- sym_template_string,
- sym_arguments,
- ACTIONS(5365), 3,
- anon_sym_LT_EQ,
- anon_sym_GT_EQ,
- anon_sym_instanceof,
- ACTIONS(4305), 5,
- sym__ternary_qmark,
- anon_sym_as,
- anon_sym_of,
- anon_sym_QMARK_QMARK,
- anon_sym_satisfies,
- [90714] = 32,
- ACTIONS(825), 1,
- anon_sym_BQUOTE,
- ACTIONS(3969), 1,
- anon_sym_LPAREN,
- ACTIONS(3971), 1,
- anon_sym_LBRACK,
- ACTIONS(3973), 1,
- anon_sym_DOT,
- ACTIONS(4051), 1,
- anon_sym_as,
- ACTIONS(4055), 1,
- anon_sym_BANG,
- ACTIONS(4059), 1,
- anon_sym_QMARK_DOT,
- ACTIONS(4093), 1,
- anon_sym_satisfies,
- ACTIONS(4350), 1,
- anon_sym_of,
- ACTIONS(5343), 1,
- anon_sym_AMP_AMP,
- ACTIONS(5345), 1,
- anon_sym_PIPE_PIPE,
- ACTIONS(5347), 1,
- anon_sym_GT_GT,
- ACTIONS(5351), 1,
- anon_sym_AMP,
- ACTIONS(5353), 1,
- anon_sym_CARET,
- ACTIONS(5355), 1,
- anon_sym_PIPE,
- ACTIONS(5359), 1,
- anon_sym_PERCENT,
- ACTIONS(5361), 1,
- anon_sym_STAR_STAR,
- ACTIONS(5363), 1,
- anon_sym_LT,
- ACTIONS(5371), 1,
- anon_sym_QMARK_QMARK,
- ACTIONS(5373), 1,
- sym__ternary_qmark,
- STATE(1447), 1,
- sym_type_arguments,
- STATE(5080), 1,
- sym_optional_chain,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(4091), 2,
- anon_sym_PLUS_PLUS,
- anon_sym_DASH_DASH,
- ACTIONS(5336), 2,
- anon_sym_STAR,
- anon_sym_SLASH,
- ACTIONS(5341), 2,
- anon_sym_in,
- anon_sym_GT,
- ACTIONS(5349), 2,
- anon_sym_GT_GT_GT,
- anon_sym_LT_LT,
- ACTIONS(5357), 2,
- anon_sym_PLUS,
- anon_sym_DASH,
- ACTIONS(5367), 2,
- anon_sym_EQ_EQ,
- anon_sym_BANG_EQ,
- ACTIONS(5369), 2,
- anon_sym_EQ_EQ_EQ,
- anon_sym_BANG_EQ_EQ,
- STATE(1757), 2,
- sym_template_string,
- sym_arguments,
- ACTIONS(5365), 3,
- anon_sym_LT_EQ,
- anon_sym_GT_EQ,
- anon_sym_instanceof,
- [90822] = 32,
- ACTIONS(825), 1,
- anon_sym_BQUOTE,
- ACTIONS(3969), 1,
- anon_sym_LPAREN,
- ACTIONS(3971), 1,
- anon_sym_LBRACK,
- ACTIONS(3973), 1,
- anon_sym_DOT,
- ACTIONS(4051), 1,
- anon_sym_as,
- ACTIONS(4055), 1,
- anon_sym_BANG,
- ACTIONS(4059), 1,
- anon_sym_QMARK_DOT,
- ACTIONS(4093), 1,
- anon_sym_satisfies,
- ACTIONS(4352), 1,
- anon_sym_of,
- ACTIONS(5343), 1,
- anon_sym_AMP_AMP,
- ACTIONS(5345), 1,
- anon_sym_PIPE_PIPE,
- ACTIONS(5347), 1,
- anon_sym_GT_GT,
- ACTIONS(5351), 1,
- anon_sym_AMP,
- ACTIONS(5353), 1,
- anon_sym_CARET,
- ACTIONS(5355), 1,
- anon_sym_PIPE,
- ACTIONS(5359), 1,
- anon_sym_PERCENT,
- ACTIONS(5361), 1,
- anon_sym_STAR_STAR,
- ACTIONS(5363), 1,
- anon_sym_LT,
- ACTIONS(5371), 1,
- anon_sym_QMARK_QMARK,
- ACTIONS(5373), 1,
- sym__ternary_qmark,
- STATE(1447), 1,
- sym_type_arguments,
- STATE(5080), 1,
- sym_optional_chain,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(4091), 2,
- anon_sym_PLUS_PLUS,
- anon_sym_DASH_DASH,
- ACTIONS(5336), 2,
- anon_sym_STAR,
- anon_sym_SLASH,
- ACTIONS(5341), 2,
- anon_sym_in,
- anon_sym_GT,
- ACTIONS(5349), 2,
- anon_sym_GT_GT_GT,
- anon_sym_LT_LT,
- ACTIONS(5357), 2,
- anon_sym_PLUS,
- anon_sym_DASH,
- ACTIONS(5367), 2,
- anon_sym_EQ_EQ,
- anon_sym_BANG_EQ,
- ACTIONS(5369), 2,
- anon_sym_EQ_EQ_EQ,
- anon_sym_BANG_EQ_EQ,
- STATE(1757), 2,
- sym_template_string,
- sym_arguments,
- ACTIONS(5365), 3,
- anon_sym_LT_EQ,
- anon_sym_GT_EQ,
- anon_sym_instanceof,
- [90930] = 32,
- ACTIONS(825), 1,
- anon_sym_BQUOTE,
- ACTIONS(3969), 1,
- anon_sym_LPAREN,
- ACTIONS(3971), 1,
- anon_sym_LBRACK,
- ACTIONS(3973), 1,
- anon_sym_DOT,
- ACTIONS(4051), 1,
- anon_sym_as,
- ACTIONS(4055), 1,
- anon_sym_BANG,
- ACTIONS(4059), 1,
- anon_sym_QMARK_DOT,
- ACTIONS(4093), 1,
- anon_sym_satisfies,
- ACTIONS(4370), 1,
- anon_sym_of,
- ACTIONS(5343), 1,
- anon_sym_AMP_AMP,
- ACTIONS(5345), 1,
- anon_sym_PIPE_PIPE,
- ACTIONS(5347), 1,
- anon_sym_GT_GT,
- ACTIONS(5351), 1,
- anon_sym_AMP,
- ACTIONS(5353), 1,
- anon_sym_CARET,
- ACTIONS(5355), 1,
- anon_sym_PIPE,
- ACTIONS(5359), 1,
- anon_sym_PERCENT,
- ACTIONS(5361), 1,
- anon_sym_STAR_STAR,
- ACTIONS(5363), 1,
- anon_sym_LT,
- ACTIONS(5371), 1,
- anon_sym_QMARK_QMARK,
- ACTIONS(5373), 1,
- sym__ternary_qmark,
- STATE(1447), 1,
- sym_type_arguments,
- STATE(5080), 1,
- sym_optional_chain,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(4091), 2,
- anon_sym_PLUS_PLUS,
- anon_sym_DASH_DASH,
- ACTIONS(5336), 2,
- anon_sym_STAR,
- anon_sym_SLASH,
- ACTIONS(5341), 2,
- anon_sym_in,
- anon_sym_GT,
- ACTIONS(5349), 2,
- anon_sym_GT_GT_GT,
- anon_sym_LT_LT,
- ACTIONS(5357), 2,
- anon_sym_PLUS,
- anon_sym_DASH,
- ACTIONS(5367), 2,
- anon_sym_EQ_EQ,
- anon_sym_BANG_EQ,
- ACTIONS(5369), 2,
- anon_sym_EQ_EQ_EQ,
- anon_sym_BANG_EQ_EQ,
- STATE(1757), 2,
- sym_template_string,
- sym_arguments,
- ACTIONS(5365), 3,
- anon_sym_LT_EQ,
- anon_sym_GT_EQ,
- anon_sym_instanceof,
- [91038] = 32,
- ACTIONS(825), 1,
- anon_sym_BQUOTE,
- ACTIONS(3969), 1,
- anon_sym_LPAREN,
- ACTIONS(3971), 1,
- anon_sym_LBRACK,
- ACTIONS(3973), 1,
- anon_sym_DOT,
- ACTIONS(4051), 1,
- anon_sym_as,
- ACTIONS(4055), 1,
- anon_sym_BANG,
- ACTIONS(4059), 1,
- anon_sym_QMARK_DOT,
- ACTIONS(4093), 1,
- anon_sym_satisfies,
- ACTIONS(4372), 1,
- anon_sym_of,
- ACTIONS(5343), 1,
- anon_sym_AMP_AMP,
- ACTIONS(5345), 1,
- anon_sym_PIPE_PIPE,
- ACTIONS(5347), 1,
- anon_sym_GT_GT,
- ACTIONS(5351), 1,
- anon_sym_AMP,
- ACTIONS(5353), 1,
- anon_sym_CARET,
- ACTIONS(5355), 1,
- anon_sym_PIPE,
- ACTIONS(5359), 1,
- anon_sym_PERCENT,
- ACTIONS(5361), 1,
- anon_sym_STAR_STAR,
- ACTIONS(5363), 1,
- anon_sym_LT,
- ACTIONS(5371), 1,
- anon_sym_QMARK_QMARK,
- ACTIONS(5373), 1,
- sym__ternary_qmark,
- STATE(1447), 1,
- sym_type_arguments,
- STATE(5080), 1,
- sym_optional_chain,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(4091), 2,
- anon_sym_PLUS_PLUS,
- anon_sym_DASH_DASH,
- ACTIONS(5336), 2,
- anon_sym_STAR,
- anon_sym_SLASH,
- ACTIONS(5341), 2,
- anon_sym_in,
- anon_sym_GT,
- ACTIONS(5349), 2,
- anon_sym_GT_GT_GT,
- anon_sym_LT_LT,
- ACTIONS(5357), 2,
- anon_sym_PLUS,
- anon_sym_DASH,
- ACTIONS(5367), 2,
- anon_sym_EQ_EQ,
- anon_sym_BANG_EQ,
- ACTIONS(5369), 2,
- anon_sym_EQ_EQ_EQ,
- anon_sym_BANG_EQ_EQ,
- STATE(1757), 2,
- sym_template_string,
- sym_arguments,
- ACTIONS(5365), 3,
- anon_sym_LT_EQ,
- anon_sym_GT_EQ,
- anon_sym_instanceof,
- [91146] = 32,
- ACTIONS(825), 1,
- anon_sym_BQUOTE,
- ACTIONS(3969), 1,
- anon_sym_LPAREN,
- ACTIONS(3971), 1,
- anon_sym_LBRACK,
- ACTIONS(3973), 1,
- anon_sym_DOT,
- ACTIONS(4051), 1,
- anon_sym_as,
- ACTIONS(4055), 1,
- anon_sym_BANG,
- ACTIONS(4059), 1,
- anon_sym_QMARK_DOT,
- ACTIONS(4093), 1,
- anon_sym_satisfies,
- ACTIONS(4374), 1,
- anon_sym_of,
- ACTIONS(5343), 1,
- anon_sym_AMP_AMP,
- ACTIONS(5345), 1,
- anon_sym_PIPE_PIPE,
- ACTIONS(5347), 1,
- anon_sym_GT_GT,
- ACTIONS(5351), 1,
- anon_sym_AMP,
- ACTIONS(5353), 1,
- anon_sym_CARET,
- ACTIONS(5355), 1,
- anon_sym_PIPE,
- ACTIONS(5359), 1,
- anon_sym_PERCENT,
- ACTIONS(5361), 1,
- anon_sym_STAR_STAR,
- ACTIONS(5363), 1,
- anon_sym_LT,
- ACTIONS(5371), 1,
- anon_sym_QMARK_QMARK,
- ACTIONS(5373), 1,
- sym__ternary_qmark,
- STATE(1447), 1,
- sym_type_arguments,
- STATE(5080), 1,
- sym_optional_chain,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(4091), 2,
- anon_sym_PLUS_PLUS,
- anon_sym_DASH_DASH,
- ACTIONS(5336), 2,
- anon_sym_STAR,
- anon_sym_SLASH,
- ACTIONS(5341), 2,
- anon_sym_in,
- anon_sym_GT,
- ACTIONS(5349), 2,
- anon_sym_GT_GT_GT,
- anon_sym_LT_LT,
- ACTIONS(5357), 2,
- anon_sym_PLUS,
- anon_sym_DASH,
- ACTIONS(5367), 2,
- anon_sym_EQ_EQ,
- anon_sym_BANG_EQ,
- ACTIONS(5369), 2,
- anon_sym_EQ_EQ_EQ,
- anon_sym_BANG_EQ_EQ,
- STATE(1757), 2,
- sym_template_string,
- sym_arguments,
- ACTIONS(5365), 3,
- anon_sym_LT_EQ,
- anon_sym_GT_EQ,
- anon_sym_instanceof,
- [91254] = 32,
- ACTIONS(825), 1,
- anon_sym_BQUOTE,
- ACTIONS(3969), 1,
- anon_sym_LPAREN,
- ACTIONS(3971), 1,
- anon_sym_LBRACK,
- ACTIONS(3973), 1,
- anon_sym_DOT,
- ACTIONS(4051), 1,
- anon_sym_as,
- ACTIONS(4055), 1,
- anon_sym_BANG,
- ACTIONS(4059), 1,
- anon_sym_QMARK_DOT,
- ACTIONS(4093), 1,
- anon_sym_satisfies,
- ACTIONS(4376), 1,
- anon_sym_of,
- ACTIONS(5343), 1,
- anon_sym_AMP_AMP,
- ACTIONS(5345), 1,
- anon_sym_PIPE_PIPE,
- ACTIONS(5347), 1,
- anon_sym_GT_GT,
- ACTIONS(5351), 1,
- anon_sym_AMP,
- ACTIONS(5353), 1,
- anon_sym_CARET,
- ACTIONS(5355), 1,
- anon_sym_PIPE,
- ACTIONS(5359), 1,
- anon_sym_PERCENT,
- ACTIONS(5361), 1,
- anon_sym_STAR_STAR,
- ACTIONS(5363), 1,
- anon_sym_LT,
- ACTIONS(5371), 1,
- anon_sym_QMARK_QMARK,
- ACTIONS(5373), 1,
- sym__ternary_qmark,
- STATE(1447), 1,
- sym_type_arguments,
- STATE(5080), 1,
- sym_optional_chain,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(4091), 2,
- anon_sym_PLUS_PLUS,
- anon_sym_DASH_DASH,
- ACTIONS(5336), 2,
- anon_sym_STAR,
- anon_sym_SLASH,
- ACTIONS(5341), 2,
- anon_sym_in,
- anon_sym_GT,
- ACTIONS(5349), 2,
- anon_sym_GT_GT_GT,
- anon_sym_LT_LT,
- ACTIONS(5357), 2,
- anon_sym_PLUS,
- anon_sym_DASH,
- ACTIONS(5367), 2,
- anon_sym_EQ_EQ,
- anon_sym_BANG_EQ,
- ACTIONS(5369), 2,
- anon_sym_EQ_EQ_EQ,
- anon_sym_BANG_EQ_EQ,
- STATE(1757), 2,
- sym_template_string,
- sym_arguments,
- ACTIONS(5365), 3,
- anon_sym_LT_EQ,
- anon_sym_GT_EQ,
- anon_sym_instanceof,
- [91362] = 32,
- ACTIONS(825), 1,
- anon_sym_BQUOTE,
- ACTIONS(3969), 1,
- anon_sym_LPAREN,
- ACTIONS(3971), 1,
- anon_sym_LBRACK,
- ACTIONS(3973), 1,
- anon_sym_DOT,
- ACTIONS(4051), 1,
- anon_sym_as,
- ACTIONS(4053), 1,
- anon_sym_of,
- ACTIONS(4055), 1,
- anon_sym_BANG,
- ACTIONS(4059), 1,
- anon_sym_QMARK_DOT,
- ACTIONS(4093), 1,
- anon_sym_satisfies,
- ACTIONS(5343), 1,
- anon_sym_AMP_AMP,
- ACTIONS(5345), 1,
- anon_sym_PIPE_PIPE,
- ACTIONS(5347), 1,
- anon_sym_GT_GT,
- ACTIONS(5351), 1,
- anon_sym_AMP,
- ACTIONS(5353), 1,
- anon_sym_CARET,
- ACTIONS(5355), 1,
- anon_sym_PIPE,
- ACTIONS(5359), 1,
- anon_sym_PERCENT,
- ACTIONS(5361), 1,
- anon_sym_STAR_STAR,
- ACTIONS(5363), 1,
- anon_sym_LT,
- ACTIONS(5371), 1,
- anon_sym_QMARK_QMARK,
- ACTIONS(5373), 1,
- sym__ternary_qmark,
- STATE(1447), 1,
- sym_type_arguments,
- STATE(5080), 1,
- sym_optional_chain,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(4091), 2,
- anon_sym_PLUS_PLUS,
- anon_sym_DASH_DASH,
- ACTIONS(5336), 2,
- anon_sym_STAR,
- anon_sym_SLASH,
- ACTIONS(5341), 2,
- anon_sym_in,
- anon_sym_GT,
- ACTIONS(5349), 2,
- anon_sym_GT_GT_GT,
- anon_sym_LT_LT,
- ACTIONS(5357), 2,
- anon_sym_PLUS,
- anon_sym_DASH,
- ACTIONS(5367), 2,
- anon_sym_EQ_EQ,
- anon_sym_BANG_EQ,
- ACTIONS(5369), 2,
- anon_sym_EQ_EQ_EQ,
- anon_sym_BANG_EQ_EQ,
- STATE(1757), 2,
- sym_template_string,
- sym_arguments,
- ACTIONS(5365), 3,
- anon_sym_LT_EQ,
- anon_sym_GT_EQ,
- anon_sym_instanceof,
- [91470] = 32,
- ACTIONS(825), 1,
- anon_sym_BQUOTE,
- ACTIONS(3969), 1,
- anon_sym_LPAREN,
- ACTIONS(3971), 1,
- anon_sym_LBRACK,
- ACTIONS(3973), 1,
- anon_sym_DOT,
- ACTIONS(4051), 1,
- anon_sym_as,
- ACTIONS(4055), 1,
- anon_sym_BANG,
- ACTIONS(4059), 1,
- anon_sym_QMARK_DOT,
- ACTIONS(4093), 1,
- anon_sym_satisfies,
- ACTIONS(4388), 1,
- anon_sym_of,
- ACTIONS(5343), 1,
- anon_sym_AMP_AMP,
- ACTIONS(5345), 1,
- anon_sym_PIPE_PIPE,
- ACTIONS(5347), 1,
- anon_sym_GT_GT,
- ACTIONS(5351), 1,
- anon_sym_AMP,
- ACTIONS(5353), 1,
- anon_sym_CARET,
- ACTIONS(5355), 1,
- anon_sym_PIPE,
- ACTIONS(5359), 1,
- anon_sym_PERCENT,
- ACTIONS(5361), 1,
- anon_sym_STAR_STAR,
- ACTIONS(5363), 1,
- anon_sym_LT,
- ACTIONS(5371), 1,
- anon_sym_QMARK_QMARK,
- ACTIONS(5373), 1,
- sym__ternary_qmark,
- STATE(1447), 1,
- sym_type_arguments,
- STATE(5080), 1,
- sym_optional_chain,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(4091), 2,
- anon_sym_PLUS_PLUS,
- anon_sym_DASH_DASH,
- ACTIONS(5336), 2,
- anon_sym_STAR,
- anon_sym_SLASH,
- ACTIONS(5341), 2,
- anon_sym_in,
- anon_sym_GT,
- ACTIONS(5349), 2,
- anon_sym_GT_GT_GT,
- anon_sym_LT_LT,
- ACTIONS(5357), 2,
- anon_sym_PLUS,
- anon_sym_DASH,
- ACTIONS(5367), 2,
- anon_sym_EQ_EQ,
- anon_sym_BANG_EQ,
- ACTIONS(5369), 2,
- anon_sym_EQ_EQ_EQ,
- anon_sym_BANG_EQ_EQ,
- STATE(1757), 2,
- sym_template_string,
- sym_arguments,
- ACTIONS(5365), 3,
- anon_sym_LT_EQ,
- anon_sym_GT_EQ,
- anon_sym_instanceof,
- [91578] = 5,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(5679), 2,
- anon_sym_EQ,
- anon_sym_QMARK,
- ACTIONS(5681), 3,
- anon_sym_COMMA,
- anon_sym_RPAREN,
- anon_sym_COLON,
- ACTIONS(3400), 13,
- anon_sym_STAR,
- anon_sym_BANG,
- anon_sym_in,
- anon_sym_GT,
- anon_sym_GT_GT,
- anon_sym_AMP,
- anon_sym_PIPE,
- anon_sym_PLUS,
- anon_sym_DASH,
- anon_sym_SLASH,
- anon_sym_LT,
- anon_sym_EQ_EQ,
- anon_sym_BANG_EQ,
- ACTIONS(3404), 23,
- sym__ternary_qmark,
- anon_sym_as,
- anon_sym_LPAREN,
- anon_sym_LBRACK,
- anon_sym_DOT,
- anon_sym_QMARK_DOT,
- anon_sym_AMP_AMP,
- anon_sym_PIPE_PIPE,
- anon_sym_GT_GT_GT,
- anon_sym_LT_LT,
- anon_sym_CARET,
- anon_sym_PERCENT,
- anon_sym_STAR_STAR,
- anon_sym_LT_EQ,
- anon_sym_EQ_EQ_EQ,
- anon_sym_BANG_EQ_EQ,
- anon_sym_GT_EQ,
- anon_sym_QMARK_QMARK,
- anon_sym_instanceof,
- anon_sym_PLUS_PLUS,
- anon_sym_DASH_DASH,
- anon_sym_BQUOTE,
- anon_sym_satisfies,
- [91632] = 4,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(1895), 5,
- sym__automatic_semicolon,
- anon_sym_COMMA,
- anon_sym_RBRACE,
- anon_sym_SEMI,
- anon_sym_PIPE_RBRACE,
- ACTIONS(1899), 13,
- anon_sym_STAR,
- anon_sym_BANG,
- anon_sym_in,
- anon_sym_GT,
- anon_sym_GT_GT,
- anon_sym_AMP,
- anon_sym_PIPE,
- anon_sym_PLUS,
- anon_sym_DASH,
- anon_sym_SLASH,
- anon_sym_LT,
- anon_sym_EQ_EQ,
- anon_sym_BANG_EQ,
- ACTIONS(1901), 23,
- sym__ternary_qmark,
- anon_sym_as,
- anon_sym_LPAREN,
- anon_sym_LBRACK,
- anon_sym_DOT,
- anon_sym_QMARK_DOT,
- anon_sym_AMP_AMP,
- anon_sym_PIPE_PIPE,
- anon_sym_GT_GT_GT,
- anon_sym_LT_LT,
- anon_sym_CARET,
- anon_sym_PERCENT,
- anon_sym_STAR_STAR,
- anon_sym_LT_EQ,
- anon_sym_EQ_EQ_EQ,
- anon_sym_BANG_EQ_EQ,
- anon_sym_GT_EQ,
- anon_sym_QMARK_QMARK,
- anon_sym_instanceof,
- anon_sym_PLUS_PLUS,
- anon_sym_DASH_DASH,
- anon_sym_BQUOTE,
- anon_sym_satisfies,
- [91684] = 13,
- ACTIONS(825), 1,
- anon_sym_BQUOTE,
- ACTIONS(3969), 1,
- anon_sym_LPAREN,
- ACTIONS(3971), 1,
- anon_sym_LBRACK,
- ACTIONS(3973), 1,
- anon_sym_DOT,
- ACTIONS(4059), 1,
- anon_sym_QMARK_DOT,
- ACTIONS(5683), 1,
- anon_sym_LT,
- STATE(1447), 1,
- sym_type_arguments,
- STATE(5080), 1,
- sym_optional_chain,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(4091), 2,
- anon_sym_PLUS_PLUS,
- anon_sym_DASH_DASH,
- STATE(1757), 2,
- sym_template_string,
- sym_arguments,
- ACTIONS(4170), 12,
- anon_sym_STAR,
- anon_sym_BANG,
- anon_sym_in,
- anon_sym_GT,
- anon_sym_GT_GT,
- anon_sym_AMP,
- anon_sym_PIPE,
- anon_sym_PLUS,
- anon_sym_DASH,
- anon_sym_SLASH,
- anon_sym_EQ_EQ,
- anon_sym_BANG_EQ,
- ACTIONS(4172), 17,
- sym__ternary_qmark,
- anon_sym_as,
- anon_sym_of,
- anon_sym_AMP_AMP,
- anon_sym_PIPE_PIPE,
- anon_sym_GT_GT_GT,
- anon_sym_LT_LT,
- anon_sym_CARET,
- anon_sym_PERCENT,
- anon_sym_STAR_STAR,
- anon_sym_LT_EQ,
- anon_sym_EQ_EQ_EQ,
- anon_sym_BANG_EQ_EQ,
- anon_sym_GT_EQ,
- anon_sym_QMARK_QMARK,
- anon_sym_instanceof,
- anon_sym_satisfies,
- [91754] = 16,
- ACTIONS(825), 1,
- anon_sym_BQUOTE,
- ACTIONS(3969), 1,
- anon_sym_LPAREN,
- ACTIONS(3971), 1,
- anon_sym_LBRACK,
- ACTIONS(3973), 1,
- anon_sym_DOT,
- ACTIONS(4051), 1,
- anon_sym_as,
- ACTIONS(4055), 1,
- anon_sym_BANG,
- ACTIONS(4059), 1,
- anon_sym_QMARK_DOT,
- ACTIONS(4093), 1,
- anon_sym_satisfies,
- ACTIONS(5686), 1,
- anon_sym_LT,
- STATE(1447), 1,
- sym_type_arguments,
- STATE(5080), 1,
- sym_optional_chain,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(4091), 2,
- anon_sym_PLUS_PLUS,
- anon_sym_DASH_DASH,
- STATE(1757), 2,
- sym_template_string,
- sym_arguments,
- ACTIONS(4199), 11,
- anon_sym_STAR,
- anon_sym_in,
- anon_sym_GT,
- anon_sym_GT_GT,
- anon_sym_AMP,
- anon_sym_PIPE,
- anon_sym_PLUS,
- anon_sym_DASH,
- anon_sym_SLASH,
- anon_sym_EQ_EQ,
- anon_sym_BANG_EQ,
- ACTIONS(4201), 15,
- sym__ternary_qmark,
- anon_sym_of,
- anon_sym_AMP_AMP,
- anon_sym_PIPE_PIPE,
- anon_sym_GT_GT_GT,
- anon_sym_LT_LT,
- anon_sym_CARET,
- anon_sym_PERCENT,
- anon_sym_STAR_STAR,
- anon_sym_LT_EQ,
- anon_sym_EQ_EQ_EQ,
- anon_sym_BANG_EQ_EQ,
- anon_sym_GT_EQ,
- anon_sym_QMARK_QMARK,
- anon_sym_instanceof,
- [91830] = 32,
- ACTIONS(825), 1,
- anon_sym_BQUOTE,
- ACTIONS(3969), 1,
- anon_sym_LPAREN,
- ACTIONS(3971), 1,
- anon_sym_LBRACK,
- ACTIONS(3973), 1,
- anon_sym_DOT,
- ACTIONS(4051), 1,
- anon_sym_as,
- ACTIONS(4055), 1,
- anon_sym_BANG,
- ACTIONS(4059), 1,
- anon_sym_QMARK_DOT,
- ACTIONS(4093), 1,
- anon_sym_satisfies,
- ACTIONS(4210), 1,
- anon_sym_of,
- ACTIONS(5343), 1,
- anon_sym_AMP_AMP,
- ACTIONS(5345), 1,
- anon_sym_PIPE_PIPE,
- ACTIONS(5347), 1,
- anon_sym_GT_GT,
- ACTIONS(5351), 1,
- anon_sym_AMP,
- ACTIONS(5353), 1,
- anon_sym_CARET,
- ACTIONS(5355), 1,
- anon_sym_PIPE,
- ACTIONS(5359), 1,
- anon_sym_PERCENT,
- ACTIONS(5361), 1,
- anon_sym_STAR_STAR,
- ACTIONS(5363), 1,
- anon_sym_LT,
- ACTIONS(5371), 1,
- anon_sym_QMARK_QMARK,
- ACTIONS(5373), 1,
- sym__ternary_qmark,
- STATE(1447), 1,
- sym_type_arguments,
- STATE(5080), 1,
- sym_optional_chain,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(4091), 2,
- anon_sym_PLUS_PLUS,
- anon_sym_DASH_DASH,
- ACTIONS(5336), 2,
- anon_sym_STAR,
- anon_sym_SLASH,
- ACTIONS(5341), 2,
- anon_sym_in,
- anon_sym_GT,
- ACTIONS(5349), 2,
- anon_sym_GT_GT_GT,
- anon_sym_LT_LT,
- ACTIONS(5357), 2,
- anon_sym_PLUS,
- anon_sym_DASH,
- ACTIONS(5367), 2,
- anon_sym_EQ_EQ,
- anon_sym_BANG_EQ,
- ACTIONS(5369), 2,
- anon_sym_EQ_EQ_EQ,
- anon_sym_BANG_EQ_EQ,
- STATE(1757), 2,
- sym_template_string,
- sym_arguments,
- ACTIONS(5365), 3,
- anon_sym_LT_EQ,
- anon_sym_GT_EQ,
- anon_sym_instanceof,
- [91938] = 12,
- ACTIONS(825), 1,
- anon_sym_BQUOTE,
- ACTIONS(3969), 1,
- anon_sym_LPAREN,
- ACTIONS(3971), 1,
- anon_sym_LBRACK,
- ACTIONS(3973), 1,
- anon_sym_DOT,
- ACTIONS(4059), 1,
- anon_sym_QMARK_DOT,
- ACTIONS(5689), 1,
- anon_sym_LT,
- STATE(1447), 1,
- sym_type_arguments,
- STATE(5080), 1,
- sym_optional_chain,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- STATE(1757), 2,
- sym_template_string,
- sym_arguments,
- ACTIONS(4230), 12,
- anon_sym_STAR,
- anon_sym_BANG,
- anon_sym_in,
- anon_sym_GT,
- anon_sym_GT_GT,
- anon_sym_AMP,
- anon_sym_PIPE,
- anon_sym_PLUS,
- anon_sym_DASH,
- anon_sym_SLASH,
- anon_sym_EQ_EQ,
- anon_sym_BANG_EQ,
- ACTIONS(4232), 19,
- sym__ternary_qmark,
- anon_sym_as,
- anon_sym_of,
- anon_sym_AMP_AMP,
- anon_sym_PIPE_PIPE,
- anon_sym_GT_GT_GT,
- anon_sym_LT_LT,
- anon_sym_CARET,
- anon_sym_PERCENT,
- anon_sym_STAR_STAR,
- anon_sym_LT_EQ,
- anon_sym_EQ_EQ_EQ,
- anon_sym_BANG_EQ_EQ,
- anon_sym_GT_EQ,
- anon_sym_QMARK_QMARK,
- anon_sym_instanceof,
- anon_sym_PLUS_PLUS,
- anon_sym_DASH_DASH,
- anon_sym_satisfies,
- [92006] = 4,
- ACTIONS(3450), 1,
- anon_sym_EQ,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(3400), 13,
- anon_sym_STAR,
- anon_sym_BANG,
- anon_sym_in,
- anon_sym_GT,
- anon_sym_GT_GT,
- anon_sym_AMP,
- anon_sym_PIPE,
- anon_sym_PLUS,
- anon_sym_DASH,
- anon_sym_SLASH,
- anon_sym_LT,
- anon_sym_EQ_EQ,
- anon_sym_BANG_EQ,
- ACTIONS(3404), 27,
- sym__automatic_semicolon,
- sym__ternary_qmark,
- anon_sym_as,
- anon_sym_COMMA,
- anon_sym_LPAREN,
- anon_sym_of,
- anon_sym_SEMI,
- anon_sym_LBRACK,
- anon_sym_DOT,
- anon_sym_QMARK_DOT,
- anon_sym_AMP_AMP,
- anon_sym_PIPE_PIPE,
- anon_sym_GT_GT_GT,
- anon_sym_LT_LT,
- anon_sym_CARET,
- anon_sym_PERCENT,
- anon_sym_STAR_STAR,
- anon_sym_LT_EQ,
- anon_sym_EQ_EQ_EQ,
- anon_sym_BANG_EQ_EQ,
- anon_sym_GT_EQ,
- anon_sym_QMARK_QMARK,
- anon_sym_instanceof,
- anon_sym_PLUS_PLUS,
- anon_sym_DASH_DASH,
- anon_sym_BQUOTE,
- anon_sym_satisfies,
- [92058] = 3,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(4713), 13,
- anon_sym_STAR,
- anon_sym_BANG,
- anon_sym_in,
- anon_sym_GT,
- anon_sym_GT_GT,
- anon_sym_AMP,
- anon_sym_PIPE,
- anon_sym_PLUS,
- anon_sym_DASH,
- anon_sym_SLASH,
- anon_sym_LT,
- anon_sym_EQ_EQ,
- anon_sym_BANG_EQ,
- ACTIONS(4715), 28,
- sym__automatic_semicolon,
- sym__ternary_qmark,
- anon_sym_as,
- anon_sym_COMMA,
- anon_sym_RBRACE,
- anon_sym_LPAREN,
- anon_sym_of,
- anon_sym_SEMI,
- anon_sym_LBRACK,
- anon_sym_DOT,
- anon_sym_QMARK_DOT,
- anon_sym_AMP_AMP,
- anon_sym_PIPE_PIPE,
- anon_sym_GT_GT_GT,
- anon_sym_LT_LT,
- anon_sym_CARET,
- anon_sym_PERCENT,
- anon_sym_STAR_STAR,
- anon_sym_LT_EQ,
- anon_sym_EQ_EQ_EQ,
- anon_sym_BANG_EQ_EQ,
- anon_sym_GT_EQ,
- anon_sym_QMARK_QMARK,
- anon_sym_instanceof,
- anon_sym_PLUS_PLUS,
- anon_sym_DASH_DASH,
- anon_sym_BQUOTE,
- anon_sym_satisfies,
- [92108] = 3,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(4717), 13,
- anon_sym_STAR,
- anon_sym_BANG,
- anon_sym_in,
- anon_sym_GT,
- anon_sym_GT_GT,
- anon_sym_AMP,
- anon_sym_PIPE,
- anon_sym_PLUS,
- anon_sym_DASH,
- anon_sym_SLASH,
- anon_sym_LT,
- anon_sym_EQ_EQ,
- anon_sym_BANG_EQ,
- ACTIONS(4350), 28,
- sym__automatic_semicolon,
- sym__ternary_qmark,
- anon_sym_as,
- anon_sym_COMMA,
- anon_sym_RBRACE,
- anon_sym_LPAREN,
- anon_sym_of,
- anon_sym_SEMI,
- anon_sym_LBRACK,
- anon_sym_DOT,
- anon_sym_QMARK_DOT,
- anon_sym_AMP_AMP,
- anon_sym_PIPE_PIPE,
- anon_sym_GT_GT_GT,
- anon_sym_LT_LT,
- anon_sym_CARET,
- anon_sym_PERCENT,
- anon_sym_STAR_STAR,
- anon_sym_LT_EQ,
- anon_sym_EQ_EQ_EQ,
- anon_sym_BANG_EQ_EQ,
- anon_sym_GT_EQ,
- anon_sym_QMARK_QMARK,
- anon_sym_instanceof,
- anon_sym_PLUS_PLUS,
- anon_sym_DASH_DASH,
- anon_sym_BQUOTE,
- anon_sym_satisfies,
- [92158] = 11,
- ACTIONS(1594), 1,
- anon_sym_DQUOTE,
- ACTIONS(1596), 1,
- anon_sym_SQUOTE,
- ACTIONS(4245), 1,
- anon_sym_LBRACK,
- ACTIONS(5560), 1,
- anon_sym_STAR,
- ACTIONS(5692), 1,
- anon_sym_async,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(5694), 2,
- sym_number,
- sym_private_property_identifier,
- ACTIONS(5696), 2,
- anon_sym_get,
- anon_sym_set,
- STATE(3029), 3,
- sym_string,
- sym__property_name,
- sym_computed_property_name,
- ACTIONS(3743), 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(3607), 20,
- anon_sym_export,
- anon_sym_type,
- anon_sym_namespace,
- anon_sym_let,
- anon_sym_new,
- sym_identifier,
- anon_sym_static,
- anon_sym_readonly,
- anon_sym_declare,
- anon_sym_public,
- anon_sym_private,
- anon_sym_protected,
- anon_sym_override,
- anon_sym_module,
- anon_sym_any,
- anon_sym_number,
- anon_sym_boolean,
- anon_sym_string,
- anon_sym_symbol,
- anon_sym_object,
- [92224] = 32,
- ACTIONS(825), 1,
- anon_sym_BQUOTE,
- ACTIONS(3969), 1,
- anon_sym_LPAREN,
- ACTIONS(3971), 1,
- anon_sym_LBRACK,
- ACTIONS(3973), 1,
- anon_sym_DOT,
- ACTIONS(4051), 1,
- anon_sym_as,
- ACTIONS(4055), 1,
- anon_sym_BANG,
- ACTIONS(4059), 1,
- anon_sym_QMARK_DOT,
- ACTIONS(4093), 1,
- anon_sym_satisfies,
- ACTIONS(5276), 1,
- anon_sym_AMP_AMP,
- ACTIONS(5278), 1,
- anon_sym_PIPE_PIPE,
- ACTIONS(5280), 1,
- anon_sym_GT_GT,
- ACTIONS(5284), 1,
- anon_sym_AMP,
- ACTIONS(5286), 1,
- anon_sym_CARET,
- ACTIONS(5288), 1,
- anon_sym_PIPE,
- ACTIONS(5292), 1,
- anon_sym_PERCENT,
- ACTIONS(5294), 1,
- anon_sym_STAR_STAR,
- ACTIONS(5296), 1,
- anon_sym_LT,
- ACTIONS(5304), 1,
- anon_sym_QMARK_QMARK,
- ACTIONS(5306), 1,
- sym__ternary_qmark,
- ACTIONS(5698), 1,
- anon_sym_COLON,
- STATE(1447), 1,
- sym_type_arguments,
- STATE(5080), 1,
- sym_optional_chain,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(4091), 2,
- anon_sym_PLUS_PLUS,
- anon_sym_DASH_DASH,
- ACTIONS(5272), 2,
- anon_sym_STAR,
- anon_sym_SLASH,
- ACTIONS(5274), 2,
- anon_sym_in,
- anon_sym_GT,
- ACTIONS(5282), 2,
- anon_sym_GT_GT_GT,
- anon_sym_LT_LT,
- ACTIONS(5290), 2,
- anon_sym_PLUS,
- anon_sym_DASH,
- ACTIONS(5300), 2,
- anon_sym_EQ_EQ,
- anon_sym_BANG_EQ,
- ACTIONS(5302), 2,
- anon_sym_EQ_EQ_EQ,
- anon_sym_BANG_EQ_EQ,
- STATE(1757), 2,
- sym_template_string,
- sym_arguments,
- ACTIONS(5298), 3,
- anon_sym_LT_EQ,
- anon_sym_GT_EQ,
- anon_sym_instanceof,
- [92332] = 3,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(1889), 13,
- anon_sym_STAR,
- anon_sym_BANG,
- anon_sym_in,
- anon_sym_GT,
- anon_sym_GT_GT,
- anon_sym_AMP,
- anon_sym_PIPE,
- anon_sym_PLUS,
- anon_sym_DASH,
- anon_sym_SLASH,
- anon_sym_LT,
- anon_sym_EQ_EQ,
- anon_sym_BANG_EQ,
- ACTIONS(1891), 28,
- sym__automatic_semicolon,
- sym__ternary_qmark,
- anon_sym_as,
- anon_sym_COMMA,
- anon_sym_RBRACE,
- anon_sym_LPAREN,
- anon_sym_of,
- anon_sym_SEMI,
- anon_sym_LBRACK,
- anon_sym_DOT,
- anon_sym_QMARK_DOT,
- anon_sym_AMP_AMP,
- anon_sym_PIPE_PIPE,
- anon_sym_GT_GT_GT,
- anon_sym_LT_LT,
- anon_sym_CARET,
- anon_sym_PERCENT,
- anon_sym_STAR_STAR,
- anon_sym_LT_EQ,
- anon_sym_EQ_EQ_EQ,
- anon_sym_BANG_EQ_EQ,
- anon_sym_GT_EQ,
- anon_sym_QMARK_QMARK,
- anon_sym_instanceof,
- anon_sym_PLUS_PLUS,
- anon_sym_DASH_DASH,
- anon_sym_BQUOTE,
- anon_sym_satisfies,
- [92382] = 3,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(1899), 13,
- anon_sym_STAR,
- anon_sym_BANG,
- anon_sym_in,
- anon_sym_GT,
- anon_sym_GT_GT,
- anon_sym_AMP,
- anon_sym_PIPE,
- anon_sym_PLUS,
- anon_sym_DASH,
- anon_sym_SLASH,
- anon_sym_LT,
- anon_sym_EQ_EQ,
- anon_sym_BANG_EQ,
- ACTIONS(1901), 28,
- sym__automatic_semicolon,
- sym__ternary_qmark,
- anon_sym_as,
- anon_sym_COMMA,
- anon_sym_RBRACE,
- anon_sym_LPAREN,
- anon_sym_of,
- anon_sym_SEMI,
- anon_sym_LBRACK,
- anon_sym_DOT,
- anon_sym_QMARK_DOT,
- anon_sym_AMP_AMP,
- anon_sym_PIPE_PIPE,
- anon_sym_GT_GT_GT,
- anon_sym_LT_LT,
- anon_sym_CARET,
- anon_sym_PERCENT,
- anon_sym_STAR_STAR,
- anon_sym_LT_EQ,
- anon_sym_EQ_EQ_EQ,
- anon_sym_BANG_EQ_EQ,
- anon_sym_GT_EQ,
- anon_sym_QMARK_QMARK,
- anon_sym_instanceof,
- anon_sym_PLUS_PLUS,
- anon_sym_DASH_DASH,
- anon_sym_BQUOTE,
- anon_sym_satisfies,
- [92432] = 3,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(4626), 13,
- anon_sym_STAR,
- anon_sym_BANG,
- anon_sym_in,
- anon_sym_GT,
- anon_sym_GT_GT,
- anon_sym_AMP,
- anon_sym_PIPE,
- anon_sym_PLUS,
- anon_sym_DASH,
- anon_sym_SLASH,
- anon_sym_LT,
- anon_sym_EQ_EQ,
- anon_sym_BANG_EQ,
- ACTIONS(4628), 28,
- sym__automatic_semicolon,
- sym__ternary_qmark,
- anon_sym_as,
- anon_sym_COMMA,
- anon_sym_RBRACE,
- anon_sym_LPAREN,
- anon_sym_of,
- anon_sym_SEMI,
- anon_sym_LBRACK,
- anon_sym_DOT,
- anon_sym_QMARK_DOT,
- anon_sym_AMP_AMP,
- anon_sym_PIPE_PIPE,
- anon_sym_GT_GT_GT,
- anon_sym_LT_LT,
- anon_sym_CARET,
- anon_sym_PERCENT,
- anon_sym_STAR_STAR,
- anon_sym_LT_EQ,
- anon_sym_EQ_EQ_EQ,
- anon_sym_BANG_EQ_EQ,
- anon_sym_GT_EQ,
- anon_sym_QMARK_QMARK,
- anon_sym_instanceof,
- anon_sym_PLUS_PLUS,
- anon_sym_DASH_DASH,
- anon_sym_BQUOTE,
- anon_sym_satisfies,
- [92482] = 5,
- ACTIONS(1777), 1,
- sym__automatic_semicolon,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(1769), 2,
- anon_sym_else,
- anon_sym_while,
- ACTIONS(1773), 13,
- anon_sym_STAR,
- anon_sym_BANG,
- anon_sym_in,
- anon_sym_GT,
- anon_sym_GT_GT,
- anon_sym_AMP,
- anon_sym_PIPE,
- anon_sym_PLUS,
- anon_sym_DASH,
- anon_sym_SLASH,
- anon_sym_LT,
- anon_sym_EQ_EQ,
- anon_sym_BANG_EQ,
- ACTIONS(1775), 25,
- sym__ternary_qmark,
- anon_sym_as,
- anon_sym_COMMA,
- anon_sym_LPAREN,
- anon_sym_SEMI,
- anon_sym_LBRACK,
- anon_sym_DOT,
- anon_sym_QMARK_DOT,
- anon_sym_AMP_AMP,
- anon_sym_PIPE_PIPE,
- anon_sym_GT_GT_GT,
- anon_sym_LT_LT,
- anon_sym_CARET,
- anon_sym_PERCENT,
- anon_sym_STAR_STAR,
- anon_sym_LT_EQ,
- anon_sym_EQ_EQ_EQ,
- anon_sym_BANG_EQ_EQ,
- anon_sym_GT_EQ,
- anon_sym_QMARK_QMARK,
- anon_sym_instanceof,
- anon_sym_PLUS_PLUS,
- anon_sym_DASH_DASH,
- anon_sym_BQUOTE,
- anon_sym_satisfies,
- [92536] = 15,
- ACTIONS(241), 1,
- anon_sym_COMMA,
- ACTIONS(2275), 1,
- anon_sym_DQUOTE,
- ACTIONS(2277), 1,
- anon_sym_SQUOTE,
- ACTIONS(4243), 1,
- anon_sym_EQ,
- ACTIONS(4634), 1,
- anon_sym_LBRACK,
- ACTIONS(5091), 1,
- anon_sym_STAR,
- ACTIONS(5109), 1,
- anon_sym_RBRACE,
- STATE(4672), 1,
- aux_sym_object_pattern_repeat1,
- STATE(5156), 1,
- aux_sym_object_repeat1,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(2285), 2,
- sym_number,
- sym_private_property_identifier,
- ACTIONS(2313), 2,
- anon_sym_get,
- anon_sym_set,
- STATE(3788), 3,
- sym_string,
- sym__property_name,
- sym_computed_property_name,
- ACTIONS(3743), 4,
- anon_sym_LPAREN,
- anon_sym_COLON,
- anon_sym_LT,
- anon_sym_QMARK,
- ACTIONS(2307), 21,
- anon_sym_export,
- anon_sym_type,
- anon_sym_namespace,
- anon_sym_let,
- anon_sym_async,
- anon_sym_new,
- sym_identifier,
- anon_sym_static,
- anon_sym_readonly,
- anon_sym_declare,
- anon_sym_public,
- anon_sym_private,
- anon_sym_protected,
- anon_sym_override,
- anon_sym_module,
- anon_sym_any,
- anon_sym_number,
- anon_sym_boolean,
- anon_sym_string,
- anon_sym_symbol,
- anon_sym_object,
- [92610] = 16,
- ACTIONS(241), 1,
- anon_sym_COMMA,
- ACTIONS(2275), 1,
- anon_sym_DQUOTE,
- ACTIONS(2277), 1,
- anon_sym_SQUOTE,
- ACTIONS(2309), 1,
- anon_sym_async,
- ACTIONS(4243), 1,
- anon_sym_EQ,
- ACTIONS(4634), 1,
- anon_sym_LBRACK,
- ACTIONS(5091), 1,
- anon_sym_STAR,
- ACTIONS(5109), 1,
- anon_sym_RBRACE,
- STATE(4672), 1,
- aux_sym_object_pattern_repeat1,
- STATE(5156), 1,
- aux_sym_object_repeat1,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(2285), 2,
- sym_number,
- sym_private_property_identifier,
- ACTIONS(2313), 2,
- anon_sym_get,
- anon_sym_set,
- STATE(3788), 3,
- sym_string,
- sym__property_name,
- sym_computed_property_name,
- ACTIONS(3743), 4,
- anon_sym_LPAREN,
- anon_sym_COLON,
- anon_sym_LT,
- anon_sym_QMARK,
- ACTIONS(2307), 20,
- anon_sym_export,
- anon_sym_type,
- anon_sym_namespace,
- anon_sym_let,
- anon_sym_new,
- sym_identifier,
- anon_sym_static,
- anon_sym_readonly,
- anon_sym_declare,
- anon_sym_public,
- anon_sym_private,
- anon_sym_protected,
- anon_sym_override,
- anon_sym_module,
- anon_sym_any,
- anon_sym_number,
- anon_sym_boolean,
- anon_sym_string,
- anon_sym_symbol,
- anon_sym_object,
- [92686] = 3,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(4928), 13,
- anon_sym_STAR,
- anon_sym_BANG,
- anon_sym_in,
- anon_sym_GT,
- anon_sym_GT_GT,
- anon_sym_AMP,
- anon_sym_PIPE,
- anon_sym_PLUS,
- anon_sym_DASH,
- anon_sym_SLASH,
- anon_sym_LT,
- anon_sym_EQ_EQ,
- anon_sym_BANG_EQ,
- ACTIONS(4930), 28,
- sym__automatic_semicolon,
- sym__ternary_qmark,
- anon_sym_as,
- anon_sym_COMMA,
- anon_sym_RBRACE,
- anon_sym_LPAREN,
- anon_sym_of,
- anon_sym_SEMI,
- anon_sym_LBRACK,
- anon_sym_DOT,
- anon_sym_QMARK_DOT,
- anon_sym_AMP_AMP,
- anon_sym_PIPE_PIPE,
- anon_sym_GT_GT_GT,
- anon_sym_LT_LT,
- anon_sym_CARET,
- anon_sym_PERCENT,
- anon_sym_STAR_STAR,
- anon_sym_LT_EQ,
- anon_sym_EQ_EQ_EQ,
- anon_sym_BANG_EQ_EQ,
- anon_sym_GT_EQ,
- anon_sym_QMARK_QMARK,
- anon_sym_instanceof,
- anon_sym_PLUS_PLUS,
- anon_sym_DASH_DASH,
- anon_sym_BQUOTE,
- anon_sym_satisfies,
- [92736] = 17,
- ACTIONS(2275), 1,
- anon_sym_DQUOTE,
- ACTIONS(2277), 1,
- anon_sym_SQUOTE,
- ACTIONS(2309), 1,
- anon_sym_async,
- ACTIONS(2311), 1,
- anon_sym_readonly,
- ACTIONS(2315), 1,
- anon_sym_override,
- ACTIONS(4634), 1,
- anon_sym_LBRACK,
- ACTIONS(5091), 1,
- anon_sym_STAR,
- ACTIONS(5644), 1,
- anon_sym_COMMA,
- ACTIONS(5700), 1,
- anon_sym_RBRACE,
- STATE(2719), 1,
- sym_override_modifier,
- STATE(5124), 1,
- aux_sym_object_repeat1,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(2285), 2,
- sym_number,
- sym_private_property_identifier,
- ACTIONS(2313), 2,
- anon_sym_get,
- anon_sym_set,
- STATE(3788), 3,
- sym_string,
- sym__property_name,
- sym_computed_property_name,
- ACTIONS(3743), 4,
- anon_sym_LPAREN,
- anon_sym_COLON,
- anon_sym_LT,
- anon_sym_QMARK,
- ACTIONS(2307), 18,
- anon_sym_export,
- anon_sym_type,
- anon_sym_namespace,
- anon_sym_let,
- anon_sym_new,
- sym_identifier,
- anon_sym_static,
- anon_sym_declare,
- anon_sym_public,
- anon_sym_private,
- anon_sym_protected,
- anon_sym_module,
- anon_sym_any,
- anon_sym_number,
- anon_sym_boolean,
- anon_sym_string,
- anon_sym_symbol,
- anon_sym_object,
- [92813] = 13,
- ACTIONS(241), 1,
- anon_sym_COMMA,
- ACTIONS(2275), 1,
- anon_sym_DQUOTE,
- ACTIONS(2277), 1,
- anon_sym_SQUOTE,
- ACTIONS(4243), 1,
- anon_sym_EQ,
- ACTIONS(4634), 1,
- anon_sym_LBRACK,
- ACTIONS(5109), 1,
- anon_sym_RBRACE,
- STATE(4672), 1,
- aux_sym_object_pattern_repeat1,
- STATE(5156), 1,
- aux_sym_object_repeat1,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(2285), 2,
- sym_number,
- sym_private_property_identifier,
- STATE(3788), 3,
- sym_string,
- sym__property_name,
- sym_computed_property_name,
- ACTIONS(3743), 4,
- anon_sym_LPAREN,
- anon_sym_COLON,
- anon_sym_LT,
- anon_sym_QMARK,
- ACTIONS(2307), 23,
- anon_sym_export,
- anon_sym_type,
- anon_sym_namespace,
- anon_sym_let,
- anon_sym_async,
- anon_sym_new,
- sym_identifier,
- anon_sym_static,
- anon_sym_readonly,
- anon_sym_get,
- anon_sym_set,
- anon_sym_declare,
- anon_sym_public,
- anon_sym_private,
- anon_sym_protected,
- anon_sym_override,
- anon_sym_module,
- anon_sym_any,
- anon_sym_number,
- anon_sym_boolean,
- anon_sym_string,
- anon_sym_symbol,
- anon_sym_object,
- [92882] = 4,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(2003), 6,
- anon_sym_STAR,
- anon_sym_LBRACK,
- anon_sym_DQUOTE,
- anon_sym_SQUOTE,
- sym_number,
- sym_private_property_identifier,
- ACTIONS(3743), 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(2001), 23,
- anon_sym_export,
- anon_sym_type,
- anon_sym_namespace,
- anon_sym_let,
- anon_sym_async,
- anon_sym_new,
- sym_identifier,
- anon_sym_static,
- anon_sym_readonly,
- anon_sym_get,
- anon_sym_set,
- anon_sym_declare,
- anon_sym_public,
- anon_sym_private,
- anon_sym_protected,
- anon_sym_override,
- anon_sym_module,
- anon_sym_any,
- anon_sym_number,
- anon_sym_boolean,
- anon_sym_string,
- anon_sym_symbol,
- anon_sym_object,
- [92933] = 6,
- ACTIONS(4678), 1,
- anon_sym_EQ,
- ACTIONS(4987), 1,
- anon_sym_COLON,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(4682), 2,
- anon_sym_COMMA,
- anon_sym_RBRACK,
- ACTIONS(4676), 13,
- anon_sym_STAR,
- anon_sym_BANG,
- anon_sym_in,
- anon_sym_GT,
- anon_sym_GT_GT,
- anon_sym_AMP,
- anon_sym_PIPE,
- anon_sym_PLUS,
- anon_sym_DASH,
- anon_sym_SLASH,
- anon_sym_LT,
- anon_sym_EQ_EQ,
- anon_sym_BANG_EQ,
- ACTIONS(4680), 23,
- sym__ternary_qmark,
- anon_sym_as,
- anon_sym_LPAREN,
- anon_sym_LBRACK,
- anon_sym_DOT,
- anon_sym_QMARK_DOT,
- anon_sym_AMP_AMP,
- anon_sym_PIPE_PIPE,
- anon_sym_GT_GT_GT,
- anon_sym_LT_LT,
- anon_sym_CARET,
- anon_sym_PERCENT,
- anon_sym_STAR_STAR,
- anon_sym_LT_EQ,
- anon_sym_EQ_EQ_EQ,
- anon_sym_BANG_EQ_EQ,
- anon_sym_GT_EQ,
- anon_sym_QMARK_QMARK,
- anon_sym_instanceof,
- anon_sym_PLUS_PLUS,
- anon_sym_DASH_DASH,
- anon_sym_BQUOTE,
- anon_sym_satisfies,
- [92988] = 8,
- ACTIONS(2275), 1,
- anon_sym_DQUOTE,
- ACTIONS(2277), 1,
- anon_sym_SQUOTE,
- ACTIONS(4634), 1,
- anon_sym_LBRACK,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(5552), 2,
- sym_number,
- sym_private_property_identifier,
- STATE(3767), 3,
- sym_string,
- sym__property_name,
- sym_computed_property_name,
- ACTIONS(3743), 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(2307), 23,
- anon_sym_export,
- anon_sym_type,
- anon_sym_namespace,
- anon_sym_let,
- anon_sym_async,
- anon_sym_new,
- sym_identifier,
- anon_sym_static,
- anon_sym_readonly,
- anon_sym_get,
- anon_sym_set,
- anon_sym_declare,
- anon_sym_public,
- anon_sym_private,
- anon_sym_protected,
- anon_sym_override,
- anon_sym_module,
- anon_sym_any,
- anon_sym_number,
- anon_sym_boolean,
- anon_sym_string,
- anon_sym_symbol,
- anon_sym_object,
- [93047] = 13,
- ACTIONS(241), 1,
- anon_sym_COMMA,
- ACTIONS(727), 1,
- anon_sym_RBRACE,
- ACTIONS(2275), 1,
- anon_sym_DQUOTE,
- ACTIONS(2277), 1,
- anon_sym_SQUOTE,
- ACTIONS(4243), 1,
- anon_sym_EQ,
- ACTIONS(4634), 1,
- anon_sym_LBRACK,
- STATE(4671), 1,
- aux_sym_object_repeat1,
- STATE(4672), 1,
- aux_sym_object_pattern_repeat1,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(2285), 2,
- sym_number,
- sym_private_property_identifier,
- STATE(3788), 3,
- sym_string,
- sym__property_name,
- sym_computed_property_name,
- ACTIONS(3743), 4,
- anon_sym_LPAREN,
- anon_sym_COLON,
- anon_sym_LT,
- anon_sym_QMARK,
- ACTIONS(2307), 23,
- anon_sym_export,
- anon_sym_type,
- anon_sym_namespace,
- anon_sym_let,
- anon_sym_async,
- anon_sym_new,
- sym_identifier,
- anon_sym_static,
- anon_sym_readonly,
- anon_sym_get,
- anon_sym_set,
- anon_sym_declare,
- anon_sym_public,
- anon_sym_private,
- anon_sym_protected,
- anon_sym_override,
- anon_sym_module,
- anon_sym_any,
- anon_sym_number,
- anon_sym_boolean,
- anon_sym_string,
- anon_sym_symbol,
- anon_sym_object,
- [93116] = 8,
- ACTIONS(1594), 1,
- anon_sym_DQUOTE,
- ACTIONS(1596), 1,
- anon_sym_SQUOTE,
- ACTIONS(4245), 1,
- anon_sym_LBRACK,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(5702), 2,
- sym_number,
- sym_private_property_identifier,
- STATE(3366), 3,
- sym_string,
- sym__property_name,
- sym_computed_property_name,
- ACTIONS(3743), 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(3607), 23,
- anon_sym_export,
- anon_sym_type,
- anon_sym_namespace,
- anon_sym_let,
- anon_sym_async,
- anon_sym_new,
- sym_identifier,
- anon_sym_static,
- anon_sym_readonly,
- anon_sym_get,
- anon_sym_set,
- anon_sym_declare,
- anon_sym_public,
- anon_sym_private,
- anon_sym_protected,
- anon_sym_override,
- anon_sym_module,
- anon_sym_any,
- anon_sym_number,
- anon_sym_boolean,
- anon_sym_string,
- anon_sym_symbol,
- anon_sym_object,
- [93175] = 13,
- ACTIONS(241), 1,
- anon_sym_COMMA,
- ACTIONS(2275), 1,
- anon_sym_DQUOTE,
- ACTIONS(2277), 1,
- anon_sym_SQUOTE,
- ACTIONS(4243), 1,
- anon_sym_EQ,
- ACTIONS(4634), 1,
- anon_sym_LBRACK,
- ACTIONS(5198), 1,
- anon_sym_RBRACE,
- STATE(4671), 1,
- aux_sym_object_repeat1,
- STATE(4672), 1,
- aux_sym_object_pattern_repeat1,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(2285), 2,
- sym_number,
- sym_private_property_identifier,
- STATE(3788), 3,
- sym_string,
- sym__property_name,
- sym_computed_property_name,
- ACTIONS(3743), 4,
- anon_sym_LPAREN,
- anon_sym_COLON,
- anon_sym_LT,
- anon_sym_QMARK,
- ACTIONS(2307), 23,
- anon_sym_export,
- anon_sym_type,
- anon_sym_namespace,
- anon_sym_let,
- anon_sym_async,
- anon_sym_new,
- sym_identifier,
- anon_sym_static,
- anon_sym_readonly,
- anon_sym_get,
- anon_sym_set,
- anon_sym_declare,
- anon_sym_public,
- anon_sym_private,
- anon_sym_protected,
- anon_sym_override,
- anon_sym_module,
- anon_sym_any,
- anon_sym_number,
- anon_sym_boolean,
- anon_sym_string,
- anon_sym_symbol,
- anon_sym_object,
- [93244] = 8,
- ACTIONS(2275), 1,
- anon_sym_DQUOTE,
- ACTIONS(2277), 1,
- anon_sym_SQUOTE,
- ACTIONS(4634), 1,
- anon_sym_LBRACK,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(5526), 2,
- sym_number,
- sym_private_property_identifier,
- STATE(3842), 3,
- sym_string,
- sym__property_name,
- sym_computed_property_name,
- ACTIONS(3743), 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(2307), 23,
- anon_sym_export,
- anon_sym_type,
- anon_sym_namespace,
- anon_sym_let,
- anon_sym_async,
- anon_sym_new,
- sym_identifier,
- anon_sym_static,
- anon_sym_readonly,
- anon_sym_get,
- anon_sym_set,
- anon_sym_declare,
- anon_sym_public,
- anon_sym_private,
- anon_sym_protected,
- anon_sym_override,
- anon_sym_module,
- anon_sym_any,
- anon_sym_number,
- anon_sym_boolean,
- anon_sym_string,
- anon_sym_symbol,
- anon_sym_object,
- [93303] = 7,
- ACTIONS(1726), 1,
- anon_sym_EQ,
- ACTIONS(2331), 1,
- anon_sym_extends,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(4414), 2,
- anon_sym_RBRACE,
- anon_sym_LBRACK,
- ACTIONS(4417), 2,
- anon_sym_AMP,
- anon_sym_PIPE,
- ACTIONS(1724), 11,
- anon_sym_STAR,
- anon_sym_BANG,
- anon_sym_in,
- anon_sym_GT,
- anon_sym_GT_GT,
- anon_sym_PLUS,
- anon_sym_DASH,
- anon_sym_SLASH,
- anon_sym_LT,
- anon_sym_EQ_EQ,
- anon_sym_BANG_EQ,
- ACTIONS(1728), 23,
- sym__ternary_qmark,
- anon_sym_as,
- anon_sym_COMMA,
- anon_sym_LPAREN,
- anon_sym_DOT,
- anon_sym_QMARK_DOT,
- anon_sym_AMP_AMP,
- anon_sym_PIPE_PIPE,
- anon_sym_GT_GT_GT,
- anon_sym_LT_LT,
- anon_sym_CARET,
- anon_sym_PERCENT,
- anon_sym_STAR_STAR,
- anon_sym_LT_EQ,
- anon_sym_EQ_EQ_EQ,
- anon_sym_BANG_EQ_EQ,
- anon_sym_GT_EQ,
- anon_sym_QMARK_QMARK,
- anon_sym_instanceof,
- anon_sym_PLUS_PLUS,
- anon_sym_DASH_DASH,
- anon_sym_BQUOTE,
- anon_sym_satisfies,
- [93360] = 8,
- ACTIONS(2275), 1,
- anon_sym_DQUOTE,
- ACTIONS(2277), 1,
- anon_sym_SQUOTE,
- ACTIONS(4634), 1,
- anon_sym_LBRACK,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(5506), 2,
- sym_number,
- sym_private_property_identifier,
- STATE(3747), 3,
- sym_string,
- sym__property_name,
- sym_computed_property_name,
- ACTIONS(3743), 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(2307), 23,
- anon_sym_export,
- anon_sym_type,
- anon_sym_namespace,
- anon_sym_let,
- anon_sym_async,
- anon_sym_new,
- sym_identifier,
- anon_sym_static,
- anon_sym_readonly,
- anon_sym_get,
- anon_sym_set,
- anon_sym_declare,
- anon_sym_public,
- anon_sym_private,
- anon_sym_protected,
- anon_sym_override,
- anon_sym_module,
- anon_sym_any,
- anon_sym_number,
- anon_sym_boolean,
- anon_sym_string,
- anon_sym_symbol,
- anon_sym_object,
- [93419] = 8,
- ACTIONS(2275), 1,
- anon_sym_DQUOTE,
- ACTIONS(2277), 1,
- anon_sym_SQUOTE,
- ACTIONS(4634), 1,
- anon_sym_LBRACK,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(5375), 2,
- sym_number,
- sym_private_property_identifier,
- STATE(3731), 3,
- sym_string,
- sym__property_name,
- sym_computed_property_name,
- ACTIONS(3743), 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(2307), 23,
- anon_sym_export,
- anon_sym_type,
- anon_sym_namespace,
- anon_sym_let,
- anon_sym_async,
- anon_sym_new,
- sym_identifier,
- anon_sym_static,
- anon_sym_readonly,
- anon_sym_get,
- anon_sym_set,
- anon_sym_declare,
- anon_sym_public,
- anon_sym_private,
- anon_sym_protected,
- anon_sym_override,
- anon_sym_module,
- anon_sym_any,
- anon_sym_number,
- anon_sym_boolean,
- anon_sym_string,
- anon_sym_symbol,
- anon_sym_object,
- [93478] = 7,
- ACTIONS(4392), 1,
- anon_sym_extends,
- ACTIONS(4440), 1,
- anon_sym_EQ,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(4444), 2,
- anon_sym_RBRACE,
- anon_sym_LBRACK,
- ACTIONS(4447), 2,
- anon_sym_AMP,
- anon_sym_PIPE,
- ACTIONS(4438), 11,
- anon_sym_STAR,
- anon_sym_BANG,
- anon_sym_in,
- anon_sym_GT,
- anon_sym_GT_GT,
- anon_sym_PLUS,
- anon_sym_DASH,
- anon_sym_SLASH,
- anon_sym_LT,
- anon_sym_EQ_EQ,
- anon_sym_BANG_EQ,
- ACTIONS(4442), 23,
- sym__ternary_qmark,
- anon_sym_as,
- anon_sym_COMMA,
- anon_sym_LPAREN,
- anon_sym_DOT,
- anon_sym_QMARK_DOT,
- anon_sym_AMP_AMP,
- anon_sym_PIPE_PIPE,
- anon_sym_GT_GT_GT,
- anon_sym_LT_LT,
- anon_sym_CARET,
- anon_sym_PERCENT,
- anon_sym_STAR_STAR,
- anon_sym_LT_EQ,
- anon_sym_EQ_EQ_EQ,
- anon_sym_BANG_EQ_EQ,
- anon_sym_GT_EQ,
- anon_sym_QMARK_QMARK,
- anon_sym_instanceof,
- anon_sym_PLUS_PLUS,
- anon_sym_DASH_DASH,
- anon_sym_BQUOTE,
- anon_sym_satisfies,
- [93535] = 6,
- ACTIONS(4697), 1,
- anon_sym_LBRACK,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(4041), 2,
- anon_sym_COMMA,
- anon_sym_extends,
- ACTIONS(4700), 3,
- anon_sym_GT,
- anon_sym_AMP,
- anon_sym_PIPE,
- ACTIONS(3400), 10,
- anon_sym_STAR,
- anon_sym_BANG,
- anon_sym_in,
- anon_sym_GT_GT,
- anon_sym_PLUS,
- anon_sym_DASH,
- anon_sym_SLASH,
- anon_sym_LT,
- anon_sym_EQ_EQ,
- anon_sym_BANG_EQ,
- ACTIONS(3404), 24,
- sym__automatic_semicolon,
- sym__ternary_qmark,
- anon_sym_as,
- anon_sym_LPAREN,
- anon_sym_SEMI,
- anon_sym_DOT,
- anon_sym_QMARK_DOT,
- anon_sym_AMP_AMP,
- anon_sym_PIPE_PIPE,
- anon_sym_GT_GT_GT,
- anon_sym_LT_LT,
- anon_sym_CARET,
- anon_sym_PERCENT,
- anon_sym_STAR_STAR,
- anon_sym_LT_EQ,
- anon_sym_EQ_EQ_EQ,
- anon_sym_BANG_EQ_EQ,
- anon_sym_GT_EQ,
- anon_sym_QMARK_QMARK,
- anon_sym_instanceof,
- anon_sym_PLUS_PLUS,
- anon_sym_DASH_DASH,
- anon_sym_BQUOTE,
- anon_sym_satisfies,
- [93590] = 7,
- ACTIONS(3402), 1,
- anon_sym_EQ,
- ACTIONS(4330), 1,
- anon_sym_extends,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(4691), 2,
- anon_sym_RBRACE,
- anon_sym_LBRACK,
- ACTIONS(4694), 2,
- anon_sym_AMP,
- anon_sym_PIPE,
- ACTIONS(3400), 11,
- anon_sym_STAR,
- anon_sym_BANG,
- anon_sym_in,
- anon_sym_GT,
- anon_sym_GT_GT,
- anon_sym_PLUS,
- anon_sym_DASH,
- anon_sym_SLASH,
- anon_sym_LT,
- anon_sym_EQ_EQ,
- anon_sym_BANG_EQ,
- ACTIONS(3404), 23,
- sym__ternary_qmark,
- anon_sym_as,
- anon_sym_COMMA,
- anon_sym_LPAREN,
- anon_sym_DOT,
- anon_sym_QMARK_DOT,
- anon_sym_AMP_AMP,
- anon_sym_PIPE_PIPE,
- anon_sym_GT_GT_GT,
- anon_sym_LT_LT,
- anon_sym_CARET,
- anon_sym_PERCENT,
- anon_sym_STAR_STAR,
- anon_sym_LT_EQ,
- anon_sym_EQ_EQ_EQ,
- anon_sym_BANG_EQ_EQ,
- anon_sym_GT_EQ,
- anon_sym_QMARK_QMARK,
- anon_sym_instanceof,
- anon_sym_PLUS_PLUS,
- anon_sym_DASH_DASH,
- anon_sym_BQUOTE,
- anon_sym_satisfies,
- [93647] = 13,
- ACTIONS(241), 1,
- anon_sym_COMMA,
- ACTIONS(702), 1,
- anon_sym_RBRACE,
- ACTIONS(2275), 1,
- anon_sym_DQUOTE,
- ACTIONS(2277), 1,
- anon_sym_SQUOTE,
- ACTIONS(4243), 1,
- anon_sym_EQ,
- ACTIONS(4634), 1,
- anon_sym_LBRACK,
- STATE(4672), 1,
- aux_sym_object_pattern_repeat1,
- STATE(5156), 1,
- aux_sym_object_repeat1,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(2285), 2,
- sym_number,
- sym_private_property_identifier,
- STATE(3788), 3,
- sym_string,
- sym__property_name,
- sym_computed_property_name,
- ACTIONS(3743), 4,
- anon_sym_LPAREN,
- anon_sym_COLON,
- anon_sym_LT,
- anon_sym_QMARK,
- ACTIONS(2307), 23,
- anon_sym_export,
- anon_sym_type,
- anon_sym_namespace,
- anon_sym_let,
- anon_sym_async,
- anon_sym_new,
- sym_identifier,
- anon_sym_static,
- anon_sym_readonly,
- anon_sym_get,
- anon_sym_set,
- anon_sym_declare,
- anon_sym_public,
- anon_sym_private,
- anon_sym_protected,
- anon_sym_override,
- anon_sym_module,
- anon_sym_any,
- anon_sym_number,
- anon_sym_boolean,
- anon_sym_string,
- anon_sym_symbol,
- anon_sym_object,
- [93716] = 13,
- ACTIONS(825), 1,
- anon_sym_BQUOTE,
- ACTIONS(3969), 1,
- anon_sym_LPAREN,
- ACTIONS(3971), 1,
- anon_sym_LBRACK,
- ACTIONS(3973), 1,
- anon_sym_DOT,
- ACTIONS(4059), 1,
- anon_sym_QMARK_DOT,
- ACTIONS(5704), 1,
- anon_sym_LT,
- STATE(1447), 1,
- sym_type_arguments,
- STATE(5080), 1,
- sym_optional_chain,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(4091), 2,
- anon_sym_PLUS_PLUS,
- anon_sym_DASH_DASH,
- STATE(1757), 2,
- sym_template_string,
- sym_arguments,
- ACTIONS(4170), 12,
- anon_sym_STAR,
- anon_sym_BANG,
- anon_sym_in,
- anon_sym_GT,
- anon_sym_GT_GT,
- anon_sym_AMP,
- anon_sym_PIPE,
- anon_sym_PLUS,
- anon_sym_DASH,
- anon_sym_SLASH,
- anon_sym_EQ_EQ,
- anon_sym_BANG_EQ,
- ACTIONS(4172), 16,
- sym__ternary_qmark,
- anon_sym_as,
- anon_sym_AMP_AMP,
- anon_sym_PIPE_PIPE,
- anon_sym_GT_GT_GT,
- anon_sym_LT_LT,
- anon_sym_CARET,
- anon_sym_PERCENT,
- anon_sym_STAR_STAR,
- anon_sym_LT_EQ,
- anon_sym_EQ_EQ_EQ,
- anon_sym_BANG_EQ_EQ,
- anon_sym_GT_EQ,
- anon_sym_QMARK_QMARK,
- anon_sym_instanceof,
- anon_sym_satisfies,
- [93785] = 16,
- ACTIONS(825), 1,
- anon_sym_BQUOTE,
- ACTIONS(3969), 1,
- anon_sym_LPAREN,
- ACTIONS(3971), 1,
- anon_sym_LBRACK,
- ACTIONS(3973), 1,
- anon_sym_DOT,
- ACTIONS(4051), 1,
- anon_sym_as,
- ACTIONS(4055), 1,
- anon_sym_BANG,
- ACTIONS(4059), 1,
- anon_sym_QMARK_DOT,
- ACTIONS(4093), 1,
- anon_sym_satisfies,
- ACTIONS(5707), 1,
- anon_sym_LT,
- STATE(1447), 1,
- sym_type_arguments,
- STATE(5080), 1,
- sym_optional_chain,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(4091), 2,
- anon_sym_PLUS_PLUS,
- anon_sym_DASH_DASH,
- STATE(1757), 2,
- sym_template_string,
- sym_arguments,
- ACTIONS(4199), 11,
- anon_sym_STAR,
- anon_sym_in,
- anon_sym_GT,
- anon_sym_GT_GT,
- anon_sym_AMP,
- anon_sym_PIPE,
- anon_sym_PLUS,
- anon_sym_DASH,
- anon_sym_SLASH,
- anon_sym_EQ_EQ,
- anon_sym_BANG_EQ,
- ACTIONS(4201), 14,
- sym__ternary_qmark,
- anon_sym_AMP_AMP,
- anon_sym_PIPE_PIPE,
- anon_sym_GT_GT_GT,
- anon_sym_LT_LT,
- anon_sym_CARET,
- anon_sym_PERCENT,
- anon_sym_STAR_STAR,
- anon_sym_LT_EQ,
- anon_sym_EQ_EQ_EQ,
- anon_sym_BANG_EQ_EQ,
- anon_sym_GT_EQ,
- anon_sym_QMARK_QMARK,
- anon_sym_instanceof,
- [93860] = 31,
- ACTIONS(825), 1,
- anon_sym_BQUOTE,
- ACTIONS(3969), 1,
- anon_sym_LPAREN,
- ACTIONS(3971), 1,
- anon_sym_LBRACK,
- ACTIONS(3973), 1,
- anon_sym_DOT,
- ACTIONS(4051), 1,
- anon_sym_as,
- ACTIONS(4055), 1,
- anon_sym_BANG,
- ACTIONS(4059), 1,
- anon_sym_QMARK_DOT,
- ACTIONS(4093), 1,
- anon_sym_satisfies,
- ACTIONS(5714), 1,
- anon_sym_AMP_AMP,
- ACTIONS(5716), 1,
- anon_sym_PIPE_PIPE,
- ACTIONS(5718), 1,
- anon_sym_GT_GT,
- ACTIONS(5722), 1,
- anon_sym_AMP,
- ACTIONS(5724), 1,
- anon_sym_CARET,
- ACTIONS(5726), 1,
- anon_sym_PIPE,
- ACTIONS(5730), 1,
- anon_sym_PERCENT,
- ACTIONS(5732), 1,
- anon_sym_STAR_STAR,
- ACTIONS(5734), 1,
- anon_sym_LT,
- ACTIONS(5742), 1,
- anon_sym_QMARK_QMARK,
- ACTIONS(5744), 1,
- sym__ternary_qmark,
- STATE(1447), 1,
- sym_type_arguments,
- STATE(5080), 1,
- sym_optional_chain,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(4091), 2,
- anon_sym_PLUS_PLUS,
- anon_sym_DASH_DASH,
- ACTIONS(5710), 2,
- anon_sym_STAR,
- anon_sym_SLASH,
- ACTIONS(5712), 2,
- anon_sym_in,
- anon_sym_GT,
- ACTIONS(5720), 2,
- anon_sym_GT_GT_GT,
- anon_sym_LT_LT,
- ACTIONS(5728), 2,
- anon_sym_PLUS,
- anon_sym_DASH,
- ACTIONS(5738), 2,
- anon_sym_EQ_EQ,
- anon_sym_BANG_EQ,
- ACTIONS(5740), 2,
- anon_sym_EQ_EQ_EQ,
- anon_sym_BANG_EQ_EQ,
- STATE(1757), 2,
- sym_template_string,
- sym_arguments,
- ACTIONS(5736), 3,
- anon_sym_LT_EQ,
- anon_sym_GT_EQ,
- anon_sym_instanceof,
- [93965] = 12,
- ACTIONS(825), 1,
- anon_sym_BQUOTE,
- ACTIONS(3969), 1,
- anon_sym_LPAREN,
- ACTIONS(3971), 1,
- anon_sym_LBRACK,
- ACTIONS(3973), 1,
- anon_sym_DOT,
- ACTIONS(4059), 1,
- anon_sym_QMARK_DOT,
- ACTIONS(5746), 1,
- anon_sym_LT,
- STATE(1447), 1,
- sym_type_arguments,
- STATE(5080), 1,
- sym_optional_chain,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- STATE(1757), 2,
- sym_template_string,
- sym_arguments,
- ACTIONS(4230), 12,
- anon_sym_STAR,
- anon_sym_BANG,
- anon_sym_in,
- anon_sym_GT,
- anon_sym_GT_GT,
- anon_sym_AMP,
- anon_sym_PIPE,
- anon_sym_PLUS,
- anon_sym_DASH,
- anon_sym_SLASH,
- anon_sym_EQ_EQ,
- anon_sym_BANG_EQ,
- ACTIONS(4232), 18,
- sym__ternary_qmark,
- anon_sym_as,
- anon_sym_AMP_AMP,
- anon_sym_PIPE_PIPE,
- anon_sym_GT_GT_GT,
- anon_sym_LT_LT,
- anon_sym_CARET,
- anon_sym_PERCENT,
- anon_sym_STAR_STAR,
- anon_sym_LT_EQ,
- anon_sym_EQ_EQ_EQ,
- anon_sym_BANG_EQ_EQ,
- anon_sym_GT_EQ,
- anon_sym_QMARK_QMARK,
- anon_sym_instanceof,
- anon_sym_PLUS_PLUS,
- anon_sym_DASH_DASH,
- anon_sym_satisfies,
- [94032] = 7,
- ACTIONS(3440), 1,
- anon_sym_DOT,
- ACTIONS(3442), 1,
- anon_sym_QMARK_DOT,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(3418), 3,
- anon_sym_AMP,
- anon_sym_PIPE,
- anon_sym_QMARK,
- ACTIONS(3406), 4,
- anon_sym_COMMA,
- anon_sym_LBRACK,
- anon_sym_RBRACK,
- anon_sym_extends,
- ACTIONS(3400), 11,
- anon_sym_STAR,
- anon_sym_BANG,
- anon_sym_in,
- anon_sym_GT,
- anon_sym_GT_GT,
- anon_sym_PLUS,
- anon_sym_DASH,
- anon_sym_SLASH,
- anon_sym_LT,
- anon_sym_EQ_EQ,
- anon_sym_BANG_EQ,
- ACTIONS(3404), 20,
- sym__ternary_qmark,
- 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,
- anon_sym_satisfies,
- [94089] = 5,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(4402), 3,
- anon_sym_AMP,
- anon_sym_PIPE,
- anon_sym_QMARK,
- ACTIONS(4404), 4,
- anon_sym_COMMA,
- anon_sym_LBRACK,
- anon_sym_RBRACK,
- anon_sym_extends,
- ACTIONS(3400), 11,
- anon_sym_STAR,
- anon_sym_BANG,
- anon_sym_in,
- anon_sym_GT,
- anon_sym_GT_GT,
- anon_sym_PLUS,
- anon_sym_DASH,
- anon_sym_SLASH,
- anon_sym_LT,
- anon_sym_EQ_EQ,
- anon_sym_BANG_EQ,
- ACTIONS(3404), 22,
- sym__ternary_qmark,
- anon_sym_as,
- anon_sym_LPAREN,
- anon_sym_DOT,
- anon_sym_QMARK_DOT,
- anon_sym_AMP_AMP,
- anon_sym_PIPE_PIPE,
- anon_sym_GT_GT_GT,
- anon_sym_LT_LT,
- anon_sym_CARET,
- anon_sym_PERCENT,
- anon_sym_STAR_STAR,
- anon_sym_LT_EQ,
- anon_sym_EQ_EQ_EQ,
- anon_sym_BANG_EQ_EQ,
- anon_sym_GT_EQ,
- anon_sym_QMARK_QMARK,
- anon_sym_instanceof,
- anon_sym_PLUS_PLUS,
- anon_sym_DASH_DASH,
- anon_sym_BQUOTE,
- anon_sym_satisfies,
- [94142] = 31,
- ACTIONS(89), 1,
- anon_sym_BQUOTE,
- ACTIONS(4051), 1,
- anon_sym_as,
- ACTIONS(4059), 1,
- anon_sym_QMARK_DOT,
- ACTIONS(4093), 1,
- anon_sym_satisfies,
- ACTIONS(4519), 1,
- anon_sym_LPAREN,
- ACTIONS(4523), 1,
- anon_sym_LBRACK,
- ACTIONS(4525), 1,
- anon_sym_DOT,
- ACTIONS(4562), 1,
- anon_sym_BANG,
- ACTIONS(5714), 1,
- anon_sym_AMP_AMP,
- ACTIONS(5716), 1,
- anon_sym_PIPE_PIPE,
- ACTIONS(5718), 1,
- anon_sym_GT_GT,
- ACTIONS(5722), 1,
- anon_sym_AMP,
- ACTIONS(5724), 1,
- anon_sym_CARET,
- ACTIONS(5726), 1,
- anon_sym_PIPE,
- ACTIONS(5730), 1,
- anon_sym_PERCENT,
- ACTIONS(5732), 1,
- anon_sym_STAR_STAR,
- ACTIONS(5734), 1,
- anon_sym_LT,
- ACTIONS(5742), 1,
- anon_sym_QMARK_QMARK,
- ACTIONS(5744), 1,
- sym__ternary_qmark,
- STATE(2519), 1,
- sym_type_arguments,
- STATE(4772), 1,
- sym_optional_chain,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(4091), 2,
- anon_sym_PLUS_PLUS,
- anon_sym_DASH_DASH,
- ACTIONS(5710), 2,
- anon_sym_STAR,
- anon_sym_SLASH,
- ACTIONS(5712), 2,
- anon_sym_in,
- anon_sym_GT,
- ACTIONS(5720), 2,
- anon_sym_GT_GT_GT,
- anon_sym_LT_LT,
- ACTIONS(5728), 2,
- anon_sym_PLUS,
- anon_sym_DASH,
- ACTIONS(5738), 2,
- anon_sym_EQ_EQ,
- anon_sym_BANG_EQ,
- ACTIONS(5740), 2,
- anon_sym_EQ_EQ_EQ,
- anon_sym_BANG_EQ_EQ,
- STATE(2133), 2,
- sym_template_string,
- sym_arguments,
- ACTIONS(5736), 3,
- anon_sym_LT_EQ,
- anon_sym_GT_EQ,
- anon_sym_instanceof,
- [94247] = 8,
- ACTIONS(2275), 1,
- anon_sym_DQUOTE,
- ACTIONS(2277), 1,
- anon_sym_SQUOTE,
- ACTIONS(4634), 1,
- anon_sym_LBRACK,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(5385), 2,
- sym_number,
- sym_private_property_identifier,
- STATE(3824), 3,
- sym_string,
- sym__property_name,
- sym_computed_property_name,
- ACTIONS(3743), 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(2307), 23,
- anon_sym_export,
- anon_sym_type,
- anon_sym_namespace,
- anon_sym_let,
- anon_sym_async,
- anon_sym_new,
- sym_identifier,
- anon_sym_static,
- anon_sym_readonly,
- anon_sym_get,
- anon_sym_set,
- anon_sym_declare,
- anon_sym_public,
- anon_sym_private,
- anon_sym_protected,
- anon_sym_override,
- anon_sym_module,
- anon_sym_any,
- anon_sym_number,
- anon_sym_boolean,
- anon_sym_string,
- anon_sym_symbol,
- anon_sym_object,
- [94306] = 13,
- ACTIONS(241), 1,
- anon_sym_COMMA,
- ACTIONS(725), 1,
- anon_sym_RBRACE,
- ACTIONS(2275), 1,
- anon_sym_DQUOTE,
- ACTIONS(2277), 1,
- anon_sym_SQUOTE,
- ACTIONS(4243), 1,
- anon_sym_EQ,
- ACTIONS(4634), 1,
- anon_sym_LBRACK,
- STATE(4672), 1,
- aux_sym_object_pattern_repeat1,
- STATE(5156), 1,
- aux_sym_object_repeat1,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(2285), 2,
- sym_number,
- sym_private_property_identifier,
- STATE(3788), 3,
- sym_string,
- sym__property_name,
- sym_computed_property_name,
- ACTIONS(3743), 4,
- anon_sym_LPAREN,
- anon_sym_COLON,
- anon_sym_LT,
- anon_sym_QMARK,
- ACTIONS(2307), 23,
- anon_sym_export,
- anon_sym_type,
- anon_sym_namespace,
- anon_sym_let,
- anon_sym_async,
- anon_sym_new,
- sym_identifier,
- anon_sym_static,
- anon_sym_readonly,
- anon_sym_get,
- anon_sym_set,
- anon_sym_declare,
- anon_sym_public,
- anon_sym_private,
- anon_sym_protected,
- anon_sym_override,
- anon_sym_module,
- anon_sym_any,
- anon_sym_number,
- anon_sym_boolean,
- anon_sym_string,
- anon_sym_symbol,
- anon_sym_object,
- [94375] = 4,
- ACTIONS(5107), 1,
- sym_regex_flags,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(5103), 17,
- anon_sym_STAR,
- anon_sym_as,
- anon_sym_BANG,
- anon_sym_in,
- anon_sym_GT,
- anon_sym_GT_GT,
- anon_sym_AMP,
- anon_sym_PIPE,
- anon_sym_PLUS,
- anon_sym_DASH,
- anon_sym_SLASH,
- anon_sym_LT,
- anon_sym_EQ_EQ,
- anon_sym_BANG_EQ,
- anon_sym_instanceof,
- anon_sym_satisfies,
- anon_sym_implements,
- ACTIONS(5105), 22,
- sym__ternary_qmark,
- 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_PLUS_PLUS,
- anon_sym_DASH_DASH,
- anon_sym_BQUOTE,
- [94426] = 31,
- ACTIONS(825), 1,
- anon_sym_BQUOTE,
- ACTIONS(3969), 1,
- anon_sym_LPAREN,
- ACTIONS(3971), 1,
- anon_sym_LBRACK,
- ACTIONS(3973), 1,
- anon_sym_DOT,
- ACTIONS(4051), 1,
- anon_sym_as,
- ACTIONS(4055), 1,
- anon_sym_BANG,
- ACTIONS(4059), 1,
- anon_sym_QMARK_DOT,
- ACTIONS(4093), 1,
- anon_sym_satisfies,
- ACTIONS(5714), 1,
- anon_sym_AMP_AMP,
- ACTIONS(5716), 1,
- anon_sym_PIPE_PIPE,
- ACTIONS(5718), 1,
- anon_sym_GT_GT,
- ACTIONS(5722), 1,
- anon_sym_AMP,
- ACTIONS(5724), 1,
- anon_sym_CARET,
- ACTIONS(5726), 1,
- anon_sym_PIPE,
- ACTIONS(5730), 1,
- anon_sym_PERCENT,
- ACTIONS(5732), 1,
- anon_sym_STAR_STAR,
- ACTIONS(5734), 1,
- anon_sym_LT,
- ACTIONS(5742), 1,
- anon_sym_QMARK_QMARK,
- ACTIONS(5744), 1,
- sym__ternary_qmark,
- STATE(1447), 1,
- sym_type_arguments,
- STATE(5080), 1,
- sym_optional_chain,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(4091), 2,
- anon_sym_PLUS_PLUS,
- anon_sym_DASH_DASH,
- ACTIONS(5710), 2,
- anon_sym_STAR,
- anon_sym_SLASH,
- ACTIONS(5712), 2,
- anon_sym_in,
- anon_sym_GT,
- ACTIONS(5720), 2,
- anon_sym_GT_GT_GT,
- anon_sym_LT_LT,
- ACTIONS(5728), 2,
- anon_sym_PLUS,
- anon_sym_DASH,
- ACTIONS(5738), 2,
- anon_sym_EQ_EQ,
- anon_sym_BANG_EQ,
- ACTIONS(5740), 2,
- anon_sym_EQ_EQ_EQ,
- anon_sym_BANG_EQ_EQ,
- STATE(1757), 2,
- sym_template_string,
- sym_arguments,
- ACTIONS(5736), 3,
- anon_sym_LT_EQ,
- anon_sym_GT_EQ,
- anon_sym_instanceof,
- [94531] = 4,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(4456), 2,
- anon_sym_COMMA,
- anon_sym_extends,
- ACTIONS(4450), 13,
- anon_sym_STAR,
- anon_sym_BANG,
- anon_sym_in,
- anon_sym_GT,
- anon_sym_GT_GT,
- anon_sym_AMP,
- anon_sym_PIPE,
- anon_sym_PLUS,
- anon_sym_DASH,
- anon_sym_SLASH,
- anon_sym_LT,
- anon_sym_EQ_EQ,
- anon_sym_BANG_EQ,
- ACTIONS(4452), 25,
- sym__automatic_semicolon,
- sym__ternary_qmark,
- anon_sym_as,
- anon_sym_LPAREN,
- anon_sym_SEMI,
- anon_sym_LBRACK,
- anon_sym_DOT,
- anon_sym_QMARK_DOT,
- anon_sym_AMP_AMP,
- anon_sym_PIPE_PIPE,
- anon_sym_GT_GT_GT,
- anon_sym_LT_LT,
- anon_sym_CARET,
- anon_sym_PERCENT,
- anon_sym_STAR_STAR,
- anon_sym_LT_EQ,
- anon_sym_EQ_EQ_EQ,
- anon_sym_BANG_EQ_EQ,
- anon_sym_GT_EQ,
- anon_sym_QMARK_QMARK,
- anon_sym_instanceof,
- anon_sym_PLUS_PLUS,
- anon_sym_DASH_DASH,
- anon_sym_BQUOTE,
- anon_sym_satisfies,
- [94582] = 16,
- ACTIONS(2275), 1,
- anon_sym_DQUOTE,
- ACTIONS(2277), 1,
- anon_sym_SQUOTE,
- ACTIONS(2309), 1,
- anon_sym_async,
- ACTIONS(2311), 1,
- anon_sym_readonly,
- ACTIONS(2315), 1,
- anon_sym_override,
- ACTIONS(4243), 1,
- anon_sym_EQ,
- ACTIONS(4634), 1,
- anon_sym_LBRACK,
- ACTIONS(5091), 1,
- anon_sym_STAR,
- STATE(2719), 1,
- sym_override_modifier,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(2285), 2,
- sym_number,
- sym_private_property_identifier,
- ACTIONS(2313), 2,
- anon_sym_get,
- anon_sym_set,
- ACTIONS(5749), 2,
- anon_sym_COMMA,
- anon_sym_RBRACE,
- STATE(3788), 3,
- sym_string,
- sym__property_name,
- sym_computed_property_name,
- ACTIONS(3743), 4,
- anon_sym_LPAREN,
- anon_sym_COLON,
- anon_sym_LT,
- anon_sym_QMARK,
- ACTIONS(2307), 18,
- anon_sym_export,
- anon_sym_type,
- anon_sym_namespace,
- anon_sym_let,
- anon_sym_new,
- sym_identifier,
- anon_sym_static,
- anon_sym_declare,
- anon_sym_public,
- anon_sym_private,
- anon_sym_protected,
- anon_sym_module,
- anon_sym_any,
- anon_sym_number,
- anon_sym_boolean,
- anon_sym_string,
- anon_sym_symbol,
- anon_sym_object,
- [94657] = 8,
- ACTIONS(2275), 1,
- anon_sym_DQUOTE,
- ACTIONS(2277), 1,
- anon_sym_SQUOTE,
- ACTIONS(4634), 1,
- anon_sym_LBRACK,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(5468), 2,
- sym_number,
- sym_private_property_identifier,
- STATE(3878), 3,
- sym_string,
- sym__property_name,
- sym_computed_property_name,
- ACTIONS(3743), 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(2307), 23,
- anon_sym_export,
- anon_sym_type,
- anon_sym_namespace,
- anon_sym_let,
- anon_sym_async,
- anon_sym_new,
- sym_identifier,
- anon_sym_static,
- anon_sym_readonly,
- anon_sym_get,
- anon_sym_set,
- anon_sym_declare,
- anon_sym_public,
- anon_sym_private,
- anon_sym_protected,
- anon_sym_override,
- anon_sym_module,
- anon_sym_any,
- anon_sym_number,
- anon_sym_boolean,
- anon_sym_string,
- anon_sym_symbol,
- anon_sym_object,
- [94716] = 8,
- ACTIONS(2275), 1,
- anon_sym_DQUOTE,
- ACTIONS(2277), 1,
- anon_sym_SQUOTE,
- ACTIONS(4634), 1,
- anon_sym_LBRACK,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(5381), 2,
- sym_number,
- sym_private_property_identifier,
- STATE(3854), 3,
- sym_string,
- sym__property_name,
- sym_computed_property_name,
- ACTIONS(3743), 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(2307), 23,
- anon_sym_export,
- anon_sym_type,
- anon_sym_namespace,
- anon_sym_let,
- anon_sym_async,
- anon_sym_new,
- sym_identifier,
- anon_sym_static,
- anon_sym_readonly,
- anon_sym_get,
- anon_sym_set,
- anon_sym_declare,
- anon_sym_public,
- anon_sym_private,
- anon_sym_protected,
- anon_sym_override,
- anon_sym_module,
- anon_sym_any,
- anon_sym_number,
- anon_sym_boolean,
- anon_sym_string,
- anon_sym_symbol,
- anon_sym_object,
- [94775] = 13,
- ACTIONS(241), 1,
- anon_sym_COMMA,
- ACTIONS(2275), 1,
- anon_sym_DQUOTE,
- ACTIONS(2277), 1,
- anon_sym_SQUOTE,
- ACTIONS(4243), 1,
- anon_sym_EQ,
- ACTIONS(4634), 1,
- anon_sym_LBRACK,
- ACTIONS(5200), 1,
- anon_sym_RBRACE,
- STATE(4672), 1,
- aux_sym_object_pattern_repeat1,
- STATE(5156), 1,
- aux_sym_object_repeat1,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(2285), 2,
- sym_number,
- sym_private_property_identifier,
- STATE(3788), 3,
- sym_string,
- sym__property_name,
- sym_computed_property_name,
- ACTIONS(3743), 4,
- anon_sym_LPAREN,
- anon_sym_COLON,
- anon_sym_LT,
- anon_sym_QMARK,
- ACTIONS(2307), 23,
- anon_sym_export,
- anon_sym_type,
- anon_sym_namespace,
- anon_sym_let,
- anon_sym_async,
- anon_sym_new,
- sym_identifier,
- anon_sym_static,
- anon_sym_readonly,
- anon_sym_get,
- anon_sym_set,
- anon_sym_declare,
- anon_sym_public,
- anon_sym_private,
- anon_sym_protected,
- anon_sym_override,
- anon_sym_module,
- anon_sym_any,
- anon_sym_number,
- anon_sym_boolean,
- anon_sym_string,
- anon_sym_symbol,
- anon_sym_object,
- [94844] = 8,
- ACTIONS(2275), 1,
- anon_sym_DQUOTE,
- ACTIONS(2277), 1,
- anon_sym_SQUOTE,
- ACTIONS(4634), 1,
- anon_sym_LBRACK,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(5604), 2,
- sym_number,
- sym_private_property_identifier,
- STATE(3822), 3,
- sym_string,
- sym__property_name,
- sym_computed_property_name,
- ACTIONS(3743), 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(2307), 23,
- anon_sym_export,
- anon_sym_type,
- anon_sym_namespace,
- anon_sym_let,
- anon_sym_async,
- anon_sym_new,
- sym_identifier,
- anon_sym_static,
- anon_sym_readonly,
- anon_sym_get,
- anon_sym_set,
- anon_sym_declare,
- anon_sym_public,
- anon_sym_private,
- anon_sym_protected,
- anon_sym_override,
- anon_sym_module,
- anon_sym_any,
- anon_sym_number,
- anon_sym_boolean,
- anon_sym_string,
- anon_sym_symbol,
- anon_sym_object,
- [94903] = 7,
- ACTIONS(4039), 1,
- anon_sym_QMARK,
- ACTIONS(4041), 1,
- anon_sym_extends,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(4700), 2,
- anon_sym_AMP,
- anon_sym_PIPE,
- ACTIONS(4697), 3,
- anon_sym_COMMA,
- anon_sym_LBRACK,
- anon_sym_RBRACK,
- ACTIONS(3400), 11,
- anon_sym_STAR,
- anon_sym_BANG,
- anon_sym_in,
- anon_sym_GT,
- anon_sym_GT_GT,
- anon_sym_PLUS,
- anon_sym_DASH,
- anon_sym_SLASH,
- anon_sym_LT,
- anon_sym_EQ_EQ,
- anon_sym_BANG_EQ,
- ACTIONS(3404), 22,
- sym__ternary_qmark,
- anon_sym_as,
- anon_sym_LPAREN,
- anon_sym_DOT,
- anon_sym_QMARK_DOT,
- anon_sym_AMP_AMP,
- anon_sym_PIPE_PIPE,
- anon_sym_GT_GT_GT,
- anon_sym_LT_LT,
- anon_sym_CARET,
- anon_sym_PERCENT,
- anon_sym_STAR_STAR,
- anon_sym_LT_EQ,
- anon_sym_EQ_EQ_EQ,
- anon_sym_BANG_EQ_EQ,
- anon_sym_GT_EQ,
- anon_sym_QMARK_QMARK,
- anon_sym_instanceof,
- anon_sym_PLUS_PLUS,
- anon_sym_DASH_DASH,
- anon_sym_BQUOTE,
- anon_sym_satisfies,
- [94960] = 8,
- ACTIONS(2275), 1,
- anon_sym_DQUOTE,
- ACTIONS(2277), 1,
- anon_sym_SQUOTE,
- ACTIONS(4634), 1,
- anon_sym_LBRACK,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(5630), 2,
- sym_number,
- sym_private_property_identifier,
- STATE(3880), 3,
- sym_string,
- sym__property_name,
- sym_computed_property_name,
- ACTIONS(3743), 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(2307), 23,
- anon_sym_export,
- anon_sym_type,
- anon_sym_namespace,
- anon_sym_let,
- anon_sym_async,
- anon_sym_new,
- sym_identifier,
- anon_sym_static,
- anon_sym_readonly,
- anon_sym_get,
- anon_sym_set,
- anon_sym_declare,
- anon_sym_public,
- anon_sym_private,
- anon_sym_protected,
- anon_sym_override,
- anon_sym_module,
- anon_sym_any,
- anon_sym_number,
- anon_sym_boolean,
- anon_sym_string,
- anon_sym_symbol,
- anon_sym_object,
- [95019] = 8,
- ACTIONS(2275), 1,
- anon_sym_DQUOTE,
- ACTIONS(2277), 1,
- anon_sym_SQUOTE,
- ACTIONS(4634), 1,
- anon_sym_LBRACK,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(5391), 2,
- sym_number,
- sym_private_property_identifier,
- STATE(3734), 3,
- sym_string,
- sym__property_name,
- sym_computed_property_name,
- ACTIONS(3743), 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(2307), 23,
- anon_sym_export,
- anon_sym_type,
- anon_sym_namespace,
- anon_sym_let,
- anon_sym_async,
- anon_sym_new,
- sym_identifier,
- anon_sym_static,
- anon_sym_readonly,
- anon_sym_get,
- anon_sym_set,
- anon_sym_declare,
- anon_sym_public,
- anon_sym_private,
- anon_sym_protected,
- anon_sym_override,
- anon_sym_module,
- anon_sym_any,
- anon_sym_number,
- anon_sym_boolean,
- anon_sym_string,
- anon_sym_symbol,
- anon_sym_object,
- [95078] = 6,
- ACTIONS(4691), 1,
- anon_sym_LBRACK,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(4330), 2,
- anon_sym_COMMA,
- anon_sym_extends,
- ACTIONS(4694), 3,
- anon_sym_GT,
- anon_sym_AMP,
- anon_sym_PIPE,
- ACTIONS(3400), 10,
- anon_sym_STAR,
- anon_sym_BANG,
- anon_sym_in,
- anon_sym_GT_GT,
- anon_sym_PLUS,
- anon_sym_DASH,
- anon_sym_SLASH,
- anon_sym_LT,
- anon_sym_EQ_EQ,
- anon_sym_BANG_EQ,
- ACTIONS(3404), 24,
- sym__automatic_semicolon,
- sym__ternary_qmark,
- anon_sym_as,
- anon_sym_LPAREN,
- anon_sym_SEMI,
- anon_sym_DOT,
- anon_sym_QMARK_DOT,
- anon_sym_AMP_AMP,
- anon_sym_PIPE_PIPE,
- anon_sym_GT_GT_GT,
- anon_sym_LT_LT,
- anon_sym_CARET,
- anon_sym_PERCENT,
- anon_sym_STAR_STAR,
- anon_sym_LT_EQ,
- anon_sym_EQ_EQ_EQ,
- anon_sym_BANG_EQ_EQ,
- anon_sym_GT_EQ,
- anon_sym_QMARK_QMARK,
- anon_sym_instanceof,
- anon_sym_PLUS_PLUS,
- anon_sym_DASH_DASH,
- anon_sym_BQUOTE,
- anon_sym_satisfies,
- [95133] = 8,
- ACTIONS(2275), 1,
- anon_sym_DQUOTE,
- ACTIONS(2277), 1,
- anon_sym_SQUOTE,
- ACTIONS(4634), 1,
- anon_sym_LBRACK,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(5532), 2,
- sym_number,
- sym_private_property_identifier,
- STATE(3798), 3,
- sym_string,
- sym__property_name,
- sym_computed_property_name,
- ACTIONS(3743), 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(2307), 23,
- anon_sym_export,
- anon_sym_type,
- anon_sym_namespace,
- anon_sym_let,
- anon_sym_async,
- anon_sym_new,
- sym_identifier,
- anon_sym_static,
- anon_sym_readonly,
- anon_sym_get,
- anon_sym_set,
- anon_sym_declare,
- anon_sym_public,
- anon_sym_private,
- anon_sym_protected,
- anon_sym_override,
- anon_sym_module,
- anon_sym_any,
- anon_sym_number,
- anon_sym_boolean,
- anon_sym_string,
- anon_sym_symbol,
- anon_sym_object,
- [95192] = 6,
- ACTIONS(4878), 1,
- anon_sym_LBRACK,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(4408), 2,
- anon_sym_COMMA,
- anon_sym_extends,
- ACTIONS(4881), 3,
- anon_sym_GT,
- anon_sym_AMP,
- anon_sym_PIPE,
- ACTIONS(4774), 10,
- anon_sym_STAR,
- anon_sym_BANG,
- anon_sym_in,
- anon_sym_GT_GT,
- anon_sym_PLUS,
- anon_sym_DASH,
- anon_sym_SLASH,
- anon_sym_LT,
- anon_sym_EQ_EQ,
- anon_sym_BANG_EQ,
- ACTIONS(4776), 24,
- sym__automatic_semicolon,
- sym__ternary_qmark,
- anon_sym_as,
- anon_sym_LPAREN,
- anon_sym_SEMI,
- anon_sym_DOT,
- anon_sym_QMARK_DOT,
- anon_sym_AMP_AMP,
- anon_sym_PIPE_PIPE,
- anon_sym_GT_GT_GT,
- anon_sym_LT_LT,
- anon_sym_CARET,
- anon_sym_PERCENT,
- anon_sym_STAR_STAR,
- anon_sym_LT_EQ,
- anon_sym_EQ_EQ_EQ,
- anon_sym_BANG_EQ_EQ,
- anon_sym_GT_EQ,
- anon_sym_QMARK_QMARK,
- anon_sym_instanceof,
- anon_sym_PLUS_PLUS,
- anon_sym_DASH_DASH,
- anon_sym_BQUOTE,
- anon_sym_satisfies,
- [95247] = 4,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(4460), 2,
- anon_sym_COMMA,
- anon_sym_extends,
- ACTIONS(4450), 13,
- anon_sym_STAR,
- anon_sym_BANG,
- anon_sym_in,
- anon_sym_GT,
- anon_sym_GT_GT,
- anon_sym_AMP,
- anon_sym_PIPE,
- anon_sym_PLUS,
- anon_sym_DASH,
- anon_sym_SLASH,
- anon_sym_LT,
- anon_sym_EQ_EQ,
- anon_sym_BANG_EQ,
- ACTIONS(4452), 25,
- sym__automatic_semicolon,
- sym__ternary_qmark,
- anon_sym_as,
- anon_sym_LPAREN,
- anon_sym_SEMI,
- anon_sym_LBRACK,
- anon_sym_DOT,
- anon_sym_QMARK_DOT,
- anon_sym_AMP_AMP,
- anon_sym_PIPE_PIPE,
- anon_sym_GT_GT_GT,
- anon_sym_LT_LT,
- anon_sym_CARET,
- anon_sym_PERCENT,
- anon_sym_STAR_STAR,
- anon_sym_LT_EQ,
- anon_sym_EQ_EQ_EQ,
- anon_sym_BANG_EQ_EQ,
- anon_sym_GT_EQ,
- anon_sym_QMARK_QMARK,
- anon_sym_instanceof,
- anon_sym_PLUS_PLUS,
- anon_sym_DASH_DASH,
- anon_sym_BQUOTE,
- anon_sym_satisfies,
- [95298] = 31,
- ACTIONS(825), 1,
- anon_sym_BQUOTE,
- ACTIONS(3969), 1,
- anon_sym_LPAREN,
- ACTIONS(3971), 1,
- anon_sym_LBRACK,
- ACTIONS(3973), 1,
- anon_sym_DOT,
- ACTIONS(4051), 1,
- anon_sym_as,
- ACTIONS(4055), 1,
- anon_sym_BANG,
- ACTIONS(4059), 1,
- anon_sym_QMARK_DOT,
- ACTIONS(4093), 1,
- anon_sym_satisfies,
- ACTIONS(5714), 1,
- anon_sym_AMP_AMP,
- ACTIONS(5716), 1,
- anon_sym_PIPE_PIPE,
- ACTIONS(5718), 1,
- anon_sym_GT_GT,
- ACTIONS(5722), 1,
- anon_sym_AMP,
- ACTIONS(5724), 1,
- anon_sym_CARET,
- ACTIONS(5726), 1,
- anon_sym_PIPE,
- ACTIONS(5730), 1,
- anon_sym_PERCENT,
- ACTIONS(5732), 1,
- anon_sym_STAR_STAR,
- ACTIONS(5734), 1,
- anon_sym_LT,
- ACTIONS(5742), 1,
- anon_sym_QMARK_QMARK,
- ACTIONS(5744), 1,
- sym__ternary_qmark,
- STATE(1447), 1,
- sym_type_arguments,
- STATE(5080), 1,
- sym_optional_chain,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(4091), 2,
- anon_sym_PLUS_PLUS,
- anon_sym_DASH_DASH,
- ACTIONS(5710), 2,
- anon_sym_STAR,
- anon_sym_SLASH,
- ACTIONS(5712), 2,
- anon_sym_in,
- anon_sym_GT,
- ACTIONS(5720), 2,
- anon_sym_GT_GT_GT,
- anon_sym_LT_LT,
- ACTIONS(5728), 2,
- anon_sym_PLUS,
- anon_sym_DASH,
- ACTIONS(5738), 2,
- anon_sym_EQ_EQ,
- anon_sym_BANG_EQ,
- ACTIONS(5740), 2,
- anon_sym_EQ_EQ_EQ,
- anon_sym_BANG_EQ_EQ,
- STATE(1757), 2,
- sym_template_string,
- sym_arguments,
- ACTIONS(5736), 3,
- anon_sym_LT_EQ,
- anon_sym_GT_EQ,
- anon_sym_instanceof,
- [95403] = 31,
- ACTIONS(825), 1,
- anon_sym_BQUOTE,
- ACTIONS(3969), 1,
- anon_sym_LPAREN,
- ACTIONS(3971), 1,
- anon_sym_LBRACK,
- ACTIONS(3973), 1,
- anon_sym_DOT,
- ACTIONS(4051), 1,
- anon_sym_as,
- ACTIONS(4055), 1,
- anon_sym_BANG,
- ACTIONS(4059), 1,
- anon_sym_QMARK_DOT,
- ACTIONS(4093), 1,
- anon_sym_satisfies,
- ACTIONS(5714), 1,
- anon_sym_AMP_AMP,
- ACTIONS(5716), 1,
- anon_sym_PIPE_PIPE,
- ACTIONS(5718), 1,
- anon_sym_GT_GT,
- ACTIONS(5722), 1,
- anon_sym_AMP,
- ACTIONS(5724), 1,
- anon_sym_CARET,
- ACTIONS(5726), 1,
- anon_sym_PIPE,
- ACTIONS(5730), 1,
- anon_sym_PERCENT,
- ACTIONS(5732), 1,
- anon_sym_STAR_STAR,
- ACTIONS(5734), 1,
- anon_sym_LT,
- ACTIONS(5742), 1,
- anon_sym_QMARK_QMARK,
- ACTIONS(5744), 1,
- sym__ternary_qmark,
- STATE(1447), 1,
- sym_type_arguments,
- STATE(5080), 1,
- sym_optional_chain,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(4091), 2,
- anon_sym_PLUS_PLUS,
- anon_sym_DASH_DASH,
- ACTIONS(5710), 2,
- anon_sym_STAR,
- anon_sym_SLASH,
- ACTIONS(5712), 2,
- anon_sym_in,
- anon_sym_GT,
- ACTIONS(5720), 2,
- anon_sym_GT_GT_GT,
- anon_sym_LT_LT,
- ACTIONS(5728), 2,
- anon_sym_PLUS,
- anon_sym_DASH,
- ACTIONS(5738), 2,
- anon_sym_EQ_EQ,
- anon_sym_BANG_EQ,
- ACTIONS(5740), 2,
- anon_sym_EQ_EQ_EQ,
- anon_sym_BANG_EQ_EQ,
- STATE(1757), 2,
- sym_template_string,
- sym_arguments,
- ACTIONS(5736), 3,
- anon_sym_LT_EQ,
- anon_sym_GT_EQ,
- anon_sym_instanceof,
- [95508] = 31,
- ACTIONS(825), 1,
- anon_sym_BQUOTE,
- ACTIONS(3969), 1,
- anon_sym_LPAREN,
- ACTIONS(3971), 1,
- anon_sym_LBRACK,
- ACTIONS(3973), 1,
- anon_sym_DOT,
- ACTIONS(4051), 1,
- anon_sym_as,
- ACTIONS(4055), 1,
- anon_sym_BANG,
- ACTIONS(4059), 1,
- anon_sym_QMARK_DOT,
- ACTIONS(4093), 1,
- anon_sym_satisfies,
- ACTIONS(5714), 1,
- anon_sym_AMP_AMP,
- ACTIONS(5716), 1,
- anon_sym_PIPE_PIPE,
- ACTIONS(5718), 1,
- anon_sym_GT_GT,
- ACTIONS(5722), 1,
- anon_sym_AMP,
- ACTIONS(5724), 1,
- anon_sym_CARET,
- ACTIONS(5726), 1,
- anon_sym_PIPE,
- ACTIONS(5730), 1,
- anon_sym_PERCENT,
- ACTIONS(5732), 1,
- anon_sym_STAR_STAR,
- ACTIONS(5734), 1,
- anon_sym_LT,
- ACTIONS(5742), 1,
- anon_sym_QMARK_QMARK,
- ACTIONS(5744), 1,
- sym__ternary_qmark,
- STATE(1447), 1,
- sym_type_arguments,
- STATE(5080), 1,
- sym_optional_chain,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(4091), 2,
- anon_sym_PLUS_PLUS,
- anon_sym_DASH_DASH,
- ACTIONS(5710), 2,
- anon_sym_STAR,
- anon_sym_SLASH,
- ACTIONS(5712), 2,
- anon_sym_in,
- anon_sym_GT,
- ACTIONS(5720), 2,
- anon_sym_GT_GT_GT,
- anon_sym_LT_LT,
- ACTIONS(5728), 2,
- anon_sym_PLUS,
- anon_sym_DASH,
- ACTIONS(5738), 2,
- anon_sym_EQ_EQ,
- anon_sym_BANG_EQ,
- ACTIONS(5740), 2,
- anon_sym_EQ_EQ_EQ,
- anon_sym_BANG_EQ_EQ,
- STATE(1757), 2,
- sym_template_string,
- sym_arguments,
- ACTIONS(5736), 3,
- anon_sym_LT_EQ,
- anon_sym_GT_EQ,
- anon_sym_instanceof,
- [95613] = 31,
- ACTIONS(825), 1,
- anon_sym_BQUOTE,
- ACTIONS(3969), 1,
- anon_sym_LPAREN,
- ACTIONS(3971), 1,
- anon_sym_LBRACK,
- ACTIONS(3973), 1,
- anon_sym_DOT,
- ACTIONS(4051), 1,
- anon_sym_as,
- ACTIONS(4055), 1,
- anon_sym_BANG,
- ACTIONS(4059), 1,
- anon_sym_QMARK_DOT,
- ACTIONS(4093), 1,
- anon_sym_satisfies,
- ACTIONS(5714), 1,
- anon_sym_AMP_AMP,
- ACTIONS(5716), 1,
- anon_sym_PIPE_PIPE,
- ACTIONS(5718), 1,
- anon_sym_GT_GT,
- ACTIONS(5722), 1,
- anon_sym_AMP,
- ACTIONS(5724), 1,
- anon_sym_CARET,
- ACTIONS(5726), 1,
- anon_sym_PIPE,
- ACTIONS(5730), 1,
- anon_sym_PERCENT,
- ACTIONS(5732), 1,
- anon_sym_STAR_STAR,
- ACTIONS(5734), 1,
- anon_sym_LT,
- ACTIONS(5742), 1,
- anon_sym_QMARK_QMARK,
- ACTIONS(5744), 1,
- sym__ternary_qmark,
- STATE(1447), 1,
- sym_type_arguments,
- STATE(5080), 1,
- sym_optional_chain,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(4091), 2,
- anon_sym_PLUS_PLUS,
- anon_sym_DASH_DASH,
- ACTIONS(5710), 2,
- anon_sym_STAR,
- anon_sym_SLASH,
- ACTIONS(5712), 2,
- anon_sym_in,
- anon_sym_GT,
- ACTIONS(5720), 2,
- anon_sym_GT_GT_GT,
- anon_sym_LT_LT,
- ACTIONS(5728), 2,
- anon_sym_PLUS,
- anon_sym_DASH,
- ACTIONS(5738), 2,
- anon_sym_EQ_EQ,
- anon_sym_BANG_EQ,
- ACTIONS(5740), 2,
- anon_sym_EQ_EQ_EQ,
- anon_sym_BANG_EQ_EQ,
- STATE(1757), 2,
- sym_template_string,
- sym_arguments,
- ACTIONS(5736), 3,
- anon_sym_LT_EQ,
- anon_sym_GT_EQ,
- anon_sym_instanceof,
- [95718] = 31,
- ACTIONS(825), 1,
- anon_sym_BQUOTE,
- ACTIONS(3969), 1,
- anon_sym_LPAREN,
- ACTIONS(3971), 1,
- anon_sym_LBRACK,
- ACTIONS(3973), 1,
- anon_sym_DOT,
- ACTIONS(4051), 1,
- anon_sym_as,
- ACTIONS(4055), 1,
- anon_sym_BANG,
- ACTIONS(4059), 1,
- anon_sym_QMARK_DOT,
- ACTIONS(4093), 1,
- anon_sym_satisfies,
- ACTIONS(5714), 1,
- anon_sym_AMP_AMP,
- ACTIONS(5716), 1,
- anon_sym_PIPE_PIPE,
- ACTIONS(5718), 1,
- anon_sym_GT_GT,
- ACTIONS(5722), 1,
- anon_sym_AMP,
- ACTIONS(5724), 1,
- anon_sym_CARET,
- ACTIONS(5726), 1,
- anon_sym_PIPE,
- ACTIONS(5730), 1,
- anon_sym_PERCENT,
- ACTIONS(5732), 1,
- anon_sym_STAR_STAR,
- ACTIONS(5734), 1,
- anon_sym_LT,
- ACTIONS(5742), 1,
- anon_sym_QMARK_QMARK,
- ACTIONS(5744), 1,
- sym__ternary_qmark,
- STATE(1447), 1,
- sym_type_arguments,
- STATE(5080), 1,
- sym_optional_chain,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(4091), 2,
- anon_sym_PLUS_PLUS,
- anon_sym_DASH_DASH,
- ACTIONS(5710), 2,
- anon_sym_STAR,
- anon_sym_SLASH,
- ACTIONS(5712), 2,
- anon_sym_in,
- anon_sym_GT,
- ACTIONS(5720), 2,
- anon_sym_GT_GT_GT,
- anon_sym_LT_LT,
- ACTIONS(5728), 2,
- anon_sym_PLUS,
- anon_sym_DASH,
- ACTIONS(5738), 2,
- anon_sym_EQ_EQ,
- anon_sym_BANG_EQ,
- ACTIONS(5740), 2,
- anon_sym_EQ_EQ_EQ,
- anon_sym_BANG_EQ_EQ,
- STATE(1757), 2,
- sym_template_string,
- sym_arguments,
- ACTIONS(5736), 3,
- anon_sym_LT_EQ,
- anon_sym_GT_EQ,
- anon_sym_instanceof,
- [95823] = 19,
- ACTIONS(825), 1,
- anon_sym_BQUOTE,
- ACTIONS(3969), 1,
- anon_sym_LPAREN,
- ACTIONS(3971), 1,
- anon_sym_LBRACK,
- ACTIONS(3973), 1,
- anon_sym_DOT,
- ACTIONS(4059), 1,
- anon_sym_QMARK_DOT,
- ACTIONS(5718), 1,
- anon_sym_GT_GT,
- ACTIONS(5730), 1,
- anon_sym_PERCENT,
- ACTIONS(5732), 1,
- anon_sym_STAR_STAR,
- ACTIONS(5734), 1,
- anon_sym_LT,
- STATE(1447), 1,
- sym_type_arguments,
- STATE(5080), 1,
- sym_optional_chain,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(4091), 2,
- anon_sym_PLUS_PLUS,
- anon_sym_DASH_DASH,
- ACTIONS(5710), 2,
- anon_sym_STAR,
- anon_sym_SLASH,
- ACTIONS(5720), 2,
- anon_sym_GT_GT_GT,
- anon_sym_LT_LT,
- ACTIONS(5728), 2,
- anon_sym_PLUS,
- anon_sym_DASH,
- STATE(1757), 2,
- sym_template_string,
- sym_arguments,
- ACTIONS(4307), 7,
- anon_sym_BANG,
- anon_sym_in,
- anon_sym_GT,
- anon_sym_AMP,
- anon_sym_PIPE,
- anon_sym_EQ_EQ,
- anon_sym_BANG_EQ,
- ACTIONS(4305), 12,
- sym__ternary_qmark,
- anon_sym_as,
- anon_sym_AMP_AMP,
- anon_sym_PIPE_PIPE,
- anon_sym_CARET,
- anon_sym_LT_EQ,
- anon_sym_EQ_EQ_EQ,
- anon_sym_BANG_EQ_EQ,
- anon_sym_GT_EQ,
- anon_sym_QMARK_QMARK,
- anon_sym_instanceof,
- anon_sym_satisfies,
- [95904] = 14,
- ACTIONS(825), 1,
- anon_sym_BQUOTE,
- ACTIONS(3969), 1,
- anon_sym_LPAREN,
- ACTIONS(3971), 1,
- anon_sym_LBRACK,
- ACTIONS(3973), 1,
- anon_sym_DOT,
- ACTIONS(4059), 1,
- anon_sym_QMARK_DOT,
- ACTIONS(5732), 1,
- anon_sym_STAR_STAR,
- ACTIONS(5752), 1,
- anon_sym_LT,
- STATE(1447), 1,
- sym_type_arguments,
- STATE(5080), 1,
- sym_optional_chain,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(4091), 2,
- anon_sym_PLUS_PLUS,
- anon_sym_DASH_DASH,
- STATE(1757), 2,
- sym_template_string,
- sym_arguments,
- ACTIONS(4307), 12,
- anon_sym_STAR,
- anon_sym_BANG,
- anon_sym_in,
- anon_sym_GT,
- anon_sym_GT_GT,
- anon_sym_AMP,
- anon_sym_PIPE,
- anon_sym_PLUS,
- anon_sym_DASH,
- anon_sym_SLASH,
- anon_sym_EQ_EQ,
- anon_sym_BANG_EQ,
- ACTIONS(4305), 15,
- sym__ternary_qmark,
- anon_sym_as,
- anon_sym_AMP_AMP,
- anon_sym_PIPE_PIPE,
- anon_sym_GT_GT_GT,
- anon_sym_LT_LT,
- anon_sym_CARET,
- anon_sym_PERCENT,
- anon_sym_LT_EQ,
- anon_sym_EQ_EQ_EQ,
- anon_sym_BANG_EQ_EQ,
- anon_sym_GT_EQ,
- anon_sym_QMARK_QMARK,
- anon_sym_instanceof,
- anon_sym_satisfies,
- [95975] = 23,
- ACTIONS(1594), 1,
- anon_sym_DQUOTE,
- ACTIONS(1596), 1,
- anon_sym_SQUOTE,
- ACTIONS(3633), 1,
- anon_sym_override,
- ACTIONS(3713), 1,
- anon_sym_AT,
- ACTIONS(4245), 1,
- anon_sym_LBRACK,
- ACTIONS(5755), 1,
- anon_sym_STAR,
- ACTIONS(5757), 1,
- anon_sym_async,
- ACTIONS(5761), 1,
- anon_sym_static,
- ACTIONS(5763), 1,
- anon_sym_readonly,
- ACTIONS(5767), 1,
- anon_sym_declare,
- ACTIONS(5769), 1,
- anon_sym_abstract,
- ACTIONS(5771), 1,
- anon_sym_accessor,
- STATE(2575), 1,
- sym_method_definition,
- STATE(2638), 1,
- sym_accessibility_modifier,
- STATE(2671), 1,
- aux_sym_export_statement_repeat1,
- STATE(2697), 1,
- sym_decorator,
- STATE(2699), 1,
- sym_override_modifier,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(5759), 2,
- sym_number,
- sym_private_property_identifier,
- ACTIONS(5765), 2,
- anon_sym_get,
- anon_sym_set,
- ACTIONS(3631), 3,
- anon_sym_public,
- anon_sym_private,
- anon_sym_protected,
- STATE(2992), 3,
- sym_string,
- sym__property_name,
- sym_computed_property_name,
- ACTIONS(3607), 13,
- anon_sym_export,
- anon_sym_type,
- anon_sym_namespace,
- anon_sym_let,
- anon_sym_new,
- sym_identifier,
- anon_sym_module,
- anon_sym_any,
- anon_sym_number,
- anon_sym_boolean,
- anon_sym_string,
- anon_sym_symbol,
- anon_sym_object,
- [96064] = 26,
- ACTIONS(825), 1,
- anon_sym_BQUOTE,
- ACTIONS(3969), 1,
- anon_sym_LPAREN,
- ACTIONS(3971), 1,
- anon_sym_LBRACK,
- ACTIONS(3973), 1,
- anon_sym_DOT,
- ACTIONS(4059), 1,
- anon_sym_QMARK_DOT,
- ACTIONS(4307), 1,
- anon_sym_BANG,
- ACTIONS(5718), 1,
- anon_sym_GT_GT,
- ACTIONS(5722), 1,
- anon_sym_AMP,
- ACTIONS(5724), 1,
- anon_sym_CARET,
- ACTIONS(5726), 1,
- anon_sym_PIPE,
- ACTIONS(5730), 1,
- anon_sym_PERCENT,
- ACTIONS(5732), 1,
- anon_sym_STAR_STAR,
- ACTIONS(5734), 1,
- anon_sym_LT,
- STATE(1447), 1,
- sym_type_arguments,
- STATE(5080), 1,
- sym_optional_chain,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(4091), 2,
- anon_sym_PLUS_PLUS,
- anon_sym_DASH_DASH,
- ACTIONS(5710), 2,
- anon_sym_STAR,
- anon_sym_SLASH,
- ACTIONS(5712), 2,
- anon_sym_in,
- anon_sym_GT,
- ACTIONS(5720), 2,
- anon_sym_GT_GT_GT,
- anon_sym_LT_LT,
- ACTIONS(5728), 2,
- anon_sym_PLUS,
- anon_sym_DASH,
- ACTIONS(5738), 2,
- anon_sym_EQ_EQ,
- anon_sym_BANG_EQ,
- ACTIONS(5740), 2,
- anon_sym_EQ_EQ_EQ,
- anon_sym_BANG_EQ_EQ,
- STATE(1757), 2,
- sym_template_string,
- sym_arguments,
- ACTIONS(5736), 3,
- anon_sym_LT_EQ,
- anon_sym_GT_EQ,
- anon_sym_instanceof,
- ACTIONS(4305), 6,
- sym__ternary_qmark,
- anon_sym_as,
- anon_sym_AMP_AMP,
- anon_sym_PIPE_PIPE,
- anon_sym_QMARK_QMARK,
- anon_sym_satisfies,
- [96159] = 27,
- ACTIONS(825), 1,
- anon_sym_BQUOTE,
- ACTIONS(3969), 1,
- anon_sym_LPAREN,
- ACTIONS(3971), 1,
- anon_sym_LBRACK,
- ACTIONS(3973), 1,
- anon_sym_DOT,
- ACTIONS(4059), 1,
- anon_sym_QMARK_DOT,
- ACTIONS(4307), 1,
- anon_sym_BANG,
- ACTIONS(5714), 1,
- anon_sym_AMP_AMP,
- ACTIONS(5718), 1,
- anon_sym_GT_GT,
- ACTIONS(5722), 1,
- anon_sym_AMP,
- ACTIONS(5724), 1,
- anon_sym_CARET,
- ACTIONS(5726), 1,
- anon_sym_PIPE,
- ACTIONS(5730), 1,
- anon_sym_PERCENT,
- ACTIONS(5732), 1,
- anon_sym_STAR_STAR,
- ACTIONS(5734), 1,
- anon_sym_LT,
- STATE(1447), 1,
- sym_type_arguments,
- STATE(5080), 1,
- sym_optional_chain,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(4091), 2,
- anon_sym_PLUS_PLUS,
- anon_sym_DASH_DASH,
- ACTIONS(5710), 2,
- anon_sym_STAR,
- anon_sym_SLASH,
- ACTIONS(5712), 2,
- anon_sym_in,
- anon_sym_GT,
- ACTIONS(5720), 2,
- anon_sym_GT_GT_GT,
- anon_sym_LT_LT,
- ACTIONS(5728), 2,
- anon_sym_PLUS,
- anon_sym_DASH,
- ACTIONS(5738), 2,
- anon_sym_EQ_EQ,
- anon_sym_BANG_EQ,
- ACTIONS(5740), 2,
- anon_sym_EQ_EQ_EQ,
- anon_sym_BANG_EQ_EQ,
- STATE(1757), 2,
- sym_template_string,
- sym_arguments,
- ACTIONS(5736), 3,
- anon_sym_LT_EQ,
- anon_sym_GT_EQ,
- anon_sym_instanceof,
- ACTIONS(4305), 5,
- sym__ternary_qmark,
- anon_sym_as,
- anon_sym_PIPE_PIPE,
- anon_sym_QMARK_QMARK,
- anon_sym_satisfies,
- [96256] = 17,
- ACTIONS(825), 1,
- anon_sym_BQUOTE,
- ACTIONS(3969), 1,
- anon_sym_LPAREN,
- ACTIONS(3971), 1,
- anon_sym_LBRACK,
- ACTIONS(3973), 1,
- anon_sym_DOT,
- ACTIONS(4059), 1,
- anon_sym_QMARK_DOT,
- ACTIONS(5730), 1,
- anon_sym_PERCENT,
- ACTIONS(5732), 1,
- anon_sym_STAR_STAR,
- ACTIONS(5752), 1,
- anon_sym_LT,
- STATE(1447), 1,
- sym_type_arguments,
- STATE(5080), 1,
- sym_optional_chain,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(4091), 2,
- anon_sym_PLUS_PLUS,
- anon_sym_DASH_DASH,
- ACTIONS(5710), 2,
- anon_sym_STAR,
- anon_sym_SLASH,
- ACTIONS(5728), 2,
- anon_sym_PLUS,
- anon_sym_DASH,
- STATE(1757), 2,
- sym_template_string,
- sym_arguments,
- ACTIONS(4307), 8,
- anon_sym_BANG,
- anon_sym_in,
- anon_sym_GT,
- anon_sym_GT_GT,
- anon_sym_AMP,
- anon_sym_PIPE,
- anon_sym_EQ_EQ,
- anon_sym_BANG_EQ,
- ACTIONS(4305), 14,
- sym__ternary_qmark,
- anon_sym_as,
- anon_sym_AMP_AMP,
- anon_sym_PIPE_PIPE,
- anon_sym_GT_GT_GT,
- anon_sym_LT_LT,
- anon_sym_CARET,
- anon_sym_LT_EQ,
- anon_sym_EQ_EQ_EQ,
- anon_sym_BANG_EQ_EQ,
- anon_sym_GT_EQ,
- anon_sym_QMARK_QMARK,
- anon_sym_instanceof,
- anon_sym_satisfies,
- [96333] = 23,
- ACTIONS(825), 1,
- anon_sym_BQUOTE,
- ACTIONS(3969), 1,
- anon_sym_LPAREN,
- ACTIONS(3971), 1,
- anon_sym_LBRACK,
- ACTIONS(3973), 1,
- anon_sym_DOT,
- ACTIONS(4059), 1,
- anon_sym_QMARK_DOT,
- ACTIONS(5718), 1,
- anon_sym_GT_GT,
- ACTIONS(5730), 1,
- anon_sym_PERCENT,
- ACTIONS(5732), 1,
- anon_sym_STAR_STAR,
- ACTIONS(5734), 1,
- anon_sym_LT,
- STATE(1447), 1,
- sym_type_arguments,
- STATE(5080), 1,
- sym_optional_chain,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(4091), 2,
- anon_sym_PLUS_PLUS,
- anon_sym_DASH_DASH,
- ACTIONS(5710), 2,
- anon_sym_STAR,
- anon_sym_SLASH,
- ACTIONS(5712), 2,
- anon_sym_in,
- anon_sym_GT,
- ACTIONS(5720), 2,
- anon_sym_GT_GT_GT,
- anon_sym_LT_LT,
- ACTIONS(5728), 2,
- anon_sym_PLUS,
- anon_sym_DASH,
- ACTIONS(5738), 2,
- anon_sym_EQ_EQ,
- anon_sym_BANG_EQ,
- ACTIONS(5740), 2,
- anon_sym_EQ_EQ_EQ,
- anon_sym_BANG_EQ_EQ,
- STATE(1757), 2,
- sym_template_string,
- sym_arguments,
- ACTIONS(4307), 3,
- anon_sym_BANG,
- anon_sym_AMP,
- anon_sym_PIPE,
- ACTIONS(5736), 3,
- anon_sym_LT_EQ,
- anon_sym_GT_EQ,
- anon_sym_instanceof,
- ACTIONS(4305), 7,
- sym__ternary_qmark,
- anon_sym_as,
- anon_sym_AMP_AMP,
- anon_sym_PIPE_PIPE,
- anon_sym_CARET,
- anon_sym_QMARK_QMARK,
- anon_sym_satisfies,
- [96422] = 24,
- ACTIONS(825), 1,
- anon_sym_BQUOTE,
- ACTIONS(3969), 1,
- anon_sym_LPAREN,
- ACTIONS(3971), 1,
- anon_sym_LBRACK,
- ACTIONS(3973), 1,
- anon_sym_DOT,
- ACTIONS(4059), 1,
- anon_sym_QMARK_DOT,
- ACTIONS(5718), 1,
- anon_sym_GT_GT,
- ACTIONS(5722), 1,
- anon_sym_AMP,
- ACTIONS(5730), 1,
- anon_sym_PERCENT,
- ACTIONS(5732), 1,
- anon_sym_STAR_STAR,
- ACTIONS(5734), 1,
- anon_sym_LT,
- STATE(1447), 1,
- sym_type_arguments,
- STATE(5080), 1,
- sym_optional_chain,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(4091), 2,
- anon_sym_PLUS_PLUS,
- anon_sym_DASH_DASH,
- ACTIONS(4307), 2,
- anon_sym_BANG,
- anon_sym_PIPE,
- ACTIONS(5710), 2,
- anon_sym_STAR,
- anon_sym_SLASH,
- ACTIONS(5712), 2,
- anon_sym_in,
- anon_sym_GT,
- ACTIONS(5720), 2,
- anon_sym_GT_GT_GT,
- anon_sym_LT_LT,
- ACTIONS(5728), 2,
- anon_sym_PLUS,
- anon_sym_DASH,
- ACTIONS(5738), 2,
- anon_sym_EQ_EQ,
- anon_sym_BANG_EQ,
- ACTIONS(5740), 2,
- anon_sym_EQ_EQ_EQ,
- anon_sym_BANG_EQ_EQ,
- STATE(1757), 2,
- sym_template_string,
- sym_arguments,
- ACTIONS(5736), 3,
- anon_sym_LT_EQ,
- anon_sym_GT_EQ,
- anon_sym_instanceof,
- ACTIONS(4305), 7,
- sym__ternary_qmark,
- anon_sym_as,
- anon_sym_AMP_AMP,
- anon_sym_PIPE_PIPE,
- anon_sym_CARET,
- anon_sym_QMARK_QMARK,
- anon_sym_satisfies,
- [96513] = 25,
- ACTIONS(825), 1,
- anon_sym_BQUOTE,
- ACTIONS(3969), 1,
- anon_sym_LPAREN,
- ACTIONS(3971), 1,
- anon_sym_LBRACK,
- ACTIONS(3973), 1,
- anon_sym_DOT,
- ACTIONS(4059), 1,
- anon_sym_QMARK_DOT,
- ACTIONS(5718), 1,
- anon_sym_GT_GT,
- ACTIONS(5722), 1,
- anon_sym_AMP,
- ACTIONS(5724), 1,
- anon_sym_CARET,
- ACTIONS(5730), 1,
- anon_sym_PERCENT,
- ACTIONS(5732), 1,
- anon_sym_STAR_STAR,
- ACTIONS(5734), 1,
- anon_sym_LT,
- STATE(1447), 1,
- sym_type_arguments,
- STATE(5080), 1,
- sym_optional_chain,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(4091), 2,
- anon_sym_PLUS_PLUS,
- anon_sym_DASH_DASH,
- ACTIONS(4307), 2,
- anon_sym_BANG,
- anon_sym_PIPE,
- ACTIONS(5710), 2,
- anon_sym_STAR,
- anon_sym_SLASH,
- ACTIONS(5712), 2,
- anon_sym_in,
- anon_sym_GT,
- ACTIONS(5720), 2,
- anon_sym_GT_GT_GT,
- anon_sym_LT_LT,
- ACTIONS(5728), 2,
- anon_sym_PLUS,
- anon_sym_DASH,
- ACTIONS(5738), 2,
- anon_sym_EQ_EQ,
- anon_sym_BANG_EQ,
- ACTIONS(5740), 2,
- anon_sym_EQ_EQ_EQ,
- anon_sym_BANG_EQ_EQ,
- STATE(1757), 2,
- sym_template_string,
- sym_arguments,
- ACTIONS(5736), 3,
- anon_sym_LT_EQ,
- anon_sym_GT_EQ,
- anon_sym_instanceof,
- ACTIONS(4305), 6,
- sym__ternary_qmark,
- anon_sym_as,
- anon_sym_AMP_AMP,
- anon_sym_PIPE_PIPE,
- anon_sym_QMARK_QMARK,
- anon_sym_satisfies,
- [96606] = 16,
- ACTIONS(825), 1,
- anon_sym_BQUOTE,
- ACTIONS(3969), 1,
- anon_sym_LPAREN,
- ACTIONS(3971), 1,
- anon_sym_LBRACK,
- ACTIONS(3973), 1,
- anon_sym_DOT,
- ACTIONS(4059), 1,
- anon_sym_QMARK_DOT,
- ACTIONS(5730), 1,
- anon_sym_PERCENT,
- ACTIONS(5732), 1,
- anon_sym_STAR_STAR,
- ACTIONS(5752), 1,
- anon_sym_LT,
- STATE(1447), 1,
- sym_type_arguments,
- STATE(5080), 1,
- sym_optional_chain,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(4091), 2,
- anon_sym_PLUS_PLUS,
- anon_sym_DASH_DASH,
- ACTIONS(5710), 2,
- anon_sym_STAR,
- anon_sym_SLASH,
- STATE(1757), 2,
- sym_template_string,
- sym_arguments,
- ACTIONS(4307), 10,
- anon_sym_BANG,
- anon_sym_in,
- anon_sym_GT,
- anon_sym_GT_GT,
- anon_sym_AMP,
- anon_sym_PIPE,
- anon_sym_PLUS,
- anon_sym_DASH,
- anon_sym_EQ_EQ,
- anon_sym_BANG_EQ,
- ACTIONS(4305), 14,
- sym__ternary_qmark,
- anon_sym_as,
- anon_sym_AMP_AMP,
- anon_sym_PIPE_PIPE,
- anon_sym_GT_GT_GT,
- anon_sym_LT_LT,
- anon_sym_CARET,
- anon_sym_LT_EQ,
- anon_sym_EQ_EQ_EQ,
- anon_sym_BANG_EQ_EQ,
- anon_sym_GT_EQ,
- anon_sym_QMARK_QMARK,
- anon_sym_instanceof,
- anon_sym_satisfies,
- [96681] = 17,
- ACTIONS(825), 1,
- anon_sym_BQUOTE,
- ACTIONS(3969), 1,
- anon_sym_LPAREN,
- ACTIONS(3971), 1,
- anon_sym_LBRACK,
- ACTIONS(3973), 1,
- anon_sym_DOT,
- ACTIONS(4051), 1,
- anon_sym_as,
- ACTIONS(4055), 1,
- anon_sym_BANG,
- ACTIONS(4059), 1,
- anon_sym_QMARK_DOT,
- ACTIONS(4093), 1,
- anon_sym_satisfies,
- ACTIONS(5732), 1,
- anon_sym_STAR_STAR,
- ACTIONS(5752), 1,
- anon_sym_LT,
- STATE(1447), 1,
- sym_type_arguments,
- STATE(5080), 1,
- sym_optional_chain,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(4091), 2,
- anon_sym_PLUS_PLUS,
- anon_sym_DASH_DASH,
- STATE(1757), 2,
- sym_template_string,
- sym_arguments,
- ACTIONS(4307), 11,
- anon_sym_STAR,
- anon_sym_in,
- anon_sym_GT,
- anon_sym_GT_GT,
- anon_sym_AMP,
- anon_sym_PIPE,
- anon_sym_PLUS,
- anon_sym_DASH,
- anon_sym_SLASH,
- anon_sym_EQ_EQ,
- anon_sym_BANG_EQ,
- ACTIONS(4305), 13,
- sym__ternary_qmark,
- anon_sym_AMP_AMP,
- anon_sym_PIPE_PIPE,
- anon_sym_GT_GT_GT,
- anon_sym_LT_LT,
- anon_sym_CARET,
- anon_sym_PERCENT,
- anon_sym_LT_EQ,
- anon_sym_EQ_EQ_EQ,
- anon_sym_BANG_EQ_EQ,
- anon_sym_GT_EQ,
- anon_sym_QMARK_QMARK,
- anon_sym_instanceof,
- [96758] = 21,
- ACTIONS(825), 1,
- anon_sym_BQUOTE,
- ACTIONS(3969), 1,
- anon_sym_LPAREN,
- ACTIONS(3971), 1,
- anon_sym_LBRACK,
- ACTIONS(3973), 1,
- anon_sym_DOT,
- ACTIONS(4059), 1,
- anon_sym_QMARK_DOT,
- ACTIONS(5718), 1,
- anon_sym_GT_GT,
- ACTIONS(5730), 1,
- anon_sym_PERCENT,
- ACTIONS(5732), 1,
- anon_sym_STAR_STAR,
- ACTIONS(5734), 1,
- anon_sym_LT,
- STATE(1447), 1,
- sym_type_arguments,
- STATE(5080), 1,
- sym_optional_chain,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(4091), 2,
- anon_sym_PLUS_PLUS,
- anon_sym_DASH_DASH,
- ACTIONS(5710), 2,
- anon_sym_STAR,
- anon_sym_SLASH,
- ACTIONS(5712), 2,
- anon_sym_in,
- anon_sym_GT,
- ACTIONS(5720), 2,
- anon_sym_GT_GT_GT,
- anon_sym_LT_LT,
- ACTIONS(5728), 2,
- anon_sym_PLUS,
- anon_sym_DASH,
- STATE(1757), 2,
- sym_template_string,
- sym_arguments,
- ACTIONS(5736), 3,
- anon_sym_LT_EQ,
- anon_sym_GT_EQ,
- anon_sym_instanceof,
- ACTIONS(4307), 5,
- anon_sym_BANG,
- anon_sym_AMP,
- anon_sym_PIPE,
- anon_sym_EQ_EQ,
- anon_sym_BANG_EQ,
- ACTIONS(4305), 9,
- sym__ternary_qmark,
- anon_sym_as,
- anon_sym_AMP_AMP,
- anon_sym_PIPE_PIPE,
- anon_sym_CARET,
- anon_sym_EQ_EQ_EQ,
- anon_sym_BANG_EQ_EQ,
- anon_sym_QMARK_QMARK,
- anon_sym_satisfies,
- [96843] = 28,
- ACTIONS(825), 1,
- anon_sym_BQUOTE,
- ACTIONS(3969), 1,
- anon_sym_LPAREN,
- ACTIONS(3971), 1,
- anon_sym_LBRACK,
- ACTIONS(3973), 1,
- anon_sym_DOT,
- ACTIONS(4059), 1,
- anon_sym_QMARK_DOT,
- ACTIONS(4307), 1,
- anon_sym_BANG,
- ACTIONS(5714), 1,
- anon_sym_AMP_AMP,
- ACTIONS(5716), 1,
- anon_sym_PIPE_PIPE,
- ACTIONS(5718), 1,
- anon_sym_GT_GT,
- ACTIONS(5722), 1,
- anon_sym_AMP,
- ACTIONS(5724), 1,
- anon_sym_CARET,
- ACTIONS(5726), 1,
- anon_sym_PIPE,
- ACTIONS(5730), 1,
- anon_sym_PERCENT,
- ACTIONS(5732), 1,
- anon_sym_STAR_STAR,
- ACTIONS(5734), 1,
- anon_sym_LT,
- STATE(1447), 1,
- sym_type_arguments,
- STATE(5080), 1,
- sym_optional_chain,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(4091), 2,
- anon_sym_PLUS_PLUS,
- anon_sym_DASH_DASH,
- ACTIONS(5710), 2,
- anon_sym_STAR,
- anon_sym_SLASH,
- ACTIONS(5712), 2,
- anon_sym_in,
- anon_sym_GT,
- ACTIONS(5720), 2,
- anon_sym_GT_GT_GT,
- anon_sym_LT_LT,
- ACTIONS(5728), 2,
- anon_sym_PLUS,
- anon_sym_DASH,
- ACTIONS(5738), 2,
- anon_sym_EQ_EQ,
- anon_sym_BANG_EQ,
- ACTIONS(5740), 2,
- anon_sym_EQ_EQ_EQ,
- anon_sym_BANG_EQ_EQ,
- STATE(1757), 2,
- sym_template_string,
- sym_arguments,
- ACTIONS(5736), 3,
- anon_sym_LT_EQ,
- anon_sym_GT_EQ,
- anon_sym_instanceof,
- ACTIONS(4305), 4,
- sym__ternary_qmark,
- anon_sym_as,
- anon_sym_QMARK_QMARK,
- anon_sym_satisfies,
- [96942] = 31,
- ACTIONS(825), 1,
- anon_sym_BQUOTE,
- ACTIONS(3969), 1,
- anon_sym_LPAREN,
- ACTIONS(3971), 1,
- anon_sym_LBRACK,
- ACTIONS(3973), 1,
- anon_sym_DOT,
- ACTIONS(4051), 1,
- anon_sym_as,
- ACTIONS(4055), 1,
- anon_sym_BANG,
- ACTIONS(4059), 1,
- anon_sym_QMARK_DOT,
- ACTIONS(4093), 1,
- anon_sym_satisfies,
- ACTIONS(5714), 1,
- anon_sym_AMP_AMP,
- ACTIONS(5716), 1,
- anon_sym_PIPE_PIPE,
- ACTIONS(5718), 1,
- anon_sym_GT_GT,
- ACTIONS(5722), 1,
- anon_sym_AMP,
- ACTIONS(5724), 1,
- anon_sym_CARET,
- ACTIONS(5726), 1,
- anon_sym_PIPE,
- ACTIONS(5730), 1,
- anon_sym_PERCENT,
- ACTIONS(5732), 1,
- anon_sym_STAR_STAR,
- ACTIONS(5734), 1,
- anon_sym_LT,
- ACTIONS(5742), 1,
- anon_sym_QMARK_QMARK,
- ACTIONS(5744), 1,
- sym__ternary_qmark,
- STATE(1447), 1,
- sym_type_arguments,
- STATE(5080), 1,
- sym_optional_chain,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(4091), 2,
- anon_sym_PLUS_PLUS,
- anon_sym_DASH_DASH,
- ACTIONS(5710), 2,
- anon_sym_STAR,
- anon_sym_SLASH,
- ACTIONS(5712), 2,
- anon_sym_in,
- anon_sym_GT,
- ACTIONS(5720), 2,
- anon_sym_GT_GT_GT,
- anon_sym_LT_LT,
- ACTIONS(5728), 2,
- anon_sym_PLUS,
- anon_sym_DASH,
- ACTIONS(5738), 2,
- anon_sym_EQ_EQ,
- anon_sym_BANG_EQ,
- ACTIONS(5740), 2,
- anon_sym_EQ_EQ_EQ,
- anon_sym_BANG_EQ_EQ,
- STATE(1757), 2,
- sym_template_string,
- sym_arguments,
- ACTIONS(5736), 3,
- anon_sym_LT_EQ,
- anon_sym_GT_EQ,
- anon_sym_instanceof,
- [97047] = 31,
- ACTIONS(825), 1,
- anon_sym_BQUOTE,
- ACTIONS(3969), 1,
- anon_sym_LPAREN,
- ACTIONS(3971), 1,
- anon_sym_LBRACK,
- ACTIONS(3973), 1,
- anon_sym_DOT,
- ACTIONS(4051), 1,
- anon_sym_as,
- ACTIONS(4055), 1,
- anon_sym_BANG,
- ACTIONS(4059), 1,
- anon_sym_QMARK_DOT,
- ACTIONS(4093), 1,
- anon_sym_satisfies,
- ACTIONS(5714), 1,
- anon_sym_AMP_AMP,
- ACTIONS(5716), 1,
- anon_sym_PIPE_PIPE,
- ACTIONS(5718), 1,
- anon_sym_GT_GT,
- ACTIONS(5722), 1,
- anon_sym_AMP,
- ACTIONS(5724), 1,
- anon_sym_CARET,
- ACTIONS(5726), 1,
- anon_sym_PIPE,
- ACTIONS(5730), 1,
- anon_sym_PERCENT,
- ACTIONS(5732), 1,
- anon_sym_STAR_STAR,
- ACTIONS(5734), 1,
- anon_sym_LT,
- ACTIONS(5742), 1,
- anon_sym_QMARK_QMARK,
- ACTIONS(5744), 1,
- sym__ternary_qmark,
- STATE(1447), 1,
- sym_type_arguments,
- STATE(5080), 1,
- sym_optional_chain,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(4091), 2,
- anon_sym_PLUS_PLUS,
- anon_sym_DASH_DASH,
- ACTIONS(5710), 2,
- anon_sym_STAR,
- anon_sym_SLASH,
- ACTIONS(5712), 2,
- anon_sym_in,
- anon_sym_GT,
- ACTIONS(5720), 2,
- anon_sym_GT_GT_GT,
- anon_sym_LT_LT,
- ACTIONS(5728), 2,
- anon_sym_PLUS,
- anon_sym_DASH,
- ACTIONS(5738), 2,
- anon_sym_EQ_EQ,
- anon_sym_BANG_EQ,
- ACTIONS(5740), 2,
- anon_sym_EQ_EQ_EQ,
- anon_sym_BANG_EQ_EQ,
- STATE(1757), 2,
- sym_template_string,
- sym_arguments,
- ACTIONS(5736), 3,
- anon_sym_LT_EQ,
- anon_sym_GT_EQ,
- anon_sym_instanceof,
- [97152] = 8,
- ACTIONS(2275), 1,
- anon_sym_DQUOTE,
- ACTIONS(2277), 1,
- anon_sym_SQUOTE,
- ACTIONS(4634), 1,
- anon_sym_LBRACK,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(5556), 2,
- sym_number,
- sym_private_property_identifier,
- STATE(3808), 3,
- sym_string,
- sym__property_name,
- sym_computed_property_name,
- ACTIONS(3743), 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(2307), 23,
- anon_sym_export,
- anon_sym_type,
- anon_sym_namespace,
- anon_sym_let,
- anon_sym_async,
- anon_sym_new,
- sym_identifier,
- anon_sym_static,
- anon_sym_readonly,
- anon_sym_get,
- anon_sym_set,
- anon_sym_declare,
- anon_sym_public,
- anon_sym_private,
- anon_sym_protected,
- anon_sym_override,
- anon_sym_module,
- anon_sym_any,
- anon_sym_number,
- anon_sym_boolean,
- anon_sym_string,
- anon_sym_symbol,
- anon_sym_object,
- [97211] = 31,
- ACTIONS(825), 1,
- anon_sym_BQUOTE,
- ACTIONS(3969), 1,
- anon_sym_LPAREN,
- ACTIONS(3971), 1,
- anon_sym_LBRACK,
- ACTIONS(3973), 1,
- anon_sym_DOT,
- ACTIONS(4051), 1,
- anon_sym_as,
- ACTIONS(4055), 1,
- anon_sym_BANG,
- ACTIONS(4059), 1,
- anon_sym_QMARK_DOT,
- ACTIONS(4093), 1,
- anon_sym_satisfies,
- ACTIONS(5714), 1,
- anon_sym_AMP_AMP,
- ACTIONS(5716), 1,
- anon_sym_PIPE_PIPE,
- ACTIONS(5718), 1,
- anon_sym_GT_GT,
- ACTIONS(5722), 1,
- anon_sym_AMP,
- ACTIONS(5724), 1,
- anon_sym_CARET,
- ACTIONS(5726), 1,
- anon_sym_PIPE,
- ACTIONS(5730), 1,
- anon_sym_PERCENT,
- ACTIONS(5732), 1,
- anon_sym_STAR_STAR,
- ACTIONS(5734), 1,
- anon_sym_LT,
- ACTIONS(5742), 1,
- anon_sym_QMARK_QMARK,
- ACTIONS(5744), 1,
- sym__ternary_qmark,
- STATE(1447), 1,
- sym_type_arguments,
- STATE(5080), 1,
- sym_optional_chain,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(4091), 2,
- anon_sym_PLUS_PLUS,
- anon_sym_DASH_DASH,
- ACTIONS(5710), 2,
- anon_sym_STAR,
- anon_sym_SLASH,
- ACTIONS(5712), 2,
- anon_sym_in,
- anon_sym_GT,
- ACTIONS(5720), 2,
- anon_sym_GT_GT_GT,
- anon_sym_LT_LT,
- ACTIONS(5728), 2,
- anon_sym_PLUS,
- anon_sym_DASH,
- ACTIONS(5738), 2,
- anon_sym_EQ_EQ,
- anon_sym_BANG_EQ,
- ACTIONS(5740), 2,
- anon_sym_EQ_EQ_EQ,
- anon_sym_BANG_EQ_EQ,
- STATE(1757), 2,
- sym_template_string,
- sym_arguments,
- ACTIONS(5736), 3,
- anon_sym_LT_EQ,
- anon_sym_GT_EQ,
- anon_sym_instanceof,
- [97316] = 31,
- ACTIONS(825), 1,
- anon_sym_BQUOTE,
- ACTIONS(3969), 1,
- anon_sym_LPAREN,
- ACTIONS(3971), 1,
- anon_sym_LBRACK,
- ACTIONS(3973), 1,
- anon_sym_DOT,
- ACTIONS(4051), 1,
- anon_sym_as,
- ACTIONS(4055), 1,
- anon_sym_BANG,
- ACTIONS(4059), 1,
- anon_sym_QMARK_DOT,
- ACTIONS(4093), 1,
- anon_sym_satisfies,
- ACTIONS(5714), 1,
- anon_sym_AMP_AMP,
- ACTIONS(5716), 1,
- anon_sym_PIPE_PIPE,
- ACTIONS(5718), 1,
- anon_sym_GT_GT,
- ACTIONS(5722), 1,
- anon_sym_AMP,
- ACTIONS(5724), 1,
- anon_sym_CARET,
- ACTIONS(5726), 1,
- anon_sym_PIPE,
- ACTIONS(5730), 1,
- anon_sym_PERCENT,
- ACTIONS(5732), 1,
- anon_sym_STAR_STAR,
- ACTIONS(5734), 1,
- anon_sym_LT,
- ACTIONS(5742), 1,
- anon_sym_QMARK_QMARK,
- ACTIONS(5744), 1,
- sym__ternary_qmark,
- STATE(1447), 1,
- sym_type_arguments,
- STATE(5080), 1,
- sym_optional_chain,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(4091), 2,
- anon_sym_PLUS_PLUS,
- anon_sym_DASH_DASH,
- ACTIONS(5710), 2,
- anon_sym_STAR,
- anon_sym_SLASH,
- ACTIONS(5712), 2,
- anon_sym_in,
- anon_sym_GT,
- ACTIONS(5720), 2,
- anon_sym_GT_GT_GT,
- anon_sym_LT_LT,
- ACTIONS(5728), 2,
- anon_sym_PLUS,
- anon_sym_DASH,
- ACTIONS(5738), 2,
- anon_sym_EQ_EQ,
- anon_sym_BANG_EQ,
- ACTIONS(5740), 2,
- anon_sym_EQ_EQ_EQ,
- anon_sym_BANG_EQ_EQ,
- STATE(1757), 2,
- sym_template_string,
- sym_arguments,
- ACTIONS(5736), 3,
- anon_sym_LT_EQ,
- anon_sym_GT_EQ,
- anon_sym_instanceof,
- [97421] = 31,
- ACTIONS(825), 1,
- anon_sym_BQUOTE,
- ACTIONS(3969), 1,
- anon_sym_LPAREN,
- ACTIONS(3971), 1,
- anon_sym_LBRACK,
- ACTIONS(3973), 1,
- anon_sym_DOT,
- ACTIONS(4051), 1,
- anon_sym_as,
- ACTIONS(4055), 1,
- anon_sym_BANG,
- ACTIONS(4059), 1,
- anon_sym_QMARK_DOT,
- ACTIONS(4093), 1,
- anon_sym_satisfies,
- ACTIONS(5714), 1,
- anon_sym_AMP_AMP,
- ACTIONS(5716), 1,
- anon_sym_PIPE_PIPE,
- ACTIONS(5718), 1,
- anon_sym_GT_GT,
- ACTIONS(5722), 1,
- anon_sym_AMP,
- ACTIONS(5724), 1,
- anon_sym_CARET,
- ACTIONS(5726), 1,
- anon_sym_PIPE,
- ACTIONS(5730), 1,
- anon_sym_PERCENT,
- ACTIONS(5732), 1,
- anon_sym_STAR_STAR,
- ACTIONS(5734), 1,
- anon_sym_LT,
- ACTIONS(5742), 1,
- anon_sym_QMARK_QMARK,
- ACTIONS(5744), 1,
- sym__ternary_qmark,
- STATE(1447), 1,
- sym_type_arguments,
- STATE(5080), 1,
- sym_optional_chain,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(4091), 2,
- anon_sym_PLUS_PLUS,
- anon_sym_DASH_DASH,
- ACTIONS(5710), 2,
- anon_sym_STAR,
- anon_sym_SLASH,
- ACTIONS(5712), 2,
- anon_sym_in,
- anon_sym_GT,
- ACTIONS(5720), 2,
- anon_sym_GT_GT_GT,
- anon_sym_LT_LT,
- ACTIONS(5728), 2,
- anon_sym_PLUS,
- anon_sym_DASH,
- ACTIONS(5738), 2,
- anon_sym_EQ_EQ,
- anon_sym_BANG_EQ,
- ACTIONS(5740), 2,
- anon_sym_EQ_EQ_EQ,
- anon_sym_BANG_EQ_EQ,
- STATE(1757), 2,
- sym_template_string,
- sym_arguments,
- ACTIONS(5736), 3,
- anon_sym_LT_EQ,
- anon_sym_GT_EQ,
- anon_sym_instanceof,
- [97526] = 31,
- ACTIONS(825), 1,
- anon_sym_BQUOTE,
- ACTIONS(3969), 1,
- anon_sym_LPAREN,
- ACTIONS(3971), 1,
- anon_sym_LBRACK,
- ACTIONS(3973), 1,
- anon_sym_DOT,
- ACTIONS(4051), 1,
- anon_sym_as,
- ACTIONS(4055), 1,
- anon_sym_BANG,
- ACTIONS(4059), 1,
- anon_sym_QMARK_DOT,
- ACTIONS(4093), 1,
- anon_sym_satisfies,
- ACTIONS(5714), 1,
- anon_sym_AMP_AMP,
- ACTIONS(5716), 1,
- anon_sym_PIPE_PIPE,
- ACTIONS(5718), 1,
- anon_sym_GT_GT,
- ACTIONS(5722), 1,
- anon_sym_AMP,
- ACTIONS(5724), 1,
- anon_sym_CARET,
- ACTIONS(5726), 1,
- anon_sym_PIPE,
- ACTIONS(5730), 1,
- anon_sym_PERCENT,
- ACTIONS(5732), 1,
- anon_sym_STAR_STAR,
- ACTIONS(5734), 1,
- anon_sym_LT,
- ACTIONS(5742), 1,
- anon_sym_QMARK_QMARK,
- ACTIONS(5744), 1,
- sym__ternary_qmark,
- STATE(1447), 1,
- sym_type_arguments,
- STATE(5080), 1,
- sym_optional_chain,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(4091), 2,
- anon_sym_PLUS_PLUS,
- anon_sym_DASH_DASH,
- ACTIONS(5710), 2,
- anon_sym_STAR,
- anon_sym_SLASH,
- ACTIONS(5712), 2,
- anon_sym_in,
- anon_sym_GT,
- ACTIONS(5720), 2,
- anon_sym_GT_GT_GT,
- anon_sym_LT_LT,
- ACTIONS(5728), 2,
- anon_sym_PLUS,
- anon_sym_DASH,
- ACTIONS(5738), 2,
- anon_sym_EQ_EQ,
- anon_sym_BANG_EQ,
- ACTIONS(5740), 2,
- anon_sym_EQ_EQ_EQ,
- anon_sym_BANG_EQ_EQ,
- STATE(1757), 2,
- sym_template_string,
- sym_arguments,
- ACTIONS(5736), 3,
- anon_sym_LT_EQ,
- anon_sym_GT_EQ,
- anon_sym_instanceof,
- [97631] = 31,
- ACTIONS(825), 1,
- anon_sym_BQUOTE,
- ACTIONS(3969), 1,
- anon_sym_LPAREN,
- ACTIONS(3971), 1,
- anon_sym_LBRACK,
- ACTIONS(3973), 1,
- anon_sym_DOT,
- ACTIONS(4051), 1,
- anon_sym_as,
- ACTIONS(4055), 1,
- anon_sym_BANG,
- ACTIONS(4059), 1,
- anon_sym_QMARK_DOT,
- ACTIONS(4093), 1,
- anon_sym_satisfies,
- ACTIONS(5714), 1,
- anon_sym_AMP_AMP,
- ACTIONS(5716), 1,
- anon_sym_PIPE_PIPE,
- ACTIONS(5718), 1,
- anon_sym_GT_GT,
- ACTIONS(5722), 1,
- anon_sym_AMP,
- ACTIONS(5724), 1,
- anon_sym_CARET,
- ACTIONS(5726), 1,
- anon_sym_PIPE,
- ACTIONS(5730), 1,
- anon_sym_PERCENT,
- ACTIONS(5732), 1,
- anon_sym_STAR_STAR,
- ACTIONS(5734), 1,
- anon_sym_LT,
- ACTIONS(5742), 1,
- anon_sym_QMARK_QMARK,
- ACTIONS(5744), 1,
- sym__ternary_qmark,
- STATE(1447), 1,
- sym_type_arguments,
- STATE(5080), 1,
- sym_optional_chain,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(4091), 2,
- anon_sym_PLUS_PLUS,
- anon_sym_DASH_DASH,
- ACTIONS(5710), 2,
- anon_sym_STAR,
- anon_sym_SLASH,
- ACTIONS(5712), 2,
- anon_sym_in,
- anon_sym_GT,
- ACTIONS(5720), 2,
- anon_sym_GT_GT_GT,
- anon_sym_LT_LT,
- ACTIONS(5728), 2,
- anon_sym_PLUS,
- anon_sym_DASH,
- ACTIONS(5738), 2,
- anon_sym_EQ_EQ,
- anon_sym_BANG_EQ,
- ACTIONS(5740), 2,
- anon_sym_EQ_EQ_EQ,
- anon_sym_BANG_EQ_EQ,
- STATE(1757), 2,
- sym_template_string,
- sym_arguments,
- ACTIONS(5736), 3,
- anon_sym_LT_EQ,
- anon_sym_GT_EQ,
- anon_sym_instanceof,
- [97736] = 8,
- ACTIONS(2275), 1,
- anon_sym_DQUOTE,
- ACTIONS(2277), 1,
- anon_sym_SQUOTE,
- ACTIONS(4634), 1,
- anon_sym_LBRACK,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(5664), 2,
- sym_number,
- sym_private_property_identifier,
- STATE(3772), 3,
- sym_string,
- sym__property_name,
- sym_computed_property_name,
- ACTIONS(3743), 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(2307), 23,
- anon_sym_export,
- anon_sym_type,
- anon_sym_namespace,
- anon_sym_let,
- anon_sym_async,
- anon_sym_new,
- sym_identifier,
- anon_sym_static,
- anon_sym_readonly,
- anon_sym_get,
- anon_sym_set,
- anon_sym_declare,
- anon_sym_public,
- anon_sym_private,
- anon_sym_protected,
- anon_sym_override,
- anon_sym_module,
- anon_sym_any,
- anon_sym_number,
- anon_sym_boolean,
- anon_sym_string,
- anon_sym_symbol,
- anon_sym_object,
- [97795] = 8,
- ACTIONS(2275), 1,
- anon_sym_DQUOTE,
- ACTIONS(2277), 1,
- anon_sym_SQUOTE,
- ACTIONS(4634), 1,
- anon_sym_LBRACK,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(5562), 2,
- sym_number,
- sym_private_property_identifier,
- STATE(3914), 3,
- sym_string,
- sym__property_name,
- sym_computed_property_name,
- ACTIONS(3743), 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(2307), 23,
- anon_sym_export,
- anon_sym_type,
- anon_sym_namespace,
- anon_sym_let,
- anon_sym_async,
- anon_sym_new,
- sym_identifier,
- anon_sym_static,
- anon_sym_readonly,
- anon_sym_get,
- anon_sym_set,
- anon_sym_declare,
- anon_sym_public,
- anon_sym_private,
- anon_sym_protected,
- anon_sym_override,
- anon_sym_module,
- anon_sym_any,
- anon_sym_number,
- anon_sym_boolean,
- anon_sym_string,
- anon_sym_symbol,
- anon_sym_object,
- [97854] = 31,
- ACTIONS(825), 1,
- anon_sym_BQUOTE,
- ACTIONS(3969), 1,
- anon_sym_LPAREN,
- ACTIONS(3971), 1,
- anon_sym_LBRACK,
- ACTIONS(3973), 1,
- anon_sym_DOT,
- ACTIONS(4051), 1,
- anon_sym_as,
- ACTIONS(4055), 1,
- anon_sym_BANG,
- ACTIONS(4059), 1,
- anon_sym_QMARK_DOT,
- ACTIONS(4093), 1,
- anon_sym_satisfies,
- ACTIONS(5714), 1,
- anon_sym_AMP_AMP,
- ACTIONS(5716), 1,
- anon_sym_PIPE_PIPE,
- ACTIONS(5718), 1,
- anon_sym_GT_GT,
- ACTIONS(5722), 1,
- anon_sym_AMP,
- ACTIONS(5724), 1,
- anon_sym_CARET,
- ACTIONS(5726), 1,
- anon_sym_PIPE,
- ACTIONS(5730), 1,
- anon_sym_PERCENT,
- ACTIONS(5732), 1,
- anon_sym_STAR_STAR,
- ACTIONS(5734), 1,
- anon_sym_LT,
- ACTIONS(5742), 1,
- anon_sym_QMARK_QMARK,
- ACTIONS(5744), 1,
- sym__ternary_qmark,
- STATE(1447), 1,
- sym_type_arguments,
- STATE(5080), 1,
- sym_optional_chain,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(4091), 2,
- anon_sym_PLUS_PLUS,
- anon_sym_DASH_DASH,
- ACTIONS(5710), 2,
- anon_sym_STAR,
- anon_sym_SLASH,
- ACTIONS(5712), 2,
- anon_sym_in,
- anon_sym_GT,
- ACTIONS(5720), 2,
- anon_sym_GT_GT_GT,
- anon_sym_LT_LT,
- ACTIONS(5728), 2,
- anon_sym_PLUS,
- anon_sym_DASH,
- ACTIONS(5738), 2,
- anon_sym_EQ_EQ,
- anon_sym_BANG_EQ,
- ACTIONS(5740), 2,
- anon_sym_EQ_EQ_EQ,
- anon_sym_BANG_EQ_EQ,
- STATE(1757), 2,
- sym_template_string,
- sym_arguments,
- ACTIONS(5736), 3,
- anon_sym_LT_EQ,
- anon_sym_GT_EQ,
- anon_sym_instanceof,
- [97959] = 8,
- ACTIONS(2275), 1,
- anon_sym_DQUOTE,
- ACTIONS(2277), 1,
- anon_sym_SQUOTE,
- ACTIONS(4634), 1,
- anon_sym_LBRACK,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(5566), 2,
- sym_number,
- sym_private_property_identifier,
- STATE(3832), 3,
- sym_string,
- sym__property_name,
- sym_computed_property_name,
- ACTIONS(3743), 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(2307), 23,
- anon_sym_export,
- anon_sym_type,
- anon_sym_namespace,
- anon_sym_let,
- anon_sym_async,
- anon_sym_new,
- sym_identifier,
- anon_sym_static,
- anon_sym_readonly,
- anon_sym_get,
- anon_sym_set,
- anon_sym_declare,
- anon_sym_public,
- anon_sym_private,
- anon_sym_protected,
- anon_sym_override,
- anon_sym_module,
- anon_sym_any,
- anon_sym_number,
- anon_sym_boolean,
- anon_sym_string,
- anon_sym_symbol,
- anon_sym_object,
- [98018] = 8,
- ACTIONS(2275), 1,
- anon_sym_DQUOTE,
- ACTIONS(2277), 1,
- anon_sym_SQUOTE,
- ACTIONS(4634), 1,
- anon_sym_LBRACK,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(5572), 2,
- sym_number,
- sym_private_property_identifier,
- STATE(3834), 3,
- sym_string,
- sym__property_name,
- sym_computed_property_name,
- ACTIONS(3743), 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(2307), 23,
- anon_sym_export,
- anon_sym_type,
- anon_sym_namespace,
- anon_sym_let,
- anon_sym_async,
- anon_sym_new,
- sym_identifier,
- anon_sym_static,
- anon_sym_readonly,
- anon_sym_get,
- anon_sym_set,
- anon_sym_declare,
- anon_sym_public,
- anon_sym_private,
- anon_sym_protected,
- anon_sym_override,
- anon_sym_module,
- anon_sym_any,
- anon_sym_number,
- anon_sym_boolean,
- anon_sym_string,
- anon_sym_symbol,
- anon_sym_object,
- [98077] = 8,
- ACTIONS(1594), 1,
- anon_sym_DQUOTE,
- ACTIONS(1596), 1,
- anon_sym_SQUOTE,
- ACTIONS(4245), 1,
- anon_sym_LBRACK,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(4993), 2,
- sym_number,
- sym_private_property_identifier,
- STATE(3277), 3,
- sym_string,
- sym__property_name,
- sym_computed_property_name,
- ACTIONS(3743), 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(3607), 23,
- anon_sym_export,
- anon_sym_type,
- anon_sym_namespace,
- anon_sym_let,
- anon_sym_async,
- anon_sym_new,
- sym_identifier,
- anon_sym_static,
- anon_sym_readonly,
- anon_sym_get,
- anon_sym_set,
- anon_sym_declare,
- anon_sym_public,
- anon_sym_private,
- anon_sym_protected,
- anon_sym_override,
- anon_sym_module,
- anon_sym_any,
- anon_sym_number,
- anon_sym_boolean,
- anon_sym_string,
- anon_sym_symbol,
- anon_sym_object,
- [98136] = 8,
- ACTIONS(2275), 1,
- anon_sym_DQUOTE,
- ACTIONS(2277), 1,
- anon_sym_SQUOTE,
- ACTIONS(4634), 1,
- anon_sym_LBRACK,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(5773), 2,
- sym_number,
- sym_private_property_identifier,
- STATE(3897), 3,
- sym_string,
- sym__property_name,
- sym_computed_property_name,
- ACTIONS(3743), 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(2307), 23,
- anon_sym_export,
- anon_sym_type,
- anon_sym_namespace,
- anon_sym_let,
- anon_sym_async,
- anon_sym_new,
- sym_identifier,
- anon_sym_static,
- anon_sym_readonly,
- anon_sym_get,
- anon_sym_set,
- anon_sym_declare,
- anon_sym_public,
- anon_sym_private,
- anon_sym_protected,
- anon_sym_override,
- anon_sym_module,
- anon_sym_any,
- anon_sym_number,
- anon_sym_boolean,
- anon_sym_string,
- anon_sym_symbol,
- anon_sym_object,
- [98195] = 5,
- ACTIONS(3402), 1,
- anon_sym_EQ,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(3593), 3,
- anon_sym_COMMA,
- anon_sym_RBRACE,
- anon_sym_RBRACK,
- ACTIONS(3400), 13,
- anon_sym_STAR,
- anon_sym_BANG,
- anon_sym_in,
- anon_sym_GT,
- anon_sym_GT_GT,
- anon_sym_AMP,
- anon_sym_PIPE,
- anon_sym_PLUS,
- anon_sym_DASH,
- anon_sym_SLASH,
- anon_sym_LT,
- anon_sym_EQ_EQ,
- anon_sym_BANG_EQ,
- ACTIONS(3404), 23,
- sym__ternary_qmark,
- anon_sym_as,
- anon_sym_LPAREN,
- anon_sym_LBRACK,
- anon_sym_DOT,
- anon_sym_QMARK_DOT,
- anon_sym_AMP_AMP,
- anon_sym_PIPE_PIPE,
- anon_sym_GT_GT_GT,
- anon_sym_LT_LT,
- anon_sym_CARET,
- anon_sym_PERCENT,
- anon_sym_STAR_STAR,
- anon_sym_LT_EQ,
- anon_sym_EQ_EQ_EQ,
- anon_sym_BANG_EQ_EQ,
- anon_sym_GT_EQ,
- anon_sym_QMARK_QMARK,
- anon_sym_instanceof,
- anon_sym_PLUS_PLUS,
- anon_sym_DASH_DASH,
- anon_sym_BQUOTE,
- anon_sym_satisfies,
- [98248] = 8,
- ACTIONS(2275), 1,
- anon_sym_DQUOTE,
- ACTIONS(2277), 1,
- anon_sym_SQUOTE,
- ACTIONS(4634), 1,
- anon_sym_LBRACK,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(5486), 2,
- sym_number,
- sym_private_property_identifier,
- STATE(3843), 3,
- sym_string,
- sym__property_name,
- sym_computed_property_name,
- ACTIONS(3743), 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(2307), 23,
- anon_sym_export,
- anon_sym_type,
- anon_sym_namespace,
- anon_sym_let,
- anon_sym_async,
- anon_sym_new,
- sym_identifier,
- anon_sym_static,
- anon_sym_readonly,
- anon_sym_get,
- anon_sym_set,
- anon_sym_declare,
- anon_sym_public,
- anon_sym_private,
- anon_sym_protected,
- anon_sym_override,
- anon_sym_module,
- anon_sym_any,
- anon_sym_number,
- anon_sym_boolean,
- anon_sym_string,
- anon_sym_symbol,
- anon_sym_object,
- [98307] = 13,
- ACTIONS(241), 1,
- anon_sym_COMMA,
- ACTIONS(2275), 1,
- anon_sym_DQUOTE,
- ACTIONS(2277), 1,
- anon_sym_SQUOTE,
- ACTIONS(4243), 1,
- anon_sym_EQ,
- ACTIONS(4634), 1,
- anon_sym_LBRACK,
- ACTIONS(5202), 1,
- anon_sym_RBRACE,
- STATE(4672), 1,
- aux_sym_object_pattern_repeat1,
- STATE(5156), 1,
- aux_sym_object_repeat1,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(2285), 2,
- sym_number,
- sym_private_property_identifier,
- STATE(3788), 3,
- sym_string,
- sym__property_name,
- sym_computed_property_name,
- ACTIONS(3743), 4,
- anon_sym_LPAREN,
- anon_sym_COLON,
- anon_sym_LT,
- anon_sym_QMARK,
- ACTIONS(2307), 23,
- anon_sym_export,
- anon_sym_type,
- anon_sym_namespace,
- anon_sym_let,
- anon_sym_async,
- anon_sym_new,
- sym_identifier,
- anon_sym_static,
- anon_sym_readonly,
- anon_sym_get,
- anon_sym_set,
- anon_sym_declare,
- anon_sym_public,
- anon_sym_private,
- anon_sym_protected,
- anon_sym_override,
- anon_sym_module,
- anon_sym_any,
- anon_sym_number,
- anon_sym_boolean,
- anon_sym_string,
- anon_sym_symbol,
- anon_sym_object,
- [98376] = 8,
- ACTIONS(2275), 1,
- anon_sym_DQUOTE,
- ACTIONS(2277), 1,
- anon_sym_SQUOTE,
- ACTIONS(4634), 1,
- anon_sym_LBRACK,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(5408), 2,
- sym_number,
- sym_private_property_identifier,
- STATE(3757), 3,
- sym_string,
- sym__property_name,
- sym_computed_property_name,
- ACTIONS(3743), 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(2307), 23,
- anon_sym_export,
- anon_sym_type,
- anon_sym_namespace,
- anon_sym_let,
- anon_sym_async,
- anon_sym_new,
- sym_identifier,
- anon_sym_static,
- anon_sym_readonly,
- anon_sym_get,
- anon_sym_set,
- anon_sym_declare,
- anon_sym_public,
- anon_sym_private,
- anon_sym_protected,
- anon_sym_override,
- anon_sym_module,
- anon_sym_any,
- anon_sym_number,
- anon_sym_boolean,
- anon_sym_string,
- anon_sym_symbol,
- anon_sym_object,
- [98435] = 19,
- ACTIONS(235), 1,
- anon_sym_STAR,
- ACTIONS(1935), 1,
- anon_sym_DOT_DOT_DOT,
- ACTIONS(2275), 1,
- anon_sym_DQUOTE,
- ACTIONS(2277), 1,
- anon_sym_SQUOTE,
- ACTIONS(4634), 1,
- anon_sym_LBRACK,
- ACTIONS(5779), 1,
- anon_sym_async,
- ACTIONS(5781), 1,
- anon_sym_static,
- ACTIONS(5783), 1,
- anon_sym_readonly,
- ACTIONS(5789), 1,
- anon_sym_override,
- STATE(2682), 1,
- sym_accessibility_modifier,
- STATE(2711), 1,
- sym_override_modifier,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(5650), 2,
- sym_number,
- sym_private_property_identifier,
- ACTIONS(5777), 2,
- anon_sym_COMMA,
- anon_sym_RBRACE,
- ACTIONS(5785), 2,
- anon_sym_get,
- anon_sym_set,
- ACTIONS(5787), 3,
- anon_sym_public,
- anon_sym_private,
- anon_sym_protected,
- STATE(3611), 3,
- sym_string,
- sym__property_name,
- sym_computed_property_name,
- STATE(5214), 3,
- sym_spread_element,
- sym_method_definition,
- sym_pair,
- ACTIONS(5775), 14,
- anon_sym_export,
- anon_sym_type,
- anon_sym_namespace,
- anon_sym_let,
- anon_sym_new,
- sym_identifier,
- anon_sym_declare,
- anon_sym_module,
- anon_sym_any,
- anon_sym_number,
- anon_sym_boolean,
- anon_sym_string,
- anon_sym_symbol,
- anon_sym_object,
- [98516] = 7,
- ACTIONS(3556), 1,
- anon_sym_EQ,
- ACTIONS(4691), 1,
- anon_sym_LBRACK,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(4330), 2,
- anon_sym_COMMA,
- anon_sym_extends,
- ACTIONS(4694), 3,
- anon_sym_GT,
- anon_sym_AMP,
- anon_sym_PIPE,
- ACTIONS(3400), 10,
- anon_sym_STAR,
- anon_sym_BANG,
- anon_sym_in,
- anon_sym_GT_GT,
- anon_sym_PLUS,
- anon_sym_DASH,
- anon_sym_SLASH,
- anon_sym_LT,
- anon_sym_EQ_EQ,
- anon_sym_BANG_EQ,
- ACTIONS(3404), 23,
- sym__ternary_qmark,
- anon_sym_as,
- anon_sym_LPAREN,
- anon_sym_RBRACK,
- anon_sym_DOT,
- anon_sym_QMARK_DOT,
- anon_sym_AMP_AMP,
- anon_sym_PIPE_PIPE,
- anon_sym_GT_GT_GT,
- anon_sym_LT_LT,
- anon_sym_CARET,
- anon_sym_PERCENT,
- anon_sym_STAR_STAR,
- anon_sym_LT_EQ,
- anon_sym_EQ_EQ_EQ,
- anon_sym_BANG_EQ_EQ,
- anon_sym_GT_EQ,
- anon_sym_QMARK_QMARK,
- anon_sym_instanceof,
- anon_sym_PLUS_PLUS,
- anon_sym_DASH_DASH,
- anon_sym_BQUOTE,
- anon_sym_satisfies,
- [98573] = 7,
- ACTIONS(3560), 1,
- anon_sym_EQ,
- ACTIONS(4691), 1,
- anon_sym_LBRACK,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(4330), 2,
- anon_sym_COMMA,
- anon_sym_extends,
- ACTIONS(4694), 3,
- anon_sym_GT,
- anon_sym_AMP,
- anon_sym_PIPE,
- ACTIONS(3400), 10,
- anon_sym_STAR,
- anon_sym_BANG,
- anon_sym_in,
- anon_sym_GT_GT,
- anon_sym_PLUS,
- anon_sym_DASH,
- anon_sym_SLASH,
- anon_sym_LT,
- anon_sym_EQ_EQ,
- anon_sym_BANG_EQ,
- ACTIONS(3404), 23,
- sym__ternary_qmark,
- anon_sym_as,
- anon_sym_LPAREN,
- anon_sym_of,
- anon_sym_DOT,
- anon_sym_QMARK_DOT,
- anon_sym_AMP_AMP,
- anon_sym_PIPE_PIPE,
- anon_sym_GT_GT_GT,
- anon_sym_LT_LT,
- anon_sym_CARET,
- anon_sym_PERCENT,
- anon_sym_STAR_STAR,
- anon_sym_LT_EQ,
- anon_sym_EQ_EQ_EQ,
- anon_sym_BANG_EQ_EQ,
- anon_sym_GT_EQ,
- anon_sym_QMARK_QMARK,
- anon_sym_instanceof,
- anon_sym_PLUS_PLUS,
- anon_sym_DASH_DASH,
- anon_sym_BQUOTE,
- anon_sym_satisfies,
- [98630] = 4,
- ACTIONS(3542), 1,
- anon_sym_EQ,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(3400), 13,
- anon_sym_STAR,
- anon_sym_BANG,
- anon_sym_in,
- anon_sym_GT,
- anon_sym_GT_GT,
- anon_sym_AMP,
- anon_sym_PIPE,
- anon_sym_PLUS,
- anon_sym_DASH,
- anon_sym_SLASH,
- anon_sym_LT,
- anon_sym_EQ_EQ,
- anon_sym_BANG_EQ,
- ACTIONS(3404), 26,
- sym__ternary_qmark,
- anon_sym_as,
- anon_sym_LBRACE,
- anon_sym_COMMA,
- anon_sym_LPAREN,
- anon_sym_LBRACK,
- anon_sym_DOT,
- anon_sym_QMARK_DOT,
- anon_sym_AMP_AMP,
- anon_sym_PIPE_PIPE,
- anon_sym_GT_GT_GT,
- anon_sym_LT_LT,
- anon_sym_CARET,
- anon_sym_PERCENT,
- anon_sym_STAR_STAR,
- anon_sym_LT_EQ,
- anon_sym_EQ_EQ_EQ,
- anon_sym_BANG_EQ_EQ,
- anon_sym_GT_EQ,
- anon_sym_QMARK_QMARK,
- anon_sym_instanceof,
- anon_sym_PLUS_PLUS,
- anon_sym_DASH_DASH,
- anon_sym_BQUOTE,
- anon_sym_satisfies,
- anon_sym_implements,
- [98681] = 8,
- ACTIONS(2275), 1,
- anon_sym_DQUOTE,
- ACTIONS(2277), 1,
- anon_sym_SQUOTE,
- ACTIONS(4634), 1,
- anon_sym_LBRACK,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(5791), 2,
- sym_number,
- sym_private_property_identifier,
- STATE(3840), 3,
- sym_string,
- sym__property_name,
- sym_computed_property_name,
- ACTIONS(3743), 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(2307), 23,
- anon_sym_export,
- anon_sym_type,
- anon_sym_namespace,
- anon_sym_let,
- anon_sym_async,
- anon_sym_new,
- sym_identifier,
- anon_sym_static,
- anon_sym_readonly,
- anon_sym_get,
- anon_sym_set,
- anon_sym_declare,
- anon_sym_public,
- anon_sym_private,
- anon_sym_protected,
- anon_sym_override,
- anon_sym_module,
- anon_sym_any,
- anon_sym_number,
- anon_sym_boolean,
- anon_sym_string,
- anon_sym_symbol,
- anon_sym_object,
- [98740] = 8,
- ACTIONS(2275), 1,
- anon_sym_DQUOTE,
- ACTIONS(2277), 1,
- anon_sym_SQUOTE,
- ACTIONS(4634), 1,
- anon_sym_LBRACK,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(5544), 2,
- sym_number,
- sym_private_property_identifier,
- STATE(3817), 3,
- sym_string,
- sym__property_name,
- sym_computed_property_name,
- ACTIONS(3743), 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(2307), 23,
- anon_sym_export,
- anon_sym_type,
- anon_sym_namespace,
- anon_sym_let,
- anon_sym_async,
- anon_sym_new,
- sym_identifier,
- anon_sym_static,
- anon_sym_readonly,
- anon_sym_get,
- anon_sym_set,
- anon_sym_declare,
- anon_sym_public,
- anon_sym_private,
- anon_sym_protected,
- anon_sym_override,
- anon_sym_module,
- anon_sym_any,
- anon_sym_number,
- anon_sym_boolean,
- anon_sym_string,
- anon_sym_symbol,
- anon_sym_object,
- [98799] = 11,
- ACTIONS(1594), 1,
- anon_sym_DQUOTE,
- ACTIONS(1596), 1,
- anon_sym_SQUOTE,
- ACTIONS(3633), 1,
- anon_sym_override,
- ACTIONS(4245), 1,
- anon_sym_LBRACK,
- ACTIONS(5795), 1,
- anon_sym_readonly,
- STATE(2754), 1,
- sym_override_modifier,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(5793), 2,
- sym_number,
- sym_private_property_identifier,
- STATE(3358), 3,
- sym_string,
- sym__property_name,
- sym_computed_property_name,
- ACTIONS(3743), 7,
- sym__automatic_semicolon,
- anon_sym_EQ,
- anon_sym_COMMA,
- anon_sym_BANG,
- anon_sym_SEMI,
- anon_sym_COLON,
- anon_sym_QMARK,
- ACTIONS(3607), 21,
- anon_sym_export,
- anon_sym_type,
- anon_sym_namespace,
- anon_sym_let,
- anon_sym_async,
- anon_sym_new,
- sym_identifier,
- anon_sym_static,
- anon_sym_get,
- anon_sym_set,
- anon_sym_declare,
- anon_sym_public,
- anon_sym_private,
- anon_sym_protected,
- anon_sym_module,
- anon_sym_any,
- anon_sym_number,
- anon_sym_boolean,
- anon_sym_string,
- anon_sym_symbol,
- anon_sym_object,
- [98863] = 4,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(4794), 3,
- anon_sym_COMMA,
- anon_sym_RPAREN,
- anon_sym_COLON,
- ACTIONS(5797), 13,
- anon_sym_STAR,
- anon_sym_BANG,
- anon_sym_in,
- anon_sym_GT,
- anon_sym_GT_GT,
- anon_sym_AMP,
- anon_sym_PIPE,
- anon_sym_PLUS,
- anon_sym_DASH,
- anon_sym_SLASH,
- anon_sym_LT,
- anon_sym_EQ_EQ,
- anon_sym_BANG_EQ,
- ACTIONS(5800), 23,
- sym__ternary_qmark,
- anon_sym_as,
- anon_sym_LPAREN,
- anon_sym_LBRACK,
- anon_sym_DOT,
- anon_sym_QMARK_DOT,
- anon_sym_AMP_AMP,
- anon_sym_PIPE_PIPE,
- anon_sym_GT_GT_GT,
- anon_sym_LT_LT,
- anon_sym_CARET,
- anon_sym_PERCENT,
- anon_sym_STAR_STAR,
- anon_sym_LT_EQ,
- anon_sym_EQ_EQ_EQ,
- anon_sym_BANG_EQ_EQ,
- anon_sym_GT_EQ,
- anon_sym_QMARK_QMARK,
- anon_sym_instanceof,
- anon_sym_PLUS_PLUS,
- anon_sym_DASH_DASH,
- anon_sym_BQUOTE,
- anon_sym_satisfies,
- [98913] = 7,
- ACTIONS(3475), 1,
- anon_sym_EQ,
- ACTIONS(4691), 1,
- anon_sym_LBRACK,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(4330), 2,
- anon_sym_COMMA,
- anon_sym_extends,
- ACTIONS(4694), 3,
- anon_sym_GT,
- anon_sym_AMP,
- anon_sym_PIPE,
- ACTIONS(3400), 10,
- anon_sym_STAR,
- anon_sym_BANG,
- anon_sym_in,
- anon_sym_GT_GT,
- anon_sym_PLUS,
- anon_sym_DASH,
- anon_sym_SLASH,
- anon_sym_LT,
- anon_sym_EQ_EQ,
- anon_sym_BANG_EQ,
- ACTIONS(3404), 22,
- sym__ternary_qmark,
- anon_sym_as,
- anon_sym_LPAREN,
- anon_sym_DOT,
- anon_sym_QMARK_DOT,
- anon_sym_AMP_AMP,
- anon_sym_PIPE_PIPE,
- anon_sym_GT_GT_GT,
- anon_sym_LT_LT,
- anon_sym_CARET,
- anon_sym_PERCENT,
- anon_sym_STAR_STAR,
- anon_sym_LT_EQ,
- anon_sym_EQ_EQ_EQ,
- anon_sym_BANG_EQ_EQ,
- anon_sym_GT_EQ,
- anon_sym_QMARK_QMARK,
- anon_sym_instanceof,
- anon_sym_PLUS_PLUS,
- anon_sym_DASH_DASH,
- anon_sym_BQUOTE,
- anon_sym_satisfies,
- [98969] = 6,
- ACTIONS(4440), 1,
- anon_sym_EQ,
- ACTIONS(4761), 1,
- anon_sym_RBRACK,
- ACTIONS(4985), 1,
- anon_sym_COMMA,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(4438), 13,
- anon_sym_STAR,
- anon_sym_BANG,
- anon_sym_in,
- anon_sym_GT,
- anon_sym_GT_GT,
- anon_sym_AMP,
- anon_sym_PIPE,
- anon_sym_PLUS,
- anon_sym_DASH,
- anon_sym_SLASH,
- anon_sym_LT,
- anon_sym_EQ_EQ,
- anon_sym_BANG_EQ,
- ACTIONS(4442), 23,
- sym__ternary_qmark,
- anon_sym_as,
- anon_sym_LPAREN,
- anon_sym_LBRACK,
- anon_sym_DOT,
- anon_sym_QMARK_DOT,
- anon_sym_AMP_AMP,
- anon_sym_PIPE_PIPE,
- anon_sym_GT_GT_GT,
- anon_sym_LT_LT,
- anon_sym_CARET,
- anon_sym_PERCENT,
- anon_sym_STAR_STAR,
- anon_sym_LT_EQ,
- anon_sym_EQ_EQ_EQ,
- anon_sym_BANG_EQ_EQ,
- anon_sym_GT_EQ,
- anon_sym_QMARK_QMARK,
- anon_sym_instanceof,
- anon_sym_PLUS_PLUS,
- anon_sym_DASH_DASH,
- anon_sym_BQUOTE,
- anon_sym_satisfies,
- [99023] = 6,
- ACTIONS(4678), 1,
- anon_sym_EQ,
- ACTIONS(4682), 1,
- anon_sym_RBRACK,
- ACTIONS(4987), 1,
- anon_sym_COMMA,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(4676), 13,
- anon_sym_STAR,
- anon_sym_BANG,
- anon_sym_in,
- anon_sym_GT,
- anon_sym_GT_GT,
- anon_sym_AMP,
- anon_sym_PIPE,
- anon_sym_PLUS,
- anon_sym_DASH,
- anon_sym_SLASH,
- anon_sym_LT,
- anon_sym_EQ_EQ,
- anon_sym_BANG_EQ,
- ACTIONS(4680), 23,
- sym__ternary_qmark,
- anon_sym_as,
- anon_sym_LPAREN,
- anon_sym_LBRACK,
- anon_sym_DOT,
- anon_sym_QMARK_DOT,
- anon_sym_AMP_AMP,
- anon_sym_PIPE_PIPE,
- anon_sym_GT_GT_GT,
- anon_sym_LT_LT,
- anon_sym_CARET,
- anon_sym_PERCENT,
- anon_sym_STAR_STAR,
- anon_sym_LT_EQ,
- anon_sym_EQ_EQ_EQ,
- anon_sym_BANG_EQ_EQ,
- anon_sym_GT_EQ,
- anon_sym_QMARK_QMARK,
- anon_sym_instanceof,
- anon_sym_PLUS_PLUS,
- anon_sym_DASH_DASH,
- anon_sym_BQUOTE,
- anon_sym_satisfies,
- [99077] = 12,
- ACTIONS(2275), 1,
- anon_sym_DQUOTE,
- ACTIONS(2277), 1,
- anon_sym_SQUOTE,
- ACTIONS(4243), 1,
- anon_sym_EQ,
- ACTIONS(4634), 1,
- anon_sym_LBRACK,
- ACTIONS(5091), 1,
- anon_sym_STAR,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(2285), 2,
- sym_number,
- sym_private_property_identifier,
- ACTIONS(2313), 2,
- anon_sym_get,
- anon_sym_set,
- ACTIONS(5749), 2,
- anon_sym_COMMA,
- anon_sym_RBRACE,
- STATE(3788), 3,
- sym_string,
- sym__property_name,
- sym_computed_property_name,
- ACTIONS(3743), 4,
- anon_sym_LPAREN,
- anon_sym_COLON,
- anon_sym_LT,
- anon_sym_QMARK,
- ACTIONS(2307), 21,
- anon_sym_export,
- anon_sym_type,
- anon_sym_namespace,
- anon_sym_let,
- anon_sym_async,
- anon_sym_new,
- sym_identifier,
- anon_sym_static,
- anon_sym_readonly,
- anon_sym_declare,
- anon_sym_public,
- anon_sym_private,
- anon_sym_protected,
- anon_sym_override,
- anon_sym_module,
- anon_sym_any,
- anon_sym_number,
- anon_sym_boolean,
- anon_sym_string,
- anon_sym_symbol,
- anon_sym_object,
- [99143] = 6,
- ACTIONS(1726), 1,
- anon_sym_EQ,
- ACTIONS(4747), 1,
- anon_sym_RBRACK,
- ACTIONS(4989), 1,
- anon_sym_COMMA,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(1724), 13,
- anon_sym_STAR,
- anon_sym_BANG,
- anon_sym_in,
- anon_sym_GT,
- anon_sym_GT_GT,
- anon_sym_AMP,
- anon_sym_PIPE,
- anon_sym_PLUS,
- anon_sym_DASH,
- anon_sym_SLASH,
- anon_sym_LT,
- anon_sym_EQ_EQ,
- anon_sym_BANG_EQ,
- ACTIONS(1728), 23,
- sym__ternary_qmark,
- anon_sym_as,
- anon_sym_LPAREN,
- anon_sym_LBRACK,
- anon_sym_DOT,
- anon_sym_QMARK_DOT,
- anon_sym_AMP_AMP,
- anon_sym_PIPE_PIPE,
- anon_sym_GT_GT_GT,
- anon_sym_LT_LT,
- anon_sym_CARET,
- anon_sym_PERCENT,
- anon_sym_STAR_STAR,
- anon_sym_LT_EQ,
- anon_sym_EQ_EQ_EQ,
- anon_sym_BANG_EQ_EQ,
- anon_sym_GT_EQ,
- anon_sym_QMARK_QMARK,
- anon_sym_instanceof,
- anon_sym_PLUS_PLUS,
- anon_sym_DASH_DASH,
- anon_sym_BQUOTE,
- anon_sym_satisfies,
- [99197] = 13,
- ACTIONS(2275), 1,
- anon_sym_DQUOTE,
- ACTIONS(2277), 1,
- anon_sym_SQUOTE,
- ACTIONS(2309), 1,
- anon_sym_async,
- ACTIONS(4243), 1,
- anon_sym_EQ,
- ACTIONS(4634), 1,
- anon_sym_LBRACK,
- ACTIONS(5091), 1,
- anon_sym_STAR,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(2285), 2,
- sym_number,
- sym_private_property_identifier,
- ACTIONS(2313), 2,
- anon_sym_get,
- anon_sym_set,
- ACTIONS(5749), 2,
- anon_sym_COMMA,
- anon_sym_RBRACE,
- STATE(3788), 3,
- sym_string,
- sym__property_name,
- sym_computed_property_name,
- ACTIONS(3743), 4,
- anon_sym_LPAREN,
- anon_sym_COLON,
- anon_sym_LT,
- anon_sym_QMARK,
- ACTIONS(2307), 20,
- anon_sym_export,
- anon_sym_type,
- anon_sym_namespace,
- anon_sym_let,
- anon_sym_new,
- sym_identifier,
- anon_sym_static,
- anon_sym_readonly,
- anon_sym_declare,
- anon_sym_public,
- anon_sym_private,
- anon_sym_protected,
- anon_sym_override,
- anon_sym_module,
- anon_sym_any,
- anon_sym_number,
- anon_sym_boolean,
- anon_sym_string,
- anon_sym_symbol,
- anon_sym_object,
- [99265] = 11,
- ACTIONS(1594), 1,
- anon_sym_DQUOTE,
- ACTIONS(1596), 1,
- anon_sym_SQUOTE,
- ACTIONS(3633), 1,
- anon_sym_override,
- ACTIONS(4245), 1,
- anon_sym_LBRACK,
- ACTIONS(5803), 1,
- anon_sym_readonly,
- STATE(2728), 1,
- sym_override_modifier,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(4993), 2,
- sym_number,
- sym_private_property_identifier,
- STATE(3277), 3,
- sym_string,
- sym__property_name,
- sym_computed_property_name,
- ACTIONS(3743), 7,
- sym__automatic_semicolon,
- anon_sym_EQ,
- anon_sym_COMMA,
- anon_sym_BANG,
- anon_sym_SEMI,
- anon_sym_COLON,
- anon_sym_QMARK,
- ACTIONS(3607), 21,
- anon_sym_export,
- anon_sym_type,
- anon_sym_namespace,
- anon_sym_let,
- anon_sym_async,
- anon_sym_new,
- sym_identifier,
- anon_sym_static,
- anon_sym_get,
- anon_sym_set,
- anon_sym_declare,
- anon_sym_public,
- anon_sym_private,
- anon_sym_protected,
- anon_sym_module,
- anon_sym_any,
- anon_sym_number,
- anon_sym_boolean,
- anon_sym_string,
- anon_sym_symbol,
- anon_sym_object,
- [99329] = 11,
- ACTIONS(1594), 1,
- anon_sym_DQUOTE,
- ACTIONS(1596), 1,
- anon_sym_SQUOTE,
- ACTIONS(3633), 1,
- anon_sym_override,
- ACTIONS(4245), 1,
- anon_sym_LBRACK,
- ACTIONS(5807), 1,
- anon_sym_readonly,
- STATE(2758), 1,
- sym_override_modifier,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(5805), 2,
- sym_number,
- sym_private_property_identifier,
- STATE(3371), 3,
- sym_string,
- sym__property_name,
- sym_computed_property_name,
- ACTIONS(3743), 7,
- sym__automatic_semicolon,
- anon_sym_EQ,
- anon_sym_COMMA,
- anon_sym_BANG,
- anon_sym_SEMI,
- anon_sym_COLON,
- anon_sym_QMARK,
- ACTIONS(3607), 21,
- anon_sym_export,
- anon_sym_type,
- anon_sym_namespace,
- anon_sym_let,
- anon_sym_async,
- anon_sym_new,
- sym_identifier,
- anon_sym_static,
- anon_sym_get,
- anon_sym_set,
- anon_sym_declare,
- anon_sym_public,
- anon_sym_private,
- anon_sym_protected,
- anon_sym_module,
- anon_sym_any,
- anon_sym_number,
- anon_sym_boolean,
- anon_sym_string,
- anon_sym_symbol,
- anon_sym_object,
- [99393] = 9,
- ACTIONS(1594), 1,
- anon_sym_DQUOTE,
- ACTIONS(1596), 1,
- anon_sym_SQUOTE,
- ACTIONS(4245), 1,
- anon_sym_LBRACK,
- ACTIONS(5001), 1,
- anon_sym_abstract,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(4993), 2,
- sym_number,
- sym_private_property_identifier,
- STATE(3277), 3,
- sym_string,
- sym__property_name,
- sym_computed_property_name,
- ACTIONS(3743), 7,
- sym__automatic_semicolon,
- anon_sym_EQ,
- anon_sym_COMMA,
- anon_sym_BANG,
- anon_sym_SEMI,
- anon_sym_COLON,
- anon_sym_QMARK,
- ACTIONS(3607), 23,
- anon_sym_export,
- anon_sym_type,
- anon_sym_namespace,
- anon_sym_let,
- anon_sym_async,
- anon_sym_new,
- sym_identifier,
- anon_sym_static,
- anon_sym_readonly,
- anon_sym_get,
- anon_sym_set,
- anon_sym_declare,
- anon_sym_public,
- anon_sym_private,
- anon_sym_protected,
- anon_sym_override,
- anon_sym_module,
- anon_sym_any,
- anon_sym_number,
- anon_sym_boolean,
- anon_sym_string,
- anon_sym_symbol,
- anon_sym_object,
- [99453] = 9,
- ACTIONS(1594), 1,
- anon_sym_DQUOTE,
- ACTIONS(1596), 1,
- anon_sym_SQUOTE,
- ACTIONS(4245), 1,
- anon_sym_LBRACK,
- ACTIONS(5811), 1,
- anon_sym_abstract,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(5809), 2,
- sym_number,
- sym_private_property_identifier,
- STATE(3372), 3,
- sym_string,
- sym__property_name,
- sym_computed_property_name,
- ACTIONS(3743), 7,
- sym__automatic_semicolon,
- anon_sym_EQ,
- anon_sym_COMMA,
- anon_sym_BANG,
- anon_sym_SEMI,
- anon_sym_COLON,
- anon_sym_QMARK,
- ACTIONS(3607), 23,
- anon_sym_export,
- anon_sym_type,
- anon_sym_namespace,
- anon_sym_let,
- anon_sym_async,
- anon_sym_new,
- sym_identifier,
- anon_sym_static,
- anon_sym_readonly,
- anon_sym_get,
- anon_sym_set,
- anon_sym_declare,
- anon_sym_public,
- anon_sym_private,
- anon_sym_protected,
- anon_sym_override,
- anon_sym_module,
- anon_sym_any,
- anon_sym_number,
- anon_sym_boolean,
- anon_sym_string,
- anon_sym_symbol,
- anon_sym_object,
- [99513] = 3,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(3133), 12,
- anon_sym_STAR,
- anon_sym_COMMA,
- anon_sym_LBRACK,
- anon_sym_RBRACK,
- anon_sym_DQUOTE,
- anon_sym_SQUOTE,
- anon_sym_AMP,
- anon_sym_PIPE,
- sym_number,
- sym_private_property_identifier,
- anon_sym_AT,
- anon_sym_QMARK,
- ACTIONS(3131), 27,
- anon_sym_export,
- anon_sym_type,
- anon_sym_namespace,
- anon_sym_let,
- anon_sym_DOT,
- anon_sym_async,
- anon_sym_new,
- sym_identifier,
- anon_sym_static,
- anon_sym_readonly,
- anon_sym_get,
- anon_sym_set,
- anon_sym_declare,
- anon_sym_public,
- anon_sym_private,
- anon_sym_protected,
- anon_sym_override,
- anon_sym_module,
- anon_sym_any,
- anon_sym_number,
- anon_sym_boolean,
- anon_sym_string,
- anon_sym_symbol,
- anon_sym_object,
- anon_sym_abstract,
- anon_sym_accessor,
- anon_sym_extends,
- [99561] = 6,
- ACTIONS(4691), 1,
- anon_sym_LBRACK,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(4694), 2,
- anon_sym_AMP,
- anon_sym_PIPE,
- ACTIONS(4330), 3,
- anon_sym_COMMA,
- anon_sym_RBRACK,
- anon_sym_extends,
- ACTIONS(3400), 11,
- anon_sym_STAR,
- anon_sym_BANG,
- anon_sym_in,
- anon_sym_GT,
- anon_sym_GT_GT,
- anon_sym_PLUS,
- anon_sym_DASH,
- anon_sym_SLASH,
- anon_sym_LT,
- anon_sym_EQ_EQ,
- anon_sym_BANG_EQ,
- ACTIONS(3404), 22,
- sym__ternary_qmark,
- anon_sym_as,
- anon_sym_LPAREN,
- anon_sym_DOT,
- anon_sym_QMARK_DOT,
- anon_sym_AMP_AMP,
- anon_sym_PIPE_PIPE,
- anon_sym_GT_GT_GT,
- anon_sym_LT_LT,
- anon_sym_CARET,
- anon_sym_PERCENT,
- anon_sym_STAR_STAR,
- anon_sym_LT_EQ,
- anon_sym_EQ_EQ_EQ,
- anon_sym_BANG_EQ_EQ,
- anon_sym_GT_EQ,
- anon_sym_QMARK_QMARK,
- anon_sym_instanceof,
- anon_sym_PLUS_PLUS,
- anon_sym_DASH_DASH,
- anon_sym_BQUOTE,
- anon_sym_satisfies,
- [99615] = 6,
- ACTIONS(4697), 1,
- anon_sym_LBRACK,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(4700), 2,
- anon_sym_AMP,
- anon_sym_PIPE,
- ACTIONS(4041), 3,
- anon_sym_COMMA,
- anon_sym_RBRACK,
- anon_sym_extends,
- ACTIONS(3400), 11,
- anon_sym_STAR,
- anon_sym_BANG,
- anon_sym_in,
- anon_sym_GT,
- anon_sym_GT_GT,
- anon_sym_PLUS,
- anon_sym_DASH,
- anon_sym_SLASH,
- anon_sym_LT,
- anon_sym_EQ_EQ,
- anon_sym_BANG_EQ,
- ACTIONS(3404), 22,
- sym__ternary_qmark,
- anon_sym_as,
- anon_sym_LPAREN,
- anon_sym_DOT,
- anon_sym_QMARK_DOT,
- anon_sym_AMP_AMP,
- anon_sym_PIPE_PIPE,
- anon_sym_GT_GT_GT,
- anon_sym_LT_LT,
- anon_sym_CARET,
- anon_sym_PERCENT,
- anon_sym_STAR_STAR,
- anon_sym_LT_EQ,
- anon_sym_EQ_EQ_EQ,
- anon_sym_BANG_EQ_EQ,
- anon_sym_GT_EQ,
- anon_sym_QMARK_QMARK,
- anon_sym_instanceof,
- anon_sym_PLUS_PLUS,
- anon_sym_DASH_DASH,
- anon_sym_BQUOTE,
- anon_sym_satisfies,
- [99669] = 3,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(3125), 12,
- anon_sym_STAR,
- anon_sym_COMMA,
- anon_sym_LBRACK,
- anon_sym_RBRACK,
- anon_sym_DQUOTE,
- anon_sym_SQUOTE,
- anon_sym_AMP,
- anon_sym_PIPE,
- sym_number,
- sym_private_property_identifier,
- anon_sym_AT,
- anon_sym_QMARK,
- ACTIONS(3123), 27,
- anon_sym_export,
- anon_sym_type,
- anon_sym_namespace,
- anon_sym_let,
- anon_sym_DOT,
- anon_sym_async,
- anon_sym_new,
- sym_identifier,
- anon_sym_static,
- anon_sym_readonly,
- anon_sym_get,
- anon_sym_set,
- anon_sym_declare,
- anon_sym_public,
- anon_sym_private,
- anon_sym_protected,
- anon_sym_override,
- anon_sym_module,
- anon_sym_any,
- anon_sym_number,
- anon_sym_boolean,
- anon_sym_string,
- anon_sym_symbol,
- anon_sym_object,
- anon_sym_abstract,
- anon_sym_accessor,
- anon_sym_extends,
- [99717] = 4,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(4460), 2,
- anon_sym_COMMA,
- anon_sym_extends,
- ACTIONS(4450), 13,
- anon_sym_STAR,
- anon_sym_BANG,
- anon_sym_in,
- anon_sym_GT,
- anon_sym_GT_GT,
- anon_sym_AMP,
- anon_sym_PIPE,
- anon_sym_PLUS,
- anon_sym_DASH,
- anon_sym_SLASH,
- anon_sym_LT,
- anon_sym_EQ_EQ,
- anon_sym_BANG_EQ,
- ACTIONS(4452), 24,
- sym__ternary_qmark,
- anon_sym_as,
- anon_sym_LPAREN,
- anon_sym_LBRACK,
- anon_sym_RBRACK,
- anon_sym_DOT,
- anon_sym_QMARK_DOT,
- anon_sym_AMP_AMP,
- anon_sym_PIPE_PIPE,
- anon_sym_GT_GT_GT,
- anon_sym_LT_LT,
- anon_sym_CARET,
- anon_sym_PERCENT,
- anon_sym_STAR_STAR,
- anon_sym_LT_EQ,
- anon_sym_EQ_EQ_EQ,
- anon_sym_BANG_EQ_EQ,
- anon_sym_GT_EQ,
- anon_sym_QMARK_QMARK,
- anon_sym_instanceof,
- anon_sym_PLUS_PLUS,
- anon_sym_DASH_DASH,
- anon_sym_BQUOTE,
- anon_sym_satisfies,
- [99767] = 4,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(1865), 3,
- anon_sym_COMMA,
- anon_sym_RPAREN,
- anon_sym_COLON,
- ACTIONS(5813), 13,
- anon_sym_STAR,
- anon_sym_BANG,
- anon_sym_in,
- anon_sym_GT,
- anon_sym_GT_GT,
- anon_sym_AMP,
- anon_sym_PIPE,
- anon_sym_PLUS,
- anon_sym_DASH,
- anon_sym_SLASH,
- anon_sym_LT,
- anon_sym_EQ_EQ,
- anon_sym_BANG_EQ,
- ACTIONS(5816), 23,
- sym__ternary_qmark,
- anon_sym_as,
- anon_sym_LPAREN,
- anon_sym_LBRACK,
- anon_sym_DOT,
- anon_sym_QMARK_DOT,
- anon_sym_AMP_AMP,
- anon_sym_PIPE_PIPE,
- anon_sym_GT_GT_GT,
- anon_sym_LT_LT,
- anon_sym_CARET,
- anon_sym_PERCENT,
- anon_sym_STAR_STAR,
- anon_sym_LT_EQ,
- anon_sym_EQ_EQ_EQ,
- anon_sym_BANG_EQ_EQ,
- anon_sym_GT_EQ,
- anon_sym_QMARK_QMARK,
- anon_sym_instanceof,
- anon_sym_PLUS_PLUS,
- anon_sym_DASH_DASH,
- anon_sym_BQUOTE,
- anon_sym_satisfies,
- [99817] = 4,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(1740), 3,
- anon_sym_COMMA,
- anon_sym_RPAREN,
- anon_sym_COLON,
- ACTIONS(5819), 13,
- anon_sym_STAR,
- anon_sym_BANG,
- anon_sym_in,
- anon_sym_GT,
- anon_sym_GT_GT,
- anon_sym_AMP,
- anon_sym_PIPE,
- anon_sym_PLUS,
- anon_sym_DASH,
- anon_sym_SLASH,
- anon_sym_LT,
- anon_sym_EQ_EQ,
- anon_sym_BANG_EQ,
- ACTIONS(5822), 23,
- sym__ternary_qmark,
- anon_sym_as,
- anon_sym_LPAREN,
- anon_sym_LBRACK,
- anon_sym_DOT,
- anon_sym_QMARK_DOT,
- anon_sym_AMP_AMP,
- anon_sym_PIPE_PIPE,
- anon_sym_GT_GT_GT,
- anon_sym_LT_LT,
- anon_sym_CARET,
- anon_sym_PERCENT,
- anon_sym_STAR_STAR,
- anon_sym_LT_EQ,
- anon_sym_EQ_EQ_EQ,
- anon_sym_BANG_EQ_EQ,
- anon_sym_GT_EQ,
- anon_sym_QMARK_QMARK,
- anon_sym_instanceof,
- anon_sym_PLUS_PLUS,
- anon_sym_DASH_DASH,
- anon_sym_BQUOTE,
- anon_sym_satisfies,
- [99867] = 4,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(4930), 3,
- anon_sym_COMMA,
- anon_sym_RPAREN,
- anon_sym_COLON,
- ACTIONS(5825), 13,
- anon_sym_STAR,
- anon_sym_BANG,
- anon_sym_in,
- anon_sym_GT,
- anon_sym_GT_GT,
- anon_sym_AMP,
- anon_sym_PIPE,
- anon_sym_PLUS,
- anon_sym_DASH,
- anon_sym_SLASH,
- anon_sym_LT,
- anon_sym_EQ_EQ,
- anon_sym_BANG_EQ,
- ACTIONS(5828), 23,
- sym__ternary_qmark,
- anon_sym_as,
- anon_sym_LPAREN,
- anon_sym_LBRACK,
- anon_sym_DOT,
- anon_sym_QMARK_DOT,
- anon_sym_AMP_AMP,
- anon_sym_PIPE_PIPE,
- anon_sym_GT_GT_GT,
- anon_sym_LT_LT,
- anon_sym_CARET,
- anon_sym_PERCENT,
- anon_sym_STAR_STAR,
- anon_sym_LT_EQ,
- anon_sym_EQ_EQ_EQ,
- anon_sym_BANG_EQ_EQ,
- anon_sym_GT_EQ,
- anon_sym_QMARK_QMARK,
- anon_sym_instanceof,
- anon_sym_PLUS_PLUS,
- anon_sym_DASH_DASH,
- anon_sym_BQUOTE,
- anon_sym_satisfies,
- [99917] = 9,
- ACTIONS(1594), 1,
- anon_sym_DQUOTE,
- ACTIONS(1596), 1,
- anon_sym_SQUOTE,
- ACTIONS(4245), 1,
- anon_sym_LBRACK,
- ACTIONS(5831), 1,
- anon_sym_abstract,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(5702), 2,
- sym_number,
- sym_private_property_identifier,
- STATE(3366), 3,
- sym_string,
- sym__property_name,
- sym_computed_property_name,
- ACTIONS(3743), 7,
- sym__automatic_semicolon,
- anon_sym_EQ,
- anon_sym_COMMA,
- anon_sym_BANG,
- anon_sym_SEMI,
- anon_sym_COLON,
- anon_sym_QMARK,
- ACTIONS(3607), 23,
- anon_sym_export,
- anon_sym_type,
- anon_sym_namespace,
- anon_sym_let,
- anon_sym_async,
- anon_sym_new,
- sym_identifier,
- anon_sym_static,
- anon_sym_readonly,
- anon_sym_get,
- anon_sym_set,
- anon_sym_declare,
- anon_sym_public,
- anon_sym_private,
- anon_sym_protected,
- anon_sym_override,
- anon_sym_module,
- anon_sym_any,
- anon_sym_number,
- anon_sym_boolean,
- anon_sym_string,
- anon_sym_symbol,
- anon_sym_object,
- [99977] = 4,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(4456), 2,
- anon_sym_COMMA,
- anon_sym_extends,
- ACTIONS(4450), 13,
- anon_sym_STAR,
- anon_sym_BANG,
- anon_sym_in,
- anon_sym_GT,
- anon_sym_GT_GT,
- anon_sym_AMP,
- anon_sym_PIPE,
- anon_sym_PLUS,
- anon_sym_DASH,
- anon_sym_SLASH,
- anon_sym_LT,
- anon_sym_EQ_EQ,
- anon_sym_BANG_EQ,
- ACTIONS(4452), 24,
- sym__ternary_qmark,
- anon_sym_as,
- anon_sym_LPAREN,
- anon_sym_LBRACK,
- anon_sym_RBRACK,
- anon_sym_DOT,
- anon_sym_QMARK_DOT,
- anon_sym_AMP_AMP,
- anon_sym_PIPE_PIPE,
- anon_sym_GT_GT_GT,
- anon_sym_LT_LT,
- anon_sym_CARET,
- anon_sym_PERCENT,
- anon_sym_STAR_STAR,
- anon_sym_LT_EQ,
- anon_sym_EQ_EQ_EQ,
- anon_sym_BANG_EQ_EQ,
- anon_sym_GT_EQ,
- anon_sym_QMARK_QMARK,
- anon_sym_instanceof,
- anon_sym_PLUS_PLUS,
- anon_sym_DASH_DASH,
- anon_sym_BQUOTE,
- anon_sym_satisfies,
- [100027] = 4,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(1901), 3,
- anon_sym_COMMA,
- anon_sym_RPAREN,
- anon_sym_COLON,
- ACTIONS(5833), 13,
- anon_sym_STAR,
- anon_sym_BANG,
- anon_sym_in,
- anon_sym_GT,
- anon_sym_GT_GT,
- anon_sym_AMP,
- anon_sym_PIPE,
- anon_sym_PLUS,
- anon_sym_DASH,
- anon_sym_SLASH,
- anon_sym_LT,
- anon_sym_EQ_EQ,
- anon_sym_BANG_EQ,
- ACTIONS(5836), 23,
- sym__ternary_qmark,
- anon_sym_as,
- anon_sym_LPAREN,
- anon_sym_LBRACK,
- anon_sym_DOT,
- anon_sym_QMARK_DOT,
- anon_sym_AMP_AMP,
- anon_sym_PIPE_PIPE,
- anon_sym_GT_GT_GT,
- anon_sym_LT_LT,
- anon_sym_CARET,
- anon_sym_PERCENT,
- anon_sym_STAR_STAR,
- anon_sym_LT_EQ,
- anon_sym_EQ_EQ_EQ,
- anon_sym_BANG_EQ_EQ,
- anon_sym_GT_EQ,
- anon_sym_QMARK_QMARK,
- anon_sym_instanceof,
- anon_sym_PLUS_PLUS,
- anon_sym_DASH_DASH,
- anon_sym_BQUOTE,
- anon_sym_satisfies,
- [100077] = 9,
- ACTIONS(1594), 1,
- anon_sym_DQUOTE,
- ACTIONS(1596), 1,
- anon_sym_SQUOTE,
- ACTIONS(4245), 1,
- anon_sym_LBRACK,
- ACTIONS(5841), 1,
- anon_sym_abstract,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(5839), 2,
- sym_number,
- sym_private_property_identifier,
- STATE(3255), 3,
- sym_string,
- sym__property_name,
- sym_computed_property_name,
- ACTIONS(3743), 7,
- sym__automatic_semicolon,
- anon_sym_EQ,
- anon_sym_COMMA,
- anon_sym_BANG,
- anon_sym_SEMI,
- anon_sym_COLON,
- anon_sym_QMARK,
- ACTIONS(3607), 23,
- anon_sym_export,
- anon_sym_type,
- anon_sym_namespace,
- anon_sym_let,
- anon_sym_async,
- anon_sym_new,
- sym_identifier,
- anon_sym_static,
- anon_sym_readonly,
- anon_sym_get,
- anon_sym_set,
- anon_sym_declare,
- anon_sym_public,
- anon_sym_private,
- anon_sym_protected,
- anon_sym_override,
- anon_sym_module,
- anon_sym_any,
- anon_sym_number,
- anon_sym_boolean,
- anon_sym_string,
- anon_sym_symbol,
- anon_sym_object,
- [100137] = 4,
- ACTIONS(3501), 1,
- anon_sym_EQ,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(3400), 13,
- anon_sym_STAR,
- anon_sym_BANG,
- anon_sym_in,
- anon_sym_GT,
- anon_sym_GT_GT,
- anon_sym_AMP,
- anon_sym_PIPE,
- anon_sym_PLUS,
- anon_sym_DASH,
- anon_sym_SLASH,
- anon_sym_LT,
- anon_sym_EQ_EQ,
- anon_sym_BANG_EQ,
- ACTIONS(3404), 25,
- sym__automatic_semicolon,
- sym__ternary_qmark,
- anon_sym_as,
- anon_sym_LPAREN,
- anon_sym_SEMI,
- anon_sym_LBRACK,
- anon_sym_DOT,
- anon_sym_QMARK_DOT,
- anon_sym_AMP_AMP,
- anon_sym_PIPE_PIPE,
- anon_sym_GT_GT_GT,
- anon_sym_LT_LT,
- anon_sym_CARET,
- anon_sym_PERCENT,
- anon_sym_STAR_STAR,
- anon_sym_LT_EQ,
- anon_sym_EQ_EQ_EQ,
- anon_sym_BANG_EQ_EQ,
- anon_sym_GT_EQ,
- anon_sym_QMARK_QMARK,
- anon_sym_instanceof,
- anon_sym_PLUS_PLUS,
- anon_sym_DASH_DASH,
- anon_sym_BQUOTE,
- anon_sym_satisfies,
- [100187] = 11,
- ACTIONS(1594), 1,
- anon_sym_DQUOTE,
- ACTIONS(1596), 1,
- anon_sym_SQUOTE,
- ACTIONS(3633), 1,
- anon_sym_override,
- ACTIONS(4245), 1,
- anon_sym_LBRACK,
- ACTIONS(5845), 1,
- anon_sym_readonly,
- STATE(2776), 1,
- sym_override_modifier,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(5843), 2,
- sym_number,
- sym_private_property_identifier,
- STATE(3413), 3,
- sym_string,
- sym__property_name,
- sym_computed_property_name,
- ACTIONS(3743), 7,
- sym__automatic_semicolon,
- anon_sym_EQ,
- anon_sym_COMMA,
- anon_sym_BANG,
- anon_sym_SEMI,
- anon_sym_COLON,
- anon_sym_QMARK,
- ACTIONS(3607), 21,
- anon_sym_export,
- anon_sym_type,
- anon_sym_namespace,
- anon_sym_let,
- anon_sym_async,
- anon_sym_new,
- sym_identifier,
- anon_sym_static,
- anon_sym_get,
- anon_sym_set,
- anon_sym_declare,
- anon_sym_public,
- anon_sym_private,
- anon_sym_protected,
- anon_sym_module,
- anon_sym_any,
- anon_sym_number,
- anon_sym_boolean,
- anon_sym_string,
- anon_sym_symbol,
- anon_sym_object,
- [100251] = 9,
- ACTIONS(1594), 1,
- anon_sym_DQUOTE,
- ACTIONS(1596), 1,
- anon_sym_SQUOTE,
- ACTIONS(4245), 1,
- anon_sym_LBRACK,
- ACTIONS(5849), 1,
- anon_sym_abstract,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(5847), 2,
- sym_number,
- sym_private_property_identifier,
- STATE(3443), 3,
- sym_string,
- sym__property_name,
- sym_computed_property_name,
- ACTIONS(3743), 7,
- sym__automatic_semicolon,
- anon_sym_EQ,
- anon_sym_COMMA,
- anon_sym_BANG,
- anon_sym_SEMI,
- anon_sym_COLON,
- anon_sym_QMARK,
- ACTIONS(3607), 23,
- anon_sym_export,
- anon_sym_type,
- anon_sym_namespace,
- anon_sym_let,
- anon_sym_async,
- anon_sym_new,
- sym_identifier,
- anon_sym_static,
- anon_sym_readonly,
- anon_sym_get,
- anon_sym_set,
- anon_sym_declare,
- anon_sym_public,
- anon_sym_private,
- anon_sym_protected,
- anon_sym_override,
- anon_sym_module,
- anon_sym_any,
- anon_sym_number,
- anon_sym_boolean,
- anon_sym_string,
- anon_sym_symbol,
- anon_sym_object,
- [100311] = 4,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(4725), 3,
- anon_sym_COMMA,
- anon_sym_RPAREN,
- anon_sym_COLON,
- ACTIONS(5851), 13,
- anon_sym_STAR,
- anon_sym_BANG,
- anon_sym_in,
- anon_sym_GT,
- anon_sym_GT_GT,
- anon_sym_AMP,
- anon_sym_PIPE,
- anon_sym_PLUS,
- anon_sym_DASH,
- anon_sym_SLASH,
- anon_sym_LT,
- anon_sym_EQ_EQ,
- anon_sym_BANG_EQ,
- ACTIONS(5854), 23,
- sym__ternary_qmark,
- anon_sym_as,
- anon_sym_LPAREN,
- anon_sym_LBRACK,
- anon_sym_DOT,
- anon_sym_QMARK_DOT,
- anon_sym_AMP_AMP,
- anon_sym_PIPE_PIPE,
- anon_sym_GT_GT_GT,
- anon_sym_LT_LT,
- anon_sym_CARET,
- anon_sym_PERCENT,
- anon_sym_STAR_STAR,
- anon_sym_LT_EQ,
- anon_sym_EQ_EQ_EQ,
- anon_sym_BANG_EQ_EQ,
- anon_sym_GT_EQ,
- anon_sym_QMARK_QMARK,
- anon_sym_instanceof,
- anon_sym_PLUS_PLUS,
- anon_sym_DASH_DASH,
- anon_sym_BQUOTE,
- anon_sym_satisfies,
- [100361] = 6,
- ACTIONS(4243), 1,
- anon_sym_EQ,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(3959), 2,
- anon_sym_COMMA,
- anon_sym_RBRACE,
- ACTIONS(1993), 6,
- anon_sym_STAR,
- anon_sym_LBRACK,
- anon_sym_DQUOTE,
- anon_sym_SQUOTE,
- sym_number,
- sym_private_property_identifier,
- ACTIONS(3743), 7,
- sym__automatic_semicolon,
- anon_sym_LPAREN,
- anon_sym_SEMI,
- anon_sym_COLON,
- anon_sym_LT,
- anon_sym_QMARK,
- anon_sym_PIPE_RBRACE,
- ACTIONS(1991), 23,
- anon_sym_export,
- anon_sym_type,
- anon_sym_namespace,
- anon_sym_let,
- anon_sym_async,
- anon_sym_new,
- sym_identifier,
- anon_sym_static,
- anon_sym_readonly,
- anon_sym_get,
- anon_sym_set,
- anon_sym_declare,
- anon_sym_public,
- anon_sym_private,
- anon_sym_protected,
- anon_sym_override,
- anon_sym_module,
- anon_sym_any,
- anon_sym_number,
- anon_sym_boolean,
- anon_sym_string,
- anon_sym_symbol,
- anon_sym_object,
- [100415] = 4,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(1831), 3,
- anon_sym_COMMA,
- anon_sym_RPAREN,
- anon_sym_COLON,
- ACTIONS(5857), 13,
- anon_sym_STAR,
- anon_sym_BANG,
- anon_sym_in,
- anon_sym_GT,
- anon_sym_GT_GT,
- anon_sym_AMP,
- anon_sym_PIPE,
- anon_sym_PLUS,
- anon_sym_DASH,
- anon_sym_SLASH,
- anon_sym_LT,
- anon_sym_EQ_EQ,
- anon_sym_BANG_EQ,
- ACTIONS(5860), 23,
- sym__ternary_qmark,
- anon_sym_as,
- anon_sym_LPAREN,
- anon_sym_LBRACK,
- anon_sym_DOT,
- anon_sym_QMARK_DOT,
- anon_sym_AMP_AMP,
- anon_sym_PIPE_PIPE,
- anon_sym_GT_GT_GT,
- anon_sym_LT_LT,
- anon_sym_CARET,
- anon_sym_PERCENT,
- anon_sym_STAR_STAR,
- anon_sym_LT_EQ,
- anon_sym_EQ_EQ_EQ,
- anon_sym_BANG_EQ_EQ,
- anon_sym_GT_EQ,
- anon_sym_QMARK_QMARK,
- anon_sym_instanceof,
- anon_sym_PLUS_PLUS,
- anon_sym_DASH_DASH,
- anon_sym_BQUOTE,
- anon_sym_satisfies,
- [100465] = 6,
- ACTIONS(4878), 1,
- anon_sym_LBRACK,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(4881), 2,
- anon_sym_AMP,
- anon_sym_PIPE,
- ACTIONS(4408), 3,
- anon_sym_COMMA,
- anon_sym_RBRACK,
- anon_sym_extends,
- ACTIONS(4774), 11,
- anon_sym_STAR,
- anon_sym_BANG,
- anon_sym_in,
- anon_sym_GT,
- anon_sym_GT_GT,
- anon_sym_PLUS,
- anon_sym_DASH,
- anon_sym_SLASH,
- anon_sym_LT,
- anon_sym_EQ_EQ,
- anon_sym_BANG_EQ,
- ACTIONS(4776), 22,
- sym__ternary_qmark,
- anon_sym_as,
- anon_sym_LPAREN,
- anon_sym_DOT,
- anon_sym_QMARK_DOT,
- anon_sym_AMP_AMP,
- anon_sym_PIPE_PIPE,
- anon_sym_GT_GT_GT,
- anon_sym_LT_LT,
- anon_sym_CARET,
- anon_sym_PERCENT,
- anon_sym_STAR_STAR,
- anon_sym_LT_EQ,
- anon_sym_EQ_EQ_EQ,
- anon_sym_BANG_EQ_EQ,
- anon_sym_GT_EQ,
- anon_sym_QMARK_QMARK,
- anon_sym_instanceof,
- anon_sym_PLUS_PLUS,
- anon_sym_DASH_DASH,
- anon_sym_BQUOTE,
- anon_sym_satisfies,
- [100519] = 6,
- ACTIONS(4243), 1,
- anon_sym_EQ,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(3959), 2,
- anon_sym_COMMA,
- anon_sym_RBRACE,
- ACTIONS(2003), 6,
- anon_sym_STAR,
- anon_sym_LBRACK,
- anon_sym_DQUOTE,
- anon_sym_SQUOTE,
- sym_number,
- sym_private_property_identifier,
- ACTIONS(3743), 7,
- sym__automatic_semicolon,
- anon_sym_LPAREN,
- anon_sym_SEMI,
- anon_sym_COLON,
- anon_sym_LT,
- anon_sym_QMARK,
- anon_sym_PIPE_RBRACE,
- ACTIONS(2001), 23,
- anon_sym_export,
- anon_sym_type,
- anon_sym_namespace,
- anon_sym_let,
- anon_sym_async,
- anon_sym_new,
- sym_identifier,
- anon_sym_static,
- anon_sym_readonly,
- anon_sym_get,
- anon_sym_set,
- anon_sym_declare,
- anon_sym_public,
- anon_sym_private,
- anon_sym_protected,
- anon_sym_override,
- anon_sym_module,
- anon_sym_any,
- anon_sym_number,
- anon_sym_boolean,
- anon_sym_string,
- anon_sym_symbol,
- anon_sym_object,
- [100573] = 4,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(4926), 3,
- anon_sym_COMMA,
- anon_sym_RPAREN,
- anon_sym_COLON,
- ACTIONS(5863), 13,
- anon_sym_STAR,
- anon_sym_BANG,
- anon_sym_in,
- anon_sym_GT,
- anon_sym_GT_GT,
- anon_sym_AMP,
- anon_sym_PIPE,
- anon_sym_PLUS,
- anon_sym_DASH,
- anon_sym_SLASH,
- anon_sym_LT,
- anon_sym_EQ_EQ,
- anon_sym_BANG_EQ,
- ACTIONS(5866), 23,
- sym__ternary_qmark,
- anon_sym_as,
- anon_sym_LPAREN,
- anon_sym_LBRACK,
- anon_sym_DOT,
- anon_sym_QMARK_DOT,
- anon_sym_AMP_AMP,
- anon_sym_PIPE_PIPE,
- anon_sym_GT_GT_GT,
- anon_sym_LT_LT,
- anon_sym_CARET,
- anon_sym_PERCENT,
- anon_sym_STAR_STAR,
- anon_sym_LT_EQ,
- anon_sym_EQ_EQ_EQ,
- anon_sym_BANG_EQ_EQ,
- anon_sym_GT_EQ,
- anon_sym_QMARK_QMARK,
- anon_sym_instanceof,
- anon_sym_PLUS_PLUS,
- anon_sym_DASH_DASH,
- anon_sym_BQUOTE,
- anon_sym_satisfies,
- [100623] = 15,
- ACTIONS(2275), 1,
- anon_sym_DQUOTE,
- ACTIONS(2277), 1,
- anon_sym_SQUOTE,
- ACTIONS(2309), 1,
- anon_sym_async,
- ACTIONS(2311), 1,
- anon_sym_readonly,
- ACTIONS(2315), 1,
- anon_sym_override,
- ACTIONS(4634), 1,
- anon_sym_LBRACK,
- ACTIONS(5091), 1,
- anon_sym_STAR,
- STATE(2719), 1,
- sym_override_modifier,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(2285), 2,
- sym_number,
- sym_private_property_identifier,
- ACTIONS(2313), 2,
- anon_sym_get,
- anon_sym_set,
- ACTIONS(5869), 2,
- anon_sym_COMMA,
- anon_sym_RBRACE,
- STATE(3788), 3,
- sym_string,
- sym__property_name,
- sym_computed_property_name,
- ACTIONS(3743), 4,
- anon_sym_LPAREN,
- anon_sym_COLON,
- anon_sym_LT,
- anon_sym_QMARK,
- ACTIONS(2307), 18,
- anon_sym_export,
- anon_sym_type,
- anon_sym_namespace,
- anon_sym_let,
- anon_sym_new,
- sym_identifier,
- anon_sym_static,
- anon_sym_declare,
- anon_sym_public,
- anon_sym_private,
- anon_sym_protected,
- anon_sym_module,
- anon_sym_any,
- anon_sym_number,
- anon_sym_boolean,
- anon_sym_string,
- anon_sym_symbol,
- anon_sym_object,
- [100695] = 6,
- ACTIONS(4041), 1,
- anon_sym_extends,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(4697), 2,
- anon_sym_RBRACE,
- anon_sym_LBRACK,
- ACTIONS(4700), 2,
- anon_sym_AMP,
- anon_sym_PIPE,
- ACTIONS(3400), 11,
- anon_sym_STAR,
- anon_sym_BANG,
- anon_sym_in,
- anon_sym_GT,
- anon_sym_GT_GT,
- anon_sym_PLUS,
- anon_sym_DASH,
- anon_sym_SLASH,
- anon_sym_LT,
- anon_sym_EQ_EQ,
- anon_sym_BANG_EQ,
- ACTIONS(3404), 23,
- sym__ternary_qmark,
- anon_sym_as,
- anon_sym_COMMA,
- anon_sym_LPAREN,
- anon_sym_DOT,
- anon_sym_QMARK_DOT,
- anon_sym_AMP_AMP,
- anon_sym_PIPE_PIPE,
- anon_sym_GT_GT_GT,
- anon_sym_LT_LT,
- anon_sym_CARET,
- anon_sym_PERCENT,
- anon_sym_STAR_STAR,
- anon_sym_LT_EQ,
- anon_sym_EQ_EQ_EQ,
- anon_sym_BANG_EQ_EQ,
- anon_sym_GT_EQ,
- anon_sym_QMARK_QMARK,
- anon_sym_instanceof,
- anon_sym_PLUS_PLUS,
- anon_sym_DASH_DASH,
- anon_sym_BQUOTE,
- anon_sym_satisfies,
- [100749] = 13,
- ACTIONS(2275), 1,
- anon_sym_DQUOTE,
- ACTIONS(2277), 1,
- anon_sym_SQUOTE,
- ACTIONS(4634), 1,
- anon_sym_LBRACK,
- ACTIONS(5091), 1,
- anon_sym_STAR,
- ACTIONS(5644), 1,
- anon_sym_COMMA,
- ACTIONS(5700), 1,
- anon_sym_RBRACE,
- STATE(5124), 1,
- aux_sym_object_repeat1,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(2285), 2,
- sym_number,
- sym_private_property_identifier,
- ACTIONS(2313), 2,
- anon_sym_get,
- anon_sym_set,
- STATE(3788), 3,
- sym_string,
- sym__property_name,
- sym_computed_property_name,
- ACTIONS(3743), 4,
- anon_sym_LPAREN,
- anon_sym_COLON,
- anon_sym_LT,
- anon_sym_QMARK,
- ACTIONS(2307), 21,
- anon_sym_export,
- anon_sym_type,
- anon_sym_namespace,
- anon_sym_let,
- anon_sym_async,
- anon_sym_new,
- sym_identifier,
- anon_sym_static,
- anon_sym_readonly,
- anon_sym_declare,
- anon_sym_public,
- anon_sym_private,
- anon_sym_protected,
- anon_sym_override,
- anon_sym_module,
- anon_sym_any,
- anon_sym_number,
- anon_sym_boolean,
- anon_sym_string,
- anon_sym_symbol,
- anon_sym_object,
- [100817] = 14,
- ACTIONS(2275), 1,
- anon_sym_DQUOTE,
- ACTIONS(2277), 1,
- anon_sym_SQUOTE,
- ACTIONS(2309), 1,
- anon_sym_async,
- ACTIONS(4634), 1,
- anon_sym_LBRACK,
- ACTIONS(5091), 1,
- anon_sym_STAR,
- ACTIONS(5644), 1,
- anon_sym_COMMA,
- ACTIONS(5700), 1,
- anon_sym_RBRACE,
- STATE(5124), 1,
- aux_sym_object_repeat1,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(2285), 2,
- sym_number,
- sym_private_property_identifier,
- ACTIONS(2313), 2,
- anon_sym_get,
- anon_sym_set,
- STATE(3788), 3,
- sym_string,
- sym__property_name,
- sym_computed_property_name,
- ACTIONS(3743), 4,
- anon_sym_LPAREN,
- anon_sym_COLON,
- anon_sym_LT,
- anon_sym_QMARK,
- ACTIONS(2307), 20,
- anon_sym_export,
- anon_sym_type,
- anon_sym_namespace,
- anon_sym_let,
- anon_sym_new,
- sym_identifier,
- anon_sym_static,
- anon_sym_readonly,
- anon_sym_declare,
- anon_sym_public,
- anon_sym_private,
- anon_sym_protected,
- anon_sym_override,
- anon_sym_module,
- anon_sym_any,
- anon_sym_number,
- anon_sym_boolean,
- anon_sym_string,
- anon_sym_symbol,
- anon_sym_object,
- [100887] = 4,
- ACTIONS(3518), 1,
- anon_sym_EQ,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(3400), 13,
- anon_sym_STAR,
- anon_sym_BANG,
- anon_sym_in,
- anon_sym_GT,
- anon_sym_GT_GT,
- anon_sym_AMP,
- anon_sym_PIPE,
- anon_sym_PLUS,
- anon_sym_DASH,
- anon_sym_SLASH,
- anon_sym_LT,
- anon_sym_EQ_EQ,
- anon_sym_BANG_EQ,
- ACTIONS(3404), 25,
- sym__ternary_qmark,
- anon_sym_as,
- anon_sym_RBRACE,
- anon_sym_LPAREN,
- anon_sym_COLON,
- anon_sym_LBRACK,
- anon_sym_DOT,
- anon_sym_QMARK_DOT,
- anon_sym_AMP_AMP,
- anon_sym_PIPE_PIPE,
- anon_sym_GT_GT_GT,
- anon_sym_LT_LT,
- anon_sym_CARET,
- anon_sym_PERCENT,
- anon_sym_STAR_STAR,
- anon_sym_LT_EQ,
- anon_sym_EQ_EQ_EQ,
- anon_sym_BANG_EQ_EQ,
- anon_sym_GT_EQ,
- anon_sym_QMARK_QMARK,
- anon_sym_instanceof,
- anon_sym_PLUS_PLUS,
- anon_sym_DASH_DASH,
- anon_sym_BQUOTE,
- anon_sym_satisfies,
- [100937] = 6,
- ACTIONS(3496), 1,
- anon_sym_RBRACK,
- ACTIONS(3514), 1,
- anon_sym_COMMA,
- ACTIONS(3600), 1,
- anon_sym_EQ,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(3400), 13,
- anon_sym_STAR,
- anon_sym_BANG,
- anon_sym_in,
- anon_sym_GT,
- anon_sym_GT_GT,
- anon_sym_AMP,
- anon_sym_PIPE,
- anon_sym_PLUS,
- anon_sym_DASH,
- anon_sym_SLASH,
- anon_sym_LT,
- anon_sym_EQ_EQ,
- anon_sym_BANG_EQ,
- ACTIONS(3404), 23,
- sym__ternary_qmark,
- anon_sym_as,
- anon_sym_LPAREN,
- anon_sym_LBRACK,
- anon_sym_DOT,
- anon_sym_QMARK_DOT,
- anon_sym_AMP_AMP,
- anon_sym_PIPE_PIPE,
- anon_sym_GT_GT_GT,
- anon_sym_LT_LT,
- anon_sym_CARET,
- anon_sym_PERCENT,
- anon_sym_STAR_STAR,
- anon_sym_LT_EQ,
- anon_sym_EQ_EQ_EQ,
- anon_sym_BANG_EQ_EQ,
- anon_sym_GT_EQ,
- anon_sym_QMARK_QMARK,
- anon_sym_instanceof,
- anon_sym_PLUS_PLUS,
- anon_sym_DASH_DASH,
- anon_sym_BQUOTE,
- anon_sym_satisfies,
- [100991] = 11,
- ACTIONS(1594), 1,
- anon_sym_DQUOTE,
- ACTIONS(1596), 1,
- anon_sym_SQUOTE,
- ACTIONS(3633), 1,
- anon_sym_override,
- ACTIONS(4245), 1,
- anon_sym_LBRACK,
- ACTIONS(5871), 1,
- anon_sym_readonly,
- STATE(2755), 1,
- sym_override_modifier,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(5702), 2,
- sym_number,
- sym_private_property_identifier,
- STATE(3366), 3,
- sym_string,
- sym__property_name,
- sym_computed_property_name,
- ACTIONS(3743), 7,
- sym__automatic_semicolon,
- anon_sym_EQ,
- anon_sym_COMMA,
- anon_sym_BANG,
- anon_sym_SEMI,
- anon_sym_COLON,
- anon_sym_QMARK,
- ACTIONS(3607), 21,
- anon_sym_export,
- anon_sym_type,
- anon_sym_namespace,
- anon_sym_let,
- anon_sym_async,
- anon_sym_new,
- sym_identifier,
- anon_sym_static,
- anon_sym_get,
- anon_sym_set,
- anon_sym_declare,
- anon_sym_public,
- anon_sym_private,
- anon_sym_protected,
- anon_sym_module,
- anon_sym_any,
- anon_sym_number,
- anon_sym_boolean,
- anon_sym_string,
- anon_sym_symbol,
- anon_sym_object,
- [101055] = 3,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(3129), 12,
- anon_sym_STAR,
- anon_sym_COMMA,
- anon_sym_LBRACK,
- anon_sym_RBRACK,
- anon_sym_DQUOTE,
- anon_sym_SQUOTE,
- anon_sym_AMP,
- anon_sym_PIPE,
- sym_number,
- sym_private_property_identifier,
- anon_sym_AT,
- anon_sym_QMARK,
- ACTIONS(3127), 27,
- anon_sym_export,
- anon_sym_type,
- anon_sym_namespace,
- anon_sym_let,
- anon_sym_DOT,
- anon_sym_async,
- anon_sym_new,
- sym_identifier,
- anon_sym_static,
- anon_sym_readonly,
- anon_sym_get,
- anon_sym_set,
- anon_sym_declare,
- anon_sym_public,
- anon_sym_private,
- anon_sym_protected,
- anon_sym_override,
- anon_sym_module,
- anon_sym_any,
- anon_sym_number,
- anon_sym_boolean,
- anon_sym_string,
- anon_sym_symbol,
- anon_sym_object,
- anon_sym_abstract,
- anon_sym_accessor,
- anon_sym_extends,
- [101103] = 9,
- ACTIONS(241), 1,
- anon_sym_COMMA,
- ACTIONS(702), 1,
- anon_sym_RBRACE,
- ACTIONS(4243), 1,
- anon_sym_EQ,
- STATE(4672), 1,
- aux_sym_object_pattern_repeat1,
- STATE(5156), 1,
- aux_sym_object_repeat1,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(3743), 4,
- anon_sym_LPAREN,
- anon_sym_COLON,
- anon_sym_LT,
- anon_sym_QMARK,
- ACTIONS(2003), 6,
- anon_sym_STAR,
- anon_sym_LBRACK,
- anon_sym_DQUOTE,
- anon_sym_SQUOTE,
- sym_number,
- sym_private_property_identifier,
- ACTIONS(2001), 23,
- anon_sym_export,
- anon_sym_type,
- anon_sym_namespace,
- anon_sym_let,
- anon_sym_async,
- anon_sym_new,
- sym_identifier,
- anon_sym_static,
- anon_sym_readonly,
- anon_sym_get,
- anon_sym_set,
- anon_sym_declare,
- anon_sym_public,
- anon_sym_private,
- anon_sym_protected,
- anon_sym_override,
- anon_sym_module,
- anon_sym_any,
- anon_sym_number,
- anon_sym_boolean,
- anon_sym_string,
- anon_sym_symbol,
- anon_sym_object,
- [101162] = 9,
- ACTIONS(241), 1,
- anon_sym_COMMA,
- ACTIONS(4243), 1,
- anon_sym_EQ,
- ACTIONS(5202), 1,
- anon_sym_RBRACE,
- STATE(4672), 1,
- aux_sym_object_pattern_repeat1,
- STATE(5156), 1,
- aux_sym_object_repeat1,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(3743), 4,
- anon_sym_LPAREN,
- anon_sym_COLON,
- anon_sym_LT,
- anon_sym_QMARK,
- ACTIONS(1993), 6,
- anon_sym_STAR,
- anon_sym_LBRACK,
- anon_sym_DQUOTE,
- anon_sym_SQUOTE,
- sym_number,
- sym_private_property_identifier,
- ACTIONS(1991), 23,
- anon_sym_export,
- anon_sym_type,
- anon_sym_namespace,
- anon_sym_let,
- anon_sym_async,
- anon_sym_new,
- sym_identifier,
- anon_sym_static,
- anon_sym_readonly,
- anon_sym_get,
- anon_sym_set,
- anon_sym_declare,
- anon_sym_public,
- anon_sym_private,
- anon_sym_protected,
- anon_sym_override,
- anon_sym_module,
- anon_sym_any,
- anon_sym_number,
- anon_sym_boolean,
- anon_sym_string,
- anon_sym_symbol,
- anon_sym_object,
- [101221] = 8,
- ACTIONS(1594), 1,
- anon_sym_DQUOTE,
- ACTIONS(1596), 1,
- anon_sym_SQUOTE,
- ACTIONS(4245), 1,
- anon_sym_LBRACK,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(5873), 2,
- sym_number,
- sym_private_property_identifier,
- STATE(3365), 3,
- sym_string,
- sym__property_name,
- sym_computed_property_name,
- ACTIONS(3743), 7,
- sym__automatic_semicolon,
- anon_sym_EQ,
- anon_sym_COMMA,
- anon_sym_BANG,
- anon_sym_SEMI,
- anon_sym_COLON,
- anon_sym_QMARK,
- ACTIONS(3607), 23,
- anon_sym_export,
- anon_sym_type,
- anon_sym_namespace,
- anon_sym_let,
- anon_sym_async,
- anon_sym_new,
- sym_identifier,
- anon_sym_static,
- anon_sym_readonly,
- anon_sym_get,
- anon_sym_set,
- anon_sym_declare,
- anon_sym_public,
- anon_sym_private,
- anon_sym_protected,
- anon_sym_override,
- anon_sym_module,
- anon_sym_any,
- anon_sym_number,
- anon_sym_boolean,
- anon_sym_string,
- anon_sym_symbol,
- anon_sym_object,
- [101278] = 9,
- ACTIONS(241), 1,
- anon_sym_COMMA,
- ACTIONS(4243), 1,
- anon_sym_EQ,
- ACTIONS(5198), 1,
- anon_sym_RBRACE,
- STATE(4671), 1,
- aux_sym_object_repeat1,
- STATE(4672), 1,
- aux_sym_object_pattern_repeat1,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(3743), 4,
- anon_sym_LPAREN,
- anon_sym_COLON,
- anon_sym_LT,
- anon_sym_QMARK,
- ACTIONS(2003), 6,
- anon_sym_STAR,
- anon_sym_LBRACK,
- anon_sym_DQUOTE,
- anon_sym_SQUOTE,
- sym_number,
- sym_private_property_identifier,
- ACTIONS(2001), 23,
- anon_sym_export,
- anon_sym_type,
- anon_sym_namespace,
- anon_sym_let,
- anon_sym_async,
- anon_sym_new,
- sym_identifier,
- anon_sym_static,
- anon_sym_readonly,
- anon_sym_get,
- anon_sym_set,
- anon_sym_declare,
- anon_sym_public,
- anon_sym_private,
- anon_sym_protected,
- anon_sym_override,
- anon_sym_module,
- anon_sym_any,
- anon_sym_number,
- anon_sym_boolean,
- anon_sym_string,
- anon_sym_symbol,
- anon_sym_object,
- [101337] = 8,
- ACTIONS(1594), 1,
- anon_sym_DQUOTE,
- ACTIONS(1596), 1,
- anon_sym_SQUOTE,
- ACTIONS(4245), 1,
- anon_sym_LBRACK,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(5875), 2,
- sym_number,
- sym_private_property_identifier,
- STATE(3305), 3,
- sym_string,
- sym__property_name,
- sym_computed_property_name,
- ACTIONS(3743), 7,
- sym__automatic_semicolon,
- anon_sym_EQ,
- anon_sym_COMMA,
- anon_sym_BANG,
- anon_sym_SEMI,
- anon_sym_COLON,
- anon_sym_QMARK,
- ACTIONS(3607), 23,
- anon_sym_export,
- anon_sym_type,
- anon_sym_namespace,
- anon_sym_let,
- anon_sym_async,
- anon_sym_new,
- sym_identifier,
- anon_sym_static,
- anon_sym_readonly,
- anon_sym_get,
- anon_sym_set,
- anon_sym_declare,
- anon_sym_public,
- anon_sym_private,
- anon_sym_protected,
- anon_sym_override,
- anon_sym_module,
- anon_sym_any,
- anon_sym_number,
- anon_sym_boolean,
- anon_sym_string,
- anon_sym_symbol,
- anon_sym_object,
- [101394] = 6,
- ACTIONS(4440), 1,
- anon_sym_EQ,
- ACTIONS(4985), 1,
- anon_sym_of,
- ACTIONS(5395), 1,
- anon_sym_in,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(4438), 12,
- anon_sym_STAR,
- anon_sym_BANG,
- anon_sym_GT,
- anon_sym_GT_GT,
- anon_sym_AMP,
- anon_sym_PIPE,
- anon_sym_PLUS,
- anon_sym_DASH,
- anon_sym_SLASH,
- anon_sym_LT,
- anon_sym_EQ_EQ,
- anon_sym_BANG_EQ,
- ACTIONS(4442), 23,
- sym__ternary_qmark,
- anon_sym_as,
- anon_sym_LPAREN,
- anon_sym_LBRACK,
- anon_sym_DOT,
- anon_sym_QMARK_DOT,
- anon_sym_AMP_AMP,
- anon_sym_PIPE_PIPE,
- anon_sym_GT_GT_GT,
- anon_sym_LT_LT,
- anon_sym_CARET,
- anon_sym_PERCENT,
- anon_sym_STAR_STAR,
- anon_sym_LT_EQ,
- anon_sym_EQ_EQ_EQ,
- anon_sym_BANG_EQ_EQ,
- anon_sym_GT_EQ,
- anon_sym_QMARK_QMARK,
- anon_sym_instanceof,
- anon_sym_PLUS_PLUS,
- anon_sym_DASH_DASH,
- anon_sym_BQUOTE,
- anon_sym_satisfies,
- [101447] = 6,
- ACTIONS(89), 1,
- anon_sym_BQUOTE,
- ACTIONS(4519), 1,
- anon_sym_LPAREN,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- STATE(2222), 2,
- sym_template_string,
- sym_arguments,
- ACTIONS(4035), 13,
- anon_sym_STAR,
- anon_sym_BANG,
- anon_sym_in,
- anon_sym_GT,
- anon_sym_GT_GT,
- anon_sym_AMP,
- anon_sym_PIPE,
- anon_sym_PLUS,
- anon_sym_DASH,
- anon_sym_SLASH,
- anon_sym_LT,
- anon_sym_EQ_EQ,
- anon_sym_BANG_EQ,
- ACTIONS(4037), 21,
- sym__ternary_qmark,
- anon_sym_as,
- anon_sym_LBRACK,
- anon_sym_DOT,
- anon_sym_QMARK_DOT,
- anon_sym_AMP_AMP,
- anon_sym_PIPE_PIPE,
- anon_sym_GT_GT_GT,
- anon_sym_LT_LT,
- anon_sym_CARET,
- anon_sym_PERCENT,
- anon_sym_STAR_STAR,
- anon_sym_LT_EQ,
- anon_sym_EQ_EQ_EQ,
- anon_sym_BANG_EQ_EQ,
- anon_sym_GT_EQ,
- anon_sym_QMARK_QMARK,
- anon_sym_instanceof,
- anon_sym_PLUS_PLUS,
- anon_sym_DASH_DASH,
- anon_sym_satisfies,
- [101500] = 4,
- ACTIONS(5107), 1,
- sym_regex_flags,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(5103), 17,
- anon_sym_STAR,
- anon_sym_as,
- anon_sym_BANG,
- anon_sym_in,
- anon_sym_of,
- anon_sym_GT,
- anon_sym_GT_GT,
- anon_sym_AMP,
- anon_sym_PIPE,
- anon_sym_PLUS,
- anon_sym_DASH,
- anon_sym_SLASH,
- anon_sym_LT,
- anon_sym_EQ_EQ,
- anon_sym_BANG_EQ,
- anon_sym_instanceof,
- anon_sym_satisfies,
- ACTIONS(5105), 20,
- sym__ternary_qmark,
- anon_sym_LPAREN,
- anon_sym_LBRACK,
- anon_sym_DOT,
- anon_sym_QMARK_DOT,
- anon_sym_AMP_AMP,
- anon_sym_PIPE_PIPE,
- anon_sym_GT_GT_GT,
- anon_sym_LT_LT,
- anon_sym_CARET,
- anon_sym_PERCENT,
- anon_sym_STAR_STAR,
- anon_sym_LT_EQ,
- anon_sym_EQ_EQ_EQ,
- anon_sym_BANG_EQ_EQ,
- anon_sym_GT_EQ,
- anon_sym_QMARK_QMARK,
- anon_sym_PLUS_PLUS,
- anon_sym_DASH_DASH,
- anon_sym_BQUOTE,
- [101549] = 6,
- ACTIONS(4678), 1,
- anon_sym_EQ,
- ACTIONS(4987), 1,
- anon_sym_of,
- ACTIONS(5398), 1,
- anon_sym_in,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(4676), 12,
- anon_sym_STAR,
- anon_sym_BANG,
- anon_sym_GT,
- anon_sym_GT_GT,
- anon_sym_AMP,
- anon_sym_PIPE,
- anon_sym_PLUS,
- anon_sym_DASH,
- anon_sym_SLASH,
- anon_sym_LT,
- anon_sym_EQ_EQ,
- anon_sym_BANG_EQ,
- ACTIONS(4680), 23,
- sym__ternary_qmark,
- anon_sym_as,
- anon_sym_LPAREN,
- anon_sym_LBRACK,
- anon_sym_DOT,
- anon_sym_QMARK_DOT,
- anon_sym_AMP_AMP,
- anon_sym_PIPE_PIPE,
- anon_sym_GT_GT_GT,
- anon_sym_LT_LT,
- anon_sym_CARET,
- anon_sym_PERCENT,
- anon_sym_STAR_STAR,
- anon_sym_LT_EQ,
- anon_sym_EQ_EQ_EQ,
- anon_sym_BANG_EQ_EQ,
- anon_sym_GT_EQ,
- anon_sym_QMARK_QMARK,
- anon_sym_instanceof,
- anon_sym_PLUS_PLUS,
- anon_sym_DASH_DASH,
- anon_sym_BQUOTE,
- anon_sym_satisfies,
- [101602] = 8,
- ACTIONS(1594), 1,
- anon_sym_DQUOTE,
- ACTIONS(1596), 1,
- anon_sym_SQUOTE,
- ACTIONS(4245), 1,
- anon_sym_LBRACK,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(5877), 2,
- sym_number,
- sym_private_property_identifier,
- STATE(3309), 3,
- sym_string,
- sym__property_name,
- sym_computed_property_name,
- ACTIONS(3743), 7,
- sym__automatic_semicolon,
- anon_sym_EQ,
- anon_sym_COMMA,
- anon_sym_BANG,
- anon_sym_SEMI,
- anon_sym_COLON,
- anon_sym_QMARK,
- ACTIONS(3607), 23,
- anon_sym_export,
- anon_sym_type,
- anon_sym_namespace,
- anon_sym_let,
- anon_sym_async,
- anon_sym_new,
- sym_identifier,
- anon_sym_static,
- anon_sym_readonly,
- anon_sym_get,
- anon_sym_set,
- anon_sym_declare,
- anon_sym_public,
- anon_sym_private,
- anon_sym_protected,
- anon_sym_override,
- anon_sym_module,
- anon_sym_any,
- anon_sym_number,
- anon_sym_boolean,
- anon_sym_string,
- anon_sym_symbol,
- anon_sym_object,
- [101659] = 8,
- ACTIONS(1594), 1,
- anon_sym_DQUOTE,
- ACTIONS(1596), 1,
- anon_sym_SQUOTE,
- ACTIONS(4245), 1,
- anon_sym_LBRACK,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(5879), 2,
- sym_number,
- sym_private_property_identifier,
- STATE(3383), 3,
- sym_string,
- sym__property_name,
- sym_computed_property_name,
- ACTIONS(3743), 7,
- sym__automatic_semicolon,
- anon_sym_EQ,
- anon_sym_COMMA,
- anon_sym_BANG,
- anon_sym_SEMI,
- anon_sym_COLON,
- anon_sym_QMARK,
- ACTIONS(3607), 23,
- anon_sym_export,
- anon_sym_type,
- anon_sym_namespace,
- anon_sym_let,
- anon_sym_async,
- anon_sym_new,
- sym_identifier,
- anon_sym_static,
- anon_sym_readonly,
- anon_sym_get,
- anon_sym_set,
- anon_sym_declare,
- anon_sym_public,
- anon_sym_private,
- anon_sym_protected,
- anon_sym_override,
- anon_sym_module,
- anon_sym_any,
- anon_sym_number,
- anon_sym_boolean,
- anon_sym_string,
- anon_sym_symbol,
- anon_sym_object,
- [101716] = 8,
- ACTIONS(1594), 1,
- anon_sym_DQUOTE,
- ACTIONS(1596), 1,
- anon_sym_SQUOTE,
- ACTIONS(4245), 1,
- anon_sym_LBRACK,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(5881), 2,
- sym_number,
- sym_private_property_identifier,
- STATE(3388), 3,
- sym_string,
- sym__property_name,
- sym_computed_property_name,
- ACTIONS(3743), 7,
- sym__automatic_semicolon,
- anon_sym_EQ,
- anon_sym_COMMA,
- anon_sym_BANG,
- anon_sym_SEMI,
- anon_sym_COLON,
- anon_sym_QMARK,
- ACTIONS(3607), 23,
- anon_sym_export,
- anon_sym_type,
- anon_sym_namespace,
- anon_sym_let,
- anon_sym_async,
- anon_sym_new,
- sym_identifier,
- anon_sym_static,
- anon_sym_readonly,
- anon_sym_get,
- anon_sym_set,
- anon_sym_declare,
- anon_sym_public,
- anon_sym_private,
- anon_sym_protected,
- anon_sym_override,
- anon_sym_module,
- anon_sym_any,
- anon_sym_number,
- anon_sym_boolean,
- anon_sym_string,
- anon_sym_symbol,
- anon_sym_object,
- [101773] = 8,
- ACTIONS(1594), 1,
- anon_sym_DQUOTE,
- ACTIONS(1596), 1,
- anon_sym_SQUOTE,
- ACTIONS(4245), 1,
- anon_sym_LBRACK,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(5883), 2,
- sym_number,
- sym_private_property_identifier,
- STATE(3326), 3,
- sym_string,
- sym__property_name,
- sym_computed_property_name,
- ACTIONS(3743), 7,
- sym__automatic_semicolon,
- anon_sym_EQ,
- anon_sym_COMMA,
- anon_sym_BANG,
- anon_sym_SEMI,
- anon_sym_COLON,
- anon_sym_QMARK,
- ACTIONS(3607), 23,
- anon_sym_export,
- anon_sym_type,
- anon_sym_namespace,
- anon_sym_let,
- anon_sym_async,
- anon_sym_new,
- sym_identifier,
- anon_sym_static,
- anon_sym_readonly,
- anon_sym_get,
- anon_sym_set,
- anon_sym_declare,
- anon_sym_public,
- anon_sym_private,
- anon_sym_protected,
- anon_sym_override,
- anon_sym_module,
- anon_sym_any,
- anon_sym_number,
- anon_sym_boolean,
- anon_sym_string,
- anon_sym_symbol,
- anon_sym_object,
- [101830] = 8,
- ACTIONS(1594), 1,
- anon_sym_DQUOTE,
- ACTIONS(1596), 1,
- anon_sym_SQUOTE,
- ACTIONS(4245), 1,
- anon_sym_LBRACK,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(5885), 2,
- sym_number,
- sym_private_property_identifier,
- STATE(3402), 3,
- sym_string,
- sym__property_name,
- sym_computed_property_name,
- ACTIONS(3743), 7,
- sym__automatic_semicolon,
- anon_sym_EQ,
- anon_sym_COMMA,
- anon_sym_BANG,
- anon_sym_SEMI,
- anon_sym_COLON,
- anon_sym_QMARK,
- ACTIONS(3607), 23,
- anon_sym_export,
- anon_sym_type,
- anon_sym_namespace,
- anon_sym_let,
- anon_sym_async,
- anon_sym_new,
- sym_identifier,
- anon_sym_static,
- anon_sym_readonly,
- anon_sym_get,
- anon_sym_set,
- anon_sym_declare,
- anon_sym_public,
- anon_sym_private,
- anon_sym_protected,
- anon_sym_override,
- anon_sym_module,
- anon_sym_any,
- anon_sym_number,
- anon_sym_boolean,
- anon_sym_string,
- anon_sym_symbol,
- anon_sym_object,
- [101887] = 8,
- ACTIONS(1594), 1,
- anon_sym_DQUOTE,
- ACTIONS(1596), 1,
- anon_sym_SQUOTE,
- ACTIONS(4245), 1,
- anon_sym_LBRACK,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(5887), 2,
- sym_number,
- sym_private_property_identifier,
- STATE(3407), 3,
- sym_string,
- sym__property_name,
- sym_computed_property_name,
- ACTIONS(3743), 7,
- sym__automatic_semicolon,
- anon_sym_EQ,
- anon_sym_COMMA,
- anon_sym_BANG,
- anon_sym_SEMI,
- anon_sym_COLON,
- anon_sym_QMARK,
- ACTIONS(3607), 23,
- anon_sym_export,
- anon_sym_type,
- anon_sym_namespace,
- anon_sym_let,
- anon_sym_async,
- anon_sym_new,
- sym_identifier,
- anon_sym_static,
- anon_sym_readonly,
- anon_sym_get,
- anon_sym_set,
- anon_sym_declare,
- anon_sym_public,
- anon_sym_private,
- anon_sym_protected,
- anon_sym_override,
- anon_sym_module,
- anon_sym_any,
- anon_sym_number,
- anon_sym_boolean,
- anon_sym_string,
- anon_sym_symbol,
- anon_sym_object,
- [101944] = 9,
- ACTIONS(241), 1,
- anon_sym_COMMA,
- ACTIONS(727), 1,
- anon_sym_RBRACE,
- ACTIONS(4243), 1,
- anon_sym_EQ,
- STATE(4671), 1,
- aux_sym_object_repeat1,
- STATE(4672), 1,
- aux_sym_object_pattern_repeat1,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(3743), 4,
- anon_sym_LPAREN,
- anon_sym_COLON,
- anon_sym_LT,
- anon_sym_QMARK,
- ACTIONS(1993), 6,
- anon_sym_STAR,
- anon_sym_LBRACK,
- anon_sym_DQUOTE,
- anon_sym_SQUOTE,
- sym_number,
- sym_private_property_identifier,
- ACTIONS(1991), 23,
- anon_sym_export,
- anon_sym_type,
- anon_sym_namespace,
- anon_sym_let,
- anon_sym_async,
- anon_sym_new,
- sym_identifier,
- anon_sym_static,
- anon_sym_readonly,
- anon_sym_get,
- anon_sym_set,
- anon_sym_declare,
- anon_sym_public,
- anon_sym_private,
- anon_sym_protected,
- anon_sym_override,
- anon_sym_module,
- anon_sym_any,
- anon_sym_number,
- anon_sym_boolean,
- anon_sym_string,
- anon_sym_symbol,
- anon_sym_object,
- [102003] = 9,
- ACTIONS(241), 1,
- anon_sym_COMMA,
- ACTIONS(702), 1,
- anon_sym_RBRACE,
- ACTIONS(4243), 1,
- anon_sym_EQ,
- STATE(4672), 1,
- aux_sym_object_pattern_repeat1,
- STATE(5156), 1,
- aux_sym_object_repeat1,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(3743), 4,
- anon_sym_LPAREN,
- anon_sym_COLON,
- anon_sym_LT,
- anon_sym_QMARK,
- ACTIONS(1993), 6,
- anon_sym_STAR,
- anon_sym_LBRACK,
- anon_sym_DQUOTE,
- anon_sym_SQUOTE,
- sym_number,
- sym_private_property_identifier,
- ACTIONS(1991), 23,
- anon_sym_export,
- anon_sym_type,
- anon_sym_namespace,
- anon_sym_let,
- anon_sym_async,
- anon_sym_new,
- sym_identifier,
- anon_sym_static,
- anon_sym_readonly,
- anon_sym_get,
- anon_sym_set,
- anon_sym_declare,
- anon_sym_public,
- anon_sym_private,
- anon_sym_protected,
- anon_sym_override,
- anon_sym_module,
- anon_sym_any,
- anon_sym_number,
- anon_sym_boolean,
- anon_sym_string,
- anon_sym_symbol,
- anon_sym_object,
- [102062] = 8,
- ACTIONS(1594), 1,
- anon_sym_DQUOTE,
- ACTIONS(1596), 1,
- anon_sym_SQUOTE,
- ACTIONS(4245), 1,
- anon_sym_LBRACK,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(5889), 2,
- sym_number,
- sym_private_property_identifier,
- STATE(3339), 3,
- sym_string,
- sym__property_name,
- sym_computed_property_name,
- ACTIONS(3743), 7,
- sym__automatic_semicolon,
- anon_sym_EQ,
- anon_sym_COMMA,
- anon_sym_BANG,
- anon_sym_SEMI,
- anon_sym_COLON,
- anon_sym_QMARK,
- ACTIONS(3607), 23,
- anon_sym_export,
- anon_sym_type,
- anon_sym_namespace,
- anon_sym_let,
- anon_sym_async,
- anon_sym_new,
- sym_identifier,
- anon_sym_static,
- anon_sym_readonly,
- anon_sym_get,
- anon_sym_set,
- anon_sym_declare,
- anon_sym_public,
- anon_sym_private,
- anon_sym_protected,
- anon_sym_override,
- anon_sym_module,
- anon_sym_any,
- anon_sym_number,
- anon_sym_boolean,
- anon_sym_string,
- anon_sym_symbol,
- anon_sym_object,
- [102119] = 9,
- ACTIONS(241), 1,
- anon_sym_COMMA,
- ACTIONS(4243), 1,
- anon_sym_EQ,
- ACTIONS(5202), 1,
- anon_sym_RBRACE,
- STATE(4672), 1,
- aux_sym_object_pattern_repeat1,
- STATE(5156), 1,
- aux_sym_object_repeat1,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(3743), 4,
- anon_sym_LPAREN,
- anon_sym_COLON,
- anon_sym_LT,
- anon_sym_QMARK,
- ACTIONS(2003), 6,
- anon_sym_STAR,
- anon_sym_LBRACK,
- anon_sym_DQUOTE,
- anon_sym_SQUOTE,
- sym_number,
- sym_private_property_identifier,
- ACTIONS(2001), 23,
- anon_sym_export,
- anon_sym_type,
- anon_sym_namespace,
- anon_sym_let,
- anon_sym_async,
- anon_sym_new,
- sym_identifier,
- anon_sym_static,
- anon_sym_readonly,
- anon_sym_get,
- anon_sym_set,
- anon_sym_declare,
- anon_sym_public,
- anon_sym_private,
- anon_sym_protected,
- anon_sym_override,
- anon_sym_module,
- anon_sym_any,
- anon_sym_number,
- anon_sym_boolean,
- anon_sym_string,
- anon_sym_symbol,
- anon_sym_object,
- [102178] = 6,
- ACTIONS(1726), 1,
- anon_sym_EQ,
- ACTIONS(4989), 1,
- anon_sym_of,
- ACTIONS(5401), 1,
- anon_sym_in,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(1724), 12,
- anon_sym_STAR,
- anon_sym_BANG,
- anon_sym_GT,
- anon_sym_GT_GT,
- anon_sym_AMP,
- anon_sym_PIPE,
- anon_sym_PLUS,
- anon_sym_DASH,
- anon_sym_SLASH,
- anon_sym_LT,
- anon_sym_EQ_EQ,
- anon_sym_BANG_EQ,
- ACTIONS(1728), 23,
- sym__ternary_qmark,
- anon_sym_as,
- anon_sym_LPAREN,
- anon_sym_LBRACK,
- anon_sym_DOT,
- anon_sym_QMARK_DOT,
- anon_sym_AMP_AMP,
- anon_sym_PIPE_PIPE,
- anon_sym_GT_GT_GT,
- anon_sym_LT_LT,
- anon_sym_CARET,
- anon_sym_PERCENT,
- anon_sym_STAR_STAR,
- anon_sym_LT_EQ,
- anon_sym_EQ_EQ_EQ,
- anon_sym_BANG_EQ_EQ,
- anon_sym_GT_EQ,
- anon_sym_QMARK_QMARK,
- anon_sym_instanceof,
- anon_sym_PLUS_PLUS,
- anon_sym_DASH_DASH,
- anon_sym_BQUOTE,
- anon_sym_satisfies,
- [102231] = 9,
- ACTIONS(241), 1,
- anon_sym_COMMA,
- ACTIONS(725), 1,
- anon_sym_RBRACE,
- ACTIONS(4243), 1,
- anon_sym_EQ,
- STATE(4672), 1,
- aux_sym_object_pattern_repeat1,
- STATE(5156), 1,
- aux_sym_object_repeat1,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(3743), 4,
- anon_sym_LPAREN,
- anon_sym_COLON,
- anon_sym_LT,
- anon_sym_QMARK,
- ACTIONS(2003), 6,
- anon_sym_STAR,
- anon_sym_LBRACK,
- anon_sym_DQUOTE,
- anon_sym_SQUOTE,
- sym_number,
- sym_private_property_identifier,
- ACTIONS(2001), 23,
- anon_sym_export,
- anon_sym_type,
- anon_sym_namespace,
- anon_sym_let,
- anon_sym_async,
- anon_sym_new,
- sym_identifier,
- anon_sym_static,
- anon_sym_readonly,
- anon_sym_get,
- anon_sym_set,
- anon_sym_declare,
- anon_sym_public,
- anon_sym_private,
- anon_sym_protected,
- anon_sym_override,
- anon_sym_module,
- anon_sym_any,
- anon_sym_number,
- anon_sym_boolean,
- anon_sym_string,
- anon_sym_symbol,
- anon_sym_object,
- [102290] = 11,
- ACTIONS(2275), 1,
- anon_sym_DQUOTE,
- ACTIONS(2277), 1,
- anon_sym_SQUOTE,
- ACTIONS(4634), 1,
- anon_sym_LBRACK,
- ACTIONS(5091), 1,
- anon_sym_STAR,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(2285), 2,
- sym_number,
- sym_private_property_identifier,
- ACTIONS(2313), 2,
- anon_sym_get,
- anon_sym_set,
- ACTIONS(5869), 2,
- anon_sym_COMMA,
- anon_sym_RBRACE,
- STATE(3788), 3,
- sym_string,
- sym__property_name,
- sym_computed_property_name,
- ACTIONS(3743), 4,
- anon_sym_LPAREN,
- anon_sym_COLON,
- anon_sym_LT,
- anon_sym_QMARK,
- ACTIONS(2307), 21,
- anon_sym_export,
- anon_sym_type,
- anon_sym_namespace,
- anon_sym_let,
- anon_sym_async,
- anon_sym_new,
- sym_identifier,
- anon_sym_static,
- anon_sym_readonly,
- anon_sym_declare,
- anon_sym_public,
- anon_sym_private,
- anon_sym_protected,
- anon_sym_override,
- anon_sym_module,
- anon_sym_any,
- anon_sym_number,
- anon_sym_boolean,
- anon_sym_string,
- anon_sym_symbol,
- anon_sym_object,
- [102353] = 6,
- ACTIONS(3475), 1,
- anon_sym_EQ,
- ACTIONS(3586), 1,
- anon_sym_in,
- ACTIONS(3589), 1,
- anon_sym_of,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(3400), 12,
- anon_sym_STAR,
- anon_sym_BANG,
- anon_sym_GT,
- anon_sym_GT_GT,
- anon_sym_AMP,
- anon_sym_PIPE,
- anon_sym_PLUS,
- anon_sym_DASH,
- anon_sym_SLASH,
- anon_sym_LT,
- anon_sym_EQ_EQ,
- anon_sym_BANG_EQ,
- ACTIONS(3404), 23,
- sym__ternary_qmark,
- anon_sym_as,
- anon_sym_LPAREN,
- anon_sym_LBRACK,
- anon_sym_DOT,
- anon_sym_QMARK_DOT,
- anon_sym_AMP_AMP,
- anon_sym_PIPE_PIPE,
- anon_sym_GT_GT_GT,
- anon_sym_LT_LT,
- anon_sym_CARET,
- anon_sym_PERCENT,
- anon_sym_STAR_STAR,
- anon_sym_LT_EQ,
- anon_sym_EQ_EQ_EQ,
- anon_sym_BANG_EQ_EQ,
- anon_sym_GT_EQ,
- anon_sym_QMARK_QMARK,
- anon_sym_instanceof,
- anon_sym_PLUS_PLUS,
- anon_sym_DASH_DASH,
- anon_sym_BQUOTE,
- anon_sym_satisfies,
- [102406] = 12,
- ACTIONS(2275), 1,
- anon_sym_DQUOTE,
- ACTIONS(2277), 1,
- anon_sym_SQUOTE,
- ACTIONS(2309), 1,
- anon_sym_async,
- ACTIONS(4634), 1,
- anon_sym_LBRACK,
- ACTIONS(5091), 1,
- anon_sym_STAR,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(2285), 2,
- sym_number,
- sym_private_property_identifier,
- ACTIONS(2313), 2,
- anon_sym_get,
- anon_sym_set,
- ACTIONS(5869), 2,
- anon_sym_COMMA,
- anon_sym_RBRACE,
- STATE(3788), 3,
- sym_string,
- sym__property_name,
- sym_computed_property_name,
- ACTIONS(3743), 4,
- anon_sym_LPAREN,
- anon_sym_COLON,
- anon_sym_LT,
- anon_sym_QMARK,
- ACTIONS(2307), 20,
- anon_sym_export,
- anon_sym_type,
- anon_sym_namespace,
- anon_sym_let,
- anon_sym_new,
- sym_identifier,
- anon_sym_static,
- anon_sym_readonly,
- anon_sym_declare,
- anon_sym_public,
- anon_sym_private,
- anon_sym_protected,
- anon_sym_override,
- anon_sym_module,
- anon_sym_any,
- anon_sym_number,
- anon_sym_boolean,
- anon_sym_string,
- anon_sym_symbol,
- anon_sym_object,
- [102471] = 9,
- ACTIONS(241), 1,
- anon_sym_COMMA,
- ACTIONS(4243), 1,
- anon_sym_EQ,
- ACTIONS(5200), 1,
- anon_sym_RBRACE,
- STATE(4672), 1,
- aux_sym_object_pattern_repeat1,
- STATE(5156), 1,
- aux_sym_object_repeat1,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(3743), 4,
- anon_sym_LPAREN,
- anon_sym_COLON,
- anon_sym_LT,
- anon_sym_QMARK,
- ACTIONS(1993), 6,
- anon_sym_STAR,
- anon_sym_LBRACK,
- anon_sym_DQUOTE,
- anon_sym_SQUOTE,
- sym_number,
- sym_private_property_identifier,
- ACTIONS(1991), 23,
- anon_sym_export,
- anon_sym_type,
- anon_sym_namespace,
- anon_sym_let,
- anon_sym_async,
- anon_sym_new,
- sym_identifier,
- anon_sym_static,
- anon_sym_readonly,
- anon_sym_get,
- anon_sym_set,
- anon_sym_declare,
- anon_sym_public,
- anon_sym_private,
- anon_sym_protected,
- anon_sym_override,
- anon_sym_module,
- anon_sym_any,
- anon_sym_number,
- anon_sym_boolean,
- anon_sym_string,
- anon_sym_symbol,
- anon_sym_object,
- [102530] = 9,
- ACTIONS(241), 1,
- anon_sym_COMMA,
- ACTIONS(4243), 1,
- anon_sym_EQ,
- ACTIONS(5200), 1,
- anon_sym_RBRACE,
- STATE(4672), 1,
- aux_sym_object_pattern_repeat1,
- STATE(5156), 1,
- aux_sym_object_repeat1,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(3743), 4,
- anon_sym_LPAREN,
- anon_sym_COLON,
- anon_sym_LT,
- anon_sym_QMARK,
- ACTIONS(2003), 6,
- anon_sym_STAR,
- anon_sym_LBRACK,
- anon_sym_DQUOTE,
- anon_sym_SQUOTE,
- sym_number,
- sym_private_property_identifier,
- ACTIONS(2001), 23,
- anon_sym_export,
- anon_sym_type,
- anon_sym_namespace,
- anon_sym_let,
- anon_sym_async,
- anon_sym_new,
- sym_identifier,
- anon_sym_static,
- anon_sym_readonly,
- anon_sym_get,
- anon_sym_set,
- anon_sym_declare,
- anon_sym_public,
- anon_sym_private,
- anon_sym_protected,
- anon_sym_override,
- anon_sym_module,
- anon_sym_any,
- anon_sym_number,
- anon_sym_boolean,
- anon_sym_string,
- anon_sym_symbol,
- anon_sym_object,
- [102589] = 8,
- ACTIONS(1594), 1,
- anon_sym_DQUOTE,
- ACTIONS(1596), 1,
- anon_sym_SQUOTE,
- ACTIONS(4245), 1,
- anon_sym_LBRACK,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(5891), 2,
- sym_number,
- sym_private_property_identifier,
- STATE(3262), 3,
- sym_string,
- sym__property_name,
- sym_computed_property_name,
- ACTIONS(3743), 7,
- sym__automatic_semicolon,
- anon_sym_EQ,
- anon_sym_COMMA,
- anon_sym_BANG,
- anon_sym_SEMI,
- anon_sym_COLON,
- anon_sym_QMARK,
- ACTIONS(3607), 23,
- anon_sym_export,
- anon_sym_type,
- anon_sym_namespace,
- anon_sym_let,
- anon_sym_async,
- anon_sym_new,
- sym_identifier,
- anon_sym_static,
- anon_sym_readonly,
- anon_sym_get,
- anon_sym_set,
- anon_sym_declare,
- anon_sym_public,
- anon_sym_private,
- anon_sym_protected,
- anon_sym_override,
- anon_sym_module,
- anon_sym_any,
- anon_sym_number,
- anon_sym_boolean,
- anon_sym_string,
- anon_sym_symbol,
- anon_sym_object,
- [102646] = 8,
- ACTIONS(1594), 1,
- anon_sym_DQUOTE,
- ACTIONS(1596), 1,
- anon_sym_SQUOTE,
- ACTIONS(4245), 1,
- anon_sym_LBRACK,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(5893), 2,
- sym_number,
- sym_private_property_identifier,
- STATE(3412), 3,
- sym_string,
- sym__property_name,
- sym_computed_property_name,
- ACTIONS(3743), 7,
- sym__automatic_semicolon,
- anon_sym_EQ,
- anon_sym_COMMA,
- anon_sym_BANG,
- anon_sym_SEMI,
- anon_sym_COLON,
- anon_sym_QMARK,
- ACTIONS(3607), 23,
- anon_sym_export,
- anon_sym_type,
- anon_sym_namespace,
- anon_sym_let,
- anon_sym_async,
- anon_sym_new,
- sym_identifier,
- anon_sym_static,
- anon_sym_readonly,
- anon_sym_get,
- anon_sym_set,
- anon_sym_declare,
- anon_sym_public,
- anon_sym_private,
- anon_sym_protected,
- anon_sym_override,
- anon_sym_module,
- anon_sym_any,
- anon_sym_number,
- anon_sym_boolean,
- anon_sym_string,
- anon_sym_symbol,
- anon_sym_object,
- [102703] = 9,
- ACTIONS(241), 1,
- anon_sym_COMMA,
- ACTIONS(727), 1,
- anon_sym_RBRACE,
- ACTIONS(4243), 1,
- anon_sym_EQ,
- STATE(4671), 1,
- aux_sym_object_repeat1,
- STATE(4672), 1,
- aux_sym_object_pattern_repeat1,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(3743), 4,
- anon_sym_LPAREN,
- anon_sym_COLON,
- anon_sym_LT,
- anon_sym_QMARK,
- ACTIONS(2003), 6,
- anon_sym_STAR,
- anon_sym_LBRACK,
- anon_sym_DQUOTE,
- anon_sym_SQUOTE,
- sym_number,
- sym_private_property_identifier,
- ACTIONS(2001), 23,
- anon_sym_export,
- anon_sym_type,
- anon_sym_namespace,
- anon_sym_let,
- anon_sym_async,
- anon_sym_new,
- sym_identifier,
- anon_sym_static,
- anon_sym_readonly,
- anon_sym_get,
- anon_sym_set,
- anon_sym_declare,
- anon_sym_public,
- anon_sym_private,
- anon_sym_protected,
- anon_sym_override,
- anon_sym_module,
- anon_sym_any,
- anon_sym_number,
- anon_sym_boolean,
- anon_sym_string,
- anon_sym_symbol,
- anon_sym_object,
- [102762] = 8,
- ACTIONS(1594), 1,
- anon_sym_DQUOTE,
- ACTIONS(1596), 1,
- anon_sym_SQUOTE,
- ACTIONS(4245), 1,
- anon_sym_LBRACK,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(5895), 2,
- sym_number,
- sym_private_property_identifier,
- STATE(3314), 3,
- sym_string,
- sym__property_name,
- sym_computed_property_name,
- ACTIONS(3743), 7,
- sym__automatic_semicolon,
- anon_sym_EQ,
- anon_sym_COMMA,
- anon_sym_BANG,
- anon_sym_SEMI,
- anon_sym_COLON,
- anon_sym_QMARK,
- ACTIONS(3607), 23,
- anon_sym_export,
- anon_sym_type,
- anon_sym_namespace,
- anon_sym_let,
- anon_sym_async,
- anon_sym_new,
- sym_identifier,
- anon_sym_static,
- anon_sym_readonly,
- anon_sym_get,
- anon_sym_set,
- anon_sym_declare,
- anon_sym_public,
- anon_sym_private,
- anon_sym_protected,
- anon_sym_override,
- anon_sym_module,
- anon_sym_any,
- anon_sym_number,
- anon_sym_boolean,
- anon_sym_string,
- anon_sym_symbol,
- anon_sym_object,
- [102819] = 11,
- ACTIONS(2275), 1,
- anon_sym_DQUOTE,
- ACTIONS(2277), 1,
- anon_sym_SQUOTE,
- ACTIONS(4634), 1,
- anon_sym_LBRACK,
- ACTIONS(5644), 1,
- anon_sym_COMMA,
- ACTIONS(5700), 1,
- anon_sym_RBRACE,
- STATE(5124), 1,
- aux_sym_object_repeat1,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(2285), 2,
- sym_number,
- sym_private_property_identifier,
- STATE(3788), 3,
- sym_string,
- sym__property_name,
- sym_computed_property_name,
- ACTIONS(3743), 4,
- anon_sym_LPAREN,
- anon_sym_COLON,
- anon_sym_LT,
- anon_sym_QMARK,
- ACTIONS(2307), 23,
- anon_sym_export,
- anon_sym_type,
- anon_sym_namespace,
- anon_sym_let,
- anon_sym_async,
- anon_sym_new,
- sym_identifier,
- anon_sym_static,
- anon_sym_readonly,
- anon_sym_get,
- anon_sym_set,
- anon_sym_declare,
- anon_sym_public,
- anon_sym_private,
- anon_sym_protected,
- anon_sym_override,
- anon_sym_module,
- anon_sym_any,
- anon_sym_number,
- anon_sym_boolean,
- anon_sym_string,
- anon_sym_symbol,
- anon_sym_object,
- [102882] = 8,
- ACTIONS(1594), 1,
- anon_sym_DQUOTE,
- ACTIONS(1596), 1,
- anon_sym_SQUOTE,
- ACTIONS(4245), 1,
- anon_sym_LBRACK,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(5897), 2,
- sym_number,
- sym_private_property_identifier,
- STATE(3420), 3,
- sym_string,
- sym__property_name,
- sym_computed_property_name,
- ACTIONS(3743), 7,
- sym__automatic_semicolon,
- anon_sym_EQ,
- anon_sym_COMMA,
- anon_sym_BANG,
- anon_sym_SEMI,
- anon_sym_COLON,
- anon_sym_QMARK,
- ACTIONS(3607), 23,
- anon_sym_export,
- anon_sym_type,
- anon_sym_namespace,
- anon_sym_let,
- anon_sym_async,
- anon_sym_new,
- sym_identifier,
- anon_sym_static,
- anon_sym_readonly,
- anon_sym_get,
- anon_sym_set,
- anon_sym_declare,
- anon_sym_public,
- anon_sym_private,
- anon_sym_protected,
- anon_sym_override,
- anon_sym_module,
- anon_sym_any,
- anon_sym_number,
- anon_sym_boolean,
- anon_sym_string,
- anon_sym_symbol,
- anon_sym_object,
- [102939] = 10,
- ACTIONS(2275), 1,
- anon_sym_DQUOTE,
- ACTIONS(2277), 1,
- anon_sym_SQUOTE,
- ACTIONS(4243), 1,
- anon_sym_EQ,
- ACTIONS(4634), 1,
- anon_sym_LBRACK,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(2285), 2,
- sym_number,
- sym_private_property_identifier,
- ACTIONS(5749), 2,
- anon_sym_COMMA,
- anon_sym_RBRACE,
- STATE(3788), 3,
- sym_string,
- sym__property_name,
- sym_computed_property_name,
- ACTIONS(3743), 4,
- anon_sym_LPAREN,
- anon_sym_COLON,
- anon_sym_LT,
- anon_sym_QMARK,
- ACTIONS(2307), 23,
- anon_sym_export,
- anon_sym_type,
- anon_sym_namespace,
- anon_sym_let,
- anon_sym_async,
- anon_sym_new,
- sym_identifier,
- anon_sym_static,
- anon_sym_readonly,
- anon_sym_get,
- anon_sym_set,
- anon_sym_declare,
- anon_sym_public,
- anon_sym_private,
- anon_sym_protected,
- anon_sym_override,
- anon_sym_module,
- anon_sym_any,
- anon_sym_number,
- anon_sym_boolean,
- anon_sym_string,
- anon_sym_symbol,
- anon_sym_object,
- [103000] = 4,
- ACTIONS(3556), 1,
- anon_sym_EQ,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(3400), 13,
- anon_sym_STAR,
- anon_sym_BANG,
- anon_sym_in,
- anon_sym_GT,
- anon_sym_GT_GT,
- anon_sym_AMP,
- anon_sym_PIPE,
- anon_sym_PLUS,
- anon_sym_DASH,
- anon_sym_SLASH,
- anon_sym_LT,
- anon_sym_EQ_EQ,
- anon_sym_BANG_EQ,
- ACTIONS(3404), 24,
- sym__ternary_qmark,
- anon_sym_as,
- anon_sym_LPAREN,
- anon_sym_LBRACK,
- anon_sym_RBRACK,
- anon_sym_DOT,
- anon_sym_QMARK_DOT,
- anon_sym_AMP_AMP,
- anon_sym_PIPE_PIPE,
- anon_sym_GT_GT_GT,
- anon_sym_LT_LT,
- anon_sym_CARET,
- anon_sym_PERCENT,
- anon_sym_STAR_STAR,
- anon_sym_LT_EQ,
- anon_sym_EQ_EQ_EQ,
- anon_sym_BANG_EQ_EQ,
- anon_sym_GT_EQ,
- anon_sym_QMARK_QMARK,
- anon_sym_instanceof,
- anon_sym_PLUS_PLUS,
- anon_sym_DASH_DASH,
- anon_sym_BQUOTE,
- anon_sym_satisfies,
- [103049] = 9,
- ACTIONS(241), 1,
- anon_sym_COMMA,
- ACTIONS(4243), 1,
- anon_sym_EQ,
- ACTIONS(5198), 1,
- anon_sym_RBRACE,
- STATE(4671), 1,
- aux_sym_object_repeat1,
- STATE(4672), 1,
- aux_sym_object_pattern_repeat1,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(3743), 4,
- anon_sym_LPAREN,
- anon_sym_COLON,
- anon_sym_LT,
- anon_sym_QMARK,
- ACTIONS(1993), 6,
- anon_sym_STAR,
- anon_sym_LBRACK,
- anon_sym_DQUOTE,
- anon_sym_SQUOTE,
- sym_number,
- sym_private_property_identifier,
- ACTIONS(1991), 23,
- anon_sym_export,
- anon_sym_type,
- anon_sym_namespace,
- anon_sym_let,
- anon_sym_async,
- anon_sym_new,
- sym_identifier,
- anon_sym_static,
- anon_sym_readonly,
- anon_sym_get,
- anon_sym_set,
- anon_sym_declare,
- anon_sym_public,
- anon_sym_private,
- anon_sym_protected,
- anon_sym_override,
- anon_sym_module,
- anon_sym_any,
- anon_sym_number,
- anon_sym_boolean,
- anon_sym_string,
- anon_sym_symbol,
- anon_sym_object,
- [103108] = 4,
- ACTIONS(3560), 1,
- anon_sym_EQ,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(3400), 13,
- anon_sym_STAR,
- anon_sym_BANG,
- anon_sym_in,
- anon_sym_GT,
- anon_sym_GT_GT,
- anon_sym_AMP,
- anon_sym_PIPE,
- anon_sym_PLUS,
- anon_sym_DASH,
- anon_sym_SLASH,
- anon_sym_LT,
- anon_sym_EQ_EQ,
- anon_sym_BANG_EQ,
- ACTIONS(3404), 24,
- sym__ternary_qmark,
- anon_sym_as,
- anon_sym_LPAREN,
- anon_sym_of,
- anon_sym_LBRACK,
- anon_sym_DOT,
- anon_sym_QMARK_DOT,
- anon_sym_AMP_AMP,
- anon_sym_PIPE_PIPE,
- anon_sym_GT_GT_GT,
- anon_sym_LT_LT,
- anon_sym_CARET,
- anon_sym_PERCENT,
- anon_sym_STAR_STAR,
- anon_sym_LT_EQ,
- anon_sym_EQ_EQ_EQ,
- anon_sym_BANG_EQ_EQ,
- anon_sym_GT_EQ,
- anon_sym_QMARK_QMARK,
- anon_sym_instanceof,
- anon_sym_PLUS_PLUS,
- anon_sym_DASH_DASH,
- anon_sym_BQUOTE,
- anon_sym_satisfies,
- [103157] = 9,
- ACTIONS(241), 1,
- anon_sym_COMMA,
- ACTIONS(725), 1,
- anon_sym_RBRACE,
- ACTIONS(4243), 1,
- anon_sym_EQ,
- STATE(4672), 1,
- aux_sym_object_pattern_repeat1,
- STATE(5156), 1,
- aux_sym_object_repeat1,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(3743), 4,
- anon_sym_LPAREN,
- anon_sym_COLON,
- anon_sym_LT,
- anon_sym_QMARK,
- ACTIONS(1993), 6,
- anon_sym_STAR,
- anon_sym_LBRACK,
- anon_sym_DQUOTE,
- anon_sym_SQUOTE,
- sym_number,
- sym_private_property_identifier,
- ACTIONS(1991), 23,
- anon_sym_export,
- anon_sym_type,
- anon_sym_namespace,
- anon_sym_let,
- anon_sym_async,
- anon_sym_new,
- sym_identifier,
- anon_sym_static,
- anon_sym_readonly,
- anon_sym_get,
- anon_sym_set,
- anon_sym_declare,
- anon_sym_public,
- anon_sym_private,
- anon_sym_protected,
- anon_sym_override,
- anon_sym_module,
- anon_sym_any,
- anon_sym_number,
- anon_sym_boolean,
- anon_sym_string,
- anon_sym_symbol,
- anon_sym_object,
- [103216] = 8,
- ACTIONS(1594), 1,
- anon_sym_DQUOTE,
- ACTIONS(1596), 1,
- anon_sym_SQUOTE,
- ACTIONS(4245), 1,
- anon_sym_LBRACK,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(5899), 2,
- sym_number,
- sym_private_property_identifier,
- STATE(3316), 3,
- sym_string,
- sym__property_name,
- sym_computed_property_name,
- ACTIONS(3743), 7,
- sym__automatic_semicolon,
- anon_sym_EQ,
- anon_sym_COMMA,
- anon_sym_BANG,
- anon_sym_SEMI,
- anon_sym_COLON,
- anon_sym_QMARK,
- ACTIONS(3607), 23,
- anon_sym_export,
- anon_sym_type,
- anon_sym_namespace,
- anon_sym_let,
- anon_sym_async,
- anon_sym_new,
- sym_identifier,
- anon_sym_static,
- anon_sym_readonly,
- anon_sym_get,
- anon_sym_set,
- anon_sym_declare,
- anon_sym_public,
- anon_sym_private,
- anon_sym_protected,
- anon_sym_override,
- anon_sym_module,
- anon_sym_any,
- anon_sym_number,
- anon_sym_boolean,
- anon_sym_string,
- anon_sym_symbol,
- anon_sym_object,
- [103273] = 8,
- ACTIONS(1594), 1,
- anon_sym_DQUOTE,
- ACTIONS(1596), 1,
- anon_sym_SQUOTE,
- ACTIONS(4245), 1,
- anon_sym_LBRACK,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(5901), 2,
- sym_number,
- sym_private_property_identifier,
- STATE(3297), 3,
- sym_string,
- sym__property_name,
- sym_computed_property_name,
- ACTIONS(3743), 7,
- sym__automatic_semicolon,
- anon_sym_EQ,
- anon_sym_COMMA,
- anon_sym_BANG,
- anon_sym_SEMI,
- anon_sym_COLON,
- anon_sym_QMARK,
- ACTIONS(3607), 23,
- anon_sym_export,
- anon_sym_type,
- anon_sym_namespace,
- anon_sym_let,
- anon_sym_async,
- anon_sym_new,
- sym_identifier,
- anon_sym_static,
- anon_sym_readonly,
- anon_sym_get,
- anon_sym_set,
- anon_sym_declare,
- anon_sym_public,
- anon_sym_private,
- anon_sym_protected,
- anon_sym_override,
- anon_sym_module,
- anon_sym_any,
- anon_sym_number,
- anon_sym_boolean,
- anon_sym_string,
- anon_sym_symbol,
- anon_sym_object,
- [103330] = 9,
- ACTIONS(241), 1,
- anon_sym_COMMA,
- ACTIONS(4243), 1,
- anon_sym_EQ,
- ACTIONS(5109), 1,
- anon_sym_RBRACE,
- STATE(4672), 1,
- aux_sym_object_pattern_repeat1,
- STATE(5156), 1,
- aux_sym_object_repeat1,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(3743), 4,
- anon_sym_LPAREN,
- anon_sym_COLON,
- anon_sym_LT,
- anon_sym_QMARK,
- ACTIONS(1993), 6,
- anon_sym_STAR,
- anon_sym_LBRACK,
- anon_sym_DQUOTE,
- anon_sym_SQUOTE,
- sym_number,
- sym_private_property_identifier,
- ACTIONS(1991), 23,
- anon_sym_export,
- anon_sym_type,
- anon_sym_namespace,
- anon_sym_let,
- anon_sym_async,
- anon_sym_new,
- sym_identifier,
- anon_sym_static,
- anon_sym_readonly,
- anon_sym_get,
- anon_sym_set,
- anon_sym_declare,
- anon_sym_public,
- anon_sym_private,
- anon_sym_protected,
- anon_sym_override,
- anon_sym_module,
- anon_sym_any,
- anon_sym_number,
- anon_sym_boolean,
- anon_sym_string,
- anon_sym_symbol,
- anon_sym_object,
- [103389] = 9,
- ACTIONS(241), 1,
- anon_sym_COMMA,
- ACTIONS(4243), 1,
- anon_sym_EQ,
- ACTIONS(5109), 1,
- anon_sym_RBRACE,
- STATE(4672), 1,
- aux_sym_object_pattern_repeat1,
- STATE(5156), 1,
- aux_sym_object_repeat1,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(3743), 4,
- anon_sym_LPAREN,
- anon_sym_COLON,
- anon_sym_LT,
- anon_sym_QMARK,
- ACTIONS(2003), 6,
- anon_sym_STAR,
- anon_sym_LBRACK,
- anon_sym_DQUOTE,
- anon_sym_SQUOTE,
- sym_number,
- sym_private_property_identifier,
- ACTIONS(2001), 23,
- anon_sym_export,
- anon_sym_type,
- anon_sym_namespace,
- anon_sym_let,
- anon_sym_async,
- anon_sym_new,
- sym_identifier,
- anon_sym_static,
- anon_sym_readonly,
- anon_sym_get,
- anon_sym_set,
- anon_sym_declare,
- anon_sym_public,
- anon_sym_private,
- anon_sym_protected,
- anon_sym_override,
- anon_sym_module,
- anon_sym_any,
- anon_sym_number,
- anon_sym_boolean,
- anon_sym_string,
- anon_sym_symbol,
- anon_sym_object,
- [103448] = 8,
- ACTIONS(1594), 1,
- anon_sym_DQUOTE,
- ACTIONS(1596), 1,
- anon_sym_SQUOTE,
- ACTIONS(4245), 1,
- anon_sym_LBRACK,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(5903), 2,
- sym_number,
- sym_private_property_identifier,
- STATE(3321), 3,
- sym_string,
- sym__property_name,
- sym_computed_property_name,
- ACTIONS(3743), 7,
- sym__automatic_semicolon,
- anon_sym_EQ,
- anon_sym_COMMA,
- anon_sym_BANG,
- anon_sym_SEMI,
- anon_sym_COLON,
- anon_sym_QMARK,
- ACTIONS(3607), 23,
- anon_sym_export,
- anon_sym_type,
- anon_sym_namespace,
- anon_sym_let,
- anon_sym_async,
- anon_sym_new,
- sym_identifier,
- anon_sym_static,
- anon_sym_readonly,
- anon_sym_get,
- anon_sym_set,
- anon_sym_declare,
- anon_sym_public,
- anon_sym_private,
- anon_sym_protected,
- anon_sym_override,
- anon_sym_module,
- anon_sym_any,
- anon_sym_number,
- anon_sym_boolean,
- anon_sym_string,
- anon_sym_symbol,
- anon_sym_object,
- [103505] = 4,
- ACTIONS(5905), 1,
- sym__automatic_semicolon,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(1871), 11,
- anon_sym_STAR,
- anon_sym_RBRACE,
- anon_sym_SEMI,
- anon_sym_LBRACK,
- anon_sym_DQUOTE,
- anon_sym_SQUOTE,
- anon_sym_PLUS,
- anon_sym_DASH,
- sym_number,
- sym_private_property_identifier,
- anon_sym_AT,
- ACTIONS(1873), 25,
- anon_sym_export,
- anon_sym_type,
- anon_sym_namespace,
- anon_sym_let,
- anon_sym_async,
- anon_sym_new,
- sym_identifier,
- anon_sym_static,
- anon_sym_readonly,
- anon_sym_get,
- anon_sym_set,
- anon_sym_declare,
- anon_sym_public,
- anon_sym_private,
- anon_sym_protected,
- anon_sym_override,
- anon_sym_module,
- anon_sym_any,
- anon_sym_number,
- anon_sym_boolean,
- anon_sym_string,
- anon_sym_symbol,
- anon_sym_object,
- anon_sym_abstract,
- anon_sym_accessor,
- [103553] = 3,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(5909), 12,
- sym__automatic_semicolon,
- anon_sym_STAR,
- anon_sym_RBRACE,
- anon_sym_SEMI,
- anon_sym_LBRACK,
- anon_sym_DQUOTE,
- anon_sym_SQUOTE,
- anon_sym_PLUS,
- anon_sym_DASH,
- sym_number,
- sym_private_property_identifier,
- anon_sym_AT,
- ACTIONS(5907), 25,
- anon_sym_export,
- anon_sym_type,
- anon_sym_namespace,
- anon_sym_let,
- anon_sym_async,
- anon_sym_new,
- sym_identifier,
- anon_sym_static,
- anon_sym_readonly,
- anon_sym_get,
- anon_sym_set,
- anon_sym_declare,
- anon_sym_public,
- anon_sym_private,
- anon_sym_protected,
- anon_sym_override,
- anon_sym_module,
- anon_sym_any,
- anon_sym_number,
- anon_sym_boolean,
- anon_sym_string,
- anon_sym_symbol,
- anon_sym_object,
- anon_sym_abstract,
- anon_sym_accessor,
- [103599] = 4,
- ACTIONS(5911), 1,
- sym__automatic_semicolon,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(1720), 11,
- anon_sym_STAR,
- anon_sym_RBRACE,
- anon_sym_SEMI,
- anon_sym_LBRACK,
- anon_sym_DQUOTE,
- anon_sym_SQUOTE,
- anon_sym_PLUS,
- anon_sym_DASH,
- sym_number,
- sym_private_property_identifier,
- anon_sym_AT,
- ACTIONS(1722), 25,
- anon_sym_export,
- anon_sym_type,
- anon_sym_namespace,
- anon_sym_let,
- anon_sym_async,
- anon_sym_new,
- sym_identifier,
- anon_sym_static,
- anon_sym_readonly,
- anon_sym_get,
- anon_sym_set,
- anon_sym_declare,
- anon_sym_public,
- anon_sym_private,
- anon_sym_protected,
- anon_sym_override,
- anon_sym_module,
- anon_sym_any,
- anon_sym_number,
- anon_sym_boolean,
- anon_sym_string,
- anon_sym_symbol,
- anon_sym_object,
- anon_sym_abstract,
- anon_sym_accessor,
- [103647] = 3,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(5915), 12,
- sym__automatic_semicolon,
- anon_sym_STAR,
- anon_sym_RBRACE,
- anon_sym_SEMI,
- anon_sym_LBRACK,
- anon_sym_DQUOTE,
- anon_sym_SQUOTE,
- anon_sym_PLUS,
- anon_sym_DASH,
- sym_number,
- sym_private_property_identifier,
- anon_sym_AT,
- ACTIONS(5913), 25,
- anon_sym_export,
- anon_sym_type,
- anon_sym_namespace,
- anon_sym_let,
- anon_sym_async,
- anon_sym_new,
- sym_identifier,
- anon_sym_static,
- anon_sym_readonly,
- anon_sym_get,
- anon_sym_set,
- anon_sym_declare,
- anon_sym_public,
- anon_sym_private,
- anon_sym_protected,
- anon_sym_override,
- anon_sym_module,
- anon_sym_any,
- anon_sym_number,
- anon_sym_boolean,
- anon_sym_string,
- anon_sym_symbol,
- anon_sym_object,
- anon_sym_abstract,
- anon_sym_accessor,
- [103693] = 3,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(5919), 12,
- sym__automatic_semicolon,
- anon_sym_STAR,
- anon_sym_RBRACE,
- anon_sym_SEMI,
- anon_sym_LBRACK,
- anon_sym_DQUOTE,
- anon_sym_SQUOTE,
- anon_sym_PLUS,
- anon_sym_DASH,
- sym_number,
- sym_private_property_identifier,
- anon_sym_AT,
- ACTIONS(5917), 25,
- anon_sym_export,
- anon_sym_type,
- anon_sym_namespace,
- anon_sym_let,
- anon_sym_async,
- anon_sym_new,
- sym_identifier,
- anon_sym_static,
- anon_sym_readonly,
- anon_sym_get,
- anon_sym_set,
- anon_sym_declare,
- anon_sym_public,
- anon_sym_private,
- anon_sym_protected,
- anon_sym_override,
- anon_sym_module,
- anon_sym_any,
- anon_sym_number,
- anon_sym_boolean,
- anon_sym_string,
- anon_sym_symbol,
- anon_sym_object,
- anon_sym_abstract,
- anon_sym_accessor,
- [103739] = 3,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(1871), 12,
- sym__automatic_semicolon,
- anon_sym_STAR,
- anon_sym_RBRACE,
- anon_sym_SEMI,
- anon_sym_LBRACK,
- anon_sym_DQUOTE,
- anon_sym_SQUOTE,
- anon_sym_PLUS,
- anon_sym_DASH,
- sym_number,
- sym_private_property_identifier,
- anon_sym_AT,
- ACTIONS(1873), 25,
- anon_sym_export,
- anon_sym_type,
- anon_sym_namespace,
- anon_sym_let,
- anon_sym_async,
- anon_sym_new,
- sym_identifier,
- anon_sym_static,
- anon_sym_readonly,
- anon_sym_get,
- anon_sym_set,
- anon_sym_declare,
- anon_sym_public,
- anon_sym_private,
- anon_sym_protected,
- anon_sym_override,
- anon_sym_module,
- anon_sym_any,
- anon_sym_number,
- anon_sym_boolean,
- anon_sym_string,
- anon_sym_symbol,
- anon_sym_object,
- anon_sym_abstract,
- anon_sym_accessor,
- [103785] = 3,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(5909), 12,
- sym__automatic_semicolon,
- anon_sym_STAR,
- anon_sym_RBRACE,
- anon_sym_SEMI,
- anon_sym_LBRACK,
- anon_sym_DQUOTE,
- anon_sym_SQUOTE,
- anon_sym_PLUS,
- anon_sym_DASH,
- sym_number,
- sym_private_property_identifier,
- anon_sym_AT,
- ACTIONS(5907), 25,
- anon_sym_export,
- anon_sym_type,
- anon_sym_namespace,
- anon_sym_let,
- anon_sym_async,
- anon_sym_new,
- sym_identifier,
- anon_sym_static,
- anon_sym_readonly,
- anon_sym_get,
- anon_sym_set,
- anon_sym_declare,
- anon_sym_public,
- anon_sym_private,
- anon_sym_protected,
- anon_sym_override,
- anon_sym_module,
- anon_sym_any,
- anon_sym_number,
- anon_sym_boolean,
- anon_sym_string,
- anon_sym_symbol,
- anon_sym_object,
- anon_sym_abstract,
- anon_sym_accessor,
- [103831] = 3,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(5909), 12,
- sym__automatic_semicolon,
- anon_sym_STAR,
- anon_sym_RBRACE,
- anon_sym_SEMI,
- anon_sym_LBRACK,
- anon_sym_DQUOTE,
- anon_sym_SQUOTE,
- anon_sym_PLUS,
- anon_sym_DASH,
- sym_number,
- sym_private_property_identifier,
- anon_sym_AT,
- ACTIONS(5907), 25,
- anon_sym_export,
- anon_sym_type,
- anon_sym_namespace,
- anon_sym_let,
- anon_sym_async,
- anon_sym_new,
- sym_identifier,
- anon_sym_static,
- anon_sym_readonly,
- anon_sym_get,
- anon_sym_set,
- anon_sym_declare,
- anon_sym_public,
- anon_sym_private,
- anon_sym_protected,
- anon_sym_override,
- anon_sym_module,
- anon_sym_any,
- anon_sym_number,
- anon_sym_boolean,
- anon_sym_string,
- anon_sym_symbol,
- anon_sym_object,
- anon_sym_abstract,
- anon_sym_accessor,
- [103877] = 3,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(5923), 12,
- sym__automatic_semicolon,
- anon_sym_STAR,
- anon_sym_RBRACE,
- anon_sym_SEMI,
- anon_sym_LBRACK,
- anon_sym_DQUOTE,
- anon_sym_SQUOTE,
- anon_sym_PLUS,
- anon_sym_DASH,
- sym_number,
- sym_private_property_identifier,
- anon_sym_AT,
- ACTIONS(5921), 25,
- anon_sym_export,
- anon_sym_type,
- anon_sym_namespace,
- anon_sym_let,
- anon_sym_async,
- anon_sym_new,
- sym_identifier,
- anon_sym_static,
- anon_sym_readonly,
- anon_sym_get,
- anon_sym_set,
- anon_sym_declare,
- anon_sym_public,
- anon_sym_private,
- anon_sym_protected,
- anon_sym_override,
- anon_sym_module,
- anon_sym_any,
- anon_sym_number,
- anon_sym_boolean,
- anon_sym_string,
- anon_sym_symbol,
- anon_sym_object,
- anon_sym_abstract,
- anon_sym_accessor,
- [103923] = 5,
- ACTIONS(5929), 1,
- anon_sym_SEMI,
- ACTIONS(5932), 1,
- sym__automatic_semicolon,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(5927), 10,
- anon_sym_STAR,
- anon_sym_RBRACE,
- anon_sym_LBRACK,
- anon_sym_DQUOTE,
- anon_sym_SQUOTE,
- anon_sym_PLUS,
- anon_sym_DASH,
- sym_number,
- sym_private_property_identifier,
- anon_sym_AT,
- ACTIONS(5925), 25,
- anon_sym_export,
- anon_sym_type,
- anon_sym_namespace,
- anon_sym_let,
- anon_sym_async,
- anon_sym_new,
- sym_identifier,
- anon_sym_static,
- anon_sym_readonly,
- anon_sym_get,
- anon_sym_set,
- anon_sym_declare,
- anon_sym_public,
- anon_sym_private,
- anon_sym_protected,
- anon_sym_override,
- anon_sym_module,
- anon_sym_any,
- anon_sym_number,
- anon_sym_boolean,
- anon_sym_string,
- anon_sym_symbol,
- anon_sym_object,
- anon_sym_abstract,
- anon_sym_accessor,
- [103973] = 3,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(5909), 12,
- sym__automatic_semicolon,
- anon_sym_STAR,
- anon_sym_RBRACE,
- anon_sym_SEMI,
- anon_sym_LBRACK,
- anon_sym_DQUOTE,
- anon_sym_SQUOTE,
- anon_sym_PLUS,
- anon_sym_DASH,
- sym_number,
- sym_private_property_identifier,
- anon_sym_AT,
- ACTIONS(5907), 25,
- anon_sym_export,
- anon_sym_type,
- anon_sym_namespace,
- anon_sym_let,
- anon_sym_async,
- anon_sym_new,
- sym_identifier,
- anon_sym_static,
- anon_sym_readonly,
- anon_sym_get,
- anon_sym_set,
- anon_sym_declare,
- anon_sym_public,
- anon_sym_private,
- anon_sym_protected,
- anon_sym_override,
- anon_sym_module,
- anon_sym_any,
- anon_sym_number,
- anon_sym_boolean,
- anon_sym_string,
- anon_sym_symbol,
- anon_sym_object,
- anon_sym_abstract,
- anon_sym_accessor,
- [104019] = 3,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(5919), 12,
- sym__automatic_semicolon,
- anon_sym_STAR,
- anon_sym_RBRACE,
- anon_sym_SEMI,
- anon_sym_LBRACK,
- anon_sym_DQUOTE,
- anon_sym_SQUOTE,
- anon_sym_PLUS,
- anon_sym_DASH,
- sym_number,
- sym_private_property_identifier,
- anon_sym_AT,
- ACTIONS(5917), 25,
- anon_sym_export,
- anon_sym_type,
- anon_sym_namespace,
- anon_sym_let,
- anon_sym_async,
- anon_sym_new,
- sym_identifier,
- anon_sym_static,
- anon_sym_readonly,
- anon_sym_get,
- anon_sym_set,
- anon_sym_declare,
- anon_sym_public,
- anon_sym_private,
- anon_sym_protected,
- anon_sym_override,
- anon_sym_module,
- anon_sym_any,
- anon_sym_number,
- anon_sym_boolean,
- anon_sym_string,
- anon_sym_symbol,
- anon_sym_object,
- anon_sym_abstract,
- anon_sym_accessor,
- [104065] = 3,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(5936), 12,
- sym__automatic_semicolon,
- anon_sym_STAR,
- anon_sym_RBRACE,
- anon_sym_SEMI,
- anon_sym_LBRACK,
- anon_sym_DQUOTE,
- anon_sym_SQUOTE,
- anon_sym_PLUS,
- anon_sym_DASH,
- sym_number,
- sym_private_property_identifier,
- anon_sym_AT,
- ACTIONS(5934), 25,
- anon_sym_export,
- anon_sym_type,
- anon_sym_namespace,
- anon_sym_let,
- anon_sym_async,
- anon_sym_new,
- sym_identifier,
- anon_sym_static,
- anon_sym_readonly,
- anon_sym_get,
- anon_sym_set,
- anon_sym_declare,
- anon_sym_public,
- anon_sym_private,
- anon_sym_protected,
- anon_sym_override,
- anon_sym_module,
- anon_sym_any,
- anon_sym_number,
- anon_sym_boolean,
- anon_sym_string,
- anon_sym_symbol,
- anon_sym_object,
- anon_sym_abstract,
- anon_sym_accessor,
- [104111] = 3,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(5923), 12,
- sym__automatic_semicolon,
- anon_sym_STAR,
- anon_sym_RBRACE,
- anon_sym_SEMI,
- anon_sym_LBRACK,
- anon_sym_DQUOTE,
- anon_sym_SQUOTE,
- anon_sym_PLUS,
- anon_sym_DASH,
- sym_number,
- sym_private_property_identifier,
- anon_sym_AT,
- ACTIONS(5921), 25,
- anon_sym_export,
- anon_sym_type,
- anon_sym_namespace,
- anon_sym_let,
- anon_sym_async,
- anon_sym_new,
- sym_identifier,
- anon_sym_static,
- anon_sym_readonly,
- anon_sym_get,
- anon_sym_set,
- anon_sym_declare,
- anon_sym_public,
- anon_sym_private,
- anon_sym_protected,
- anon_sym_override,
- anon_sym_module,
- anon_sym_any,
- anon_sym_number,
- anon_sym_boolean,
- anon_sym_string,
- anon_sym_symbol,
- anon_sym_object,
- anon_sym_abstract,
- anon_sym_accessor,
- [104157] = 3,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(5915), 12,
- sym__automatic_semicolon,
- anon_sym_STAR,
- anon_sym_RBRACE,
- anon_sym_SEMI,
- anon_sym_LBRACK,
- anon_sym_DQUOTE,
- anon_sym_SQUOTE,
- anon_sym_PLUS,
- anon_sym_DASH,
- sym_number,
- sym_private_property_identifier,
- anon_sym_AT,
- ACTIONS(5913), 25,
- anon_sym_export,
- anon_sym_type,
- anon_sym_namespace,
- anon_sym_let,
- anon_sym_async,
- anon_sym_new,
- sym_identifier,
- anon_sym_static,
- anon_sym_readonly,
- anon_sym_get,
- anon_sym_set,
- anon_sym_declare,
- anon_sym_public,
- anon_sym_private,
- anon_sym_protected,
- anon_sym_override,
- anon_sym_module,
- anon_sym_any,
- anon_sym_number,
- anon_sym_boolean,
- anon_sym_string,
- anon_sym_symbol,
- anon_sym_object,
- anon_sym_abstract,
- anon_sym_accessor,
- [104203] = 4,
- ACTIONS(3687), 1,
- anon_sym_EQ,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(3400), 13,
- anon_sym_STAR,
- anon_sym_BANG,
- anon_sym_in,
- anon_sym_GT,
- anon_sym_GT_GT,
- anon_sym_AMP,
- anon_sym_PIPE,
- anon_sym_PLUS,
- anon_sym_DASH,
- anon_sym_SLASH,
- anon_sym_LT,
- anon_sym_EQ_EQ,
- anon_sym_BANG_EQ,
- ACTIONS(3404), 23,
- sym__ternary_qmark,
- anon_sym_as,
- anon_sym_LPAREN,
- anon_sym_LBRACK,
- anon_sym_DOT,
- anon_sym_QMARK_DOT,
- anon_sym_AMP_AMP,
- anon_sym_PIPE_PIPE,
- anon_sym_GT_GT_GT,
- anon_sym_LT_LT,
- anon_sym_CARET,
- anon_sym_PERCENT,
- anon_sym_STAR_STAR,
- anon_sym_LT_EQ,
- anon_sym_EQ_EQ_EQ,
- anon_sym_BANG_EQ_EQ,
- anon_sym_GT_EQ,
- anon_sym_QMARK_QMARK,
- anon_sym_instanceof,
- anon_sym_PLUS_PLUS,
- anon_sym_DASH_DASH,
- anon_sym_BQUOTE,
- anon_sym_satisfies,
- [104251] = 3,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(5940), 12,
- sym__automatic_semicolon,
- anon_sym_STAR,
- anon_sym_RBRACE,
- anon_sym_SEMI,
- anon_sym_LBRACK,
- anon_sym_DQUOTE,
- anon_sym_SQUOTE,
- anon_sym_PLUS,
- anon_sym_DASH,
- sym_number,
- sym_private_property_identifier,
- anon_sym_AT,
- ACTIONS(5938), 25,
- anon_sym_export,
- anon_sym_type,
- anon_sym_namespace,
- anon_sym_let,
- anon_sym_async,
- anon_sym_new,
- sym_identifier,
- anon_sym_static,
- anon_sym_readonly,
- anon_sym_get,
- anon_sym_set,
- anon_sym_declare,
- anon_sym_public,
- anon_sym_private,
- anon_sym_protected,
- anon_sym_override,
- anon_sym_module,
- anon_sym_any,
- anon_sym_number,
- anon_sym_boolean,
- anon_sym_string,
- anon_sym_symbol,
- anon_sym_object,
- anon_sym_abstract,
- anon_sym_accessor,
- [104297] = 3,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(5909), 12,
- sym__automatic_semicolon,
- anon_sym_STAR,
- anon_sym_RBRACE,
- anon_sym_SEMI,
- anon_sym_LBRACK,
- anon_sym_DQUOTE,
- anon_sym_SQUOTE,
- anon_sym_PLUS,
- anon_sym_DASH,
- sym_number,
- sym_private_property_identifier,
- anon_sym_AT,
- ACTIONS(5907), 25,
- anon_sym_export,
- anon_sym_type,
- anon_sym_namespace,
- anon_sym_let,
- anon_sym_async,
- anon_sym_new,
- sym_identifier,
- anon_sym_static,
- anon_sym_readonly,
- anon_sym_get,
- anon_sym_set,
- anon_sym_declare,
- anon_sym_public,
- anon_sym_private,
- anon_sym_protected,
- anon_sym_override,
- anon_sym_module,
- anon_sym_any,
- anon_sym_number,
- anon_sym_boolean,
- anon_sym_string,
- anon_sym_symbol,
- anon_sym_object,
- anon_sym_abstract,
- anon_sym_accessor,
- [104343] = 3,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(5944), 12,
- sym__automatic_semicolon,
- anon_sym_STAR,
- anon_sym_RBRACE,
- anon_sym_SEMI,
- anon_sym_LBRACK,
- anon_sym_DQUOTE,
- anon_sym_SQUOTE,
- anon_sym_PLUS,
- anon_sym_DASH,
- sym_number,
- sym_private_property_identifier,
- anon_sym_AT,
- ACTIONS(5942), 25,
- anon_sym_export,
- anon_sym_type,
- anon_sym_namespace,
- anon_sym_let,
- anon_sym_async,
- anon_sym_new,
- sym_identifier,
- anon_sym_static,
- anon_sym_readonly,
- anon_sym_get,
- anon_sym_set,
- anon_sym_declare,
- anon_sym_public,
- anon_sym_private,
- anon_sym_protected,
- anon_sym_override,
- anon_sym_module,
- anon_sym_any,
- anon_sym_number,
- anon_sym_boolean,
- anon_sym_string,
- anon_sym_symbol,
- anon_sym_object,
- anon_sym_abstract,
- anon_sym_accessor,
- [104389] = 3,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(5948), 12,
- sym__automatic_semicolon,
- anon_sym_STAR,
- anon_sym_RBRACE,
- anon_sym_SEMI,
- anon_sym_LBRACK,
- anon_sym_DQUOTE,
- anon_sym_SQUOTE,
- anon_sym_PLUS,
- anon_sym_DASH,
- sym_number,
- sym_private_property_identifier,
- anon_sym_AT,
- ACTIONS(5946), 25,
- anon_sym_export,
- anon_sym_type,
- anon_sym_namespace,
- anon_sym_let,
- anon_sym_async,
- anon_sym_new,
- sym_identifier,
- anon_sym_static,
- anon_sym_readonly,
- anon_sym_get,
- anon_sym_set,
- anon_sym_declare,
- anon_sym_public,
- anon_sym_private,
- anon_sym_protected,
- anon_sym_override,
- anon_sym_module,
- anon_sym_any,
- anon_sym_number,
- anon_sym_boolean,
- anon_sym_string,
- anon_sym_symbol,
- anon_sym_object,
- anon_sym_abstract,
- anon_sym_accessor,
- [104435] = 5,
- ACTIONS(5954), 1,
- anon_sym_SEMI,
- ACTIONS(5957), 1,
- sym__automatic_semicolon,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(5952), 10,
- anon_sym_STAR,
- anon_sym_RBRACE,
- anon_sym_LBRACK,
- anon_sym_DQUOTE,
- anon_sym_SQUOTE,
- anon_sym_PLUS,
- anon_sym_DASH,
- sym_number,
- sym_private_property_identifier,
- anon_sym_AT,
- ACTIONS(5950), 25,
- anon_sym_export,
- anon_sym_type,
- anon_sym_namespace,
- anon_sym_let,
- anon_sym_async,
- anon_sym_new,
- sym_identifier,
- anon_sym_static,
- anon_sym_readonly,
- anon_sym_get,
- anon_sym_set,
- anon_sym_declare,
- anon_sym_public,
- anon_sym_private,
- anon_sym_protected,
- anon_sym_override,
- anon_sym_module,
- anon_sym_any,
- anon_sym_number,
- anon_sym_boolean,
- anon_sym_string,
- anon_sym_symbol,
- anon_sym_object,
- anon_sym_abstract,
- anon_sym_accessor,
- [104485] = 4,
- ACTIONS(3681), 1,
- anon_sym_EQ,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(3400), 13,
- anon_sym_STAR,
- anon_sym_BANG,
- anon_sym_in,
- anon_sym_GT,
- anon_sym_GT_GT,
- anon_sym_AMP,
- anon_sym_PIPE,
- anon_sym_PLUS,
- anon_sym_DASH,
- anon_sym_SLASH,
- anon_sym_LT,
- anon_sym_EQ_EQ,
- anon_sym_BANG_EQ,
- ACTIONS(3404), 23,
- sym__ternary_qmark,
- anon_sym_as,
- anon_sym_LPAREN,
- anon_sym_LBRACK,
- anon_sym_DOT,
- anon_sym_QMARK_DOT,
- anon_sym_AMP_AMP,
- anon_sym_PIPE_PIPE,
- anon_sym_GT_GT_GT,
- anon_sym_LT_LT,
- anon_sym_CARET,
- anon_sym_PERCENT,
- anon_sym_STAR_STAR,
- anon_sym_LT_EQ,
- anon_sym_EQ_EQ_EQ,
- anon_sym_BANG_EQ_EQ,
- anon_sym_GT_EQ,
- anon_sym_QMARK_QMARK,
- anon_sym_instanceof,
- anon_sym_PLUS_PLUS,
- anon_sym_DASH_DASH,
- anon_sym_BQUOTE,
- anon_sym_satisfies,
- [104533] = 3,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(5915), 12,
- sym__automatic_semicolon,
- anon_sym_STAR,
- anon_sym_RBRACE,
- anon_sym_SEMI,
- anon_sym_LBRACK,
- anon_sym_DQUOTE,
- anon_sym_SQUOTE,
- anon_sym_PLUS,
- anon_sym_DASH,
- sym_number,
- sym_private_property_identifier,
- anon_sym_AT,
- ACTIONS(5913), 25,
- anon_sym_export,
- anon_sym_type,
- anon_sym_namespace,
- anon_sym_let,
- anon_sym_async,
- anon_sym_new,
- sym_identifier,
- anon_sym_static,
- anon_sym_readonly,
- anon_sym_get,
- anon_sym_set,
- anon_sym_declare,
- anon_sym_public,
- anon_sym_private,
- anon_sym_protected,
- anon_sym_override,
- anon_sym_module,
- anon_sym_any,
- anon_sym_number,
- anon_sym_boolean,
- anon_sym_string,
- anon_sym_symbol,
- anon_sym_object,
- anon_sym_abstract,
- anon_sym_accessor,
- [104579] = 3,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(5948), 12,
- sym__automatic_semicolon,
- anon_sym_STAR,
- anon_sym_RBRACE,
- anon_sym_SEMI,
- anon_sym_LBRACK,
- anon_sym_DQUOTE,
- anon_sym_SQUOTE,
- anon_sym_PLUS,
- anon_sym_DASH,
- sym_number,
- sym_private_property_identifier,
- anon_sym_AT,
- ACTIONS(5946), 25,
- anon_sym_export,
- anon_sym_type,
- anon_sym_namespace,
- anon_sym_let,
- anon_sym_async,
- anon_sym_new,
- sym_identifier,
- anon_sym_static,
- anon_sym_readonly,
- anon_sym_get,
- anon_sym_set,
- anon_sym_declare,
- anon_sym_public,
- anon_sym_private,
- anon_sym_protected,
- anon_sym_override,
- anon_sym_module,
- anon_sym_any,
- anon_sym_number,
- anon_sym_boolean,
- anon_sym_string,
- anon_sym_symbol,
- anon_sym_object,
- anon_sym_abstract,
- anon_sym_accessor,
- [104625] = 3,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(5936), 12,
- sym__automatic_semicolon,
- anon_sym_STAR,
- anon_sym_RBRACE,
- anon_sym_SEMI,
- anon_sym_LBRACK,
- anon_sym_DQUOTE,
- anon_sym_SQUOTE,
- anon_sym_PLUS,
- anon_sym_DASH,
- sym_number,
- sym_private_property_identifier,
- anon_sym_AT,
- ACTIONS(5934), 25,
- anon_sym_export,
- anon_sym_type,
- anon_sym_namespace,
- anon_sym_let,
- anon_sym_async,
- anon_sym_new,
- sym_identifier,
- anon_sym_static,
- anon_sym_readonly,
- anon_sym_get,
- anon_sym_set,
- anon_sym_declare,
- anon_sym_public,
- anon_sym_private,
- anon_sym_protected,
- anon_sym_override,
- anon_sym_module,
- anon_sym_any,
- anon_sym_number,
- anon_sym_boolean,
- anon_sym_string,
- anon_sym_symbol,
- anon_sym_object,
- anon_sym_abstract,
- anon_sym_accessor,
- [104671] = 4,
- ACTIONS(3657), 1,
- anon_sym_EQ,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(3400), 13,
- anon_sym_STAR,
- anon_sym_BANG,
- anon_sym_in,
- anon_sym_GT,
- anon_sym_GT_GT,
- anon_sym_AMP,
- anon_sym_PIPE,
- anon_sym_PLUS,
- anon_sym_DASH,
- anon_sym_SLASH,
- anon_sym_LT,
- anon_sym_EQ_EQ,
- anon_sym_BANG_EQ,
- ACTIONS(3404), 23,
- sym__ternary_qmark,
- anon_sym_as,
- anon_sym_LPAREN,
- anon_sym_LBRACK,
- anon_sym_DOT,
- anon_sym_QMARK_DOT,
- anon_sym_AMP_AMP,
- anon_sym_PIPE_PIPE,
- anon_sym_GT_GT_GT,
- anon_sym_LT_LT,
- anon_sym_CARET,
- anon_sym_PERCENT,
- anon_sym_STAR_STAR,
- anon_sym_LT_EQ,
- anon_sym_EQ_EQ_EQ,
- anon_sym_BANG_EQ_EQ,
- anon_sym_GT_EQ,
- anon_sym_QMARK_QMARK,
- anon_sym_instanceof,
- anon_sym_PLUS_PLUS,
- anon_sym_DASH_DASH,
- anon_sym_BQUOTE,
- anon_sym_satisfies,
- [104719] = 3,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(5923), 12,
- sym__automatic_semicolon,
- anon_sym_STAR,
- anon_sym_RBRACE,
- anon_sym_SEMI,
- anon_sym_LBRACK,
- anon_sym_DQUOTE,
- anon_sym_SQUOTE,
- anon_sym_PLUS,
- anon_sym_DASH,
- sym_number,
- sym_private_property_identifier,
- anon_sym_AT,
- ACTIONS(5921), 25,
- anon_sym_export,
- anon_sym_type,
- anon_sym_namespace,
- anon_sym_let,
- anon_sym_async,
- anon_sym_new,
- sym_identifier,
- anon_sym_static,
- anon_sym_readonly,
- anon_sym_get,
- anon_sym_set,
- anon_sym_declare,
- anon_sym_public,
- anon_sym_private,
- anon_sym_protected,
- anon_sym_override,
- anon_sym_module,
- anon_sym_any,
- anon_sym_number,
- anon_sym_boolean,
- anon_sym_string,
- anon_sym_symbol,
- anon_sym_object,
- anon_sym_abstract,
- anon_sym_accessor,
- [104765] = 4,
- ACTIONS(3667), 1,
- anon_sym_EQ,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(3400), 13,
- anon_sym_STAR,
- anon_sym_BANG,
- anon_sym_in,
- anon_sym_GT,
- anon_sym_GT_GT,
- anon_sym_AMP,
- anon_sym_PIPE,
- anon_sym_PLUS,
- anon_sym_DASH,
- anon_sym_SLASH,
- anon_sym_LT,
- anon_sym_EQ_EQ,
- anon_sym_BANG_EQ,
- ACTIONS(3404), 23,
- sym__ternary_qmark,
- anon_sym_as,
- anon_sym_LPAREN,
- anon_sym_LBRACK,
- anon_sym_DOT,
- anon_sym_QMARK_DOT,
- anon_sym_AMP_AMP,
- anon_sym_PIPE_PIPE,
- anon_sym_GT_GT_GT,
- anon_sym_LT_LT,
- anon_sym_CARET,
- anon_sym_PERCENT,
- anon_sym_STAR_STAR,
- anon_sym_LT_EQ,
- anon_sym_EQ_EQ_EQ,
- anon_sym_BANG_EQ_EQ,
- anon_sym_GT_EQ,
- anon_sym_QMARK_QMARK,
- anon_sym_instanceof,
- anon_sym_PLUS_PLUS,
- anon_sym_DASH_DASH,
- anon_sym_BQUOTE,
- anon_sym_satisfies,
- [104813] = 3,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(5961), 12,
- sym__automatic_semicolon,
- anon_sym_STAR,
- anon_sym_RBRACE,
- anon_sym_SEMI,
- anon_sym_LBRACK,
- anon_sym_DQUOTE,
- anon_sym_SQUOTE,
- anon_sym_PLUS,
- anon_sym_DASH,
- sym_number,
- sym_private_property_identifier,
- anon_sym_AT,
- ACTIONS(5959), 25,
- anon_sym_export,
- anon_sym_type,
- anon_sym_namespace,
- anon_sym_let,
- anon_sym_async,
- anon_sym_new,
- sym_identifier,
- anon_sym_static,
- anon_sym_readonly,
- anon_sym_get,
- anon_sym_set,
- anon_sym_declare,
- anon_sym_public,
- anon_sym_private,
- anon_sym_protected,
- anon_sym_override,
- anon_sym_module,
- anon_sym_any,
- anon_sym_number,
- anon_sym_boolean,
- anon_sym_string,
- anon_sym_symbol,
- anon_sym_object,
- anon_sym_abstract,
- anon_sym_accessor,
- [104859] = 3,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(5965), 12,
- sym__automatic_semicolon,
- anon_sym_STAR,
- anon_sym_RBRACE,
- anon_sym_SEMI,
- anon_sym_LBRACK,
- anon_sym_DQUOTE,
- anon_sym_SQUOTE,
- anon_sym_PLUS,
- anon_sym_DASH,
- sym_number,
- sym_private_property_identifier,
- anon_sym_AT,
- ACTIONS(5963), 25,
- anon_sym_export,
- anon_sym_type,
- anon_sym_namespace,
- anon_sym_let,
- anon_sym_async,
- anon_sym_new,
- sym_identifier,
- anon_sym_static,
- anon_sym_readonly,
- anon_sym_get,
- anon_sym_set,
- anon_sym_declare,
- anon_sym_public,
- anon_sym_private,
- anon_sym_protected,
- anon_sym_override,
- anon_sym_module,
- anon_sym_any,
- anon_sym_number,
- anon_sym_boolean,
- anon_sym_string,
- anon_sym_symbol,
- anon_sym_object,
- anon_sym_abstract,
- anon_sym_accessor,
- [104905] = 3,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(5936), 12,
- sym__automatic_semicolon,
- anon_sym_STAR,
- anon_sym_RBRACE,
- anon_sym_SEMI,
- anon_sym_LBRACK,
- anon_sym_DQUOTE,
- anon_sym_SQUOTE,
- anon_sym_PLUS,
- anon_sym_DASH,
- sym_number,
- sym_private_property_identifier,
- anon_sym_AT,
- ACTIONS(5934), 25,
- anon_sym_export,
- anon_sym_type,
- anon_sym_namespace,
- anon_sym_let,
- anon_sym_async,
- anon_sym_new,
- sym_identifier,
- anon_sym_static,
- anon_sym_readonly,
- anon_sym_get,
- anon_sym_set,
- anon_sym_declare,
- anon_sym_public,
- anon_sym_private,
- anon_sym_protected,
- anon_sym_override,
- anon_sym_module,
- anon_sym_any,
- anon_sym_number,
- anon_sym_boolean,
- anon_sym_string,
- anon_sym_symbol,
- anon_sym_object,
- anon_sym_abstract,
- anon_sym_accessor,
- [104951] = 3,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(5969), 12,
- sym__automatic_semicolon,
- anon_sym_STAR,
- anon_sym_RBRACE,
- anon_sym_SEMI,
- anon_sym_LBRACK,
- anon_sym_DQUOTE,
- anon_sym_SQUOTE,
- anon_sym_PLUS,
- anon_sym_DASH,
- sym_number,
- sym_private_property_identifier,
- anon_sym_AT,
- ACTIONS(5967), 25,
- anon_sym_export,
- anon_sym_type,
- anon_sym_namespace,
- anon_sym_let,
- anon_sym_async,
- anon_sym_new,
- sym_identifier,
- anon_sym_static,
- anon_sym_readonly,
- anon_sym_get,
- anon_sym_set,
- anon_sym_declare,
- anon_sym_public,
- anon_sym_private,
- anon_sym_protected,
- anon_sym_override,
- anon_sym_module,
- anon_sym_any,
- anon_sym_number,
- anon_sym_boolean,
- anon_sym_string,
- anon_sym_symbol,
- anon_sym_object,
- anon_sym_abstract,
- anon_sym_accessor,
- [104997] = 3,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(5973), 12,
- sym__automatic_semicolon,
- anon_sym_STAR,
- anon_sym_RBRACE,
- anon_sym_SEMI,
- anon_sym_LBRACK,
- anon_sym_DQUOTE,
- anon_sym_SQUOTE,
- anon_sym_PLUS,
- anon_sym_DASH,
- sym_number,
- sym_private_property_identifier,
- anon_sym_AT,
- ACTIONS(5971), 25,
- anon_sym_export,
- anon_sym_type,
- anon_sym_namespace,
- anon_sym_let,
- anon_sym_async,
- anon_sym_new,
- sym_identifier,
- anon_sym_static,
- anon_sym_readonly,
- anon_sym_get,
- anon_sym_set,
- anon_sym_declare,
- anon_sym_public,
- anon_sym_private,
- anon_sym_protected,
- anon_sym_override,
- anon_sym_module,
- anon_sym_any,
- anon_sym_number,
- anon_sym_boolean,
- anon_sym_string,
- anon_sym_symbol,
- anon_sym_object,
- anon_sym_abstract,
- anon_sym_accessor,
- [105043] = 3,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(5944), 12,
- sym__automatic_semicolon,
- anon_sym_STAR,
- anon_sym_RBRACE,
- anon_sym_SEMI,
- anon_sym_LBRACK,
- anon_sym_DQUOTE,
- anon_sym_SQUOTE,
- anon_sym_PLUS,
- anon_sym_DASH,
- sym_number,
- sym_private_property_identifier,
- anon_sym_AT,
- ACTIONS(5942), 25,
- anon_sym_export,
- anon_sym_type,
- anon_sym_namespace,
- anon_sym_let,
- anon_sym_async,
- anon_sym_new,
- sym_identifier,
- anon_sym_static,
- anon_sym_readonly,
- anon_sym_get,
- anon_sym_set,
- anon_sym_declare,
- anon_sym_public,
- anon_sym_private,
- anon_sym_protected,
- anon_sym_override,
- anon_sym_module,
- anon_sym_any,
- anon_sym_number,
- anon_sym_boolean,
- anon_sym_string,
- anon_sym_symbol,
- anon_sym_object,
- anon_sym_abstract,
- anon_sym_accessor,
- [105089] = 3,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(5977), 12,
- sym__automatic_semicolon,
- anon_sym_STAR,
- anon_sym_RBRACE,
- anon_sym_SEMI,
- anon_sym_LBRACK,
- anon_sym_DQUOTE,
- anon_sym_SQUOTE,
- anon_sym_PLUS,
- anon_sym_DASH,
- sym_number,
- sym_private_property_identifier,
- anon_sym_AT,
- ACTIONS(5975), 25,
- anon_sym_export,
- anon_sym_type,
- anon_sym_namespace,
- anon_sym_let,
- anon_sym_async,
- anon_sym_new,
- sym_identifier,
- anon_sym_static,
- anon_sym_readonly,
- anon_sym_get,
- anon_sym_set,
- anon_sym_declare,
- anon_sym_public,
- anon_sym_private,
- anon_sym_protected,
- anon_sym_override,
- anon_sym_module,
- anon_sym_any,
- anon_sym_number,
- anon_sym_boolean,
- anon_sym_string,
- anon_sym_symbol,
- anon_sym_object,
- anon_sym_abstract,
- anon_sym_accessor,
- [105135] = 3,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(3566), 10,
- anon_sym_STAR,
- anon_sym_LPAREN,
- anon_sym_RPAREN,
- anon_sym_LBRACK,
- anon_sym_DQUOTE,
- anon_sym_SQUOTE,
- anon_sym_LT,
- sym_number,
- sym_private_property_identifier,
- anon_sym_AT,
- ACTIONS(3564), 27,
- anon_sym_export,
- anon_sym_type,
- anon_sym_namespace,
- anon_sym_let,
- anon_sym_DOT,
- anon_sym_class,
- anon_sym_async,
- anon_sym_new,
- sym_identifier,
- anon_sym_static,
- anon_sym_readonly,
- anon_sym_get,
- anon_sym_set,
- anon_sym_declare,
- anon_sym_public,
- anon_sym_private,
- anon_sym_protected,
- anon_sym_override,
- anon_sym_module,
- anon_sym_any,
- anon_sym_number,
- anon_sym_boolean,
- anon_sym_string,
- anon_sym_symbol,
- anon_sym_object,
- anon_sym_abstract,
- anon_sym_accessor,
- [105181] = 4,
- ACTIONS(5979), 1,
- sym__automatic_semicolon,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(1871), 11,
- anon_sym_STAR,
- anon_sym_RBRACE,
- anon_sym_SEMI,
- anon_sym_LBRACK,
- anon_sym_DQUOTE,
- anon_sym_SQUOTE,
- anon_sym_PLUS,
- anon_sym_DASH,
- sym_number,
- sym_private_property_identifier,
- anon_sym_AT,
- ACTIONS(1873), 25,
- anon_sym_export,
- anon_sym_type,
- anon_sym_namespace,
- anon_sym_let,
- anon_sym_async,
- anon_sym_new,
- sym_identifier,
- anon_sym_static,
- anon_sym_readonly,
- anon_sym_get,
- anon_sym_set,
- anon_sym_declare,
- anon_sym_public,
- anon_sym_private,
- anon_sym_protected,
- anon_sym_override,
- anon_sym_module,
- anon_sym_any,
- anon_sym_number,
- anon_sym_boolean,
- anon_sym_string,
- anon_sym_symbol,
- anon_sym_object,
- anon_sym_abstract,
- anon_sym_accessor,
- [105229] = 3,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(5923), 12,
- sym__automatic_semicolon,
- anon_sym_STAR,
- anon_sym_RBRACE,
- anon_sym_SEMI,
- anon_sym_LBRACK,
- anon_sym_DQUOTE,
- anon_sym_SQUOTE,
- anon_sym_PLUS,
- anon_sym_DASH,
- sym_number,
- sym_private_property_identifier,
- anon_sym_AT,
- ACTIONS(5921), 25,
- anon_sym_export,
- anon_sym_type,
- anon_sym_namespace,
- anon_sym_let,
- anon_sym_async,
- anon_sym_new,
- sym_identifier,
- anon_sym_static,
- anon_sym_readonly,
- anon_sym_get,
- anon_sym_set,
- anon_sym_declare,
- anon_sym_public,
- anon_sym_private,
- anon_sym_protected,
- anon_sym_override,
- anon_sym_module,
- anon_sym_any,
- anon_sym_number,
- anon_sym_boolean,
- anon_sym_string,
- anon_sym_symbol,
- anon_sym_object,
- anon_sym_abstract,
- anon_sym_accessor,
- [105275] = 9,
- ACTIONS(2275), 1,
- anon_sym_DQUOTE,
- ACTIONS(2277), 1,
- anon_sym_SQUOTE,
- ACTIONS(4634), 1,
- anon_sym_LBRACK,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(2285), 2,
- sym_number,
- sym_private_property_identifier,
- ACTIONS(5869), 2,
- anon_sym_COMMA,
- anon_sym_RBRACE,
- STATE(3788), 3,
- sym_string,
- sym__property_name,
- sym_computed_property_name,
- ACTIONS(3743), 4,
- anon_sym_LPAREN,
- anon_sym_COLON,
- anon_sym_LT,
- anon_sym_QMARK,
- ACTIONS(2307), 23,
- anon_sym_export,
- anon_sym_type,
- anon_sym_namespace,
- anon_sym_let,
- anon_sym_async,
- anon_sym_new,
- sym_identifier,
- anon_sym_static,
- anon_sym_readonly,
- anon_sym_get,
- anon_sym_set,
- anon_sym_declare,
- anon_sym_public,
- anon_sym_private,
- anon_sym_protected,
- anon_sym_override,
- anon_sym_module,
- anon_sym_any,
- anon_sym_number,
- anon_sym_boolean,
- anon_sym_string,
- anon_sym_symbol,
- anon_sym_object,
- [105333] = 3,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(5915), 12,
- sym__automatic_semicolon,
- anon_sym_STAR,
- anon_sym_RBRACE,
- anon_sym_SEMI,
- anon_sym_LBRACK,
- anon_sym_DQUOTE,
- anon_sym_SQUOTE,
- anon_sym_PLUS,
- anon_sym_DASH,
- sym_number,
- sym_private_property_identifier,
- anon_sym_AT,
- ACTIONS(5913), 25,
- anon_sym_export,
- anon_sym_type,
- anon_sym_namespace,
- anon_sym_let,
- anon_sym_async,
- anon_sym_new,
- sym_identifier,
- anon_sym_static,
- anon_sym_readonly,
- anon_sym_get,
- anon_sym_set,
- anon_sym_declare,
- anon_sym_public,
- anon_sym_private,
- anon_sym_protected,
- anon_sym_override,
- anon_sym_module,
- anon_sym_any,
- anon_sym_number,
- anon_sym_boolean,
- anon_sym_string,
- anon_sym_symbol,
- anon_sym_object,
- anon_sym_abstract,
- anon_sym_accessor,
- [105379] = 3,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(5915), 12,
- sym__automatic_semicolon,
- anon_sym_STAR,
- anon_sym_RBRACE,
- anon_sym_SEMI,
- anon_sym_LBRACK,
- anon_sym_DQUOTE,
- anon_sym_SQUOTE,
- anon_sym_PLUS,
- anon_sym_DASH,
- sym_number,
- sym_private_property_identifier,
- anon_sym_AT,
- ACTIONS(5913), 25,
- anon_sym_export,
- anon_sym_type,
- anon_sym_namespace,
- anon_sym_let,
- anon_sym_async,
- anon_sym_new,
- sym_identifier,
- anon_sym_static,
- anon_sym_readonly,
- anon_sym_get,
- anon_sym_set,
- anon_sym_declare,
- anon_sym_public,
- anon_sym_private,
- anon_sym_protected,
- anon_sym_override,
- anon_sym_module,
- anon_sym_any,
- anon_sym_number,
- anon_sym_boolean,
- anon_sym_string,
- anon_sym_symbol,
- anon_sym_object,
- anon_sym_abstract,
- anon_sym_accessor,
- [105425] = 3,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(5983), 12,
- sym__automatic_semicolon,
- anon_sym_STAR,
- anon_sym_RBRACE,
- anon_sym_SEMI,
- anon_sym_LBRACK,
- anon_sym_DQUOTE,
- anon_sym_SQUOTE,
- anon_sym_PLUS,
- anon_sym_DASH,
- sym_number,
- sym_private_property_identifier,
- anon_sym_AT,
- ACTIONS(5981), 25,
- anon_sym_export,
- anon_sym_type,
- anon_sym_namespace,
- anon_sym_let,
- anon_sym_async,
- anon_sym_new,
- sym_identifier,
- anon_sym_static,
- anon_sym_readonly,
- anon_sym_get,
- anon_sym_set,
- anon_sym_declare,
- anon_sym_public,
- anon_sym_private,
- anon_sym_protected,
- anon_sym_override,
- anon_sym_module,
- anon_sym_any,
- anon_sym_number,
- anon_sym_boolean,
- anon_sym_string,
- anon_sym_symbol,
- anon_sym_object,
- anon_sym_abstract,
- anon_sym_accessor,
- [105471] = 3,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(5923), 12,
- sym__automatic_semicolon,
- anon_sym_STAR,
- anon_sym_RBRACE,
- anon_sym_SEMI,
- anon_sym_LBRACK,
- anon_sym_DQUOTE,
- anon_sym_SQUOTE,
- anon_sym_PLUS,
- anon_sym_DASH,
- sym_number,
- sym_private_property_identifier,
- anon_sym_AT,
- ACTIONS(5921), 25,
- anon_sym_export,
- anon_sym_type,
- anon_sym_namespace,
- anon_sym_let,
- anon_sym_async,
- anon_sym_new,
- sym_identifier,
- anon_sym_static,
- anon_sym_readonly,
- anon_sym_get,
- anon_sym_set,
- anon_sym_declare,
- anon_sym_public,
- anon_sym_private,
- anon_sym_protected,
- anon_sym_override,
- anon_sym_module,
- anon_sym_any,
- anon_sym_number,
- anon_sym_boolean,
- anon_sym_string,
- anon_sym_symbol,
- anon_sym_object,
- anon_sym_abstract,
- anon_sym_accessor,
- [105517] = 4,
- ACTIONS(5985), 1,
- sym__automatic_semicolon,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(1720), 11,
- anon_sym_STAR,
- anon_sym_RBRACE,
- anon_sym_SEMI,
- anon_sym_LBRACK,
- anon_sym_DQUOTE,
- anon_sym_SQUOTE,
- anon_sym_PLUS,
- anon_sym_DASH,
- sym_number,
- sym_private_property_identifier,
- anon_sym_AT,
- ACTIONS(1722), 25,
- anon_sym_export,
- anon_sym_type,
- anon_sym_namespace,
- anon_sym_let,
- anon_sym_async,
- anon_sym_new,
- sym_identifier,
- anon_sym_static,
- anon_sym_readonly,
- anon_sym_get,
- anon_sym_set,
- anon_sym_declare,
- anon_sym_public,
- anon_sym_private,
- anon_sym_protected,
- anon_sym_override,
- anon_sym_module,
- anon_sym_any,
- anon_sym_number,
- anon_sym_boolean,
- anon_sym_string,
- anon_sym_symbol,
- anon_sym_object,
- anon_sym_abstract,
- anon_sym_accessor,
- [105565] = 4,
- ACTIONS(3699), 1,
- anon_sym_EQ,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(3400), 13,
- anon_sym_STAR,
- anon_sym_BANG,
- anon_sym_in,
- anon_sym_GT,
- anon_sym_GT_GT,
- anon_sym_AMP,
- anon_sym_PIPE,
- anon_sym_PLUS,
- anon_sym_DASH,
- anon_sym_SLASH,
- anon_sym_LT,
- anon_sym_EQ_EQ,
- anon_sym_BANG_EQ,
- ACTIONS(3404), 23,
- sym__ternary_qmark,
- anon_sym_as,
- anon_sym_LPAREN,
- anon_sym_LBRACK,
- anon_sym_DOT,
- anon_sym_QMARK_DOT,
- anon_sym_AMP_AMP,
- anon_sym_PIPE_PIPE,
- anon_sym_GT_GT_GT,
- anon_sym_LT_LT,
- anon_sym_CARET,
- anon_sym_PERCENT,
- anon_sym_STAR_STAR,
- anon_sym_LT_EQ,
- anon_sym_EQ_EQ_EQ,
- anon_sym_BANG_EQ_EQ,
- anon_sym_GT_EQ,
- anon_sym_QMARK_QMARK,
- anon_sym_instanceof,
- anon_sym_PLUS_PLUS,
- anon_sym_DASH_DASH,
- anon_sym_BQUOTE,
- anon_sym_satisfies,
- [105613] = 3,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(5944), 12,
- sym__automatic_semicolon,
- anon_sym_STAR,
- anon_sym_RBRACE,
- anon_sym_SEMI,
- anon_sym_LBRACK,
- anon_sym_DQUOTE,
- anon_sym_SQUOTE,
- anon_sym_PLUS,
- anon_sym_DASH,
- sym_number,
- sym_private_property_identifier,
- anon_sym_AT,
- ACTIONS(5942), 25,
- anon_sym_export,
- anon_sym_type,
- anon_sym_namespace,
- anon_sym_let,
- anon_sym_async,
- anon_sym_new,
- sym_identifier,
- anon_sym_static,
- anon_sym_readonly,
- anon_sym_get,
- anon_sym_set,
- anon_sym_declare,
- anon_sym_public,
- anon_sym_private,
- anon_sym_protected,
- anon_sym_override,
- anon_sym_module,
- anon_sym_any,
- anon_sym_number,
- anon_sym_boolean,
- anon_sym_string,
- anon_sym_symbol,
- anon_sym_object,
- anon_sym_abstract,
- anon_sym_accessor,
- [105659] = 8,
- ACTIONS(5987), 1,
- anon_sym_LPAREN,
- ACTIONS(5989), 1,
- anon_sym_DOT,
- ACTIONS(5991), 1,
- anon_sym_LT,
- STATE(2714), 1,
- sym_arguments,
- STATE(5408), 1,
- sym_type_arguments,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(3490), 7,
- anon_sym_STAR,
- anon_sym_LBRACK,
- anon_sym_DQUOTE,
- anon_sym_SQUOTE,
- sym_number,
- sym_private_property_identifier,
- anon_sym_AT,
- ACTIONS(3488), 25,
- anon_sym_export,
- anon_sym_type,
- anon_sym_namespace,
- anon_sym_let,
- anon_sym_async,
- anon_sym_new,
- sym_identifier,
- anon_sym_static,
- anon_sym_readonly,
- anon_sym_get,
- anon_sym_set,
- anon_sym_declare,
- anon_sym_public,
- anon_sym_private,
- anon_sym_protected,
- anon_sym_override,
- anon_sym_module,
- anon_sym_any,
- anon_sym_number,
- anon_sym_boolean,
- anon_sym_string,
- anon_sym_symbol,
- anon_sym_object,
- anon_sym_abstract,
- anon_sym_accessor,
- [105715] = 3,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(5948), 12,
- sym__automatic_semicolon,
- anon_sym_STAR,
- anon_sym_RBRACE,
- anon_sym_SEMI,
- anon_sym_LBRACK,
- anon_sym_DQUOTE,
- anon_sym_SQUOTE,
- anon_sym_PLUS,
- anon_sym_DASH,
- sym_number,
- sym_private_property_identifier,
- anon_sym_AT,
- ACTIONS(5946), 25,
- anon_sym_export,
- anon_sym_type,
- anon_sym_namespace,
- anon_sym_let,
- anon_sym_async,
- anon_sym_new,
- sym_identifier,
- anon_sym_static,
- anon_sym_readonly,
- anon_sym_get,
- anon_sym_set,
- anon_sym_declare,
- anon_sym_public,
- anon_sym_private,
- anon_sym_protected,
- anon_sym_override,
- anon_sym_module,
- anon_sym_any,
- anon_sym_number,
- anon_sym_boolean,
- anon_sym_string,
- anon_sym_symbol,
- anon_sym_object,
- anon_sym_abstract,
- anon_sym_accessor,
- [105761] = 3,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(5936), 12,
- sym__automatic_semicolon,
- anon_sym_STAR,
- anon_sym_RBRACE,
- anon_sym_SEMI,
- anon_sym_LBRACK,
- anon_sym_DQUOTE,
- anon_sym_SQUOTE,
- anon_sym_PLUS,
- anon_sym_DASH,
- sym_number,
- sym_private_property_identifier,
- anon_sym_AT,
- ACTIONS(5934), 25,
- anon_sym_export,
- anon_sym_type,
- anon_sym_namespace,
- anon_sym_let,
- anon_sym_async,
- anon_sym_new,
- sym_identifier,
- anon_sym_static,
- anon_sym_readonly,
- anon_sym_get,
- anon_sym_set,
- anon_sym_declare,
- anon_sym_public,
- anon_sym_private,
- anon_sym_protected,
- anon_sym_override,
- anon_sym_module,
- anon_sym_any,
- anon_sym_number,
- anon_sym_boolean,
- anon_sym_string,
- anon_sym_symbol,
- anon_sym_object,
- anon_sym_abstract,
- anon_sym_accessor,
- [105807] = 4,
- ACTIONS(3701), 1,
- anon_sym_EQ,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(3400), 13,
- anon_sym_STAR,
- anon_sym_BANG,
- anon_sym_in,
- anon_sym_GT,
- anon_sym_GT_GT,
- anon_sym_AMP,
- anon_sym_PIPE,
- anon_sym_PLUS,
- anon_sym_DASH,
- anon_sym_SLASH,
- anon_sym_LT,
- anon_sym_EQ_EQ,
- anon_sym_BANG_EQ,
- ACTIONS(3404), 23,
- sym__ternary_qmark,
- anon_sym_as,
- anon_sym_LPAREN,
- anon_sym_LBRACK,
- anon_sym_DOT,
- anon_sym_QMARK_DOT,
- anon_sym_AMP_AMP,
- anon_sym_PIPE_PIPE,
- anon_sym_GT_GT_GT,
- anon_sym_LT_LT,
- anon_sym_CARET,
- anon_sym_PERCENT,
- anon_sym_STAR_STAR,
- anon_sym_LT_EQ,
- anon_sym_EQ_EQ_EQ,
- anon_sym_BANG_EQ_EQ,
- anon_sym_GT_EQ,
- anon_sym_QMARK_QMARK,
- anon_sym_instanceof,
- anon_sym_PLUS_PLUS,
- anon_sym_DASH_DASH,
- anon_sym_BQUOTE,
- anon_sym_satisfies,
- [105855] = 3,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(5915), 12,
- sym__automatic_semicolon,
- anon_sym_STAR,
- anon_sym_RBRACE,
- anon_sym_SEMI,
- anon_sym_LBRACK,
- anon_sym_DQUOTE,
- anon_sym_SQUOTE,
- anon_sym_PLUS,
- anon_sym_DASH,
- sym_number,
- sym_private_property_identifier,
- anon_sym_AT,
- ACTIONS(5913), 25,
- anon_sym_export,
- anon_sym_type,
- anon_sym_namespace,
- anon_sym_let,
- anon_sym_async,
- anon_sym_new,
- sym_identifier,
- anon_sym_static,
- anon_sym_readonly,
- anon_sym_get,
- anon_sym_set,
- anon_sym_declare,
- anon_sym_public,
- anon_sym_private,
- anon_sym_protected,
- anon_sym_override,
- anon_sym_module,
- anon_sym_any,
- anon_sym_number,
- anon_sym_boolean,
- anon_sym_string,
- anon_sym_symbol,
- anon_sym_object,
- anon_sym_abstract,
- anon_sym_accessor,
- [105901] = 3,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(5936), 12,
- sym__automatic_semicolon,
- anon_sym_STAR,
- anon_sym_RBRACE,
- anon_sym_SEMI,
- anon_sym_LBRACK,
- anon_sym_DQUOTE,
- anon_sym_SQUOTE,
- anon_sym_PLUS,
- anon_sym_DASH,
- sym_number,
- sym_private_property_identifier,
- anon_sym_AT,
- ACTIONS(5934), 25,
- anon_sym_export,
- anon_sym_type,
- anon_sym_namespace,
- anon_sym_let,
- anon_sym_async,
- anon_sym_new,
- sym_identifier,
- anon_sym_static,
- anon_sym_readonly,
- anon_sym_get,
- anon_sym_set,
- anon_sym_declare,
- anon_sym_public,
- anon_sym_private,
- anon_sym_protected,
- anon_sym_override,
- anon_sym_module,
- anon_sym_any,
- anon_sym_number,
- anon_sym_boolean,
- anon_sym_string,
- anon_sym_symbol,
- anon_sym_object,
- anon_sym_abstract,
- anon_sym_accessor,
- [105947] = 4,
- ACTIONS(3677), 1,
- anon_sym_EQ,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(3400), 13,
- anon_sym_STAR,
- anon_sym_BANG,
- anon_sym_in,
- anon_sym_GT,
- anon_sym_GT_GT,
- anon_sym_AMP,
- anon_sym_PIPE,
- anon_sym_PLUS,
- anon_sym_DASH,
- anon_sym_SLASH,
- anon_sym_LT,
- anon_sym_EQ_EQ,
- anon_sym_BANG_EQ,
- ACTIONS(3404), 23,
- sym__ternary_qmark,
- anon_sym_as,
- anon_sym_LPAREN,
- anon_sym_LBRACK,
- anon_sym_DOT,
- anon_sym_QMARK_DOT,
- anon_sym_AMP_AMP,
- anon_sym_PIPE_PIPE,
- anon_sym_GT_GT_GT,
- anon_sym_LT_LT,
- anon_sym_CARET,
- anon_sym_PERCENT,
- anon_sym_STAR_STAR,
- anon_sym_LT_EQ,
- anon_sym_EQ_EQ_EQ,
- anon_sym_BANG_EQ_EQ,
- anon_sym_GT_EQ,
- anon_sym_QMARK_QMARK,
- anon_sym_instanceof,
- anon_sym_PLUS_PLUS,
- anon_sym_DASH_DASH,
- anon_sym_BQUOTE,
- anon_sym_satisfies,
- [105995] = 4,
- ACTIONS(3685), 1,
- anon_sym_EQ,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(3400), 13,
- anon_sym_STAR,
- anon_sym_BANG,
- anon_sym_in,
- anon_sym_GT,
- anon_sym_GT_GT,
- anon_sym_AMP,
- anon_sym_PIPE,
- anon_sym_PLUS,
- anon_sym_DASH,
- anon_sym_SLASH,
- anon_sym_LT,
- anon_sym_EQ_EQ,
- anon_sym_BANG_EQ,
- ACTIONS(3404), 23,
- sym__ternary_qmark,
- anon_sym_as,
- anon_sym_LPAREN,
- anon_sym_LBRACK,
- anon_sym_DOT,
- anon_sym_QMARK_DOT,
- anon_sym_AMP_AMP,
- anon_sym_PIPE_PIPE,
- anon_sym_GT_GT_GT,
- anon_sym_LT_LT,
- anon_sym_CARET,
- anon_sym_PERCENT,
- anon_sym_STAR_STAR,
- anon_sym_LT_EQ,
- anon_sym_EQ_EQ_EQ,
- anon_sym_BANG_EQ_EQ,
- anon_sym_GT_EQ,
- anon_sym_QMARK_QMARK,
- anon_sym_instanceof,
- anon_sym_PLUS_PLUS,
- anon_sym_DASH_DASH,
- anon_sym_BQUOTE,
- anon_sym_satisfies,
- [106043] = 3,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(5944), 12,
- sym__automatic_semicolon,
- anon_sym_STAR,
- anon_sym_RBRACE,
- anon_sym_SEMI,
- anon_sym_LBRACK,
- anon_sym_DQUOTE,
- anon_sym_SQUOTE,
- anon_sym_PLUS,
- anon_sym_DASH,
- sym_number,
- sym_private_property_identifier,
- anon_sym_AT,
- ACTIONS(5942), 25,
- anon_sym_export,
- anon_sym_type,
- anon_sym_namespace,
- anon_sym_let,
- anon_sym_async,
- anon_sym_new,
- sym_identifier,
- anon_sym_static,
- anon_sym_readonly,
- anon_sym_get,
- anon_sym_set,
- anon_sym_declare,
- anon_sym_public,
- anon_sym_private,
- anon_sym_protected,
- anon_sym_override,
- anon_sym_module,
- anon_sym_any,
- anon_sym_number,
- anon_sym_boolean,
- anon_sym_string,
- anon_sym_symbol,
- anon_sym_object,
- anon_sym_abstract,
- anon_sym_accessor,
- [106089] = 3,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(5944), 12,
- sym__automatic_semicolon,
- anon_sym_STAR,
- anon_sym_RBRACE,
- anon_sym_SEMI,
- anon_sym_LBRACK,
- anon_sym_DQUOTE,
- anon_sym_SQUOTE,
- anon_sym_PLUS,
- anon_sym_DASH,
- sym_number,
- sym_private_property_identifier,
- anon_sym_AT,
- ACTIONS(5942), 25,
- anon_sym_export,
- anon_sym_type,
- anon_sym_namespace,
- anon_sym_let,
- anon_sym_async,
- anon_sym_new,
- sym_identifier,
- anon_sym_static,
- anon_sym_readonly,
- anon_sym_get,
- anon_sym_set,
- anon_sym_declare,
- anon_sym_public,
- anon_sym_private,
- anon_sym_protected,
- anon_sym_override,
- anon_sym_module,
- anon_sym_any,
- anon_sym_number,
- anon_sym_boolean,
- anon_sym_string,
- anon_sym_symbol,
- anon_sym_object,
- anon_sym_abstract,
- anon_sym_accessor,
- [106135] = 3,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(5923), 12,
- sym__automatic_semicolon,
- anon_sym_STAR,
- anon_sym_RBRACE,
- anon_sym_SEMI,
- anon_sym_LBRACK,
- anon_sym_DQUOTE,
- anon_sym_SQUOTE,
- anon_sym_PLUS,
- anon_sym_DASH,
- sym_number,
- sym_private_property_identifier,
- anon_sym_AT,
- ACTIONS(5921), 25,
- anon_sym_export,
- anon_sym_type,
- anon_sym_namespace,
- anon_sym_let,
- anon_sym_async,
- anon_sym_new,
- sym_identifier,
- anon_sym_static,
- anon_sym_readonly,
- anon_sym_get,
- anon_sym_set,
- anon_sym_declare,
- anon_sym_public,
- anon_sym_private,
- anon_sym_protected,
- anon_sym_override,
- anon_sym_module,
- anon_sym_any,
- anon_sym_number,
- anon_sym_boolean,
- anon_sym_string,
- anon_sym_symbol,
- anon_sym_object,
- anon_sym_abstract,
- anon_sym_accessor,
- [106181] = 3,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(1751), 12,
- sym__automatic_semicolon,
- anon_sym_STAR,
- anon_sym_RBRACE,
- anon_sym_SEMI,
- anon_sym_LBRACK,
- anon_sym_DQUOTE,
- anon_sym_SQUOTE,
- anon_sym_PLUS,
- anon_sym_DASH,
- sym_number,
- sym_private_property_identifier,
- anon_sym_AT,
- ACTIONS(1753), 25,
- anon_sym_export,
- anon_sym_type,
- anon_sym_namespace,
- anon_sym_let,
- anon_sym_async,
- anon_sym_new,
- sym_identifier,
- anon_sym_static,
- anon_sym_readonly,
- anon_sym_get,
- anon_sym_set,
- anon_sym_declare,
- anon_sym_public,
- anon_sym_private,
- anon_sym_protected,
- anon_sym_override,
- anon_sym_module,
- anon_sym_any,
- anon_sym_number,
- anon_sym_boolean,
- anon_sym_string,
- anon_sym_symbol,
- anon_sym_object,
- anon_sym_abstract,
- anon_sym_accessor,
- [106227] = 3,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(5948), 12,
- sym__automatic_semicolon,
- anon_sym_STAR,
- anon_sym_RBRACE,
- anon_sym_SEMI,
- anon_sym_LBRACK,
- anon_sym_DQUOTE,
- anon_sym_SQUOTE,
- anon_sym_PLUS,
- anon_sym_DASH,
- sym_number,
- sym_private_property_identifier,
- anon_sym_AT,
- ACTIONS(5946), 25,
- anon_sym_export,
- anon_sym_type,
- anon_sym_namespace,
- anon_sym_let,
- anon_sym_async,
- anon_sym_new,
- sym_identifier,
- anon_sym_static,
- anon_sym_readonly,
- anon_sym_get,
- anon_sym_set,
- anon_sym_declare,
- anon_sym_public,
- anon_sym_private,
- anon_sym_protected,
- anon_sym_override,
- anon_sym_module,
- anon_sym_any,
- anon_sym_number,
- anon_sym_boolean,
- anon_sym_string,
- anon_sym_symbol,
- anon_sym_object,
- anon_sym_abstract,
- anon_sym_accessor,
- [106273] = 3,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(5915), 12,
- sym__automatic_semicolon,
- anon_sym_STAR,
- anon_sym_RBRACE,
- anon_sym_SEMI,
- anon_sym_LBRACK,
- anon_sym_DQUOTE,
- anon_sym_SQUOTE,
- anon_sym_PLUS,
- anon_sym_DASH,
- sym_number,
- sym_private_property_identifier,
- anon_sym_AT,
- ACTIONS(5913), 25,
- anon_sym_export,
- anon_sym_type,
- anon_sym_namespace,
- anon_sym_let,
- anon_sym_async,
- anon_sym_new,
- sym_identifier,
- anon_sym_static,
- anon_sym_readonly,
- anon_sym_get,
- anon_sym_set,
- anon_sym_declare,
- anon_sym_public,
- anon_sym_private,
- anon_sym_protected,
- anon_sym_override,
- anon_sym_module,
- anon_sym_any,
- anon_sym_number,
- anon_sym_boolean,
- anon_sym_string,
- anon_sym_symbol,
- anon_sym_object,
- anon_sym_abstract,
- anon_sym_accessor,
- [106319] = 3,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(5961), 12,
- sym__automatic_semicolon,
- anon_sym_STAR,
- anon_sym_RBRACE,
- anon_sym_SEMI,
- anon_sym_LBRACK,
- anon_sym_DQUOTE,
- anon_sym_SQUOTE,
- anon_sym_PLUS,
- anon_sym_DASH,
- sym_number,
- sym_private_property_identifier,
- anon_sym_AT,
- ACTIONS(5959), 25,
- anon_sym_export,
- anon_sym_type,
- anon_sym_namespace,
- anon_sym_let,
- anon_sym_async,
- anon_sym_new,
- sym_identifier,
- anon_sym_static,
- anon_sym_readonly,
- anon_sym_get,
- anon_sym_set,
- anon_sym_declare,
- anon_sym_public,
- anon_sym_private,
- anon_sym_protected,
- anon_sym_override,
- anon_sym_module,
- anon_sym_any,
- anon_sym_number,
- anon_sym_boolean,
- anon_sym_string,
- anon_sym_symbol,
- anon_sym_object,
- anon_sym_abstract,
- anon_sym_accessor,
- [106365] = 3,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(5923), 12,
- sym__automatic_semicolon,
- anon_sym_STAR,
- anon_sym_RBRACE,
- anon_sym_SEMI,
- anon_sym_LBRACK,
- anon_sym_DQUOTE,
- anon_sym_SQUOTE,
- anon_sym_PLUS,
- anon_sym_DASH,
- sym_number,
- sym_private_property_identifier,
- anon_sym_AT,
- ACTIONS(5921), 25,
- anon_sym_export,
- anon_sym_type,
- anon_sym_namespace,
- anon_sym_let,
- anon_sym_async,
- anon_sym_new,
- sym_identifier,
- anon_sym_static,
- anon_sym_readonly,
- anon_sym_get,
- anon_sym_set,
- anon_sym_declare,
- anon_sym_public,
- anon_sym_private,
- anon_sym_protected,
- anon_sym_override,
- anon_sym_module,
- anon_sym_any,
- anon_sym_number,
- anon_sym_boolean,
- anon_sym_string,
- anon_sym_symbol,
- anon_sym_object,
- anon_sym_abstract,
- anon_sym_accessor,
- [106411] = 4,
- ACTIONS(3691), 1,
- anon_sym_EQ,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(3400), 13,
- anon_sym_STAR,
- anon_sym_BANG,
- anon_sym_in,
- anon_sym_GT,
- anon_sym_GT_GT,
- anon_sym_AMP,
- anon_sym_PIPE,
- anon_sym_PLUS,
- anon_sym_DASH,
- anon_sym_SLASH,
- anon_sym_LT,
- anon_sym_EQ_EQ,
- anon_sym_BANG_EQ,
- ACTIONS(3404), 23,
- sym__ternary_qmark,
- anon_sym_as,
- anon_sym_LPAREN,
- anon_sym_LBRACK,
- anon_sym_DOT,
- anon_sym_QMARK_DOT,
- anon_sym_AMP_AMP,
- anon_sym_PIPE_PIPE,
- anon_sym_GT_GT_GT,
- anon_sym_LT_LT,
- anon_sym_CARET,
- anon_sym_PERCENT,
- anon_sym_STAR_STAR,
- anon_sym_LT_EQ,
- anon_sym_EQ_EQ_EQ,
- anon_sym_BANG_EQ_EQ,
- anon_sym_GT_EQ,
- anon_sym_QMARK_QMARK,
- anon_sym_instanceof,
- anon_sym_PLUS_PLUS,
- anon_sym_DASH_DASH,
- anon_sym_BQUOTE,
- anon_sym_satisfies,
- [106459] = 3,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(5948), 12,
- sym__automatic_semicolon,
- anon_sym_STAR,
- anon_sym_RBRACE,
- anon_sym_SEMI,
- anon_sym_LBRACK,
- anon_sym_DQUOTE,
- anon_sym_SQUOTE,
- anon_sym_PLUS,
- anon_sym_DASH,
- sym_number,
- sym_private_property_identifier,
- anon_sym_AT,
- ACTIONS(5946), 25,
- anon_sym_export,
- anon_sym_type,
- anon_sym_namespace,
- anon_sym_let,
- anon_sym_async,
- anon_sym_new,
- sym_identifier,
- anon_sym_static,
- anon_sym_readonly,
- anon_sym_get,
- anon_sym_set,
- anon_sym_declare,
- anon_sym_public,
- anon_sym_private,
- anon_sym_protected,
- anon_sym_override,
- anon_sym_module,
- anon_sym_any,
- anon_sym_number,
- anon_sym_boolean,
- anon_sym_string,
- anon_sym_symbol,
- anon_sym_object,
- anon_sym_abstract,
- anon_sym_accessor,
- [106505] = 6,
- ACTIONS(4243), 1,
- anon_sym_EQ,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(5749), 2,
- anon_sym_COMMA,
- anon_sym_RBRACE,
- ACTIONS(3743), 4,
- anon_sym_LPAREN,
- anon_sym_COLON,
- anon_sym_LT,
- anon_sym_QMARK,
- ACTIONS(2003), 6,
- anon_sym_STAR,
- anon_sym_LBRACK,
- anon_sym_DQUOTE,
- anon_sym_SQUOTE,
- sym_number,
- sym_private_property_identifier,
- ACTIONS(2001), 23,
- anon_sym_export,
- anon_sym_type,
- anon_sym_namespace,
- anon_sym_let,
- anon_sym_async,
- anon_sym_new,
- sym_identifier,
- anon_sym_static,
- anon_sym_readonly,
- anon_sym_get,
- anon_sym_set,
- anon_sym_declare,
- anon_sym_public,
- anon_sym_private,
- anon_sym_protected,
- anon_sym_override,
- anon_sym_module,
- anon_sym_any,
- anon_sym_number,
- anon_sym_boolean,
- anon_sym_string,
- anon_sym_symbol,
- anon_sym_object,
- [106556] = 14,
- ACTIONS(2275), 1,
- anon_sym_DQUOTE,
- ACTIONS(2277), 1,
- anon_sym_SQUOTE,
- ACTIONS(2315), 1,
- anon_sym_override,
- ACTIONS(4634), 1,
- anon_sym_LBRACK,
- ACTIONS(5993), 1,
- anon_sym_STAR,
- ACTIONS(5995), 1,
- anon_sym_async,
- ACTIONS(5999), 1,
- anon_sym_readonly,
- STATE(2696), 1,
- sym_override_modifier,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(5997), 2,
- sym_number,
- sym_private_property_identifier,
- ACTIONS(6001), 2,
- anon_sym_get,
- anon_sym_set,
- ACTIONS(3743), 3,
- anon_sym_LPAREN,
- anon_sym_LT,
- anon_sym_QMARK,
- STATE(3850), 3,
- sym_string,
- sym__property_name,
- sym_computed_property_name,
- ACTIONS(2307), 18,
- anon_sym_export,
- anon_sym_type,
- anon_sym_namespace,
- anon_sym_let,
- anon_sym_new,
- sym_identifier,
- anon_sym_static,
- anon_sym_declare,
- anon_sym_public,
- anon_sym_private,
- anon_sym_protected,
- anon_sym_module,
- anon_sym_any,
- anon_sym_number,
- anon_sym_boolean,
- anon_sym_string,
- anon_sym_symbol,
- anon_sym_object,
- [106623] = 3,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(1751), 11,
- anon_sym_STAR,
- anon_sym_RBRACE,
- anon_sym_SEMI,
- anon_sym_LBRACK,
- anon_sym_DQUOTE,
- anon_sym_SQUOTE,
- anon_sym_PLUS,
- anon_sym_DASH,
- sym_number,
- sym_private_property_identifier,
- anon_sym_AT,
- ACTIONS(1753), 25,
- anon_sym_export,
- anon_sym_type,
- anon_sym_namespace,
- anon_sym_let,
- anon_sym_async,
- anon_sym_new,
- sym_identifier,
- anon_sym_static,
- anon_sym_readonly,
- anon_sym_get,
- anon_sym_set,
- anon_sym_declare,
- anon_sym_public,
- anon_sym_private,
- anon_sym_protected,
- anon_sym_override,
- anon_sym_module,
- anon_sym_any,
- anon_sym_number,
- anon_sym_boolean,
- anon_sym_string,
- anon_sym_symbol,
- anon_sym_object,
- anon_sym_abstract,
- anon_sym_accessor,
- [106668] = 7,
- ACTIONS(5644), 1,
- anon_sym_COMMA,
- ACTIONS(5700), 1,
- anon_sym_RBRACE,
- STATE(5124), 1,
- aux_sym_object_repeat1,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(3743), 4,
- anon_sym_LPAREN,
- anon_sym_COLON,
- anon_sym_LT,
- anon_sym_QMARK,
- ACTIONS(1993), 6,
- anon_sym_STAR,
- anon_sym_LBRACK,
- anon_sym_DQUOTE,
- anon_sym_SQUOTE,
- sym_number,
- sym_private_property_identifier,
- ACTIONS(1991), 23,
- anon_sym_export,
- anon_sym_type,
- anon_sym_namespace,
- anon_sym_let,
- anon_sym_async,
- anon_sym_new,
- sym_identifier,
- anon_sym_static,
- anon_sym_readonly,
- anon_sym_get,
- anon_sym_set,
- anon_sym_declare,
- anon_sym_public,
- anon_sym_private,
- anon_sym_protected,
- anon_sym_override,
- anon_sym_module,
- anon_sym_any,
- anon_sym_number,
- anon_sym_boolean,
- anon_sym_string,
- anon_sym_symbol,
- anon_sym_object,
- [106721] = 7,
- ACTIONS(5644), 1,
- anon_sym_COMMA,
- ACTIONS(5700), 1,
- anon_sym_RBRACE,
- STATE(5124), 1,
- aux_sym_object_repeat1,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(3743), 4,
- anon_sym_LPAREN,
- anon_sym_COLON,
- anon_sym_LT,
- anon_sym_QMARK,
- ACTIONS(2003), 6,
- anon_sym_STAR,
- anon_sym_LBRACK,
- anon_sym_DQUOTE,
- anon_sym_SQUOTE,
- sym_number,
- sym_private_property_identifier,
- ACTIONS(2001), 23,
- anon_sym_export,
- anon_sym_type,
- anon_sym_namespace,
- anon_sym_let,
- anon_sym_async,
- anon_sym_new,
- sym_identifier,
- anon_sym_static,
- anon_sym_readonly,
- anon_sym_get,
- anon_sym_set,
- anon_sym_declare,
- anon_sym_public,
- anon_sym_private,
- anon_sym_protected,
- anon_sym_override,
- anon_sym_module,
- anon_sym_any,
- anon_sym_number,
- anon_sym_boolean,
- anon_sym_string,
- anon_sym_symbol,
- anon_sym_object,
- [106774] = 3,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(6005), 11,
- anon_sym_STAR,
- anon_sym_RBRACE,
- anon_sym_SEMI,
- anon_sym_LBRACK,
- anon_sym_DQUOTE,
- anon_sym_SQUOTE,
- anon_sym_PLUS,
- anon_sym_DASH,
- sym_number,
- sym_private_property_identifier,
- anon_sym_AT,
- ACTIONS(6003), 25,
- anon_sym_export,
- anon_sym_type,
- anon_sym_namespace,
- anon_sym_let,
- anon_sym_async,
- anon_sym_new,
- sym_identifier,
- anon_sym_static,
- anon_sym_readonly,
- anon_sym_get,
- anon_sym_set,
- anon_sym_declare,
- anon_sym_public,
- anon_sym_private,
- anon_sym_protected,
- anon_sym_override,
- anon_sym_module,
- anon_sym_any,
- anon_sym_number,
- anon_sym_boolean,
- anon_sym_string,
- anon_sym_symbol,
- anon_sym_object,
- anon_sym_abstract,
- anon_sym_accessor,
- [106819] = 3,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(6009), 11,
- anon_sym_STAR,
- anon_sym_RBRACE,
- anon_sym_SEMI,
- anon_sym_LBRACK,
- anon_sym_DQUOTE,
- anon_sym_SQUOTE,
- anon_sym_PLUS,
- anon_sym_DASH,
- sym_number,
- sym_private_property_identifier,
- anon_sym_AT,
- ACTIONS(6007), 25,
- anon_sym_export,
- anon_sym_type,
- anon_sym_namespace,
- anon_sym_let,
- anon_sym_async,
- anon_sym_new,
- sym_identifier,
- anon_sym_static,
- anon_sym_readonly,
- anon_sym_get,
- anon_sym_set,
- anon_sym_declare,
- anon_sym_public,
- anon_sym_private,
- anon_sym_protected,
- anon_sym_override,
- anon_sym_module,
- anon_sym_any,
- anon_sym_number,
- anon_sym_boolean,
- anon_sym_string,
- anon_sym_symbol,
- anon_sym_object,
- anon_sym_abstract,
- anon_sym_accessor,
- [106864] = 3,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(6013), 11,
- anon_sym_STAR,
- anon_sym_RBRACE,
- anon_sym_SEMI,
- anon_sym_LBRACK,
- anon_sym_DQUOTE,
- anon_sym_SQUOTE,
- anon_sym_PLUS,
- anon_sym_DASH,
- sym_number,
- sym_private_property_identifier,
- anon_sym_AT,
- ACTIONS(6011), 25,
- anon_sym_export,
- anon_sym_type,
- anon_sym_namespace,
- anon_sym_let,
- anon_sym_async,
- anon_sym_new,
- sym_identifier,
- anon_sym_static,
- anon_sym_readonly,
- anon_sym_get,
- anon_sym_set,
- anon_sym_declare,
- anon_sym_public,
- anon_sym_private,
- anon_sym_protected,
- anon_sym_override,
- anon_sym_module,
- anon_sym_any,
- anon_sym_number,
- anon_sym_boolean,
- anon_sym_string,
- anon_sym_symbol,
- anon_sym_object,
- anon_sym_abstract,
- anon_sym_accessor,
- [106909] = 3,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(1871), 11,
- anon_sym_STAR,
- anon_sym_RBRACE,
- anon_sym_SEMI,
- anon_sym_LBRACK,
- anon_sym_DQUOTE,
- anon_sym_SQUOTE,
- anon_sym_PLUS,
- anon_sym_DASH,
- sym_number,
- sym_private_property_identifier,
- anon_sym_AT,
- ACTIONS(1873), 25,
- anon_sym_export,
- anon_sym_type,
- anon_sym_namespace,
- anon_sym_let,
- anon_sym_async,
- anon_sym_new,
- sym_identifier,
- anon_sym_static,
- anon_sym_readonly,
- anon_sym_get,
- anon_sym_set,
- anon_sym_declare,
- anon_sym_public,
- anon_sym_private,
- anon_sym_protected,
- anon_sym_override,
- anon_sym_module,
- anon_sym_any,
- anon_sym_number,
- anon_sym_boolean,
- anon_sym_string,
- anon_sym_symbol,
- anon_sym_object,
- anon_sym_abstract,
- anon_sym_accessor,
- [106954] = 3,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(6005), 11,
- anon_sym_STAR,
- anon_sym_RBRACE,
- anon_sym_SEMI,
- anon_sym_LBRACK,
- anon_sym_DQUOTE,
- anon_sym_SQUOTE,
- anon_sym_PLUS,
- anon_sym_DASH,
- sym_number,
- sym_private_property_identifier,
- anon_sym_AT,
- ACTIONS(6003), 25,
- anon_sym_export,
- anon_sym_type,
- anon_sym_namespace,
- anon_sym_let,
- anon_sym_async,
- anon_sym_new,
- sym_identifier,
- anon_sym_static,
- anon_sym_readonly,
- anon_sym_get,
- anon_sym_set,
- anon_sym_declare,
- anon_sym_public,
- anon_sym_private,
- anon_sym_protected,
- anon_sym_override,
- anon_sym_module,
- anon_sym_any,
- anon_sym_number,
- anon_sym_boolean,
- anon_sym_string,
- anon_sym_symbol,
- anon_sym_object,
- anon_sym_abstract,
- anon_sym_accessor,
- [106999] = 6,
- ACTIONS(4243), 1,
- anon_sym_EQ,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(5749), 2,
- anon_sym_COMMA,
- anon_sym_RBRACE,
- ACTIONS(3743), 4,
- anon_sym_LPAREN,
- anon_sym_COLON,
- anon_sym_LT,
- anon_sym_QMARK,
- ACTIONS(1993), 6,
- anon_sym_STAR,
- anon_sym_LBRACK,
- anon_sym_DQUOTE,
- anon_sym_SQUOTE,
- sym_number,
- sym_private_property_identifier,
- ACTIONS(1991), 23,
- anon_sym_export,
- anon_sym_type,
- anon_sym_namespace,
- anon_sym_let,
- anon_sym_async,
- anon_sym_new,
- sym_identifier,
- anon_sym_static,
- anon_sym_readonly,
- anon_sym_get,
- anon_sym_set,
- anon_sym_declare,
- anon_sym_public,
- anon_sym_private,
- anon_sym_protected,
- anon_sym_override,
- anon_sym_module,
- anon_sym_any,
- anon_sym_number,
- anon_sym_boolean,
- anon_sym_string,
- anon_sym_symbol,
- anon_sym_object,
- [107050] = 3,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(6017), 11,
- anon_sym_STAR,
- anon_sym_RBRACE,
- anon_sym_SEMI,
- anon_sym_LBRACK,
- anon_sym_DQUOTE,
- anon_sym_SQUOTE,
- anon_sym_PLUS,
- anon_sym_DASH,
- sym_number,
- sym_private_property_identifier,
- anon_sym_AT,
- ACTIONS(6015), 25,
- anon_sym_export,
- anon_sym_type,
- anon_sym_namespace,
- anon_sym_let,
- anon_sym_async,
- anon_sym_new,
- sym_identifier,
- anon_sym_static,
- anon_sym_readonly,
- anon_sym_get,
- anon_sym_set,
- anon_sym_declare,
- anon_sym_public,
- anon_sym_private,
- anon_sym_protected,
- anon_sym_override,
- anon_sym_module,
- anon_sym_any,
- anon_sym_number,
- anon_sym_boolean,
- anon_sym_string,
- anon_sym_symbol,
- anon_sym_object,
- anon_sym_abstract,
- anon_sym_accessor,
- [107095] = 10,
- ACTIONS(2275), 1,
- anon_sym_DQUOTE,
- ACTIONS(2277), 1,
- anon_sym_SQUOTE,
- ACTIONS(4634), 1,
- anon_sym_LBRACK,
- ACTIONS(5993), 1,
- anon_sym_STAR,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(5997), 2,
- sym_number,
- sym_private_property_identifier,
- ACTIONS(6001), 2,
- anon_sym_get,
- anon_sym_set,
- ACTIONS(3743), 3,
- anon_sym_LPAREN,
- anon_sym_LT,
- anon_sym_QMARK,
- STATE(3850), 3,
- sym_string,
- sym__property_name,
- sym_computed_property_name,
- ACTIONS(2307), 21,
- anon_sym_export,
- anon_sym_type,
- anon_sym_namespace,
- anon_sym_let,
- anon_sym_async,
- anon_sym_new,
- sym_identifier,
- anon_sym_static,
- anon_sym_readonly,
- anon_sym_declare,
- anon_sym_public,
- anon_sym_private,
- anon_sym_protected,
- anon_sym_override,
- anon_sym_module,
- anon_sym_any,
- anon_sym_number,
- anon_sym_boolean,
- anon_sym_string,
- anon_sym_symbol,
- anon_sym_object,
- [107153] = 5,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(5869), 2,
- anon_sym_COMMA,
- anon_sym_RBRACE,
- ACTIONS(3743), 4,
- anon_sym_LPAREN,
- anon_sym_COLON,
- anon_sym_LT,
- anon_sym_QMARK,
- ACTIONS(2003), 6,
- anon_sym_STAR,
- anon_sym_LBRACK,
- anon_sym_DQUOTE,
- anon_sym_SQUOTE,
- sym_number,
- sym_private_property_identifier,
- ACTIONS(2001), 23,
- anon_sym_export,
- anon_sym_type,
- anon_sym_namespace,
- anon_sym_let,
- anon_sym_async,
- anon_sym_new,
- sym_identifier,
- anon_sym_static,
- anon_sym_readonly,
- anon_sym_get,
- anon_sym_set,
- anon_sym_declare,
- anon_sym_public,
- anon_sym_private,
- anon_sym_protected,
- anon_sym_override,
- anon_sym_module,
- anon_sym_any,
- anon_sym_number,
- anon_sym_boolean,
- anon_sym_string,
- anon_sym_symbol,
- anon_sym_object,
- [107201] = 17,
- ACTIONS(1594), 1,
- anon_sym_DQUOTE,
- ACTIONS(1596), 1,
- anon_sym_SQUOTE,
- ACTIONS(3633), 1,
- anon_sym_override,
- ACTIONS(4245), 1,
- anon_sym_LBRACK,
- ACTIONS(4827), 1,
- anon_sym_STAR,
- ACTIONS(4831), 1,
- anon_sym_async,
- ACTIONS(4872), 1,
- anon_sym_accessor,
- ACTIONS(6019), 1,
- anon_sym_static,
- ACTIONS(6021), 1,
- anon_sym_readonly,
- ACTIONS(6023), 1,
- anon_sym_declare,
- ACTIONS(6025), 1,
- anon_sym_abstract,
- STATE(2700), 1,
- sym_override_modifier,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(4833), 2,
- sym_number,
- sym_private_property_identifier,
- ACTIONS(4837), 2,
- anon_sym_get,
- anon_sym_set,
- STATE(2980), 3,
- sym_string,
- sym__property_name,
- sym_computed_property_name,
- ACTIONS(3607), 16,
- anon_sym_export,
- anon_sym_type,
- anon_sym_namespace,
- anon_sym_let,
- anon_sym_new,
- sym_identifier,
- anon_sym_public,
- anon_sym_private,
- anon_sym_protected,
- anon_sym_module,
- anon_sym_any,
- anon_sym_number,
- anon_sym_boolean,
- anon_sym_string,
- anon_sym_symbol,
- anon_sym_object,
- [107273] = 11,
- ACTIONS(2275), 1,
- anon_sym_DQUOTE,
- ACTIONS(2277), 1,
- anon_sym_SQUOTE,
- ACTIONS(4634), 1,
- anon_sym_LBRACK,
- ACTIONS(5993), 1,
- anon_sym_STAR,
- ACTIONS(5995), 1,
- anon_sym_async,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(5997), 2,
- sym_number,
- sym_private_property_identifier,
- ACTIONS(6001), 2,
- anon_sym_get,
- anon_sym_set,
- ACTIONS(3743), 3,
- anon_sym_LPAREN,
- anon_sym_LT,
- anon_sym_QMARK,
- STATE(3850), 3,
- sym_string,
- sym__property_name,
- sym_computed_property_name,
- ACTIONS(2307), 20,
- anon_sym_export,
- anon_sym_type,
- anon_sym_namespace,
- anon_sym_let,
- anon_sym_new,
- sym_identifier,
- anon_sym_static,
- anon_sym_readonly,
- anon_sym_declare,
- anon_sym_public,
- anon_sym_private,
- anon_sym_protected,
- anon_sym_override,
- anon_sym_module,
- anon_sym_any,
- anon_sym_number,
- anon_sym_boolean,
- anon_sym_string,
- anon_sym_symbol,
- anon_sym_object,
- [107333] = 10,
- ACTIONS(2275), 1,
- anon_sym_DQUOTE,
- ACTIONS(2277), 1,
- anon_sym_SQUOTE,
- ACTIONS(4634), 1,
- anon_sym_LBRACK,
- ACTIONS(6027), 1,
- anon_sym_STAR,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(6029), 2,
- sym_number,
- sym_private_property_identifier,
- ACTIONS(6031), 2,
- anon_sym_get,
- anon_sym_set,
- ACTIONS(3743), 3,
- anon_sym_LPAREN,
- anon_sym_LT,
- anon_sym_QMARK,
- STATE(3725), 3,
- sym_string,
- sym__property_name,
- sym_computed_property_name,
- ACTIONS(2307), 21,
- anon_sym_export,
- anon_sym_type,
- anon_sym_namespace,
- anon_sym_let,
- anon_sym_async,
- anon_sym_new,
- sym_identifier,
- anon_sym_static,
- anon_sym_readonly,
- anon_sym_declare,
- anon_sym_public,
- anon_sym_private,
- anon_sym_protected,
- anon_sym_override,
- anon_sym_module,
- anon_sym_any,
- anon_sym_number,
- anon_sym_boolean,
- anon_sym_string,
- anon_sym_symbol,
- anon_sym_object,
- [107391] = 11,
- ACTIONS(2275), 1,
- anon_sym_DQUOTE,
- ACTIONS(2277), 1,
- anon_sym_SQUOTE,
- ACTIONS(4634), 1,
- anon_sym_LBRACK,
- ACTIONS(6027), 1,
- anon_sym_STAR,
- ACTIONS(6033), 1,
- anon_sym_async,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(6029), 2,
- sym_number,
- sym_private_property_identifier,
- ACTIONS(6031), 2,
- anon_sym_get,
- anon_sym_set,
- ACTIONS(3743), 3,
- anon_sym_LPAREN,
- anon_sym_LT,
- anon_sym_QMARK,
- STATE(3725), 3,
- sym_string,
- sym__property_name,
- sym_computed_property_name,
- ACTIONS(2307), 20,
- anon_sym_export,
- anon_sym_type,
- anon_sym_namespace,
- anon_sym_let,
- anon_sym_new,
- sym_identifier,
- anon_sym_static,
- anon_sym_readonly,
- anon_sym_declare,
- anon_sym_public,
- anon_sym_private,
- anon_sym_protected,
- anon_sym_override,
- anon_sym_module,
- anon_sym_any,
- anon_sym_number,
- anon_sym_boolean,
- anon_sym_string,
- anon_sym_symbol,
- anon_sym_object,
- [107451] = 9,
- ACTIONS(2275), 1,
- anon_sym_DQUOTE,
- ACTIONS(2277), 1,
- anon_sym_SQUOTE,
- ACTIONS(4634), 1,
- anon_sym_LBRACK,
- ACTIONS(6035), 1,
- anon_sym_EQ_GT,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(5997), 2,
- sym_number,
- sym_private_property_identifier,
- ACTIONS(3743), 3,
- anon_sym_LPAREN,
- anon_sym_LT,
- anon_sym_QMARK,
- STATE(3850), 3,
- sym_string,
- sym__property_name,
- sym_computed_property_name,
- ACTIONS(2307), 23,
- anon_sym_export,
- anon_sym_type,
- anon_sym_namespace,
- anon_sym_let,
- anon_sym_async,
- anon_sym_new,
- sym_identifier,
- anon_sym_static,
- anon_sym_readonly,
- anon_sym_get,
- anon_sym_set,
- anon_sym_declare,
- anon_sym_public,
- anon_sym_private,
- anon_sym_protected,
- anon_sym_override,
- anon_sym_module,
- anon_sym_any,
- anon_sym_number,
- anon_sym_boolean,
- anon_sym_string,
- anon_sym_symbol,
- anon_sym_object,
- [107507] = 17,
- ACTIONS(1594), 1,
- anon_sym_DQUOTE,
- ACTIONS(1596), 1,
- anon_sym_SQUOTE,
- ACTIONS(3633), 1,
- anon_sym_override,
- ACTIONS(4245), 1,
- anon_sym_LBRACK,
- ACTIONS(5167), 1,
- anon_sym_STAR,
- ACTIONS(5169), 1,
- anon_sym_async,
- ACTIONS(6039), 1,
- anon_sym_static,
- ACTIONS(6041), 1,
- anon_sym_readonly,
- ACTIONS(6043), 1,
- anon_sym_declare,
- ACTIONS(6045), 1,
- anon_sym_abstract,
- ACTIONS(6047), 1,
- anon_sym_accessor,
- STATE(2695), 1,
- sym_override_modifier,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(5175), 2,
- anon_sym_get,
- anon_sym_set,
- ACTIONS(6037), 2,
- sym_number,
- sym_private_property_identifier,
- STATE(2989), 3,
- sym_string,
- sym__property_name,
- sym_computed_property_name,
- ACTIONS(3607), 16,
- anon_sym_export,
- anon_sym_type,
- anon_sym_namespace,
- anon_sym_let,
- anon_sym_new,
- sym_identifier,
- anon_sym_public,
- anon_sym_private,
- anon_sym_protected,
- anon_sym_module,
- anon_sym_any,
- anon_sym_number,
- anon_sym_boolean,
- anon_sym_string,
- anon_sym_symbol,
- anon_sym_object,
- [107579] = 10,
- ACTIONS(2275), 1,
- anon_sym_DQUOTE,
- ACTIONS(2277), 1,
- anon_sym_SQUOTE,
- ACTIONS(4634), 1,
- anon_sym_LBRACK,
- ACTIONS(6049), 1,
- anon_sym_STAR,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(6051), 2,
- sym_number,
- sym_private_property_identifier,
- ACTIONS(6053), 2,
- anon_sym_get,
- anon_sym_set,
- ACTIONS(3743), 3,
- anon_sym_LPAREN,
- anon_sym_LT,
- anon_sym_QMARK,
- STATE(3890), 3,
- sym_string,
- sym__property_name,
- sym_computed_property_name,
- ACTIONS(2307), 21,
- anon_sym_export,
- anon_sym_type,
- anon_sym_namespace,
- anon_sym_let,
- anon_sym_async,
- anon_sym_new,
- sym_identifier,
- anon_sym_static,
- anon_sym_readonly,
- anon_sym_declare,
- anon_sym_public,
- anon_sym_private,
- anon_sym_protected,
- anon_sym_override,
- anon_sym_module,
- anon_sym_any,
- anon_sym_number,
- anon_sym_boolean,
- anon_sym_string,
- anon_sym_symbol,
- anon_sym_object,
- [107637] = 10,
- ACTIONS(2275), 1,
- anon_sym_DQUOTE,
- ACTIONS(2277), 1,
- anon_sym_SQUOTE,
- ACTIONS(4634), 1,
- anon_sym_LBRACK,
- ACTIONS(6055), 1,
- anon_sym_STAR,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(6057), 2,
- sym_number,
- sym_private_property_identifier,
- ACTIONS(6059), 2,
- anon_sym_get,
- anon_sym_set,
- ACTIONS(3743), 3,
- anon_sym_LPAREN,
- anon_sym_LT,
- anon_sym_QMARK,
- STATE(3852), 3,
- sym_string,
- sym__property_name,
- sym_computed_property_name,
- ACTIONS(2307), 21,
- anon_sym_export,
- anon_sym_type,
- anon_sym_namespace,
- anon_sym_let,
- anon_sym_async,
- anon_sym_new,
- sym_identifier,
- anon_sym_static,
- anon_sym_readonly,
- anon_sym_declare,
- anon_sym_public,
- anon_sym_private,
- anon_sym_protected,
- anon_sym_override,
- anon_sym_module,
- anon_sym_any,
- anon_sym_number,
- anon_sym_boolean,
- anon_sym_string,
- anon_sym_symbol,
- anon_sym_object,
- [107695] = 11,
- ACTIONS(2275), 1,
- anon_sym_DQUOTE,
- ACTIONS(2277), 1,
- anon_sym_SQUOTE,
- ACTIONS(4634), 1,
- anon_sym_LBRACK,
- ACTIONS(6055), 1,
- anon_sym_STAR,
- ACTIONS(6061), 1,
- anon_sym_async,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(6057), 2,
- sym_number,
- sym_private_property_identifier,
- ACTIONS(6059), 2,
- anon_sym_get,
- anon_sym_set,
- ACTIONS(3743), 3,
- anon_sym_LPAREN,
- anon_sym_LT,
- anon_sym_QMARK,
- STATE(3852), 3,
- sym_string,
- sym__property_name,
- sym_computed_property_name,
- ACTIONS(2307), 20,
- anon_sym_export,
- anon_sym_type,
- anon_sym_namespace,
- anon_sym_let,
- anon_sym_new,
- sym_identifier,
- anon_sym_static,
- anon_sym_readonly,
- anon_sym_declare,
- anon_sym_public,
- anon_sym_private,
- anon_sym_protected,
- anon_sym_override,
- anon_sym_module,
- anon_sym_any,
- anon_sym_number,
- anon_sym_boolean,
- anon_sym_string,
- anon_sym_symbol,
- anon_sym_object,
- [107755] = 5,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(5869), 2,
- anon_sym_COMMA,
- anon_sym_RBRACE,
- ACTIONS(3743), 4,
- anon_sym_LPAREN,
- anon_sym_COLON,
- anon_sym_LT,
- anon_sym_QMARK,
- ACTIONS(1993), 6,
- anon_sym_STAR,
- anon_sym_LBRACK,
- anon_sym_DQUOTE,
- anon_sym_SQUOTE,
- sym_number,
- sym_private_property_identifier,
- ACTIONS(1991), 23,
- anon_sym_export,
- anon_sym_type,
- anon_sym_namespace,
- anon_sym_let,
- anon_sym_async,
- anon_sym_new,
- sym_identifier,
- anon_sym_static,
- anon_sym_readonly,
- anon_sym_get,
- anon_sym_set,
- anon_sym_declare,
- anon_sym_public,
- anon_sym_private,
- anon_sym_protected,
- anon_sym_override,
- anon_sym_module,
- anon_sym_any,
- anon_sym_number,
- anon_sym_boolean,
- anon_sym_string,
- anon_sym_symbol,
- anon_sym_object,
- [107803] = 8,
- ACTIONS(2275), 1,
- anon_sym_DQUOTE,
- ACTIONS(2277), 1,
- anon_sym_SQUOTE,
- ACTIONS(4634), 1,
- anon_sym_LBRACK,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(6063), 2,
- sym_number,
- sym_private_property_identifier,
- ACTIONS(3743), 3,
- anon_sym_LPAREN,
- anon_sym_LT,
- anon_sym_QMARK,
- STATE(3904), 3,
- sym_string,
- sym__property_name,
- sym_computed_property_name,
- ACTIONS(2307), 23,
- anon_sym_export,
- anon_sym_type,
- anon_sym_namespace,
- anon_sym_let,
- anon_sym_async,
- anon_sym_new,
- sym_identifier,
- anon_sym_static,
- anon_sym_readonly,
- anon_sym_get,
- anon_sym_set,
- anon_sym_declare,
- anon_sym_public,
- anon_sym_private,
- anon_sym_protected,
- anon_sym_override,
- anon_sym_module,
- anon_sym_any,
- anon_sym_number,
- anon_sym_boolean,
- anon_sym_string,
- anon_sym_symbol,
- anon_sym_object,
- [107856] = 13,
- ACTIONS(1594), 1,
- anon_sym_DQUOTE,
- ACTIONS(1596), 1,
- anon_sym_SQUOTE,
- ACTIONS(3633), 1,
- anon_sym_override,
- ACTIONS(4245), 1,
- anon_sym_LBRACK,
- ACTIONS(4995), 1,
- anon_sym_static,
- ACTIONS(4997), 1,
- anon_sym_readonly,
- ACTIONS(4999), 1,
- anon_sym_abstract,
- ACTIONS(5001), 1,
- anon_sym_accessor,
- STATE(2728), 1,
- sym_override_modifier,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(4993), 2,
- sym_number,
- sym_private_property_identifier,
- STATE(3277), 3,
- sym_string,
- sym__property_name,
- sym_computed_property_name,
- ACTIONS(3607), 20,
- anon_sym_export,
- anon_sym_type,
- anon_sym_namespace,
- anon_sym_let,
- anon_sym_async,
- anon_sym_new,
- sym_identifier,
- anon_sym_get,
- anon_sym_set,
- anon_sym_declare,
- anon_sym_public,
- anon_sym_private,
- anon_sym_protected,
- anon_sym_module,
- anon_sym_any,
- anon_sym_number,
- anon_sym_boolean,
- anon_sym_string,
- anon_sym_symbol,
- anon_sym_object,
- [107919] = 8,
- ACTIONS(2275), 1,
- anon_sym_DQUOTE,
- ACTIONS(2277), 1,
- anon_sym_SQUOTE,
- ACTIONS(4634), 1,
- anon_sym_LBRACK,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(5486), 2,
- sym_number,
- sym_private_property_identifier,
- ACTIONS(3743), 3,
- anon_sym_LPAREN,
- anon_sym_LT,
- anon_sym_QMARK,
- STATE(3843), 3,
- sym_string,
- sym__property_name,
- sym_computed_property_name,
- ACTIONS(2307), 23,
- anon_sym_export,
- anon_sym_type,
- anon_sym_namespace,
- anon_sym_let,
- anon_sym_async,
- anon_sym_new,
- sym_identifier,
- anon_sym_static,
- anon_sym_readonly,
- anon_sym_get,
- anon_sym_set,
- anon_sym_declare,
- anon_sym_public,
- anon_sym_private,
- anon_sym_protected,
- anon_sym_override,
- anon_sym_module,
- anon_sym_any,
- anon_sym_number,
- anon_sym_boolean,
- anon_sym_string,
- anon_sym_symbol,
- anon_sym_object,
- [107972] = 8,
- ACTIONS(2275), 1,
- anon_sym_DQUOTE,
- ACTIONS(2277), 1,
- anon_sym_SQUOTE,
- ACTIONS(4634), 1,
- anon_sym_LBRACK,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(6065), 2,
- sym_number,
- sym_private_property_identifier,
- ACTIONS(3743), 3,
- anon_sym_LPAREN,
- anon_sym_LT,
- anon_sym_QMARK,
- STATE(3823), 3,
- sym_string,
- sym__property_name,
- sym_computed_property_name,
- ACTIONS(2307), 23,
- anon_sym_export,
- anon_sym_type,
- anon_sym_namespace,
- anon_sym_let,
- anon_sym_async,
- anon_sym_new,
- sym_identifier,
- anon_sym_static,
- anon_sym_readonly,
- anon_sym_get,
- anon_sym_set,
- anon_sym_declare,
- anon_sym_public,
- anon_sym_private,
- anon_sym_protected,
- anon_sym_override,
- anon_sym_module,
- anon_sym_any,
- anon_sym_number,
- anon_sym_boolean,
- anon_sym_string,
- anon_sym_symbol,
- anon_sym_object,
- [108025] = 8,
- ACTIONS(2275), 1,
- anon_sym_DQUOTE,
- ACTIONS(2277), 1,
- anon_sym_SQUOTE,
- ACTIONS(4634), 1,
- anon_sym_LBRACK,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(5526), 2,
- sym_number,
- sym_private_property_identifier,
- ACTIONS(3743), 3,
- anon_sym_LPAREN,
- anon_sym_LT,
- anon_sym_QMARK,
- STATE(3842), 3,
- sym_string,
- sym__property_name,
- sym_computed_property_name,
- ACTIONS(2307), 23,
- anon_sym_export,
- anon_sym_type,
- anon_sym_namespace,
- anon_sym_let,
- anon_sym_async,
- anon_sym_new,
- sym_identifier,
- anon_sym_static,
- anon_sym_readonly,
- anon_sym_get,
- anon_sym_set,
- anon_sym_declare,
- anon_sym_public,
- anon_sym_private,
- anon_sym_protected,
- anon_sym_override,
- anon_sym_module,
- anon_sym_any,
- anon_sym_number,
- anon_sym_boolean,
- anon_sym_string,
- anon_sym_symbol,
- anon_sym_object,
- [108078] = 8,
- ACTIONS(2275), 1,
- anon_sym_DQUOTE,
- ACTIONS(2277), 1,
- anon_sym_SQUOTE,
- ACTIONS(4634), 1,
- anon_sym_LBRACK,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(5664), 2,
- sym_number,
- sym_private_property_identifier,
- ACTIONS(3743), 3,
- anon_sym_LPAREN,
- anon_sym_LT,
- anon_sym_QMARK,
- STATE(3772), 3,
- sym_string,
- sym__property_name,
- sym_computed_property_name,
- ACTIONS(2307), 23,
- anon_sym_export,
- anon_sym_type,
- anon_sym_namespace,
- anon_sym_let,
- anon_sym_async,
- anon_sym_new,
- sym_identifier,
- anon_sym_static,
- anon_sym_readonly,
- anon_sym_get,
- anon_sym_set,
- anon_sym_declare,
- anon_sym_public,
- anon_sym_private,
- anon_sym_protected,
- anon_sym_override,
- anon_sym_module,
- anon_sym_any,
- anon_sym_number,
- anon_sym_boolean,
- anon_sym_string,
- anon_sym_symbol,
- anon_sym_object,
- [108131] = 8,
- ACTIONS(2275), 1,
- anon_sym_DQUOTE,
- ACTIONS(2277), 1,
- anon_sym_SQUOTE,
- ACTIONS(4634), 1,
- anon_sym_LBRACK,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(6057), 2,
- sym_number,
- sym_private_property_identifier,
- ACTIONS(3743), 3,
- anon_sym_LPAREN,
- anon_sym_LT,
- anon_sym_QMARK,
- STATE(3852), 3,
- sym_string,
- sym__property_name,
- sym_computed_property_name,
- ACTIONS(2307), 23,
- anon_sym_export,
- anon_sym_type,
- anon_sym_namespace,
- anon_sym_let,
- anon_sym_async,
- anon_sym_new,
- sym_identifier,
- anon_sym_static,
- anon_sym_readonly,
- anon_sym_get,
- anon_sym_set,
- anon_sym_declare,
- anon_sym_public,
- anon_sym_private,
- anon_sym_protected,
- anon_sym_override,
- anon_sym_module,
- anon_sym_any,
- anon_sym_number,
- anon_sym_boolean,
- anon_sym_string,
- anon_sym_symbol,
- anon_sym_object,
- [108184] = 8,
- ACTIONS(2275), 1,
- anon_sym_DQUOTE,
- ACTIONS(2277), 1,
- anon_sym_SQUOTE,
- ACTIONS(4634), 1,
- anon_sym_LBRACK,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(6029), 2,
- sym_number,
- sym_private_property_identifier,
- ACTIONS(3743), 3,
- anon_sym_LPAREN,
- anon_sym_LT,
- anon_sym_QMARK,
- STATE(3725), 3,
- sym_string,
- sym__property_name,
- sym_computed_property_name,
- ACTIONS(2307), 23,
- anon_sym_export,
- anon_sym_type,
- anon_sym_namespace,
- anon_sym_let,
- anon_sym_async,
- anon_sym_new,
- sym_identifier,
- anon_sym_static,
- anon_sym_readonly,
- anon_sym_get,
- anon_sym_set,
- anon_sym_declare,
- anon_sym_public,
- anon_sym_private,
- anon_sym_protected,
- anon_sym_override,
- anon_sym_module,
- anon_sym_any,
- anon_sym_number,
- anon_sym_boolean,
- anon_sym_string,
- anon_sym_symbol,
- anon_sym_object,
- [108237] = 8,
- ACTIONS(2275), 1,
- anon_sym_DQUOTE,
- ACTIONS(2277), 1,
- anon_sym_SQUOTE,
- ACTIONS(4634), 1,
- anon_sym_LBRACK,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(5997), 2,
- sym_number,
- sym_private_property_identifier,
- ACTIONS(3743), 3,
- anon_sym_LPAREN,
- anon_sym_LT,
- anon_sym_QMARK,
- STATE(3850), 3,
- sym_string,
- sym__property_name,
- sym_computed_property_name,
- ACTIONS(2307), 23,
- anon_sym_export,
- anon_sym_type,
- anon_sym_namespace,
- anon_sym_let,
- anon_sym_async,
- anon_sym_new,
- sym_identifier,
- anon_sym_static,
- anon_sym_readonly,
- anon_sym_get,
- anon_sym_set,
- anon_sym_declare,
- anon_sym_public,
- anon_sym_private,
- anon_sym_protected,
- anon_sym_override,
- anon_sym_module,
- anon_sym_any,
- anon_sym_number,
- anon_sym_boolean,
- anon_sym_string,
- anon_sym_symbol,
- anon_sym_object,
- [108290] = 8,
- ACTIONS(2275), 1,
- anon_sym_DQUOTE,
- ACTIONS(2277), 1,
- anon_sym_SQUOTE,
- ACTIONS(4634), 1,
- anon_sym_LBRACK,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(5532), 2,
- sym_number,
- sym_private_property_identifier,
- ACTIONS(3743), 3,
- anon_sym_LPAREN,
- anon_sym_LT,
- anon_sym_QMARK,
- STATE(3798), 3,
- sym_string,
- sym__property_name,
- sym_computed_property_name,
- ACTIONS(2307), 23,
- anon_sym_export,
- anon_sym_type,
- anon_sym_namespace,
- anon_sym_let,
- anon_sym_async,
- anon_sym_new,
- sym_identifier,
- anon_sym_static,
- anon_sym_readonly,
- anon_sym_get,
- anon_sym_set,
- anon_sym_declare,
- anon_sym_public,
- anon_sym_private,
- anon_sym_protected,
- anon_sym_override,
- anon_sym_module,
- anon_sym_any,
- anon_sym_number,
- anon_sym_boolean,
- anon_sym_string,
- anon_sym_symbol,
- anon_sym_object,
- [108343] = 8,
- ACTIONS(2275), 1,
- anon_sym_DQUOTE,
- ACTIONS(2277), 1,
- anon_sym_SQUOTE,
- ACTIONS(4634), 1,
- anon_sym_LBRACK,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(5375), 2,
- sym_number,
- sym_private_property_identifier,
- ACTIONS(3743), 3,
- anon_sym_LPAREN,
- anon_sym_LT,
- anon_sym_QMARK,
- STATE(3731), 3,
- sym_string,
- sym__property_name,
- sym_computed_property_name,
- ACTIONS(2307), 23,
- anon_sym_export,
- anon_sym_type,
- anon_sym_namespace,
- anon_sym_let,
- anon_sym_async,
- anon_sym_new,
- sym_identifier,
- anon_sym_static,
- anon_sym_readonly,
- anon_sym_get,
- anon_sym_set,
- anon_sym_declare,
- anon_sym_public,
- anon_sym_private,
- anon_sym_protected,
- anon_sym_override,
- anon_sym_module,
- anon_sym_any,
- anon_sym_number,
- anon_sym_boolean,
- anon_sym_string,
- anon_sym_symbol,
- anon_sym_object,
- [108396] = 8,
- ACTIONS(2275), 1,
- anon_sym_DQUOTE,
- ACTIONS(2277), 1,
- anon_sym_SQUOTE,
- ACTIONS(4634), 1,
- anon_sym_LBRACK,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(5791), 2,
- sym_number,
- sym_private_property_identifier,
- ACTIONS(3743), 3,
- anon_sym_LPAREN,
- anon_sym_LT,
- anon_sym_QMARK,
- STATE(3840), 3,
- sym_string,
- sym__property_name,
- sym_computed_property_name,
- ACTIONS(2307), 23,
- anon_sym_export,
- anon_sym_type,
- anon_sym_namespace,
- anon_sym_let,
- anon_sym_async,
- anon_sym_new,
- sym_identifier,
- anon_sym_static,
- anon_sym_readonly,
- anon_sym_get,
- anon_sym_set,
- anon_sym_declare,
- anon_sym_public,
- anon_sym_private,
- anon_sym_protected,
- anon_sym_override,
- anon_sym_module,
- anon_sym_any,
- anon_sym_number,
- anon_sym_boolean,
- anon_sym_string,
- anon_sym_symbol,
- anon_sym_object,
- [108449] = 13,
- ACTIONS(1594), 1,
- anon_sym_DQUOTE,
- ACTIONS(1596), 1,
- anon_sym_SQUOTE,
- ACTIONS(3633), 1,
- anon_sym_override,
- ACTIONS(4245), 1,
- anon_sym_LBRACK,
- ACTIONS(6069), 1,
- anon_sym_static,
- ACTIONS(6071), 1,
- anon_sym_readonly,
- ACTIONS(6073), 1,
- anon_sym_abstract,
- ACTIONS(6075), 1,
- anon_sym_accessor,
- STATE(2762), 1,
- sym_override_modifier,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(6067), 2,
- sym_number,
- sym_private_property_identifier,
- STATE(3381), 3,
- sym_string,
- sym__property_name,
- sym_computed_property_name,
- ACTIONS(3607), 20,
- anon_sym_export,
- anon_sym_type,
- anon_sym_namespace,
- anon_sym_let,
- anon_sym_async,
- anon_sym_new,
- sym_identifier,
- anon_sym_get,
- anon_sym_set,
- anon_sym_declare,
- anon_sym_public,
- anon_sym_private,
- anon_sym_protected,
- anon_sym_module,
- anon_sym_any,
- anon_sym_number,
- anon_sym_boolean,
- anon_sym_string,
- anon_sym_symbol,
- anon_sym_object,
- [108512] = 8,
- ACTIONS(2275), 1,
- anon_sym_DQUOTE,
- ACTIONS(2277), 1,
- anon_sym_SQUOTE,
- ACTIONS(4634), 1,
- anon_sym_LBRACK,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(5552), 2,
- sym_number,
- sym_private_property_identifier,
- ACTIONS(3743), 3,
- anon_sym_LPAREN,
- anon_sym_LT,
- anon_sym_QMARK,
- STATE(3767), 3,
- sym_string,
- sym__property_name,
- sym_computed_property_name,
- ACTIONS(2307), 23,
- anon_sym_export,
- anon_sym_type,
- anon_sym_namespace,
- anon_sym_let,
- anon_sym_async,
- anon_sym_new,
- sym_identifier,
- anon_sym_static,
- anon_sym_readonly,
- anon_sym_get,
- anon_sym_set,
- anon_sym_declare,
- anon_sym_public,
- anon_sym_private,
- anon_sym_protected,
- anon_sym_override,
- anon_sym_module,
- anon_sym_any,
- anon_sym_number,
- anon_sym_boolean,
- anon_sym_string,
- anon_sym_symbol,
- anon_sym_object,
- [108565] = 8,
- ACTIONS(2275), 1,
- anon_sym_DQUOTE,
- ACTIONS(2277), 1,
- anon_sym_SQUOTE,
- ACTIONS(4634), 1,
- anon_sym_LBRACK,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(5556), 2,
- sym_number,
- sym_private_property_identifier,
- ACTIONS(3743), 3,
- anon_sym_LPAREN,
- anon_sym_LT,
- anon_sym_QMARK,
- STATE(3808), 3,
- sym_string,
- sym__property_name,
- sym_computed_property_name,
- ACTIONS(2307), 23,
- anon_sym_export,
- anon_sym_type,
- anon_sym_namespace,
- anon_sym_let,
- anon_sym_async,
- anon_sym_new,
- sym_identifier,
- anon_sym_static,
- anon_sym_readonly,
- anon_sym_get,
- anon_sym_set,
- anon_sym_declare,
- anon_sym_public,
- anon_sym_private,
- anon_sym_protected,
- anon_sym_override,
- anon_sym_module,
- anon_sym_any,
- anon_sym_number,
- anon_sym_boolean,
- anon_sym_string,
- anon_sym_symbol,
- anon_sym_object,
- [108618] = 8,
- ACTIONS(2275), 1,
- anon_sym_DQUOTE,
- ACTIONS(2277), 1,
- anon_sym_SQUOTE,
- ACTIONS(4634), 1,
- anon_sym_LBRACK,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(5562), 2,
- sym_number,
- sym_private_property_identifier,
- ACTIONS(3743), 3,
- anon_sym_LPAREN,
- anon_sym_LT,
- anon_sym_QMARK,
- STATE(3914), 3,
- sym_string,
- sym__property_name,
- sym_computed_property_name,
- ACTIONS(2307), 23,
- anon_sym_export,
- anon_sym_type,
- anon_sym_namespace,
- anon_sym_let,
- anon_sym_async,
- anon_sym_new,
- sym_identifier,
- anon_sym_static,
- anon_sym_readonly,
- anon_sym_get,
- anon_sym_set,
- anon_sym_declare,
- anon_sym_public,
- anon_sym_private,
- anon_sym_protected,
- anon_sym_override,
- anon_sym_module,
- anon_sym_any,
- anon_sym_number,
- anon_sym_boolean,
- anon_sym_string,
- anon_sym_symbol,
- anon_sym_object,
- [108671] = 8,
- ACTIONS(2275), 1,
- anon_sym_DQUOTE,
- ACTIONS(2277), 1,
- anon_sym_SQUOTE,
- ACTIONS(4634), 1,
- anon_sym_LBRACK,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(5566), 2,
- sym_number,
- sym_private_property_identifier,
- ACTIONS(3743), 3,
- anon_sym_LPAREN,
- anon_sym_LT,
- anon_sym_QMARK,
- STATE(3832), 3,
- sym_string,
- sym__property_name,
- sym_computed_property_name,
- ACTIONS(2307), 23,
- anon_sym_export,
- anon_sym_type,
- anon_sym_namespace,
- anon_sym_let,
- anon_sym_async,
- anon_sym_new,
- sym_identifier,
- anon_sym_static,
- anon_sym_readonly,
- anon_sym_get,
- anon_sym_set,
- anon_sym_declare,
- anon_sym_public,
- anon_sym_private,
- anon_sym_protected,
- anon_sym_override,
- anon_sym_module,
- anon_sym_any,
- anon_sym_number,
- anon_sym_boolean,
- anon_sym_string,
- anon_sym_symbol,
- anon_sym_object,
- [108724] = 8,
- ACTIONS(2275), 1,
- anon_sym_DQUOTE,
- ACTIONS(2277), 1,
- anon_sym_SQUOTE,
- ACTIONS(4634), 1,
- anon_sym_LBRACK,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(5572), 2,
- sym_number,
- sym_private_property_identifier,
- ACTIONS(3743), 3,
- anon_sym_LPAREN,
- anon_sym_LT,
- anon_sym_QMARK,
- STATE(3834), 3,
- sym_string,
- sym__property_name,
- sym_computed_property_name,
- ACTIONS(2307), 23,
- anon_sym_export,
- anon_sym_type,
- anon_sym_namespace,
- anon_sym_let,
- anon_sym_async,
- anon_sym_new,
- sym_identifier,
- anon_sym_static,
- anon_sym_readonly,
- anon_sym_get,
- anon_sym_set,
- anon_sym_declare,
- anon_sym_public,
- anon_sym_private,
- anon_sym_protected,
- anon_sym_override,
- anon_sym_module,
- anon_sym_any,
- anon_sym_number,
- anon_sym_boolean,
- anon_sym_string,
- anon_sym_symbol,
- anon_sym_object,
- [108777] = 8,
- ACTIONS(2275), 1,
- anon_sym_DQUOTE,
- ACTIONS(2277), 1,
- anon_sym_SQUOTE,
- ACTIONS(4634), 1,
- anon_sym_LBRACK,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(6077), 2,
- sym_number,
- sym_private_property_identifier,
- ACTIONS(3743), 3,
- anon_sym_LPAREN,
- anon_sym_LT,
- anon_sym_QMARK,
- STATE(3836), 3,
- sym_string,
- sym__property_name,
- sym_computed_property_name,
- ACTIONS(2307), 23,
- anon_sym_export,
- anon_sym_type,
- anon_sym_namespace,
- anon_sym_let,
- anon_sym_async,
- anon_sym_new,
- sym_identifier,
- anon_sym_static,
- anon_sym_readonly,
- anon_sym_get,
- anon_sym_set,
- anon_sym_declare,
- anon_sym_public,
- anon_sym_private,
- anon_sym_protected,
- anon_sym_override,
- anon_sym_module,
- anon_sym_any,
- anon_sym_number,
- anon_sym_boolean,
- anon_sym_string,
- anon_sym_symbol,
- anon_sym_object,
- [108830] = 8,
- ACTIONS(2275), 1,
- anon_sym_DQUOTE,
- ACTIONS(2277), 1,
- anon_sym_SQUOTE,
- ACTIONS(4634), 1,
- anon_sym_LBRACK,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(6051), 2,
- sym_number,
- sym_private_property_identifier,
- ACTIONS(3743), 3,
- anon_sym_LPAREN,
- anon_sym_LT,
- anon_sym_QMARK,
- STATE(3890), 3,
- sym_string,
- sym__property_name,
- sym_computed_property_name,
- ACTIONS(2307), 23,
- anon_sym_export,
- anon_sym_type,
- anon_sym_namespace,
- anon_sym_let,
- anon_sym_async,
- anon_sym_new,
- sym_identifier,
- anon_sym_static,
- anon_sym_readonly,
- anon_sym_get,
- anon_sym_set,
- anon_sym_declare,
- anon_sym_public,
- anon_sym_private,
- anon_sym_protected,
- anon_sym_override,
- anon_sym_module,
- anon_sym_any,
- anon_sym_number,
- anon_sym_boolean,
- anon_sym_string,
- anon_sym_symbol,
- anon_sym_object,
- [108883] = 8,
- ACTIONS(2275), 1,
- anon_sym_DQUOTE,
- ACTIONS(2277), 1,
- anon_sym_SQUOTE,
- ACTIONS(4634), 1,
- anon_sym_LBRACK,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(5604), 2,
- sym_number,
- sym_private_property_identifier,
- ACTIONS(3743), 3,
- anon_sym_LPAREN,
- anon_sym_LT,
- anon_sym_QMARK,
- STATE(3822), 3,
- sym_string,
- sym__property_name,
- sym_computed_property_name,
- ACTIONS(2307), 23,
- anon_sym_export,
- anon_sym_type,
- anon_sym_namespace,
- anon_sym_let,
- anon_sym_async,
- anon_sym_new,
- sym_identifier,
- anon_sym_static,
- anon_sym_readonly,
- anon_sym_get,
- anon_sym_set,
- anon_sym_declare,
- anon_sym_public,
- anon_sym_private,
- anon_sym_protected,
- anon_sym_override,
- anon_sym_module,
- anon_sym_any,
- anon_sym_number,
- anon_sym_boolean,
- anon_sym_string,
- anon_sym_symbol,
- anon_sym_object,
- [108936] = 8,
- ACTIONS(2275), 1,
- anon_sym_DQUOTE,
- ACTIONS(2277), 1,
- anon_sym_SQUOTE,
- ACTIONS(4634), 1,
- anon_sym_LBRACK,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(6079), 2,
- sym_number,
- sym_private_property_identifier,
- ACTIONS(3743), 3,
- anon_sym_LPAREN,
- anon_sym_LT,
- anon_sym_QMARK,
- STATE(3905), 3,
- sym_string,
- sym__property_name,
- sym_computed_property_name,
- ACTIONS(2307), 23,
- anon_sym_export,
- anon_sym_type,
- anon_sym_namespace,
- anon_sym_let,
- anon_sym_async,
- anon_sym_new,
- sym_identifier,
- anon_sym_static,
- anon_sym_readonly,
- anon_sym_get,
- anon_sym_set,
- anon_sym_declare,
- anon_sym_public,
- anon_sym_private,
- anon_sym_protected,
- anon_sym_override,
- anon_sym_module,
- anon_sym_any,
- anon_sym_number,
- anon_sym_boolean,
- anon_sym_string,
- anon_sym_symbol,
- anon_sym_object,
- [108989] = 8,
- ACTIONS(2275), 1,
- anon_sym_DQUOTE,
- ACTIONS(2277), 1,
- anon_sym_SQUOTE,
- ACTIONS(4634), 1,
- anon_sym_LBRACK,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(5408), 2,
- sym_number,
- sym_private_property_identifier,
- ACTIONS(3743), 3,
- anon_sym_LPAREN,
- anon_sym_LT,
- anon_sym_QMARK,
- STATE(3757), 3,
- sym_string,
- sym__property_name,
- sym_computed_property_name,
- ACTIONS(2307), 23,
- anon_sym_export,
- anon_sym_type,
- anon_sym_namespace,
- anon_sym_let,
- anon_sym_async,
- anon_sym_new,
- sym_identifier,
- anon_sym_static,
- anon_sym_readonly,
- anon_sym_get,
- anon_sym_set,
- anon_sym_declare,
- anon_sym_public,
- anon_sym_private,
- anon_sym_protected,
- anon_sym_override,
- anon_sym_module,
- anon_sym_any,
- anon_sym_number,
- anon_sym_boolean,
- anon_sym_string,
- anon_sym_symbol,
- anon_sym_object,
- [109042] = 8,
- ACTIONS(2275), 1,
- anon_sym_DQUOTE,
- ACTIONS(2277), 1,
- anon_sym_SQUOTE,
- ACTIONS(4634), 1,
- anon_sym_LBRACK,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(5544), 2,
- sym_number,
- sym_private_property_identifier,
- ACTIONS(3743), 3,
- anon_sym_LPAREN,
- anon_sym_LT,
- anon_sym_QMARK,
- STATE(3817), 3,
- sym_string,
- sym__property_name,
- sym_computed_property_name,
- ACTIONS(2307), 23,
- anon_sym_export,
- anon_sym_type,
- anon_sym_namespace,
- anon_sym_let,
- anon_sym_async,
- anon_sym_new,
- sym_identifier,
- anon_sym_static,
- anon_sym_readonly,
- anon_sym_get,
- anon_sym_set,
- anon_sym_declare,
- anon_sym_public,
- anon_sym_private,
- anon_sym_protected,
- anon_sym_override,
- anon_sym_module,
- anon_sym_any,
- anon_sym_number,
- anon_sym_boolean,
- anon_sym_string,
- anon_sym_symbol,
- anon_sym_object,
- [109095] = 8,
- ACTIONS(2275), 1,
- anon_sym_DQUOTE,
- ACTIONS(2277), 1,
- anon_sym_SQUOTE,
- ACTIONS(4634), 1,
- anon_sym_LBRACK,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(5381), 2,
- sym_number,
- sym_private_property_identifier,
- ACTIONS(3743), 3,
- anon_sym_LPAREN,
- anon_sym_LT,
- anon_sym_QMARK,
- STATE(3854), 3,
- sym_string,
- sym__property_name,
- sym_computed_property_name,
- ACTIONS(2307), 23,
- anon_sym_export,
- anon_sym_type,
- anon_sym_namespace,
- anon_sym_let,
- anon_sym_async,
- anon_sym_new,
- sym_identifier,
- anon_sym_static,
- anon_sym_readonly,
- anon_sym_get,
- anon_sym_set,
- anon_sym_declare,
- anon_sym_public,
- anon_sym_private,
- anon_sym_protected,
- anon_sym_override,
- anon_sym_module,
- anon_sym_any,
- anon_sym_number,
- anon_sym_boolean,
- anon_sym_string,
- anon_sym_symbol,
- anon_sym_object,
- [109148] = 8,
- ACTIONS(2275), 1,
- anon_sym_DQUOTE,
- ACTIONS(2277), 1,
- anon_sym_SQUOTE,
- ACTIONS(4634), 1,
- anon_sym_LBRACK,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(5468), 2,
- sym_number,
- sym_private_property_identifier,
- ACTIONS(3743), 3,
- anon_sym_LPAREN,
- anon_sym_LT,
- anon_sym_QMARK,
- STATE(3878), 3,
- sym_string,
- sym__property_name,
- sym_computed_property_name,
- ACTIONS(2307), 23,
- anon_sym_export,
- anon_sym_type,
- anon_sym_namespace,
- anon_sym_let,
- anon_sym_async,
- anon_sym_new,
- sym_identifier,
- anon_sym_static,
- anon_sym_readonly,
- anon_sym_get,
- anon_sym_set,
- anon_sym_declare,
- anon_sym_public,
- anon_sym_private,
- anon_sym_protected,
- anon_sym_override,
- anon_sym_module,
- anon_sym_any,
- anon_sym_number,
- anon_sym_boolean,
- anon_sym_string,
- anon_sym_symbol,
- anon_sym_object,
- [109201] = 8,
- ACTIONS(2275), 1,
- anon_sym_DQUOTE,
- ACTIONS(2277), 1,
- anon_sym_SQUOTE,
- ACTIONS(4634), 1,
- anon_sym_LBRACK,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(6081), 2,
- sym_number,
- sym_private_property_identifier,
- ACTIONS(3743), 3,
- anon_sym_LPAREN,
- anon_sym_LT,
- anon_sym_QMARK,
- STATE(3895), 3,
- sym_string,
- sym__property_name,
- sym_computed_property_name,
- ACTIONS(2307), 23,
- anon_sym_export,
- anon_sym_type,
- anon_sym_namespace,
- anon_sym_let,
- anon_sym_async,
- anon_sym_new,
- sym_identifier,
- anon_sym_static,
- anon_sym_readonly,
- anon_sym_get,
- anon_sym_set,
- anon_sym_declare,
- anon_sym_public,
- anon_sym_private,
- anon_sym_protected,
- anon_sym_override,
- anon_sym_module,
- anon_sym_any,
- anon_sym_number,
- anon_sym_boolean,
- anon_sym_string,
- anon_sym_symbol,
- anon_sym_object,
- [109254] = 8,
- ACTIONS(2275), 1,
- anon_sym_DQUOTE,
- ACTIONS(2277), 1,
- anon_sym_SQUOTE,
- ACTIONS(4634), 1,
- anon_sym_LBRACK,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(5630), 2,
- sym_number,
- sym_private_property_identifier,
- ACTIONS(3743), 3,
- anon_sym_LPAREN,
- anon_sym_LT,
- anon_sym_QMARK,
- STATE(3880), 3,
- sym_string,
- sym__property_name,
- sym_computed_property_name,
- ACTIONS(2307), 23,
- anon_sym_export,
- anon_sym_type,
- anon_sym_namespace,
- anon_sym_let,
- anon_sym_async,
- anon_sym_new,
- sym_identifier,
- anon_sym_static,
- anon_sym_readonly,
- anon_sym_get,
- anon_sym_set,
- anon_sym_declare,
- anon_sym_public,
- anon_sym_private,
- anon_sym_protected,
- anon_sym_override,
- anon_sym_module,
- anon_sym_any,
- anon_sym_number,
- anon_sym_boolean,
- anon_sym_string,
- anon_sym_symbol,
- anon_sym_object,
- [109307] = 6,
- ACTIONS(6083), 1,
- anon_sym_AT,
- STATE(2671), 1,
- aux_sym_export_statement_repeat1,
- STATE(2697), 1,
- sym_decorator,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(3533), 6,
- anon_sym_STAR,
- anon_sym_LBRACK,
- anon_sym_DQUOTE,
- anon_sym_SQUOTE,
- sym_number,
- sym_private_property_identifier,
- ACTIONS(3531), 25,
- anon_sym_export,
- anon_sym_type,
- anon_sym_namespace,
- anon_sym_let,
- anon_sym_async,
- anon_sym_new,
- sym_identifier,
- anon_sym_static,
- anon_sym_readonly,
- anon_sym_get,
- anon_sym_set,
- anon_sym_declare,
- anon_sym_public,
- anon_sym_private,
- anon_sym_protected,
- anon_sym_override,
- anon_sym_module,
- anon_sym_any,
- anon_sym_number,
- anon_sym_boolean,
- anon_sym_string,
- anon_sym_symbol,
- anon_sym_object,
- anon_sym_abstract,
- anon_sym_accessor,
- [109356] = 8,
- ACTIONS(2275), 1,
- anon_sym_DQUOTE,
- ACTIONS(2277), 1,
- anon_sym_SQUOTE,
- ACTIONS(4634), 1,
- anon_sym_LBRACK,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(6086), 2,
- sym_number,
- sym_private_property_identifier,
- ACTIONS(3743), 3,
- anon_sym_LPAREN,
- anon_sym_LT,
- anon_sym_QMARK,
- STATE(3773), 3,
- sym_string,
- sym__property_name,
- sym_computed_property_name,
- ACTIONS(2307), 23,
- anon_sym_export,
- anon_sym_type,
- anon_sym_namespace,
- anon_sym_let,
- anon_sym_async,
- anon_sym_new,
- sym_identifier,
- anon_sym_static,
- anon_sym_readonly,
- anon_sym_get,
- anon_sym_set,
- anon_sym_declare,
- anon_sym_public,
- anon_sym_private,
- anon_sym_protected,
- anon_sym_override,
- anon_sym_module,
- anon_sym_any,
- anon_sym_number,
- anon_sym_boolean,
- anon_sym_string,
- anon_sym_symbol,
- anon_sym_object,
- [109409] = 9,
- ACTIONS(1506), 1,
- anon_sym_DQUOTE,
- ACTIONS(1508), 1,
- anon_sym_SQUOTE,
- ACTIONS(4634), 1,
- anon_sym_LBRACK,
- ACTIONS(6088), 1,
- anon_sym_RBRACE,
- STATE(5481), 1,
- sym_enum_assignment,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(6090), 2,
- sym_number,
- sym_private_property_identifier,
- STATE(4532), 3,
- sym_string,
- sym__property_name,
- sym_computed_property_name,
- ACTIONS(2307), 23,
- anon_sym_export,
- anon_sym_type,
- anon_sym_namespace,
- anon_sym_let,
- anon_sym_async,
- anon_sym_new,
- sym_identifier,
- anon_sym_static,
- anon_sym_readonly,
- anon_sym_get,
- anon_sym_set,
- anon_sym_declare,
- anon_sym_public,
- anon_sym_private,
- anon_sym_protected,
- anon_sym_override,
- anon_sym_module,
- anon_sym_any,
- anon_sym_number,
- anon_sym_boolean,
- anon_sym_string,
- anon_sym_symbol,
- anon_sym_object,
- [109463] = 14,
- ACTIONS(1594), 1,
- anon_sym_DQUOTE,
- ACTIONS(1596), 1,
- anon_sym_SQUOTE,
- ACTIONS(3633), 1,
- anon_sym_override,
- ACTIONS(4245), 1,
- anon_sym_LBRACK,
- ACTIONS(5181), 1,
- anon_sym_STAR,
- ACTIONS(5183), 1,
- anon_sym_async,
- ACTIONS(5187), 1,
- anon_sym_readonly,
- ACTIONS(6092), 1,
- anon_sym_static,
- STATE(2712), 1,
- sym_override_modifier,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(5185), 2,
- sym_number,
- sym_private_property_identifier,
- ACTIONS(5189), 2,
- anon_sym_get,
- anon_sym_set,
- STATE(3057), 3,
- sym_string,
- sym__property_name,
- sym_computed_property_name,
- ACTIONS(3607), 17,
- anon_sym_export,
- anon_sym_type,
- anon_sym_namespace,
- anon_sym_let,
- anon_sym_new,
- sym_identifier,
- anon_sym_declare,
- anon_sym_public,
- anon_sym_private,
- anon_sym_protected,
- anon_sym_module,
- anon_sym_any,
- anon_sym_number,
- anon_sym_boolean,
- anon_sym_string,
- anon_sym_symbol,
- anon_sym_object,
- [109527] = 12,
- ACTIONS(1594), 1,
- anon_sym_DQUOTE,
- ACTIONS(1596), 1,
- anon_sym_SQUOTE,
- ACTIONS(3633), 1,
- anon_sym_override,
- ACTIONS(4245), 1,
- anon_sym_LBRACK,
- ACTIONS(6094), 1,
- anon_sym_STAR,
- ACTIONS(6098), 1,
- anon_sym_readonly,
- STATE(2713), 1,
- sym_override_modifier,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(6096), 2,
- sym_number,
- sym_private_property_identifier,
- ACTIONS(6100), 2,
- anon_sym_get,
- anon_sym_set,
- STATE(2969), 3,
- sym_string,
- sym__property_name,
- sym_computed_property_name,
- ACTIONS(3607), 19,
- anon_sym_export,
- anon_sym_type,
- anon_sym_namespace,
- anon_sym_let,
- anon_sym_async,
- anon_sym_new,
- sym_identifier,
- anon_sym_static,
- anon_sym_declare,
- anon_sym_public,
- anon_sym_private,
- anon_sym_protected,
- anon_sym_module,
- anon_sym_any,
- anon_sym_number,
- anon_sym_boolean,
- anon_sym_string,
- anon_sym_symbol,
- anon_sym_object,
- [109587] = 9,
- ACTIONS(1506), 1,
- anon_sym_DQUOTE,
- ACTIONS(1508), 1,
- anon_sym_SQUOTE,
- ACTIONS(4634), 1,
- anon_sym_LBRACK,
- ACTIONS(6102), 1,
- anon_sym_RBRACE,
- STATE(4566), 1,
- sym_enum_assignment,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(6104), 2,
- sym_number,
- sym_private_property_identifier,
- STATE(3980), 3,
- sym_string,
- sym__property_name,
- sym_computed_property_name,
- ACTIONS(2307), 23,
- anon_sym_export,
- anon_sym_type,
- anon_sym_namespace,
- anon_sym_let,
- anon_sym_async,
- anon_sym_new,
- sym_identifier,
- anon_sym_static,
- anon_sym_readonly,
- anon_sym_get,
- anon_sym_set,
- anon_sym_declare,
- anon_sym_public,
- anon_sym_private,
- anon_sym_protected,
- anon_sym_override,
- anon_sym_module,
- anon_sym_any,
- anon_sym_number,
- anon_sym_boolean,
- anon_sym_string,
- anon_sym_symbol,
- anon_sym_object,
- [109641] = 12,
- ACTIONS(1594), 1,
- anon_sym_DQUOTE,
- ACTIONS(1596), 1,
- anon_sym_SQUOTE,
- ACTIONS(3633), 1,
- anon_sym_override,
- ACTIONS(4245), 1,
- anon_sym_LBRACK,
- ACTIONS(5803), 1,
- anon_sym_readonly,
- ACTIONS(6106), 1,
- anon_sym_STAR,
- STATE(2707), 1,
- sym_override_modifier,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(6108), 2,
- sym_number,
- sym_private_property_identifier,
- ACTIONS(6110), 2,
- anon_sym_get,
- anon_sym_set,
- STATE(2985), 3,
- sym_string,
- sym__property_name,
- sym_computed_property_name,
- ACTIONS(3607), 19,
- anon_sym_export,
- anon_sym_type,
- anon_sym_namespace,
- anon_sym_let,
- anon_sym_async,
- anon_sym_new,
- sym_identifier,
- anon_sym_static,
- anon_sym_declare,
- anon_sym_public,
- anon_sym_private,
- anon_sym_protected,
- anon_sym_module,
- anon_sym_any,
- anon_sym_number,
- anon_sym_boolean,
- anon_sym_string,
- anon_sym_symbol,
- anon_sym_object,
- [109701] = 9,
- ACTIONS(1506), 1,
- anon_sym_DQUOTE,
- ACTIONS(1508), 1,
- anon_sym_SQUOTE,
- ACTIONS(4634), 1,
- anon_sym_LBRACK,
- ACTIONS(6112), 1,
- anon_sym_RBRACE,
- STATE(5481), 1,
- sym_enum_assignment,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(6090), 2,
- sym_number,
- sym_private_property_identifier,
- STATE(4532), 3,
- sym_string,
- sym__property_name,
- sym_computed_property_name,
- ACTIONS(2307), 23,
- anon_sym_export,
- anon_sym_type,
- anon_sym_namespace,
- anon_sym_let,
- anon_sym_async,
- anon_sym_new,
- sym_identifier,
- anon_sym_static,
- anon_sym_readonly,
- anon_sym_get,
- anon_sym_set,
- anon_sym_declare,
- anon_sym_public,
- anon_sym_private,
- anon_sym_protected,
- anon_sym_override,
- anon_sym_module,
- anon_sym_any,
- anon_sym_number,
- anon_sym_boolean,
- anon_sym_string,
- anon_sym_symbol,
- anon_sym_object,
- [109755] = 9,
- ACTIONS(1506), 1,
- anon_sym_DQUOTE,
- ACTIONS(1508), 1,
- anon_sym_SQUOTE,
- ACTIONS(4634), 1,
- anon_sym_LBRACK,
- ACTIONS(6114), 1,
- anon_sym_RBRACE,
- STATE(5481), 1,
- sym_enum_assignment,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(6090), 2,
- sym_number,
- sym_private_property_identifier,
- STATE(4532), 3,
- sym_string,
- sym__property_name,
- sym_computed_property_name,
- ACTIONS(2307), 23,
- anon_sym_export,
- anon_sym_type,
- anon_sym_namespace,
- anon_sym_let,
- anon_sym_async,
- anon_sym_new,
- sym_identifier,
- anon_sym_static,
- anon_sym_readonly,
- anon_sym_get,
- anon_sym_set,
- anon_sym_declare,
- anon_sym_public,
- anon_sym_private,
- anon_sym_protected,
- anon_sym_override,
- anon_sym_module,
- anon_sym_any,
- anon_sym_number,
- anon_sym_boolean,
- anon_sym_string,
- anon_sym_symbol,
- anon_sym_object,
- [109809] = 22,
- ACTIONS(99), 1,
- anon_sym_AT,
- ACTIONS(2339), 1,
- anon_sym_type,
- ACTIONS(2341), 1,
- anon_sym_namespace,
- ACTIONS(2343), 1,
- anon_sym_import,
- ACTIONS(2345), 1,
- anon_sym_var,
- ACTIONS(2347), 1,
- anon_sym_let,
- ACTIONS(2349), 1,
- anon_sym_const,
- ACTIONS(2351), 1,
- anon_sym_class,
- ACTIONS(2353), 1,
- anon_sym_async,
- ACTIONS(2355), 1,
- anon_sym_function,
- ACTIONS(2357), 1,
- anon_sym_declare,
- ACTIONS(2361), 1,
- anon_sym_abstract,
- ACTIONS(2365), 1,
- anon_sym_interface,
- ACTIONS(2367), 1,
- anon_sym_enum,
- ACTIONS(3745), 1,
- anon_sym_module,
- ACTIONS(6116), 1,
- anon_sym_default,
- STATE(1244), 1,
- sym_decorator,
- STATE(3937), 1,
- sym_declaration,
- STATE(4333), 1,
- aux_sym_export_statement_repeat1,
- STATE(4343), 1,
- sym_internal_module,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- STATE(4336), 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,
- [109889] = 22,
- ACTIONS(99), 1,
- anon_sym_AT,
- ACTIONS(2339), 1,
- anon_sym_type,
- ACTIONS(2341), 1,
- anon_sym_namespace,
- ACTIONS(2343), 1,
- anon_sym_import,
- ACTIONS(2345), 1,
- anon_sym_var,
- ACTIONS(2347), 1,
- anon_sym_let,
- ACTIONS(2349), 1,
- anon_sym_const,
- ACTIONS(2351), 1,
- anon_sym_class,
- ACTIONS(2353), 1,
- anon_sym_async,
- ACTIONS(2355), 1,
- anon_sym_function,
- ACTIONS(2357), 1,
- anon_sym_declare,
- ACTIONS(2359), 1,
- anon_sym_module,
- ACTIONS(2361), 1,
- anon_sym_abstract,
- ACTIONS(2363), 1,
- anon_sym_global,
- ACTIONS(2365), 1,
- anon_sym_interface,
- ACTIONS(2367), 1,
- anon_sym_enum,
- STATE(1244), 1,
- sym_decorator,
- STATE(4333), 1,
- aux_sym_export_statement_repeat1,
- STATE(4343), 1,
- sym_internal_module,
- STATE(4369), 1,
- sym_declaration,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- STATE(4336), 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,
- [109969] = 14,
- ACTIONS(2275), 1,
- anon_sym_DQUOTE,
- ACTIONS(2277), 1,
- anon_sym_SQUOTE,
- ACTIONS(2309), 1,
- anon_sym_async,
- ACTIONS(2311), 1,
- anon_sym_readonly,
- ACTIONS(2315), 1,
- anon_sym_override,
- ACTIONS(4634), 1,
- anon_sym_LBRACK,
- ACTIONS(5091), 1,
- anon_sym_STAR,
- ACTIONS(6118), 1,
- anon_sym_static,
- STATE(2719), 1,
- sym_override_modifier,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(2285), 2,
- sym_number,
- sym_private_property_identifier,
- ACTIONS(2313), 2,
- anon_sym_get,
- anon_sym_set,
- STATE(3788), 3,
- sym_string,
- sym__property_name,
- sym_computed_property_name,
- ACTIONS(2307), 17,
- anon_sym_export,
- anon_sym_type,
- anon_sym_namespace,
- anon_sym_let,
- anon_sym_new,
- sym_identifier,
- anon_sym_declare,
- anon_sym_public,
- anon_sym_private,
- anon_sym_protected,
- anon_sym_module,
- anon_sym_any,
- anon_sym_number,
- anon_sym_boolean,
- anon_sym_string,
- anon_sym_symbol,
- anon_sym_object,
- [110033] = 22,
- ACTIONS(99), 1,
- anon_sym_AT,
- ACTIONS(2231), 1,
- anon_sym_import,
- ACTIONS(2233), 1,
- anon_sym_var,
- ACTIONS(2235), 1,
- anon_sym_let,
- ACTIONS(2237), 1,
- anon_sym_const,
- ACTIONS(2242), 1,
- anon_sym_class,
- ACTIONS(2244), 1,
- anon_sym_async,
- ACTIONS(2246), 1,
- anon_sym_function,
- ACTIONS(2255), 1,
- anon_sym_abstract,
- ACTIONS(2257), 1,
- anon_sym_interface,
- ACTIONS(2259), 1,
- anon_sym_enum,
- ACTIONS(2289), 1,
- anon_sym_type,
- ACTIONS(2293), 1,
- anon_sym_global,
- ACTIONS(2301), 1,
- anon_sym_namespace,
- ACTIONS(2303), 1,
- anon_sym_declare,
- ACTIONS(2317), 1,
- anon_sym_module,
- STATE(819), 1,
- sym_declaration,
- STATE(860), 1,
- sym_internal_module,
- STATE(1244), 1,
- sym_decorator,
- STATE(4270), 1,
- aux_sym_export_statement_repeat1,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- STATE(861), 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,
- [110113] = 22,
- ACTIONS(99), 1,
- anon_sym_AT,
- ACTIONS(2227), 1,
- anon_sym_namespace,
- ACTIONS(2231), 1,
- anon_sym_import,
- ACTIONS(2233), 1,
- anon_sym_var,
- ACTIONS(2235), 1,
- anon_sym_let,
- ACTIONS(2237), 1,
- anon_sym_const,
- ACTIONS(2242), 1,
- anon_sym_class,
- ACTIONS(2244), 1,
- anon_sym_async,
- ACTIONS(2246), 1,
- anon_sym_function,
- ACTIONS(2251), 1,
- anon_sym_declare,
- ACTIONS(2255), 1,
- anon_sym_abstract,
- ACTIONS(2257), 1,
- anon_sym_interface,
- ACTIONS(2259), 1,
- anon_sym_enum,
- ACTIONS(2289), 1,
- anon_sym_type,
- ACTIONS(2291), 1,
- anon_sym_module,
- ACTIONS(2293), 1,
- anon_sym_global,
- STATE(819), 1,
- sym_declaration,
- STATE(860), 1,
- sym_internal_module,
- STATE(1244), 1,
- sym_decorator,
- STATE(4270), 1,
- aux_sym_export_statement_repeat1,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- STATE(861), 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,
- [110193] = 22,
- ACTIONS(99), 1,
- anon_sym_AT,
- ACTIONS(2231), 1,
- anon_sym_import,
- ACTIONS(2233), 1,
- anon_sym_var,
- ACTIONS(2235), 1,
- anon_sym_let,
- ACTIONS(2237), 1,
- anon_sym_const,
- ACTIONS(2242), 1,
- anon_sym_class,
- ACTIONS(2244), 1,
- anon_sym_async,
- ACTIONS(2246), 1,
- anon_sym_function,
- ACTIONS(2255), 1,
- anon_sym_abstract,
- ACTIONS(2257), 1,
- anon_sym_interface,
- ACTIONS(2259), 1,
- anon_sym_enum,
- ACTIONS(2289), 1,
- anon_sym_type,
- ACTIONS(2301), 1,
- anon_sym_namespace,
- ACTIONS(2303), 1,
- anon_sym_declare,
- ACTIONS(2305), 1,
- anon_sym_module,
- ACTIONS(6120), 1,
- anon_sym_default,
- STATE(860), 1,
- sym_internal_module,
- STATE(863), 1,
- sym_declaration,
- STATE(1244), 1,
- sym_decorator,
- STATE(4270), 1,
- aux_sym_export_statement_repeat1,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- STATE(861), 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,
- [110273] = 9,
- ACTIONS(1506), 1,
- anon_sym_DQUOTE,
- ACTIONS(1508), 1,
- anon_sym_SQUOTE,
- ACTIONS(4634), 1,
- anon_sym_LBRACK,
- ACTIONS(6122), 1,
- anon_sym_RBRACE,
- STATE(4820), 1,
- sym_enum_assignment,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(6124), 2,
- sym_number,
- sym_private_property_identifier,
- STATE(4023), 3,
- sym_string,
- sym__property_name,
- sym_computed_property_name,
- ACTIONS(2307), 23,
- anon_sym_export,
- anon_sym_type,
- anon_sym_namespace,
- anon_sym_let,
- anon_sym_async,
- anon_sym_new,
- sym_identifier,
- anon_sym_static,
- anon_sym_readonly,
- anon_sym_get,
- anon_sym_set,
- anon_sym_declare,
- anon_sym_public,
- anon_sym_private,
- anon_sym_protected,
- anon_sym_override,
- anon_sym_module,
- anon_sym_any,
- anon_sym_number,
- anon_sym_boolean,
- anon_sym_string,
- anon_sym_symbol,
- anon_sym_object,
- [110327] = 14,
- ACTIONS(1594), 1,
- anon_sym_DQUOTE,
- ACTIONS(1596), 1,
- anon_sym_SQUOTE,
- ACTIONS(3633), 1,
- anon_sym_override,
- ACTIONS(4241), 1,
- anon_sym_STAR,
- ACTIONS(4245), 1,
- anon_sym_LBRACK,
- ACTIONS(4247), 1,
- anon_sym_async,
- ACTIONS(4251), 1,
- anon_sym_readonly,
- ACTIONS(6126), 1,
- anon_sym_static,
- STATE(2701), 1,
- sym_override_modifier,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(4249), 2,
- sym_number,
- sym_private_property_identifier,
- ACTIONS(4253), 2,
- anon_sym_get,
- anon_sym_set,
- STATE(3081), 3,
- sym_string,
- sym__property_name,
- sym_computed_property_name,
- ACTIONS(3607), 17,
- anon_sym_export,
- anon_sym_type,
- anon_sym_namespace,
- anon_sym_let,
- anon_sym_new,
- sym_identifier,
- anon_sym_declare,
- anon_sym_public,
- anon_sym_private,
- anon_sym_protected,
- anon_sym_module,
- anon_sym_any,
- anon_sym_number,
- anon_sym_boolean,
- anon_sym_string,
- anon_sym_symbol,
- anon_sym_object,
- [110391] = 9,
- ACTIONS(1506), 1,
- anon_sym_DQUOTE,
- ACTIONS(1508), 1,
- anon_sym_SQUOTE,
- ACTIONS(4634), 1,
- anon_sym_LBRACK,
- ACTIONS(6128), 1,
- anon_sym_RBRACE,
- STATE(5481), 1,
- sym_enum_assignment,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(6090), 2,
- sym_number,
- sym_private_property_identifier,
- STATE(4532), 3,
- sym_string,
- sym__property_name,
- sym_computed_property_name,
- ACTIONS(2307), 23,
- anon_sym_export,
- anon_sym_type,
- anon_sym_namespace,
- anon_sym_let,
- anon_sym_async,
- anon_sym_new,
- sym_identifier,
- anon_sym_static,
- anon_sym_readonly,
- anon_sym_get,
- anon_sym_set,
- anon_sym_declare,
- anon_sym_public,
- anon_sym_private,
- anon_sym_protected,
- anon_sym_override,
- anon_sym_module,
- anon_sym_any,
- anon_sym_number,
- anon_sym_boolean,
- anon_sym_string,
- anon_sym_symbol,
- anon_sym_object,
- [110445] = 22,
- ACTIONS(99), 1,
- anon_sym_AT,
- ACTIONS(2227), 1,
- anon_sym_namespace,
- ACTIONS(2231), 1,
- anon_sym_import,
- ACTIONS(2233), 1,
- anon_sym_var,
- ACTIONS(2235), 1,
- anon_sym_let,
- ACTIONS(2237), 1,
- anon_sym_const,
- ACTIONS(2242), 1,
- anon_sym_class,
- ACTIONS(2244), 1,
- anon_sym_async,
- ACTIONS(2246), 1,
- anon_sym_function,
- ACTIONS(2251), 1,
- anon_sym_declare,
- ACTIONS(2253), 1,
- anon_sym_module,
- ACTIONS(2255), 1,
- anon_sym_abstract,
- ACTIONS(2257), 1,
- anon_sym_interface,
- ACTIONS(2259), 1,
- anon_sym_enum,
- ACTIONS(2289), 1,
- anon_sym_type,
- ACTIONS(6130), 1,
- anon_sym_default,
- STATE(860), 1,
- sym_internal_module,
- STATE(863), 1,
- sym_declaration,
- STATE(1244), 1,
- sym_decorator,
- STATE(4270), 1,
- aux_sym_export_statement_repeat1,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- STATE(861), 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,
- [110525] = 9,
- ACTIONS(1506), 1,
- anon_sym_DQUOTE,
- ACTIONS(1508), 1,
- anon_sym_SQUOTE,
- ACTIONS(4634), 1,
- anon_sym_LBRACK,
- ACTIONS(6132), 1,
- anon_sym_RBRACE,
- STATE(5481), 1,
- sym_enum_assignment,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(6090), 2,
- sym_number,
- sym_private_property_identifier,
- STATE(4532), 3,
- sym_string,
- sym__property_name,
- sym_computed_property_name,
- ACTIONS(2307), 23,
- anon_sym_export,
- anon_sym_type,
- anon_sym_namespace,
- anon_sym_let,
- anon_sym_async,
- anon_sym_new,
- sym_identifier,
- anon_sym_static,
- anon_sym_readonly,
- anon_sym_get,
- anon_sym_set,
- anon_sym_declare,
- anon_sym_public,
- anon_sym_private,
- anon_sym_protected,
- anon_sym_override,
- anon_sym_module,
- anon_sym_any,
- anon_sym_number,
- anon_sym_boolean,
- anon_sym_string,
- anon_sym_symbol,
- anon_sym_object,
- [110579] = 22,
- ACTIONS(99), 1,
- anon_sym_AT,
- ACTIONS(2227), 1,
- anon_sym_namespace,
- ACTIONS(2231), 1,
- anon_sym_import,
- ACTIONS(2233), 1,
- anon_sym_var,
- ACTIONS(2235), 1,
- anon_sym_let,
- ACTIONS(2237), 1,
- anon_sym_const,
- ACTIONS(2242), 1,
- anon_sym_class,
- ACTIONS(2244), 1,
- anon_sym_async,
- ACTIONS(2246), 1,
- anon_sym_function,
- ACTIONS(2251), 1,
- anon_sym_declare,
- ACTIONS(2253), 1,
- anon_sym_module,
- ACTIONS(2255), 1,
- anon_sym_abstract,
- ACTIONS(2257), 1,
- anon_sym_interface,
- ACTIONS(2259), 1,
- anon_sym_enum,
- ACTIONS(2289), 1,
- anon_sym_type,
- ACTIONS(6134), 1,
- anon_sym_default,
- STATE(860), 1,
- sym_internal_module,
- STATE(863), 1,
- sym_declaration,
- STATE(1244), 1,
- sym_decorator,
- STATE(4270), 1,
- aux_sym_export_statement_repeat1,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- STATE(861), 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,
- [110659] = 9,
- ACTIONS(1506), 1,
- anon_sym_DQUOTE,
- ACTIONS(1508), 1,
- anon_sym_SQUOTE,
- ACTIONS(4634), 1,
- anon_sym_LBRACK,
- ACTIONS(6136), 1,
- anon_sym_RBRACE,
- STATE(5481), 1,
- sym_enum_assignment,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(6090), 2,
- sym_number,
- sym_private_property_identifier,
- STATE(4532), 3,
- sym_string,
- sym__property_name,
- sym_computed_property_name,
- ACTIONS(2307), 23,
- anon_sym_export,
- anon_sym_type,
- anon_sym_namespace,
- anon_sym_let,
- anon_sym_async,
- anon_sym_new,
- sym_identifier,
- anon_sym_static,
- anon_sym_readonly,
- anon_sym_get,
- anon_sym_set,
- anon_sym_declare,
- anon_sym_public,
- anon_sym_private,
- anon_sym_protected,
- anon_sym_override,
- anon_sym_module,
- anon_sym_any,
- anon_sym_number,
- anon_sym_boolean,
- anon_sym_string,
- anon_sym_symbol,
- anon_sym_object,
- [110713] = 9,
- ACTIONS(1506), 1,
- anon_sym_DQUOTE,
- ACTIONS(1508), 1,
- anon_sym_SQUOTE,
- ACTIONS(4634), 1,
- anon_sym_LBRACK,
- ACTIONS(6138), 1,
- anon_sym_RBRACE,
- STATE(5481), 1,
- sym_enum_assignment,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(6090), 2,
- sym_number,
- sym_private_property_identifier,
- STATE(4532), 3,
- sym_string,
- sym__property_name,
- sym_computed_property_name,
- ACTIONS(2307), 23,
- anon_sym_export,
- anon_sym_type,
- anon_sym_namespace,
- anon_sym_let,
- anon_sym_async,
- anon_sym_new,
- sym_identifier,
- anon_sym_static,
- anon_sym_readonly,
- anon_sym_get,
- anon_sym_set,
- anon_sym_declare,
- anon_sym_public,
- anon_sym_private,
- anon_sym_protected,
- anon_sym_override,
- anon_sym_module,
- anon_sym_any,
- anon_sym_number,
- anon_sym_boolean,
- anon_sym_string,
- anon_sym_symbol,
- anon_sym_object,
- [110767] = 9,
- ACTIONS(1506), 1,
- anon_sym_DQUOTE,
- ACTIONS(1508), 1,
- anon_sym_SQUOTE,
- ACTIONS(4634), 1,
- anon_sym_LBRACK,
- ACTIONS(6140), 1,
- anon_sym_RBRACE,
- STATE(5481), 1,
- sym_enum_assignment,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(6090), 2,
- sym_number,
- sym_private_property_identifier,
- STATE(4532), 3,
- sym_string,
- sym__property_name,
- sym_computed_property_name,
- ACTIONS(2307), 23,
- anon_sym_export,
- anon_sym_type,
- anon_sym_namespace,
- anon_sym_let,
- anon_sym_async,
- anon_sym_new,
- sym_identifier,
- anon_sym_static,
- anon_sym_readonly,
- anon_sym_get,
- anon_sym_set,
- anon_sym_declare,
- anon_sym_public,
- anon_sym_private,
- anon_sym_protected,
- anon_sym_override,
- anon_sym_module,
- anon_sym_any,
- anon_sym_number,
- anon_sym_boolean,
- anon_sym_string,
- anon_sym_symbol,
- anon_sym_object,
- [110821] = 11,
- ACTIONS(1594), 1,
- anon_sym_DQUOTE,
- ACTIONS(1596), 1,
- anon_sym_SQUOTE,
- ACTIONS(4245), 1,
- anon_sym_LBRACK,
- ACTIONS(5241), 1,
- anon_sym_STAR,
- ACTIONS(5243), 1,
- anon_sym_async,
- ACTIONS(6144), 1,
- anon_sym_readonly,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(5249), 2,
- anon_sym_get,
- anon_sym_set,
- ACTIONS(6142), 2,
- sym_number,
- sym_private_property_identifier,
- STATE(2976), 3,
- sym_string,
- sym__property_name,
- sym_computed_property_name,
- ACTIONS(3607), 19,
- anon_sym_export,
- anon_sym_type,
- anon_sym_namespace,
- anon_sym_let,
- anon_sym_new,
- sym_identifier,
- anon_sym_static,
- anon_sym_declare,
- anon_sym_public,
- anon_sym_private,
- anon_sym_protected,
- anon_sym_override,
- anon_sym_module,
- anon_sym_any,
- anon_sym_number,
- anon_sym_boolean,
- anon_sym_string,
- anon_sym_symbol,
- anon_sym_object,
- [110878] = 11,
- ACTIONS(2275), 1,
- anon_sym_DQUOTE,
- ACTIONS(2277), 1,
- anon_sym_SQUOTE,
- ACTIONS(4634), 1,
- anon_sym_LBRACK,
- ACTIONS(6055), 1,
- anon_sym_STAR,
- ACTIONS(6061), 1,
- anon_sym_async,
- ACTIONS(6146), 1,
- anon_sym_readonly,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(6057), 2,
- sym_number,
- sym_private_property_identifier,
- ACTIONS(6059), 2,
- anon_sym_get,
- anon_sym_set,
- STATE(3852), 3,
- sym_string,
- sym__property_name,
- sym_computed_property_name,
- ACTIONS(2307), 19,
- anon_sym_export,
- anon_sym_type,
- anon_sym_namespace,
- anon_sym_let,
- anon_sym_new,
- sym_identifier,
- anon_sym_static,
- anon_sym_declare,
- anon_sym_public,
- anon_sym_private,
- anon_sym_protected,
- anon_sym_override,
- anon_sym_module,
- anon_sym_any,
- anon_sym_number,
- anon_sym_boolean,
- anon_sym_string,
- anon_sym_symbol,
- anon_sym_object,
- [110935] = 3,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(3578), 7,
- anon_sym_STAR,
- anon_sym_LBRACK,
- anon_sym_DQUOTE,
- anon_sym_SQUOTE,
- sym_number,
- sym_private_property_identifier,
- anon_sym_AT,
- ACTIONS(3576), 25,
- anon_sym_export,
- anon_sym_type,
- anon_sym_namespace,
- anon_sym_let,
- anon_sym_async,
- anon_sym_new,
- sym_identifier,
- anon_sym_static,
- anon_sym_readonly,
- anon_sym_get,
- anon_sym_set,
- anon_sym_declare,
- anon_sym_public,
- anon_sym_private,
- anon_sym_protected,
- anon_sym_override,
- anon_sym_module,
- anon_sym_any,
- anon_sym_number,
- anon_sym_boolean,
- anon_sym_string,
- anon_sym_symbol,
- anon_sym_object,
- anon_sym_abstract,
- anon_sym_accessor,
- [110976] = 11,
- ACTIONS(1594), 1,
- anon_sym_DQUOTE,
- ACTIONS(1596), 1,
- anon_sym_SQUOTE,
- ACTIONS(4245), 1,
- anon_sym_LBRACK,
- ACTIONS(4827), 1,
- anon_sym_STAR,
- ACTIONS(4831), 1,
- anon_sym_async,
- ACTIONS(4835), 1,
- anon_sym_readonly,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(4833), 2,
- sym_number,
- sym_private_property_identifier,
- ACTIONS(4837), 2,
- anon_sym_get,
- anon_sym_set,
- STATE(2980), 3,
- sym_string,
- sym__property_name,
- sym_computed_property_name,
- ACTIONS(3607), 19,
- anon_sym_export,
- anon_sym_type,
- anon_sym_namespace,
- anon_sym_let,
- anon_sym_new,
- sym_identifier,
- anon_sym_static,
- anon_sym_declare,
- anon_sym_public,
- anon_sym_private,
- anon_sym_protected,
- anon_sym_override,
- anon_sym_module,
- anon_sym_any,
- anon_sym_number,
- anon_sym_boolean,
- anon_sym_string,
- anon_sym_symbol,
- anon_sym_object,
- [111033] = 11,
- ACTIONS(1594), 1,
- anon_sym_DQUOTE,
- ACTIONS(1596), 1,
- anon_sym_SQUOTE,
- ACTIONS(4245), 1,
- anon_sym_LBRACK,
- ACTIONS(5167), 1,
- anon_sym_STAR,
- ACTIONS(5169), 1,
- anon_sym_async,
- ACTIONS(6150), 1,
- anon_sym_readonly,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(5175), 2,
- anon_sym_get,
- anon_sym_set,
- ACTIONS(6148), 2,
- sym_number,
- sym_private_property_identifier,
- STATE(2990), 3,
- sym_string,
- sym__property_name,
- sym_computed_property_name,
- ACTIONS(3607), 19,
- anon_sym_export,
- anon_sym_type,
- anon_sym_namespace,
- anon_sym_let,
- anon_sym_new,
- sym_identifier,
- anon_sym_static,
- anon_sym_declare,
- anon_sym_public,
- anon_sym_private,
- anon_sym_protected,
- anon_sym_override,
- anon_sym_module,
- anon_sym_any,
- anon_sym_number,
- anon_sym_boolean,
- anon_sym_string,
- anon_sym_symbol,
- anon_sym_object,
- [111090] = 11,
- ACTIONS(1594), 1,
- anon_sym_DQUOTE,
- ACTIONS(1596), 1,
- anon_sym_SQUOTE,
- ACTIONS(4245), 1,
- anon_sym_LBRACK,
- ACTIONS(5157), 1,
- anon_sym_STAR,
- ACTIONS(5159), 1,
- anon_sym_async,
- ACTIONS(5163), 1,
- anon_sym_readonly,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(5161), 2,
- sym_number,
- sym_private_property_identifier,
- ACTIONS(5165), 2,
- anon_sym_get,
- anon_sym_set,
- STATE(2964), 3,
- sym_string,
- sym__property_name,
- sym_computed_property_name,
- ACTIONS(3607), 19,
- anon_sym_export,
- anon_sym_type,
- anon_sym_namespace,
- anon_sym_let,
- anon_sym_new,
- sym_identifier,
- anon_sym_static,
- anon_sym_declare,
- anon_sym_public,
- anon_sym_private,
- anon_sym_protected,
- anon_sym_override,
- anon_sym_module,
- anon_sym_any,
- anon_sym_number,
- anon_sym_boolean,
- anon_sym_string,
- anon_sym_symbol,
- anon_sym_object,
- [111147] = 11,
- ACTIONS(1594), 1,
- anon_sym_DQUOTE,
- ACTIONS(1596), 1,
- anon_sym_SQUOTE,
- ACTIONS(4245), 1,
- anon_sym_LBRACK,
- ACTIONS(5311), 1,
- anon_sym_STAR,
- ACTIONS(5313), 1,
- anon_sym_async,
- ACTIONS(5317), 1,
- anon_sym_readonly,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(5315), 2,
- sym_number,
- sym_private_property_identifier,
- ACTIONS(5319), 2,
- anon_sym_get,
- anon_sym_set,
- STATE(3074), 3,
- sym_string,
- sym__property_name,
- sym_computed_property_name,
- ACTIONS(3607), 19,
- anon_sym_export,
- anon_sym_type,
- anon_sym_namespace,
- anon_sym_let,
- anon_sym_new,
- sym_identifier,
- anon_sym_static,
- anon_sym_declare,
- anon_sym_public,
- anon_sym_private,
- anon_sym_protected,
- anon_sym_override,
- anon_sym_module,
- anon_sym_any,
- anon_sym_number,
- anon_sym_boolean,
- anon_sym_string,
- anon_sym_symbol,
- anon_sym_object,
- [111204] = 11,
- ACTIONS(1594), 1,
- anon_sym_DQUOTE,
- ACTIONS(1596), 1,
- anon_sym_SQUOTE,
- ACTIONS(4245), 1,
- anon_sym_LBRACK,
- ACTIONS(5181), 1,
- anon_sym_STAR,
- ACTIONS(5183), 1,
- anon_sym_async,
- ACTIONS(5187), 1,
- anon_sym_readonly,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(5185), 2,
- sym_number,
- sym_private_property_identifier,
- ACTIONS(5189), 2,
- anon_sym_get,
- anon_sym_set,
- STATE(3057), 3,
- sym_string,
- sym__property_name,
- sym_computed_property_name,
- ACTIONS(3607), 19,
- anon_sym_export,
- anon_sym_type,
- anon_sym_namespace,
- anon_sym_let,
- anon_sym_new,
- sym_identifier,
- anon_sym_static,
- anon_sym_declare,
- anon_sym_public,
- anon_sym_private,
- anon_sym_protected,
- anon_sym_override,
- anon_sym_module,
- anon_sym_any,
- anon_sym_number,
- anon_sym_boolean,
- anon_sym_string,
- anon_sym_symbol,
- anon_sym_object,
- [111261] = 3,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(3570), 7,
- anon_sym_STAR,
- anon_sym_LBRACK,
- anon_sym_DQUOTE,
- anon_sym_SQUOTE,
- sym_number,
- sym_private_property_identifier,
- anon_sym_AT,
- ACTIONS(3568), 25,
- anon_sym_export,
- anon_sym_type,
- anon_sym_namespace,
- anon_sym_let,
- anon_sym_async,
- anon_sym_new,
- sym_identifier,
- anon_sym_static,
- anon_sym_readonly,
- anon_sym_get,
- anon_sym_set,
- anon_sym_declare,
- anon_sym_public,
- anon_sym_private,
- anon_sym_protected,
- anon_sym_override,
- anon_sym_module,
- anon_sym_any,
- anon_sym_number,
- anon_sym_boolean,
- anon_sym_string,
- anon_sym_symbol,
- anon_sym_object,
- anon_sym_abstract,
- anon_sym_accessor,
- [111302] = 3,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(3490), 7,
- anon_sym_STAR,
- anon_sym_LBRACK,
- anon_sym_DQUOTE,
- anon_sym_SQUOTE,
- sym_number,
- sym_private_property_identifier,
- anon_sym_AT,
- ACTIONS(3488), 25,
- anon_sym_export,
- anon_sym_type,
- anon_sym_namespace,
- anon_sym_let,
- anon_sym_async,
- anon_sym_new,
- sym_identifier,
- anon_sym_static,
- anon_sym_readonly,
- anon_sym_get,
- anon_sym_set,
- anon_sym_declare,
- anon_sym_public,
- anon_sym_private,
- anon_sym_protected,
- anon_sym_override,
- anon_sym_module,
- anon_sym_any,
- anon_sym_number,
- anon_sym_boolean,
- anon_sym_string,
- anon_sym_symbol,
- anon_sym_object,
- anon_sym_abstract,
- anon_sym_accessor,
- [111343] = 11,
- ACTIONS(1594), 1,
- anon_sym_DQUOTE,
- ACTIONS(1596), 1,
- anon_sym_SQUOTE,
- ACTIONS(4245), 1,
- anon_sym_LBRACK,
- ACTIONS(5530), 1,
- anon_sym_STAR,
- ACTIONS(5536), 1,
- anon_sym_async,
- ACTIONS(6152), 1,
- anon_sym_readonly,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(5538), 2,
- sym_number,
- sym_private_property_identifier,
- ACTIONS(5540), 2,
- anon_sym_get,
- anon_sym_set,
- STATE(2966), 3,
- sym_string,
- sym__property_name,
- sym_computed_property_name,
- ACTIONS(3607), 19,
- anon_sym_export,
- anon_sym_type,
- anon_sym_namespace,
- anon_sym_let,
- anon_sym_new,
- sym_identifier,
- anon_sym_static,
- anon_sym_declare,
- anon_sym_public,
- anon_sym_private,
- anon_sym_protected,
- anon_sym_override,
- anon_sym_module,
- anon_sym_any,
- anon_sym_number,
- anon_sym_boolean,
- anon_sym_string,
- anon_sym_symbol,
- anon_sym_object,
- [111400] = 11,
- ACTIONS(1594), 1,
- anon_sym_DQUOTE,
- ACTIONS(1596), 1,
- anon_sym_SQUOTE,
- ACTIONS(4245), 1,
- anon_sym_LBRACK,
- ACTIONS(5542), 1,
- anon_sym_STAR,
- ACTIONS(5614), 1,
- anon_sym_async,
- ACTIONS(6156), 1,
- anon_sym_readonly,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(5618), 2,
- anon_sym_get,
- anon_sym_set,
- ACTIONS(6154), 2,
- sym_number,
- sym_private_property_identifier,
- STATE(2959), 3,
- sym_string,
- sym__property_name,
- sym_computed_property_name,
- ACTIONS(3607), 19,
- anon_sym_export,
- anon_sym_type,
- anon_sym_namespace,
- anon_sym_let,
- anon_sym_new,
- sym_identifier,
- anon_sym_static,
- anon_sym_declare,
- anon_sym_public,
- anon_sym_private,
- anon_sym_protected,
- anon_sym_override,
- anon_sym_module,
- anon_sym_any,
- anon_sym_number,
- anon_sym_boolean,
- anon_sym_string,
- anon_sym_symbol,
- anon_sym_object,
- [111457] = 9,
- ACTIONS(2275), 1,
- anon_sym_DQUOTE,
- ACTIONS(2277), 1,
- anon_sym_SQUOTE,
- ACTIONS(4634), 1,
- anon_sym_LBRACK,
- ACTIONS(6158), 1,
- anon_sym_STAR,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(5791), 2,
- sym_number,
- sym_private_property_identifier,
- ACTIONS(6160), 2,
- anon_sym_get,
- anon_sym_set,
- STATE(3840), 3,
- sym_string,
- sym__property_name,
- sym_computed_property_name,
- ACTIONS(2307), 21,
- anon_sym_export,
- anon_sym_type,
- anon_sym_namespace,
- anon_sym_let,
- anon_sym_async,
- anon_sym_new,
- sym_identifier,
- anon_sym_static,
- anon_sym_readonly,
- anon_sym_declare,
- anon_sym_public,
- anon_sym_private,
- anon_sym_protected,
- anon_sym_override,
- anon_sym_module,
- anon_sym_any,
- anon_sym_number,
- anon_sym_boolean,
- anon_sym_string,
- anon_sym_symbol,
- anon_sym_object,
- [111510] = 11,
- ACTIONS(1594), 1,
- anon_sym_DQUOTE,
- ACTIONS(1596), 1,
- anon_sym_SQUOTE,
- ACTIONS(4245), 1,
- anon_sym_LBRACK,
- ACTIONS(5241), 1,
- anon_sym_STAR,
- ACTIONS(5243), 1,
- anon_sym_async,
- ACTIONS(6164), 1,
- anon_sym_readonly,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(5249), 2,
- anon_sym_get,
- anon_sym_set,
- ACTIONS(6162), 2,
- sym_number,
- sym_private_property_identifier,
- STATE(2968), 3,
- sym_string,
- sym__property_name,
- sym_computed_property_name,
- ACTIONS(3607), 19,
- anon_sym_export,
- anon_sym_type,
- anon_sym_namespace,
- anon_sym_let,
- anon_sym_new,
- sym_identifier,
- anon_sym_static,
- anon_sym_declare,
- anon_sym_public,
- anon_sym_private,
- anon_sym_protected,
- anon_sym_override,
- anon_sym_module,
- anon_sym_any,
- anon_sym_number,
- anon_sym_boolean,
- anon_sym_string,
- anon_sym_symbol,
- anon_sym_object,
- [111567] = 3,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(3540), 7,
- anon_sym_STAR,
- anon_sym_LBRACK,
- anon_sym_DQUOTE,
- anon_sym_SQUOTE,
- sym_number,
- sym_private_property_identifier,
- anon_sym_AT,
- ACTIONS(3538), 25,
- anon_sym_export,
- anon_sym_type,
- anon_sym_namespace,
- anon_sym_let,
- anon_sym_async,
- anon_sym_new,
- sym_identifier,
- anon_sym_static,
- anon_sym_readonly,
- anon_sym_get,
- anon_sym_set,
- anon_sym_declare,
- anon_sym_public,
- anon_sym_private,
- anon_sym_protected,
- anon_sym_override,
- anon_sym_module,
- anon_sym_any,
- anon_sym_number,
- anon_sym_boolean,
- anon_sym_string,
- anon_sym_symbol,
- anon_sym_object,
- anon_sym_abstract,
- anon_sym_accessor,
- [111608] = 11,
- ACTIONS(1594), 1,
- anon_sym_DQUOTE,
- ACTIONS(1596), 1,
- anon_sym_SQUOTE,
- ACTIONS(4245), 1,
- anon_sym_LBRACK,
- ACTIONS(5560), 1,
- anon_sym_STAR,
- ACTIONS(5692), 1,
- anon_sym_async,
- ACTIONS(6166), 1,
- anon_sym_readonly,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(5694), 2,
- sym_number,
- sym_private_property_identifier,
- ACTIONS(5696), 2,
- anon_sym_get,
- anon_sym_set,
- STATE(3029), 3,
- sym_string,
- sym__property_name,
- sym_computed_property_name,
- ACTIONS(3607), 19,
- anon_sym_export,
- anon_sym_type,
- anon_sym_namespace,
- anon_sym_let,
- anon_sym_new,
- sym_identifier,
- anon_sym_static,
- anon_sym_declare,
- anon_sym_public,
- anon_sym_private,
- anon_sym_protected,
- anon_sym_override,
- anon_sym_module,
- anon_sym_any,
- anon_sym_number,
- anon_sym_boolean,
- anon_sym_string,
- anon_sym_symbol,
- anon_sym_object,
- [111665] = 11,
- ACTIONS(2275), 1,
- anon_sym_DQUOTE,
- ACTIONS(2277), 1,
- anon_sym_SQUOTE,
- ACTIONS(2309), 1,
- anon_sym_async,
- ACTIONS(2311), 1,
- anon_sym_readonly,
- ACTIONS(4634), 1,
- anon_sym_LBRACK,
- ACTIONS(5091), 1,
- anon_sym_STAR,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(2285), 2,
- sym_number,
- sym_private_property_identifier,
- ACTIONS(2313), 2,
- anon_sym_get,
- anon_sym_set,
- STATE(3788), 3,
- sym_string,
- sym__property_name,
- sym_computed_property_name,
- ACTIONS(2307), 19,
- anon_sym_export,
- anon_sym_type,
- anon_sym_namespace,
- anon_sym_let,
- anon_sym_new,
- sym_identifier,
- anon_sym_static,
- anon_sym_declare,
- anon_sym_public,
- anon_sym_private,
- anon_sym_protected,
- anon_sym_override,
- anon_sym_module,
- anon_sym_any,
- anon_sym_number,
- anon_sym_boolean,
- anon_sym_string,
- anon_sym_symbol,
- anon_sym_object,
- [111722] = 11,
- ACTIONS(1594), 1,
- anon_sym_DQUOTE,
- ACTIONS(1596), 1,
- anon_sym_SQUOTE,
- ACTIONS(4245), 1,
- anon_sym_LBRACK,
- ACTIONS(5255), 1,
- anon_sym_STAR,
- ACTIONS(5257), 1,
- anon_sym_async,
- ACTIONS(5261), 1,
- anon_sym_readonly,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(5259), 2,
- sym_number,
- sym_private_property_identifier,
- ACTIONS(5263), 2,
- anon_sym_get,
- anon_sym_set,
- STATE(3039), 3,
- sym_string,
- sym__property_name,
- sym_computed_property_name,
- ACTIONS(3607), 19,
- anon_sym_export,
- anon_sym_type,
- anon_sym_namespace,
- anon_sym_let,
- anon_sym_new,
- sym_identifier,
- anon_sym_static,
- anon_sym_declare,
- anon_sym_public,
- anon_sym_private,
- anon_sym_protected,
- anon_sym_override,
- anon_sym_module,
- anon_sym_any,
- anon_sym_number,
- anon_sym_boolean,
- anon_sym_string,
- anon_sym_symbol,
- anon_sym_object,
- [111779] = 9,
- ACTIONS(2275), 1,
- anon_sym_DQUOTE,
- ACTIONS(2277), 1,
- anon_sym_SQUOTE,
- ACTIONS(4634), 1,
- anon_sym_LBRACK,
- ACTIONS(6106), 1,
- anon_sym_STAR,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(5773), 2,
- sym_number,
- sym_private_property_identifier,
- ACTIONS(6168), 2,
- anon_sym_get,
- anon_sym_set,
- STATE(3897), 3,
- sym_string,
- sym__property_name,
- sym_computed_property_name,
- ACTIONS(2307), 21,
- anon_sym_export,
- anon_sym_type,
- anon_sym_namespace,
- anon_sym_let,
- anon_sym_async,
- anon_sym_new,
- sym_identifier,
- anon_sym_static,
- anon_sym_readonly,
- anon_sym_declare,
- anon_sym_public,
- anon_sym_private,
- anon_sym_protected,
- anon_sym_override,
- anon_sym_module,
- anon_sym_any,
- anon_sym_number,
- anon_sym_boolean,
- anon_sym_string,
- anon_sym_symbol,
- anon_sym_object,
- [111832] = 3,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(3524), 7,
- anon_sym_STAR,
- anon_sym_LBRACK,
- anon_sym_DQUOTE,
- anon_sym_SQUOTE,
- sym_number,
- sym_private_property_identifier,
- anon_sym_AT,
- ACTIONS(3522), 25,
- anon_sym_export,
- anon_sym_type,
- anon_sym_namespace,
- anon_sym_let,
- anon_sym_async,
- anon_sym_new,
- sym_identifier,
- anon_sym_static,
- anon_sym_readonly,
- anon_sym_get,
- anon_sym_set,
- anon_sym_declare,
- anon_sym_public,
- anon_sym_private,
- anon_sym_protected,
- anon_sym_override,
- anon_sym_module,
- anon_sym_any,
- anon_sym_number,
- anon_sym_boolean,
- anon_sym_string,
- anon_sym_symbol,
- anon_sym_object,
- anon_sym_abstract,
- anon_sym_accessor,
- [111873] = 11,
- ACTIONS(1594), 1,
- anon_sym_DQUOTE,
- ACTIONS(1596), 1,
- anon_sym_SQUOTE,
- ACTIONS(4245), 1,
- anon_sym_LBRACK,
- ACTIONS(5628), 1,
- anon_sym_STAR,
- ACTIONS(5634), 1,
- anon_sym_async,
- ACTIONS(6170), 1,
- anon_sym_readonly,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(5636), 2,
- sym_number,
- sym_private_property_identifier,
- ACTIONS(5638), 2,
- anon_sym_get,
- anon_sym_set,
- STATE(3038), 3,
- sym_string,
- sym__property_name,
- sym_computed_property_name,
- ACTIONS(3607), 19,
- anon_sym_export,
- anon_sym_type,
- anon_sym_namespace,
- anon_sym_let,
- anon_sym_new,
- sym_identifier,
- anon_sym_static,
- anon_sym_declare,
- anon_sym_public,
- anon_sym_private,
- anon_sym_protected,
- anon_sym_override,
- anon_sym_module,
- anon_sym_any,
- anon_sym_number,
- anon_sym_boolean,
- anon_sym_string,
- anon_sym_symbol,
- anon_sym_object,
- [111930] = 8,
- ACTIONS(1506), 1,
- anon_sym_DQUOTE,
- ACTIONS(1508), 1,
- anon_sym_SQUOTE,
- ACTIONS(4634), 1,
- anon_sym_LBRACK,
- STATE(5481), 1,
- sym_enum_assignment,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(6090), 2,
- sym_number,
- sym_private_property_identifier,
- STATE(4532), 3,
- sym_string,
- sym__property_name,
- sym_computed_property_name,
- ACTIONS(2307), 23,
- anon_sym_export,
- anon_sym_type,
- anon_sym_namespace,
- anon_sym_let,
- anon_sym_async,
- anon_sym_new,
- sym_identifier,
- anon_sym_static,
- anon_sym_readonly,
- anon_sym_get,
- anon_sym_set,
- anon_sym_declare,
- anon_sym_public,
- anon_sym_private,
- anon_sym_protected,
- anon_sym_override,
- anon_sym_module,
- anon_sym_any,
- anon_sym_number,
- anon_sym_boolean,
- anon_sym_string,
- anon_sym_symbol,
- anon_sym_object,
- [111981] = 11,
- ACTIONS(1594), 1,
- anon_sym_DQUOTE,
- ACTIONS(1596), 1,
- anon_sym_SQUOTE,
- ACTIONS(4241), 1,
- anon_sym_STAR,
- ACTIONS(4245), 1,
- anon_sym_LBRACK,
- ACTIONS(4247), 1,
- anon_sym_async,
- ACTIONS(4251), 1,
- anon_sym_readonly,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(4249), 2,
- sym_number,
- sym_private_property_identifier,
- ACTIONS(4253), 2,
- anon_sym_get,
- anon_sym_set,
- STATE(3081), 3,
- sym_string,
- sym__property_name,
- sym_computed_property_name,
- ACTIONS(3607), 19,
- anon_sym_export,
- anon_sym_type,
- anon_sym_namespace,
- anon_sym_let,
- anon_sym_new,
- sym_identifier,
- anon_sym_static,
- anon_sym_declare,
- anon_sym_public,
- anon_sym_private,
- anon_sym_protected,
- anon_sym_override,
- anon_sym_module,
- anon_sym_any,
- anon_sym_number,
- anon_sym_boolean,
- anon_sym_string,
- anon_sym_symbol,
- anon_sym_object,
- [112038] = 4,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(3743), 3,
- anon_sym_LPAREN,
- anon_sym_LT,
- anon_sym_QMARK,
- ACTIONS(2003), 6,
- anon_sym_STAR,
- anon_sym_LBRACK,
- anon_sym_DQUOTE,
- anon_sym_SQUOTE,
- sym_number,
- sym_private_property_identifier,
- ACTIONS(2001), 23,
- anon_sym_export,
- anon_sym_type,
- anon_sym_namespace,
- anon_sym_let,
- anon_sym_async,
- anon_sym_new,
- sym_identifier,
- anon_sym_static,
- anon_sym_readonly,
- anon_sym_get,
- anon_sym_set,
- anon_sym_declare,
- anon_sym_public,
- anon_sym_private,
- anon_sym_protected,
- anon_sym_override,
- anon_sym_module,
- anon_sym_any,
- anon_sym_number,
- anon_sym_boolean,
- anon_sym_string,
- anon_sym_symbol,
- anon_sym_object,
- [112081] = 11,
- ACTIONS(2275), 1,
- anon_sym_DQUOTE,
- ACTIONS(2277), 1,
- anon_sym_SQUOTE,
- ACTIONS(4634), 1,
- anon_sym_LBRACK,
- ACTIONS(5993), 1,
- anon_sym_STAR,
- ACTIONS(5995), 1,
- anon_sym_async,
- ACTIONS(5999), 1,
- anon_sym_readonly,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(5997), 2,
- sym_number,
- sym_private_property_identifier,
- ACTIONS(6001), 2,
- anon_sym_get,
- anon_sym_set,
- STATE(3850), 3,
- sym_string,
- sym__property_name,
- sym_computed_property_name,
- ACTIONS(2307), 19,
- anon_sym_export,
- anon_sym_type,
- anon_sym_namespace,
- anon_sym_let,
- anon_sym_new,
- sym_identifier,
- anon_sym_static,
- anon_sym_declare,
- anon_sym_public,
- anon_sym_private,
- anon_sym_protected,
- anon_sym_override,
- anon_sym_module,
- anon_sym_any,
- anon_sym_number,
- anon_sym_boolean,
- anon_sym_string,
- anon_sym_symbol,
- anon_sym_object,
- [112138] = 7,
- ACTIONS(2275), 1,
- anon_sym_DQUOTE,
- ACTIONS(2277), 1,
- anon_sym_SQUOTE,
- ACTIONS(4634), 1,
- anon_sym_LBRACK,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(5630), 2,
- sym_number,
- sym_private_property_identifier,
- STATE(3880), 3,
- sym_string,
- sym__property_name,
- sym_computed_property_name,
- ACTIONS(2307), 23,
- anon_sym_export,
- anon_sym_type,
- anon_sym_namespace,
- anon_sym_let,
- anon_sym_async,
- anon_sym_new,
- sym_identifier,
- anon_sym_static,
- anon_sym_readonly,
- anon_sym_get,
- anon_sym_set,
- anon_sym_declare,
- anon_sym_public,
- anon_sym_private,
- anon_sym_protected,
- anon_sym_override,
- anon_sym_module,
- anon_sym_any,
- anon_sym_number,
- anon_sym_boolean,
- anon_sym_string,
- anon_sym_symbol,
- anon_sym_object,
- [112186] = 7,
- ACTIONS(2275), 1,
- anon_sym_DQUOTE,
- ACTIONS(2277), 1,
- anon_sym_SQUOTE,
- ACTIONS(4634), 1,
- anon_sym_LBRACK,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(6029), 2,
- sym_number,
- sym_private_property_identifier,
- STATE(3725), 3,
- sym_string,
- sym__property_name,
- sym_computed_property_name,
- ACTIONS(2307), 23,
- anon_sym_export,
- anon_sym_type,
- anon_sym_namespace,
- anon_sym_let,
- anon_sym_async,
- anon_sym_new,
- sym_identifier,
- anon_sym_static,
- anon_sym_readonly,
- anon_sym_get,
- anon_sym_set,
- anon_sym_declare,
- anon_sym_public,
- anon_sym_private,
- anon_sym_protected,
- anon_sym_override,
- anon_sym_module,
- anon_sym_any,
- anon_sym_number,
- anon_sym_boolean,
- anon_sym_string,
- anon_sym_symbol,
- anon_sym_object,
- [112234] = 7,
- ACTIONS(2275), 1,
- anon_sym_DQUOTE,
- ACTIONS(2277), 1,
- anon_sym_SQUOTE,
- ACTIONS(4634), 1,
- anon_sym_LBRACK,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(5773), 2,
- sym_number,
- sym_private_property_identifier,
- STATE(3897), 3,
- sym_string,
- sym__property_name,
- sym_computed_property_name,
- ACTIONS(2307), 23,
- anon_sym_export,
- anon_sym_type,
- anon_sym_namespace,
- anon_sym_let,
- anon_sym_async,
- anon_sym_new,
- sym_identifier,
- anon_sym_static,
- anon_sym_readonly,
- anon_sym_get,
- anon_sym_set,
- anon_sym_declare,
- anon_sym_public,
- anon_sym_private,
- anon_sym_protected,
- anon_sym_override,
- anon_sym_module,
- anon_sym_any,
- anon_sym_number,
- anon_sym_boolean,
- anon_sym_string,
- anon_sym_symbol,
- anon_sym_object,
- [112282] = 8,
- ACTIONS(1594), 1,
- anon_sym_DQUOTE,
- ACTIONS(1596), 1,
- anon_sym_SQUOTE,
- ACTIONS(4245), 1,
- anon_sym_LBRACK,
- ACTIONS(6174), 1,
- anon_sym_readonly,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(6172), 2,
- sym_number,
- sym_private_property_identifier,
- STATE(3291), 3,
- sym_string,
- sym__property_name,
- sym_computed_property_name,
- ACTIONS(3607), 22,
- anon_sym_export,
- anon_sym_type,
- anon_sym_namespace,
- anon_sym_let,
- anon_sym_async,
- anon_sym_new,
- sym_identifier,
- anon_sym_static,
- anon_sym_get,
- anon_sym_set,
- anon_sym_declare,
- anon_sym_public,
- anon_sym_private,
- anon_sym_protected,
- anon_sym_override,
- anon_sym_module,
- anon_sym_any,
- anon_sym_number,
- anon_sym_boolean,
- anon_sym_string,
- anon_sym_symbol,
- anon_sym_object,
- [112332] = 7,
- ACTIONS(1594), 1,
- anon_sym_DQUOTE,
- ACTIONS(1596), 1,
- anon_sym_SQUOTE,
- ACTIONS(4245), 1,
- anon_sym_LBRACK,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(6176), 2,
- sym_number,
- sym_private_property_identifier,
- STATE(3324), 3,
- sym_string,
- sym__property_name,
- sym_computed_property_name,
- ACTIONS(3607), 23,
- anon_sym_export,
- anon_sym_type,
- anon_sym_namespace,
- anon_sym_let,
- anon_sym_async,
- anon_sym_new,
- sym_identifier,
- anon_sym_static,
- anon_sym_readonly,
- anon_sym_get,
- anon_sym_set,
- anon_sym_declare,
- anon_sym_public,
- anon_sym_private,
- anon_sym_protected,
- anon_sym_override,
- anon_sym_module,
- anon_sym_any,
- anon_sym_number,
- anon_sym_boolean,
- anon_sym_string,
- anon_sym_symbol,
- anon_sym_object,
- [112380] = 7,
- ACTIONS(1594), 1,
- anon_sym_DQUOTE,
- ACTIONS(1596), 1,
- anon_sym_SQUOTE,
- ACTIONS(4245), 1,
- anon_sym_LBRACK,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(6178), 2,
- sym_number,
- sym_private_property_identifier,
- STATE(3293), 3,
- sym_string,
- sym__property_name,
- sym_computed_property_name,
- ACTIONS(3607), 23,
- anon_sym_export,
- anon_sym_type,
- anon_sym_namespace,
- anon_sym_let,
- anon_sym_async,
- anon_sym_new,
- sym_identifier,
- anon_sym_static,
- anon_sym_readonly,
- anon_sym_get,
- anon_sym_set,
- anon_sym_declare,
- anon_sym_public,
- anon_sym_private,
- anon_sym_protected,
- anon_sym_override,
- anon_sym_module,
- anon_sym_any,
- anon_sym_number,
- anon_sym_boolean,
- anon_sym_string,
- anon_sym_symbol,
- anon_sym_object,
- [112428] = 7,
- ACTIONS(2275), 1,
- anon_sym_DQUOTE,
- ACTIONS(2277), 1,
- anon_sym_SQUOTE,
- ACTIONS(4634), 1,
- anon_sym_LBRACK,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(5532), 2,
- sym_number,
- sym_private_property_identifier,
- STATE(3798), 3,
- sym_string,
- sym__property_name,
- sym_computed_property_name,
- ACTIONS(2307), 23,
- anon_sym_export,
- anon_sym_type,
- anon_sym_namespace,
- anon_sym_let,
- anon_sym_async,
- anon_sym_new,
- sym_identifier,
- anon_sym_static,
- anon_sym_readonly,
- anon_sym_get,
- anon_sym_set,
- anon_sym_declare,
- anon_sym_public,
- anon_sym_private,
- anon_sym_protected,
- anon_sym_override,
- anon_sym_module,
- anon_sym_any,
- anon_sym_number,
- anon_sym_boolean,
- anon_sym_string,
- anon_sym_symbol,
- anon_sym_object,
- [112476] = 7,
- ACTIONS(2275), 1,
- anon_sym_DQUOTE,
- ACTIONS(2277), 1,
- anon_sym_SQUOTE,
- ACTIONS(4634), 1,
- anon_sym_LBRACK,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(6086), 2,
- sym_number,
- sym_private_property_identifier,
- STATE(3773), 3,
- sym_string,
- sym__property_name,
- sym_computed_property_name,
- ACTIONS(2307), 23,
- anon_sym_export,
- anon_sym_type,
- anon_sym_namespace,
- anon_sym_let,
- anon_sym_async,
- anon_sym_new,
- sym_identifier,
- anon_sym_static,
- anon_sym_readonly,
- anon_sym_get,
- anon_sym_set,
- anon_sym_declare,
- anon_sym_public,
- anon_sym_private,
- anon_sym_protected,
- anon_sym_override,
- anon_sym_module,
- anon_sym_any,
- anon_sym_number,
- anon_sym_boolean,
- anon_sym_string,
- anon_sym_symbol,
- anon_sym_object,
- [112524] = 8,
- ACTIONS(1594), 1,
- anon_sym_DQUOTE,
- ACTIONS(1596), 1,
- anon_sym_SQUOTE,
- ACTIONS(4245), 1,
- anon_sym_LBRACK,
- ACTIONS(5871), 1,
- anon_sym_readonly,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(5702), 2,
- sym_number,
- sym_private_property_identifier,
- STATE(3366), 3,
- sym_string,
- sym__property_name,
- sym_computed_property_name,
- ACTIONS(3607), 22,
- anon_sym_export,
- anon_sym_type,
- anon_sym_namespace,
- anon_sym_let,
- anon_sym_async,
- anon_sym_new,
- sym_identifier,
- anon_sym_static,
- anon_sym_get,
- anon_sym_set,
- anon_sym_declare,
- anon_sym_public,
- anon_sym_private,
- anon_sym_protected,
- anon_sym_override,
- anon_sym_module,
- anon_sym_any,
- anon_sym_number,
- anon_sym_boolean,
- anon_sym_string,
- anon_sym_symbol,
- anon_sym_object,
- [112574] = 7,
- ACTIONS(1594), 1,
- anon_sym_DQUOTE,
- ACTIONS(1596), 1,
- anon_sym_SQUOTE,
- ACTIONS(4245), 1,
- anon_sym_LBRACK,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(5702), 2,
- sym_number,
- sym_private_property_identifier,
- STATE(3366), 3,
- sym_string,
- sym__property_name,
- sym_computed_property_name,
- ACTIONS(3607), 23,
- anon_sym_export,
- anon_sym_type,
- anon_sym_namespace,
- anon_sym_let,
- anon_sym_async,
- anon_sym_new,
- sym_identifier,
- anon_sym_static,
- anon_sym_readonly,
- anon_sym_get,
- anon_sym_set,
- anon_sym_declare,
- anon_sym_public,
- anon_sym_private,
- anon_sym_protected,
- anon_sym_override,
- anon_sym_module,
- anon_sym_any,
- anon_sym_number,
- anon_sym_boolean,
- anon_sym_string,
- anon_sym_symbol,
- anon_sym_object,
- [112622] = 7,
- ACTIONS(2275), 1,
- anon_sym_DQUOTE,
- ACTIONS(2277), 1,
- anon_sym_SQUOTE,
- ACTIONS(4634), 1,
- anon_sym_LBRACK,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(5791), 2,
- sym_number,
- sym_private_property_identifier,
- STATE(3840), 3,
- sym_string,
- sym__property_name,
- sym_computed_property_name,
- ACTIONS(2307), 23,
- anon_sym_export,
- anon_sym_type,
- anon_sym_namespace,
- anon_sym_let,
- anon_sym_async,
- anon_sym_new,
- sym_identifier,
- anon_sym_static,
- anon_sym_readonly,
- anon_sym_get,
- anon_sym_set,
- anon_sym_declare,
- anon_sym_public,
- anon_sym_private,
- anon_sym_protected,
- anon_sym_override,
- anon_sym_module,
- anon_sym_any,
- anon_sym_number,
- anon_sym_boolean,
- anon_sym_string,
- anon_sym_symbol,
- anon_sym_object,
- [112670] = 7,
- ACTIONS(2275), 1,
- anon_sym_DQUOTE,
- ACTIONS(2277), 1,
- anon_sym_SQUOTE,
- ACTIONS(4634), 1,
- anon_sym_LBRACK,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(5506), 2,
- sym_number,
- sym_private_property_identifier,
- STATE(3747), 3,
- sym_string,
- sym__property_name,
- sym_computed_property_name,
- ACTIONS(2307), 23,
- anon_sym_export,
- anon_sym_type,
- anon_sym_namespace,
- anon_sym_let,
- anon_sym_async,
- anon_sym_new,
- sym_identifier,
- anon_sym_static,
- anon_sym_readonly,
- anon_sym_get,
- anon_sym_set,
- anon_sym_declare,
- anon_sym_public,
- anon_sym_private,
- anon_sym_protected,
- anon_sym_override,
- anon_sym_module,
- anon_sym_any,
- anon_sym_number,
- anon_sym_boolean,
- anon_sym_string,
- anon_sym_symbol,
- anon_sym_object,
- [112718] = 7,
- ACTIONS(1594), 1,
- anon_sym_DQUOTE,
- ACTIONS(1596), 1,
- anon_sym_SQUOTE,
- ACTIONS(4245), 1,
- anon_sym_LBRACK,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(6180), 2,
- sym_number,
- sym_private_property_identifier,
- STATE(3370), 3,
- sym_string,
- sym__property_name,
- sym_computed_property_name,
- ACTIONS(3607), 23,
- anon_sym_export,
- anon_sym_type,
- anon_sym_namespace,
- anon_sym_let,
- anon_sym_async,
- anon_sym_new,
- sym_identifier,
- anon_sym_static,
- anon_sym_readonly,
- anon_sym_get,
- anon_sym_set,
- anon_sym_declare,
- anon_sym_public,
- anon_sym_private,
- anon_sym_protected,
- anon_sym_override,
- anon_sym_module,
- anon_sym_any,
- anon_sym_number,
- anon_sym_boolean,
- anon_sym_string,
- anon_sym_symbol,
- anon_sym_object,
- [112766] = 8,
- ACTIONS(1594), 1,
- anon_sym_DQUOTE,
- ACTIONS(1596), 1,
- anon_sym_SQUOTE,
- ACTIONS(4245), 1,
- anon_sym_LBRACK,
- ACTIONS(6184), 1,
- anon_sym_readonly,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(6182), 2,
- sym_number,
- sym_private_property_identifier,
- STATE(3374), 3,
- sym_string,
- sym__property_name,
- sym_computed_property_name,
- ACTIONS(3607), 22,
- anon_sym_export,
- anon_sym_type,
- anon_sym_namespace,
- anon_sym_let,
- anon_sym_async,
- anon_sym_new,
- sym_identifier,
- anon_sym_static,
- anon_sym_get,
- anon_sym_set,
- anon_sym_declare,
- anon_sym_public,
- anon_sym_private,
- anon_sym_protected,
- anon_sym_override,
- anon_sym_module,
- anon_sym_any,
- anon_sym_number,
- anon_sym_boolean,
- anon_sym_string,
- anon_sym_symbol,
- anon_sym_object,
- [112816] = 7,
- ACTIONS(1594), 1,
- anon_sym_DQUOTE,
- ACTIONS(1596), 1,
- anon_sym_SQUOTE,
- ACTIONS(4245), 1,
- anon_sym_LBRACK,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(6186), 2,
- sym_number,
- sym_private_property_identifier,
- STATE(3375), 3,
- sym_string,
- sym__property_name,
- sym_computed_property_name,
- ACTIONS(3607), 23,
- anon_sym_export,
- anon_sym_type,
- anon_sym_namespace,
- anon_sym_let,
- anon_sym_async,
- anon_sym_new,
- sym_identifier,
- anon_sym_static,
- anon_sym_readonly,
- anon_sym_get,
- anon_sym_set,
- anon_sym_declare,
- anon_sym_public,
- anon_sym_private,
- anon_sym_protected,
- anon_sym_override,
- anon_sym_module,
- anon_sym_any,
- anon_sym_number,
- anon_sym_boolean,
- anon_sym_string,
- anon_sym_symbol,
- anon_sym_object,
- [112864] = 8,
- ACTIONS(1594), 1,
- anon_sym_DQUOTE,
- ACTIONS(1596), 1,
- anon_sym_SQUOTE,
- ACTIONS(4245), 1,
- anon_sym_LBRACK,
- ACTIONS(6190), 1,
- anon_sym_readonly,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(6188), 2,
- sym_number,
- sym_private_property_identifier,
- STATE(3382), 3,
- sym_string,
- sym__property_name,
- sym_computed_property_name,
- ACTIONS(3607), 22,
- anon_sym_export,
- anon_sym_type,
- anon_sym_namespace,
- anon_sym_let,
- anon_sym_async,
- anon_sym_new,
- sym_identifier,
- anon_sym_static,
- anon_sym_get,
- anon_sym_set,
- anon_sym_declare,
- anon_sym_public,
- anon_sym_private,
- anon_sym_protected,
- anon_sym_override,
- anon_sym_module,
- anon_sym_any,
- anon_sym_number,
- anon_sym_boolean,
- anon_sym_string,
- anon_sym_symbol,
- anon_sym_object,
- [112914] = 7,
- ACTIONS(2275), 1,
- anon_sym_DQUOTE,
- ACTIONS(2277), 1,
- anon_sym_SQUOTE,
- ACTIONS(4634), 1,
- anon_sym_LBRACK,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(4636), 2,
- sym_number,
- sym_private_property_identifier,
- STATE(3770), 3,
- sym_string,
- sym__property_name,
- sym_computed_property_name,
- ACTIONS(2307), 23,
- anon_sym_export,
- anon_sym_type,
- anon_sym_namespace,
- anon_sym_let,
- anon_sym_async,
- anon_sym_new,
- sym_identifier,
- anon_sym_static,
- anon_sym_readonly,
- anon_sym_get,
- anon_sym_set,
- anon_sym_declare,
- anon_sym_public,
- anon_sym_private,
- anon_sym_protected,
- anon_sym_override,
- anon_sym_module,
- anon_sym_any,
- anon_sym_number,
- anon_sym_boolean,
- anon_sym_string,
- anon_sym_symbol,
- anon_sym_object,
- [112962] = 8,
- ACTIONS(1594), 1,
- anon_sym_DQUOTE,
- ACTIONS(1596), 1,
- anon_sym_SQUOTE,
- ACTIONS(4245), 1,
- anon_sym_LBRACK,
- ACTIONS(6194), 1,
- anon_sym_readonly,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(6192), 2,
- sym_number,
- sym_private_property_identifier,
- STATE(3391), 3,
- sym_string,
- sym__property_name,
- sym_computed_property_name,
- ACTIONS(3607), 22,
- anon_sym_export,
- anon_sym_type,
- anon_sym_namespace,
- anon_sym_let,
- anon_sym_async,
- anon_sym_new,
- sym_identifier,
- anon_sym_static,
- anon_sym_get,
- anon_sym_set,
- anon_sym_declare,
- anon_sym_public,
- anon_sym_private,
- anon_sym_protected,
- anon_sym_override,
- anon_sym_module,
- anon_sym_any,
- anon_sym_number,
- anon_sym_boolean,
- anon_sym_string,
- anon_sym_symbol,
- anon_sym_object,
- [113012] = 7,
- ACTIONS(1594), 1,
- anon_sym_DQUOTE,
- ACTIONS(1596), 1,
- anon_sym_SQUOTE,
- ACTIONS(4245), 1,
- anon_sym_LBRACK,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(6196), 2,
- sym_number,
- sym_private_property_identifier,
- STATE(3392), 3,
- sym_string,
- sym__property_name,
- sym_computed_property_name,
- ACTIONS(3607), 23,
- anon_sym_export,
- anon_sym_type,
- anon_sym_namespace,
- anon_sym_let,
- anon_sym_async,
- anon_sym_new,
- sym_identifier,
- anon_sym_static,
- anon_sym_readonly,
- anon_sym_get,
- anon_sym_set,
- anon_sym_declare,
- anon_sym_public,
- anon_sym_private,
- anon_sym_protected,
- anon_sym_override,
- anon_sym_module,
- anon_sym_any,
- anon_sym_number,
- anon_sym_boolean,
- anon_sym_string,
- anon_sym_symbol,
- anon_sym_object,
- [113060] = 7,
- ACTIONS(2275), 1,
- anon_sym_DQUOTE,
- ACTIONS(2277), 1,
- anon_sym_SQUOTE,
- ACTIONS(4634), 1,
- anon_sym_LBRACK,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(6065), 2,
- sym_number,
- sym_private_property_identifier,
- STATE(3823), 3,
- sym_string,
- sym__property_name,
- sym_computed_property_name,
- ACTIONS(2307), 23,
- anon_sym_export,
- anon_sym_type,
- anon_sym_namespace,
- anon_sym_let,
- anon_sym_async,
- anon_sym_new,
- sym_identifier,
- anon_sym_static,
- anon_sym_readonly,
- anon_sym_get,
- anon_sym_set,
- anon_sym_declare,
- anon_sym_public,
- anon_sym_private,
- anon_sym_protected,
- anon_sym_override,
- anon_sym_module,
- anon_sym_any,
- anon_sym_number,
- anon_sym_boolean,
- anon_sym_string,
- anon_sym_symbol,
- anon_sym_object,
- [113108] = 7,
- ACTIONS(2275), 1,
- anon_sym_DQUOTE,
- ACTIONS(2277), 1,
- anon_sym_SQUOTE,
- ACTIONS(4634), 1,
- anon_sym_LBRACK,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(5552), 2,
- sym_number,
- sym_private_property_identifier,
- STATE(3767), 3,
- sym_string,
- sym__property_name,
- sym_computed_property_name,
- ACTIONS(2307), 23,
- anon_sym_export,
- anon_sym_type,
- anon_sym_namespace,
- anon_sym_let,
- anon_sym_async,
- anon_sym_new,
- sym_identifier,
- anon_sym_static,
- anon_sym_readonly,
- anon_sym_get,
- anon_sym_set,
- anon_sym_declare,
- anon_sym_public,
- anon_sym_private,
- anon_sym_protected,
- anon_sym_override,
- anon_sym_module,
- anon_sym_any,
- anon_sym_number,
- anon_sym_boolean,
- anon_sym_string,
- anon_sym_symbol,
- anon_sym_object,
- [113156] = 8,
- ACTIONS(1594), 1,
- anon_sym_DQUOTE,
- ACTIONS(1596), 1,
- anon_sym_SQUOTE,
- ACTIONS(4245), 1,
- anon_sym_LBRACK,
- ACTIONS(5803), 1,
- anon_sym_readonly,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(4993), 2,
- sym_number,
- sym_private_property_identifier,
- STATE(3277), 3,
- sym_string,
- sym__property_name,
- sym_computed_property_name,
- ACTIONS(3607), 22,
- anon_sym_export,
- anon_sym_type,
- anon_sym_namespace,
- anon_sym_let,
- anon_sym_async,
- anon_sym_new,
- sym_identifier,
- anon_sym_static,
- anon_sym_get,
- anon_sym_set,
- anon_sym_declare,
- anon_sym_public,
- anon_sym_private,
- anon_sym_protected,
- anon_sym_override,
- anon_sym_module,
- anon_sym_any,
- anon_sym_number,
- anon_sym_boolean,
- anon_sym_string,
- anon_sym_symbol,
- anon_sym_object,
- [113206] = 7,
- ACTIONS(2275), 1,
- anon_sym_DQUOTE,
- ACTIONS(2277), 1,
- anon_sym_SQUOTE,
- ACTIONS(4634), 1,
- anon_sym_LBRACK,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(5556), 2,
- sym_number,
- sym_private_property_identifier,
- STATE(3808), 3,
- sym_string,
- sym__property_name,
- sym_computed_property_name,
- ACTIONS(2307), 23,
- anon_sym_export,
- anon_sym_type,
- anon_sym_namespace,
- anon_sym_let,
- anon_sym_async,
- anon_sym_new,
- sym_identifier,
- anon_sym_static,
- anon_sym_readonly,
- anon_sym_get,
- anon_sym_set,
- anon_sym_declare,
- anon_sym_public,
- anon_sym_private,
- anon_sym_protected,
- anon_sym_override,
- anon_sym_module,
- anon_sym_any,
- anon_sym_number,
- anon_sym_boolean,
- anon_sym_string,
- anon_sym_symbol,
- anon_sym_object,
- [113254] = 7,
- ACTIONS(2275), 1,
- anon_sym_DQUOTE,
- ACTIONS(2277), 1,
- anon_sym_SQUOTE,
- ACTIONS(4634), 1,
- anon_sym_LBRACK,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(5562), 2,
- sym_number,
- sym_private_property_identifier,
- STATE(3914), 3,
- sym_string,
- sym__property_name,
- sym_computed_property_name,
- ACTIONS(2307), 23,
- anon_sym_export,
- anon_sym_type,
- anon_sym_namespace,
- anon_sym_let,
- anon_sym_async,
- anon_sym_new,
- sym_identifier,
- anon_sym_static,
- anon_sym_readonly,
- anon_sym_get,
- anon_sym_set,
- anon_sym_declare,
- anon_sym_public,
- anon_sym_private,
- anon_sym_protected,
- anon_sym_override,
- anon_sym_module,
- anon_sym_any,
- anon_sym_number,
- anon_sym_boolean,
- anon_sym_string,
- anon_sym_symbol,
- anon_sym_object,
- [113302] = 7,
- ACTIONS(2275), 1,
- anon_sym_DQUOTE,
- ACTIONS(2277), 1,
- anon_sym_SQUOTE,
- ACTIONS(4634), 1,
- anon_sym_LBRACK,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(5566), 2,
- sym_number,
- sym_private_property_identifier,
- STATE(3832), 3,
- sym_string,
- sym__property_name,
- sym_computed_property_name,
- ACTIONS(2307), 23,
- anon_sym_export,
- anon_sym_type,
- anon_sym_namespace,
- anon_sym_let,
- anon_sym_async,
- anon_sym_new,
- sym_identifier,
- anon_sym_static,
- anon_sym_readonly,
- anon_sym_get,
- anon_sym_set,
- anon_sym_declare,
- anon_sym_public,
- anon_sym_private,
- anon_sym_protected,
- anon_sym_override,
- anon_sym_module,
- anon_sym_any,
- anon_sym_number,
- anon_sym_boolean,
- anon_sym_string,
- anon_sym_symbol,
- anon_sym_object,
- [113350] = 7,
- ACTIONS(2275), 1,
- anon_sym_DQUOTE,
- ACTIONS(2277), 1,
- anon_sym_SQUOTE,
- ACTIONS(4634), 1,
- anon_sym_LBRACK,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(5391), 2,
- sym_number,
- sym_private_property_identifier,
- STATE(3734), 3,
- sym_string,
- sym__property_name,
- sym_computed_property_name,
- ACTIONS(2307), 23,
- anon_sym_export,
- anon_sym_type,
- anon_sym_namespace,
- anon_sym_let,
- anon_sym_async,
- anon_sym_new,
- sym_identifier,
- anon_sym_static,
- anon_sym_readonly,
- anon_sym_get,
- anon_sym_set,
- anon_sym_declare,
- anon_sym_public,
- anon_sym_private,
- anon_sym_protected,
- anon_sym_override,
- anon_sym_module,
- anon_sym_any,
- anon_sym_number,
- anon_sym_boolean,
- anon_sym_string,
- anon_sym_symbol,
- anon_sym_object,
- [113398] = 7,
- ACTIONS(2275), 1,
- anon_sym_DQUOTE,
- ACTIONS(2277), 1,
- anon_sym_SQUOTE,
- ACTIONS(4634), 1,
- anon_sym_LBRACK,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(5572), 2,
- sym_number,
- sym_private_property_identifier,
- STATE(3834), 3,
- sym_string,
- sym__property_name,
- sym_computed_property_name,
- ACTIONS(2307), 23,
- anon_sym_export,
- anon_sym_type,
- anon_sym_namespace,
- anon_sym_let,
- anon_sym_async,
- anon_sym_new,
- sym_identifier,
- anon_sym_static,
- anon_sym_readonly,
- anon_sym_get,
- anon_sym_set,
- anon_sym_declare,
- anon_sym_public,
- anon_sym_private,
- anon_sym_protected,
- anon_sym_override,
- anon_sym_module,
- anon_sym_any,
- anon_sym_number,
- anon_sym_boolean,
- anon_sym_string,
- anon_sym_symbol,
- anon_sym_object,
- [113446] = 7,
- ACTIONS(2275), 1,
- anon_sym_DQUOTE,
- ACTIONS(2277), 1,
- anon_sym_SQUOTE,
- ACTIONS(4634), 1,
- anon_sym_LBRACK,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(6077), 2,
- sym_number,
- sym_private_property_identifier,
- STATE(3836), 3,
- sym_string,
- sym__property_name,
- sym_computed_property_name,
- ACTIONS(2307), 23,
- anon_sym_export,
- anon_sym_type,
- anon_sym_namespace,
- anon_sym_let,
- anon_sym_async,
- anon_sym_new,
- sym_identifier,
- anon_sym_static,
- anon_sym_readonly,
- anon_sym_get,
- anon_sym_set,
- anon_sym_declare,
- anon_sym_public,
- anon_sym_private,
- anon_sym_protected,
- anon_sym_override,
- anon_sym_module,
- anon_sym_any,
- anon_sym_number,
- anon_sym_boolean,
- anon_sym_string,
- anon_sym_symbol,
- anon_sym_object,
- [113494] = 7,
- ACTIONS(1594), 1,
- anon_sym_DQUOTE,
- ACTIONS(1596), 1,
- anon_sym_SQUOTE,
- ACTIONS(4245), 1,
- anon_sym_LBRACK,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(4864), 2,
- sym_number,
- sym_private_property_identifier,
- STATE(3354), 3,
- sym_string,
- sym__property_name,
- sym_computed_property_name,
- ACTIONS(3607), 23,
- anon_sym_export,
- anon_sym_type,
- anon_sym_namespace,
- anon_sym_let,
- anon_sym_async,
- anon_sym_new,
- sym_identifier,
- anon_sym_static,
- anon_sym_readonly,
- anon_sym_get,
- anon_sym_set,
- anon_sym_declare,
- anon_sym_public,
- anon_sym_private,
- anon_sym_protected,
- anon_sym_override,
- anon_sym_module,
- anon_sym_any,
- anon_sym_number,
- anon_sym_boolean,
- anon_sym_string,
- anon_sym_symbol,
- anon_sym_object,
- [113542] = 7,
- ACTIONS(2275), 1,
- anon_sym_DQUOTE,
- ACTIONS(2277), 1,
- anon_sym_SQUOTE,
- ACTIONS(4634), 1,
- anon_sym_LBRACK,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(5664), 2,
- sym_number,
- sym_private_property_identifier,
- STATE(3772), 3,
- sym_string,
- sym__property_name,
- sym_computed_property_name,
- ACTIONS(2307), 23,
- anon_sym_export,
- anon_sym_type,
- anon_sym_namespace,
- anon_sym_let,
- anon_sym_async,
- anon_sym_new,
- sym_identifier,
- anon_sym_static,
- anon_sym_readonly,
- anon_sym_get,
- anon_sym_set,
- anon_sym_declare,
- anon_sym_public,
- anon_sym_private,
- anon_sym_protected,
- anon_sym_override,
- anon_sym_module,
- anon_sym_any,
- anon_sym_number,
- anon_sym_boolean,
- anon_sym_string,
- anon_sym_symbol,
- anon_sym_object,
- [113590] = 7,
- ACTIONS(2275), 1,
- anon_sym_DQUOTE,
- ACTIONS(2277), 1,
- anon_sym_SQUOTE,
- ACTIONS(4634), 1,
- anon_sym_LBRACK,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(5486), 2,
- sym_number,
- sym_private_property_identifier,
- STATE(3843), 3,
- sym_string,
- sym__property_name,
- sym_computed_property_name,
- ACTIONS(2307), 23,
- anon_sym_export,
- anon_sym_type,
- anon_sym_namespace,
- anon_sym_let,
- anon_sym_async,
- anon_sym_new,
- sym_identifier,
- anon_sym_static,
- anon_sym_readonly,
- anon_sym_get,
- anon_sym_set,
- anon_sym_declare,
- anon_sym_public,
- anon_sym_private,
- anon_sym_protected,
- anon_sym_override,
- anon_sym_module,
- anon_sym_any,
- anon_sym_number,
- anon_sym_boolean,
- anon_sym_string,
- anon_sym_symbol,
- anon_sym_object,
- [113638] = 7,
- ACTIONS(1594), 1,
- anon_sym_DQUOTE,
- ACTIONS(1596), 1,
- anon_sym_SQUOTE,
- ACTIONS(4245), 1,
- anon_sym_LBRACK,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(4993), 2,
- sym_number,
- sym_private_property_identifier,
- STATE(3277), 3,
- sym_string,
- sym__property_name,
- sym_computed_property_name,
- ACTIONS(3607), 23,
- anon_sym_export,
- anon_sym_type,
- anon_sym_namespace,
- anon_sym_let,
- anon_sym_async,
- anon_sym_new,
- sym_identifier,
- anon_sym_static,
- anon_sym_readonly,
- anon_sym_get,
- anon_sym_set,
- anon_sym_declare,
- anon_sym_public,
- anon_sym_private,
- anon_sym_protected,
- anon_sym_override,
- anon_sym_module,
- anon_sym_any,
- anon_sym_number,
- anon_sym_boolean,
- anon_sym_string,
- anon_sym_symbol,
- anon_sym_object,
- [113686] = 7,
- ACTIONS(2275), 1,
- anon_sym_DQUOTE,
- ACTIONS(2277), 1,
- anon_sym_SQUOTE,
- ACTIONS(4634), 1,
- anon_sym_LBRACK,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(5997), 2,
- sym_number,
- sym_private_property_identifier,
- STATE(3850), 3,
- sym_string,
- sym__property_name,
- sym_computed_property_name,
- ACTIONS(2307), 23,
- anon_sym_export,
- anon_sym_type,
- anon_sym_namespace,
- anon_sym_let,
- anon_sym_async,
- anon_sym_new,
- sym_identifier,
- anon_sym_static,
- anon_sym_readonly,
- anon_sym_get,
- anon_sym_set,
- anon_sym_declare,
- anon_sym_public,
- anon_sym_private,
- anon_sym_protected,
- anon_sym_override,
- anon_sym_module,
- anon_sym_any,
- anon_sym_number,
- anon_sym_boolean,
- anon_sym_string,
- anon_sym_symbol,
- anon_sym_object,
- [113734] = 7,
- ACTIONS(2275), 1,
- anon_sym_DQUOTE,
- ACTIONS(2277), 1,
- anon_sym_SQUOTE,
- ACTIONS(4634), 1,
- anon_sym_LBRACK,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(6051), 2,
- sym_number,
- sym_private_property_identifier,
- STATE(3890), 3,
- sym_string,
- sym__property_name,
- sym_computed_property_name,
- ACTIONS(2307), 23,
- anon_sym_export,
- anon_sym_type,
- anon_sym_namespace,
- anon_sym_let,
- anon_sym_async,
- anon_sym_new,
- sym_identifier,
- anon_sym_static,
- anon_sym_readonly,
- anon_sym_get,
- anon_sym_set,
- anon_sym_declare,
- anon_sym_public,
- anon_sym_private,
- anon_sym_protected,
- anon_sym_override,
- anon_sym_module,
- anon_sym_any,
- anon_sym_number,
- anon_sym_boolean,
- anon_sym_string,
- anon_sym_symbol,
- anon_sym_object,
- [113782] = 8,
- ACTIONS(1594), 1,
- anon_sym_DQUOTE,
- ACTIONS(1596), 1,
- anon_sym_SQUOTE,
- ACTIONS(4245), 1,
- anon_sym_LBRACK,
- ACTIONS(6200), 1,
- anon_sym_readonly,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(6198), 2,
- sym_number,
- sym_private_property_identifier,
- STATE(3323), 3,
- sym_string,
- sym__property_name,
- sym_computed_property_name,
- ACTIONS(3607), 22,
- anon_sym_export,
- anon_sym_type,
- anon_sym_namespace,
- anon_sym_let,
- anon_sym_async,
- anon_sym_new,
- sym_identifier,
- anon_sym_static,
- anon_sym_get,
- anon_sym_set,
- anon_sym_declare,
- anon_sym_public,
- anon_sym_private,
- anon_sym_protected,
- anon_sym_override,
- anon_sym_module,
- anon_sym_any,
- anon_sym_number,
- anon_sym_boolean,
- anon_sym_string,
- anon_sym_symbol,
- anon_sym_object,
- [113832] = 8,
- ACTIONS(1594), 1,
- anon_sym_DQUOTE,
- ACTIONS(1596), 1,
- anon_sym_SQUOTE,
- ACTIONS(4245), 1,
- anon_sym_LBRACK,
- ACTIONS(6202), 1,
- anon_sym_readonly,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(5893), 2,
- sym_number,
- sym_private_property_identifier,
- STATE(3412), 3,
- sym_string,
- sym__property_name,
- sym_computed_property_name,
- ACTIONS(3607), 22,
- anon_sym_export,
- anon_sym_type,
- anon_sym_namespace,
- anon_sym_let,
- anon_sym_async,
- anon_sym_new,
- sym_identifier,
- anon_sym_static,
- anon_sym_get,
- anon_sym_set,
- anon_sym_declare,
- anon_sym_public,
- anon_sym_private,
- anon_sym_protected,
- anon_sym_override,
- anon_sym_module,
- anon_sym_any,
- anon_sym_number,
- anon_sym_boolean,
- anon_sym_string,
- anon_sym_symbol,
- anon_sym_object,
- [113882] = 7,
- ACTIONS(1594), 1,
- anon_sym_DQUOTE,
- ACTIONS(1596), 1,
- anon_sym_SQUOTE,
- ACTIONS(4245), 1,
- anon_sym_LBRACK,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(5893), 2,
- sym_number,
- sym_private_property_identifier,
- STATE(3412), 3,
- sym_string,
- sym__property_name,
- sym_computed_property_name,
- ACTIONS(3607), 23,
- anon_sym_export,
- anon_sym_type,
- anon_sym_namespace,
- anon_sym_let,
- anon_sym_async,
- anon_sym_new,
- sym_identifier,
- anon_sym_static,
- anon_sym_readonly,
- anon_sym_get,
- anon_sym_set,
- anon_sym_declare,
- anon_sym_public,
- anon_sym_private,
- anon_sym_protected,
- anon_sym_override,
- anon_sym_module,
- anon_sym_any,
- anon_sym_number,
- anon_sym_boolean,
- anon_sym_string,
- anon_sym_symbol,
- anon_sym_object,
- [113930] = 7,
- ACTIONS(2275), 1,
- anon_sym_DQUOTE,
- ACTIONS(2277), 1,
- anon_sym_SQUOTE,
- ACTIONS(4634), 1,
- anon_sym_LBRACK,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(6079), 2,
- sym_number,
- sym_private_property_identifier,
- STATE(3905), 3,
- sym_string,
- sym__property_name,
- sym_computed_property_name,
- ACTIONS(2307), 23,
- anon_sym_export,
- anon_sym_type,
- anon_sym_namespace,
- anon_sym_let,
- anon_sym_async,
- anon_sym_new,
- sym_identifier,
- anon_sym_static,
- anon_sym_readonly,
- anon_sym_get,
- anon_sym_set,
- anon_sym_declare,
- anon_sym_public,
- anon_sym_private,
- anon_sym_protected,
- anon_sym_override,
- anon_sym_module,
- anon_sym_any,
- anon_sym_number,
- anon_sym_boolean,
- anon_sym_string,
- anon_sym_symbol,
- anon_sym_object,
- [113978] = 8,
- ACTIONS(1594), 1,
- anon_sym_DQUOTE,
- ACTIONS(1596), 1,
- anon_sym_SQUOTE,
- ACTIONS(4245), 1,
- anon_sym_LBRACK,
- ACTIONS(6206), 1,
- anon_sym_readonly,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(6204), 2,
- sym_number,
- sym_private_property_identifier,
- STATE(3387), 3,
- sym_string,
- sym__property_name,
- sym_computed_property_name,
- ACTIONS(3607), 22,
- anon_sym_export,
- anon_sym_type,
- anon_sym_namespace,
- anon_sym_let,
- anon_sym_async,
- anon_sym_new,
- sym_identifier,
- anon_sym_static,
- anon_sym_get,
- anon_sym_set,
- anon_sym_declare,
- anon_sym_public,
- anon_sym_private,
- anon_sym_protected,
- anon_sym_override,
- anon_sym_module,
- anon_sym_any,
- anon_sym_number,
- anon_sym_boolean,
- anon_sym_string,
- anon_sym_symbol,
- anon_sym_object,
- [114028] = 7,
- ACTIONS(1594), 1,
- anon_sym_DQUOTE,
- ACTIONS(1596), 1,
- anon_sym_SQUOTE,
- ACTIONS(4245), 1,
- anon_sym_LBRACK,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(6208), 2,
- sym_number,
- sym_private_property_identifier,
- STATE(3390), 3,
- sym_string,
- sym__property_name,
- sym_computed_property_name,
- ACTIONS(3607), 23,
- anon_sym_export,
- anon_sym_type,
- anon_sym_namespace,
- anon_sym_let,
- anon_sym_async,
- anon_sym_new,
- sym_identifier,
- anon_sym_static,
- anon_sym_readonly,
- anon_sym_get,
- anon_sym_set,
- anon_sym_declare,
- anon_sym_public,
- anon_sym_private,
- anon_sym_protected,
- anon_sym_override,
- anon_sym_module,
- anon_sym_any,
- anon_sym_number,
- anon_sym_boolean,
- anon_sym_string,
- anon_sym_symbol,
- anon_sym_object,
- [114076] = 8,
- ACTIONS(1594), 1,
- anon_sym_DQUOTE,
- ACTIONS(1596), 1,
- anon_sym_SQUOTE,
- ACTIONS(4245), 1,
- anon_sym_LBRACK,
- ACTIONS(6212), 1,
- anon_sym_readonly,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(6210), 2,
- sym_number,
- sym_private_property_identifier,
- STATE(3258), 3,
- sym_string,
- sym__property_name,
- sym_computed_property_name,
- ACTIONS(3607), 22,
- anon_sym_export,
- anon_sym_type,
- anon_sym_namespace,
- anon_sym_let,
- anon_sym_async,
- anon_sym_new,
- sym_identifier,
- anon_sym_static,
- anon_sym_get,
- anon_sym_set,
- anon_sym_declare,
- anon_sym_public,
- anon_sym_private,
- anon_sym_protected,
- anon_sym_override,
- anon_sym_module,
- anon_sym_any,
- anon_sym_number,
- anon_sym_boolean,
- anon_sym_string,
- anon_sym_symbol,
- anon_sym_object,
- [114126] = 7,
- ACTIONS(1594), 1,
- anon_sym_DQUOTE,
- ACTIONS(1596), 1,
- anon_sym_SQUOTE,
- ACTIONS(4245), 1,
- anon_sym_LBRACK,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(6214), 2,
- sym_number,
- sym_private_property_identifier,
- STATE(3274), 3,
- sym_string,
- sym__property_name,
- sym_computed_property_name,
- ACTIONS(3607), 23,
- anon_sym_export,
- anon_sym_type,
- anon_sym_namespace,
- anon_sym_let,
- anon_sym_async,
- anon_sym_new,
- sym_identifier,
- anon_sym_static,
- anon_sym_readonly,
- anon_sym_get,
- anon_sym_set,
- anon_sym_declare,
- anon_sym_public,
- anon_sym_private,
- anon_sym_protected,
- anon_sym_override,
- anon_sym_module,
- anon_sym_any,
- anon_sym_number,
- anon_sym_boolean,
- anon_sym_string,
- anon_sym_symbol,
- anon_sym_object,
- [114174] = 8,
- ACTIONS(1594), 1,
- anon_sym_DQUOTE,
- ACTIONS(1596), 1,
- anon_sym_SQUOTE,
- ACTIONS(4245), 1,
- anon_sym_LBRACK,
- ACTIONS(6218), 1,
- anon_sym_readonly,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(6216), 2,
- sym_number,
- sym_private_property_identifier,
- STATE(3296), 3,
- sym_string,
- sym__property_name,
- sym_computed_property_name,
- ACTIONS(3607), 22,
- anon_sym_export,
- anon_sym_type,
- anon_sym_namespace,
- anon_sym_let,
- anon_sym_async,
- anon_sym_new,
- sym_identifier,
- anon_sym_static,
- anon_sym_get,
- anon_sym_set,
- anon_sym_declare,
- anon_sym_public,
- anon_sym_private,
- anon_sym_protected,
- anon_sym_override,
- anon_sym_module,
- anon_sym_any,
- anon_sym_number,
- anon_sym_boolean,
- anon_sym_string,
- anon_sym_symbol,
- anon_sym_object,
- [114224] = 7,
- ACTIONS(2275), 1,
- anon_sym_DQUOTE,
- ACTIONS(2277), 1,
- anon_sym_SQUOTE,
- ACTIONS(4634), 1,
- anon_sym_LBRACK,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(5526), 2,
- sym_number,
- sym_private_property_identifier,
- STATE(3842), 3,
- sym_string,
- sym__property_name,
- sym_computed_property_name,
- ACTIONS(2307), 23,
- anon_sym_export,
- anon_sym_type,
- anon_sym_namespace,
- anon_sym_let,
- anon_sym_async,
- anon_sym_new,
- sym_identifier,
- anon_sym_static,
- anon_sym_readonly,
- anon_sym_get,
- anon_sym_set,
- anon_sym_declare,
- anon_sym_public,
- anon_sym_private,
- anon_sym_protected,
- anon_sym_override,
- anon_sym_module,
- anon_sym_any,
- anon_sym_number,
- anon_sym_boolean,
- anon_sym_string,
- anon_sym_symbol,
- anon_sym_object,
- [114272] = 7,
- ACTIONS(1594), 1,
- anon_sym_DQUOTE,
- ACTIONS(1596), 1,
- anon_sym_SQUOTE,
- ACTIONS(4245), 1,
- anon_sym_LBRACK,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(6220), 2,
- sym_number,
- sym_private_property_identifier,
- STATE(3340), 3,
- sym_string,
- sym__property_name,
- sym_computed_property_name,
- ACTIONS(3607), 23,
- anon_sym_export,
- anon_sym_type,
- anon_sym_namespace,
- anon_sym_let,
- anon_sym_async,
- anon_sym_new,
- sym_identifier,
- anon_sym_static,
- anon_sym_readonly,
- anon_sym_get,
- anon_sym_set,
- anon_sym_declare,
- anon_sym_public,
- anon_sym_private,
- anon_sym_protected,
- anon_sym_override,
- anon_sym_module,
- anon_sym_any,
- anon_sym_number,
- anon_sym_boolean,
- anon_sym_string,
- anon_sym_symbol,
- anon_sym_object,
- [114320] = 7,
- ACTIONS(2275), 1,
- anon_sym_DQUOTE,
- ACTIONS(2277), 1,
- anon_sym_SQUOTE,
- ACTIONS(4634), 1,
- anon_sym_LBRACK,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(5385), 2,
- sym_number,
- sym_private_property_identifier,
- STATE(3824), 3,
- sym_string,
- sym__property_name,
- sym_computed_property_name,
- ACTIONS(2307), 23,
- anon_sym_export,
- anon_sym_type,
- anon_sym_namespace,
- anon_sym_let,
- anon_sym_async,
- anon_sym_new,
- sym_identifier,
- anon_sym_static,
- anon_sym_readonly,
- anon_sym_get,
- anon_sym_set,
- anon_sym_declare,
- anon_sym_public,
- anon_sym_private,
- anon_sym_protected,
- anon_sym_override,
- anon_sym_module,
- anon_sym_any,
- anon_sym_number,
- anon_sym_boolean,
- anon_sym_string,
- anon_sym_symbol,
- anon_sym_object,
- [114368] = 8,
- ACTIONS(1594), 1,
- anon_sym_DQUOTE,
- ACTIONS(1596), 1,
- anon_sym_SQUOTE,
- ACTIONS(4245), 1,
- anon_sym_LBRACK,
- ACTIONS(6224), 1,
- anon_sym_readonly,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(6222), 2,
- sym_number,
- sym_private_property_identifier,
- STATE(3446), 3,
- sym_string,
- sym__property_name,
- sym_computed_property_name,
- ACTIONS(3607), 22,
- anon_sym_export,
- anon_sym_type,
- anon_sym_namespace,
- anon_sym_let,
- anon_sym_async,
- anon_sym_new,
- sym_identifier,
- anon_sym_static,
- anon_sym_get,
- anon_sym_set,
- anon_sym_declare,
- anon_sym_public,
- anon_sym_private,
- anon_sym_protected,
- anon_sym_override,
- anon_sym_module,
- anon_sym_any,
- anon_sym_number,
- anon_sym_boolean,
- anon_sym_string,
- anon_sym_symbol,
- anon_sym_object,
- [114418] = 7,
- ACTIONS(1594), 1,
- anon_sym_DQUOTE,
- ACTIONS(1596), 1,
- anon_sym_SQUOTE,
- ACTIONS(4245), 1,
- anon_sym_LBRACK,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(6226), 2,
- sym_number,
- sym_private_property_identifier,
- STATE(3447), 3,
- sym_string,
- sym__property_name,
- sym_computed_property_name,
- ACTIONS(3607), 23,
- anon_sym_export,
- anon_sym_type,
- anon_sym_namespace,
- anon_sym_let,
- anon_sym_async,
- anon_sym_new,
- sym_identifier,
- anon_sym_static,
- anon_sym_readonly,
- anon_sym_get,
- anon_sym_set,
- anon_sym_declare,
- anon_sym_public,
- anon_sym_private,
- anon_sym_protected,
- anon_sym_override,
- anon_sym_module,
- anon_sym_any,
- anon_sym_number,
- anon_sym_boolean,
- anon_sym_string,
- anon_sym_symbol,
- anon_sym_object,
- [114466] = 8,
- ACTIONS(1594), 1,
- anon_sym_DQUOTE,
- ACTIONS(1596), 1,
- anon_sym_SQUOTE,
- ACTIONS(4245), 1,
- anon_sym_LBRACK,
- ACTIONS(6230), 1,
- anon_sym_readonly,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(6228), 2,
- sym_number,
- sym_private_property_identifier,
- STATE(3302), 3,
- sym_string,
- sym__property_name,
- sym_computed_property_name,
- ACTIONS(3607), 22,
- anon_sym_export,
- anon_sym_type,
- anon_sym_namespace,
- anon_sym_let,
- anon_sym_async,
- anon_sym_new,
- sym_identifier,
- anon_sym_static,
- anon_sym_get,
- anon_sym_set,
- anon_sym_declare,
- anon_sym_public,
- anon_sym_private,
- anon_sym_protected,
- anon_sym_override,
- anon_sym_module,
- anon_sym_any,
- anon_sym_number,
- anon_sym_boolean,
- anon_sym_string,
- anon_sym_symbol,
- anon_sym_object,
- [114516] = 7,
- ACTIONS(2275), 1,
- anon_sym_DQUOTE,
- ACTIONS(2277), 1,
- anon_sym_SQUOTE,
- ACTIONS(4634), 1,
- anon_sym_LBRACK,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(5408), 2,
- sym_number,
- sym_private_property_identifier,
- STATE(3757), 3,
- sym_string,
- sym__property_name,
- sym_computed_property_name,
- ACTIONS(2307), 23,
- anon_sym_export,
- anon_sym_type,
- anon_sym_namespace,
- anon_sym_let,
- anon_sym_async,
- anon_sym_new,
- sym_identifier,
- anon_sym_static,
- anon_sym_readonly,
- anon_sym_get,
- anon_sym_set,
- anon_sym_declare,
- anon_sym_public,
- anon_sym_private,
- anon_sym_protected,
- anon_sym_override,
- anon_sym_module,
- anon_sym_any,
- anon_sym_number,
- anon_sym_boolean,
- anon_sym_string,
- anon_sym_symbol,
- anon_sym_object,
- [114564] = 7,
- ACTIONS(2275), 1,
- anon_sym_DQUOTE,
- ACTIONS(2277), 1,
- anon_sym_SQUOTE,
- ACTIONS(4634), 1,
- anon_sym_LBRACK,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(5544), 2,
- sym_number,
- sym_private_property_identifier,
- STATE(3817), 3,
- sym_string,
- sym__property_name,
- sym_computed_property_name,
- ACTIONS(2307), 23,
- anon_sym_export,
- anon_sym_type,
- anon_sym_namespace,
- anon_sym_let,
- anon_sym_async,
- anon_sym_new,
- sym_identifier,
- anon_sym_static,
- anon_sym_readonly,
- anon_sym_get,
- anon_sym_set,
- anon_sym_declare,
- anon_sym_public,
- anon_sym_private,
- anon_sym_protected,
- anon_sym_override,
- anon_sym_module,
- anon_sym_any,
- anon_sym_number,
- anon_sym_boolean,
- anon_sym_string,
- anon_sym_symbol,
- anon_sym_object,
- [114612] = 7,
- ACTIONS(2275), 1,
- anon_sym_DQUOTE,
- ACTIONS(2277), 1,
- anon_sym_SQUOTE,
- ACTIONS(4634), 1,
- anon_sym_LBRACK,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(5381), 2,
- sym_number,
- sym_private_property_identifier,
- STATE(3854), 3,
- sym_string,
- sym__property_name,
- sym_computed_property_name,
- ACTIONS(2307), 23,
- anon_sym_export,
- anon_sym_type,
- anon_sym_namespace,
- anon_sym_let,
- anon_sym_async,
- anon_sym_new,
- sym_identifier,
- anon_sym_static,
- anon_sym_readonly,
- anon_sym_get,
- anon_sym_set,
- anon_sym_declare,
- anon_sym_public,
- anon_sym_private,
- anon_sym_protected,
- anon_sym_override,
- anon_sym_module,
- anon_sym_any,
- anon_sym_number,
- anon_sym_boolean,
- anon_sym_string,
- anon_sym_symbol,
- anon_sym_object,
- [114660] = 7,
- ACTIONS(2275), 1,
- anon_sym_DQUOTE,
- ACTIONS(2277), 1,
- anon_sym_SQUOTE,
- ACTIONS(4634), 1,
- anon_sym_LBRACK,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(5468), 2,
- sym_number,
- sym_private_property_identifier,
- STATE(3878), 3,
- sym_string,
- sym__property_name,
- sym_computed_property_name,
- ACTIONS(2307), 23,
- anon_sym_export,
- anon_sym_type,
- anon_sym_namespace,
- anon_sym_let,
- anon_sym_async,
- anon_sym_new,
- sym_identifier,
- anon_sym_static,
- anon_sym_readonly,
- anon_sym_get,
- anon_sym_set,
- anon_sym_declare,
- anon_sym_public,
- anon_sym_private,
- anon_sym_protected,
- anon_sym_override,
- anon_sym_module,
- anon_sym_any,
- anon_sym_number,
- anon_sym_boolean,
- anon_sym_string,
- anon_sym_symbol,
- anon_sym_object,
- [114708] = 7,
- ACTIONS(2275), 1,
- anon_sym_DQUOTE,
- ACTIONS(2277), 1,
- anon_sym_SQUOTE,
- ACTIONS(4634), 1,
- anon_sym_LBRACK,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(6081), 2,
- sym_number,
- sym_private_property_identifier,
- STATE(3895), 3,
- sym_string,
- sym__property_name,
- sym_computed_property_name,
- ACTIONS(2307), 23,
- anon_sym_export,
- anon_sym_type,
- anon_sym_namespace,
- anon_sym_let,
- anon_sym_async,
- anon_sym_new,
- sym_identifier,
- anon_sym_static,
- anon_sym_readonly,
- anon_sym_get,
- anon_sym_set,
- anon_sym_declare,
- anon_sym_public,
- anon_sym_private,
- anon_sym_protected,
- anon_sym_override,
- anon_sym_module,
- anon_sym_any,
- anon_sym_number,
- anon_sym_boolean,
- anon_sym_string,
- anon_sym_symbol,
- anon_sym_object,
- [114756] = 7,
- ACTIONS(2275), 1,
- anon_sym_DQUOTE,
- ACTIONS(2277), 1,
- anon_sym_SQUOTE,
- ACTIONS(4634), 1,
- anon_sym_LBRACK,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(5375), 2,
- sym_number,
- sym_private_property_identifier,
- STATE(3731), 3,
- sym_string,
- sym__property_name,
- sym_computed_property_name,
- ACTIONS(2307), 23,
- anon_sym_export,
- anon_sym_type,
- anon_sym_namespace,
- anon_sym_let,
- anon_sym_async,
- anon_sym_new,
- sym_identifier,
- anon_sym_static,
- anon_sym_readonly,
- anon_sym_get,
- anon_sym_set,
- anon_sym_declare,
- anon_sym_public,
- anon_sym_private,
- anon_sym_protected,
- anon_sym_override,
- anon_sym_module,
- anon_sym_any,
- anon_sym_number,
- anon_sym_boolean,
- anon_sym_string,
- anon_sym_symbol,
- anon_sym_object,
- [114804] = 7,
- ACTIONS(2275), 1,
- anon_sym_DQUOTE,
- ACTIONS(2277), 1,
- anon_sym_SQUOTE,
- ACTIONS(4634), 1,
- anon_sym_LBRACK,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(2285), 2,
- sym_number,
- sym_private_property_identifier,
- STATE(3788), 3,
- sym_string,
- sym__property_name,
- sym_computed_property_name,
- ACTIONS(2307), 23,
- anon_sym_export,
- anon_sym_type,
- anon_sym_namespace,
- anon_sym_let,
- anon_sym_async,
- anon_sym_new,
- sym_identifier,
- anon_sym_static,
- anon_sym_readonly,
- anon_sym_get,
- anon_sym_set,
- anon_sym_declare,
- anon_sym_public,
- anon_sym_private,
- anon_sym_protected,
- anon_sym_override,
- anon_sym_module,
- anon_sym_any,
- anon_sym_number,
- anon_sym_boolean,
- anon_sym_string,
- anon_sym_symbol,
- anon_sym_object,
- [114852] = 8,
- ACTIONS(1594), 1,
- anon_sym_DQUOTE,
- ACTIONS(1596), 1,
- anon_sym_SQUOTE,
- ACTIONS(4245), 1,
- anon_sym_LBRACK,
- ACTIONS(6234), 1,
- anon_sym_readonly,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(6232), 2,
- sym_number,
- sym_private_property_identifier,
- STATE(3393), 3,
- sym_string,
- sym__property_name,
- sym_computed_property_name,
- ACTIONS(3607), 22,
- anon_sym_export,
- anon_sym_type,
- anon_sym_namespace,
- anon_sym_let,
- anon_sym_async,
- anon_sym_new,
- sym_identifier,
- anon_sym_static,
- anon_sym_get,
- anon_sym_set,
- anon_sym_declare,
- anon_sym_public,
- anon_sym_private,
- anon_sym_protected,
- anon_sym_override,
- anon_sym_module,
- anon_sym_any,
- anon_sym_number,
- anon_sym_boolean,
- anon_sym_string,
- anon_sym_symbol,
- anon_sym_object,
- [114902] = 7,
- ACTIONS(1594), 1,
- anon_sym_DQUOTE,
- ACTIONS(1596), 1,
- anon_sym_SQUOTE,
- ACTIONS(4245), 1,
- anon_sym_LBRACK,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(6236), 2,
- sym_number,
- sym_private_property_identifier,
- STATE(3396), 3,
- sym_string,
- sym__property_name,
- sym_computed_property_name,
- ACTIONS(3607), 23,
- anon_sym_export,
- anon_sym_type,
- anon_sym_namespace,
- anon_sym_let,
- anon_sym_async,
- anon_sym_new,
- sym_identifier,
- anon_sym_static,
- anon_sym_readonly,
- anon_sym_get,
- anon_sym_set,
- anon_sym_declare,
- anon_sym_public,
- anon_sym_private,
- anon_sym_protected,
- anon_sym_override,
- anon_sym_module,
- anon_sym_any,
- anon_sym_number,
- anon_sym_boolean,
- anon_sym_string,
- anon_sym_symbol,
- anon_sym_object,
- [114950] = 7,
- ACTIONS(2275), 1,
- anon_sym_DQUOTE,
- ACTIONS(2277), 1,
- anon_sym_SQUOTE,
- ACTIONS(4634), 1,
- anon_sym_LBRACK,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(6057), 2,
- sym_number,
- sym_private_property_identifier,
- STATE(3852), 3,
- sym_string,
- sym__property_name,
- sym_computed_property_name,
- ACTIONS(2307), 23,
- anon_sym_export,
- anon_sym_type,
- anon_sym_namespace,
- anon_sym_let,
- anon_sym_async,
- anon_sym_new,
- sym_identifier,
- anon_sym_static,
- anon_sym_readonly,
- anon_sym_get,
- anon_sym_set,
- anon_sym_declare,
- anon_sym_public,
- anon_sym_private,
- anon_sym_protected,
- anon_sym_override,
- anon_sym_module,
- anon_sym_any,
- anon_sym_number,
- anon_sym_boolean,
- anon_sym_string,
- anon_sym_symbol,
- anon_sym_object,
- [114998] = 7,
- ACTIONS(2275), 1,
- anon_sym_DQUOTE,
- ACTIONS(2277), 1,
- anon_sym_SQUOTE,
- ACTIONS(4634), 1,
- anon_sym_LBRACK,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(6063), 2,
- sym_number,
- sym_private_property_identifier,
- STATE(3904), 3,
- sym_string,
- sym__property_name,
- sym_computed_property_name,
- ACTIONS(2307), 23,
- anon_sym_export,
- anon_sym_type,
- anon_sym_namespace,
- anon_sym_let,
- anon_sym_async,
- anon_sym_new,
- sym_identifier,
- anon_sym_static,
- anon_sym_readonly,
- anon_sym_get,
- anon_sym_set,
- anon_sym_declare,
- anon_sym_public,
- anon_sym_private,
- anon_sym_protected,
- anon_sym_override,
- anon_sym_module,
- anon_sym_any,
- anon_sym_number,
- anon_sym_boolean,
- anon_sym_string,
- anon_sym_symbol,
- anon_sym_object,
- [115046] = 7,
- ACTIONS(2275), 1,
- anon_sym_DQUOTE,
- ACTIONS(2277), 1,
- anon_sym_SQUOTE,
- ACTIONS(4634), 1,
- anon_sym_LBRACK,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(5604), 2,
- sym_number,
- sym_private_property_identifier,
- STATE(3822), 3,
- sym_string,
- sym__property_name,
- sym_computed_property_name,
- ACTIONS(2307), 23,
- anon_sym_export,
- anon_sym_type,
- anon_sym_namespace,
- anon_sym_let,
- anon_sym_async,
- anon_sym_new,
- sym_identifier,
- anon_sym_static,
- anon_sym_readonly,
- anon_sym_get,
- anon_sym_set,
- anon_sym_declare,
- anon_sym_public,
- anon_sym_private,
- anon_sym_protected,
- anon_sym_override,
- anon_sym_module,
- anon_sym_any,
- anon_sym_number,
- anon_sym_boolean,
- anon_sym_string,
- anon_sym_symbol,
- anon_sym_object,
- [115094] = 4,
- ACTIONS(6238), 1,
- sym_identifier,
- STATE(5746), 1,
- sym_mapped_type_clause,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(6240), 22,
- anon_sym_export,
- anon_sym_type,
- anon_sym_namespace,
- anon_sym_let,
- anon_sym_async,
- anon_sym_new,
- anon_sym_static,
- anon_sym_readonly,
- anon_sym_get,
- anon_sym_set,
- anon_sym_declare,
- anon_sym_public,
- anon_sym_private,
- anon_sym_protected,
- anon_sym_override,
- anon_sym_module,
- anon_sym_any,
- anon_sym_number,
- anon_sym_boolean,
- anon_sym_string,
- anon_sym_symbol,
- anon_sym_object,
- [115129] = 9,
- ACTIONS(3438), 1,
- anon_sym_LPAREN,
- ACTIONS(6242), 1,
- anon_sym_DOT,
- ACTIONS(6244), 1,
- anon_sym_QMARK_DOT,
- ACTIONS(6246), 1,
- anon_sym_LT,
- STATE(2841), 1,
- sym_arguments,
- STATE(2865), 1,
- sym_type_arguments,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(3979), 2,
- anon_sym_EQ,
- anon_sym_QMARK,
- ACTIONS(3981), 12,
- anon_sym_LBRACE,
- anon_sym_COMMA,
- anon_sym_RBRACE,
- anon_sym_RPAREN,
- anon_sym_COLON,
- anon_sym_LBRACK,
- anon_sym_RBRACK,
- anon_sym_GT,
- anon_sym_EQ_GT,
- anon_sym_AMP,
- anon_sym_PIPE,
- anon_sym_extends,
- [115170] = 9,
- ACTIONS(3438), 1,
- anon_sym_LPAREN,
- ACTIONS(6246), 1,
- anon_sym_LT,
- ACTIONS(6248), 1,
- anon_sym_DOT,
- ACTIONS(6250), 1,
- anon_sym_QMARK_DOT,
- STATE(2843), 1,
- sym_arguments,
- STATE(2866), 1,
- sym_type_arguments,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(3985), 2,
- anon_sym_EQ,
- anon_sym_QMARK,
- ACTIONS(3987), 12,
- anon_sym_LBRACE,
- anon_sym_COMMA,
- anon_sym_RBRACE,
- anon_sym_RPAREN,
- anon_sym_COLON,
- anon_sym_LBRACK,
- anon_sym_RBRACK,
- anon_sym_GT,
- anon_sym_EQ_GT,
- anon_sym_AMP,
- anon_sym_PIPE,
- anon_sym_extends,
- [115211] = 9,
- ACTIONS(3438), 1,
- anon_sym_LPAREN,
- ACTIONS(3440), 1,
- anon_sym_DOT,
- ACTIONS(3442), 1,
- anon_sym_QMARK_DOT,
- ACTIONS(6246), 1,
- anon_sym_LT,
- STATE(2829), 1,
- sym_arguments,
- STATE(2852), 1,
- sym_type_arguments,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(3418), 2,
- anon_sym_EQ,
- anon_sym_QMARK,
- ACTIONS(3406), 12,
- anon_sym_LBRACE,
- anon_sym_COMMA,
- anon_sym_RBRACE,
- anon_sym_RPAREN,
- anon_sym_COLON,
- anon_sym_LBRACK,
- anon_sym_RBRACK,
- anon_sym_GT,
- anon_sym_EQ_GT,
- anon_sym_AMP,
- anon_sym_PIPE,
- anon_sym_extends,
- [115252] = 3,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(4166), 2,
- anon_sym_EQ,
- anon_sym_QMARK,
- ACTIONS(4168), 17,
- anon_sym_as,
- anon_sym_LBRACE,
- anon_sym_COMMA,
- anon_sym_RBRACE,
- anon_sym_LPAREN,
- anon_sym_RPAREN,
- anon_sym_COLON,
- anon_sym_LBRACK,
- anon_sym_RBRACK,
- anon_sym_GT,
- anon_sym_DOT,
- anon_sym_EQ_GT,
- anon_sym_QMARK_DOT,
- anon_sym_AMP,
- anon_sym_PIPE,
- anon_sym_LT,
- anon_sym_extends,
- [115280] = 3,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(4216), 2,
- anon_sym_EQ,
- anon_sym_QMARK,
- ACTIONS(4218), 17,
- anon_sym_as,
- anon_sym_LBRACE,
- anon_sym_COMMA,
- anon_sym_RBRACE,
- anon_sym_LPAREN,
- anon_sym_RPAREN,
- anon_sym_COLON,
- anon_sym_LBRACK,
- anon_sym_RBRACK,
- anon_sym_GT,
- anon_sym_DOT,
- anon_sym_EQ_GT,
- anon_sym_QMARK_DOT,
- anon_sym_AMP,
- anon_sym_PIPE,
- anon_sym_LT,
- anon_sym_extends,
- [115308] = 3,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(4237), 2,
- anon_sym_EQ,
- anon_sym_QMARK,
- ACTIONS(4239), 17,
- anon_sym_as,
- anon_sym_LBRACE,
- anon_sym_COMMA,
- anon_sym_RBRACE,
- anon_sym_LPAREN,
- anon_sym_RPAREN,
- anon_sym_COLON,
- anon_sym_LBRACK,
- anon_sym_RBRACK,
- anon_sym_GT,
- anon_sym_DOT,
- anon_sym_EQ_GT,
- anon_sym_QMARK_DOT,
- anon_sym_AMP,
- anon_sym_PIPE,
- anon_sym_LT,
- anon_sym_extends,
- [115336] = 3,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(4220), 2,
- anon_sym_EQ,
- anon_sym_QMARK,
- ACTIONS(4222), 17,
- anon_sym_as,
- anon_sym_LBRACE,
- anon_sym_COMMA,
- anon_sym_RBRACE,
- anon_sym_LPAREN,
- anon_sym_RPAREN,
- anon_sym_COLON,
- anon_sym_LBRACK,
- anon_sym_RBRACK,
- anon_sym_GT,
- anon_sym_DOT,
- anon_sym_EQ_GT,
- anon_sym_QMARK_DOT,
- anon_sym_AMP,
- anon_sym_PIPE,
- anon_sym_LT,
- anon_sym_extends,
- [115364] = 3,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(4220), 2,
- anon_sym_EQ,
- anon_sym_QMARK,
- ACTIONS(4222), 17,
- anon_sym_as,
- anon_sym_LBRACE,
- anon_sym_COMMA,
- anon_sym_RBRACE,
- anon_sym_LPAREN,
- anon_sym_RPAREN,
- anon_sym_COLON,
- anon_sym_LBRACK,
- anon_sym_RBRACK,
- anon_sym_GT,
- anon_sym_DOT,
- anon_sym_EQ_GT,
- anon_sym_QMARK_DOT,
- anon_sym_AMP,
- anon_sym_PIPE,
- anon_sym_LT,
- anon_sym_extends,
- [115392] = 3,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(4237), 2,
- anon_sym_EQ,
- anon_sym_QMARK,
- ACTIONS(4239), 17,
- anon_sym_as,
- anon_sym_LBRACE,
- anon_sym_COMMA,
- anon_sym_RBRACE,
- anon_sym_LPAREN,
- anon_sym_RPAREN,
- anon_sym_COLON,
- anon_sym_LBRACK,
- anon_sym_RBRACK,
- anon_sym_GT,
- anon_sym_DOT,
- anon_sym_EQ_GT,
- anon_sym_QMARK_DOT,
- anon_sym_AMP,
- anon_sym_PIPE,
- anon_sym_LT,
- anon_sym_extends,
- [115420] = 3,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(4220), 2,
- anon_sym_EQ,
- anon_sym_QMARK,
- ACTIONS(4222), 17,
- anon_sym_as,
- anon_sym_LBRACE,
- anon_sym_COMMA,
- anon_sym_RBRACE,
- anon_sym_LPAREN,
- anon_sym_RPAREN,
- anon_sym_COLON,
- anon_sym_LBRACK,
- anon_sym_RBRACK,
- anon_sym_GT,
- anon_sym_DOT,
- anon_sym_EQ_GT,
- anon_sym_QMARK_DOT,
- anon_sym_AMP,
- anon_sym_PIPE,
- anon_sym_LT,
- anon_sym_extends,
- [115448] = 3,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(4224), 2,
- anon_sym_EQ,
- anon_sym_QMARK,
- ACTIONS(4226), 17,
- anon_sym_as,
- anon_sym_LBRACE,
- anon_sym_COMMA,
- anon_sym_RBRACE,
- anon_sym_LPAREN,
- anon_sym_RPAREN,
- anon_sym_COLON,
- anon_sym_LBRACK,
- anon_sym_RBRACK,
- anon_sym_GT,
- anon_sym_DOT,
- anon_sym_EQ_GT,
- anon_sym_QMARK_DOT,
- anon_sym_AMP,
- anon_sym_PIPE,
- anon_sym_LT,
- anon_sym_extends,
- [115476] = 3,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(4275), 2,
- anon_sym_EQ,
- anon_sym_QMARK,
- ACTIONS(4277), 17,
- anon_sym_as,
- anon_sym_LBRACE,
- anon_sym_COMMA,
- anon_sym_RBRACE,
- anon_sym_LPAREN,
- anon_sym_RPAREN,
- anon_sym_COLON,
- anon_sym_LBRACK,
- anon_sym_RBRACK,
- anon_sym_GT,
- anon_sym_DOT,
- anon_sym_EQ_GT,
- anon_sym_QMARK_DOT,
- anon_sym_AMP,
- anon_sym_PIPE,
- anon_sym_LT,
- anon_sym_extends,
- [115504] = 3,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(4279), 2,
- anon_sym_EQ,
- anon_sym_QMARK,
- ACTIONS(4281), 17,
- anon_sym_as,
- anon_sym_LBRACE,
- anon_sym_COMMA,
- anon_sym_RBRACE,
- anon_sym_LPAREN,
- anon_sym_RPAREN,
- anon_sym_COLON,
- anon_sym_LBRACK,
- anon_sym_RBRACK,
- anon_sym_GT,
- anon_sym_DOT,
- anon_sym_EQ_GT,
- anon_sym_QMARK_DOT,
- anon_sym_AMP,
- anon_sym_PIPE,
- anon_sym_LT,
- anon_sym_extends,
- [115532] = 3,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(4279), 2,
- anon_sym_EQ,
- anon_sym_QMARK,
- ACTIONS(4281), 17,
- anon_sym_as,
- anon_sym_LBRACE,
- anon_sym_COMMA,
- anon_sym_RBRACE,
- anon_sym_LPAREN,
- anon_sym_RPAREN,
- anon_sym_COLON,
- anon_sym_LBRACK,
- anon_sym_RBRACK,
- anon_sym_GT,
- anon_sym_DOT,
- anon_sym_EQ_GT,
- anon_sym_QMARK_DOT,
- anon_sym_AMP,
- anon_sym_PIPE,
- anon_sym_LT,
- anon_sym_extends,
- [115560] = 3,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(4279), 2,
- anon_sym_EQ,
- anon_sym_QMARK,
- ACTIONS(4281), 17,
- anon_sym_as,
- anon_sym_LBRACE,
- anon_sym_COMMA,
- anon_sym_RBRACE,
- anon_sym_LPAREN,
- anon_sym_RPAREN,
- anon_sym_COLON,
- anon_sym_LBRACK,
- anon_sym_RBRACK,
- anon_sym_GT,
- anon_sym_DOT,
- anon_sym_EQ_GT,
- anon_sym_QMARK_DOT,
- anon_sym_AMP,
- anon_sym_PIPE,
- anon_sym_LT,
- anon_sym_extends,
- [115588] = 3,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(4285), 2,
- anon_sym_EQ,
- anon_sym_QMARK,
- ACTIONS(4287), 17,
- anon_sym_as,
- anon_sym_LBRACE,
- anon_sym_COMMA,
- anon_sym_RBRACE,
- anon_sym_LPAREN,
- anon_sym_RPAREN,
- anon_sym_COLON,
- anon_sym_LBRACK,
- anon_sym_RBRACK,
- anon_sym_GT,
- anon_sym_DOT,
- anon_sym_EQ_GT,
- anon_sym_QMARK_DOT,
- anon_sym_AMP,
- anon_sym_PIPE,
- anon_sym_LT,
- anon_sym_extends,
- [115616] = 3,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(4285), 2,
- anon_sym_EQ,
- anon_sym_QMARK,
- ACTIONS(4287), 17,
- anon_sym_as,
- anon_sym_LBRACE,
- anon_sym_COMMA,
- anon_sym_RBRACE,
- anon_sym_LPAREN,
- anon_sym_RPAREN,
- anon_sym_COLON,
- anon_sym_LBRACK,
- anon_sym_RBRACK,
- anon_sym_GT,
- anon_sym_DOT,
- anon_sym_EQ_GT,
- anon_sym_QMARK_DOT,
- anon_sym_AMP,
- anon_sym_PIPE,
- anon_sym_LT,
- anon_sym_extends,
- [115644] = 3,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(4293), 2,
- anon_sym_EQ,
- anon_sym_QMARK,
- ACTIONS(4295), 17,
- anon_sym_as,
- anon_sym_LBRACE,
- anon_sym_COMMA,
- anon_sym_RBRACE,
- anon_sym_LPAREN,
- anon_sym_RPAREN,
- anon_sym_COLON,
- anon_sym_LBRACK,
- anon_sym_RBRACK,
- anon_sym_GT,
- anon_sym_DOT,
- anon_sym_EQ_GT,
- anon_sym_QMARK_DOT,
- anon_sym_AMP,
- anon_sym_PIPE,
- anon_sym_LT,
- anon_sym_extends,
- [115672] = 3,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(4511), 2,
- anon_sym_EQ,
- anon_sym_QMARK,
- ACTIONS(4513), 17,
- anon_sym_as,
- anon_sym_LBRACE,
- anon_sym_COMMA,
- anon_sym_RBRACE,
- anon_sym_LPAREN,
- anon_sym_RPAREN,
- anon_sym_COLON,
- anon_sym_LBRACK,
- anon_sym_RBRACK,
- anon_sym_GT,
- anon_sym_DOT,
- anon_sym_EQ_GT,
- anon_sym_QMARK_DOT,
- anon_sym_AMP,
- anon_sym_PIPE,
- anon_sym_LT,
- anon_sym_extends,
- [115700] = 3,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(4146), 2,
- anon_sym_EQ,
- anon_sym_QMARK,
- ACTIONS(4148), 17,
- anon_sym_as,
- anon_sym_LBRACE,
- anon_sym_COMMA,
- anon_sym_RBRACE,
- anon_sym_LPAREN,
- anon_sym_RPAREN,
- anon_sym_COLON,
- anon_sym_LBRACK,
- anon_sym_RBRACK,
- anon_sym_GT,
- anon_sym_DOT,
- anon_sym_EQ_GT,
- anon_sym_QMARK_DOT,
- anon_sym_AMP,
- anon_sym_PIPE,
- anon_sym_LT,
- anon_sym_extends,
- [115728] = 3,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(4150), 2,
- anon_sym_EQ,
- anon_sym_QMARK,
- ACTIONS(4152), 17,
- anon_sym_as,
- anon_sym_LBRACE,
- anon_sym_COMMA,
- anon_sym_RBRACE,
- anon_sym_LPAREN,
- anon_sym_RPAREN,
- anon_sym_COLON,
- anon_sym_LBRACK,
- anon_sym_RBRACK,
- anon_sym_GT,
- anon_sym_DOT,
- anon_sym_EQ_GT,
- anon_sym_QMARK_DOT,
- anon_sym_AMP,
- anon_sym_PIPE,
- anon_sym_LT,
- anon_sym_extends,
- [115756] = 3,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(4154), 2,
- anon_sym_EQ,
- anon_sym_QMARK,
- ACTIONS(4156), 17,
- anon_sym_as,
- anon_sym_LBRACE,
- anon_sym_COMMA,
- anon_sym_RBRACE,
- anon_sym_LPAREN,
- anon_sym_RPAREN,
- anon_sym_COLON,
- anon_sym_LBRACK,
- anon_sym_RBRACK,
- anon_sym_GT,
- anon_sym_DOT,
- anon_sym_EQ_GT,
- anon_sym_QMARK_DOT,
- anon_sym_AMP,
- anon_sym_PIPE,
- anon_sym_LT,
- anon_sym_extends,
- [115784] = 3,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(4150), 2,
- anon_sym_EQ,
- anon_sym_QMARK,
- ACTIONS(4152), 17,
- anon_sym_as,
- anon_sym_LBRACE,
- anon_sym_COMMA,
- anon_sym_RBRACE,
- anon_sym_LPAREN,
- anon_sym_RPAREN,
- anon_sym_COLON,
- anon_sym_LBRACK,
- anon_sym_RBRACK,
- anon_sym_GT,
- anon_sym_DOT,
- anon_sym_EQ_GT,
- anon_sym_QMARK_DOT,
- anon_sym_AMP,
- anon_sym_PIPE,
- anon_sym_LT,
- anon_sym_extends,
- [115812] = 3,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(4154), 2,
- anon_sym_EQ,
- anon_sym_QMARK,
- ACTIONS(4156), 17,
- anon_sym_as,
- anon_sym_LBRACE,
- anon_sym_COMMA,
- anon_sym_RBRACE,
- anon_sym_LPAREN,
- anon_sym_RPAREN,
- anon_sym_COLON,
- anon_sym_LBRACK,
- anon_sym_RBRACK,
- anon_sym_GT,
- anon_sym_DOT,
- anon_sym_EQ_GT,
- anon_sym_QMARK_DOT,
- anon_sym_AMP,
- anon_sym_PIPE,
- anon_sym_LT,
- anon_sym_extends,
- [115840] = 3,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(4158), 2,
- anon_sym_EQ,
- anon_sym_QMARK,
- ACTIONS(4160), 17,
- anon_sym_as,
- anon_sym_LBRACE,
- anon_sym_COMMA,
- anon_sym_RBRACE,
- anon_sym_LPAREN,
- anon_sym_RPAREN,
- anon_sym_COLON,
- anon_sym_LBRACK,
- anon_sym_RBRACK,
- anon_sym_GT,
- anon_sym_DOT,
- anon_sym_EQ_GT,
- anon_sym_QMARK_DOT,
- anon_sym_AMP,
- anon_sym_PIPE,
- anon_sym_LT,
- anon_sym_extends,
- [115868] = 3,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(4162), 2,
- anon_sym_EQ,
- anon_sym_QMARK,
- ACTIONS(4164), 17,
- anon_sym_as,
- anon_sym_LBRACE,
- anon_sym_COMMA,
- anon_sym_RBRACE,
- anon_sym_LPAREN,
- anon_sym_RPAREN,
- anon_sym_COLON,
- anon_sym_LBRACK,
- anon_sym_RBRACK,
- anon_sym_GT,
- anon_sym_DOT,
- anon_sym_EQ_GT,
- anon_sym_QMARK_DOT,
- anon_sym_AMP,
- anon_sym_PIPE,
- anon_sym_LT,
- anon_sym_extends,
- [115896] = 3,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(4158), 2,
- anon_sym_EQ,
- anon_sym_QMARK,
- ACTIONS(4160), 17,
- anon_sym_as,
- anon_sym_LBRACE,
- anon_sym_COMMA,
- anon_sym_RBRACE,
- anon_sym_LPAREN,
- anon_sym_RPAREN,
- anon_sym_COLON,
- anon_sym_LBRACK,
- anon_sym_RBRACK,
- anon_sym_GT,
- anon_sym_DOT,
- anon_sym_EQ_GT,
- anon_sym_QMARK_DOT,
- anon_sym_AMP,
- anon_sym_PIPE,
- anon_sym_LT,
- anon_sym_extends,
- [115924] = 3,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(4162), 2,
- anon_sym_EQ,
- anon_sym_QMARK,
- ACTIONS(4164), 17,
- anon_sym_as,
- anon_sym_LBRACE,
- anon_sym_COMMA,
- anon_sym_RBRACE,
- anon_sym_LPAREN,
- anon_sym_RPAREN,
- anon_sym_COLON,
- anon_sym_LBRACK,
- anon_sym_RBRACK,
- anon_sym_GT,
- anon_sym_DOT,
- anon_sym_EQ_GT,
- anon_sym_QMARK_DOT,
- anon_sym_AMP,
- anon_sym_PIPE,
- anon_sym_LT,
- anon_sym_extends,
- [115952] = 3,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(4166), 2,
- anon_sym_EQ,
- anon_sym_QMARK,
- ACTIONS(4168), 17,
- anon_sym_as,
- anon_sym_LBRACE,
- anon_sym_COMMA,
- anon_sym_RBRACE,
- anon_sym_LPAREN,
- anon_sym_RPAREN,
- anon_sym_COLON,
- anon_sym_LBRACK,
- anon_sym_RBRACK,
- anon_sym_GT,
- anon_sym_DOT,
- anon_sym_EQ_GT,
- anon_sym_QMARK_DOT,
- anon_sym_AMP,
- anon_sym_PIPE,
- anon_sym_LT,
- anon_sym_extends,
- [115980] = 3,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(4177), 2,
- anon_sym_EQ,
- anon_sym_QMARK,
- ACTIONS(4179), 17,
- anon_sym_as,
- anon_sym_LBRACE,
- anon_sym_COMMA,
- anon_sym_RBRACE,
- anon_sym_LPAREN,
- anon_sym_RPAREN,
- anon_sym_COLON,
- anon_sym_LBRACK,
- anon_sym_RBRACK,
- anon_sym_GT,
- anon_sym_DOT,
- anon_sym_EQ_GT,
- anon_sym_QMARK_DOT,
- anon_sym_AMP,
- anon_sym_PIPE,
- anon_sym_LT,
- anon_sym_extends,
- [116008] = 3,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(4177), 2,
- anon_sym_EQ,
- anon_sym_QMARK,
- ACTIONS(4179), 17,
- anon_sym_as,
- anon_sym_LBRACE,
- anon_sym_COMMA,
- anon_sym_RBRACE,
- anon_sym_LPAREN,
- anon_sym_RPAREN,
- anon_sym_COLON,
- anon_sym_LBRACK,
- anon_sym_RBRACK,
- anon_sym_GT,
- anon_sym_DOT,
- anon_sym_EQ_GT,
- anon_sym_QMARK_DOT,
- anon_sym_AMP,
- anon_sym_PIPE,
- anon_sym_LT,
- anon_sym_extends,
- [116036] = 3,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(4224), 2,
- anon_sym_EQ,
- anon_sym_QMARK,
- ACTIONS(4226), 17,
- anon_sym_as,
- anon_sym_LBRACE,
- anon_sym_COMMA,
- anon_sym_RBRACE,
- anon_sym_LPAREN,
- anon_sym_RPAREN,
- anon_sym_COLON,
- anon_sym_LBRACK,
- anon_sym_RBRACK,
- anon_sym_GT,
- anon_sym_DOT,
- anon_sym_EQ_GT,
- anon_sym_QMARK_DOT,
- anon_sym_AMP,
- anon_sym_PIPE,
- anon_sym_LT,
- anon_sym_extends,
- [116064] = 3,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(4293), 2,
- anon_sym_EQ,
- anon_sym_QMARK,
- ACTIONS(4295), 17,
- anon_sym_as,
- anon_sym_LBRACE,
- anon_sym_COMMA,
- anon_sym_RBRACE,
- anon_sym_LPAREN,
- anon_sym_RPAREN,
- anon_sym_COLON,
- anon_sym_LBRACK,
- anon_sym_RBRACK,
- anon_sym_GT,
- anon_sym_DOT,
- anon_sym_EQ_GT,
- anon_sym_QMARK_DOT,
- anon_sym_AMP,
- anon_sym_PIPE,
- anon_sym_LT,
- anon_sym_extends,
- [116092] = 3,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(4293), 2,
- anon_sym_EQ,
- anon_sym_QMARK,
- ACTIONS(4295), 17,
- anon_sym_as,
- anon_sym_LBRACE,
- anon_sym_COMMA,
- anon_sym_RBRACE,
- anon_sym_LPAREN,
- anon_sym_RPAREN,
- anon_sym_COLON,
- anon_sym_LBRACK,
- anon_sym_RBRACK,
- anon_sym_GT,
- anon_sym_DOT,
- anon_sym_EQ_GT,
- anon_sym_QMARK_DOT,
- anon_sym_AMP,
- anon_sym_PIPE,
- anon_sym_LT,
- anon_sym_extends,
- [116120] = 3,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(4224), 2,
- anon_sym_EQ,
- anon_sym_QMARK,
- ACTIONS(4226), 17,
- anon_sym_as,
- anon_sym_LBRACE,
- anon_sym_COMMA,
- anon_sym_RBRACE,
- anon_sym_LPAREN,
- anon_sym_RPAREN,
- anon_sym_COLON,
- anon_sym_LBRACK,
- anon_sym_RBRACK,
- anon_sym_GT,
- anon_sym_DOT,
- anon_sym_EQ_GT,
- anon_sym_QMARK_DOT,
- anon_sym_AMP,
- anon_sym_PIPE,
- anon_sym_LT,
- anon_sym_extends,
- [116148] = 3,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(4237), 2,
- anon_sym_EQ,
- anon_sym_QMARK,
- ACTIONS(4239), 17,
- anon_sym_as,
- anon_sym_LBRACE,
- anon_sym_COMMA,
- anon_sym_RBRACE,
- anon_sym_LPAREN,
- anon_sym_RPAREN,
- anon_sym_COLON,
- anon_sym_LBRACK,
- anon_sym_RBRACK,
- anon_sym_GT,
- anon_sym_DOT,
- anon_sym_EQ_GT,
- anon_sym_QMARK_DOT,
- anon_sym_AMP,
- anon_sym_PIPE,
- anon_sym_LT,
- anon_sym_extends,
- [116176] = 3,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(4285), 2,
- anon_sym_EQ,
- anon_sym_QMARK,
- ACTIONS(4287), 17,
- anon_sym_as,
- anon_sym_LBRACE,
- anon_sym_COMMA,
- anon_sym_RBRACE,
- anon_sym_LPAREN,
- anon_sym_RPAREN,
- anon_sym_COLON,
- anon_sym_LBRACK,
- anon_sym_RBRACK,
- anon_sym_GT,
- anon_sym_DOT,
- anon_sym_EQ_GT,
- anon_sym_QMARK_DOT,
- anon_sym_AMP,
- anon_sym_PIPE,
- anon_sym_LT,
- anon_sym_extends,
- [116204] = 18,
- ACTIONS(5991), 1,
- anon_sym_LT,
- ACTIONS(6252), 1,
- sym_identifier,
- ACTIONS(6254), 1,
- anon_sym_EQ,
- ACTIONS(6256), 1,
- anon_sym_LBRACE,
- ACTIONS(6258), 1,
- anon_sym_COMMA,
- ACTIONS(6260), 1,
- anon_sym_COLON,
- ACTIONS(6262), 1,
- anon_sym_GT,
- ACTIONS(6265), 1,
- sym_jsx_identifier,
- ACTIONS(6267), 1,
- anon_sym_DOT,
- ACTIONS(6269), 1,
- anon_sym_SLASH_GT,
- ACTIONS(6271), 1,
- anon_sym_extends,
- STATE(3376), 1,
- sym_type_arguments,
- STATE(3377), 1,
- aux_sym__jsx_start_opening_element_repeat1,
- STATE(3826), 1,
- sym_jsx_namespace_name,
- STATE(4540), 1,
- sym_constraint,
- STATE(5495), 1,
- sym_default_type,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- STATE(4391), 2,
- sym_jsx_expression,
- sym_jsx_attribute,
- [116261] = 3,
- ACTIONS(1919), 1,
- anon_sym_PIPE,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(1917), 17,
- sym__automatic_semicolon,
- anon_sym_EQ,
- anon_sym_LBRACE,
- anon_sym_COMMA,
- anon_sym_RBRACE,
- anon_sym_with,
- anon_sym_assert,
- anon_sym_BANG,
- anon_sym_LPAREN,
- anon_sym_SEMI,
- anon_sym_COLON,
- anon_sym_LBRACK,
- anon_sym_AMP,
- anon_sym_LT,
- anon_sym_QMARK,
- anon_sym_extends,
- anon_sym_PIPE_RBRACE,
- [116288] = 18,
- ACTIONS(5991), 1,
- anon_sym_LT,
- ACTIONS(6252), 1,
- sym_identifier,
- ACTIONS(6254), 1,
- anon_sym_EQ,
- ACTIONS(6256), 1,
- anon_sym_LBRACE,
- ACTIONS(6258), 1,
- anon_sym_COMMA,
- ACTIONS(6260), 1,
- anon_sym_COLON,
- ACTIONS(6262), 1,
- anon_sym_GT,
- ACTIONS(6265), 1,
- sym_jsx_identifier,
- ACTIONS(6267), 1,
- anon_sym_DOT,
- ACTIONS(6271), 1,
- anon_sym_extends,
- ACTIONS(6273), 1,
- anon_sym_SLASH_GT,
- STATE(3310), 1,
- sym_type_arguments,
- STATE(3448), 1,
- aux_sym__jsx_start_opening_element_repeat1,
- STATE(3826), 1,
- sym_jsx_namespace_name,
- STATE(4540), 1,
- sym_constraint,
- STATE(5495), 1,
- sym_default_type,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- STATE(4391), 2,
- sym_jsx_expression,
- sym_jsx_attribute,
- [116345] = 3,
- ACTIONS(1823), 1,
- anon_sym_PIPE,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(1821), 17,
- sym__automatic_semicolon,
- anon_sym_EQ,
- anon_sym_LBRACE,
- anon_sym_COMMA,
- anon_sym_RBRACE,
- anon_sym_with,
- anon_sym_assert,
- anon_sym_BANG,
- anon_sym_LPAREN,
- anon_sym_SEMI,
- anon_sym_COLON,
- anon_sym_LBRACK,
- anon_sym_AMP,
- anon_sym_LT,
- anon_sym_QMARK,
- anon_sym_extends,
- anon_sym_PIPE_RBRACE,
- [116372] = 14,
- ACTIONS(1594), 1,
- anon_sym_DQUOTE,
- ACTIONS(1596), 1,
- anon_sym_SQUOTE,
- ACTIONS(6275), 1,
- sym_identifier,
- ACTIONS(6277), 1,
- anon_sym_STAR,
- ACTIONS(6279), 1,
- anon_sym_type,
- ACTIONS(6281), 1,
- anon_sym_LBRACE,
- ACTIONS(6283), 1,
- anon_sym_typeof,
- STATE(4257), 1,
- sym_string,
- STATE(4285), 1,
- sym_import_require_clause,
- STATE(5220), 1,
- sym_import_clause,
- STATE(5247), 1,
- sym__import_identifier,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- STATE(5580), 2,
- sym_namespace_import,
- sym_named_imports,
- ACTIONS(6285), 5,
- anon_sym_LPAREN,
- anon_sym_DOT,
- anon_sym_QMARK_DOT,
- anon_sym_LT,
- anon_sym_BQUOTE,
- [116421] = 6,
- ACTIONS(4007), 1,
- anon_sym_EQ,
- ACTIONS(6246), 1,
- anon_sym_LT,
- ACTIONS(6287), 1,
- anon_sym_DOT,
- STATE(2856), 1,
- sym_type_arguments,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(3461), 14,
- anon_sym_as,
- anon_sym_LBRACE,
- anon_sym_COMMA,
- anon_sym_RBRACE,
- anon_sym_RPAREN,
- anon_sym_COLON,
- anon_sym_LBRACK,
- anon_sym_RBRACK,
- anon_sym_GT,
- anon_sym_EQ_GT,
- anon_sym_AMP,
- anon_sym_PIPE,
- anon_sym_QMARK,
- anon_sym_extends,
- [116454] = 3,
- ACTIONS(4122), 1,
- anon_sym_EQ,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(4124), 16,
- anon_sym_as,
- anon_sym_LBRACE,
- anon_sym_COMMA,
- anon_sym_RBRACE,
- anon_sym_LPAREN,
- anon_sym_RPAREN,
- anon_sym_COLON,
- anon_sym_LBRACK,
- anon_sym_RBRACK,
- anon_sym_GT,
- anon_sym_DOT,
- anon_sym_EQ_GT,
- anon_sym_AMP,
- anon_sym_PIPE,
- anon_sym_QMARK,
- anon_sym_extends,
- [116480] = 4,
- ACTIONS(1855), 1,
- anon_sym_DOT,
- ACTIONS(4097), 1,
- anon_sym_EQ,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(4099), 15,
- anon_sym_as,
- anon_sym_LBRACE,
- anon_sym_COMMA,
- anon_sym_RBRACE,
- anon_sym_RPAREN,
- anon_sym_COLON,
- anon_sym_LBRACK,
- anon_sym_RBRACK,
- anon_sym_GT,
- anon_sym_EQ_GT,
- anon_sym_AMP,
- anon_sym_PIPE,
- anon_sym_LT,
- anon_sym_QMARK,
- anon_sym_extends,
- [116508] = 9,
- ACTIONS(3408), 1,
- anon_sym_LPAREN,
- ACTIONS(3410), 1,
- anon_sym_DOT,
- ACTIONS(3414), 1,
- anon_sym_QMARK_DOT,
- ACTIONS(3418), 1,
- anon_sym_PIPE,
- ACTIONS(6289), 1,
- anon_sym_LT,
- STATE(3020), 1,
- sym_arguments,
- STATE(3189), 1,
- sym_type_arguments,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(3406), 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,
- [116546] = 5,
- ACTIONS(4025), 1,
- anon_sym_EQ,
- ACTIONS(6246), 1,
- anon_sym_LT,
- STATE(2861), 1,
- sym_type_arguments,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(4027), 14,
- anon_sym_as,
- anon_sym_LBRACE,
- anon_sym_COMMA,
- anon_sym_RBRACE,
- anon_sym_RPAREN,
- anon_sym_COLON,
- anon_sym_LBRACK,
- anon_sym_RBRACK,
- anon_sym_GT,
- anon_sym_EQ_GT,
- anon_sym_AMP,
- anon_sym_PIPE,
- anon_sym_QMARK,
- anon_sym_extends,
- [116576] = 3,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(4454), 2,
- anon_sym_EQ,
- anon_sym_QMARK,
- ACTIONS(4456), 15,
- anon_sym_as,
- anon_sym_LBRACE,
- anon_sym_COMMA,
- anon_sym_RBRACE,
- anon_sym_RPAREN,
- anon_sym_COLON,
- anon_sym_LBRACK,
- anon_sym_RBRACK,
- anon_sym_GT,
- anon_sym_DOT,
- anon_sym_EQ_GT,
- anon_sym_QMARK_DOT,
- anon_sym_AMP,
- anon_sym_PIPE,
- anon_sym_extends,
- [116602] = 3,
- ACTIONS(3598), 1,
- anon_sym_EQ,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(3382), 16,
- anon_sym_as,
- anon_sym_LBRACE,
- anon_sym_COMMA,
- anon_sym_RBRACE,
- anon_sym_LPAREN,
- anon_sym_RPAREN,
- anon_sym_COLON,
- anon_sym_LBRACK,
- anon_sym_RBRACK,
- anon_sym_GT,
- anon_sym_DOT,
- anon_sym_EQ_GT,
- anon_sym_AMP,
- anon_sym_PIPE,
- anon_sym_QMARK,
- anon_sym_extends,
- [116628] = 5,
- ACTIONS(3440), 1,
- anon_sym_DOT,
- ACTIONS(3442), 1,
- anon_sym_QMARK_DOT,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(3418), 2,
- anon_sym_EQ,
- anon_sym_QMARK,
- ACTIONS(3406), 13,
- anon_sym_as,
- anon_sym_LBRACE,
- anon_sym_COMMA,
- anon_sym_RBRACE,
- anon_sym_RPAREN,
- anon_sym_COLON,
- anon_sym_LBRACK,
- anon_sym_RBRACK,
- anon_sym_GT,
- anon_sym_EQ_GT,
- anon_sym_AMP,
- anon_sym_PIPE,
- anon_sym_extends,
- [116658] = 9,
- ACTIONS(3408), 1,
- anon_sym_LPAREN,
- ACTIONS(3979), 1,
- anon_sym_PIPE,
- ACTIONS(6289), 1,
- anon_sym_LT,
- ACTIONS(6291), 1,
- anon_sym_DOT,
- ACTIONS(6293), 1,
- anon_sym_QMARK_DOT,
- STATE(3021), 1,
- sym_arguments,
- STATE(3196), 1,
- sym_type_arguments,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(3981), 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,
- [116696] = 5,
- ACTIONS(6295), 1,
- anon_sym_DOT,
- ACTIONS(6297), 1,
- anon_sym_QMARK_DOT,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(4378), 2,
- anon_sym_EQ,
- anon_sym_QMARK,
- ACTIONS(4380), 13,
- anon_sym_as,
- anon_sym_LBRACE,
- anon_sym_COMMA,
- anon_sym_RBRACE,
- anon_sym_RPAREN,
- anon_sym_COLON,
- anon_sym_LBRACK,
- anon_sym_RBRACK,
- anon_sym_GT,
- anon_sym_EQ_GT,
- anon_sym_AMP,
- anon_sym_PIPE,
- anon_sym_extends,
- [116726] = 3,
- ACTIONS(3596), 1,
- anon_sym_EQ,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(3446), 16,
- anon_sym_as,
- anon_sym_LBRACE,
- anon_sym_COMMA,
- anon_sym_RBRACE,
- anon_sym_LPAREN,
- anon_sym_RPAREN,
- anon_sym_COLON,
- anon_sym_LBRACK,
- anon_sym_RBRACK,
- anon_sym_GT,
- anon_sym_DOT,
- anon_sym_EQ_GT,
- anon_sym_AMP,
- anon_sym_PIPE,
- anon_sym_QMARK,
- anon_sym_extends,
- [116752] = 4,
- ACTIONS(1797), 1,
- anon_sym_DOT,
- ACTIONS(4097), 1,
- anon_sym_EQ,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(4099), 15,
- anon_sym_as,
- anon_sym_LBRACE,
- anon_sym_COMMA,
- anon_sym_RBRACE,
- anon_sym_RPAREN,
- anon_sym_COLON,
- anon_sym_LBRACK,
- anon_sym_RBRACK,
- anon_sym_GT,
- anon_sym_EQ_GT,
- anon_sym_AMP,
- anon_sym_PIPE,
- anon_sym_LT,
- anon_sym_QMARK,
- anon_sym_extends,
- [116780] = 3,
- ACTIONS(4118), 1,
- anon_sym_EQ,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(4120), 16,
- anon_sym_as,
- anon_sym_LBRACE,
- anon_sym_COMMA,
- anon_sym_RBRACE,
- anon_sym_LPAREN,
- anon_sym_RPAREN,
- anon_sym_COLON,
- anon_sym_LBRACK,
- anon_sym_RBRACK,
- anon_sym_GT,
- anon_sym_DOT,
- anon_sym_EQ_GT,
- anon_sym_AMP,
- anon_sym_PIPE,
- anon_sym_QMARK,
- anon_sym_extends,
- [116806] = 3,
- ACTIONS(4114), 1,
- anon_sym_EQ,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(4116), 16,
- anon_sym_as,
- anon_sym_LBRACE,
- anon_sym_COMMA,
- anon_sym_RBRACE,
- anon_sym_LPAREN,
- anon_sym_RPAREN,
- anon_sym_COLON,
- anon_sym_LBRACK,
- anon_sym_RBRACK,
- anon_sym_GT,
- anon_sym_DOT,
- anon_sym_EQ_GT,
- anon_sym_AMP,
- anon_sym_PIPE,
- anon_sym_QMARK,
- anon_sym_extends,
- [116832] = 3,
- ACTIONS(4126), 1,
- anon_sym_EQ,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(4128), 16,
- anon_sym_as,
- anon_sym_LBRACE,
- anon_sym_COMMA,
- anon_sym_RBRACE,
- anon_sym_LPAREN,
- anon_sym_RPAREN,
- anon_sym_COLON,
- anon_sym_LBRACK,
- anon_sym_RBRACK,
- anon_sym_GT,
- anon_sym_DOT,
- anon_sym_EQ_GT,
- anon_sym_AMP,
- anon_sym_PIPE,
- anon_sym_QMARK,
- anon_sym_extends,
- [116858] = 9,
- ACTIONS(3408), 1,
- anon_sym_LPAREN,
- ACTIONS(3985), 1,
- anon_sym_PIPE,
- ACTIONS(6289), 1,
- anon_sym_LT,
- ACTIONS(6299), 1,
- anon_sym_DOT,
- ACTIONS(6301), 1,
- anon_sym_QMARK_DOT,
- STATE(3023), 1,
- sym_arguments,
- STATE(3206), 1,
- sym_type_arguments,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(3987), 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,
- [116896] = 7,
- ACTIONS(4007), 1,
- anon_sym_EQ,
- ACTIONS(6246), 1,
- anon_sym_LT,
- ACTIONS(6287), 1,
- anon_sym_DOT,
- ACTIONS(6303), 1,
- anon_sym_is,
- STATE(2856), 1,
- sym_type_arguments,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(3461), 12,
- anon_sym_LBRACE,
- anon_sym_COMMA,
- anon_sym_RBRACE,
- anon_sym_RPAREN,
- anon_sym_COLON,
- anon_sym_LBRACK,
- anon_sym_RBRACK,
- anon_sym_GT,
- anon_sym_EQ_GT,
- anon_sym_AMP,
- anon_sym_PIPE,
- anon_sym_extends,
- [116930] = 3,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(4480), 2,
- anon_sym_EQ,
- anon_sym_QMARK,
- ACTIONS(4482), 15,
- anon_sym_as,
- anon_sym_LBRACE,
- anon_sym_COMMA,
- anon_sym_RBRACE,
- anon_sym_RPAREN,
- anon_sym_COLON,
- anon_sym_LBRACK,
- anon_sym_RBRACK,
- anon_sym_GT,
- anon_sym_DOT,
- anon_sym_EQ_GT,
- anon_sym_QMARK_DOT,
- anon_sym_AMP,
- anon_sym_PIPE,
- anon_sym_extends,
- [116956] = 3,
- ACTIONS(4142), 1,
- anon_sym_EQ,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(4144), 16,
- anon_sym_as,
- anon_sym_LBRACE,
- anon_sym_COMMA,
- anon_sym_RBRACE,
- anon_sym_LPAREN,
- anon_sym_RPAREN,
- anon_sym_COLON,
- anon_sym_LBRACK,
- anon_sym_RBRACK,
- anon_sym_GT,
- anon_sym_EQ_GT,
- anon_sym_AMP,
- anon_sym_PIPE,
- anon_sym_BQUOTE,
- anon_sym_QMARK,
- anon_sym_extends,
- [116982] = 3,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(4488), 2,
- anon_sym_EQ,
- anon_sym_QMARK,
- ACTIONS(4490), 15,
- anon_sym_as,
- anon_sym_LBRACE,
- anon_sym_COMMA,
- anon_sym_RBRACE,
- anon_sym_RPAREN,
- anon_sym_COLON,
- anon_sym_LBRACK,
- anon_sym_RBRACK,
- anon_sym_GT,
- anon_sym_DOT,
- anon_sym_EQ_GT,
- anon_sym_QMARK_DOT,
- anon_sym_AMP,
- anon_sym_PIPE,
- anon_sym_extends,
- [117008] = 3,
- ACTIONS(4332), 1,
- anon_sym_EQ,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(4334), 16,
- anon_sym_as,
- anon_sym_LBRACE,
- anon_sym_COMMA,
- anon_sym_RBRACE,
- anon_sym_LPAREN,
- anon_sym_RPAREN,
- anon_sym_COLON,
- anon_sym_LBRACK,
- anon_sym_RBRACK,
- anon_sym_GT,
- anon_sym_EQ_GT,
- anon_sym_AMP,
- anon_sym_PIPE,
- anon_sym_BQUOTE,
- anon_sym_QMARK,
- anon_sym_extends,
- [117034] = 3,
- ACTIONS(4470), 1,
- anon_sym_EQ,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(4472), 16,
- anon_sym_as,
- anon_sym_LBRACE,
- anon_sym_COMMA,
- anon_sym_RBRACE,
- anon_sym_LPAREN,
- anon_sym_RPAREN,
- anon_sym_COLON,
- anon_sym_LBRACK,
- anon_sym_RBRACK,
- anon_sym_GT,
- anon_sym_EQ_GT,
- anon_sym_AMP,
- anon_sym_PIPE,
- anon_sym_BQUOTE,
- anon_sym_QMARK,
- anon_sym_extends,
- [117060] = 6,
- ACTIONS(3438), 1,
- anon_sym_LPAREN,
- ACTIONS(4019), 1,
- anon_sym_EQ,
- ACTIONS(6305), 1,
- anon_sym_DOT,
- STATE(2847), 1,
- sym_arguments,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(4021), 12,
- anon_sym_LBRACE,
- anon_sym_COMMA,
- anon_sym_RBRACE,
- anon_sym_RPAREN,
- anon_sym_COLON,
- anon_sym_LBRACK,
- anon_sym_RBRACK,
- anon_sym_GT,
- anon_sym_EQ_GT,
- anon_sym_AMP,
- anon_sym_PIPE,
- anon_sym_extends,
- [117091] = 3,
- ACTIONS(4466), 1,
- anon_sym_EQ,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(4468), 15,
- anon_sym_as,
- anon_sym_LBRACE,
- anon_sym_COMMA,
- anon_sym_RBRACE,
- anon_sym_RPAREN,
- anon_sym_COLON,
- anon_sym_LBRACK,
- anon_sym_RBRACK,
- anon_sym_GT,
- anon_sym_DOT,
- anon_sym_EQ_GT,
- anon_sym_AMP,
- anon_sym_PIPE,
- anon_sym_QMARK,
- anon_sym_extends,
- [117116] = 3,
- ACTIONS(4458), 1,
- anon_sym_EQ,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(4460), 15,
- anon_sym_as,
- anon_sym_LBRACE,
- anon_sym_COMMA,
- anon_sym_RBRACE,
- anon_sym_RPAREN,
- anon_sym_COLON,
- anon_sym_LBRACK,
- anon_sym_RBRACK,
- anon_sym_GT,
- anon_sym_DOT,
- anon_sym_EQ_GT,
- anon_sym_AMP,
- anon_sym_PIPE,
- anon_sym_QMARK,
- anon_sym_extends,
- [117141] = 3,
- ACTIONS(4045), 1,
- anon_sym_EQ,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(4047), 15,
- anon_sym_as,
- anon_sym_LBRACE,
- anon_sym_COMMA,
- anon_sym_RBRACE,
- anon_sym_RPAREN,
- anon_sym_COLON,
- anon_sym_LBRACK,
- anon_sym_RBRACK,
- anon_sym_GT,
- anon_sym_EQ_GT,
- anon_sym_AMP,
- anon_sym_PIPE,
- anon_sym_QMARK,
- anon_sym_extends,
- anon_sym_is,
- [117166] = 4,
- ACTIONS(4336), 1,
- anon_sym_EQ,
- ACTIONS(6307), 1,
- anon_sym_DOT,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(4338), 14,
- anon_sym_as,
- anon_sym_LBRACE,
- anon_sym_COMMA,
- anon_sym_RBRACE,
- anon_sym_RPAREN,
- anon_sym_COLON,
- anon_sym_LBRACK,
- anon_sym_RBRACK,
- anon_sym_GT,
- anon_sym_EQ_GT,
- anon_sym_AMP,
- anon_sym_PIPE,
- anon_sym_QMARK,
- anon_sym_extends,
- [117193] = 3,
- ACTIONS(1652), 1,
- anon_sym_EQ,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(1650), 15,
- anon_sym_as,
- anon_sym_LBRACE,
- anon_sym_COMMA,
- anon_sym_RBRACE,
- anon_sym_RPAREN,
- anon_sym_COLON,
- anon_sym_LBRACK,
- anon_sym_RBRACK,
- anon_sym_GT,
- anon_sym_EQ_GT,
- anon_sym_AMP,
- anon_sym_PIPE,
- anon_sym_QMARK,
- anon_sym_extends,
- anon_sym_is,
- [117218] = 3,
- ACTIONS(4476), 1,
- anon_sym_EQ,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(4478), 14,
- anon_sym_as,
- anon_sym_LBRACE,
- anon_sym_COMMA,
- anon_sym_RBRACE,
- anon_sym_RPAREN,
- anon_sym_COLON,
- anon_sym_LBRACK,
- anon_sym_RBRACK,
- anon_sym_GT,
- anon_sym_EQ_GT,
- anon_sym_AMP,
- anon_sym_PIPE,
- anon_sym_QMARK,
- anon_sym_extends,
- [117242] = 3,
- ACTIONS(4259), 1,
- anon_sym_EQ,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(4261), 14,
- anon_sym_as,
- anon_sym_LBRACE,
- anon_sym_COMMA,
- anon_sym_RBRACE,
- anon_sym_RPAREN,
- anon_sym_COLON,
- anon_sym_LBRACK,
- anon_sym_RBRACK,
- anon_sym_GT,
- anon_sym_EQ_GT,
- anon_sym_AMP,
- anon_sym_PIPE,
- anon_sym_QMARK,
- anon_sym_extends,
- [117266] = 3,
- ACTIONS(4263), 1,
- anon_sym_EQ,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(4265), 14,
- anon_sym_as,
- anon_sym_LBRACE,
- anon_sym_COMMA,
- anon_sym_RBRACE,
- anon_sym_RPAREN,
- anon_sym_COLON,
- anon_sym_LBRACK,
- anon_sym_RBRACK,
- anon_sym_GT,
- anon_sym_EQ_GT,
- anon_sym_AMP,
- anon_sym_PIPE,
- anon_sym_QMARK,
- anon_sym_extends,
- [117290] = 3,
- ACTIONS(4013), 1,
- anon_sym_EQ,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(4015), 14,
- anon_sym_as,
- anon_sym_LBRACE,
- anon_sym_COMMA,
- anon_sym_RBRACE,
- anon_sym_RPAREN,
- anon_sym_COLON,
- anon_sym_LBRACK,
- anon_sym_RBRACK,
- anon_sym_GT,
- anon_sym_EQ_GT,
- anon_sym_AMP,
- anon_sym_PIPE,
- anon_sym_QMARK,
- anon_sym_extends,
- [117314] = 3,
- ACTIONS(4410), 1,
- anon_sym_EQ,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(4412), 14,
- anon_sym_as,
- anon_sym_LBRACE,
- anon_sym_COMMA,
- anon_sym_RBRACE,
- anon_sym_RPAREN,
- anon_sym_COLON,
- anon_sym_LBRACK,
- anon_sym_RBRACK,
- anon_sym_GT,
- anon_sym_EQ_GT,
- anon_sym_AMP,
- anon_sym_PIPE,
- anon_sym_QMARK,
- anon_sym_extends,
- [117338] = 3,
- ACTIONS(4301), 1,
- anon_sym_EQ,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(4303), 14,
- anon_sym_as,
- anon_sym_LBRACE,
- anon_sym_COMMA,
- anon_sym_RBRACE,
- anon_sym_RPAREN,
- anon_sym_COLON,
- anon_sym_LBRACK,
- anon_sym_RBRACK,
- anon_sym_GT,
- anon_sym_EQ_GT,
- anon_sym_AMP,
- anon_sym_PIPE,
- anon_sym_QMARK,
- anon_sym_extends,
- [117362] = 5,
- ACTIONS(4424), 1,
- anon_sym_EQ,
- ACTIONS(6309), 1,
- anon_sym_LBRACK,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(4344), 3,
- anon_sym_AMP,
- anon_sym_PIPE,
- anon_sym_extends,
- ACTIONS(4426), 10,
- anon_sym_as,
- anon_sym_LBRACE,
- anon_sym_COMMA,
- anon_sym_RBRACE,
- anon_sym_RPAREN,
- anon_sym_COLON,
- anon_sym_RBRACK,
- anon_sym_GT,
- anon_sym_EQ_GT,
- anon_sym_QMARK,
- [117390] = 3,
- ACTIONS(4271), 1,
- anon_sym_EQ,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(4273), 14,
- anon_sym_as,
- anon_sym_LBRACE,
- anon_sym_COMMA,
- anon_sym_RBRACE,
- anon_sym_RPAREN,
- anon_sym_COLON,
- anon_sym_LBRACK,
- anon_sym_RBRACK,
- anon_sym_GT,
- anon_sym_EQ_GT,
- anon_sym_AMP,
- anon_sym_PIPE,
- anon_sym_QMARK,
- anon_sym_extends,
- [117414] = 4,
- ACTIONS(4434), 1,
- anon_sym_EQ,
- ACTIONS(6309), 1,
- anon_sym_LBRACK,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(4436), 13,
- anon_sym_as,
- anon_sym_LBRACE,
- anon_sym_COMMA,
- anon_sym_RBRACE,
- anon_sym_RPAREN,
- anon_sym_COLON,
- anon_sym_RBRACK,
- anon_sym_GT,
- anon_sym_EQ_GT,
- anon_sym_AMP,
- anon_sym_PIPE,
- anon_sym_QMARK,
- anon_sym_extends,
- [117440] = 3,
- ACTIONS(4462), 1,
- anon_sym_EQ,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(4464), 14,
- anon_sym_as,
- anon_sym_LBRACE,
- anon_sym_COMMA,
- anon_sym_RBRACE,
- anon_sym_RPAREN,
- anon_sym_COLON,
- anon_sym_LBRACK,
- anon_sym_RBRACK,
- anon_sym_GT,
- anon_sym_EQ_GT,
- anon_sym_AMP,
- anon_sym_PIPE,
- anon_sym_QMARK,
- anon_sym_extends,
- [117464] = 8,
- ACTIONS(6311), 1,
- anon_sym_LPAREN,
- ACTIONS(6313), 1,
- anon_sym_DOT,
- ACTIONS(6315), 1,
- anon_sym_QMARK_DOT,
- ACTIONS(6317), 1,
- anon_sym_LT,
- STATE(3185), 1,
- sym_arguments,
- STATE(3394), 1,
- sym_type_arguments,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(3406), 9,
- sym__automatic_semicolon,
- sym__function_signature_automatic_semicolon,
- anon_sym_LBRACE,
- anon_sym_COMMA,
- anon_sym_SEMI,
- anon_sym_LBRACK,
- anon_sym_AMP,
- anon_sym_PIPE,
- anon_sym_extends,
- [117498] = 8,
- ACTIONS(6311), 1,
- anon_sym_LPAREN,
- ACTIONS(6317), 1,
- anon_sym_LT,
- ACTIONS(6319), 1,
- anon_sym_DOT,
- ACTIONS(6321), 1,
- anon_sym_QMARK_DOT,
- STATE(3200), 1,
- sym_arguments,
- STATE(3399), 1,
- sym_type_arguments,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(3981), 9,
- sym__automatic_semicolon,
- sym__function_signature_automatic_semicolon,
- anon_sym_LBRACE,
- anon_sym_COMMA,
- anon_sym_SEMI,
- anon_sym_LBRACK,
- anon_sym_AMP,
- anon_sym_PIPE,
- anon_sym_extends,
- [117532] = 8,
- ACTIONS(6311), 1,
- anon_sym_LPAREN,
- ACTIONS(6317), 1,
- anon_sym_LT,
- ACTIONS(6323), 1,
- anon_sym_DOT,
- ACTIONS(6325), 1,
- anon_sym_QMARK_DOT,
- STATE(3202), 1,
- sym_arguments,
- STATE(3404), 1,
- sym_type_arguments,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(3987), 9,
- sym__automatic_semicolon,
- sym__function_signature_automatic_semicolon,
- anon_sym_LBRACE,
- anon_sym_COMMA,
- anon_sym_SEMI,
- anon_sym_LBRACK,
- anon_sym_AMP,
- anon_sym_PIPE,
- anon_sym_extends,
- [117566] = 3,
- ACTIONS(4484), 1,
- anon_sym_EQ,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(4486), 14,
- anon_sym_as,
- anon_sym_LBRACE,
- anon_sym_COMMA,
- anon_sym_RBRACE,
- anon_sym_RPAREN,
- anon_sym_COLON,
- anon_sym_LBRACK,
- anon_sym_RBRACK,
- anon_sym_GT,
- anon_sym_EQ_GT,
- anon_sym_AMP,
- anon_sym_PIPE,
- anon_sym_QMARK,
- anon_sym_extends,
- [117590] = 3,
- ACTIONS(4492), 1,
- anon_sym_EQ,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(4494), 14,
- anon_sym_as,
- anon_sym_LBRACE,
- anon_sym_COMMA,
- anon_sym_RBRACE,
- anon_sym_RPAREN,
- anon_sym_COLON,
- anon_sym_LBRACK,
- anon_sym_RBRACK,
- anon_sym_GT,
- anon_sym_EQ_GT,
- anon_sym_AMP,
- anon_sym_PIPE,
- anon_sym_QMARK,
- anon_sym_extends,
- [117614] = 7,
- ACTIONS(1506), 1,
- anon_sym_DQUOTE,
- ACTIONS(1508), 1,
- anon_sym_SQUOTE,
- ACTIONS(6329), 1,
- sym_number,
- ACTIONS(6331), 1,
- anon_sym_unique,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- STATE(5710), 2,
- sym_string,
- sym_predefined_type,
- ACTIONS(6327), 9,
- anon_sym_void,
- anon_sym_any,
- anon_sym_number,
- anon_sym_boolean,
- anon_sym_string,
- anon_sym_symbol,
- anon_sym_object,
- anon_sym_unknown,
- anon_sym_never,
- [117646] = 8,
- ACTIONS(1506), 1,
- anon_sym_DQUOTE,
- ACTIONS(1508), 1,
- anon_sym_SQUOTE,
- ACTIONS(6331), 1,
- anon_sym_unique,
- ACTIONS(6333), 1,
- sym_number,
- STATE(5713), 1,
- sym_string,
- STATE(5716), 1,
- sym_predefined_type,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(6327), 9,
- anon_sym_void,
- anon_sym_any,
- anon_sym_number,
- anon_sym_boolean,
- anon_sym_string,
- anon_sym_symbol,
- anon_sym_object,
- anon_sym_unknown,
- anon_sym_never,
- [117680] = 8,
- ACTIONS(1506), 1,
- anon_sym_DQUOTE,
- ACTIONS(1508), 1,
- anon_sym_SQUOTE,
- ACTIONS(6331), 1,
- anon_sym_unique,
- ACTIONS(6335), 1,
- sym_number,
- STATE(5724), 1,
- sym_string,
- STATE(5727), 1,
- sym_predefined_type,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(6327), 9,
- anon_sym_void,
- anon_sym_any,
- anon_sym_number,
- anon_sym_boolean,
- anon_sym_string,
- anon_sym_symbol,
- anon_sym_object,
- anon_sym_unknown,
- anon_sym_never,
- [117714] = 8,
- ACTIONS(1506), 1,
- anon_sym_DQUOTE,
- ACTIONS(1508), 1,
- anon_sym_SQUOTE,
- ACTIONS(6331), 1,
- anon_sym_unique,
- ACTIONS(6337), 1,
- sym_number,
- STATE(5731), 1,
- sym_string,
- STATE(5732), 1,
- sym_predefined_type,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(6327), 9,
- anon_sym_void,
- anon_sym_any,
- anon_sym_number,
- anon_sym_boolean,
- anon_sym_string,
- anon_sym_symbol,
- anon_sym_object,
- anon_sym_unknown,
- anon_sym_never,
- [117748] = 3,
- ACTIONS(4496), 1,
- anon_sym_EQ,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(4498), 14,
- anon_sym_as,
- anon_sym_LBRACE,
- anon_sym_COMMA,
- anon_sym_RBRACE,
- anon_sym_RPAREN,
- anon_sym_COLON,
- anon_sym_LBRACK,
- anon_sym_RBRACK,
- anon_sym_GT,
- anon_sym_EQ_GT,
- anon_sym_AMP,
- anon_sym_PIPE,
- anon_sym_QMARK,
- anon_sym_extends,
- [117772] = 3,
- ACTIONS(4500), 1,
- anon_sym_EQ,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(4502), 14,
- anon_sym_as,
- anon_sym_LBRACE,
- anon_sym_COMMA,
- anon_sym_RBRACE,
- anon_sym_RPAREN,
- anon_sym_COLON,
- anon_sym_LBRACK,
- anon_sym_RBRACK,
- anon_sym_GT,
- anon_sym_EQ_GT,
- anon_sym_AMP,
- anon_sym_PIPE,
- anon_sym_QMARK,
- anon_sym_extends,
- [117796] = 3,
- ACTIONS(4504), 1,
- anon_sym_EQ,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(4506), 14,
- anon_sym_as,
- anon_sym_LBRACE,
- anon_sym_COMMA,
- anon_sym_RBRACE,
- anon_sym_RPAREN,
- anon_sym_COLON,
- anon_sym_LBRACK,
- anon_sym_RBRACK,
- anon_sym_GT,
- anon_sym_EQ_GT,
- anon_sym_AMP,
- anon_sym_PIPE,
- anon_sym_QMARK,
- anon_sym_extends,
- [117820] = 3,
- ACTIONS(4104), 1,
- anon_sym_EQ,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(4106), 14,
- anon_sym_as,
- anon_sym_LBRACE,
- anon_sym_COMMA,
- anon_sym_RBRACE,
- anon_sym_RPAREN,
- anon_sym_COLON,
- anon_sym_LBRACK,
- anon_sym_RBRACK,
- anon_sym_GT,
- anon_sym_EQ_GT,
- anon_sym_AMP,
- anon_sym_PIPE,
- anon_sym_QMARK,
- anon_sym_extends,
- [117844] = 2,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(6339), 15,
- anon_sym_PLUS_EQ,
- anon_sym_DASH_EQ,
- anon_sym_STAR_EQ,
- anon_sym_SLASH_EQ,
- anon_sym_PERCENT_EQ,
- anon_sym_CARET_EQ,
- anon_sym_AMP_EQ,
- anon_sym_PIPE_EQ,
- anon_sym_GT_GT_EQ,
- anon_sym_GT_GT_GT_EQ,
- anon_sym_LT_LT_EQ,
- anon_sym_STAR_STAR_EQ,
- anon_sym_AMP_AMP_EQ,
- anon_sym_PIPE_PIPE_EQ,
- anon_sym_QMARK_QMARK_EQ,
- [117866] = 3,
- ACTIONS(4130), 1,
- anon_sym_EQ,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(4132), 14,
- anon_sym_as,
- anon_sym_LBRACE,
- anon_sym_COMMA,
- anon_sym_RBRACE,
- anon_sym_RPAREN,
- anon_sym_COLON,
- anon_sym_LBRACK,
- anon_sym_RBRACK,
- anon_sym_GT,
- anon_sym_EQ_GT,
- anon_sym_AMP,
- anon_sym_PIPE,
- anon_sym_QMARK,
- anon_sym_extends,
- [117890] = 3,
- ACTIONS(4138), 1,
- anon_sym_EQ,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(4140), 14,
- anon_sym_as,
- anon_sym_LBRACE,
- anon_sym_COMMA,
- anon_sym_RBRACE,
- anon_sym_RPAREN,
- anon_sym_COLON,
- anon_sym_LBRACK,
- anon_sym_RBRACK,
- anon_sym_GT,
- anon_sym_EQ_GT,
- anon_sym_AMP,
- anon_sym_PIPE,
- anon_sym_QMARK,
- anon_sym_extends,
- [117914] = 2,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(6341), 15,
- anon_sym_PLUS_EQ,
- anon_sym_DASH_EQ,
- anon_sym_STAR_EQ,
- anon_sym_SLASH_EQ,
- anon_sym_PERCENT_EQ,
- anon_sym_CARET_EQ,
- anon_sym_AMP_EQ,
- anon_sym_PIPE_EQ,
- anon_sym_GT_GT_EQ,
- anon_sym_GT_GT_GT_EQ,
- anon_sym_LT_LT_EQ,
- anon_sym_STAR_STAR_EQ,
- anon_sym_AMP_AMP_EQ,
- anon_sym_PIPE_PIPE_EQ,
- anon_sym_QMARK_QMARK_EQ,
- [117936] = 7,
- ACTIONS(1506), 1,
- anon_sym_DQUOTE,
- ACTIONS(1508), 1,
- anon_sym_SQUOTE,
- ACTIONS(6331), 1,
- anon_sym_unique,
- ACTIONS(6343), 1,
- sym_number,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- STATE(5766), 2,
- sym_string,
- sym_predefined_type,
- ACTIONS(6327), 9,
- anon_sym_void,
- anon_sym_any,
- anon_sym_number,
- anon_sym_boolean,
- anon_sym_string,
- anon_sym_symbol,
- anon_sym_object,
- anon_sym_unknown,
- anon_sym_never,
- [117968] = 8,
- ACTIONS(1506), 1,
- anon_sym_DQUOTE,
- ACTIONS(1508), 1,
- anon_sym_SQUOTE,
- ACTIONS(6331), 1,
- anon_sym_unique,
- ACTIONS(6345), 1,
- sym_number,
- STATE(5833), 1,
- sym_string,
- STATE(5917), 1,
- sym_predefined_type,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(6327), 9,
- anon_sym_void,
- anon_sym_any,
- anon_sym_number,
- anon_sym_boolean,
- anon_sym_string,
- anon_sym_symbol,
- anon_sym_object,
- anon_sym_unknown,
- anon_sym_never,
- [118002] = 8,
- ACTIONS(1506), 1,
- anon_sym_DQUOTE,
- ACTIONS(1508), 1,
- anon_sym_SQUOTE,
- ACTIONS(6331), 1,
- anon_sym_unique,
- ACTIONS(6347), 1,
- sym_number,
- STATE(5570), 1,
- sym_string,
- STATE(5665), 1,
- sym_predefined_type,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(6327), 9,
- anon_sym_void,
- anon_sym_any,
- anon_sym_number,
- anon_sym_boolean,
- anon_sym_string,
- anon_sym_symbol,
- anon_sym_object,
- anon_sym_unknown,
- anon_sym_never,
- [118036] = 8,
- ACTIONS(1506), 1,
- anon_sym_DQUOTE,
- ACTIONS(1508), 1,
- anon_sym_SQUOTE,
- ACTIONS(6331), 1,
- anon_sym_unique,
- ACTIONS(6349), 1,
- sym_number,
- STATE(5748), 1,
- sym_string,
- STATE(5755), 1,
- sym_predefined_type,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(6327), 9,
- anon_sym_void,
- anon_sym_any,
- anon_sym_number,
- anon_sym_boolean,
- anon_sym_string,
- anon_sym_symbol,
- anon_sym_object,
- anon_sym_unknown,
- anon_sym_never,
- [118070] = 3,
- ACTIONS(4324), 1,
- anon_sym_EQ,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(4326), 14,
- anon_sym_as,
- anon_sym_LBRACE,
- anon_sym_COMMA,
- anon_sym_RBRACE,
- anon_sym_RPAREN,
- anon_sym_COLON,
- anon_sym_LBRACK,
- anon_sym_RBRACK,
- anon_sym_GT,
- anon_sym_EQ_GT,
- anon_sym_AMP,
- anon_sym_PIPE,
- anon_sym_QMARK,
- anon_sym_extends,
- [118094] = 2,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(6351), 15,
- anon_sym_PLUS_EQ,
- anon_sym_DASH_EQ,
- anon_sym_STAR_EQ,
- anon_sym_SLASH_EQ,
- anon_sym_PERCENT_EQ,
- anon_sym_CARET_EQ,
- anon_sym_AMP_EQ,
- anon_sym_PIPE_EQ,
- anon_sym_GT_GT_EQ,
- anon_sym_GT_GT_GT_EQ,
- anon_sym_LT_LT_EQ,
- anon_sym_STAR_STAR_EQ,
- anon_sym_AMP_AMP_EQ,
- anon_sym_PIPE_PIPE_EQ,
- anon_sym_QMARK_QMARK_EQ,
- [118116] = 3,
- ACTIONS(4025), 1,
- anon_sym_EQ,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(4027), 14,
- anon_sym_as,
- anon_sym_LBRACE,
- anon_sym_COMMA,
- anon_sym_RBRACE,
- anon_sym_RPAREN,
- anon_sym_COLON,
- anon_sym_LBRACK,
- anon_sym_RBRACK,
- anon_sym_GT,
- anon_sym_EQ_GT,
- anon_sym_AMP,
- anon_sym_PIPE,
- anon_sym_QMARK,
- anon_sym_extends,
- [118140] = 8,
- ACTIONS(1506), 1,
- anon_sym_DQUOTE,
- ACTIONS(1508), 1,
- anon_sym_SQUOTE,
- ACTIONS(6331), 1,
- anon_sym_unique,
- ACTIONS(6353), 1,
- sym_number,
- STATE(5864), 1,
- sym_string,
- STATE(5868), 1,
- sym_predefined_type,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(6327), 9,
- anon_sym_void,
- anon_sym_any,
- anon_sym_number,
- anon_sym_boolean,
- anon_sym_string,
- anon_sym_symbol,
- anon_sym_object,
- anon_sym_unknown,
- anon_sym_never,
- [118174] = 8,
- ACTIONS(1506), 1,
- anon_sym_DQUOTE,
- ACTIONS(1508), 1,
- anon_sym_SQUOTE,
- ACTIONS(6331), 1,
- anon_sym_unique,
- ACTIONS(6355), 1,
- sym_number,
- STATE(5878), 1,
- sym_string,
- STATE(5881), 1,
- sym_predefined_type,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(6327), 9,
- anon_sym_void,
- anon_sym_any,
- anon_sym_number,
- anon_sym_boolean,
- anon_sym_string,
- anon_sym_symbol,
- anon_sym_object,
- anon_sym_unknown,
- anon_sym_never,
- [118208] = 8,
- ACTIONS(1506), 1,
- anon_sym_DQUOTE,
- ACTIONS(1508), 1,
- anon_sym_SQUOTE,
- ACTIONS(6331), 1,
- anon_sym_unique,
- ACTIONS(6357), 1,
- sym_number,
- STATE(5543), 1,
- sym_predefined_type,
- STATE(5901), 1,
- sym_string,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(6327), 9,
- anon_sym_void,
- anon_sym_any,
- anon_sym_number,
- anon_sym_boolean,
- anon_sym_string,
- anon_sym_symbol,
- anon_sym_object,
- anon_sym_unknown,
- anon_sym_never,
- [118242] = 3,
- ACTIONS(4328), 1,
- anon_sym_EQ,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(4330), 14,
- anon_sym_as,
- anon_sym_LBRACE,
- anon_sym_COMMA,
- anon_sym_RBRACE,
- anon_sym_RPAREN,
- anon_sym_COLON,
- anon_sym_LBRACK,
- anon_sym_RBRACK,
- anon_sym_GT,
- anon_sym_EQ_GT,
- anon_sym_AMP,
- anon_sym_PIPE,
- anon_sym_QMARK,
- anon_sym_extends,
- [118266] = 3,
- ACTIONS(4039), 1,
- anon_sym_EQ,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(4041), 14,
- anon_sym_as,
- anon_sym_LBRACE,
- anon_sym_COMMA,
- anon_sym_RBRACE,
- anon_sym_RPAREN,
- anon_sym_COLON,
- anon_sym_LBRACK,
- anon_sym_RBRACK,
- anon_sym_GT,
- anon_sym_EQ_GT,
- anon_sym_AMP,
- anon_sym_PIPE,
- anon_sym_QMARK,
- anon_sym_extends,
- [118290] = 2,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(6359), 15,
- anon_sym_PLUS_EQ,
- anon_sym_DASH_EQ,
- anon_sym_STAR_EQ,
- anon_sym_SLASH_EQ,
- anon_sym_PERCENT_EQ,
- anon_sym_CARET_EQ,
- anon_sym_AMP_EQ,
- anon_sym_PIPE_EQ,
- anon_sym_GT_GT_EQ,
- anon_sym_GT_GT_GT_EQ,
- anon_sym_LT_LT_EQ,
- anon_sym_STAR_STAR_EQ,
- anon_sym_AMP_AMP_EQ,
- anon_sym_PIPE_PIPE_EQ,
- anon_sym_QMARK_QMARK_EQ,
- [118312] = 7,
- ACTIONS(1506), 1,
- anon_sym_DQUOTE,
- ACTIONS(1508), 1,
- anon_sym_SQUOTE,
- ACTIONS(6331), 1,
- anon_sym_unique,
- ACTIONS(6361), 1,
- sym_number,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- STATE(5918), 2,
- sym_string,
- sym_predefined_type,
- ACTIONS(6327), 9,
- anon_sym_void,
- anon_sym_any,
- anon_sym_number,
- anon_sym_boolean,
- anon_sym_string,
- anon_sym_symbol,
- anon_sym_object,
- anon_sym_unknown,
- anon_sym_never,
- [118344] = 8,
- ACTIONS(1506), 1,
- anon_sym_DQUOTE,
- ACTIONS(1508), 1,
- anon_sym_SQUOTE,
- ACTIONS(6331), 1,
- anon_sym_unique,
- ACTIONS(6363), 1,
- sym_number,
- STATE(5749), 1,
- sym_predefined_type,
- STATE(5921), 1,
- sym_string,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(6327), 9,
- anon_sym_void,
- anon_sym_any,
- anon_sym_number,
- anon_sym_boolean,
- anon_sym_string,
- anon_sym_symbol,
- anon_sym_object,
- anon_sym_unknown,
- anon_sym_never,
- [118378] = 8,
- ACTIONS(1506), 1,
- anon_sym_DQUOTE,
- ACTIONS(1508), 1,
- anon_sym_SQUOTE,
- ACTIONS(6331), 1,
- anon_sym_unique,
- ACTIONS(6365), 1,
- sym_number,
- STATE(5807), 1,
- sym_string,
- STATE(5838), 1,
- sym_predefined_type,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(6327), 9,
- anon_sym_void,
- anon_sym_any,
- anon_sym_number,
- anon_sym_boolean,
- anon_sym_string,
- anon_sym_symbol,
- anon_sym_object,
- anon_sym_unknown,
- anon_sym_never,
- [118412] = 8,
- ACTIONS(1506), 1,
- anon_sym_DQUOTE,
- ACTIONS(1508), 1,
- anon_sym_SQUOTE,
- ACTIONS(6331), 1,
- anon_sym_unique,
- ACTIONS(6367), 1,
- sym_number,
- STATE(5534), 1,
- sym_string,
- STATE(5924), 1,
- sym_predefined_type,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(6327), 9,
- anon_sym_void,
- anon_sym_any,
- anon_sym_number,
- anon_sym_boolean,
- anon_sym_string,
- anon_sym_symbol,
- anon_sym_object,
- anon_sym_unknown,
- anon_sym_never,
- [118446] = 3,
- ACTIONS(4342), 1,
- anon_sym_EQ,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(4344), 14,
- anon_sym_as,
- anon_sym_LBRACE,
- anon_sym_COMMA,
- anon_sym_RBRACE,
- anon_sym_RPAREN,
- anon_sym_COLON,
- anon_sym_LBRACK,
- anon_sym_RBRACK,
- anon_sym_GT,
- anon_sym_EQ_GT,
- anon_sym_AMP,
- anon_sym_PIPE,
- anon_sym_QMARK,
- anon_sym_extends,
- [118470] = 4,
- ACTIONS(4342), 1,
- anon_sym_EQ,
- ACTIONS(6309), 1,
- anon_sym_LBRACK,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(4344), 13,
- anon_sym_as,
- anon_sym_LBRACE,
- anon_sym_COMMA,
- anon_sym_RBRACE,
- anon_sym_RPAREN,
- anon_sym_COLON,
- anon_sym_RBRACK,
- anon_sym_GT,
- anon_sym_EQ_GT,
- anon_sym_AMP,
- anon_sym_PIPE,
- anon_sym_QMARK,
- anon_sym_extends,
- [118496] = 2,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(6369), 15,
- anon_sym_PLUS_EQ,
- anon_sym_DASH_EQ,
- anon_sym_STAR_EQ,
- anon_sym_SLASH_EQ,
- anon_sym_PERCENT_EQ,
- anon_sym_CARET_EQ,
- anon_sym_AMP_EQ,
- anon_sym_PIPE_EQ,
- anon_sym_GT_GT_EQ,
- anon_sym_GT_GT_GT_EQ,
- anon_sym_LT_LT_EQ,
- anon_sym_STAR_STAR_EQ,
- anon_sym_AMP_AMP_EQ,
- anon_sym_PIPE_PIPE_EQ,
- anon_sym_QMARK_QMARK_EQ,
- [118518] = 2,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(6371), 15,
- anon_sym_PLUS_EQ,
- anon_sym_DASH_EQ,
- anon_sym_STAR_EQ,
- anon_sym_SLASH_EQ,
- anon_sym_PERCENT_EQ,
- anon_sym_CARET_EQ,
- anon_sym_AMP_EQ,
- anon_sym_PIPE_EQ,
- anon_sym_GT_GT_EQ,
- anon_sym_GT_GT_GT_EQ,
- anon_sym_LT_LT_EQ,
- anon_sym_STAR_STAR_EQ,
- anon_sym_AMP_AMP_EQ,
- anon_sym_PIPE_PIPE_EQ,
- anon_sym_QMARK_QMARK_EQ,
- [118540] = 2,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(6373), 15,
- anon_sym_PLUS_EQ,
- anon_sym_DASH_EQ,
- anon_sym_STAR_EQ,
- anon_sym_SLASH_EQ,
- anon_sym_PERCENT_EQ,
- anon_sym_CARET_EQ,
- anon_sym_AMP_EQ,
- anon_sym_PIPE_EQ,
- anon_sym_GT_GT_EQ,
- anon_sym_GT_GT_GT_EQ,
- anon_sym_LT_LT_EQ,
- anon_sym_STAR_STAR_EQ,
- anon_sym_AMP_AMP_EQ,
- anon_sym_PIPE_PIPE_EQ,
- anon_sym_QMARK_QMARK_EQ,
- [118562] = 7,
- ACTIONS(4007), 1,
- anon_sym_PIPE,
- ACTIONS(6289), 1,
- anon_sym_LT,
- ACTIONS(6375), 1,
- anon_sym_DOT,
- ACTIONS(6377), 1,
- anon_sym_is,
- STATE(3194), 1,
- sym_type_arguments,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(3461), 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,
- [118594] = 7,
- ACTIONS(1506), 1,
- anon_sym_DQUOTE,
- ACTIONS(1508), 1,
- anon_sym_SQUOTE,
- ACTIONS(6331), 1,
- anon_sym_unique,
- ACTIONS(6379), 1,
- sym_number,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- STATE(5822), 2,
- sym_string,
- sym_predefined_type,
- ACTIONS(6327), 9,
- anon_sym_void,
- anon_sym_any,
- anon_sym_number,
- anon_sym_boolean,
- anon_sym_string,
- anon_sym_symbol,
- anon_sym_object,
- anon_sym_unknown,
- anon_sym_never,
- [118626] = 3,
- ACTIONS(4366), 1,
- anon_sym_EQ,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(4368), 14,
- anon_sym_as,
- anon_sym_LBRACE,
- anon_sym_COMMA,
- anon_sym_RBRACE,
- anon_sym_RPAREN,
- anon_sym_COLON,
- anon_sym_LBRACK,
- anon_sym_RBRACK,
- anon_sym_GT,
- anon_sym_EQ_GT,
- anon_sym_AMP,
- anon_sym_PIPE,
- anon_sym_QMARK,
- anon_sym_extends,
- [118650] = 8,
- ACTIONS(1506), 1,
- anon_sym_DQUOTE,
- ACTIONS(1508), 1,
- anon_sym_SQUOTE,
- ACTIONS(6331), 1,
- anon_sym_unique,
- ACTIONS(6381), 1,
- sym_number,
- STATE(5843), 1,
- sym_string,
- STATE(5851), 1,
- sym_predefined_type,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(6327), 9,
- anon_sym_void,
- anon_sym_any,
- anon_sym_number,
- anon_sym_boolean,
- anon_sym_string,
- anon_sym_symbol,
- anon_sym_object,
- anon_sym_unknown,
- anon_sym_never,
- [118684] = 3,
- ACTIONS(4384), 1,
- anon_sym_EQ,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(4386), 14,
- anon_sym_as,
- anon_sym_LBRACE,
- anon_sym_COMMA,
- anon_sym_RBRACE,
- anon_sym_RPAREN,
- anon_sym_COLON,
- anon_sym_LBRACK,
- anon_sym_RBRACK,
- anon_sym_GT,
- anon_sym_EQ_GT,
- anon_sym_AMP,
- anon_sym_PIPE,
- anon_sym_QMARK,
- anon_sym_extends,
- [118708] = 3,
- ACTIONS(4511), 1,
- anon_sym_PIPE,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(4513), 14,
- sym__automatic_semicolon,
- anon_sym_EQ,
- anon_sym_LBRACE,
- anon_sym_COMMA,
- anon_sym_RBRACE,
- anon_sym_LPAREN,
- anon_sym_SEMI,
- anon_sym_LBRACK,
- anon_sym_DOT,
- anon_sym_QMARK_DOT,
- anon_sym_AMP,
- anon_sym_LT,
- anon_sym_extends,
- anon_sym_PIPE_RBRACE,
- [118732] = 3,
- ACTIONS(4390), 1,
- anon_sym_EQ,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(4392), 14,
- anon_sym_as,
- anon_sym_LBRACE,
- anon_sym_COMMA,
- anon_sym_RBRACE,
- anon_sym_RPAREN,
- anon_sym_COLON,
- anon_sym_LBRACK,
- anon_sym_RBRACK,
- anon_sym_GT,
- anon_sym_EQ_GT,
- anon_sym_AMP,
- anon_sym_PIPE,
- anon_sym_QMARK,
- anon_sym_extends,
- [118756] = 8,
- ACTIONS(1506), 1,
- anon_sym_DQUOTE,
- ACTIONS(1508), 1,
- anon_sym_SQUOTE,
- ACTIONS(6331), 1,
- anon_sym_unique,
- ACTIONS(6383), 1,
- sym_number,
- STATE(5581), 1,
- sym_string,
- STATE(5583), 1,
- sym_predefined_type,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(6327), 9,
- anon_sym_void,
- anon_sym_any,
- anon_sym_number,
- anon_sym_boolean,
- anon_sym_string,
- anon_sym_symbol,
- anon_sym_object,
- anon_sym_unknown,
- anon_sym_never,
- [118790] = 3,
- ACTIONS(4146), 1,
- anon_sym_PIPE,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(4148), 14,
- sym__automatic_semicolon,
- anon_sym_EQ,
- anon_sym_LBRACE,
- anon_sym_COMMA,
- anon_sym_RBRACE,
- anon_sym_LPAREN,
- anon_sym_SEMI,
- anon_sym_LBRACK,
- anon_sym_DOT,
- anon_sym_QMARK_DOT,
- anon_sym_AMP,
- anon_sym_LT,
- anon_sym_extends,
- anon_sym_PIPE_RBRACE,
- [118814] = 3,
- ACTIONS(4150), 1,
- anon_sym_PIPE,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(4152), 14,
- sym__automatic_semicolon,
- anon_sym_EQ,
- anon_sym_LBRACE,
- anon_sym_COMMA,
- anon_sym_RBRACE,
- anon_sym_LPAREN,
- anon_sym_SEMI,
- anon_sym_LBRACK,
- anon_sym_DOT,
- anon_sym_QMARK_DOT,
- anon_sym_AMP,
- anon_sym_LT,
- anon_sym_extends,
- anon_sym_PIPE_RBRACE,
- [118838] = 3,
- ACTIONS(4154), 1,
- anon_sym_PIPE,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(4156), 14,
- sym__automatic_semicolon,
- anon_sym_EQ,
- anon_sym_LBRACE,
- anon_sym_COMMA,
- anon_sym_RBRACE,
- anon_sym_LPAREN,
- anon_sym_SEMI,
- anon_sym_LBRACK,
- anon_sym_DOT,
- anon_sym_QMARK_DOT,
- anon_sym_AMP,
- anon_sym_LT,
- anon_sym_extends,
- anon_sym_PIPE_RBRACE,
- [118862] = 3,
- ACTIONS(4150), 1,
- anon_sym_PIPE,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(4152), 14,
- sym__automatic_semicolon,
- anon_sym_EQ,
- anon_sym_LBRACE,
- anon_sym_COMMA,
- anon_sym_RBRACE,
- anon_sym_LPAREN,
- anon_sym_SEMI,
- anon_sym_LBRACK,
- anon_sym_DOT,
- anon_sym_QMARK_DOT,
- anon_sym_AMP,
- anon_sym_LT,
- anon_sym_extends,
- anon_sym_PIPE_RBRACE,
- [118886] = 3,
- ACTIONS(4154), 1,
- anon_sym_PIPE,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(4156), 14,
- sym__automatic_semicolon,
- anon_sym_EQ,
- anon_sym_LBRACE,
- anon_sym_COMMA,
- anon_sym_RBRACE,
- anon_sym_LPAREN,
- anon_sym_SEMI,
- anon_sym_LBRACK,
- anon_sym_DOT,
- anon_sym_QMARK_DOT,
- anon_sym_AMP,
- anon_sym_LT,
- anon_sym_extends,
- anon_sym_PIPE_RBRACE,
- [118910] = 3,
- ACTIONS(4158), 1,
- anon_sym_PIPE,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(4160), 14,
- sym__automatic_semicolon,
- anon_sym_EQ,
- anon_sym_LBRACE,
- anon_sym_COMMA,
- anon_sym_RBRACE,
- anon_sym_LPAREN,
- anon_sym_SEMI,
- anon_sym_LBRACK,
- anon_sym_DOT,
- anon_sym_QMARK_DOT,
- anon_sym_AMP,
- anon_sym_LT,
- anon_sym_extends,
- anon_sym_PIPE_RBRACE,
- [118934] = 3,
- ACTIONS(4394), 1,
- anon_sym_EQ,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(4396), 14,
- anon_sym_as,
- anon_sym_LBRACE,
- anon_sym_COMMA,
- anon_sym_RBRACE,
- anon_sym_RPAREN,
- anon_sym_COLON,
- anon_sym_LBRACK,
- anon_sym_RBRACK,
- anon_sym_GT,
- anon_sym_EQ_GT,
- anon_sym_AMP,
- anon_sym_PIPE,
- anon_sym_QMARK,
- anon_sym_extends,
- [118958] = 3,
- ACTIONS(4162), 1,
- anon_sym_PIPE,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(4164), 14,
- sym__automatic_semicolon,
- anon_sym_EQ,
- anon_sym_LBRACE,
- anon_sym_COMMA,
- anon_sym_RBRACE,
- anon_sym_LPAREN,
- anon_sym_SEMI,
- anon_sym_LBRACK,
- anon_sym_DOT,
- anon_sym_QMARK_DOT,
- anon_sym_AMP,
- anon_sym_LT,
- anon_sym_extends,
- anon_sym_PIPE_RBRACE,
- [118982] = 8,
- ACTIONS(1506), 1,
- anon_sym_DQUOTE,
- ACTIONS(1508), 1,
- anon_sym_SQUOTE,
- ACTIONS(6331), 1,
- anon_sym_unique,
- ACTIONS(6385), 1,
- sym_number,
- STATE(5641), 1,
- sym_string,
- STATE(5657), 1,
- sym_predefined_type,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(6327), 9,
- anon_sym_void,
- anon_sym_any,
- anon_sym_number,
- anon_sym_boolean,
- anon_sym_string,
- anon_sym_symbol,
- anon_sym_object,
- anon_sym_unknown,
- anon_sym_never,
- [119016] = 3,
- ACTIONS(4402), 1,
- anon_sym_EQ,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(4404), 14,
- anon_sym_as,
- anon_sym_LBRACE,
- anon_sym_COMMA,
- anon_sym_RBRACE,
- anon_sym_RPAREN,
- anon_sym_COLON,
- anon_sym_LBRACK,
- anon_sym_RBRACK,
- anon_sym_GT,
- anon_sym_EQ_GT,
- anon_sym_AMP,
- anon_sym_PIPE,
- anon_sym_QMARK,
- anon_sym_extends,
- [119040] = 2,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(6387), 15,
- anon_sym_PLUS_EQ,
- anon_sym_DASH_EQ,
- anon_sym_STAR_EQ,
- anon_sym_SLASH_EQ,
- anon_sym_PERCENT_EQ,
- anon_sym_CARET_EQ,
- anon_sym_AMP_EQ,
- anon_sym_PIPE_EQ,
- anon_sym_GT_GT_EQ,
- anon_sym_GT_GT_GT_EQ,
- anon_sym_LT_LT_EQ,
- anon_sym_STAR_STAR_EQ,
- anon_sym_AMP_AMP_EQ,
- anon_sym_PIPE_PIPE_EQ,
- anon_sym_QMARK_QMARK_EQ,
- [119062] = 3,
- ACTIONS(4181), 1,
- anon_sym_EQ,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(4183), 14,
- anon_sym_as,
- anon_sym_LBRACE,
- anon_sym_COMMA,
- anon_sym_RBRACE,
- anon_sym_RPAREN,
- anon_sym_COLON,
- anon_sym_LBRACK,
- anon_sym_RBRACK,
- anon_sym_GT,
- anon_sym_EQ_GT,
- anon_sym_AMP,
- anon_sym_PIPE,
- anon_sym_QMARK,
- anon_sym_extends,
- [119086] = 3,
- ACTIONS(4185), 1,
- anon_sym_EQ,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(4187), 14,
- anon_sym_as,
- anon_sym_LBRACE,
- anon_sym_COMMA,
- anon_sym_RBRACE,
- anon_sym_RPAREN,
- anon_sym_COLON,
- anon_sym_LBRACK,
- anon_sym_RBRACK,
- anon_sym_GT,
- anon_sym_EQ_GT,
- anon_sym_AMP,
- anon_sym_PIPE,
- anon_sym_QMARK,
- anon_sym_extends,
- [119110] = 3,
- ACTIONS(4158), 1,
- anon_sym_PIPE,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(4160), 14,
- sym__automatic_semicolon,
- anon_sym_EQ,
- anon_sym_LBRACE,
- anon_sym_COMMA,
- anon_sym_RBRACE,
- anon_sym_LPAREN,
- anon_sym_SEMI,
- anon_sym_LBRACK,
- anon_sym_DOT,
- anon_sym_QMARK_DOT,
- anon_sym_AMP,
- anon_sym_LT,
- anon_sym_extends,
- anon_sym_PIPE_RBRACE,
- [119134] = 3,
- ACTIONS(4406), 1,
- anon_sym_EQ,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(4408), 14,
- anon_sym_as,
- anon_sym_LBRACE,
- anon_sym_COMMA,
- anon_sym_RBRACE,
- anon_sym_RPAREN,
- anon_sym_COLON,
- anon_sym_LBRACK,
- anon_sym_RBRACK,
- anon_sym_GT,
- anon_sym_EQ_GT,
- anon_sym_AMP,
- anon_sym_PIPE,
- anon_sym_QMARK,
- anon_sym_extends,
- [119158] = 3,
- ACTIONS(4162), 1,
- anon_sym_PIPE,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(4164), 14,
- sym__automatic_semicolon,
- anon_sym_EQ,
- anon_sym_LBRACE,
- anon_sym_COMMA,
- anon_sym_RBRACE,
- anon_sym_LPAREN,
- anon_sym_SEMI,
- anon_sym_LBRACK,
- anon_sym_DOT,
- anon_sym_QMARK_DOT,
- anon_sym_AMP,
- anon_sym_LT,
- anon_sym_extends,
- anon_sym_PIPE_RBRACE,
- [119182] = 3,
- ACTIONS(4206), 1,
- anon_sym_EQ,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(4208), 14,
- anon_sym_as,
- anon_sym_LBRACE,
- anon_sym_COMMA,
- anon_sym_RBRACE,
- anon_sym_RPAREN,
- anon_sym_COLON,
- anon_sym_LBRACK,
- anon_sym_RBRACK,
- anon_sym_GT,
- anon_sym_EQ_GT,
- anon_sym_AMP,
- anon_sym_PIPE,
- anon_sym_QMARK,
- anon_sym_extends,
- [119206] = 3,
- ACTIONS(4212), 1,
- anon_sym_EQ,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(4214), 14,
- anon_sym_as,
- anon_sym_LBRACE,
- anon_sym_COMMA,
- anon_sym_RBRACE,
- anon_sym_RPAREN,
- anon_sym_COLON,
- anon_sym_LBRACK,
- anon_sym_RBRACK,
- anon_sym_GT,
- anon_sym_EQ_GT,
- anon_sym_AMP,
- anon_sym_PIPE,
- anon_sym_QMARK,
- anon_sym_extends,
- [119230] = 3,
- ACTIONS(4166), 1,
- anon_sym_PIPE,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(4168), 14,
- sym__automatic_semicolon,
- anon_sym_EQ,
- anon_sym_LBRACE,
- anon_sym_COMMA,
- anon_sym_RBRACE,
- anon_sym_LPAREN,
- anon_sym_SEMI,
- anon_sym_LBRACK,
- anon_sym_DOT,
- anon_sym_QMARK_DOT,
- anon_sym_AMP,
- anon_sym_LT,
- anon_sym_extends,
- anon_sym_PIPE_RBRACE,
- [119254] = 3,
- ACTIONS(4177), 1,
- anon_sym_PIPE,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(4179), 14,
- sym__automatic_semicolon,
- anon_sym_EQ,
- anon_sym_LBRACE,
- anon_sym_COMMA,
- anon_sym_RBRACE,
- anon_sym_LPAREN,
- anon_sym_SEMI,
- anon_sym_LBRACK,
- anon_sym_DOT,
- anon_sym_QMARK_DOT,
- anon_sym_AMP,
- anon_sym_LT,
- anon_sym_extends,
- anon_sym_PIPE_RBRACE,
- [119278] = 3,
- ACTIONS(4166), 1,
- anon_sym_PIPE,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(4168), 14,
- sym__automatic_semicolon,
- anon_sym_EQ,
- anon_sym_LBRACE,
- anon_sym_COMMA,
- anon_sym_RBRACE,
- anon_sym_LPAREN,
- anon_sym_SEMI,
- anon_sym_LBRACK,
- anon_sym_DOT,
- anon_sym_QMARK_DOT,
- anon_sym_AMP,
- anon_sym_LT,
- anon_sym_extends,
- anon_sym_PIPE_RBRACE,
- [119302] = 3,
- ACTIONS(4177), 1,
- anon_sym_PIPE,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(4179), 14,
- sym__automatic_semicolon,
- anon_sym_EQ,
- anon_sym_LBRACE,
- anon_sym_COMMA,
- anon_sym_RBRACE,
- anon_sym_LPAREN,
- anon_sym_SEMI,
- anon_sym_LBRACK,
- anon_sym_DOT,
- anon_sym_QMARK_DOT,
- anon_sym_AMP,
- anon_sym_LT,
- anon_sym_extends,
- anon_sym_PIPE_RBRACE,
- [119326] = 3,
- ACTIONS(4216), 1,
- anon_sym_PIPE,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(4218), 14,
- sym__automatic_semicolon,
- anon_sym_EQ,
- anon_sym_LBRACE,
- anon_sym_COMMA,
- anon_sym_RBRACE,
- anon_sym_LPAREN,
- anon_sym_SEMI,
- anon_sym_LBRACK,
- anon_sym_DOT,
- anon_sym_QMARK_DOT,
- anon_sym_AMP,
- anon_sym_LT,
- anon_sym_extends,
- anon_sym_PIPE_RBRACE,
- [119350] = 3,
- ACTIONS(4220), 1,
- anon_sym_PIPE,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(4222), 14,
- sym__automatic_semicolon,
- anon_sym_EQ,
- anon_sym_LBRACE,
- anon_sym_COMMA,
- anon_sym_RBRACE,
- anon_sym_LPAREN,
- anon_sym_SEMI,
- anon_sym_LBRACK,
- anon_sym_DOT,
- anon_sym_QMARK_DOT,
- anon_sym_AMP,
- anon_sym_LT,
- anon_sym_extends,
- anon_sym_PIPE_RBRACE,
- [119374] = 3,
- ACTIONS(4220), 1,
- anon_sym_PIPE,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(4222), 14,
- sym__automatic_semicolon,
- anon_sym_EQ,
- anon_sym_LBRACE,
- anon_sym_COMMA,
- anon_sym_RBRACE,
- anon_sym_LPAREN,
- anon_sym_SEMI,
- anon_sym_LBRACK,
- anon_sym_DOT,
- anon_sym_QMARK_DOT,
- anon_sym_AMP,
- anon_sym_LT,
- anon_sym_extends,
- anon_sym_PIPE_RBRACE,
- [119398] = 3,
- ACTIONS(4220), 1,
- anon_sym_PIPE,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(4222), 14,
- sym__automatic_semicolon,
- anon_sym_EQ,
- anon_sym_LBRACE,
- anon_sym_COMMA,
- anon_sym_RBRACE,
- anon_sym_LPAREN,
- anon_sym_SEMI,
- anon_sym_LBRACK,
- anon_sym_DOT,
- anon_sym_QMARK_DOT,
- anon_sym_AMP,
- anon_sym_LT,
- anon_sym_extends,
- anon_sym_PIPE_RBRACE,
- [119422] = 3,
- ACTIONS(4224), 1,
- anon_sym_PIPE,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(4226), 14,
- sym__automatic_semicolon,
- anon_sym_EQ,
- anon_sym_LBRACE,
- anon_sym_COMMA,
- anon_sym_RBRACE,
- anon_sym_LPAREN,
- anon_sym_SEMI,
- anon_sym_LBRACK,
- anon_sym_DOT,
- anon_sym_QMARK_DOT,
- anon_sym_AMP,
- anon_sym_LT,
- anon_sym_extends,
- anon_sym_PIPE_RBRACE,
- [119446] = 3,
- ACTIONS(4224), 1,
- anon_sym_PIPE,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(4226), 14,
- sym__automatic_semicolon,
- anon_sym_EQ,
- anon_sym_LBRACE,
- anon_sym_COMMA,
- anon_sym_RBRACE,
- anon_sym_LPAREN,
- anon_sym_SEMI,
- anon_sym_LBRACK,
- anon_sym_DOT,
- anon_sym_QMARK_DOT,
- anon_sym_AMP,
- anon_sym_LT,
- anon_sym_extends,
- anon_sym_PIPE_RBRACE,
- [119470] = 3,
- ACTIONS(4224), 1,
- anon_sym_PIPE,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(4226), 14,
- sym__automatic_semicolon,
- anon_sym_EQ,
- anon_sym_LBRACE,
- anon_sym_COMMA,
- anon_sym_RBRACE,
- anon_sym_LPAREN,
- anon_sym_SEMI,
- anon_sym_LBRACK,
- anon_sym_DOT,
- anon_sym_QMARK_DOT,
- anon_sym_AMP,
- anon_sym_LT,
- anon_sym_extends,
- anon_sym_PIPE_RBRACE,
- [119494] = 3,
- ACTIONS(4237), 1,
- anon_sym_PIPE,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(4239), 14,
- sym__automatic_semicolon,
- anon_sym_EQ,
- anon_sym_LBRACE,
- anon_sym_COMMA,
- anon_sym_RBRACE,
- anon_sym_LPAREN,
- anon_sym_SEMI,
- anon_sym_LBRACK,
- anon_sym_DOT,
- anon_sym_QMARK_DOT,
- anon_sym_AMP,
- anon_sym_LT,
- anon_sym_extends,
- anon_sym_PIPE_RBRACE,
- [119518] = 3,
- ACTIONS(4237), 1,
- anon_sym_PIPE,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(4239), 14,
- sym__automatic_semicolon,
- anon_sym_EQ,
- anon_sym_LBRACE,
- anon_sym_COMMA,
- anon_sym_RBRACE,
- anon_sym_LPAREN,
- anon_sym_SEMI,
- anon_sym_LBRACK,
- anon_sym_DOT,
- anon_sym_QMARK_DOT,
- anon_sym_AMP,
- anon_sym_LT,
- anon_sym_extends,
- anon_sym_PIPE_RBRACE,
- [119542] = 3,
- ACTIONS(4237), 1,
- anon_sym_PIPE,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(4239), 14,
- sym__automatic_semicolon,
- anon_sym_EQ,
- anon_sym_LBRACE,
- anon_sym_COMMA,
- anon_sym_RBRACE,
- anon_sym_LPAREN,
- anon_sym_SEMI,
- anon_sym_LBRACK,
- anon_sym_DOT,
- anon_sym_QMARK_DOT,
- anon_sym_AMP,
- anon_sym_LT,
- anon_sym_extends,
- anon_sym_PIPE_RBRACE,
- [119566] = 3,
- ACTIONS(4275), 1,
- anon_sym_PIPE,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(4277), 14,
- sym__automatic_semicolon,
- anon_sym_EQ,
- anon_sym_LBRACE,
- anon_sym_COMMA,
- anon_sym_RBRACE,
- anon_sym_LPAREN,
- anon_sym_SEMI,
- anon_sym_LBRACK,
- anon_sym_DOT,
- anon_sym_QMARK_DOT,
- anon_sym_AMP,
- anon_sym_LT,
- anon_sym_extends,
- anon_sym_PIPE_RBRACE,
- [119590] = 3,
- ACTIONS(4279), 1,
- anon_sym_PIPE,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(4281), 14,
- sym__automatic_semicolon,
- anon_sym_EQ,
- anon_sym_LBRACE,
- anon_sym_COMMA,
- anon_sym_RBRACE,
- anon_sym_LPAREN,
- anon_sym_SEMI,
- anon_sym_LBRACK,
- anon_sym_DOT,
- anon_sym_QMARK_DOT,
- anon_sym_AMP,
- anon_sym_LT,
- anon_sym_extends,
- anon_sym_PIPE_RBRACE,
- [119614] = 2,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(6389), 15,
- anon_sym_PLUS_EQ,
- anon_sym_DASH_EQ,
- anon_sym_STAR_EQ,
- anon_sym_SLASH_EQ,
- anon_sym_PERCENT_EQ,
- anon_sym_CARET_EQ,
- anon_sym_AMP_EQ,
- anon_sym_PIPE_EQ,
- anon_sym_GT_GT_EQ,
- anon_sym_GT_GT_GT_EQ,
- anon_sym_LT_LT_EQ,
- anon_sym_STAR_STAR_EQ,
- anon_sym_AMP_AMP_EQ,
- anon_sym_PIPE_PIPE_EQ,
- anon_sym_QMARK_QMARK_EQ,
- [119636] = 3,
- ACTIONS(4279), 1,
- anon_sym_PIPE,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(4281), 14,
- sym__automatic_semicolon,
- anon_sym_EQ,
- anon_sym_LBRACE,
- anon_sym_COMMA,
- anon_sym_RBRACE,
- anon_sym_LPAREN,
- anon_sym_SEMI,
- anon_sym_LBRACK,
- anon_sym_DOT,
- anon_sym_QMARK_DOT,
- anon_sym_AMP,
- anon_sym_LT,
- anon_sym_extends,
- anon_sym_PIPE_RBRACE,
- [119660] = 3,
- ACTIONS(4279), 1,
- anon_sym_PIPE,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(4281), 14,
- sym__automatic_semicolon,
- anon_sym_EQ,
- anon_sym_LBRACE,
- anon_sym_COMMA,
- anon_sym_RBRACE,
- anon_sym_LPAREN,
- anon_sym_SEMI,
- anon_sym_LBRACK,
- anon_sym_DOT,
- anon_sym_QMARK_DOT,
- anon_sym_AMP,
- anon_sym_LT,
- anon_sym_extends,
- anon_sym_PIPE_RBRACE,
- [119684] = 3,
- ACTIONS(4285), 1,
- anon_sym_PIPE,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(4287), 14,
- sym__automatic_semicolon,
- anon_sym_EQ,
- anon_sym_LBRACE,
- anon_sym_COMMA,
- anon_sym_RBRACE,
- anon_sym_LPAREN,
- anon_sym_SEMI,
- anon_sym_LBRACK,
- anon_sym_DOT,
- anon_sym_QMARK_DOT,
- anon_sym_AMP,
- anon_sym_LT,
- anon_sym_extends,
- anon_sym_PIPE_RBRACE,
- [119708] = 3,
- ACTIONS(4285), 1,
- anon_sym_PIPE,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(4287), 14,
- sym__automatic_semicolon,
- anon_sym_EQ,
- anon_sym_LBRACE,
- anon_sym_COMMA,
- anon_sym_RBRACE,
- anon_sym_LPAREN,
- anon_sym_SEMI,
- anon_sym_LBRACK,
- anon_sym_DOT,
- anon_sym_QMARK_DOT,
- anon_sym_AMP,
- anon_sym_LT,
- anon_sym_extends,
- anon_sym_PIPE_RBRACE,
- [119732] = 3,
- ACTIONS(4285), 1,
- anon_sym_PIPE,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(4287), 14,
- sym__automatic_semicolon,
- anon_sym_EQ,
- anon_sym_LBRACE,
- anon_sym_COMMA,
- anon_sym_RBRACE,
- anon_sym_LPAREN,
- anon_sym_SEMI,
- anon_sym_LBRACK,
- anon_sym_DOT,
- anon_sym_QMARK_DOT,
- anon_sym_AMP,
- anon_sym_LT,
- anon_sym_extends,
- anon_sym_PIPE_RBRACE,
- [119756] = 3,
- ACTIONS(4293), 1,
- anon_sym_PIPE,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(4295), 14,
- sym__automatic_semicolon,
- anon_sym_EQ,
- anon_sym_LBRACE,
- anon_sym_COMMA,
- anon_sym_RBRACE,
- anon_sym_LPAREN,
- anon_sym_SEMI,
- anon_sym_LBRACK,
- anon_sym_DOT,
- anon_sym_QMARK_DOT,
- anon_sym_AMP,
- anon_sym_LT,
- anon_sym_extends,
- anon_sym_PIPE_RBRACE,
- [119780] = 3,
- ACTIONS(4293), 1,
- anon_sym_PIPE,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(4295), 14,
- sym__automatic_semicolon,
- anon_sym_EQ,
- anon_sym_LBRACE,
- anon_sym_COMMA,
- anon_sym_RBRACE,
- anon_sym_LPAREN,
- anon_sym_SEMI,
- anon_sym_LBRACK,
- anon_sym_DOT,
- anon_sym_QMARK_DOT,
- anon_sym_AMP,
- anon_sym_LT,
- anon_sym_extends,
- anon_sym_PIPE_RBRACE,
- [119804] = 3,
- ACTIONS(4293), 1,
- anon_sym_PIPE,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(4295), 14,
- sym__automatic_semicolon,
- anon_sym_EQ,
- anon_sym_LBRACE,
- anon_sym_COMMA,
- anon_sym_RBRACE,
- anon_sym_LPAREN,
- anon_sym_SEMI,
- anon_sym_LBRACK,
- anon_sym_DOT,
- anon_sym_QMARK_DOT,
- anon_sym_AMP,
- anon_sym_LT,
- anon_sym_extends,
- anon_sym_PIPE_RBRACE,
- [119828] = 7,
- ACTIONS(1506), 1,
- anon_sym_DQUOTE,
- ACTIONS(1508), 1,
- anon_sym_SQUOTE,
- ACTIONS(6331), 1,
- anon_sym_unique,
- ACTIONS(6391), 1,
- sym_number,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- STATE(5857), 2,
- sym_string,
- sym_predefined_type,
- ACTIONS(6327), 9,
- anon_sym_void,
- anon_sym_any,
- anon_sym_number,
- anon_sym_boolean,
- anon_sym_string,
- anon_sym_symbol,
- anon_sym_object,
- anon_sym_unknown,
- anon_sym_never,
- [119860] = 6,
- ACTIONS(218), 1,
- anon_sym_unique,
- STATE(2855), 1,
- sym_type_predicate,
- STATE(5590), 1,
- sym_predefined_type,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(6393), 2,
- sym_identifier,
- sym_this,
- ACTIONS(220), 9,
- anon_sym_void,
- anon_sym_any,
- anon_sym_number,
- anon_sym_boolean,
- anon_sym_string,
- anon_sym_symbol,
- anon_sym_object,
- anon_sym_unknown,
- anon_sym_never,
- [119889] = 14,
- ACTIONS(1594), 1,
- anon_sym_DQUOTE,
- ACTIONS(1596), 1,
- anon_sym_SQUOTE,
- ACTIONS(6277), 1,
- anon_sym_STAR,
- ACTIONS(6281), 1,
- anon_sym_LBRACE,
- ACTIONS(6395), 1,
- sym_identifier,
- ACTIONS(6397), 1,
- anon_sym_type,
- ACTIONS(6399), 1,
- anon_sym_COMMA,
- ACTIONS(6401), 1,
- anon_sym_from,
- STATE(4230), 1,
- sym_string,
- STATE(4231), 1,
- sym_import_require_clause,
- STATE(5247), 1,
- sym__import_identifier,
- STATE(5503), 1,
- sym_import_clause,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- STATE(5580), 2,
- sym_namespace_import,
- sym_named_imports,
- [119934] = 13,
- ACTIONS(2581), 1,
- anon_sym_LT,
- ACTIONS(6403), 1,
- anon_sym_EQ,
- ACTIONS(6407), 1,
- anon_sym_BANG,
- ACTIONS(6409), 1,
- anon_sym_LPAREN,
- ACTIONS(6411), 1,
- anon_sym_COLON,
- ACTIONS(6413), 1,
- anon_sym_QMARK,
- STATE(3320), 1,
- sym_formal_parameters,
- STATE(3871), 1,
- sym__call_signature,
- STATE(4314), 1,
- sym_type_annotation,
- STATE(4988), 1,
- sym__initializer,
- STATE(5342), 1,
- sym_type_parameters,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(6405), 3,
- sym__automatic_semicolon,
- anon_sym_COMMA,
- anon_sym_SEMI,
- [119977] = 13,
- ACTIONS(2581), 1,
- anon_sym_LT,
- ACTIONS(6403), 1,
- anon_sym_EQ,
- ACTIONS(6411), 1,
- anon_sym_COLON,
- ACTIONS(6417), 1,
- anon_sym_BANG,
- ACTIONS(6419), 1,
- anon_sym_LPAREN,
- ACTIONS(6421), 1,
- anon_sym_QMARK,
- STATE(3742), 1,
- sym_formal_parameters,
- STATE(3932), 1,
- sym_type_annotation,
- STATE(4927), 1,
- sym__initializer,
- STATE(5233), 1,
- sym__call_signature,
- STATE(5349), 1,
- sym_type_parameters,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(6415), 3,
- sym__automatic_semicolon,
- anon_sym_COMMA,
- anon_sym_SEMI,
- [120020] = 6,
- ACTIONS(4007), 1,
- anon_sym_PIPE,
- ACTIONS(6289), 1,
- anon_sym_LT,
- ACTIONS(6375), 1,
- anon_sym_DOT,
- STATE(3194), 1,
- sym_type_arguments,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(3461), 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,
- [120049] = 6,
- ACTIONS(3408), 1,
- anon_sym_LPAREN,
- ACTIONS(4019), 1,
- anon_sym_PIPE,
- ACTIONS(6423), 1,
- anon_sym_DOT,
- STATE(3087), 1,
- sym_arguments,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(4021), 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,
- [120078] = 13,
- ACTIONS(2581), 1,
- anon_sym_LT,
- ACTIONS(6403), 1,
- anon_sym_EQ,
- ACTIONS(6411), 1,
- anon_sym_COLON,
- ACTIONS(6419), 1,
- anon_sym_LPAREN,
- ACTIONS(6425), 1,
- anon_sym_BANG,
- ACTIONS(6427), 1,
- anon_sym_QMARK,
- STATE(3742), 1,
- sym_formal_parameters,
- STATE(3951), 1,
- sym_type_annotation,
- STATE(4634), 1,
- sym__initializer,
- STATE(5313), 1,
- sym__call_signature,
- STATE(5349), 1,
- sym_type_parameters,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(6415), 3,
- sym__automatic_semicolon,
- anon_sym_COMMA,
- anon_sym_SEMI,
- [120121] = 6,
- ACTIONS(218), 1,
- anon_sym_unique,
- STATE(3161), 1,
- sym_type_predicate,
- STATE(5609), 1,
- sym_predefined_type,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(6429), 2,
- sym_identifier,
- sym_this,
- ACTIONS(220), 9,
- anon_sym_void,
- anon_sym_any,
- anon_sym_number,
- anon_sym_boolean,
- anon_sym_string,
- anon_sym_symbol,
- anon_sym_object,
- anon_sym_unknown,
- anon_sym_never,
- [120150] = 11,
- ACTIONS(2581), 1,
- anon_sym_LT,
- ACTIONS(3205), 1,
- anon_sym_LPAREN,
- ACTIONS(3737), 1,
- anon_sym_COMMA,
- ACTIONS(3740), 1,
- anon_sym_RBRACE,
- ACTIONS(4243), 1,
- anon_sym_EQ,
- STATE(3575), 1,
- sym_formal_parameters,
- STATE(4672), 1,
- aux_sym_object_pattern_repeat1,
- STATE(5156), 1,
- aux_sym_object_repeat1,
- STATE(5374), 1,
- sym_type_parameters,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(3743), 5,
- sym__automatic_semicolon,
- anon_sym_SEMI,
- anon_sym_COLON,
- anon_sym_QMARK,
- anon_sym_PIPE_RBRACE,
- [120189] = 6,
- ACTIONS(218), 1,
- anon_sym_unique,
- STATE(1550), 1,
- sym_type_predicate,
- STATE(5774), 1,
- sym_predefined_type,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(6431), 2,
- sym_identifier,
- sym_this,
- ACTIONS(220), 9,
- anon_sym_void,
- anon_sym_any,
- anon_sym_number,
- anon_sym_boolean,
- anon_sym_string,
- anon_sym_symbol,
- anon_sym_object,
- anon_sym_unknown,
- anon_sym_never,
- [120218] = 11,
- ACTIONS(2581), 1,
- anon_sym_LT,
- ACTIONS(3205), 1,
- anon_sym_LPAREN,
- ACTIONS(3737), 1,
- anon_sym_COMMA,
- ACTIONS(3817), 1,
- anon_sym_RBRACE,
- ACTIONS(4243), 1,
- anon_sym_EQ,
- STATE(3575), 1,
- sym_formal_parameters,
- STATE(4672), 1,
- aux_sym_object_pattern_repeat1,
- STATE(5156), 1,
- aux_sym_object_repeat1,
- STATE(5374), 1,
- sym_type_parameters,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(3743), 5,
- sym__automatic_semicolon,
- anon_sym_SEMI,
- anon_sym_COLON,
- anon_sym_QMARK,
- anon_sym_PIPE_RBRACE,
- [120257] = 13,
- ACTIONS(2581), 1,
- anon_sym_LT,
- ACTIONS(6403), 1,
- anon_sym_EQ,
- ACTIONS(6409), 1,
- anon_sym_LPAREN,
- ACTIONS(6411), 1,
- anon_sym_COLON,
- ACTIONS(6435), 1,
- anon_sym_BANG,
- ACTIONS(6437), 1,
- anon_sym_QMARK,
- STATE(3320), 1,
- sym_formal_parameters,
- STATE(3805), 1,
- sym__call_signature,
- STATE(4305), 1,
- sym_type_annotation,
- STATE(4972), 1,
- sym__initializer,
- STATE(5342), 1,
- sym_type_parameters,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(6433), 3,
- sym__automatic_semicolon,
- anon_sym_COMMA,
- anon_sym_SEMI,
- [120300] = 13,
- ACTIONS(2581), 1,
- anon_sym_LT,
- ACTIONS(6403), 1,
- anon_sym_EQ,
- ACTIONS(6411), 1,
- anon_sym_COLON,
- ACTIONS(6419), 1,
- anon_sym_LPAREN,
- ACTIONS(6439), 1,
- anon_sym_BANG,
- ACTIONS(6441), 1,
- anon_sym_QMARK,
- STATE(3742), 1,
- sym_formal_parameters,
- STATE(4010), 1,
- sym_type_annotation,
- STATE(4737), 1,
- sym__initializer,
- STATE(5302), 1,
- sym__call_signature,
- STATE(5349), 1,
- sym_type_parameters,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(6415), 3,
- sym__automatic_semicolon,
- anon_sym_COMMA,
- anon_sym_SEMI,
- [120343] = 13,
- ACTIONS(2581), 1,
- anon_sym_LT,
- ACTIONS(6403), 1,
- anon_sym_EQ,
- ACTIONS(6409), 1,
- anon_sym_LPAREN,
- ACTIONS(6411), 1,
- anon_sym_COLON,
- ACTIONS(6445), 1,
- anon_sym_BANG,
- ACTIONS(6447), 1,
- anon_sym_QMARK,
- STATE(3320), 1,
- sym_formal_parameters,
- STATE(3864), 1,
- sym__call_signature,
- STATE(4080), 1,
- sym_type_annotation,
- STATE(5010), 1,
- sym__initializer,
- STATE(5342), 1,
- sym_type_parameters,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(6443), 3,
- sym__automatic_semicolon,
- anon_sym_COMMA,
- anon_sym_SEMI,
- [120386] = 13,
- ACTIONS(2581), 1,
- anon_sym_LT,
- ACTIONS(6403), 1,
- anon_sym_EQ,
- ACTIONS(6411), 1,
- anon_sym_COLON,
- ACTIONS(6419), 1,
- anon_sym_LPAREN,
- ACTIONS(6451), 1,
- anon_sym_BANG,
- ACTIONS(6453), 1,
- anon_sym_QMARK,
- STATE(3742), 1,
- sym_formal_parameters,
- STATE(4043), 1,
- sym_type_annotation,
- STATE(4862), 1,
- sym__initializer,
- STATE(5349), 1,
- sym_type_parameters,
- STATE(5472), 1,
- sym__call_signature,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(6449), 3,
- sym__automatic_semicolon,
- anon_sym_COMMA,
- anon_sym_SEMI,
- [120429] = 13,
- ACTIONS(2581), 1,
- anon_sym_LT,
- ACTIONS(6403), 1,
- anon_sym_EQ,
- ACTIONS(6411), 1,
- anon_sym_COLON,
- ACTIONS(6419), 1,
- anon_sym_LPAREN,
- ACTIONS(6455), 1,
- anon_sym_BANG,
- ACTIONS(6457), 1,
- anon_sym_QMARK,
- STATE(3742), 1,
- sym_formal_parameters,
- STATE(4092), 1,
- sym_type_annotation,
- STATE(5057), 1,
- sym__initializer,
- STATE(5349), 1,
- sym_type_parameters,
- STATE(5372), 1,
- sym__call_signature,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(6449), 3,
- sym__automatic_semicolon,
- anon_sym_COMMA,
- anon_sym_SEMI,
- [120472] = 13,
- ACTIONS(2581), 1,
- anon_sym_LT,
- ACTIONS(3205), 1,
- anon_sym_LPAREN,
- ACTIONS(6403), 1,
- anon_sym_EQ,
- ACTIONS(6411), 1,
- anon_sym_COLON,
- ACTIONS(6461), 1,
- anon_sym_BANG,
- ACTIONS(6463), 1,
- anon_sym_QMARK,
- STATE(3229), 1,
- sym_formal_parameters,
- STATE(4163), 1,
- sym_type_annotation,
- STATE(4732), 1,
- sym__call_signature,
- STATE(4733), 1,
- sym__initializer,
- STATE(5404), 1,
- sym_type_parameters,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(6459), 3,
- sym__automatic_semicolon,
- anon_sym_COMMA,
- anon_sym_SEMI,
- [120515] = 4,
- ACTIONS(4039), 1,
- anon_sym_EQ,
- ACTIONS(6303), 1,
- anon_sym_is,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(4041), 12,
- anon_sym_LBRACE,
- anon_sym_COMMA,
- anon_sym_RBRACE,
- anon_sym_RPAREN,
- anon_sym_COLON,
- anon_sym_LBRACK,
- anon_sym_RBRACK,
- anon_sym_GT,
- anon_sym_EQ_GT,
- anon_sym_AMP,
- anon_sym_PIPE,
- anon_sym_extends,
- [120540] = 13,
- ACTIONS(2581), 1,
- anon_sym_LT,
- ACTIONS(6403), 1,
- anon_sym_EQ,
- ACTIONS(6411), 1,
- anon_sym_COLON,
- ACTIONS(6419), 1,
- anon_sym_LPAREN,
- ACTIONS(6465), 1,
- anon_sym_BANG,
- ACTIONS(6467), 1,
- anon_sym_QMARK,
- STATE(3742), 1,
- sym_formal_parameters,
- STATE(4340), 1,
- sym_type_annotation,
- STATE(5051), 1,
- sym__initializer,
- STATE(5349), 1,
- sym_type_parameters,
- STATE(5378), 1,
- sym__call_signature,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(6449), 3,
- sym__automatic_semicolon,
- anon_sym_COMMA,
- anon_sym_SEMI,
- [120583] = 6,
- ACTIONS(218), 1,
- anon_sym_unique,
- STATE(1937), 1,
- sym_type_predicate,
- STATE(5813), 1,
- sym_predefined_type,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(6469), 2,
- sym_identifier,
- sym_this,
- ACTIONS(220), 9,
- anon_sym_void,
- anon_sym_any,
- anon_sym_number,
- anon_sym_boolean,
- anon_sym_string,
- anon_sym_symbol,
- anon_sym_object,
- anon_sym_unknown,
- anon_sym_never,
- [120612] = 11,
- ACTIONS(2581), 1,
- anon_sym_LT,
- ACTIONS(3205), 1,
- anon_sym_LPAREN,
- ACTIONS(3737), 1,
- anon_sym_COMMA,
- ACTIONS(3829), 1,
- anon_sym_RBRACE,
- ACTIONS(4243), 1,
- anon_sym_EQ,
- STATE(3575), 1,
- sym_formal_parameters,
- STATE(4672), 1,
- aux_sym_object_pattern_repeat1,
- STATE(5156), 1,
- aux_sym_object_repeat1,
- STATE(5374), 1,
- sym_type_parameters,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(3743), 5,
- sym__automatic_semicolon,
- anon_sym_SEMI,
- anon_sym_COLON,
- anon_sym_QMARK,
- anon_sym_PIPE_RBRACE,
- [120651] = 13,
- ACTIONS(2581), 1,
- anon_sym_LT,
- ACTIONS(6403), 1,
- anon_sym_EQ,
- ACTIONS(6411), 1,
- anon_sym_COLON,
- ACTIONS(6419), 1,
- anon_sym_LPAREN,
- ACTIONS(6471), 1,
- anon_sym_BANG,
- ACTIONS(6473), 1,
- anon_sym_QMARK,
- STATE(3742), 1,
- sym_formal_parameters,
- STATE(4380), 1,
- sym_type_annotation,
- STATE(5104), 1,
- sym__initializer,
- STATE(5349), 1,
- sym_type_parameters,
- STATE(5439), 1,
- sym__call_signature,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(6449), 3,
- sym__automatic_semicolon,
- anon_sym_COMMA,
- anon_sym_SEMI,
- [120694] = 9,
- ACTIONS(4007), 1,
- anon_sym_extends,
- ACTIONS(6246), 1,
- anon_sym_LT,
- ACTIONS(6287), 1,
- anon_sym_DOT,
- ACTIONS(6475), 1,
- sym_identifier,
- ACTIONS(6479), 1,
- anon_sym_GT,
- STATE(2856), 1,
- sym_type_arguments,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(6477), 3,
- anon_sym_LBRACE,
- sym_jsx_identifier,
- anon_sym_SLASH_GT,
- ACTIONS(3461), 5,
- anon_sym_EQ,
- anon_sym_COMMA,
- anon_sym_LBRACK,
- anon_sym_AMP,
- anon_sym_PIPE,
- [120729] = 13,
- ACTIONS(2581), 1,
- anon_sym_LT,
- ACTIONS(6403), 1,
- anon_sym_EQ,
- ACTIONS(6411), 1,
- anon_sym_COLON,
- ACTIONS(6419), 1,
- anon_sym_LPAREN,
- ACTIONS(6482), 1,
- anon_sym_BANG,
- ACTIONS(6484), 1,
- anon_sym_QMARK,
- STATE(3742), 1,
- sym_formal_parameters,
- STATE(3962), 1,
- sym_type_annotation,
- STATE(4804), 1,
- sym__initializer,
- STATE(5349), 1,
- sym_type_parameters,
- STATE(5414), 1,
- sym__call_signature,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(6449), 3,
- sym__automatic_semicolon,
- anon_sym_COMMA,
- anon_sym_SEMI,
- [120772] = 13,
- ACTIONS(2581), 1,
- anon_sym_LT,
- ACTIONS(6403), 1,
- anon_sym_EQ,
- ACTIONS(6411), 1,
- anon_sym_COLON,
- ACTIONS(6419), 1,
- anon_sym_LPAREN,
- ACTIONS(6486), 1,
- anon_sym_BANG,
- ACTIONS(6488), 1,
- anon_sym_QMARK,
- STATE(3742), 1,
- sym_formal_parameters,
- STATE(3965), 1,
- sym_type_annotation,
- STATE(4852), 1,
- sym__initializer,
- STATE(5349), 1,
- sym_type_parameters,
- STATE(5515), 1,
- sym__call_signature,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(6449), 3,
- sym__automatic_semicolon,
- anon_sym_COMMA,
- anon_sym_SEMI,
- [120815] = 6,
- ACTIONS(218), 1,
- anon_sym_unique,
- STATE(2855), 1,
- sym_type_predicate,
- STATE(5649), 1,
- sym_predefined_type,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(6490), 2,
- sym_identifier,
- sym_this,
- ACTIONS(220), 9,
- anon_sym_void,
- anon_sym_any,
- anon_sym_number,
- anon_sym_boolean,
- anon_sym_string,
- anon_sym_symbol,
- anon_sym_object,
- anon_sym_unknown,
- anon_sym_never,
- [120844] = 11,
- ACTIONS(2581), 1,
- anon_sym_LT,
- ACTIONS(3205), 1,
- anon_sym_LPAREN,
- ACTIONS(3737), 1,
- anon_sym_COMMA,
- ACTIONS(3824), 1,
- anon_sym_RBRACE,
- ACTIONS(4243), 1,
- anon_sym_EQ,
- STATE(3575), 1,
- sym_formal_parameters,
- STATE(4672), 1,
- aux_sym_object_pattern_repeat1,
- STATE(5156), 1,
- aux_sym_object_repeat1,
- STATE(5374), 1,
- sym_type_parameters,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(3743), 5,
- sym__automatic_semicolon,
- anon_sym_SEMI,
- anon_sym_COLON,
- anon_sym_QMARK,
- anon_sym_PIPE_RBRACE,
- [120883] = 13,
- ACTIONS(2581), 1,
- anon_sym_LT,
- ACTIONS(6403), 1,
- anon_sym_EQ,
- ACTIONS(6409), 1,
- anon_sym_LPAREN,
- ACTIONS(6411), 1,
- anon_sym_COLON,
- ACTIONS(6461), 1,
- anon_sym_BANG,
- ACTIONS(6492), 1,
- anon_sym_QMARK,
- STATE(3320), 1,
- sym_formal_parameters,
- STATE(3799), 1,
- sym__call_signature,
- STATE(4163), 1,
- sym_type_annotation,
- STATE(4713), 1,
- sym__initializer,
- STATE(5342), 1,
- sym_type_parameters,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(6459), 3,
- sym__automatic_semicolon,
- anon_sym_COMMA,
- anon_sym_SEMI,
- [120926] = 13,
- ACTIONS(2581), 1,
- anon_sym_LT,
- ACTIONS(6403), 1,
- anon_sym_EQ,
- ACTIONS(6411), 1,
- anon_sym_COLON,
- ACTIONS(6419), 1,
- anon_sym_LPAREN,
- ACTIONS(6496), 1,
- anon_sym_BANG,
- ACTIONS(6498), 1,
- anon_sym_QMARK,
- STATE(3742), 1,
- sym_formal_parameters,
- STATE(4165), 1,
- sym_type_annotation,
- STATE(4716), 1,
- sym__initializer,
- STATE(5279), 1,
- sym__call_signature,
- STATE(5349), 1,
- sym_type_parameters,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(6494), 3,
- sym__automatic_semicolon,
- anon_sym_COMMA,
- anon_sym_SEMI,
- [120969] = 11,
- ACTIONS(2581), 1,
- anon_sym_LT,
- ACTIONS(3205), 1,
- anon_sym_LPAREN,
- ACTIONS(3737), 1,
- anon_sym_COMMA,
- ACTIONS(3838), 1,
- anon_sym_RBRACE,
- ACTIONS(4243), 1,
- anon_sym_EQ,
- STATE(3575), 1,
- sym_formal_parameters,
- STATE(4671), 1,
- aux_sym_object_repeat1,
- STATE(4672), 1,
- aux_sym_object_pattern_repeat1,
- STATE(5374), 1,
- sym_type_parameters,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(3743), 5,
- sym__automatic_semicolon,
- anon_sym_SEMI,
- anon_sym_COLON,
- anon_sym_QMARK,
- anon_sym_PIPE_RBRACE,
- [121008] = 6,
- ACTIONS(218), 1,
- anon_sym_unique,
- STATE(3364), 1,
- sym_type_predicate,
- STATE(5825), 1,
- sym_predefined_type,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(6500), 2,
- sym_identifier,
- sym_this,
- ACTIONS(220), 9,
- anon_sym_void,
- anon_sym_any,
- anon_sym_number,
- anon_sym_boolean,
- anon_sym_string,
- anon_sym_symbol,
- anon_sym_object,
- anon_sym_unknown,
- anon_sym_never,
- [121037] = 13,
- ACTIONS(2581), 1,
- anon_sym_LT,
- ACTIONS(6403), 1,
- anon_sym_EQ,
- ACTIONS(6409), 1,
- anon_sym_LPAREN,
- ACTIONS(6411), 1,
- anon_sym_COLON,
- ACTIONS(6504), 1,
- anon_sym_BANG,
- ACTIONS(6506), 1,
- anon_sym_QMARK,
- STATE(3320), 1,
- sym_formal_parameters,
- STATE(3912), 1,
- sym__call_signature,
- STATE(4338), 1,
- sym_type_annotation,
- STATE(5059), 1,
- sym__initializer,
- STATE(5342), 1,
- sym_type_parameters,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(6502), 3,
- sym__automatic_semicolon,
- anon_sym_COMMA,
- anon_sym_SEMI,
- [121080] = 13,
- ACTIONS(2581), 1,
- anon_sym_LT,
- ACTIONS(3205), 1,
- anon_sym_LPAREN,
- ACTIONS(6403), 1,
- anon_sym_EQ,
- ACTIONS(6411), 1,
- anon_sym_COLON,
- ACTIONS(6435), 1,
- anon_sym_BANG,
- ACTIONS(6508), 1,
- anon_sym_QMARK,
- STATE(3229), 1,
- sym_formal_parameters,
- STATE(4305), 1,
- sym_type_annotation,
- STATE(4994), 1,
- sym__call_signature,
- STATE(4995), 1,
- sym__initializer,
- STATE(5404), 1,
- sym_type_parameters,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(6433), 3,
- sym__automatic_semicolon,
- anon_sym_COMMA,
- anon_sym_SEMI,
- [121123] = 13,
- ACTIONS(2581), 1,
- anon_sym_LT,
- ACTIONS(6403), 1,
- anon_sym_EQ,
- ACTIONS(6411), 1,
- anon_sym_COLON,
- ACTIONS(6419), 1,
- anon_sym_LPAREN,
- ACTIONS(6512), 1,
- anon_sym_BANG,
- ACTIONS(6514), 1,
- anon_sym_QMARK,
- STATE(3742), 1,
- sym_formal_parameters,
- STATE(4316), 1,
- sym_type_annotation,
- STATE(5001), 1,
- sym__initializer,
- STATE(5336), 1,
- sym__call_signature,
- STATE(5349), 1,
- sym_type_parameters,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(6510), 3,
- sym__automatic_semicolon,
- anon_sym_COMMA,
- anon_sym_SEMI,
- [121166] = 13,
- ACTIONS(2581), 1,
- anon_sym_LT,
- ACTIONS(6403), 1,
- anon_sym_EQ,
- ACTIONS(6411), 1,
- anon_sym_COLON,
- ACTIONS(6419), 1,
- anon_sym_LPAREN,
- ACTIONS(6516), 1,
- anon_sym_BANG,
- ACTIONS(6518), 1,
- anon_sym_QMARK,
- STATE(3742), 1,
- sym_formal_parameters,
- STATE(4318), 1,
- sym_type_annotation,
- STATE(5007), 1,
- sym__initializer,
- STATE(5340), 1,
- sym__call_signature,
- STATE(5349), 1,
- sym_type_parameters,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(6510), 3,
- sym__automatic_semicolon,
- anon_sym_COMMA,
- anon_sym_SEMI,
- [121209] = 5,
- ACTIONS(825), 1,
- anon_sym_BQUOTE,
- ACTIONS(3969), 1,
- anon_sym_LPAREN,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- STATE(1626), 2,
- sym_template_string,
- sym_arguments,
- ACTIONS(4478), 10,
- anon_sym_COMMA,
- anon_sym_RBRACE,
- anon_sym_RPAREN,
- anon_sym_LBRACK,
- anon_sym_RBRACK,
- anon_sym_GT,
- anon_sym_AMP,
- anon_sym_PIPE,
- anon_sym_QMARK,
- anon_sym_extends,
- [121236] = 13,
- ACTIONS(2581), 1,
- anon_sym_LT,
- ACTIONS(6403), 1,
- anon_sym_EQ,
- ACTIONS(6411), 1,
- anon_sym_COLON,
- ACTIONS(6419), 1,
- anon_sym_LPAREN,
- ACTIONS(6520), 1,
- anon_sym_BANG,
- ACTIONS(6522), 1,
- anon_sym_QMARK,
- STATE(3742), 1,
- sym_formal_parameters,
- STATE(4339), 1,
- sym_type_annotation,
- STATE(5048), 1,
- sym__initializer,
- STATE(5349), 1,
- sym_type_parameters,
- STATE(5373), 1,
- sym__call_signature,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(6510), 3,
- sym__automatic_semicolon,
- anon_sym_COMMA,
- anon_sym_SEMI,
- [121279] = 13,
- ACTIONS(2581), 1,
- anon_sym_LT,
- ACTIONS(6403), 1,
- anon_sym_EQ,
- ACTIONS(6411), 1,
- anon_sym_COLON,
- ACTIONS(6419), 1,
- anon_sym_LPAREN,
- ACTIONS(6524), 1,
- anon_sym_BANG,
- ACTIONS(6526), 1,
- anon_sym_QMARK,
- STATE(3742), 1,
- sym_formal_parameters,
- STATE(4341), 1,
- sym_type_annotation,
- STATE(5054), 1,
- sym__initializer,
- STATE(5349), 1,
- sym_type_parameters,
- STATE(5382), 1,
- sym__call_signature,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(6510), 3,
- sym__automatic_semicolon,
- anon_sym_COMMA,
- anon_sym_SEMI,
- [121322] = 6,
- ACTIONS(218), 1,
- anon_sym_unique,
- STATE(2855), 1,
- sym_type_predicate,
- STATE(5730), 1,
- sym_predefined_type,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(6528), 2,
- sym_identifier,
- sym_this,
- ACTIONS(220), 9,
- anon_sym_void,
- anon_sym_any,
- anon_sym_number,
- anon_sym_boolean,
- anon_sym_string,
- anon_sym_symbol,
- anon_sym_object,
- anon_sym_unknown,
- anon_sym_never,
- [121351] = 13,
- ACTIONS(2581), 1,
- anon_sym_LT,
- ACTIONS(6403), 1,
- anon_sym_EQ,
- ACTIONS(6411), 1,
- anon_sym_COLON,
- ACTIONS(6419), 1,
- anon_sym_LPAREN,
- ACTIONS(6532), 1,
- anon_sym_BANG,
- ACTIONS(6534), 1,
- anon_sym_QMARK,
- STATE(3742), 1,
- sym_formal_parameters,
- STATE(4184), 1,
- sym_type_annotation,
- STATE(4760), 1,
- sym__initializer,
- STATE(5184), 1,
- sym__call_signature,
- STATE(5349), 1,
- sym_type_parameters,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(6530), 3,
- sym__automatic_semicolon,
- anon_sym_COMMA,
- anon_sym_SEMI,
- [121394] = 4,
- ACTIONS(4013), 1,
- anon_sym_EQ,
- ACTIONS(6303), 1,
- anon_sym_is,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(4015), 12,
- anon_sym_LBRACE,
- anon_sym_COMMA,
- anon_sym_RBRACE,
- anon_sym_RPAREN,
- anon_sym_COLON,
- anon_sym_LBRACK,
- anon_sym_RBRACK,
- anon_sym_GT,
- anon_sym_EQ_GT,
- anon_sym_AMP,
- anon_sym_PIPE,
- anon_sym_extends,
- [121419] = 13,
- ACTIONS(2581), 1,
- anon_sym_LT,
- ACTIONS(6403), 1,
- anon_sym_EQ,
- ACTIONS(6411), 1,
- anon_sym_COLON,
- ACTIONS(6419), 1,
- anon_sym_LPAREN,
- ACTIONS(6536), 1,
- anon_sym_BANG,
- ACTIONS(6538), 1,
- anon_sym_QMARK,
- STATE(3742), 1,
- sym_formal_parameters,
- STATE(4367), 1,
- sym_type_annotation,
- STATE(5084), 1,
- sym__initializer,
- STATE(5349), 1,
- sym_type_parameters,
- STATE(5422), 1,
- sym__call_signature,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(6415), 3,
- sym__automatic_semicolon,
- anon_sym_COMMA,
- anon_sym_SEMI,
- [121462] = 4,
- ACTIONS(4025), 1,
- anon_sym_EQ,
- ACTIONS(6540), 1,
- anon_sym_is,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(4027), 12,
- anon_sym_LBRACE,
- anon_sym_COMMA,
- anon_sym_RBRACE,
- anon_sym_RPAREN,
- anon_sym_COLON,
- anon_sym_LBRACK,
- anon_sym_RBRACK,
- anon_sym_GT,
- anon_sym_EQ_GT,
- anon_sym_AMP,
- anon_sym_PIPE,
- anon_sym_extends,
- [121487] = 2,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(4222), 13,
- sym__automatic_semicolon,
- sym__function_signature_automatic_semicolon,
- anon_sym_LBRACE,
- anon_sym_COMMA,
- anon_sym_LPAREN,
- anon_sym_SEMI,
- anon_sym_LBRACK,
- anon_sym_DOT,
- anon_sym_QMARK_DOT,
- anon_sym_AMP,
- anon_sym_PIPE,
- anon_sym_LT,
- anon_sym_extends,
- [121507] = 10,
- ACTIONS(3), 1,
- sym_comment,
- ACTIONS(5), 1,
- sym_html_comment,
- ACTIONS(6542), 1,
- anon_sym_LBRACE,
- ACTIONS(6546), 1,
- sym_html_character_reference,
- ACTIONS(6548), 1,
- anon_sym_LT_SLASH,
- ACTIONS(6550), 1,
- anon_sym_LT,
- STATE(3070), 1,
- sym_jsx_opening_element,
- STATE(4260), 1,
- sym_jsx_closing_element,
- ACTIONS(6544), 2,
- aux_sym_jsx_text_token1,
- aux_sym_jsx_text_token2,
- STATE(2998), 5,
- sym_jsx_element,
- sym_jsx_text,
- sym_jsx_expression,
- sym_jsx_self_closing_element,
- aux_sym_jsx_element_repeat1,
- [121543] = 10,
- ACTIONS(3), 1,
- sym_comment,
- ACTIONS(5), 1,
- sym_html_comment,
- ACTIONS(6542), 1,
- anon_sym_LBRACE,
- ACTIONS(6548), 1,
- anon_sym_LT_SLASH,
- ACTIONS(6550), 1,
- anon_sym_LT,
- ACTIONS(6552), 1,
- sym_html_character_reference,
- STATE(3070), 1,
- sym_jsx_opening_element,
- STATE(4280), 1,
- sym_jsx_closing_element,
- ACTIONS(6544), 2,
- aux_sym_jsx_text_token1,
- aux_sym_jsx_text_token2,
- STATE(3134), 5,
- sym_jsx_element,
- sym_jsx_text,
- sym_jsx_expression,
- sym_jsx_self_closing_element,
- aux_sym_jsx_element_repeat1,
- [121579] = 3,
- ACTIONS(4470), 1,
- anon_sym_PIPE,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(4472), 12,
- sym__automatic_semicolon,
- anon_sym_EQ,
- anon_sym_LBRACE,
- anon_sym_COMMA,
- anon_sym_RBRACE,
- anon_sym_LPAREN,
- anon_sym_SEMI,
- anon_sym_LBRACK,
- anon_sym_AMP,
- anon_sym_BQUOTE,
- anon_sym_extends,
- anon_sym_PIPE_RBRACE,
- [121601] = 6,
- ACTIONS(4356), 1,
- anon_sym_EQ,
- ACTIONS(6554), 1,
- anon_sym_AMP,
- ACTIONS(6556), 1,
- anon_sym_PIPE,
- ACTIONS(6558), 1,
- anon_sym_extends,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(4358), 9,
- anon_sym_LBRACE,
- anon_sym_COMMA,
- anon_sym_RBRACE,
- anon_sym_RPAREN,
- anon_sym_COLON,
- anon_sym_LBRACK,
- anon_sym_RBRACK,
- anon_sym_GT,
- anon_sym_EQ_GT,
- [121629] = 6,
- ACTIONS(4360), 1,
- anon_sym_EQ,
- ACTIONS(6554), 1,
- anon_sym_AMP,
- ACTIONS(6556), 1,
- anon_sym_PIPE,
- ACTIONS(6558), 1,
- anon_sym_extends,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(4362), 9,
- anon_sym_LBRACE,
- anon_sym_COMMA,
- anon_sym_RBRACE,
- anon_sym_RPAREN,
- anon_sym_COLON,
- anon_sym_LBRACK,
- anon_sym_RBRACK,
- anon_sym_GT,
- anon_sym_EQ_GT,
- [121657] = 2,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(4295), 13,
- sym__automatic_semicolon,
- sym__function_signature_automatic_semicolon,
- anon_sym_LBRACE,
- anon_sym_COMMA,
- anon_sym_LPAREN,
- anon_sym_SEMI,
- anon_sym_LBRACK,
- anon_sym_DOT,
- anon_sym_QMARK_DOT,
- anon_sym_AMP,
- anon_sym_PIPE,
- anon_sym_LT,
- anon_sym_extends,
- [121677] = 5,
- ACTIONS(3410), 1,
- anon_sym_DOT,
- ACTIONS(3414), 1,
- anon_sym_QMARK_DOT,
- ACTIONS(3418), 1,
- anon_sym_PIPE,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(3406), 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,
- [121703] = 6,
- ACTIONS(6317), 1,
- anon_sym_LT,
- ACTIONS(6560), 1,
- anon_sym_DOT,
- ACTIONS(6562), 1,
- anon_sym_is,
- STATE(3300), 1,
- sym_type_arguments,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(3461), 9,
- sym__automatic_semicolon,
- sym__function_signature_automatic_semicolon,
- anon_sym_LBRACE,
- anon_sym_COMMA,
- anon_sym_SEMI,
- anon_sym_LBRACK,
- anon_sym_AMP,
- anon_sym_PIPE,
- anon_sym_extends,
- [121731] = 5,
- ACTIONS(4378), 1,
- anon_sym_PIPE,
- ACTIONS(6564), 1,
- anon_sym_DOT,
- ACTIONS(6566), 1,
- anon_sym_QMARK_DOT,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(4380), 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,
- [121757] = 6,
- ACTIONS(4104), 1,
- anon_sym_EQ,
- ACTIONS(6554), 1,
- anon_sym_AMP,
- ACTIONS(6556), 1,
- anon_sym_PIPE,
- ACTIONS(6558), 1,
- anon_sym_extends,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(4106), 9,
- anon_sym_LBRACE,
- anon_sym_COMMA,
- anon_sym_RBRACE,
- anon_sym_RPAREN,
- anon_sym_COLON,
- anon_sym_LBRACK,
- anon_sym_RBRACK,
- anon_sym_GT,
- anon_sym_EQ_GT,
- [121785] = 3,
- ACTIONS(3127), 1,
- anon_sym_PIPE,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(3129), 12,
- sym__automatic_semicolon,
- anon_sym_EQ,
- anon_sym_LBRACE,
- anon_sym_COMMA,
- anon_sym_RBRACE,
- anon_sym_SEMI,
- anon_sym_LBRACK,
- anon_sym_DOT,
- anon_sym_QMARK_DOT,
- anon_sym_AMP,
- anon_sym_extends,
- anon_sym_PIPE_RBRACE,
- [121807] = 2,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(4239), 13,
- sym__automatic_semicolon,
- sym__function_signature_automatic_semicolon,
- anon_sym_LBRACE,
- anon_sym_COMMA,
- anon_sym_LPAREN,
- anon_sym_SEMI,
- anon_sym_LBRACK,
- anon_sym_DOT,
- anon_sym_QMARK_DOT,
- anon_sym_AMP,
- anon_sym_PIPE,
- anon_sym_LT,
- anon_sym_extends,
- [121827] = 10,
- ACTIONS(2581), 1,
- anon_sym_LT,
- ACTIONS(3205), 1,
- anon_sym_LPAREN,
- ACTIONS(6411), 1,
- anon_sym_COLON,
- ACTIONS(6570), 1,
- anon_sym_QMARK,
- STATE(3229), 1,
- sym_formal_parameters,
- STATE(3639), 1,
- sym__call_signature,
- STATE(4220), 1,
- sym_type_annotation,
- STATE(5404), 1,
- sym_type_parameters,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(6568), 5,
- sym__automatic_semicolon,
- anon_sym_COMMA,
- anon_sym_RBRACE,
- anon_sym_SEMI,
- anon_sym_PIPE_RBRACE,
- [121863] = 2,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(4277), 13,
- sym__automatic_semicolon,
- sym__function_signature_automatic_semicolon,
- anon_sym_LBRACE,
- anon_sym_COMMA,
- anon_sym_LPAREN,
- anon_sym_SEMI,
- anon_sym_LBRACK,
- anon_sym_DOT,
- anon_sym_QMARK_DOT,
- anon_sym_AMP,
- anon_sym_PIPE,
- anon_sym_LT,
- anon_sym_extends,
- [121883] = 2,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(4281), 13,
- sym__automatic_semicolon,
- sym__function_signature_automatic_semicolon,
- anon_sym_LBRACE,
- anon_sym_COMMA,
- anon_sym_LPAREN,
- anon_sym_SEMI,
- anon_sym_LBRACK,
- anon_sym_DOT,
- anon_sym_QMARK_DOT,
- anon_sym_AMP,
- anon_sym_PIPE,
- anon_sym_LT,
- anon_sym_extends,
- [121903] = 3,
- ACTIONS(3131), 1,
- anon_sym_PIPE,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(3133), 12,
- sym__automatic_semicolon,
- anon_sym_EQ,
- anon_sym_LBRACE,
- anon_sym_COMMA,
- anon_sym_RBRACE,
- anon_sym_SEMI,
- anon_sym_LBRACK,
- anon_sym_DOT,
- anon_sym_QMARK_DOT,
- anon_sym_AMP,
- anon_sym_extends,
- anon_sym_PIPE_RBRACE,
- [121925] = 2,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(4222), 13,
- sym__automatic_semicolon,
- sym__function_signature_automatic_semicolon,
- anon_sym_LBRACE,
- anon_sym_COMMA,
- anon_sym_LPAREN,
- anon_sym_SEMI,
- anon_sym_LBRACK,
- anon_sym_DOT,
- anon_sym_QMARK_DOT,
- anon_sym_AMP,
- anon_sym_PIPE,
- anon_sym_LT,
- anon_sym_extends,
- [121945] = 6,
- ACTIONS(4420), 1,
- anon_sym_EQ,
- ACTIONS(6554), 1,
- anon_sym_AMP,
- ACTIONS(6556), 1,
- anon_sym_PIPE,
- ACTIONS(6558), 1,
- anon_sym_extends,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(4422), 9,
- anon_sym_LBRACE,
- anon_sym_COMMA,
- anon_sym_RBRACE,
- anon_sym_RPAREN,
- anon_sym_COLON,
- anon_sym_LBRACK,
- anon_sym_RBRACK,
- anon_sym_GT,
- anon_sym_EQ_GT,
- [121973] = 3,
- ACTIONS(4332), 1,
- anon_sym_PIPE,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(4334), 12,
- sym__automatic_semicolon,
- anon_sym_EQ,
- anon_sym_LBRACE,
- anon_sym_COMMA,
- anon_sym_RBRACE,
- anon_sym_LPAREN,
- anon_sym_SEMI,
- anon_sym_LBRACK,
- anon_sym_AMP,
- anon_sym_BQUOTE,
- anon_sym_extends,
- anon_sym_PIPE_RBRACE,
- [121995] = 13,
- ACTIONS(5991), 1,
- anon_sym_LT,
- ACTIONS(6252), 1,
- sym_identifier,
- ACTIONS(6256), 1,
- anon_sym_LBRACE,
- ACTIONS(6265), 1,
- sym_jsx_identifier,
- ACTIONS(6267), 1,
- anon_sym_DOT,
- ACTIONS(6572), 1,
- anon_sym_COLON,
- ACTIONS(6574), 1,
- anon_sym_GT,
- ACTIONS(6576), 1,
- anon_sym_SLASH_GT,
- STATE(3273), 1,
- sym_type_arguments,
- STATE(3279), 1,
- aux_sym__jsx_start_opening_element_repeat1,
- STATE(3826), 1,
- sym_jsx_namespace_name,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- STATE(4391), 2,
- sym_jsx_expression,
- sym_jsx_attribute,
- [122037] = 4,
- ACTIONS(4134), 1,
- anon_sym_EQ,
- ACTIONS(6554), 1,
- anon_sym_AMP,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(4136), 11,
- anon_sym_LBRACE,
- anon_sym_COMMA,
- anon_sym_RBRACE,
- anon_sym_RPAREN,
- anon_sym_COLON,
- anon_sym_LBRACK,
- anon_sym_RBRACK,
- anon_sym_GT,
- anon_sym_EQ_GT,
- anon_sym_PIPE,
- anon_sym_extends,
- [122061] = 3,
- ACTIONS(3123), 1,
- anon_sym_PIPE,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(3125), 12,
- sym__automatic_semicolon,
- anon_sym_EQ,
- anon_sym_LBRACE,
- anon_sym_COMMA,
- anon_sym_RBRACE,
- anon_sym_SEMI,
- anon_sym_LBRACK,
- anon_sym_DOT,
- anon_sym_QMARK_DOT,
- anon_sym_AMP,
- anon_sym_extends,
- anon_sym_PIPE_RBRACE,
- [122083] = 6,
- ACTIONS(4309), 1,
- anon_sym_EQ,
- ACTIONS(6554), 1,
- anon_sym_AMP,
- ACTIONS(6556), 1,
- anon_sym_PIPE,
- ACTIONS(6558), 1,
- anon_sym_extends,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(4311), 9,
- anon_sym_LBRACE,
- anon_sym_COMMA,
- anon_sym_RBRACE,
- anon_sym_RPAREN,
- anon_sym_COLON,
- anon_sym_LBRACK,
- anon_sym_RBRACK,
- anon_sym_GT,
- anon_sym_EQ_GT,
- [122111] = 3,
- ACTIONS(4454), 1,
- anon_sym_PIPE,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(4456), 12,
- sym__automatic_semicolon,
- anon_sym_EQ,
- anon_sym_LBRACE,
- anon_sym_COMMA,
- anon_sym_RBRACE,
- anon_sym_SEMI,
- anon_sym_LBRACK,
- anon_sym_DOT,
- anon_sym_QMARK_DOT,
- anon_sym_AMP,
- anon_sym_extends,
- anon_sym_PIPE_RBRACE,
- [122133] = 3,
- ACTIONS(4480), 1,
- anon_sym_PIPE,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(4482), 12,
- sym__automatic_semicolon,
- anon_sym_EQ,
- anon_sym_LBRACE,
- anon_sym_COMMA,
- anon_sym_RBRACE,
- anon_sym_SEMI,
- anon_sym_LBRACK,
- anon_sym_DOT,
- anon_sym_QMARK_DOT,
- anon_sym_AMP,
- anon_sym_extends,
- anon_sym_PIPE_RBRACE,
- [122155] = 2,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(4226), 13,
- sym__automatic_semicolon,
- sym__function_signature_automatic_semicolon,
- anon_sym_LBRACE,
- anon_sym_COMMA,
- anon_sym_LPAREN,
- anon_sym_SEMI,
- anon_sym_LBRACK,
- anon_sym_DOT,
- anon_sym_QMARK_DOT,
- anon_sym_AMP,
- anon_sym_PIPE,
- anon_sym_LT,
- anon_sym_extends,
- [122175] = 3,
- ACTIONS(4488), 1,
- anon_sym_PIPE,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(4490), 12,
- sym__automatic_semicolon,
- anon_sym_EQ,
- anon_sym_LBRACE,
- anon_sym_COMMA,
- anon_sym_RBRACE,
- anon_sym_SEMI,
- anon_sym_LBRACK,
- anon_sym_DOT,
- anon_sym_QMARK_DOT,
- anon_sym_AMP,
- anon_sym_extends,
- anon_sym_PIPE_RBRACE,
- [122197] = 2,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(4281), 13,
- sym__automatic_semicolon,
- sym__function_signature_automatic_semicolon,
- anon_sym_LBRACE,
- anon_sym_COMMA,
- anon_sym_LPAREN,
- anon_sym_SEMI,
- anon_sym_LBRACK,
- anon_sym_DOT,
- anon_sym_QMARK_DOT,
- anon_sym_AMP,
- anon_sym_PIPE,
- anon_sym_LT,
- anon_sym_extends,
- [122217] = 2,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(4281), 13,
- sym__automatic_semicolon,
- sym__function_signature_automatic_semicolon,
- anon_sym_LBRACE,
- anon_sym_COMMA,
- anon_sym_LPAREN,
- anon_sym_SEMI,
- anon_sym_LBRACK,
- anon_sym_DOT,
- anon_sym_QMARK_DOT,
- anon_sym_AMP,
- anon_sym_PIPE,
- anon_sym_LT,
- anon_sym_extends,
- [122237] = 10,
- ACTIONS(3), 1,
- sym_comment,
- ACTIONS(5), 1,
- sym_html_comment,
- ACTIONS(6542), 1,
- anon_sym_LBRACE,
- ACTIONS(6550), 1,
- anon_sym_LT,
- ACTIONS(6578), 1,
- sym_html_character_reference,
- ACTIONS(6580), 1,
- anon_sym_LT_SLASH,
- STATE(1633), 1,
- sym_jsx_closing_element,
- STATE(3070), 1,
- sym_jsx_opening_element,
- ACTIONS(6544), 2,
- aux_sym_jsx_text_token1,
- aux_sym_jsx_text_token2,
- STATE(3037), 5,
- sym_jsx_element,
- sym_jsx_text,
- sym_jsx_expression,
- sym_jsx_self_closing_element,
- aux_sym_jsx_element_repeat1,
- [122273] = 2,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(4226), 13,
- sym__automatic_semicolon,
- sym__function_signature_automatic_semicolon,
- anon_sym_LBRACE,
- anon_sym_COMMA,
- anon_sym_LPAREN,
- anon_sym_SEMI,
- anon_sym_LBRACK,
- anon_sym_DOT,
- anon_sym_QMARK_DOT,
- anon_sym_AMP,
- anon_sym_PIPE,
- anon_sym_LT,
- anon_sym_extends,
- [122293] = 10,
- ACTIONS(2581), 1,
- anon_sym_LT,
- ACTIONS(3205), 1,
- anon_sym_LPAREN,
- ACTIONS(6411), 1,
- anon_sym_COLON,
- ACTIONS(6584), 1,
- anon_sym_QMARK,
- STATE(3229), 1,
- sym_formal_parameters,
- STATE(4204), 1,
- sym__call_signature,
- STATE(4205), 1,
- sym_type_annotation,
- STATE(5404), 1,
- sym_type_parameters,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(6582), 5,
- sym__automatic_semicolon,
- anon_sym_COMMA,
- anon_sym_RBRACE,
- anon_sym_SEMI,
- anon_sym_PIPE_RBRACE,
- [122329] = 10,
- ACTIONS(2581), 1,
- anon_sym_LT,
- ACTIONS(3205), 1,
- anon_sym_LPAREN,
- ACTIONS(6411), 1,
- anon_sym_COLON,
- ACTIONS(6588), 1,
- anon_sym_QMARK,
- STATE(3229), 1,
- sym_formal_parameters,
- STATE(3520), 1,
- sym__call_signature,
- STATE(4041), 1,
- sym_type_annotation,
- STATE(5404), 1,
- sym_type_parameters,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(6586), 5,
- sym__automatic_semicolon,
- anon_sym_COMMA,
- anon_sym_RBRACE,
- anon_sym_SEMI,
- anon_sym_PIPE_RBRACE,
- [122365] = 2,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(4287), 13,
- sym__automatic_semicolon,
- sym__function_signature_automatic_semicolon,
- anon_sym_LBRACE,
- anon_sym_COMMA,
- anon_sym_LPAREN,
- anon_sym_SEMI,
- anon_sym_LBRACK,
- anon_sym_DOT,
- anon_sym_QMARK_DOT,
- anon_sym_AMP,
- anon_sym_PIPE,
- anon_sym_LT,
- anon_sym_extends,
- [122385] = 4,
- ACTIONS(1797), 1,
- anon_sym_DOT,
- ACTIONS(4097), 1,
- anon_sym_PIPE,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(4099), 11,
- sym__automatic_semicolon,
- anon_sym_EQ,
- anon_sym_LBRACE,
- anon_sym_COMMA,
- anon_sym_RBRACE,
- anon_sym_SEMI,
- anon_sym_LBRACK,
- anon_sym_AMP,
- anon_sym_LT,
- anon_sym_extends,
- anon_sym_PIPE_RBRACE,
- [122409] = 3,
- ACTIONS(3596), 1,
- anon_sym_PIPE,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(3446), 12,
- sym__automatic_semicolon,
- anon_sym_EQ,
- anon_sym_LBRACE,
- anon_sym_COMMA,
- anon_sym_RBRACE,
- anon_sym_LPAREN,
- anon_sym_SEMI,
- anon_sym_LBRACK,
- anon_sym_DOT,
- anon_sym_AMP,
- anon_sym_extends,
- anon_sym_PIPE_RBRACE,
- [122431] = 2,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(4287), 13,
- sym__automatic_semicolon,
- sym__function_signature_automatic_semicolon,
- anon_sym_LBRACE,
- anon_sym_COMMA,
- anon_sym_LPAREN,
- anon_sym_SEMI,
- anon_sym_LBRACK,
- anon_sym_DOT,
- anon_sym_QMARK_DOT,
- anon_sym_AMP,
- anon_sym_PIPE,
- anon_sym_LT,
- anon_sym_extends,
- [122451] = 3,
- ACTIONS(4142), 1,
- anon_sym_PIPE,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(4144), 12,
- sym__automatic_semicolon,
- anon_sym_EQ,
- anon_sym_LBRACE,
- anon_sym_COMMA,
- anon_sym_RBRACE,
- anon_sym_LPAREN,
- anon_sym_SEMI,
- anon_sym_LBRACK,
- anon_sym_AMP,
- anon_sym_BQUOTE,
- anon_sym_extends,
- anon_sym_PIPE_RBRACE,
- [122473] = 3,
- ACTIONS(3598), 1,
- anon_sym_PIPE,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(3382), 12,
- sym__automatic_semicolon,
- anon_sym_EQ,
- anon_sym_LBRACE,
- anon_sym_COMMA,
- anon_sym_RBRACE,
- anon_sym_LPAREN,
- anon_sym_SEMI,
- anon_sym_LBRACK,
- anon_sym_DOT,
- anon_sym_AMP,
- anon_sym_extends,
- anon_sym_PIPE_RBRACE,
- [122495] = 4,
- ACTIONS(1855), 1,
- anon_sym_DOT,
- ACTIONS(4097), 1,
- anon_sym_PIPE,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(4099), 11,
- sym__automatic_semicolon,
- anon_sym_EQ,
- anon_sym_LBRACE,
- anon_sym_COMMA,
- anon_sym_RBRACE,
- anon_sym_SEMI,
- anon_sym_LBRACK,
- anon_sym_AMP,
- anon_sym_LT,
- anon_sym_extends,
- anon_sym_PIPE_RBRACE,
- [122519] = 10,
- ACTIONS(3), 1,
- sym_comment,
- ACTIONS(5), 1,
- sym_html_comment,
- ACTIONS(6542), 1,
- anon_sym_LBRACE,
- ACTIONS(6550), 1,
- anon_sym_LT,
- ACTIONS(6552), 1,
- sym_html_character_reference,
- ACTIONS(6580), 1,
- anon_sym_LT_SLASH,
- STATE(1678), 1,
- sym_jsx_closing_element,
- STATE(3070), 1,
- sym_jsx_opening_element,
- ACTIONS(6544), 2,
- aux_sym_jsx_text_token1,
- aux_sym_jsx_text_token2,
- STATE(3134), 5,
- sym_jsx_element,
- sym_jsx_text,
- sym_jsx_expression,
- sym_jsx_self_closing_element,
- aux_sym_jsx_element_repeat1,
- [122555] = 10,
- ACTIONS(2581), 1,
- anon_sym_LT,
- ACTIONS(3205), 1,
- anon_sym_LPAREN,
- ACTIONS(6411), 1,
- anon_sym_COLON,
- ACTIONS(6590), 1,
- anon_sym_QMARK,
- STATE(3229), 1,
- sym_formal_parameters,
- STATE(4040), 1,
- sym__call_signature,
- STATE(4041), 1,
- sym_type_annotation,
- STATE(5404), 1,
- sym_type_parameters,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(6586), 5,
- sym__automatic_semicolon,
- anon_sym_COMMA,
- anon_sym_RBRACE,
- anon_sym_SEMI,
- anon_sym_PIPE_RBRACE,
- [122591] = 10,
- ACTIONS(2581), 1,
- anon_sym_LT,
- ACTIONS(3205), 1,
- anon_sym_LPAREN,
- ACTIONS(6411), 1,
- anon_sym_COLON,
- ACTIONS(6594), 1,
- anon_sym_QMARK,
- STATE(3229), 1,
- sym_formal_parameters,
- STATE(4026), 1,
- sym__call_signature,
- STATE(4032), 1,
- sym_type_annotation,
- STATE(5404), 1,
- sym_type_parameters,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(6592), 5,
- sym__automatic_semicolon,
- anon_sym_COMMA,
- anon_sym_RBRACE,
- anon_sym_SEMI,
- anon_sym_PIPE_RBRACE,
- [122627] = 2,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(4295), 13,
- sym__automatic_semicolon,
- sym__function_signature_automatic_semicolon,
- anon_sym_LBRACE,
- anon_sym_COMMA,
- anon_sym_LPAREN,
- anon_sym_SEMI,
- anon_sym_LBRACK,
- anon_sym_DOT,
- anon_sym_QMARK_DOT,
- anon_sym_AMP,
- anon_sym_PIPE,
- anon_sym_LT,
- anon_sym_extends,
- [122647] = 2,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(4226), 13,
- sym__automatic_semicolon,
- sym__function_signature_automatic_semicolon,
- anon_sym_LBRACE,
- anon_sym_COMMA,
- anon_sym_LPAREN,
- anon_sym_SEMI,
- anon_sym_LBRACK,
- anon_sym_DOT,
- anon_sym_QMARK_DOT,
- anon_sym_AMP,
- anon_sym_PIPE,
- anon_sym_LT,
- anon_sym_extends,
- [122667] = 3,
- ACTIONS(4114), 1,
- anon_sym_PIPE,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(4116), 12,
- sym__automatic_semicolon,
- anon_sym_EQ,
- anon_sym_LBRACE,
- anon_sym_COMMA,
- anon_sym_RBRACE,
- anon_sym_LPAREN,
- anon_sym_SEMI,
- anon_sym_LBRACK,
- anon_sym_DOT,
- anon_sym_AMP,
- anon_sym_extends,
- anon_sym_PIPE_RBRACE,
- [122689] = 3,
- ACTIONS(4118), 1,
- anon_sym_PIPE,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(4120), 12,
- sym__automatic_semicolon,
- anon_sym_EQ,
- anon_sym_LBRACE,
- anon_sym_COMMA,
- anon_sym_RBRACE,
- anon_sym_LPAREN,
- anon_sym_SEMI,
- anon_sym_LBRACK,
- anon_sym_DOT,
- anon_sym_AMP,
- anon_sym_extends,
- anon_sym_PIPE_RBRACE,
- [122711] = 3,
- ACTIONS(4122), 1,
- anon_sym_PIPE,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(4124), 12,
- sym__automatic_semicolon,
- anon_sym_EQ,
- anon_sym_LBRACE,
- anon_sym_COMMA,
- anon_sym_RBRACE,
- anon_sym_LPAREN,
- anon_sym_SEMI,
- anon_sym_LBRACK,
- anon_sym_DOT,
- anon_sym_AMP,
- anon_sym_extends,
- anon_sym_PIPE_RBRACE,
- [122733] = 13,
- ACTIONS(5991), 1,
- anon_sym_LT,
- ACTIONS(6252), 1,
- sym_identifier,
- ACTIONS(6256), 1,
- anon_sym_LBRACE,
- ACTIONS(6265), 1,
- sym_jsx_identifier,
- ACTIONS(6267), 1,
- anon_sym_DOT,
- ACTIONS(6572), 1,
- anon_sym_COLON,
- ACTIONS(6574), 1,
- anon_sym_GT,
- ACTIONS(6596), 1,
- anon_sym_SLASH_GT,
- STATE(3362), 1,
- sym_type_arguments,
- STATE(3368), 1,
- aux_sym__jsx_start_opening_element_repeat1,
- STATE(3826), 1,
- sym_jsx_namespace_name,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- STATE(4391), 2,
- sym_jsx_expression,
- sym_jsx_attribute,
- [122775] = 3,
- ACTIONS(4126), 1,
- anon_sym_PIPE,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(4128), 12,
- sym__automatic_semicolon,
- anon_sym_EQ,
- anon_sym_LBRACE,
- anon_sym_COMMA,
- anon_sym_RBRACE,
- anon_sym_LPAREN,
- anon_sym_SEMI,
- anon_sym_LBRACK,
- anon_sym_DOT,
- anon_sym_AMP,
- anon_sym_extends,
- anon_sym_PIPE_RBRACE,
- [122797] = 5,
- ACTIONS(4025), 1,
- anon_sym_PIPE,
- ACTIONS(6289), 1,
- anon_sym_LT,
- STATE(3180), 1,
- sym_type_arguments,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(4027), 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,
- [122823] = 2,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(4239), 13,
- sym__automatic_semicolon,
- sym__function_signature_automatic_semicolon,
- anon_sym_LBRACE,
- anon_sym_COMMA,
- anon_sym_LPAREN,
- anon_sym_SEMI,
- anon_sym_LBRACK,
- anon_sym_DOT,
- anon_sym_QMARK_DOT,
- anon_sym_AMP,
- anon_sym_PIPE,
- anon_sym_LT,
- anon_sym_extends,
- [122843] = 10,
- ACTIONS(2581), 1,
- anon_sym_LT,
- ACTIONS(3205), 1,
- anon_sym_LPAREN,
- ACTIONS(6598), 1,
- anon_sym_COLON,
- ACTIONS(6600), 1,
- anon_sym_QMARK,
- STATE(3229), 1,
- sym_formal_parameters,
- STATE(3642), 1,
- sym__call_signature,
- STATE(4205), 1,
- sym_type_annotation,
- STATE(5404), 1,
- sym_type_parameters,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(6582), 5,
- sym__automatic_semicolon,
- anon_sym_COMMA,
- anon_sym_RBRACE,
- anon_sym_SEMI,
- anon_sym_PIPE_RBRACE,
- [122879] = 4,
- ACTIONS(4398), 1,
- anon_sym_EQ,
- ACTIONS(6554), 1,
- anon_sym_AMP,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(4400), 11,
- anon_sym_LBRACE,
- anon_sym_COMMA,
- anon_sym_RBRACE,
- anon_sym_RPAREN,
- anon_sym_COLON,
- anon_sym_LBRACK,
- anon_sym_RBRACK,
- anon_sym_GT,
- anon_sym_EQ_GT,
- anon_sym_PIPE,
- anon_sym_extends,
- [122903] = 10,
- ACTIONS(3), 1,
- sym_comment,
- ACTIONS(5), 1,
- sym_html_comment,
- ACTIONS(6542), 1,
- anon_sym_LBRACE,
- ACTIONS(6550), 1,
- anon_sym_LT,
- ACTIONS(6602), 1,
- sym_html_character_reference,
- ACTIONS(6604), 1,
- anon_sym_LT_SLASH,
- STATE(2342), 1,
- sym_jsx_closing_element,
- STATE(3070), 1,
- sym_jsx_opening_element,
- ACTIONS(6544), 2,
- aux_sym_jsx_text_token1,
- aux_sym_jsx_text_token2,
- STATE(3062), 5,
- sym_jsx_element,
- sym_jsx_text,
- sym_jsx_expression,
- sym_jsx_self_closing_element,
- aux_sym_jsx_element_repeat1,
- [122939] = 6,
- ACTIONS(825), 1,
- anon_sym_BQUOTE,
- ACTIONS(3969), 1,
- anon_sym_LPAREN,
- ACTIONS(4476), 1,
- anon_sym_PIPE,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- STATE(1626), 2,
- sym_template_string,
- sym_arguments,
- ACTIONS(4478), 8,
- sym__automatic_semicolon,
- anon_sym_COMMA,
- anon_sym_RBRACE,
- anon_sym_SEMI,
- anon_sym_LBRACK,
- anon_sym_AMP,
- anon_sym_extends,
- anon_sym_PIPE_RBRACE,
- [122967] = 2,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(4513), 13,
- sym__automatic_semicolon,
- sym__function_signature_automatic_semicolon,
- anon_sym_LBRACE,
- anon_sym_COMMA,
- anon_sym_LPAREN,
- anon_sym_SEMI,
- anon_sym_LBRACK,
- anon_sym_DOT,
- anon_sym_QMARK_DOT,
- anon_sym_AMP,
- anon_sym_PIPE,
- anon_sym_LT,
- anon_sym_extends,
- [122987] = 6,
- ACTIONS(4195), 1,
- anon_sym_EQ,
- ACTIONS(6554), 1,
- anon_sym_AMP,
- ACTIONS(6556), 1,
- anon_sym_PIPE,
- ACTIONS(6558), 1,
- anon_sym_extends,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(4197), 9,
- anon_sym_LBRACE,
- anon_sym_COMMA,
- anon_sym_RBRACE,
- anon_sym_RPAREN,
- anon_sym_COLON,
- anon_sym_LBRACK,
- anon_sym_RBRACK,
- anon_sym_GT,
- anon_sym_EQ_GT,
- [123015] = 2,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(4148), 13,
- sym__automatic_semicolon,
- sym__function_signature_automatic_semicolon,
- anon_sym_LBRACE,
- anon_sym_COMMA,
- anon_sym_LPAREN,
- anon_sym_SEMI,
- anon_sym_LBRACK,
- anon_sym_DOT,
- anon_sym_QMARK_DOT,
- anon_sym_AMP,
- anon_sym_PIPE,
- anon_sym_LT,
- anon_sym_extends,
- [123035] = 2,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(4287), 13,
- sym__automatic_semicolon,
- sym__function_signature_automatic_semicolon,
- anon_sym_LBRACE,
- anon_sym_COMMA,
- anon_sym_LPAREN,
- anon_sym_SEMI,
- anon_sym_LBRACK,
- anon_sym_DOT,
- anon_sym_QMARK_DOT,
- anon_sym_AMP,
- anon_sym_PIPE,
- anon_sym_LT,
- anon_sym_extends,
- [123055] = 10,
- ACTIONS(2581), 1,
- anon_sym_LT,
- ACTIONS(3205), 1,
- anon_sym_LPAREN,
- ACTIONS(6411), 1,
- anon_sym_COLON,
- ACTIONS(6608), 1,
- anon_sym_QMARK,
- STATE(3229), 1,
- sym_formal_parameters,
- STATE(4360), 1,
- sym__call_signature,
- STATE(4361), 1,
- sym_type_annotation,
- STATE(5404), 1,
- sym_type_parameters,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(6606), 5,
- sym__automatic_semicolon,
- anon_sym_COMMA,
- anon_sym_RBRACE,
- anon_sym_SEMI,
- anon_sym_PIPE_RBRACE,
- [123091] = 2,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(4152), 13,
- sym__automatic_semicolon,
- sym__function_signature_automatic_semicolon,
- anon_sym_LBRACE,
- anon_sym_COMMA,
- anon_sym_LPAREN,
- anon_sym_SEMI,
- anon_sym_LBRACK,
- anon_sym_DOT,
- anon_sym_QMARK_DOT,
- anon_sym_AMP,
- anon_sym_PIPE,
- anon_sym_LT,
- anon_sym_extends,
- [123111] = 6,
- ACTIONS(4212), 1,
- anon_sym_EQ,
- ACTIONS(6554), 1,
- anon_sym_AMP,
- ACTIONS(6556), 1,
- anon_sym_PIPE,
- ACTIONS(6558), 1,
- anon_sym_extends,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(4214), 9,
- anon_sym_LBRACE,
- anon_sym_COMMA,
- anon_sym_RBRACE,
- anon_sym_RPAREN,
- anon_sym_COLON,
- anon_sym_LBRACK,
- anon_sym_RBRACK,
- anon_sym_GT,
- anon_sym_EQ_GT,
- [123139] = 2,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(4156), 13,
- sym__automatic_semicolon,
- sym__function_signature_automatic_semicolon,
- anon_sym_LBRACE,
- anon_sym_COMMA,
- anon_sym_LPAREN,
- anon_sym_SEMI,
- anon_sym_LBRACK,
- anon_sym_DOT,
- anon_sym_QMARK_DOT,
- anon_sym_AMP,
- anon_sym_PIPE,
- anon_sym_LT,
- anon_sym_extends,
- [123159] = 2,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(4152), 13,
- sym__automatic_semicolon,
- sym__function_signature_automatic_semicolon,
- anon_sym_LBRACE,
- anon_sym_COMMA,
- anon_sym_LPAREN,
- anon_sym_SEMI,
- anon_sym_LBRACK,
- anon_sym_DOT,
- anon_sym_QMARK_DOT,
- anon_sym_AMP,
- anon_sym_PIPE,
- anon_sym_LT,
- anon_sym_extends,
- [123179] = 10,
- ACTIONS(3), 1,
- sym_comment,
- ACTIONS(5), 1,
- sym_html_comment,
- ACTIONS(6542), 1,
- anon_sym_LBRACE,
- ACTIONS(6550), 1,
- anon_sym_LT,
- ACTIONS(6552), 1,
- sym_html_character_reference,
- ACTIONS(6604), 1,
- anon_sym_LT_SLASH,
- STATE(2378), 1,
- sym_jsx_closing_element,
- STATE(3070), 1,
- sym_jsx_opening_element,
- ACTIONS(6544), 2,
- aux_sym_jsx_text_token1,
- aux_sym_jsx_text_token2,
- STATE(3134), 5,
- sym_jsx_element,
- sym_jsx_text,
- sym_jsx_expression,
- sym_jsx_self_closing_element,
- aux_sym_jsx_element_repeat1,
- [123215] = 10,
- ACTIONS(2581), 1,
- anon_sym_LT,
- ACTIONS(3205), 1,
- anon_sym_LPAREN,
- ACTIONS(6411), 1,
- anon_sym_COLON,
- ACTIONS(6610), 1,
- anon_sym_QMARK,
- STATE(3229), 1,
- sym_formal_parameters,
- STATE(4218), 1,
- sym__call_signature,
- STATE(4220), 1,
- sym_type_annotation,
- STATE(5404), 1,
- sym_type_parameters,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(6568), 5,
- sym__automatic_semicolon,
- anon_sym_COMMA,
- anon_sym_RBRACE,
- anon_sym_SEMI,
- anon_sym_PIPE_RBRACE,
- [123251] = 2,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(4156), 13,
- sym__automatic_semicolon,
- sym__function_signature_automatic_semicolon,
- anon_sym_LBRACE,
- anon_sym_COMMA,
- anon_sym_LPAREN,
- anon_sym_SEMI,
- anon_sym_LBRACK,
- anon_sym_DOT,
- anon_sym_QMARK_DOT,
- anon_sym_AMP,
- anon_sym_PIPE,
- anon_sym_LT,
- anon_sym_extends,
- [123271] = 2,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(4160), 13,
- sym__automatic_semicolon,
- sym__function_signature_automatic_semicolon,
- anon_sym_LBRACE,
- anon_sym_COMMA,
- anon_sym_LPAREN,
- anon_sym_SEMI,
- anon_sym_LBRACK,
- anon_sym_DOT,
- anon_sym_QMARK_DOT,
- anon_sym_AMP,
- anon_sym_PIPE,
- anon_sym_LT,
- anon_sym_extends,
- [123291] = 2,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(4164), 13,
- sym__automatic_semicolon,
- sym__function_signature_automatic_semicolon,
- anon_sym_LBRACE,
- anon_sym_COMMA,
- anon_sym_LPAREN,
- anon_sym_SEMI,
- anon_sym_LBRACK,
- anon_sym_DOT,
- anon_sym_QMARK_DOT,
- anon_sym_AMP,
- anon_sym_PIPE,
- anon_sym_LT,
- anon_sym_extends,
- [123311] = 2,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(4160), 13,
- sym__automatic_semicolon,
- sym__function_signature_automatic_semicolon,
- anon_sym_LBRACE,
- anon_sym_COMMA,
- anon_sym_LPAREN,
- anon_sym_SEMI,
- anon_sym_LBRACK,
- anon_sym_DOT,
- anon_sym_QMARK_DOT,
- anon_sym_AMP,
- anon_sym_PIPE,
- anon_sym_LT,
- anon_sym_extends,
- [123331] = 4,
- ACTIONS(4428), 1,
- anon_sym_EQ,
- ACTIONS(6612), 1,
- anon_sym_extends,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(4430), 11,
- anon_sym_LBRACE,
- anon_sym_COMMA,
- anon_sym_RBRACE,
- anon_sym_RPAREN,
- anon_sym_COLON,
- anon_sym_LBRACK,
- anon_sym_RBRACK,
- anon_sym_GT,
- anon_sym_EQ_GT,
- anon_sym_AMP,
- anon_sym_PIPE,
- [123355] = 2,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(4164), 13,
- sym__automatic_semicolon,
- sym__function_signature_automatic_semicolon,
- anon_sym_LBRACE,
- anon_sym_COMMA,
- anon_sym_LPAREN,
- anon_sym_SEMI,
- anon_sym_LBRACK,
- anon_sym_DOT,
- anon_sym_QMARK_DOT,
- anon_sym_AMP,
- anon_sym_PIPE,
- anon_sym_LT,
- anon_sym_extends,
- [123375] = 10,
- ACTIONS(3), 1,
- sym_comment,
- ACTIONS(5), 1,
- sym_html_comment,
- ACTIONS(6542), 1,
- anon_sym_LBRACE,
- ACTIONS(6550), 1,
- anon_sym_LT,
- ACTIONS(6614), 1,
- sym_html_character_reference,
- ACTIONS(6616), 1,
- anon_sym_LT_SLASH,
- STATE(3070), 1,
- sym_jsx_opening_element,
- STATE(3726), 1,
- sym_jsx_closing_element,
- ACTIONS(6544), 2,
- aux_sym_jsx_text_token1,
- aux_sym_jsx_text_token2,
- STATE(3075), 5,
- sym_jsx_element,
- sym_jsx_text,
- sym_jsx_expression,
- sym_jsx_self_closing_element,
- aux_sym_jsx_element_repeat1,
- [123411] = 2,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(4168), 13,
- sym__automatic_semicolon,
- sym__function_signature_automatic_semicolon,
- anon_sym_LBRACE,
- anon_sym_COMMA,
- anon_sym_LPAREN,
- anon_sym_SEMI,
- anon_sym_LBRACK,
- anon_sym_DOT,
- anon_sym_QMARK_DOT,
- anon_sym_AMP,
- anon_sym_PIPE,
- anon_sym_LT,
- anon_sym_extends,
- [123431] = 2,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(4179), 13,
- sym__automatic_semicolon,
- sym__function_signature_automatic_semicolon,
- anon_sym_LBRACE,
- anon_sym_COMMA,
- anon_sym_LPAREN,
- anon_sym_SEMI,
- anon_sym_LBRACK,
- anon_sym_DOT,
- anon_sym_QMARK_DOT,
- anon_sym_AMP,
- anon_sym_PIPE,
- anon_sym_LT,
- anon_sym_extends,
- [123451] = 2,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(4295), 13,
- sym__automatic_semicolon,
- sym__function_signature_automatic_semicolon,
- anon_sym_LBRACE,
- anon_sym_COMMA,
- anon_sym_LPAREN,
- anon_sym_SEMI,
- anon_sym_LBRACK,
- anon_sym_DOT,
- anon_sym_QMARK_DOT,
- anon_sym_AMP,
- anon_sym_PIPE,
- anon_sym_LT,
- anon_sym_extends,
- [123471] = 10,
- ACTIONS(2581), 1,
- anon_sym_LT,
- ACTIONS(3205), 1,
- anon_sym_LPAREN,
- ACTIONS(6411), 1,
- anon_sym_COLON,
- ACTIONS(6618), 1,
- anon_sym_QMARK,
- STATE(3229), 1,
- sym_formal_parameters,
- STATE(3681), 1,
- sym__call_signature,
- STATE(4032), 1,
- sym_type_annotation,
- STATE(5404), 1,
- sym_type_parameters,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(6592), 5,
- sym__automatic_semicolon,
- anon_sym_COMMA,
- anon_sym_RBRACE,
- anon_sym_SEMI,
- anon_sym_PIPE_RBRACE,
- [123507] = 10,
- ACTIONS(3), 1,
- sym_comment,
- ACTIONS(5), 1,
- sym_html_comment,
- ACTIONS(6542), 1,
- anon_sym_LBRACE,
- ACTIONS(6550), 1,
- anon_sym_LT,
- ACTIONS(6552), 1,
- sym_html_character_reference,
- ACTIONS(6616), 1,
- anon_sym_LT_SLASH,
- STATE(3070), 1,
- sym_jsx_opening_element,
- STATE(3887), 1,
- sym_jsx_closing_element,
- ACTIONS(6544), 2,
- aux_sym_jsx_text_token1,
- aux_sym_jsx_text_token2,
- STATE(3134), 5,
- sym_jsx_element,
- sym_jsx_text,
- sym_jsx_expression,
- sym_jsx_self_closing_element,
- aux_sym_jsx_element_repeat1,
- [123543] = 2,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(4168), 13,
- sym__automatic_semicolon,
- sym__function_signature_automatic_semicolon,
- anon_sym_LBRACE,
- anon_sym_COMMA,
- anon_sym_LPAREN,
- anon_sym_SEMI,
- anon_sym_LBRACK,
- anon_sym_DOT,
- anon_sym_QMARK_DOT,
- anon_sym_AMP,
- anon_sym_PIPE,
- anon_sym_LT,
- anon_sym_extends,
- [123563] = 2,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(4179), 13,
- sym__automatic_semicolon,
- sym__function_signature_automatic_semicolon,
- anon_sym_LBRACE,
- anon_sym_COMMA,
- anon_sym_LPAREN,
- anon_sym_SEMI,
- anon_sym_LBRACK,
- anon_sym_DOT,
- anon_sym_QMARK_DOT,
- anon_sym_AMP,
- anon_sym_PIPE,
- anon_sym_LT,
- anon_sym_extends,
- [123583] = 2,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(4218), 13,
- sym__automatic_semicolon,
- sym__function_signature_automatic_semicolon,
- anon_sym_LBRACE,
- anon_sym_COMMA,
- anon_sym_LPAREN,
- anon_sym_SEMI,
- anon_sym_LBRACK,
- anon_sym_DOT,
- anon_sym_QMARK_DOT,
- anon_sym_AMP,
- anon_sym_PIPE,
- anon_sym_LT,
- anon_sym_extends,
- [123603] = 2,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(4222), 13,
- sym__automatic_semicolon,
- sym__function_signature_automatic_semicolon,
- anon_sym_LBRACE,
- anon_sym_COMMA,
- anon_sym_LPAREN,
- anon_sym_SEMI,
- anon_sym_LBRACK,
- anon_sym_DOT,
- anon_sym_QMARK_DOT,
- anon_sym_AMP,
- anon_sym_PIPE,
- anon_sym_LT,
- anon_sym_extends,
- [123623] = 2,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(4239), 13,
- sym__automatic_semicolon,
- sym__function_signature_automatic_semicolon,
- anon_sym_LBRACE,
- anon_sym_COMMA,
- anon_sym_LPAREN,
- anon_sym_SEMI,
- anon_sym_LBRACK,
- anon_sym_DOT,
- anon_sym_QMARK_DOT,
- anon_sym_AMP,
- anon_sym_PIPE,
- anon_sym_LT,
- anon_sym_extends,
- [123643] = 10,
- ACTIONS(2581), 1,
- anon_sym_LT,
- ACTIONS(3205), 1,
- anon_sym_LPAREN,
- ACTIONS(6411), 1,
- anon_sym_COLON,
- ACTIONS(6620), 1,
- anon_sym_QMARK,
- STATE(3229), 1,
- sym_formal_parameters,
- STATE(3572), 1,
- sym__call_signature,
- STATE(4361), 1,
- sym_type_annotation,
- STATE(5404), 1,
- sym_type_parameters,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(6606), 5,
- sym__automatic_semicolon,
- anon_sym_COMMA,
- anon_sym_RBRACE,
- anon_sym_SEMI,
- anon_sym_PIPE_RBRACE,
- [123679] = 9,
- ACTIONS(2581), 1,
- anon_sym_LT,
- ACTIONS(3205), 1,
- anon_sym_LPAREN,
- ACTIONS(6411), 1,
- anon_sym_COLON,
- STATE(3229), 1,
- sym_formal_parameters,
- STATE(4037), 1,
- sym__call_signature,
- STATE(4038), 1,
- sym_type_annotation,
- STATE(5404), 1,
- sym_type_parameters,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(6622), 5,
- sym__automatic_semicolon,
- anon_sym_COMMA,
- anon_sym_RBRACE,
- anon_sym_SEMI,
- anon_sym_PIPE_RBRACE,
- [123712] = 9,
- ACTIONS(2581), 1,
- anon_sym_LT,
- ACTIONS(3205), 1,
- anon_sym_LPAREN,
- ACTIONS(6411), 1,
- anon_sym_COLON,
- STATE(3229), 1,
- sym_formal_parameters,
- STATE(3500), 1,
- sym__call_signature,
- STATE(4311), 1,
- sym_type_annotation,
- STATE(5404), 1,
- sym_type_parameters,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(6624), 5,
- sym__automatic_semicolon,
- anon_sym_COMMA,
- anon_sym_RBRACE,
- anon_sym_SEMI,
- anon_sym_PIPE_RBRACE,
- [123745] = 3,
- ACTIONS(4045), 1,
- anon_sym_PIPE,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(4047), 11,
- sym__automatic_semicolon,
- anon_sym_EQ,
- anon_sym_LBRACE,
- anon_sym_COMMA,
- anon_sym_RBRACE,
- anon_sym_SEMI,
- anon_sym_LBRACK,
- anon_sym_AMP,
- anon_sym_extends,
- anon_sym_is,
- anon_sym_PIPE_RBRACE,
- [123766] = 11,
- ACTIONS(2581), 1,
- anon_sym_LT,
- ACTIONS(3205), 1,
- anon_sym_LPAREN,
- ACTIONS(6403), 1,
- anon_sym_EQ,
- ACTIONS(6411), 1,
- anon_sym_COLON,
- STATE(3229), 1,
- sym_formal_parameters,
- STATE(4306), 1,
- sym_type_annotation,
- STATE(4990), 1,
- sym__call_signature,
- STATE(4991), 1,
- sym__initializer,
- STATE(5404), 1,
- sym_type_parameters,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(6626), 3,
- sym__automatic_semicolon,
- anon_sym_COMMA,
- anon_sym_SEMI,
- [123803] = 3,
- ACTIONS(4458), 1,
- anon_sym_PIPE,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(4460), 11,
- sym__automatic_semicolon,
- anon_sym_EQ,
- anon_sym_LBRACE,
- anon_sym_COMMA,
- anon_sym_RBRACE,
- anon_sym_SEMI,
- anon_sym_LBRACK,
- anon_sym_DOT,
- anon_sym_AMP,
- anon_sym_extends,
- anon_sym_PIPE_RBRACE,
- [123824] = 3,
- ACTIONS(4466), 1,
- anon_sym_PIPE,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(4468), 11,
- sym__automatic_semicolon,
- anon_sym_EQ,
- anon_sym_LBRACE,
- anon_sym_COMMA,
- anon_sym_RBRACE,
- anon_sym_SEMI,
- anon_sym_LBRACK,
- anon_sym_DOT,
- anon_sym_AMP,
- anon_sym_extends,
- anon_sym_PIPE_RBRACE,
- [123845] = 12,
- ACTIONS(1594), 1,
- anon_sym_DQUOTE,
- ACTIONS(1596), 1,
- anon_sym_SQUOTE,
- ACTIONS(6277), 1,
- anon_sym_STAR,
- ACTIONS(6281), 1,
- anon_sym_LBRACE,
- ACTIONS(6395), 1,
- sym_identifier,
- ACTIONS(6397), 1,
- anon_sym_type,
- STATE(4230), 1,
- sym_string,
- STATE(4231), 1,
- sym_import_require_clause,
- STATE(5247), 1,
- sym__import_identifier,
- STATE(5503), 1,
- sym_import_clause,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- STATE(5580), 2,
- sym_namespace_import,
- sym_named_imports,
- [123884] = 11,
- ACTIONS(2581), 1,
- anon_sym_LT,
- ACTIONS(6403), 1,
- anon_sym_EQ,
- ACTIONS(6411), 1,
- anon_sym_COLON,
- ACTIONS(6419), 1,
- anon_sym_LPAREN,
- STATE(3742), 1,
- sym_formal_parameters,
- STATE(4265), 1,
- sym_type_annotation,
- STATE(4914), 1,
- sym__initializer,
- STATE(5242), 1,
- sym__call_signature,
- STATE(5349), 1,
- sym_type_parameters,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(6628), 3,
- sym__automatic_semicolon,
- anon_sym_COMMA,
- anon_sym_SEMI,
- [123921] = 11,
- ACTIONS(2581), 1,
- anon_sym_LT,
- ACTIONS(6403), 1,
- anon_sym_EQ,
- ACTIONS(6411), 1,
- anon_sym_COLON,
- ACTIONS(6419), 1,
- anon_sym_LPAREN,
- STATE(3742), 1,
- sym_formal_parameters,
- STATE(3948), 1,
- sym_type_annotation,
- STATE(4891), 1,
- sym__initializer,
- STATE(5200), 1,
- sym__call_signature,
- STATE(5349), 1,
- sym_type_parameters,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(6630), 3,
- sym__automatic_semicolon,
- anon_sym_COMMA,
- anon_sym_SEMI,
- [123958] = 11,
- ACTIONS(2581), 1,
- anon_sym_LT,
- ACTIONS(6403), 1,
- anon_sym_EQ,
- ACTIONS(6409), 1,
- anon_sym_LPAREN,
- ACTIONS(6411), 1,
- anon_sym_COLON,
- STATE(3320), 1,
- sym_formal_parameters,
- STATE(3743), 1,
- sym__call_signature,
- STATE(4171), 1,
- sym_type_annotation,
- STATE(4739), 1,
- sym__initializer,
- STATE(5342), 1,
- sym_type_parameters,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(6632), 3,
- sym__automatic_semicolon,
- anon_sym_COMMA,
- anon_sym_SEMI,
- [123995] = 9,
- ACTIONS(2581), 1,
- anon_sym_LT,
- ACTIONS(3205), 1,
- anon_sym_LPAREN,
- ACTIONS(6411), 1,
- anon_sym_COLON,
- STATE(3229), 1,
- sym_formal_parameters,
- STATE(3641), 1,
- sym__call_signature,
- STATE(4035), 1,
- sym_type_annotation,
- STATE(5404), 1,
- sym_type_parameters,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(6634), 5,
- sym__automatic_semicolon,
- anon_sym_COMMA,
- anon_sym_RBRACE,
- anon_sym_SEMI,
- anon_sym_PIPE_RBRACE,
- [124028] = 9,
- ACTIONS(2581), 1,
- anon_sym_LT,
- ACTIONS(3205), 1,
- anon_sym_LPAREN,
- ACTIONS(6411), 1,
- anon_sym_COLON,
- STATE(3229), 1,
- sym_formal_parameters,
- STATE(3607), 1,
- sym__call_signature,
- STATE(4216), 1,
- sym_type_annotation,
- STATE(5404), 1,
- sym_type_parameters,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(6636), 5,
- sym__automatic_semicolon,
- anon_sym_COMMA,
- anon_sym_RBRACE,
- anon_sym_SEMI,
- anon_sym_PIPE_RBRACE,
- [124061] = 11,
- ACTIONS(2581), 1,
- anon_sym_LT,
- ACTIONS(6403), 1,
- anon_sym_EQ,
- ACTIONS(6411), 1,
- anon_sym_COLON,
- ACTIONS(6419), 1,
- anon_sym_LPAREN,
- STATE(3742), 1,
- sym_formal_parameters,
- STATE(3970), 1,
- sym_type_annotation,
- STATE(5182), 1,
- sym__initializer,
- STATE(5208), 1,
- sym__call_signature,
- STATE(5349), 1,
- sym_type_parameters,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(6630), 3,
- sym__automatic_semicolon,
- anon_sym_COMMA,
- anon_sym_SEMI,
- [124098] = 11,
- ACTIONS(2581), 1,
- anon_sym_LT,
- ACTIONS(6403), 1,
- anon_sym_EQ,
- ACTIONS(6411), 1,
- anon_sym_COLON,
- ACTIONS(6419), 1,
- anon_sym_LPAREN,
- STATE(3742), 1,
- sym_formal_parameters,
- STATE(3960), 1,
- sym_type_annotation,
- STATE(4784), 1,
- sym__initializer,
- STATE(5349), 1,
- sym_type_parameters,
- STATE(5367), 1,
- sym__call_signature,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(6638), 3,
- sym__automatic_semicolon,
- anon_sym_COMMA,
- anon_sym_SEMI,
- [124135] = 4,
- ACTIONS(4013), 1,
- anon_sym_PIPE,
- ACTIONS(6377), 1,
- anon_sym_is,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(4015), 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,
- [124158] = 3,
- ACTIONS(1652), 1,
- anon_sym_PIPE,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(1650), 11,
- sym__automatic_semicolon,
- anon_sym_EQ,
- anon_sym_LBRACE,
- anon_sym_COMMA,
- anon_sym_RBRACE,
- anon_sym_SEMI,
- anon_sym_LBRACK,
- anon_sym_AMP,
- anon_sym_extends,
- anon_sym_is,
- anon_sym_PIPE_RBRACE,
- [124179] = 11,
- ACTIONS(2581), 1,
- anon_sym_LT,
- ACTIONS(6403), 1,
- anon_sym_EQ,
- ACTIONS(6411), 1,
- anon_sym_COLON,
- ACTIONS(6419), 1,
- anon_sym_LPAREN,
- STATE(3742), 1,
- sym_formal_parameters,
- STATE(4018), 1,
- sym_type_annotation,
- STATE(4783), 1,
- sym__initializer,
- STATE(5349), 1,
- sym_type_parameters,
- STATE(5397), 1,
- sym__call_signature,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(6638), 3,
- sym__automatic_semicolon,
- anon_sym_COMMA,
- anon_sym_SEMI,
- [124216] = 12,
- ACTIONS(5991), 1,
- anon_sym_LT,
- ACTIONS(6252), 1,
- sym_identifier,
- ACTIONS(6256), 1,
- anon_sym_LBRACE,
- ACTIONS(6265), 1,
- sym_jsx_identifier,
- ACTIONS(6640), 1,
- anon_sym_GT,
- ACTIONS(6642), 1,
- anon_sym_DOT,
- ACTIONS(6644), 1,
- anon_sym_SLASH_GT,
- STATE(3378), 1,
- sym_type_arguments,
- STATE(3379), 1,
- aux_sym__jsx_start_opening_element_repeat1,
- STATE(3826), 1,
- sym_jsx_namespace_name,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- STATE(4391), 2,
- sym_jsx_expression,
- sym_jsx_attribute,
- [124255] = 12,
- ACTIONS(5991), 1,
- anon_sym_LT,
- ACTIONS(6252), 1,
- sym_identifier,
- ACTIONS(6256), 1,
- anon_sym_LBRACE,
- ACTIONS(6265), 1,
- sym_jsx_identifier,
- ACTIONS(6640), 1,
- anon_sym_GT,
- ACTIONS(6642), 1,
- anon_sym_DOT,
- ACTIONS(6646), 1,
- anon_sym_SLASH_GT,
- STATE(3386), 1,
- sym_type_arguments,
- STATE(3424), 1,
- aux_sym__jsx_start_opening_element_repeat1,
- STATE(3826), 1,
- sym_jsx_namespace_name,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- STATE(4391), 2,
- sym_jsx_expression,
- sym_jsx_attribute,
- [124294] = 4,
- ACTIONS(4039), 1,
- anon_sym_PIPE,
- ACTIONS(6377), 1,
- anon_sym_is,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(4041), 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,
- [124317] = 11,
- ACTIONS(2581), 1,
- anon_sym_LT,
- ACTIONS(6403), 1,
- anon_sym_EQ,
- ACTIONS(6411), 1,
- anon_sym_COLON,
- ACTIONS(6419), 1,
- anon_sym_LPAREN,
- STATE(3742), 1,
- sym_formal_parameters,
- STATE(4160), 1,
- sym_type_annotation,
- STATE(4706), 1,
- sym__initializer,
- STATE(5245), 1,
- sym__call_signature,
- STATE(5349), 1,
- sym_type_parameters,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(6648), 3,
- sym__automatic_semicolon,
- anon_sym_COMMA,
- anon_sym_SEMI,
- [124354] = 9,
- ACTIONS(2581), 1,
- anon_sym_LT,
- ACTIONS(3205), 1,
- anon_sym_LPAREN,
- ACTIONS(6411), 1,
- anon_sym_COLON,
- STATE(3229), 1,
- sym_formal_parameters,
- STATE(4034), 1,
- sym__call_signature,
- STATE(4035), 1,
- sym_type_annotation,
- STATE(5404), 1,
- sym_type_parameters,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(6634), 5,
- sym__automatic_semicolon,
- anon_sym_COMMA,
- anon_sym_RBRACE,
- anon_sym_SEMI,
- anon_sym_PIPE_RBRACE,
- [124387] = 7,
- ACTIONS(3737), 1,
- anon_sym_COMMA,
- ACTIONS(3838), 1,
- anon_sym_RBRACE,
- ACTIONS(4243), 1,
- anon_sym_EQ,
- STATE(4671), 1,
- aux_sym_object_repeat1,
- STATE(4672), 1,
- aux_sym_object_pattern_repeat1,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(3743), 7,
- sym__automatic_semicolon,
- anon_sym_LPAREN,
- anon_sym_SEMI,
- anon_sym_COLON,
- anon_sym_LT,
- anon_sym_QMARK,
- anon_sym_PIPE_RBRACE,
- [124416] = 11,
- ACTIONS(2581), 1,
- anon_sym_LT,
- ACTIONS(6403), 1,
- anon_sym_EQ,
- ACTIONS(6411), 1,
- anon_sym_COLON,
- ACTIONS(6419), 1,
- anon_sym_LPAREN,
- STATE(3742), 1,
- sym_formal_parameters,
- STATE(4167), 1,
- sym_type_annotation,
- STATE(4722), 1,
- sym__initializer,
- STATE(5287), 1,
- sym__call_signature,
- STATE(5349), 1,
- sym_type_parameters,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(6648), 3,
- sym__automatic_semicolon,
- anon_sym_COMMA,
- anon_sym_SEMI,
- [124453] = 11,
- ACTIONS(2581), 1,
- anon_sym_LT,
- ACTIONS(6403), 1,
- anon_sym_EQ,
- ACTIONS(6411), 1,
- anon_sym_COLON,
- ACTIONS(6419), 1,
- anon_sym_LPAREN,
- STATE(3742), 1,
- sym_formal_parameters,
- STATE(4371), 1,
- sym_type_annotation,
- STATE(5088), 1,
- sym__initializer,
- STATE(5349), 1,
- sym_type_parameters,
- STATE(5428), 1,
- sym__call_signature,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(6638), 3,
- sym__automatic_semicolon,
- anon_sym_COMMA,
- anon_sym_SEMI,
- [124490] = 11,
- ACTIONS(2581), 1,
- anon_sym_LT,
- ACTIONS(6403), 1,
- anon_sym_EQ,
- ACTIONS(6409), 1,
- anon_sym_LPAREN,
- ACTIONS(6411), 1,
- anon_sym_COLON,
- STATE(3320), 1,
- sym_formal_parameters,
- STATE(3901), 1,
- sym__call_signature,
- STATE(4197), 1,
- sym_type_annotation,
- STATE(4649), 1,
- sym__initializer,
- STATE(5342), 1,
- sym_type_parameters,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(6650), 3,
- sym__automatic_semicolon,
- anon_sym_COMMA,
- anon_sym_SEMI,
- [124527] = 12,
- ACTIONS(5991), 1,
- anon_sym_LT,
- ACTIONS(6252), 1,
- sym_identifier,
- ACTIONS(6256), 1,
- anon_sym_LBRACE,
- ACTIONS(6265), 1,
- sym_jsx_identifier,
- ACTIONS(6640), 1,
- anon_sym_GT,
- ACTIONS(6642), 1,
- anon_sym_DOT,
- ACTIONS(6652), 1,
- anon_sym_SLASH_GT,
- STATE(3406), 1,
- sym_type_arguments,
- STATE(3418), 1,
- aux_sym__jsx_start_opening_element_repeat1,
- STATE(3826), 1,
- sym_jsx_namespace_name,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- STATE(4391), 2,
- sym_jsx_expression,
- sym_jsx_attribute,
- [124566] = 2,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(1821), 12,
- anon_sym_as,
- anon_sym_COMMA,
- anon_sym_RBRACE,
- anon_sym_LPAREN,
- anon_sym_COLON,
- anon_sym_LBRACK,
- anon_sym_RBRACK,
- anon_sym_AMP,
- anon_sym_PIPE,
- anon_sym_LT,
- anon_sym_QMARK,
- anon_sym_extends,
- [124585] = 9,
- ACTIONS(2581), 1,
- anon_sym_LT,
- ACTIONS(3205), 1,
- anon_sym_LPAREN,
- ACTIONS(6411), 1,
- anon_sym_COLON,
- STATE(3229), 1,
- sym_formal_parameters,
- STATE(3574), 1,
- sym__call_signature,
- STATE(4365), 1,
- sym_type_annotation,
- STATE(5404), 1,
- sym_type_parameters,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(6654), 5,
- sym__automatic_semicolon,
- anon_sym_COMMA,
- anon_sym_RBRACE,
- anon_sym_SEMI,
- anon_sym_PIPE_RBRACE,
- [124618] = 11,
- ACTIONS(2581), 1,
- anon_sym_LT,
- ACTIONS(6403), 1,
- anon_sym_EQ,
- ACTIONS(6409), 1,
- anon_sym_LPAREN,
- ACTIONS(6411), 1,
- anon_sym_COLON,
- STATE(3320), 1,
- sym_formal_parameters,
- STATE(3759), 1,
- sym__call_signature,
- STATE(4083), 1,
- sym_type_annotation,
- STATE(5061), 1,
- sym__initializer,
- STATE(5342), 1,
- sym_type_parameters,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(6656), 3,
- sym__automatic_semicolon,
- anon_sym_COMMA,
- anon_sym_SEMI,
- [124655] = 4,
- ACTIONS(4025), 1,
- anon_sym_PIPE,
- ACTIONS(6658), 1,
- anon_sym_is,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(4027), 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,
- [124678] = 4,
- ACTIONS(4336), 1,
- anon_sym_PIPE,
- ACTIONS(6660), 1,
- anon_sym_DOT,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(4338), 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,
- [124701] = 11,
- ACTIONS(2581), 1,
- anon_sym_LT,
- ACTIONS(6403), 1,
- anon_sym_EQ,
- ACTIONS(6409), 1,
- anon_sym_LPAREN,
- ACTIONS(6411), 1,
- anon_sym_COLON,
- STATE(3320), 1,
- sym_formal_parameters,
- STATE(3777), 1,
- sym__call_signature,
- STATE(4277), 1,
- sym_type_annotation,
- STATE(4970), 1,
- sym__initializer,
- STATE(5342), 1,
- sym_type_parameters,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(6662), 3,
- sym__automatic_semicolon,
- anon_sym_COMMA,
- anon_sym_SEMI,
- [124738] = 11,
- ACTIONS(2581), 1,
- anon_sym_LT,
- ACTIONS(6403), 1,
- anon_sym_EQ,
- ACTIONS(6411), 1,
- anon_sym_COLON,
- ACTIONS(6419), 1,
- anon_sym_LPAREN,
- STATE(3742), 1,
- sym_formal_parameters,
- STATE(4209), 1,
- sym_type_annotation,
- STATE(4808), 1,
- sym__initializer,
- STATE(5349), 1,
- sym_type_parameters,
- STATE(5452), 1,
- sym__call_signature,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(6648), 3,
- sym__automatic_semicolon,
- anon_sym_COMMA,
- anon_sym_SEMI,
- [124775] = 11,
- ACTIONS(2581), 1,
- anon_sym_LT,
- ACTIONS(6403), 1,
- anon_sym_EQ,
- ACTIONS(6411), 1,
- anon_sym_COLON,
- ACTIONS(6419), 1,
- anon_sym_LPAREN,
- STATE(3742), 1,
- sym_formal_parameters,
- STATE(4328), 1,
- sym_type_annotation,
- STATE(5031), 1,
- sym__initializer,
- STATE(5337), 1,
- sym__call_signature,
- STATE(5349), 1,
- sym_type_parameters,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(6664), 3,
- sym__automatic_semicolon,
- anon_sym_COMMA,
- anon_sym_SEMI,
- [124812] = 11,
- ACTIONS(2581), 1,
- anon_sym_LT,
- ACTIONS(6403), 1,
- anon_sym_EQ,
- ACTIONS(6409), 1,
- anon_sym_LPAREN,
- ACTIONS(6411), 1,
- anon_sym_COLON,
- STATE(3320), 1,
- sym_formal_parameters,
- STATE(3807), 1,
- sym__call_signature,
- STATE(4306), 1,
- sym_type_annotation,
- STATE(4975), 1,
- sym__initializer,
- STATE(5342), 1,
- sym_type_parameters,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(6626), 3,
- sym__automatic_semicolon,
- anon_sym_COMMA,
- anon_sym_SEMI,
- [124849] = 11,
- ACTIONS(2581), 1,
- anon_sym_LT,
- ACTIONS(6403), 1,
- anon_sym_EQ,
- ACTIONS(6411), 1,
- anon_sym_COLON,
- ACTIONS(6419), 1,
- anon_sym_LPAREN,
- STATE(3742), 1,
- sym_formal_parameters,
- STATE(3938), 1,
- sym_type_annotation,
- STATE(5100), 1,
- sym__initializer,
- STATE(5349), 1,
- sym_type_parameters,
- STATE(5423), 1,
- sym__call_signature,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(6638), 3,
- sym__automatic_semicolon,
- anon_sym_COMMA,
- anon_sym_SEMI,
- [124886] = 9,
- ACTIONS(2581), 1,
- anon_sym_LT,
- ACTIONS(3205), 1,
- anon_sym_LPAREN,
- ACTIONS(6411), 1,
- anon_sym_COLON,
- STATE(3229), 1,
- sym_formal_parameters,
- STATE(4310), 1,
- sym__call_signature,
- STATE(4311), 1,
- sym_type_annotation,
- STATE(5404), 1,
- sym_type_parameters,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(6624), 5,
- sym__automatic_semicolon,
- anon_sym_COMMA,
- anon_sym_RBRACE,
- anon_sym_SEMI,
- anon_sym_PIPE_RBRACE,
- [124919] = 11,
- ACTIONS(2581), 1,
- anon_sym_LT,
- ACTIONS(6403), 1,
- anon_sym_EQ,
- ACTIONS(6411), 1,
- anon_sym_COLON,
- ACTIONS(6419), 1,
- anon_sym_LPAREN,
- STATE(3742), 1,
- sym_formal_parameters,
- STATE(4091), 1,
- sym_type_annotation,
- STATE(5097), 1,
- sym__initializer,
- STATE(5349), 1,
- sym_type_parameters,
- STATE(5420), 1,
- sym__call_signature,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(6648), 3,
- sym__automatic_semicolon,
- anon_sym_COMMA,
- anon_sym_SEMI,
- [124956] = 7,
- ACTIONS(3737), 1,
- anon_sym_COMMA,
- ACTIONS(3824), 1,
- anon_sym_RBRACE,
- ACTIONS(4243), 1,
- anon_sym_EQ,
- STATE(4672), 1,
- aux_sym_object_pattern_repeat1,
- STATE(5156), 1,
- aux_sym_object_repeat1,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(3743), 7,
- sym__automatic_semicolon,
- anon_sym_LPAREN,
- anon_sym_SEMI,
- anon_sym_COLON,
- anon_sym_LT,
- anon_sym_QMARK,
- anon_sym_PIPE_RBRACE,
- [124985] = 2,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(1917), 12,
- anon_sym_as,
- anon_sym_COMMA,
- anon_sym_RBRACE,
- anon_sym_LPAREN,
- anon_sym_COLON,
- anon_sym_LBRACK,
- anon_sym_RBRACK,
- anon_sym_AMP,
- anon_sym_PIPE,
- anon_sym_LT,
- anon_sym_QMARK,
- anon_sym_extends,
- [125004] = 11,
- ACTIONS(2581), 1,
- anon_sym_LT,
- ACTIONS(3205), 1,
- anon_sym_LPAREN,
- ACTIONS(6403), 1,
- anon_sym_EQ,
- ACTIONS(6411), 1,
- anon_sym_COLON,
- STATE(3229), 1,
- sym_formal_parameters,
- STATE(4197), 1,
- sym_type_annotation,
- STATE(5178), 1,
- sym__call_signature,
- STATE(5179), 1,
- sym__initializer,
- STATE(5404), 1,
- sym_type_parameters,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(6650), 3,
- sym__automatic_semicolon,
- anon_sym_COMMA,
- anon_sym_SEMI,
- [125041] = 7,
- ACTIONS(3737), 1,
- anon_sym_COMMA,
- ACTIONS(3740), 1,
- anon_sym_RBRACE,
- ACTIONS(4243), 1,
- anon_sym_EQ,
- STATE(4672), 1,
- aux_sym_object_pattern_repeat1,
- STATE(5156), 1,
- aux_sym_object_repeat1,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(3743), 7,
- sym__automatic_semicolon,
- anon_sym_LPAREN,
- anon_sym_SEMI,
- anon_sym_COLON,
- anon_sym_LT,
- anon_sym_QMARK,
- anon_sym_PIPE_RBRACE,
- [125070] = 11,
- ACTIONS(2581), 1,
- anon_sym_LT,
- ACTIONS(6403), 1,
- anon_sym_EQ,
- ACTIONS(6411), 1,
- anon_sym_COLON,
- ACTIONS(6419), 1,
- anon_sym_LPAREN,
- STATE(3742), 1,
- sym_formal_parameters,
- STATE(4057), 1,
- sym_type_annotation,
- STATE(4928), 1,
- sym__initializer,
- STATE(5225), 1,
- sym__call_signature,
- STATE(5349), 1,
- sym_type_parameters,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(6630), 3,
- sym__automatic_semicolon,
- anon_sym_COMMA,
- anon_sym_SEMI,
- [125107] = 8,
- ACTIONS(3440), 1,
- anon_sym_DOT,
- ACTIONS(3442), 1,
- anon_sym_QMARK_DOT,
- ACTIONS(6246), 1,
- anon_sym_LT,
- ACTIONS(6666), 1,
- anon_sym_LPAREN,
- STATE(2829), 1,
- sym_arguments,
- STATE(2852), 1,
- sym_type_arguments,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(3406), 6,
- anon_sym_as,
- anon_sym_LBRACK,
- anon_sym_RBRACK,
- anon_sym_AMP,
- anon_sym_PIPE,
- anon_sym_extends,
- [125138] = 8,
- ACTIONS(6242), 1,
- anon_sym_DOT,
- ACTIONS(6244), 1,
- anon_sym_QMARK_DOT,
- ACTIONS(6246), 1,
- anon_sym_LT,
- ACTIONS(6666), 1,
- anon_sym_LPAREN,
- STATE(2841), 1,
- sym_arguments,
- STATE(2865), 1,
- sym_type_arguments,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(3981), 6,
- anon_sym_as,
- anon_sym_LBRACK,
- anon_sym_RBRACK,
- anon_sym_AMP,
- anon_sym_PIPE,
- anon_sym_extends,
- [125169] = 11,
- ACTIONS(2581), 1,
- anon_sym_LT,
- ACTIONS(6403), 1,
- anon_sym_EQ,
- ACTIONS(6411), 1,
- anon_sym_COLON,
- ACTIONS(6419), 1,
- anon_sym_LPAREN,
- STATE(3742), 1,
- sym_formal_parameters,
- STATE(4022), 1,
- sym_type_annotation,
- STATE(4797), 1,
- sym__initializer,
- STATE(5349), 1,
- sym_type_parameters,
- STATE(5425), 1,
- sym__call_signature,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(6638), 3,
- sym__automatic_semicolon,
- anon_sym_COMMA,
- anon_sym_SEMI,
- [125206] = 9,
- ACTIONS(2581), 1,
- anon_sym_LT,
- ACTIONS(3205), 1,
- anon_sym_LPAREN,
- ACTIONS(6411), 1,
- anon_sym_COLON,
- STATE(3229), 1,
- sym_formal_parameters,
- STATE(4215), 1,
- sym__call_signature,
- STATE(4216), 1,
- sym_type_annotation,
- STATE(5404), 1,
- sym_type_parameters,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(6636), 5,
- sym__automatic_semicolon,
- anon_sym_COMMA,
- anon_sym_RBRACE,
- anon_sym_SEMI,
- anon_sym_PIPE_RBRACE,
- [125239] = 11,
- ACTIONS(2581), 1,
- anon_sym_LT,
- ACTIONS(6403), 1,
- anon_sym_EQ,
- ACTIONS(6411), 1,
- anon_sym_COLON,
- ACTIONS(6419), 1,
- anon_sym_LPAREN,
- STATE(3742), 1,
- sym_formal_parameters,
- STATE(4362), 1,
- sym_type_annotation,
- STATE(5079), 1,
- sym__initializer,
- STATE(5349), 1,
- sym_type_parameters,
- STATE(5391), 1,
- sym__call_signature,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(6630), 3,
- sym__automatic_semicolon,
- anon_sym_COMMA,
- anon_sym_SEMI,
- [125276] = 8,
- ACTIONS(6246), 1,
- anon_sym_LT,
- ACTIONS(6248), 1,
- anon_sym_DOT,
- ACTIONS(6250), 1,
- anon_sym_QMARK_DOT,
- ACTIONS(6666), 1,
- anon_sym_LPAREN,
- STATE(2843), 1,
- sym_arguments,
- STATE(2866), 1,
- sym_type_arguments,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(3987), 6,
- anon_sym_as,
- anon_sym_LBRACK,
- anon_sym_RBRACK,
- anon_sym_AMP,
- anon_sym_PIPE,
- anon_sym_extends,
- [125307] = 9,
- ACTIONS(2581), 1,
- anon_sym_LT,
- ACTIONS(3205), 1,
- anon_sym_LPAREN,
- ACTIONS(6411), 1,
- anon_sym_COLON,
- STATE(3229), 1,
- sym_formal_parameters,
- STATE(4364), 1,
- sym__call_signature,
- STATE(4365), 1,
- sym_type_annotation,
- STATE(5404), 1,
- sym_type_parameters,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(6654), 5,
- sym__automatic_semicolon,
- anon_sym_COMMA,
- anon_sym_RBRACE,
- anon_sym_SEMI,
- anon_sym_PIPE_RBRACE,
- [125340] = 7,
- ACTIONS(3737), 1,
- anon_sym_COMMA,
- ACTIONS(3817), 1,
- anon_sym_RBRACE,
- ACTIONS(4243), 1,
- anon_sym_EQ,
- STATE(4672), 1,
- aux_sym_object_pattern_repeat1,
- STATE(5156), 1,
- aux_sym_object_repeat1,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(3743), 7,
- sym__automatic_semicolon,
- anon_sym_LPAREN,
- anon_sym_SEMI,
- anon_sym_COLON,
- anon_sym_LT,
- anon_sym_QMARK,
- anon_sym_PIPE_RBRACE,
- [125369] = 9,
- ACTIONS(3), 1,
- sym_comment,
- ACTIONS(5), 1,
- sym_html_comment,
- ACTIONS(6668), 1,
- anon_sym_LBRACE,
- ACTIONS(6674), 1,
- sym_html_character_reference,
- ACTIONS(6677), 1,
- anon_sym_LT_SLASH,
- ACTIONS(6679), 1,
- anon_sym_LT,
- STATE(3070), 1,
- sym_jsx_opening_element,
- ACTIONS(6671), 2,
- aux_sym_jsx_text_token1,
- aux_sym_jsx_text_token2,
- STATE(3134), 5,
- sym_jsx_element,
- sym_jsx_text,
- sym_jsx_expression,
- sym_jsx_self_closing_element,
- aux_sym_jsx_element_repeat1,
- [125402] = 11,
- ACTIONS(2581), 1,
- anon_sym_LT,
- ACTIONS(6403), 1,
- anon_sym_EQ,
- ACTIONS(6411), 1,
- anon_sym_COLON,
- ACTIONS(6419), 1,
- anon_sym_LPAREN,
- STATE(3742), 1,
- sym_formal_parameters,
- STATE(4359), 1,
- sym_type_annotation,
- STATE(5067), 1,
- sym__initializer,
- STATE(5349), 1,
- sym_type_parameters,
- STATE(5406), 1,
- sym__call_signature,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(6638), 3,
- sym__automatic_semicolon,
- anon_sym_COMMA,
- anon_sym_SEMI,
- [125439] = 7,
- ACTIONS(3737), 1,
- anon_sym_COMMA,
- ACTIONS(3829), 1,
- anon_sym_RBRACE,
- ACTIONS(4243), 1,
- anon_sym_EQ,
- STATE(4672), 1,
- aux_sym_object_pattern_repeat1,
- STATE(5156), 1,
- aux_sym_object_repeat1,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(3743), 7,
- sym__automatic_semicolon,
- anon_sym_LPAREN,
- anon_sym_SEMI,
- anon_sym_COLON,
- anon_sym_LT,
- anon_sym_QMARK,
- anon_sym_PIPE_RBRACE,
- [125468] = 12,
- ACTIONS(5991), 1,
- anon_sym_LT,
- ACTIONS(6252), 1,
- sym_identifier,
- ACTIONS(6256), 1,
- anon_sym_LBRACE,
- ACTIONS(6265), 1,
- sym_jsx_identifier,
- ACTIONS(6640), 1,
- anon_sym_GT,
- ACTIONS(6642), 1,
- anon_sym_DOT,
- ACTIONS(6682), 1,
- anon_sym_SLASH_GT,
- STATE(3286), 1,
- sym_type_arguments,
- STATE(3287), 1,
- aux_sym__jsx_start_opening_element_repeat1,
- STATE(3826), 1,
- sym_jsx_namespace_name,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- STATE(4391), 2,
- sym_jsx_expression,
- sym_jsx_attribute,
- [125507] = 5,
- ACTIONS(6311), 1,
- anon_sym_LPAREN,
- ACTIONS(6684), 1,
- anon_sym_DOT,
- STATE(3241), 1,
- sym_arguments,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(4021), 9,
- sym__automatic_semicolon,
- sym__function_signature_automatic_semicolon,
- anon_sym_LBRACE,
- anon_sym_COMMA,
- anon_sym_SEMI,
- anon_sym_LBRACK,
- anon_sym_AMP,
- anon_sym_PIPE,
- anon_sym_extends,
- [125532] = 9,
- ACTIONS(2581), 1,
- anon_sym_LT,
- ACTIONS(3205), 1,
- anon_sym_LPAREN,
- ACTIONS(6411), 1,
- anon_sym_COLON,
- STATE(3229), 1,
- sym_formal_parameters,
- STATE(3682), 1,
- sym__call_signature,
- STATE(4038), 1,
- sym_type_annotation,
- STATE(5404), 1,
- sym_type_parameters,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(6622), 5,
- sym__automatic_semicolon,
- anon_sym_COMMA,
- anon_sym_RBRACE,
- anon_sym_SEMI,
- anon_sym_PIPE_RBRACE,
- [125565] = 8,
- ACTIONS(2581), 1,
- anon_sym_LT,
- ACTIONS(3205), 1,
- anon_sym_LPAREN,
- ACTIONS(4243), 1,
- anon_sym_EQ,
- STATE(3575), 1,
- sym_formal_parameters,
- STATE(5374), 1,
- sym_type_parameters,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(3959), 2,
- anon_sym_COMMA,
- anon_sym_RBRACE,
- ACTIONS(3743), 5,
- sym__automatic_semicolon,
- anon_sym_SEMI,
- anon_sym_COLON,
- anon_sym_QMARK,
- anon_sym_PIPE_RBRACE,
- [125596] = 5,
- ACTIONS(6317), 1,
- anon_sym_LT,
- ACTIONS(6560), 1,
- anon_sym_DOT,
- STATE(3300), 1,
- sym_type_arguments,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(3461), 9,
- sym__automatic_semicolon,
- sym__function_signature_automatic_semicolon,
- anon_sym_LBRACE,
- anon_sym_COMMA,
- anon_sym_SEMI,
- anon_sym_LBRACK,
- anon_sym_AMP,
- anon_sym_PIPE,
- anon_sym_extends,
- [125621] = 8,
- ACTIONS(3477), 1,
- anon_sym_COLON,
- ACTIONS(6246), 1,
- anon_sym_LT,
- ACTIONS(6287), 1,
- anon_sym_DOT,
- ACTIONS(6686), 1,
- anon_sym_QMARK,
- STATE(2856), 1,
- sym_type_arguments,
- STATE(5509), 1,
- sym_type_annotation,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(3461), 6,
- anon_sym_COMMA,
- anon_sym_LBRACK,
- anon_sym_RBRACK,
- anon_sym_AMP,
- anon_sym_PIPE,
- anon_sym_extends,
- [125652] = 3,
- ACTIONS(4138), 1,
- anon_sym_PIPE,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(4140), 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,
- [125672] = 2,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(4116), 11,
- sym__automatic_semicolon,
- sym__function_signature_automatic_semicolon,
- anon_sym_LBRACE,
- anon_sym_COMMA,
- anon_sym_LPAREN,
- anon_sym_SEMI,
- anon_sym_LBRACK,
- anon_sym_DOT,
- anon_sym_AMP,
- anon_sym_PIPE,
- anon_sym_extends,
- [125690] = 3,
- ACTIONS(1797), 1,
- anon_sym_DOT,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(4099), 10,
- sym__automatic_semicolon,
- sym__function_signature_automatic_semicolon,
- anon_sym_LBRACE,
- anon_sym_COMMA,
- anon_sym_SEMI,
- anon_sym_LBRACK,
- anon_sym_AMP,
- anon_sym_PIPE,
- anon_sym_LT,
- anon_sym_extends,
- [125710] = 4,
- ACTIONS(4434), 1,
- anon_sym_PIPE,
- ACTIONS(6689), 1,
- anon_sym_LBRACK,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(4436), 9,
- sym__automatic_semicolon,
- anon_sym_EQ,
- anon_sym_LBRACE,
- anon_sym_COMMA,
- anon_sym_RBRACE,
- anon_sym_SEMI,
- anon_sym_AMP,
- anon_sym_extends,
- anon_sym_PIPE_RBRACE,
- [125732] = 2,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(4120), 11,
- sym__automatic_semicolon,
- sym__function_signature_automatic_semicolon,
- anon_sym_LBRACE,
- anon_sym_COMMA,
- anon_sym_LPAREN,
- anon_sym_SEMI,
- anon_sym_LBRACK,
- anon_sym_DOT,
- anon_sym_AMP,
- anon_sym_PIPE,
- anon_sym_extends,
- [125750] = 2,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(4124), 11,
- sym__automatic_semicolon,
- sym__function_signature_automatic_semicolon,
- anon_sym_LBRACE,
- anon_sym_COMMA,
- anon_sym_LPAREN,
- anon_sym_SEMI,
- anon_sym_LBRACK,
- anon_sym_DOT,
- anon_sym_AMP,
- anon_sym_PIPE,
- anon_sym_extends,
- [125768] = 3,
- ACTIONS(4324), 1,
- anon_sym_PIPE,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(4326), 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,
- [125788] = 4,
- ACTIONS(4342), 1,
- anon_sym_PIPE,
- ACTIONS(6689), 1,
- anon_sym_LBRACK,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(4344), 9,
- sym__automatic_semicolon,
- anon_sym_EQ,
- anon_sym_LBRACE,
- anon_sym_COMMA,
- anon_sym_RBRACE,
- anon_sym_SEMI,
- anon_sym_AMP,
- anon_sym_extends,
- anon_sym_PIPE_RBRACE,
- [125810] = 2,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(4128), 11,
- sym__automatic_semicolon,
- sym__function_signature_automatic_semicolon,
- anon_sym_LBRACE,
- anon_sym_COMMA,
- anon_sym_LPAREN,
- anon_sym_SEMI,
- anon_sym_LBRACK,
- anon_sym_DOT,
- anon_sym_AMP,
- anon_sym_PIPE,
- anon_sym_extends,
- [125828] = 5,
- ACTIONS(6691), 1,
- anon_sym_AMP,
- ACTIONS(6693), 1,
- anon_sym_PIPE,
- ACTIONS(6695), 1,
- anon_sym_extends,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(4106), 8,
- sym__automatic_semicolon,
- anon_sym_EQ,
- anon_sym_LBRACE,
- anon_sym_COMMA,
- anon_sym_RBRACE,
- anon_sym_SEMI,
- anon_sym_LBRACK,
- anon_sym_PIPE_RBRACE,
- [125852] = 2,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(3129), 11,
- sym__automatic_semicolon,
- sym__function_signature_automatic_semicolon,
- anon_sym_LBRACE,
- anon_sym_COMMA,
- anon_sym_SEMI,
- anon_sym_LBRACK,
- anon_sym_DOT,
- anon_sym_QMARK_DOT,
- anon_sym_AMP,
- anon_sym_PIPE,
- anon_sym_extends,
- [125870] = 3,
- ACTIONS(4366), 1,
- anon_sym_PIPE,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(4368), 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,
- [125890] = 3,
- ACTIONS(4384), 1,
- anon_sym_PIPE,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(4386), 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,
- [125910] = 4,
- ACTIONS(6697), 1,
- anon_sym_DOT,
- ACTIONS(6699), 1,
- anon_sym_QMARK_DOT,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(4380), 9,
- sym__automatic_semicolon,
- sym__function_signature_automatic_semicolon,
- anon_sym_LBRACE,
- anon_sym_COMMA,
- anon_sym_SEMI,
- anon_sym_LBRACK,
- anon_sym_AMP,
- anon_sym_PIPE,
- anon_sym_extends,
- [125932] = 3,
- ACTIONS(1855), 1,
- anon_sym_DOT,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(4099), 10,
- sym__automatic_semicolon,
- sym__function_signature_automatic_semicolon,
- anon_sym_LBRACE,
- anon_sym_COMMA,
- anon_sym_SEMI,
- anon_sym_LBRACK,
- anon_sym_AMP,
- anon_sym_PIPE,
- anon_sym_LT,
- anon_sym_extends,
- [125952] = 3,
- ACTIONS(4500), 1,
- anon_sym_PIPE,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(4502), 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,
- [125972] = 3,
- ACTIONS(4039), 1,
- anon_sym_PIPE,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(4041), 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,
- [125992] = 3,
- ACTIONS(4328), 1,
- anon_sym_PIPE,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(4330), 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,
- [126012] = 3,
- ACTIONS(4013), 1,
- anon_sym_PIPE,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(4015), 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,
- [126032] = 6,
- ACTIONS(2581), 1,
- anon_sym_LT,
- ACTIONS(3205), 1,
- anon_sym_LPAREN,
- STATE(3575), 1,
- sym_formal_parameters,
- STATE(5374), 1,
- sym_type_parameters,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(3743), 7,
- sym__automatic_semicolon,
- anon_sym_COMMA,
- anon_sym_RBRACE,
- anon_sym_SEMI,
- anon_sym_COLON,
- anon_sym_QMARK,
- anon_sym_PIPE_RBRACE,
- [126058] = 3,
- ACTIONS(4504), 1,
- anon_sym_PIPE,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(4506), 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,
- [126078] = 3,
- ACTIONS(4390), 1,
- anon_sym_PIPE,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(4392), 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,
- [126098] = 3,
- ACTIONS(4394), 1,
- anon_sym_PIPE,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(4396), 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,
- [126118] = 3,
- ACTIONS(2333), 1,
- anon_sym_PIPE,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(2331), 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,
- [126138] = 11,
- ACTIONS(2275), 1,
- anon_sym_DQUOTE,
- ACTIONS(2277), 1,
- anon_sym_SQUOTE,
- ACTIONS(6701), 1,
- sym_identifier,
- ACTIONS(6703), 1,
- anon_sym_type,
- ACTIONS(6705), 1,
- anon_sym_COMMA,
- ACTIONS(6707), 1,
- anon_sym_RBRACE,
- ACTIONS(6709), 1,
- anon_sym_typeof,
- STATE(4858), 1,
- sym_import_specifier,
- STATE(5188), 1,
- sym__import_identifier,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- STATE(5579), 2,
- sym__module_export_name,
- sym_string,
- [126174] = 5,
- ACTIONS(6691), 1,
- anon_sym_AMP,
- ACTIONS(6693), 1,
- anon_sym_PIPE,
- ACTIONS(6695), 1,
- anon_sym_extends,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(4362), 8,
- sym__automatic_semicolon,
- anon_sym_EQ,
- anon_sym_LBRACE,
- anon_sym_COMMA,
- anon_sym_RBRACE,
- anon_sym_SEMI,
- anon_sym_LBRACK,
- anon_sym_PIPE_RBRACE,
- [126198] = 3,
- ACTIONS(4181), 1,
- anon_sym_PIPE,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(4183), 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,
- [126218] = 3,
- ACTIONS(4185), 1,
- anon_sym_PIPE,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(4187), 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,
- [126238] = 3,
- ACTIONS(4130), 1,
- anon_sym_PIPE,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(4132), 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,
- [126258] = 5,
- ACTIONS(6691), 1,
- anon_sym_AMP,
- ACTIONS(6693), 1,
- anon_sym_PIPE,
- ACTIONS(6695), 1,
- anon_sym_extends,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(4197), 8,
- sym__automatic_semicolon,
- anon_sym_EQ,
- anon_sym_LBRACE,
- anon_sym_COMMA,
- anon_sym_RBRACE,
- anon_sym_SEMI,
- anon_sym_LBRACK,
- anon_sym_PIPE_RBRACE,
- [126282] = 3,
- ACTIONS(4206), 1,
- anon_sym_PIPE,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(4208), 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,
- [126302] = 3,
- ACTIONS(4212), 1,
- anon_sym_PIPE,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(4214), 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,
- [126322] = 5,
- ACTIONS(6691), 1,
- anon_sym_AMP,
- ACTIONS(6693), 1,
- anon_sym_PIPE,
- ACTIONS(6695), 1,
- anon_sym_extends,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(4214), 8,
- sym__automatic_semicolon,
- anon_sym_EQ,
- anon_sym_LBRACE,
- anon_sym_COMMA,
- anon_sym_RBRACE,
- anon_sym_SEMI,
- anon_sym_LBRACK,
- anon_sym_PIPE_RBRACE,
- [126346] = 4,
- ACTIONS(4134), 1,
- anon_sym_PIPE,
- ACTIONS(6691), 1,
- anon_sym_AMP,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(4136), 9,
- sym__automatic_semicolon,
- anon_sym_EQ,
- anon_sym_LBRACE,
- anon_sym_COMMA,
- anon_sym_RBRACE,
- anon_sym_SEMI,
- anon_sym_LBRACK,
- anon_sym_extends,
- anon_sym_PIPE_RBRACE,
- [126368] = 4,
- ACTIONS(4398), 1,
- anon_sym_PIPE,
- ACTIONS(6691), 1,
- anon_sym_AMP,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(4400), 9,
- sym__automatic_semicolon,
- anon_sym_EQ,
- anon_sym_LBRACE,
- anon_sym_COMMA,
- anon_sym_RBRACE,
- anon_sym_SEMI,
- anon_sym_LBRACK,
- anon_sym_extends,
- anon_sym_PIPE_RBRACE,
- [126390] = 2,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(3446), 11,
- sym__automatic_semicolon,
- sym__function_signature_automatic_semicolon,
- anon_sym_LBRACE,
- anon_sym_COMMA,
- anon_sym_LPAREN,
- anon_sym_SEMI,
- anon_sym_LBRACK,
- anon_sym_DOT,
- anon_sym_AMP,
- anon_sym_PIPE,
- anon_sym_extends,
- [126408] = 2,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(3382), 11,
- sym__automatic_semicolon,
- sym__function_signature_automatic_semicolon,
- anon_sym_LBRACE,
- anon_sym_COMMA,
- anon_sym_LPAREN,
- anon_sym_SEMI,
- anon_sym_LBRACK,
- anon_sym_DOT,
- anon_sym_AMP,
- anon_sym_PIPE,
- anon_sym_extends,
- [126426] = 3,
- ACTIONS(4462), 1,
- anon_sym_PIPE,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(4464), 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,
- [126446] = 2,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(5477), 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,
- [126464] = 2,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(3125), 11,
- sym__automatic_semicolon,
- sym__function_signature_automatic_semicolon,
- anon_sym_LBRACE,
- anon_sym_COMMA,
- anon_sym_SEMI,
- anon_sym_LBRACK,
- anon_sym_DOT,
- anon_sym_QMARK_DOT,
- anon_sym_AMP,
- anon_sym_PIPE,
- anon_sym_extends,
- [126482] = 2,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(3743), 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,
- [126500] = 6,
- ACTIONS(6246), 1,
- anon_sym_LT,
- ACTIONS(6287), 1,
- anon_sym_DOT,
- ACTIONS(6711), 1,
- anon_sym_is,
- STATE(2856), 1,
- sym_type_arguments,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(3461), 7,
- anon_sym_COMMA,
- anon_sym_LBRACK,
- anon_sym_RBRACK,
- anon_sym_AMP,
- anon_sym_PIPE,
- anon_sym_QMARK,
- anon_sym_extends,
- [126526] = 2,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(4456), 11,
- sym__automatic_semicolon,
- sym__function_signature_automatic_semicolon,
- anon_sym_LBRACE,
- anon_sym_COMMA,
- anon_sym_SEMI,
- anon_sym_LBRACK,
- anon_sym_DOT,
- anon_sym_QMARK_DOT,
- anon_sym_AMP,
- anon_sym_PIPE,
- anon_sym_extends,
- [126544] = 3,
- ACTIONS(2337), 1,
- anon_sym_PIPE,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(2335), 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,
- [126564] = 3,
- ACTIONS(4402), 1,
- anon_sym_PIPE,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(4404), 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,
- [126584] = 3,
- ACTIONS(4406), 1,
- anon_sym_PIPE,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(4408), 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,
- [126604] = 3,
- ACTIONS(4476), 1,
- anon_sym_PIPE,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(4478), 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,
- [126624] = 3,
- ACTIONS(4259), 1,
- anon_sym_PIPE,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(4261), 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,
- [126644] = 3,
- ACTIONS(4263), 1,
- anon_sym_PIPE,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(4265), 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,
- [126664] = 3,
- ACTIONS(4271), 1,
- anon_sym_PIPE,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(4273), 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,
- [126684] = 3,
- ACTIONS(2329), 1,
- anon_sym_PIPE,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(2327), 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,
- [126704] = 3,
- ACTIONS(4410), 1,
- anon_sym_PIPE,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(4412), 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,
- [126724] = 3,
- ACTIONS(4025), 1,
- anon_sym_PIPE,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(4027), 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,
- [126744] = 3,
- ACTIONS(4484), 1,
- anon_sym_PIPE,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(4486), 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,
- [126764] = 3,
- ACTIONS(2321), 1,
- anon_sym_PIPE,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(2319), 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,
- [126784] = 4,
- ACTIONS(6317), 1,
- anon_sym_LT,
- STATE(3301), 1,
- sym_type_arguments,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(4027), 9,
- sym__automatic_semicolon,
- sym__function_signature_automatic_semicolon,
- anon_sym_LBRACE,
- anon_sym_COMMA,
- anon_sym_SEMI,
- anon_sym_LBRACK,
- anon_sym_AMP,
- anon_sym_PIPE,
- anon_sym_extends,
- [126806] = 4,
- ACTIONS(6313), 1,
- anon_sym_DOT,
- ACTIONS(6315), 1,
- anon_sym_QMARK_DOT,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(3406), 9,
- sym__automatic_semicolon,
- sym__function_signature_automatic_semicolon,
- anon_sym_LBRACE,
- anon_sym_COMMA,
- anon_sym_SEMI,
- anon_sym_LBRACK,
- anon_sym_AMP,
- anon_sym_PIPE,
- anon_sym_extends,
- [126828] = 2,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(4482), 11,
- sym__automatic_semicolon,
- sym__function_signature_automatic_semicolon,
- anon_sym_LBRACE,
- anon_sym_COMMA,
- anon_sym_SEMI,
- anon_sym_LBRACK,
- anon_sym_DOT,
- anon_sym_QMARK_DOT,
- anon_sym_AMP,
- anon_sym_PIPE,
- anon_sym_extends,
- [126846] = 5,
- ACTIONS(6691), 1,
- anon_sym_AMP,
- ACTIONS(6693), 1,
- anon_sym_PIPE,
- ACTIONS(6695), 1,
- anon_sym_extends,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(4358), 8,
- sym__automatic_semicolon,
- anon_sym_EQ,
- anon_sym_LBRACE,
- anon_sym_COMMA,
- anon_sym_RBRACE,
- anon_sym_SEMI,
- anon_sym_LBRACK,
- anon_sym_PIPE_RBRACE,
- [126870] = 2,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(4490), 11,
- sym__automatic_semicolon,
- sym__function_signature_automatic_semicolon,
- anon_sym_LBRACE,
- anon_sym_COMMA,
- anon_sym_SEMI,
- anon_sym_LBRACK,
- anon_sym_DOT,
- anon_sym_QMARK_DOT,
- anon_sym_AMP,
- anon_sym_PIPE,
- anon_sym_extends,
- [126888] = 5,
- ACTIONS(6691), 1,
- anon_sym_AMP,
- ACTIONS(6693), 1,
- anon_sym_PIPE,
- ACTIONS(6695), 1,
- anon_sym_extends,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(4422), 8,
- sym__automatic_semicolon,
- anon_sym_EQ,
- anon_sym_LBRACE,
- anon_sym_COMMA,
- anon_sym_RBRACE,
- anon_sym_SEMI,
- anon_sym_LBRACK,
- anon_sym_PIPE_RBRACE,
- [126912] = 5,
- ACTIONS(4342), 1,
- anon_sym_PIPE,
- ACTIONS(6689), 1,
- anon_sym_LBRACK,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(4344), 2,
- anon_sym_AMP,
- anon_sym_extends,
- ACTIONS(4426), 7,
- sym__automatic_semicolon,
- anon_sym_EQ,
- anon_sym_LBRACE,
- anon_sym_COMMA,
- anon_sym_RBRACE,
- anon_sym_SEMI,
- anon_sym_PIPE_RBRACE,
- [126936] = 3,
- ACTIONS(4342), 1,
- anon_sym_PIPE,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(4344), 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,
- [126956] = 3,
- ACTIONS(4492), 1,
- anon_sym_PIPE,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(4494), 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,
- [126976] = 4,
- ACTIONS(4428), 1,
- anon_sym_PIPE,
- ACTIONS(6713), 1,
- anon_sym_extends,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(4430), 9,
- sym__automatic_semicolon,
- anon_sym_EQ,
- anon_sym_LBRACE,
- anon_sym_COMMA,
- anon_sym_RBRACE,
- anon_sym_SEMI,
- anon_sym_LBRACK,
- anon_sym_AMP,
- anon_sym_PIPE_RBRACE,
- [126998] = 3,
- ACTIONS(4104), 1,
- anon_sym_PIPE,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(4106), 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,
- [127018] = 2,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(3133), 11,
- sym__automatic_semicolon,
- sym__function_signature_automatic_semicolon,
- anon_sym_LBRACE,
- anon_sym_COMMA,
- anon_sym_SEMI,
- anon_sym_LBRACK,
- anon_sym_DOT,
- anon_sym_QMARK_DOT,
- anon_sym_AMP,
- anon_sym_PIPE,
- anon_sym_extends,
- [127036] = 3,
- ACTIONS(4301), 1,
- anon_sym_PIPE,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(4303), 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,
- [127056] = 5,
- ACTIONS(6691), 1,
- anon_sym_AMP,
- ACTIONS(6693), 1,
- anon_sym_PIPE,
- ACTIONS(6695), 1,
- anon_sym_extends,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(4311), 8,
- sym__automatic_semicolon,
- anon_sym_EQ,
- anon_sym_LBRACE,
- anon_sym_COMMA,
- anon_sym_RBRACE,
- anon_sym_SEMI,
- anon_sym_LBRACK,
- anon_sym_PIPE_RBRACE,
- [127080] = 3,
- ACTIONS(4496), 1,
- anon_sym_PIPE,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(4498), 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,
- [127100] = 3,
- ACTIONS(2325), 1,
- anon_sym_PIPE,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(2323), 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,
- [127120] = 8,
- ACTIONS(6403), 1,
- anon_sym_EQ,
- ACTIONS(6411), 1,
- anon_sym_COLON,
- ACTIONS(6717), 1,
- anon_sym_BANG,
- STATE(4267), 1,
- sym_type_annotation,
- STATE(4918), 1,
- sym__initializer,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(6719), 2,
- anon_sym_in,
- anon_sym_of,
- ACTIONS(6715), 3,
- sym__automatic_semicolon,
- anon_sym_COMMA,
- anon_sym_SEMI,
- [127149] = 10,
- ACTIONS(6252), 1,
- sym_identifier,
- ACTIONS(6256), 1,
- anon_sym_LBRACE,
- ACTIONS(6265), 1,
- sym_jsx_identifier,
- ACTIONS(6572), 1,
- anon_sym_COLON,
- ACTIONS(6574), 1,
- anon_sym_GT,
- ACTIONS(6576), 1,
- anon_sym_SLASH_GT,
- STATE(3270), 1,
- aux_sym__jsx_start_opening_element_repeat1,
- STATE(3826), 1,
- sym_jsx_namespace_name,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- STATE(4391), 2,
- sym_jsx_expression,
- sym_jsx_attribute,
- [127182] = 10,
- ACTIONS(6252), 1,
- sym_identifier,
- ACTIONS(6256), 1,
- anon_sym_LBRACE,
- ACTIONS(6265), 1,
- sym_jsx_identifier,
- ACTIONS(6273), 1,
- anon_sym_SLASH_GT,
- ACTIONS(6572), 1,
- anon_sym_COLON,
- ACTIONS(6574), 1,
- anon_sym_GT,
- STATE(3430), 1,
- aux_sym__jsx_start_opening_element_repeat1,
- STATE(3826), 1,
- sym_jsx_namespace_name,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- STATE(4391), 2,
- sym_jsx_expression,
- sym_jsx_attribute,
- [127215] = 10,
- ACTIONS(6252), 1,
- sym_identifier,
- ACTIONS(6256), 1,
- anon_sym_LBRACE,
- ACTIONS(6265), 1,
- sym_jsx_identifier,
- ACTIONS(6572), 1,
- anon_sym_COLON,
- ACTIONS(6574), 1,
- anon_sym_GT,
- ACTIONS(6596), 1,
- anon_sym_SLASH_GT,
- STATE(3357), 1,
- aux_sym__jsx_start_opening_element_repeat1,
- STATE(3826), 1,
- sym_jsx_namespace_name,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- STATE(4391), 2,
- sym_jsx_expression,
- sym_jsx_attribute,
- [127248] = 10,
- ACTIONS(2275), 1,
- anon_sym_DQUOTE,
- ACTIONS(2277), 1,
- anon_sym_SQUOTE,
- ACTIONS(6701), 1,
- sym_identifier,
- ACTIONS(6703), 1,
- anon_sym_type,
- ACTIONS(6709), 1,
- anon_sym_typeof,
- ACTIONS(6721), 1,
- anon_sym_RBRACE,
- STATE(5185), 1,
- sym_import_specifier,
- STATE(5188), 1,
- sym__import_identifier,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- STATE(5579), 2,
- sym__module_export_name,
- sym_string,
- [127281] = 11,
- ACTIONS(2581), 1,
- anon_sym_LT,
- ACTIONS(6723), 1,
- sym_identifier,
- ACTIONS(6725), 1,
- anon_sym_LBRACE,
- ACTIONS(6727), 1,
- anon_sym_extends,
- ACTIONS(6729), 1,
- anon_sym_implements,
- STATE(2338), 1,
- sym_class_body,
- STATE(3525), 1,
- sym_type_parameters,
- STATE(5071), 1,
- sym_extends_clause,
- STATE(5396), 1,
- sym_class_heritage,
- STATE(5674), 1,
- sym_implements_clause,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- [127316] = 11,
- ACTIONS(2581), 1,
- anon_sym_LT,
- ACTIONS(6725), 1,
- anon_sym_LBRACE,
- ACTIONS(6727), 1,
- anon_sym_extends,
- ACTIONS(6729), 1,
- anon_sym_implements,
- ACTIONS(6731), 1,
- sym_identifier,
- STATE(2128), 1,
- sym_class_body,
- STATE(3512), 1,
- sym_type_parameters,
- STATE(5071), 1,
- sym_extends_clause,
- STATE(5205), 1,
- sym_class_heritage,
- STATE(5674), 1,
- sym_implements_clause,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- [127351] = 2,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(1650), 10,
- sym__automatic_semicolon,
- sym__function_signature_automatic_semicolon,
- anon_sym_LBRACE,
- anon_sym_COMMA,
- anon_sym_SEMI,
- anon_sym_LBRACK,
- anon_sym_AMP,
- anon_sym_PIPE,
- anon_sym_extends,
- anon_sym_is,
- [127368] = 11,
- ACTIONS(2581), 1,
- anon_sym_LT,
- ACTIONS(6725), 1,
- anon_sym_LBRACE,
- ACTIONS(6727), 1,
- anon_sym_extends,
- ACTIONS(6729), 1,
- anon_sym_implements,
- ACTIONS(6733), 1,
- sym_identifier,
- STATE(2338), 1,
- sym_class_body,
- STATE(3525), 1,
- sym_type_parameters,
- STATE(5071), 1,
- sym_extends_clause,
- STATE(5396), 1,
- sym_class_heritage,
- STATE(5674), 1,
- sym_implements_clause,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- [127403] = 3,
- ACTIONS(6735), 1,
- anon_sym_DOT,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(4338), 9,
- sym__automatic_semicolon,
- sym__function_signature_automatic_semicolon,
- anon_sym_LBRACE,
- anon_sym_COMMA,
- anon_sym_SEMI,
- anon_sym_LBRACK,
- anon_sym_AMP,
- anon_sym_PIPE,
- anon_sym_extends,
- [127422] = 11,
- ACTIONS(2581), 1,
- anon_sym_LT,
- ACTIONS(6725), 1,
- anon_sym_LBRACE,
- ACTIONS(6727), 1,
- anon_sym_extends,
- ACTIONS(6729), 1,
- anon_sym_implements,
- ACTIONS(6737), 1,
- sym_identifier,
- STATE(2128), 1,
- sym_class_body,
- STATE(3512), 1,
- sym_type_parameters,
- STATE(5071), 1,
- sym_extends_clause,
- STATE(5205), 1,
- sym_class_heritage,
- STATE(5674), 1,
- sym_implements_clause,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- [127457] = 3,
- ACTIONS(6562), 1,
- anon_sym_is,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(4041), 9,
- sym__automatic_semicolon,
- sym__function_signature_automatic_semicolon,
- anon_sym_LBRACE,
- anon_sym_COMMA,
- anon_sym_SEMI,
- anon_sym_LBRACK,
- anon_sym_AMP,
- anon_sym_PIPE,
- anon_sym_extends,
- [127476] = 5,
- ACTIONS(6691), 1,
- anon_sym_AMP,
- ACTIONS(6693), 1,
- anon_sym_PIPE,
- ACTIONS(6695), 1,
- anon_sym_extends,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(6739), 7,
- sym__automatic_semicolon,
- anon_sym_EQ,
- anon_sym_LBRACE,
- anon_sym_COMMA,
- anon_sym_RBRACE,
- anon_sym_SEMI,
- anon_sym_PIPE_RBRACE,
- [127499] = 3,
- ACTIONS(6741), 1,
- anon_sym_is,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(4027), 9,
- sym__automatic_semicolon,
- sym__function_signature_automatic_semicolon,
- anon_sym_LBRACE,
- anon_sym_COMMA,
- anon_sym_SEMI,
- anon_sym_LBRACK,
- anon_sym_AMP,
- anon_sym_PIPE,
- anon_sym_extends,
- [127518] = 5,
- ACTIONS(5987), 1,
- anon_sym_LPAREN,
- ACTIONS(6305), 1,
- anon_sym_DOT,
- STATE(2847), 1,
- sym_arguments,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(4021), 7,
- anon_sym_COMMA,
- anon_sym_LBRACK,
- anon_sym_RBRACK,
- anon_sym_AMP,
- anon_sym_PIPE,
- anon_sym_QMARK,
- anon_sym_extends,
- [127541] = 4,
- ACTIONS(6745), 1,
- anon_sym_COLON,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- STATE(3730), 3,
- sym_type_annotation,
- sym_asserts_annotation,
- sym_type_predicate_annotation,
- ACTIONS(6743), 6,
- sym__automatic_semicolon,
- anon_sym_LBRACE,
- anon_sym_COMMA,
- anon_sym_RBRACE,
- anon_sym_SEMI,
- anon_sym_PIPE_RBRACE,
- [127562] = 4,
- ACTIONS(4243), 1,
- anon_sym_EQ,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(3959), 2,
- anon_sym_COMMA,
- anon_sym_RBRACE,
- ACTIONS(3743), 7,
- sym__automatic_semicolon,
- anon_sym_LPAREN,
- anon_sym_SEMI,
- anon_sym_COLON,
- anon_sym_LT,
- anon_sym_QMARK,
- anon_sym_PIPE_RBRACE,
- [127583] = 11,
- ACTIONS(2581), 1,
- anon_sym_LT,
- ACTIONS(6725), 1,
- anon_sym_LBRACE,
- ACTIONS(6727), 1,
- anon_sym_extends,
- ACTIONS(6729), 1,
- anon_sym_implements,
- ACTIONS(6747), 1,
- sym_identifier,
- STATE(2128), 1,
- sym_class_body,
- STATE(3512), 1,
- sym_type_parameters,
- STATE(5071), 1,
- sym_extends_clause,
- STATE(5205), 1,
- sym_class_heritage,
- STATE(5674), 1,
- sym_implements_clause,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- [127618] = 9,
- ACTIONS(2275), 1,
- anon_sym_DQUOTE,
- ACTIONS(2277), 1,
- anon_sym_SQUOTE,
- ACTIONS(6701), 1,
- sym_identifier,
- ACTIONS(6749), 1,
- anon_sym_type,
- ACTIONS(6751), 1,
- anon_sym_as,
- STATE(5330), 1,
- sym__import_identifier,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(6399), 2,
- anon_sym_COMMA,
- anon_sym_RBRACE,
- STATE(5830), 2,
- sym__module_export_name,
- sym_string,
- [127649] = 4,
- ACTIONS(6745), 1,
- anon_sym_COLON,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- STATE(3729), 3,
- sym_type_annotation,
- sym_asserts_annotation,
- sym_type_predicate_annotation,
- ACTIONS(6753), 6,
- sym__automatic_semicolon,
- anon_sym_LBRACE,
- anon_sym_COMMA,
- anon_sym_RBRACE,
- anon_sym_SEMI,
- anon_sym_PIPE_RBRACE,
- [127670] = 11,
- ACTIONS(2581), 1,
- anon_sym_LT,
- ACTIONS(6725), 1,
- anon_sym_LBRACE,
- ACTIONS(6727), 1,
- anon_sym_extends,
- ACTIONS(6729), 1,
- anon_sym_implements,
- ACTIONS(6755), 1,
- sym_identifier,
- STATE(2338), 1,
- sym_class_body,
- STATE(3525), 1,
- sym_type_parameters,
- STATE(5071), 1,
- sym_extends_clause,
- STATE(5396), 1,
- sym_class_heritage,
- STATE(5674), 1,
- sym_implements_clause,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- [127705] = 11,
- ACTIONS(2581), 1,
- anon_sym_LT,
- ACTIONS(6725), 1,
- anon_sym_LBRACE,
- ACTIONS(6727), 1,
- anon_sym_extends,
- ACTIONS(6729), 1,
- anon_sym_implements,
- ACTIONS(6757), 1,
- sym_identifier,
- STATE(2128), 1,
- sym_class_body,
- STATE(3512), 1,
- sym_type_parameters,
- STATE(5071), 1,
- sym_extends_clause,
- STATE(5205), 1,
- sym_class_heritage,
- STATE(5674), 1,
- sym_implements_clause,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- [127740] = 5,
- ACTIONS(89), 1,
- anon_sym_BQUOTE,
- ACTIONS(4519), 1,
- anon_sym_LPAREN,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- STATE(2222), 2,
- sym_template_string,
- sym_arguments,
- ACTIONS(4478), 6,
- anon_sym_COMMA,
- anon_sym_LBRACK,
- anon_sym_GT,
- anon_sym_AMP,
- anon_sym_PIPE,
- anon_sym_extends,
- [127763] = 10,
- ACTIONS(2275), 1,
- anon_sym_DQUOTE,
- ACTIONS(2277), 1,
- anon_sym_SQUOTE,
- ACTIONS(6701), 1,
- sym_identifier,
- ACTIONS(6703), 1,
- anon_sym_type,
- ACTIONS(6709), 1,
- anon_sym_typeof,
- ACTIONS(6759), 1,
- anon_sym_RBRACE,
- STATE(5185), 1,
- sym_import_specifier,
- STATE(5188), 1,
- sym__import_identifier,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- STATE(5579), 2,
- sym__module_export_name,
- sym_string,
- [127796] = 2,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(4047), 10,
- sym__automatic_semicolon,
- sym__function_signature_automatic_semicolon,
- anon_sym_LBRACE,
- anon_sym_COMMA,
- anon_sym_SEMI,
- anon_sym_LBRACK,
- anon_sym_AMP,
- anon_sym_PIPE,
- anon_sym_extends,
- anon_sym_is,
- [127813] = 2,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(4460), 10,
- sym__automatic_semicolon,
- sym__function_signature_automatic_semicolon,
- anon_sym_LBRACE,
- anon_sym_COMMA,
- anon_sym_SEMI,
- anon_sym_LBRACK,
- anon_sym_DOT,
- anon_sym_AMP,
- anon_sym_PIPE,
- anon_sym_extends,
- [127830] = 11,
- ACTIONS(2581), 1,
- anon_sym_LT,
- ACTIONS(6727), 1,
- anon_sym_extends,
- ACTIONS(6729), 1,
- anon_sym_implements,
- ACTIONS(6761), 1,
- sym_identifier,
- ACTIONS(6763), 1,
- anon_sym_LBRACE,
- STATE(1648), 1,
- sym_class_body,
- STATE(3515), 1,
- sym_type_parameters,
- STATE(5071), 1,
- sym_extends_clause,
- STATE(5280), 1,
- sym_class_heritage,
- STATE(5674), 1,
- sym_implements_clause,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- [127865] = 2,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(4468), 10,
- sym__automatic_semicolon,
- sym__function_signature_automatic_semicolon,
- anon_sym_LBRACE,
- anon_sym_COMMA,
- anon_sym_SEMI,
- anon_sym_LBRACK,
- anon_sym_DOT,
- anon_sym_AMP,
- anon_sym_PIPE,
- anon_sym_extends,
- [127882] = 10,
- ACTIONS(6252), 1,
- sym_identifier,
- ACTIONS(6256), 1,
- anon_sym_LBRACE,
- ACTIONS(6265), 1,
- sym_jsx_identifier,
- ACTIONS(6269), 1,
- anon_sym_SLASH_GT,
- ACTIONS(6572), 1,
- anon_sym_COLON,
- ACTIONS(6574), 1,
- anon_sym_GT,
- STATE(3373), 1,
- aux_sym__jsx_start_opening_element_repeat1,
- STATE(3826), 1,
- sym_jsx_namespace_name,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- STATE(4391), 2,
- sym_jsx_expression,
- sym_jsx_attribute,
- [127915] = 3,
- ACTIONS(6562), 1,
- anon_sym_is,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(4015), 9,
- sym__automatic_semicolon,
- sym__function_signature_automatic_semicolon,
- anon_sym_LBRACE,
- anon_sym_COMMA,
- anon_sym_SEMI,
- anon_sym_LBRACK,
- anon_sym_AMP,
- anon_sym_PIPE,
- anon_sym_extends,
- [127934] = 11,
- ACTIONS(2581), 1,
- anon_sym_LT,
- ACTIONS(6727), 1,
- anon_sym_extends,
- ACTIONS(6729), 1,
- anon_sym_implements,
- ACTIONS(6763), 1,
- anon_sym_LBRACE,
- ACTIONS(6765), 1,
- sym_identifier,
- STATE(1683), 1,
- sym_class_body,
- STATE(3617), 1,
- sym_type_parameters,
- STATE(5071), 1,
- sym_extends_clause,
- STATE(5292), 1,
- sym_class_heritage,
- STATE(5674), 1,
- sym_implements_clause,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- [127969] = 9,
- ACTIONS(2275), 1,
- anon_sym_DQUOTE,
- ACTIONS(2277), 1,
- anon_sym_SQUOTE,
- ACTIONS(6767), 1,
- sym_identifier,
- ACTIONS(6771), 1,
- anon_sym_COMMA,
- ACTIONS(6773), 1,
- anon_sym_RBRACE,
- STATE(5020), 1,
- sym_export_specifier,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(6769), 2,
- anon_sym_type,
- anon_sym_typeof,
- STATE(5022), 2,
- sym__module_export_name,
- sym_string,
- [128000] = 11,
- ACTIONS(2581), 1,
- anon_sym_LT,
- ACTIONS(6725), 1,
- anon_sym_LBRACE,
- ACTIONS(6727), 1,
- anon_sym_extends,
- ACTIONS(6729), 1,
- anon_sym_implements,
- ACTIONS(6775), 1,
- sym_identifier,
- STATE(2338), 1,
- sym_class_body,
- STATE(3525), 1,
- sym_type_parameters,
- STATE(5071), 1,
- sym_extends_clause,
- STATE(5396), 1,
- sym_class_heritage,
- STATE(5674), 1,
- sym_implements_clause,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- [128035] = 11,
- ACTIONS(2581), 1,
- anon_sym_LT,
- ACTIONS(6727), 1,
- anon_sym_extends,
- ACTIONS(6729), 1,
- anon_sym_implements,
- ACTIONS(6763), 1,
- anon_sym_LBRACE,
- ACTIONS(6777), 1,
- sym_identifier,
- STATE(2499), 1,
- sym_class_body,
- STATE(3703), 1,
- sym_type_parameters,
- STATE(5071), 1,
- sym_extends_clause,
- STATE(5265), 1,
- sym_class_heritage,
- STATE(5674), 1,
- sym_implements_clause,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- [128070] = 8,
- ACTIONS(6411), 1,
- anon_sym_COLON,
- ACTIONS(6717), 1,
- anon_sym_BANG,
- ACTIONS(6779), 1,
- anon_sym_EQ,
- STATE(4141), 1,
- sym__initializer,
- STATE(4267), 1,
- sym_type_annotation,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(6719), 2,
- anon_sym_in,
- anon_sym_of,
- ACTIONS(6715), 3,
- sym__automatic_semicolon,
- anon_sym_COMMA,
- anon_sym_SEMI,
- [128099] = 6,
- ACTIONS(6246), 1,
- anon_sym_LT,
- ACTIONS(6287), 1,
- anon_sym_DOT,
- ACTIONS(6781), 1,
- anon_sym_is,
- STATE(2856), 1,
- sym_type_arguments,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(3461), 6,
- anon_sym_as,
- anon_sym_LBRACK,
- anon_sym_RBRACK,
- anon_sym_AMP,
- anon_sym_PIPE,
- anon_sym_extends,
- [128124] = 7,
- ACTIONS(6256), 1,
- anon_sym_LBRACE,
- ACTIONS(6783), 1,
- anon_sym_DQUOTE,
- ACTIONS(6785), 1,
- anon_sym_SQUOTE,
- ACTIONS(6787), 1,
- anon_sym_LT,
- STATE(2997), 1,
- sym_jsx_opening_element,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- STATE(4239), 4,
- sym_jsx_element,
- sym_jsx_expression,
- sym_jsx_self_closing_element,
- sym__jsx_string,
- [128150] = 2,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(4187), 9,
- sym__automatic_semicolon,
- sym__function_signature_automatic_semicolon,
- anon_sym_LBRACE,
- anon_sym_COMMA,
- anon_sym_SEMI,
- anon_sym_LBRACK,
- anon_sym_AMP,
- anon_sym_PIPE,
- anon_sym_extends,
- [128166] = 9,
- ACTIONS(6252), 1,
- sym_identifier,
- ACTIONS(6256), 1,
- anon_sym_LBRACE,
- ACTIONS(6265), 1,
- sym_jsx_identifier,
- ACTIONS(6789), 1,
- anon_sym_GT,
- ACTIONS(6791), 1,
- anon_sym_SLASH_GT,
- STATE(3345), 1,
- aux_sym__jsx_start_opening_element_repeat1,
- STATE(3826), 1,
- sym_jsx_namespace_name,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- STATE(4391), 2,
- sym_jsx_expression,
- sym_jsx_attribute,
- [128196] = 9,
- ACTIONS(6252), 1,
- sym_identifier,
- ACTIONS(6256), 1,
- anon_sym_LBRACE,
- ACTIONS(6265), 1,
- sym_jsx_identifier,
- ACTIONS(6793), 1,
- anon_sym_GT,
- ACTIONS(6795), 1,
- anon_sym_SLASH_GT,
- STATE(3345), 1,
- aux_sym__jsx_start_opening_element_repeat1,
- STATE(3826), 1,
- sym_jsx_namespace_name,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- STATE(4391), 2,
- sym_jsx_expression,
- sym_jsx_attribute,
- [128226] = 10,
- ACTIONS(89), 1,
- anon_sym_BQUOTE,
- ACTIONS(4059), 1,
- anon_sym_QMARK_DOT,
- ACTIONS(4519), 1,
- anon_sym_LPAREN,
- ACTIONS(4525), 1,
- anon_sym_DOT,
- ACTIONS(6246), 1,
- anon_sym_LT,
- STATE(2133), 1,
- sym_template_string,
- STATE(2416), 1,
- sym_arguments,
- STATE(3236), 1,
- sym_type_arguments,
- STATE(5183), 1,
- sym_optional_chain,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- [128258] = 8,
- ACTIONS(6403), 1,
- anon_sym_EQ,
- ACTIONS(6411), 1,
- anon_sym_COLON,
- ACTIONS(6797), 1,
- anon_sym_BANG,
- ACTIONS(6799), 1,
- anon_sym_QMARK,
- STATE(4416), 1,
- sym_type_annotation,
- STATE(5175), 1,
- sym__initializer,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(6415), 3,
- sym__automatic_semicolon,
- anon_sym_COMMA,
- anon_sym_SEMI,
- [128286] = 2,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(4326), 9,
- sym__automatic_semicolon,
- sym__function_signature_automatic_semicolon,
- anon_sym_LBRACE,
- anon_sym_COMMA,
- anon_sym_SEMI,
- anon_sym_LBRACK,
- anon_sym_AMP,
- anon_sym_PIPE,
- anon_sym_extends,
- [128302] = 2,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(4027), 9,
- sym__automatic_semicolon,
- sym__function_signature_automatic_semicolon,
- anon_sym_LBRACE,
- anon_sym_COMMA,
- anon_sym_SEMI,
- anon_sym_LBRACK,
- anon_sym_AMP,
- anon_sym_PIPE,
- anon_sym_extends,
- [128318] = 8,
- ACTIONS(6403), 1,
- anon_sym_EQ,
- ACTIONS(6411), 1,
- anon_sym_COLON,
- ACTIONS(6801), 1,
- anon_sym_BANG,
- ACTIONS(6803), 1,
- anon_sym_QMARK,
- STATE(4417), 1,
- sym_type_annotation,
- STATE(5181), 1,
- sym__initializer,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(6415), 3,
- sym__automatic_semicolon,
- anon_sym_COMMA,
- anon_sym_SEMI,
- [128346] = 10,
- ACTIONS(89), 1,
- anon_sym_BQUOTE,
- ACTIONS(4059), 1,
- anon_sym_QMARK_DOT,
- ACTIONS(4519), 1,
- anon_sym_LPAREN,
- ACTIONS(5991), 1,
- anon_sym_LT,
- ACTIONS(6805), 1,
- anon_sym_DOT,
- STATE(2133), 1,
- sym_template_string,
- STATE(2428), 1,
- sym_arguments,
- STATE(4470), 1,
- sym_type_arguments,
- STATE(5183), 1,
- sym_optional_chain,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- [128378] = 5,
- ACTIONS(6807), 1,
- anon_sym_AMP,
- ACTIONS(6809), 1,
- anon_sym_PIPE,
- ACTIONS(6811), 1,
- anon_sym_extends,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(4197), 6,
- sym__automatic_semicolon,
- sym__function_signature_automatic_semicolon,
- anon_sym_LBRACE,
- anon_sym_COMMA,
- anon_sym_SEMI,
- anon_sym_LBRACK,
- [128400] = 10,
- ACTIONS(825), 1,
- anon_sym_BQUOTE,
- ACTIONS(3969), 1,
- anon_sym_LPAREN,
- ACTIONS(3973), 1,
- anon_sym_DOT,
- ACTIONS(4059), 1,
- anon_sym_QMARK_DOT,
- ACTIONS(6246), 1,
- anon_sym_LT,
- STATE(1757), 1,
- sym_template_string,
- STATE(2493), 1,
- sym_arguments,
- STATE(2988), 1,
- sym_type_arguments,
- STATE(5393), 1,
- sym_optional_chain,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- [128432] = 8,
- ACTIONS(6403), 1,
- anon_sym_EQ,
- ACTIONS(6411), 1,
- anon_sym_COLON,
- ACTIONS(6815), 1,
- anon_sym_BANG,
- ACTIONS(6817), 1,
- anon_sym_QMARK,
- STATE(4278), 1,
- sym_type_annotation,
- STATE(4936), 1,
- sym__initializer,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(6813), 3,
- sym__automatic_semicolon,
- anon_sym_COMMA,
- anon_sym_SEMI,
- [128460] = 10,
- ACTIONS(825), 1,
- anon_sym_BQUOTE,
- ACTIONS(3969), 1,
- anon_sym_LPAREN,
- ACTIONS(4059), 1,
- anon_sym_QMARK_DOT,
- ACTIONS(5991), 1,
- anon_sym_LT,
- ACTIONS(6819), 1,
- anon_sym_DOT,
- STATE(1757), 1,
- sym_template_string,
- STATE(2488), 1,
- sym_arguments,
- STATE(4436), 1,
- sym_type_arguments,
- STATE(5393), 1,
- sym_optional_chain,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- [128492] = 10,
- ACTIONS(825), 1,
- anon_sym_BQUOTE,
- ACTIONS(3973), 1,
- anon_sym_DOT,
- ACTIONS(4059), 1,
- anon_sym_QMARK_DOT,
- ACTIONS(4519), 1,
- anon_sym_LPAREN,
- ACTIONS(6289), 1,
- anon_sym_LT,
- STATE(1757), 1,
- sym_template_string,
- STATE(1967), 1,
- sym_arguments,
- STATE(3052), 1,
- sym_type_arguments,
- STATE(5393), 1,
- sym_optional_chain,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- [128524] = 2,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(4261), 9,
- sym__automatic_semicolon,
- sym__function_signature_automatic_semicolon,
- anon_sym_LBRACE,
- anon_sym_COMMA,
- anon_sym_SEMI,
- anon_sym_LBRACK,
- anon_sym_AMP,
- anon_sym_PIPE,
- anon_sym_extends,
- [128540] = 10,
- ACTIONS(825), 1,
- anon_sym_BQUOTE,
- ACTIONS(4059), 1,
- anon_sym_QMARK_DOT,
- ACTIONS(4519), 1,
- anon_sym_LPAREN,
- ACTIONS(5991), 1,
- anon_sym_LT,
- ACTIONS(6821), 1,
- anon_sym_DOT,
- STATE(1757), 1,
- sym_template_string,
- STATE(1966), 1,
- sym_arguments,
- STATE(4436), 1,
- sym_type_arguments,
- STATE(5393), 1,
- sym_optional_chain,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- [128572] = 7,
- ACTIONS(241), 1,
- anon_sym_COMMA,
- ACTIONS(727), 1,
- anon_sym_RBRACE,
- ACTIONS(4243), 1,
- anon_sym_EQ,
- STATE(4671), 1,
- aux_sym_object_repeat1,
- STATE(4672), 1,
- aux_sym_object_pattern_repeat1,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(3743), 4,
- anon_sym_LPAREN,
- anon_sym_COLON,
- anon_sym_LT,
- anon_sym_QMARK,
- [128598] = 2,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(4265), 9,
- sym__automatic_semicolon,
- sym__function_signature_automatic_semicolon,
- anon_sym_LBRACE,
- anon_sym_COMMA,
- anon_sym_SEMI,
- anon_sym_LBRACK,
- anon_sym_AMP,
- anon_sym_PIPE,
- anon_sym_extends,
- [128614] = 2,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(4273), 9,
- sym__automatic_semicolon,
- sym__function_signature_automatic_semicolon,
- anon_sym_LBRACE,
- anon_sym_COMMA,
- anon_sym_SEMI,
- anon_sym_LBRACK,
- anon_sym_AMP,
- anon_sym_PIPE,
- anon_sym_extends,
- [128630] = 9,
- ACTIONS(6252), 1,
- sym_identifier,
- ACTIONS(6256), 1,
- anon_sym_LBRACE,
- ACTIONS(6265), 1,
- sym_jsx_identifier,
- ACTIONS(6823), 1,
- anon_sym_GT,
- ACTIONS(6825), 1,
- anon_sym_SLASH_GT,
- STATE(3345), 1,
- aux_sym__jsx_start_opening_element_repeat1,
- STATE(3826), 1,
- sym_jsx_namespace_name,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- STATE(4391), 2,
- sym_jsx_expression,
- sym_jsx_attribute,
- [128660] = 2,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(2327), 9,
- sym__automatic_semicolon,
- sym__function_signature_automatic_semicolon,
- anon_sym_LBRACE,
- anon_sym_COMMA,
- anon_sym_SEMI,
- anon_sym_LBRACK,
- anon_sym_AMP,
- anon_sym_PIPE,
- anon_sym_extends,
- [128676] = 2,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(4330), 9,
- sym__automatic_semicolon,
- sym__function_signature_automatic_semicolon,
- anon_sym_LBRACE,
- anon_sym_COMMA,
- anon_sym_SEMI,
- anon_sym_LBRACK,
- anon_sym_AMP,
- anon_sym_PIPE,
- anon_sym_extends,
- [128692] = 9,
- ACTIONS(6252), 1,
- sym_identifier,
- ACTIONS(6256), 1,
- anon_sym_LBRACE,
- ACTIONS(6265), 1,
- sym_jsx_identifier,
- ACTIONS(6827), 1,
- anon_sym_GT,
- ACTIONS(6829), 1,
- anon_sym_SLASH_GT,
- STATE(3304), 1,
- aux_sym__jsx_start_opening_element_repeat1,
- STATE(3826), 1,
- sym_jsx_namespace_name,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- STATE(4391), 2,
- sym_jsx_expression,
- sym_jsx_attribute,
- [128722] = 8,
- ACTIONS(6403), 1,
- anon_sym_EQ,
- ACTIONS(6411), 1,
- anon_sym_COLON,
- ACTIONS(6831), 1,
- anon_sym_BANG,
- ACTIONS(6833), 1,
- anon_sym_QMARK,
- STATE(3916), 1,
- sym_type_annotation,
- STATE(4944), 1,
- sym__initializer,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(6415), 3,
- sym__automatic_semicolon,
- anon_sym_COMMA,
- anon_sym_SEMI,
- [128750] = 10,
- ACTIONS(2581), 1,
- anon_sym_LT,
- ACTIONS(6763), 1,
- anon_sym_LBRACE,
- ACTIONS(6835), 1,
- anon_sym_extends,
- ACTIONS(6837), 1,
- anon_sym_implements,
- STATE(2501), 1,
- sym_class_body,
- STATE(3589), 1,
- sym_type_parameters,
- STATE(5071), 1,
- sym_extends_clause,
- STATE(5192), 1,
- sym_class_heritage,
- STATE(5674), 1,
- sym_implements_clause,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- [128782] = 2,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(4041), 9,
- sym__automatic_semicolon,
- sym__function_signature_automatic_semicolon,
- anon_sym_LBRACE,
- anon_sym_COMMA,
- anon_sym_SEMI,
- anon_sym_LBRACK,
- anon_sym_AMP,
- anon_sym_PIPE,
- anon_sym_extends,
- [128798] = 7,
- ACTIONS(6403), 1,
- anon_sym_EQ,
- ACTIONS(6411), 1,
- anon_sym_COLON,
- STATE(4305), 1,
- sym_type_annotation,
- STATE(4985), 1,
- sym__initializer,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(6435), 2,
- anon_sym_BANG,
- anon_sym_QMARK,
- ACTIONS(6433), 3,
- sym__automatic_semicolon,
- anon_sym_COMMA,
- anon_sym_SEMI,
- [128824] = 2,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(6839), 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,
- [128840] = 9,
- ACTIONS(6252), 1,
- sym_identifier,
- ACTIONS(6256), 1,
- anon_sym_LBRACE,
- ACTIONS(6265), 1,
- sym_jsx_identifier,
- ACTIONS(6841), 1,
- anon_sym_GT,
- ACTIONS(6843), 1,
- anon_sym_SLASH_GT,
- STATE(3345), 1,
- aux_sym__jsx_start_opening_element_repeat1,
- STATE(3826), 1,
- sym_jsx_namespace_name,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- STATE(4391), 2,
- sym_jsx_expression,
- sym_jsx_attribute,
- [128870] = 2,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(4344), 9,
- sym__automatic_semicolon,
- sym__function_signature_automatic_semicolon,
- anon_sym_LBRACE,
- anon_sym_COMMA,
- anon_sym_SEMI,
- anon_sym_LBRACK,
- anon_sym_AMP,
- anon_sym_PIPE,
- anon_sym_extends,
- [128886] = 3,
- ACTIONS(6845), 1,
- anon_sym_LBRACK,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(4344), 8,
- sym__automatic_semicolon,
- sym__function_signature_automatic_semicolon,
- anon_sym_LBRACE,
- anon_sym_COMMA,
- anon_sym_SEMI,
- anon_sym_AMP,
- anon_sym_PIPE,
- anon_sym_extends,
- [128904] = 2,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(4303), 9,
- sym__automatic_semicolon,
- sym__function_signature_automatic_semicolon,
- anon_sym_LBRACE,
- anon_sym_COMMA,
- anon_sym_SEMI,
- anon_sym_LBRACK,
- anon_sym_AMP,
- anon_sym_PIPE,
- anon_sym_extends,
- [128920] = 7,
- ACTIONS(3438), 1,
- anon_sym_LPAREN,
- ACTIONS(5991), 1,
- anon_sym_LT,
- ACTIONS(6847), 1,
- anon_sym_DOT,
- STATE(1194), 1,
- sym_arguments,
- STATE(5478), 1,
- sym_type_arguments,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(3490), 4,
- anon_sym_export,
- anon_sym_class,
- anon_sym_AT,
- anon_sym_abstract,
- [128946] = 5,
- ACTIONS(6807), 1,
- anon_sym_AMP,
- ACTIONS(6809), 1,
- anon_sym_PIPE,
- ACTIONS(6811), 1,
- anon_sym_extends,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(4311), 6,
- sym__automatic_semicolon,
- sym__function_signature_automatic_semicolon,
- anon_sym_LBRACE,
- anon_sym_COMMA,
- anon_sym_SEMI,
- anon_sym_LBRACK,
- [128968] = 2,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(4368), 9,
- sym__automatic_semicolon,
- sym__function_signature_automatic_semicolon,
- anon_sym_LBRACE,
- anon_sym_COMMA,
- anon_sym_SEMI,
- anon_sym_LBRACK,
- anon_sym_AMP,
- anon_sym_PIPE,
- anon_sym_extends,
- [128984] = 9,
- ACTIONS(6252), 1,
- sym_identifier,
- ACTIONS(6256), 1,
- anon_sym_LBRACE,
- ACTIONS(6265), 1,
- sym_jsx_identifier,
- ACTIONS(6849), 1,
- anon_sym_GT,
- ACTIONS(6851), 1,
- anon_sym_SLASH_GT,
- STATE(3312), 1,
- aux_sym__jsx_start_opening_element_repeat1,
- STATE(3826), 1,
- sym_jsx_namespace_name,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- STATE(4391), 2,
- sym_jsx_expression,
- sym_jsx_attribute,
- [129014] = 9,
- ACTIONS(6252), 1,
- sym_identifier,
- ACTIONS(6256), 1,
- anon_sym_LBRACE,
- ACTIONS(6265), 1,
- sym_jsx_identifier,
- ACTIONS(6853), 1,
- anon_sym_GT,
- ACTIONS(6855), 1,
- anon_sym_SLASH_GT,
- STATE(3345), 1,
- aux_sym__jsx_start_opening_element_repeat1,
- STATE(3826), 1,
- sym_jsx_namespace_name,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- STATE(4391), 2,
- sym_jsx_expression,
- sym_jsx_attribute,
- [129044] = 8,
- ACTIONS(6403), 1,
- anon_sym_EQ,
- ACTIONS(6411), 1,
- anon_sym_COLON,
- ACTIONS(6857), 1,
- anon_sym_BANG,
- ACTIONS(6859), 1,
- anon_sym_QMARK,
- STATE(4323), 1,
- sym_type_annotation,
- STATE(5015), 1,
- sym__initializer,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(6510), 3,
- sym__automatic_semicolon,
- anon_sym_COMMA,
- anon_sym_SEMI,
- [129072] = 9,
- ACTIONS(6252), 1,
- sym_identifier,
- ACTIONS(6256), 1,
- anon_sym_LBRACE,
- ACTIONS(6265), 1,
- sym_jsx_identifier,
- ACTIONS(6861), 1,
- anon_sym_GT,
- ACTIONS(6863), 1,
- anon_sym_SLASH_GT,
- STATE(3345), 1,
- aux_sym__jsx_start_opening_element_repeat1,
- STATE(3826), 1,
- sym_jsx_namespace_name,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- STATE(4391), 2,
- sym_jsx_expression,
- sym_jsx_attribute,
- [129102] = 10,
- ACTIONS(825), 1,
- anon_sym_BQUOTE,
- ACTIONS(3969), 1,
- anon_sym_LPAREN,
- ACTIONS(4059), 1,
- anon_sym_QMARK_DOT,
- ACTIONS(5991), 1,
- anon_sym_LT,
- ACTIONS(6865), 1,
- anon_sym_DOT,
- STATE(1757), 1,
- sym_template_string,
- STATE(1815), 1,
- sym_arguments,
- STATE(4436), 1,
- sym_type_arguments,
- STATE(5393), 1,
- sym_optional_chain,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- [129134] = 8,
- ACTIONS(6403), 1,
- anon_sym_EQ,
- ACTIONS(6411), 1,
- anon_sym_COLON,
- ACTIONS(6867), 1,
- anon_sym_BANG,
- ACTIONS(6869), 1,
- anon_sym_QMARK,
- STATE(4325), 1,
- sym_type_annotation,
- STATE(5024), 1,
- sym__initializer,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(6510), 3,
- sym__automatic_semicolon,
- anon_sym_COMMA,
- anon_sym_SEMI,
- [129162] = 2,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(4208), 9,
- sym__automatic_semicolon,
- sym__function_signature_automatic_semicolon,
- anon_sym_LBRACE,
- anon_sym_COMMA,
- anon_sym_SEMI,
- anon_sym_LBRACK,
- anon_sym_AMP,
- anon_sym_PIPE,
- anon_sym_extends,
- [129178] = 8,
- ACTIONS(6403), 1,
- anon_sym_EQ,
- ACTIONS(6411), 1,
- anon_sym_COLON,
- ACTIONS(6871), 1,
- anon_sym_BANG,
- ACTIONS(6873), 1,
- anon_sym_QMARK,
- STATE(4326), 1,
- sym_type_annotation,
- STATE(5028), 1,
- sym__initializer,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(6510), 3,
- sym__automatic_semicolon,
- anon_sym_COMMA,
- anon_sym_SEMI,
- [129206] = 10,
- ACTIONS(2581), 1,
- anon_sym_LT,
- ACTIONS(6725), 1,
- anon_sym_LBRACE,
- ACTIONS(6835), 1,
- anon_sym_extends,
- ACTIONS(6837), 1,
- anon_sym_implements,
- STATE(2333), 1,
- sym_class_body,
- STATE(3660), 1,
- sym_type_parameters,
- STATE(5071), 1,
- sym_extends_clause,
- STATE(5229), 1,
- sym_class_heritage,
- STATE(5674), 1,
- sym_implements_clause,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- [129238] = 2,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(6875), 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,
- [129254] = 8,
- ACTIONS(6403), 1,
- anon_sym_EQ,
- ACTIONS(6411), 1,
- anon_sym_COLON,
- ACTIONS(6877), 1,
- anon_sym_BANG,
- ACTIONS(6879), 1,
- anon_sym_QMARK,
- STATE(3924), 1,
- sym_type_annotation,
- STATE(4592), 1,
- sym__initializer,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(6415), 3,
- sym__automatic_semicolon,
- anon_sym_COMMA,
- anon_sym_SEMI,
- [129282] = 8,
- ACTIONS(6403), 1,
- anon_sym_EQ,
- ACTIONS(6411), 1,
- anon_sym_COLON,
- ACTIONS(6881), 1,
- anon_sym_BANG,
- ACTIONS(6883), 1,
- anon_sym_QMARK,
- STATE(3926), 1,
- sym_type_annotation,
- STATE(4627), 1,
- sym__initializer,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(6415), 3,
- sym__automatic_semicolon,
- anon_sym_COMMA,
- anon_sym_SEMI,
- [129310] = 10,
- ACTIONS(2581), 1,
- anon_sym_LT,
- ACTIONS(6725), 1,
- anon_sym_LBRACE,
- ACTIONS(6835), 1,
- anon_sym_extends,
- ACTIONS(6837), 1,
- anon_sym_implements,
- STATE(2263), 1,
- sym_class_body,
- STATE(3710), 1,
- sym_type_parameters,
- STATE(5071), 1,
- sym_extends_clause,
- STATE(5209), 1,
- sym_class_heritage,
- STATE(5674), 1,
- sym_implements_clause,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- [129342] = 2,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(4214), 9,
- sym__automatic_semicolon,
- sym__function_signature_automatic_semicolon,
- anon_sym_LBRACE,
- anon_sym_COMMA,
- anon_sym_SEMI,
- anon_sym_LBRACK,
- anon_sym_AMP,
- anon_sym_PIPE,
- anon_sym_extends,
- [129358] = 2,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(4412), 9,
- sym__automatic_semicolon,
- sym__function_signature_automatic_semicolon,
- anon_sym_LBRACE,
- anon_sym_COMMA,
- anon_sym_SEMI,
- anon_sym_LBRACK,
- anon_sym_AMP,
- anon_sym_PIPE,
- anon_sym_extends,
- [129374] = 2,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(4464), 9,
- sym__automatic_semicolon,
- sym__function_signature_automatic_semicolon,
- anon_sym_LBRACE,
- anon_sym_COMMA,
- anon_sym_SEMI,
- anon_sym_LBRACK,
- anon_sym_AMP,
- anon_sym_PIPE,
- anon_sym_extends,
- [129390] = 8,
- ACTIONS(6403), 1,
- anon_sym_EQ,
- ACTIONS(6411), 1,
- anon_sym_COLON,
- ACTIONS(6885), 1,
- anon_sym_BANG,
- ACTIONS(6887), 1,
- anon_sym_QMARK,
- STATE(3981), 1,
- sym_type_annotation,
- STATE(5131), 1,
- sym__initializer,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(6415), 3,
- sym__automatic_semicolon,
- anon_sym_COMMA,
- anon_sym_SEMI,
- [129418] = 10,
- ACTIONS(89), 1,
- anon_sym_BQUOTE,
- ACTIONS(4059), 1,
- anon_sym_QMARK_DOT,
- ACTIONS(4519), 1,
- anon_sym_LPAREN,
- ACTIONS(5991), 1,
- anon_sym_LT,
- ACTIONS(6889), 1,
- anon_sym_DOT,
- STATE(2021), 1,
- sym_arguments,
- STATE(2133), 1,
- sym_template_string,
- STATE(4470), 1,
- sym_type_arguments,
- STATE(5183), 1,
- sym_optional_chain,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- [129450] = 9,
- ACTIONS(6252), 1,
- sym_identifier,
- ACTIONS(6256), 1,
- anon_sym_LBRACE,
- ACTIONS(6265), 1,
- sym_jsx_identifier,
- ACTIONS(6789), 1,
- anon_sym_GT,
- ACTIONS(6891), 1,
- anon_sym_SLASH_GT,
- STATE(3345), 1,
- aux_sym__jsx_start_opening_element_repeat1,
- STATE(3826), 1,
- sym_jsx_namespace_name,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- STATE(4391), 2,
- sym_jsx_expression,
- sym_jsx_attribute,
- [129480] = 8,
- ACTIONS(6403), 1,
- anon_sym_EQ,
- ACTIONS(6411), 1,
- anon_sym_COLON,
- ACTIONS(6893), 1,
- anon_sym_BANG,
- ACTIONS(6895), 1,
- anon_sym_QMARK,
- STATE(3984), 1,
- sym_type_annotation,
- STATE(4574), 1,
- sym__initializer,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(6415), 3,
- sym__automatic_semicolon,
- anon_sym_COMMA,
- anon_sym_SEMI,
- [129508] = 9,
- ACTIONS(89), 1,
- anon_sym_BQUOTE,
- ACTIONS(4059), 1,
- anon_sym_QMARK_DOT,
- ACTIONS(4519), 1,
- anon_sym_LPAREN,
- ACTIONS(4525), 1,
- anon_sym_DOT,
- ACTIONS(5991), 1,
- anon_sym_LT,
- STATE(4470), 1,
- sym_type_arguments,
- STATE(5183), 1,
- sym_optional_chain,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- STATE(2133), 2,
- sym_template_string,
- sym_arguments,
- [129538] = 2,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(1917), 9,
- sym__automatic_semicolon,
- sym__function_signature_automatic_semicolon,
- anon_sym_LBRACE,
- anon_sym_COMMA,
- anon_sym_SEMI,
- anon_sym_LBRACK,
- anon_sym_AMP,
- anon_sym_PIPE,
- anon_sym_extends,
- [129554] = 7,
- ACTIONS(241), 1,
- anon_sym_COMMA,
- ACTIONS(4243), 1,
- anon_sym_EQ,
- ACTIONS(5200), 1,
- anon_sym_RBRACE,
- STATE(4672), 1,
- aux_sym_object_pattern_repeat1,
- STATE(5156), 1,
- aux_sym_object_repeat1,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(3743), 4,
- anon_sym_LPAREN,
- anon_sym_COLON,
- anon_sym_LT,
- anon_sym_QMARK,
- [129580] = 7,
- ACTIONS(6403), 1,
- anon_sym_EQ,
- ACTIONS(6411), 1,
- anon_sym_COLON,
- STATE(4084), 1,
- sym_type_annotation,
- STATE(5058), 1,
- sym__initializer,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(6899), 2,
- anon_sym_BANG,
- anon_sym_QMARK,
- ACTIONS(6897), 3,
- sym__automatic_semicolon,
- anon_sym_COMMA,
- anon_sym_SEMI,
- [129606] = 9,
- ACTIONS(6252), 1,
- sym_identifier,
- ACTIONS(6256), 1,
- anon_sym_LBRACE,
- ACTIONS(6265), 1,
- sym_jsx_identifier,
- ACTIONS(6827), 1,
- anon_sym_GT,
- ACTIONS(6901), 1,
- anon_sym_SLASH_GT,
- STATE(3349), 1,
- aux_sym__jsx_start_opening_element_repeat1,
- STATE(3826), 1,
- sym_jsx_namespace_name,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- STATE(4391), 2,
- sym_jsx_expression,
- sym_jsx_attribute,
- [129636] = 2,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(1821), 9,
- sym__automatic_semicolon,
- sym__function_signature_automatic_semicolon,
- anon_sym_LBRACE,
- anon_sym_COMMA,
- anon_sym_SEMI,
- anon_sym_LBRACK,
- anon_sym_AMP,
- anon_sym_PIPE,
- anon_sym_extends,
- [129652] = 9,
- ACTIONS(6252), 1,
- sym_identifier,
- ACTIONS(6256), 1,
- anon_sym_LBRACE,
- ACTIONS(6265), 1,
- sym_jsx_identifier,
- ACTIONS(6793), 1,
- anon_sym_GT,
- ACTIONS(6903), 1,
- anon_sym_SLASH_GT,
- STATE(3345), 1,
- aux_sym__jsx_start_opening_element_repeat1,
- STATE(3826), 1,
- sym_jsx_namespace_name,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- STATE(4391), 2,
- sym_jsx_expression,
- sym_jsx_attribute,
- [129682] = 2,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(2331), 9,
- sym__automatic_semicolon,
- sym__function_signature_automatic_semicolon,
- anon_sym_LBRACE,
- anon_sym_COMMA,
- anon_sym_SEMI,
- anon_sym_LBRACK,
- anon_sym_AMP,
- anon_sym_PIPE,
- anon_sym_extends,
- [129698] = 8,
- ACTIONS(6403), 1,
- anon_sym_EQ,
- ACTIONS(6411), 1,
- anon_sym_COLON,
- ACTIONS(6905), 1,
- anon_sym_BANG,
- ACTIONS(6907), 1,
- anon_sym_QMARK,
- STATE(4382), 1,
- sym_type_annotation,
- STATE(5107), 1,
- sym__initializer,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(6415), 3,
- sym__automatic_semicolon,
- anon_sym_COMMA,
- anon_sym_SEMI,
- [129726] = 7,
- ACTIONS(241), 1,
- anon_sym_COMMA,
- ACTIONS(4243), 1,
- anon_sym_EQ,
- ACTIONS(5202), 1,
- anon_sym_RBRACE,
- STATE(4672), 1,
- aux_sym_object_pattern_repeat1,
- STATE(5156), 1,
- aux_sym_object_repeat1,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(3743), 4,
- anon_sym_LPAREN,
- anon_sym_COLON,
- anon_sym_LT,
- anon_sym_QMARK,
- [129752] = 8,
- ACTIONS(6403), 1,
- anon_sym_EQ,
- ACTIONS(6411), 1,
- anon_sym_COLON,
- ACTIONS(6909), 1,
- anon_sym_BANG,
- ACTIONS(6911), 1,
- anon_sym_QMARK,
- STATE(4112), 1,
- sym_type_annotation,
- STATE(5177), 1,
- sym__initializer,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(6494), 3,
- sym__automatic_semicolon,
- anon_sym_COMMA,
- anon_sym_SEMI,
- [129780] = 5,
- ACTIONS(6807), 1,
- anon_sym_AMP,
- ACTIONS(6809), 1,
- anon_sym_PIPE,
- ACTIONS(6811), 1,
- anon_sym_extends,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(4214), 6,
- sym__automatic_semicolon,
- sym__function_signature_automatic_semicolon,
- anon_sym_LBRACE,
- anon_sym_COMMA,
- anon_sym_SEMI,
- anon_sym_LBRACK,
- [129802] = 10,
- ACTIONS(825), 1,
- anon_sym_BQUOTE,
- ACTIONS(3969), 1,
- anon_sym_LPAREN,
- ACTIONS(4059), 1,
- anon_sym_QMARK_DOT,
- ACTIONS(5991), 1,
- anon_sym_LT,
- ACTIONS(6913), 1,
- anon_sym_DOT,
- STATE(1603), 1,
- sym_arguments,
- STATE(1757), 1,
- sym_template_string,
- STATE(4436), 1,
- sym_type_arguments,
- STATE(5393), 1,
- sym_optional_chain,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- [129834] = 7,
- ACTIONS(241), 1,
- anon_sym_COMMA,
- ACTIONS(725), 1,
- anon_sym_RBRACE,
- ACTIONS(4243), 1,
- anon_sym_EQ,
- STATE(4672), 1,
- aux_sym_object_pattern_repeat1,
- STATE(5156), 1,
- aux_sym_object_repeat1,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(3743), 4,
- anon_sym_LPAREN,
- anon_sym_COLON,
- anon_sym_LT,
- anon_sym_QMARK,
- [129860] = 4,
- ACTIONS(6915), 1,
- anon_sym_COLON,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- STATE(4379), 3,
- sym_type_annotation,
- sym_asserts_annotation,
- sym_type_predicate_annotation,
- ACTIONS(6743), 5,
- sym__automatic_semicolon,
- sym__function_signature_automatic_semicolon,
- anon_sym_LBRACE,
- anon_sym_COMMA,
- anon_sym_SEMI,
- [129880] = 8,
- ACTIONS(6403), 1,
- anon_sym_EQ,
- ACTIONS(6411), 1,
- anon_sym_COLON,
- ACTIONS(6917), 1,
- anon_sym_BANG,
- ACTIONS(6919), 1,
- anon_sym_QMARK,
- STATE(4128), 1,
- sym_type_annotation,
- STATE(4609), 1,
- sym__initializer,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(6494), 3,
- sym__automatic_semicolon,
- anon_sym_COMMA,
- anon_sym_SEMI,
- [129908] = 10,
- ACTIONS(2581), 1,
- anon_sym_LT,
- ACTIONS(6725), 1,
- anon_sym_LBRACE,
- ACTIONS(6835), 1,
- anon_sym_extends,
- ACTIONS(6837), 1,
- anon_sym_implements,
- STATE(2230), 1,
- sym_class_body,
- STATE(3505), 1,
- sym_type_parameters,
- STATE(5071), 1,
- sym_extends_clause,
- STATE(5359), 1,
- sym_class_heritage,
- STATE(5674), 1,
- sym_implements_clause,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- [129940] = 8,
- ACTIONS(6403), 1,
- anon_sym_EQ,
- ACTIONS(6411), 1,
- anon_sym_COLON,
- ACTIONS(6921), 1,
- anon_sym_BANG,
- ACTIONS(6923), 1,
- anon_sym_QMARK,
- STATE(4133), 1,
- sym_type_annotation,
- STATE(4626), 1,
- sym__initializer,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(6494), 3,
- sym__automatic_semicolon,
- anon_sym_COMMA,
- anon_sym_SEMI,
- [129968] = 8,
- ACTIONS(6403), 1,
- anon_sym_EQ,
- ACTIONS(6411), 1,
- anon_sym_COLON,
- ACTIONS(6925), 1,
- anon_sym_BANG,
- ACTIONS(6927), 1,
- anon_sym_QMARK,
- STATE(4134), 1,
- sym_type_annotation,
- STATE(4629), 1,
- sym__initializer,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(6494), 3,
- sym__automatic_semicolon,
- anon_sym_COMMA,
- anon_sym_SEMI,
- [129996] = 2,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(4386), 9,
- sym__automatic_semicolon,
- sym__function_signature_automatic_semicolon,
- anon_sym_LBRACE,
- anon_sym_COMMA,
- anon_sym_SEMI,
- anon_sym_LBRACK,
- anon_sym_AMP,
- anon_sym_PIPE,
- anon_sym_extends,
- [130012] = 8,
- ACTIONS(6403), 1,
- anon_sym_EQ,
- ACTIONS(6411), 1,
- anon_sym_COLON,
- ACTIONS(6929), 1,
- anon_sym_BANG,
- ACTIONS(6931), 1,
- anon_sym_QMARK,
- STATE(4137), 1,
- sym_type_annotation,
- STATE(4640), 1,
- sym__initializer,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(6494), 3,
- sym__automatic_semicolon,
- anon_sym_COMMA,
- anon_sym_SEMI,
- [130040] = 2,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(4392), 9,
- sym__automatic_semicolon,
- sym__function_signature_automatic_semicolon,
- anon_sym_LBRACE,
- anon_sym_COMMA,
- anon_sym_SEMI,
- anon_sym_LBRACK,
- anon_sym_AMP,
- anon_sym_PIPE,
- anon_sym_extends,
- [130056] = 10,
- ACTIONS(825), 1,
- anon_sym_BQUOTE,
- ACTIONS(3969), 1,
- anon_sym_LPAREN,
- ACTIONS(3973), 1,
- anon_sym_DOT,
- ACTIONS(4059), 1,
- anon_sym_QMARK_DOT,
- ACTIONS(6246), 1,
- anon_sym_LT,
- STATE(1757), 1,
- sym_template_string,
- STATE(1817), 1,
- sym_arguments,
- STATE(2988), 1,
- sym_type_arguments,
- STATE(5393), 1,
- sym_optional_chain,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- [130088] = 2,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(4396), 9,
- sym__automatic_semicolon,
- sym__function_signature_automatic_semicolon,
- anon_sym_LBRACE,
- anon_sym_COMMA,
- anon_sym_SEMI,
- anon_sym_LBRACK,
- anon_sym_AMP,
- anon_sym_PIPE,
- anon_sym_extends,
- [130104] = 3,
- ACTIONS(6807), 1,
- anon_sym_AMP,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(4400), 8,
- sym__automatic_semicolon,
- sym__function_signature_automatic_semicolon,
- anon_sym_LBRACE,
- anon_sym_COMMA,
- anon_sym_SEMI,
- anon_sym_LBRACK,
- anon_sym_PIPE,
- anon_sym_extends,
- [130122] = 2,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(4144), 9,
- sym__automatic_semicolon,
- sym__function_signature_automatic_semicolon,
- anon_sym_LBRACE,
- anon_sym_COMMA,
- anon_sym_SEMI,
- anon_sym_LBRACK,
- anon_sym_AMP,
- anon_sym_PIPE,
- anon_sym_extends,
- [130138] = 5,
- ACTIONS(6305), 1,
- anon_sym_DOT,
- ACTIONS(6666), 1,
- anon_sym_LPAREN,
- STATE(2847), 1,
- sym_arguments,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(4021), 6,
- anon_sym_as,
- anon_sym_LBRACK,
- anon_sym_RBRACK,
- anon_sym_AMP,
- anon_sym_PIPE,
- anon_sym_extends,
- [130160] = 6,
- ACTIONS(6554), 1,
- anon_sym_AMP,
- ACTIONS(6556), 1,
- anon_sym_PIPE,
- ACTIONS(6558), 1,
- anon_sym_extends,
- ACTIONS(6933), 1,
- anon_sym_EQ,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(6739), 5,
- anon_sym_LBRACE,
- anon_sym_COMMA,
- anon_sym_RPAREN,
- anon_sym_RBRACK,
- anon_sym_EQ_GT,
- [130184] = 9,
- ACTIONS(825), 1,
- anon_sym_BQUOTE,
- ACTIONS(3969), 1,
- anon_sym_LPAREN,
- ACTIONS(3973), 1,
- anon_sym_DOT,
- ACTIONS(4059), 1,
- anon_sym_QMARK_DOT,
- ACTIONS(5991), 1,
- anon_sym_LT,
- STATE(4436), 1,
- sym_type_arguments,
- STATE(5393), 1,
- sym_optional_chain,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- STATE(1757), 2,
- sym_template_string,
- sym_arguments,
- [130214] = 2,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(4404), 9,
- sym__automatic_semicolon,
- sym__function_signature_automatic_semicolon,
- anon_sym_LBRACE,
- anon_sym_COMMA,
- anon_sym_SEMI,
- anon_sym_LBRACK,
- anon_sym_AMP,
- anon_sym_PIPE,
- anon_sym_extends,
- [130230] = 2,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(4408), 9,
- sym__automatic_semicolon,
- sym__function_signature_automatic_semicolon,
- anon_sym_LBRACE,
- anon_sym_COMMA,
- anon_sym_SEMI,
- anon_sym_LBRACK,
- anon_sym_AMP,
- anon_sym_PIPE,
- anon_sym_extends,
- [130246] = 5,
- ACTIONS(6807), 1,
- anon_sym_AMP,
- ACTIONS(6809), 1,
- anon_sym_PIPE,
- ACTIONS(6811), 1,
- anon_sym_extends,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(4422), 6,
- sym__automatic_semicolon,
- sym__function_signature_automatic_semicolon,
- anon_sym_LBRACE,
- anon_sym_COMMA,
- anon_sym_SEMI,
- anon_sym_LBRACK,
- [130268] = 4,
- ACTIONS(6845), 1,
- anon_sym_LBRACK,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(4344), 3,
- anon_sym_AMP,
- anon_sym_PIPE,
- anon_sym_extends,
- ACTIONS(4426), 5,
- sym__automatic_semicolon,
- sym__function_signature_automatic_semicolon,
- anon_sym_LBRACE,
- anon_sym_COMMA,
- anon_sym_SEMI,
- [130288] = 8,
- ACTIONS(6403), 1,
- anon_sym_EQ,
- ACTIONS(6411), 1,
- anon_sym_COLON,
- ACTIONS(6935), 1,
- anon_sym_BANG,
- ACTIONS(6937), 1,
- anon_sym_QMARK,
- STATE(4243), 1,
- sym_type_annotation,
- STATE(4870), 1,
- sym__initializer,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(6813), 3,
- sym__automatic_semicolon,
- anon_sym_COMMA,
- anon_sym_SEMI,
- [130316] = 8,
- ACTIONS(6403), 1,
- anon_sym_EQ,
- ACTIONS(6411), 1,
- anon_sym_COLON,
- ACTIONS(6939), 1,
- anon_sym_BANG,
- ACTIONS(6941), 1,
- anon_sym_QMARK,
- STATE(3958), 1,
- sym_type_annotation,
- STATE(4717), 1,
- sym__initializer,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(6415), 3,
- sym__automatic_semicolon,
- anon_sym_COMMA,
- anon_sym_SEMI,
- [130344] = 7,
- ACTIONS(6256), 1,
- anon_sym_LBRACE,
- ACTIONS(6783), 1,
- anon_sym_DQUOTE,
- ACTIONS(6785), 1,
- anon_sym_SQUOTE,
- ACTIONS(6787), 1,
- anon_sym_LT,
- STATE(2997), 1,
- sym_jsx_opening_element,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- STATE(4238), 4,
- sym_jsx_element,
- sym_jsx_expression,
- sym_jsx_self_closing_element,
- sym__jsx_string,
- [130370] = 8,
- ACTIONS(2275), 1,
- anon_sym_DQUOTE,
- ACTIONS(2277), 1,
- anon_sym_SQUOTE,
- ACTIONS(6767), 1,
- sym_identifier,
- ACTIONS(6943), 1,
- anon_sym_RBRACE,
- STATE(5415), 1,
- sym_export_specifier,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(6769), 2,
- anon_sym_type,
- anon_sym_typeof,
- STATE(5022), 2,
- sym__module_export_name,
- sym_string,
- [130398] = 2,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(2323), 9,
- sym__automatic_semicolon,
- sym__function_signature_automatic_semicolon,
- anon_sym_LBRACE,
- anon_sym_COMMA,
- anon_sym_SEMI,
- anon_sym_LBRACK,
- anon_sym_AMP,
- anon_sym_PIPE,
- anon_sym_extends,
- [130414] = 3,
- ACTIONS(6945), 1,
- anon_sym_extends,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(4430), 8,
- sym__automatic_semicolon,
- sym__function_signature_automatic_semicolon,
- anon_sym_LBRACE,
- anon_sym_COMMA,
- anon_sym_SEMI,
- anon_sym_LBRACK,
- anon_sym_AMP,
- anon_sym_PIPE,
- [130432] = 8,
- ACTIONS(6947), 1,
- sym_identifier,
- ACTIONS(6950), 1,
- anon_sym_LBRACE,
- ACTIONS(6955), 1,
- sym_jsx_identifier,
- STATE(3345), 1,
- aux_sym__jsx_start_opening_element_repeat1,
- STATE(3826), 1,
- sym_jsx_namespace_name,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(6953), 2,
- anon_sym_GT,
- anon_sym_SLASH_GT,
- STATE(4391), 2,
- sym_jsx_expression,
- sym_jsx_attribute,
- [130460] = 3,
- ACTIONS(6845), 1,
- anon_sym_LBRACK,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(4436), 8,
- sym__automatic_semicolon,
- sym__function_signature_automatic_semicolon,
- anon_sym_LBRACE,
- anon_sym_COMMA,
- anon_sym_SEMI,
- anon_sym_AMP,
- anon_sym_PIPE,
- anon_sym_extends,
- [130478] = 9,
- ACTIONS(2275), 1,
- anon_sym_DQUOTE,
- ACTIONS(2277), 1,
- anon_sym_SQUOTE,
- ACTIONS(6701), 1,
- sym_identifier,
- ACTIONS(6703), 1,
- anon_sym_type,
- ACTIONS(6709), 1,
- anon_sym_typeof,
- STATE(5185), 1,
- sym_import_specifier,
- STATE(5188), 1,
- sym__import_identifier,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- STATE(5579), 2,
- sym__module_export_name,
- sym_string,
- [130508] = 10,
- ACTIONS(2581), 1,
- anon_sym_LT,
- ACTIONS(6725), 1,
- anon_sym_LBRACE,
- ACTIONS(6835), 1,
- anon_sym_extends,
- ACTIONS(6837), 1,
- anon_sym_implements,
- STATE(2267), 1,
- sym_class_body,
- STATE(3523), 1,
- sym_type_parameters,
- STATE(5071), 1,
- sym_extends_clause,
- STATE(5476), 1,
- sym_class_heritage,
- STATE(5674), 1,
- sym_implements_clause,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- [130540] = 9,
- ACTIONS(6252), 1,
- sym_identifier,
- ACTIONS(6256), 1,
- anon_sym_LBRACE,
- ACTIONS(6265), 1,
- sym_jsx_identifier,
- ACTIONS(6789), 1,
- anon_sym_GT,
- ACTIONS(6958), 1,
- anon_sym_SLASH_GT,
- STATE(3345), 1,
- aux_sym__jsx_start_opening_element_repeat1,
- STATE(3826), 1,
- sym_jsx_namespace_name,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- STATE(4391), 2,
- sym_jsx_expression,
- sym_jsx_attribute,
- [130570] = 10,
- ACTIONS(2581), 1,
- anon_sym_LT,
- ACTIONS(6835), 1,
- anon_sym_extends,
- ACTIONS(6837), 1,
- anon_sym_implements,
- ACTIONS(6960), 1,
- anon_sym_LBRACE,
- STATE(233), 1,
- sym_class_body,
- STATE(3698), 1,
- sym_type_parameters,
- STATE(5071), 1,
- sym_extends_clause,
- STATE(5387), 1,
- sym_class_heritage,
- STATE(5674), 1,
- sym_implements_clause,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- [130602] = 2,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(6962), 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,
- [130618] = 9,
- ACTIONS(6252), 1,
- sym_identifier,
- ACTIONS(6256), 1,
- anon_sym_LBRACE,
- ACTIONS(6265), 1,
- sym_jsx_identifier,
- ACTIONS(6574), 1,
- anon_sym_GT,
- ACTIONS(6576), 1,
- anon_sym_SLASH_GT,
- STATE(3289), 1,
- aux_sym__jsx_start_opening_element_repeat1,
- STATE(3826), 1,
- sym_jsx_namespace_name,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- STATE(4391), 2,
- sym_jsx_expression,
- sym_jsx_attribute,
- [130648] = 9,
- ACTIONS(6252), 1,
- sym_identifier,
- ACTIONS(6256), 1,
- anon_sym_LBRACE,
- ACTIONS(6265), 1,
- sym_jsx_identifier,
- ACTIONS(6793), 1,
- anon_sym_GT,
- ACTIONS(6964), 1,
- anon_sym_SLASH_GT,
- STATE(3345), 1,
- aux_sym__jsx_start_opening_element_repeat1,
- STATE(3826), 1,
- sym_jsx_namespace_name,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- STATE(4391), 2,
- sym_jsx_expression,
- sym_jsx_attribute,
- [130678] = 7,
- ACTIONS(6403), 1,
- anon_sym_EQ,
- ACTIONS(6411), 1,
- anon_sym_COLON,
- STATE(4163), 1,
- sym_type_annotation,
- STATE(4725), 1,
- sym__initializer,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(6461), 2,
- anon_sym_BANG,
- anon_sym_QMARK,
- ACTIONS(6459), 3,
- sym__automatic_semicolon,
- anon_sym_COMMA,
- anon_sym_SEMI,
- [130704] = 10,
- ACTIONS(2581), 1,
- anon_sym_LT,
- ACTIONS(6725), 1,
- anon_sym_LBRACE,
- ACTIONS(6835), 1,
- anon_sym_extends,
- ACTIONS(6837), 1,
- anon_sym_implements,
- STATE(2206), 1,
- sym_class_body,
- STATE(3549), 1,
- sym_type_parameters,
- STATE(5071), 1,
- sym_extends_clause,
- STATE(5413), 1,
- sym_class_heritage,
- STATE(5674), 1,
- sym_implements_clause,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- [130736] = 9,
- ACTIONS(6252), 1,
- sym_identifier,
- ACTIONS(6256), 1,
- anon_sym_LBRACE,
- ACTIONS(6265), 1,
- sym_jsx_identifier,
- ACTIONS(6574), 1,
- anon_sym_GT,
- ACTIONS(6596), 1,
- anon_sym_SLASH_GT,
- STATE(3432), 1,
- aux_sym__jsx_start_opening_element_repeat1,
- STATE(3826), 1,
- sym_jsx_namespace_name,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- STATE(4391), 2,
- sym_jsx_expression,
- sym_jsx_attribute,
- [130766] = 9,
- ACTIONS(6252), 1,
- sym_identifier,
- ACTIONS(6256), 1,
- anon_sym_LBRACE,
- ACTIONS(6265), 1,
- sym_jsx_identifier,
- ACTIONS(6823), 1,
- anon_sym_GT,
- ACTIONS(6966), 1,
- anon_sym_SLASH_GT,
- STATE(3345), 1,
- aux_sym__jsx_start_opening_element_repeat1,
- STATE(3826), 1,
- sym_jsx_namespace_name,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- STATE(4391), 2,
- sym_jsx_expression,
- sym_jsx_attribute,
- [130796] = 8,
- ACTIONS(6403), 1,
- anon_sym_EQ,
- ACTIONS(6411), 1,
- anon_sym_COLON,
- ACTIONS(6968), 1,
- anon_sym_BANG,
- ACTIONS(6970), 1,
- anon_sym_QMARK,
- STATE(4413), 1,
- sym_type_annotation,
- STATE(5167), 1,
- sym__initializer,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(6415), 3,
- sym__automatic_semicolon,
- anon_sym_COMMA,
- anon_sym_SEMI,
- [130824] = 2,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(4334), 9,
- sym__automatic_semicolon,
- sym__function_signature_automatic_semicolon,
- anon_sym_LBRACE,
- anon_sym_COMMA,
- anon_sym_SEMI,
- anon_sym_LBRACK,
- anon_sym_AMP,
- anon_sym_PIPE,
- anon_sym_extends,
- [130840] = 9,
- ACTIONS(6252), 1,
- sym_identifier,
- ACTIONS(6256), 1,
- anon_sym_LBRACE,
- ACTIONS(6265), 1,
- sym_jsx_identifier,
- ACTIONS(6269), 1,
- anon_sym_SLASH_GT,
- ACTIONS(6574), 1,
- anon_sym_GT,
- STATE(3380), 1,
- aux_sym__jsx_start_opening_element_repeat1,
- STATE(3826), 1,
- sym_jsx_namespace_name,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- STATE(4391), 2,
- sym_jsx_expression,
- sym_jsx_attribute,
- [130870] = 8,
- ACTIONS(2275), 1,
- anon_sym_DQUOTE,
- ACTIONS(2277), 1,
- anon_sym_SQUOTE,
- ACTIONS(6767), 1,
- sym_identifier,
- ACTIONS(6972), 1,
- anon_sym_RBRACE,
- STATE(5415), 1,
- sym_export_specifier,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(6769), 2,
- anon_sym_type,
- anon_sym_typeof,
- STATE(5022), 2,
- sym__module_export_name,
- sym_string,
- [130898] = 9,
- ACTIONS(6252), 1,
- sym_identifier,
- ACTIONS(6256), 1,
- anon_sym_LBRACE,
- ACTIONS(6265), 1,
- sym_jsx_identifier,
- ACTIONS(6827), 1,
- anon_sym_GT,
- ACTIONS(6974), 1,
- anon_sym_SLASH_GT,
- STATE(3252), 1,
- aux_sym__jsx_start_opening_element_repeat1,
- STATE(3826), 1,
- sym_jsx_namespace_name,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- STATE(4391), 2,
- sym_jsx_expression,
- sym_jsx_attribute,
- [130928] = 10,
- ACTIONS(2581), 1,
- anon_sym_LT,
- ACTIONS(6835), 1,
- anon_sym_extends,
- ACTIONS(6837), 1,
- anon_sym_implements,
- ACTIONS(6976), 1,
- anon_sym_LBRACE,
- STATE(3621), 1,
- sym_type_parameters,
- STATE(3943), 1,
- sym_class_body,
- STATE(5071), 1,
- sym_extends_clause,
- STATE(5316), 1,
- sym_class_heritage,
- STATE(5674), 1,
- sym_implements_clause,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- [130960] = 2,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(4015), 9,
- sym__automatic_semicolon,
- sym__function_signature_automatic_semicolon,
- anon_sym_LBRACE,
- anon_sym_COMMA,
- anon_sym_SEMI,
- anon_sym_LBRACK,
- anon_sym_AMP,
- anon_sym_PIPE,
- anon_sym_extends,
- [130976] = 8,
- ACTIONS(6403), 1,
- anon_sym_EQ,
- ACTIONS(6411), 1,
- anon_sym_COLON,
- ACTIONS(6978), 1,
- anon_sym_BANG,
- ACTIONS(6980), 1,
- anon_sym_QMARK,
- STATE(4148), 1,
- sym_type_annotation,
- STATE(4678), 1,
- sym__initializer,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(6494), 3,
- sym__automatic_semicolon,
- anon_sym_COMMA,
- anon_sym_SEMI,
- [131004] = 7,
- ACTIONS(6403), 1,
- anon_sym_EQ,
- ACTIONS(6411), 1,
- anon_sym_COLON,
- STATE(4080), 1,
- sym_type_annotation,
- STATE(5117), 1,
- sym__initializer,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(6445), 2,
- anon_sym_BANG,
- anon_sym_QMARK,
- ACTIONS(6443), 3,
- sym__automatic_semicolon,
- anon_sym_COMMA,
- anon_sym_SEMI,
- [131030] = 10,
- ACTIONS(2581), 1,
- anon_sym_LT,
- ACTIONS(6763), 1,
- anon_sym_LBRACE,
- ACTIONS(6835), 1,
- anon_sym_extends,
- ACTIONS(6837), 1,
- anon_sym_implements,
- STATE(1687), 1,
- sym_class_body,
- STATE(3624), 1,
- sym_type_parameters,
- STATE(5071), 1,
- sym_extends_clause,
- STATE(5339), 1,
- sym_class_heritage,
- STATE(5674), 1,
- sym_implements_clause,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- [131062] = 9,
- ACTIONS(6252), 1,
- sym_identifier,
- ACTIONS(6256), 1,
- anon_sym_LBRACE,
- ACTIONS(6265), 1,
- sym_jsx_identifier,
- ACTIONS(6841), 1,
- anon_sym_GT,
- ACTIONS(6982), 1,
- anon_sym_SLASH_GT,
- STATE(3345), 1,
- aux_sym__jsx_start_opening_element_repeat1,
- STATE(3826), 1,
- sym_jsx_namespace_name,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- STATE(4391), 2,
- sym_jsx_expression,
- sym_jsx_attribute,
- [131092] = 9,
- ACTIONS(6252), 1,
- sym_identifier,
- ACTIONS(6256), 1,
- anon_sym_LBRACE,
- ACTIONS(6265), 1,
- sym_jsx_identifier,
- ACTIONS(6273), 1,
- anon_sym_SLASH_GT,
- ACTIONS(6574), 1,
- anon_sym_GT,
- STATE(3435), 1,
- aux_sym__jsx_start_opening_element_repeat1,
- STATE(3826), 1,
- sym_jsx_namespace_name,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- STATE(4391), 2,
- sym_jsx_expression,
- sym_jsx_attribute,
- [131122] = 8,
- ACTIONS(6403), 1,
- anon_sym_EQ,
- ACTIONS(6411), 1,
- anon_sym_COLON,
- ACTIONS(6984), 1,
- anon_sym_BANG,
- ACTIONS(6986), 1,
- anon_sym_QMARK,
- STATE(4335), 1,
- sym_type_annotation,
- STATE(5043), 1,
- sym__initializer,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(6449), 3,
- sym__automatic_semicolon,
- anon_sym_COMMA,
- anon_sym_SEMI,
- [131150] = 8,
- ACTIONS(6403), 1,
- anon_sym_EQ,
- ACTIONS(6411), 1,
- anon_sym_COLON,
- ACTIONS(6988), 1,
- anon_sym_BANG,
- ACTIONS(6990), 1,
- anon_sym_QMARK,
- STATE(4397), 1,
- sym_type_annotation,
- STATE(5122), 1,
- sym__initializer,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(6449), 3,
- sym__automatic_semicolon,
- anon_sym_COMMA,
- anon_sym_SEMI,
- [131178] = 8,
- ACTIONS(6403), 1,
- anon_sym_EQ,
- ACTIONS(6411), 1,
- anon_sym_COLON,
- ACTIONS(6992), 1,
- anon_sym_BANG,
- ACTIONS(6994), 1,
- anon_sym_QMARK,
- STATE(4415), 1,
- sym_type_annotation,
- STATE(5174), 1,
- sym__initializer,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(6449), 3,
- sym__automatic_semicolon,
- anon_sym_COMMA,
- anon_sym_SEMI,
- [131206] = 9,
- ACTIONS(6252), 1,
- sym_identifier,
- ACTIONS(6256), 1,
- anon_sym_LBRACE,
- ACTIONS(6265), 1,
- sym_jsx_identifier,
- ACTIONS(6823), 1,
- anon_sym_GT,
- ACTIONS(6996), 1,
- anon_sym_SLASH_GT,
- STATE(3345), 1,
- aux_sym__jsx_start_opening_element_repeat1,
- STATE(3826), 1,
- sym_jsx_namespace_name,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- STATE(4391), 2,
- sym_jsx_expression,
- sym_jsx_attribute,
- [131236] = 8,
- ACTIONS(6403), 1,
- anon_sym_EQ,
- ACTIONS(6411), 1,
- anon_sym_COLON,
- ACTIONS(6998), 1,
- anon_sym_BANG,
- ACTIONS(7000), 1,
- anon_sym_QMARK,
- STATE(3949), 1,
- sym_type_annotation,
- STATE(5137), 1,
- sym__initializer,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(6449), 3,
- sym__automatic_semicolon,
- anon_sym_COMMA,
- anon_sym_SEMI,
- [131264] = 8,
- ACTIONS(6403), 1,
- anon_sym_EQ,
- ACTIONS(6411), 1,
- anon_sym_COLON,
- ACTIONS(7002), 1,
- anon_sym_BANG,
- ACTIONS(7004), 1,
- anon_sym_QMARK,
- STATE(3963), 1,
- sym_type_annotation,
- STATE(4715), 1,
- sym__initializer,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(6449), 3,
- sym__automatic_semicolon,
- anon_sym_COMMA,
- anon_sym_SEMI,
- [131292] = 9,
- ACTIONS(6252), 1,
- sym_identifier,
- ACTIONS(6256), 1,
- anon_sym_LBRACE,
- ACTIONS(6265), 1,
- sym_jsx_identifier,
- ACTIONS(6827), 1,
- anon_sym_GT,
- ACTIONS(7006), 1,
- anon_sym_SLASH_GT,
- STATE(3408), 1,
- aux_sym__jsx_start_opening_element_repeat1,
- STATE(3826), 1,
- sym_jsx_namespace_name,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- STATE(4391), 2,
- sym_jsx_expression,
- sym_jsx_attribute,
- [131322] = 9,
- ACTIONS(6252), 1,
- sym_identifier,
- ACTIONS(6256), 1,
- anon_sym_LBRACE,
- ACTIONS(6265), 1,
- sym_jsx_identifier,
- ACTIONS(6841), 1,
- anon_sym_GT,
- ACTIONS(7008), 1,
- anon_sym_SLASH_GT,
- STATE(3345), 1,
- aux_sym__jsx_start_opening_element_repeat1,
- STATE(3826), 1,
- sym_jsx_namespace_name,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- STATE(4391), 2,
- sym_jsx_expression,
- sym_jsx_attribute,
- [131352] = 9,
- ACTIONS(6252), 1,
- sym_identifier,
- ACTIONS(6256), 1,
- anon_sym_LBRACE,
- ACTIONS(6265), 1,
- sym_jsx_identifier,
- ACTIONS(6849), 1,
- anon_sym_GT,
- ACTIONS(7010), 1,
- anon_sym_SLASH_GT,
- STATE(3409), 1,
- aux_sym__jsx_start_opening_element_repeat1,
- STATE(3826), 1,
- sym_jsx_namespace_name,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- STATE(4391), 2,
- sym_jsx_expression,
- sym_jsx_attribute,
- [131382] = 9,
- ACTIONS(6252), 1,
- sym_identifier,
- ACTIONS(6256), 1,
- anon_sym_LBRACE,
- ACTIONS(6265), 1,
- sym_jsx_identifier,
- ACTIONS(6853), 1,
- anon_sym_GT,
- ACTIONS(7012), 1,
- anon_sym_SLASH_GT,
- STATE(3345), 1,
- aux_sym__jsx_start_opening_element_repeat1,
- STATE(3826), 1,
- sym_jsx_namespace_name,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- STATE(4391), 2,
- sym_jsx_expression,
- sym_jsx_attribute,
- [131412] = 9,
- ACTIONS(6252), 1,
- sym_identifier,
- ACTIONS(6256), 1,
- anon_sym_LBRACE,
- ACTIONS(6265), 1,
- sym_jsx_identifier,
- ACTIONS(6861), 1,
- anon_sym_GT,
- ACTIONS(7014), 1,
- anon_sym_SLASH_GT,
- STATE(3345), 1,
- aux_sym__jsx_start_opening_element_repeat1,
- STATE(3826), 1,
- sym_jsx_namespace_name,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- STATE(4391), 2,
- sym_jsx_expression,
- sym_jsx_attribute,
- [131442] = 8,
- ACTIONS(6403), 1,
- anon_sym_EQ,
- ACTIONS(6411), 1,
- anon_sym_COLON,
- ACTIONS(7016), 1,
- anon_sym_BANG,
- ACTIONS(7018), 1,
- anon_sym_QMARK,
- STATE(4070), 1,
- sym_type_annotation,
- STATE(5002), 1,
- sym__initializer,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(6449), 3,
- sym__automatic_semicolon,
- anon_sym_COMMA,
- anon_sym_SEMI,
- [131470] = 8,
- ACTIONS(6403), 1,
- anon_sym_EQ,
- ACTIONS(6411), 1,
- anon_sym_COLON,
- ACTIONS(7020), 1,
- anon_sym_BANG,
- ACTIONS(7022), 1,
- anon_sym_QMARK,
- STATE(4127), 1,
- sym_type_annotation,
- STATE(5172), 1,
- sym__initializer,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(6449), 3,
- sym__automatic_semicolon,
- anon_sym_COMMA,
- anon_sym_SEMI,
- [131498] = 8,
- ACTIONS(6403), 1,
- anon_sym_EQ,
- ACTIONS(6411), 1,
- anon_sym_COLON,
- ACTIONS(7024), 1,
- anon_sym_BANG,
- ACTIONS(7026), 1,
- anon_sym_QMARK,
- STATE(4161), 1,
- sym_type_annotation,
- STATE(4707), 1,
- sym__initializer,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(6449), 3,
- sym__automatic_semicolon,
- anon_sym_COMMA,
- anon_sym_SEMI,
- [131526] = 10,
- ACTIONS(2581), 1,
- anon_sym_LT,
- ACTIONS(6835), 1,
- anon_sym_extends,
- ACTIONS(6837), 1,
- anon_sym_implements,
- ACTIONS(6976), 1,
- anon_sym_LBRACE,
- STATE(3640), 1,
- sym_type_parameters,
- STATE(3986), 1,
- sym_class_body,
- STATE(5071), 1,
- sym_extends_clause,
- STATE(5454), 1,
- sym_class_heritage,
- STATE(5674), 1,
- sym_implements_clause,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- [131558] = 2,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(2335), 9,
- sym__automatic_semicolon,
- sym__function_signature_automatic_semicolon,
- anon_sym_LBRACE,
- anon_sym_COMMA,
- anon_sym_SEMI,
- anon_sym_LBRACK,
- anon_sym_AMP,
- anon_sym_PIPE,
- anon_sym_extends,
- [131574] = 9,
- ACTIONS(6252), 1,
- sym_identifier,
- ACTIONS(6256), 1,
- anon_sym_LBRACE,
- ACTIONS(6265), 1,
- sym_jsx_identifier,
- ACTIONS(6849), 1,
- anon_sym_GT,
- ACTIONS(7028), 1,
- anon_sym_SLASH_GT,
- STATE(3353), 1,
- aux_sym__jsx_start_opening_element_repeat1,
- STATE(3826), 1,
- sym_jsx_namespace_name,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- STATE(4391), 2,
- sym_jsx_expression,
- sym_jsx_attribute,
- [131604] = 8,
- ACTIONS(6403), 1,
- anon_sym_EQ,
- ACTIONS(6411), 1,
- anon_sym_COLON,
- ACTIONS(7030), 1,
- anon_sym_BANG,
- ACTIONS(7032), 1,
- anon_sym_QMARK,
- STATE(4388), 1,
- sym_type_annotation,
- STATE(5120), 1,
- sym__initializer,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(6415), 3,
- sym__automatic_semicolon,
- anon_sym_COMMA,
- anon_sym_SEMI,
- [131632] = 8,
- ACTIONS(6403), 1,
- anon_sym_EQ,
- ACTIONS(6411), 1,
- anon_sym_COLON,
- ACTIONS(7034), 1,
- anon_sym_BANG,
- ACTIONS(7036), 1,
- anon_sym_QMARK,
- STATE(4172), 1,
- sym_type_annotation,
- STATE(4741), 1,
- sym__initializer,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(6494), 3,
- sym__automatic_semicolon,
- anon_sym_COMMA,
- anon_sym_SEMI,
- [131660] = 8,
- ACTIONS(6403), 1,
- anon_sym_EQ,
- ACTIONS(6411), 1,
- anon_sym_COLON,
- ACTIONS(7038), 1,
- anon_sym_BANG,
- ACTIONS(7040), 1,
- anon_sym_QMARK,
- STATE(4414), 1,
- sym_type_annotation,
- STATE(5168), 1,
- sym__initializer,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(6449), 3,
- sym__automatic_semicolon,
- anon_sym_COMMA,
- anon_sym_SEMI,
- [131688] = 8,
- ACTIONS(6403), 1,
- anon_sym_EQ,
- ACTIONS(6411), 1,
- anon_sym_COLON,
- ACTIONS(7042), 1,
- anon_sym_BANG,
- ACTIONS(7044), 1,
- anon_sym_QMARK,
- STATE(4389), 1,
- sym_type_annotation,
- STATE(5123), 1,
- sym__initializer,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(6415), 3,
- sym__automatic_semicolon,
- anon_sym_COMMA,
- anon_sym_SEMI,
- [131716] = 8,
- ACTIONS(6403), 1,
- anon_sym_EQ,
- ACTIONS(6411), 1,
- anon_sym_COLON,
- ACTIONS(7046), 1,
- anon_sym_BANG,
- ACTIONS(7048), 1,
- anon_sym_QMARK,
- STATE(4418), 1,
- sym_type_annotation,
- STATE(5180), 1,
- sym__initializer,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(6449), 3,
- sym__automatic_semicolon,
- anon_sym_COMMA,
- anon_sym_SEMI,
- [131744] = 8,
- ACTIONS(6403), 1,
- anon_sym_EQ,
- ACTIONS(6411), 1,
- anon_sym_COLON,
- ACTIONS(7050), 1,
- anon_sym_BANG,
- ACTIONS(7052), 1,
- anon_sym_QMARK,
- STATE(3923), 1,
- sym_type_annotation,
- STATE(4568), 1,
- sym__initializer,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(6449), 3,
- sym__automatic_semicolon,
- anon_sym_COMMA,
- anon_sym_SEMI,
- [131772] = 8,
- ACTIONS(6403), 1,
- anon_sym_EQ,
- ACTIONS(6411), 1,
- anon_sym_COLON,
- ACTIONS(7054), 1,
- anon_sym_BANG,
- ACTIONS(7056), 1,
- anon_sym_QMARK,
- STATE(4179), 1,
- sym_type_annotation,
- STATE(4750), 1,
- sym__initializer,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(6494), 3,
- sym__automatic_semicolon,
- anon_sym_COMMA,
- anon_sym_SEMI,
- [131800] = 2,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(4478), 9,
- sym__automatic_semicolon,
- sym__function_signature_automatic_semicolon,
- anon_sym_LBRACE,
- anon_sym_COMMA,
- anon_sym_SEMI,
- anon_sym_LBRACK,
- anon_sym_AMP,
- anon_sym_PIPE,
- anon_sym_extends,
- [131816] = 10,
- ACTIONS(825), 1,
- anon_sym_BQUOTE,
- ACTIONS(3969), 1,
- anon_sym_LPAREN,
- ACTIONS(4059), 1,
- anon_sym_QMARK_DOT,
- ACTIONS(5991), 1,
- anon_sym_LT,
- ACTIONS(6865), 1,
- anon_sym_DOT,
- STATE(1603), 1,
- sym_arguments,
- STATE(1757), 1,
- sym_template_string,
- STATE(4436), 1,
- sym_type_arguments,
- STATE(5393), 1,
- sym_optional_chain,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- [131848] = 8,
- ACTIONS(6403), 1,
- anon_sym_EQ,
- ACTIONS(6411), 1,
- anon_sym_COLON,
- ACTIONS(7058), 1,
- anon_sym_BANG,
- ACTIONS(7060), 1,
- anon_sym_QMARK,
- STATE(4181), 1,
- sym_type_annotation,
- STATE(4755), 1,
- sym__initializer,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(6494), 3,
- sym__automatic_semicolon,
- anon_sym_COMMA,
- anon_sym_SEMI,
- [131876] = 7,
- ACTIONS(241), 1,
- anon_sym_COMMA,
- ACTIONS(702), 1,
- anon_sym_RBRACE,
- ACTIONS(4243), 1,
- anon_sym_EQ,
- STATE(4672), 1,
- aux_sym_object_pattern_repeat1,
- STATE(5156), 1,
- aux_sym_object_repeat1,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(3743), 4,
- anon_sym_LPAREN,
- anon_sym_COLON,
- anon_sym_LT,
- anon_sym_QMARK,
- [131902] = 10,
- ACTIONS(2581), 1,
- anon_sym_LT,
- ACTIONS(6835), 1,
- anon_sym_extends,
- ACTIONS(6837), 1,
- anon_sym_implements,
- ACTIONS(6976), 1,
- anon_sym_LBRACE,
- STATE(717), 1,
- sym_class_body,
- STATE(3709), 1,
- sym_type_parameters,
- STATE(5071), 1,
- sym_extends_clause,
- STATE(5432), 1,
- sym_class_heritage,
- STATE(5674), 1,
- sym_implements_clause,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- [131934] = 2,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(4486), 9,
- sym__automatic_semicolon,
- sym__function_signature_automatic_semicolon,
- anon_sym_LBRACE,
- anon_sym_COMMA,
- anon_sym_SEMI,
- anon_sym_LBRACK,
- anon_sym_AMP,
- anon_sym_PIPE,
- anon_sym_extends,
- [131950] = 10,
- ACTIONS(2581), 1,
- anon_sym_LT,
- ACTIONS(6725), 1,
- anon_sym_LBRACE,
- ACTIONS(6835), 1,
- anon_sym_extends,
- ACTIONS(6837), 1,
- anon_sym_implements,
- STATE(2135), 1,
- sym_class_body,
- STATE(3650), 1,
- sym_type_parameters,
- STATE(5071), 1,
- sym_extends_clause,
- STATE(5497), 1,
- sym_class_heritage,
- STATE(5674), 1,
- sym_implements_clause,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- [131982] = 10,
- ACTIONS(2581), 1,
- anon_sym_LT,
- ACTIONS(6835), 1,
- anon_sym_extends,
- ACTIONS(6837), 1,
- anon_sym_implements,
- ACTIONS(6976), 1,
- anon_sym_LBRACE,
- STATE(3653), 1,
- sym_type_parameters,
- STATE(4007), 1,
- sym_class_body,
- STATE(5071), 1,
- sym_extends_clause,
- STATE(5513), 1,
- sym_class_heritage,
- STATE(5674), 1,
- sym_implements_clause,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- [132014] = 8,
- ACTIONS(6403), 1,
- anon_sym_EQ,
- ACTIONS(6411), 1,
- anon_sym_COLON,
- ACTIONS(7062), 1,
- anon_sym_BANG,
- ACTIONS(7064), 1,
- anon_sym_QMARK,
- STATE(4187), 1,
- sym_type_annotation,
- STATE(4765), 1,
- sym__initializer,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(6494), 3,
- sym__automatic_semicolon,
- anon_sym_COMMA,
- anon_sym_SEMI,
- [132042] = 10,
- ACTIONS(2581), 1,
- anon_sym_LT,
- ACTIONS(6763), 1,
- anon_sym_LBRACE,
- ACTIONS(6835), 1,
- anon_sym_extends,
- ACTIONS(6837), 1,
- anon_sym_implements,
- STATE(1715), 1,
- sym_class_body,
- STATE(3654), 1,
- sym_type_parameters,
- STATE(5071), 1,
- sym_extends_clause,
- STATE(5201), 1,
- sym_class_heritage,
- STATE(5674), 1,
- sym_implements_clause,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- [132074] = 2,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(4494), 9,
- sym__automatic_semicolon,
- sym__function_signature_automatic_semicolon,
- anon_sym_LBRACE,
- anon_sym_COMMA,
- anon_sym_SEMI,
- anon_sym_LBRACK,
- anon_sym_AMP,
- anon_sym_PIPE,
- anon_sym_extends,
- [132090] = 2,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(4498), 9,
- sym__automatic_semicolon,
- sym__function_signature_automatic_semicolon,
- anon_sym_LBRACE,
- anon_sym_COMMA,
- anon_sym_SEMI,
- anon_sym_LBRACK,
- anon_sym_AMP,
- anon_sym_PIPE,
- anon_sym_extends,
- [132106] = 9,
- ACTIONS(6252), 1,
- sym_identifier,
- ACTIONS(6256), 1,
- anon_sym_LBRACE,
- ACTIONS(6265), 1,
- sym_jsx_identifier,
- ACTIONS(6849), 1,
- anon_sym_GT,
- ACTIONS(7066), 1,
- anon_sym_SLASH_GT,
- STATE(3253), 1,
- aux_sym__jsx_start_opening_element_repeat1,
- STATE(3826), 1,
- sym_jsx_namespace_name,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- STATE(4391), 2,
- sym_jsx_expression,
- sym_jsx_attribute,
- [132136] = 8,
- ACTIONS(6403), 1,
- anon_sym_EQ,
- ACTIONS(6411), 1,
- anon_sym_COLON,
- ACTIONS(7068), 1,
- anon_sym_BANG,
- ACTIONS(7070), 1,
- anon_sym_QMARK,
- STATE(4194), 1,
- sym_type_annotation,
- STATE(4782), 1,
- sym__initializer,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(6494), 3,
- sym__automatic_semicolon,
- anon_sym_COMMA,
- anon_sym_SEMI,
- [132164] = 9,
- ACTIONS(6252), 1,
- sym_identifier,
- ACTIONS(6256), 1,
- anon_sym_LBRACE,
- ACTIONS(6265), 1,
- sym_jsx_identifier,
- ACTIONS(6789), 1,
- anon_sym_GT,
- ACTIONS(7072), 1,
- anon_sym_SLASH_GT,
- STATE(3345), 1,
- aux_sym__jsx_start_opening_element_repeat1,
- STATE(3826), 1,
- sym_jsx_namespace_name,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- STATE(4391), 2,
- sym_jsx_expression,
- sym_jsx_attribute,
- [132194] = 9,
- ACTIONS(6252), 1,
- sym_identifier,
- ACTIONS(6256), 1,
- anon_sym_LBRACE,
- ACTIONS(6265), 1,
- sym_jsx_identifier,
- ACTIONS(6793), 1,
- anon_sym_GT,
- ACTIONS(7074), 1,
- anon_sym_SLASH_GT,
- STATE(3345), 1,
- aux_sym__jsx_start_opening_element_repeat1,
- STATE(3826), 1,
- sym_jsx_namespace_name,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- STATE(4391), 2,
- sym_jsx_expression,
- sym_jsx_attribute,
- [132224] = 10,
- ACTIONS(89), 1,
- anon_sym_BQUOTE,
- ACTIONS(4059), 1,
- anon_sym_QMARK_DOT,
- ACTIONS(4519), 1,
- anon_sym_LPAREN,
- ACTIONS(4525), 1,
- anon_sym_DOT,
- ACTIONS(6246), 1,
- anon_sym_LT,
- STATE(2081), 1,
- sym_arguments,
- STATE(2133), 1,
- sym_template_string,
- STATE(3236), 1,
- sym_type_arguments,
- STATE(5183), 1,
- sym_optional_chain,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- [132256] = 10,
- ACTIONS(825), 1,
- anon_sym_BQUOTE,
- ACTIONS(3969), 1,
- anon_sym_LPAREN,
- ACTIONS(3973), 1,
- anon_sym_DOT,
- ACTIONS(4059), 1,
- anon_sym_QMARK_DOT,
- ACTIONS(6246), 1,
- anon_sym_LT,
- STATE(1593), 1,
- sym_arguments,
- STATE(1757), 1,
- sym_template_string,
- STATE(2988), 1,
- sym_type_arguments,
- STATE(5393), 1,
- sym_optional_chain,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- [132288] = 7,
- ACTIONS(6403), 1,
- anon_sym_EQ,
- ACTIONS(6411), 1,
- anon_sym_COLON,
- STATE(4338), 1,
- sym_type_annotation,
- STATE(5046), 1,
- sym__initializer,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(6504), 2,
- anon_sym_BANG,
- anon_sym_QMARK,
- ACTIONS(6502), 3,
- sym__automatic_semicolon,
- anon_sym_COMMA,
- anon_sym_SEMI,
- [132314] = 8,
- ACTIONS(6403), 1,
- anon_sym_EQ,
- ACTIONS(6411), 1,
- anon_sym_COLON,
- ACTIONS(7076), 1,
- anon_sym_BANG,
- ACTIONS(7078), 1,
- anon_sym_QMARK,
- STATE(3964), 1,
- sym_type_annotation,
- STATE(4827), 1,
- sym__initializer,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(6415), 3,
- sym__automatic_semicolon,
- anon_sym_COMMA,
- anon_sym_SEMI,
- [132342] = 10,
- ACTIONS(2581), 1,
- anon_sym_LT,
- ACTIONS(6835), 1,
- anon_sym_extends,
- ACTIONS(6837), 1,
- anon_sym_implements,
- ACTIONS(6976), 1,
- anon_sym_LBRACE,
- STATE(3662), 1,
- sym_type_parameters,
- STATE(4073), 1,
- sym_class_body,
- STATE(5071), 1,
- sym_extends_clause,
- STATE(5231), 1,
- sym_class_heritage,
- STATE(5674), 1,
- sym_implements_clause,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- [132374] = 4,
- ACTIONS(6915), 1,
- anon_sym_COLON,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- STATE(3936), 3,
- sym_type_annotation,
- sym_asserts_annotation,
- sym_type_predicate_annotation,
- ACTIONS(6753), 5,
- sym__automatic_semicolon,
- sym__function_signature_automatic_semicolon,
- anon_sym_LBRACE,
- anon_sym_COMMA,
- anon_sym_SEMI,
- [132394] = 2,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(4502), 9,
- sym__automatic_semicolon,
- sym__function_signature_automatic_semicolon,
- anon_sym_LBRACE,
- anon_sym_COMMA,
- anon_sym_SEMI,
- anon_sym_LBRACK,
- anon_sym_AMP,
- anon_sym_PIPE,
- anon_sym_extends,
- [132410] = 2,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(4506), 9,
- sym__automatic_semicolon,
- sym__function_signature_automatic_semicolon,
- anon_sym_LBRACE,
- anon_sym_COMMA,
- anon_sym_SEMI,
- anon_sym_LBRACK,
- anon_sym_AMP,
- anon_sym_PIPE,
- anon_sym_extends,
- [132426] = 9,
- ACTIONS(6252), 1,
- sym_identifier,
- ACTIONS(6256), 1,
- anon_sym_LBRACE,
- ACTIONS(6265), 1,
- sym_jsx_identifier,
- ACTIONS(6853), 1,
- anon_sym_GT,
- ACTIONS(7080), 1,
- anon_sym_SLASH_GT,
- STATE(3345), 1,
- aux_sym__jsx_start_opening_element_repeat1,
- STATE(3826), 1,
- sym_jsx_namespace_name,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- STATE(4391), 2,
- sym_jsx_expression,
- sym_jsx_attribute,
- [132456] = 2,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(4106), 9,
- sym__automatic_semicolon,
- sym__function_signature_automatic_semicolon,
- anon_sym_LBRACE,
- anon_sym_COMMA,
- anon_sym_SEMI,
- anon_sym_LBRACK,
- anon_sym_AMP,
- anon_sym_PIPE,
- anon_sym_extends,
- [132472] = 8,
- ACTIONS(6403), 1,
- anon_sym_EQ,
- ACTIONS(6411), 1,
- anon_sym_COLON,
- ACTIONS(7082), 1,
- anon_sym_BANG,
- ACTIONS(7084), 1,
- anon_sym_QMARK,
- STATE(4400), 1,
- sym_type_annotation,
- STATE(5138), 1,
- sym__initializer,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(6415), 3,
- sym__automatic_semicolon,
- anon_sym_COMMA,
- anon_sym_SEMI,
- [132500] = 5,
- ACTIONS(6807), 1,
- anon_sym_AMP,
- ACTIONS(6809), 1,
- anon_sym_PIPE,
- ACTIONS(6811), 1,
- anon_sym_extends,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(4106), 6,
- sym__automatic_semicolon,
- sym__function_signature_automatic_semicolon,
- anon_sym_LBRACE,
- anon_sym_COMMA,
- anon_sym_SEMI,
- anon_sym_LBRACK,
- [132522] = 10,
- ACTIONS(2581), 1,
- anon_sym_LT,
- ACTIONS(6835), 1,
- anon_sym_extends,
- ACTIONS(6837), 1,
- anon_sym_implements,
- ACTIONS(6976), 1,
- anon_sym_LBRACE,
- STATE(716), 1,
- sym_class_body,
- STATE(3545), 1,
- sym_type_parameters,
- STATE(5071), 1,
- sym_extends_clause,
- STATE(5194), 1,
- sym_class_heritage,
- STATE(5674), 1,
- sym_implements_clause,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- [132554] = 2,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(7086), 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,
- [132570] = 9,
- ACTIONS(6252), 1,
- sym_identifier,
- ACTIONS(6256), 1,
- anon_sym_LBRACE,
- ACTIONS(6265), 1,
- sym_jsx_identifier,
- ACTIONS(6853), 1,
- anon_sym_GT,
- ACTIONS(7088), 1,
- anon_sym_SLASH_GT,
- STATE(3345), 1,
- aux_sym__jsx_start_opening_element_repeat1,
- STATE(3826), 1,
- sym_jsx_namespace_name,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- STATE(4391), 2,
- sym_jsx_expression,
- sym_jsx_attribute,
- [132600] = 5,
- ACTIONS(6807), 1,
- anon_sym_AMP,
- ACTIONS(6809), 1,
- anon_sym_PIPE,
- ACTIONS(6811), 1,
- anon_sym_extends,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(4358), 6,
- sym__automatic_semicolon,
- sym__function_signature_automatic_semicolon,
- anon_sym_LBRACE,
- anon_sym_COMMA,
- anon_sym_SEMI,
- anon_sym_LBRACK,
- [132622] = 5,
- ACTIONS(6807), 1,
- anon_sym_AMP,
- ACTIONS(6809), 1,
- anon_sym_PIPE,
- ACTIONS(6811), 1,
- anon_sym_extends,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(4362), 6,
- sym__automatic_semicolon,
- sym__function_signature_automatic_semicolon,
- anon_sym_LBRACE,
- anon_sym_COMMA,
- anon_sym_SEMI,
- anon_sym_LBRACK,
- [132644] = 2,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(4132), 9,
- sym__automatic_semicolon,
- sym__function_signature_automatic_semicolon,
- anon_sym_LBRACE,
- anon_sym_COMMA,
- anon_sym_SEMI,
- anon_sym_LBRACK,
- anon_sym_AMP,
- anon_sym_PIPE,
- anon_sym_extends,
- [132660] = 3,
- ACTIONS(6807), 1,
- anon_sym_AMP,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(4136), 8,
- sym__automatic_semicolon,
- sym__function_signature_automatic_semicolon,
- anon_sym_LBRACE,
- anon_sym_COMMA,
- anon_sym_SEMI,
- anon_sym_LBRACK,
- anon_sym_PIPE,
- anon_sym_extends,
- [132678] = 2,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(4140), 9,
- sym__automatic_semicolon,
- sym__function_signature_automatic_semicolon,
- anon_sym_LBRACE,
- anon_sym_COMMA,
- anon_sym_SEMI,
- anon_sym_LBRACK,
- anon_sym_AMP,
- anon_sym_PIPE,
- anon_sym_extends,
- [132694] = 9,
- ACTIONS(6252), 1,
- sym_identifier,
- ACTIONS(6256), 1,
- anon_sym_LBRACE,
- ACTIONS(6265), 1,
- sym_jsx_identifier,
- ACTIONS(6823), 1,
- anon_sym_GT,
- ACTIONS(7090), 1,
- anon_sym_SLASH_GT,
- STATE(3345), 1,
- aux_sym__jsx_start_opening_element_repeat1,
- STATE(3826), 1,
- sym_jsx_namespace_name,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- STATE(4391), 2,
- sym_jsx_expression,
- sym_jsx_attribute,
- [132724] = 2,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(4472), 9,
- sym__automatic_semicolon,
- sym__function_signature_automatic_semicolon,
- anon_sym_LBRACE,
- anon_sym_COMMA,
- anon_sym_SEMI,
- anon_sym_LBRACK,
- anon_sym_AMP,
- anon_sym_PIPE,
- anon_sym_extends,
- [132740] = 9,
- ACTIONS(6252), 1,
- sym_identifier,
- ACTIONS(6256), 1,
- anon_sym_LBRACE,
- ACTIONS(6265), 1,
- sym_jsx_identifier,
- ACTIONS(6861), 1,
- anon_sym_GT,
- ACTIONS(7092), 1,
- anon_sym_SLASH_GT,
- STATE(3345), 1,
- aux_sym__jsx_start_opening_element_repeat1,
- STATE(3826), 1,
- sym_jsx_namespace_name,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- STATE(4391), 2,
- sym_jsx_expression,
- sym_jsx_attribute,
- [132770] = 10,
- ACTIONS(2581), 1,
- anon_sym_LT,
- ACTIONS(6835), 1,
- anon_sym_extends,
- ACTIONS(6837), 1,
- anon_sym_implements,
- ACTIONS(6960), 1,
- anon_sym_LBRACE,
- STATE(240), 1,
- sym_class_body,
- STATE(3671), 1,
- sym_type_parameters,
- STATE(5071), 1,
- sym_extends_clause,
- STATE(5400), 1,
- sym_class_heritage,
- STATE(5674), 1,
- sym_implements_clause,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- [132802] = 2,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(2319), 9,
- sym__automatic_semicolon,
- sym__function_signature_automatic_semicolon,
- anon_sym_LBRACE,
- anon_sym_COMMA,
- anon_sym_SEMI,
- anon_sym_LBRACK,
- anon_sym_AMP,
- anon_sym_PIPE,
- anon_sym_extends,
- [132818] = 9,
- ACTIONS(6252), 1,
- sym_identifier,
- ACTIONS(6256), 1,
- anon_sym_LBRACE,
- ACTIONS(6265), 1,
- sym_jsx_identifier,
- ACTIONS(6861), 1,
- anon_sym_GT,
- ACTIONS(7094), 1,
- anon_sym_SLASH_GT,
- STATE(3345), 1,
- aux_sym__jsx_start_opening_element_repeat1,
- STATE(3826), 1,
- sym_jsx_namespace_name,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- STATE(4391), 2,
- sym_jsx_expression,
- sym_jsx_attribute,
- [132848] = 10,
- ACTIONS(2581), 1,
- anon_sym_LT,
- ACTIONS(6835), 1,
- anon_sym_extends,
- ACTIONS(6837), 1,
- anon_sym_implements,
- ACTIONS(7096), 1,
- anon_sym_LBRACE,
- STATE(779), 1,
- sym_class_body,
- STATE(3531), 1,
- sym_type_parameters,
- STATE(5071), 1,
- sym_extends_clause,
- STATE(5343), 1,
- sym_class_heritage,
- STATE(5674), 1,
- sym_implements_clause,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- [132880] = 7,
- ACTIONS(241), 1,
- anon_sym_COMMA,
- ACTIONS(4243), 1,
- anon_sym_EQ,
- ACTIONS(5198), 1,
- anon_sym_RBRACE,
- STATE(4671), 1,
- aux_sym_object_repeat1,
- STATE(4672), 1,
- aux_sym_object_pattern_repeat1,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(3743), 4,
- anon_sym_LPAREN,
- anon_sym_COLON,
- anon_sym_LT,
- anon_sym_QMARK,
- [132906] = 2,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(7098), 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,
- [132922] = 10,
- ACTIONS(2581), 1,
- anon_sym_LT,
- ACTIONS(6835), 1,
- anon_sym_extends,
- ACTIONS(6837), 1,
- anon_sym_implements,
- ACTIONS(7096), 1,
- anon_sym_LBRACE,
- STATE(824), 1,
- sym_class_body,
- STATE(3720), 1,
- sym_type_parameters,
- STATE(5071), 1,
- sym_extends_clause,
- STATE(5258), 1,
- sym_class_heritage,
- STATE(5674), 1,
- sym_implements_clause,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- [132954] = 2,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(4183), 9,
- sym__automatic_semicolon,
- sym__function_signature_automatic_semicolon,
- anon_sym_LBRACE,
- anon_sym_COMMA,
- anon_sym_SEMI,
- anon_sym_LBRACK,
- anon_sym_AMP,
- anon_sym_PIPE,
- anon_sym_extends,
- [132970] = 7,
- ACTIONS(6411), 1,
- anon_sym_COLON,
- ACTIONS(6779), 1,
- anon_sym_EQ,
- STATE(4144), 1,
- sym__initializer,
- STATE(4267), 1,
- sym_type_annotation,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(6719), 2,
- anon_sym_in,
- anon_sym_of,
- ACTIONS(6715), 3,
- sym__automatic_semicolon,
- anon_sym_COMMA,
- anon_sym_SEMI,
- [132996] = 7,
- ACTIONS(6403), 1,
- anon_sym_EQ,
- ACTIONS(6411), 1,
- anon_sym_COLON,
- STATE(4267), 1,
- sym_type_annotation,
- STATE(4926), 1,
- sym__initializer,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(6719), 2,
- anon_sym_in,
- anon_sym_of,
- ACTIONS(6715), 3,
- sym__automatic_semicolon,
- anon_sym_COMMA,
- anon_sym_SEMI,
- [133022] = 8,
- ACTIONS(6403), 1,
- anon_sym_EQ,
- ACTIONS(6411), 1,
- anon_sym_COLON,
- ACTIONS(7100), 1,
- anon_sym_BANG,
- ACTIONS(7102), 1,
- anon_sym_QMARK,
- STATE(3966), 1,
- sym_type_annotation,
- STATE(4860), 1,
- sym__initializer,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(6415), 3,
- sym__automatic_semicolon,
- anon_sym_COMMA,
- anon_sym_SEMI,
- [133050] = 7,
- ACTIONS(241), 1,
- anon_sym_COMMA,
- ACTIONS(4243), 1,
- anon_sym_EQ,
- ACTIONS(5109), 1,
- anon_sym_RBRACE,
- STATE(4672), 1,
- aux_sym_object_pattern_repeat1,
- STATE(5156), 1,
- aux_sym_object_repeat1,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(3743), 4,
- anon_sym_LPAREN,
- anon_sym_COLON,
- anon_sym_LT,
- anon_sym_QMARK,
- [133076] = 10,
- ACTIONS(825), 1,
- anon_sym_BQUOTE,
- ACTIONS(3969), 1,
- anon_sym_LPAREN,
- ACTIONS(4059), 1,
- anon_sym_QMARK_DOT,
- ACTIONS(5991), 1,
- anon_sym_LT,
- ACTIONS(7104), 1,
- anon_sym_DOT,
- STATE(1757), 1,
- sym_template_string,
- STATE(1815), 1,
- sym_arguments,
- STATE(4436), 1,
- sym_type_arguments,
- STATE(5393), 1,
- sym_optional_chain,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- [133108] = 8,
- ACTIONS(6403), 1,
- anon_sym_EQ,
- ACTIONS(6411), 1,
- anon_sym_COLON,
- ACTIONS(7106), 1,
- anon_sym_BANG,
- ACTIONS(7108), 1,
- anon_sym_QMARK,
- STATE(3969), 1,
- sym_type_annotation,
- STATE(4902), 1,
- sym__initializer,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(6415), 3,
- sym__automatic_semicolon,
- anon_sym_COMMA,
- anon_sym_SEMI,
- [133136] = 8,
- ACTIONS(6403), 1,
- anon_sym_EQ,
- ACTIONS(6411), 1,
- anon_sym_COLON,
- ACTIONS(7110), 1,
- anon_sym_BANG,
- ACTIONS(7112), 1,
- anon_sym_QMARK,
- STATE(3972), 1,
- sym_type_annotation,
- STATE(4974), 1,
- sym__initializer,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(6415), 3,
- sym__automatic_semicolon,
- anon_sym_COMMA,
- anon_sym_SEMI,
- [133164] = 9,
- ACTIONS(6252), 1,
- sym_identifier,
- ACTIONS(6256), 1,
- anon_sym_LBRACE,
- ACTIONS(6265), 1,
- sym_jsx_identifier,
- ACTIONS(6841), 1,
- anon_sym_GT,
- ACTIONS(7114), 1,
- anon_sym_SLASH_GT,
- STATE(3345), 1,
- aux_sym__jsx_start_opening_element_repeat1,
- STATE(3826), 1,
- sym_jsx_namespace_name,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- STATE(4391), 2,
- sym_jsx_expression,
- sym_jsx_attribute,
- [133194] = 9,
- ACTIONS(7116), 1,
- sym_identifier,
- ACTIONS(7118), 1,
- anon_sym_const,
- ACTIONS(7120), 1,
- anon_sym_GT,
- ACTIONS(7122), 1,
- sym_jsx_identifier,
- ACTIONS(7124), 1,
- anon_sym_SLASH_GT,
- STATE(3100), 1,
- sym_nested_identifier,
- STATE(3369), 1,
- sym_jsx_namespace_name,
- STATE(4744), 1,
- sym_type_parameter,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- [133223] = 7,
- ACTIONS(7126), 1,
- sym_escape_sequence,
- ACTIONS(7128), 1,
- anon_sym_BQUOTE,
- ACTIONS(7130), 1,
- anon_sym_DOLLAR_LBRACE,
- ACTIONS(7132), 1,
- sym__template_chars,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- STATE(3783), 2,
- sym_template_substitution,
- aux_sym_template_string_repeat1,
- STATE(4347), 2,
- sym_template_type,
- aux_sym_template_literal_type_repeat1,
- [133248] = 7,
- ACTIONS(3335), 1,
- sym_identifier,
- ACTIONS(3337), 1,
- anon_sym_LBRACE,
- ACTIONS(3339), 1,
- anon_sym_LBRACK,
- ACTIONS(7134), 1,
- anon_sym_enum,
- STATE(4442), 1,
- sym_variable_declarator,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- STATE(3661), 3,
- sym_object_pattern,
- sym_array_pattern,
- sym__destructuring_pattern,
- [133273] = 9,
- ACTIONS(7118), 1,
- anon_sym_const,
- ACTIONS(7120), 1,
- anon_sym_GT,
- ACTIONS(7136), 1,
- sym_identifier,
- ACTIONS(7138), 1,
- sym_jsx_identifier,
- ACTIONS(7140), 1,
- anon_sym_SLASH_GT,
- STATE(3099), 1,
- sym_nested_identifier,
- STATE(3360), 1,
- sym_jsx_namespace_name,
- STATE(4744), 1,
- sym_type_parameter,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- [133302] = 7,
- ACTIONS(6403), 1,
- anon_sym_EQ,
- ACTIONS(6411), 1,
- anon_sym_COLON,
- ACTIONS(6717), 1,
- anon_sym_BANG,
- STATE(4267), 1,
- sym_type_annotation,
- STATE(4918), 1,
- sym__initializer,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(6715), 3,
- sym__automatic_semicolon,
- anon_sym_COMMA,
- anon_sym_SEMI,
- [133327] = 5,
- ACTIONS(6807), 1,
- anon_sym_AMP,
- ACTIONS(6809), 1,
- anon_sym_PIPE,
- ACTIONS(6811), 1,
- anon_sym_extends,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(6739), 5,
- sym__automatic_semicolon,
- sym__function_signature_automatic_semicolon,
- anon_sym_LBRACE,
- anon_sym_COMMA,
- anon_sym_SEMI,
- [133348] = 7,
- ACTIONS(2275), 1,
- anon_sym_DQUOTE,
- ACTIONS(2277), 1,
- anon_sym_SQUOTE,
- ACTIONS(6767), 1,
- sym_identifier,
- STATE(5415), 1,
- sym_export_specifier,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(6769), 2,
- anon_sym_type,
- anon_sym_typeof,
- STATE(5022), 2,
- sym__module_export_name,
- sym_string,
- [133373] = 5,
- ACTIONS(6691), 1,
- anon_sym_AMP,
- ACTIONS(6693), 1,
- anon_sym_PIPE,
- ACTIONS(6695), 1,
- anon_sym_extends,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(7142), 5,
- sym__automatic_semicolon,
- anon_sym_COMMA,
- anon_sym_RBRACE,
- anon_sym_SEMI,
- anon_sym_PIPE_RBRACE,
- [133394] = 9,
- ACTIONS(133), 1,
- anon_sym_import,
- ACTIONS(7144), 1,
- sym_identifier,
- ACTIONS(7146), 1,
- sym_this,
- STATE(2782), 1,
- sym__type_query_member_expression,
- STATE(2783), 1,
- sym__type_query_subscript_expression,
- STATE(2833), 1,
- sym__type_query_call_expression,
- STATE(2905), 1,
- sym__type_query_instantiation_expression,
- STATE(4450), 1,
- sym_import,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- [133423] = 7,
- ACTIONS(7130), 1,
- anon_sym_DOLLAR_LBRACE,
- ACTIONS(7132), 1,
- sym__template_chars,
- ACTIONS(7148), 1,
- sym_escape_sequence,
- ACTIONS(7150), 1,
- anon_sym_BQUOTE,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- STATE(3858), 2,
- sym_template_substitution,
- aux_sym_template_string_repeat1,
- STATE(4347), 2,
- sym_template_type,
- aux_sym_template_literal_type_repeat1,
- [133448] = 9,
- ACTIONS(133), 1,
- anon_sym_import,
- ACTIONS(7152), 1,
- sym_identifier,
- ACTIONS(7154), 1,
- sym_this,
- STATE(2863), 1,
- sym__type_query_member_expression,
- STATE(2864), 1,
- sym__type_query_subscript_expression,
- STATE(3156), 1,
- sym__type_query_call_expression,
- STATE(3325), 1,
- sym__type_query_instantiation_expression,
- STATE(4524), 1,
- sym_import,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- [133477] = 7,
- ACTIONS(7126), 1,
- sym_escape_sequence,
- ACTIONS(7130), 1,
- anon_sym_DOLLAR_LBRACE,
- ACTIONS(7132), 1,
- sym__template_chars,
- ACTIONS(7156), 1,
- anon_sym_BQUOTE,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- STATE(3783), 2,
- sym_template_substitution,
- aux_sym_template_string_repeat1,
- STATE(4347), 2,
- sym_template_type,
- aux_sym_template_literal_type_repeat1,
- [133502] = 9,
- ACTIONS(133), 1,
- anon_sym_import,
- ACTIONS(7158), 1,
- sym_identifier,
- ACTIONS(7160), 1,
- sym_this,
- STATE(2832), 1,
- sym__type_query_member_expression,
- STATE(2839), 1,
- sym__type_query_subscript_expression,
- STATE(3005), 1,
- sym__type_query_call_expression,
- STATE(3155), 1,
- sym__type_query_instantiation_expression,
- STATE(4543), 1,
- sym_import,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- [133531] = 6,
- ACTIONS(6411), 1,
- anon_sym_COLON,
- ACTIONS(7162), 1,
- anon_sym_DASH_QMARK_COLON,
- ACTIONS(7164), 1,
- anon_sym_PLUS_QMARK_COLON,
- ACTIONS(7166), 1,
- anon_sym_QMARK_COLON,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- STATE(4372), 4,
- sym_omitting_type_annotation,
- sym_adding_type_annotation,
- sym_opting_type_annotation,
- sym_type_annotation,
- [133554] = 9,
- ACTIONS(133), 1,
- anon_sym_import,
- ACTIONS(7168), 1,
- sym_identifier,
- ACTIONS(7170), 1,
- sym_this,
- STATE(1692), 1,
- sym__type_query_member_expression,
- STATE(1693), 1,
- sym__type_query_subscript_expression,
- STATE(1985), 1,
- sym__type_query_call_expression,
- STATE(1987), 1,
- sym__type_query_instantiation_expression,
- STATE(4495), 1,
- sym_import,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- [133583] = 3,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(1799), 2,
- anon_sym_while,
- sym_identifier,
- ACTIONS(1797), 6,
- anon_sym_LBRACE,
- anon_sym_GT,
- sym_jsx_identifier,
- anon_sym_DOT,
- anon_sym_SLASH_GT,
- anon_sym_LT,
- [133600] = 3,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(1857), 2,
- anon_sym_while,
- sym_identifier,
- ACTIONS(1855), 6,
- anon_sym_LBRACE,
- anon_sym_GT,
- sym_jsx_identifier,
- anon_sym_DOT,
- anon_sym_SLASH_GT,
- anon_sym_LT,
- [133617] = 9,
- ACTIONS(133), 1,
- anon_sym_import,
- ACTIONS(7172), 1,
- sym_identifier,
- ACTIONS(7174), 1,
- sym_this,
- STATE(1431), 1,
- sym__type_query_member_expression,
- STATE(1432), 1,
- sym__type_query_subscript_expression,
- STATE(1576), 1,
- sym__type_query_call_expression,
- STATE(1577), 1,
- sym__type_query_instantiation_expression,
- STATE(4478), 1,
- sym_import,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- [133646] = 7,
- ACTIONS(7130), 1,
- anon_sym_DOLLAR_LBRACE,
- ACTIONS(7132), 1,
- sym__template_chars,
- ACTIONS(7148), 1,
- sym_escape_sequence,
- ACTIONS(7176), 1,
- anon_sym_BQUOTE,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- STATE(3858), 2,
- sym_template_substitution,
- aux_sym_template_string_repeat1,
- STATE(4347), 2,
- sym_template_type,
- aux_sym_template_literal_type_repeat1,
- [133671] = 7,
- ACTIONS(7126), 1,
- sym_escape_sequence,
- ACTIONS(7130), 1,
- anon_sym_DOLLAR_LBRACE,
- ACTIONS(7132), 1,
- sym__template_chars,
- ACTIONS(7178), 1,
- anon_sym_BQUOTE,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- STATE(3783), 2,
- sym_template_substitution,
- aux_sym_template_string_repeat1,
- STATE(4347), 2,
- sym_template_type,
- aux_sym_template_literal_type_repeat1,
- [133696] = 5,
- ACTIONS(6691), 1,
- anon_sym_AMP,
- ACTIONS(6693), 1,
- anon_sym_PIPE,
- ACTIONS(6695), 1,
- anon_sym_extends,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(7180), 5,
- sym__automatic_semicolon,
- anon_sym_COMMA,
- anon_sym_RBRACE,
- anon_sym_SEMI,
- anon_sym_PIPE_RBRACE,
- [133717] = 3,
- ACTIONS(6711), 1,
- anon_sym_is,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(4015), 7,
- anon_sym_COMMA,
- anon_sym_LBRACK,
- anon_sym_RBRACK,
- anon_sym_AMP,
- anon_sym_PIPE,
- anon_sym_QMARK,
- anon_sym_extends,
- [133734] = 3,
- ACTIONS(6711), 1,
- anon_sym_is,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(4041), 7,
- anon_sym_COMMA,
- anon_sym_LBRACK,
- anon_sym_RBRACK,
- anon_sym_AMP,
- anon_sym_PIPE,
- anon_sym_QMARK,
- anon_sym_extends,
- [133751] = 3,
- ACTIONS(7182), 1,
- anon_sym_is,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(4027), 7,
- anon_sym_COMMA,
- anon_sym_LBRACK,
- anon_sym_RBRACK,
- anon_sym_AMP,
- anon_sym_PIPE,
- anon_sym_QMARK,
- anon_sym_extends,
- [133768] = 6,
- ACTIONS(6411), 1,
- anon_sym_COLON,
- ACTIONS(7162), 1,
- anon_sym_DASH_QMARK_COLON,
- ACTIONS(7164), 1,
- anon_sym_PLUS_QMARK_COLON,
- ACTIONS(7166), 1,
- anon_sym_QMARK_COLON,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- STATE(4081), 4,
- sym_omitting_type_annotation,
- sym_adding_type_annotation,
- sym_opting_type_annotation,
- sym_type_annotation,
- [133791] = 6,
- ACTIONS(6411), 1,
- anon_sym_COLON,
- ACTIONS(7162), 1,
- anon_sym_DASH_QMARK_COLON,
- ACTIONS(7164), 1,
- anon_sym_PLUS_QMARK_COLON,
- ACTIONS(7166), 1,
- anon_sym_QMARK_COLON,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- STATE(4082), 4,
- sym_omitting_type_annotation,
- sym_adding_type_annotation,
- sym_opting_type_annotation,
- sym_type_annotation,
- [133814] = 5,
- ACTIONS(6691), 1,
- anon_sym_AMP,
- ACTIONS(6693), 1,
- anon_sym_PIPE,
- ACTIONS(6695), 1,
- anon_sym_extends,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(7184), 5,
- sym__automatic_semicolon,
- anon_sym_COMMA,
- anon_sym_RBRACE,
- anon_sym_SEMI,
- anon_sym_PIPE_RBRACE,
- [133835] = 2,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(3133), 8,
- anon_sym_as,
- anon_sym_LBRACK,
- anon_sym_RBRACK,
- anon_sym_DOT,
- anon_sym_QMARK_DOT,
- anon_sym_AMP,
- anon_sym_PIPE,
- anon_sym_extends,
- [133850] = 7,
- ACTIONS(7126), 1,
- sym_escape_sequence,
- ACTIONS(7130), 1,
- anon_sym_DOLLAR_LBRACE,
- ACTIONS(7132), 1,
- sym__template_chars,
- ACTIONS(7186), 1,
- anon_sym_BQUOTE,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- STATE(3783), 2,
- sym_template_substitution,
- aux_sym_template_string_repeat1,
- STATE(4347), 2,
- sym_template_type,
- aux_sym_template_literal_type_repeat1,
- [133875] = 7,
- ACTIONS(7126), 1,
- sym_escape_sequence,
- ACTIONS(7130), 1,
- anon_sym_DOLLAR_LBRACE,
- ACTIONS(7132), 1,
- sym__template_chars,
- ACTIONS(7188), 1,
- anon_sym_BQUOTE,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- STATE(3783), 2,
- sym_template_substitution,
- aux_sym_template_string_repeat1,
- STATE(4347), 2,
- sym_template_type,
- aux_sym_template_literal_type_repeat1,
- [133900] = 2,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(3125), 8,
- anon_sym_as,
- anon_sym_LBRACK,
- anon_sym_RBRACK,
- anon_sym_DOT,
- anon_sym_QMARK_DOT,
- anon_sym_AMP,
- anon_sym_PIPE,
- anon_sym_extends,
- [133915] = 2,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(3129), 8,
- anon_sym_as,
- anon_sym_LBRACK,
- anon_sym_RBRACK,
- anon_sym_DOT,
- anon_sym_QMARK_DOT,
- anon_sym_AMP,
- anon_sym_PIPE,
- anon_sym_extends,
- [133930] = 6,
- ACTIONS(6411), 1,
- anon_sym_COLON,
- ACTIONS(7162), 1,
- anon_sym_DASH_QMARK_COLON,
- ACTIONS(7164), 1,
- anon_sym_PLUS_QMARK_COLON,
- ACTIONS(7166), 1,
- anon_sym_QMARK_COLON,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- STATE(4301), 4,
- sym_omitting_type_annotation,
- sym_adding_type_annotation,
- sym_opting_type_annotation,
- sym_type_annotation,
- [133953] = 5,
- ACTIONS(7190), 1,
- anon_sym_LBRACE,
- ACTIONS(7192), 1,
- anon_sym_DOT,
- STATE(4349), 1,
- sym_statement_block,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(1712), 5,
- sym__automatic_semicolon,
- anon_sym_COMMA,
- anon_sym_RBRACE,
- anon_sym_SEMI,
- anon_sym_PIPE_RBRACE,
- [133974] = 5,
- ACTIONS(7190), 1,
- anon_sym_LBRACE,
- ACTIONS(7194), 1,
- anon_sym_DOT,
- STATE(4349), 1,
- sym_statement_block,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(1712), 5,
- sym__automatic_semicolon,
- anon_sym_COMMA,
- anon_sym_RBRACE,
- anon_sym_SEMI,
- anon_sym_PIPE_RBRACE,
- [133995] = 6,
- ACTIONS(6411), 1,
- anon_sym_COLON,
- ACTIONS(7162), 1,
- anon_sym_DASH_QMARK_COLON,
- ACTIONS(7164), 1,
- anon_sym_PLUS_QMARK_COLON,
- ACTIONS(7166), 1,
- anon_sym_QMARK_COLON,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- STATE(4223), 4,
- sym_omitting_type_annotation,
- sym_adding_type_annotation,
- sym_opting_type_annotation,
- sym_type_annotation,
- [134018] = 6,
- ACTIONS(6411), 1,
- anon_sym_COLON,
- ACTIONS(7162), 1,
- anon_sym_DASH_QMARK_COLON,
- ACTIONS(7164), 1,
- anon_sym_PLUS_QMARK_COLON,
- ACTIONS(7166), 1,
- anon_sym_QMARK_COLON,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- STATE(4226), 4,
- sym_omitting_type_annotation,
- sym_adding_type_annotation,
- sym_opting_type_annotation,
- sym_type_annotation,
- [134041] = 7,
- ACTIONS(7126), 1,
- sym_escape_sequence,
- ACTIONS(7130), 1,
- anon_sym_DOLLAR_LBRACE,
- ACTIONS(7132), 1,
- sym__template_chars,
- ACTIONS(7196), 1,
- anon_sym_BQUOTE,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- STATE(3783), 2,
- sym_template_substitution,
- aux_sym_template_string_repeat1,
- STATE(4110), 2,
- sym_template_type,
- aux_sym_template_literal_type_repeat1,
- [134066] = 6,
- ACTIONS(6411), 1,
- anon_sym_COLON,
- ACTIONS(7162), 1,
- anon_sym_DASH_QMARK_COLON,
- ACTIONS(7164), 1,
- anon_sym_PLUS_QMARK_COLON,
- ACTIONS(7166), 1,
- anon_sym_QMARK_COLON,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- STATE(4221), 4,
- sym_omitting_type_annotation,
- sym_adding_type_annotation,
- sym_opting_type_annotation,
- sym_type_annotation,
- [134089] = 7,
- ACTIONS(3335), 1,
- sym_identifier,
- ACTIONS(3337), 1,
- anon_sym_LBRACE,
- ACTIONS(3339), 1,
- anon_sym_LBRACK,
- ACTIONS(7198), 1,
- anon_sym_enum,
- STATE(4506), 1,
- sym_variable_declarator,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- STATE(3661), 3,
- sym_object_pattern,
- sym_array_pattern,
- sym__destructuring_pattern,
- [134114] = 6,
- ACTIONS(6411), 1,
- anon_sym_COLON,
- ACTIONS(7162), 1,
- anon_sym_DASH_QMARK_COLON,
- ACTIONS(7164), 1,
- anon_sym_PLUS_QMARK_COLON,
- ACTIONS(7166), 1,
- anon_sym_QMARK_COLON,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- STATE(4214), 4,
- sym_omitting_type_annotation,
- sym_adding_type_annotation,
- sym_opting_type_annotation,
- sym_type_annotation,
- [134137] = 6,
- ACTIONS(6411), 1,
- anon_sym_COLON,
- ACTIONS(7162), 1,
- anon_sym_DASH_QMARK_COLON,
- ACTIONS(7164), 1,
- anon_sym_PLUS_QMARK_COLON,
- ACTIONS(7166), 1,
- anon_sym_QMARK_COLON,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- STATE(4217), 4,
- sym_omitting_type_annotation,
- sym_adding_type_annotation,
- sym_opting_type_annotation,
- sym_type_annotation,
- [134160] = 9,
- ACTIONS(133), 1,
- anon_sym_import,
- ACTIONS(7146), 1,
- sym_this,
- ACTIONS(7200), 1,
- sym_identifier,
- STATE(2833), 1,
- sym__type_query_call_expression,
- STATE(2905), 1,
- sym__type_query_instantiation_expression,
- STATE(3127), 1,
- sym__type_query_member_expression,
- STATE(3131), 1,
- sym__type_query_subscript_expression,
- STATE(4517), 1,
- sym_import,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- [134189] = 6,
- ACTIONS(6403), 1,
- anon_sym_EQ,
- ACTIONS(6411), 1,
- anon_sym_COLON,
- STATE(4118), 1,
- sym_type_annotation,
- STATE(4588), 1,
- sym__initializer,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(6648), 3,
- sym__automatic_semicolon,
- anon_sym_COMMA,
- anon_sym_SEMI,
- [134211] = 7,
- ACTIONS(3477), 1,
- anon_sym_COLON,
- ACTIONS(7202), 1,
- anon_sym_EQ,
- ACTIONS(7206), 1,
- anon_sym_QMARK,
- STATE(4510), 1,
- sym_type_annotation,
- STATE(5453), 1,
- sym__initializer,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(7204), 2,
- anon_sym_COMMA,
- anon_sym_RPAREN,
- [134235] = 6,
- ACTIONS(6403), 1,
- anon_sym_EQ,
- ACTIONS(6411), 1,
- anon_sym_COLON,
- STATE(4291), 1,
- sym_type_annotation,
- STATE(4960), 1,
- sym__initializer,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(6628), 3,
- sym__automatic_semicolon,
- anon_sym_COMMA,
- anon_sym_SEMI,
- [134257] = 4,
- ACTIONS(2437), 1,
- anon_sym_LBRACE,
- STATE(5345), 1,
- sym_statement_block,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(7208), 5,
- sym__automatic_semicolon,
- anon_sym_COMMA,
- anon_sym_RBRACE,
- anon_sym_SEMI,
- anon_sym_PIPE_RBRACE,
- [134275] = 6,
- ACTIONS(6403), 1,
- anon_sym_EQ,
- ACTIONS(6411), 1,
- anon_sym_COLON,
- STATE(4249), 1,
- sym_type_annotation,
- STATE(4881), 1,
- sym__initializer,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(6628), 3,
- sym__automatic_semicolon,
- anon_sym_COMMA,
- anon_sym_SEMI,
- [134297] = 2,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(7210), 7,
- sym__automatic_semicolon,
- anon_sym_LBRACE,
- anon_sym_COMMA,
- anon_sym_RBRACE,
- anon_sym_SEMI,
- anon_sym_COLON,
- anon_sym_PIPE_RBRACE,
- [134311] = 6,
- ACTIONS(6403), 1,
- anon_sym_EQ,
- ACTIONS(6411), 1,
- anon_sym_COLON,
- STATE(3934), 1,
- sym_type_annotation,
- STATE(4965), 1,
- sym__initializer,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(6638), 3,
- sym__automatic_semicolon,
- anon_sym_COMMA,
- anon_sym_SEMI,
- [134333] = 4,
- ACTIONS(2437), 1,
- anon_sym_LBRACE,
- STATE(5360), 1,
- sym_statement_block,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(7212), 5,
- sym__automatic_semicolon,
- anon_sym_COMMA,
- anon_sym_RBRACE,
- anon_sym_SEMI,
- anon_sym_PIPE_RBRACE,
- [134351] = 4,
- ACTIONS(2437), 1,
- anon_sym_LBRACE,
- STATE(5364), 1,
- sym_statement_block,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(7208), 5,
- sym__automatic_semicolon,
- anon_sym_COMMA,
- anon_sym_RBRACE,
- anon_sym_SEMI,
- anon_sym_PIPE_RBRACE,
- [134369] = 6,
- ACTIONS(3337), 1,
- anon_sym_LBRACE,
- ACTIONS(3339), 1,
- anon_sym_LBRACK,
- ACTIONS(7214), 1,
- sym_identifier,
- STATE(4452), 1,
- sym_variable_declarator,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- STATE(3441), 3,
- sym_object_pattern,
- sym_array_pattern,
- sym__destructuring_pattern,
- [134391] = 6,
- ACTIONS(6403), 1,
- anon_sym_EQ,
- ACTIONS(6411), 1,
- anon_sym_COLON,
- STATE(4253), 1,
- sym_type_annotation,
- STATE(4894), 1,
- sym__initializer,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(6628), 3,
- sym__automatic_semicolon,
- anon_sym_COMMA,
- anon_sym_SEMI,
- [134413] = 6,
- ACTIONS(6403), 1,
- anon_sym_EQ,
- ACTIONS(6411), 1,
- anon_sym_COLON,
- STATE(4254), 1,
- sym_type_annotation,
- STATE(4899), 1,
- sym__initializer,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(6628), 3,
- sym__automatic_semicolon,
- anon_sym_COMMA,
- anon_sym_SEMI,
- [134435] = 4,
- ACTIONS(6411), 1,
- anon_sym_COLON,
- STATE(4042), 1,
- sym_type_annotation,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(7216), 5,
- sym__automatic_semicolon,
- anon_sym_COMMA,
- anon_sym_RBRACE,
- anon_sym_SEMI,
- anon_sym_PIPE_RBRACE,
- [134453] = 8,
- ACTIONS(6725), 1,
- anon_sym_LBRACE,
- ACTIONS(6835), 1,
- anon_sym_extends,
- ACTIONS(6837), 1,
- anon_sym_implements,
- STATE(2277), 1,
- sym_class_body,
- STATE(5071), 1,
- sym_extends_clause,
- STATE(5273), 1,
- sym_class_heritage,
- STATE(5674), 1,
- sym_implements_clause,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- [134479] = 6,
- ACTIONS(6403), 1,
- anon_sym_EQ,
- ACTIONS(6411), 1,
- anon_sym_COLON,
- STATE(4264), 1,
- sym_type_annotation,
- STATE(4913), 1,
- sym__initializer,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(6628), 3,
- sym__automatic_semicolon,
- anon_sym_COMMA,
- anon_sym_SEMI,
- [134501] = 8,
- ACTIONS(1506), 1,
- anon_sym_DQUOTE,
- ACTIONS(1508), 1,
- anon_sym_SQUOTE,
- ACTIONS(7218), 1,
- sym_identifier,
- ACTIONS(7220), 1,
- anon_sym_DOT,
- STATE(711), 1,
- sym_nested_identifier,
- STATE(741), 1,
- sym_string,
- STATE(825), 1,
- sym__module,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- [134527] = 6,
- ACTIONS(6403), 1,
- anon_sym_EQ,
- ACTIONS(6411), 1,
- anon_sym_COLON,
- STATE(4016), 1,
- sym_type_annotation,
- STATE(4745), 1,
- sym__initializer,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(6638), 3,
- sym__automatic_semicolon,
- anon_sym_COMMA,
- anon_sym_SEMI,
- [134549] = 6,
- ACTIONS(6403), 1,
- anon_sym_EQ,
- ACTIONS(6411), 1,
- anon_sym_COLON,
- STATE(4306), 1,
- sym_type_annotation,
- STATE(4973), 1,
- sym__initializer,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(6626), 3,
- sym__automatic_semicolon,
- anon_sym_COMMA,
- anon_sym_SEMI,
- [134571] = 6,
- ACTIONS(6403), 1,
- anon_sym_EQ,
- ACTIONS(6411), 1,
- anon_sym_COLON,
- STATE(4139), 1,
- sym_type_annotation,
- STATE(4643), 1,
- sym__initializer,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(6648), 3,
- sym__automatic_semicolon,
- anon_sym_COMMA,
- anon_sym_SEMI,
- [134593] = 6,
- ACTIONS(6403), 1,
- anon_sym_EQ,
- ACTIONS(6411), 1,
- anon_sym_COLON,
- STATE(4142), 1,
- sym_type_annotation,
- STATE(4646), 1,
- sym__initializer,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(6648), 3,
- sym__automatic_semicolon,
- anon_sym_COMMA,
- anon_sym_SEMI,
- [134615] = 8,
- ACTIONS(6725), 1,
- anon_sym_LBRACE,
- ACTIONS(6835), 1,
- anon_sym_extends,
- ACTIONS(6837), 1,
- anon_sym_implements,
- STATE(2224), 1,
- sym_class_body,
- STATE(5071), 1,
- sym_extends_clause,
- STATE(5398), 1,
- sym_class_heritage,
- STATE(5674), 1,
- sym_implements_clause,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- [134641] = 6,
- ACTIONS(6403), 1,
- anon_sym_EQ,
- ACTIONS(6411), 1,
- anon_sym_COLON,
- STATE(4373), 1,
- sym_type_annotation,
- STATE(5091), 1,
- sym__initializer,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(6638), 3,
- sym__automatic_semicolon,
- anon_sym_COMMA,
- anon_sym_SEMI,
- [134663] = 2,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(5477), 7,
- anon_sym_EQ,
- anon_sym_COMMA,
- anon_sym_RBRACE,
- anon_sym_LPAREN,
- anon_sym_COLON,
- anon_sym_LT,
- anon_sym_QMARK,
- [134677] = 8,
- ACTIONS(6763), 1,
- anon_sym_LBRACE,
- ACTIONS(6835), 1,
- anon_sym_extends,
- ACTIONS(6837), 1,
- anon_sym_implements,
- STATE(1745), 1,
- sym_class_body,
- STATE(5071), 1,
- sym_extends_clause,
- STATE(5259), 1,
- sym_class_heritage,
- STATE(5674), 1,
- sym_implements_clause,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- [134703] = 6,
- ACTIONS(6403), 1,
- anon_sym_EQ,
- ACTIONS(6411), 1,
- anon_sym_COLON,
- STATE(4145), 1,
- sym_type_annotation,
- STATE(4654), 1,
- sym__initializer,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(6648), 3,
- sym__automatic_semicolon,
- anon_sym_COMMA,
- anon_sym_SEMI,
- [134725] = 6,
- ACTIONS(6403), 1,
- anon_sym_EQ,
- ACTIONS(6411), 1,
- anon_sym_COLON,
- STATE(4146), 1,
- sym_type_annotation,
- STATE(4657), 1,
- sym__initializer,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(6648), 3,
- sym__automatic_semicolon,
- anon_sym_COMMA,
- anon_sym_SEMI,
- [134747] = 6,
- ACTIONS(6403), 1,
- anon_sym_EQ,
- ACTIONS(6411), 1,
- anon_sym_COLON,
- STATE(3959), 1,
- sym_type_annotation,
- STATE(4757), 1,
- sym__initializer,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(6638), 3,
- sym__automatic_semicolon,
- anon_sym_COMMA,
- anon_sym_SEMI,
- [134769] = 6,
- ACTIONS(3337), 1,
- anon_sym_LBRACE,
- ACTIONS(3339), 1,
- anon_sym_LBRACK,
- ACTIONS(7222), 1,
- sym_identifier,
- STATE(4506), 1,
- sym_variable_declarator,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- STATE(3442), 3,
- sym_object_pattern,
- sym_array_pattern,
- sym__destructuring_pattern,
- [134791] = 4,
- ACTIONS(2437), 1,
- anon_sym_LBRACE,
- STATE(5533), 1,
- sym_statement_block,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(7224), 5,
- sym__automatic_semicolon,
- anon_sym_COMMA,
- anon_sym_RBRACE,
- anon_sym_SEMI,
- anon_sym_PIPE_RBRACE,
- [134809] = 6,
- ACTIONS(6403), 1,
- anon_sym_EQ,
- ACTIONS(6411), 1,
- anon_sym_COLON,
- STATE(4277), 1,
- sym_type_annotation,
- STATE(4917), 1,
- sym__initializer,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(6662), 3,
- sym__automatic_semicolon,
- anon_sym_COMMA,
- anon_sym_SEMI,
- [134831] = 2,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(6962), 7,
- sym__automatic_semicolon,
- anon_sym_EQ,
- anon_sym_COMMA,
- anon_sym_in,
- anon_sym_of,
- anon_sym_SEMI,
- anon_sym_COLON,
- [134845] = 8,
- ACTIONS(6725), 1,
- anon_sym_LBRACE,
- ACTIONS(6835), 1,
- anon_sym_extends,
- ACTIONS(6837), 1,
- anon_sym_implements,
- STATE(2321), 1,
- sym_class_body,
- STATE(5071), 1,
- sym_extends_clause,
- STATE(5526), 1,
- sym_class_heritage,
- STATE(5674), 1,
- sym_implements_clause,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- [134871] = 4,
- ACTIONS(2437), 1,
- anon_sym_LBRACE,
- STATE(5484), 1,
- sym_statement_block,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(7226), 5,
- sym__automatic_semicolon,
- anon_sym_COMMA,
- anon_sym_RBRACE,
- anon_sym_SEMI,
- anon_sym_PIPE_RBRACE,
- [134889] = 8,
- ACTIONS(6725), 1,
- anon_sym_LBRACE,
- ACTIONS(6835), 1,
- anon_sym_extends,
- ACTIONS(6837), 1,
- anon_sym_implements,
- STATE(2142), 1,
- sym_class_body,
- STATE(5071), 1,
- sym_extends_clause,
- STATE(5436), 1,
- sym_class_heritage,
- STATE(5674), 1,
- sym_implements_clause,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- [134915] = 8,
- ACTIONS(2581), 1,
- anon_sym_LT,
- ACTIONS(6419), 1,
- anon_sym_LPAREN,
- ACTIONS(7228), 1,
- sym_identifier,
- ACTIONS(7230), 1,
- anon_sym_STAR,
- STATE(3742), 1,
- sym_formal_parameters,
- STATE(5281), 1,
- sym__call_signature,
- STATE(5349), 1,
- sym_type_parameters,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- [134941] = 2,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(4987), 7,
- sym__automatic_semicolon,
- anon_sym_EQ,
- anon_sym_COMMA,
- anon_sym_in,
- anon_sym_of,
- anon_sym_SEMI,
- anon_sym_COLON,
- [134955] = 8,
- ACTIONS(1594), 1,
- anon_sym_DQUOTE,
- ACTIONS(1596), 1,
- anon_sym_SQUOTE,
- ACTIONS(7232), 1,
- sym_identifier,
- ACTIONS(7234), 1,
- anon_sym_DOT,
- STATE(3483), 1,
- sym_nested_identifier,
- STATE(3697), 1,
- sym_string,
- STATE(4370), 1,
- sym__module,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- [134981] = 8,
- ACTIONS(1040), 1,
- anon_sym_LBRACE_PIPE,
- ACTIONS(1586), 1,
- anon_sym_LBRACE,
- ACTIONS(7236), 1,
- anon_sym_LT,
- ACTIONS(7238), 1,
- anon_sym_extends,
- STATE(3921), 1,
- sym_object_type,
- STATE(3995), 1,
- sym_type_parameters,
- STATE(4647), 1,
- sym_extends_type_clause,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- [135007] = 8,
- ACTIONS(2581), 1,
- anon_sym_LT,
- ACTIONS(6419), 1,
- anon_sym_LPAREN,
- ACTIONS(7240), 1,
- sym_identifier,
- ACTIONS(7242), 1,
- anon_sym_STAR,
- STATE(3742), 1,
- sym_formal_parameters,
- STATE(5349), 1,
- sym_type_parameters,
- STATE(5441), 1,
- sym__call_signature,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- [135033] = 8,
- ACTIONS(6835), 1,
- anon_sym_extends,
- ACTIONS(6837), 1,
- anon_sym_implements,
- ACTIONS(7096), 1,
- anon_sym_LBRACE,
- STATE(815), 1,
- sym_class_body,
- STATE(5071), 1,
- sym_extends_clause,
- STATE(5210), 1,
- sym_class_heritage,
- STATE(5674), 1,
- sym_implements_clause,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- [135059] = 8,
- ACTIONS(7244), 1,
- anon_sym_LBRACE,
- ACTIONS(7246), 1,
- anon_sym_COMMA,
- ACTIONS(7248), 1,
- anon_sym_DOT,
- ACTIONS(7250), 1,
- anon_sym_LT,
- ACTIONS(7252), 1,
- anon_sym_LBRACE_PIPE,
- STATE(4471), 1,
- aux_sym_extends_type_clause_repeat1,
- STATE(5094), 1,
- sym_type_arguments,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- [135085] = 6,
- ACTIONS(6403), 1,
- anon_sym_EQ,
- ACTIONS(6411), 1,
- anon_sym_COLON,
- STATE(4197), 1,
- sym_type_annotation,
- STATE(5173), 1,
- sym__initializer,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(6650), 3,
- sym__automatic_semicolon,
- anon_sym_COMMA,
- anon_sym_SEMI,
- [135107] = 6,
- ACTIONS(3969), 1,
- anon_sym_LPAREN,
- ACTIONS(5991), 1,
- anon_sym_LT,
- STATE(1676), 1,
- sym_arguments,
- STATE(5224), 1,
- sym_type_arguments,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(7254), 3,
- anon_sym_LBRACK,
- sym_identifier,
- sym_private_property_identifier,
- [135129] = 6,
- ACTIONS(6403), 1,
- anon_sym_EQ,
- ACTIONS(6411), 1,
- anon_sym_COLON,
- STATE(4368), 1,
- sym_type_annotation,
- STATE(5085), 1,
- sym__initializer,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(6638), 3,
- sym__automatic_semicolon,
- anon_sym_COMMA,
- anon_sym_SEMI,
- [135151] = 4,
- ACTIONS(4243), 1,
- anon_sym_EQ,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(5749), 2,
- anon_sym_COMMA,
- anon_sym_RBRACE,
- ACTIONS(3743), 4,
- anon_sym_LPAREN,
- anon_sym_COLON,
- anon_sym_LT,
- anon_sym_QMARK,
- [135169] = 4,
- ACTIONS(2437), 1,
- anon_sym_LBRACE,
- STATE(5494), 1,
- sym_statement_block,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(7256), 5,
- sym__automatic_semicolon,
- anon_sym_COMMA,
- anon_sym_RBRACE,
- anon_sym_SEMI,
- anon_sym_PIPE_RBRACE,
- [135187] = 6,
- ACTIONS(6403), 1,
- anon_sym_EQ,
- ACTIONS(6411), 1,
- anon_sym_COLON,
- STATE(4135), 1,
- sym_type_annotation,
- STATE(4631), 1,
- sym__initializer,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(6648), 3,
- sym__automatic_semicolon,
- anon_sym_COMMA,
- anon_sym_SEMI,
- [135209] = 6,
- ACTIONS(6403), 1,
- anon_sym_EQ,
- ACTIONS(6411), 1,
- anon_sym_COLON,
- STATE(4136), 1,
- sym_type_annotation,
- STATE(4632), 1,
- sym__initializer,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(6648), 3,
- sym__automatic_semicolon,
- anon_sym_COMMA,
- anon_sym_SEMI,
- [135231] = 6,
- ACTIONS(6403), 1,
- anon_sym_EQ,
- ACTIONS(6411), 1,
- anon_sym_COLON,
- STATE(4236), 1,
- sym_type_annotation,
- STATE(4846), 1,
- sym__initializer,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(6628), 3,
- sym__automatic_semicolon,
- anon_sym_COMMA,
- anon_sym_SEMI,
- [135253] = 4,
- ACTIONS(2437), 1,
- anon_sym_LBRACE,
- STATE(5504), 1,
- sym_statement_block,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(7258), 5,
- sym__automatic_semicolon,
- anon_sym_COMMA,
- anon_sym_RBRACE,
- anon_sym_SEMI,
- anon_sym_PIPE_RBRACE,
- [135271] = 6,
- ACTIONS(6403), 1,
- anon_sym_EQ,
- ACTIONS(6411), 1,
- anon_sym_COLON,
- STATE(4312), 1,
- sym_type_annotation,
- STATE(4987), 1,
- sym__initializer,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(7260), 3,
- sym__automatic_semicolon,
- anon_sym_COMMA,
- anon_sym_SEMI,
- [135293] = 4,
- ACTIONS(2437), 1,
- anon_sym_LBRACE,
- STATE(5323), 1,
- sym_statement_block,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(7262), 5,
- sym__automatic_semicolon,
- anon_sym_COMMA,
- anon_sym_RBRACE,
- anon_sym_SEMI,
- anon_sym_PIPE_RBRACE,
- [135311] = 6,
- ACTIONS(6403), 1,
- anon_sym_EQ,
- ACTIONS(6411), 1,
- anon_sym_COLON,
- STATE(4327), 1,
- sym_type_annotation,
- STATE(5029), 1,
- sym__initializer,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(6664), 3,
- sym__automatic_semicolon,
- anon_sym_COMMA,
- anon_sym_SEMI,
- [135333] = 8,
- ACTIONS(6835), 1,
- anon_sym_extends,
- ACTIONS(6837), 1,
- anon_sym_implements,
- ACTIONS(6976), 1,
- anon_sym_LBRACE,
- STATE(736), 1,
- sym_class_body,
- STATE(5071), 1,
- sym_extends_clause,
- STATE(5421), 1,
- sym_class_heritage,
- STATE(5674), 1,
- sym_implements_clause,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- [135359] = 6,
- ACTIONS(6403), 1,
- anon_sym_EQ,
- ACTIONS(6411), 1,
- anon_sym_COLON,
- STATE(4269), 1,
- sym_type_annotation,
- STATE(4930), 1,
- sym__initializer,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(6628), 3,
- sym__automatic_semicolon,
- anon_sym_COMMA,
- anon_sym_SEMI,
- [135381] = 3,
- ACTIONS(4332), 1,
- sym_identifier,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(4334), 6,
- anon_sym_LBRACE,
- anon_sym_LPAREN,
- anon_sym_GT,
- sym_jsx_identifier,
- anon_sym_SLASH_GT,
- anon_sym_BQUOTE,
- [135397] = 6,
- ACTIONS(6403), 1,
- anon_sym_EQ,
- ACTIONS(6411), 1,
- anon_sym_COLON,
- STATE(4149), 1,
- sym_type_annotation,
- STATE(4680), 1,
- sym__initializer,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(6648), 3,
- sym__automatic_semicolon,
- anon_sym_COMMA,
- anon_sym_SEMI,
- [135419] = 8,
- ACTIONS(6725), 1,
- anon_sym_LBRACE,
- ACTIONS(6835), 1,
- anon_sym_extends,
- ACTIONS(6837), 1,
- anon_sym_implements,
- STATE(2249), 1,
- sym_class_body,
- STATE(5071), 1,
- sym_extends_clause,
- STATE(5355), 1,
- sym_class_heritage,
- STATE(5674), 1,
- sym_implements_clause,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- [135445] = 6,
- ACTIONS(6403), 1,
- anon_sym_EQ,
- ACTIONS(6411), 1,
- anon_sym_COLON,
- STATE(4045), 1,
- sym_type_annotation,
- STATE(4896), 1,
- sym__initializer,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(6630), 3,
- sym__automatic_semicolon,
- anon_sym_COMMA,
- anon_sym_SEMI,
- [135467] = 6,
- ACTIONS(6403), 1,
- anon_sym_EQ,
- ACTIONS(6411), 1,
- anon_sym_COLON,
- STATE(4150), 1,
- sym_type_annotation,
- STATE(4684), 1,
- sym__initializer,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(6648), 3,
- sym__automatic_semicolon,
- anon_sym_COMMA,
- anon_sym_SEMI,
- [135489] = 2,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(7264), 7,
- sym__automatic_semicolon,
- anon_sym_LBRACE,
- anon_sym_COMMA,
- anon_sym_RBRACE,
- anon_sym_SEMI,
- anon_sym_COLON,
- anon_sym_PIPE_RBRACE,
- [135503] = 6,
- ACTIONS(3337), 1,
- anon_sym_LBRACE,
- ACTIONS(3339), 1,
- anon_sym_LBRACK,
- ACTIONS(7266), 1,
- sym_identifier,
- STATE(4433), 1,
- sym_variable_declarator,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- STATE(3661), 3,
- sym_object_pattern,
- sym_array_pattern,
- sym__destructuring_pattern,
- [135525] = 6,
- ACTIONS(6403), 1,
- anon_sym_EQ,
- ACTIONS(6411), 1,
- anon_sym_COLON,
- STATE(4315), 1,
- sym_type_annotation,
- STATE(4993), 1,
- sym__initializer,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(7260), 3,
- sym__automatic_semicolon,
- anon_sym_COMMA,
- anon_sym_SEMI,
- [135547] = 6,
- ACTIONS(6403), 1,
- anon_sym_EQ,
- ACTIONS(6411), 1,
- anon_sym_COLON,
- STATE(4345), 1,
- sym_type_annotation,
- STATE(5045), 1,
- sym__initializer,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(6630), 3,
- sym__automatic_semicolon,
- anon_sym_COMMA,
- anon_sym_SEMI,
- [135569] = 6,
- ACTIONS(6403), 1,
- anon_sym_EQ,
- ACTIONS(6411), 1,
- anon_sym_COLON,
- STATE(4152), 1,
- sym_type_annotation,
- STATE(4687), 1,
- sym__initializer,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(6648), 3,
- sym__automatic_semicolon,
- anon_sym_COMMA,
- anon_sym_SEMI,
- [135591] = 6,
- ACTIONS(6403), 1,
- anon_sym_EQ,
- ACTIONS(6411), 1,
- anon_sym_COLON,
- STATE(4156), 1,
- sym_type_annotation,
- STATE(4689), 1,
- sym__initializer,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(6648), 3,
- sym__automatic_semicolon,
- anon_sym_COMMA,
- anon_sym_SEMI,
- [135613] = 6,
- ACTIONS(6403), 1,
- anon_sym_EQ,
- ACTIONS(6411), 1,
- anon_sym_COLON,
- STATE(4356), 1,
- sym_type_annotation,
- STATE(5064), 1,
- sym__initializer,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(6638), 3,
- sym__automatic_semicolon,
- anon_sym_COMMA,
- anon_sym_SEMI,
- [135635] = 4,
- ACTIONS(2437), 1,
- anon_sym_LBRACE,
- STATE(5477), 1,
- sym_statement_block,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(7268), 5,
- sym__automatic_semicolon,
- anon_sym_COMMA,
- anon_sym_RBRACE,
- anon_sym_SEMI,
- anon_sym_PIPE_RBRACE,
- [135653] = 2,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(7270), 7,
- sym__automatic_semicolon,
- anon_sym_LBRACE,
- anon_sym_COMMA,
- anon_sym_RBRACE,
- anon_sym_SEMI,
- anon_sym_COLON,
- anon_sym_PIPE_RBRACE,
- [135667] = 6,
- ACTIONS(6403), 1,
- anon_sym_EQ,
- ACTIONS(6411), 1,
- anon_sym_COLON,
- STATE(4157), 1,
- sym_type_annotation,
- STATE(4704), 1,
- sym__initializer,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(6648), 3,
- sym__automatic_semicolon,
- anon_sym_COMMA,
- anon_sym_SEMI,
- [135689] = 6,
- ACTIONS(6403), 1,
- anon_sym_EQ,
- ACTIONS(6411), 1,
- anon_sym_COLON,
- STATE(3994), 1,
- sym_type_annotation,
- STATE(4639), 1,
- sym__initializer,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(6638), 3,
- sym__automatic_semicolon,
- anon_sym_COMMA,
- anon_sym_SEMI,
- [135711] = 2,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(7086), 7,
- sym__automatic_semicolon,
- anon_sym_EQ,
- anon_sym_COMMA,
- anon_sym_in,
- anon_sym_of,
- anon_sym_SEMI,
- anon_sym_COLON,
- [135725] = 6,
- ACTIONS(6403), 1,
- anon_sym_EQ,
- ACTIONS(6411), 1,
- anon_sym_COLON,
- STATE(4272), 1,
- sym_type_annotation,
- STATE(4931), 1,
- sym__initializer,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(6628), 3,
- sym__automatic_semicolon,
- anon_sym_COMMA,
- anon_sym_SEMI,
- [135747] = 6,
- ACTIONS(6403), 1,
- anon_sym_EQ,
- ACTIONS(6411), 1,
- anon_sym_COLON,
- STATE(3971), 1,
- sym_type_annotation,
- STATE(4833), 1,
- sym__initializer,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(6630), 3,
- sym__automatic_semicolon,
- anon_sym_COMMA,
- anon_sym_SEMI,
- [135769] = 6,
- ACTIONS(6403), 1,
- anon_sym_EQ,
- ACTIONS(6411), 1,
- anon_sym_COLON,
- STATE(4019), 1,
- sym_type_annotation,
- STATE(4719), 1,
- sym__initializer,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(6630), 3,
- sym__automatic_semicolon,
- anon_sym_COMMA,
- anon_sym_SEMI,
- [135791] = 2,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(1797), 7,
- sym__automatic_semicolon,
- anon_sym_LBRACE,
- anon_sym_COMMA,
- anon_sym_RBRACE,
- anon_sym_SEMI,
- anon_sym_DOT,
- anon_sym_PIPE_RBRACE,
- [135805] = 8,
- ACTIONS(2581), 1,
- anon_sym_LT,
- ACTIONS(6419), 1,
- anon_sym_LPAREN,
- ACTIONS(7272), 1,
- sym_identifier,
- ACTIONS(7274), 1,
- anon_sym_STAR,
- STATE(3742), 1,
- sym_formal_parameters,
- STATE(5349), 1,
- sym_type_parameters,
- STATE(5442), 1,
- sym__call_signature,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- [135831] = 6,
- ACTIONS(6403), 1,
- anon_sym_EQ,
- ACTIONS(6411), 1,
- anon_sym_COLON,
- STATE(4281), 1,
- sym_type_annotation,
- STATE(4937), 1,
- sym__initializer,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(6628), 3,
- sym__automatic_semicolon,
- anon_sym_COMMA,
- anon_sym_SEMI,
- [135853] = 8,
- ACTIONS(2581), 1,
- anon_sym_LT,
- ACTIONS(6419), 1,
- anon_sym_LPAREN,
- ACTIONS(7276), 1,
- sym_identifier,
- ACTIONS(7278), 1,
- anon_sym_STAR,
- STATE(3742), 1,
- sym_formal_parameters,
- STATE(5349), 1,
- sym_type_parameters,
- STATE(5441), 1,
- sym__call_signature,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- [135879] = 6,
- ACTIONS(6403), 1,
- anon_sym_EQ,
- ACTIONS(6411), 1,
- anon_sym_COLON,
- STATE(4321), 1,
- sym_type_annotation,
- STATE(5013), 1,
- sym__initializer,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(7260), 3,
- sym__automatic_semicolon,
- anon_sym_COMMA,
- anon_sym_SEMI,
- [135901] = 4,
- ACTIONS(2437), 1,
- anon_sym_LBRACE,
- STATE(5384), 1,
- sym_statement_block,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(7268), 5,
- sym__automatic_semicolon,
- anon_sym_COMMA,
- anon_sym_RBRACE,
- anon_sym_SEMI,
- anon_sym_PIPE_RBRACE,
- [135919] = 2,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(1855), 7,
- sym__automatic_semicolon,
- anon_sym_LBRACE,
- anon_sym_COMMA,
- anon_sym_RBRACE,
- anon_sym_SEMI,
- anon_sym_DOT,
- anon_sym_PIPE_RBRACE,
- [135933] = 4,
- ACTIONS(2437), 1,
- anon_sym_LBRACE,
- STATE(5468), 1,
- sym_statement_block,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(7280), 5,
- sym__automatic_semicolon,
- anon_sym_COMMA,
- anon_sym_RBRACE,
- anon_sym_SEMI,
- anon_sym_PIPE_RBRACE,
- [135951] = 4,
- ACTIONS(6411), 1,
- anon_sym_COLON,
- STATE(4358), 1,
- sym_type_annotation,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(7282), 5,
- sym__automatic_semicolon,
- anon_sym_COMMA,
- anon_sym_RBRACE,
- anon_sym_SEMI,
- anon_sym_PIPE_RBRACE,
- [135969] = 6,
- ACTIONS(6403), 1,
- anon_sym_EQ,
- ACTIONS(6411), 1,
- anon_sym_COLON,
- STATE(4322), 1,
- sym_type_annotation,
- STATE(5014), 1,
- sym__initializer,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(7260), 3,
- sym__automatic_semicolon,
- anon_sym_COMMA,
- anon_sym_SEMI,
- [135991] = 6,
- ACTIONS(6403), 1,
- anon_sym_EQ,
- ACTIONS(6411), 1,
- anon_sym_COLON,
- STATE(4162), 1,
- sym_type_annotation,
- STATE(4711), 1,
- sym__initializer,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(6630), 3,
- sym__automatic_semicolon,
- anon_sym_COMMA,
- anon_sym_SEMI,
- [136013] = 6,
- ACTIONS(6403), 1,
- anon_sym_EQ,
- ACTIONS(6411), 1,
- anon_sym_COLON,
- STATE(4186), 1,
- sym_type_annotation,
- STATE(4749), 1,
- sym__initializer,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(6630), 3,
- sym__automatic_semicolon,
- anon_sym_COMMA,
- anon_sym_SEMI,
- [136035] = 6,
- ACTIONS(6403), 1,
- anon_sym_EQ,
- ACTIONS(6411), 1,
- anon_sym_COLON,
- STATE(4228), 1,
- sym_type_annotation,
- STATE(4809), 1,
- sym__initializer,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(6630), 3,
- sym__automatic_semicolon,
- anon_sym_COMMA,
- anon_sym_SEMI,
- [136057] = 6,
- ACTIONS(6403), 1,
- anon_sym_EQ,
- ACTIONS(6411), 1,
- anon_sym_COLON,
- STATE(4242), 1,
- sym_type_annotation,
- STATE(4841), 1,
- sym__initializer,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(6630), 3,
- sym__automatic_semicolon,
- anon_sym_COMMA,
- anon_sym_SEMI,
- [136079] = 6,
- ACTIONS(6403), 1,
- anon_sym_EQ,
- ACTIONS(6411), 1,
- anon_sym_COLON,
- STATE(3927), 1,
- sym_type_annotation,
- STATE(4638), 1,
- sym__initializer,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(6638), 3,
- sym__automatic_semicolon,
- anon_sym_COMMA,
- anon_sym_SEMI,
- [136101] = 8,
- ACTIONS(2581), 1,
- anon_sym_LT,
- ACTIONS(6419), 1,
- anon_sym_LPAREN,
- ACTIONS(7284), 1,
- sym_identifier,
- ACTIONS(7286), 1,
- anon_sym_STAR,
- STATE(3742), 1,
- sym_formal_parameters,
- STATE(5349), 1,
- sym_type_parameters,
- STATE(5442), 1,
- sym__call_signature,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- [136127] = 6,
- ACTIONS(6403), 1,
- anon_sym_EQ,
- ACTIONS(6411), 1,
- anon_sym_COLON,
- STATE(4282), 1,
- sym_type_annotation,
- STATE(4939), 1,
- sym__initializer,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(6628), 3,
- sym__automatic_semicolon,
- anon_sym_COMMA,
- anon_sym_SEMI,
- [136149] = 6,
- ACTIONS(6403), 1,
- anon_sym_EQ,
- ACTIONS(6411), 1,
- anon_sym_COLON,
- STATE(4166), 1,
- sym_type_annotation,
- STATE(4718), 1,
- sym__initializer,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(6648), 3,
- sym__automatic_semicolon,
- anon_sym_COMMA,
- anon_sym_SEMI,
- [136171] = 3,
- ACTIONS(6781), 1,
- anon_sym_is,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(4041), 6,
- anon_sym_as,
- anon_sym_LBRACK,
- anon_sym_RBRACK,
- anon_sym_AMP,
- anon_sym_PIPE,
- anon_sym_extends,
- [136187] = 6,
- ACTIONS(6403), 1,
- anon_sym_EQ,
- ACTIONS(6411), 1,
- anon_sym_COLON,
- STATE(4168), 1,
- sym_type_annotation,
- STATE(4726), 1,
- sym__initializer,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(6648), 3,
- sym__automatic_semicolon,
- anon_sym_COMMA,
- anon_sym_SEMI,
- [136209] = 6,
- ACTIONS(6403), 1,
- anon_sym_EQ,
- ACTIONS(6411), 1,
- anon_sym_COLON,
- STATE(4169), 1,
- sym_type_annotation,
- STATE(4727), 1,
- sym__initializer,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(6648), 3,
- sym__automatic_semicolon,
- anon_sym_COMMA,
- anon_sym_SEMI,
- [136231] = 3,
- ACTIONS(7288), 1,
- anon_sym_EQ,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(3514), 6,
- anon_sym_COMMA,
- anon_sym_RBRACE,
- anon_sym_RPAREN,
- anon_sym_COLON,
- anon_sym_RBRACK,
- anon_sym_QMARK,
- [136247] = 8,
- ACTIONS(6763), 1,
- anon_sym_LBRACE,
- ACTIONS(6835), 1,
- anon_sym_extends,
- ACTIONS(6837), 1,
- anon_sym_implements,
- STATE(2490), 1,
- sym_class_body,
- STATE(5071), 1,
- sym_extends_clause,
- STATE(5310), 1,
- sym_class_heritage,
- STATE(5674), 1,
- sym_implements_clause,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- [136273] = 3,
- ACTIONS(7291), 1,
- anon_sym_is,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(4027), 6,
- anon_sym_as,
- anon_sym_LBRACK,
- anon_sym_RBRACK,
- anon_sym_AMP,
- anon_sym_PIPE,
- anon_sym_extends,
- [136289] = 8,
- ACTIONS(2581), 1,
- anon_sym_LT,
- ACTIONS(6419), 1,
- anon_sym_LPAREN,
- ACTIONS(7293), 1,
- sym_identifier,
- ACTIONS(7295), 1,
- anon_sym_STAR,
- STATE(3742), 1,
- sym_formal_parameters,
- STATE(5349), 1,
- sym_type_parameters,
- STATE(5441), 1,
- sym__call_signature,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- [136315] = 6,
- ACTIONS(6403), 1,
- anon_sym_EQ,
- ACTIONS(6411), 1,
- anon_sym_COLON,
- STATE(4173), 1,
- sym_type_annotation,
- STATE(4743), 1,
- sym__initializer,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(6648), 3,
- sym__automatic_semicolon,
- anon_sym_COMMA,
- anon_sym_SEMI,
- [136337] = 4,
- ACTIONS(2437), 1,
- anon_sym_LBRACE,
- STATE(5321), 1,
- sym_statement_block,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(7297), 5,
- sym__automatic_semicolon,
- anon_sym_COMMA,
- anon_sym_RBRACE,
- anon_sym_SEMI,
- anon_sym_PIPE_RBRACE,
- [136355] = 6,
- ACTIONS(6403), 1,
- anon_sym_EQ,
- ACTIONS(6411), 1,
- anon_sym_COLON,
- STATE(4176), 1,
- sym_type_annotation,
- STATE(4747), 1,
- sym__initializer,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(6648), 3,
- sym__automatic_semicolon,
- anon_sym_COMMA,
- anon_sym_SEMI,
- [136377] = 6,
- ACTIONS(6403), 1,
- anon_sym_EQ,
- ACTIONS(6411), 1,
- anon_sym_COLON,
- STATE(4374), 1,
- sym_type_annotation,
- STATE(5093), 1,
- sym__initializer,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(6638), 3,
- sym__automatic_semicolon,
- anon_sym_COMMA,
- anon_sym_SEMI,
- [136399] = 4,
- ACTIONS(2437), 1,
- anon_sym_LBRACE,
- STATE(5329), 1,
- sym_statement_block,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(7299), 5,
- sym__automatic_semicolon,
- anon_sym_COMMA,
- anon_sym_RBRACE,
- anon_sym_SEMI,
- anon_sym_PIPE_RBRACE,
- [136417] = 6,
- ACTIONS(4519), 1,
- anon_sym_LPAREN,
- ACTIONS(5991), 1,
- anon_sym_LT,
- STATE(2260), 1,
- sym_arguments,
- STATE(5483), 1,
- sym_type_arguments,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(7254), 3,
- anon_sym_LBRACK,
- sym_identifier,
- sym_private_property_identifier,
- [136439] = 2,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(6839), 7,
- sym__automatic_semicolon,
- anon_sym_EQ,
- anon_sym_COMMA,
- anon_sym_in,
- anon_sym_of,
- anon_sym_SEMI,
- anon_sym_COLON,
- [136453] = 6,
- ACTIONS(6403), 1,
- anon_sym_EQ,
- ACTIONS(6411), 1,
- anon_sym_COLON,
- STATE(3925), 1,
- sym_type_annotation,
- STATE(4598), 1,
- sym__initializer,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(6630), 3,
- sym__automatic_semicolon,
- anon_sym_COMMA,
- anon_sym_SEMI,
- [136475] = 8,
- ACTIONS(1506), 1,
- anon_sym_DQUOTE,
- ACTIONS(1508), 1,
- anon_sym_SQUOTE,
- ACTIONS(7220), 1,
- anon_sym_DOT,
- ACTIONS(7301), 1,
- sym_identifier,
- STATE(741), 1,
- sym_string,
- STATE(825), 1,
- sym__module,
- STATE(4429), 1,
- sym_nested_identifier,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- [136501] = 4,
- ACTIONS(2437), 1,
- anon_sym_LBRACE,
- STATE(5506), 1,
- sym_statement_block,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(7224), 5,
- sym__automatic_semicolon,
- anon_sym_COMMA,
- anon_sym_RBRACE,
- anon_sym_SEMI,
- anon_sym_PIPE_RBRACE,
- [136519] = 6,
- ACTIONS(6403), 1,
- anon_sym_EQ,
- ACTIONS(6411), 1,
- anon_sym_COLON,
- STATE(4237), 1,
- sym_type_annotation,
- STATE(4847), 1,
- sym__initializer,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(6628), 3,
- sym__automatic_semicolon,
- anon_sym_COMMA,
- anon_sym_SEMI,
- [136541] = 6,
- ACTIONS(6403), 1,
- anon_sym_EQ,
- ACTIONS(6411), 1,
- anon_sym_COLON,
- STATE(3917), 1,
- sym_type_annotation,
- STATE(5106), 1,
- sym__initializer,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(6638), 3,
- sym__automatic_semicolon,
- anon_sym_COMMA,
- anon_sym_SEMI,
- [136563] = 6,
- ACTIONS(6403), 1,
- anon_sym_EQ,
- ACTIONS(6411), 1,
- anon_sym_COLON,
- STATE(4021), 1,
- sym_type_annotation,
- STATE(4792), 1,
- sym__initializer,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(6638), 3,
- sym__automatic_semicolon,
- anon_sym_COMMA,
- anon_sym_SEMI,
- [136585] = 6,
- ACTIONS(6403), 1,
- anon_sym_EQ,
- ACTIONS(6411), 1,
- anon_sym_COLON,
- STATE(3967), 1,
- sym_type_annotation,
- STATE(4855), 1,
- sym__initializer,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(6630), 3,
- sym__automatic_semicolon,
- anon_sym_COMMA,
- anon_sym_SEMI,
- [136607] = 3,
- ACTIONS(7303), 1,
- anon_sym_EQ,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(3549), 6,
- anon_sym_COMMA,
- anon_sym_RBRACE,
- anon_sym_RPAREN,
- anon_sym_COLON,
- anon_sym_RBRACK,
- anon_sym_QMARK,
- [136623] = 4,
- ACTIONS(2437), 1,
- anon_sym_LBRACE,
- STATE(5334), 1,
- sym_statement_block,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(7297), 5,
- sym__automatic_semicolon,
- anon_sym_COMMA,
- anon_sym_RBRACE,
- anon_sym_SEMI,
- anon_sym_PIPE_RBRACE,
- [136641] = 6,
- ACTIONS(6403), 1,
- anon_sym_EQ,
- ACTIONS(6411), 1,
- anon_sym_COLON,
- STATE(4183), 1,
- sym_type_annotation,
- STATE(4758), 1,
- sym__initializer,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(6648), 3,
- sym__automatic_semicolon,
- anon_sym_COMMA,
- anon_sym_SEMI,
- [136663] = 3,
- ACTIONS(4470), 1,
- sym_identifier,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(4472), 6,
- anon_sym_LBRACE,
- anon_sym_LPAREN,
- anon_sym_GT,
- sym_jsx_identifier,
- anon_sym_SLASH_GT,
- anon_sym_BQUOTE,
- [136679] = 3,
- ACTIONS(7305), 1,
- anon_sym_EQ,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(3514), 6,
- anon_sym_COMMA,
- anon_sym_RBRACE,
- anon_sym_RPAREN,
- anon_sym_COLON,
- anon_sym_RBRACK,
- anon_sym_QMARK,
- [136695] = 8,
- ACTIONS(2581), 1,
- anon_sym_LT,
- ACTIONS(6419), 1,
- anon_sym_LPAREN,
- ACTIONS(7308), 1,
- anon_sym_COLON,
- ACTIONS(7310), 1,
- anon_sym_QMARK,
- STATE(3742), 1,
- sym_formal_parameters,
- STATE(5349), 1,
- sym_type_parameters,
- STATE(5471), 1,
- sym__call_signature,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- [136721] = 6,
- ACTIONS(6403), 1,
- anon_sym_EQ,
- ACTIONS(6411), 1,
- anon_sym_COLON,
- STATE(4185), 1,
- sym_type_annotation,
- STATE(4762), 1,
- sym__initializer,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(6648), 3,
- sym__automatic_semicolon,
- anon_sym_COMMA,
- anon_sym_SEMI,
- [136743] = 6,
- ACTIONS(6403), 1,
- anon_sym_EQ,
- ACTIONS(6411), 1,
- anon_sym_COLON,
- STATE(3919), 1,
- sym_type_annotation,
- STATE(4641), 1,
- sym__initializer,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(6638), 3,
- sym__automatic_semicolon,
- anon_sym_COMMA,
- anon_sym_SEMI,
- [136765] = 6,
- ACTIONS(6403), 1,
- anon_sym_EQ,
- ACTIONS(6411), 1,
- anon_sym_COLON,
- STATE(3985), 1,
- sym_type_annotation,
- STATE(4596), 1,
- sym__initializer,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(6638), 3,
- sym__automatic_semicolon,
- anon_sym_COMMA,
- anon_sym_SEMI,
- [136787] = 6,
- ACTIONS(6403), 1,
- anon_sym_EQ,
- ACTIONS(6411), 1,
- anon_sym_COLON,
- STATE(4244), 1,
- sym_type_annotation,
- STATE(4871), 1,
- sym__initializer,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(6628), 3,
- sym__automatic_semicolon,
- anon_sym_COMMA,
- anon_sym_SEMI,
- [136809] = 6,
- ACTIONS(6403), 1,
- anon_sym_EQ,
- ACTIONS(6411), 1,
- anon_sym_COLON,
- STATE(3992), 1,
- sym_type_annotation,
- STATE(4613), 1,
- sym__initializer,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(6638), 3,
- sym__automatic_semicolon,
- anon_sym_COMMA,
- anon_sym_SEMI,
- [136831] = 8,
- ACTIONS(6763), 1,
- anon_sym_LBRACE,
- ACTIONS(6835), 1,
- anon_sym_extends,
- ACTIONS(6837), 1,
- anon_sym_implements,
- STATE(1723), 1,
- sym_class_body,
- STATE(5071), 1,
- sym_extends_clause,
- STATE(5501), 1,
- sym_class_heritage,
- STATE(5674), 1,
- sym_implements_clause,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- [136857] = 3,
- ACTIONS(7312), 1,
- anon_sym_AMP,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(4400), 6,
- anon_sym_COMMA,
- anon_sym_LBRACK,
- anon_sym_RBRACK,
- anon_sym_PIPE,
- anon_sym_QMARK,
- anon_sym_extends,
- [136873] = 5,
- ACTIONS(7312), 1,
- anon_sym_AMP,
- ACTIONS(7314), 1,
- anon_sym_PIPE,
- ACTIONS(7316), 1,
- anon_sym_extends,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(4422), 4,
- anon_sym_COMMA,
- anon_sym_LBRACK,
- anon_sym_RBRACK,
- anon_sym_QMARK,
- [136893] = 3,
- ACTIONS(7318), 1,
- anon_sym_extends,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(4430), 6,
- anon_sym_COMMA,
- anon_sym_LBRACK,
- anon_sym_RBRACK,
- anon_sym_AMP,
- anon_sym_PIPE,
- anon_sym_QMARK,
- [136909] = 8,
- ACTIONS(6835), 1,
- anon_sym_extends,
- ACTIONS(6837), 1,
- anon_sym_implements,
- ACTIONS(6976), 1,
- anon_sym_LBRACE,
- STATE(4006), 1,
- sym_class_body,
- STATE(5071), 1,
- sym_extends_clause,
- STATE(5502), 1,
- sym_class_heritage,
- STATE(5674), 1,
- sym_implements_clause,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- [136935] = 8,
- ACTIONS(222), 1,
- anon_sym_LBRACE_PIPE,
- ACTIONS(1498), 1,
- anon_sym_LBRACE,
- ACTIONS(7236), 1,
- anon_sym_LT,
- ACTIONS(7238), 1,
- anon_sym_extends,
- STATE(857), 1,
- sym_object_type,
- STATE(4419), 1,
- sym_type_parameters,
- STATE(4766), 1,
- sym_extends_type_clause,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- [136961] = 5,
- ACTIONS(7312), 1,
- anon_sym_AMP,
- ACTIONS(7314), 1,
- anon_sym_PIPE,
- ACTIONS(7316), 1,
- anon_sym_extends,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(4106), 4,
- anon_sym_COMMA,
- anon_sym_LBRACK,
- anon_sym_RBRACK,
- anon_sym_QMARK,
- [136981] = 8,
- ACTIONS(6763), 1,
- anon_sym_LBRACE,
- ACTIONS(6835), 1,
- anon_sym_extends,
- ACTIONS(6837), 1,
- anon_sym_implements,
- STATE(1758), 1,
- sym_class_body,
- STATE(5071), 1,
- sym_extends_clause,
- STATE(5524), 1,
- sym_class_heritage,
- STATE(5674), 1,
- sym_implements_clause,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- [137007] = 3,
- ACTIONS(7312), 1,
- anon_sym_AMP,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(4136), 6,
- anon_sym_COMMA,
- anon_sym_LBRACK,
- anon_sym_RBRACK,
- anon_sym_PIPE,
- anon_sym_QMARK,
- anon_sym_extends,
- [137023] = 6,
- ACTIONS(6403), 1,
- anon_sym_EQ,
- ACTIONS(6411), 1,
- anon_sym_COLON,
- STATE(4188), 1,
- sym_type_annotation,
- STATE(4767), 1,
- sym__initializer,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(6648), 3,
- sym__automatic_semicolon,
- anon_sym_COMMA,
- anon_sym_SEMI,
- [137045] = 4,
- ACTIONS(6411), 1,
- anon_sym_COLON,
- STATE(4000), 1,
- sym_type_annotation,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(7320), 5,
- sym__automatic_semicolon,
- anon_sym_COMMA,
- anon_sym_RBRACE,
- anon_sym_SEMI,
- anon_sym_PIPE_RBRACE,
- [137063] = 6,
- ACTIONS(6403), 1,
- anon_sym_EQ,
- ACTIONS(6411), 1,
- anon_sym_COLON,
- STATE(4240), 1,
- sym_type_annotation,
- STATE(4864), 1,
- sym__initializer,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(6628), 3,
- sym__automatic_semicolon,
- anon_sym_COMMA,
- anon_sym_SEMI,
- [137085] = 5,
- ACTIONS(7312), 1,
- anon_sym_AMP,
- ACTIONS(7314), 1,
- anon_sym_PIPE,
- ACTIONS(7316), 1,
- anon_sym_extends,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(4358), 4,
- anon_sym_COMMA,
- anon_sym_LBRACK,
- anon_sym_RBRACK,
- anon_sym_QMARK,
- [137105] = 5,
- ACTIONS(7312), 1,
- anon_sym_AMP,
- ACTIONS(7314), 1,
- anon_sym_PIPE,
- ACTIONS(7316), 1,
- anon_sym_extends,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(4362), 4,
- anon_sym_COMMA,
- anon_sym_LBRACK,
- anon_sym_RBRACK,
- anon_sym_QMARK,
- [137125] = 4,
- ACTIONS(6411), 1,
- anon_sym_COLON,
- STATE(4044), 1,
- sym_type_annotation,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(7322), 5,
- sym__automatic_semicolon,
- anon_sym_COMMA,
- anon_sym_RBRACE,
- anon_sym_SEMI,
- anon_sym_PIPE_RBRACE,
- [137143] = 6,
- ACTIONS(6403), 1,
- anon_sym_EQ,
- ACTIONS(6411), 1,
- anon_sym_COLON,
- STATE(4189), 1,
- sym_type_annotation,
- STATE(4769), 1,
- sym__initializer,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(6648), 3,
- sym__automatic_semicolon,
- anon_sym_COMMA,
- anon_sym_SEMI,
- [137165] = 6,
- ACTIONS(6403), 1,
- anon_sym_EQ,
- ACTIONS(6411), 1,
- anon_sym_COLON,
- STATE(4190), 1,
- sym_type_annotation,
- STATE(4774), 1,
- sym__initializer,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(6648), 3,
- sym__automatic_semicolon,
- anon_sym_COMMA,
- anon_sym_SEMI,
- [137187] = 6,
- ACTIONS(6403), 1,
- anon_sym_EQ,
- ACTIONS(6411), 1,
- anon_sym_COLON,
- STATE(4191), 1,
- sym_type_annotation,
- STATE(4775), 1,
- sym__initializer,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(6648), 3,
- sym__automatic_semicolon,
- anon_sym_COMMA,
- anon_sym_SEMI,
- [137209] = 2,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(7324), 7,
- sym__automatic_semicolon,
- anon_sym_LBRACE,
- anon_sym_COMMA,
- anon_sym_RBRACE,
- anon_sym_SEMI,
- anon_sym_COLON,
- anon_sym_PIPE_RBRACE,
- [137223] = 6,
- ACTIONS(6403), 1,
- anon_sym_EQ,
- ACTIONS(6411), 1,
- anon_sym_COLON,
- STATE(4198), 1,
- sym_type_annotation,
- STATE(4564), 1,
- sym__initializer,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(6648), 3,
- sym__automatic_semicolon,
- anon_sym_COMMA,
- anon_sym_SEMI,
- [137245] = 6,
- ACTIONS(6403), 1,
- anon_sym_EQ,
- ACTIONS(6411), 1,
- anon_sym_COLON,
- STATE(4199), 1,
- sym_type_annotation,
- STATE(4785), 1,
- sym__initializer,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(6648), 3,
- sym__automatic_semicolon,
- anon_sym_COMMA,
- anon_sym_SEMI,
- [137267] = 2,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(7098), 7,
- sym__automatic_semicolon,
- anon_sym_EQ,
- anon_sym_COMMA,
- anon_sym_in,
- anon_sym_of,
- anon_sym_SEMI,
- anon_sym_COLON,
- [137281] = 4,
- ACTIONS(2437), 1,
- anon_sym_LBRACE,
- STATE(5351), 1,
- sym_statement_block,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(7299), 5,
- sym__automatic_semicolon,
- anon_sym_COMMA,
- anon_sym_RBRACE,
- anon_sym_SEMI,
- anon_sym_PIPE_RBRACE,
- [137299] = 8,
- ACTIONS(6835), 1,
- anon_sym_extends,
- ACTIONS(6837), 1,
- anon_sym_implements,
- ACTIONS(6976), 1,
- anon_sym_LBRACE,
- STATE(4062), 1,
- sym_class_body,
- STATE(5071), 1,
- sym_extends_clause,
- STATE(5213), 1,
- sym_class_heritage,
- STATE(5674), 1,
- sym_implements_clause,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- [137325] = 4,
- ACTIONS(2437), 1,
- anon_sym_LBRACE,
- STATE(5198), 1,
- sym_statement_block,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(7258), 5,
- sym__automatic_semicolon,
- anon_sym_COMMA,
- anon_sym_RBRACE,
- anon_sym_SEMI,
- anon_sym_PIPE_RBRACE,
- [137343] = 4,
- ACTIONS(2437), 1,
- anon_sym_LBRACE,
- STATE(5204), 1,
- sym_statement_block,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(7326), 5,
- sym__automatic_semicolon,
- anon_sym_COMMA,
- anon_sym_RBRACE,
- anon_sym_SEMI,
- anon_sym_PIPE_RBRACE,
- [137361] = 6,
- ACTIONS(6403), 1,
- anon_sym_EQ,
- ACTIONS(6411), 1,
- anon_sym_COLON,
- STATE(4200), 1,
- sym_type_annotation,
- STATE(4789), 1,
- sym__initializer,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(6648), 3,
- sym__automatic_semicolon,
- anon_sym_COMMA,
- anon_sym_SEMI,
- [137383] = 6,
- ACTIONS(6403), 1,
- anon_sym_EQ,
- ACTIONS(6411), 1,
- anon_sym_COLON,
- STATE(4201), 1,
- sym_type_annotation,
- STATE(4790), 1,
- sym__initializer,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(6648), 3,
- sym__automatic_semicolon,
- anon_sym_COMMA,
- anon_sym_SEMI,
- [137405] = 6,
- ACTIONS(6403), 1,
- anon_sym_EQ,
- ACTIONS(6411), 1,
- anon_sym_COLON,
- STATE(4390), 1,
- sym_type_annotation,
- STATE(5125), 1,
- sym__initializer,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(6638), 3,
- sym__automatic_semicolon,
- anon_sym_COMMA,
- anon_sym_SEMI,
- [137427] = 5,
- ACTIONS(7312), 1,
- anon_sym_AMP,
- ACTIONS(7314), 1,
- anon_sym_PIPE,
- ACTIONS(7316), 1,
- anon_sym_extends,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(4197), 4,
- anon_sym_COMMA,
- anon_sym_LBRACK,
- anon_sym_RBRACK,
- anon_sym_QMARK,
- [137447] = 6,
- ACTIONS(6403), 1,
- anon_sym_EQ,
- ACTIONS(6411), 1,
- anon_sym_COLON,
- STATE(4286), 1,
- sym_type_annotation,
- STATE(4943), 1,
- sym__initializer,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(6628), 3,
- sym__automatic_semicolon,
- anon_sym_COMMA,
- anon_sym_SEMI,
- [137469] = 3,
- ACTIONS(6781), 1,
- anon_sym_is,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(4015), 6,
- anon_sym_as,
- anon_sym_LBRACK,
- anon_sym_RBRACK,
- anon_sym_AMP,
- anon_sym_PIPE,
- anon_sym_extends,
- [137485] = 6,
- ACTIONS(6403), 1,
- anon_sym_EQ,
- ACTIONS(6411), 1,
- anon_sym_COLON,
- STATE(4208), 1,
- sym_type_annotation,
- STATE(4805), 1,
- sym__initializer,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(6648), 3,
- sym__automatic_semicolon,
- anon_sym_COMMA,
- anon_sym_SEMI,
- [137507] = 8,
- ACTIONS(6725), 1,
- anon_sym_LBRACE,
- ACTIONS(6835), 1,
- anon_sym_extends,
- ACTIONS(6837), 1,
- anon_sym_implements,
- STATE(2201), 1,
- sym_class_body,
- STATE(5071), 1,
- sym_extends_clause,
- STATE(5230), 1,
- sym_class_heritage,
- STATE(5674), 1,
- sym_implements_clause,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- [137533] = 5,
- ACTIONS(7312), 1,
- anon_sym_AMP,
- ACTIONS(7314), 1,
- anon_sym_PIPE,
- ACTIONS(7316), 1,
- anon_sym_extends,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(4214), 4,
- anon_sym_COMMA,
- anon_sym_LBRACK,
- anon_sym_RBRACK,
- anon_sym_QMARK,
- [137553] = 6,
- ACTIONS(6254), 1,
- anon_sym_EQ,
- STATE(4540), 1,
- sym_constraint,
- STATE(5495), 1,
- sym_default_type,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(6258), 2,
- anon_sym_COMMA,
- anon_sym_GT,
- ACTIONS(7328), 2,
- anon_sym_COLON,
- anon_sym_extends,
- [137575] = 8,
- ACTIONS(6835), 1,
- anon_sym_extends,
- ACTIONS(6837), 1,
- anon_sym_implements,
- ACTIONS(6976), 1,
- anon_sym_LBRACE,
- STATE(4076), 1,
- sym_class_body,
- STATE(5071), 1,
- sym_extends_clause,
- STATE(5237), 1,
- sym_class_heritage,
- STATE(5674), 1,
- sym_implements_clause,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- [137601] = 8,
- ACTIONS(6763), 1,
- anon_sym_LBRACE,
- ACTIONS(6835), 1,
- anon_sym_extends,
- ACTIONS(6837), 1,
- anon_sym_implements,
- STATE(1628), 1,
- sym_class_body,
- STATE(5071), 1,
- sym_extends_clause,
- STATE(5249), 1,
- sym_class_heritage,
- STATE(5674), 1,
- sym_implements_clause,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- [137627] = 6,
- ACTIONS(6403), 1,
- anon_sym_EQ,
- ACTIONS(6411), 1,
- anon_sym_COLON,
- STATE(4083), 1,
- sym_type_annotation,
- STATE(5055), 1,
- sym__initializer,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(6656), 3,
- sym__automatic_semicolon,
- anon_sym_COMMA,
- anon_sym_SEMI,
- [137649] = 2,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(4989), 7,
- sym__automatic_semicolon,
- anon_sym_EQ,
- anon_sym_COMMA,
- anon_sym_in,
- anon_sym_of,
- anon_sym_SEMI,
- anon_sym_COLON,
- [137663] = 6,
- ACTIONS(6403), 1,
- anon_sym_EQ,
- ACTIONS(6411), 1,
- anon_sym_COLON,
- STATE(3929), 1,
- sym_type_annotation,
- STATE(4714), 1,
- sym__initializer,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(6638), 3,
- sym__automatic_semicolon,
- anon_sym_COMMA,
- anon_sym_SEMI,
- [137685] = 6,
- ACTIONS(6254), 1,
- anon_sym_EQ,
- STATE(4456), 1,
- sym_constraint,
- STATE(5346), 1,
- sym_default_type,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(7328), 2,
- anon_sym_COLON,
- anon_sym_extends,
- ACTIONS(7330), 2,
- anon_sym_COMMA,
- anon_sym_GT,
- [137707] = 5,
- ACTIONS(6572), 1,
- anon_sym_COLON,
- ACTIONS(7332), 1,
- sym_identifier,
- ACTIONS(7334), 1,
- anon_sym_EQ,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(7336), 4,
- anon_sym_LBRACE,
- anon_sym_GT,
- sym_jsx_identifier,
- anon_sym_SLASH_GT,
- [137727] = 8,
- ACTIONS(6725), 1,
- anon_sym_LBRACE,
- ACTIONS(6835), 1,
- anon_sym_extends,
- ACTIONS(6837), 1,
- anon_sym_implements,
- STATE(2341), 1,
- sym_class_body,
- STATE(5071), 1,
- sym_extends_clause,
- STATE(5530), 1,
- sym_class_heritage,
- STATE(5674), 1,
- sym_implements_clause,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- [137753] = 6,
- ACTIONS(6403), 1,
- anon_sym_EQ,
- ACTIONS(6411), 1,
- anon_sym_COLON,
- STATE(4267), 1,
- sym_type_annotation,
- STATE(4926), 1,
- sym__initializer,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(6715), 3,
- sym__automatic_semicolon,
- anon_sym_COMMA,
- anon_sym_SEMI,
- [137775] = 8,
- ACTIONS(6835), 1,
- anon_sym_extends,
- ACTIONS(6837), 1,
- anon_sym_implements,
- ACTIONS(6976), 1,
- anon_sym_LBRACE,
- STATE(4106), 1,
- sym_class_body,
- STATE(5071), 1,
- sym_extends_clause,
- STATE(5289), 1,
- sym_class_heritage,
- STATE(5674), 1,
- sym_implements_clause,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- [137801] = 8,
- ACTIONS(2581), 1,
- anon_sym_LT,
- ACTIONS(6419), 1,
- anon_sym_LPAREN,
- ACTIONS(7338), 1,
- sym_identifier,
- ACTIONS(7340), 1,
- anon_sym_STAR,
- STATE(3742), 1,
- sym_formal_parameters,
- STATE(5349), 1,
- sym_type_parameters,
- STATE(5442), 1,
- sym__call_signature,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- [137827] = 6,
- ACTIONS(6403), 1,
- anon_sym_EQ,
- ACTIONS(6411), 1,
- anon_sym_COLON,
- STATE(4395), 1,
- sym_type_annotation,
- STATE(5127), 1,
- sym__initializer,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(6638), 3,
- sym__automatic_semicolon,
- anon_sym_COMMA,
- anon_sym_SEMI,
- [137849] = 8,
- ACTIONS(2581), 1,
- anon_sym_LT,
- ACTIONS(6419), 1,
- anon_sym_LPAREN,
- ACTIONS(7310), 1,
- anon_sym_QMARK,
- ACTIONS(7342), 1,
- anon_sym_COLON,
- STATE(3742), 1,
- sym_formal_parameters,
- STATE(5349), 1,
- sym_type_parameters,
- STATE(5471), 1,
- sym__call_signature,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- [137875] = 5,
- ACTIONS(7312), 1,
- anon_sym_AMP,
- ACTIONS(7314), 1,
- anon_sym_PIPE,
- ACTIONS(7316), 1,
- anon_sym_extends,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(4311), 4,
- anon_sym_COMMA,
- anon_sym_LBRACK,
- anon_sym_RBRACK,
- anon_sym_QMARK,
- [137895] = 6,
- ACTIONS(6403), 1,
- anon_sym_EQ,
- ACTIONS(6411), 1,
- anon_sym_COLON,
- STATE(4287), 1,
- sym_type_annotation,
- STATE(4946), 1,
- sym__initializer,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(6628), 3,
- sym__automatic_semicolon,
- anon_sym_COMMA,
- anon_sym_SEMI,
- [137917] = 6,
- ACTIONS(6403), 1,
- anon_sym_EQ,
- ACTIONS(6411), 1,
- anon_sym_COLON,
- STATE(4288), 1,
- sym_type_annotation,
- STATE(4950), 1,
- sym__initializer,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(6628), 3,
- sym__automatic_semicolon,
- anon_sym_COMMA,
- anon_sym_SEMI,
- [137939] = 2,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(4985), 7,
- sym__automatic_semicolon,
- anon_sym_EQ,
- anon_sym_COMMA,
- anon_sym_in,
- anon_sym_of,
- anon_sym_SEMI,
- anon_sym_COLON,
- [137953] = 6,
- ACTIONS(6403), 1,
- anon_sym_EQ,
- ACTIONS(6411), 1,
- anon_sym_COLON,
- STATE(4401), 1,
- sym_type_annotation,
- STATE(5142), 1,
- sym__initializer,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(6638), 3,
- sym__automatic_semicolon,
- anon_sym_COMMA,
- anon_sym_SEMI,
- [137975] = 8,
- ACTIONS(6835), 1,
- anon_sym_extends,
- ACTIONS(6837), 1,
- anon_sym_implements,
- ACTIONS(6960), 1,
- anon_sym_LBRACE,
- STATE(234), 1,
- sym_class_body,
- STATE(5071), 1,
- sym_extends_clause,
- STATE(5350), 1,
- sym_class_heritage,
- STATE(5674), 1,
- sym_implements_clause,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- [138001] = 6,
- ACTIONS(6403), 1,
- anon_sym_EQ,
- ACTIONS(6411), 1,
- anon_sym_COLON,
- STATE(4087), 1,
- sym_type_annotation,
- STATE(5072), 1,
- sym__initializer,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(6648), 3,
- sym__automatic_semicolon,
- anon_sym_COMMA,
- anon_sym_SEMI,
- [138023] = 6,
- ACTIONS(6403), 1,
- anon_sym_EQ,
- ACTIONS(6411), 1,
- anon_sym_COLON,
- STATE(4406), 1,
- sym_type_annotation,
- STATE(5143), 1,
- sym__initializer,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(6638), 3,
- sym__automatic_semicolon,
- anon_sym_COMMA,
- anon_sym_SEMI,
- [138045] = 2,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(6875), 7,
- sym__automatic_semicolon,
- anon_sym_EQ,
- anon_sym_COMMA,
- anon_sym_in,
- anon_sym_of,
- anon_sym_SEMI,
- anon_sym_COLON,
- [138059] = 6,
- ACTIONS(6403), 1,
- anon_sym_EQ,
- ACTIONS(6411), 1,
- anon_sym_COLON,
- STATE(4241), 1,
- sym_type_annotation,
- STATE(4865), 1,
- sym__initializer,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(6628), 3,
- sym__automatic_semicolon,
- anon_sym_COMMA,
- anon_sym_SEMI,
- [138081] = 6,
- ACTIONS(6403), 1,
- anon_sym_EQ,
- ACTIONS(6411), 1,
- anon_sym_COLON,
- STATE(4407), 1,
- sym_type_annotation,
- STATE(5146), 1,
- sym__initializer,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(6638), 3,
- sym__automatic_semicolon,
- anon_sym_COMMA,
- anon_sym_SEMI,
- [138103] = 6,
- ACTIONS(6403), 1,
- anon_sym_EQ,
- ACTIONS(6411), 1,
- anon_sym_COLON,
- STATE(4245), 1,
- sym_type_annotation,
- STATE(4873), 1,
- sym__initializer,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(6628), 3,
- sym__automatic_semicolon,
- anon_sym_COMMA,
- anon_sym_SEMI,
- [138125] = 4,
- ACTIONS(2437), 1,
- anon_sym_LBRACE,
- STATE(5267), 1,
- sym_statement_block,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(7344), 5,
- sym__automatic_semicolon,
- anon_sym_COMMA,
- anon_sym_RBRACE,
- anon_sym_SEMI,
- anon_sym_PIPE_RBRACE,
- [138143] = 4,
- ACTIONS(2437), 1,
- anon_sym_LBRACE,
- STATE(5269), 1,
- sym_statement_block,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(7346), 5,
- sym__automatic_semicolon,
- anon_sym_COMMA,
- anon_sym_RBRACE,
- anon_sym_SEMI,
- anon_sym_PIPE_RBRACE,
- [138161] = 6,
- ACTIONS(3337), 1,
- anon_sym_LBRACE,
- ACTIONS(3339), 1,
- anon_sym_LBRACK,
- ACTIONS(7266), 1,
- sym_identifier,
- STATE(4442), 1,
- sym_variable_declarator,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- STATE(3661), 3,
- sym_object_pattern,
- sym_array_pattern,
- sym__destructuring_pattern,
- [138183] = 4,
- ACTIONS(2437), 1,
- anon_sym_LBRACE,
- STATE(5352), 1,
- sym_statement_block,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(7346), 5,
- sym__automatic_semicolon,
- anon_sym_COMMA,
- anon_sym_RBRACE,
- anon_sym_SEMI,
- anon_sym_PIPE_RBRACE,
- [138201] = 4,
- ACTIONS(2437), 1,
- anon_sym_LBRACE,
- STATE(5383), 1,
- sym_statement_block,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(7344), 5,
- sym__automatic_semicolon,
- anon_sym_COMMA,
- anon_sym_RBRACE,
- anon_sym_SEMI,
- anon_sym_PIPE_RBRACE,
- [138219] = 6,
- ACTIONS(6403), 1,
- anon_sym_EQ,
- ACTIONS(6411), 1,
- anon_sym_COLON,
- STATE(4384), 1,
- sym_type_annotation,
- STATE(5111), 1,
- sym__initializer,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(6638), 3,
- sym__automatic_semicolon,
- anon_sym_COMMA,
- anon_sym_SEMI,
- [138241] = 6,
- ACTIONS(6403), 1,
- anon_sym_EQ,
- ACTIONS(6411), 1,
- anon_sym_COLON,
- STATE(4104), 1,
- sym_type_annotation,
- STATE(5118), 1,
- sym__initializer,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(6648), 3,
- sym__automatic_semicolon,
- anon_sym_COMMA,
- anon_sym_SEMI,
- [138263] = 6,
- ACTIONS(6403), 1,
- anon_sym_EQ,
- ACTIONS(6411), 1,
- anon_sym_COLON,
- STATE(4247), 1,
- sym_type_annotation,
- STATE(4876), 1,
- sym__initializer,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(6628), 3,
- sym__automatic_semicolon,
- anon_sym_COMMA,
- anon_sym_SEMI,
- [138285] = 6,
- ACTIONS(6403), 1,
- anon_sym_EQ,
- ACTIONS(6411), 1,
- anon_sym_COLON,
- STATE(4108), 1,
- sym_type_annotation,
- STATE(5147), 1,
- sym__initializer,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(6648), 3,
- sym__automatic_semicolon,
- anon_sym_COMMA,
- anon_sym_SEMI,
- [138307] = 6,
- ACTIONS(6403), 1,
- anon_sym_EQ,
- ACTIONS(6411), 1,
- anon_sym_COLON,
- STATE(4289), 1,
- sym_type_annotation,
- STATE(4952), 1,
- sym__initializer,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(6628), 3,
- sym__automatic_semicolon,
- anon_sym_COMMA,
- anon_sym_SEMI,
- [138329] = 6,
- ACTIONS(3337), 1,
- anon_sym_LBRACE,
- ACTIONS(3339), 1,
- anon_sym_LBRACK,
- ACTIONS(7266), 1,
- sym_identifier,
- STATE(4452), 1,
- sym_variable_declarator,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- STATE(3661), 3,
- sym_object_pattern,
- sym_array_pattern,
- sym__destructuring_pattern,
- [138351] = 6,
- ACTIONS(6403), 1,
- anon_sym_EQ,
- ACTIONS(6411), 1,
- anon_sym_COLON,
- STATE(4171), 1,
- sym_type_annotation,
- STATE(4736), 1,
- sym__initializer,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(6632), 3,
- sym__automatic_semicolon,
- anon_sym_COMMA,
- anon_sym_SEMI,
- [138373] = 8,
- ACTIONS(2581), 1,
- anon_sym_LT,
- ACTIONS(6419), 1,
- anon_sym_LPAREN,
- ACTIONS(7348), 1,
- sym_identifier,
- ACTIONS(7350), 1,
- anon_sym_STAR,
- STATE(3742), 1,
- sym_formal_parameters,
- STATE(5349), 1,
- sym_type_parameters,
- STATE(5442), 1,
- sym__call_signature,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- [138399] = 6,
- ACTIONS(6403), 1,
- anon_sym_EQ,
- ACTIONS(6411), 1,
- anon_sym_COLON,
- STATE(4129), 1,
- sym_type_annotation,
- STATE(4612), 1,
- sym__initializer,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(6648), 3,
- sym__automatic_semicolon,
- anon_sym_COMMA,
- anon_sym_SEMI,
- [138421] = 6,
- ACTIONS(6403), 1,
- anon_sym_EQ,
- ACTIONS(6411), 1,
- anon_sym_COLON,
- STATE(4409), 1,
- sym_type_annotation,
- STATE(5149), 1,
- sym__initializer,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(6638), 3,
- sym__automatic_semicolon,
- anon_sym_COMMA,
- anon_sym_SEMI,
- [138443] = 6,
- ACTIONS(3337), 1,
- anon_sym_LBRACE,
- ACTIONS(3339), 1,
- anon_sym_LBRACK,
- ACTIONS(7266), 1,
- sym_identifier,
- STATE(4506), 1,
- sym_variable_declarator,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- STATE(3661), 3,
- sym_object_pattern,
- sym_array_pattern,
- sym__destructuring_pattern,
- [138465] = 8,
- ACTIONS(2581), 1,
- anon_sym_LT,
- ACTIONS(6419), 1,
- anon_sym_LPAREN,
- ACTIONS(7352), 1,
- sym_identifier,
- ACTIONS(7354), 1,
- anon_sym_STAR,
- STATE(3742), 1,
- sym_formal_parameters,
- STATE(5349), 1,
- sym_type_parameters,
- STATE(5441), 1,
- sym__call_signature,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- [138491] = 3,
- ACTIONS(4142), 1,
- sym_identifier,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(4144), 6,
- anon_sym_LBRACE,
- anon_sym_LPAREN,
- anon_sym_GT,
- sym_jsx_identifier,
- anon_sym_SLASH_GT,
- anon_sym_BQUOTE,
- [138507] = 5,
- ACTIONS(5644), 1,
- anon_sym_COMMA,
- ACTIONS(5700), 1,
- anon_sym_RBRACE,
- STATE(5124), 1,
- aux_sym_object_repeat1,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(3743), 4,
- anon_sym_LPAREN,
- anon_sym_COLON,
- anon_sym_LT,
- anon_sym_QMARK,
- [138527] = 4,
- ACTIONS(7190), 1,
- anon_sym_LBRACE,
- STATE(4349), 1,
- sym_statement_block,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(1712), 5,
- sym__automatic_semicolon,
- anon_sym_COMMA,
- anon_sym_RBRACE,
- anon_sym_SEMI,
- anon_sym_PIPE_RBRACE,
- [138545] = 8,
- ACTIONS(6835), 1,
- anon_sym_extends,
- ACTIONS(6837), 1,
- anon_sym_implements,
- ACTIONS(6960), 1,
- anon_sym_LBRACE,
- STATE(216), 1,
- sym_class_body,
- STATE(5071), 1,
- sym_extends_clause,
- STATE(5256), 1,
- sym_class_heritage,
- STATE(5674), 1,
- sym_implements_clause,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- [138571] = 8,
- ACTIONS(2581), 1,
- anon_sym_LT,
- ACTIONS(6419), 1,
- anon_sym_LPAREN,
- ACTIONS(7356), 1,
- sym_identifier,
- ACTIONS(7358), 1,
- anon_sym_STAR,
- STATE(3742), 1,
- sym_formal_parameters,
- STATE(5304), 1,
- sym__call_signature,
- STATE(5349), 1,
- sym_type_parameters,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- [138597] = 2,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(3514), 7,
- anon_sym_EQ,
- anon_sym_COMMA,
- anon_sym_RBRACE,
- anon_sym_RPAREN,
- anon_sym_COLON,
- anon_sym_RBRACK,
- anon_sym_QMARK,
- [138611] = 6,
- ACTIONS(6403), 1,
- anon_sym_EQ,
- ACTIONS(6411), 1,
- anon_sym_COLON,
- STATE(4113), 1,
- sym_type_annotation,
- STATE(4570), 1,
- sym__initializer,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(6648), 3,
- sym__automatic_semicolon,
- anon_sym_COMMA,
- anon_sym_SEMI,
- [138633] = 6,
- ACTIONS(6403), 1,
- anon_sym_EQ,
- ACTIONS(6411), 1,
- anon_sym_COLON,
- STATE(3993), 1,
- sym_type_annotation,
- STATE(4633), 1,
- sym__initializer,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(6638), 3,
- sym__automatic_semicolon,
- anon_sym_COMMA,
- anon_sym_SEMI,
- [138655] = 8,
- ACTIONS(6763), 1,
- anon_sym_LBRACE,
- ACTIONS(6835), 1,
- anon_sym_extends,
- ACTIONS(6837), 1,
- anon_sym_implements,
- STATE(2473), 1,
- sym_class_body,
- STATE(5071), 1,
- sym_extends_clause,
- STATE(5203), 1,
- sym_class_heritage,
- STATE(5674), 1,
- sym_implements_clause,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- [138681] = 7,
- ACTIONS(2275), 1,
- anon_sym_DQUOTE,
- ACTIONS(2277), 1,
- anon_sym_SQUOTE,
- ACTIONS(6701), 1,
- sym_identifier,
- ACTIONS(6749), 1,
- anon_sym_type,
- STATE(5330), 1,
- sym__import_identifier,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- STATE(5830), 2,
- sym__module_export_name,
- sym_string,
- [138705] = 6,
- ACTIONS(6403), 1,
- anon_sym_EQ,
- ACTIONS(6411), 1,
- anon_sym_COLON,
- STATE(4114), 1,
- sym_type_annotation,
- STATE(4573), 1,
- sym__initializer,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(6648), 3,
- sym__automatic_semicolon,
- anon_sym_COMMA,
- anon_sym_SEMI,
- [138727] = 6,
- ACTIONS(6403), 1,
- anon_sym_EQ,
- ACTIONS(6411), 1,
- anon_sym_COLON,
- STATE(4115), 1,
- sym_type_annotation,
- STATE(4576), 1,
- sym__initializer,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(6648), 3,
- sym__automatic_semicolon,
- anon_sym_COMMA,
- anon_sym_SEMI,
- [138749] = 6,
- ACTIONS(6403), 1,
- anon_sym_EQ,
- ACTIONS(6411), 1,
- anon_sym_COLON,
- STATE(4116), 1,
- sym_type_annotation,
- STATE(4584), 1,
- sym__initializer,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(6648), 3,
- sym__automatic_semicolon,
- anon_sym_COMMA,
- anon_sym_SEMI,
- [138771] = 6,
- ACTIONS(6403), 1,
- anon_sym_EQ,
- ACTIONS(6411), 1,
- anon_sym_COLON,
- STATE(4130), 1,
- sym_type_annotation,
- STATE(4615), 1,
- sym__initializer,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(6648), 3,
- sym__automatic_semicolon,
- anon_sym_COMMA,
- anon_sym_SEMI,
- [138793] = 8,
- ACTIONS(6835), 1,
- anon_sym_extends,
- ACTIONS(6837), 1,
- anon_sym_implements,
- ACTIONS(6976), 1,
- anon_sym_LBRACE,
- STATE(719), 1,
- sym_class_body,
- STATE(5071), 1,
- sym_extends_clause,
- STATE(5266), 1,
- sym_class_heritage,
- STATE(5674), 1,
- sym_implements_clause,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- [138819] = 8,
- ACTIONS(6725), 1,
- anon_sym_LBRACE,
- ACTIONS(6835), 1,
- anon_sym_extends,
- ACTIONS(6837), 1,
- anon_sym_implements,
- STATE(2228), 1,
- sym_class_body,
- STATE(5071), 1,
- sym_extends_clause,
- STATE(5234), 1,
- sym_class_heritage,
- STATE(5674), 1,
- sym_implements_clause,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- [138845] = 6,
- ACTIONS(6403), 1,
- anon_sym_EQ,
- ACTIONS(6411), 1,
- anon_sym_COLON,
- STATE(3974), 1,
- sym_type_annotation,
- STATE(5044), 1,
- sym__initializer,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(6638), 3,
- sym__automatic_semicolon,
- anon_sym_COMMA,
- anon_sym_SEMI,
- [138867] = 6,
- ACTIONS(6403), 1,
- anon_sym_EQ,
- ACTIONS(6411), 1,
- anon_sym_COLON,
- STATE(4229), 1,
- sym_type_annotation,
- STATE(4837), 1,
- sym__initializer,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(7360), 3,
- sym__automatic_semicolon,
- anon_sym_COMMA,
- anon_sym_SEMI,
- [138889] = 6,
- ACTIONS(6403), 1,
- anon_sym_EQ,
- ACTIONS(6411), 1,
- anon_sym_COLON,
- STATE(4290), 1,
- sym_type_annotation,
- STATE(4959), 1,
- sym__initializer,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(6628), 3,
- sym__automatic_semicolon,
- anon_sym_COMMA,
- anon_sym_SEMI,
- [138911] = 6,
- ACTIONS(6403), 1,
- anon_sym_EQ,
- ACTIONS(6411), 1,
- anon_sym_COLON,
- STATE(3930), 1,
- sym_type_annotation,
- STATE(4764), 1,
- sym__initializer,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(6638), 3,
- sym__automatic_semicolon,
- anon_sym_COMMA,
- anon_sym_SEMI,
- [138933] = 6,
- ACTIONS(6403), 1,
- anon_sym_EQ,
- ACTIONS(6411), 1,
- anon_sym_COLON,
- STATE(4246), 1,
- sym_type_annotation,
- STATE(4875), 1,
- sym__initializer,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(6628), 3,
- sym__automatic_semicolon,
- anon_sym_COMMA,
- anon_sym_SEMI,
- [138955] = 6,
- ACTIONS(6403), 1,
- anon_sym_EQ,
- ACTIONS(6411), 1,
- anon_sym_COLON,
- STATE(4119), 1,
- sym_type_annotation,
- STATE(4589), 1,
- sym__initializer,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(6648), 3,
- sym__automatic_semicolon,
- anon_sym_COMMA,
- anon_sym_SEMI,
- [138977] = 6,
- ACTIONS(3337), 1,
- anon_sym_LBRACE,
- ACTIONS(3339), 1,
- anon_sym_LBRACK,
- ACTIONS(7266), 1,
- sym_identifier,
- STATE(4813), 1,
- sym_variable_declarator,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- STATE(3661), 3,
- sym_object_pattern,
- sym_array_pattern,
- sym__destructuring_pattern,
- [138999] = 6,
- ACTIONS(6403), 1,
- anon_sym_EQ,
- ACTIONS(6411), 1,
- anon_sym_COLON,
- STATE(4248), 1,
- sym_type_annotation,
- STATE(4880), 1,
- sym__initializer,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(6628), 3,
- sym__automatic_semicolon,
- anon_sym_COMMA,
- anon_sym_SEMI,
- [139021] = 6,
- ACTIONS(6403), 1,
- anon_sym_EQ,
- ACTIONS(6411), 1,
- anon_sym_COLON,
- STATE(3973), 1,
- sym_type_annotation,
- STATE(5019), 1,
- sym__initializer,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(6638), 3,
- sym__automatic_semicolon,
- anon_sym_COMMA,
- anon_sym_SEMI,
- [139043] = 8,
- ACTIONS(6835), 1,
- anon_sym_extends,
- ACTIONS(6837), 1,
- anon_sym_implements,
- ACTIONS(7096), 1,
- anon_sym_LBRACE,
- STATE(845), 1,
- sym_class_body,
- STATE(5071), 1,
- sym_extends_clause,
- STATE(5500), 1,
- sym_class_heritage,
- STATE(5674), 1,
- sym_implements_clause,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- [139069] = 6,
- ACTIONS(6403), 1,
- anon_sym_EQ,
- ACTIONS(6411), 1,
- anon_sym_COLON,
- STATE(4385), 1,
- sym_type_annotation,
- STATE(5113), 1,
- sym__initializer,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(6638), 3,
- sym__automatic_semicolon,
- anon_sym_COMMA,
- anon_sym_SEMI,
- [139091] = 6,
- ACTIONS(6403), 1,
- anon_sym_EQ,
- ACTIONS(6411), 1,
- anon_sym_COLON,
- STATE(3928), 1,
- sym_type_annotation,
- STATE(4685), 1,
- sym__initializer,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(6638), 3,
- sym__automatic_semicolon,
- anon_sym_COMMA,
- anon_sym_SEMI,
- [139113] = 5,
- ACTIONS(3199), 1,
- anon_sym_LBRACE,
- ACTIONS(7362), 1,
- sym_identifier,
- ACTIONS(7364), 1,
- anon_sym_LBRACK,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- STATE(4535), 3,
- sym_object_pattern,
- sym_array_pattern,
- sym__destructuring_pattern,
- [139132] = 3,
- ACTIONS(3), 1,
- sym_comment,
- ACTIONS(5), 1,
- sym_html_comment,
- ACTIONS(4753), 6,
- anon_sym_LBRACE,
- aux_sym_jsx_text_token1,
- aux_sym_jsx_text_token2,
- sym_html_character_reference,
- anon_sym_LT_SLASH,
- anon_sym_LT,
- [139147] = 7,
- ACTIONS(2581), 1,
- anon_sym_LT,
- ACTIONS(6419), 1,
- anon_sym_LPAREN,
- ACTIONS(7366), 1,
- anon_sym_QMARK,
- STATE(3742), 1,
- sym_formal_parameters,
- STATE(5349), 1,
- sym_type_parameters,
- STATE(5508), 1,
- sym__call_signature,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- [139170] = 3,
- ACTIONS(3), 1,
- sym_comment,
- ACTIONS(5), 1,
- sym_html_comment,
- ACTIONS(4640), 6,
- anon_sym_LBRACE,
- aux_sym_jsx_text_token1,
- aux_sym_jsx_text_token2,
- sym_html_character_reference,
- anon_sym_LT_SLASH,
- anon_sym_LT,
- [139185] = 3,
- ACTIONS(3), 1,
- sym_comment,
- ACTIONS(5), 1,
- sym_html_comment,
- ACTIONS(7368), 6,
- anon_sym_LBRACE,
- aux_sym_jsx_text_token1,
- aux_sym_jsx_text_token2,
- sym_html_character_reference,
- anon_sym_LT_SLASH,
- anon_sym_LT,
- [139200] = 7,
- ACTIONS(2581), 1,
- anon_sym_LT,
- ACTIONS(6419), 1,
- anon_sym_LPAREN,
- ACTIONS(7370), 1,
- sym_identifier,
- STATE(3742), 1,
- sym_formal_parameters,
- STATE(5349), 1,
- sym_type_parameters,
- STATE(5448), 1,
- sym__call_signature,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- [139223] = 2,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(7372), 6,
- sym__automatic_semicolon,
- anon_sym_LBRACE,
- anon_sym_COMMA,
- anon_sym_RBRACE,
- anon_sym_SEMI,
- anon_sym_PIPE_RBRACE,
- [139236] = 2,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(7374), 6,
- sym__automatic_semicolon,
- anon_sym_LBRACE,
- anon_sym_COMMA,
- anon_sym_RBRACE,
- anon_sym_SEMI,
- anon_sym_PIPE_RBRACE,
- [139249] = 7,
- ACTIONS(2581), 1,
- anon_sym_LT,
- ACTIONS(6409), 1,
- anon_sym_LPAREN,
- ACTIONS(7376), 1,
- anon_sym_QMARK,
- STATE(3320), 1,
- sym_formal_parameters,
- STATE(3795), 1,
- sym__call_signature,
- STATE(5342), 1,
- sym_type_parameters,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- [139272] = 2,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(7324), 6,
- sym__automatic_semicolon,
- sym__function_signature_automatic_semicolon,
- anon_sym_LBRACE,
- anon_sym_COMMA,
- anon_sym_SEMI,
- anon_sym_COLON,
- [139285] = 7,
- ACTIONS(2581), 1,
- anon_sym_LT,
- ACTIONS(6419), 1,
- anon_sym_LPAREN,
- ACTIONS(7378), 1,
- sym_identifier,
- STATE(3742), 1,
- sym_formal_parameters,
- STATE(5349), 1,
- sym_type_parameters,
- STATE(5448), 1,
- sym__call_signature,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- [139308] = 7,
- ACTIONS(2581), 1,
- anon_sym_LT,
- ACTIONS(3205), 1,
- anon_sym_LPAREN,
- ACTIONS(7380), 1,
- anon_sym_QMARK,
- STATE(3229), 1,
- sym_formal_parameters,
- STATE(4357), 1,
- sym__call_signature,
- STATE(5404), 1,
- sym_type_parameters,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- [139331] = 4,
- STATE(3776), 1,
- aux_sym_object_type_repeat1,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(3669), 2,
- anon_sym_RBRACE,
- anon_sym_PIPE_RBRACE,
- ACTIONS(7382), 3,
- sym__automatic_semicolon,
- anon_sym_COMMA,
- anon_sym_SEMI,
- [139348] = 4,
- STATE(3766), 1,
- aux_sym_object_type_repeat1,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(3665), 2,
- anon_sym_RBRACE,
- anon_sym_PIPE_RBRACE,
- ACTIONS(7384), 3,
- sym__automatic_semicolon,
- anon_sym_COMMA,
- anon_sym_SEMI,
- [139365] = 7,
- ACTIONS(6554), 1,
- anon_sym_AMP,
- ACTIONS(6556), 1,
- anon_sym_PIPE,
- ACTIONS(6558), 1,
- anon_sym_extends,
- ACTIONS(7386), 1,
- anon_sym_COMMA,
- ACTIONS(7388), 1,
- anon_sym_GT,
- STATE(4571), 1,
- aux_sym_implements_clause_repeat1,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- [139388] = 5,
- ACTIONS(6554), 1,
- anon_sym_AMP,
- ACTIONS(6556), 1,
- anon_sym_PIPE,
- ACTIONS(6558), 1,
- anon_sym_extends,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(7390), 3,
- anon_sym_EQ,
- anon_sym_COMMA,
- anon_sym_GT,
- [139407] = 2,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(2331), 6,
- anon_sym_as,
- anon_sym_LBRACK,
- anon_sym_RBRACK,
- anon_sym_AMP,
- anon_sym_PIPE,
- anon_sym_extends,
- [139420] = 3,
- ACTIONS(3), 1,
- sym_comment,
- ACTIONS(5), 1,
- sym_html_comment,
- ACTIONS(7392), 6,
- anon_sym_LBRACE,
- aux_sym_jsx_text_token1,
- aux_sym_jsx_text_token2,
- sym_html_character_reference,
- anon_sym_LT_SLASH,
- anon_sym_LT,
- [139435] = 3,
- ACTIONS(3), 1,
- sym_comment,
- ACTIONS(5), 1,
- sym_html_comment,
- ACTIONS(7394), 6,
- anon_sym_LBRACE,
- aux_sym_jsx_text_token1,
- aux_sym_jsx_text_token2,
- sym_html_character_reference,
- anon_sym_LT_SLASH,
- anon_sym_LT,
- [139450] = 4,
- ACTIONS(7396), 1,
- anon_sym_COLON,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(6743), 2,
- anon_sym_LBRACE,
- anon_sym_EQ_GT,
- STATE(5232), 3,
- sym_type_annotation,
- sym_asserts_annotation,
- sym_type_predicate_annotation,
- [139467] = 4,
- ACTIONS(7398), 1,
- anon_sym_LBRACE,
- STATE(2596), 1,
- sym_statement_block,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(7280), 4,
- sym__automatic_semicolon,
- sym__function_signature_automatic_semicolon,
- anon_sym_COMMA,
- anon_sym_SEMI,
- [139484] = 3,
- ACTIONS(3), 1,
- sym_comment,
- ACTIONS(5), 1,
- sym_html_comment,
- ACTIONS(7368), 6,
- anon_sym_LBRACE,
- aux_sym_jsx_text_token1,
- aux_sym_jsx_text_token2,
- sym_html_character_reference,
- anon_sym_LT_SLASH,
- anon_sym_LT,
- [139499] = 4,
- STATE(3776), 1,
- aux_sym_object_type_repeat1,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(3649), 2,
- anon_sym_RBRACE,
- anon_sym_PIPE_RBRACE,
- ACTIONS(7400), 3,
- sym__automatic_semicolon,
- anon_sym_COMMA,
- anon_sym_SEMI,
- [139516] = 3,
- ACTIONS(3), 1,
- sym_comment,
- ACTIONS(5), 1,
- sym_html_comment,
- ACTIONS(7402), 6,
- anon_sym_LBRACE,
- aux_sym_jsx_text_token1,
- aux_sym_jsx_text_token2,
- sym_html_character_reference,
- anon_sym_LT_SLASH,
- anon_sym_LT,
- [139531] = 7,
- ACTIONS(2581), 1,
- anon_sym_LT,
- ACTIONS(6409), 1,
- anon_sym_LPAREN,
- ACTIONS(7404), 1,
- anon_sym_QMARK,
- STATE(3320), 1,
- sym_formal_parameters,
- STATE(3882), 1,
- sym__call_signature,
- STATE(5342), 1,
- sym_type_parameters,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- [139554] = 4,
- ACTIONS(7406), 1,
- anon_sym_COMMA,
- STATE(3748), 1,
- aux_sym_sequence_expression_repeat1,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(4322), 4,
- anon_sym_RBRACE,
- anon_sym_RPAREN,
- anon_sym_COLON,
- anon_sym_RBRACK,
- [139571] = 7,
- ACTIONS(2581), 1,
- anon_sym_LT,
- ACTIONS(6419), 1,
- anon_sym_LPAREN,
- ACTIONS(7409), 1,
- sym_identifier,
- STATE(3742), 1,
- sym_formal_parameters,
- STATE(5349), 1,
- sym_type_parameters,
- STATE(5498), 1,
- sym__call_signature,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- [139594] = 5,
- ACTIONS(6554), 1,
- anon_sym_AMP,
- ACTIONS(6556), 1,
- anon_sym_PIPE,
- ACTIONS(6558), 1,
- anon_sym_extends,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(7411), 3,
- anon_sym_LBRACE,
- anon_sym_COMMA,
- anon_sym_GT,
- [139613] = 3,
- ACTIONS(3), 1,
- sym_comment,
- ACTIONS(5), 1,
- sym_html_comment,
- ACTIONS(7413), 6,
- anon_sym_LBRACE,
- aux_sym_jsx_text_token1,
- aux_sym_jsx_text_token2,
- sym_html_character_reference,
- anon_sym_LT_SLASH,
- anon_sym_LT,
- [139628] = 4,
- ACTIONS(7398), 1,
- anon_sym_LBRACE,
- STATE(2586), 1,
- sym_statement_block,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(7226), 4,
- sym__automatic_semicolon,
- sym__function_signature_automatic_semicolon,
- anon_sym_COMMA,
- anon_sym_SEMI,
- [139645] = 4,
- STATE(3821), 1,
- aux_sym_object_type_repeat1,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(7417), 2,
- anon_sym_RBRACE,
- anon_sym_PIPE_RBRACE,
- ACTIONS(7415), 3,
- sym__automatic_semicolon,
- anon_sym_COMMA,
- anon_sym_SEMI,
- [139662] = 3,
- ACTIONS(3), 1,
- sym_comment,
- ACTIONS(5), 1,
- sym_html_comment,
- ACTIONS(7368), 6,
- anon_sym_LBRACE,
- aux_sym_jsx_text_token1,
- aux_sym_jsx_text_token2,
- sym_html_character_reference,
- anon_sym_LT_SLASH,
- anon_sym_LT,
- [139677] = 3,
- ACTIONS(3), 1,
- sym_comment,
- ACTIONS(5), 1,
- sym_html_comment,
- ACTIONS(7419), 6,
- anon_sym_LBRACE,
- aux_sym_jsx_text_token1,
- aux_sym_jsx_text_token2,
- sym_html_character_reference,
- anon_sym_LT_SLASH,
- anon_sym_LT,
- [139692] = 7,
- ACTIONS(6554), 1,
- anon_sym_AMP,
- ACTIONS(6556), 1,
- anon_sym_PIPE,
- ACTIONS(6558), 1,
- anon_sym_extends,
- ACTIONS(7421), 1,
- anon_sym_COMMA,
- ACTIONS(7423), 1,
- anon_sym_GT,
- STATE(4683), 1,
- aux_sym_implements_clause_repeat1,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- [139715] = 7,
- ACTIONS(2581), 1,
- anon_sym_LT,
- ACTIONS(6419), 1,
- anon_sym_LPAREN,
- ACTIONS(7425), 1,
- anon_sym_QMARK,
- STATE(3742), 1,
- sym_formal_parameters,
- STATE(5349), 1,
- sym_type_parameters,
- STATE(5523), 1,
- sym__call_signature,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- [139738] = 7,
- ACTIONS(2581), 1,
- anon_sym_LT,
- ACTIONS(6419), 1,
- anon_sym_LPAREN,
- ACTIONS(7427), 1,
- sym_identifier,
- STATE(3742), 1,
- sym_formal_parameters,
- STATE(5349), 1,
- sym_type_parameters,
- STATE(5411), 1,
- sym__call_signature,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- [139761] = 4,
- ACTIONS(7398), 1,
- anon_sym_LBRACE,
- STATE(2615), 1,
- sym_statement_block,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(7208), 4,
- sym__automatic_semicolon,
- sym__function_signature_automatic_semicolon,
- anon_sym_COMMA,
- anon_sym_SEMI,
- [139778] = 2,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(3743), 6,
- anon_sym_EQ,
- anon_sym_COMMA,
- anon_sym_RBRACE,
- anon_sym_LPAREN,
- anon_sym_LT,
- anon_sym_QMARK,
- [139791] = 3,
- ACTIONS(3), 1,
- sym_comment,
- ACTIONS(5), 1,
- sym_html_comment,
- ACTIONS(7429), 6,
- anon_sym_LBRACE,
- aux_sym_jsx_text_token1,
- aux_sym_jsx_text_token2,
- sym_html_character_reference,
- anon_sym_LT_SLASH,
- anon_sym_LT,
- [139806] = 4,
- ACTIONS(7398), 1,
- anon_sym_LBRACE,
- STATE(2587), 1,
- sym_statement_block,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(7256), 4,
- sym__automatic_semicolon,
- sym__function_signature_automatic_semicolon,
- anon_sym_COMMA,
- anon_sym_SEMI,
- [139823] = 3,
- ACTIONS(3), 1,
- sym_comment,
- ACTIONS(5), 1,
- sym_html_comment,
- ACTIONS(4800), 6,
- anon_sym_LBRACE,
- aux_sym_jsx_text_token1,
- aux_sym_jsx_text_token2,
- sym_html_character_reference,
- anon_sym_LT_SLASH,
- anon_sym_LT,
- [139838] = 3,
- ACTIONS(3), 1,
- sym_comment,
- ACTIONS(5), 1,
- sym_html_comment,
- ACTIONS(4804), 6,
- anon_sym_LBRACE,
- aux_sym_jsx_text_token1,
- aux_sym_jsx_text_token2,
- sym_html_character_reference,
- anon_sym_LT_SLASH,
- anon_sym_LT,
- [139853] = 3,
- ACTIONS(3), 1,
- sym_comment,
- ACTIONS(5), 1,
- sym_html_comment,
- ACTIONS(4800), 6,
- anon_sym_LBRACE,
- aux_sym_jsx_text_token1,
- aux_sym_jsx_text_token2,
- sym_html_character_reference,
- anon_sym_LT_SLASH,
- anon_sym_LT,
- [139868] = 4,
- STATE(3776), 1,
- aux_sym_object_type_repeat1,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(3655), 2,
- anon_sym_RBRACE,
- anon_sym_PIPE_RBRACE,
- ACTIONS(7431), 3,
- sym__automatic_semicolon,
- anon_sym_COMMA,
- anon_sym_SEMI,
- [139885] = 7,
- ACTIONS(2581), 1,
- anon_sym_LT,
- ACTIONS(3205), 1,
- anon_sym_LPAREN,
- ACTIONS(7433), 1,
- anon_sym_QMARK,
- STATE(3229), 1,
- sym_formal_parameters,
- STATE(3998), 1,
- sym__call_signature,
- STATE(5404), 1,
- sym_type_parameters,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- [139908] = 3,
- ACTIONS(3), 1,
- sym_comment,
- ACTIONS(5), 1,
- sym_html_comment,
- ACTIONS(4815), 6,
- anon_sym_LBRACE,
- aux_sym_jsx_text_token1,
- aux_sym_jsx_text_token2,
- sym_html_character_reference,
- anon_sym_LT_SLASH,
- anon_sym_LT,
- [139923] = 4,
- ACTIONS(7396), 1,
- anon_sym_COLON,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(6753), 2,
- anon_sym_LBRACE,
- anon_sym_EQ_GT,
- STATE(5405), 3,
- sym_type_annotation,
- sym_asserts_annotation,
- sym_type_predicate_annotation,
- [139940] = 7,
- ACTIONS(2581), 1,
- anon_sym_LT,
- ACTIONS(3205), 1,
- anon_sym_LPAREN,
- ACTIONS(7435), 1,
- anon_sym_QMARK,
- STATE(3229), 1,
- sym_formal_parameters,
- STATE(3559), 1,
- sym__call_signature,
- STATE(5404), 1,
- sym_type_parameters,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- [139963] = 4,
- STATE(3810), 1,
- aux_sym_object_type_repeat1,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(7439), 2,
- anon_sym_RBRACE,
- anon_sym_PIPE_RBRACE,
- ACTIONS(7437), 3,
- sym__automatic_semicolon,
- anon_sym_COMMA,
- anon_sym_SEMI,
- [139980] = 7,
- ACTIONS(2581), 1,
- anon_sym_LT,
- ACTIONS(6409), 1,
- anon_sym_LPAREN,
- ACTIONS(7441), 1,
- anon_sym_QMARK,
- STATE(3320), 1,
- sym_formal_parameters,
- STATE(3886), 1,
- sym__call_signature,
- STATE(5342), 1,
- sym_type_parameters,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- [140003] = 7,
- ACTIONS(2581), 1,
- anon_sym_LT,
- ACTIONS(3205), 1,
- anon_sym_LPAREN,
- ACTIONS(7443), 1,
- anon_sym_QMARK,
- STATE(3229), 1,
- sym_formal_parameters,
- STATE(4332), 1,
- sym__call_signature,
- STATE(5404), 1,
- sym_type_parameters,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- [140026] = 5,
- ACTIONS(7445), 1,
- anon_sym_default,
- ACTIONS(7448), 1,
- anon_sym_RBRACE,
- ACTIONS(7450), 1,
- anon_sym_case,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- STATE(3774), 3,
- sym_switch_case,
- sym_switch_default,
- aux_sym_switch_body_repeat1,
- [140045] = 7,
- ACTIONS(2581), 1,
- anon_sym_LT,
- ACTIONS(6419), 1,
- anon_sym_LPAREN,
- ACTIONS(7453), 1,
- sym_identifier,
- STATE(3742), 1,
- sym_formal_parameters,
- STATE(5349), 1,
- sym_type_parameters,
- STATE(5498), 1,
- sym__call_signature,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- [140068] = 4,
- STATE(3776), 1,
- aux_sym_object_type_repeat1,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(7458), 2,
- anon_sym_RBRACE,
- anon_sym_PIPE_RBRACE,
- ACTIONS(7455), 3,
- sym__automatic_semicolon,
- anon_sym_COMMA,
- anon_sym_SEMI,
- [140085] = 4,
- ACTIONS(7398), 1,
- anon_sym_LBRACE,
- STATE(2565), 1,
- sym_statement_block,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(7297), 4,
- sym__automatic_semicolon,
- sym__function_signature_automatic_semicolon,
- anon_sym_COMMA,
- anon_sym_SEMI,
- [140102] = 3,
- ACTIONS(3), 1,
- sym_comment,
- ACTIONS(5), 1,
- sym_html_comment,
- ACTIONS(4819), 6,
- anon_sym_LBRACE,
- aux_sym_jsx_text_token1,
- aux_sym_jsx_text_token2,
- sym_html_character_reference,
- anon_sym_LT_SLASH,
- anon_sym_LT,
- [140117] = 5,
- ACTIONS(7460), 1,
- anon_sym_BQUOTE,
- ACTIONS(7462), 1,
- anon_sym_DOLLAR_LBRACE,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(7148), 2,
- sym__template_chars,
- sym_escape_sequence,
- STATE(3858), 2,
- sym_template_substitution,
- aux_sym_template_string_repeat1,
- [140136] = 3,
- ACTIONS(3), 1,
- sym_comment,
- ACTIONS(5), 1,
- sym_html_comment,
- ACTIONS(4800), 6,
- anon_sym_LBRACE,
- aux_sym_jsx_text_token1,
- aux_sym_jsx_text_token2,
- sym_html_character_reference,
- anon_sym_LT_SLASH,
- anon_sym_LT,
- [140151] = 5,
- ACTIONS(7467), 1,
- anon_sym_BQUOTE,
- ACTIONS(7469), 1,
- anon_sym_DOLLAR_LBRACE,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(7464), 2,
- sym__template_chars,
- sym_escape_sequence,
- STATE(3781), 2,
- sym_template_substitution,
- aux_sym_template_string_repeat1,
- [140170] = 3,
- ACTIONS(7472), 1,
- anon_sym_AMP,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(4400), 5,
- anon_sym_as,
- anon_sym_LBRACK,
- anon_sym_RBRACK,
- anon_sym_PIPE,
- anon_sym_extends,
- [140185] = 5,
- ACTIONS(7462), 1,
- anon_sym_DOLLAR_LBRACE,
- ACTIONS(7476), 1,
- anon_sym_BQUOTE,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(7474), 2,
- sym__template_chars,
- sym_escape_sequence,
- STATE(3781), 2,
- sym_template_substitution,
- aux_sym_template_string_repeat1,
- [140204] = 5,
- ACTIONS(7472), 1,
- anon_sym_AMP,
- ACTIONS(7478), 1,
- anon_sym_PIPE,
- ACTIONS(7480), 1,
- anon_sym_extends,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(4422), 3,
- anon_sym_as,
- anon_sym_LBRACK,
- anon_sym_RBRACK,
- [140223] = 3,
- ACTIONS(7482), 1,
- anon_sym_extends,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(4430), 5,
- anon_sym_as,
- anon_sym_LBRACK,
- anon_sym_RBRACK,
- anon_sym_AMP,
- anon_sym_PIPE,
- [140238] = 4,
- STATE(3745), 1,
- aux_sym_object_type_repeat1,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(3651), 2,
- anon_sym_RBRACE,
- anon_sym_PIPE_RBRACE,
- ACTIONS(7484), 3,
- sym__automatic_semicolon,
- anon_sym_COMMA,
- anon_sym_SEMI,
- [140255] = 4,
- STATE(3776), 1,
- aux_sym_object_type_repeat1,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(3665), 2,
- anon_sym_RBRACE,
- anon_sym_PIPE_RBRACE,
- ACTIONS(7384), 3,
- sym__automatic_semicolon,
- anon_sym_COMMA,
- anon_sym_SEMI,
- [140272] = 7,
- ACTIONS(2581), 1,
- anon_sym_LT,
- ACTIONS(6419), 1,
- anon_sym_LPAREN,
- ACTIONS(7486), 1,
- anon_sym_QMARK,
- STATE(3742), 1,
- sym_formal_parameters,
- STATE(5341), 1,
- sym__call_signature,
- STATE(5349), 1,
- sym_type_parameters,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- [140295] = 2,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(2335), 6,
- anon_sym_as,
- anon_sym_LBRACK,
- anon_sym_RBRACK,
- anon_sym_AMP,
- anon_sym_PIPE,
- anon_sym_extends,
- [140308] = 4,
- ACTIONS(7398), 1,
- anon_sym_LBRACE,
- STATE(2618), 1,
- sym_statement_block,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(7344), 4,
- sym__automatic_semicolon,
- sym__function_signature_automatic_semicolon,
- anon_sym_COMMA,
- anon_sym_SEMI,
- [140325] = 4,
- ACTIONS(7398), 1,
- anon_sym_LBRACE,
- STATE(2589), 1,
- sym_statement_block,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(7262), 4,
- sym__automatic_semicolon,
- sym__function_signature_automatic_semicolon,
- anon_sym_COMMA,
- anon_sym_SEMI,
- [140342] = 3,
- ACTIONS(3), 1,
- sym_comment,
- ACTIONS(5), 1,
- sym_html_comment,
- ACTIONS(4650), 6,
- anon_sym_LBRACE,
- aux_sym_jsx_text_token1,
- aux_sym_jsx_text_token2,
- sym_html_character_reference,
- anon_sym_LT_SLASH,
- anon_sym_LT,
- [140357] = 3,
- ACTIONS(3), 1,
- sym_comment,
- ACTIONS(5), 1,
- sym_html_comment,
- ACTIONS(4654), 6,
- anon_sym_LBRACE,
- aux_sym_jsx_text_token1,
- aux_sym_jsx_text_token2,
- sym_html_character_reference,
- anon_sym_LT_SLASH,
- anon_sym_LT,
- [140372] = 3,
- ACTIONS(3), 1,
- sym_comment,
- ACTIONS(5), 1,
- sym_html_comment,
- ACTIONS(7488), 6,
- anon_sym_LBRACE,
- aux_sym_jsx_text_token1,
- aux_sym_jsx_text_token2,
- sym_html_character_reference,
- anon_sym_LT_SLASH,
- anon_sym_LT,
- [140387] = 4,
- ACTIONS(7398), 1,
- anon_sym_LBRACE,
- STATE(2569), 1,
- sym_statement_block,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(7346), 4,
- sym__automatic_semicolon,
- sym__function_signature_automatic_semicolon,
- anon_sym_COMMA,
- anon_sym_SEMI,
- [140404] = 7,
- ACTIONS(7120), 1,
- anon_sym_GT,
- ACTIONS(7490), 1,
- sym_identifier,
- ACTIONS(7492), 1,
- sym_jsx_identifier,
- ACTIONS(7494), 1,
- anon_sym_SLASH_GT,
- STATE(3137), 1,
- sym_nested_identifier,
- STATE(3352), 1,
- sym_jsx_namespace_name,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- [140427] = 7,
- ACTIONS(2581), 1,
- anon_sym_LT,
- ACTIONS(6419), 1,
- anon_sym_LPAREN,
- ACTIONS(7496), 1,
- sym_identifier,
- STATE(3742), 1,
- sym_formal_parameters,
- STATE(5349), 1,
- sym_type_parameters,
- STATE(5448), 1,
- sym__call_signature,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- [140450] = 7,
- ACTIONS(2581), 1,
- anon_sym_LT,
- ACTIONS(6409), 1,
- anon_sym_LPAREN,
- ACTIONS(7498), 1,
- anon_sym_QMARK,
- STATE(3320), 1,
- sym_formal_parameters,
- STATE(3875), 1,
- sym__call_signature,
- STATE(5342), 1,
- sym_type_parameters,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- [140473] = 4,
- ACTIONS(7398), 1,
- anon_sym_LBRACE,
- STATE(2588), 1,
- sym_statement_block,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(7268), 4,
- sym__automatic_semicolon,
- sym__function_signature_automatic_semicolon,
- anon_sym_COMMA,
- anon_sym_SEMI,
- [140490] = 7,
- ACTIONS(7246), 1,
- anon_sym_COMMA,
- ACTIONS(7250), 1,
- anon_sym_LT,
- ACTIONS(7500), 1,
- anon_sym_LBRACE,
- ACTIONS(7502), 1,
- anon_sym_LBRACE_PIPE,
- STATE(4473), 1,
- aux_sym_extends_type_clause_repeat1,
- STATE(5098), 1,
- sym_type_arguments,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- [140513] = 7,
- ACTIONS(2581), 1,
- anon_sym_LT,
- ACTIONS(6419), 1,
- anon_sym_LPAREN,
- ACTIONS(7504), 1,
- sym_identifier,
- STATE(3742), 1,
- sym_formal_parameters,
- STATE(5349), 1,
- sym_type_parameters,
- STATE(5498), 1,
- sym__call_signature,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- [140536] = 4,
- STATE(3849), 1,
- aux_sym_object_type_repeat1,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(7508), 2,
- anon_sym_RBRACE,
- anon_sym_PIPE_RBRACE,
- ACTIONS(7506), 3,
- sym__automatic_semicolon,
- anon_sym_COMMA,
- anon_sym_SEMI,
- [140553] = 4,
- ACTIONS(4267), 1,
- anon_sym_COMMA,
- STATE(3748), 1,
- aux_sym_sequence_expression_repeat1,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(7510), 4,
- anon_sym_RBRACE,
- anon_sym_RPAREN,
- anon_sym_COLON,
- anon_sym_RBRACK,
- [140570] = 4,
- STATE(3872), 1,
- aux_sym_object_type_repeat1,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(3673), 2,
- anon_sym_RBRACE,
- anon_sym_PIPE_RBRACE,
- ACTIONS(7512), 3,
- sym__automatic_semicolon,
- anon_sym_COMMA,
- anon_sym_SEMI,
- [140587] = 4,
- ACTIONS(7398), 1,
- anon_sym_LBRACE,
- STATE(2605), 1,
- sym_statement_block,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(7346), 4,
- sym__automatic_semicolon,
- sym__function_signature_automatic_semicolon,
- anon_sym_COMMA,
- anon_sym_SEMI,
- [140604] = 7,
- ACTIONS(7120), 1,
- anon_sym_GT,
- ACTIONS(7514), 1,
- sym_identifier,
- ACTIONS(7516), 1,
- sym_jsx_identifier,
- ACTIONS(7518), 1,
- anon_sym_SLASH_GT,
- STATE(3108), 1,
- sym_nested_identifier,
- STATE(3356), 1,
- sym_jsx_namespace_name,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- [140627] = 4,
- ACTIONS(7398), 1,
- anon_sym_LBRACE,
- STATE(2574), 1,
- sym_statement_block,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(7344), 4,
- sym__automatic_semicolon,
- sym__function_signature_automatic_semicolon,
- anon_sym_COMMA,
- anon_sym_SEMI,
- [140644] = 7,
- ACTIONS(2581), 1,
- anon_sym_LT,
- ACTIONS(3205), 1,
- anon_sym_LPAREN,
- ACTIONS(7520), 1,
- anon_sym_QMARK,
- STATE(3229), 1,
- sym_formal_parameters,
- STATE(3679), 1,
- sym__call_signature,
- STATE(5404), 1,
- sym_type_parameters,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- [140667] = 4,
- STATE(3825), 1,
- aux_sym_object_type_repeat1,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(3697), 2,
- anon_sym_RBRACE,
- anon_sym_PIPE_RBRACE,
- ACTIONS(7522), 3,
- sym__automatic_semicolon,
- anon_sym_COMMA,
- anon_sym_SEMI,
- [140684] = 4,
- STATE(3776), 1,
- aux_sym_object_type_repeat1,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(3697), 2,
- anon_sym_RBRACE,
- anon_sym_PIPE_RBRACE,
- ACTIONS(7522), 3,
- sym__automatic_semicolon,
- anon_sym_COMMA,
- anon_sym_SEMI,
- [140701] = 3,
- ACTIONS(3), 1,
- sym_comment,
- ACTIONS(5), 1,
- sym_html_comment,
- ACTIONS(7524), 6,
- anon_sym_LBRACE,
- aux_sym_jsx_text_token1,
- aux_sym_jsx_text_token2,
- sym_html_character_reference,
- anon_sym_LT_SLASH,
- anon_sym_LT,
- [140716] = 5,
- ACTIONS(7472), 1,
- anon_sym_AMP,
- ACTIONS(7478), 1,
- anon_sym_PIPE,
- ACTIONS(7480), 1,
- anon_sym_extends,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(4106), 3,
- anon_sym_as,
- anon_sym_LBRACK,
- anon_sym_RBRACK,
- [140735] = 3,
- ACTIONS(7472), 1,
- anon_sym_AMP,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(4136), 5,
- anon_sym_as,
- anon_sym_LBRACK,
- anon_sym_RBRACK,
- anon_sym_PIPE,
- anon_sym_extends,
- [140750] = 5,
- ACTIONS(7526), 1,
- anon_sym_AT,
- STATE(1244), 1,
- sym_decorator,
- STATE(3814), 1,
- aux_sym_export_statement_repeat1,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(3533), 3,
- anon_sym_export,
- anon_sym_class,
- anon_sym_abstract,
- [140769] = 3,
- ACTIONS(3), 1,
- sym_comment,
- ACTIONS(5), 1,
- sym_html_comment,
- ACTIONS(4910), 6,
- anon_sym_LBRACE,
- aux_sym_jsx_text_token1,
- aux_sym_jsx_text_token2,
- sym_html_character_reference,
- anon_sym_LT_SLASH,
- anon_sym_LT,
- [140784] = 3,
- ACTIONS(3), 1,
- sym_comment,
- ACTIONS(5), 1,
- sym_html_comment,
- ACTIONS(4918), 6,
- anon_sym_LBRACE,
- aux_sym_jsx_text_token1,
- aux_sym_jsx_text_token2,
- sym_html_character_reference,
- anon_sym_LT_SLASH,
- anon_sym_LT,
- [140799] = 7,
- ACTIONS(2581), 1,
- anon_sym_LT,
- ACTIONS(6419), 1,
- anon_sym_LPAREN,
- ACTIONS(7529), 1,
- anon_sym_QMARK,
- STATE(3742), 1,
- sym_formal_parameters,
- STATE(5243), 1,
- sym__call_signature,
- STATE(5349), 1,
- sym_type_parameters,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- [140822] = 7,
- ACTIONS(1506), 1,
- anon_sym_DQUOTE,
- ACTIONS(1508), 1,
- anon_sym_SQUOTE,
- ACTIONS(7218), 1,
- sym_identifier,
- STATE(711), 1,
- sym_nested_identifier,
- STATE(741), 1,
- sym_string,
- STATE(855), 1,
- sym__module,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- [140845] = 5,
- ACTIONS(7472), 1,
- anon_sym_AMP,
- ACTIONS(7478), 1,
- anon_sym_PIPE,
- ACTIONS(7480), 1,
- anon_sym_extends,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(4358), 3,
- anon_sym_as,
- anon_sym_LBRACK,
- anon_sym_RBRACK,
- [140864] = 5,
- ACTIONS(7472), 1,
- anon_sym_AMP,
- ACTIONS(7478), 1,
- anon_sym_PIPE,
- ACTIONS(7480), 1,
- anon_sym_extends,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(4362), 3,
- anon_sym_as,
- anon_sym_LBRACK,
- anon_sym_RBRACK,
- [140883] = 4,
- STATE(3776), 1,
- aux_sym_object_type_repeat1,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(3673), 2,
- anon_sym_RBRACE,
- anon_sym_PIPE_RBRACE,
- ACTIONS(7512), 3,
- sym__automatic_semicolon,
- anon_sym_COMMA,
- anon_sym_SEMI,
- [140900] = 7,
- ACTIONS(2581), 1,
- anon_sym_LT,
- ACTIONS(6409), 1,
- anon_sym_LPAREN,
- ACTIONS(7531), 1,
- anon_sym_QMARK,
- STATE(3320), 1,
- sym_formal_parameters,
- STATE(3873), 1,
- sym__call_signature,
- STATE(5342), 1,
- sym_type_parameters,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- [140923] = 7,
- ACTIONS(2581), 1,
- anon_sym_LT,
- ACTIONS(6409), 1,
- anon_sym_LPAREN,
- ACTIONS(7533), 1,
- anon_sym_QMARK,
- STATE(3320), 1,
- sym_formal_parameters,
- STATE(3762), 1,
- sym__call_signature,
- STATE(5342), 1,
- sym_type_parameters,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- [140946] = 7,
- ACTIONS(2581), 1,
- anon_sym_LT,
- ACTIONS(6419), 1,
- anon_sym_LPAREN,
- ACTIONS(7535), 1,
- anon_sym_QMARK,
- STATE(3742), 1,
- sym_formal_parameters,
- STATE(5335), 1,
- sym__call_signature,
- STATE(5349), 1,
- sym_type_parameters,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- [140969] = 4,
- STATE(3776), 1,
- aux_sym_object_type_repeat1,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(3659), 2,
- anon_sym_RBRACE,
- anon_sym_PIPE_RBRACE,
- ACTIONS(7537), 3,
- sym__automatic_semicolon,
- anon_sym_COMMA,
- anon_sym_SEMI,
- [140986] = 4,
- ACTIONS(7539), 1,
- sym_identifier,
- ACTIONS(7541), 1,
- anon_sym_EQ,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(7543), 4,
- anon_sym_LBRACE,
- anon_sym_GT,
- sym_jsx_identifier,
- anon_sym_SLASH_GT,
- [141003] = 6,
- ACTIONS(3477), 1,
- anon_sym_COLON,
- ACTIONS(7202), 1,
- anon_sym_EQ,
- STATE(4502), 1,
- sym_type_annotation,
- STATE(5257), 1,
- sym__initializer,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(7545), 2,
- anon_sym_COMMA,
- anon_sym_RPAREN,
- [141024] = 5,
- ACTIONS(7472), 1,
- anon_sym_AMP,
- ACTIONS(7478), 1,
- anon_sym_PIPE,
- ACTIONS(7480), 1,
- anon_sym_extends,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(4197), 3,
- anon_sym_as,
- anon_sym_LBRACK,
- anon_sym_RBRACK,
- [141043] = 5,
- ACTIONS(7472), 1,
- anon_sym_AMP,
- ACTIONS(7478), 1,
- anon_sym_PIPE,
- ACTIONS(7480), 1,
- anon_sym_extends,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(4214), 3,
- anon_sym_as,
- anon_sym_LBRACK,
- anon_sym_RBRACK,
- [141062] = 4,
- STATE(3787), 1,
- aux_sym_object_type_repeat1,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(7549), 2,
- anon_sym_RBRACE,
- anon_sym_PIPE_RBRACE,
- ACTIONS(7547), 3,
- sym__automatic_semicolon,
- anon_sym_COMMA,
- anon_sym_SEMI,
- [141079] = 4,
- STATE(3867), 1,
- aux_sym_object_type_repeat1,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(3695), 2,
- anon_sym_RBRACE,
- anon_sym_PIPE_RBRACE,
- ACTIONS(7551), 3,
- sym__automatic_semicolon,
- anon_sym_COMMA,
- anon_sym_SEMI,
- [141096] = 7,
- ACTIONS(2581), 1,
- anon_sym_LT,
- ACTIONS(3205), 1,
- anon_sym_LPAREN,
- ACTIONS(7553), 1,
- anon_sym_QMARK,
- STATE(3229), 1,
- sym_formal_parameters,
- STATE(3596), 1,
- sym__call_signature,
- STATE(5404), 1,
- sym_type_parameters,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- [141119] = 7,
- ACTIONS(6554), 1,
- anon_sym_AMP,
- ACTIONS(6556), 1,
- anon_sym_PIPE,
- ACTIONS(6558), 1,
- anon_sym_extends,
- ACTIONS(7555), 1,
- anon_sym_LBRACE,
- ACTIONS(7557), 1,
- anon_sym_COMMA,
- STATE(5116), 1,
- aux_sym_implements_clause_repeat1,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- [141142] = 7,
- ACTIONS(2581), 1,
- anon_sym_LT,
- ACTIONS(3205), 1,
- anon_sym_LPAREN,
- ACTIONS(7559), 1,
- anon_sym_QMARK,
- STATE(3229), 1,
- sym_formal_parameters,
- STATE(3499), 1,
- sym__call_signature,
- STATE(5404), 1,
- sym_type_parameters,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- [141165] = 2,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(7210), 6,
- sym__automatic_semicolon,
- sym__function_signature_automatic_semicolon,
- anon_sym_LBRACE,
- anon_sym_COMMA,
- anon_sym_SEMI,
- anon_sym_COLON,
- [141178] = 7,
- ACTIONS(2581), 1,
- anon_sym_LT,
- ACTIONS(3205), 1,
- anon_sym_LPAREN,
- ACTIONS(7561), 1,
- anon_sym_QMARK,
- STATE(3229), 1,
- sym_formal_parameters,
- STATE(3537), 1,
- sym__call_signature,
- STATE(5404), 1,
- sym_type_parameters,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- [141201] = 5,
- ACTIONS(7472), 1,
- anon_sym_AMP,
- ACTIONS(7478), 1,
- anon_sym_PIPE,
- ACTIONS(7480), 1,
- anon_sym_extends,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(4311), 3,
- anon_sym_as,
- anon_sym_LBRACK,
- anon_sym_RBRACK,
- [141220] = 3,
- ACTIONS(3), 1,
- sym_comment,
- ACTIONS(5), 1,
- sym_html_comment,
- ACTIONS(7563), 6,
- anon_sym_LBRACE,
- aux_sym_jsx_text_token1,
- aux_sym_jsx_text_token2,
- sym_html_character_reference,
- anon_sym_LT_SLASH,
- anon_sym_LT,
- [141235] = 7,
- ACTIONS(6554), 1,
- anon_sym_AMP,
- ACTIONS(6556), 1,
- anon_sym_PIPE,
- ACTIONS(6558), 1,
- anon_sym_extends,
- ACTIONS(7565), 1,
- anon_sym_COMMA,
- ACTIONS(7567), 1,
- anon_sym_GT,
- STATE(4655), 1,
- aux_sym_implements_clause_repeat1,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- [141258] = 7,
- ACTIONS(2581), 1,
- anon_sym_LT,
- ACTIONS(3205), 1,
- anon_sym_LPAREN,
- ACTIONS(7569), 1,
- anon_sym_QMARK,
- STATE(3229), 1,
- sym_formal_parameters,
- STATE(5163), 1,
- sym__call_signature,
- STATE(5404), 1,
- sym_type_parameters,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- [141281] = 7,
- ACTIONS(2581), 1,
- anon_sym_LT,
- ACTIONS(6419), 1,
- anon_sym_LPAREN,
- ACTIONS(7571), 1,
- sym_identifier,
- STATE(3742), 1,
- sym_formal_parameters,
- STATE(5284), 1,
- sym__call_signature,
- STATE(5349), 1,
- sym_type_parameters,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- [141304] = 7,
- ACTIONS(2581), 1,
- anon_sym_LT,
- ACTIONS(3205), 1,
- anon_sym_LPAREN,
- ACTIONS(7573), 1,
- anon_sym_QMARK,
- STATE(3229), 1,
- sym_formal_parameters,
- STATE(4307), 1,
- sym__call_signature,
- STATE(5404), 1,
- sym_type_parameters,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- [141327] = 7,
- ACTIONS(2581), 1,
- anon_sym_LT,
- ACTIONS(3205), 1,
- anon_sym_LPAREN,
- ACTIONS(7575), 1,
- anon_sym_QMARK,
- STATE(3229), 1,
- sym_formal_parameters,
- STATE(4213), 1,
- sym__call_signature,
- STATE(5404), 1,
- sym_type_parameters,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- [141350] = 7,
- ACTIONS(3438), 1,
- anon_sym_LPAREN,
- ACTIONS(5991), 1,
- anon_sym_LT,
- ACTIONS(6847), 1,
- anon_sym_DOT,
- ACTIONS(7577), 1,
- anon_sym_RPAREN,
- STATE(1194), 1,
- sym_arguments,
- STATE(5478), 1,
- sym_type_arguments,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- [141373] = 3,
- ACTIONS(3), 1,
- sym_comment,
- ACTIONS(5), 1,
- sym_html_comment,
- ACTIONS(7579), 6,
- anon_sym_LBRACE,
- aux_sym_jsx_text_token1,
- aux_sym_jsx_text_token2,
- sym_html_character_reference,
- anon_sym_LT_SLASH,
- anon_sym_LT,
- [141388] = 2,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(2319), 6,
- anon_sym_as,
- anon_sym_LBRACK,
- anon_sym_RBRACK,
- anon_sym_AMP,
- anon_sym_PIPE,
- anon_sym_extends,
- [141401] = 4,
- ACTIONS(7398), 1,
- anon_sym_LBRACE,
- STATE(2572), 1,
- sym_statement_block,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(7297), 4,
- sym__automatic_semicolon,
- sym__function_signature_automatic_semicolon,
- anon_sym_COMMA,
- anon_sym_SEMI,
- [141418] = 7,
- ACTIONS(99), 1,
- anon_sym_AT,
- ACTIONS(7581), 1,
- anon_sym_export,
- ACTIONS(7583), 1,
- anon_sym_class,
- ACTIONS(7585), 1,
- anon_sym_abstract,
- STATE(1244), 1,
- sym_decorator,
- STATE(3814), 1,
- aux_sym_export_statement_repeat1,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- [141441] = 4,
- STATE(3776), 1,
- aux_sym_object_type_repeat1,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(3695), 2,
- anon_sym_RBRACE,
- anon_sym_PIPE_RBRACE,
- ACTIONS(7551), 3,
- sym__automatic_semicolon,
- anon_sym_COMMA,
- anon_sym_SEMI,
- [141458] = 7,
- ACTIONS(2581), 1,
- anon_sym_LT,
- ACTIONS(6419), 1,
- anon_sym_LPAREN,
- ACTIONS(7587), 1,
- anon_sym_QMARK,
- STATE(3742), 1,
- sym_formal_parameters,
- STATE(5349), 1,
- sym_type_parameters,
- STATE(5510), 1,
- sym__call_signature,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- [141481] = 3,
- ACTIONS(3), 1,
- sym_comment,
- ACTIONS(5), 1,
- sym_html_comment,
- ACTIONS(4888), 6,
- anon_sym_LBRACE,
- aux_sym_jsx_text_token1,
- aux_sym_jsx_text_token2,
- sym_html_character_reference,
- anon_sym_LT_SLASH,
- anon_sym_LT,
- [141496] = 7,
- ACTIONS(2581), 1,
- anon_sym_LT,
- ACTIONS(6419), 1,
- anon_sym_LPAREN,
- ACTIONS(7589), 1,
- anon_sym_QMARK,
- STATE(3742), 1,
- sym_formal_parameters,
- STATE(5270), 1,
- sym__call_signature,
- STATE(5349), 1,
- sym_type_parameters,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- [141519] = 7,
- ACTIONS(1506), 1,
- anon_sym_DQUOTE,
- ACTIONS(1508), 1,
- anon_sym_SQUOTE,
- ACTIONS(7218), 1,
- sym_identifier,
- STATE(711), 1,
- sym_nested_identifier,
- STATE(741), 1,
- sym_string,
- STATE(825), 1,
- sym__module,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- [141542] = 7,
- ACTIONS(2581), 1,
- anon_sym_LT,
- ACTIONS(6419), 1,
- anon_sym_LPAREN,
- ACTIONS(7591), 1,
- anon_sym_QMARK,
- STATE(3742), 1,
- sym_formal_parameters,
- STATE(5298), 1,
- sym__call_signature,
- STATE(5349), 1,
- sym_type_parameters,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- [141565] = 3,
- ACTIONS(3), 1,
- sym_comment,
- ACTIONS(5), 1,
- sym_html_comment,
- ACTIONS(4902), 6,
- anon_sym_LBRACE,
- aux_sym_jsx_text_token1,
- aux_sym_jsx_text_token2,
- sym_html_character_reference,
- anon_sym_LT_SLASH,
- anon_sym_LT,
- [141580] = 2,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(2323), 6,
- anon_sym_as,
- anon_sym_LBRACK,
- anon_sym_RBRACK,
- anon_sym_AMP,
- anon_sym_PIPE,
- anon_sym_extends,
- [141593] = 2,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(2327), 6,
- anon_sym_as,
- anon_sym_LBRACK,
- anon_sym_RBRACK,
- anon_sym_AMP,
- anon_sym_PIPE,
- anon_sym_extends,
- [141606] = 5,
- ACTIONS(7462), 1,
- anon_sym_DOLLAR_LBRACE,
- ACTIONS(7593), 1,
- anon_sym_BQUOTE,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(7474), 2,
- sym__template_chars,
- sym_escape_sequence,
- STATE(3781), 2,
- sym_template_substitution,
- aux_sym_template_string_repeat1,
- [141625] = 6,
- ACTIONS(7312), 1,
- anon_sym_AMP,
- ACTIONS(7314), 1,
- anon_sym_PIPE,
- ACTIONS(7316), 1,
- anon_sym_extends,
- ACTIONS(7597), 1,
- anon_sym_QMARK,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(7595), 2,
- anon_sym_COMMA,
- anon_sym_RBRACK,
- [141646] = 7,
- ACTIONS(99), 1,
- anon_sym_AT,
- ACTIONS(7585), 1,
- anon_sym_abstract,
- ACTIONS(7599), 1,
- anon_sym_export,
- ACTIONS(7601), 1,
- anon_sym_class,
- STATE(1244), 1,
- sym_decorator,
- STATE(3814), 1,
- aux_sym_export_statement_repeat1,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- [141669] = 2,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(7264), 6,
- sym__automatic_semicolon,
- sym__function_signature_automatic_semicolon,
- anon_sym_LBRACE,
- anon_sym_COMMA,
- anon_sym_SEMI,
- anon_sym_COLON,
- [141682] = 6,
- ACTIONS(7248), 1,
- anon_sym_DOT,
- ACTIONS(7250), 1,
- anon_sym_LT,
- ACTIONS(7603), 1,
- anon_sym_LBRACE,
- STATE(5094), 1,
- sym_type_arguments,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(7605), 2,
- anon_sym_COMMA,
- anon_sym_LBRACE_PIPE,
- [141703] = 7,
- ACTIONS(99), 1,
- anon_sym_AT,
- ACTIONS(7585), 1,
- anon_sym_abstract,
- ACTIONS(7601), 1,
- anon_sym_class,
- ACTIONS(7607), 1,
- anon_sym_export,
- STATE(1244), 1,
- sym_decorator,
- STATE(3814), 1,
- aux_sym_export_statement_repeat1,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- [141726] = 4,
- ACTIONS(7398), 1,
- anon_sym_LBRACE,
- STATE(2567), 1,
- sym_statement_block,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(7224), 4,
- sym__automatic_semicolon,
- sym__function_signature_automatic_semicolon,
- anon_sym_COMMA,
- anon_sym_SEMI,
- [141743] = 5,
- ACTIONS(3199), 1,
- anon_sym_LBRACE,
- ACTIONS(7364), 1,
- anon_sym_LBRACK,
- ACTIONS(7609), 1,
- sym_identifier,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- STATE(4692), 3,
- sym_object_pattern,
- sym_array_pattern,
- sym__destructuring_pattern,
- [141762] = 5,
- ACTIONS(7611), 1,
- anon_sym_default,
- ACTIONS(7613), 1,
- anon_sym_RBRACE,
- ACTIONS(7615), 1,
- anon_sym_case,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- STATE(3774), 3,
- sym_switch_case,
- sym_switch_default,
- aux_sym_switch_body_repeat1,
- [141781] = 4,
- STATE(3776), 1,
- aux_sym_object_type_repeat1,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(3653), 2,
- anon_sym_RBRACE,
- anon_sym_PIPE_RBRACE,
- ACTIONS(7617), 3,
- sym__automatic_semicolon,
- anon_sym_COMMA,
- anon_sym_SEMI,
- [141798] = 5,
- ACTIONS(7462), 1,
- anon_sym_DOLLAR_LBRACE,
- ACTIONS(7619), 1,
- anon_sym_BQUOTE,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(7126), 2,
- sym__template_chars,
- sym_escape_sequence,
- STATE(3783), 2,
- sym_template_substitution,
- aux_sym_template_string_repeat1,
- [141817] = 3,
- ACTIONS(7621), 1,
- sym_identifier,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(6285), 5,
- anon_sym_LPAREN,
- anon_sym_DOT,
- anon_sym_QMARK_DOT,
- anon_sym_LT,
- anon_sym_BQUOTE,
- [141832] = 4,
- STATE(3776), 1,
- aux_sym_object_type_repeat1,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(3651), 2,
- anon_sym_RBRACE,
- anon_sym_PIPE_RBRACE,
- ACTIONS(7484), 3,
- sym__automatic_semicolon,
- anon_sym_COMMA,
- anon_sym_SEMI,
- [141849] = 4,
- ACTIONS(7398), 1,
- anon_sym_LBRACE,
- STATE(2571), 1,
- sym_statement_block,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(7326), 4,
- sym__automatic_semicolon,
- sym__function_signature_automatic_semicolon,
- anon_sym_COMMA,
- anon_sym_SEMI,
- [141866] = 4,
- STATE(3776), 1,
- aux_sym_object_type_repeat1,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(3689), 2,
- anon_sym_RBRACE,
- anon_sym_PIPE_RBRACE,
- ACTIONS(7623), 3,
- sym__automatic_semicolon,
- anon_sym_COMMA,
- anon_sym_SEMI,
- [141883] = 4,
- ACTIONS(7398), 1,
- anon_sym_LBRACE,
- STATE(2559), 1,
- sym_statement_block,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(7299), 4,
- sym__automatic_semicolon,
- sym__function_signature_automatic_semicolon,
- anon_sym_COMMA,
- anon_sym_SEMI,
- [141900] = 4,
- STATE(3909), 1,
- aux_sym_object_type_repeat1,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(7627), 2,
- anon_sym_RBRACE,
- anon_sym_PIPE_RBRACE,
- ACTIONS(7625), 3,
- sym__automatic_semicolon,
- anon_sym_COMMA,
- anon_sym_SEMI,
- [141917] = 4,
- ACTIONS(7398), 1,
- anon_sym_LBRACE,
- STATE(2606), 1,
- sym_statement_block,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(7224), 4,
- sym__automatic_semicolon,
- sym__function_signature_automatic_semicolon,
- anon_sym_COMMA,
- anon_sym_SEMI,
- [141934] = 7,
- ACTIONS(2581), 1,
- anon_sym_LT,
- ACTIONS(6419), 1,
- anon_sym_LPAREN,
- ACTIONS(7629), 1,
- sym_identifier,
- STATE(3742), 1,
- sym_formal_parameters,
- STATE(5349), 1,
- sym_type_parameters,
- STATE(5448), 1,
- sym__call_signature,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- [141957] = 3,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(5869), 2,
- anon_sym_COMMA,
- anon_sym_RBRACE,
- ACTIONS(3743), 4,
- anon_sym_LPAREN,
- anon_sym_COLON,
- anon_sym_LT,
- anon_sym_QMARK,
- [141972] = 7,
- ACTIONS(2581), 1,
- anon_sym_LT,
- ACTIONS(6419), 1,
- anon_sym_LPAREN,
- ACTIONS(7631), 1,
- anon_sym_QMARK,
- STATE(3742), 1,
- sym_formal_parameters,
- STATE(5318), 1,
- sym__call_signature,
- STATE(5349), 1,
- sym_type_parameters,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- [141995] = 7,
- ACTIONS(6554), 1,
- anon_sym_AMP,
- ACTIONS(6556), 1,
- anon_sym_PIPE,
- ACTIONS(6558), 1,
- anon_sym_extends,
- ACTIONS(7633), 1,
- anon_sym_COMMA,
- ACTIONS(7635), 1,
- anon_sym_GT,
- STATE(4703), 1,
- aux_sym_implements_clause_repeat1,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- [142018] = 7,
- ACTIONS(2581), 1,
- anon_sym_LT,
- ACTIONS(3205), 1,
- anon_sym_LPAREN,
- ACTIONS(7637), 1,
- anon_sym_QMARK,
- STATE(3229), 1,
- sym_formal_parameters,
- STATE(4029), 1,
- sym__call_signature,
- STATE(5404), 1,
- sym_type_parameters,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- [142041] = 7,
- ACTIONS(1594), 1,
- anon_sym_DQUOTE,
- ACTIONS(1596), 1,
- anon_sym_SQUOTE,
- ACTIONS(7232), 1,
- sym_identifier,
- STATE(3483), 1,
- sym_nested_identifier,
- STATE(3697), 1,
- sym_string,
- STATE(4346), 1,
- sym__module,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- [142064] = 4,
- ACTIONS(7398), 1,
- anon_sym_LBRACE,
- STATE(2600), 1,
- sym_statement_block,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(7268), 4,
- sym__automatic_semicolon,
- sym__function_signature_automatic_semicolon,
- anon_sym_COMMA,
- anon_sym_SEMI,
- [142081] = 3,
- ACTIONS(3), 1,
- sym_comment,
- ACTIONS(5), 1,
- sym_html_comment,
- ACTIONS(4709), 6,
- anon_sym_LBRACE,
- aux_sym_jsx_text_token1,
- aux_sym_jsx_text_token2,
- sym_html_character_reference,
- anon_sym_LT_SLASH,
- anon_sym_LT,
- [142096] = 7,
- ACTIONS(2581), 1,
- anon_sym_LT,
- ACTIONS(6419), 1,
- anon_sym_LPAREN,
- ACTIONS(7639), 1,
- sym_identifier,
- STATE(3742), 1,
- sym_formal_parameters,
- STATE(5349), 1,
- sym_type_parameters,
- STATE(5498), 1,
- sym__call_signature,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- [142119] = 4,
- ACTIONS(7398), 1,
- anon_sym_LBRACE,
- STATE(2583), 1,
- sym_statement_block,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(7208), 4,
- sym__automatic_semicolon,
- sym__function_signature_automatic_semicolon,
- anon_sym_COMMA,
- anon_sym_SEMI,
- [142136] = 4,
- ACTIONS(7398), 1,
- anon_sym_LBRACE,
- STATE(2584), 1,
- sym_statement_block,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(7212), 4,
- sym__automatic_semicolon,
- sym__function_signature_automatic_semicolon,
- anon_sym_COMMA,
- anon_sym_SEMI,
- [142153] = 3,
- ACTIONS(3), 1,
- sym_comment,
- ACTIONS(5), 1,
- sym_html_comment,
- ACTIONS(4713), 6,
- anon_sym_LBRACE,
- aux_sym_jsx_text_token1,
- aux_sym_jsx_text_token2,
- sym_html_character_reference,
- anon_sym_LT_SLASH,
- anon_sym_LT,
- [142168] = 2,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(7270), 6,
- sym__automatic_semicolon,
- sym__function_signature_automatic_semicolon,
- anon_sym_LBRACE,
- anon_sym_COMMA,
- anon_sym_SEMI,
- anon_sym_COLON,
- [142181] = 7,
- ACTIONS(6554), 1,
- anon_sym_AMP,
- ACTIONS(6556), 1,
- anon_sym_PIPE,
- ACTIONS(6558), 1,
- anon_sym_extends,
- ACTIONS(7641), 1,
- anon_sym_COMMA,
- ACTIONS(7643), 1,
- anon_sym_GT,
- STATE(4595), 1,
- aux_sym_implements_clause_repeat1,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- [142204] = 7,
- ACTIONS(2581), 1,
- anon_sym_LT,
- ACTIONS(6419), 1,
- anon_sym_LPAREN,
- ACTIONS(7645), 1,
- anon_sym_QMARK,
- STATE(3742), 1,
- sym_formal_parameters,
- STATE(5338), 1,
- sym__call_signature,
- STATE(5349), 1,
- sym_type_parameters,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- [142227] = 7,
- ACTIONS(6554), 1,
- anon_sym_AMP,
- ACTIONS(6556), 1,
- anon_sym_PIPE,
- ACTIONS(6558), 1,
- anon_sym_extends,
- ACTIONS(7647), 1,
- anon_sym_COMMA,
- ACTIONS(7649), 1,
- anon_sym_GT,
- STATE(4625), 1,
- aux_sym_implements_clause_repeat1,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- [142250] = 7,
- ACTIONS(1594), 1,
- anon_sym_DQUOTE,
- ACTIONS(1596), 1,
- anon_sym_SQUOTE,
- ACTIONS(7232), 1,
- sym_identifier,
- STATE(3483), 1,
- sym_nested_identifier,
- STATE(3697), 1,
- sym_string,
- STATE(4370), 1,
- sym__module,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- [142273] = 4,
- ACTIONS(7398), 1,
- anon_sym_LBRACE,
- STATE(2597), 1,
- sym_statement_block,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(7258), 4,
- sym__automatic_semicolon,
- sym__function_signature_automatic_semicolon,
- anon_sym_COMMA,
- anon_sym_SEMI,
- [142290] = 3,
- ACTIONS(6475), 1,
- sym_identifier,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(6477), 5,
- anon_sym_EQ,
- anon_sym_LBRACE,
- anon_sym_GT,
- sym_jsx_identifier,
- anon_sym_SLASH_GT,
- [142305] = 7,
- ACTIONS(2581), 1,
- anon_sym_LT,
- ACTIONS(6419), 1,
- anon_sym_LPAREN,
- ACTIONS(7651), 1,
- anon_sym_QMARK,
- STATE(3742), 1,
- sym_formal_parameters,
- STATE(5320), 1,
- sym__call_signature,
- STATE(5349), 1,
- sym_type_parameters,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- [142328] = 2,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(7653), 6,
- sym__automatic_semicolon,
- anon_sym_LBRACE,
- anon_sym_COMMA,
- anon_sym_RBRACE,
- anon_sym_SEMI,
- anon_sym_PIPE_RBRACE,
- [142341] = 7,
- ACTIONS(2581), 1,
- anon_sym_LT,
- ACTIONS(3205), 1,
- anon_sym_LPAREN,
- ACTIONS(7655), 1,
- anon_sym_QMARK,
- STATE(3229), 1,
- sym_formal_parameters,
- STATE(4989), 1,
- sym__call_signature,
- STATE(5404), 1,
- sym_type_parameters,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- [142364] = 7,
- ACTIONS(3438), 1,
- anon_sym_LPAREN,
- ACTIONS(5991), 1,
- anon_sym_LT,
- ACTIONS(6847), 1,
- anon_sym_DOT,
- ACTIONS(7657), 1,
- anon_sym_RPAREN,
- STATE(1194), 1,
- sym_arguments,
- STATE(5478), 1,
- sym_type_arguments,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- [142387] = 3,
- ACTIONS(7659), 1,
- sym_identifier,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(6285), 5,
- anon_sym_LPAREN,
- anon_sym_DOT,
- anon_sym_QMARK_DOT,
- anon_sym_LT,
- anon_sym_BQUOTE,
- [142402] = 2,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(7661), 6,
- sym__automatic_semicolon,
- anon_sym_LBRACE,
- anon_sym_COMMA,
- anon_sym_RBRACE,
- anon_sym_SEMI,
- anon_sym_PIPE_RBRACE,
- [142415] = 4,
- ACTIONS(7398), 1,
- anon_sym_LBRACE,
- STATE(2563), 1,
- sym_statement_block,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(7258), 4,
- sym__automatic_semicolon,
- sym__function_signature_automatic_semicolon,
- anon_sym_COMMA,
- anon_sym_SEMI,
- [142432] = 5,
- ACTIONS(3199), 1,
- anon_sym_LBRACE,
- ACTIONS(7364), 1,
- anon_sym_LBRACK,
- ACTIONS(7663), 1,
- sym_identifier,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- STATE(5532), 3,
- sym_object_pattern,
- sym_array_pattern,
- sym__destructuring_pattern,
- [142451] = 3,
- ACTIONS(3), 1,
- sym_comment,
- ACTIONS(5), 1,
- sym_html_comment,
- ACTIONS(7665), 6,
- anon_sym_LBRACE,
- aux_sym_jsx_text_token1,
- aux_sym_jsx_text_token2,
- sym_html_character_reference,
- anon_sym_LT_SLASH,
- anon_sym_LT,
- [142466] = 7,
- ACTIONS(2581), 1,
- anon_sym_LT,
- ACTIONS(6419), 1,
- anon_sym_LPAREN,
- ACTIONS(7667), 1,
- anon_sym_QMARK,
- STATE(3742), 1,
- sym_formal_parameters,
- STATE(5349), 1,
- sym_type_parameters,
- STATE(5362), 1,
- sym__call_signature,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- [142489] = 7,
- ACTIONS(2581), 1,
- anon_sym_LT,
- ACTIONS(3205), 1,
- anon_sym_LPAREN,
- ACTIONS(7669), 1,
- anon_sym_QMARK,
- STATE(3229), 1,
- sym_formal_parameters,
- STATE(5062), 1,
- sym__call_signature,
- STATE(5404), 1,
- sym_type_parameters,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- [142512] = 7,
- ACTIONS(6554), 1,
- anon_sym_AMP,
- ACTIONS(6556), 1,
- anon_sym_PIPE,
- ACTIONS(6558), 1,
- anon_sym_extends,
- ACTIONS(7671), 1,
- anon_sym_COMMA,
- ACTIONS(7673), 1,
- anon_sym_GT,
- STATE(4823), 1,
- aux_sym_implements_clause_repeat1,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- [142535] = 4,
- STATE(3735), 1,
- aux_sym_object_type_repeat1,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(3661), 2,
- anon_sym_RBRACE,
- anon_sym_PIPE_RBRACE,
- ACTIONS(7675), 3,
- sym__automatic_semicolon,
- anon_sym_COMMA,
- anon_sym_SEMI,
- [142552] = 7,
- ACTIONS(1506), 1,
- anon_sym_DQUOTE,
- ACTIONS(1508), 1,
- anon_sym_SQUOTE,
- ACTIONS(7301), 1,
- sym_identifier,
- STATE(741), 1,
- sym_string,
- STATE(855), 1,
- sym__module,
- STATE(4429), 1,
- sym_nested_identifier,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- [142575] = 4,
- STATE(3776), 1,
- aux_sym_object_type_repeat1,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(3661), 2,
- anon_sym_RBRACE,
- anon_sym_PIPE_RBRACE,
- ACTIONS(7675), 3,
- sym__automatic_semicolon,
- anon_sym_COMMA,
- anon_sym_SEMI,
- [142592] = 7,
- ACTIONS(1506), 1,
- anon_sym_DQUOTE,
- ACTIONS(1508), 1,
- anon_sym_SQUOTE,
- ACTIONS(7301), 1,
- sym_identifier,
- STATE(741), 1,
- sym_string,
- STATE(825), 1,
- sym__module,
- STATE(4429), 1,
- sym_nested_identifier,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- [142615] = 4,
- STATE(3870), 1,
- aux_sym_object_type_repeat1,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(7679), 2,
- anon_sym_RBRACE,
- anon_sym_PIPE_RBRACE,
- ACTIONS(7677), 3,
- sym__automatic_semicolon,
- anon_sym_COMMA,
- anon_sym_SEMI,
- [142632] = 4,
- ACTIONS(7398), 1,
- anon_sym_LBRACE,
- STATE(2566), 1,
- sym_statement_block,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(7299), 4,
- sym__automatic_semicolon,
- sym__function_signature_automatic_semicolon,
- anon_sym_COMMA,
- anon_sym_SEMI,
- [142649] = 5,
- ACTIONS(7611), 1,
- anon_sym_default,
- ACTIONS(7615), 1,
- anon_sym_case,
- ACTIONS(7681), 1,
- anon_sym_RBRACE,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- STATE(3866), 3,
- sym_switch_case,
- sym_switch_default,
- aux_sym_switch_body_repeat1,
- [142668] = 7,
- ACTIONS(2581), 1,
- anon_sym_LT,
- ACTIONS(3205), 1,
- anon_sym_LPAREN,
- ACTIONS(7683), 1,
- anon_sym_QMARK,
- STATE(3229), 1,
- sym_formal_parameters,
- STATE(3601), 1,
- sym__call_signature,
- STATE(5404), 1,
- sym_type_parameters,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- [142691] = 4,
- ACTIONS(7396), 1,
- anon_sym_COLON,
- ACTIONS(7685), 1,
- anon_sym_EQ_GT,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- STATE(5232), 3,
- sym_type_annotation,
- sym_asserts_annotation,
- sym_type_predicate_annotation,
- [142707] = 4,
- ACTIONS(6403), 1,
- anon_sym_EQ,
- STATE(4665), 1,
- sym__initializer,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(7688), 3,
- sym__automatic_semicolon,
- anon_sym_COMMA,
- anon_sym_SEMI,
- [142723] = 4,
- ACTIONS(6403), 1,
- anon_sym_EQ,
- STATE(4666), 1,
- sym__initializer,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(7690), 3,
- sym__automatic_semicolon,
- anon_sym_COMMA,
- anon_sym_SEMI,
- [142739] = 3,
- ACTIONS(4539), 1,
- anon_sym_in,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(5421), 4,
- anon_sym_LPAREN,
- anon_sym_COLON,
- anon_sym_LT,
- anon_sym_QMARK,
- [142753] = 4,
- ACTIONS(6403), 1,
- anon_sym_EQ,
- STATE(4670), 1,
- sym__initializer,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(7690), 3,
- sym__automatic_semicolon,
- anon_sym_COMMA,
- anon_sym_SEMI,
- [142769] = 2,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(2859), 5,
- sym__automatic_semicolon,
- anon_sym_COMMA,
- anon_sym_RBRACE,
- anon_sym_SEMI,
- anon_sym_PIPE_RBRACE,
- [142781] = 2,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(2863), 5,
- sym__automatic_semicolon,
- anon_sym_COMMA,
- anon_sym_RBRACE,
- anon_sym_SEMI,
- anon_sym_PIPE_RBRACE,
- [142793] = 2,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(2867), 5,
- sym__automatic_semicolon,
- anon_sym_COMMA,
- anon_sym_RBRACE,
- anon_sym_SEMI,
- anon_sym_PIPE_RBRACE,
- [142805] = 4,
- ACTIONS(6403), 1,
- anon_sym_EQ,
- STATE(4667), 1,
- sym__initializer,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(7692), 3,
- sym__automatic_semicolon,
- anon_sym_COMMA,
- anon_sym_SEMI,
- [142821] = 4,
- ACTIONS(6403), 1,
- anon_sym_EQ,
- STATE(4686), 1,
- sym__initializer,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(7688), 3,
- sym__automatic_semicolon,
- anon_sym_COMMA,
- anon_sym_SEMI,
- [142837] = 4,
- ACTIONS(6403), 1,
- anon_sym_EQ,
- STATE(4673), 1,
- sym__initializer,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(7694), 3,
- sym__automatic_semicolon,
- anon_sym_COMMA,
- anon_sym_SEMI,
- [142853] = 4,
- ACTIONS(6403), 1,
- anon_sym_EQ,
- STATE(4696), 1,
- sym__initializer,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(7688), 3,
- sym__automatic_semicolon,
- anon_sym_COMMA,
- anon_sym_SEMI,
- [142869] = 4,
- ACTIONS(6403), 1,
- anon_sym_EQ,
- STATE(4697), 1,
- sym__initializer,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(7690), 3,
- sym__automatic_semicolon,
- anon_sym_COMMA,
- anon_sym_SEMI,
- [142885] = 4,
- ACTIONS(6403), 1,
- anon_sym_EQ,
- STATE(4699), 1,
- sym__initializer,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(7690), 3,
- sym__automatic_semicolon,
- anon_sym_COMMA,
- anon_sym_SEMI,
- [142901] = 4,
- ACTIONS(6403), 1,
- anon_sym_EQ,
- STATE(4700), 1,
- sym__initializer,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(7690), 3,
- sym__automatic_semicolon,
- anon_sym_COMMA,
- anon_sym_SEMI,
- [142917] = 4,
- ACTIONS(6403), 1,
- anon_sym_EQ,
- STATE(4702), 1,
- sym__initializer,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(7690), 3,
- sym__automatic_semicolon,
- anon_sym_COMMA,
- anon_sym_SEMI,
- [142933] = 3,
- ACTIONS(7394), 1,
- sym_identifier,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(7696), 4,
- anon_sym_LBRACE,
- anon_sym_GT,
- sym_jsx_identifier,
- anon_sym_SLASH_GT,
- [142947] = 4,
- ACTIONS(6403), 1,
- anon_sym_EQ,
- STATE(4708), 1,
- sym__initializer,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(7688), 3,
- sym__automatic_semicolon,
- anon_sym_COMMA,
- anon_sym_SEMI,
- [142963] = 2,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(7653), 5,
- sym__automatic_semicolon,
- sym__function_signature_automatic_semicolon,
- anon_sym_LBRACE,
- anon_sym_COMMA,
- anon_sym_SEMI,
- [142975] = 4,
- ACTIONS(6403), 1,
- anon_sym_EQ,
- STATE(4709), 1,
- sym__initializer,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(7690), 3,
- sym__automatic_semicolon,
- anon_sym_COMMA,
- anon_sym_SEMI,
- [142991] = 2,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(7661), 5,
- sym__automatic_semicolon,
- sym__function_signature_automatic_semicolon,
- anon_sym_LBRACE,
- anon_sym_COMMA,
- anon_sym_SEMI,
- [143003] = 2,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(7372), 5,
- sym__automatic_semicolon,
- sym__function_signature_automatic_semicolon,
- anon_sym_LBRACE,
- anon_sym_COMMA,
- anon_sym_SEMI,
- [143015] = 2,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(2875), 5,
- sym__automatic_semicolon,
- anon_sym_COMMA,
- anon_sym_RBRACE,
- anon_sym_SEMI,
- anon_sym_PIPE_RBRACE,
- [143027] = 4,
- ACTIONS(6403), 1,
- anon_sym_EQ,
- STATE(4710), 1,
- sym__initializer,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(7690), 3,
- sym__automatic_semicolon,
- anon_sym_COMMA,
- anon_sym_SEMI,
- [143043] = 2,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(2487), 5,
- sym__automatic_semicolon,
- anon_sym_COMMA,
- anon_sym_RBRACE,
- anon_sym_SEMI,
- anon_sym_PIPE_RBRACE,
- [143055] = 2,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(2487), 5,
- sym__automatic_semicolon,
- anon_sym_COMMA,
- anon_sym_RBRACE,
- anon_sym_SEMI,
- anon_sym_PIPE_RBRACE,
- [143067] = 2,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(2879), 5,
- sym__automatic_semicolon,
- anon_sym_COMMA,
- anon_sym_RBRACE,
- anon_sym_SEMI,
- anon_sym_PIPE_RBRACE,
- [143079] = 2,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(2883), 5,
- sym__automatic_semicolon,
- anon_sym_COMMA,
- anon_sym_RBRACE,
- anon_sym_SEMI,
- anon_sym_PIPE_RBRACE,
- [143091] = 2,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(1875), 5,
- sym__automatic_semicolon,
- anon_sym_COMMA,
- anon_sym_RBRACE,
- anon_sym_SEMI,
- anon_sym_PIPE_RBRACE,
- [143103] = 2,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(2487), 5,
- sym__automatic_semicolon,
- anon_sym_COMMA,
- anon_sym_RBRACE,
- anon_sym_SEMI,
- anon_sym_PIPE_RBRACE,
- [143115] = 2,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(2487), 5,
- sym__automatic_semicolon,
- anon_sym_COMMA,
- anon_sym_RBRACE,
- anon_sym_SEMI,
- anon_sym_PIPE_RBRACE,
- [143127] = 2,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(2487), 5,
- sym__automatic_semicolon,
- anon_sym_COMMA,
- anon_sym_RBRACE,
- anon_sym_SEMI,
- anon_sym_PIPE_RBRACE,
- [143139] = 2,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(2487), 5,
- sym__automatic_semicolon,
- anon_sym_COMMA,
- anon_sym_RBRACE,
- anon_sym_SEMI,
- anon_sym_PIPE_RBRACE,
- [143151] = 4,
- ACTIONS(6403), 1,
- anon_sym_EQ,
- STATE(4688), 1,
- sym__initializer,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(7694), 3,
- sym__automatic_semicolon,
- anon_sym_COMMA,
- anon_sym_SEMI,
- [143167] = 4,
- ACTIONS(6403), 1,
- anon_sym_EQ,
- STATE(5145), 1,
- sym__initializer,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(7692), 3,
- sym__automatic_semicolon,
- anon_sym_COMMA,
- anon_sym_SEMI,
- [143183] = 6,
- ACTIONS(2581), 1,
- anon_sym_LT,
- ACTIONS(6409), 1,
- anon_sym_LPAREN,
- STATE(3320), 1,
- sym_formal_parameters,
- STATE(3847), 1,
- sym__call_signature,
- STATE(5342), 1,
- sym_type_parameters,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- [143203] = 4,
- ACTIONS(6403), 1,
- anon_sym_EQ,
- STATE(4724), 1,
- sym__initializer,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(7688), 3,
- sym__automatic_semicolon,
- anon_sym_COMMA,
- anon_sym_SEMI,
- [143219] = 4,
- ACTIONS(7396), 1,
- anon_sym_COLON,
- ACTIONS(7698), 1,
- anon_sym_EQ_GT,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- STATE(5232), 3,
- sym_type_annotation,
- sym_asserts_annotation,
- sym_type_predicate_annotation,
- [143235] = 2,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(4987), 5,
- anon_sym_EQ,
- anon_sym_RPAREN,
- anon_sym_in,
- anon_sym_of,
- anon_sym_COLON,
- [143247] = 2,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(2511), 5,
- sym__automatic_semicolon,
- anon_sym_COMMA,
- anon_sym_RBRACE,
- anon_sym_SEMI,
- anon_sym_PIPE_RBRACE,
- [143259] = 2,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(2515), 5,
- sym__automatic_semicolon,
- anon_sym_COMMA,
- anon_sym_RBRACE,
- anon_sym_SEMI,
- anon_sym_PIPE_RBRACE,
- [143271] = 2,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(2519), 5,
- sym__automatic_semicolon,
- anon_sym_COMMA,
- anon_sym_RBRACE,
- anon_sym_SEMI,
- anon_sym_PIPE_RBRACE,
- [143283] = 5,
- ACTIONS(7701), 1,
- sym_identifier,
- ACTIONS(7703), 1,
- anon_sym_LPAREN,
- STATE(1183), 1,
- sym_decorator_member_expression,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- STATE(1228), 2,
- sym_decorator_call_expression,
- sym_decorator_parenthesized_expression,
- [143301] = 4,
- ACTIONS(6403), 1,
- anon_sym_EQ,
- STATE(4729), 1,
- sym__initializer,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(7688), 3,
- sym__automatic_semicolon,
- anon_sym_COMMA,
- anon_sym_SEMI,
- [143317] = 4,
- ACTIONS(6403), 1,
- anon_sym_EQ,
- STATE(4731), 1,
- sym__initializer,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(7690), 3,
- sym__automatic_semicolon,
- anon_sym_COMMA,
- anon_sym_SEMI,
- [143333] = 4,
- ACTIONS(6403), 1,
- anon_sym_EQ,
- STATE(4738), 1,
- sym__initializer,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(7690), 3,
- sym__automatic_semicolon,
- anon_sym_COMMA,
- anon_sym_SEMI,
- [143349] = 5,
- ACTIONS(6554), 1,
- anon_sym_AMP,
- ACTIONS(6556), 1,
- anon_sym_PIPE,
- ACTIONS(6558), 1,
- anon_sym_extends,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(7705), 2,
- anon_sym_COMMA,
- anon_sym_GT,
- [143367] = 4,
- ACTIONS(6403), 1,
- anon_sym_EQ,
- STATE(4787), 1,
- sym__initializer,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(7692), 3,
- sym__automatic_semicolon,
- anon_sym_COMMA,
- anon_sym_SEMI,
- [143383] = 4,
- ACTIONS(6403), 1,
- anon_sym_EQ,
- STATE(5159), 1,
- sym__initializer,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(7692), 3,
- sym__automatic_semicolon,
- anon_sym_COMMA,
- anon_sym_SEMI,
- [143399] = 4,
- ACTIONS(6403), 1,
- anon_sym_EQ,
- STATE(4748), 1,
- sym__initializer,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(7688), 3,
- sym__automatic_semicolon,
- anon_sym_COMMA,
- anon_sym_SEMI,
- [143415] = 4,
- ACTIONS(6403), 1,
- anon_sym_EQ,
- STATE(4816), 1,
- sym__initializer,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(7692), 3,
- sym__automatic_semicolon,
- anon_sym_COMMA,
- anon_sym_SEMI,
- [143431] = 4,
- ACTIONS(6403), 1,
- anon_sym_EQ,
- STATE(4763), 1,
- sym__initializer,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(7688), 3,
- sym__automatic_semicolon,
- anon_sym_COMMA,
- anon_sym_SEMI,
- [143447] = 4,
- ACTIONS(6403), 1,
- anon_sym_EQ,
- STATE(4822), 1,
- sym__initializer,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(7694), 3,
- sym__automatic_semicolon,
- anon_sym_COMMA,
- anon_sym_SEMI,
- [143463] = 2,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(7707), 5,
- anon_sym_EQ,
- anon_sym_LBRACE,
- anon_sym_LPAREN,
- anon_sym_extends,
- anon_sym_implements,
- [143475] = 4,
- ACTIONS(6403), 1,
- anon_sym_EQ,
- STATE(4773), 1,
- sym__initializer,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(7688), 3,
- sym__automatic_semicolon,
- anon_sym_COMMA,
- anon_sym_SEMI,
- [143491] = 4,
- ACTIONS(6403), 1,
- anon_sym_EQ,
- STATE(4825), 1,
- sym__initializer,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(7694), 3,
- sym__automatic_semicolon,
- anon_sym_COMMA,
- anon_sym_SEMI,
- [143507] = 4,
- ACTIONS(6403), 1,
- anon_sym_EQ,
- STATE(5160), 1,
- sym__initializer,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(7694), 3,
- sym__automatic_semicolon,
- anon_sym_COMMA,
- anon_sym_SEMI,
- [143523] = 4,
- ACTIONS(6403), 1,
- anon_sym_EQ,
- STATE(4776), 1,
- sym__initializer,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(7688), 3,
- sym__automatic_semicolon,
- anon_sym_COMMA,
- anon_sym_SEMI,
- [143539] = 4,
- ACTIONS(6403), 1,
- anon_sym_EQ,
- STATE(4777), 1,
- sym__initializer,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(7690), 3,
- sym__automatic_semicolon,
- anon_sym_COMMA,
- anon_sym_SEMI,
- [143555] = 4,
- ACTIONS(6403), 1,
- anon_sym_EQ,
- STATE(4778), 1,
- sym__initializer,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(7690), 3,
- sym__automatic_semicolon,
- anon_sym_COMMA,
- anon_sym_SEMI,
- [143571] = 2,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(2583), 5,
- sym__automatic_semicolon,
- anon_sym_COMMA,
- anon_sym_RBRACE,
- anon_sym_SEMI,
- anon_sym_PIPE_RBRACE,
- [143583] = 6,
- ACTIONS(7709), 1,
- sym_identifier,
- ACTIONS(7711), 1,
- anon_sym_GT,
- ACTIONS(7713), 1,
- sym_jsx_identifier,
- STATE(5253), 1,
- sym_nested_identifier,
- STATE(5802), 1,
- sym_jsx_namespace_name,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- [143603] = 2,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(2583), 5,
- sym__automatic_semicolon,
- anon_sym_COMMA,
- anon_sym_RBRACE,
- anon_sym_SEMI,
- anon_sym_PIPE_RBRACE,
- [143615] = 2,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(2583), 5,
- sym__automatic_semicolon,
- anon_sym_COMMA,
- anon_sym_RBRACE,
- anon_sym_SEMI,
- anon_sym_PIPE_RBRACE,
- [143627] = 2,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(7344), 5,
- sym__automatic_semicolon,
- anon_sym_COMMA,
- anon_sym_RBRACE,
- anon_sym_SEMI,
- anon_sym_PIPE_RBRACE,
- [143639] = 6,
- ACTIONS(7202), 1,
- anon_sym_EQ,
- ACTIONS(7715), 1,
- anon_sym_COMMA,
- ACTIONS(7717), 1,
- anon_sym_RBRACE,
- STATE(4895), 1,
- aux_sym_enum_body_repeat1,
- STATE(5219), 1,
- sym__initializer,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- [143659] = 4,
- ACTIONS(6403), 1,
- anon_sym_EQ,
- STATE(4788), 1,
- sym__initializer,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(7688), 3,
- sym__automatic_semicolon,
- anon_sym_COMMA,
- anon_sym_SEMI,
- [143675] = 6,
- ACTIONS(2581), 1,
- anon_sym_LT,
- ACTIONS(3205), 1,
- anon_sym_LPAREN,
- STATE(3229), 1,
- sym_formal_parameters,
- STATE(4027), 1,
- sym__call_signature,
- STATE(5404), 1,
- sym_type_parameters,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- [143695] = 6,
- ACTIONS(3743), 1,
- anon_sym_COLON,
- ACTIONS(4243), 1,
- anon_sym_EQ,
- ACTIONS(5113), 1,
- anon_sym_COMMA,
- ACTIONS(7719), 1,
- anon_sym_RBRACE,
- STATE(4672), 1,
- aux_sym_object_pattern_repeat1,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- [143715] = 4,
- ACTIONS(6403), 1,
- anon_sym_EQ,
- STATE(4795), 1,
- sym__initializer,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(7688), 3,
- sym__automatic_semicolon,
- anon_sym_COMMA,
- anon_sym_SEMI,
- [143731] = 4,
- ACTIONS(6403), 1,
- anon_sym_EQ,
- STATE(4796), 1,
- sym__initializer,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(7690), 3,
- sym__automatic_semicolon,
- anon_sym_COMMA,
- anon_sym_SEMI,
- [143747] = 2,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(2587), 5,
- sym__automatic_semicolon,
- anon_sym_COMMA,
- anon_sym_RBRACE,
- anon_sym_SEMI,
- anon_sym_PIPE_RBRACE,
- [143759] = 2,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(2591), 5,
- sym__automatic_semicolon,
- anon_sym_COMMA,
- anon_sym_RBRACE,
- anon_sym_SEMI,
- anon_sym_PIPE_RBRACE,
- [143771] = 2,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(2595), 5,
- sym__automatic_semicolon,
- anon_sym_COMMA,
- anon_sym_RBRACE,
- anon_sym_SEMI,
- anon_sym_PIPE_RBRACE,
- [143783] = 2,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(2599), 5,
- sym__automatic_semicolon,
- anon_sym_COMMA,
- anon_sym_RBRACE,
- anon_sym_SEMI,
- anon_sym_PIPE_RBRACE,
- [143795] = 5,
- ACTIONS(7721), 1,
- anon_sym_BQUOTE,
- ACTIONS(7723), 1,
- anon_sym_DOLLAR_LBRACE,
- ACTIONS(7725), 1,
- sym__template_chars,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- STATE(4017), 2,
- sym_template_type,
- aux_sym_template_literal_type_repeat1,
- [143813] = 6,
- ACTIONS(4029), 1,
- anon_sym_LBRACE,
- ACTIONS(7727), 1,
- anon_sym_SEMI,
- ACTIONS(7729), 1,
- sym__automatic_semicolon,
- ACTIONS(7731), 1,
- sym__function_signature_automatic_semicolon,
- STATE(2385), 1,
- sym_statement_block,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- [143833] = 4,
- ACTIONS(6403), 1,
- anon_sym_EQ,
- STATE(4800), 1,
- sym__initializer,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(7690), 3,
- sym__automatic_semicolon,
- anon_sym_COMMA,
- anon_sym_SEMI,
- [143849] = 4,
- ACTIONS(6403), 1,
- anon_sym_EQ,
- STATE(4801), 1,
- sym__initializer,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(7690), 3,
- sym__automatic_semicolon,
- anon_sym_COMMA,
- anon_sym_SEMI,
- [143865] = 4,
- ACTIONS(6403), 1,
- anon_sym_EQ,
- STATE(4802), 1,
- sym__initializer,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(7690), 3,
- sym__automatic_semicolon,
- anon_sym_COMMA,
- anon_sym_SEMI,
- [143881] = 6,
- ACTIONS(1040), 1,
- anon_sym_LBRACE_PIPE,
- ACTIONS(1586), 1,
- anon_sym_LBRACE,
- ACTIONS(7238), 1,
- anon_sym_extends,
- STATE(3988), 1,
- sym_object_type,
- STATE(4818), 1,
- sym_extends_type_clause,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- [143901] = 3,
- ACTIONS(7563), 1,
- sym_identifier,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(7733), 4,
- anon_sym_LBRACE,
- anon_sym_GT,
- sym_jsx_identifier,
- anon_sym_SLASH_GT,
- [143915] = 5,
- ACTIONS(1506), 1,
- anon_sym_DQUOTE,
- ACTIONS(1508), 1,
- anon_sym_SQUOTE,
- ACTIONS(7735), 1,
- sym_identifier,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- STATE(5419), 2,
- sym__module_export_name,
- sym_string,
- [143933] = 2,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(7346), 5,
- sym__automatic_semicolon,
- anon_sym_COMMA,
- anon_sym_RBRACE,
- anon_sym_SEMI,
- anon_sym_PIPE_RBRACE,
- [143945] = 2,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(2623), 5,
- sym__automatic_semicolon,
- anon_sym_COMMA,
- anon_sym_RBRACE,
- anon_sym_SEMI,
- anon_sym_PIPE_RBRACE,
- [143957] = 2,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(7737), 5,
- sym__automatic_semicolon,
- anon_sym_COMMA,
- anon_sym_RBRACE,
- anon_sym_SEMI,
- anon_sym_PIPE_RBRACE,
- [143969] = 4,
- ACTIONS(7396), 1,
- anon_sym_COLON,
- ACTIONS(7739), 1,
- anon_sym_EQ_GT,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- STATE(5232), 3,
- sym_type_annotation,
- sym_asserts_annotation,
- sym_type_predicate_annotation,
- [143985] = 2,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(2627), 5,
- sym__automatic_semicolon,
- anon_sym_COMMA,
- anon_sym_RBRACE,
- anon_sym_SEMI,
- anon_sym_PIPE_RBRACE,
- [143997] = 2,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(2627), 5,
- sym__automatic_semicolon,
- anon_sym_COMMA,
- anon_sym_RBRACE,
- anon_sym_SEMI,
- anon_sym_PIPE_RBRACE,
- [144009] = 2,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(2635), 5,
- sym__automatic_semicolon,
- anon_sym_COMMA,
- anon_sym_RBRACE,
- anon_sym_SEMI,
- anon_sym_PIPE_RBRACE,
- [144021] = 2,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(1801), 5,
- sym__automatic_semicolon,
- anon_sym_COMMA,
- anon_sym_RBRACE,
- anon_sym_SEMI,
- anon_sym_PIPE_RBRACE,
- [144033] = 2,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(1835), 5,
- sym__automatic_semicolon,
- anon_sym_COMMA,
- anon_sym_RBRACE,
- anon_sym_SEMI,
- anon_sym_PIPE_RBRACE,
- [144045] = 2,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(1825), 5,
- sym__automatic_semicolon,
- anon_sym_COMMA,
- anon_sym_RBRACE,
- anon_sym_SEMI,
- anon_sym_PIPE_RBRACE,
- [144057] = 2,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(2647), 5,
- sym__automatic_semicolon,
- anon_sym_COMMA,
- anon_sym_RBRACE,
- anon_sym_SEMI,
- anon_sym_PIPE_RBRACE,
- [144069] = 6,
- ACTIONS(7190), 1,
- anon_sym_LBRACE,
- ACTIONS(7742), 1,
- anon_sym_SEMI,
- ACTIONS(7744), 1,
- sym__automatic_semicolon,
- ACTIONS(7746), 1,
- sym__function_signature_automatic_semicolon,
- STATE(4031), 1,
- sym_statement_block,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- [144089] = 4,
- ACTIONS(6403), 1,
- anon_sym_EQ,
- STATE(4810), 1,
- sym__initializer,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(7688), 3,
- sym__automatic_semicolon,
- anon_sym_COMMA,
- anon_sym_SEMI,
- [144105] = 5,
- ACTIONS(6691), 1,
- anon_sym_AMP,
- ACTIONS(6695), 1,
- anon_sym_extends,
- ACTIONS(7750), 1,
- anon_sym_PIPE,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(7748), 2,
- sym__automatic_semicolon,
- anon_sym_SEMI,
- [144123] = 6,
- ACTIONS(2581), 1,
- anon_sym_LT,
- ACTIONS(6409), 1,
- anon_sym_LPAREN,
- STATE(3320), 1,
- sym_formal_parameters,
- STATE(4090), 1,
- sym__call_signature,
- STATE(5342), 1,
- sym_type_parameters,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- [144143] = 6,
- ACTIONS(2581), 1,
- anon_sym_LT,
- ACTIONS(6419), 1,
- anon_sym_LPAREN,
- STATE(3742), 1,
- sym_formal_parameters,
- STATE(5349), 1,
- sym_type_parameters,
- STATE(5430), 1,
- sym__call_signature,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- [144163] = 6,
- ACTIONS(7190), 1,
- anon_sym_LBRACE,
- ACTIONS(7727), 1,
- anon_sym_SEMI,
- ACTIONS(7729), 1,
- sym__automatic_semicolon,
- ACTIONS(7731), 1,
- sym__function_signature_automatic_semicolon,
- STATE(746), 1,
- sym_statement_block,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- [144183] = 2,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(2667), 5,
- sym__automatic_semicolon,
- anon_sym_COMMA,
- anon_sym_RBRACE,
- anon_sym_SEMI,
- anon_sym_PIPE_RBRACE,
- [144195] = 4,
- ACTIONS(6403), 1,
- anon_sym_EQ,
- STATE(4811), 1,
- sym__initializer,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(7690), 3,
- sym__automatic_semicolon,
- anon_sym_COMMA,
- anon_sym_SEMI,
- [144211] = 5,
- ACTIONS(7723), 1,
- anon_sym_DOLLAR_LBRACE,
- ACTIONS(7752), 1,
- anon_sym_BQUOTE,
- ACTIONS(7754), 1,
- sym__template_chars,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- STATE(4233), 2,
- sym_template_type,
- aux_sym_template_literal_type_repeat1,
- [144229] = 4,
- ACTIONS(6403), 1,
- anon_sym_EQ,
- STATE(4814), 1,
- sym__initializer,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(7690), 3,
- sym__automatic_semicolon,
- anon_sym_COMMA,
- anon_sym_SEMI,
- [144245] = 4,
- ACTIONS(6403), 1,
- anon_sym_EQ,
- STATE(5161), 1,
- sym__initializer,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(7694), 3,
- sym__automatic_semicolon,
- anon_sym_COMMA,
- anon_sym_SEMI,
- [144261] = 6,
- ACTIONS(4029), 1,
- anon_sym_LBRACE,
- ACTIONS(7756), 1,
- anon_sym_SEMI,
- ACTIONS(7758), 1,
- sym__automatic_semicolon,
- ACTIONS(7760), 1,
- sym__function_signature_automatic_semicolon,
- STATE(2196), 1,
- sym_statement_block,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- [144281] = 4,
- ACTIONS(6403), 1,
- anon_sym_EQ,
- STATE(4815), 1,
- sym__initializer,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(7690), 3,
- sym__automatic_semicolon,
- anon_sym_COMMA,
- anon_sym_SEMI,
- [144297] = 4,
- ACTIONS(6403), 1,
- anon_sym_EQ,
- STATE(4817), 1,
- sym__initializer,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(7690), 3,
- sym__automatic_semicolon,
- anon_sym_COMMA,
- anon_sym_SEMI,
- [144313] = 6,
- ACTIONS(7202), 1,
- anon_sym_EQ,
- ACTIONS(7762), 1,
- anon_sym_COMMA,
- ACTIONS(7764), 1,
- anon_sym_RBRACE,
- STATE(4893), 1,
- aux_sym_enum_body_repeat1,
- STATE(5219), 1,
- sym__initializer,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- [144333] = 4,
- ACTIONS(7396), 1,
- anon_sym_COLON,
- ACTIONS(7766), 1,
- anon_sym_EQ_GT,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- STATE(5232), 3,
- sym_type_annotation,
- sym_asserts_annotation,
- sym_type_predicate_annotation,
- [144349] = 4,
- ACTIONS(7396), 1,
- anon_sym_COLON,
- ACTIONS(7769), 1,
- anon_sym_EQ_GT,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- STATE(5405), 3,
- sym_type_annotation,
- sym_asserts_annotation,
- sym_type_predicate_annotation,
- [144365] = 2,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(7346), 5,
- sym__automatic_semicolon,
- anon_sym_COMMA,
- anon_sym_RBRACE,
- anon_sym_SEMI,
- anon_sym_PIPE_RBRACE,
- [144377] = 2,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(7258), 5,
- sym__automatic_semicolon,
- anon_sym_COMMA,
- anon_sym_RBRACE,
- anon_sym_SEMI,
- anon_sym_PIPE_RBRACE,
- [144389] = 6,
- ACTIONS(2581), 1,
- anon_sym_LT,
- ACTIONS(3205), 1,
- anon_sym_LPAREN,
- STATE(3229), 1,
- sym_formal_parameters,
- STATE(4211), 1,
- sym__call_signature,
- STATE(5404), 1,
- sym_type_parameters,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- [144409] = 2,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(7224), 5,
- sym__automatic_semicolon,
- anon_sym_COMMA,
- anon_sym_RBRACE,
- anon_sym_SEMI,
- anon_sym_PIPE_RBRACE,
- [144421] = 6,
- ACTIONS(7190), 1,
- anon_sym_LBRACE,
- ACTIONS(7772), 1,
- anon_sym_SEMI,
- ACTIONS(7774), 1,
- sym__automatic_semicolon,
- ACTIONS(7776), 1,
- sym__function_signature_automatic_semicolon,
- STATE(4050), 1,
- sym_statement_block,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- [144441] = 3,
- ACTIONS(5640), 1,
- sym__automatic_semicolon,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(1769), 4,
- anon_sym_COMMA,
- anon_sym_RBRACE,
- anon_sym_SEMI,
- anon_sym_PIPE_RBRACE,
- [144455] = 2,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(7778), 5,
- sym__automatic_semicolon,
- anon_sym_COMMA,
- anon_sym_RBRACE,
- anon_sym_SEMI,
- anon_sym_PIPE_RBRACE,
- [144467] = 5,
- ACTIONS(6691), 1,
- anon_sym_AMP,
- ACTIONS(6695), 1,
- anon_sym_extends,
- ACTIONS(7750), 1,
- anon_sym_PIPE,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(7780), 2,
- sym__automatic_semicolon,
- anon_sym_SEMI,
- [144485] = 2,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(7258), 5,
- sym__automatic_semicolon,
- anon_sym_COMMA,
- anon_sym_RBRACE,
- anon_sym_SEMI,
- anon_sym_PIPE_RBRACE,
- [144497] = 2,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(7782), 5,
- sym__automatic_semicolon,
- anon_sym_COMMA,
- anon_sym_RBRACE,
- anon_sym_SEMI,
- anon_sym_PIPE_RBRACE,
- [144509] = 6,
- ACTIONS(2581), 1,
- anon_sym_LT,
- ACTIONS(3205), 1,
- anon_sym_LPAREN,
- STATE(3229), 1,
- sym_formal_parameters,
- STATE(3678), 1,
- sym__call_signature,
- STATE(5404), 1,
- sym_type_parameters,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- [144529] = 2,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(7344), 5,
- sym__automatic_semicolon,
- anon_sym_COMMA,
- anon_sym_RBRACE,
- anon_sym_SEMI,
- anon_sym_PIPE_RBRACE,
- [144541] = 2,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(7784), 5,
- sym__automatic_semicolon,
- anon_sym_COMMA,
- anon_sym_RBRACE,
- anon_sym_SEMI,
- anon_sym_PIPE_RBRACE,
- [144553] = 4,
- ACTIONS(3477), 1,
- anon_sym_COLON,
- STATE(5509), 1,
- sym_type_annotation,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(3514), 3,
- anon_sym_EQ,
- anon_sym_COMMA,
- anon_sym_RBRACK,
- [144569] = 2,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(7224), 5,
- sym__automatic_semicolon,
- anon_sym_COMMA,
- anon_sym_RBRACE,
- anon_sym_SEMI,
- anon_sym_PIPE_RBRACE,
- [144581] = 2,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(7786), 5,
- sym__automatic_semicolon,
- anon_sym_COMMA,
- anon_sym_RBRACE,
- anon_sym_SEMI,
- anon_sym_PIPE_RBRACE,
- [144593] = 2,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(7788), 5,
- sym__automatic_semicolon,
- anon_sym_COMMA,
- anon_sym_RBRACE,
- anon_sym_SEMI,
- anon_sym_PIPE_RBRACE,
- [144605] = 4,
- ACTIONS(6403), 1,
- anon_sym_EQ,
- STATE(5074), 1,
- sym__initializer,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(7692), 3,
- sym__automatic_semicolon,
- anon_sym_COMMA,
- anon_sym_SEMI,
- [144621] = 2,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(7790), 5,
- sym__automatic_semicolon,
- anon_sym_COMMA,
- anon_sym_RBRACE,
- anon_sym_SEMI,
- anon_sym_PIPE_RBRACE,
- [144633] = 4,
- ACTIONS(6403), 1,
- anon_sym_EQ,
- STATE(5075), 1,
- sym__initializer,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(7694), 3,
- sym__automatic_semicolon,
- anon_sym_COMMA,
- anon_sym_SEMI,
- [144649] = 4,
- ACTIONS(7396), 1,
- anon_sym_COLON,
- ACTIONS(7792), 1,
- anon_sym_EQ_GT,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- STATE(5405), 3,
- sym_type_annotation,
- sym_asserts_annotation,
- sym_type_predicate_annotation,
- [144665] = 5,
- ACTIONS(6691), 1,
- anon_sym_AMP,
- ACTIONS(6695), 1,
- anon_sym_extends,
- ACTIONS(7750), 1,
- anon_sym_PIPE,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(7795), 2,
- sym__automatic_semicolon,
- anon_sym_SEMI,
- [144683] = 2,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(6285), 5,
- anon_sym_LPAREN,
- anon_sym_DOT,
- anon_sym_QMARK_DOT,
- anon_sym_LT,
- anon_sym_BQUOTE,
- [144695] = 2,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(2695), 5,
- sym__automatic_semicolon,
- anon_sym_COMMA,
- anon_sym_RBRACE,
- anon_sym_SEMI,
- anon_sym_PIPE_RBRACE,
- [144707] = 3,
- ACTIONS(5668), 1,
- sym__automatic_semicolon,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(1755), 4,
- anon_sym_COMMA,
- anon_sym_RBRACE,
- anon_sym_SEMI,
- anon_sym_PIPE_RBRACE,
- [144721] = 3,
- ACTIONS(5670), 1,
- sym__automatic_semicolon,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(1845), 4,
- anon_sym_COMMA,
- anon_sym_RBRACE,
- anon_sym_SEMI,
- anon_sym_PIPE_RBRACE,
- [144735] = 2,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(2695), 5,
- sym__automatic_semicolon,
- anon_sym_COMMA,
- anon_sym_RBRACE,
- anon_sym_SEMI,
- anon_sym_PIPE_RBRACE,
- [144747] = 6,
- ACTIONS(2581), 1,
- anon_sym_LT,
- ACTIONS(3205), 1,
- anon_sym_LPAREN,
- STATE(3229), 1,
- sym_formal_parameters,
- STATE(3541), 1,
- sym__call_signature,
- STATE(5404), 1,
- sym_type_parameters,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- [144767] = 2,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(2695), 5,
- sym__automatic_semicolon,
- anon_sym_COMMA,
- anon_sym_RBRACE,
- anon_sym_SEMI,
- anon_sym_PIPE_RBRACE,
- [144779] = 2,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(2699), 5,
- sym__automatic_semicolon,
- anon_sym_COMMA,
- anon_sym_RBRACE,
- anon_sym_SEMI,
- anon_sym_PIPE_RBRACE,
- [144791] = 4,
- ACTIONS(7396), 1,
- anon_sym_COLON,
- ACTIONS(7797), 1,
- anon_sym_EQ_GT,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- STATE(5405), 3,
- sym_type_annotation,
- sym_asserts_annotation,
- sym_type_predicate_annotation,
- [144807] = 4,
- ACTIONS(6403), 1,
- anon_sym_EQ,
- STATE(5077), 1,
- sym__initializer,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(7694), 3,
- sym__automatic_semicolon,
- anon_sym_COMMA,
- anon_sym_SEMI,
- [144823] = 5,
- ACTIONS(6691), 1,
- anon_sym_AMP,
- ACTIONS(6695), 1,
- anon_sym_extends,
- ACTIONS(7750), 1,
- anon_sym_PIPE,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(7800), 2,
- sym__automatic_semicolon,
- anon_sym_SEMI,
- [144841] = 2,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(2703), 5,
- sym__automatic_semicolon,
- anon_sym_COMMA,
- anon_sym_RBRACE,
- anon_sym_SEMI,
- anon_sym_PIPE_RBRACE,
- [144853] = 3,
- ACTIONS(5672), 1,
- sym__automatic_semicolon,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(1885), 4,
- anon_sym_COMMA,
- anon_sym_RBRACE,
- anon_sym_SEMI,
- anon_sym_PIPE_RBRACE,
- [144867] = 6,
- ACTIONS(2581), 1,
- anon_sym_LT,
- ACTIONS(3205), 1,
- anon_sym_LPAREN,
- STATE(3229), 1,
- sym_formal_parameters,
- STATE(3593), 1,
- sym__call_signature,
- STATE(5404), 1,
- sym_type_parameters,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- [144887] = 2,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(2707), 5,
- sym__automatic_semicolon,
- anon_sym_COMMA,
- anon_sym_RBRACE,
- anon_sym_SEMI,
- anon_sym_PIPE_RBRACE,
- [144899] = 2,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(2711), 5,
- sym__automatic_semicolon,
- anon_sym_COMMA,
- anon_sym_RBRACE,
- anon_sym_SEMI,
- anon_sym_PIPE_RBRACE,
- [144911] = 6,
- ACTIONS(2581), 1,
- anon_sym_LT,
- ACTIONS(3205), 1,
- anon_sym_LPAREN,
- STATE(3229), 1,
- sym_formal_parameters,
- STATE(3495), 1,
- sym__call_signature,
- STATE(5404), 1,
- sym_type_parameters,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- [144931] = 2,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(2715), 5,
- sym__automatic_semicolon,
- anon_sym_COMMA,
- anon_sym_RBRACE,
- anon_sym_SEMI,
- anon_sym_PIPE_RBRACE,
- [144943] = 2,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(2719), 5,
- sym__automatic_semicolon,
- anon_sym_COMMA,
- anon_sym_RBRACE,
- anon_sym_SEMI,
- anon_sym_PIPE_RBRACE,
- [144955] = 6,
- ACTIONS(2581), 1,
- anon_sym_LT,
- ACTIONS(3205), 1,
- anon_sym_LPAREN,
- STATE(3229), 1,
- sym_formal_parameters,
- STATE(3524), 1,
- sym__call_signature,
- STATE(5404), 1,
- sym_type_parameters,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- [144975] = 6,
- ACTIONS(2581), 1,
- anon_sym_LT,
- ACTIONS(3205), 1,
- anon_sym_LPAREN,
- STATE(3229), 1,
- sym_formal_parameters,
- STATE(3543), 1,
- sym__call_signature,
- STATE(5404), 1,
- sym_type_parameters,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- [144995] = 6,
- ACTIONS(2581), 1,
- anon_sym_LT,
- ACTIONS(6419), 1,
- anon_sym_LPAREN,
- STATE(3742), 1,
- sym_formal_parameters,
- STATE(5349), 1,
- sym_type_parameters,
- STATE(5475), 1,
- sym__call_signature,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- [145015] = 4,
- ACTIONS(6403), 1,
- anon_sym_EQ,
- STATE(5083), 1,
- sym__initializer,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(7692), 3,
- sym__automatic_semicolon,
- anon_sym_COMMA,
- anon_sym_SEMI,
- [145031] = 2,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(2727), 5,
- sym__automatic_semicolon,
- anon_sym_COMMA,
- anon_sym_RBRACE,
- anon_sym_SEMI,
- anon_sym_PIPE_RBRACE,
- [145043] = 2,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(2727), 5,
- sym__automatic_semicolon,
- anon_sym_COMMA,
- anon_sym_RBRACE,
- anon_sym_SEMI,
- anon_sym_PIPE_RBRACE,
- [145055] = 2,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(2739), 5,
- sym__automatic_semicolon,
- anon_sym_COMMA,
- anon_sym_RBRACE,
- anon_sym_SEMI,
- anon_sym_PIPE_RBRACE,
- [145067] = 2,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(1811), 5,
- sym__automatic_semicolon,
- anon_sym_COMMA,
- anon_sym_RBRACE,
- anon_sym_SEMI,
- anon_sym_PIPE_RBRACE,
- [145079] = 2,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(1859), 5,
- sym__automatic_semicolon,
- anon_sym_COMMA,
- anon_sym_RBRACE,
- anon_sym_SEMI,
- anon_sym_PIPE_RBRACE,
- [145091] = 2,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(1734), 5,
- sym__automatic_semicolon,
- anon_sym_COMMA,
- anon_sym_RBRACE,
- anon_sym_SEMI,
- anon_sym_PIPE_RBRACE,
- [145103] = 2,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(2755), 5,
- sym__automatic_semicolon,
- anon_sym_COMMA,
- anon_sym_RBRACE,
- anon_sym_SEMI,
- anon_sym_PIPE_RBRACE,
- [145115] = 6,
- ACTIONS(2581), 1,
- anon_sym_LT,
- ACTIONS(6419), 1,
- anon_sym_LPAREN,
- STATE(3742), 1,
- sym_formal_parameters,
- STATE(5349), 1,
- sym_type_parameters,
- STATE(5488), 1,
- sym__call_signature,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- [145135] = 6,
- ACTIONS(2581), 1,
- anon_sym_LT,
- ACTIONS(6409), 1,
- anon_sym_LPAREN,
- STATE(3320), 1,
- sym_formal_parameters,
- STATE(3752), 1,
- sym__call_signature,
- STATE(5342), 1,
- sym_type_parameters,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- [145155] = 4,
- ACTIONS(6403), 1,
- anon_sym_EQ,
- STATE(4981), 1,
- sym__initializer,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(7802), 3,
- sym__automatic_semicolon,
- anon_sym_COMMA,
- anon_sym_SEMI,
- [145171] = 2,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(7804), 5,
- sym__automatic_semicolon,
- anon_sym_COMMA,
- anon_sym_RBRACE,
- anon_sym_SEMI,
- anon_sym_PIPE_RBRACE,
- [145183] = 2,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(7806), 5,
- sym__automatic_semicolon,
- anon_sym_COMMA,
- anon_sym_RBRACE,
- anon_sym_SEMI,
- anon_sym_PIPE_RBRACE,
- [145195] = 4,
- ACTIONS(6403), 1,
- anon_sym_EQ,
- STATE(4836), 1,
- sym__initializer,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(7808), 3,
- sym__automatic_semicolon,
- anon_sym_COMMA,
- anon_sym_SEMI,
- [145211] = 4,
- ACTIONS(6403), 1,
- anon_sym_EQ,
- STATE(4840), 1,
- sym__initializer,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(7810), 3,
- sym__automatic_semicolon,
- anon_sym_COMMA,
- anon_sym_SEMI,
- [145227] = 5,
- ACTIONS(7812), 1,
- sym_identifier,
- ACTIONS(7814), 1,
- anon_sym_LPAREN,
- STATE(2601), 1,
- sym_decorator_member_expression,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- STATE(2704), 2,
- sym_decorator_call_expression,
- sym_decorator_parenthesized_expression,
- [145245] = 5,
- ACTIONS(1506), 1,
- anon_sym_DQUOTE,
- ACTIONS(1508), 1,
- anon_sym_SQUOTE,
- ACTIONS(7816), 1,
- sym_identifier,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- STATE(5260), 2,
- sym__module_export_name,
- sym_string,
- [145263] = 4,
- ACTIONS(6403), 1,
- anon_sym_EQ,
- STATE(4842), 1,
- sym__initializer,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(7818), 3,
- sym__automatic_semicolon,
- anon_sym_COMMA,
- anon_sym_SEMI,
- [145279] = 3,
- ACTIONS(7820), 1,
- anon_sym_EQ,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(3549), 4,
- anon_sym_COMMA,
- anon_sym_RBRACE,
- anon_sym_COLON,
- anon_sym_RBRACK,
- [145293] = 6,
- ACTIONS(2581), 1,
- anon_sym_LT,
- ACTIONS(6419), 1,
- anon_sym_LPAREN,
- STATE(3742), 1,
- sym_formal_parameters,
- STATE(5263), 1,
- sym__call_signature,
- STATE(5349), 1,
- sym_type_parameters,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- [145313] = 6,
- ACTIONS(7190), 1,
- anon_sym_LBRACE,
- ACTIONS(7756), 1,
- anon_sym_SEMI,
- ACTIONS(7758), 1,
- sym__automatic_semicolon,
- ACTIONS(7760), 1,
- sym__function_signature_automatic_semicolon,
- STATE(748), 1,
- sym_statement_block,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- [145333] = 4,
- ACTIONS(6403), 1,
- anon_sym_EQ,
- STATE(4843), 1,
- sym__initializer,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(7818), 3,
- sym__automatic_semicolon,
- anon_sym_COMMA,
- anon_sym_SEMI,
- [145349] = 4,
- ACTIONS(6403), 1,
- anon_sym_EQ,
- STATE(5090), 1,
- sym__initializer,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(7692), 3,
- sym__automatic_semicolon,
- anon_sym_COMMA,
- anon_sym_SEMI,
- [145365] = 6,
- ACTIONS(7822), 1,
- sym_identifier,
- ACTIONS(7824), 1,
- anon_sym_GT,
- ACTIONS(7826), 1,
- sym_jsx_identifier,
- STATE(5516), 1,
- sym_nested_identifier,
- STATE(5890), 1,
- sym_jsx_namespace_name,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- [145385] = 5,
- ACTIONS(6691), 1,
- anon_sym_AMP,
- ACTIONS(6695), 1,
- anon_sym_extends,
- ACTIONS(7750), 1,
- anon_sym_PIPE,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(7828), 2,
- sym__automatic_semicolon,
- anon_sym_SEMI,
- [145403] = 2,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(2779), 5,
- sym__automatic_semicolon,
- anon_sym_COMMA,
- anon_sym_RBRACE,
- anon_sym_SEMI,
- anon_sym_PIPE_RBRACE,
- [145415] = 2,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(2783), 5,
- sym__automatic_semicolon,
- anon_sym_COMMA,
- anon_sym_RBRACE,
- anon_sym_SEMI,
- anon_sym_PIPE_RBRACE,
- [145427] = 2,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(2787), 5,
- sym__automatic_semicolon,
- anon_sym_COMMA,
- anon_sym_RBRACE,
- anon_sym_SEMI,
- anon_sym_PIPE_RBRACE,
- [145439] = 2,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(2791), 5,
- sym__automatic_semicolon,
- anon_sym_COMMA,
- anon_sym_RBRACE,
- anon_sym_SEMI,
- anon_sym_PIPE_RBRACE,
- [145451] = 5,
- ACTIONS(7723), 1,
- anon_sym_DOLLAR_LBRACE,
- ACTIONS(7830), 1,
- anon_sym_BQUOTE,
- ACTIONS(7832), 1,
- sym__template_chars,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- STATE(4110), 2,
- sym_template_type,
- aux_sym_template_literal_type_repeat1,
- [145469] = 6,
- ACTIONS(4029), 1,
- anon_sym_LBRACE,
- ACTIONS(7742), 1,
- anon_sym_SEMI,
- ACTIONS(7744), 1,
- sym__automatic_semicolon,
- ACTIONS(7746), 1,
- sym__function_signature_automatic_semicolon,
- STATE(2326), 1,
- sym_statement_block,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- [145489] = 2,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(2795), 5,
- sym__automatic_semicolon,
- anon_sym_COMMA,
- anon_sym_RBRACE,
- anon_sym_SEMI,
- anon_sym_PIPE_RBRACE,
- [145501] = 2,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(2799), 5,
- sym__automatic_semicolon,
- anon_sym_COMMA,
- anon_sym_RBRACE,
- anon_sym_SEMI,
- anon_sym_PIPE_RBRACE,
- [145513] = 2,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(2803), 5,
- sym__automatic_semicolon,
- anon_sym_COMMA,
- anon_sym_RBRACE,
- anon_sym_SEMI,
- anon_sym_PIPE_RBRACE,
- [145525] = 4,
- ACTIONS(6403), 1,
- anon_sym_EQ,
- STATE(4844), 1,
- sym__initializer,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(7818), 3,
- sym__automatic_semicolon,
- anon_sym_COMMA,
- anon_sym_SEMI,
- [145541] = 2,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(2815), 5,
- sym__automatic_semicolon,
- anon_sym_COMMA,
- anon_sym_RBRACE,
- anon_sym_SEMI,
- anon_sym_PIPE_RBRACE,
- [145553] = 2,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(2819), 5,
- sym__automatic_semicolon,
- anon_sym_COMMA,
- anon_sym_RBRACE,
- anon_sym_SEMI,
- anon_sym_PIPE_RBRACE,
- [145565] = 2,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(1895), 5,
- sym__automatic_semicolon,
- anon_sym_COMMA,
- anon_sym_RBRACE,
- anon_sym_SEMI,
- anon_sym_PIPE_RBRACE,
- [145577] = 4,
- ACTIONS(6403), 1,
- anon_sym_EQ,
- STATE(4845), 1,
- sym__initializer,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(7818), 3,
- sym__automatic_semicolon,
- anon_sym_COMMA,
- anon_sym_SEMI,
- [145593] = 6,
- ACTIONS(2581), 1,
- anon_sym_LT,
- ACTIONS(6419), 1,
- anon_sym_LPAREN,
- STATE(3742), 1,
- sym_formal_parameters,
- STATE(5268), 1,
- sym__call_signature,
- STATE(5349), 1,
- sym_type_parameters,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- [145613] = 5,
- ACTIONS(7723), 1,
- anon_sym_DOLLAR_LBRACE,
- ACTIONS(7754), 1,
- sym__template_chars,
- ACTIONS(7834), 1,
- anon_sym_BQUOTE,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- STATE(4233), 2,
- sym_template_type,
- aux_sym_template_literal_type_repeat1,
- [145631] = 6,
- ACTIONS(4029), 1,
- anon_sym_LBRACE,
- ACTIONS(7772), 1,
- anon_sym_SEMI,
- ACTIONS(7774), 1,
- sym__automatic_semicolon,
- ACTIONS(7776), 1,
- sym__function_signature_automatic_semicolon,
- STATE(2336), 1,
- sym_statement_block,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- [145651] = 4,
- ACTIONS(6403), 1,
- anon_sym_EQ,
- STATE(4849), 1,
- sym__initializer,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(7836), 3,
- sym__automatic_semicolon,
- anon_sym_COMMA,
- anon_sym_SEMI,
- [145667] = 4,
- ACTIONS(6403), 1,
- anon_sym_EQ,
- STATE(4850), 1,
- sym__initializer,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(7818), 3,
- sym__automatic_semicolon,
- anon_sym_COMMA,
- anon_sym_SEMI,
- [145683] = 4,
- ACTIONS(6403), 1,
- anon_sym_EQ,
- STATE(4851), 1,
- sym__initializer,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(7818), 3,
- sym__automatic_semicolon,
- anon_sym_COMMA,
- anon_sym_SEMI,
- [145699] = 4,
- ACTIONS(6403), 1,
- anon_sym_EQ,
- STATE(4854), 1,
- sym__initializer,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(7818), 3,
- sym__automatic_semicolon,
- anon_sym_COMMA,
- anon_sym_SEMI,
- [145715] = 4,
- ACTIONS(6403), 1,
- anon_sym_EQ,
- STATE(4856), 1,
- sym__initializer,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(7818), 3,
- sym__automatic_semicolon,
- anon_sym_COMMA,
- anon_sym_SEMI,
- [145731] = 6,
- ACTIONS(2581), 1,
- anon_sym_LT,
- ACTIONS(6419), 1,
- anon_sym_LPAREN,
- STATE(3742), 1,
- sym_formal_parameters,
- STATE(5271), 1,
- sym__call_signature,
- STATE(5349), 1,
- sym_type_parameters,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- [145751] = 4,
- ACTIONS(6403), 1,
- anon_sym_EQ,
- STATE(4859), 1,
- sym__initializer,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(7818), 3,
- sym__automatic_semicolon,
- anon_sym_COMMA,
- anon_sym_SEMI,
- [145767] = 4,
- ACTIONS(6403), 1,
- anon_sym_EQ,
- STATE(4863), 1,
- sym__initializer,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(7818), 3,
- sym__automatic_semicolon,
- anon_sym_COMMA,
- anon_sym_SEMI,
- [145783] = 2,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(2831), 5,
- sym__automatic_semicolon,
- anon_sym_COMMA,
- anon_sym_RBRACE,
- anon_sym_SEMI,
- anon_sym_PIPE_RBRACE,
- [145795] = 2,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(2835), 5,
- sym__automatic_semicolon,
- anon_sym_COMMA,
- anon_sym_RBRACE,
- anon_sym_SEMI,
- anon_sym_PIPE_RBRACE,
- [145807] = 2,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(2839), 5,
- sym__automatic_semicolon,
- anon_sym_COMMA,
- anon_sym_RBRACE,
- anon_sym_SEMI,
- anon_sym_PIPE_RBRACE,
- [145819] = 2,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(2843), 5,
- sym__automatic_semicolon,
- anon_sym_COMMA,
- anon_sym_RBRACE,
- anon_sym_SEMI,
- anon_sym_PIPE_RBRACE,
- [145831] = 2,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(2851), 5,
- sym__automatic_semicolon,
- anon_sym_COMMA,
- anon_sym_RBRACE,
- anon_sym_SEMI,
- anon_sym_PIPE_RBRACE,
- [145843] = 6,
- ACTIONS(7838), 1,
- sym_identifier,
- ACTIONS(7840), 1,
- anon_sym_GT,
- ACTIONS(7842), 1,
- sym_jsx_identifier,
- STATE(5221), 1,
- sym_nested_identifier,
- STATE(5887), 1,
- sym_jsx_namespace_name,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- [145863] = 5,
- ACTIONS(7723), 1,
- anon_sym_DOLLAR_LBRACE,
- ACTIONS(7844), 1,
- anon_sym_BQUOTE,
- ACTIONS(7846), 1,
- sym__template_chars,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- STATE(4131), 2,
- sym_template_type,
- aux_sym_template_literal_type_repeat1,
- [145881] = 4,
- ACTIONS(6403), 1,
- anon_sym_EQ,
- STATE(4693), 1,
- sym__initializer,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(7692), 3,
- sym__automatic_semicolon,
- anon_sym_COMMA,
- anon_sym_SEMI,
- [145897] = 4,
- ACTIONS(6403), 1,
- anon_sym_EQ,
- STATE(4866), 1,
- sym__initializer,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(7836), 3,
- sym__automatic_semicolon,
- anon_sym_COMMA,
- anon_sym_SEMI,
- [145913] = 4,
- ACTIONS(6403), 1,
- anon_sym_EQ,
- STATE(4867), 1,
- sym__initializer,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(7818), 3,
- sym__automatic_semicolon,
- anon_sym_COMMA,
- anon_sym_SEMI,
- [145929] = 4,
- ACTIONS(6403), 1,
- anon_sym_EQ,
- STATE(4868), 1,
- sym__initializer,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(7818), 3,
- sym__automatic_semicolon,
- anon_sym_COMMA,
- anon_sym_SEMI,
- [145945] = 5,
- ACTIONS(7723), 1,
- anon_sym_DOLLAR_LBRACE,
- ACTIONS(7754), 1,
- sym__template_chars,
- ACTIONS(7848), 1,
- anon_sym_BQUOTE,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- STATE(4233), 2,
- sym_template_type,
- aux_sym_template_literal_type_repeat1,
- [145963] = 3,
- ACTIONS(7850), 1,
- sym_identifier,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(7852), 4,
- anon_sym_LBRACE,
- anon_sym_GT,
- sym_jsx_identifier,
- anon_sym_SLASH_GT,
- [145977] = 4,
- ACTIONS(6403), 1,
- anon_sym_EQ,
- STATE(4874), 1,
- sym__initializer,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(7836), 3,
- sym__automatic_semicolon,
- anon_sym_COMMA,
- anon_sym_SEMI,
- [145993] = 4,
- ACTIONS(6403), 1,
- anon_sym_EQ,
- STATE(4877), 1,
- sym__initializer,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(7836), 3,
- sym__automatic_semicolon,
- anon_sym_COMMA,
- anon_sym_SEMI,
- [146009] = 4,
- ACTIONS(6403), 1,
- anon_sym_EQ,
- STATE(4878), 1,
- sym__initializer,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(7818), 3,
- sym__automatic_semicolon,
- anon_sym_COMMA,
- anon_sym_SEMI,
- [146025] = 4,
- ACTIONS(6403), 1,
- anon_sym_EQ,
- STATE(4879), 1,
- sym__initializer,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(7818), 3,
- sym__automatic_semicolon,
- anon_sym_COMMA,
- anon_sym_SEMI,
- [146041] = 4,
- ACTIONS(6403), 1,
- anon_sym_EQ,
- STATE(4882), 1,
- sym__initializer,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(7836), 3,
- sym__automatic_semicolon,
- anon_sym_COMMA,
- anon_sym_SEMI,
- [146057] = 5,
- ACTIONS(7723), 1,
- anon_sym_DOLLAR_LBRACE,
- ACTIONS(7854), 1,
- anon_sym_BQUOTE,
- ACTIONS(7856), 1,
- sym__template_chars,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- STATE(4143), 2,
- sym_template_type,
- aux_sym_template_literal_type_repeat1,
- [146075] = 4,
- ACTIONS(6403), 1,
- anon_sym_EQ,
- STATE(4883), 1,
- sym__initializer,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(7818), 3,
- sym__automatic_semicolon,
- anon_sym_COMMA,
- anon_sym_SEMI,
- [146091] = 6,
- ACTIONS(2581), 1,
- anon_sym_LT,
- ACTIONS(6419), 1,
- anon_sym_LPAREN,
- STATE(3742), 1,
- sym_formal_parameters,
- STATE(5202), 1,
- sym__call_signature,
- STATE(5349), 1,
- sym_type_parameters,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- [146111] = 4,
- ACTIONS(7860), 1,
- anon_sym_in,
- ACTIONS(7862), 1,
- anon_sym_of,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(7858), 3,
- sym__automatic_semicolon,
- anon_sym_COMMA,
- anon_sym_SEMI,
- [146127] = 4,
- ACTIONS(6403), 1,
- anon_sym_EQ,
- STATE(4884), 1,
- sym__initializer,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(7818), 3,
- sym__automatic_semicolon,
- anon_sym_COMMA,
- anon_sym_SEMI,
- [146143] = 5,
- ACTIONS(7723), 1,
- anon_sym_DOLLAR_LBRACE,
- ACTIONS(7754), 1,
- sym__template_chars,
- ACTIONS(7864), 1,
- anon_sym_BQUOTE,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- STATE(4233), 2,
- sym_template_type,
- aux_sym_template_literal_type_repeat1,
- [146161] = 4,
- ACTIONS(7866), 1,
- anon_sym_in,
- ACTIONS(7868), 1,
- anon_sym_of,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(7858), 3,
- sym__automatic_semicolon,
- anon_sym_COMMA,
- anon_sym_SEMI,
- [146177] = 4,
- ACTIONS(6403), 1,
- anon_sym_EQ,
- STATE(4885), 1,
- sym__initializer,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(7818), 3,
- sym__automatic_semicolon,
- anon_sym_COMMA,
- anon_sym_SEMI,
- [146193] = 4,
- ACTIONS(6403), 1,
- anon_sym_EQ,
- STATE(4886), 1,
- sym__initializer,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(7818), 3,
- sym__automatic_semicolon,
- anon_sym_COMMA,
- anon_sym_SEMI,
- [146209] = 2,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(5518), 5,
- anon_sym_EQ,
- anon_sym_COMMA,
- anon_sym_RPAREN,
- anon_sym_COLON,
- anon_sym_QMARK,
- [146221] = 4,
- ACTIONS(6403), 1,
- anon_sym_EQ,
- STATE(4900), 1,
- sym__initializer,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(7836), 3,
- sym__automatic_semicolon,
- anon_sym_COMMA,
- anon_sym_SEMI,
- [146237] = 4,
- ACTIONS(6403), 1,
- anon_sym_EQ,
- STATE(4901), 1,
- sym__initializer,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(7818), 3,
- sym__automatic_semicolon,
- anon_sym_COMMA,
- anon_sym_SEMI,
- [146253] = 4,
- ACTIONS(6403), 1,
- anon_sym_EQ,
- STATE(4904), 1,
- sym__initializer,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(7818), 3,
- sym__automatic_semicolon,
- anon_sym_COMMA,
- anon_sym_SEMI,
- [146269] = 2,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(5522), 5,
- anon_sym_EQ,
- anon_sym_COMMA,
- anon_sym_RPAREN,
- anon_sym_COLON,
- anon_sym_QMARK,
- [146281] = 4,
- ACTIONS(6403), 1,
- anon_sym_EQ,
- STATE(4905), 1,
- sym__initializer,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(7818), 3,
- sym__automatic_semicolon,
- anon_sym_COMMA,
- anon_sym_SEMI,
- [146297] = 2,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(5522), 5,
- anon_sym_EQ,
- anon_sym_COMMA,
- anon_sym_RPAREN,
- anon_sym_COLON,
- anon_sym_QMARK,
- [146309] = 2,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(5522), 5,
- anon_sym_EQ,
- anon_sym_COMMA,
- anon_sym_RPAREN,
- anon_sym_COLON,
- anon_sym_QMARK,
- [146321] = 6,
- ACTIONS(2581), 1,
- anon_sym_LT,
- ACTIONS(6409), 1,
- anon_sym_LPAREN,
- STATE(3320), 1,
- sym_formal_parameters,
- STATE(3790), 1,
- sym__call_signature,
- STATE(5342), 1,
- sym_type_parameters,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- [146341] = 4,
- ACTIONS(6403), 1,
- anon_sym_EQ,
- STATE(4908), 1,
- sym__initializer,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(7818), 3,
- sym__automatic_semicolon,
- anon_sym_COMMA,
- anon_sym_SEMI,
- [146357] = 4,
- ACTIONS(6403), 1,
- anon_sym_EQ,
- STATE(4909), 1,
- sym__initializer,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(7818), 3,
- sym__automatic_semicolon,
- anon_sym_COMMA,
- anon_sym_SEMI,
- [146373] = 6,
- ACTIONS(2581), 1,
- anon_sym_LT,
- ACTIONS(6419), 1,
- anon_sym_LPAREN,
- STATE(3742), 1,
- sym_formal_parameters,
- STATE(5349), 1,
- sym_type_parameters,
- STATE(5353), 1,
- sym__call_signature,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- [146393] = 6,
- ACTIONS(2581), 1,
- anon_sym_LT,
- ACTIONS(6419), 1,
- anon_sym_LPAREN,
- STATE(3742), 1,
- sym_formal_parameters,
- STATE(5349), 1,
- sym_type_parameters,
- STATE(5354), 1,
- sym__call_signature,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- [146413] = 4,
- ACTIONS(6403), 1,
- anon_sym_EQ,
- STATE(4911), 1,
- sym__initializer,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(7818), 3,
- sym__automatic_semicolon,
- anon_sym_COMMA,
- anon_sym_SEMI,
- [146429] = 4,
- ACTIONS(6403), 1,
- anon_sym_EQ,
- STATE(4786), 1,
- sym__initializer,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(7692), 3,
- sym__automatic_semicolon,
- anon_sym_COMMA,
- anon_sym_SEMI,
- [146445] = 4,
- ACTIONS(6403), 1,
- anon_sym_EQ,
- STATE(4807), 1,
- sym__initializer,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(7694), 3,
- sym__automatic_semicolon,
- anon_sym_COMMA,
- anon_sym_SEMI,
- [146461] = 4,
- ACTIONS(6403), 1,
- anon_sym_EQ,
- STATE(4977), 1,
- sym__initializer,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(7870), 3,
- sym__automatic_semicolon,
- anon_sym_COMMA,
- anon_sym_SEMI,
- [146477] = 5,
- ACTIONS(7874), 1,
- anon_sym_SEMI,
- ACTIONS(7876), 1,
- sym__automatic_semicolon,
- STATE(5412), 1,
- sym_import_attribute,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(7872), 2,
- anon_sym_with,
- anon_sym_assert,
- [146495] = 4,
- ACTIONS(6403), 1,
- anon_sym_EQ,
- STATE(4915), 1,
- sym__initializer,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(7836), 3,
- sym__automatic_semicolon,
- anon_sym_COMMA,
- anon_sym_SEMI,
- [146511] = 4,
- ACTIONS(6403), 1,
- anon_sym_EQ,
- STATE(4916), 1,
- sym__initializer,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(7818), 3,
- sym__automatic_semicolon,
- anon_sym_COMMA,
- anon_sym_SEMI,
- [146527] = 4,
- ACTIONS(6403), 1,
- anon_sym_EQ,
- STATE(4920), 1,
- sym__initializer,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(7818), 3,
- sym__automatic_semicolon,
- anon_sym_COMMA,
- anon_sym_SEMI,
- [146543] = 4,
- ACTIONS(6403), 1,
- anon_sym_EQ,
- STATE(4922), 1,
- sym__initializer,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(7818), 3,
- sym__automatic_semicolon,
- anon_sym_COMMA,
- anon_sym_SEMI,
- [146559] = 4,
- ACTIONS(6403), 1,
- anon_sym_EQ,
- STATE(4924), 1,
- sym__initializer,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(7818), 3,
- sym__automatic_semicolon,
- anon_sym_COMMA,
- anon_sym_SEMI,
- [146575] = 6,
- ACTIONS(2581), 1,
- anon_sym_LT,
- ACTIONS(6409), 1,
- anon_sym_LPAREN,
- STATE(3320), 1,
- sym_formal_parameters,
- STATE(3991), 1,
- sym__call_signature,
- STATE(5342), 1,
- sym_type_parameters,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- [146595] = 4,
- ACTIONS(6403), 1,
- anon_sym_EQ,
- STATE(4992), 1,
- sym__initializer,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(7878), 3,
- sym__automatic_semicolon,
- anon_sym_COMMA,
- anon_sym_SEMI,
- [146611] = 4,
- ACTIONS(6403), 1,
- anon_sym_EQ,
- STATE(4932), 1,
- sym__initializer,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(7836), 3,
- sym__automatic_semicolon,
- anon_sym_COMMA,
- anon_sym_SEMI,
- [146627] = 4,
- ACTIONS(6403), 1,
- anon_sym_EQ,
- STATE(4933), 1,
- sym__initializer,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(7818), 3,
- sym__automatic_semicolon,
- anon_sym_COMMA,
- anon_sym_SEMI,
- [146643] = 6,
- ACTIONS(99), 1,
- anon_sym_AT,
- ACTIONS(7585), 1,
- anon_sym_abstract,
- ACTIONS(7601), 1,
- anon_sym_class,
- STATE(1244), 1,
- sym_decorator,
- STATE(3814), 1,
- aux_sym_export_statement_repeat1,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- [146663] = 6,
- ACTIONS(2581), 1,
- anon_sym_LT,
- ACTIONS(6409), 1,
- anon_sym_LPAREN,
- STATE(3320), 1,
- sym_formal_parameters,
- STATE(4009), 1,
- sym__call_signature,
- STATE(5342), 1,
- sym_type_parameters,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- [146683] = 4,
- ACTIONS(6403), 1,
- anon_sym_EQ,
- STATE(4934), 1,
- sym__initializer,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(7818), 3,
- sym__automatic_semicolon,
- anon_sym_COMMA,
- anon_sym_SEMI,
- [146699] = 6,
- ACTIONS(2581), 1,
- anon_sym_LT,
- ACTIONS(6419), 1,
- anon_sym_LPAREN,
- STATE(3742), 1,
- sym_formal_parameters,
- STATE(5348), 1,
- sym__call_signature,
- STATE(5349), 1,
- sym_type_parameters,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- [146719] = 6,
- ACTIONS(2581), 1,
- anon_sym_LT,
- ACTIONS(6419), 1,
- anon_sym_LPAREN,
- STATE(3742), 1,
- sym_formal_parameters,
- STATE(5344), 1,
- sym__call_signature,
- STATE(5349), 1,
- sym_type_parameters,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- [146739] = 4,
- ACTIONS(6403), 1,
- anon_sym_EQ,
- STATE(4942), 1,
- sym__initializer,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(7836), 3,
- sym__automatic_semicolon,
- anon_sym_COMMA,
- anon_sym_SEMI,
- [146755] = 6,
- ACTIONS(2581), 1,
- anon_sym_LT,
- ACTIONS(6409), 1,
- anon_sym_LPAREN,
- STATE(3320), 1,
- sym_formal_parameters,
- STATE(4020), 1,
- sym__call_signature,
- STATE(5342), 1,
- sym_type_parameters,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- [146775] = 4,
- ACTIONS(6403), 1,
- anon_sym_EQ,
- STATE(4947), 1,
- sym__initializer,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(7836), 3,
- sym__automatic_semicolon,
- anon_sym_COMMA,
- anon_sym_SEMI,
- [146791] = 6,
- ACTIONS(2581), 1,
- anon_sym_LT,
- ACTIONS(6419), 1,
- anon_sym_LPAREN,
- STATE(3742), 1,
- sym_formal_parameters,
- STATE(5349), 1,
- sym_type_parameters,
- STATE(5424), 1,
- sym__call_signature,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- [146811] = 4,
- ACTIONS(6403), 1,
- anon_sym_EQ,
- STATE(4948), 1,
- sym__initializer,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(7818), 3,
- sym__automatic_semicolon,
- anon_sym_COMMA,
- anon_sym_SEMI,
- [146827] = 4,
- ACTIONS(6403), 1,
- anon_sym_EQ,
- STATE(5033), 1,
- sym__initializer,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(7880), 3,
- sym__automatic_semicolon,
- anon_sym_COMMA,
- anon_sym_SEMI,
- [146843] = 4,
- ACTIONS(6403), 1,
- anon_sym_EQ,
- STATE(4949), 1,
- sym__initializer,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(7818), 3,
- sym__automatic_semicolon,
- anon_sym_COMMA,
- anon_sym_SEMI,
- [146859] = 4,
- ACTIONS(6403), 1,
- anon_sym_EQ,
- STATE(4819), 1,
- sym__initializer,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(7694), 3,
- sym__automatic_semicolon,
- anon_sym_COMMA,
- anon_sym_SEMI,
- [146875] = 4,
- ACTIONS(6403), 1,
- anon_sym_EQ,
- STATE(4953), 1,
- sym__initializer,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(7836), 3,
- sym__automatic_semicolon,
- anon_sym_COMMA,
- anon_sym_SEMI,
- [146891] = 4,
- ACTIONS(6403), 1,
- anon_sym_EQ,
- STATE(4955), 1,
- sym__initializer,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(7818), 3,
- sym__automatic_semicolon,
- anon_sym_COMMA,
- anon_sym_SEMI,
- [146907] = 4,
- ACTIONS(6403), 1,
- anon_sym_EQ,
- STATE(4956), 1,
- sym__initializer,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(7818), 3,
- sym__automatic_semicolon,
- anon_sym_COMMA,
- anon_sym_SEMI,
- [146923] = 4,
- ACTIONS(6403), 1,
- anon_sym_EQ,
- STATE(4957), 1,
- sym__initializer,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(7818), 3,
- sym__automatic_semicolon,
- anon_sym_COMMA,
- anon_sym_SEMI,
- [146939] = 4,
- ACTIONS(6403), 1,
- anon_sym_EQ,
- STATE(4958), 1,
- sym__initializer,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(7818), 3,
- sym__automatic_semicolon,
- anon_sym_COMMA,
- anon_sym_SEMI,
- [146955] = 6,
- ACTIONS(2581), 1,
- anon_sym_LT,
- ACTIONS(6409), 1,
- anon_sym_LPAREN,
- STATE(3320), 1,
- sym_formal_parameters,
- STATE(4030), 1,
- sym__call_signature,
- STATE(5342), 1,
- sym_type_parameters,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- [146975] = 6,
- ACTIONS(2581), 1,
- anon_sym_LT,
- ACTIONS(6419), 1,
- anon_sym_LPAREN,
- STATE(3742), 1,
- sym_formal_parameters,
- STATE(5349), 1,
- sym_type_parameters,
- STATE(5520), 1,
- sym__call_signature,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- [146995] = 4,
- ACTIONS(6403), 1,
- anon_sym_EQ,
- STATE(4961), 1,
- sym__initializer,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(7836), 3,
- sym__automatic_semicolon,
- anon_sym_COMMA,
- anon_sym_SEMI,
- [147011] = 6,
- ACTIONS(2581), 1,
- anon_sym_LT,
- ACTIONS(6419), 1,
- anon_sym_LPAREN,
- STATE(3742), 1,
- sym_formal_parameters,
- STATE(5349), 1,
- sym_type_parameters,
- STATE(5525), 1,
- sym__call_signature,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- [147031] = 6,
- ACTIONS(2581), 1,
- anon_sym_LT,
- ACTIONS(6419), 1,
- anon_sym_LPAREN,
- STATE(3742), 1,
- sym_formal_parameters,
- STATE(5349), 1,
- sym_type_parameters,
- STATE(5528), 1,
- sym__call_signature,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- [147051] = 4,
- ACTIONS(6403), 1,
- anon_sym_EQ,
- STATE(4869), 1,
- sym__initializer,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(7882), 3,
- sym__automatic_semicolon,
- anon_sym_COMMA,
- anon_sym_SEMI,
- [147067] = 4,
- ACTIONS(6403), 1,
- anon_sym_EQ,
- STATE(4962), 1,
- sym__initializer,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(7818), 3,
- sym__automatic_semicolon,
- anon_sym_COMMA,
- anon_sym_SEMI,
- [147083] = 4,
- ACTIONS(6403), 1,
- anon_sym_EQ,
- STATE(4966), 1,
- sym__initializer,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(7818), 3,
- sym__automatic_semicolon,
- anon_sym_COMMA,
- anon_sym_SEMI,
- [147099] = 4,
- ACTIONS(6403), 1,
- anon_sym_EQ,
- STATE(4967), 1,
- sym__initializer,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(7818), 3,
- sym__automatic_semicolon,
- anon_sym_COMMA,
- anon_sym_SEMI,
- [147115] = 4,
- ACTIONS(6403), 1,
- anon_sym_EQ,
- STATE(4968), 1,
- sym__initializer,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(7818), 3,
- sym__automatic_semicolon,
- anon_sym_COMMA,
- anon_sym_SEMI,
- [147131] = 6,
- ACTIONS(2581), 1,
- anon_sym_LT,
- ACTIONS(6419), 1,
- anon_sym_LPAREN,
- STATE(3742), 1,
- sym_formal_parameters,
- STATE(5252), 1,
- sym__call_signature,
- STATE(5349), 1,
- sym_type_parameters,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- [147151] = 6,
- ACTIONS(2581), 1,
- anon_sym_LT,
- ACTIONS(6419), 1,
- anon_sym_LPAREN,
- STATE(3742), 1,
- sym_formal_parameters,
- STATE(5212), 1,
- sym__call_signature,
- STATE(5349), 1,
- sym_type_parameters,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- [147171] = 2,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(7326), 5,
- sym__automatic_semicolon,
- anon_sym_COMMA,
- anon_sym_RBRACE,
- anon_sym_SEMI,
- anon_sym_PIPE_RBRACE,
- [147183] = 2,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(7884), 5,
- sym__automatic_semicolon,
- anon_sym_COMMA,
- anon_sym_RBRACE,
- anon_sym_SEMI,
- anon_sym_PIPE_RBRACE,
- [147195] = 6,
- ACTIONS(2581), 1,
- anon_sym_LT,
- ACTIONS(6419), 1,
- anon_sym_LPAREN,
- STATE(3742), 1,
- sym_formal_parameters,
- STATE(5241), 1,
- sym__call_signature,
- STATE(5349), 1,
- sym_type_parameters,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- [147215] = 6,
- ACTIONS(2581), 1,
- anon_sym_LT,
- ACTIONS(6419), 1,
- anon_sym_LPAREN,
- STATE(3742), 1,
- sym_formal_parameters,
- STATE(5246), 1,
- sym__call_signature,
- STATE(5349), 1,
- sym_type_parameters,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- [147235] = 4,
- ACTIONS(6403), 1,
- anon_sym_EQ,
- STATE(4969), 1,
- sym__initializer,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(7818), 3,
- sym__automatic_semicolon,
- anon_sym_COMMA,
- anon_sym_SEMI,
- [147251] = 4,
- ACTIONS(6403), 1,
- anon_sym_EQ,
- STATE(4971), 1,
- sym__initializer,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(7818), 3,
- sym__automatic_semicolon,
- anon_sym_COMMA,
- anon_sym_SEMI,
- [147267] = 6,
- ACTIONS(2581), 1,
- anon_sym_LT,
- ACTIONS(6419), 1,
- anon_sym_LPAREN,
- STATE(3742), 1,
- sym_formal_parameters,
- STATE(5294), 1,
- sym__call_signature,
- STATE(5349), 1,
- sym_type_parameters,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- [147287] = 2,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(7297), 5,
- sym__automatic_semicolon,
- anon_sym_COMMA,
- anon_sym_RBRACE,
- anon_sym_SEMI,
- anon_sym_PIPE_RBRACE,
- [147299] = 6,
- ACTIONS(2581), 1,
- anon_sym_LT,
- ACTIONS(3205), 1,
- anon_sym_LPAREN,
- STATE(3229), 1,
- sym_formal_parameters,
- STATE(4303), 1,
- sym__call_signature,
- STATE(5404), 1,
- sym_type_parameters,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- [147319] = 2,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(7299), 5,
- sym__automatic_semicolon,
- anon_sym_COMMA,
- anon_sym_RBRACE,
- anon_sym_SEMI,
- anon_sym_PIPE_RBRACE,
- [147331] = 2,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(7886), 5,
- sym__automatic_semicolon,
- anon_sym_COMMA,
- anon_sym_RBRACE,
- anon_sym_SEMI,
- anon_sym_PIPE_RBRACE,
- [147343] = 2,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(7297), 5,
- sym__automatic_semicolon,
- anon_sym_COMMA,
- anon_sym_RBRACE,
- anon_sym_SEMI,
- anon_sym_PIPE_RBRACE,
- [147355] = 2,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(7888), 5,
- sym__automatic_semicolon,
- anon_sym_COMMA,
- anon_sym_RBRACE,
- anon_sym_SEMI,
- anon_sym_PIPE_RBRACE,
- [147367] = 2,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(7890), 5,
- sym__automatic_semicolon,
- anon_sym_COMMA,
- anon_sym_RBRACE,
- anon_sym_SEMI,
- anon_sym_PIPE_RBRACE,
- [147379] = 2,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(7299), 5,
- sym__automatic_semicolon,
- anon_sym_COMMA,
- anon_sym_RBRACE,
- anon_sym_SEMI,
- anon_sym_PIPE_RBRACE,
- [147391] = 6,
- ACTIONS(2581), 1,
- anon_sym_LT,
- ACTIONS(6419), 1,
- anon_sym_LPAREN,
- STATE(3742), 1,
- sym_formal_parameters,
- STATE(5317), 1,
- sym__call_signature,
- STATE(5349), 1,
- sym_type_parameters,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- [147411] = 2,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(7892), 5,
- sym__automatic_semicolon,
- anon_sym_COMMA,
- anon_sym_RBRACE,
- anon_sym_SEMI,
- anon_sym_PIPE_RBRACE,
- [147423] = 2,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(7894), 5,
- sym__automatic_semicolon,
- anon_sym_COMMA,
- anon_sym_RBRACE,
- anon_sym_SEMI,
- anon_sym_PIPE_RBRACE,
- [147435] = 6,
- ACTIONS(2581), 1,
- anon_sym_LT,
- ACTIONS(6419), 1,
- anon_sym_LPAREN,
- STATE(3742), 1,
- sym_formal_parameters,
- STATE(5319), 1,
- sym__call_signature,
- STATE(5349), 1,
- sym_type_parameters,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- [147455] = 2,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(7896), 5,
- sym__automatic_semicolon,
- anon_sym_COMMA,
- anon_sym_RBRACE,
- anon_sym_SEMI,
- anon_sym_PIPE_RBRACE,
- [147467] = 6,
- ACTIONS(2581), 1,
- anon_sym_LT,
- ACTIONS(6419), 1,
- anon_sym_LPAREN,
- STATE(3742), 1,
- sym_formal_parameters,
- STATE(5326), 1,
- sym__call_signature,
- STATE(5349), 1,
- sym_type_parameters,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- [147487] = 6,
- ACTIONS(7898), 1,
- sym_identifier,
- ACTIONS(7900), 1,
- anon_sym_GT,
- ACTIONS(7902), 1,
- sym_jsx_identifier,
- STATE(5361), 1,
- sym_nested_identifier,
- STATE(5577), 1,
- sym_jsx_namespace_name,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- [147507] = 2,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(7904), 5,
- sym__automatic_semicolon,
- anon_sym_COMMA,
- anon_sym_RBRACE,
- anon_sym_SEMI,
- anon_sym_PIPE_RBRACE,
- [147519] = 5,
- ACTIONS(6554), 1,
- anon_sym_AMP,
- ACTIONS(6556), 1,
- anon_sym_PIPE,
- ACTIONS(6558), 1,
- anon_sym_extends,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(7906), 2,
- anon_sym_COMMA,
- anon_sym_RBRACK,
- [147537] = 4,
- ACTIONS(6403), 1,
- anon_sym_EQ,
- STATE(4826), 1,
- sym__initializer,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(7694), 3,
- sym__automatic_semicolon,
- anon_sym_COMMA,
- anon_sym_SEMI,
- [147553] = 4,
- ACTIONS(6403), 1,
- anon_sym_EQ,
- STATE(4980), 1,
- sym__initializer,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(7908), 3,
- sym__automatic_semicolon,
- anon_sym_COMMA,
- anon_sym_SEMI,
- [147569] = 4,
- STATE(5301), 1,
- sym_import_attribute,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(7872), 2,
- anon_sym_with,
- anon_sym_assert,
- ACTIONS(7910), 2,
- sym__automatic_semicolon,
- anon_sym_SEMI,
- [147585] = 4,
- STATE(5303), 1,
- sym_import_attribute,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(7872), 2,
- anon_sym_with,
- anon_sym_assert,
- ACTIONS(7912), 2,
- sym__automatic_semicolon,
- anon_sym_SEMI,
- [147601] = 4,
- ACTIONS(6309), 1,
- anon_sym_LBRACK,
- ACTIONS(7914), 1,
- anon_sym_RBRACE,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(4344), 3,
- anon_sym_AMP,
- anon_sym_PIPE,
- anon_sym_extends,
- [147617] = 5,
- ACTIONS(7916), 1,
- anon_sym_BQUOTE,
- ACTIONS(7918), 1,
- anon_sym_DOLLAR_LBRACE,
- ACTIONS(7921), 1,
- sym__template_chars,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- STATE(4233), 2,
- sym_template_type,
- aux_sym_template_literal_type_repeat1,
- [147635] = 6,
- ACTIONS(2581), 1,
- anon_sym_LT,
- ACTIONS(6409), 1,
- anon_sym_LPAREN,
- STATE(3320), 1,
- sym_formal_parameters,
- STATE(3791), 1,
- sym__call_signature,
- STATE(5342), 1,
- sym_type_parameters,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- [147655] = 6,
- ACTIONS(2581), 1,
- anon_sym_LT,
- ACTIONS(6409), 1,
- anon_sym_LPAREN,
- STATE(3320), 1,
- sym_formal_parameters,
- STATE(3885), 1,
- sym__call_signature,
- STATE(5342), 1,
- sym_type_parameters,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- [147675] = 4,
- ACTIONS(6403), 1,
- anon_sym_EQ,
- STATE(4982), 1,
- sym__initializer,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(7924), 3,
- sym__automatic_semicolon,
- anon_sym_COMMA,
- anon_sym_SEMI,
- [147691] = 4,
- ACTIONS(6403), 1,
- anon_sym_EQ,
- STATE(4983), 1,
- sym__initializer,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(7924), 3,
- sym__automatic_semicolon,
- anon_sym_COMMA,
- anon_sym_SEMI,
- [147707] = 3,
- ACTIONS(7926), 1,
- sym_identifier,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(7928), 4,
- anon_sym_LBRACE,
- anon_sym_GT,
- sym_jsx_identifier,
- anon_sym_SLASH_GT,
- [147721] = 3,
- ACTIONS(7930), 1,
- sym_identifier,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(7932), 4,
- anon_sym_LBRACE,
- anon_sym_GT,
- sym_jsx_identifier,
- anon_sym_SLASH_GT,
- [147735] = 4,
- ACTIONS(6403), 1,
- anon_sym_EQ,
- STATE(4984), 1,
- sym__initializer,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(7924), 3,
- sym__automatic_semicolon,
- anon_sym_COMMA,
- anon_sym_SEMI,
- [147751] = 4,
- ACTIONS(6403), 1,
- anon_sym_EQ,
- STATE(4986), 1,
- sym__initializer,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(7924), 3,
- sym__automatic_semicolon,
- anon_sym_COMMA,
- anon_sym_SEMI,
- [147767] = 4,
- ACTIONS(6403), 1,
- anon_sym_EQ,
- STATE(4853), 1,
- sym__initializer,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(7694), 3,
- sym__automatic_semicolon,
- anon_sym_COMMA,
- anon_sym_SEMI,
- [147783] = 4,
- ACTIONS(6403), 1,
- anon_sym_EQ,
- STATE(4996), 1,
- sym__initializer,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(7934), 3,
- sym__automatic_semicolon,
- anon_sym_COMMA,
- anon_sym_SEMI,
- [147799] = 4,
- ACTIONS(6403), 1,
- anon_sym_EQ,
- STATE(4997), 1,
- sym__initializer,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(7924), 3,
- sym__automatic_semicolon,
- anon_sym_COMMA,
- anon_sym_SEMI,
- [147815] = 4,
- ACTIONS(6403), 1,
- anon_sym_EQ,
- STATE(4998), 1,
- sym__initializer,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(7924), 3,
- sym__automatic_semicolon,
- anon_sym_COMMA,
- anon_sym_SEMI,
- [147831] = 4,
- ACTIONS(6403), 1,
- anon_sym_EQ,
- STATE(4999), 1,
- sym__initializer,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(7924), 3,
- sym__automatic_semicolon,
- anon_sym_COMMA,
- anon_sym_SEMI,
- [147847] = 4,
- ACTIONS(6403), 1,
- anon_sym_EQ,
- STATE(5000), 1,
- sym__initializer,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(7924), 3,
- sym__automatic_semicolon,
- anon_sym_COMMA,
- anon_sym_SEMI,
- [147863] = 4,
- ACTIONS(6403), 1,
- anon_sym_EQ,
- STATE(5003), 1,
- sym__initializer,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(7924), 3,
- sym__automatic_semicolon,
- anon_sym_COMMA,
- anon_sym_SEMI,
- [147879] = 4,
- ACTIONS(6403), 1,
- anon_sym_EQ,
- STATE(5004), 1,
- sym__initializer,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(7924), 3,
- sym__automatic_semicolon,
- anon_sym_COMMA,
- anon_sym_SEMI,
- [147895] = 2,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(7936), 5,
- anon_sym_EQ,
- anon_sym_LBRACE,
- anon_sym_LPAREN,
- anon_sym_extends,
- anon_sym_implements,
- [147907] = 5,
- ACTIONS(7938), 1,
- anon_sym_SEMI,
- ACTIONS(7940), 1,
- sym__automatic_semicolon,
- STATE(5380), 1,
- sym_import_attribute,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(7872), 2,
- anon_sym_with,
- anon_sym_assert,
- [147925] = 6,
- ACTIONS(2581), 1,
- anon_sym_LT,
- ACTIONS(6409), 1,
- anon_sym_LPAREN,
- STATE(3320), 1,
- sym_formal_parameters,
- STATE(4100), 1,
- sym__call_signature,
- STATE(5342), 1,
- sym_type_parameters,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- [147945] = 4,
- ACTIONS(6403), 1,
- anon_sym_EQ,
- STATE(5005), 1,
- sym__initializer,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(7924), 3,
- sym__automatic_semicolon,
- anon_sym_COMMA,
- anon_sym_SEMI,
- [147961] = 4,
- ACTIONS(6403), 1,
- anon_sym_EQ,
- STATE(5006), 1,
- sym__initializer,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(7924), 3,
- sym__automatic_semicolon,
- anon_sym_COMMA,
- anon_sym_SEMI,
- [147977] = 6,
- ACTIONS(3743), 1,
- anon_sym_COLON,
- ACTIONS(4243), 1,
- anon_sym_EQ,
- ACTIONS(5113), 1,
- anon_sym_COMMA,
- ACTIONS(7942), 1,
- anon_sym_RBRACE,
- STATE(5157), 1,
- aux_sym_object_pattern_repeat1,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- [147997] = 6,
- ACTIONS(99), 1,
- anon_sym_AT,
- ACTIONS(7944), 1,
- anon_sym_class,
- ACTIONS(7946), 1,
- anon_sym_abstract,
- STATE(1244), 1,
- sym_decorator,
- STATE(3814), 1,
- aux_sym_export_statement_repeat1,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- [148017] = 4,
- STATE(5218), 1,
- sym_import_attribute,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(7872), 2,
- anon_sym_with,
- anon_sym_assert,
- ACTIONS(7948), 2,
- sym__automatic_semicolon,
- anon_sym_SEMI,
- [148033] = 6,
- ACTIONS(2581), 1,
- anon_sym_LT,
- ACTIONS(6409), 1,
- anon_sym_LPAREN,
- STATE(3320), 1,
- sym_formal_parameters,
- STATE(4111), 1,
- sym__call_signature,
- STATE(5342), 1,
- sym_type_parameters,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- [148053] = 3,
- ACTIONS(4753), 1,
- sym_identifier,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(4755), 4,
- anon_sym_LBRACE,
- anon_sym_GT,
- sym_jsx_identifier,
- anon_sym_SLASH_GT,
- [148067] = 3,
- ACTIONS(4640), 1,
- sym_identifier,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(4642), 4,
- anon_sym_LBRACE,
- anon_sym_GT,
- sym_jsx_identifier,
- anon_sym_SLASH_GT,
- [148081] = 6,
- ACTIONS(2581), 1,
- anon_sym_LT,
- ACTIONS(6419), 1,
- anon_sym_LPAREN,
- STATE(3742), 1,
- sym_formal_parameters,
- STATE(5349), 1,
- sym_type_parameters,
- STATE(5365), 1,
- sym__call_signature,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- [148101] = 2,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(5193), 5,
- anon_sym_EQ,
- anon_sym_COMMA,
- anon_sym_RPAREN,
- anon_sym_COLON,
- anon_sym_QMARK,
- [148113] = 6,
- ACTIONS(2581), 1,
- anon_sym_LT,
- ACTIONS(6419), 1,
- anon_sym_LPAREN,
- STATE(3742), 1,
- sym_formal_parameters,
- STATE(5349), 1,
- sym_type_parameters,
- STATE(5466), 1,
- sym__call_signature,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- [148133] = 4,
- ACTIONS(6403), 1,
- anon_sym_EQ,
- STATE(5008), 1,
- sym__initializer,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(7924), 3,
- sym__automatic_semicolon,
- anon_sym_COMMA,
- anon_sym_SEMI,
- [148149] = 4,
- ACTIONS(6403), 1,
- anon_sym_EQ,
- STATE(5009), 1,
- sym__initializer,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(7924), 3,
- sym__automatic_semicolon,
- anon_sym_COMMA,
- anon_sym_SEMI,
- [148165] = 4,
- ACTIONS(7396), 1,
- anon_sym_COLON,
- ACTIONS(7950), 1,
- anon_sym_EQ_GT,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- STATE(5405), 3,
- sym_type_annotation,
- sym_asserts_annotation,
- sym_type_predicate_annotation,
- [148181] = 4,
- ACTIONS(6403), 1,
- anon_sym_EQ,
- STATE(4798), 1,
- sym__initializer,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(7953), 3,
- sym__automatic_semicolon,
- anon_sym_COMMA,
- anon_sym_SEMI,
- [148197] = 2,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(5580), 5,
- anon_sym_EQ,
- anon_sym_COMMA,
- anon_sym_RPAREN,
- anon_sym_COLON,
- anon_sym_QMARK,
- [148209] = 4,
- ACTIONS(6403), 1,
- anon_sym_EQ,
- STATE(5011), 1,
- sym__initializer,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(7924), 3,
- sym__automatic_semicolon,
- anon_sym_COMMA,
- anon_sym_SEMI,
- [148225] = 6,
- ACTIONS(99), 1,
- anon_sym_AT,
- ACTIONS(7585), 1,
- anon_sym_abstract,
- ACTIONS(7955), 1,
- anon_sym_class,
- STATE(1244), 1,
- sym_decorator,
- STATE(3814), 1,
- aux_sym_export_statement_repeat1,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- [148245] = 6,
- ACTIONS(2581), 1,
- anon_sym_LT,
- ACTIONS(6419), 1,
- anon_sym_LPAREN,
- STATE(3742), 1,
- sym_formal_parameters,
- STATE(5349), 1,
- sym_type_parameters,
- STATE(5505), 1,
- sym__call_signature,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- [148265] = 4,
- ACTIONS(6403), 1,
- anon_sym_EQ,
- STATE(5012), 1,
- sym__initializer,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(7924), 3,
- sym__automatic_semicolon,
- anon_sym_COMMA,
- anon_sym_SEMI,
- [148281] = 2,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(5332), 5,
- anon_sym_EQ,
- anon_sym_COMMA,
- anon_sym_RPAREN,
- anon_sym_COLON,
- anon_sym_QMARK,
- [148293] = 2,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(5332), 5,
- anon_sym_EQ,
- anon_sym_COMMA,
- anon_sym_RPAREN,
- anon_sym_COLON,
- anon_sym_QMARK,
- [148305] = 3,
- ACTIONS(4888), 1,
- sym_identifier,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(4890), 4,
- anon_sym_LBRACE,
- anon_sym_GT,
- sym_jsx_identifier,
- anon_sym_SLASH_GT,
- [148319] = 3,
- ACTIONS(4902), 1,
- sym_identifier,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(4904), 4,
- anon_sym_LBRACE,
- anon_sym_GT,
- sym_jsx_identifier,
- anon_sym_SLASH_GT,
- [148333] = 4,
- ACTIONS(6403), 1,
- anon_sym_EQ,
- STATE(5047), 1,
- sym__initializer,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(7957), 3,
- sym__automatic_semicolon,
- anon_sym_COMMA,
- anon_sym_SEMI,
- [148349] = 4,
- ACTIONS(6403), 1,
- anon_sym_EQ,
- STATE(5016), 1,
- sym__initializer,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(7934), 3,
- sym__automatic_semicolon,
- anon_sym_COMMA,
- anon_sym_SEMI,
- [148365] = 3,
- ACTIONS(4709), 1,
- sym_identifier,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(4711), 4,
- anon_sym_LBRACE,
- anon_sym_GT,
- sym_jsx_identifier,
- anon_sym_SLASH_GT,
- [148379] = 3,
- ACTIONS(4713), 1,
- sym_identifier,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(4715), 4,
- anon_sym_LBRACE,
- anon_sym_GT,
- sym_jsx_identifier,
- anon_sym_SLASH_GT,
- [148393] = 4,
- ACTIONS(6403), 1,
- anon_sym_EQ,
- STATE(5017), 1,
- sym__initializer,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(7924), 3,
- sym__automatic_semicolon,
- anon_sym_COMMA,
- anon_sym_SEMI,
- [148409] = 4,
- ACTIONS(6403), 1,
- anon_sym_EQ,
- STATE(5021), 1,
- sym__initializer,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(7924), 3,
- sym__automatic_semicolon,
- anon_sym_COMMA,
- anon_sym_SEMI,
- [148425] = 5,
- ACTIONS(1506), 1,
- anon_sym_DQUOTE,
- ACTIONS(1508), 1,
- anon_sym_SQUOTE,
- ACTIONS(7959), 1,
- sym_identifier,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- STATE(5545), 2,
- sym__module_export_name,
- sym_string,
- [148443] = 2,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(5332), 5,
- anon_sym_EQ,
- anon_sym_COMMA,
- anon_sym_RPAREN,
- anon_sym_COLON,
- anon_sym_QMARK,
- [148455] = 4,
- STATE(5222), 1,
- sym_import_attribute,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(7872), 2,
- anon_sym_with,
- anon_sym_assert,
- ACTIONS(7961), 2,
- sym__automatic_semicolon,
- anon_sym_SEMI,
- [148471] = 4,
- ACTIONS(6403), 1,
- anon_sym_EQ,
- STATE(5023), 1,
- sym__initializer,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(7924), 3,
- sym__automatic_semicolon,
- anon_sym_COMMA,
- anon_sym_SEMI,
- [148487] = 4,
- ACTIONS(6403), 1,
- anon_sym_EQ,
- STATE(5026), 1,
- sym__initializer,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(7924), 3,
- sym__automatic_semicolon,
- anon_sym_COMMA,
- anon_sym_SEMI,
- [148503] = 4,
- ACTIONS(6403), 1,
- anon_sym_EQ,
- STATE(5027), 1,
- sym__initializer,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(7924), 3,
- sym__automatic_semicolon,
- anon_sym_COMMA,
- anon_sym_SEMI,
- [148519] = 4,
- ACTIONS(6403), 1,
- anon_sym_EQ,
- STATE(5034), 1,
- sym__initializer,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(7924), 3,
- sym__automatic_semicolon,
- anon_sym_COMMA,
- anon_sym_SEMI,
- [148535] = 4,
- ACTIONS(6403), 1,
- anon_sym_EQ,
- STATE(5035), 1,
- sym__initializer,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(7924), 3,
- sym__automatic_semicolon,
- anon_sym_COMMA,
- anon_sym_SEMI,
- [148551] = 4,
- ACTIONS(6403), 1,
- anon_sym_EQ,
- STATE(5036), 1,
- sym__initializer,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(7924), 3,
- sym__automatic_semicolon,
- anon_sym_COMMA,
- anon_sym_SEMI,
- [148567] = 3,
- ACTIONS(4800), 1,
- sym_identifier,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(4802), 4,
- anon_sym_LBRACE,
- anon_sym_GT,
- sym_jsx_identifier,
- anon_sym_SLASH_GT,
- [148581] = 3,
- ACTIONS(4804), 1,
- sym_identifier,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(4806), 4,
- anon_sym_LBRACE,
- anon_sym_GT,
- sym_jsx_identifier,
- anon_sym_SLASH_GT,
- [148595] = 3,
- ACTIONS(4800), 1,
- sym_identifier,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(4802), 4,
- anon_sym_LBRACE,
- anon_sym_GT,
- sym_jsx_identifier,
- anon_sym_SLASH_GT,
- [148609] = 3,
- ACTIONS(4815), 1,
- sym_identifier,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(4817), 4,
- anon_sym_LBRACE,
- anon_sym_GT,
- sym_jsx_identifier,
- anon_sym_SLASH_GT,
- [148623] = 2,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(5598), 5,
- anon_sym_EQ,
- anon_sym_COMMA,
- anon_sym_RPAREN,
- anon_sym_COLON,
- anon_sym_QMARK,
- [148635] = 3,
- ACTIONS(4819), 1,
- sym_identifier,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(4821), 4,
- anon_sym_LBRACE,
- anon_sym_GT,
- sym_jsx_identifier,
- anon_sym_SLASH_GT,
- [148649] = 6,
- ACTIONS(7472), 1,
- anon_sym_AMP,
- ACTIONS(7478), 1,
- anon_sym_PIPE,
- ACTIONS(7480), 1,
- anon_sym_extends,
- ACTIONS(7963), 1,
- anon_sym_as,
- ACTIONS(7965), 1,
- anon_sym_RBRACK,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- [148669] = 3,
- ACTIONS(4800), 1,
- sym_identifier,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(4802), 4,
- anon_sym_LBRACE,
- anon_sym_GT,
- sym_jsx_identifier,
- anon_sym_SLASH_GT,
- [148683] = 2,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(5267), 5,
- anon_sym_EQ,
- anon_sym_COMMA,
- anon_sym_RPAREN,
- anon_sym_COLON,
- anon_sym_QMARK,
- [148695] = 2,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(7967), 5,
- sym__automatic_semicolon,
- anon_sym_COMMA,
- anon_sym_RBRACE,
- anon_sym_SEMI,
- anon_sym_PIPE_RBRACE,
- [148707] = 6,
- ACTIONS(2581), 1,
- anon_sym_LT,
- ACTIONS(6409), 1,
- anon_sym_LPAREN,
- STATE(3320), 1,
- sym_formal_parameters,
- STATE(3893), 1,
- sym__call_signature,
- STATE(5342), 1,
- sym_type_parameters,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- [148727] = 2,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(7208), 5,
- sym__automatic_semicolon,
- anon_sym_COMMA,
- anon_sym_RBRACE,
- anon_sym_SEMI,
- anon_sym_PIPE_RBRACE,
- [148739] = 6,
- ACTIONS(2581), 1,
- anon_sym_LT,
- ACTIONS(3205), 1,
- anon_sym_LPAREN,
- STATE(3229), 1,
- sym_formal_parameters,
- STATE(4330), 1,
- sym__call_signature,
- STATE(5404), 1,
- sym_type_parameters,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- [148759] = 4,
- ACTIONS(6403), 1,
- anon_sym_EQ,
- STATE(5119), 1,
- sym__initializer,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(7969), 3,
- sym__automatic_semicolon,
- anon_sym_COMMA,
- anon_sym_SEMI,
- [148775] = 4,
- ACTIONS(6403), 1,
- anon_sym_EQ,
- STATE(5121), 1,
- sym__initializer,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(7971), 3,
- sym__automatic_semicolon,
- anon_sym_COMMA,
- anon_sym_SEMI,
- [148791] = 2,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(7212), 5,
- sym__automatic_semicolon,
- anon_sym_COMMA,
- anon_sym_RBRACE,
- anon_sym_SEMI,
- anon_sym_PIPE_RBRACE,
- [148803] = 3,
- ACTIONS(4910), 1,
- sym_identifier,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(4912), 4,
- anon_sym_LBRACE,
- anon_sym_GT,
- sym_jsx_identifier,
- anon_sym_SLASH_GT,
- [148817] = 3,
- ACTIONS(4918), 1,
- sym_identifier,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(4920), 4,
- anon_sym_LBRACE,
- anon_sym_GT,
- sym_jsx_identifier,
- anon_sym_SLASH_GT,
- [148831] = 2,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(7208), 5,
- sym__automatic_semicolon,
- anon_sym_COMMA,
- anon_sym_RBRACE,
- anon_sym_SEMI,
- anon_sym_PIPE_RBRACE,
- [148843] = 2,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(7973), 5,
- sym__automatic_semicolon,
- anon_sym_COMMA,
- anon_sym_RBRACE,
- anon_sym_SEMI,
- anon_sym_PIPE_RBRACE,
- [148855] = 4,
- ACTIONS(6403), 1,
- anon_sym_EQ,
- STATE(5038), 1,
- sym__initializer,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(7975), 3,
- sym__automatic_semicolon,
- anon_sym_COMMA,
- anon_sym_SEMI,
- [148871] = 6,
- ACTIONS(2581), 1,
- anon_sym_LT,
- ACTIONS(3205), 1,
- anon_sym_LPAREN,
- STATE(3229), 1,
- sym_formal_parameters,
- STATE(5135), 1,
- sym__call_signature,
- STATE(5404), 1,
- sym_type_parameters,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- [148891] = 4,
- ACTIONS(6403), 1,
- anon_sym_EQ,
- STATE(4740), 1,
- sym__initializer,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(7977), 3,
- sym__automatic_semicolon,
- anon_sym_COMMA,
- anon_sym_SEMI,
- [148907] = 4,
- ACTIONS(6403), 1,
- anon_sym_EQ,
- STATE(5040), 1,
- sym__initializer,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(7975), 3,
- sym__automatic_semicolon,
- anon_sym_COMMA,
- anon_sym_SEMI,
- [148923] = 4,
- ACTIONS(6403), 1,
- anon_sym_EQ,
- STATE(4978), 1,
- sym__initializer,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(7979), 3,
- sym__automatic_semicolon,
- anon_sym_COMMA,
- anon_sym_SEMI,
- [148939] = 6,
- ACTIONS(99), 1,
- anon_sym_AT,
- ACTIONS(7583), 1,
- anon_sym_class,
- ACTIONS(7585), 1,
- anon_sym_abstract,
- STATE(1244), 1,
- sym_decorator,
- STATE(3814), 1,
- aux_sym_export_statement_repeat1,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- [148959] = 4,
- ACTIONS(6403), 1,
- anon_sym_EQ,
- STATE(5115), 1,
- sym__initializer,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(7979), 3,
- sym__automatic_semicolon,
- anon_sym_COMMA,
- anon_sym_SEMI,
- [148975] = 3,
- ACTIONS(4650), 1,
- sym_identifier,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(4652), 4,
- anon_sym_LBRACE,
- anon_sym_GT,
- sym_jsx_identifier,
- anon_sym_SLASH_GT,
- [148989] = 3,
- ACTIONS(4654), 1,
- sym_identifier,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(4656), 4,
- anon_sym_LBRACE,
- anon_sym_GT,
- sym_jsx_identifier,
- anon_sym_SLASH_GT,
- [149003] = 4,
- ACTIONS(6403), 1,
- anon_sym_EQ,
- STATE(5041), 1,
- sym__initializer,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(7975), 3,
- sym__automatic_semicolon,
- anon_sym_COMMA,
- anon_sym_SEMI,
- [149019] = 4,
- ACTIONS(6403), 1,
- anon_sym_EQ,
- STATE(5042), 1,
- sym__initializer,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(7975), 3,
- sym__automatic_semicolon,
- anon_sym_COMMA,
- anon_sym_SEMI,
- [149035] = 4,
- ACTIONS(6403), 1,
- anon_sym_EQ,
- STATE(4806), 1,
- sym__initializer,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(7979), 3,
- sym__automatic_semicolon,
- anon_sym_COMMA,
- anon_sym_SEMI,
- [149051] = 5,
- ACTIONS(2275), 1,
- anon_sym_DQUOTE,
- ACTIONS(2277), 1,
- anon_sym_SQUOTE,
- ACTIONS(7981), 1,
- sym_identifier,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- STATE(4658), 2,
- sym__module_export_name,
- sym_string,
- [149069] = 4,
- ACTIONS(6403), 1,
- anon_sym_EQ,
- STATE(4780), 1,
- sym__initializer,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(7979), 3,
- sym__automatic_semicolon,
- anon_sym_COMMA,
- anon_sym_SEMI,
- [149085] = 4,
- ACTIONS(6403), 1,
- anon_sym_EQ,
- STATE(4910), 1,
- sym__initializer,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(7979), 3,
- sym__automatic_semicolon,
- anon_sym_COMMA,
- anon_sym_SEMI,
- [149101] = 4,
- ACTIONS(6403), 1,
- anon_sym_EQ,
- STATE(4935), 1,
- sym__initializer,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(7983), 3,
- sym__automatic_semicolon,
- anon_sym_COMMA,
- anon_sym_SEMI,
- [149117] = 4,
- ACTIONS(6403), 1,
- anon_sym_EQ,
- STATE(4976), 1,
- sym__initializer,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(7983), 3,
- sym__automatic_semicolon,
- anon_sym_COMMA,
- anon_sym_SEMI,
- [149133] = 2,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(7985), 5,
- sym__automatic_semicolon,
- anon_sym_COMMA,
- anon_sym_RBRACE,
- anon_sym_SEMI,
- anon_sym_PIPE_RBRACE,
- [149145] = 2,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(7226), 5,
- sym__automatic_semicolon,
- anon_sym_COMMA,
- anon_sym_RBRACE,
- anon_sym_SEMI,
- anon_sym_PIPE_RBRACE,
- [149157] = 6,
- ACTIONS(2581), 1,
- anon_sym_LT,
- ACTIONS(3205), 1,
- anon_sym_LPAREN,
- STATE(3229), 1,
- sym_formal_parameters,
- STATE(4334), 1,
- sym__call_signature,
- STATE(5404), 1,
- sym_type_parameters,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- [149177] = 2,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(7256), 5,
- sym__automatic_semicolon,
- anon_sym_COMMA,
- anon_sym_RBRACE,
- anon_sym_SEMI,
- anon_sym_PIPE_RBRACE,
- [149189] = 6,
- ACTIONS(99), 1,
- anon_sym_AT,
- ACTIONS(7946), 1,
- anon_sym_abstract,
- ACTIONS(7987), 1,
- anon_sym_class,
- STATE(1244), 1,
- sym_decorator,
- STATE(3814), 1,
- aux_sym_export_statement_repeat1,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- [149209] = 2,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(7262), 5,
- sym__automatic_semicolon,
- anon_sym_COMMA,
- anon_sym_RBRACE,
- anon_sym_SEMI,
- anon_sym_PIPE_RBRACE,
- [149221] = 4,
- ACTIONS(6403), 1,
- anon_sym_EQ,
- STATE(5095), 1,
- sym__initializer,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(7692), 3,
- sym__automatic_semicolon,
- anon_sym_COMMA,
- anon_sym_SEMI,
- [149237] = 2,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(1783), 5,
- sym__automatic_semicolon,
- anon_sym_COMMA,
- anon_sym_RBRACE,
- anon_sym_SEMI,
- anon_sym_PIPE_RBRACE,
- [149249] = 6,
- ACTIONS(2581), 1,
- anon_sym_LT,
- ACTIONS(6409), 1,
- anon_sym_LPAREN,
- STATE(3320), 1,
- sym_formal_parameters,
- STATE(4014), 1,
- sym__call_signature,
- STATE(5342), 1,
- sym_type_parameters,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- [149269] = 4,
- ACTIONS(6403), 1,
- anon_sym_EQ,
- STATE(5056), 1,
- sym__initializer,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(7989), 3,
- sym__automatic_semicolon,
- anon_sym_COMMA,
- anon_sym_SEMI,
- [149285] = 4,
- ACTIONS(6403), 1,
- anon_sym_EQ,
- STATE(4608), 1,
- sym__initializer,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(7979), 3,
- sym__automatic_semicolon,
- anon_sym_COMMA,
- anon_sym_SEMI,
- [149301] = 4,
- ACTIONS(6403), 1,
- anon_sym_EQ,
- STATE(4599), 1,
- sym__initializer,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(7692), 3,
- sym__automatic_semicolon,
- anon_sym_COMMA,
- anon_sym_SEMI,
- [149317] = 4,
- ACTIONS(6403), 1,
- anon_sym_EQ,
- STATE(5063), 1,
- sym__initializer,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(7979), 3,
- sym__automatic_semicolon,
- anon_sym_COMMA,
- anon_sym_SEMI,
- [149333] = 2,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(2871), 5,
- sym__automatic_semicolon,
- anon_sym_COMMA,
- anon_sym_RBRACE,
- anon_sym_SEMI,
- anon_sym_PIPE_RBRACE,
- [149345] = 2,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(1783), 5,
- sym__automatic_semicolon,
- anon_sym_COMMA,
- anon_sym_RBRACE,
- anon_sym_SEMI,
- anon_sym_PIPE_RBRACE,
- [149357] = 4,
- ACTIONS(7396), 1,
- anon_sym_COLON,
- ACTIONS(7991), 1,
- anon_sym_EQ_GT,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- STATE(5232), 3,
- sym_type_annotation,
- sym_asserts_annotation,
- sym_type_predicate_annotation,
- [149373] = 4,
- ACTIONS(6403), 1,
- anon_sym_EQ,
- STATE(5096), 1,
- sym__initializer,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(7694), 3,
- sym__automatic_semicolon,
- anon_sym_COMMA,
- anon_sym_SEMI,
- [149389] = 2,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(1925), 5,
- sym__automatic_semicolon,
- anon_sym_COMMA,
- anon_sym_RBRACE,
- anon_sym_SEMI,
- anon_sym_PIPE_RBRACE,
- [149401] = 5,
- ACTIONS(7723), 1,
- anon_sym_DOLLAR_LBRACE,
- ACTIONS(7754), 1,
- sym__template_chars,
- ACTIONS(7994), 1,
- anon_sym_BQUOTE,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- STATE(4233), 2,
- sym_template_type,
- aux_sym_template_literal_type_repeat1,
- [149419] = 6,
- ACTIONS(2581), 1,
- anon_sym_LT,
- ACTIONS(6419), 1,
- anon_sym_LPAREN,
- STATE(3742), 1,
- sym_formal_parameters,
- STATE(5349), 1,
- sym_type_parameters,
- STATE(5443), 1,
- sym__call_signature,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- [149439] = 2,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(1779), 5,
- sym__automatic_semicolon,
- anon_sym_COMMA,
- anon_sym_RBRACE,
- anon_sym_SEMI,
- anon_sym_PIPE_RBRACE,
- [149451] = 6,
- ACTIONS(2581), 1,
- anon_sym_LT,
- ACTIONS(3205), 1,
- anon_sym_LPAREN,
- STATE(3229), 1,
- sym_formal_parameters,
- STATE(5065), 1,
- sym__call_signature,
- STATE(5404), 1,
- sym_type_parameters,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- [149471] = 4,
- ACTIONS(7396), 1,
- anon_sym_COLON,
- ACTIONS(7996), 1,
- anon_sym_EQ_GT,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- STATE(5232), 3,
- sym_type_annotation,
- sym_asserts_annotation,
- sym_type_predicate_annotation,
- [149487] = 4,
- ACTIONS(7396), 1,
- anon_sym_COLON,
- ACTIONS(7999), 1,
- anon_sym_EQ_GT,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- STATE(5405), 3,
- sym_type_annotation,
- sym_asserts_annotation,
- sym_type_predicate_annotation,
- [149503] = 6,
- ACTIONS(2581), 1,
- anon_sym_LT,
- ACTIONS(6419), 1,
- anon_sym_LPAREN,
- STATE(3742), 1,
- sym_formal_parameters,
- STATE(5349), 1,
- sym_type_parameters,
- STATE(5462), 1,
- sym__call_signature,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- [149523] = 6,
- ACTIONS(2581), 1,
- anon_sym_LT,
- ACTIONS(3205), 1,
- anon_sym_LPAREN,
- STATE(3229), 1,
- sym_formal_parameters,
- STATE(3979), 1,
- sym__call_signature,
- STATE(5404), 1,
- sym_type_parameters,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- [149543] = 4,
- ACTIONS(7396), 1,
- anon_sym_COLON,
- ACTIONS(8002), 1,
- anon_sym_EQ_GT,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- STATE(5405), 3,
- sym_type_annotation,
- sym_asserts_annotation,
- sym_type_predicate_annotation,
- [149559] = 4,
- ACTIONS(6403), 1,
- anon_sym_EQ,
- STATE(5066), 1,
- sym__initializer,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(7690), 3,
- sym__automatic_semicolon,
- anon_sym_COMMA,
- anon_sym_SEMI,
- [149575] = 2,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(7268), 5,
- sym__automatic_semicolon,
- anon_sym_COMMA,
- anon_sym_RBRACE,
- anon_sym_SEMI,
- anon_sym_PIPE_RBRACE,
- [149587] = 2,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(8005), 5,
- sym__automatic_semicolon,
- anon_sym_COMMA,
- anon_sym_RBRACE,
- anon_sym_SEMI,
- anon_sym_PIPE_RBRACE,
- [149599] = 4,
- ACTIONS(6403), 1,
- anon_sym_EQ,
- STATE(5068), 1,
- sym__initializer,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(7690), 3,
- sym__automatic_semicolon,
- anon_sym_COMMA,
- anon_sym_SEMI,
- [149615] = 2,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(7268), 5,
- sym__automatic_semicolon,
- anon_sym_COMMA,
- anon_sym_RBRACE,
- anon_sym_SEMI,
- anon_sym_PIPE_RBRACE,
- [149627] = 2,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(8007), 5,
- sym__automatic_semicolon,
- anon_sym_COMMA,
- anon_sym_RBRACE,
- anon_sym_SEMI,
- anon_sym_PIPE_RBRACE,
- [149639] = 4,
- ACTIONS(6403), 1,
- anon_sym_EQ,
- STATE(5099), 1,
- sym__initializer,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(7694), 3,
- sym__automatic_semicolon,
- anon_sym_COMMA,
- anon_sym_SEMI,
- [149655] = 2,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(7458), 5,
- sym__automatic_semicolon,
- anon_sym_COMMA,
- anon_sym_RBRACE,
- anon_sym_SEMI,
- anon_sym_PIPE_RBRACE,
- [149667] = 2,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(7280), 5,
- sym__automatic_semicolon,
- anon_sym_COMMA,
- anon_sym_RBRACE,
- anon_sym_SEMI,
- anon_sym_PIPE_RBRACE,
- [149679] = 2,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(8009), 5,
- sym__automatic_semicolon,
- anon_sym_COMMA,
- anon_sym_RBRACE,
- anon_sym_SEMI,
- anon_sym_PIPE_RBRACE,
- [149691] = 5,
- ACTIONS(7723), 1,
- anon_sym_DOLLAR_LBRACE,
- ACTIONS(8011), 1,
- anon_sym_BQUOTE,
- ACTIONS(8013), 1,
- sym__template_chars,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- STATE(4347), 2,
- sym_template_type,
- aux_sym_template_literal_type_repeat1,
- [149709] = 4,
- ACTIONS(6403), 1,
- anon_sym_EQ,
- STATE(5103), 1,
- sym__initializer,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(7688), 3,
- sym__automatic_semicolon,
- anon_sym_COMMA,
- anon_sym_SEMI,
- [149725] = 4,
- ACTIONS(6403), 1,
- anon_sym_EQ,
- STATE(5105), 1,
- sym__initializer,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(7690), 3,
- sym__automatic_semicolon,
- anon_sym_COMMA,
- anon_sym_SEMI,
- [149741] = 2,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(2723), 5,
- sym__automatic_semicolon,
- anon_sym_COMMA,
- anon_sym_RBRACE,
- anon_sym_SEMI,
- anon_sym_PIPE_RBRACE,
- [149753] = 2,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(2743), 5,
- sym__automatic_semicolon,
- anon_sym_COMMA,
- anon_sym_RBRACE,
- anon_sym_SEMI,
- anon_sym_PIPE_RBRACE,
- [149765] = 4,
- ACTIONS(6403), 1,
- anon_sym_EQ,
- STATE(5108), 1,
- sym__initializer,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(7690), 3,
- sym__automatic_semicolon,
- anon_sym_COMMA,
- anon_sym_SEMI,
- [149781] = 2,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(8015), 5,
- sym__automatic_semicolon,
- anon_sym_COMMA,
- anon_sym_RBRACE,
- anon_sym_SEMI,
- anon_sym_PIPE_RBRACE,
- [149793] = 4,
- ACTIONS(6403), 1,
- anon_sym_EQ,
- STATE(5109), 1,
- sym__initializer,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(7690), 3,
- sym__automatic_semicolon,
- anon_sym_COMMA,
- anon_sym_SEMI,
- [149809] = 4,
- ACTIONS(6403), 1,
- anon_sym_EQ,
- STATE(5112), 1,
- sym__initializer,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(7690), 3,
- sym__automatic_semicolon,
- anon_sym_COMMA,
- anon_sym_SEMI,
- [149825] = 6,
- ACTIONS(2581), 1,
- anon_sym_LT,
- ACTIONS(6409), 1,
- anon_sym_LPAREN,
- STATE(3320), 1,
- sym_formal_parameters,
- STATE(4408), 1,
- sym__call_signature,
- STATE(5342), 1,
- sym_type_parameters,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- [149845] = 6,
- ACTIONS(2581), 1,
- anon_sym_LT,
- ACTIONS(6409), 1,
- anon_sym_LPAREN,
- STATE(3320), 1,
- sym_formal_parameters,
- STATE(4378), 1,
- sym__call_signature,
- STATE(5342), 1,
- sym_type_parameters,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- [149865] = 6,
- ACTIONS(2581), 1,
- anon_sym_LT,
- ACTIONS(6419), 1,
- anon_sym_LPAREN,
- STATE(3742), 1,
- sym_formal_parameters,
- STATE(5217), 1,
- sym__call_signature,
- STATE(5349), 1,
- sym_type_parameters,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- [149885] = 6,
- ACTIONS(1716), 1,
- anon_sym_LBRACE,
- ACTIONS(7727), 1,
- anon_sym_SEMI,
- ACTIONS(7729), 1,
- sym__automatic_semicolon,
- ACTIONS(7731), 1,
- sym__function_signature_automatic_semicolon,
- STATE(221), 1,
- sym_statement_block,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- [149905] = 2,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(7374), 5,
- sym__automatic_semicolon,
- sym__function_signature_automatic_semicolon,
- anon_sym_LBRACE,
- anon_sym_COMMA,
- anon_sym_SEMI,
- [149917] = 4,
- ACTIONS(6403), 1,
- anon_sym_EQ,
- STATE(4793), 1,
- sym__initializer,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(7692), 3,
- sym__automatic_semicolon,
- anon_sym_COMMA,
- anon_sym_SEMI,
- [149933] = 2,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(2535), 5,
- sym__automatic_semicolon,
- anon_sym_COMMA,
- anon_sym_RBRACE,
- anon_sym_SEMI,
- anon_sym_PIPE_RBRACE,
- [149945] = 4,
- ACTIONS(6403), 1,
- anon_sym_EQ,
- STATE(5162), 1,
- sym__initializer,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(7688), 3,
- sym__automatic_semicolon,
- anon_sym_COMMA,
- anon_sym_SEMI,
- [149961] = 2,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(2547), 5,
- sym__automatic_semicolon,
- anon_sym_COMMA,
- anon_sym_RBRACE,
- anon_sym_SEMI,
- anon_sym_PIPE_RBRACE,
- [149973] = 4,
- ACTIONS(6403), 1,
- anon_sym_EQ,
- STATE(5164), 1,
- sym__initializer,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(7690), 3,
- sym__automatic_semicolon,
- anon_sym_COMMA,
- anon_sym_SEMI,
- [149989] = 4,
- ACTIONS(6403), 1,
- anon_sym_EQ,
- STATE(5169), 1,
- sym__initializer,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(7690), 3,
- sym__automatic_semicolon,
- anon_sym_COMMA,
- anon_sym_SEMI,
- [150005] = 4,
- ACTIONS(1797), 1,
- anon_sym_DOT,
- ACTIONS(4097), 1,
- anon_sym_LBRACE,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(4099), 3,
- anon_sym_COMMA,
- anon_sym_LT,
- anon_sym_LBRACE_PIPE,
- [150021] = 4,
- ACTIONS(1855), 1,
- anon_sym_DOT,
- ACTIONS(4097), 1,
- anon_sym_LBRACE,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(4099), 3,
- anon_sym_COMMA,
- anon_sym_LT,
- anon_sym_LBRACE_PIPE,
- [150037] = 4,
- ACTIONS(6403), 1,
- anon_sym_EQ,
- STATE(4575), 1,
- sym__initializer,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(7688), 3,
- sym__automatic_semicolon,
- anon_sym_COMMA,
- anon_sym_SEMI,
- [150053] = 4,
- ACTIONS(6403), 1,
- anon_sym_EQ,
- STATE(4585), 1,
- sym__initializer,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(7688), 3,
- sym__automatic_semicolon,
- anon_sym_COMMA,
- anon_sym_SEMI,
- [150069] = 4,
- ACTIONS(6403), 1,
- anon_sym_EQ,
- STATE(4586), 1,
- sym__initializer,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(7690), 3,
- sym__automatic_semicolon,
- anon_sym_COMMA,
- anon_sym_SEMI,
- [150085] = 3,
- ACTIONS(8017), 1,
- sym_identifier,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(8019), 4,
- anon_sym_LBRACE,
- anon_sym_GT,
- sym_jsx_identifier,
- anon_sym_SLASH_GT,
- [150099] = 3,
- ACTIONS(8021), 1,
- sym_identifier,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(8023), 4,
- anon_sym_LBRACE,
- anon_sym_GT,
- sym_jsx_identifier,
- anon_sym_SLASH_GT,
- [150113] = 5,
- ACTIONS(6691), 1,
- anon_sym_AMP,
- ACTIONS(6695), 1,
- anon_sym_extends,
- ACTIONS(7750), 1,
- anon_sym_PIPE,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(8025), 2,
- sym__automatic_semicolon,
- anon_sym_SEMI,
- [150131] = 5,
- ACTIONS(7703), 1,
- anon_sym_LPAREN,
- ACTIONS(8027), 1,
- sym_identifier,
- STATE(3283), 1,
- sym_decorator_member_expression,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- STATE(1228), 2,
- sym_decorator_call_expression,
- sym_decorator_parenthesized_expression,
- [150149] = 4,
- ACTIONS(6403), 1,
- anon_sym_EQ,
- STATE(4587), 1,
- sym__initializer,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(7690), 3,
- sym__automatic_semicolon,
- anon_sym_COMMA,
- anon_sym_SEMI,
- [150165] = 5,
- ACTIONS(7250), 1,
- anon_sym_LT,
- ACTIONS(8029), 1,
- anon_sym_LBRACE,
- STATE(5098), 1,
- sym_type_arguments,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(8031), 2,
- anon_sym_COMMA,
- anon_sym_LBRACE_PIPE,
- [150183] = 4,
- ACTIONS(6403), 1,
- anon_sym_EQ,
- STATE(5114), 1,
- sym__initializer,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(7692), 3,
- sym__automatic_semicolon,
- anon_sym_COMMA,
- anon_sym_SEMI,
- [150199] = 6,
- ACTIONS(2581), 1,
- anon_sym_LT,
- ACTIONS(6419), 1,
- anon_sym_LPAREN,
- STATE(3742), 1,
- sym_formal_parameters,
- STATE(5186), 1,
- sym__call_signature,
- STATE(5349), 1,
- sym_type_parameters,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- [150219] = 2,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(5681), 5,
- anon_sym_EQ,
- anon_sym_COMMA,
- anon_sym_RPAREN,
- anon_sym_COLON,
- anon_sym_QMARK,
- [150231] = 4,
- ACTIONS(6403), 1,
- anon_sym_EQ,
- STATE(4600), 1,
- sym__initializer,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(7688), 3,
- sym__automatic_semicolon,
- anon_sym_COMMA,
- anon_sym_SEMI,
- [150247] = 4,
- ACTIONS(6403), 1,
- anon_sym_EQ,
- STATE(4601), 1,
- sym__initializer,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(7690), 3,
- sym__automatic_semicolon,
- anon_sym_COMMA,
- anon_sym_SEMI,
- [150263] = 2,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(4989), 5,
- anon_sym_EQ,
- anon_sym_RPAREN,
- anon_sym_in,
- anon_sym_of,
- anon_sym_COLON,
- [150275] = 2,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(4985), 5,
- anon_sym_EQ,
- anon_sym_RPAREN,
- anon_sym_in,
- anon_sym_of,
- anon_sym_COLON,
- [150287] = 2,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(2639), 5,
- sym__automatic_semicolon,
- anon_sym_COMMA,
- anon_sym_RBRACE,
- anon_sym_SEMI,
- anon_sym_PIPE_RBRACE,
- [150299] = 2,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(2643), 5,
- sym__automatic_semicolon,
- anon_sym_COMMA,
- anon_sym_RBRACE,
- anon_sym_SEMI,
- anon_sym_PIPE_RBRACE,
- [150311] = 4,
- ACTIONS(6403), 1,
- anon_sym_EQ,
- STATE(4604), 1,
- sym__initializer,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(7690), 3,
- sym__automatic_semicolon,
- anon_sym_COMMA,
- anon_sym_SEMI,
- [150327] = 4,
- ACTIONS(6403), 1,
- anon_sym_EQ,
- STATE(4605), 1,
- sym__initializer,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(7690), 3,
- sym__automatic_semicolon,
- anon_sym_COMMA,
- anon_sym_SEMI,
- [150343] = 6,
- ACTIONS(1716), 1,
- anon_sym_LBRACE,
- ACTIONS(7756), 1,
- anon_sym_SEMI,
- ACTIONS(7758), 1,
- sym__automatic_semicolon,
- ACTIONS(7760), 1,
- sym__function_signature_automatic_semicolon,
- STATE(219), 1,
- sym_statement_block,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- [150363] = 4,
- ACTIONS(6403), 1,
- anon_sym_EQ,
- STATE(4607), 1,
- sym__initializer,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(7690), 3,
- sym__automatic_semicolon,
- anon_sym_COMMA,
- anon_sym_SEMI,
- [150379] = 6,
- ACTIONS(2581), 1,
- anon_sym_LT,
- ACTIONS(6419), 1,
- anon_sym_LPAREN,
- STATE(3742), 1,
- sym_formal_parameters,
- STATE(5328), 1,
- sym__call_signature,
- STATE(5349), 1,
- sym_type_parameters,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- [150399] = 6,
- ACTIONS(2581), 1,
- anon_sym_LT,
- ACTIONS(3205), 1,
- anon_sym_LPAREN,
- STATE(3229), 1,
- sym_formal_parameters,
- STATE(5050), 1,
- sym__call_signature,
- STATE(5404), 1,
- sym_type_parameters,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- [150419] = 2,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(8033), 5,
- anon_sym_EQ,
- anon_sym_LBRACE,
- anon_sym_LPAREN,
- anon_sym_extends,
- anon_sym_implements,
- [150431] = 4,
- ACTIONS(6403), 1,
- anon_sym_EQ,
- STATE(4617), 1,
- sym__initializer,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(7688), 3,
- sym__automatic_semicolon,
- anon_sym_COMMA,
- anon_sym_SEMI,
- [150447] = 4,
- ACTIONS(6403), 1,
- anon_sym_EQ,
- STATE(5053), 1,
- sym__initializer,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(7692), 3,
- sym__automatic_semicolon,
- anon_sym_COMMA,
- anon_sym_SEMI,
- [150463] = 4,
- ACTIONS(6403), 1,
- anon_sym_EQ,
- STATE(5132), 1,
- sym__initializer,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(7692), 3,
- sym__automatic_semicolon,
- anon_sym_COMMA,
- anon_sym_SEMI,
- [150479] = 4,
- ACTIONS(6403), 1,
- anon_sym_EQ,
- STATE(4635), 1,
- sym__initializer,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(7688), 3,
- sym__automatic_semicolon,
- anon_sym_COMMA,
- anon_sym_SEMI,
- [150495] = 4,
- ACTIONS(6403), 1,
- anon_sym_EQ,
- STATE(4648), 1,
- sym__initializer,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(7688), 3,
- sym__automatic_semicolon,
- anon_sym_COMMA,
- anon_sym_SEMI,
- [150511] = 4,
- ACTIONS(6403), 1,
- anon_sym_EQ,
- STATE(4630), 1,
- sym__initializer,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(7692), 3,
- sym__automatic_semicolon,
- anon_sym_COMMA,
- anon_sym_SEMI,
- [150527] = 6,
- ACTIONS(222), 1,
- anon_sym_LBRACE_PIPE,
- ACTIONS(1498), 1,
- anon_sym_LBRACE,
- ACTIONS(7238), 1,
- anon_sym_extends,
- STATE(781), 1,
- sym_object_type,
- STATE(5110), 1,
- sym_extends_type_clause,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- [150547] = 4,
- ACTIONS(8035), 1,
- anon_sym_COMMA,
- STATE(4560), 1,
- aux_sym_variable_declaration_repeat1,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(8037), 2,
- sym__automatic_semicolon,
- anon_sym_SEMI,
- [150562] = 5,
- ACTIONS(3), 1,
- sym_comment,
- ACTIONS(5), 1,
- sym_html_comment,
- ACTIONS(8039), 1,
- anon_sym_DQUOTE,
- STATE(4486), 1,
- aux_sym_string_repeat1,
- ACTIONS(8041), 2,
- sym_unescaped_double_string_fragment,
- sym_escape_sequence,
- [150579] = 4,
- ACTIONS(8043), 1,
- anon_sym_COMMA,
- STATE(4422), 1,
- aux_sym_sequence_expression_repeat1,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(4322), 2,
- sym__automatic_semicolon,
- anon_sym_SEMI,
- [150594] = 5,
- ACTIONS(2581), 1,
- anon_sym_LT,
- ACTIONS(6419), 1,
- anon_sym_LPAREN,
- STATE(5325), 1,
- sym_type_parameters,
- STATE(5693), 1,
- sym_formal_parameters,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- [150611] = 5,
- ACTIONS(2581), 1,
- anon_sym_LT,
- ACTIONS(6419), 1,
- anon_sym_LPAREN,
- STATE(5327), 1,
- sym_type_parameters,
- STATE(5814), 1,
- sym_formal_parameters,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- [150628] = 3,
- ACTIONS(6035), 1,
- anon_sym_EQ_GT,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(3743), 3,
- anon_sym_LPAREN,
- anon_sym_LT,
- anon_sym_QMARK,
- [150641] = 5,
- ACTIONS(3), 1,
- sym_comment,
- ACTIONS(5), 1,
- sym_html_comment,
- ACTIONS(8046), 1,
- anon_sym_DQUOTE,
- STATE(4430), 1,
- aux_sym_string_repeat1,
- ACTIONS(8048), 2,
- sym_unescaped_double_string_fragment,
- sym_escape_sequence,
- [150658] = 5,
- ACTIONS(3), 1,
- sym_comment,
- ACTIONS(5), 1,
- sym_html_comment,
- ACTIONS(8046), 1,
- anon_sym_SQUOTE,
- STATE(4431), 1,
- aux_sym_string_repeat2,
- ACTIONS(8050), 2,
- sym_unescaped_single_string_fragment,
- sym_escape_sequence,
- [150675] = 5,
- ACTIONS(1712), 1,
- anon_sym_while,
- ACTIONS(2437), 1,
- anon_sym_LBRACE,
- ACTIONS(6267), 1,
- anon_sym_DOT,
- STATE(862), 1,
- sym_statement_block,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- [150692] = 5,
- ACTIONS(1712), 1,
- anon_sym_while,
- ACTIONS(2437), 1,
- anon_sym_LBRACE,
- ACTIONS(6642), 1,
- anon_sym_DOT,
- STATE(862), 1,
- sym_statement_block,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- [150709] = 5,
- ACTIONS(3), 1,
- sym_comment,
- ACTIONS(5), 1,
- sym_html_comment,
- ACTIONS(8052), 1,
- anon_sym_DQUOTE,
- STATE(4480), 1,
- aux_sym_string_repeat1,
- ACTIONS(8054), 2,
- sym_unescaped_double_string_fragment,
- sym_escape_sequence,
- [150726] = 5,
- ACTIONS(3), 1,
- sym_comment,
- ACTIONS(5), 1,
- sym_html_comment,
- ACTIONS(8052), 1,
- anon_sym_SQUOTE,
- STATE(4493), 1,
- aux_sym_string_repeat2,
- ACTIONS(8056), 2,
- sym_unescaped_single_string_fragment,
- sym_escape_sequence,
- [150743] = 5,
- ACTIONS(6554), 1,
- anon_sym_AMP,
- ACTIONS(6556), 1,
- anon_sym_PIPE,
- ACTIONS(6558), 1,
- anon_sym_extends,
- ACTIONS(8058), 1,
- anon_sym_RBRACK,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- [150760] = 4,
- ACTIONS(8035), 1,
- anon_sym_COMMA,
- STATE(4531), 1,
- aux_sym_variable_declaration_repeat1,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(8060), 2,
- sym__automatic_semicolon,
- anon_sym_SEMI,
- [150775] = 5,
- ACTIONS(6554), 1,
- anon_sym_AMP,
- ACTIONS(6556), 1,
- anon_sym_PIPE,
- ACTIONS(6558), 1,
- anon_sym_extends,
- ACTIONS(8062), 1,
- anon_sym_COLON,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- [150792] = 4,
- ACTIONS(8064), 1,
- anon_sym_from,
- STATE(5417), 1,
- sym__from_clause,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(4674), 2,
- sym__automatic_semicolon,
- anon_sym_SEMI,
- [150807] = 4,
- ACTIONS(825), 1,
- anon_sym_BQUOTE,
- ACTIONS(3969), 1,
- anon_sym_LPAREN,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- STATE(1626), 2,
- sym_template_string,
- sym_arguments,
- [150822] = 3,
- ACTIONS(7914), 1,
- anon_sym_RBRACE,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(4344), 3,
- anon_sym_AMP,
- anon_sym_PIPE,
- anon_sym_extends,
- [150835] = 5,
- ACTIONS(3), 1,
- sym_comment,
- ACTIONS(5), 1,
- sym_html_comment,
- ACTIONS(8066), 1,
- anon_sym_DQUOTE,
- STATE(4463), 1,
- aux_sym_string_repeat1,
- ACTIONS(8068), 2,
- sym_unescaped_double_string_fragment,
- sym_escape_sequence,
- [150852] = 4,
- ACTIONS(8072), 1,
- anon_sym_COMMA,
- STATE(4498), 1,
- aux_sym_extends_clause_repeat1,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(8070), 2,
- anon_sym_LBRACE,
- anon_sym_implements,
- [150867] = 5,
- ACTIONS(3), 1,
- sym_comment,
- ACTIONS(5), 1,
- sym_html_comment,
- ACTIONS(8066), 1,
- anon_sym_SQUOTE,
- STATE(4465), 1,
- aux_sym_string_repeat2,
- ACTIONS(8074), 2,
- sym_unescaped_single_string_fragment,
- sym_escape_sequence,
- [150884] = 4,
- ACTIONS(3743), 1,
- anon_sym_COLON,
- ACTIONS(4243), 1,
- anon_sym_EQ,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(8076), 2,
- anon_sym_COMMA,
- anon_sym_RBRACE,
- [150899] = 4,
- ACTIONS(8035), 1,
- anon_sym_COMMA,
- STATE(4533), 1,
- aux_sym_variable_declaration_repeat1,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(8078), 2,
- sym__automatic_semicolon,
- anon_sym_SEMI,
- [150914] = 5,
- ACTIONS(3), 1,
- sym_comment,
- ACTIONS(5), 1,
- sym_html_comment,
- ACTIONS(8080), 1,
- anon_sym_DQUOTE,
- STATE(4457), 1,
- aux_sym_string_repeat1,
- ACTIONS(8082), 2,
- sym_unescaped_double_string_fragment,
- sym_escape_sequence,
- [150931] = 5,
- ACTIONS(7312), 1,
- anon_sym_AMP,
- ACTIONS(7314), 1,
- anon_sym_PIPE,
- ACTIONS(7316), 1,
- anon_sym_extends,
- ACTIONS(8084), 1,
- anon_sym_QMARK,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- [150948] = 4,
- ACTIONS(8086), 1,
- anon_sym_COMMA,
- STATE(4445), 1,
- aux_sym_implements_clause_repeat1,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(7411), 2,
- anon_sym_LBRACE,
- anon_sym_GT,
- [150963] = 5,
- ACTIONS(6554), 1,
- anon_sym_AMP,
- ACTIONS(6556), 1,
- anon_sym_PIPE,
- ACTIONS(6558), 1,
- anon_sym_extends,
- ACTIONS(8089), 1,
- anon_sym_RBRACK,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- [150980] = 6,
- ACTIONS(3), 1,
- sym_comment,
- ACTIONS(5), 1,
- sym_html_comment,
- ACTIONS(8091), 1,
- sym_html_character_reference,
- ACTIONS(8093), 1,
- anon_sym_DQUOTE,
- ACTIONS(8095), 1,
- sym_unescaped_double_jsx_string_fragment,
- STATE(4522), 1,
- aux_sym__jsx_string_repeat1,
- [150999] = 5,
- ACTIONS(99), 1,
- anon_sym_AT,
- ACTIONS(8097), 1,
- anon_sym_export,
- STATE(1244), 1,
- sym_decorator,
- STATE(3814), 1,
- aux_sym_export_statement_repeat1,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- [151016] = 6,
- ACTIONS(3), 1,
- sym_comment,
- ACTIONS(5), 1,
- sym_html_comment,
- ACTIONS(8093), 1,
- anon_sym_SQUOTE,
- ACTIONS(8099), 1,
- sym_html_character_reference,
- ACTIONS(8101), 1,
- sym_unescaped_single_jsx_string_fragment,
- STATE(4523), 1,
- aux_sym__jsx_string_repeat2,
- [151035] = 5,
- ACTIONS(3438), 1,
- anon_sym_LPAREN,
- ACTIONS(6246), 1,
- anon_sym_LT,
- STATE(2829), 1,
- sym_arguments,
- STATE(2852), 1,
- sym_type_arguments,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- [151052] = 5,
- ACTIONS(3), 1,
- sym_comment,
- ACTIONS(5), 1,
- sym_html_comment,
- ACTIONS(8080), 1,
- anon_sym_SQUOTE,
- STATE(4459), 1,
- aux_sym_string_repeat2,
- ACTIONS(8103), 2,
- sym_unescaped_single_string_fragment,
- sym_escape_sequence,
- [151069] = 4,
- ACTIONS(8035), 1,
- anon_sym_COMMA,
- STATE(4420), 1,
- aux_sym_variable_declaration_repeat1,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(8105), 2,
- sym__automatic_semicolon,
- anon_sym_SEMI,
- [151084] = 5,
- ACTIONS(7246), 1,
- anon_sym_COMMA,
- ACTIONS(7500), 1,
- anon_sym_LBRACE,
- ACTIONS(7502), 1,
- anon_sym_LBRACE_PIPE,
- STATE(4474), 1,
- aux_sym_extends_type_clause_repeat1,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- [151101] = 5,
- ACTIONS(3), 1,
- sym_comment,
- ACTIONS(5), 1,
- sym_html_comment,
- ACTIONS(8107), 1,
- anon_sym_DQUOTE,
- STATE(4518), 1,
- aux_sym_string_repeat1,
- ACTIONS(8109), 2,
- sym_unescaped_double_string_fragment,
- sym_escape_sequence,
- [151118] = 5,
- ACTIONS(6554), 1,
- anon_sym_AMP,
- ACTIONS(6556), 1,
- anon_sym_PIPE,
- ACTIONS(6558), 1,
- anon_sym_extends,
- ACTIONS(8111), 1,
- anon_sym_RPAREN,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- [151135] = 4,
- ACTIONS(6254), 1,
- anon_sym_EQ,
- STATE(5189), 1,
- sym_default_type,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(8113), 2,
- anon_sym_COMMA,
- anon_sym_GT,
- [151150] = 5,
- ACTIONS(3), 1,
- sym_comment,
- ACTIONS(5), 1,
- sym_html_comment,
- ACTIONS(8115), 1,
- anon_sym_DQUOTE,
- STATE(4480), 1,
- aux_sym_string_repeat1,
- ACTIONS(8054), 2,
- sym_unescaped_double_string_fragment,
- sym_escape_sequence,
- [151167] = 5,
- ACTIONS(99), 1,
- anon_sym_AT,
- ACTIONS(8117), 1,
- anon_sym_class,
- STATE(1244), 1,
- sym_decorator,
- STATE(3814), 1,
- aux_sym_export_statement_repeat1,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- [151184] = 5,
- ACTIONS(3), 1,
- sym_comment,
- ACTIONS(5), 1,
- sym_html_comment,
- ACTIONS(8115), 1,
- anon_sym_SQUOTE,
- STATE(4493), 1,
- aux_sym_string_repeat2,
- ACTIONS(8056), 2,
- sym_unescaped_single_string_fragment,
- sym_escape_sequence,
- [151201] = 5,
- ACTIONS(2581), 1,
- anon_sym_LT,
- ACTIONS(6419), 1,
- anon_sym_LPAREN,
- STATE(5395), 1,
- sym_type_parameters,
- STATE(5671), 1,
- sym_formal_parameters,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- [151218] = 5,
- ACTIONS(7118), 1,
- anon_sym_const,
- ACTIONS(8119), 1,
- sym_identifier,
- ACTIONS(8121), 1,
- anon_sym_GT,
- STATE(5223), 1,
- sym_type_parameter,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- [151235] = 2,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(8123), 4,
- sym__automatic_semicolon,
- anon_sym_with,
- anon_sym_assert,
- anon_sym_SEMI,
- [151246] = 5,
- ACTIONS(3), 1,
- sym_comment,
- ACTIONS(5), 1,
- sym_html_comment,
- ACTIONS(8125), 1,
- anon_sym_DQUOTE,
- STATE(4480), 1,
- aux_sym_string_repeat1,
- ACTIONS(8054), 2,
- sym_unescaped_double_string_fragment,
- sym_escape_sequence,
- [151263] = 2,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(5932), 4,
- sym__automatic_semicolon,
- sym__function_signature_automatic_semicolon,
- anon_sym_COMMA,
- anon_sym_SEMI,
- [151274] = 5,
- ACTIONS(3), 1,
- sym_comment,
- ACTIONS(5), 1,
- sym_html_comment,
- ACTIONS(8125), 1,
- anon_sym_SQUOTE,
- STATE(4493), 1,
- aux_sym_string_repeat2,
- ACTIONS(8056), 2,
- sym_unescaped_single_string_fragment,
- sym_escape_sequence,
- [151291] = 5,
- ACTIONS(6554), 1,
- anon_sym_AMP,
- ACTIONS(6556), 1,
- anon_sym_PIPE,
- ACTIONS(6558), 1,
- anon_sym_extends,
- ACTIONS(8127), 1,
- anon_sym_RBRACK,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- [151308] = 5,
- ACTIONS(7118), 1,
- anon_sym_const,
- ACTIONS(8119), 1,
- sym_identifier,
- ACTIONS(8129), 1,
- anon_sym_GT,
- STATE(5223), 1,
- sym_type_parameter,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- [151325] = 5,
- ACTIONS(1700), 1,
- anon_sym_COMMA,
- ACTIONS(8131), 1,
- anon_sym_EQ,
- ACTIONS(8133), 1,
- anon_sym_RBRACK,
- STATE(4594), 1,
- aux_sym_array_pattern_repeat1,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- [151342] = 5,
- ACTIONS(8135), 1,
- sym_identifier,
- STATE(4396), 1,
- sym_nested_type_identifier,
- STATE(5133), 1,
- sym_generic_type,
- STATE(5801), 1,
- sym_nested_identifier,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- [151359] = 4,
- ACTIONS(89), 1,
- anon_sym_BQUOTE,
- ACTIONS(4519), 1,
- anon_sym_LPAREN,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- STATE(2222), 2,
- sym_template_string,
- sym_arguments,
- [151374] = 5,
- ACTIONS(7246), 1,
- anon_sym_COMMA,
- ACTIONS(8137), 1,
- anon_sym_LBRACE,
- ACTIONS(8139), 1,
- anon_sym_LBRACE_PIPE,
- STATE(4528), 1,
- aux_sym_extends_type_clause_repeat1,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- [151391] = 5,
- ACTIONS(2581), 1,
- anon_sym_LT,
- ACTIONS(6419), 1,
- anon_sym_LPAREN,
- STATE(5403), 1,
- sym_type_parameters,
- STATE(5770), 1,
- sym_formal_parameters,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- [151408] = 5,
- ACTIONS(7246), 1,
- anon_sym_COMMA,
- ACTIONS(8141), 1,
- anon_sym_LBRACE,
- ACTIONS(8143), 1,
- anon_sym_LBRACE_PIPE,
- STATE(4528), 1,
- aux_sym_extends_type_clause_repeat1,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- [151425] = 5,
- ACTIONS(7246), 1,
- anon_sym_COMMA,
- ACTIONS(8141), 1,
- anon_sym_LBRACE,
- ACTIONS(8143), 1,
- anon_sym_LBRACE_PIPE,
- STATE(4528), 1,
- aux_sym_extends_type_clause_repeat1,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- [151442] = 4,
- ACTIONS(6277), 1,
- anon_sym_STAR,
- ACTIONS(6281), 1,
- anon_sym_LBRACE,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- STATE(5642), 2,
- sym_namespace_import,
- sym_named_imports,
- [151457] = 5,
- ACTIONS(6554), 1,
- anon_sym_AMP,
- ACTIONS(6556), 1,
- anon_sym_PIPE,
- ACTIONS(6558), 1,
- anon_sym_extends,
- ACTIONS(8145), 1,
- anon_sym_COLON,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- [151474] = 5,
- ACTIONS(7312), 1,
- anon_sym_AMP,
- ACTIONS(7314), 1,
- anon_sym_PIPE,
- ACTIONS(7316), 1,
- anon_sym_extends,
- ACTIONS(8147), 1,
- anon_sym_QMARK,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- [151491] = 5,
- ACTIONS(3969), 1,
- anon_sym_LPAREN,
- ACTIONS(8149), 1,
- anon_sym_LT,
- STATE(1601), 1,
- sym_arguments,
- STATE(1602), 1,
- sym_type_arguments,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- [151508] = 5,
- ACTIONS(2581), 1,
- anon_sym_LT,
- ACTIONS(6419), 1,
- anon_sym_LPAREN,
- STATE(5410), 1,
- sym_type_parameters,
- STATE(5578), 1,
- sym_formal_parameters,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- [151525] = 5,
- ACTIONS(3), 1,
- sym_comment,
- ACTIONS(5), 1,
- sym_html_comment,
- ACTIONS(8151), 1,
- anon_sym_DQUOTE,
- STATE(4480), 1,
- aux_sym_string_repeat1,
- ACTIONS(8153), 2,
- sym_unescaped_double_string_fragment,
- sym_escape_sequence,
- [151542] = 4,
- ACTIONS(8072), 1,
- anon_sym_COMMA,
- STATE(4439), 1,
- aux_sym_extends_clause_repeat1,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(8156), 2,
- anon_sym_LBRACE,
- anon_sym_implements,
- [151557] = 5,
- ACTIONS(6554), 1,
- anon_sym_AMP,
- ACTIONS(6556), 1,
- anon_sym_PIPE,
- ACTIONS(6558), 1,
- anon_sym_extends,
- ACTIONS(8158), 1,
- anon_sym_COLON,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- [151574] = 5,
- ACTIONS(6554), 1,
- anon_sym_AMP,
- ACTIONS(6556), 1,
- anon_sym_PIPE,
- ACTIONS(6558), 1,
- anon_sym_extends,
- ACTIONS(8160), 1,
- anon_sym_RPAREN,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- [151591] = 5,
- ACTIONS(2581), 1,
- anon_sym_LT,
- ACTIONS(6419), 1,
- anon_sym_LPAREN,
- STATE(5235), 1,
- sym_type_parameters,
- STATE(5550), 1,
- sym_formal_parameters,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- [151608] = 5,
- ACTIONS(6554), 1,
- anon_sym_AMP,
- ACTIONS(6556), 1,
- anon_sym_PIPE,
- ACTIONS(6558), 1,
- anon_sym_extends,
- ACTIONS(8162), 1,
- anon_sym_COLON,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- [151625] = 5,
- ACTIONS(3), 1,
- sym_comment,
- ACTIONS(5), 1,
- sym_html_comment,
- ACTIONS(8164), 1,
- anon_sym_DQUOTE,
- STATE(4480), 1,
- aux_sym_string_repeat1,
- ACTIONS(8054), 2,
- sym_unescaped_double_string_fragment,
- sym_escape_sequence,
- [151642] = 3,
- ACTIONS(8166), 1,
- anon_sym_EQ_GT,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(3743), 3,
- anon_sym_LPAREN,
- anon_sym_LT,
- anon_sym_QMARK,
- [151655] = 6,
- ACTIONS(3), 1,
- sym_comment,
- ACTIONS(5), 1,
- sym_html_comment,
- ACTIONS(8168), 1,
- sym_html_character_reference,
- ACTIONS(8171), 1,
- anon_sym_DQUOTE,
- ACTIONS(8173), 1,
- sym_unescaped_double_jsx_string_fragment,
- STATE(4488), 1,
- aux_sym__jsx_string_repeat1,
- [151674] = 5,
- ACTIONS(2581), 1,
- anon_sym_LT,
- ACTIONS(6419), 1,
- anon_sym_LPAREN,
- STATE(5379), 1,
- sym_type_parameters,
- STATE(5612), 1,
- sym_formal_parameters,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- [151691] = 6,
- ACTIONS(3), 1,
- sym_comment,
- ACTIONS(5), 1,
- sym_html_comment,
- ACTIONS(8176), 1,
- sym_html_character_reference,
- ACTIONS(8179), 1,
- anon_sym_SQUOTE,
- ACTIONS(8181), 1,
- sym_unescaped_single_jsx_string_fragment,
- STATE(4490), 1,
- aux_sym__jsx_string_repeat2,
- [151710] = 5,
- ACTIONS(2581), 1,
- anon_sym_LT,
- ACTIONS(6419), 1,
- anon_sym_LPAREN,
- STATE(5240), 1,
- sym_type_parameters,
- STATE(5779), 1,
- sym_formal_parameters,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- [151727] = 5,
- ACTIONS(2581), 1,
- anon_sym_LT,
- ACTIONS(6419), 1,
- anon_sym_LPAREN,
- STATE(5527), 1,
- sym_type_parameters,
- STATE(5907), 1,
- sym_formal_parameters,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- [151744] = 5,
- ACTIONS(3), 1,
- sym_comment,
- ACTIONS(5), 1,
- sym_html_comment,
- ACTIONS(8184), 1,
- anon_sym_SQUOTE,
- STATE(4493), 1,
- aux_sym_string_repeat2,
- ACTIONS(8186), 2,
- sym_unescaped_single_string_fragment,
- sym_escape_sequence,
- [151761] = 5,
- ACTIONS(6554), 1,
- anon_sym_AMP,
- ACTIONS(6556), 1,
- anon_sym_PIPE,
- ACTIONS(6558), 1,
- anon_sym_extends,
- ACTIONS(8189), 1,
- anon_sym_RBRACK,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- [151778] = 5,
- ACTIONS(4519), 1,
- anon_sym_LPAREN,
- ACTIONS(8191), 1,
- anon_sym_LT,
- STATE(2046), 1,
- sym_arguments,
- STATE(2049), 1,
- sym_type_arguments,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- [151795] = 5,
- ACTIONS(6554), 1,
- anon_sym_AMP,
- ACTIONS(6556), 1,
- anon_sym_PIPE,
- ACTIONS(6558), 1,
- anon_sym_extends,
- ACTIONS(8193), 1,
- anon_sym_COLON,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- [151812] = 5,
- ACTIONS(6554), 1,
- anon_sym_AMP,
- ACTIONS(6556), 1,
- anon_sym_PIPE,
- ACTIONS(6558), 1,
- anon_sym_extends,
- ACTIONS(8195), 1,
- anon_sym_RPAREN,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- [151829] = 4,
- ACTIONS(8199), 1,
- anon_sym_COMMA,
- STATE(4498), 1,
- aux_sym_extends_clause_repeat1,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(8197), 2,
- anon_sym_LBRACE,
- anon_sym_implements,
- [151844] = 5,
- ACTIONS(99), 1,
- anon_sym_AT,
- ACTIONS(8202), 1,
- anon_sym_class,
- STATE(1244), 1,
- sym_decorator,
- STATE(3814), 1,
- aux_sym_export_statement_repeat1,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- [151861] = 4,
- ACTIONS(8064), 1,
- anon_sym_from,
- STATE(5456), 1,
- sym__from_clause,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(8204), 2,
- sym__automatic_semicolon,
- anon_sym_SEMI,
- [151876] = 4,
- ACTIONS(8035), 1,
- anon_sym_COMMA,
- STATE(4560), 1,
- aux_sym_variable_declaration_repeat1,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(8206), 2,
- sym__automatic_semicolon,
- anon_sym_SEMI,
- [151891] = 4,
- ACTIONS(7202), 1,
- anon_sym_EQ,
- STATE(5191), 1,
- sym__initializer,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(8208), 2,
- anon_sym_COMMA,
- anon_sym_RPAREN,
- [151906] = 5,
- ACTIONS(3), 1,
- sym_comment,
- ACTIONS(5), 1,
- sym_html_comment,
- ACTIONS(8164), 1,
- anon_sym_SQUOTE,
- STATE(4493), 1,
- aux_sym_string_repeat2,
- ACTIONS(8056), 2,
- sym_unescaped_single_string_fragment,
- sym_escape_sequence,
- [151923] = 5,
- ACTIONS(3), 1,
- sym_comment,
- ACTIONS(5), 1,
- sym_html_comment,
- ACTIONS(8210), 1,
- anon_sym_DQUOTE,
- STATE(4508), 1,
- aux_sym_string_repeat1,
- ACTIONS(8212), 2,
- sym_unescaped_double_string_fragment,
- sym_escape_sequence,
- [151940] = 5,
- ACTIONS(3), 1,
- sym_comment,
- ACTIONS(5), 1,
- sym_html_comment,
- ACTIONS(8210), 1,
- anon_sym_SQUOTE,
- STATE(4509), 1,
- aux_sym_string_repeat2,
- ACTIONS(8214), 2,
- sym_unescaped_single_string_fragment,
- sym_escape_sequence,
- [151957] = 4,
- ACTIONS(8035), 1,
- anon_sym_COMMA,
- STATE(4501), 1,
- aux_sym_variable_declaration_repeat1,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(8216), 2,
- sym__automatic_semicolon,
- anon_sym_SEMI,
- [151972] = 5,
- ACTIONS(3), 1,
- sym_comment,
- ACTIONS(5), 1,
- sym_html_comment,
- ACTIONS(8218), 1,
- anon_sym_SQUOTE,
- STATE(4493), 1,
- aux_sym_string_repeat2,
- ACTIONS(8056), 2,
- sym_unescaped_single_string_fragment,
- sym_escape_sequence,
- [151989] = 5,
- ACTIONS(3), 1,
- sym_comment,
- ACTIONS(5), 1,
- sym_html_comment,
- ACTIONS(8220), 1,
- anon_sym_DQUOTE,
- STATE(4480), 1,
- aux_sym_string_repeat1,
- ACTIONS(8054), 2,
- sym_unescaped_double_string_fragment,
- sym_escape_sequence,
- [152006] = 5,
- ACTIONS(3), 1,
- sym_comment,
- ACTIONS(5), 1,
- sym_html_comment,
- ACTIONS(8220), 1,
- anon_sym_SQUOTE,
- STATE(4493), 1,
- aux_sym_string_repeat2,
- ACTIONS(8056), 2,
- sym_unescaped_single_string_fragment,
- sym_escape_sequence,
- [152023] = 4,
- ACTIONS(7202), 1,
- anon_sym_EQ,
- STATE(5261), 1,
- sym__initializer,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(8222), 2,
- anon_sym_COMMA,
- anon_sym_RPAREN,
- [152038] = 4,
- ACTIONS(8224), 1,
- anon_sym_COMMA,
- STATE(4511), 1,
- aux_sym_array_repeat1,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(5011), 2,
- anon_sym_RPAREN,
- anon_sym_RBRACK,
- [152053] = 5,
- ACTIONS(3), 1,
- sym_comment,
- ACTIONS(5), 1,
- sym_html_comment,
- ACTIONS(8039), 1,
- anon_sym_SQUOTE,
- STATE(4503), 1,
- aux_sym_string_repeat2,
- ACTIONS(8227), 2,
- sym_unescaped_single_string_fragment,
- sym_escape_sequence,
- [152070] = 4,
- ACTIONS(4757), 1,
- anon_sym_COMMA,
- STATE(4422), 1,
- aux_sym_sequence_expression_repeat1,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(7510), 2,
- sym__automatic_semicolon,
- anon_sym_SEMI,
- [152085] = 5,
- ACTIONS(6554), 1,
- anon_sym_AMP,
- ACTIONS(6556), 1,
- anon_sym_PIPE,
- ACTIONS(6558), 1,
- anon_sym_extends,
- ACTIONS(8229), 1,
- anon_sym_RBRACK,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- [152102] = 5,
- ACTIONS(2581), 1,
- anon_sym_LT,
- ACTIONS(3205), 1,
- anon_sym_LPAREN,
- STATE(3631), 1,
- sym_formal_parameters,
- STATE(5418), 1,
- sym_type_parameters,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- [152119] = 4,
- ACTIONS(8064), 1,
- anon_sym_from,
- STATE(5305), 1,
- sym__from_clause,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(4854), 2,
- sym__automatic_semicolon,
- anon_sym_SEMI,
- [152134] = 5,
- ACTIONS(6246), 1,
- anon_sym_LT,
- ACTIONS(6666), 1,
- anon_sym_LPAREN,
- STATE(2829), 1,
- sym_arguments,
- STATE(2852), 1,
- sym_type_arguments,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- [152151] = 5,
- ACTIONS(3), 1,
- sym_comment,
- ACTIONS(5), 1,
- sym_html_comment,
- ACTIONS(8218), 1,
- anon_sym_DQUOTE,
- STATE(4480), 1,
- aux_sym_string_repeat1,
- ACTIONS(8054), 2,
- sym_unescaped_double_string_fragment,
- sym_escape_sequence,
- [152168] = 5,
- ACTIONS(2581), 1,
- anon_sym_LT,
- ACTIONS(6419), 1,
- anon_sym_LPAREN,
- STATE(5458), 1,
- sym_type_parameters,
- STATE(5658), 1,
- sym_formal_parameters,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- [152185] = 3,
- ACTIONS(8231), 1,
- sym_escape_sequence,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(8233), 3,
- sym__template_chars,
- anon_sym_BQUOTE,
- anon_sym_DOLLAR_LBRACE,
- [152198] = 4,
- ACTIONS(8064), 1,
- anon_sym_from,
- STATE(5491), 1,
- sym__from_clause,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(8236), 2,
- sym__automatic_semicolon,
- anon_sym_SEMI,
- [152213] = 6,
- ACTIONS(3), 1,
- sym_comment,
- ACTIONS(5), 1,
- sym_html_comment,
- ACTIONS(8238), 1,
- sym_html_character_reference,
- ACTIONS(8240), 1,
- anon_sym_DQUOTE,
- ACTIONS(8242), 1,
- sym_unescaped_double_jsx_string_fragment,
- STATE(4488), 1,
- aux_sym__jsx_string_repeat1,
- [152232] = 6,
- ACTIONS(3), 1,
- sym_comment,
- ACTIONS(5), 1,
- sym_html_comment,
- ACTIONS(8240), 1,
- anon_sym_SQUOTE,
- ACTIONS(8244), 1,
- sym_html_character_reference,
- ACTIONS(8246), 1,
- sym_unescaped_single_jsx_string_fragment,
- STATE(4490), 1,
- aux_sym__jsx_string_repeat2,
- [152251] = 5,
- ACTIONS(6311), 1,
- anon_sym_LPAREN,
- ACTIONS(6317), 1,
- anon_sym_LT,
- STATE(3185), 1,
- sym_arguments,
- STATE(3394), 1,
- sym_type_arguments,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- [152268] = 5,
- ACTIONS(6554), 1,
- anon_sym_AMP,
- ACTIONS(6556), 1,
- anon_sym_PIPE,
- ACTIONS(6558), 1,
- anon_sym_extends,
- ACTIONS(8248), 1,
- anon_sym_RPAREN,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- [152285] = 5,
- ACTIONS(8250), 1,
- sym_identifier,
- STATE(3800), 1,
- sym_nested_type_identifier,
- STATE(4453), 1,
- sym_generic_type,
- STATE(5801), 1,
- sym_nested_identifier,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- [152302] = 5,
- ACTIONS(7118), 1,
- anon_sym_const,
- ACTIONS(8119), 1,
- sym_identifier,
- ACTIONS(8252), 1,
- anon_sym_GT,
- STATE(5223), 1,
- sym_type_parameter,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- [152319] = 5,
- ACTIONS(8254), 1,
- anon_sym_LBRACE,
- ACTIONS(8256), 1,
- anon_sym_COMMA,
- ACTIONS(8259), 1,
- anon_sym_LBRACE_PIPE,
- STATE(4528), 1,
- aux_sym_extends_type_clause_repeat1,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- [152336] = 5,
- ACTIONS(2581), 1,
- anon_sym_LT,
- ACTIONS(6419), 1,
- anon_sym_LPAREN,
- STATE(5297), 1,
- sym_type_parameters,
- STATE(5647), 1,
- sym_formal_parameters,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- [152353] = 5,
- ACTIONS(2581), 1,
- anon_sym_LT,
- ACTIONS(6419), 1,
- anon_sym_LPAREN,
- STATE(5299), 1,
- sym_type_parameters,
- STATE(5685), 1,
- sym_formal_parameters,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- [152370] = 4,
- ACTIONS(8035), 1,
- anon_sym_COMMA,
- STATE(4560), 1,
- aux_sym_variable_declaration_repeat1,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(8261), 2,
- sym__automatic_semicolon,
- anon_sym_SEMI,
- [152385] = 4,
- ACTIONS(7202), 1,
- anon_sym_EQ,
- STATE(5219), 1,
- sym__initializer,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(8263), 2,
- anon_sym_COMMA,
- anon_sym_RBRACE,
- [152400] = 4,
- ACTIONS(8035), 1,
- anon_sym_COMMA,
- STATE(4560), 1,
- aux_sym_variable_declaration_repeat1,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(8265), 2,
- sym__automatic_semicolon,
- anon_sym_SEMI,
- [152415] = 5,
- ACTIONS(6554), 1,
- anon_sym_AMP,
- ACTIONS(6556), 1,
- anon_sym_PIPE,
- ACTIONS(6558), 1,
- anon_sym_extends,
- ACTIONS(8267), 1,
- anon_sym_RBRACK,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- [152432] = 4,
- ACTIONS(8269), 1,
- anon_sym_EQ,
- STATE(5309), 1,
- sym__initializer,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(6719), 2,
- anon_sym_in,
- anon_sym_of,
- [152447] = 5,
- ACTIONS(6554), 1,
- anon_sym_AMP,
- ACTIONS(6556), 1,
- anon_sym_PIPE,
- ACTIONS(6558), 1,
- anon_sym_extends,
- ACTIONS(8271), 1,
- anon_sym_COLON,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- [152464] = 5,
- ACTIONS(6554), 1,
- anon_sym_AMP,
- ACTIONS(6556), 1,
- anon_sym_PIPE,
- ACTIONS(6558), 1,
- anon_sym_extends,
- ACTIONS(8273), 1,
- anon_sym_RBRACK,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- [152481] = 5,
- ACTIONS(3), 1,
- sym_comment,
- ACTIONS(5), 1,
- sym_html_comment,
- ACTIONS(8275), 1,
- anon_sym_DQUOTE,
- STATE(4547), 1,
- aux_sym_string_repeat1,
- ACTIONS(8277), 2,
- sym_unescaped_double_string_fragment,
- sym_escape_sequence,
- [152498] = 5,
- ACTIONS(3), 1,
- sym_comment,
- ACTIONS(5), 1,
- sym_html_comment,
- ACTIONS(8275), 1,
- anon_sym_SQUOTE,
- STATE(4552), 1,
- aux_sym_string_repeat2,
- ACTIONS(8279), 2,
- sym_unescaped_single_string_fragment,
- sym_escape_sequence,
- [152515] = 4,
- ACTIONS(6254), 1,
- anon_sym_EQ,
- STATE(5486), 1,
- sym_default_type,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(8281), 2,
- anon_sym_COMMA,
- anon_sym_GT,
- [152530] = 5,
- ACTIONS(6554), 1,
- anon_sym_AMP,
- ACTIONS(6556), 1,
- anon_sym_PIPE,
- ACTIONS(6558), 1,
- anon_sym_extends,
- ACTIONS(8283), 1,
- anon_sym_RBRACK,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- [152547] = 5,
- ACTIONS(7312), 1,
- anon_sym_AMP,
- ACTIONS(7314), 1,
- anon_sym_PIPE,
- ACTIONS(7316), 1,
- anon_sym_extends,
- ACTIONS(8285), 1,
- anon_sym_QMARK,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- [152564] = 5,
- ACTIONS(3408), 1,
- anon_sym_LPAREN,
- ACTIONS(6289), 1,
- anon_sym_LT,
- STATE(3020), 1,
- sym_arguments,
- STATE(3189), 1,
- sym_type_arguments,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- [152581] = 5,
- ACTIONS(1700), 1,
- anon_sym_COMMA,
- ACTIONS(8131), 1,
- anon_sym_EQ,
- ACTIONS(8287), 1,
- anon_sym_RBRACK,
- STATE(4622), 1,
- aux_sym_array_pattern_repeat1,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- [152598] = 5,
- ACTIONS(7312), 1,
- anon_sym_AMP,
- ACTIONS(7314), 1,
- anon_sym_PIPE,
- ACTIONS(7316), 1,
- anon_sym_extends,
- ACTIONS(8289), 1,
- anon_sym_QMARK,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- [152615] = 5,
- ACTIONS(6554), 1,
- anon_sym_AMP,
- ACTIONS(6556), 1,
- anon_sym_PIPE,
- ACTIONS(6558), 1,
- anon_sym_extends,
- ACTIONS(8291), 1,
- anon_sym_RBRACK,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- [152632] = 5,
- ACTIONS(3), 1,
- sym_comment,
- ACTIONS(5), 1,
- sym_html_comment,
- ACTIONS(8293), 1,
- anon_sym_DQUOTE,
- STATE(4480), 1,
- aux_sym_string_repeat1,
- ACTIONS(8054), 2,
- sym_unescaped_double_string_fragment,
- sym_escape_sequence,
- [152649] = 5,
- ACTIONS(7312), 1,
- anon_sym_AMP,
- ACTIONS(7314), 1,
- anon_sym_PIPE,
- ACTIONS(7316), 1,
- anon_sym_extends,
- ACTIONS(8295), 1,
- anon_sym_QMARK,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- [152666] = 5,
- ACTIONS(6554), 1,
- anon_sym_AMP,
- ACTIONS(6556), 1,
- anon_sym_PIPE,
- ACTIONS(6558), 1,
- anon_sym_extends,
- ACTIONS(8297), 1,
- anon_sym_RBRACK,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- [152683] = 5,
- ACTIONS(7118), 1,
- anon_sym_const,
- ACTIONS(8119), 1,
- sym_identifier,
- ACTIONS(8299), 1,
- anon_sym_GT,
- STATE(5223), 1,
- sym_type_parameter,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- [152700] = 2,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(8301), 4,
- sym__automatic_semicolon,
- anon_sym_with,
- anon_sym_assert,
- anon_sym_SEMI,
- [152711] = 5,
- ACTIONS(3), 1,
- sym_comment,
- ACTIONS(5), 1,
- sym_html_comment,
- ACTIONS(8293), 1,
- anon_sym_SQUOTE,
- STATE(4493), 1,
- aux_sym_string_repeat2,
- ACTIONS(8056), 2,
- sym_unescaped_single_string_fragment,
- sym_escape_sequence,
- [152728] = 5,
- ACTIONS(6554), 1,
- anon_sym_AMP,
- ACTIONS(6556), 1,
- anon_sym_PIPE,
- ACTIONS(6558), 1,
- anon_sym_extends,
- ACTIONS(8303), 1,
- anon_sym_RBRACK,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- [152745] = 5,
- ACTIONS(2581), 1,
- anon_sym_LT,
- ACTIONS(6419), 1,
- anon_sym_LPAREN,
- STATE(5519), 1,
- sym_type_parameters,
- STATE(5638), 1,
- sym_formal_parameters,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- [152762] = 5,
- ACTIONS(2581), 1,
- anon_sym_LT,
- ACTIONS(6419), 1,
- anon_sym_LPAREN,
- STATE(5522), 1,
- sym_type_parameters,
- STATE(5655), 1,
- sym_formal_parameters,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- [152779] = 5,
- ACTIONS(7312), 1,
- anon_sym_AMP,
- ACTIONS(7314), 1,
- anon_sym_PIPE,
- ACTIONS(7316), 1,
- anon_sym_extends,
- ACTIONS(8305), 1,
- anon_sym_QMARK,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- [152796] = 5,
- ACTIONS(6554), 1,
- anon_sym_AMP,
- ACTIONS(6556), 1,
- anon_sym_PIPE,
- ACTIONS(6558), 1,
- anon_sym_extends,
- ACTIONS(8307), 1,
- anon_sym_RPAREN,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- [152813] = 5,
- ACTIONS(3), 1,
- sym_comment,
- ACTIONS(5), 1,
- sym_html_comment,
- ACTIONS(8107), 1,
- anon_sym_SQUOTE,
- STATE(4507), 1,
- aux_sym_string_repeat2,
- ACTIONS(8309), 2,
- sym_unescaped_single_string_fragment,
- sym_escape_sequence,
- [152830] = 2,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(8311), 4,
- sym__template_chars,
- sym_escape_sequence,
- anon_sym_BQUOTE,
- anon_sym_DOLLAR_LBRACE,
- [152841] = 4,
- ACTIONS(8313), 1,
- anon_sym_COMMA,
- STATE(4560), 1,
- aux_sym_variable_declaration_repeat1,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(8316), 2,
- sym__automatic_semicolon,
- anon_sym_SEMI,
- [152856] = 5,
- ACTIONS(7312), 1,
- anon_sym_AMP,
- ACTIONS(7314), 1,
- anon_sym_PIPE,
- ACTIONS(7316), 1,
- anon_sym_extends,
- ACTIONS(8318), 1,
- anon_sym_QMARK,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- [152873] = 5,
- ACTIONS(6554), 1,
- anon_sym_AMP,
- ACTIONS(6556), 1,
- anon_sym_PIPE,
- ACTIONS(6558), 1,
- anon_sym_extends,
- ACTIONS(8320), 1,
- anon_sym_RBRACK,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- [152890] = 5,
- ACTIONS(6554), 1,
- anon_sym_AMP,
- ACTIONS(6556), 1,
- anon_sym_PIPE,
- ACTIONS(6558), 1,
- anon_sym_extends,
- ACTIONS(8322), 1,
- anon_sym_COLON,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- [152907] = 2,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(8324), 3,
- sym__automatic_semicolon,
- anon_sym_COMMA,
- anon_sym_SEMI,
- [152917] = 4,
- ACTIONS(5644), 1,
- anon_sym_COMMA,
- ACTIONS(8326), 1,
- anon_sym_RBRACE,
- STATE(4691), 1,
- aux_sym_object_repeat1,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- [152931] = 4,
- ACTIONS(8328), 1,
- anon_sym_COMMA,
- ACTIONS(8330), 1,
- anon_sym_RBRACE,
- STATE(4897), 1,
- aux_sym_enum_body_repeat1,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- [152945] = 4,
- ACTIONS(6691), 1,
- anon_sym_AMP,
- ACTIONS(6695), 1,
- anon_sym_extends,
- ACTIONS(7750), 1,
- anon_sym_PIPE,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- [152959] = 2,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(8332), 3,
- sym__automatic_semicolon,
- anon_sym_COMMA,
- anon_sym_SEMI,
- [152969] = 4,
- ACTIONS(1931), 1,
- anon_sym_COMMA,
- ACTIONS(8334), 1,
- anon_sym_RPAREN,
- STATE(4511), 1,
- aux_sym_array_repeat1,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- [152983] = 2,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(8324), 3,
- sym__automatic_semicolon,
- anon_sym_COMMA,
- anon_sym_SEMI,
- [152993] = 4,
- ACTIONS(3175), 1,
- anon_sym_GT,
- ACTIONS(8336), 1,
- anon_sym_COMMA,
- STATE(4445), 1,
- aux_sym_implements_clause_repeat1,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- [153007] = 4,
- ACTIONS(1931), 1,
- anon_sym_COMMA,
- ACTIONS(4977), 1,
- anon_sym_RPAREN,
- STATE(4581), 1,
- aux_sym_array_repeat1,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- [153021] = 2,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(8324), 3,
- sym__automatic_semicolon,
- anon_sym_COMMA,
- anon_sym_SEMI,
- [153031] = 2,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(8338), 3,
- sym__automatic_semicolon,
- anon_sym_COMMA,
- anon_sym_SEMI,
- [153041] = 2,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(8340), 3,
- sym__automatic_semicolon,
- anon_sym_COMMA,
- anon_sym_SEMI,
- [153051] = 2,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(8324), 3,
- sym__automatic_semicolon,
- anon_sym_COMMA,
- anon_sym_SEMI,
- [153061] = 4,
- ACTIONS(8342), 1,
- sym_identifier,
- ACTIONS(8344), 1,
- anon_sym_LBRACK,
- ACTIONS(8346), 1,
- sym_private_property_identifier,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- [153075] = 4,
- ACTIONS(8348), 1,
- sym_identifier,
- ACTIONS(8350), 1,
- anon_sym_LBRACK,
- ACTIONS(8352), 1,
- sym_private_property_identifier,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- [153089] = 4,
- ACTIONS(8354), 1,
- sym_identifier,
- ACTIONS(8356), 1,
- anon_sym_LBRACK,
- ACTIONS(8358), 1,
- sym_private_property_identifier,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- [153103] = 4,
- ACTIONS(8360), 1,
- sym_identifier,
- ACTIONS(8362), 1,
- anon_sym_LBRACK,
- ACTIONS(8364), 1,
- sym_private_property_identifier,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- [153117] = 4,
- ACTIONS(1931), 1,
- anon_sym_COMMA,
- ACTIONS(8366), 1,
- anon_sym_RPAREN,
- STATE(4511), 1,
- aux_sym_array_repeat1,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- [153131] = 4,
- ACTIONS(2901), 1,
- anon_sym_RBRACK,
- ACTIONS(8368), 1,
- anon_sym_COMMA,
- STATE(5101), 1,
- aux_sym_tuple_type_repeat1,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- [153145] = 4,
- ACTIONS(1931), 1,
- anon_sym_COMMA,
- ACTIONS(4977), 1,
- anon_sym_RPAREN,
- STATE(4511), 1,
- aux_sym_array_repeat1,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- [153159] = 2,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(8324), 3,
- sym__automatic_semicolon,
- anon_sym_COMMA,
- anon_sym_SEMI,
- [153169] = 2,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(8340), 3,
- sym__automatic_semicolon,
- anon_sym_COMMA,
- anon_sym_SEMI,
- [153179] = 2,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(8370), 3,
- sym__automatic_semicolon,
- anon_sym_COMMA,
- anon_sym_SEMI,
- [153189] = 2,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(8370), 3,
- sym__automatic_semicolon,
- anon_sym_COMMA,
- anon_sym_SEMI,
- [153199] = 2,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(8324), 3,
- sym__automatic_semicolon,
- anon_sym_COMMA,
- anon_sym_SEMI,
- [153209] = 2,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(8324), 3,
- sym__automatic_semicolon,
- anon_sym_COMMA,
- anon_sym_SEMI,
- [153219] = 3,
- ACTIONS(8372), 1,
- anon_sym_LBRACE,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(7707), 2,
- anon_sym_extends,
- anon_sym_LBRACE_PIPE,
- [153231] = 4,
- ACTIONS(1638), 1,
- anon_sym_RPAREN,
- ACTIONS(8374), 1,
- anon_sym_COMMA,
- STATE(4921), 1,
- aux_sym_formal_parameters_repeat1,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- [153245] = 2,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(8338), 3,
- sym__automatic_semicolon,
- anon_sym_COMMA,
- anon_sym_SEMI,
- [153255] = 4,
- ACTIONS(1931), 1,
- anon_sym_COMMA,
- ACTIONS(8376), 1,
- anon_sym_RBRACK,
- STATE(4511), 1,
- aux_sym_array_repeat1,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- [153269] = 4,
- ACTIONS(1700), 1,
- anon_sym_COMMA,
- ACTIONS(8378), 1,
- anon_sym_RBRACK,
- STATE(4674), 1,
- aux_sym_array_pattern_repeat1,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- [153283] = 4,
- ACTIONS(3155), 1,
- anon_sym_GT,
- ACTIONS(8380), 1,
- anon_sym_COMMA,
- STATE(4445), 1,
- aux_sym_implements_clause_repeat1,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- [153297] = 2,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(8382), 3,
- sym__automatic_semicolon,
- anon_sym_COMMA,
- anon_sym_SEMI,
- [153307] = 4,
- ACTIONS(6397), 1,
- anon_sym_type,
- ACTIONS(8384), 1,
- sym_identifier,
- STATE(5274), 1,
- sym__import_identifier,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- [153321] = 2,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(8386), 3,
- sym__automatic_semicolon,
- anon_sym_COMMA,
- anon_sym_SEMI,
- [153331] = 2,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(8388), 3,
- sym__automatic_semicolon,
- anon_sym_COMMA,
- anon_sym_SEMI,
- [153341] = 2,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(8340), 3,
- sym__automatic_semicolon,
- anon_sym_COMMA,
- anon_sym_SEMI,
- [153351] = 2,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(8370), 3,
- sym__automatic_semicolon,
- anon_sym_COMMA,
- anon_sym_SEMI,
- [153361] = 4,
- ACTIONS(6397), 1,
- anon_sym_type,
- ACTIONS(8390), 1,
- sym_identifier,
- STATE(5275), 1,
- sym__import_identifier,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- [153375] = 4,
- ACTIONS(5644), 1,
- anon_sym_COMMA,
- ACTIONS(8392), 1,
- anon_sym_RBRACE,
- STATE(4636), 1,
- aux_sym_object_repeat1,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- [153389] = 2,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(8370), 3,
- sym__automatic_semicolon,
- anon_sym_COMMA,
- anon_sym_SEMI,
- [153399] = 2,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(8370), 3,
- sym__automatic_semicolon,
- anon_sym_COMMA,
- anon_sym_SEMI,
- [153409] = 4,
- ACTIONS(3969), 1,
- anon_sym_LPAREN,
- ACTIONS(8394), 1,
- anon_sym_DOT,
- STATE(1594), 1,
- sym_arguments,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- [153423] = 2,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(8370), 3,
- sym__automatic_semicolon,
- anon_sym_COMMA,
- anon_sym_SEMI,
- [153433] = 2,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(8396), 3,
- sym__automatic_semicolon,
- anon_sym_COMMA,
- anon_sym_SEMI,
- [153443] = 2,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(8398), 3,
- sym__automatic_semicolon,
- anon_sym_COMMA,
- anon_sym_SEMI,
- [153453] = 4,
- ACTIONS(1931), 1,
- anon_sym_COMMA,
- ACTIONS(5029), 1,
- anon_sym_RPAREN,
- STATE(4623), 1,
- aux_sym_array_repeat1,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- [153467] = 4,
- ACTIONS(1931), 1,
- anon_sym_COMMA,
- ACTIONS(5029), 1,
- anon_sym_RPAREN,
- STATE(4511), 1,
- aux_sym_array_repeat1,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- [153481] = 2,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(8324), 3,
- sym__automatic_semicolon,
- anon_sym_COMMA,
- anon_sym_SEMI,
- [153491] = 2,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(8382), 3,
- sym__automatic_semicolon,
- anon_sym_COMMA,
- anon_sym_SEMI,
- [153501] = 4,
- ACTIONS(8400), 1,
- anon_sym_COMMA,
- ACTIONS(8403), 1,
- anon_sym_RBRACE,
- STATE(4614), 1,
- aux_sym_named_imports_repeat1,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- [153515] = 2,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(8324), 3,
- sym__automatic_semicolon,
- anon_sym_COMMA,
- anon_sym_SEMI,
- [153525] = 4,
- ACTIONS(6267), 1,
- anon_sym_DOT,
- ACTIONS(6572), 1,
- anon_sym_COLON,
- ACTIONS(8405), 1,
- anon_sym_GT,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- [153539] = 2,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(8340), 3,
- sym__automatic_semicolon,
- anon_sym_COMMA,
- anon_sym_SEMI,
- [153549] = 4,
- ACTIONS(4519), 1,
- anon_sym_LPAREN,
- ACTIONS(8407), 1,
- anon_sym_DOT,
- STATE(2032), 1,
- sym_arguments,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- [153563] = 4,
- ACTIONS(8409), 1,
- anon_sym_COMMA,
- ACTIONS(8411), 1,
- anon_sym_RBRACK,
- STATE(4628), 1,
- aux_sym_tuple_type_repeat1,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- [153577] = 4,
- ACTIONS(4112), 1,
- anon_sym_extends,
- ACTIONS(8413), 1,
- anon_sym_AMP,
- ACTIONS(8415), 1,
- anon_sym_PIPE,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- [153591] = 4,
- ACTIONS(5113), 1,
- anon_sym_COMMA,
- ACTIONS(8417), 1,
- anon_sym_RBRACE,
- STATE(4698), 1,
- aux_sym_object_pattern_repeat1,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- [153605] = 4,
- ACTIONS(1700), 1,
- anon_sym_COMMA,
- ACTIONS(8419), 1,
- anon_sym_RBRACK,
- STATE(4674), 1,
- aux_sym_array_pattern_repeat1,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- [153619] = 4,
- ACTIONS(1931), 1,
- anon_sym_COMMA,
- ACTIONS(8421), 1,
- anon_sym_RPAREN,
- STATE(4511), 1,
- aux_sym_array_repeat1,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- [153633] = 4,
- ACTIONS(1506), 1,
- anon_sym_DQUOTE,
- ACTIONS(1508), 1,
- anon_sym_SQUOTE,
- STATE(5640), 1,
- sym_string,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- [153647] = 4,
- ACTIONS(3153), 1,
- anon_sym_GT,
- ACTIONS(8423), 1,
- anon_sym_COMMA,
- STATE(4445), 1,
- aux_sym_implements_clause_repeat1,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- [153661] = 2,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(8398), 3,
- sym__automatic_semicolon,
- anon_sym_COMMA,
- anon_sym_SEMI,
- [153671] = 2,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(8338), 3,
- sym__automatic_semicolon,
- anon_sym_COMMA,
- anon_sym_SEMI,
- [153681] = 4,
- ACTIONS(2907), 1,
- anon_sym_RBRACK,
- ACTIONS(8425), 1,
- anon_sym_COMMA,
- STATE(5101), 1,
- aux_sym_tuple_type_repeat1,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- [153695] = 2,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(8398), 3,
- sym__automatic_semicolon,
- anon_sym_COMMA,
- anon_sym_SEMI,
- [153705] = 2,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(8388), 3,
- sym__automatic_semicolon,
- anon_sym_COMMA,
- anon_sym_SEMI,
- [153715] = 2,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(8324), 3,
- sym__automatic_semicolon,
- anon_sym_COMMA,
- anon_sym_SEMI,
- [153725] = 2,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(8324), 3,
- sym__automatic_semicolon,
- anon_sym_COMMA,
- anon_sym_SEMI,
- [153735] = 2,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(8382), 3,
- sym__automatic_semicolon,
- anon_sym_COMMA,
- anon_sym_SEMI,
- [153745] = 2,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(8338), 3,
- sym__automatic_semicolon,
- anon_sym_COMMA,
- anon_sym_SEMI,
- [153755] = 2,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(8340), 3,
- sym__automatic_semicolon,
- anon_sym_COMMA,
- anon_sym_SEMI,
- [153765] = 4,
- ACTIONS(5644), 1,
- anon_sym_COMMA,
- ACTIONS(8427), 1,
- anon_sym_RBRACE,
- STATE(4691), 1,
- aux_sym_object_repeat1,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- [153779] = 4,
- ACTIONS(8129), 1,
- anon_sym_GT,
- ACTIONS(8429), 1,
- anon_sym_COMMA,
- STATE(4938), 1,
- aux_sym_type_parameters_repeat1,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- [153793] = 2,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(8382), 3,
- sym__automatic_semicolon,
- anon_sym_COMMA,
- anon_sym_SEMI,
- [153803] = 2,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(8382), 3,
- sym__automatic_semicolon,
- anon_sym_COMMA,
- anon_sym_SEMI,
- [153813] = 2,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(8398), 3,
- sym__automatic_semicolon,
- anon_sym_COMMA,
- anon_sym_SEMI,
- [153823] = 2,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(8382), 3,
- sym__automatic_semicolon,
- anon_sym_COMMA,
- anon_sym_SEMI,
- [153833] = 4,
- ACTIONS(6311), 1,
- anon_sym_LPAREN,
- ACTIONS(8431), 1,
- anon_sym_DOT,
- STATE(3239), 1,
- sym_arguments,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- [153847] = 2,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(8324), 3,
- sym__automatic_semicolon,
- anon_sym_COMMA,
- anon_sym_SEMI,
- [153857] = 4,
- ACTIONS(1931), 1,
- anon_sym_COMMA,
- ACTIONS(5035), 1,
- anon_sym_RPAREN,
- STATE(4653), 1,
- aux_sym_array_repeat1,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- [153871] = 4,
- ACTIONS(1931), 1,
- anon_sym_COMMA,
- ACTIONS(5035), 1,
- anon_sym_RPAREN,
- STATE(4511), 1,
- aux_sym_array_repeat1,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- [153885] = 2,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(8324), 3,
- sym__automatic_semicolon,
- anon_sym_COMMA,
- anon_sym_SEMI,
- [153895] = 4,
- ACTIONS(1040), 1,
- anon_sym_LBRACE_PIPE,
- ACTIONS(1586), 1,
- anon_sym_LBRACE,
- STATE(3987), 1,
- sym_object_type,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- [153909] = 2,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(8340), 3,
- sym__automatic_semicolon,
- anon_sym_COMMA,
- anon_sym_SEMI,
- [153919] = 2,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(8433), 3,
- sym__automatic_semicolon,
- anon_sym_COMMA,
- anon_sym_SEMI,
- [153929] = 4,
- ACTIONS(8435), 1,
- anon_sym_COMMA,
- ACTIONS(8437), 1,
- anon_sym_RBRACK,
- STATE(4663), 1,
- aux_sym_tuple_type_repeat1,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- [153943] = 4,
- ACTIONS(6807), 1,
- anon_sym_AMP,
- ACTIONS(6809), 1,
- anon_sym_PIPE,
- ACTIONS(6811), 1,
- anon_sym_extends,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- [153957] = 4,
- ACTIONS(1931), 1,
- anon_sym_COMMA,
- ACTIONS(5015), 1,
- anon_sym_RPAREN,
- STATE(4821), 1,
- aux_sym_array_repeat1,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- [153971] = 4,
- ACTIONS(1931), 1,
- anon_sym_COMMA,
- ACTIONS(8439), 1,
- anon_sym_RPAREN,
- STATE(4511), 1,
- aux_sym_array_repeat1,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- [153985] = 2,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(8324), 3,
- sym__automatic_semicolon,
- anon_sym_COMMA,
- anon_sym_SEMI,
- [153995] = 4,
- ACTIONS(3163), 1,
- anon_sym_GT,
- ACTIONS(8441), 1,
- anon_sym_COMMA,
- STATE(4445), 1,
- aux_sym_implements_clause_repeat1,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- [154009] = 4,
- ACTIONS(1931), 1,
- anon_sym_COMMA,
- ACTIONS(5015), 1,
- anon_sym_RPAREN,
- STATE(4511), 1,
- aux_sym_array_repeat1,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- [154023] = 2,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(8324), 3,
- sym__automatic_semicolon,
- anon_sym_COMMA,
- anon_sym_SEMI,
- [154033] = 3,
- ACTIONS(8443), 1,
- anon_sym_as,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(8445), 2,
- anon_sym_COMMA,
- anon_sym_RBRACE,
- [154045] = 4,
- ACTIONS(8447), 1,
- sym_identifier,
- ACTIONS(8449), 1,
- anon_sym_LBRACK,
- ACTIONS(8451), 1,
- sym_private_property_identifier,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- [154059] = 4,
- ACTIONS(8453), 1,
- sym_identifier,
- ACTIONS(8455), 1,
- anon_sym_LBRACK,
- ACTIONS(8457), 1,
- sym_private_property_identifier,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- [154073] = 4,
- ACTIONS(8459), 1,
- sym_identifier,
- ACTIONS(8461), 1,
- anon_sym_LBRACK,
- ACTIONS(8463), 1,
- sym_private_property_identifier,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- [154087] = 4,
- ACTIONS(8465), 1,
- sym_identifier,
- ACTIONS(8467), 1,
- anon_sym_LBRACK,
- ACTIONS(8469), 1,
- sym_private_property_identifier,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- [154101] = 4,
- ACTIONS(2893), 1,
- anon_sym_RBRACK,
- ACTIONS(8471), 1,
- anon_sym_COMMA,
- STATE(5101), 1,
- aux_sym_tuple_type_repeat1,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- [154115] = 2,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(8473), 3,
- sym__automatic_semicolon,
- anon_sym_from,
- anon_sym_SEMI,
- [154125] = 2,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(8340), 3,
- sym__automatic_semicolon,
- anon_sym_COMMA,
- anon_sym_SEMI,
- [154135] = 2,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(8370), 3,
- sym__automatic_semicolon,
- anon_sym_COMMA,
- anon_sym_SEMI,
- [154145] = 2,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(8388), 3,
- sym__automatic_semicolon,
- anon_sym_COMMA,
- anon_sym_SEMI,
- [154155] = 4,
- ACTIONS(6972), 1,
- anon_sym_RBRACE,
- ACTIONS(8475), 1,
- anon_sym_COMMA,
- STATE(5081), 1,
- aux_sym_export_clause_repeat1,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- [154169] = 2,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(7264), 3,
- anon_sym_LBRACE,
- anon_sym_COLON,
- anon_sym_EQ_GT,
- [154179] = 2,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(8370), 3,
- sym__automatic_semicolon,
- anon_sym_COMMA,
- anon_sym_SEMI,
- [154189] = 4,
- ACTIONS(5644), 1,
- anon_sym_COMMA,
- ACTIONS(8477), 1,
- anon_sym_RBRACE,
- STATE(4691), 1,
- aux_sym_object_repeat1,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- [154203] = 4,
- ACTIONS(5113), 1,
- anon_sym_COMMA,
- ACTIONS(8479), 1,
- anon_sym_RBRACE,
- STATE(4698), 1,
- aux_sym_object_pattern_repeat1,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- [154217] = 2,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(8481), 3,
- sym__automatic_semicolon,
- anon_sym_COMMA,
- anon_sym_SEMI,
- [154227] = 4,
- ACTIONS(8483), 1,
- anon_sym_COMMA,
- ACTIONS(8486), 1,
- anon_sym_RBRACK,
- STATE(4674), 1,
- aux_sym_array_pattern_repeat1,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- [154241] = 3,
- ACTIONS(8131), 1,
- anon_sym_EQ,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(8488), 2,
- anon_sym_COMMA,
- anon_sym_RBRACE,
- [154253] = 4,
- ACTIONS(1931), 1,
- anon_sym_COMMA,
- ACTIONS(5041), 1,
- anon_sym_RPAREN,
- STATE(4681), 1,
- aux_sym_array_repeat1,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- [154267] = 4,
- ACTIONS(1931), 1,
- anon_sym_COMMA,
- ACTIONS(5041), 1,
- anon_sym_RPAREN,
- STATE(4511), 1,
- aux_sym_array_repeat1,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- [154281] = 2,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(8398), 3,
- sym__automatic_semicolon,
- anon_sym_COMMA,
- anon_sym_SEMI,
- [154291] = 5,
- ACTIONS(3), 1,
- sym_comment,
- ACTIONS(5), 1,
- sym_html_comment,
- ACTIONS(8490), 1,
- sym__glimmer_template_content,
- ACTIONS(8492), 1,
- sym_glimmer_closing_tag,
- STATE(4925), 1,
- aux_sym_glimmer_template_repeat1,
- [154307] = 2,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(8324), 3,
- sym__automatic_semicolon,
- anon_sym_COMMA,
- anon_sym_SEMI,
- [154317] = 4,
- ACTIONS(1931), 1,
- anon_sym_COMMA,
- ACTIONS(8494), 1,
- anon_sym_RPAREN,
- STATE(4511), 1,
- aux_sym_array_repeat1,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- [154331] = 4,
- ACTIONS(5644), 1,
- anon_sym_COMMA,
- ACTIONS(8392), 1,
- anon_sym_RBRACE,
- STATE(4691), 1,
- aux_sym_object_repeat1,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- [154345] = 4,
- ACTIONS(3167), 1,
- anon_sym_GT,
- ACTIONS(8496), 1,
- anon_sym_COMMA,
- STATE(4445), 1,
- aux_sym_implements_clause_repeat1,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- [154359] = 2,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(8324), 3,
- sym__automatic_semicolon,
- anon_sym_COMMA,
- anon_sym_SEMI,
- [154369] = 2,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(8382), 3,
- sym__automatic_semicolon,
- anon_sym_COMMA,
- anon_sym_SEMI,
- [154379] = 2,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(8340), 3,
- sym__automatic_semicolon,
- anon_sym_COMMA,
- anon_sym_SEMI,
- [154389] = 2,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(8324), 3,
- sym__automatic_semicolon,
- anon_sym_COMMA,
- anon_sym_SEMI,
- [154399] = 2,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(8481), 3,
- sym__automatic_semicolon,
- anon_sym_COMMA,
- anon_sym_SEMI,
- [154409] = 2,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(8324), 3,
- sym__automatic_semicolon,
- anon_sym_COMMA,
- anon_sym_SEMI,
- [154419] = 4,
- ACTIONS(8498), 1,
- anon_sym_LPAREN,
- ACTIONS(8500), 1,
- anon_sym_await,
- STATE(35), 1,
- sym__for_header,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- [154433] = 4,
- ACTIONS(8502), 1,
- anon_sym_COMMA,
- ACTIONS(8505), 1,
- anon_sym_RBRACE,
- STATE(4691), 1,
- aux_sym_object_repeat1,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- [154447] = 4,
- ACTIONS(3477), 1,
- anon_sym_COLON,
- ACTIONS(8507), 1,
- anon_sym_RPAREN,
- STATE(5721), 1,
- sym_type_annotation,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- [154461] = 2,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(8388), 3,
- sym__automatic_semicolon,
- anon_sym_COMMA,
- anon_sym_SEMI,
- [154471] = 4,
- ACTIONS(1931), 1,
- anon_sym_COMMA,
- ACTIONS(5043), 1,
- anon_sym_RPAREN,
- STATE(4701), 1,
- aux_sym_array_repeat1,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- [154485] = 4,
- ACTIONS(1931), 1,
- anon_sym_COMMA,
- ACTIONS(5043), 1,
- anon_sym_RPAREN,
- STATE(4511), 1,
- aux_sym_array_repeat1,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- [154499] = 2,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(8340), 3,
- sym__automatic_semicolon,
- anon_sym_COMMA,
- anon_sym_SEMI,
- [154509] = 2,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(8370), 3,
- sym__automatic_semicolon,
- anon_sym_COMMA,
- anon_sym_SEMI,
- [154519] = 4,
- ACTIONS(8509), 1,
- anon_sym_COMMA,
- ACTIONS(8512), 1,
- anon_sym_RBRACE,
- STATE(4698), 1,
- aux_sym_object_pattern_repeat1,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- [154533] = 2,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(8370), 3,
- sym__automatic_semicolon,
- anon_sym_COMMA,
- anon_sym_SEMI,
- [154543] = 2,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(8370), 3,
- sym__automatic_semicolon,
- anon_sym_COMMA,
- anon_sym_SEMI,
- [154553] = 4,
- ACTIONS(1931), 1,
- anon_sym_COMMA,
- ACTIONS(8514), 1,
- anon_sym_RPAREN,
- STATE(4511), 1,
- aux_sym_array_repeat1,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- [154567] = 2,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(8370), 3,
- sym__automatic_semicolon,
- anon_sym_COMMA,
- anon_sym_SEMI,
- [154577] = 4,
- ACTIONS(3161), 1,
- anon_sym_GT,
- ACTIONS(8516), 1,
- anon_sym_COMMA,
- STATE(4445), 1,
- aux_sym_implements_clause_repeat1,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- [154591] = 2,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(8324), 3,
- sym__automatic_semicolon,
- anon_sym_COMMA,
- anon_sym_SEMI,
- [154601] = 4,
- ACTIONS(6267), 1,
- anon_sym_DOT,
- ACTIONS(6572), 1,
- anon_sym_COLON,
- ACTIONS(8518), 1,
- anon_sym_GT,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- [154615] = 2,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(8324), 3,
- sym__automatic_semicolon,
- anon_sym_COMMA,
- anon_sym_SEMI,
- [154625] = 2,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(8332), 3,
- sym__automatic_semicolon,
- anon_sym_COMMA,
- anon_sym_SEMI,
- [154635] = 2,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(8340), 3,
- sym__automatic_semicolon,
- anon_sym_COMMA,
- anon_sym_SEMI,
- [154645] = 2,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(8370), 3,
- sym__automatic_semicolon,
- anon_sym_COMMA,
- anon_sym_SEMI,
- [154655] = 2,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(8370), 3,
- sym__automatic_semicolon,
- anon_sym_COMMA,
- anon_sym_SEMI,
- [154665] = 2,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(8386), 3,
- sym__automatic_semicolon,
- anon_sym_COMMA,
- anon_sym_SEMI,
- [154675] = 4,
- ACTIONS(8520), 1,
- anon_sym_LPAREN,
- ACTIONS(8522), 1,
- anon_sym_await,
- STATE(31), 1,
- sym__for_header,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- [154689] = 2,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(8524), 3,
- sym__automatic_semicolon,
- anon_sym_COMMA,
- anon_sym_SEMI,
- [154699] = 2,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(8382), 3,
- sym__automatic_semicolon,
- anon_sym_COMMA,
- anon_sym_SEMI,
- [154709] = 2,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(8332), 3,
- sym__automatic_semicolon,
- anon_sym_COMMA,
- anon_sym_SEMI,
- [154719] = 2,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(8398), 3,
- sym__automatic_semicolon,
- anon_sym_COMMA,
- anon_sym_SEMI,
- [154729] = 2,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(8338), 3,
- sym__automatic_semicolon,
- anon_sym_COMMA,
- anon_sym_SEMI,
- [154739] = 2,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(8324), 3,
- sym__automatic_semicolon,
- anon_sym_COMMA,
- anon_sym_SEMI,
- [154749] = 2,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(8386), 3,
- sym__automatic_semicolon,
- anon_sym_COMMA,
- anon_sym_SEMI,
- [154759] = 4,
- ACTIONS(8064), 1,
- anon_sym_from,
- ACTIONS(8526), 1,
- anon_sym_as,
- STATE(5460), 1,
- sym__from_clause,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- [154773] = 4,
- ACTIONS(2229), 1,
- anon_sym_LBRACE,
- ACTIONS(8528), 1,
- sym_identifier,
- STATE(4516), 1,
- sym_export_clause,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- [154787] = 2,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(8324), 3,
- sym__automatic_semicolon,
- anon_sym_COMMA,
- anon_sym_SEMI,
- [154797] = 5,
- ACTIONS(3), 1,
- sym_comment,
- ACTIONS(5), 1,
- sym_html_comment,
- ACTIONS(8530), 1,
- sym__glimmer_template_content,
- ACTIONS(8533), 1,
- sym_glimmer_closing_tag,
- STATE(4723), 1,
- aux_sym_glimmer_template_repeat1,
- [154813] = 2,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(8340), 3,
- sym__automatic_semicolon,
- anon_sym_COMMA,
- anon_sym_SEMI,
- [154823] = 2,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(8524), 3,
- sym__automatic_semicolon,
- anon_sym_COMMA,
- anon_sym_SEMI,
- [154833] = 2,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(8324), 3,
- sym__automatic_semicolon,
- anon_sym_COMMA,
- anon_sym_SEMI,
- [154843] = 2,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(8324), 3,
- sym__automatic_semicolon,
- anon_sym_COMMA,
- anon_sym_SEMI,
- [154853] = 3,
- ACTIONS(8535), 1,
- anon_sym_as,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(6399), 2,
- anon_sym_COMMA,
- anon_sym_RBRACE,
- [154865] = 2,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(8340), 3,
- sym__automatic_semicolon,
- anon_sym_COMMA,
- anon_sym_SEMI,
- [154875] = 4,
- ACTIONS(7118), 1,
- anon_sym_const,
- ACTIONS(8119), 1,
- sym_identifier,
- STATE(5032), 1,
- sym_type_parameter,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- [154889] = 2,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(8370), 3,
- sym__automatic_semicolon,
- anon_sym_COMMA,
- anon_sym_SEMI,
- [154899] = 2,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(8537), 3,
- sym__automatic_semicolon,
- anon_sym_COMMA,
- anon_sym_SEMI,
- [154909] = 2,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(8524), 3,
- sym__automatic_semicolon,
- anon_sym_COMMA,
- anon_sym_SEMI,
- [154919] = 4,
- ACTIONS(6397), 1,
- anon_sym_type,
- ACTIONS(8539), 1,
- sym_identifier,
- STATE(5451), 1,
- sym__import_identifier,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- [154933] = 4,
- ACTIONS(8541), 1,
- sym_identifier,
- STATE(3898), 1,
- sym_decorator_member_expression,
- STATE(5611), 1,
- sym_decorator_call_expression,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- [154947] = 2,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(8543), 3,
- sym__automatic_semicolon,
- anon_sym_COMMA,
- anon_sym_SEMI,
- [154957] = 2,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(8338), 3,
- sym__automatic_semicolon,
- anon_sym_COMMA,
- anon_sym_SEMI,
- [154967] = 2,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(8370), 3,
- sym__automatic_semicolon,
- anon_sym_COMMA,
- anon_sym_SEMI,
- [154977] = 2,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(8543), 3,
- sym__automatic_semicolon,
- anon_sym_COMMA,
- anon_sym_SEMI,
- [154987] = 2,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(8545), 3,
- sym__automatic_semicolon,
- anon_sym_COMMA,
- anon_sym_SEMI,
- [154997] = 2,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(8398), 3,
- sym__automatic_semicolon,
- anon_sym_COMMA,
- anon_sym_SEMI,
- [155007] = 4,
- ACTIONS(6397), 1,
- anon_sym_type,
- ACTIONS(8547), 1,
- sym_identifier,
- STATE(5493), 1,
- sym__import_identifier,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- [155021] = 2,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(8324), 3,
- sym__automatic_semicolon,
- anon_sym_COMMA,
- anon_sym_SEMI,
- [155031] = 4,
- ACTIONS(8549), 1,
- anon_sym_COMMA,
- ACTIONS(8551), 1,
- anon_sym_GT,
- STATE(5171), 1,
- aux_sym_type_parameters_repeat1,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- [155045] = 2,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(8382), 3,
- sym__automatic_semicolon,
- anon_sym_COMMA,
- anon_sym_SEMI,
- [155055] = 4,
- ACTIONS(6759), 1,
- anon_sym_RBRACE,
- ACTIONS(8553), 1,
- anon_sym_COMMA,
- STATE(4614), 1,
- aux_sym_named_imports_repeat1,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- [155069] = 2,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(8324), 3,
- sym__automatic_semicolon,
- anon_sym_COMMA,
- anon_sym_SEMI,
- [155079] = 2,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(8340), 3,
- sym__automatic_semicolon,
- anon_sym_COMMA,
- anon_sym_SEMI,
- [155089] = 2,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(8386), 3,
- sym__automatic_semicolon,
- anon_sym_COMMA,
- anon_sym_SEMI,
- [155099] = 2,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(8398), 3,
- sym__automatic_semicolon,
- anon_sym_COMMA,
- anon_sym_SEMI,
- [155109] = 4,
- ACTIONS(2473), 1,
- anon_sym_while,
- ACTIONS(8555), 1,
- anon_sym_else,
- STATE(764), 1,
- sym_else_clause,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- [155123] = 3,
- ACTIONS(7192), 1,
- anon_sym_DOT,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(8557), 2,
- sym__automatic_semicolon,
- anon_sym_SEMI,
- [155135] = 4,
- ACTIONS(5987), 1,
- anon_sym_LPAREN,
- ACTIONS(8559), 1,
- anon_sym_DOT,
- STATE(2848), 1,
- sym_arguments,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- [155149] = 3,
- ACTIONS(7192), 1,
- anon_sym_DOT,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(8561), 2,
- sym__automatic_semicolon,
- anon_sym_SEMI,
- [155161] = 2,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(8398), 3,
- sym__automatic_semicolon,
- anon_sym_COMMA,
- anon_sym_SEMI,
- [155171] = 3,
- ACTIONS(7194), 1,
- anon_sym_DOT,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(8561), 2,
- sym__automatic_semicolon,
- anon_sym_SEMI,
- [155183] = 2,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(8382), 3,
- sym__automatic_semicolon,
- anon_sym_COMMA,
- anon_sym_SEMI,
- [155193] = 2,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(8324), 3,
- sym__automatic_semicolon,
- anon_sym_COMMA,
- anon_sym_SEMI,
- [155203] = 4,
- ACTIONS(5113), 1,
- anon_sym_COMMA,
- ACTIONS(8563), 1,
- anon_sym_RBRACE,
- STATE(4698), 1,
- aux_sym_object_pattern_repeat1,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- [155217] = 2,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(8565), 3,
- sym__automatic_semicolon,
- anon_sym_COMMA,
- anon_sym_SEMI,
- [155227] = 3,
- ACTIONS(8567), 1,
- anon_sym_LBRACE,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(8033), 2,
- anon_sym_extends,
- anon_sym_LBRACE_PIPE,
- [155239] = 2,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(8324), 3,
- sym__automatic_semicolon,
- anon_sym_COMMA,
- anon_sym_SEMI,
- [155249] = 2,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(8340), 3,
- sym__automatic_semicolon,
- anon_sym_COMMA,
- anon_sym_SEMI,
- [155259] = 2,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(8382), 3,
- sym__automatic_semicolon,
- anon_sym_COMMA,
- anon_sym_SEMI,
- [155269] = 2,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(8398), 3,
- sym__automatic_semicolon,
- anon_sym_COMMA,
- anon_sym_SEMI,
- [155279] = 4,
- ACTIONS(222), 1,
- anon_sym_LBRACE_PIPE,
- ACTIONS(1498), 1,
- anon_sym_LBRACE,
- STATE(780), 1,
- sym_object_type,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- [155293] = 2,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(8324), 3,
- sym__automatic_semicolon,
- anon_sym_COMMA,
- anon_sym_SEMI,
- [155303] = 3,
- ACTIONS(7194), 1,
- anon_sym_DOT,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(8557), 2,
- sym__automatic_semicolon,
- anon_sym_SEMI,
- [155315] = 2,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(8324), 3,
- sym__automatic_semicolon,
- anon_sym_COMMA,
- anon_sym_SEMI,
- [155325] = 4,
- ACTIONS(8569), 1,
- anon_sym_COMMA,
- ACTIONS(8571), 1,
- anon_sym_RBRACK,
- STATE(4872), 1,
- aux_sym_tuple_type_repeat1,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- [155339] = 2,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(8573), 3,
- anon_sym_LBRACE,
- anon_sym_COMMA,
- anon_sym_implements,
- [155349] = 4,
- ACTIONS(8575), 1,
- sym_identifier,
- ACTIONS(8577), 1,
- anon_sym_LBRACK,
- ACTIONS(8579), 1,
- sym_private_property_identifier,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- [155363] = 2,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(8340), 3,
- sym__automatic_semicolon,
- anon_sym_COMMA,
- anon_sym_SEMI,
- [155373] = 2,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(8324), 3,
- sym__automatic_semicolon,
- anon_sym_COMMA,
- anon_sym_SEMI,
- [155383] = 2,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(8324), 3,
- sym__automatic_semicolon,
- anon_sym_COMMA,
- anon_sym_SEMI,
- [155393] = 2,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(8340), 3,
- sym__automatic_semicolon,
- anon_sym_COMMA,
- anon_sym_SEMI,
- [155403] = 2,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(8370), 3,
- sym__automatic_semicolon,
- anon_sym_COMMA,
- anon_sym_SEMI,
- [155413] = 2,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(8370), 3,
- sym__automatic_semicolon,
- anon_sym_COMMA,
- anon_sym_SEMI,
- [155423] = 4,
- ACTIONS(7118), 1,
- anon_sym_const,
- ACTIONS(8119), 1,
- sym_identifier,
- STATE(4744), 1,
- sym_type_parameter,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- [155437] = 2,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(8396), 3,
- sym__automatic_semicolon,
- anon_sym_COMMA,
- anon_sym_SEMI,
- [155447] = 4,
- ACTIONS(5087), 1,
- anon_sym_extends,
- ACTIONS(8581), 1,
- anon_sym_AMP,
- ACTIONS(8583), 1,
- anon_sym_PIPE,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- [155461] = 2,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(8398), 3,
- sym__automatic_semicolon,
- anon_sym_COMMA,
- anon_sym_SEMI,
- [155471] = 2,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(8382), 3,
- sym__automatic_semicolon,
- anon_sym_COMMA,
- anon_sym_SEMI,
- [155481] = 2,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(8382), 3,
- sym__automatic_semicolon,
- anon_sym_COMMA,
- anon_sym_SEMI,
- [155491] = 2,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(8324), 3,
- sym__automatic_semicolon,
- anon_sym_COMMA,
- anon_sym_SEMI,
- [155501] = 2,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(8388), 3,
- sym__automatic_semicolon,
- anon_sym_COMMA,
- anon_sym_SEMI,
- [155511] = 2,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(8388), 3,
- sym__automatic_semicolon,
- anon_sym_COMMA,
- anon_sym_SEMI,
- [155521] = 2,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(8340), 3,
- sym__automatic_semicolon,
- anon_sym_COMMA,
- anon_sym_SEMI,
- [155531] = 2,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(8324), 3,
- sym__automatic_semicolon,
- anon_sym_COMMA,
- anon_sym_SEMI,
- [155541] = 2,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(8324), 3,
- sym__automatic_semicolon,
- anon_sym_COMMA,
- anon_sym_SEMI,
- [155551] = 4,
- ACTIONS(7472), 1,
- anon_sym_AMP,
- ACTIONS(7478), 1,
- anon_sym_PIPE,
- ACTIONS(7480), 1,
- anon_sym_extends,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- [155565] = 2,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(8382), 3,
- sym__automatic_semicolon,
- anon_sym_COMMA,
- anon_sym_SEMI,
- [155575] = 2,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(8388), 3,
- sym__automatic_semicolon,
- anon_sym_COMMA,
- anon_sym_SEMI,
- [155585] = 2,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(8585), 3,
- sym__automatic_semicolon,
- anon_sym_COMMA,
- anon_sym_SEMI,
- [155595] = 2,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(8340), 3,
- sym__automatic_semicolon,
- anon_sym_COMMA,
- anon_sym_SEMI,
- [155605] = 2,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(8370), 3,
- sym__automatic_semicolon,
- anon_sym_COMMA,
- anon_sym_SEMI,
- [155615] = 2,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(8382), 3,
- sym__automatic_semicolon,
- anon_sym_COMMA,
- anon_sym_SEMI,
- [155625] = 2,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(8587), 3,
- sym__automatic_semicolon,
- anon_sym_COMMA,
- anon_sym_SEMI,
- [155635] = 4,
- ACTIONS(8589), 1,
- sym_identifier,
- ACTIONS(8591), 1,
- anon_sym_LBRACK,
- ACTIONS(8593), 1,
- sym_private_property_identifier,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- [155649] = 2,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(8370), 3,
- sym__automatic_semicolon,
- anon_sym_COMMA,
- anon_sym_SEMI,
- [155659] = 2,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(8370), 3,
- sym__automatic_semicolon,
- anon_sym_COMMA,
- anon_sym_SEMI,
- [155669] = 2,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(8370), 3,
- sym__automatic_semicolon,
- anon_sym_COMMA,
- anon_sym_SEMI,
- [155679] = 4,
- ACTIONS(8595), 1,
- sym_identifier,
- ACTIONS(8597), 1,
- anon_sym_LBRACK,
- ACTIONS(8599), 1,
- sym_private_property_identifier,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- [155693] = 2,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(8332), 3,
- sym__automatic_semicolon,
- anon_sym_COMMA,
- anon_sym_SEMI,
- [155703] = 2,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(8324), 3,
- sym__automatic_semicolon,
- anon_sym_COMMA,
- anon_sym_SEMI,
- [155713] = 2,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(8396), 3,
- sym__automatic_semicolon,
- anon_sym_COMMA,
- anon_sym_SEMI,
- [155723] = 2,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(8481), 3,
- sym__automatic_semicolon,
- anon_sym_COMMA,
- anon_sym_SEMI,
- [155733] = 2,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(8324), 3,
- sym__automatic_semicolon,
- anon_sym_COMMA,
- anon_sym_SEMI,
- [155743] = 2,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(8386), 3,
- sym__automatic_semicolon,
- anon_sym_COMMA,
- anon_sym_SEMI,
- [155753] = 2,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(8340), 3,
- sym__automatic_semicolon,
- anon_sym_COMMA,
- anon_sym_SEMI,
- [155763] = 2,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(8370), 3,
- sym__automatic_semicolon,
- anon_sym_COMMA,
- anon_sym_SEMI,
- [155773] = 4,
- ACTIONS(8601), 1,
- sym_identifier,
- ACTIONS(8603), 1,
- anon_sym_LBRACK,
- ACTIONS(8605), 1,
- sym_private_property_identifier,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- [155787] = 2,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(8316), 3,
- sym__automatic_semicolon,
- anon_sym_COMMA,
- anon_sym_SEMI,
- [155797] = 2,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(8370), 3,
- sym__automatic_semicolon,
- anon_sym_COMMA,
- anon_sym_SEMI,
- [155807] = 2,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(8370), 3,
- sym__automatic_semicolon,
- anon_sym_COMMA,
- anon_sym_SEMI,
- [155817] = 2,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(8388), 3,
- sym__automatic_semicolon,
- anon_sym_COMMA,
- anon_sym_SEMI,
- [155827] = 2,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(8370), 3,
- sym__automatic_semicolon,
- anon_sym_COMMA,
- anon_sym_SEMI,
- [155837] = 4,
- ACTIONS(1040), 1,
- anon_sym_LBRACE_PIPE,
- ACTIONS(1586), 1,
- anon_sym_LBRACE,
- STATE(4063), 1,
- sym_object_type,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- [155851] = 2,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(8481), 3,
- sym__automatic_semicolon,
- anon_sym_COMMA,
- anon_sym_SEMI,
- [155861] = 4,
- ACTIONS(8607), 1,
- anon_sym_COMMA,
- ACTIONS(8609), 1,
- anon_sym_RBRACE,
- STATE(4898), 1,
- aux_sym_enum_body_repeat1,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- [155875] = 4,
- ACTIONS(1931), 1,
- anon_sym_COMMA,
- ACTIONS(8611), 1,
- anon_sym_RPAREN,
- STATE(4511), 1,
- aux_sym_array_repeat1,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- [155889] = 2,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(8481), 3,
- sym__automatic_semicolon,
- anon_sym_COMMA,
- anon_sym_SEMI,
- [155899] = 4,
- ACTIONS(3171), 1,
- anon_sym_GT,
- ACTIONS(8613), 1,
- anon_sym_COMMA,
- STATE(4445), 1,
- aux_sym_implements_clause_repeat1,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- [155913] = 4,
- ACTIONS(8615), 1,
- sym_identifier,
- ACTIONS(8617), 1,
- anon_sym_LBRACK,
- ACTIONS(8619), 1,
- sym_private_property_identifier,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- [155927] = 2,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(8481), 3,
- sym__automatic_semicolon,
- anon_sym_COMMA,
- anon_sym_SEMI,
- [155937] = 2,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(8481), 3,
- sym__automatic_semicolon,
- anon_sym_COMMA,
- anon_sym_SEMI,
- [155947] = 2,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(8338), 3,
- sym__automatic_semicolon,
- anon_sym_COMMA,
- anon_sym_SEMI,
- [155957] = 3,
- ACTIONS(8621), 1,
- anon_sym_EQ,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(8623), 2,
- anon_sym_COMMA,
- anon_sym_from,
- [155969] = 5,
- ACTIONS(3), 1,
- sym_comment,
- ACTIONS(5), 1,
- sym_html_comment,
- ACTIONS(8625), 1,
- sym__glimmer_template_content,
- ACTIONS(8627), 1,
- sym_glimmer_closing_tag,
- STATE(5176), 1,
- aux_sym_glimmer_template_repeat1,
- [155985] = 4,
- ACTIONS(8629), 1,
- sym_identifier,
- STATE(3844), 1,
- sym_decorator_member_expression,
- STATE(5775), 1,
- sym_decorator_call_expression,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- [155999] = 2,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(6399), 3,
- anon_sym_COMMA,
- anon_sym_RBRACE,
- anon_sym_from,
- [156009] = 3,
- ACTIONS(8631), 1,
- anon_sym_EQ,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(8623), 2,
- anon_sym_COMMA,
- anon_sym_from,
- [156021] = 2,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(8386), 3,
- sym__automatic_semicolon,
- anon_sym_COMMA,
- anon_sym_SEMI,
- [156031] = 4,
- ACTIONS(5113), 1,
- anon_sym_COMMA,
- ACTIONS(8633), 1,
- anon_sym_RBRACE,
- STATE(5158), 1,
- aux_sym_object_pattern_repeat1,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- [156045] = 4,
- ACTIONS(5644), 1,
- anon_sym_COMMA,
- ACTIONS(8635), 1,
- anon_sym_RBRACE,
- STATE(4565), 1,
- aux_sym_object_repeat1,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- [156059] = 2,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(8637), 3,
- sym__automatic_semicolon,
- anon_sym_COMMA,
- anon_sym_SEMI,
- [156069] = 2,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(8639), 3,
- sym__automatic_semicolon,
- anon_sym_COMMA,
- anon_sym_SEMI,
- [156079] = 4,
- ACTIONS(2905), 1,
- anon_sym_RBRACK,
- ACTIONS(8641), 1,
- anon_sym_COMMA,
- STATE(5101), 1,
- aux_sym_tuple_type_repeat1,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- [156093] = 4,
- ACTIONS(5644), 1,
- anon_sym_COMMA,
- ACTIONS(8635), 1,
- anon_sym_RBRACE,
- STATE(4691), 1,
- aux_sym_object_repeat1,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- [156107] = 2,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(8643), 3,
- sym__automatic_semicolon,
- anon_sym_COMMA,
- anon_sym_SEMI,
- [156117] = 2,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(8386), 3,
- sym__automatic_semicolon,
- anon_sym_COMMA,
- anon_sym_SEMI,
- [156127] = 2,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(8645), 3,
- sym__automatic_semicolon,
- anon_sym_COMMA,
- anon_sym_SEMI,
- [156137] = 2,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(8645), 3,
- sym__automatic_semicolon,
- anon_sym_COMMA,
- anon_sym_SEMI,
- [156147] = 2,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(8645), 3,
- sym__automatic_semicolon,
- anon_sym_COMMA,
- anon_sym_SEMI,
- [156157] = 2,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(8645), 3,
- sym__automatic_semicolon,
- anon_sym_COMMA,
- anon_sym_SEMI,
- [156167] = 2,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(8647), 3,
- sym__automatic_semicolon,
- anon_sym_COMMA,
- anon_sym_SEMI,
- [156177] = 2,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(8647), 3,
- sym__automatic_semicolon,
- anon_sym_COMMA,
- anon_sym_SEMI,
- [156187] = 4,
- ACTIONS(5113), 1,
- anon_sym_COMMA,
- ACTIONS(8633), 1,
- anon_sym_RBRACE,
- STATE(4698), 1,
- aux_sym_object_pattern_repeat1,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- [156201] = 2,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(8649), 3,
- sym__automatic_semicolon,
- anon_sym_COMMA,
- anon_sym_SEMI,
- [156211] = 2,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(8645), 3,
- sym__automatic_semicolon,
- anon_sym_COMMA,
- anon_sym_SEMI,
- [156221] = 2,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(8645), 3,
- sym__automatic_semicolon,
- anon_sym_COMMA,
- anon_sym_SEMI,
- [156231] = 2,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(8332), 3,
- sym__automatic_semicolon,
- anon_sym_COMMA,
- anon_sym_SEMI,
- [156241] = 2,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(8481), 3,
- sym__automatic_semicolon,
- anon_sym_COMMA,
- anon_sym_SEMI,
- [156251] = 2,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(8645), 3,
- sym__automatic_semicolon,
- anon_sym_COMMA,
- anon_sym_SEMI,
- [156261] = 2,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(8386), 3,
- sym__automatic_semicolon,
- anon_sym_COMMA,
- anon_sym_SEMI,
- [156271] = 2,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(8645), 3,
- sym__automatic_semicolon,
- anon_sym_COMMA,
- anon_sym_SEMI,
- [156281] = 3,
- ACTIONS(8651), 1,
- anon_sym_as,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(8623), 2,
- anon_sym_COMMA,
- anon_sym_RBRACE,
- [156293] = 4,
- ACTIONS(8653), 1,
- anon_sym_COMMA,
- ACTIONS(8655), 1,
- anon_sym_RBRACE,
- STATE(4746), 1,
- aux_sym_named_imports_repeat1,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- [156307] = 2,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(8645), 3,
- sym__automatic_semicolon,
- anon_sym_COMMA,
- anon_sym_SEMI,
- [156317] = 2,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(8338), 3,
- sym__automatic_semicolon,
- anon_sym_COMMA,
- anon_sym_SEMI,
- [156327] = 4,
- ACTIONS(5113), 1,
- anon_sym_COMMA,
- ACTIONS(8563), 1,
- anon_sym_RBRACE,
- STATE(4621), 1,
- aux_sym_object_pattern_repeat1,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- [156341] = 2,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(8332), 3,
- sym__automatic_semicolon,
- anon_sym_COMMA,
- anon_sym_SEMI,
- [156351] = 2,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(8645), 3,
- sym__automatic_semicolon,
- anon_sym_COMMA,
- anon_sym_SEMI,
- [156361] = 2,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(8647), 3,
- sym__automatic_semicolon,
- anon_sym_COMMA,
- anon_sym_SEMI,
- [156371] = 2,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(8647), 3,
- sym__automatic_semicolon,
- anon_sym_COMMA,
- anon_sym_SEMI,
- [156381] = 2,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(8649), 3,
- sym__automatic_semicolon,
- anon_sym_COMMA,
- anon_sym_SEMI,
- [156391] = 2,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(8645), 3,
- sym__automatic_semicolon,
- anon_sym_COMMA,
- anon_sym_SEMI,
- [156401] = 2,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(8645), 3,
- sym__automatic_semicolon,
- anon_sym_COMMA,
- anon_sym_SEMI,
- [156411] = 2,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(8657), 3,
- sym__automatic_semicolon,
- anon_sym_COMMA,
- anon_sym_SEMI,
- [156421] = 2,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(8659), 3,
- sym__automatic_semicolon,
- anon_sym_COMMA,
- anon_sym_SEMI,
- [156431] = 2,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(8647), 3,
- sym__automatic_semicolon,
- anon_sym_COMMA,
- anon_sym_SEMI,
- [156441] = 4,
- ACTIONS(2891), 1,
- anon_sym_RBRACK,
- ACTIONS(8661), 1,
- anon_sym_COMMA,
- STATE(5101), 1,
- aux_sym_tuple_type_repeat1,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- [156455] = 2,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(8647), 3,
- sym__automatic_semicolon,
- anon_sym_COMMA,
- anon_sym_SEMI,
- [156465] = 2,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(8649), 3,
- sym__automatic_semicolon,
- anon_sym_COMMA,
- anon_sym_SEMI,
- [156475] = 2,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(8647), 3,
- sym__automatic_semicolon,
- anon_sym_COMMA,
- anon_sym_SEMI,
- [156485] = 2,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(8647), 3,
- sym__automatic_semicolon,
- anon_sym_COMMA,
- anon_sym_SEMI,
- [156495] = 2,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(8649), 3,
- sym__automatic_semicolon,
- anon_sym_COMMA,
- anon_sym_SEMI,
- [156505] = 2,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(8645), 3,
- sym__automatic_semicolon,
- anon_sym_COMMA,
- anon_sym_SEMI,
- [156515] = 2,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(8645), 3,
- sym__automatic_semicolon,
- anon_sym_COMMA,
- anon_sym_SEMI,
- [156525] = 2,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(8647), 3,
- sym__automatic_semicolon,
- anon_sym_COMMA,
- anon_sym_SEMI,
- [156535] = 2,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(8647), 3,
- sym__automatic_semicolon,
- anon_sym_COMMA,
- anon_sym_SEMI,
- [156545] = 2,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(8649), 3,
- sym__automatic_semicolon,
- anon_sym_COMMA,
- anon_sym_SEMI,
- [156555] = 2,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(8645), 3,
- sym__automatic_semicolon,
- anon_sym_COMMA,
- anon_sym_SEMI,
- [156565] = 2,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(8645), 3,
- sym__automatic_semicolon,
- anon_sym_COMMA,
- anon_sym_SEMI,
- [156575] = 2,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(8645), 3,
- sym__automatic_semicolon,
- anon_sym_COMMA,
- anon_sym_SEMI,
- [156585] = 2,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(8645), 3,
- sym__automatic_semicolon,
- anon_sym_COMMA,
- anon_sym_SEMI,
- [156595] = 4,
- ACTIONS(7118), 1,
- anon_sym_const,
- ACTIONS(8119), 1,
- sym_identifier,
- STATE(5223), 1,
- sym_type_parameter,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- [156609] = 4,
- ACTIONS(8663), 1,
- sym_identifier,
- ACTIONS(8665), 1,
- anon_sym_require,
- STATE(4768), 1,
- sym_nested_identifier,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- [156623] = 4,
- ACTIONS(8667), 1,
- anon_sym_COMMA,
- ACTIONS(8669), 1,
- anon_sym_RBRACK,
- STATE(4582), 1,
- aux_sym_tuple_type_repeat1,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- [156637] = 4,
- ACTIONS(8671), 1,
- anon_sym_COMMA,
- ACTIONS(8673), 1,
- anon_sym_RPAREN,
- STATE(5070), 1,
- aux_sym_formal_parameters_repeat1,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- [156651] = 2,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(8386), 3,
- sym__automatic_semicolon,
- anon_sym_COMMA,
- anon_sym_SEMI,
- [156661] = 4,
- ACTIONS(8675), 1,
- anon_sym_COMMA,
- ACTIONS(8677), 1,
- anon_sym_RPAREN,
- STATE(4591), 1,
- aux_sym_formal_parameters_repeat1,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- [156675] = 4,
- ACTIONS(8679), 1,
- anon_sym_COMMA,
- ACTIONS(8681), 1,
- anon_sym_RBRACE,
- STATE(5141), 1,
- aux_sym_enum_body_repeat1,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- [156689] = 2,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(8647), 3,
- sym__automatic_semicolon,
- anon_sym_COMMA,
- anon_sym_SEMI,
- [156699] = 4,
- ACTIONS(8683), 1,
- anon_sym_COMMA,
- ACTIONS(8685), 1,
- anon_sym_RBRACE,
- STATE(5141), 1,
- aux_sym_enum_body_repeat1,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- [156713] = 2,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(8386), 3,
- sym__automatic_semicolon,
- anon_sym_COMMA,
- anon_sym_SEMI,
- [156723] = 4,
- ACTIONS(8687), 1,
- anon_sym_COMMA,
- ACTIONS(8689), 1,
- anon_sym_RBRACE,
- STATE(5141), 1,
- aux_sym_enum_body_repeat1,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- [156737] = 4,
- ACTIONS(8691), 1,
- anon_sym_COMMA,
- ACTIONS(8693), 1,
- anon_sym_RBRACE,
- STATE(5141), 1,
- aux_sym_enum_body_repeat1,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- [156751] = 2,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(8647), 3,
- sym__automatic_semicolon,
- anon_sym_COMMA,
- anon_sym_SEMI,
- [156761] = 2,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(8649), 3,
- sym__automatic_semicolon,
- anon_sym_COMMA,
- anon_sym_SEMI,
- [156771] = 2,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(8645), 3,
- sym__automatic_semicolon,
- anon_sym_COMMA,
- anon_sym_SEMI,
- [156781] = 2,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(8338), 3,
- sym__automatic_semicolon,
- anon_sym_COMMA,
- anon_sym_SEMI,
- [156791] = 4,
- ACTIONS(6666), 1,
- anon_sym_LPAREN,
- ACTIONS(8559), 1,
- anon_sym_DOT,
- STATE(2848), 1,
- sym_arguments,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- [156805] = 2,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(8645), 3,
- sym__automatic_semicolon,
- anon_sym_COMMA,
- anon_sym_SEMI,
- [156815] = 2,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(8645), 3,
- sym__automatic_semicolon,
- anon_sym_COMMA,
- anon_sym_SEMI,
- [156825] = 4,
- ACTIONS(1700), 1,
- anon_sym_COMMA,
- ACTIONS(8133), 1,
- anon_sym_RBRACK,
- STATE(4594), 1,
- aux_sym_array_pattern_repeat1,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- [156839] = 4,
- ACTIONS(1931), 1,
- anon_sym_COMMA,
- ACTIONS(5013), 1,
- anon_sym_RBRACK,
- STATE(4593), 1,
- aux_sym_array_repeat1,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- [156853] = 2,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(8645), 3,
- sym__automatic_semicolon,
- anon_sym_COMMA,
- anon_sym_SEMI,
- [156863] = 2,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(8645), 3,
- sym__automatic_semicolon,
- anon_sym_COMMA,
- anon_sym_SEMI,
- [156873] = 2,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(8396), 3,
- sym__automatic_semicolon,
- anon_sym_COMMA,
- anon_sym_SEMI,
- [156883] = 2,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(8645), 3,
- sym__automatic_semicolon,
- anon_sym_COMMA,
- anon_sym_SEMI,
- [156893] = 4,
- ACTIONS(1931), 1,
- anon_sym_COMMA,
- ACTIONS(5013), 1,
- anon_sym_RBRACK,
- STATE(4511), 1,
- aux_sym_array_repeat1,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- [156907] = 2,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(8647), 3,
- sym__automatic_semicolon,
- anon_sym_COMMA,
- anon_sym_SEMI,
- [156917] = 2,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(8647), 3,
- sym__automatic_semicolon,
- anon_sym_COMMA,
- anon_sym_SEMI,
- [156927] = 2,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(8649), 3,
- sym__automatic_semicolon,
- anon_sym_COMMA,
- anon_sym_SEMI,
- [156937] = 2,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(8645), 3,
- sym__automatic_semicolon,
- anon_sym_COMMA,
- anon_sym_SEMI,
- [156947] = 2,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(8695), 3,
- sym__automatic_semicolon,
- anon_sym_COMMA,
- anon_sym_SEMI,
- [156957] = 2,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(7858), 3,
- sym__automatic_semicolon,
- anon_sym_COMMA,
- anon_sym_SEMI,
- [156967] = 2,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(7210), 3,
- anon_sym_LBRACE,
- anon_sym_COLON,
- anon_sym_EQ_GT,
- [156977] = 2,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(8645), 3,
- sym__automatic_semicolon,
- anon_sym_COMMA,
- anon_sym_SEMI,
- [156987] = 4,
- ACTIONS(8697), 1,
- anon_sym_COMMA,
- ACTIONS(8700), 1,
- anon_sym_RPAREN,
- STATE(4921), 1,
- aux_sym_formal_parameters_repeat1,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- [157001] = 2,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(8645), 3,
- sym__automatic_semicolon,
- anon_sym_COMMA,
- anon_sym_SEMI,
- [157011] = 4,
- ACTIONS(1700), 1,
- anon_sym_COMMA,
- ACTIONS(8133), 1,
- anon_sym_RBRACK,
- STATE(4674), 1,
- aux_sym_array_pattern_repeat1,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- [157025] = 2,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(8645), 3,
- sym__automatic_semicolon,
- anon_sym_COMMA,
- anon_sym_SEMI,
- [157035] = 5,
- ACTIONS(3), 1,
- sym_comment,
- ACTIONS(5), 1,
- sym_html_comment,
- ACTIONS(8702), 1,
- sym__glimmer_template_content,
- ACTIONS(8704), 1,
- sym_glimmer_closing_tag,
- STATE(4723), 1,
- aux_sym_glimmer_template_repeat1,
- [157051] = 2,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(7858), 3,
- sym__automatic_semicolon,
- anon_sym_COMMA,
- anon_sym_SEMI,
- [157061] = 2,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(8338), 3,
- sym__automatic_semicolon,
- anon_sym_COMMA,
- anon_sym_SEMI,
- [157071] = 2,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(8386), 3,
- sym__automatic_semicolon,
- anon_sym_COMMA,
- anon_sym_SEMI,
- [157081] = 2,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(8706), 3,
- sym__automatic_semicolon,
- anon_sym_from,
- anon_sym_SEMI,
- [157091] = 2,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(8647), 3,
- sym__automatic_semicolon,
- anon_sym_COMMA,
- anon_sym_SEMI,
- [157101] = 2,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(8647), 3,
- sym__automatic_semicolon,
- anon_sym_COMMA,
- anon_sym_SEMI,
- [157111] = 2,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(8649), 3,
- sym__automatic_semicolon,
- anon_sym_COMMA,
- anon_sym_SEMI,
- [157121] = 2,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(8645), 3,
- sym__automatic_semicolon,
- anon_sym_COMMA,
- anon_sym_SEMI,
- [157131] = 2,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(8645), 3,
- sym__automatic_semicolon,
- anon_sym_COMMA,
- anon_sym_SEMI,
- [157141] = 2,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(8708), 3,
- sym__automatic_semicolon,
- anon_sym_COMMA,
- anon_sym_SEMI,
- [157151] = 2,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(8659), 3,
- sym__automatic_semicolon,
- anon_sym_COMMA,
- anon_sym_SEMI,
- [157161] = 2,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(8647), 3,
- sym__automatic_semicolon,
- anon_sym_COMMA,
- anon_sym_SEMI,
- [157171] = 4,
- ACTIONS(8710), 1,
- anon_sym_COMMA,
- ACTIONS(8713), 1,
- anon_sym_GT,
- STATE(4938), 1,
- aux_sym_type_parameters_repeat1,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- [157185] = 2,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(8647), 3,
- sym__automatic_semicolon,
- anon_sym_COMMA,
- anon_sym_SEMI,
- [157195] = 3,
- ACTIONS(4332), 1,
- anon_sym_LBRACE,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(4334), 2,
- anon_sym_COMMA,
- anon_sym_LBRACE_PIPE,
- [157207] = 4,
- ACTIONS(1594), 1,
- anon_sym_DQUOTE,
- ACTIONS(1596), 1,
- anon_sym_SQUOTE,
- STATE(4462), 1,
- sym_string,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- [157221] = 2,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(8649), 3,
- sym__automatic_semicolon,
- anon_sym_COMMA,
- anon_sym_SEMI,
- [157231] = 2,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(8647), 3,
- sym__automatic_semicolon,
- anon_sym_COMMA,
- anon_sym_SEMI,
- [157241] = 2,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(8338), 3,
- sym__automatic_semicolon,
- anon_sym_COMMA,
- anon_sym_SEMI,
- [157251] = 3,
- ACTIONS(8715), 1,
- anon_sym_LBRACE,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(7936), 2,
- anon_sym_extends,
- anon_sym_LBRACE_PIPE,
- [157263] = 2,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(8647), 3,
- sym__automatic_semicolon,
- anon_sym_COMMA,
- anon_sym_SEMI,
- [157273] = 2,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(8649), 3,
- sym__automatic_semicolon,
- anon_sym_COMMA,
- anon_sym_SEMI,
- [157283] = 2,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(8645), 3,
- sym__automatic_semicolon,
- anon_sym_COMMA,
- anon_sym_SEMI,
- [157293] = 2,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(8645), 3,
- sym__automatic_semicolon,
- anon_sym_COMMA,
- anon_sym_SEMI,
- [157303] = 2,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(8647), 3,
- sym__automatic_semicolon,
- anon_sym_COMMA,
- anon_sym_SEMI,
- [157313] = 4,
- ACTIONS(8064), 1,
- anon_sym_from,
- ACTIONS(8526), 1,
- anon_sym_as,
- STATE(5283), 1,
- sym__from_clause,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- [157327] = 2,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(8647), 3,
- sym__automatic_semicolon,
- anon_sym_COMMA,
- anon_sym_SEMI,
- [157337] = 2,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(8649), 3,
- sym__automatic_semicolon,
- anon_sym_COMMA,
- anon_sym_SEMI,
- [157347] = 4,
- ACTIONS(2581), 1,
- anon_sym_LT,
- ACTIONS(8717), 1,
- anon_sym_EQ,
- STATE(5582), 1,
- sym_type_parameters,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- [157361] = 2,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(8645), 3,
- sym__automatic_semicolon,
- anon_sym_COMMA,
- anon_sym_SEMI,
- [157371] = 2,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(8645), 3,
- sym__automatic_semicolon,
- anon_sym_COMMA,
- anon_sym_SEMI,
- [157381] = 2,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(8645), 3,
- sym__automatic_semicolon,
- anon_sym_COMMA,
- anon_sym_SEMI,
- [157391] = 2,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(8645), 3,
- sym__automatic_semicolon,
- anon_sym_COMMA,
- anon_sym_SEMI,
- [157401] = 2,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(8647), 3,
- sym__automatic_semicolon,
- anon_sym_COMMA,
- anon_sym_SEMI,
- [157411] = 2,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(8647), 3,
- sym__automatic_semicolon,
- anon_sym_COMMA,
- anon_sym_SEMI,
- [157421] = 2,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(8649), 3,
- sym__automatic_semicolon,
- anon_sym_COMMA,
- anon_sym_SEMI,
- [157431] = 2,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(8645), 3,
- sym__automatic_semicolon,
- anon_sym_COMMA,
- anon_sym_SEMI,
- [157441] = 3,
- ACTIONS(8719), 1,
- anon_sym_EQ,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(3589), 2,
- anon_sym_in,
- anon_sym_of,
- [157453] = 3,
- ACTIONS(8721), 1,
- sym_identifier,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(8723), 2,
- sym__automatic_semicolon,
- anon_sym_SEMI,
- [157465] = 2,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(8382), 3,
- sym__automatic_semicolon,
- anon_sym_COMMA,
- anon_sym_SEMI,
- [157475] = 2,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(8645), 3,
- sym__automatic_semicolon,
- anon_sym_COMMA,
- anon_sym_SEMI,
- [157485] = 2,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(8645), 3,
- sym__automatic_semicolon,
- anon_sym_COMMA,
- anon_sym_SEMI,
- [157495] = 2,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(8645), 3,
- sym__automatic_semicolon,
- anon_sym_COMMA,
- anon_sym_SEMI,
- [157505] = 2,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(8645), 3,
- sym__automatic_semicolon,
- anon_sym_COMMA,
- anon_sym_SEMI,
- [157515] = 2,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(8695), 3,
- sym__automatic_semicolon,
- anon_sym_COMMA,
- anon_sym_SEMI,
- [157525] = 2,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(8645), 3,
- sym__automatic_semicolon,
- anon_sym_COMMA,
- anon_sym_SEMI,
- [157535] = 2,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(8725), 3,
- sym__automatic_semicolon,
- anon_sym_COMMA,
- anon_sym_SEMI,
- [157545] = 2,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(8727), 3,
- sym__automatic_semicolon,
- anon_sym_COMMA,
- anon_sym_SEMI,
- [157555] = 2,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(8338), 3,
- sym__automatic_semicolon,
- anon_sym_COMMA,
- anon_sym_SEMI,
- [157565] = 2,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(8727), 3,
- sym__automatic_semicolon,
- anon_sym_COMMA,
- anon_sym_SEMI,
- [157575] = 2,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(8708), 3,
- sym__automatic_semicolon,
- anon_sym_COMMA,
- anon_sym_SEMI,
- [157585] = 2,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(8729), 3,
- sym__automatic_semicolon,
- anon_sym_COMMA,
- anon_sym_SEMI,
- [157595] = 2,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(8396), 3,
- sym__automatic_semicolon,
- anon_sym_COMMA,
- anon_sym_SEMI,
- [157605] = 2,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(5011), 3,
- anon_sym_COMMA,
- anon_sym_RPAREN,
- anon_sym_RBRACK,
- [157615] = 2,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(8731), 3,
- sym__automatic_semicolon,
- anon_sym_COMMA,
- anon_sym_SEMI,
- [157625] = 2,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(8733), 3,
- sym__automatic_semicolon,
- anon_sym_COMMA,
- anon_sym_SEMI,
- [157635] = 2,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(8735), 3,
- sym__automatic_semicolon,
- anon_sym_COMMA,
- anon_sym_SEMI,
- [157645] = 2,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(8735), 3,
- sym__automatic_semicolon,
- anon_sym_COMMA,
- anon_sym_SEMI,
- [157655] = 2,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(8735), 3,
- sym__automatic_semicolon,
- anon_sym_COMMA,
- anon_sym_SEMI,
- [157665] = 2,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(8725), 3,
- sym__automatic_semicolon,
- anon_sym_COMMA,
- anon_sym_SEMI,
- [157675] = 2,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(8735), 3,
- sym__automatic_semicolon,
- anon_sym_COMMA,
- anon_sym_SEMI,
- [157685] = 2,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(8737), 3,
- sym__automatic_semicolon,
- anon_sym_COMMA,
- anon_sym_SEMI,
- [157695] = 2,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(8739), 3,
- sym__automatic_semicolon,
- anon_sym_COMMA,
- anon_sym_SEMI,
- [157705] = 2,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(8741), 3,
- sym__automatic_semicolon,
- anon_sym_COMMA,
- anon_sym_SEMI,
- [157715] = 2,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(8743), 3,
- sym__automatic_semicolon,
- anon_sym_COMMA,
- anon_sym_SEMI,
- [157725] = 2,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(8727), 3,
- sym__automatic_semicolon,
- anon_sym_COMMA,
- anon_sym_SEMI,
- [157735] = 2,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(8745), 3,
- sym__automatic_semicolon,
- anon_sym_COMMA,
- anon_sym_SEMI,
- [157745] = 2,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(8737), 3,
- sym__automatic_semicolon,
- anon_sym_COMMA,
- anon_sym_SEMI,
- [157755] = 2,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(8741), 3,
- sym__automatic_semicolon,
- anon_sym_COMMA,
- anon_sym_SEMI,
- [157765] = 2,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(8725), 3,
- sym__automatic_semicolon,
- anon_sym_COMMA,
- anon_sym_SEMI,
- [157775] = 2,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(8747), 3,
- sym__automatic_semicolon,
- anon_sym_COMMA,
- anon_sym_SEMI,
- [157785] = 2,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(8735), 3,
- sym__automatic_semicolon,
- anon_sym_COMMA,
- anon_sym_SEMI,
- [157795] = 2,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(8735), 3,
- sym__automatic_semicolon,
- anon_sym_COMMA,
- anon_sym_SEMI,
- [157805] = 2,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(8735), 3,
- sym__automatic_semicolon,
- anon_sym_COMMA,
- anon_sym_SEMI,
- [157815] = 2,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(8735), 3,
- sym__automatic_semicolon,
- anon_sym_COMMA,
- anon_sym_SEMI,
- [157825] = 2,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(8749), 3,
- sym__automatic_semicolon,
- anon_sym_COMMA,
- anon_sym_SEMI,
- [157835] = 2,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(8332), 3,
- sym__automatic_semicolon,
- anon_sym_COMMA,
- anon_sym_SEMI,
- [157845] = 2,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(8735), 3,
- sym__automatic_semicolon,
- anon_sym_COMMA,
- anon_sym_SEMI,
- [157855] = 2,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(8735), 3,
- sym__automatic_semicolon,
- anon_sym_COMMA,
- anon_sym_SEMI,
- [157865] = 2,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(8735), 3,
- sym__automatic_semicolon,
- anon_sym_COMMA,
- anon_sym_SEMI,
- [157875] = 2,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(8735), 3,
- sym__automatic_semicolon,
- anon_sym_COMMA,
- anon_sym_SEMI,
- [157885] = 2,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(8749), 3,
- sym__automatic_semicolon,
- anon_sym_COMMA,
- anon_sym_SEMI,
- [157895] = 2,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(8735), 3,
- sym__automatic_semicolon,
- anon_sym_COMMA,
- anon_sym_SEMI,
- [157905] = 2,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(8735), 3,
- sym__automatic_semicolon,
- anon_sym_COMMA,
- anon_sym_SEMI,
- [157915] = 2,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(8751), 3,
- sym__automatic_semicolon,
- anon_sym_COMMA,
- anon_sym_SEMI,
- [157925] = 2,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(8735), 3,
- sym__automatic_semicolon,
- anon_sym_COMMA,
- anon_sym_SEMI,
- [157935] = 2,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(8735), 3,
- sym__automatic_semicolon,
- anon_sym_COMMA,
- anon_sym_SEMI,
- [157945] = 2,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(8737), 3,
- sym__automatic_semicolon,
- anon_sym_COMMA,
- anon_sym_SEMI,
- [157955] = 2,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(8737), 3,
- sym__automatic_semicolon,
- anon_sym_COMMA,
- anon_sym_SEMI,
- [157965] = 2,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(8749), 3,
- sym__automatic_semicolon,
- anon_sym_COMMA,
- anon_sym_SEMI,
- [157975] = 2,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(8747), 3,
- sym__automatic_semicolon,
- anon_sym_COMMA,
- anon_sym_SEMI,
- [157985] = 2,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(8735), 3,
- sym__automatic_semicolon,
- anon_sym_COMMA,
- anon_sym_SEMI,
- [157995] = 2,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(8753), 3,
- sym__automatic_semicolon,
- anon_sym_from,
- anon_sym_SEMI,
- [158005] = 2,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(8382), 3,
- sym__automatic_semicolon,
- anon_sym_COMMA,
- anon_sym_SEMI,
- [158015] = 4,
- ACTIONS(8755), 1,
- anon_sym_COMMA,
- ACTIONS(8757), 1,
- anon_sym_RBRACE,
- STATE(4668), 1,
- aux_sym_export_clause_repeat1,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- [158029] = 2,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(8735), 3,
- sym__automatic_semicolon,
- anon_sym_COMMA,
- anon_sym_SEMI,
- [158039] = 3,
- ACTIONS(8759), 1,
- anon_sym_as,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(8761), 2,
- anon_sym_COMMA,
- anon_sym_RBRACE,
- [158051] = 2,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(8735), 3,
- sym__automatic_semicolon,
- anon_sym_COMMA,
- anon_sym_SEMI,
- [158061] = 2,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(8749), 3,
- sym__automatic_semicolon,
- anon_sym_COMMA,
- anon_sym_SEMI,
- [158071] = 3,
- ACTIONS(4470), 1,
- anon_sym_LBRACE,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(4472), 2,
- anon_sym_COMMA,
- anon_sym_LBRACE_PIPE,
- [158083] = 2,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(8735), 3,
- sym__automatic_semicolon,
- anon_sym_COMMA,
- anon_sym_SEMI,
- [158093] = 2,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(8735), 3,
- sym__automatic_semicolon,
- anon_sym_COMMA,
- anon_sym_SEMI,
- [158103] = 2,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(8749), 3,
- sym__automatic_semicolon,
- anon_sym_COMMA,
- anon_sym_SEMI,
- [158113] = 2,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(8763), 3,
- sym__automatic_semicolon,
- anon_sym_COMMA,
- anon_sym_SEMI,
- [158123] = 4,
- ACTIONS(6267), 1,
- anon_sym_DOT,
- ACTIONS(6572), 1,
- anon_sym_COLON,
- ACTIONS(8765), 1,
- anon_sym_GT,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- [158137] = 2,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(8763), 3,
- sym__automatic_semicolon,
- anon_sym_COMMA,
- anon_sym_SEMI,
- [158147] = 4,
- ACTIONS(8767), 1,
- anon_sym_COMMA,
- ACTIONS(8769), 1,
- anon_sym_GT,
- STATE(4637), 1,
- aux_sym_type_parameters_repeat1,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- [158161] = 2,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(8771), 3,
- sym__automatic_semicolon,
- anon_sym_COMMA,
- anon_sym_SEMI,
- [158171] = 2,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(8735), 3,
- sym__automatic_semicolon,
- anon_sym_COMMA,
- anon_sym_SEMI,
- [158181] = 2,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(8735), 3,
- sym__automatic_semicolon,
- anon_sym_COMMA,
- anon_sym_SEMI,
- [158191] = 2,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(8735), 3,
- sym__automatic_semicolon,
- anon_sym_COMMA,
- anon_sym_SEMI,
- [158201] = 2,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(7324), 3,
- anon_sym_LBRACE,
- anon_sym_COLON,
- anon_sym_EQ_GT,
- [158211] = 2,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(8773), 3,
- sym__automatic_semicolon,
- anon_sym_COMMA,
- anon_sym_SEMI,
- [158221] = 4,
- ACTIONS(2581), 1,
- anon_sym_LT,
- ACTIONS(8775), 1,
- anon_sym_EQ,
- STATE(5608), 1,
- sym_type_parameters,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- [158235] = 2,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(8773), 3,
- sym__automatic_semicolon,
- anon_sym_COMMA,
- anon_sym_SEMI,
- [158245] = 2,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(8773), 3,
- sym__automatic_semicolon,
- anon_sym_COMMA,
- anon_sym_SEMI,
- [158255] = 2,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(8773), 3,
- sym__automatic_semicolon,
- anon_sym_COMMA,
- anon_sym_SEMI,
- [158265] = 2,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(8332), 3,
- sym__automatic_semicolon,
- anon_sym_COMMA,
- anon_sym_SEMI,
- [158275] = 2,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(8382), 3,
- sym__automatic_semicolon,
- anon_sym_COMMA,
- anon_sym_SEMI,
- [158285] = 2,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(8386), 3,
- sym__automatic_semicolon,
- anon_sym_COMMA,
- anon_sym_SEMI,
- [158295] = 2,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(8777), 3,
- sym__automatic_semicolon,
- anon_sym_COMMA,
- anon_sym_SEMI,
- [158305] = 2,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(8779), 3,
- sym__automatic_semicolon,
- anon_sym_COMMA,
- anon_sym_SEMI,
- [158315] = 2,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(8749), 3,
- sym__automatic_semicolon,
- anon_sym_COMMA,
- anon_sym_SEMI,
- [158325] = 4,
- ACTIONS(8781), 1,
- anon_sym_COMMA,
- ACTIONS(8783), 1,
- anon_sym_RBRACK,
- STATE(4838), 1,
- aux_sym_tuple_type_repeat1,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- [158339] = 2,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(8785), 3,
- sym__automatic_semicolon,
- anon_sym_COMMA,
- anon_sym_SEMI,
- [158349] = 2,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(8332), 3,
- sym__automatic_semicolon,
- anon_sym_COMMA,
- anon_sym_SEMI,
- [158359] = 2,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(5932), 3,
- sym__automatic_semicolon,
- anon_sym_COMMA,
- anon_sym_SEMI,
- [158369] = 2,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(8388), 3,
- sym__automatic_semicolon,
- anon_sym_COMMA,
- anon_sym_SEMI,
- [158379] = 2,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(8749), 3,
- sym__automatic_semicolon,
- anon_sym_COMMA,
- anon_sym_SEMI,
- [158389] = 2,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(8787), 3,
- sym__automatic_semicolon,
- anon_sym_COMMA,
- anon_sym_SEMI,
- [158399] = 2,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(8789), 3,
- sym__automatic_semicolon,
- anon_sym_COMMA,
- anon_sym_SEMI,
- [158409] = 2,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(8332), 3,
- sym__automatic_semicolon,
- anon_sym_COMMA,
- anon_sym_SEMI,
- [158419] = 2,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(8791), 3,
- sym__automatic_semicolon,
- anon_sym_COMMA,
- anon_sym_SEMI,
- [158429] = 2,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(8777), 3,
- sym__automatic_semicolon,
- anon_sym_COMMA,
- anon_sym_SEMI,
- [158439] = 4,
- ACTIONS(7312), 1,
- anon_sym_AMP,
- ACTIONS(7314), 1,
- anon_sym_PIPE,
- ACTIONS(7316), 1,
- anon_sym_extends,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- [158453] = 2,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(8787), 3,
- sym__automatic_semicolon,
- anon_sym_COMMA,
- anon_sym_SEMI,
- [158463] = 2,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(8793), 3,
- sym__automatic_semicolon,
- anon_sym_COMMA,
- anon_sym_SEMI,
- [158473] = 2,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(8396), 3,
- sym__automatic_semicolon,
- anon_sym_COMMA,
- anon_sym_SEMI,
- [158483] = 2,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(8382), 3,
- sym__automatic_semicolon,
- anon_sym_COMMA,
- anon_sym_SEMI,
- [158493] = 2,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(8795), 3,
- sym__automatic_semicolon,
- anon_sym_COMMA,
- anon_sym_SEMI,
- [158503] = 2,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(8370), 3,
- sym__automatic_semicolon,
- anon_sym_COMMA,
- anon_sym_SEMI,
- [158513] = 2,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(8382), 3,
- sym__automatic_semicolon,
- anon_sym_COMMA,
- anon_sym_SEMI,
- [158523] = 2,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(8370), 3,
- sym__automatic_semicolon,
- anon_sym_COMMA,
- anon_sym_SEMI,
- [158533] = 2,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(7270), 3,
- anon_sym_LBRACE,
- anon_sym_COLON,
- anon_sym_EQ_GT,
- [158543] = 4,
- ACTIONS(1648), 1,
- anon_sym_RPAREN,
- ACTIONS(8797), 1,
- anon_sym_COMMA,
- STATE(4921), 1,
- aux_sym_formal_parameters_repeat1,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- [158557] = 4,
- ACTIONS(6837), 1,
- anon_sym_implements,
- ACTIONS(8799), 1,
- anon_sym_LBRACE,
- STATE(5726), 1,
- sym_implements_clause,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- [158571] = 2,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(8324), 3,
- sym__automatic_semicolon,
- anon_sym_COMMA,
- anon_sym_SEMI,
- [158581] = 2,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(7254), 3,
- anon_sym_LBRACK,
- sym_identifier,
- sym_private_property_identifier,
- [158591] = 2,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(8388), 3,
- sym__automatic_semicolon,
- anon_sym_COMMA,
- anon_sym_SEMI,
- [158601] = 2,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(8481), 3,
- sym__automatic_semicolon,
- anon_sym_COMMA,
- anon_sym_SEMI,
- [158611] = 4,
- ACTIONS(6554), 1,
- anon_sym_AMP,
- ACTIONS(6556), 1,
- anon_sym_PIPE,
- ACTIONS(6558), 1,
- anon_sym_extends,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- [158625] = 2,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(8481), 3,
- sym__automatic_semicolon,
- anon_sym_COMMA,
- anon_sym_SEMI,
- [158635] = 2,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(8801), 3,
- sym__automatic_semicolon,
- anon_sym_from,
- anon_sym_SEMI,
- [158645] = 2,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(8386), 3,
- sym__automatic_semicolon,
- anon_sym_COMMA,
- anon_sym_SEMI,
- [158655] = 4,
- ACTIONS(8803), 1,
- sym_identifier,
- ACTIONS(8805), 1,
- anon_sym_LBRACK,
- ACTIONS(8807), 1,
- sym_private_property_identifier,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- [158669] = 4,
- ACTIONS(8809), 1,
- anon_sym_COMMA,
- ACTIONS(8812), 1,
- anon_sym_RBRACE,
- STATE(5081), 1,
- aux_sym_export_clause_repeat1,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- [158683] = 3,
- ACTIONS(4142), 1,
- anon_sym_LBRACE,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(4144), 2,
- anon_sym_COMMA,
- anon_sym_LBRACE_PIPE,
- [158695] = 2,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(8388), 3,
- sym__automatic_semicolon,
- anon_sym_COMMA,
- anon_sym_SEMI,
- [158705] = 2,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(8338), 3,
- sym__automatic_semicolon,
- anon_sym_COMMA,
- anon_sym_SEMI,
- [158715] = 2,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(8382), 3,
- sym__automatic_semicolon,
- anon_sym_COMMA,
- anon_sym_SEMI,
- [158725] = 4,
- ACTIONS(5644), 1,
- anon_sym_COMMA,
- ACTIONS(8814), 1,
- anon_sym_RBRACE,
- STATE(5126), 1,
- aux_sym_object_repeat1,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- [158739] = 4,
- ACTIONS(3438), 1,
- anon_sym_LPAREN,
- ACTIONS(8559), 1,
- anon_sym_DOT,
- STATE(2848), 1,
- sym_arguments,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- [158753] = 2,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(8382), 3,
- sym__automatic_semicolon,
- anon_sym_COMMA,
- anon_sym_SEMI,
- [158763] = 4,
- ACTIONS(5644), 1,
- anon_sym_COMMA,
- ACTIONS(8814), 1,
- anon_sym_RBRACE,
- STATE(4691), 1,
- aux_sym_object_repeat1,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- [158777] = 2,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(8388), 3,
- sym__automatic_semicolon,
- anon_sym_COMMA,
- anon_sym_SEMI,
- [158787] = 2,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(8382), 3,
- sym__automatic_semicolon,
- anon_sym_COMMA,
- anon_sym_SEMI,
- [158797] = 4,
- ACTIONS(8816), 1,
- anon_sym_COMMA,
- ACTIONS(8818), 1,
- anon_sym_RPAREN,
- STATE(5130), 1,
- aux_sym_formal_parameters_repeat1,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- [158811] = 2,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(8382), 3,
- sym__automatic_semicolon,
- anon_sym_COMMA,
- anon_sym_SEMI,
- [158821] = 3,
- ACTIONS(4410), 1,
- anon_sym_LBRACE,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(4412), 2,
- anon_sym_COMMA,
- anon_sym_LBRACE_PIPE,
- [158833] = 2,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(8388), 3,
- sym__automatic_semicolon,
- anon_sym_COMMA,
- anon_sym_SEMI,
- [158843] = 2,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(8481), 3,
- sym__automatic_semicolon,
- anon_sym_COMMA,
- anon_sym_SEMI,
- [158853] = 2,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(8324), 3,
- sym__automatic_semicolon,
- anon_sym_COMMA,
- anon_sym_SEMI,
- [158863] = 3,
- ACTIONS(4462), 1,
- anon_sym_LBRACE,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(4464), 2,
- anon_sym_COMMA,
- anon_sym_LBRACE_PIPE,
- [158875] = 2,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(8481), 3,
- sym__automatic_semicolon,
- anon_sym_COMMA,
- anon_sym_SEMI,
- [158885] = 2,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(8382), 3,
- sym__automatic_semicolon,
- anon_sym_COMMA,
- anon_sym_SEMI,
- [158895] = 4,
- ACTIONS(8820), 1,
- anon_sym_COMMA,
- ACTIONS(8823), 1,
- anon_sym_RBRACK,
- STATE(5101), 1,
- aux_sym_tuple_type_repeat1,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- [158909] = 2,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(8825), 3,
- sym__template_chars,
- anon_sym_BQUOTE,
- anon_sym_DOLLAR_LBRACE,
- [158919] = 2,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(8340), 3,
- sym__automatic_semicolon,
- anon_sym_COMMA,
- anon_sym_SEMI,
- [158929] = 2,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(8332), 3,
- sym__automatic_semicolon,
- anon_sym_COMMA,
- anon_sym_SEMI,
- [158939] = 2,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(8370), 3,
- sym__automatic_semicolon,
- anon_sym_COMMA,
- anon_sym_SEMI,
- [158949] = 2,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(8382), 3,
- sym__automatic_semicolon,
- anon_sym_COMMA,
- anon_sym_SEMI,
- [158959] = 2,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(8338), 3,
- sym__automatic_semicolon,
- anon_sym_COMMA,
- anon_sym_SEMI,
- [158969] = 2,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(8370), 3,
- sym__automatic_semicolon,
- anon_sym_COMMA,
- anon_sym_SEMI,
- [158979] = 2,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(8370), 3,
- sym__automatic_semicolon,
- anon_sym_COMMA,
- anon_sym_SEMI,
- [158989] = 4,
- ACTIONS(222), 1,
- anon_sym_LBRACE_PIPE,
- ACTIONS(1498), 1,
- anon_sym_LBRACE,
- STATE(816), 1,
- sym_object_type,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- [159003] = 2,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(8382), 3,
- sym__automatic_semicolon,
- anon_sym_COMMA,
- anon_sym_SEMI,
- [159013] = 2,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(8370), 3,
- sym__automatic_semicolon,
- anon_sym_COMMA,
- anon_sym_SEMI,
- [159023] = 2,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(8382), 3,
- sym__automatic_semicolon,
- anon_sym_COMMA,
- anon_sym_SEMI,
- [159033] = 2,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(8388), 3,
- sym__automatic_semicolon,
- anon_sym_COMMA,
- anon_sym_SEMI,
- [159043] = 2,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(8396), 3,
- sym__automatic_semicolon,
- anon_sym_COMMA,
- anon_sym_SEMI,
- [159053] = 4,
- ACTIONS(7557), 1,
- anon_sym_COMMA,
- ACTIONS(8827), 1,
- anon_sym_LBRACE,
- STATE(4445), 1,
- aux_sym_implements_clause_repeat1,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- [159067] = 2,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(8751), 3,
- sym__automatic_semicolon,
- anon_sym_COMMA,
- anon_sym_SEMI,
- [159077] = 2,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(8324), 3,
- sym__automatic_semicolon,
- anon_sym_COMMA,
- anon_sym_SEMI,
- [159087] = 2,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(8829), 3,
- sym__automatic_semicolon,
- anon_sym_COMMA,
- anon_sym_SEMI,
- [159097] = 2,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(8338), 3,
- sym__automatic_semicolon,
- anon_sym_COMMA,
- anon_sym_SEMI,
- [159107] = 2,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(8831), 3,
- sym__automatic_semicolon,
- anon_sym_COMMA,
- anon_sym_SEMI,
- [159117] = 2,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(8332), 3,
- sym__automatic_semicolon,
- anon_sym_COMMA,
- anon_sym_SEMI,
- [159127] = 2,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(8338), 3,
- sym__automatic_semicolon,
- anon_sym_COMMA,
- anon_sym_SEMI,
- [159137] = 4,
- ACTIONS(5644), 1,
- anon_sym_COMMA,
- ACTIONS(8833), 1,
- anon_sym_RBRACE,
- STATE(4691), 1,
- aux_sym_object_repeat1,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- [159151] = 2,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(8382), 3,
- sym__automatic_semicolon,
- anon_sym_COMMA,
- anon_sym_SEMI,
- [159161] = 4,
- ACTIONS(5644), 1,
- anon_sym_COMMA,
- ACTIONS(8835), 1,
- anon_sym_RBRACE,
- STATE(4691), 1,
- aux_sym_object_repeat1,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- [159175] = 2,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(8382), 3,
- sym__automatic_semicolon,
- anon_sym_COMMA,
- anon_sym_SEMI,
- [159185] = 3,
- ACTIONS(8131), 1,
- anon_sym_EQ,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(8486), 2,
- anon_sym_COMMA,
- anon_sym_RBRACK,
- [159197] = 4,
- ACTIONS(8837), 1,
- anon_sym_LPAREN,
- ACTIONS(8839), 1,
- anon_sym_await,
- STATE(61), 1,
- sym__for_header,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- [159211] = 4,
- ACTIONS(1636), 1,
- anon_sym_RPAREN,
- ACTIONS(8841), 1,
- anon_sym_COMMA,
- STATE(4921), 1,
- aux_sym_formal_parameters_repeat1,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- [159225] = 2,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(8338), 3,
- sym__automatic_semicolon,
- anon_sym_COMMA,
- anon_sym_SEMI,
- [159235] = 2,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(8388), 3,
- sym__automatic_semicolon,
- anon_sym_COMMA,
- anon_sym_SEMI,
- [159245] = 3,
- ACTIONS(8029), 1,
- anon_sym_LBRACE,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(8031), 2,
- anon_sym_COMMA,
- anon_sym_LBRACE_PIPE,
- [159257] = 4,
- ACTIONS(2473), 1,
- anon_sym_while,
- ACTIONS(8843), 1,
- anon_sym_else,
- STATE(764), 1,
- sym_else_clause,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- [159271] = 2,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(8845), 3,
- sym__automatic_semicolon,
- anon_sym_COMMA,
- anon_sym_SEMI,
- [159281] = 4,
- ACTIONS(2229), 1,
- anon_sym_LBRACE,
- ACTIONS(8847), 1,
- sym_identifier,
- STATE(4435), 1,
- sym_export_clause,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- [159295] = 2,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(8332), 3,
- sym__automatic_semicolon,
- anon_sym_COMMA,
- anon_sym_SEMI,
- [159305] = 2,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(8338), 3,
- sym__automatic_semicolon,
- anon_sym_COMMA,
- anon_sym_SEMI,
- [159315] = 4,
- ACTIONS(3408), 1,
- anon_sym_LPAREN,
- ACTIONS(8849), 1,
- anon_sym_DOT,
- STATE(3086), 1,
- sym_arguments,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- [159329] = 3,
- ACTIONS(8851), 1,
- sym_identifier,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(8853), 2,
- sym__automatic_semicolon,
- anon_sym_SEMI,
- [159341] = 4,
- ACTIONS(8855), 1,
- anon_sym_COMMA,
- ACTIONS(8858), 1,
- anon_sym_RBRACE,
- STATE(5141), 1,
- aux_sym_enum_body_repeat1,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- [159355] = 2,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(8382), 3,
- sym__automatic_semicolon,
- anon_sym_COMMA,
- anon_sym_SEMI,
- [159365] = 2,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(8382), 3,
- sym__automatic_semicolon,
- anon_sym_COMMA,
- anon_sym_SEMI,
- [159375] = 3,
- ACTIONS(8860), 1,
- anon_sym_EQ,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(3514), 2,
- anon_sym_COMMA,
- anon_sym_RBRACK,
- [159387] = 2,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(8388), 3,
- sym__automatic_semicolon,
- anon_sym_COMMA,
- anon_sym_SEMI,
- [159397] = 2,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(8382), 3,
- sym__automatic_semicolon,
- anon_sym_COMMA,
- anon_sym_SEMI,
- [159407] = 2,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(8324), 3,
- sym__automatic_semicolon,
- anon_sym_COMMA,
- anon_sym_SEMI,
- [159417] = 4,
- ACTIONS(1700), 1,
- anon_sym_COMMA,
- ACTIONS(8287), 1,
- anon_sym_RBRACK,
- STATE(4622), 1,
- aux_sym_array_pattern_repeat1,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- [159431] = 2,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(8382), 3,
- sym__automatic_semicolon,
- anon_sym_COMMA,
- anon_sym_SEMI,
- [159441] = 4,
- ACTIONS(2437), 1,
- anon_sym_LBRACE,
- ACTIONS(8863), 1,
- anon_sym_LPAREN,
- STATE(731), 1,
- sym_statement_block,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- [159455] = 4,
- ACTIONS(1931), 1,
- anon_sym_COMMA,
- ACTIONS(5027), 1,
- anon_sym_RPAREN,
- STATE(4569), 1,
- aux_sym_array_repeat1,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- [159469] = 4,
- ACTIONS(1931), 1,
- anon_sym_COMMA,
- ACTIONS(5064), 1,
- anon_sym_RBRACK,
- STATE(5170), 1,
- aux_sym_array_repeat1,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- [159483] = 4,
- ACTIONS(1931), 1,
- anon_sym_COMMA,
- ACTIONS(5027), 1,
- anon_sym_RPAREN,
- STATE(4511), 1,
- aux_sym_array_repeat1,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- [159497] = 3,
- ACTIONS(7303), 1,
- anon_sym_EQ,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(3589), 2,
- anon_sym_in,
- anon_sym_of,
- [159509] = 4,
- ACTIONS(1931), 1,
- anon_sym_COMMA,
- ACTIONS(5064), 1,
- anon_sym_RBRACK,
- STATE(4511), 1,
- aux_sym_array_repeat1,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- [159523] = 4,
- ACTIONS(5644), 1,
- anon_sym_COMMA,
- ACTIONS(8865), 1,
- anon_sym_RBRACE,
- STATE(4691), 1,
- aux_sym_object_repeat1,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- [159537] = 4,
- ACTIONS(5113), 1,
- anon_sym_COMMA,
- ACTIONS(8867), 1,
- anon_sym_RBRACE,
- STATE(4698), 1,
- aux_sym_object_pattern_repeat1,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- [159551] = 4,
- ACTIONS(5113), 1,
- anon_sym_COMMA,
- ACTIONS(8869), 1,
- anon_sym_RBRACE,
- STATE(4698), 1,
- aux_sym_object_pattern_repeat1,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- [159565] = 2,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(8388), 3,
- sym__automatic_semicolon,
- anon_sym_COMMA,
- anon_sym_SEMI,
- [159575] = 2,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(8481), 3,
- sym__automatic_semicolon,
- anon_sym_COMMA,
- anon_sym_SEMI,
- [159585] = 2,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(8481), 3,
- sym__automatic_semicolon,
- anon_sym_COMMA,
- anon_sym_SEMI,
- [159595] = 2,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(8340), 3,
- sym__automatic_semicolon,
- anon_sym_COMMA,
- anon_sym_SEMI,
- [159605] = 2,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(8871), 3,
- sym__automatic_semicolon,
- anon_sym_COMMA,
- anon_sym_SEMI,
- [159615] = 2,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(8370), 3,
- sym__automatic_semicolon,
- anon_sym_COMMA,
- anon_sym_SEMI,
- [159625] = 4,
- ACTIONS(1700), 1,
- anon_sym_COMMA,
- ACTIONS(8287), 1,
- anon_sym_RBRACK,
- STATE(4674), 1,
- aux_sym_array_pattern_repeat1,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- [159639] = 4,
- ACTIONS(6267), 1,
- anon_sym_DOT,
- ACTIONS(6572), 1,
- anon_sym_COLON,
- ACTIONS(8873), 1,
- anon_sym_GT,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- [159653] = 2,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(8338), 3,
- sym__automatic_semicolon,
- anon_sym_COMMA,
- anon_sym_SEMI,
- [159663] = 2,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(8332), 3,
- sym__automatic_semicolon,
- anon_sym_COMMA,
- anon_sym_SEMI,
- [159673] = 2,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(8370), 3,
- sym__automatic_semicolon,
- anon_sym_COMMA,
- anon_sym_SEMI,
- [159683] = 4,
- ACTIONS(1931), 1,
- anon_sym_COMMA,
- ACTIONS(8875), 1,
- anon_sym_RBRACK,
- STATE(4511), 1,
- aux_sym_array_repeat1,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- [159697] = 4,
- ACTIONS(8299), 1,
- anon_sym_GT,
- ACTIONS(8877), 1,
- anon_sym_COMMA,
- STATE(4938), 1,
- aux_sym_type_parameters_repeat1,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- [159711] = 2,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(8332), 3,
- sym__automatic_semicolon,
- anon_sym_COMMA,
- anon_sym_SEMI,
- [159721] = 2,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(8433), 3,
- sym__automatic_semicolon,
- anon_sym_COMMA,
- anon_sym_SEMI,
- [159731] = 2,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(8332), 3,
- sym__automatic_semicolon,
- anon_sym_COMMA,
- anon_sym_SEMI,
- [159741] = 2,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(8338), 3,
- sym__automatic_semicolon,
- anon_sym_COMMA,
- anon_sym_SEMI,
- [159751] = 5,
- ACTIONS(3), 1,
- sym_comment,
- ACTIONS(5), 1,
- sym_html_comment,
- ACTIONS(8702), 1,
- sym__glimmer_template_content,
- ACTIONS(8879), 1,
- sym_glimmer_closing_tag,
- STATE(4723), 1,
- aux_sym_glimmer_template_repeat1,
- [159767] = 2,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(8398), 3,
- sym__automatic_semicolon,
- anon_sym_COMMA,
- anon_sym_SEMI,
- [159777] = 2,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(8845), 3,
- sym__automatic_semicolon,
- anon_sym_COMMA,
- anon_sym_SEMI,
- [159787] = 2,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(8433), 3,
- sym__automatic_semicolon,
- anon_sym_COMMA,
- anon_sym_SEMI,
- [159797] = 2,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(8332), 3,
- sym__automatic_semicolon,
- anon_sym_COMMA,
- anon_sym_SEMI,
- [159807] = 2,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(8338), 3,
- sym__automatic_semicolon,
- anon_sym_COMMA,
- anon_sym_SEMI,
- [159817] = 2,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(8386), 3,
- sym__automatic_semicolon,
- anon_sym_COMMA,
- anon_sym_SEMI,
- [159827] = 3,
- ACTIONS(8575), 1,
- sym_identifier,
- ACTIONS(8579), 1,
- sym_private_property_identifier,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- [159838] = 3,
- ACTIONS(7398), 1,
- anon_sym_LBRACE,
- STATE(2571), 1,
- sym_statement_block,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- [159849] = 2,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(8403), 2,
- anon_sym_COMMA,
- anon_sym_RBRACE,
- [159858] = 3,
- ACTIONS(1716), 1,
- anon_sym_LBRACE,
- STATE(241), 1,
- sym_statement_block,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- [159869] = 3,
- ACTIONS(8881), 1,
- anon_sym_LPAREN,
- STATE(32), 1,
- sym_parenthesized_expression,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- [159880] = 2,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(8883), 2,
- anon_sym_COMMA,
- anon_sym_RBRACE,
- [159889] = 2,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(8885), 2,
- anon_sym_COMMA,
- anon_sym_GT,
- [159898] = 3,
- ACTIONS(8887), 1,
- sym_identifier,
- STATE(4768), 1,
- sym_nested_identifier,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- [159909] = 2,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(8889), 2,
- anon_sym_COMMA,
- anon_sym_RPAREN,
- [159918] = 3,
- ACTIONS(6763), 1,
- anon_sym_LBRACE,
- STATE(2489), 1,
- sym_class_body,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- [159929] = 3,
- ACTIONS(8891), 1,
- sym_identifier,
- ACTIONS(8893), 1,
- sym_private_property_identifier,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- [159940] = 3,
- ACTIONS(6976), 1,
- anon_sym_LBRACE,
- STATE(718), 1,
- sym_class_body,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- [159951] = 3,
- ACTIONS(8895), 1,
- sym_identifier,
- ACTIONS(8897), 1,
- sym_private_property_identifier,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- [159962] = 3,
- ACTIONS(8899), 1,
- sym_identifier,
- ACTIONS(8901), 1,
- sym_private_property_identifier,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- [159973] = 2,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(8488), 2,
- anon_sym_COMMA,
- anon_sym_RBRACE,
- [159982] = 2,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(5923), 2,
- anon_sym_COMMA,
- anon_sym_RBRACE,
- [159991] = 3,
- ACTIONS(8903), 1,
- sym_identifier,
- ACTIONS(8905), 1,
- sym_private_property_identifier,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- [160002] = 3,
- ACTIONS(7398), 1,
- anon_sym_LBRACE,
- STATE(2602), 1,
- sym_statement_block,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- [160013] = 3,
- ACTIONS(6763), 1,
- anon_sym_LBRACE,
- STATE(1623), 1,
- sym_class_body,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- [160024] = 3,
- ACTIONS(2437), 1,
- anon_sym_LBRACE,
- STATE(5468), 1,
- sym_statement_block,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- [160035] = 3,
- ACTIONS(6763), 1,
- anon_sym_LBRACE,
- STATE(2491), 1,
- sym_class_body,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- [160046] = 2,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(5940), 2,
- anon_sym_COMMA,
- anon_sym_RBRACE,
- [160055] = 3,
- ACTIONS(6725), 1,
- anon_sym_LBRACE,
- STATE(2223), 1,
- sym_class_body,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- [160066] = 3,
- ACTIONS(6419), 1,
- anon_sym_LPAREN,
- STATE(4266), 1,
- sym_formal_parameters,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- [160077] = 3,
- ACTIONS(8907), 1,
- sym_identifier,
- ACTIONS(8909), 1,
- sym_private_property_identifier,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- [160088] = 3,
- ACTIONS(7398), 1,
- anon_sym_LBRACE,
- STATE(2613), 1,
- sym_statement_block,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- [160099] = 3,
- ACTIONS(6725), 1,
- anon_sym_LBRACE,
- STATE(2227), 1,
- sym_class_body,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- [160110] = 3,
- ACTIONS(7096), 1,
- anon_sym_LBRACE,
- STATE(837), 1,
- sym_class_body,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- [160121] = 2,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(4721), 2,
- sym__automatic_semicolon,
- anon_sym_SEMI,
- [160130] = 3,
- ACTIONS(4029), 1,
- anon_sym_LBRACE,
- STATE(2216), 1,
- sym_statement_block,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- [160141] = 3,
- ACTIONS(6976), 1,
- anon_sym_LBRACE,
- STATE(4097), 1,
- sym_class_body,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- [160152] = 2,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(8505), 2,
- anon_sym_COMMA,
- anon_sym_RBRACE,
- [160161] = 3,
- ACTIONS(6572), 1,
- anon_sym_COLON,
- ACTIONS(8405), 1,
- anon_sym_GT,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- [160172] = 3,
- ACTIONS(8911), 1,
- anon_sym_LBRACE,
- STATE(5381), 1,
- sym_object,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- [160183] = 3,
- ACTIONS(1716), 1,
- anon_sym_LBRACE,
- STATE(235), 1,
- sym_statement_block,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- [160194] = 2,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(8913), 2,
- sym__automatic_semicolon,
- anon_sym_SEMI,
- [160203] = 2,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(8915), 2,
- anon_sym_COMMA,
- anon_sym_RBRACE,
- [160212] = 3,
- ACTIONS(8064), 1,
- anon_sym_from,
- STATE(4251), 1,
- sym__from_clause,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- [160223] = 3,
- ACTIONS(6642), 1,
- anon_sym_DOT,
- ACTIONS(8917), 1,
- anon_sym_GT,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- [160234] = 2,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(7912), 2,
- sym__automatic_semicolon,
- anon_sym_SEMI,
- [160243] = 2,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(8713), 2,
- anon_sym_COMMA,
- anon_sym_GT,
- [160252] = 3,
- ACTIONS(3969), 1,
- anon_sym_LPAREN,
- STATE(1774), 1,
- sym_arguments,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- [160263] = 3,
- ACTIONS(7398), 1,
- anon_sym_LBRACE,
- STATE(2574), 1,
- sym_statement_block,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- [160274] = 3,
- ACTIONS(2437), 1,
- anon_sym_LBRACE,
- STATE(856), 1,
- sym_statement_block,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- [160285] = 2,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(8512), 2,
- anon_sym_COMMA,
- anon_sym_RBRACE,
- [160294] = 3,
- ACTIONS(6419), 1,
- anon_sym_LPAREN,
- STATE(5554), 1,
- sym_formal_parameters,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- [160305] = 3,
- ACTIONS(6725), 1,
- anon_sym_LBRACE,
- STATE(2340), 1,
- sym_class_body,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- [160316] = 3,
- ACTIONS(6725), 1,
- anon_sym_LBRACE,
- STATE(2218), 1,
- sym_class_body,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- [160327] = 3,
- ACTIONS(6976), 1,
- anon_sym_LBRACE,
- STATE(4105), 1,
- sym_class_body,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- [160338] = 2,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(7374), 2,
- anon_sym_LBRACE,
- anon_sym_EQ_GT,
- [160347] = 3,
- ACTIONS(7398), 1,
- anon_sym_LBRACE,
- STATE(2579), 1,
- sym_statement_block,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- [160358] = 3,
- ACTIONS(6725), 1,
- anon_sym_LBRACE,
- STATE(2273), 1,
- sym_class_body,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- [160369] = 3,
- ACTIONS(6419), 1,
- anon_sym_LPAREN,
- STATE(5777), 1,
- sym_formal_parameters,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- [160380] = 3,
- ACTIONS(8919), 1,
- sym_identifier,
- ACTIONS(8921), 1,
- sym_private_property_identifier,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- [160391] = 3,
- ACTIONS(6976), 1,
- anon_sym_LBRACE,
- STATE(4107), 1,
- sym_class_body,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- [160402] = 3,
- ACTIONS(6411), 1,
- anon_sym_COLON,
- STATE(4794), 1,
- sym_type_annotation,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- [160413] = 3,
- ACTIONS(8923), 1,
- sym_identifier,
- ACTIONS(8925), 1,
- sym_private_property_identifier,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- [160424] = 3,
- ACTIONS(6419), 1,
- anon_sym_LPAREN,
- STATE(5630), 1,
- sym_formal_parameters,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- [160435] = 3,
- ACTIONS(7398), 1,
- anon_sym_LBRACE,
- STATE(2597), 1,
- sym_statement_block,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- [160446] = 3,
- ACTIONS(7398), 1,
- anon_sym_LBRACE,
- STATE(2615), 1,
- sym_statement_block,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- [160457] = 3,
- ACTIONS(7398), 1,
- anon_sym_LBRACE,
- STATE(2606), 1,
- sym_statement_block,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- [160468] = 3,
- ACTIONS(6572), 1,
- anon_sym_COLON,
- ACTIONS(8518), 1,
- anon_sym_GT,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- [160479] = 3,
- ACTIONS(7398), 1,
- anon_sym_LBRACE,
- STATE(2556), 1,
- sym_statement_block,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- [160490] = 3,
- ACTIONS(4189), 1,
- anon_sym_LBRACE,
- STATE(1645), 1,
- sym_statement_block,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- [160501] = 3,
- ACTIONS(8927), 1,
- anon_sym_COMMA,
- ACTIONS(8929), 1,
- anon_sym_from,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- [160512] = 3,
- ACTIONS(8931), 1,
- sym_identifier,
- ACTIONS(8933), 1,
- sym_private_property_identifier,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- [160523] = 3,
- ACTIONS(6763), 1,
- anon_sym_LBRACE,
- STATE(1704), 1,
- sym_class_body,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- [160534] = 3,
- ACTIONS(8935), 1,
- sym_identifier,
- ACTIONS(8937), 1,
- sym_private_property_identifier,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- [160545] = 2,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(8700), 2,
- anon_sym_COMMA,
- anon_sym_RPAREN,
- [160554] = 3,
- ACTIONS(4029), 1,
- anon_sym_LBRACE,
- STATE(2229), 1,
- sym_statement_block,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- [160565] = 3,
- ACTIONS(6642), 1,
- anon_sym_DOT,
- ACTIONS(8939), 1,
- anon_sym_GT,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- [160576] = 3,
- ACTIONS(8064), 1,
- anon_sym_from,
- STATE(5445), 1,
- sym__from_clause,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- [160587] = 3,
- ACTIONS(8881), 1,
- anon_sym_LPAREN,
- STATE(40), 1,
- sym_parenthesized_expression,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- [160598] = 3,
- ACTIONS(6960), 1,
- anon_sym_LBRACE,
- STATE(242), 1,
- sym_class_body,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- [160609] = 2,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(8941), 2,
- anon_sym_COMMA,
- anon_sym_RPAREN,
- [160618] = 3,
- ACTIONS(7096), 1,
- anon_sym_LBRACE,
- STATE(844), 1,
- sym_class_body,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- [160629] = 3,
- ACTIONS(6763), 1,
- anon_sym_LBRACE,
- STATE(1708), 1,
- sym_class_body,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- [160640] = 2,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(8943), 2,
- anon_sym_COMMA,
- anon_sym_RBRACE,
- [160649] = 2,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(8945), 2,
- anon_sym_COMMA,
- anon_sym_RPAREN,
- [160658] = 3,
- ACTIONS(8947), 1,
- anon_sym_LBRACE,
- STATE(760), 1,
- sym_enum_body,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- [160669] = 3,
- ACTIONS(7190), 1,
- anon_sym_LBRACE,
- STATE(724), 1,
- sym_statement_block,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- [160680] = 3,
- ACTIONS(8881), 1,
- anon_sym_LPAREN,
- STATE(41), 1,
- sym_parenthesized_expression,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- [160691] = 3,
- ACTIONS(6763), 1,
- anon_sym_LBRACE,
- STATE(2504), 1,
- sym_class_body,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- [160702] = 3,
- ACTIONS(6976), 1,
- anon_sym_LBRACE,
- STATE(728), 1,
- sym_class_body,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- [160713] = 2,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(5948), 2,
- anon_sym_COMMA,
- anon_sym_RBRACE,
- [160722] = 3,
- ACTIONS(2437), 1,
- anon_sym_LBRACE,
- STATE(5504), 1,
- sym_statement_block,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- [160733] = 2,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(5915), 2,
- anon_sym_COMMA,
- anon_sym_RBRACE,
- [160742] = 3,
- ACTIONS(2437), 1,
- anon_sym_LBRACE,
- STATE(5506), 1,
- sym_statement_block,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- [160753] = 3,
- ACTIONS(4029), 1,
- anon_sym_LBRACE,
- STATE(2382), 1,
- sym_statement_block,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- [160764] = 3,
- ACTIONS(8881), 1,
- anon_sym_LPAREN,
- STATE(42), 1,
- sym_parenthesized_expression,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- [160775] = 3,
- ACTIONS(6725), 1,
- anon_sym_LBRACE,
- STATE(2383), 1,
- sym_class_body,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- [160786] = 2,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(8949), 2,
- anon_sym_COMMA,
- anon_sym_RBRACE,
- [160795] = 2,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(8951), 2,
- anon_sym_COMMA,
- anon_sym_RBRACE,
- [160804] = 3,
- ACTIONS(6419), 1,
- anon_sym_LPAREN,
- STATE(4056), 1,
- sym_formal_parameters,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- [160815] = 3,
- ACTIONS(8953), 1,
- sym_identifier,
- ACTIONS(8955), 1,
- sym_private_property_identifier,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- [160826] = 3,
- ACTIONS(8957), 1,
- sym_identifier,
- ACTIONS(8959), 1,
- sym_private_property_identifier,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- [160837] = 3,
- ACTIONS(7398), 1,
- anon_sym_LBRACE,
- STATE(2566), 1,
- sym_statement_block,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- [160848] = 3,
- ACTIONS(6763), 1,
- anon_sym_LBRACE,
- STATE(1744), 1,
- sym_class_body,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- [160859] = 3,
- ACTIONS(4189), 1,
- anon_sym_LBRACE,
- STATE(1711), 1,
- sym_statement_block,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- [160870] = 3,
- ACTIONS(8961), 1,
- sym_identifier,
- ACTIONS(8963), 1,
- anon_sym_STAR,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- [160881] = 3,
- ACTIONS(8965), 1,
- anon_sym_SEMI,
- ACTIONS(8967), 1,
- sym__automatic_semicolon,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- [160892] = 3,
- ACTIONS(4189), 1,
- anon_sym_LBRACE,
- STATE(1718), 1,
- sym_statement_block,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- [160903] = 3,
- ACTIONS(8969), 1,
- sym_identifier,
- ACTIONS(8971), 1,
- sym_private_property_identifier,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- [160914] = 3,
- ACTIONS(8973), 1,
- sym_identifier,
- ACTIONS(8975), 1,
- sym_private_property_identifier,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- [160925] = 3,
- ACTIONS(7398), 1,
- anon_sym_LBRACE,
- STATE(2561), 1,
- sym_statement_block,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- [160936] = 3,
- ACTIONS(8977), 1,
- sym_identifier,
- ACTIONS(8979), 1,
- sym_private_property_identifier,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- [160947] = 3,
- ACTIONS(6976), 1,
- anon_sym_LBRACE,
- STATE(4124), 1,
- sym_class_body,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- [160958] = 3,
- ACTIONS(8064), 1,
- anon_sym_from,
- STATE(5490), 1,
- sym__from_clause,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- [160969] = 2,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(4680), 2,
- sym__automatic_semicolon,
- anon_sym_SEMI,
- [160978] = 3,
- ACTIONS(6763), 1,
- anon_sym_LBRACE,
- STATE(1784), 1,
- sym_class_body,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- [160989] = 3,
- ACTIONS(2437), 1,
- anon_sym_LBRACE,
- STATE(686), 1,
- sym_statement_block,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- [161000] = 3,
- ACTIONS(7398), 1,
- anon_sym_LBRACE,
- STATE(2572), 1,
- sym_statement_block,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- [161011] = 3,
- ACTIONS(6419), 1,
- anon_sym_LPAREN,
- STATE(5788), 1,
- sym_formal_parameters,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- [161022] = 3,
- ACTIONS(8981), 1,
- sym_identifier,
- ACTIONS(8983), 1,
- sym_private_property_identifier,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- [161033] = 3,
- ACTIONS(6419), 1,
- anon_sym_LPAREN,
- STATE(5677), 1,
- sym_formal_parameters,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- [161044] = 3,
- ACTIONS(7398), 1,
- anon_sym_LBRACE,
- STATE(2559), 1,
- sym_statement_block,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- [161055] = 3,
- ACTIONS(6419), 1,
- anon_sym_LPAREN,
- STATE(5847), 1,
- sym_formal_parameters,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- [161066] = 3,
- ACTIONS(4829), 1,
- anon_sym_LBRACE,
- STATE(2626), 1,
- sym_statement_block,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- [161077] = 2,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(8985), 2,
- sym__automatic_semicolon,
- anon_sym_SEMI,
- [161086] = 3,
- ACTIONS(7398), 1,
- anon_sym_LBRACE,
- STATE(2603), 1,
- sym_statement_block,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- [161097] = 2,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(8987), 2,
- sym__automatic_semicolon,
- anon_sym_SEMI,
- [161106] = 3,
- ACTIONS(4189), 1,
- anon_sym_LBRACE,
- STATE(1753), 1,
- sym_statement_block,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- [161117] = 3,
- ACTIONS(8989), 1,
- anon_sym_SEMI,
- ACTIONS(8991), 1,
- sym__automatic_semicolon,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- [161128] = 2,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(8993), 2,
- sym__automatic_semicolon,
- anon_sym_SEMI,
- [161137] = 2,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(8995), 2,
- sym__automatic_semicolon,
- anon_sym_SEMI,
- [161146] = 3,
- ACTIONS(8997), 1,
- anon_sym_LPAREN,
- STATE(43), 1,
- sym__for_header,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- [161157] = 3,
- ACTIONS(7860), 1,
- anon_sym_in,
- ACTIONS(7862), 1,
- anon_sym_of,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- [161168] = 3,
- ACTIONS(6763), 1,
- anon_sym_LBRACE,
- STATE(2494), 1,
- sym_class_body,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- [161179] = 3,
- ACTIONS(2437), 1,
- anon_sym_LBRACE,
- STATE(722), 1,
- sym_statement_block,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- [161190] = 2,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(8999), 2,
- sym__automatic_semicolon,
- anon_sym_SEMI,
- [161199] = 3,
- ACTIONS(7398), 1,
- anon_sym_LBRACE,
- STATE(2585), 1,
- sym_statement_block,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- [161210] = 3,
- ACTIONS(9001), 1,
- anon_sym_in,
- ACTIONS(9003), 1,
- anon_sym_COLON,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- [161221] = 2,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(1728), 2,
- sym__automatic_semicolon,
- anon_sym_SEMI,
- [161230] = 3,
- ACTIONS(6976), 1,
- anon_sym_LBRACE,
- STATE(4005), 1,
- sym_class_body,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- [161241] = 3,
- ACTIONS(7398), 1,
- anon_sym_LBRACE,
- STATE(2583), 1,
- sym_statement_block,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- [161252] = 3,
- ACTIONS(7398), 1,
- anon_sym_LBRACE,
- STATE(2584), 1,
- sym_statement_block,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- [161263] = 3,
- ACTIONS(7398), 1,
- anon_sym_LBRACE,
- STATE(2586), 1,
- sym_statement_block,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- [161274] = 3,
- ACTIONS(7398), 1,
- anon_sym_LBRACE,
- STATE(2587), 1,
- sym_statement_block,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- [161285] = 2,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(5909), 2,
- anon_sym_COMMA,
- anon_sym_RBRACE,
- [161294] = 3,
- ACTIONS(8997), 1,
- anon_sym_LPAREN,
- STATE(48), 1,
- sym__for_header,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- [161305] = 2,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(5977), 2,
- anon_sym_COMMA,
- anon_sym_RBRACE,
- [161314] = 3,
- ACTIONS(6419), 1,
- anon_sym_LPAREN,
- STATE(5747), 1,
- sym_formal_parameters,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- [161325] = 3,
- ACTIONS(6419), 1,
- anon_sym_LPAREN,
- STATE(5808), 1,
- sym_formal_parameters,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- [161336] = 3,
- ACTIONS(7398), 1,
- anon_sym_LBRACE,
- STATE(2589), 1,
- sym_statement_block,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- [161347] = 3,
- ACTIONS(6419), 1,
- anon_sym_LPAREN,
- STATE(5915), 1,
- sym_formal_parameters,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- [161358] = 3,
- ACTIONS(2437), 1,
- anon_sym_LBRACE,
- STATE(5345), 1,
- sym_statement_block,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- [161369] = 2,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(5919), 2,
- anon_sym_COMMA,
- anon_sym_RBRACE,
- [161378] = 2,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(9005), 2,
- anon_sym_COMMA,
- anon_sym_RBRACE,
- [161387] = 2,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(4729), 2,
- sym__automatic_semicolon,
- anon_sym_SEMI,
- [161396] = 2,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(4733), 2,
- sym__automatic_semicolon,
- anon_sym_SEMI,
- [161405] = 3,
- ACTIONS(9007), 1,
- anon_sym_LBRACE,
- STATE(3956), 1,
- sym_enum_body,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- [161416] = 2,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(5909), 2,
- anon_sym_COMMA,
- anon_sym_RBRACE,
- [161425] = 3,
- ACTIONS(7398), 1,
- anon_sym_LBRACE,
- STATE(2600), 1,
- sym_statement_block,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- [161436] = 3,
- ACTIONS(7398), 1,
- anon_sym_LBRACE,
- STATE(2588), 1,
- sym_statement_block,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- [161447] = 3,
- ACTIONS(7398), 1,
- anon_sym_LBRACE,
- STATE(2596), 1,
- sym_statement_block,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- [161458] = 3,
- ACTIONS(2437), 1,
- anon_sym_LBRACE,
- STATE(5360), 1,
- sym_statement_block,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- [161469] = 3,
- ACTIONS(6763), 1,
- anon_sym_LBRACE,
- STATE(1646), 1,
- sym_class_body,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- [161480] = 3,
- ACTIONS(7398), 1,
- anon_sym_LBRACE,
- STATE(2573), 1,
- sym_statement_block,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- [161491] = 3,
- ACTIONS(2437), 1,
- anon_sym_LBRACE,
- STATE(5477), 1,
- sym_statement_block,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- [161502] = 3,
- ACTIONS(6409), 1,
- anon_sym_LPAREN,
- STATE(3415), 1,
- sym_formal_parameters,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- [161513] = 3,
- ACTIONS(7096), 1,
- anon_sym_LBRACE,
- STATE(814), 1,
- sym_class_body,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- [161524] = 3,
- ACTIONS(4189), 1,
- anon_sym_LBRACE,
- STATE(1763), 1,
- sym_statement_block,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- [161535] = 2,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(5961), 2,
- anon_sym_COMMA,
- anon_sym_RBRACE,
- [161544] = 2,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(9009), 2,
- anon_sym_COMMA,
- anon_sym_GT,
- [161553] = 3,
- ACTIONS(6419), 1,
- anon_sym_LPAREN,
- STATE(5666), 1,
- sym_formal_parameters,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- [161564] = 3,
- ACTIONS(2437), 1,
- anon_sym_LBRACE,
- STATE(5484), 1,
- sym_statement_block,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- [161575] = 3,
- ACTIONS(6419), 1,
- anon_sym_LPAREN,
- STATE(3769), 1,
- sym_formal_parameters,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- [161586] = 3,
- ACTIONS(6960), 1,
- anon_sym_LBRACE,
- STATE(230), 1,
- sym_class_body,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- [161597] = 2,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(5919), 2,
- anon_sym_COMMA,
- anon_sym_RBRACE,
- [161606] = 2,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(5915), 2,
- anon_sym_COMMA,
- anon_sym_RBRACE,
- [161615] = 3,
- ACTIONS(4029), 1,
- anon_sym_LBRACE,
- STATE(2274), 1,
- sym_statement_block,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- [161626] = 3,
- ACTIONS(4029), 1,
- anon_sym_LBRACE,
- STATE(2275), 1,
- sym_statement_block,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- [161637] = 3,
- ACTIONS(6725), 1,
- anon_sym_LBRACE,
- STATE(2139), 1,
- sym_class_body,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- [161648] = 3,
- ACTIONS(6572), 1,
- anon_sym_COLON,
- ACTIONS(8765), 1,
- anon_sym_GT,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- [161659] = 3,
- ACTIONS(8947), 1,
- anon_sym_LBRACE,
- STATE(858), 1,
- sym_enum_body,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- [161670] = 3,
- ACTIONS(8881), 1,
- anon_sym_LPAREN,
- STATE(5371), 1,
- sym_parenthesized_expression,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- [161681] = 3,
- ACTIONS(6725), 1,
- anon_sym_LBRACE,
- STATE(2276), 1,
- sym_class_body,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- [161692] = 2,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(5965), 2,
- anon_sym_COMMA,
- anon_sym_RBRACE,
- [161701] = 3,
- ACTIONS(6642), 1,
- anon_sym_DOT,
- ACTIONS(9011), 1,
- anon_sym_GT,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- [161712] = 3,
- ACTIONS(2437), 1,
- anon_sym_LBRACE,
- STATE(5494), 1,
- sym_statement_block,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- [161723] = 3,
- ACTIONS(9013), 1,
- sym_identifier,
- ACTIONS(9015), 1,
- anon_sym_STAR,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- [161734] = 2,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(5961), 2,
- anon_sym_COMMA,
- anon_sym_RBRACE,
- [161743] = 3,
- ACTIONS(4029), 1,
- anon_sym_LBRACE,
- STATE(2337), 1,
- sym_statement_block,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- [161754] = 3,
- ACTIONS(8342), 1,
- sym_identifier,
- ACTIONS(8346), 1,
- sym_private_property_identifier,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- [161765] = 3,
- ACTIONS(7398), 1,
- anon_sym_LBRACE,
- STATE(2592), 1,
- sym_statement_block,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- [161776] = 3,
- ACTIONS(6419), 1,
- anon_sym_LPAREN,
- STATE(4025), 1,
- sym_formal_parameters,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- [161787] = 3,
- ACTIONS(7190), 1,
- anon_sym_LBRACE,
- STATE(3920), 1,
- sym_statement_block,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- [161798] = 3,
- ACTIONS(9017), 1,
- sym_identifier,
- ACTIONS(9019), 1,
- anon_sym_STAR,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- [161809] = 3,
- ACTIONS(9021), 1,
- anon_sym_LBRACE,
- STATE(796), 1,
- sym_switch_body,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- [161820] = 3,
- ACTIONS(7398), 1,
- anon_sym_LBRACE,
- STATE(2577), 1,
- sym_statement_block,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- [161831] = 3,
- ACTIONS(7398), 1,
- anon_sym_LBRACE,
- STATE(2609), 1,
- sym_statement_block,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- [161842] = 3,
- ACTIONS(3205), 1,
- anon_sym_LPAREN,
- STATE(3627), 1,
- sym_formal_parameters,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- [161853] = 3,
- ACTIONS(9007), 1,
- anon_sym_LBRACE,
- STATE(3922), 1,
- sym_enum_body,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- [161864] = 3,
- ACTIONS(9023), 1,
- sym_identifier,
- ACTIONS(9025), 1,
- anon_sym_STAR,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- [161875] = 3,
- ACTIONS(3477), 1,
- anon_sym_COLON,
- STATE(5509), 1,
- sym_type_annotation,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- [161886] = 3,
- ACTIONS(7398), 1,
- anon_sym_LBRACE,
- STATE(2594), 1,
- sym_statement_block,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- [161897] = 3,
- ACTIONS(6419), 1,
- anon_sym_LPAREN,
- STATE(5888), 1,
- sym_formal_parameters,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- [161908] = 3,
- ACTIONS(9027), 1,
- anon_sym_SEMI,
- ACTIONS(9029), 1,
- sym__automatic_semicolon,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- [161919] = 2,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(9031), 2,
- sym__automatic_semicolon,
- anon_sym_SEMI,
- [161928] = 3,
- ACTIONS(7398), 1,
- anon_sym_LBRACE,
- STATE(2610), 1,
- sym_statement_block,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- [161939] = 2,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(5948), 2,
- anon_sym_COMMA,
- anon_sym_RBRACE,
- [161948] = 2,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(5944), 2,
- anon_sym_COMMA,
- anon_sym_RBRACE,
- [161957] = 2,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(4850), 2,
- sym__automatic_semicolon,
- anon_sym_SEMI,
- [161966] = 3,
- ACTIONS(6419), 1,
- anon_sym_LPAREN,
- STATE(5692), 1,
- sym_formal_parameters,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- [161977] = 3,
- ACTIONS(6960), 1,
- anon_sym_LBRACE,
- STATE(237), 1,
- sym_class_body,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- [161988] = 3,
- ACTIONS(9033), 1,
- sym_identifier,
- ACTIONS(9035), 1,
- sym_private_property_identifier,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- [161999] = 3,
- ACTIONS(8881), 1,
- anon_sym_LPAREN,
- STATE(37), 1,
- sym_parenthesized_expression,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- [162010] = 3,
- ACTIONS(9037), 1,
- sym_identifier,
- STATE(4756), 1,
- sym_nested_identifier,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- [162021] = 3,
- ACTIONS(7398), 1,
- anon_sym_LBRACE,
- STATE(2578), 1,
- sym_statement_block,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- [162032] = 3,
- ACTIONS(9039), 1,
- sym_identifier,
- ACTIONS(9041), 1,
- sym_private_property_identifier,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- [162043] = 3,
- ACTIONS(8803), 1,
- sym_identifier,
- ACTIONS(8807), 1,
- sym_private_property_identifier,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- [162054] = 3,
- ACTIONS(9043), 1,
- sym_identifier,
- ACTIONS(9045), 1,
- sym_private_property_identifier,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- [162065] = 3,
- ACTIONS(6419), 1,
- anon_sym_LPAREN,
- STATE(5769), 1,
- sym_formal_parameters,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- [162076] = 3,
- ACTIONS(6725), 1,
- anon_sym_LBRACE,
- STATE(2141), 1,
- sym_class_body,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- [162087] = 3,
- ACTIONS(7398), 1,
- anon_sym_LBRACE,
- STATE(2616), 1,
- sym_statement_block,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- [162098] = 3,
- ACTIONS(6725), 1,
- anon_sym_LBRACE,
- STATE(2388), 1,
- sym_class_body,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- [162109] = 3,
- ACTIONS(9047), 1,
- sym_identifier,
- ACTIONS(9049), 1,
- sym_private_property_identifier,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- [162120] = 3,
- ACTIONS(6960), 1,
- anon_sym_LBRACE,
- STATE(229), 1,
- sym_class_body,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- [162131] = 3,
- ACTIONS(9051), 1,
- sym_identifier,
- ACTIONS(9053), 1,
- sym_private_property_identifier,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- [162142] = 3,
- ACTIONS(9055), 1,
- sym_identifier,
- ACTIONS(9057), 1,
- sym_private_property_identifier,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- [162153] = 3,
- ACTIONS(6419), 1,
- anon_sym_LPAREN,
- STATE(5806), 1,
- sym_formal_parameters,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- [162164] = 3,
- ACTIONS(3205), 1,
- anon_sym_LPAREN,
- STATE(3233), 1,
- sym_formal_parameters,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- [162175] = 2,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(7372), 2,
- anon_sym_LBRACE,
- anon_sym_EQ_GT,
- [162184] = 3,
- ACTIONS(7398), 1,
- anon_sym_LBRACE,
- STATE(2563), 1,
- sym_statement_block,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- [162195] = 3,
- ACTIONS(9059), 1,
- sym_identifier,
- ACTIONS(9061), 1,
- sym_private_property_identifier,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- [162206] = 3,
- ACTIONS(5987), 1,
- anon_sym_LPAREN,
- STATE(2709), 1,
- sym_arguments,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- [162217] = 3,
- ACTIONS(9063), 1,
- sym_identifier,
- ACTIONS(9065), 1,
- sym_private_property_identifier,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- [162228] = 3,
- ACTIONS(6419), 1,
- anon_sym_LPAREN,
- STATE(5650), 1,
- sym_formal_parameters,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- [162239] = 3,
- ACTIONS(4189), 1,
- anon_sym_LBRACE,
- STATE(1767), 1,
- sym_statement_block,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- [162250] = 3,
- ACTIONS(9067), 1,
- anon_sym_SEMI,
- ACTIONS(9069), 1,
- sym__automatic_semicolon,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- [162261] = 3,
- ACTIONS(6725), 1,
- anon_sym_LBRACE,
- STATE(2247), 1,
- sym_class_body,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- [162272] = 3,
- ACTIONS(7398), 1,
- anon_sym_LBRACE,
- STATE(2614), 1,
- sym_statement_block,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- [162283] = 2,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(8812), 2,
- anon_sym_COMMA,
- anon_sym_RBRACE,
- [162292] = 3,
- ACTIONS(9071), 1,
- sym_identifier,
- ACTIONS(9073), 1,
- sym_private_property_identifier,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- [162303] = 3,
- ACTIONS(9075), 1,
- anon_sym_SEMI,
- ACTIONS(9077), 1,
- sym__automatic_semicolon,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- [162314] = 3,
- ACTIONS(3205), 1,
- anon_sym_LPAREN,
- STATE(3504), 1,
- sym_formal_parameters,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- [162325] = 2,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(9079), 2,
- anon_sym_COMMA,
- anon_sym_RBRACE,
- [162334] = 3,
- ACTIONS(7398), 1,
- anon_sym_LBRACE,
- STATE(2565), 1,
- sym_statement_block,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- [162345] = 3,
- ACTIONS(6976), 1,
- anon_sym_LBRACE,
- STATE(723), 1,
- sym_class_body,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- [162356] = 3,
- ACTIONS(7398), 1,
- anon_sym_LBRACE,
- STATE(2567), 1,
- sym_statement_block,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- [162367] = 3,
- ACTIONS(7398), 1,
- anon_sym_LBRACE,
- STATE(2581), 1,
- sym_statement_block,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- [162378] = 3,
- ACTIONS(4029), 1,
- anon_sym_LBRACE,
- STATE(2197), 1,
- sym_statement_block,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- [162389] = 3,
- ACTIONS(7398), 1,
- anon_sym_LBRACE,
- STATE(2611), 1,
- sym_statement_block,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- [162400] = 2,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(9081), 2,
- sym__automatic_semicolon,
- anon_sym_SEMI,
- [162409] = 3,
- ACTIONS(9083), 1,
- sym_identifier,
- ACTIONS(9085), 1,
- sym_private_property_identifier,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- [162420] = 3,
- ACTIONS(7398), 1,
- anon_sym_LBRACE,
- STATE(2568), 1,
- sym_statement_block,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- [162431] = 3,
- ACTIONS(9087), 1,
- sym_identifier,
- ACTIONS(9089), 1,
- sym_private_property_identifier,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- [162442] = 3,
- ACTIONS(7190), 1,
- anon_sym_LBRACE,
- STATE(735), 1,
- sym_statement_block,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- [162453] = 3,
- ACTIONS(8589), 1,
- sym_identifier,
- ACTIONS(8593), 1,
- sym_private_property_identifier,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- [162464] = 3,
- ACTIONS(6976), 1,
- anon_sym_LBRACE,
- STATE(715), 1,
- sym_class_body,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- [162475] = 3,
- ACTIONS(9091), 1,
- sym_identifier,
- ACTIONS(9093), 1,
- sym_private_property_identifier,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- [162486] = 3,
- ACTIONS(6419), 1,
- anon_sym_LPAREN,
- STATE(4046), 1,
- sym_formal_parameters,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- [162497] = 3,
- ACTIONS(6419), 1,
- anon_sym_LPAREN,
- STATE(5794), 1,
- sym_formal_parameters,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- [162508] = 3,
- ACTIONS(6725), 1,
- anon_sym_LBRACE,
- STATE(2158), 1,
- sym_class_body,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- [162519] = 3,
- ACTIONS(9095), 1,
- sym_identifier,
- ACTIONS(9097), 1,
- sym_private_property_identifier,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- [162530] = 3,
- ACTIONS(9099), 1,
- sym_identifier,
- ACTIONS(9101), 1,
- sym_private_property_identifier,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- [162541] = 3,
- ACTIONS(7398), 1,
- anon_sym_LBRACE,
- STATE(2595), 1,
- sym_statement_block,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- [162552] = 3,
- ACTIONS(9103), 1,
- sym_identifier,
- ACTIONS(9105), 1,
- sym_private_property_identifier,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- [162563] = 3,
- ACTIONS(4029), 1,
- anon_sym_LBRACE,
- STATE(2160), 1,
- sym_statement_block,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- [162574] = 3,
- ACTIONS(4029), 1,
- anon_sym_LBRACE,
- STATE(2145), 1,
- sym_statement_block,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- [162585] = 3,
- ACTIONS(7190), 1,
- anon_sym_LBRACE,
- STATE(4051), 1,
- sym_statement_block,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- [162596] = 3,
- ACTIONS(9107), 1,
- sym_identifier,
- ACTIONS(9109), 1,
- sym_private_property_identifier,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- [162607] = 3,
- ACTIONS(9111), 1,
- anon_sym_SEMI,
- ACTIONS(9113), 1,
- sym__automatic_semicolon,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- [162618] = 2,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(9115), 2,
- anon_sym_COMMA,
- anon_sym_RBRACK,
- [162627] = 2,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(8823), 2,
- anon_sym_COMMA,
- anon_sym_RBRACK,
- [162636] = 3,
- ACTIONS(4029), 1,
- anon_sym_LBRACE,
- STATE(2169), 1,
- sym_statement_block,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- [162647] = 3,
- ACTIONS(9117), 1,
- sym_identifier,
- ACTIONS(9119), 1,
- sym_private_property_identifier,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- [162658] = 2,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(4852), 2,
- sym__automatic_semicolon,
- anon_sym_SEMI,
- [162667] = 2,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(9121), 2,
- anon_sym_COMMA,
- anon_sym_RBRACE,
- [162676] = 3,
- ACTIONS(7398), 1,
- anon_sym_LBRACE,
- STATE(2562), 1,
- sym_statement_block,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- [162687] = 2,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(9123), 2,
- anon_sym_COMMA,
- anon_sym_RPAREN,
- [162696] = 3,
- ACTIONS(6976), 1,
- anon_sym_LBRACE,
- STATE(4059), 1,
- sym_class_body,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- [162707] = 3,
- ACTIONS(9125), 1,
- sym_identifier,
- ACTIONS(9127), 1,
- sym_private_property_identifier,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- [162718] = 3,
- ACTIONS(9129), 1,
- anon_sym_SEMI,
- ACTIONS(9131), 1,
- sym__automatic_semicolon,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- [162729] = 3,
- ACTIONS(9133), 1,
- sym_identifier,
- ACTIONS(9135), 1,
- sym_private_property_identifier,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- [162740] = 3,
- ACTIONS(6419), 1,
- anon_sym_LPAREN,
- STATE(5607), 1,
- sym_formal_parameters,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- [162751] = 3,
- ACTIONS(9137), 1,
- sym_identifier,
- ACTIONS(9139), 1,
- sym_private_property_identifier,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- [162762] = 3,
- ACTIONS(9141), 1,
- anon_sym_SEMI,
- ACTIONS(9143), 1,
- sym__automatic_semicolon,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- [162773] = 3,
- ACTIONS(8447), 1,
- sym_identifier,
- ACTIONS(8451), 1,
- sym_private_property_identifier,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- [162784] = 3,
- ACTIONS(7190), 1,
- anon_sym_LBRACE,
- STATE(4060), 1,
- sym_statement_block,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- [162795] = 3,
- ACTIONS(3145), 1,
- sym_jsx_identifier,
- ACTIONS(9145), 1,
- sym_identifier,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- [162806] = 3,
- ACTIONS(9147), 1,
- sym_identifier,
- ACTIONS(9149), 1,
- sym_private_property_identifier,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- [162817] = 3,
- ACTIONS(9151), 1,
- sym_identifier,
- ACTIONS(9153), 1,
- sym_private_property_identifier,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- [162828] = 3,
- ACTIONS(4029), 1,
- anon_sym_LBRACE,
- STATE(2343), 1,
- sym_statement_block,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- [162839] = 3,
- ACTIONS(9155), 1,
- sym_identifier,
- ACTIONS(9157), 1,
- sym_private_property_identifier,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- [162850] = 2,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(5983), 2,
- anon_sym_COMMA,
- anon_sym_RBRACE,
- [162859] = 3,
- ACTIONS(9159), 1,
- sym_identifier,
- ACTIONS(9161), 1,
- sym_private_property_identifier,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- [162870] = 3,
- ACTIONS(8881), 1,
- anon_sym_LPAREN,
- STATE(60), 1,
- sym_parenthesized_expression,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- [162881] = 3,
- ACTIONS(2437), 1,
- anon_sym_LBRACE,
- STATE(5204), 1,
- sym_statement_block,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- [162892] = 3,
- ACTIONS(7398), 1,
- anon_sym_LBRACE,
- STATE(2605), 1,
- sym_statement_block,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- [162903] = 3,
- ACTIONS(8881), 1,
- anon_sym_LPAREN,
- STATE(62), 1,
- sym_parenthesized_expression,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- [162914] = 3,
- ACTIONS(9163), 1,
- sym_identifier,
- ACTIONS(9165), 1,
- sym_private_property_identifier,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- [162925] = 3,
- ACTIONS(2437), 1,
- anon_sym_LBRACE,
- STATE(5267), 1,
- sym_statement_block,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- [162936] = 3,
- ACTIONS(6725), 1,
- anon_sym_LBRACE,
- STATE(2304), 1,
- sym_class_body,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- [162947] = 2,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(5944), 2,
- anon_sym_COMMA,
- anon_sym_RBRACE,
- [162956] = 3,
- ACTIONS(3438), 1,
- anon_sym_LPAREN,
- STATE(1203), 1,
- sym_arguments,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- [162967] = 3,
- ACTIONS(8997), 1,
- anon_sym_LPAREN,
- STATE(63), 1,
- sym__for_header,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- [162978] = 3,
- ACTIONS(9167), 1,
- sym_identifier,
- ACTIONS(9169), 1,
- sym_private_property_identifier,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- [162989] = 2,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(9171), 2,
- anon_sym_COMMA,
- anon_sym_RBRACE,
- [162998] = 2,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(4759), 2,
- sym__automatic_semicolon,
- anon_sym_SEMI,
- [163007] = 3,
- ACTIONS(4519), 1,
- anon_sym_LPAREN,
- STATE(2219), 1,
- sym_arguments,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- [163018] = 2,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(5969), 2,
- anon_sym_COMMA,
- anon_sym_RBRACE,
- [163027] = 2,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(9173), 2,
- sym__automatic_semicolon,
- anon_sym_SEMI,
- [163036] = 2,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(9175), 2,
- anon_sym_COMMA,
- anon_sym_GT,
- [163045] = 2,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(7653), 2,
- anon_sym_LBRACE,
- anon_sym_EQ_GT,
- [163054] = 3,
- ACTIONS(2437), 1,
- anon_sym_LBRACE,
- STATE(5323), 1,
- sym_statement_block,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- [163065] = 3,
- ACTIONS(8881), 1,
- anon_sym_LPAREN,
- STATE(34), 1,
- sym_parenthesized_expression,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- [163076] = 3,
- ACTIONS(9177), 1,
- anon_sym_SEMI,
- ACTIONS(9179), 1,
- sym__automatic_semicolon,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- [163087] = 3,
- ACTIONS(9181), 1,
- anon_sym_SEMI,
- ACTIONS(9183), 1,
- sym__automatic_semicolon,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- [163098] = 2,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(7661), 2,
- anon_sym_LBRACE,
- anon_sym_EQ_GT,
- [163107] = 2,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(9185), 2,
- anon_sym_COMMA,
- anon_sym_RBRACE,
- [163116] = 2,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(5973), 2,
- anon_sym_COMMA,
- anon_sym_RBRACE,
- [163125] = 2,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(9187), 2,
- anon_sym_COMMA,
- anon_sym_GT,
- [163134] = 3,
- ACTIONS(9189), 1,
- anon_sym_LPAREN,
- STATE(732), 1,
- sym_parenthesized_expression,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- [163145] = 3,
- ACTIONS(6725), 1,
- anon_sym_LBRACE,
- STATE(2200), 1,
- sym_class_body,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- [163156] = 3,
- ACTIONS(4029), 1,
- anon_sym_LBRACE,
- STATE(2257), 1,
- sym_statement_block,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- [163167] = 3,
- ACTIONS(2437), 1,
- anon_sym_LBRACE,
- STATE(772), 1,
- sym_statement_block,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- [163178] = 3,
- ACTIONS(7096), 1,
- anon_sym_LBRACE,
- STATE(853), 1,
- sym_class_body,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- [163189] = 3,
- ACTIONS(6763), 1,
- anon_sym_LBRACE,
- STATE(1785), 1,
- sym_class_body,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- [163200] = 3,
- ACTIONS(6976), 1,
- anon_sym_LBRACE,
- STATE(4074), 1,
- sym_class_body,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- [163211] = 3,
- ACTIONS(8064), 1,
- anon_sym_from,
- STATE(4164), 1,
- sym__from_clause,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- [163222] = 2,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(5923), 2,
- anon_sym_COMMA,
- anon_sym_RBRACE,
- [163231] = 3,
- ACTIONS(2437), 1,
- anon_sym_LBRACE,
- STATE(5321), 1,
- sym_statement_block,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- [163242] = 2,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(5936), 2,
- anon_sym_COMMA,
- anon_sym_RBRACE,
- [163251] = 3,
- ACTIONS(3477), 1,
- anon_sym_COLON,
- STATE(5446), 1,
- sym_type_annotation,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- [163262] = 3,
- ACTIONS(2437), 1,
- anon_sym_LBRACE,
- STATE(5329), 1,
- sym_statement_block,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- [163273] = 2,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(9191), 2,
- anon_sym_COMMA,
- anon_sym_RBRACK,
- [163282] = 3,
- ACTIONS(2437), 1,
- anon_sym_LBRACE,
- STATE(5269), 1,
- sym_statement_block,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- [163293] = 2,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(9193), 2,
- anon_sym_COMMA,
- anon_sym_RBRACK,
- [163302] = 2,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(8486), 2,
- anon_sym_COMMA,
- anon_sym_RBRACK,
- [163311] = 3,
- ACTIONS(6976), 1,
- anon_sym_LBRACE,
- STATE(4075), 1,
- sym_class_body,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- [163322] = 3,
- ACTIONS(6572), 1,
- anon_sym_COLON,
- ACTIONS(8873), 1,
- anon_sym_GT,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- [163333] = 3,
- ACTIONS(7398), 1,
- anon_sym_LBRACE,
- STATE(2558), 1,
- sym_statement_block,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- [163344] = 3,
- ACTIONS(6642), 1,
- anon_sym_DOT,
- ACTIONS(9195), 1,
- anon_sym_GT,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- [163355] = 3,
- ACTIONS(6419), 1,
- anon_sym_LPAREN,
- STATE(5645), 1,
- sym_formal_parameters,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- [163366] = 3,
- ACTIONS(6419), 1,
- anon_sym_LPAREN,
- STATE(4352), 1,
- sym_formal_parameters,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- [163377] = 3,
- ACTIONS(6419), 1,
- anon_sym_LPAREN,
- STATE(5654), 1,
- sym_formal_parameters,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- [163388] = 3,
- ACTIONS(7398), 1,
- anon_sym_LBRACE,
- STATE(2618), 1,
- sym_statement_block,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- [163399] = 3,
- ACTIONS(6419), 1,
- anon_sym_LPAREN,
- STATE(4355), 1,
- sym_formal_parameters,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- [163410] = 3,
- ACTIONS(6419), 1,
- anon_sym_LPAREN,
- STATE(5661), 1,
- sym_formal_parameters,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- [163421] = 3,
- ACTIONS(7398), 1,
- anon_sym_LBRACE,
- STATE(2569), 1,
- sym_statement_block,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- [163432] = 3,
- ACTIONS(6763), 1,
- anon_sym_LBRACE,
- STATE(1701), 1,
- sym_class_body,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- [163443] = 3,
- ACTIONS(4189), 1,
- anon_sym_LBRACE,
- STATE(1647), 1,
- sym_statement_block,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- [163454] = 3,
- ACTIONS(6725), 1,
- anon_sym_LBRACE,
- STATE(2335), 1,
- sym_class_body,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- [163465] = 3,
- ACTIONS(6419), 1,
- anon_sym_LPAREN,
- STATE(5758), 1,
- sym_formal_parameters,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- [163476] = 3,
- ACTIONS(4189), 1,
- anon_sym_LBRACE,
- STATE(1619), 1,
- sym_statement_block,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- [163487] = 3,
- ACTIONS(8881), 1,
- anon_sym_LPAREN,
- STATE(67), 1,
- sym_parenthesized_expression,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- [163498] = 3,
- ACTIONS(6725), 1,
- anon_sym_LBRACE,
- STATE(2372), 1,
- sym_class_body,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- [163509] = 3,
- ACTIONS(2437), 1,
- anon_sym_LBRACE,
- STATE(721), 1,
- sym_statement_block,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- [163520] = 2,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(6719), 2,
- anon_sym_in,
- anon_sym_of,
- [163529] = 2,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- ACTIONS(5936), 2,
- anon_sym_COMMA,
- anon_sym_RBRACE,
- [163538] = 2,
- ACTIONS(9197), 1,
- anon_sym_RBRACK,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- [163546] = 2,
- ACTIONS(9199), 1,
- anon_sym_RBRACK,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- [163554] = 2,
- ACTIONS(9201), 1,
- anon_sym_EQ,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- [163562] = 2,
- ACTIONS(9203), 1,
- sym_identifier,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- [163570] = 2,
- ACTIONS(9205), 1,
- anon_sym_class,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- [163578] = 2,
- ACTIONS(9207), 1,
- anon_sym_COLON,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- [163586] = 2,
- ACTIONS(8757), 1,
- anon_sym_RBRACE,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- [163594] = 2,
- ACTIONS(9209), 1,
- anon_sym_DOT,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- [163602] = 2,
- ACTIONS(9211), 1,
- anon_sym_LPAREN,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- [163610] = 2,
- ACTIONS(9213), 1,
- anon_sym_RBRACK,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- [163618] = 2,
- ACTIONS(9215), 1,
- sym_identifier,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- [163626] = 2,
- ACTIONS(9217), 1,
- anon_sym_from,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- [163634] = 2,
- ACTIONS(9219), 1,
- anon_sym_RBRACK,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- [163642] = 2,
- ACTIONS(4083), 1,
- anon_sym_in,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- [163650] = 2,
- ACTIONS(9221), 1,
- anon_sym_EQ,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- [163658] = 2,
- ACTIONS(9223), 1,
- sym_identifier,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- [163666] = 2,
- ACTIONS(9225), 1,
- anon_sym_EQ_GT,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- [163674] = 2,
- ACTIONS(9227), 1,
- anon_sym_RBRACK,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- [163682] = 2,
- ACTIONS(5298), 1,
- anon_sym_in,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- [163690] = 2,
- ACTIONS(9229), 1,
- anon_sym_EQ_GT,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- [163698] = 2,
- ACTIONS(9231), 1,
- anon_sym_EQ_GT,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- [163706] = 2,
- ACTIONS(9233), 1,
- anon_sym_RBRACK,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- [163714] = 2,
- ACTIONS(9235), 1,
- sym_identifier,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- [163722] = 2,
- ACTIONS(5017), 1,
- anon_sym_RBRACK,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- [163730] = 2,
- ACTIONS(9237), 1,
- anon_sym_EQ_GT,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- [163738] = 2,
- ACTIONS(9239), 1,
- anon_sym_EQ_GT,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- [163746] = 2,
- ACTIONS(5031), 1,
- anon_sym_COLON,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- [163754] = 3,
- ACTIONS(3), 1,
- sym_comment,
- ACTIONS(5), 1,
- sym_html_comment,
- ACTIONS(9241), 1,
- anon_sym_SLASH2,
- [163764] = 2,
- ACTIONS(8571), 1,
- anon_sym_RBRACK,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- [163772] = 2,
- ACTIONS(9243), 1,
- anon_sym_new,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- [163780] = 2,
- ACTIONS(9245), 1,
- anon_sym_RPAREN,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- [163788] = 2,
- ACTIONS(5147), 1,
- anon_sym_in,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- [163796] = 2,
- ACTIONS(9247), 1,
- anon_sym_EQ_GT,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- [163804] = 2,
- ACTIONS(9249), 1,
- anon_sym_class,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- [163812] = 2,
- ACTIONS(9251), 1,
- sym_identifier,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- [163820] = 2,
- ACTIONS(9253), 1,
- anon_sym_EQ_GT,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- [163828] = 2,
- ACTIONS(9255), 1,
- anon_sym_RBRACK,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- [163836] = 2,
- ACTIONS(9257), 1,
- anon_sym_EQ,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- [163844] = 2,
- ACTIONS(9259), 1,
- anon_sym_namespace,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- [163852] = 2,
- ACTIONS(9261), 1,
- anon_sym_RBRACK,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- [163860] = 2,
- ACTIONS(9263), 1,
- anon_sym_while,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- [163868] = 2,
- ACTIONS(9265), 1,
- sym_identifier,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- [163876] = 2,
- ACTIONS(9267), 1,
- anon_sym_RBRACK,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- [163884] = 2,
- ACTIONS(8765), 1,
- anon_sym_GT,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- [163892] = 2,
- ACTIONS(9269), 1,
- anon_sym_EQ_GT,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- [163900] = 2,
- ACTIONS(9271), 1,
- anon_sym_as,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- [163908] = 2,
- ACTIONS(8929), 1,
- anon_sym_from,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- [163916] = 2,
- ACTIONS(9273), 1,
- anon_sym_RBRACK,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- [163924] = 2,
- ACTIONS(9275), 1,
- anon_sym_EQ,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- [163932] = 2,
- ACTIONS(9277), 1,
- anon_sym_RBRACK,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- [163940] = 2,
- ACTIONS(9279), 1,
- sym_identifier,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- [163948] = 2,
- ACTIONS(9281), 1,
- anon_sym_EQ_GT,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- [163956] = 2,
- ACTIONS(9283), 1,
- anon_sym_from,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- [163964] = 2,
- ACTIONS(9285), 1,
- anon_sym_EQ_GT,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- [163972] = 2,
- ACTIONS(9287), 1,
- anon_sym_EQ_GT,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- [163980] = 2,
- ACTIONS(5033), 1,
- anon_sym_RPAREN,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- [163988] = 2,
- ACTIONS(6540), 1,
- anon_sym_is,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- [163996] = 2,
- ACTIONS(9289), 1,
- anon_sym_EQ,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- [164004] = 2,
- ACTIONS(9291), 1,
- anon_sym_require,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- [164012] = 2,
- ACTIONS(9293), 1,
- anon_sym_RBRACK,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- [164020] = 2,
- ACTIONS(9295), 1,
- sym_identifier,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- [164028] = 2,
- ACTIONS(9297), 1,
- sym_identifier,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- [164036] = 2,
- ACTIONS(8783), 1,
- anon_sym_RBRACK,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- [164044] = 2,
- ACTIONS(9299), 1,
- anon_sym_EQ,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- [164052] = 2,
- ACTIONS(9301), 1,
- sym_identifier,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- [164060] = 2,
- ACTIONS(8528), 1,
- sym_identifier,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- [164068] = 2,
- ACTIONS(9303), 1,
- sym_number,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- [164076] = 2,
- ACTIONS(9305), 1,
- anon_sym_class,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- [164084] = 2,
- ACTIONS(4979), 1,
- anon_sym_RBRACK,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- [164092] = 2,
- ACTIONS(9307), 1,
- anon_sym_EQ,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- [164100] = 3,
- ACTIONS(3), 1,
- sym_comment,
- ACTIONS(5), 1,
- sym_html_comment,
- ACTIONS(9309), 1,
- sym_regex_pattern,
- [164110] = 2,
- ACTIONS(5736), 1,
- anon_sym_in,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- [164118] = 2,
- ACTIONS(9311), 1,
- anon_sym_EQ,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- [164126] = 2,
- ACTIONS(9313), 1,
- anon_sym_EQ_GT,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- [164134] = 2,
- ACTIONS(9315), 1,
- anon_sym_EQ,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- [164142] = 2,
- ACTIONS(6658), 1,
- anon_sym_is,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- [164150] = 2,
- ACTIONS(9317), 1,
- anon_sym_DOT,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- [164158] = 2,
- ACTIONS(7657), 1,
- anon_sym_RPAREN,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- [164166] = 2,
- ACTIONS(9319), 1,
- anon_sym_EQ_GT,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- [164174] = 2,
- ACTIONS(9321), 1,
- anon_sym_symbol,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- [164182] = 2,
- ACTIONS(9323), 1,
- sym_number,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- [164190] = 2,
- ACTIONS(9325), 1,
- sym_identifier,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- [164198] = 2,
- ACTIONS(7621), 1,
- sym_identifier,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- [164206] = 2,
- ACTIONS(9327), 1,
- anon_sym_RBRACK,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- [164214] = 2,
- ACTIONS(9329), 1,
- anon_sym_symbol,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- [164222] = 2,
- ACTIONS(9331), 1,
- anon_sym_EQ_GT,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- [164230] = 2,
- ACTIONS(9333), 1,
- sym_identifier,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- [164238] = 2,
- ACTIONS(9335), 1,
- sym_identifier,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- [164246] = 2,
- ACTIONS(8411), 1,
- anon_sym_RBRACK,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- [164254] = 2,
- ACTIONS(9337), 1,
- anon_sym_new,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- [164262] = 2,
- ACTIONS(9339), 1,
- sym_identifier,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- [164270] = 2,
- ACTIONS(9341), 1,
- sym_identifier,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- [164278] = 2,
- ACTIONS(9343), 1,
- anon_sym_EQ_GT,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- [164286] = 2,
- ACTIONS(9345), 1,
- anon_sym_EQ_GT,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- [164294] = 2,
- ACTIONS(8847), 1,
- sym_identifier,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- [164302] = 2,
- ACTIONS(9347), 1,
- anon_sym_symbol,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- [164310] = 2,
- ACTIONS(9349), 1,
- anon_sym_EQ_GT,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- [164318] = 2,
- ACTIONS(9351), 1,
- sym_identifier,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- [164326] = 2,
- ACTIONS(9353), 1,
- anon_sym_EQ_GT,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- [164334] = 2,
- ACTIONS(7820), 1,
- anon_sym_EQ,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- [164342] = 2,
- ACTIONS(9355), 1,
- anon_sym_COLON,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- [164350] = 2,
- ACTIONS(4269), 1,
- anon_sym_RPAREN,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- [164358] = 2,
- ACTIONS(9357), 1,
- anon_sym_RBRACK,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- [164366] = 2,
- ACTIONS(9359), 1,
- anon_sym_EQ_GT,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- [164374] = 2,
- ACTIONS(9361), 1,
- anon_sym_EQ_GT,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- [164382] = 2,
- ACTIONS(9363), 1,
- anon_sym_RBRACK,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- [164390] = 2,
- ACTIONS(9365), 1,
- anon_sym_RPAREN,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- [164398] = 2,
- ACTIONS(9367), 1,
- anon_sym_RBRACK,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- [164406] = 2,
- ACTIONS(9369), 1,
- anon_sym_from,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- [164414] = 2,
- ACTIONS(9371), 1,
- sym_identifier,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- [164422] = 3,
- ACTIONS(3), 1,
- sym_comment,
- ACTIONS(5), 1,
- sym_html_comment,
- ACTIONS(9373), 1,
- sym_regex_pattern,
- [164432] = 2,
- ACTIONS(9375), 1,
- anon_sym_EQ_GT,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- [164440] = 2,
- ACTIONS(9377), 1,
- anon_sym_COLON,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- [164448] = 2,
- ACTIONS(9379), 1,
- anon_sym_EQ_GT,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- [164456] = 2,
- ACTIONS(9381), 1,
- sym_identifier,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- [164464] = 2,
- ACTIONS(7182), 1,
- anon_sym_is,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- [164472] = 2,
- ACTIONS(9383), 1,
- anon_sym_EQ_GT,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- [164480] = 2,
- ACTIONS(9385), 1,
- anon_sym_EQ_GT,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- [164488] = 2,
- ACTIONS(9387), 1,
- sym_identifier,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- [164496] = 2,
- ACTIONS(9389), 1,
- anon_sym_DOT,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- [164504] = 2,
- ACTIONS(9391), 1,
- anon_sym_EQ_GT,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- [164512] = 2,
- ACTIONS(9393), 1,
- anon_sym_EQ_GT,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- [164520] = 2,
- ACTIONS(9395), 1,
- anon_sym_RBRACK,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- [164528] = 2,
- ACTIONS(9397), 1,
- anon_sym_RBRACK,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- [164536] = 2,
- ACTIONS(9399), 1,
- anon_sym_EQ_GT,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- [164544] = 2,
- ACTIONS(9401), 1,
- anon_sym_RBRACK,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- [164552] = 2,
- ACTIONS(9403), 1,
- sym_identifier,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- [164560] = 2,
- ACTIONS(9405), 1,
- anon_sym_EQ_GT,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- [164568] = 2,
- ACTIONS(9407), 1,
- sym_identifier,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- [164576] = 2,
- ACTIONS(9409), 1,
- sym_identifier,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- [164584] = 2,
- ACTIONS(9411), 1,
- sym_identifier,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- [164592] = 2,
- ACTIONS(9413), 1,
- anon_sym_RBRACK,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- [164600] = 2,
- ACTIONS(9415), 1,
- anon_sym_EQ_GT,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- [164608] = 2,
- ACTIONS(8719), 1,
- anon_sym_EQ,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- [164616] = 2,
- ACTIONS(9417), 1,
- anon_sym_as,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- [164624] = 2,
- ACTIONS(9419), 1,
- sym_identifier,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- [164632] = 2,
- ACTIONS(9421), 1,
- anon_sym_LBRACK,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- [164640] = 2,
- ACTIONS(9423), 1,
- anon_sym_EQ_GT,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- [164648] = 2,
- ACTIONS(9425), 1,
- anon_sym_RBRACK,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- [164656] = 2,
- ACTIONS(9427), 1,
- anon_sym_RBRACK,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- [164664] = 2,
- ACTIONS(8799), 1,
- anon_sym_LBRACE,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- [164672] = 2,
- ACTIONS(9429), 1,
- anon_sym_EQ_GT,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- [164680] = 2,
- ACTIONS(5057), 1,
- anon_sym_RPAREN,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- [164688] = 2,
- ACTIONS(9431), 1,
- anon_sym_EQ_GT,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- [164696] = 2,
- ACTIONS(9433), 1,
- anon_sym_RBRACK,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- [164704] = 2,
- ACTIONS(9435), 1,
- anon_sym_EQ_GT,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- [164712] = 2,
- ACTIONS(9437), 1,
- anon_sym_EQ,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- [164720] = 2,
- ACTIONS(9439), 1,
- sym_identifier,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- [164728] = 2,
- ACTIONS(8437), 1,
- anon_sym_RBRACK,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- [164736] = 2,
- ACTIONS(9441), 1,
- anon_sym_RBRACK,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- [164744] = 2,
- ACTIONS(5019), 1,
- anon_sym_RBRACE,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- [164752] = 2,
- ACTIONS(9443), 1,
- anon_sym_EQ_GT,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- [164760] = 2,
- ACTIONS(6035), 1,
- anon_sym_EQ_GT,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- [164768] = 2,
- ACTIONS(9445), 1,
- anon_sym_RBRACK,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- [164776] = 2,
- ACTIONS(4354), 1,
- anon_sym_RPAREN,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- [164784] = 2,
- ACTIONS(9447), 1,
- ts_builtin_sym_end,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- [164792] = 2,
- ACTIONS(9449), 1,
- sym_number,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- [164800] = 2,
- ACTIONS(9451), 1,
- sym_identifier,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- [164808] = 2,
- ACTIONS(9453), 1,
- anon_sym_EQ_GT,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- [164816] = 2,
- ACTIONS(9455), 1,
- anon_sym_EQ_GT,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- [164824] = 2,
- ACTIONS(9457), 1,
- anon_sym_RBRACK,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- [164832] = 2,
- ACTIONS(9459), 1,
- anon_sym_RBRACK,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- [164840] = 2,
- ACTIONS(9461), 1,
- anon_sym_RBRACK,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- [164848] = 2,
- ACTIONS(9463), 1,
- anon_sym_RBRACK,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- [164856] = 2,
- ACTIONS(9465), 1,
- anon_sym_EQ_GT,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- [164864] = 2,
- ACTIONS(9467), 1,
- anon_sym_RBRACK,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- [164872] = 2,
- ACTIONS(8166), 1,
- anon_sym_EQ_GT,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- [164880] = 2,
- ACTIONS(9469), 1,
- anon_sym_new,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- [164888] = 2,
- ACTIONS(9471), 1,
- sym_identifier,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- [164896] = 2,
- ACTIONS(9473), 1,
- anon_sym_EQ_GT,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- [164904] = 2,
- ACTIONS(9475), 1,
- anon_sym_symbol,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- [164912] = 2,
- ACTIONS(9477), 1,
- anon_sym_target,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- [164920] = 3,
- ACTIONS(3), 1,
- sym_comment,
- ACTIONS(5), 1,
- sym_html_comment,
- ACTIONS(9479), 1,
- sym_regex_pattern,
- [164930] = 2,
- ACTIONS(9481), 1,
- anon_sym_DOT,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- [164938] = 2,
- ACTIONS(9483), 1,
- sym_identifier,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- [164946] = 2,
- ACTIONS(9485), 1,
- anon_sym_EQ_GT,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- [164954] = 2,
- ACTIONS(9487), 1,
- anon_sym_RBRACK,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- [164962] = 2,
- ACTIONS(9489), 1,
- sym_identifier,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- [164970] = 2,
- ACTIONS(9491), 1,
- anon_sym_RBRACK,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- [164978] = 2,
- ACTIONS(9493), 1,
- anon_sym_RBRACK,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- [164986] = 2,
- ACTIONS(9495), 1,
- anon_sym_RBRACK,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- [164994] = 2,
- ACTIONS(9497), 1,
- anon_sym_RBRACK,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- [165002] = 2,
- ACTIONS(9499), 1,
- anon_sym_RBRACK,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- [165010] = 2,
- ACTIONS(9501), 1,
- anon_sym_RBRACK,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- [165018] = 2,
- ACTIONS(9503), 1,
- anon_sym_function,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- [165026] = 2,
- ACTIONS(9505), 1,
- anon_sym_RBRACK,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- [165034] = 2,
- ACTIONS(9507), 1,
- sym_identifier,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- [165042] = 2,
- ACTIONS(9509), 1,
- anon_sym_RPAREN,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- [165050] = 2,
- ACTIONS(9511), 1,
- sym_identifier,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- [165058] = 2,
- ACTIONS(9513), 1,
- anon_sym_RBRACK,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- [165066] = 2,
- ACTIONS(9515), 1,
- anon_sym_RBRACK,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- [165074] = 2,
- ACTIONS(4313), 1,
- anon_sym_RPAREN,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- [165082] = 2,
- ACTIONS(9517), 1,
- anon_sym_LBRACE,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- [165090] = 2,
- ACTIONS(9519), 1,
- anon_sym_RBRACK,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- [165098] = 2,
- ACTIONS(9521), 1,
- anon_sym_RBRACK,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- [165106] = 2,
- ACTIONS(4539), 1,
- anon_sym_in,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- [165114] = 2,
- ACTIONS(7291), 1,
- anon_sym_is,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- [165122] = 2,
- ACTIONS(9523), 1,
- anon_sym_RBRACK,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- [165130] = 2,
- ACTIONS(9525), 1,
- anon_sym_RBRACK,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- [165138] = 2,
- ACTIONS(9527), 1,
- anon_sym_RBRACK,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- [165146] = 2,
- ACTIONS(9529), 1,
- anon_sym_RBRACK,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- [165154] = 2,
- ACTIONS(9531), 1,
- anon_sym_RBRACK,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- [165162] = 2,
- ACTIONS(5025), 1,
- anon_sym_RBRACK,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- [165170] = 2,
- ACTIONS(9533), 1,
- sym_identifier,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- [165178] = 2,
- ACTIONS(9535), 1,
- anon_sym_EQ_GT,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- [165186] = 2,
- ACTIONS(9537), 1,
- anon_sym_RBRACK,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- [165194] = 2,
- ACTIONS(9539), 1,
- sym_identifier,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- [165202] = 2,
- ACTIONS(9541), 1,
- anon_sym_COLON,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- [165210] = 2,
- ACTIONS(4961), 1,
- anon_sym_in,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- [165218] = 2,
- ACTIONS(9543), 1,
- anon_sym_EQ_GT,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- [165226] = 2,
- ACTIONS(9545), 1,
- sym_identifier,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- [165234] = 2,
- ACTIONS(9547), 1,
- anon_sym_EQ,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- [165242] = 2,
- ACTIONS(9549), 1,
- anon_sym_RBRACK,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- [165250] = 2,
- ACTIONS(9551), 1,
- anon_sym_EQ_GT,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- [165258] = 2,
- ACTIONS(9553), 1,
- anon_sym_RBRACK,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- [165266] = 2,
- ACTIONS(9555), 1,
- anon_sym_RBRACK,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- [165274] = 2,
- ACTIONS(9557), 1,
- anon_sym_RBRACK,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- [165282] = 2,
- ACTIONS(9559), 1,
- anon_sym_EQ_GT,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- [165290] = 2,
- ACTIONS(9561), 1,
- anon_sym_EQ_GT,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- [165298] = 2,
- ACTIONS(9563), 1,
- anon_sym_EQ_GT,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- [165306] = 2,
- ACTIONS(9565), 1,
- anon_sym_namespace,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- [165314] = 2,
- ACTIONS(9567), 1,
- anon_sym_RBRACK,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- [165322] = 2,
- ACTIONS(9569), 1,
- anon_sym_RBRACK,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- [165330] = 2,
- ACTIONS(5055), 1,
- anon_sym_RPAREN,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- [165338] = 2,
- ACTIONS(9571), 1,
- anon_sym_EQ_GT,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- [165346] = 3,
- ACTIONS(3), 1,
- sym_comment,
- ACTIONS(5), 1,
- sym_html_comment,
- ACTIONS(9573), 1,
- anon_sym_SLASH2,
- [165356] = 2,
- ACTIONS(9575), 1,
- anon_sym_EQ,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- [165364] = 2,
- ACTIONS(9577), 1,
- anon_sym_EQ,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- [165372] = 3,
- ACTIONS(3), 1,
- sym_comment,
- ACTIONS(5), 1,
- sym_html_comment,
- ACTIONS(9579), 1,
- anon_sym_SLASH2,
- [165382] = 2,
- ACTIONS(9581), 1,
- anon_sym_RBRACK,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- [165390] = 2,
- ACTIONS(5456), 1,
- anon_sym_in,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- [165398] = 2,
- ACTIONS(9583), 1,
- anon_sym_EQ_GT,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- [165406] = 2,
- ACTIONS(9585), 1,
- anon_sym_RBRACK,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- [165414] = 2,
- ACTIONS(9587), 1,
- sym_identifier,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- [165422] = 2,
- ACTIONS(9589), 1,
- anon_sym_EQ_GT,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- [165430] = 2,
- ACTIONS(9591), 1,
- anon_sym_EQ_GT,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- [165438] = 2,
- ACTIONS(9593), 1,
- anon_sym_EQ_GT,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- [165446] = 2,
- ACTIONS(9595), 1,
- anon_sym_EQ_GT,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- [165454] = 2,
- ACTIONS(9597), 1,
- anon_sym_EQ_GT,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- [165462] = 2,
- ACTIONS(9599), 1,
- anon_sym_target,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- [165470] = 2,
- ACTIONS(4043), 1,
- anon_sym_is,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- [165478] = 2,
- ACTIONS(7577), 1,
- anon_sym_RPAREN,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- [165486] = 2,
- ACTIONS(9601), 1,
- anon_sym_readonly,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- [165494] = 2,
- ACTIONS(9603), 1,
- anon_sym_EQ_GT,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- [165502] = 2,
- ACTIONS(5037), 1,
- anon_sym_RPAREN,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- [165510] = 2,
- ACTIONS(9605), 1,
- anon_sym_EQ_GT,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- [165518] = 2,
- ACTIONS(9607), 1,
- anon_sym_RBRACK,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- [165526] = 2,
- ACTIONS(9609), 1,
- sym_identifier,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- [165534] = 2,
- ACTIONS(9611), 1,
- sym_identifier,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- [165542] = 2,
- ACTIONS(9613), 1,
- anon_sym_RBRACK,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- [165550] = 2,
- ACTIONS(9615), 1,
- sym_identifier,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- [165558] = 2,
- ACTIONS(4981), 1,
- anon_sym_RBRACE,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- [165566] = 2,
- ACTIONS(9617), 1,
- sym_identifier,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- [165574] = 2,
- ACTIONS(9619), 1,
- sym_identifier,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- [165582] = 2,
- ACTIONS(9621), 1,
- anon_sym_EQ_GT,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- [165590] = 2,
- ACTIONS(9623), 1,
- anon_sym_RBRACK,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- [165598] = 2,
- ACTIONS(9625), 1,
- anon_sym_EQ,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- [165606] = 2,
- ACTIONS(9627), 1,
- anon_sym_from,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- [165614] = 2,
- ACTIONS(9629), 1,
- anon_sym_RBRACK,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- [165622] = 2,
- ACTIONS(9631), 1,
- sym_identifier,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- [165630] = 2,
- ACTIONS(9633), 1,
- anon_sym_EQ_GT,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- [165638] = 2,
- ACTIONS(9635), 1,
- anon_sym_RPAREN,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- [165646] = 3,
- ACTIONS(3), 1,
- sym_comment,
- ACTIONS(5), 1,
- sym_html_comment,
- ACTIONS(9637), 1,
- sym_regex_pattern,
- [165656] = 2,
- ACTIONS(9639), 1,
- anon_sym_RBRACK,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- [165664] = 2,
- ACTIONS(9641), 1,
- anon_sym_RBRACK,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- [165672] = 2,
- ACTIONS(9643), 1,
- sym_number,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- [165680] = 2,
- ACTIONS(9645), 1,
- anon_sym_RBRACK,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- [165688] = 2,
- ACTIONS(9647), 1,
- anon_sym_DOT,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- [165696] = 2,
- ACTIONS(8518), 1,
- anon_sym_GT,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- [165704] = 2,
- ACTIONS(9649), 1,
- sym_identifier,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- [165712] = 2,
- ACTIONS(9651), 1,
- anon_sym_RPAREN,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- [165720] = 2,
- ACTIONS(8655), 1,
- anon_sym_RBRACE,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- [165728] = 2,
- ACTIONS(9653), 1,
- anon_sym_EQ_GT,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- [165736] = 2,
- ACTIONS(9655), 1,
- anon_sym_RBRACK,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- [165744] = 2,
- ACTIONS(9657), 1,
- anon_sym_EQ_GT,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- [165752] = 2,
- ACTIONS(9659), 1,
- anon_sym_EQ_GT,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- [165760] = 2,
- ACTIONS(9661), 1,
- sym_identifier,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- [165768] = 2,
- ACTIONS(9663), 1,
- sym_number,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- [165776] = 2,
- ACTIONS(5062), 1,
- anon_sym_RPAREN,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- [165784] = 2,
- ACTIONS(4983), 1,
- anon_sym_is,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- [165792] = 2,
- ACTIONS(9665), 1,
- anon_sym_EQ_GT,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- [165800] = 2,
- ACTIONS(9667), 1,
- anon_sym_RPAREN,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- [165808] = 2,
- ACTIONS(5023), 1,
- anon_sym_RBRACK,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- [165816] = 2,
- ACTIONS(9669), 1,
- sym_identifier,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- [165824] = 2,
- ACTIONS(9671), 1,
- anon_sym_symbol,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- [165832] = 2,
- ACTIONS(9673), 1,
- anon_sym_RBRACK,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- [165840] = 2,
- ACTIONS(9675), 1,
- anon_sym_RBRACK,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- [165848] = 2,
- ACTIONS(9677), 1,
- anon_sym_EQ,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- [165856] = 2,
- ACTIONS(9679), 1,
- anon_sym_RBRACK,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- [165864] = 2,
- ACTIONS(9681), 1,
- anon_sym_EQ,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- [165872] = 2,
- ACTIONS(9683), 1,
- anon_sym_RBRACK,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- [165880] = 2,
- ACTIONS(6741), 1,
- anon_sym_is,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- [165888] = 2,
- ACTIONS(4604), 1,
- anon_sym_in,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- [165896] = 2,
- ACTIONS(9685), 1,
- anon_sym_EQ_GT,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- [165904] = 2,
- ACTIONS(9687), 1,
- anon_sym_EQ_GT,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- [165912] = 2,
- ACTIONS(9689), 1,
- anon_sym_EQ_GT,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- [165920] = 2,
- ACTIONS(9691), 1,
- anon_sym_as,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- [165928] = 2,
- ACTIONS(9693), 1,
- anon_sym_EQ,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- [165936] = 2,
- ACTIONS(9695), 1,
- sym_identifier,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- [165944] = 2,
- ACTIONS(9697), 1,
- anon_sym_RBRACK,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- [165952] = 2,
- ACTIONS(9699), 1,
- anon_sym_EQ_GT,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- [165960] = 2,
- ACTIONS(9701), 1,
- anon_sym_COLON,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- [165968] = 2,
- ACTIONS(9703), 1,
- anon_sym_EQ_GT,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- [165976] = 2,
- ACTIONS(9705), 1,
- anon_sym_EQ_GT,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- [165984] = 2,
- ACTIONS(9707), 1,
- anon_sym_RBRACK,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- [165992] = 2,
- ACTIONS(9709), 1,
- anon_sym_RBRACK,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- [166000] = 2,
- ACTIONS(9711), 1,
- anon_sym_EQ_GT,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- [166008] = 2,
- ACTIONS(9713), 1,
- anon_sym_from,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- [166016] = 2,
- ACTIONS(9715), 1,
- anon_sym_from,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- [166024] = 2,
- ACTIONS(9717), 1,
- anon_sym_RBRACK,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- [166032] = 2,
- ACTIONS(5039), 1,
- anon_sym_RPAREN,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- [166040] = 2,
- ACTIONS(9719), 1,
- sym_identifier,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- [166048] = 2,
- ACTIONS(9721), 1,
- anon_sym_EQ,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- [166056] = 2,
- ACTIONS(9723), 1,
- anon_sym_EQ_GT,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- [166064] = 2,
- ACTIONS(9725), 1,
- sym_identifier,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- [166072] = 2,
- ACTIONS(9727), 1,
- anon_sym_new,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- [166080] = 2,
- ACTIONS(9729), 1,
- anon_sym_from,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- [166088] = 2,
- ACTIONS(9731), 1,
- anon_sym_RBRACK,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- [166096] = 2,
- ACTIONS(9733), 1,
- sym_identifier,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- [166104] = 2,
- ACTIONS(9735), 1,
- sym_identifier,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- [166112] = 2,
- ACTIONS(7303), 1,
- anon_sym_EQ,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- [166120] = 2,
- ACTIONS(9737), 1,
- anon_sym_RBRACK,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- [166128] = 2,
- ACTIONS(9739), 1,
- sym_identifier,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- [166136] = 2,
- ACTIONS(9741), 1,
- anon_sym_RBRACK,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- [166144] = 2,
- ACTIONS(9743), 1,
- anon_sym_RBRACK,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- [166152] = 2,
- ACTIONS(9745), 1,
- anon_sym_RBRACK,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- [166160] = 2,
- ACTIONS(9747), 1,
- anon_sym_RBRACK,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- [166168] = 2,
- ACTIONS(9749), 1,
- anon_sym_EQ,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- [166176] = 2,
- ACTIONS(9751), 1,
- anon_sym_new,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- [166184] = 2,
- ACTIONS(9753), 1,
- sym_identifier,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- [166192] = 2,
- ACTIONS(9755), 1,
- anon_sym_RBRACK,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- [166200] = 2,
- ACTIONS(9757), 1,
- sym_identifier,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- [166208] = 2,
- ACTIONS(9759), 1,
- anon_sym_RBRACK,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- [166216] = 3,
- ACTIONS(3), 1,
- sym_comment,
- ACTIONS(5), 1,
- sym_html_comment,
- ACTIONS(9761), 1,
- sym_regex_pattern,
- [166226] = 2,
- ACTIONS(9763), 1,
- anon_sym_RBRACK,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- [166234] = 2,
- ACTIONS(9765), 1,
- anon_sym_RBRACK,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- [166242] = 2,
- ACTIONS(9767), 1,
- anon_sym_RBRACK,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- [166250] = 2,
- ACTIONS(9769), 1,
- anon_sym_RBRACK,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- [166258] = 2,
- ACTIONS(9771), 1,
- anon_sym_EQ,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- [166266] = 2,
- ACTIONS(9773), 1,
- anon_sym_new,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- [166274] = 3,
- ACTIONS(3), 1,
- sym_comment,
- ACTIONS(5), 1,
- sym_html_comment,
- ACTIONS(9775), 1,
- anon_sym_SLASH2,
- [166284] = 2,
- ACTIONS(9777), 1,
- anon_sym_RBRACK,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- [166292] = 2,
- ACTIONS(9779), 1,
- anon_sym_RBRACK,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- [166300] = 2,
- ACTIONS(9781), 1,
- anon_sym_RBRACK,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- [166308] = 2,
- ACTIONS(9783), 1,
- anon_sym_RBRACK,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- [166316] = 2,
- ACTIONS(9785), 1,
- anon_sym_RBRACK,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- [166324] = 2,
- ACTIONS(9787), 1,
- sym_identifier,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- [166332] = 2,
- ACTIONS(9789), 1,
- anon_sym_RBRACK,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- [166340] = 2,
- ACTIONS(9791), 1,
- anon_sym_RBRACK,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- [166348] = 2,
- ACTIONS(9793), 1,
- anon_sym_RBRACK,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- [166356] = 2,
- ACTIONS(7659), 1,
- sym_identifier,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- [166364] = 2,
- ACTIONS(9795), 1,
- anon_sym_function,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- [166372] = 2,
- ACTIONS(9797), 1,
- anon_sym_RPAREN,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- [166380] = 2,
- ACTIONS(8405), 1,
- anon_sym_GT,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- [166388] = 2,
- ACTIONS(9799), 1,
- anon_sym_EQ_GT,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- [166396] = 2,
- ACTIONS(9801), 1,
- sym_identifier,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- [166404] = 2,
- ACTIONS(8873), 1,
- anon_sym_GT,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- [166412] = 2,
- ACTIONS(9803), 1,
- anon_sym_new,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- [166420] = 2,
- ACTIONS(9805), 1,
- sym_identifier,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- [166428] = 2,
- ACTIONS(9807), 1,
- anon_sym_RBRACK,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- [166436] = 2,
- ACTIONS(9809), 1,
- sym_identifier,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- [166444] = 2,
- ACTIONS(9811), 1,
- anon_sym_class,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- [166452] = 2,
- ACTIONS(9813), 1,
- sym_identifier,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- [166460] = 2,
- ACTIONS(9815), 1,
- anon_sym_RBRACK,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- [166468] = 2,
- ACTIONS(9817), 1,
- anon_sym_RBRACK,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- [166476] = 2,
- ACTIONS(9819), 1,
- anon_sym_RPAREN,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- [166484] = 2,
- ACTIONS(4474), 1,
- anon_sym_RPAREN,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- [166492] = 2,
- ACTIONS(9821), 1,
- anon_sym_RBRACK,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- [166500] = 2,
- ACTIONS(5365), 1,
- anon_sym_in,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- [166508] = 2,
- ACTIONS(9823), 1,
- anon_sym_RBRACK,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- [166516] = 2,
- ACTIONS(9825), 1,
- anon_sym_EQ_GT,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- [166524] = 2,
- ACTIONS(9827), 1,
- anon_sym_RPAREN,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- [166532] = 2,
- ACTIONS(9829), 1,
- anon_sym_DOT,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- [166540] = 2,
- ACTIONS(9831), 1,
- anon_sym_EQ_GT,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- [166548] = 2,
- ACTIONS(9833), 1,
- anon_sym_EQ_GT,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- [166556] = 2,
- ACTIONS(9835), 1,
- anon_sym_EQ_GT,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- [166564] = 2,
- ACTIONS(4973), 1,
- anon_sym_RBRACE,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- [166572] = 2,
- ACTIONS(9837), 1,
- anon_sym_RPAREN,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- [166580] = 2,
- ACTIONS(9839), 1,
- anon_sym_EQ_GT,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- [166588] = 2,
- ACTIONS(9841), 1,
- anon_sym_EQ,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- [166596] = 3,
- ACTIONS(3), 1,
- sym_comment,
- ACTIONS(5), 1,
- sym_html_comment,
- ACTIONS(9843), 1,
- anon_sym_SLASH2,
- [166606] = 2,
- ACTIONS(9845), 1,
- anon_sym_EQ_GT,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- [166614] = 2,
- ACTIONS(9847), 1,
- anon_sym_EQ_GT,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- [166622] = 2,
- ACTIONS(9849), 1,
- anon_sym_RBRACK,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- [166630] = 2,
- ACTIONS(9851), 1,
- anon_sym_RBRACK,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- [166638] = 2,
- ACTIONS(9853), 1,
- anon_sym_RBRACK,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- [166646] = 2,
- ACTIONS(9855), 1,
- anon_sym_new,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- [166654] = 2,
- ACTIONS(9857), 1,
- anon_sym_RBRACK,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- [166662] = 2,
- ACTIONS(9859), 1,
- anon_sym_RBRACK,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- [166670] = 2,
- ACTIONS(8669), 1,
- anon_sym_RBRACK,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
- [166678] = 2,
- ACTIONS(9861), 1,
- anon_sym_RBRACK,
- ACTIONS(5), 2,
- sym_html_comment,
- sym_comment,
-};
-
-static const uint32_t ts_small_parse_table_map[] = {
- [SMALL_STATE(1132)] = 0,
- [SMALL_STATE(1133)] = 93,
- [SMALL_STATE(1134)] = 186,
- [SMALL_STATE(1135)] = 275,
- [SMALL_STATE(1136)] = 368,
- [SMALL_STATE(1137)] = 457,
- [SMALL_STATE(1138)] = 552,
- [SMALL_STATE(1139)] = 640,
- [SMALL_STATE(1140)] = 710,
- [SMALL_STATE(1141)] = 800,
- [SMALL_STATE(1142)] = 888,
- [SMALL_STATE(1143)] = 978,
- [SMALL_STATE(1144)] = 1064,
- [SMALL_STATE(1145)] = 1136,
- [SMALL_STATE(1146)] = 1224,
- [SMALL_STATE(1147)] = 1294,
- [SMALL_STATE(1148)] = 1364,
- [SMALL_STATE(1149)] = 1434,
- [SMALL_STATE(1150)] = 1504,
- [SMALL_STATE(1151)] = 1574,
- [SMALL_STATE(1152)] = 1662,
- [SMALL_STATE(1153)] = 1754,
- [SMALL_STATE(1154)] = 1842,
- [SMALL_STATE(1155)] = 1932,
- [SMALL_STATE(1156)] = 2020,
- [SMALL_STATE(1157)] = 2110,
- [SMALL_STATE(1158)] = 2200,
- [SMALL_STATE(1159)] = 2290,
- [SMALL_STATE(1160)] = 2378,
- [SMALL_STATE(1161)] = 2468,
- [SMALL_STATE(1162)] = 2554,
- [SMALL_STATE(1163)] = 2624,
- [SMALL_STATE(1164)] = 2716,
- [SMALL_STATE(1165)] = 2808,
- [SMALL_STATE(1166)] = 2880,
- [SMALL_STATE(1167)] = 2970,
- [SMALL_STATE(1168)] = 3058,
- [SMALL_STATE(1169)] = 3149,
- [SMALL_STATE(1170)] = 3236,
- [SMALL_STATE(1171)] = 3323,
- [SMALL_STATE(1172)] = 3414,
- [SMALL_STATE(1173)] = 3505,
- [SMALL_STATE(1174)] = 3594,
- [SMALL_STATE(1175)] = 3663,
- [SMALL_STATE(1176)] = 3752,
- [SMALL_STATE(1177)] = 3843,
- [SMALL_STATE(1178)] = 3930,
- [SMALL_STATE(1179)] = 3999,
- [SMALL_STATE(1180)] = 4072,
- [SMALL_STATE(1181)] = 4167,
- [SMALL_STATE(1182)] = 4254,
- [SMALL_STATE(1183)] = 4341,
- [SMALL_STATE(1184)] = 4420,
- [SMALL_STATE(1185)] = 4512,
- [SMALL_STATE(1186)] = 4598,
- [SMALL_STATE(1187)] = 4684,
- [SMALL_STATE(1188)] = 4774,
- [SMALL_STATE(1189)] = 4854,
- [SMALL_STATE(1190)] = 4932,
- [SMALL_STATE(1191)] = 5018,
- [SMALL_STATE(1192)] = 5096,
- [SMALL_STATE(1193)] = 5174,
- [SMALL_STATE(1194)] = 5264,
- [SMALL_STATE(1195)] = 5332,
- [SMALL_STATE(1196)] = 5418,
- [SMALL_STATE(1197)] = 5504,
- [SMALL_STATE(1198)] = 5590,
- [SMALL_STATE(1199)] = 5676,
- [SMALL_STATE(1200)] = 5762,
- [SMALL_STATE(1201)] = 5848,
- [SMALL_STATE(1202)] = 5922,
- [SMALL_STATE(1203)] = 6002,
- [SMALL_STATE(1204)] = 6070,
- [SMALL_STATE(1205)] = 6148,
- [SMALL_STATE(1206)] = 6238,
- [SMALL_STATE(1207)] = 6330,
- [SMALL_STATE(1208)] = 6416,
- [SMALL_STATE(1209)] = 6502,
- [SMALL_STATE(1210)] = 6580,
- [SMALL_STATE(1211)] = 6666,
- [SMALL_STATE(1212)] = 6756,
- [SMALL_STATE(1213)] = 6832,
- [SMALL_STATE(1214)] = 6918,
- [SMALL_STATE(1215)] = 6996,
- [SMALL_STATE(1216)] = 7069,
- [SMALL_STATE(1217)] = 7142,
- [SMALL_STATE(1218)] = 7215,
- [SMALL_STATE(1219)] = 7304,
- [SMALL_STATE(1220)] = 7393,
- [SMALL_STATE(1221)] = 7478,
- [SMALL_STATE(1222)] = 7553,
- [SMALL_STATE(1223)] = 7636,
- [SMALL_STATE(1224)] = 7705,
- [SMALL_STATE(1225)] = 7784,
- [SMALL_STATE(1226)] = 7853,
- [SMALL_STATE(1227)] = 7938,
- [SMALL_STATE(1228)] = 8007,
- [SMALL_STATE(1229)] = 8074,
- [SMALL_STATE(1230)] = 8151,
- [SMALL_STATE(1231)] = 8226,
- [SMALL_STATE(1232)] = 8293,
- [SMALL_STATE(1233)] = 8380,
- [SMALL_STATE(1234)] = 8447,
- [SMALL_STATE(1235)] = 8522,
- [SMALL_STATE(1236)] = 8605,
- [SMALL_STATE(1237)] = 8690,
- [SMALL_STATE(1238)] = 8779,
- [SMALL_STATE(1239)] = 8856,
- [SMALL_STATE(1240)] = 8933,
- [SMALL_STATE(1241)] = 9006,
- [SMALL_STATE(1242)] = 9095,
- [SMALL_STATE(1243)] = 9164,
- [SMALL_STATE(1244)] = 9233,
- [SMALL_STATE(1245)] = 9300,
- [SMALL_STATE(1246)] = 9369,
- [SMALL_STATE(1247)] = 9448,
- [SMALL_STATE(1248)] = 9520,
- [SMALL_STATE(1249)] = 9602,
- [SMALL_STATE(1250)] = 9678,
- [SMALL_STATE(1251)] = 9750,
- [SMALL_STATE(1252)] = 9820,
- [SMALL_STATE(1253)] = 9886,
- [SMALL_STATE(1254)] = 9958,
- [SMALL_STATE(1255)] = 10030,
- [SMALL_STATE(1256)] = 10096,
- [SMALL_STATE(1257)] = 10162,
- [SMALL_STATE(1258)] = 10228,
- [SMALL_STATE(1259)] = 10294,
- [SMALL_STATE(1260)] = 10360,
- [SMALL_STATE(1261)] = 10426,
- [SMALL_STATE(1262)] = 10502,
- [SMALL_STATE(1263)] = 10574,
- [SMALL_STATE(1264)] = 10648,
- [SMALL_STATE(1265)] = 10722,
- [SMALL_STATE(1266)] = 10796,
- [SMALL_STATE(1267)] = 10884,
- [SMALL_STATE(1268)] = 10960,
- [SMALL_STATE(1269)] = 11048,
- [SMALL_STATE(1270)] = 11118,
- [SMALL_STATE(1271)] = 11190,
- [SMALL_STATE(1272)] = 11256,
- [SMALL_STATE(1273)] = 11322,
- [SMALL_STATE(1274)] = 11400,
- [SMALL_STATE(1275)] = 11480,
- [SMALL_STATE(1276)] = 11560,
- [SMALL_STATE(1277)] = 11638,
- [SMALL_STATE(1278)] = 11712,
- [SMALL_STATE(1279)] = 11786,
- [SMALL_STATE(1280)] = 11864,
- [SMALL_STATE(1281)] = 11936,
- [SMALL_STATE(1282)] = 12020,
- [SMALL_STATE(1283)] = 12104,
- [SMALL_STATE(1284)] = 12176,
- [SMALL_STATE(1285)] = 12260,
- [SMALL_STATE(1286)] = 12334,
- [SMALL_STATE(1287)] = 12411,
- [SMALL_STATE(1288)] = 12482,
- [SMALL_STATE(1289)] = 12549,
- [SMALL_STATE(1290)] = 12622,
- [SMALL_STATE(1291)] = 12695,
- [SMALL_STATE(1292)] = 12768,
- [SMALL_STATE(1293)] = 12841,
- [SMALL_STATE(1294)] = 12908,
- [SMALL_STATE(1295)] = 12977,
- [SMALL_STATE(1296)] = 13048,
- [SMALL_STATE(1297)] = 13131,
- [SMALL_STATE(1298)] = 13200,
- [SMALL_STATE(1299)] = 13269,
- [SMALL_STATE(1300)] = 13340,
- [SMALL_STATE(1301)] = 13409,
- [SMALL_STATE(1302)] = 13482,
- [SMALL_STATE(1303)] = 13561,
- [SMALL_STATE(1304)] = 13638,
- [SMALL_STATE(1305)] = 13715,
- [SMALL_STATE(1306)] = 13786,
- [SMALL_STATE(1307)] = 13863,
- [SMALL_STATE(1308)] = 13933,
- [SMALL_STATE(1309)] = 14003,
- [SMALL_STATE(1310)] = 14123,
- [SMALL_STATE(1311)] = 14243,
- [SMALL_STATE(1312)] = 14317,
- [SMALL_STATE(1313)] = 14393,
- [SMALL_STATE(1314)] = 14467,
- [SMALL_STATE(1315)] = 14537,
- [SMALL_STATE(1316)] = 14657,
- [SMALL_STATE(1317)] = 14731,
- [SMALL_STATE(1318)] = 14801,
- [SMALL_STATE(1319)] = 14875,
- [SMALL_STATE(1320)] = 14945,
- [SMALL_STATE(1321)] = 15011,
- [SMALL_STATE(1322)] = 15131,
- [SMALL_STATE(1323)] = 15197,
- [SMALL_STATE(1324)] = 15317,
- [SMALL_STATE(1325)] = 15387,
- [SMALL_STATE(1326)] = 15459,
- [SMALL_STATE(1327)] = 15529,
- [SMALL_STATE(1328)] = 15597,
- [SMALL_STATE(1329)] = 15667,
- [SMALL_STATE(1330)] = 15787,
- [SMALL_STATE(1331)] = 15859,
- [SMALL_STATE(1332)] = 15928,
- [SMALL_STATE(1333)] = 16001,
- [SMALL_STATE(1334)] = 16070,
- [SMALL_STATE(1335)] = 16139,
- [SMALL_STATE(1336)] = 16208,
- [SMALL_STATE(1337)] = 16275,
- [SMALL_STATE(1338)] = 16344,
- [SMALL_STATE(1339)] = 16411,
- [SMALL_STATE(1340)] = 16480,
- [SMALL_STATE(1341)] = 16549,
- [SMALL_STATE(1342)] = 16618,
- [SMALL_STATE(1343)] = 16691,
- [SMALL_STATE(1344)] = 16762,
- [SMALL_STATE(1345)] = 16833,
- [SMALL_STATE(1346)] = 16899,
- [SMALL_STATE(1347)] = 17015,
- [SMALL_STATE(1348)] = 17131,
- [SMALL_STATE(1349)] = 17247,
- [SMALL_STATE(1350)] = 17315,
- [SMALL_STATE(1351)] = 17431,
- [SMALL_STATE(1352)] = 17499,
- [SMALL_STATE(1353)] = 17615,
- [SMALL_STATE(1354)] = 17731,
- [SMALL_STATE(1355)] = 17847,
- [SMALL_STATE(1356)] = 17963,
- [SMALL_STATE(1357)] = 18031,
- [SMALL_STATE(1358)] = 18099,
- [SMALL_STATE(1359)] = 18215,
- [SMALL_STATE(1360)] = 18331,
- [SMALL_STATE(1361)] = 18447,
- [SMALL_STATE(1362)] = 18515,
- [SMALL_STATE(1363)] = 18631,
- [SMALL_STATE(1364)] = 18699,
- [SMALL_STATE(1365)] = 18815,
- [SMALL_STATE(1366)] = 18883,
- [SMALL_STATE(1367)] = 18951,
- [SMALL_STATE(1368)] = 19067,
- [SMALL_STATE(1369)] = 19135,
- [SMALL_STATE(1370)] = 19201,
- [SMALL_STATE(1371)] = 19269,
- [SMALL_STATE(1372)] = 19337,
- [SMALL_STATE(1373)] = 19453,
- [SMALL_STATE(1374)] = 19523,
- [SMALL_STATE(1375)] = 19591,
- [SMALL_STATE(1376)] = 19659,
- [SMALL_STATE(1377)] = 19727,
- [SMALL_STATE(1378)] = 19843,
- [SMALL_STATE(1379)] = 19959,
- [SMALL_STATE(1380)] = 20075,
- [SMALL_STATE(1381)] = 20143,
- [SMALL_STATE(1382)] = 20211,
- [SMALL_STATE(1383)] = 20279,
- [SMALL_STATE(1384)] = 20347,
- [SMALL_STATE(1385)] = 20415,
- [SMALL_STATE(1386)] = 20483,
- [SMALL_STATE(1387)] = 20551,
- [SMALL_STATE(1388)] = 20616,
- [SMALL_STATE(1389)] = 20681,
- [SMALL_STATE(1390)] = 20746,
- [SMALL_STATE(1391)] = 20811,
- [SMALL_STATE(1392)] = 20876,
- [SMALL_STATE(1393)] = 20941,
- [SMALL_STATE(1394)] = 21006,
- [SMALL_STATE(1395)] = 21071,
- [SMALL_STATE(1396)] = 21136,
- [SMALL_STATE(1397)] = 21248,
- [SMALL_STATE(1398)] = 21360,
- [SMALL_STATE(1399)] = 21472,
- [SMALL_STATE(1400)] = 21584,
- [SMALL_STATE(1401)] = 21696,
- [SMALL_STATE(1402)] = 21808,
- [SMALL_STATE(1403)] = 21920,
- [SMALL_STATE(1404)] = 22031,
- [SMALL_STATE(1405)] = 22150,
- [SMALL_STATE(1406)] = 22261,
- [SMALL_STATE(1407)] = 22372,
- [SMALL_STATE(1408)] = 22483,
- [SMALL_STATE(1409)] = 22594,
- [SMALL_STATE(1410)] = 22705,
- [SMALL_STATE(1411)] = 22824,
- [SMALL_STATE(1412)] = 22935,
- [SMALL_STATE(1413)] = 23054,
- [SMALL_STATE(1414)] = 23165,
- [SMALL_STATE(1415)] = 23284,
- [SMALL_STATE(1416)] = 23395,
- [SMALL_STATE(1417)] = 23506,
- [SMALL_STATE(1418)] = 23625,
- [SMALL_STATE(1419)] = 23736,
- [SMALL_STATE(1420)] = 23838,
- [SMALL_STATE(1421)] = 23940,
- [SMALL_STATE(1422)] = 24042,
- [SMALL_STATE(1423)] = 24144,
- [SMALL_STATE(1424)] = 24246,
- [SMALL_STATE(1425)] = 24348,
- [SMALL_STATE(1426)] = 24450,
- [SMALL_STATE(1427)] = 24561,
- [SMALL_STATE(1428)] = 24670,
- [SMALL_STATE(1429)] = 24727,
- [SMALL_STATE(1430)] = 24784,
- [SMALL_STATE(1431)] = 24856,
- [SMALL_STATE(1432)] = 24922,
- [SMALL_STATE(1433)] = 24988,
- [SMALL_STATE(1434)] = 25054,
- [SMALL_STATE(1435)] = 25148,
- [SMALL_STATE(1436)] = 25212,
- [SMALL_STATE(1437)] = 25269,
- [SMALL_STATE(1438)] = 25324,
- [SMALL_STATE(1439)] = 25379,
- [SMALL_STATE(1440)] = 25438,
- [SMALL_STATE(1441)] = 25499,
- [SMALL_STATE(1442)] = 25558,
- [SMALL_STATE(1443)] = 25619,
- [SMALL_STATE(1444)] = 25680,
- [SMALL_STATE(1445)] = 25741,
- [SMALL_STATE(1446)] = 25796,
- [SMALL_STATE(1447)] = 25851,
- [SMALL_STATE(1448)] = 25912,
- [SMALL_STATE(1449)] = 25967,
- [SMALL_STATE(1450)] = 26024,
- [SMALL_STATE(1451)] = 26081,
- [SMALL_STATE(1452)] = 26136,
- [SMALL_STATE(1453)] = 26195,
- [SMALL_STATE(1454)] = 26250,
- [SMALL_STATE(1455)] = 26362,
- [SMALL_STATE(1456)] = 26416,
- [SMALL_STATE(1457)] = 26472,
- [SMALL_STATE(1458)] = 26526,
- [SMALL_STATE(1459)] = 26586,
- [SMALL_STATE(1460)] = 26640,
- [SMALL_STATE(1461)] = 26694,
- [SMALL_STATE(1462)] = 26748,
- [SMALL_STATE(1463)] = 26802,
- [SMALL_STATE(1464)] = 26856,
- [SMALL_STATE(1465)] = 26912,
- [SMALL_STATE(1466)] = 26966,
- [SMALL_STATE(1467)] = 27020,
- [SMALL_STATE(1468)] = 27074,
- [SMALL_STATE(1469)] = 27136,
- [SMALL_STATE(1470)] = 27190,
- [SMALL_STATE(1471)] = 27244,
- [SMALL_STATE(1472)] = 27298,
- [SMALL_STATE(1473)] = 27352,
- [SMALL_STATE(1474)] = 27406,
- [SMALL_STATE(1475)] = 27460,
- [SMALL_STATE(1476)] = 27514,
- [SMALL_STATE(1477)] = 27568,
- [SMALL_STATE(1478)] = 27622,
- [SMALL_STATE(1479)] = 27676,
- [SMALL_STATE(1480)] = 27750,
- [SMALL_STATE(1481)] = 27804,
- [SMALL_STATE(1482)] = 27858,
- [SMALL_STATE(1483)] = 27912,
- [SMALL_STATE(1484)] = 27966,
- [SMALL_STATE(1485)] = 28020,
- [SMALL_STATE(1486)] = 28080,
- [SMALL_STATE(1487)] = 28140,
- [SMALL_STATE(1488)] = 28200,
- [SMALL_STATE(1489)] = 28280,
- [SMALL_STATE(1490)] = 28334,
- [SMALL_STATE(1491)] = 28446,
- [SMALL_STATE(1492)] = 28500,
- [SMALL_STATE(1493)] = 28560,
- [SMALL_STATE(1494)] = 28614,
- [SMALL_STATE(1495)] = 28668,
- [SMALL_STATE(1496)] = 28722,
- [SMALL_STATE(1497)] = 28776,
- [SMALL_STATE(1498)] = 28830,
- [SMALL_STATE(1499)] = 28884,
- [SMALL_STATE(1500)] = 28938,
- [SMALL_STATE(1501)] = 28994,
- [SMALL_STATE(1502)] = 29048,
- [SMALL_STATE(1503)] = 29120,
- [SMALL_STATE(1504)] = 29174,
- [SMALL_STATE(1505)] = 29228,
- [SMALL_STATE(1506)] = 29282,
- [SMALL_STATE(1507)] = 29368,
- [SMALL_STATE(1508)] = 29480,
- [SMALL_STATE(1509)] = 29592,
- [SMALL_STATE(1510)] = 29646,
- [SMALL_STATE(1511)] = 29700,
- [SMALL_STATE(1512)] = 29820,
- [SMALL_STATE(1513)] = 29874,
- [SMALL_STATE(1514)] = 29932,
- [SMALL_STATE(1515)] = 29986,
- [SMALL_STATE(1516)] = 30040,
- [SMALL_STATE(1517)] = 30094,
- [SMALL_STATE(1518)] = 30148,
- [SMALL_STATE(1519)] = 30260,
- [SMALL_STATE(1520)] = 30314,
- [SMALL_STATE(1521)] = 30368,
- [SMALL_STATE(1522)] = 30422,
- [SMALL_STATE(1523)] = 30480,
- [SMALL_STATE(1524)] = 30534,
- [SMALL_STATE(1525)] = 30588,
- [SMALL_STATE(1526)] = 30700,
- [SMALL_STATE(1527)] = 30754,
- [SMALL_STATE(1528)] = 30866,
- [SMALL_STATE(1529)] = 30920,
- [SMALL_STATE(1530)] = 30974,
- [SMALL_STATE(1531)] = 31060,
- [SMALL_STATE(1532)] = 31120,
- [SMALL_STATE(1533)] = 31240,
- [SMALL_STATE(1534)] = 31296,
- [SMALL_STATE(1535)] = 31372,
- [SMALL_STATE(1536)] = 31428,
- [SMALL_STATE(1537)] = 31488,
- [SMALL_STATE(1538)] = 31600,
- [SMALL_STATE(1539)] = 31700,
- [SMALL_STATE(1540)] = 31754,
- [SMALL_STATE(1541)] = 31808,
- [SMALL_STATE(1542)] = 31910,
- [SMALL_STATE(1543)] = 31992,
- [SMALL_STATE(1544)] = 32086,
- [SMALL_STATE(1545)] = 32182,
- [SMALL_STATE(1546)] = 32236,
- [SMALL_STATE(1547)] = 32290,
- [SMALL_STATE(1548)] = 32388,
- [SMALL_STATE(1549)] = 32468,
- [SMALL_STATE(1550)] = 32554,
- [SMALL_STATE(1551)] = 32608,
- [SMALL_STATE(1552)] = 32690,
- [SMALL_STATE(1553)] = 32776,
- [SMALL_STATE(1554)] = 32832,
- [SMALL_STATE(1555)] = 32886,
- [SMALL_STATE(1556)] = 32942,
- [SMALL_STATE(1557)] = 32996,
- [SMALL_STATE(1558)] = 33086,
- [SMALL_STATE(1559)] = 33190,
- [SMALL_STATE(1560)] = 33250,
- [SMALL_STATE(1561)] = 33362,
- [SMALL_STATE(1562)] = 33474,
- [SMALL_STATE(1563)] = 33594,
- [SMALL_STATE(1564)] = 33654,
- [SMALL_STATE(1565)] = 33714,
- [SMALL_STATE(1566)] = 33770,
- [SMALL_STATE(1567)] = 33824,
- [SMALL_STATE(1568)] = 33910,
- [SMALL_STATE(1569)] = 33964,
- [SMALL_STATE(1570)] = 34018,
- [SMALL_STATE(1571)] = 34072,
- [SMALL_STATE(1572)] = 34128,
- [SMALL_STATE(1573)] = 34240,
- [SMALL_STATE(1574)] = 34352,
- [SMALL_STATE(1575)] = 34464,
- [SMALL_STATE(1576)] = 34576,
- [SMALL_STATE(1577)] = 34632,
- [SMALL_STATE(1578)] = 34686,
- [SMALL_STATE(1579)] = 34798,
- [SMALL_STATE(1580)] = 34852,
- [SMALL_STATE(1581)] = 34906,
- [SMALL_STATE(1582)] = 34962,
- [SMALL_STATE(1583)] = 35016,
- [SMALL_STATE(1584)] = 35070,
- [SMALL_STATE(1585)] = 35124,
- [SMALL_STATE(1586)] = 35186,
- [SMALL_STATE(1587)] = 35246,
- [SMALL_STATE(1588)] = 35306,
- [SMALL_STATE(1589)] = 35362,
- [SMALL_STATE(1590)] = 35448,
- [SMALL_STATE(1591)] = 35504,
- [SMALL_STATE(1592)] = 35566,
- [SMALL_STATE(1593)] = 35628,
- [SMALL_STATE(1594)] = 35686,
- [SMALL_STATE(1595)] = 35740,
- [SMALL_STATE(1596)] = 35794,
- [SMALL_STATE(1597)] = 35852,
- [SMALL_STATE(1598)] = 35906,
- [SMALL_STATE(1599)] = 35960,
- [SMALL_STATE(1600)] = 36080,
- [SMALL_STATE(1601)] = 36134,
- [SMALL_STATE(1602)] = 36188,
- [SMALL_STATE(1603)] = 36242,
- [SMALL_STATE(1604)] = 36300,
- [SMALL_STATE(1605)] = 36354,
- [SMALL_STATE(1606)] = 36408,
- [SMALL_STATE(1607)] = 36462,
- [SMALL_STATE(1608)] = 36516,
- [SMALL_STATE(1609)] = 36570,
- [SMALL_STATE(1610)] = 36624,
- [SMALL_STATE(1611)] = 36678,
- [SMALL_STATE(1612)] = 36734,
- [SMALL_STATE(1613)] = 36788,
- [SMALL_STATE(1614)] = 36842,
- [SMALL_STATE(1615)] = 36895,
- [SMALL_STATE(1616)] = 36988,
- [SMALL_STATE(1617)] = 37049,
- [SMALL_STATE(1618)] = 37144,
- [SMALL_STATE(1619)] = 37259,
- [SMALL_STATE(1620)] = 37312,
- [SMALL_STATE(1621)] = 37365,
- [SMALL_STATE(1622)] = 37476,
- [SMALL_STATE(1623)] = 37529,
- [SMALL_STATE(1624)] = 37582,
- [SMALL_STATE(1625)] = 37679,
- [SMALL_STATE(1626)] = 37792,
- [SMALL_STATE(1627)] = 37845,
- [SMALL_STATE(1628)] = 37924,
- [SMALL_STATE(1629)] = 37977,
- [SMALL_STATE(1630)] = 38058,
- [SMALL_STATE(1631)] = 38111,
- [SMALL_STATE(1632)] = 38164,
- [SMALL_STATE(1633)] = 38241,
- [SMALL_STATE(1634)] = 38294,
- [SMALL_STATE(1635)] = 38347,
- [SMALL_STATE(1636)] = 38420,
- [SMALL_STATE(1637)] = 38499,
- [SMALL_STATE(1638)] = 38610,
- [SMALL_STATE(1639)] = 38663,
- [SMALL_STATE(1640)] = 38716,
- [SMALL_STATE(1641)] = 38795,
- [SMALL_STATE(1642)] = 38848,
- [SMALL_STATE(1643)] = 38901,
- [SMALL_STATE(1644)] = 38954,
- [SMALL_STATE(1645)] = 39025,
- [SMALL_STATE(1646)] = 39078,
- [SMALL_STATE(1647)] = 39131,
- [SMALL_STATE(1648)] = 39184,
- [SMALL_STATE(1649)] = 39237,
- [SMALL_STATE(1650)] = 39292,
- [SMALL_STATE(1651)] = 39345,
- [SMALL_STATE(1652)] = 39456,
- [SMALL_STATE(1653)] = 39571,
- [SMALL_STATE(1654)] = 39628,
- [SMALL_STATE(1655)] = 39681,
- [SMALL_STATE(1656)] = 39758,
- [SMALL_STATE(1657)] = 39811,
- [SMALL_STATE(1658)] = 39922,
- [SMALL_STATE(1659)] = 39999,
- [SMALL_STATE(1660)] = 40084,
- [SMALL_STATE(1661)] = 40195,
- [SMALL_STATE(1662)] = 40274,
- [SMALL_STATE(1663)] = 40353,
- [SMALL_STATE(1664)] = 40428,
- [SMALL_STATE(1665)] = 40483,
- [SMALL_STATE(1666)] = 40582,
- [SMALL_STATE(1667)] = 40661,
- [SMALL_STATE(1668)] = 40772,
- [SMALL_STATE(1669)] = 40831,
- [SMALL_STATE(1670)] = 40946,
- [SMALL_STATE(1671)] = 41005,
- [SMALL_STATE(1672)] = 41116,
- [SMALL_STATE(1673)] = 41217,
- [SMALL_STATE(1674)] = 41298,
- [SMALL_STATE(1675)] = 41391,
- [SMALL_STATE(1676)] = 41486,
- [SMALL_STATE(1677)] = 41539,
- [SMALL_STATE(1678)] = 41592,
- [SMALL_STATE(1679)] = 41645,
- [SMALL_STATE(1680)] = 41698,
- [SMALL_STATE(1681)] = 41795,
- [SMALL_STATE(1682)] = 41874,
- [SMALL_STATE(1683)] = 41927,
- [SMALL_STATE(1684)] = 41980,
- [SMALL_STATE(1685)] = 42033,
- [SMALL_STATE(1686)] = 42086,
- [SMALL_STATE(1687)] = 42139,
- [SMALL_STATE(1688)] = 42192,
- [SMALL_STATE(1689)] = 42273,
- [SMALL_STATE(1690)] = 42326,
- [SMALL_STATE(1691)] = 42379,
- [SMALL_STATE(1692)] = 42442,
- [SMALL_STATE(1693)] = 42505,
- [SMALL_STATE(1694)] = 42568,
- [SMALL_STATE(1695)] = 42621,
- [SMALL_STATE(1696)] = 42732,
- [SMALL_STATE(1697)] = 42787,
- [SMALL_STATE(1698)] = 42844,
- [SMALL_STATE(1699)] = 42921,
- [SMALL_STATE(1700)] = 42992,
- [SMALL_STATE(1701)] = 43045,
- [SMALL_STATE(1702)] = 43098,
- [SMALL_STATE(1703)] = 43151,
- [SMALL_STATE(1704)] = 43230,
- [SMALL_STATE(1705)] = 43283,
- [SMALL_STATE(1706)] = 43398,
- [SMALL_STATE(1707)] = 43453,
- [SMALL_STATE(1708)] = 43510,
- [SMALL_STATE(1709)] = 43563,
- [SMALL_STATE(1710)] = 43644,
- [SMALL_STATE(1711)] = 43697,
- [SMALL_STATE(1712)] = 43750,
- [SMALL_STATE(1713)] = 43803,
- [SMALL_STATE(1714)] = 43856,
- [SMALL_STATE(1715)] = 43909,
- [SMALL_STATE(1716)] = 43962,
- [SMALL_STATE(1717)] = 44017,
- [SMALL_STATE(1718)] = 44106,
- [SMALL_STATE(1719)] = 44159,
- [SMALL_STATE(1720)] = 44228,
- [SMALL_STATE(1721)] = 44339,
- [SMALL_STATE(1722)] = 44392,
- [SMALL_STATE(1723)] = 44495,
- [SMALL_STATE(1724)] = 44548,
- [SMALL_STATE(1725)] = 44601,
- [SMALL_STATE(1726)] = 44654,
- [SMALL_STATE(1727)] = 44707,
- [SMALL_STATE(1728)] = 44780,
- [SMALL_STATE(1729)] = 44833,
- [SMALL_STATE(1730)] = 44886,
- [SMALL_STATE(1731)] = 44939,
- [SMALL_STATE(1732)] = 44992,
- [SMALL_STATE(1733)] = 45045,
- [SMALL_STATE(1734)] = 45126,
- [SMALL_STATE(1735)] = 45179,
- [SMALL_STATE(1736)] = 45290,
- [SMALL_STATE(1737)] = 45343,
- [SMALL_STATE(1738)] = 45454,
- [SMALL_STATE(1739)] = 45565,
- [SMALL_STATE(1740)] = 45676,
- [SMALL_STATE(1741)] = 45787,
- [SMALL_STATE(1742)] = 45872,
- [SMALL_STATE(1743)] = 45983,
- [SMALL_STATE(1744)] = 46060,
- [SMALL_STATE(1745)] = 46113,
- [SMALL_STATE(1746)] = 46166,
- [SMALL_STATE(1747)] = 46255,
- [SMALL_STATE(1748)] = 46370,
- [SMALL_STATE(1749)] = 46473,
- [SMALL_STATE(1750)] = 46552,
- [SMALL_STATE(1751)] = 46667,
- [SMALL_STATE(1752)] = 46780,
- [SMALL_STATE(1753)] = 46891,
- [SMALL_STATE(1754)] = 46944,
- [SMALL_STATE(1755)] = 46997,
- [SMALL_STATE(1756)] = 47076,
- [SMALL_STATE(1757)] = 47129,
- [SMALL_STATE(1758)] = 47182,
- [SMALL_STATE(1759)] = 47235,
- [SMALL_STATE(1760)] = 47346,
- [SMALL_STATE(1761)] = 47457,
- [SMALL_STATE(1762)] = 47516,
- [SMALL_STATE(1763)] = 47627,
- [SMALL_STATE(1764)] = 47680,
- [SMALL_STATE(1765)] = 47791,
- [SMALL_STATE(1766)] = 47844,
- [SMALL_STATE(1767)] = 47955,
- [SMALL_STATE(1768)] = 48008,
- [SMALL_STATE(1769)] = 48119,
- [SMALL_STATE(1770)] = 48172,
- [SMALL_STATE(1771)] = 48251,
- [SMALL_STATE(1772)] = 48304,
- [SMALL_STATE(1773)] = 48415,
- [SMALL_STATE(1774)] = 48526,
- [SMALL_STATE(1775)] = 48579,
- [SMALL_STATE(1776)] = 48632,
- [SMALL_STATE(1777)] = 48685,
- [SMALL_STATE(1778)] = 48738,
- [SMALL_STATE(1779)] = 48849,
- [SMALL_STATE(1780)] = 48960,
- [SMALL_STATE(1781)] = 49071,
- [SMALL_STATE(1782)] = 49124,
- [SMALL_STATE(1783)] = 49177,
- [SMALL_STATE(1784)] = 49288,
- [SMALL_STATE(1785)] = 49341,
- [SMALL_STATE(1786)] = 49394,
- [SMALL_STATE(1787)] = 49469,
- [SMALL_STATE(1788)] = 49568,
- [SMALL_STATE(1789)] = 49683,
- [SMALL_STATE(1790)] = 49784,
- [SMALL_STATE(1791)] = 49895,
- [SMALL_STATE(1792)] = 49955,
- [SMALL_STATE(1793)] = 50065,
- [SMALL_STATE(1794)] = 50175,
- [SMALL_STATE(1795)] = 50233,
- [SMALL_STATE(1796)] = 50291,
- [SMALL_STATE(1797)] = 50405,
- [SMALL_STATE(1798)] = 50457,
- [SMALL_STATE(1799)] = 50515,
- [SMALL_STATE(1800)] = 50571,
- [SMALL_STATE(1801)] = 50629,
- [SMALL_STATE(1802)] = 50681,
- [SMALL_STATE(1803)] = 50795,
- [SMALL_STATE(1804)] = 50905,
- [SMALL_STATE(1805)] = 51019,
- [SMALL_STATE(1806)] = 51079,
- [SMALL_STATE(1807)] = 51189,
- [SMALL_STATE(1808)] = 51303,
- [SMALL_STATE(1809)] = 51355,
- [SMALL_STATE(1810)] = 51427,
- [SMALL_STATE(1811)] = 51481,
- [SMALL_STATE(1812)] = 51535,
- [SMALL_STATE(1813)] = 51593,
- [SMALL_STATE(1814)] = 51665,
- [SMALL_STATE(1815)] = 51775,
- [SMALL_STATE(1816)] = 51829,
- [SMALL_STATE(1817)] = 51883,
- [SMALL_STATE(1818)] = 51937,
- [SMALL_STATE(1819)] = 51993,
- [SMALL_STATE(1820)] = 52049,
- [SMALL_STATE(1821)] = 52105,
- [SMALL_STATE(1822)] = 52215,
- [SMALL_STATE(1823)] = 52275,
- [SMALL_STATE(1824)] = 52335,
- [SMALL_STATE(1825)] = 52409,
- [SMALL_STATE(1826)] = 52521,
- [SMALL_STATE(1827)] = 52583,
- [SMALL_STATE(1828)] = 52645,
- [SMALL_STATE(1829)] = 52755,
- [SMALL_STATE(1830)] = 52869,
- [SMALL_STATE(1831)] = 52921,
- [SMALL_STATE(1832)] = 52981,
- [SMALL_STATE(1833)] = 53095,
- [SMALL_STATE(1834)] = 53209,
- [SMALL_STATE(1835)] = 53323,
- [SMALL_STATE(1836)] = 53395,
- [SMALL_STATE(1837)] = 53509,
- [SMALL_STATE(1838)] = 53623,
- [SMALL_STATE(1839)] = 53683,
- [SMALL_STATE(1840)] = 53797,
- [SMALL_STATE(1841)] = 53869,
- [SMALL_STATE(1842)] = 53927,
- [SMALL_STATE(1843)] = 54041,
- [SMALL_STATE(1844)] = 54113,
- [SMALL_STATE(1845)] = 54227,
- [SMALL_STATE(1846)] = 54341,
- [SMALL_STATE(1847)] = 54455,
- [SMALL_STATE(1848)] = 54569,
- [SMALL_STATE(1849)] = 54683,
- [SMALL_STATE(1850)] = 54797,
- [SMALL_STATE(1851)] = 54911,
- [SMALL_STATE(1852)] = 55025,
- [SMALL_STATE(1853)] = 55099,
- [SMALL_STATE(1854)] = 55213,
- [SMALL_STATE(1855)] = 55265,
- [SMALL_STATE(1856)] = 55343,
- [SMALL_STATE(1857)] = 55457,
- [SMALL_STATE(1858)] = 55567,
- [SMALL_STATE(1859)] = 55677,
- [SMALL_STATE(1860)] = 55787,
- [SMALL_STATE(1861)] = 55897,
- [SMALL_STATE(1862)] = 56007,
- [SMALL_STATE(1863)] = 56091,
- [SMALL_STATE(1864)] = 56165,
- [SMALL_STATE(1865)] = 56263,
- [SMALL_STATE(1866)] = 56363,
- [SMALL_STATE(1867)] = 56443,
- [SMALL_STATE(1868)] = 56535,
- [SMALL_STATE(1869)] = 56629,
- [SMALL_STATE(1870)] = 56725,
- [SMALL_STATE(1871)] = 56803,
- [SMALL_STATE(1872)] = 56883,
- [SMALL_STATE(1873)] = 56971,
- [SMALL_STATE(1874)] = 57073,
- [SMALL_STATE(1875)] = 57183,
- [SMALL_STATE(1876)] = 57293,
- [SMALL_STATE(1877)] = 57403,
- [SMALL_STATE(1878)] = 57513,
- [SMALL_STATE(1879)] = 57623,
- [SMALL_STATE(1880)] = 57733,
- [SMALL_STATE(1881)] = 57843,
- [SMALL_STATE(1882)] = 57953,
- [SMALL_STATE(1883)] = 58067,
- [SMALL_STATE(1884)] = 58181,
- [SMALL_STATE(1885)] = 58295,
- [SMALL_STATE(1886)] = 58409,
- [SMALL_STATE(1887)] = 58523,
- [SMALL_STATE(1888)] = 58637,
- [SMALL_STATE(1889)] = 58709,
- [SMALL_STATE(1890)] = 58787,
- [SMALL_STATE(1891)] = 58857,
- [SMALL_STATE(1892)] = 58912,
- [SMALL_STATE(1893)] = 58969,
- [SMALL_STATE(1894)] = 59020,
- [SMALL_STATE(1895)] = 59071,
- [SMALL_STATE(1896)] = 59128,
- [SMALL_STATE(1897)] = 59179,
- [SMALL_STATE(1898)] = 59230,
- [SMALL_STATE(1899)] = 59281,
- [SMALL_STATE(1900)] = 59332,
- [SMALL_STATE(1901)] = 59383,
- [SMALL_STATE(1902)] = 59434,
- [SMALL_STATE(1903)] = 59485,
- [SMALL_STATE(1904)] = 59536,
- [SMALL_STATE(1905)] = 59587,
- [SMALL_STATE(1906)] = 59638,
- [SMALL_STATE(1907)] = 59689,
- [SMALL_STATE(1908)] = 59740,
- [SMALL_STATE(1909)] = 59791,
- [SMALL_STATE(1910)] = 59842,
- [SMALL_STATE(1911)] = 59893,
- [SMALL_STATE(1912)] = 59944,
- [SMALL_STATE(1913)] = 59995,
- [SMALL_STATE(1914)] = 60046,
- [SMALL_STATE(1915)] = 60097,
- [SMALL_STATE(1916)] = 60148,
- [SMALL_STATE(1917)] = 60199,
- [SMALL_STATE(1918)] = 60250,
- [SMALL_STATE(1919)] = 60301,
- [SMALL_STATE(1920)] = 60352,
- [SMALL_STATE(1921)] = 60403,
- [SMALL_STATE(1922)] = 60454,
- [SMALL_STATE(1923)] = 60505,
- [SMALL_STATE(1924)] = 60562,
- [SMALL_STATE(1925)] = 60617,
- [SMALL_STATE(1926)] = 60726,
- [SMALL_STATE(1927)] = 60809,
- [SMALL_STATE(1928)] = 60866,
- [SMALL_STATE(1929)] = 60919,
- [SMALL_STATE(1930)] = 60970,
- [SMALL_STATE(1931)] = 61033,
- [SMALL_STATE(1932)] = 61086,
- [SMALL_STATE(1933)] = 61137,
- [SMALL_STATE(1934)] = 61200,
- [SMALL_STATE(1935)] = 61253,
- [SMALL_STATE(1936)] = 61304,
- [SMALL_STATE(1937)] = 61355,
- [SMALL_STATE(1938)] = 61406,
- [SMALL_STATE(1939)] = 61459,
- [SMALL_STATE(1940)] = 61516,
- [SMALL_STATE(1941)] = 61573,
- [SMALL_STATE(1942)] = 61630,
- [SMALL_STATE(1943)] = 61683,
- [SMALL_STATE(1944)] = 61736,
- [SMALL_STATE(1945)] = 61819,
- [SMALL_STATE(1946)] = 61876,
- [SMALL_STATE(1947)] = 61935,
- [SMALL_STATE(1948)] = 61986,
- [SMALL_STATE(1949)] = 62059,
- [SMALL_STATE(1950)] = 62168,
- [SMALL_STATE(1951)] = 62227,
- [SMALL_STATE(1952)] = 62284,
- [SMALL_STATE(1953)] = 62339,
- [SMALL_STATE(1954)] = 62396,
- [SMALL_STATE(1955)] = 62469,
- [SMALL_STATE(1956)] = 62538,
- [SMALL_STATE(1957)] = 62595,
- [SMALL_STATE(1958)] = 62668,
- [SMALL_STATE(1959)] = 62737,
- [SMALL_STATE(1960)] = 62796,
- [SMALL_STATE(1961)] = 62869,
- [SMALL_STATE(1962)] = 62932,
- [SMALL_STATE(1963)] = 62995,
- [SMALL_STATE(1964)] = 63078,
- [SMALL_STATE(1965)] = 63141,
- [SMALL_STATE(1966)] = 63204,
- [SMALL_STATE(1967)] = 63257,
- [SMALL_STATE(1968)] = 63310,
- [SMALL_STATE(1969)] = 63393,
- [SMALL_STATE(1970)] = 63458,
- [SMALL_STATE(1971)] = 63523,
- [SMALL_STATE(1972)] = 63606,
- [SMALL_STATE(1973)] = 63663,
- [SMALL_STATE(1974)] = 63720,
- [SMALL_STATE(1975)] = 63777,
- [SMALL_STATE(1976)] = 63832,
- [SMALL_STATE(1977)] = 63883,
- [SMALL_STATE(1978)] = 63936,
- [SMALL_STATE(1979)] = 63989,
- [SMALL_STATE(1980)] = 64062,
- [SMALL_STATE(1981)] = 64119,
- [SMALL_STATE(1982)] = 64172,
- [SMALL_STATE(1983)] = 64281,
- [SMALL_STATE(1984)] = 64390,
- [SMALL_STATE(1985)] = 64499,
- [SMALL_STATE(1986)] = 64552,
- [SMALL_STATE(1987)] = 64661,
- [SMALL_STATE(1988)] = 64712,
- [SMALL_STATE(1989)] = 64821,
- [SMALL_STATE(1990)] = 64930,
- [SMALL_STATE(1991)] = 65013,
- [SMALL_STATE(1992)] = 65076,
- [SMALL_STATE(1993)] = 65149,
- [SMALL_STATE(1994)] = 65212,
- [SMALL_STATE(1995)] = 65309,
- [SMALL_STATE(1996)] = 65408,
- [SMALL_STATE(1997)] = 65487,
- [SMALL_STATE(1998)] = 65578,
- [SMALL_STATE(1999)] = 65671,
- [SMALL_STATE(2000)] = 65766,
- [SMALL_STATE(2001)] = 65843,
- [SMALL_STATE(2002)] = 65922,
- [SMALL_STATE(2003)] = 66009,
- [SMALL_STATE(2004)] = 66110,
- [SMALL_STATE(2005)] = 66161,
- [SMALL_STATE(2006)] = 66270,
- [SMALL_STATE(2007)] = 66379,
- [SMALL_STATE(2008)] = 66430,
- [SMALL_STATE(2009)] = 66489,
- [SMALL_STATE(2010)] = 66598,
- [SMALL_STATE(2011)] = 66707,
- [SMALL_STATE(2012)] = 66816,
- [SMALL_STATE(2013)] = 66925,
- [SMALL_STATE(2014)] = 67034,
- [SMALL_STATE(2015)] = 67085,
- [SMALL_STATE(2016)] = 67138,
- [SMALL_STATE(2017)] = 67189,
- [SMALL_STATE(2018)] = 67300,
- [SMALL_STATE(2019)] = 67369,
- [SMALL_STATE(2020)] = 67420,
- [SMALL_STATE(2021)] = 67477,
- [SMALL_STATE(2022)] = 67530,
- [SMALL_STATE(2023)] = 67581,
- [SMALL_STATE(2024)] = 67692,
- [SMALL_STATE(2025)] = 67743,
- [SMALL_STATE(2026)] = 67800,
- [SMALL_STATE(2027)] = 67909,
- [SMALL_STATE(2028)] = 67966,
- [SMALL_STATE(2029)] = 68075,
- [SMALL_STATE(2030)] = 68128,
- [SMALL_STATE(2031)] = 68181,
- [SMALL_STATE(2032)] = 68238,
- [SMALL_STATE(2033)] = 68289,
- [SMALL_STATE(2034)] = 68340,
- [SMALL_STATE(2035)] = 68391,
- [SMALL_STATE(2036)] = 68442,
- [SMALL_STATE(2037)] = 68525,
- [SMALL_STATE(2038)] = 68576,
- [SMALL_STATE(2039)] = 68629,
- [SMALL_STATE(2040)] = 68712,
- [SMALL_STATE(2041)] = 68783,
- [SMALL_STATE(2042)] = 68860,
- [SMALL_STATE(2043)] = 68969,
- [SMALL_STATE(2044)] = 69038,
- [SMALL_STATE(2045)] = 69111,
- [SMALL_STATE(2046)] = 69180,
- [SMALL_STATE(2047)] = 69231,
- [SMALL_STATE(2048)] = 69290,
- [SMALL_STATE(2049)] = 69363,
- [SMALL_STATE(2050)] = 69414,
- [SMALL_STATE(2051)] = 69477,
- [SMALL_STATE(2052)] = 69586,
- [SMALL_STATE(2053)] = 69695,
- [SMALL_STATE(2054)] = 69804,
- [SMALL_STATE(2055)] = 69913,
- [SMALL_STATE(2056)] = 70022,
- [SMALL_STATE(2057)] = 70105,
- [SMALL_STATE(2058)] = 70178,
- [SMALL_STATE(2059)] = 70275,
- [SMALL_STATE(2060)] = 70374,
- [SMALL_STATE(2061)] = 70453,
- [SMALL_STATE(2062)] = 70544,
- [SMALL_STATE(2063)] = 70637,
- [SMALL_STATE(2064)] = 70732,
- [SMALL_STATE(2065)] = 70809,
- [SMALL_STATE(2066)] = 70888,
- [SMALL_STATE(2067)] = 70975,
- [SMALL_STATE(2068)] = 71076,
- [SMALL_STATE(2069)] = 71185,
- [SMALL_STATE(2070)] = 71294,
- [SMALL_STATE(2071)] = 71403,
- [SMALL_STATE(2072)] = 71512,
- [SMALL_STATE(2073)] = 71621,
- [SMALL_STATE(2074)] = 71730,
- [SMALL_STATE(2075)] = 71839,
- [SMALL_STATE(2076)] = 71948,
- [SMALL_STATE(2077)] = 71999,
- [SMALL_STATE(2078)] = 72068,
- [SMALL_STATE(2079)] = 72119,
- [SMALL_STATE(2080)] = 72190,
- [SMALL_STATE(2081)] = 72263,
- [SMALL_STATE(2082)] = 72316,
- [SMALL_STATE(2083)] = 72387,
- [SMALL_STATE(2084)] = 72464,
- [SMALL_STATE(2085)] = 72573,
- [SMALL_STATE(2086)] = 72642,
- [SMALL_STATE(2087)] = 72693,
- [SMALL_STATE(2088)] = 72802,
- [SMALL_STATE(2089)] = 72853,
- [SMALL_STATE(2090)] = 72904,
- [SMALL_STATE(2091)] = 72955,
- [SMALL_STATE(2092)] = 73006,
- [SMALL_STATE(2093)] = 73059,
- [SMALL_STATE(2094)] = 73110,
- [SMALL_STATE(2095)] = 73161,
- [SMALL_STATE(2096)] = 73214,
- [SMALL_STATE(2097)] = 73265,
- [SMALL_STATE(2098)] = 73322,
- [SMALL_STATE(2099)] = 73373,
- [SMALL_STATE(2100)] = 73424,
- [SMALL_STATE(2101)] = 73475,
- [SMALL_STATE(2102)] = 73526,
- [SMALL_STATE(2103)] = 73577,
- [SMALL_STATE(2104)] = 73630,
- [SMALL_STATE(2105)] = 73681,
- [SMALL_STATE(2106)] = 73732,
- [SMALL_STATE(2107)] = 73783,
- [SMALL_STATE(2108)] = 73834,
- [SMALL_STATE(2109)] = 73885,
- [SMALL_STATE(2110)] = 73936,
- [SMALL_STATE(2111)] = 73987,
- [SMALL_STATE(2112)] = 74038,
- [SMALL_STATE(2113)] = 74089,
- [SMALL_STATE(2114)] = 74140,
- [SMALL_STATE(2115)] = 74193,
- [SMALL_STATE(2116)] = 74244,
- [SMALL_STATE(2117)] = 74295,
- [SMALL_STATE(2118)] = 74346,
- [SMALL_STATE(2119)] = 74397,
- [SMALL_STATE(2120)] = 74448,
- [SMALL_STATE(2121)] = 74499,
- [SMALL_STATE(2122)] = 74550,
- [SMALL_STATE(2123)] = 74601,
- [SMALL_STATE(2124)] = 74710,
- [SMALL_STATE(2125)] = 74760,
- [SMALL_STATE(2126)] = 74814,
- [SMALL_STATE(2127)] = 74868,
- [SMALL_STATE(2128)] = 74920,
- [SMALL_STATE(2129)] = 74970,
- [SMALL_STATE(2130)] = 75028,
- [SMALL_STATE(2131)] = 75082,
- [SMALL_STATE(2132)] = 75192,
- [SMALL_STATE(2133)] = 75242,
- [SMALL_STATE(2134)] = 75292,
- [SMALL_STATE(2135)] = 75346,
- [SMALL_STATE(2136)] = 75400,
- [SMALL_STATE(2137)] = 75464,
- [SMALL_STATE(2138)] = 75530,
- [SMALL_STATE(2139)] = 75594,
- [SMALL_STATE(2140)] = 75648,
- [SMALL_STATE(2141)] = 75712,
- [SMALL_STATE(2142)] = 75762,
- [SMALL_STATE(2143)] = 75812,
- [SMALL_STATE(2144)] = 75870,
- [SMALL_STATE(2145)] = 75934,
- [SMALL_STATE(2146)] = 75984,
- [SMALL_STATE(2147)] = 76050,
- [SMALL_STATE(2148)] = 76100,
- [SMALL_STATE(2149)] = 76150,
- [SMALL_STATE(2150)] = 76200,
- [SMALL_STATE(2151)] = 76256,
- [SMALL_STATE(2152)] = 76312,
- [SMALL_STATE(2153)] = 76368,
- [SMALL_STATE(2154)] = 76442,
- [SMALL_STATE(2155)] = 76518,
- [SMALL_STATE(2156)] = 76574,
- [SMALL_STATE(2157)] = 76630,
- [SMALL_STATE(2158)] = 76692,
- [SMALL_STATE(2159)] = 76742,
- [SMALL_STATE(2160)] = 76792,
- [SMALL_STATE(2161)] = 76842,
- [SMALL_STATE(2162)] = 76892,
- [SMALL_STATE(2163)] = 76966,
- [SMALL_STATE(2164)] = 77018,
- [SMALL_STATE(2165)] = 77094,
- [SMALL_STATE(2166)] = 77156,
- [SMALL_STATE(2167)] = 77218,
- [SMALL_STATE(2168)] = 77268,
- [SMALL_STATE(2169)] = 77318,
- [SMALL_STATE(2170)] = 77368,
- [SMALL_STATE(2171)] = 77442,
- [SMALL_STATE(2172)] = 77506,
- [SMALL_STATE(2173)] = 77582,
- [SMALL_STATE(2174)] = 77640,
- [SMALL_STATE(2175)] = 77698,
- [SMALL_STATE(2176)] = 77772,
- [SMALL_STATE(2177)] = 77832,
- [SMALL_STATE(2178)] = 77892,
- [SMALL_STATE(2179)] = 77954,
- [SMALL_STATE(2180)] = 78016,
- [SMALL_STATE(2181)] = 78078,
- [SMALL_STATE(2182)] = 78140,
- [SMALL_STATE(2183)] = 78206,
- [SMALL_STATE(2184)] = 78282,
- [SMALL_STATE(2185)] = 78344,
- [SMALL_STATE(2186)] = 78406,
- [SMALL_STATE(2187)] = 78468,
- [SMALL_STATE(2188)] = 78530,
- [SMALL_STATE(2189)] = 78580,
- [SMALL_STATE(2190)] = 78630,
- [SMALL_STATE(2191)] = 78680,
- [SMALL_STATE(2192)] = 78730,
- [SMALL_STATE(2193)] = 78780,
- [SMALL_STATE(2194)] = 78830,
- [SMALL_STATE(2195)] = 78880,
- [SMALL_STATE(2196)] = 78938,
- [SMALL_STATE(2197)] = 78992,
- [SMALL_STATE(2198)] = 79046,
- [SMALL_STATE(2199)] = 79096,
- [SMALL_STATE(2200)] = 79204,
- [SMALL_STATE(2201)] = 79258,
- [SMALL_STATE(2202)] = 79312,
- [SMALL_STATE(2203)] = 79376,
- [SMALL_STATE(2204)] = 79484,
- [SMALL_STATE(2205)] = 79542,
- [SMALL_STATE(2206)] = 79592,
- [SMALL_STATE(2207)] = 79646,
- [SMALL_STATE(2208)] = 79710,
- [SMALL_STATE(2209)] = 79760,
- [SMALL_STATE(2210)] = 79810,
- [SMALL_STATE(2211)] = 79876,
- [SMALL_STATE(2212)] = 79942,
- [SMALL_STATE(2213)] = 80050,
- [SMALL_STATE(2214)] = 80100,
- [SMALL_STATE(2215)] = 80164,
- [SMALL_STATE(2216)] = 80214,
- [SMALL_STATE(2217)] = 80268,
- [SMALL_STATE(2218)] = 80318,
- [SMALL_STATE(2219)] = 80372,
- [SMALL_STATE(2220)] = 80422,
- [SMALL_STATE(2221)] = 80472,
- [SMALL_STATE(2222)] = 80522,
- [SMALL_STATE(2223)] = 80572,
- [SMALL_STATE(2224)] = 80622,
- [SMALL_STATE(2225)] = 80672,
- [SMALL_STATE(2226)] = 80726,
- [SMALL_STATE(2227)] = 80834,
- [SMALL_STATE(2228)] = 80884,
- [SMALL_STATE(2229)] = 80934,
- [SMALL_STATE(2230)] = 80984,
- [SMALL_STATE(2231)] = 81034,
- [SMALL_STATE(2232)] = 81102,
- [SMALL_STATE(2233)] = 81152,
- [SMALL_STATE(2234)] = 81202,
- [SMALL_STATE(2235)] = 81252,
- [SMALL_STATE(2236)] = 81306,
- [SMALL_STATE(2237)] = 81360,
- [SMALL_STATE(2238)] = 81414,
- [SMALL_STATE(2239)] = 81468,
- [SMALL_STATE(2240)] = 81532,
- [SMALL_STATE(2241)] = 81596,
- [SMALL_STATE(2242)] = 81662,
- [SMALL_STATE(2243)] = 81736,
- [SMALL_STATE(2244)] = 81812,
- [SMALL_STATE(2245)] = 81876,
- [SMALL_STATE(2246)] = 81942,
- [SMALL_STATE(2247)] = 82050,
- [SMALL_STATE(2248)] = 82104,
- [SMALL_STATE(2249)] = 82170,
- [SMALL_STATE(2250)] = 82224,
- [SMALL_STATE(2251)] = 82288,
- [SMALL_STATE(2252)] = 82354,
- [SMALL_STATE(2253)] = 82418,
- [SMALL_STATE(2254)] = 82482,
- [SMALL_STATE(2255)] = 82546,
- [SMALL_STATE(2256)] = 82610,
- [SMALL_STATE(2257)] = 82670,
- [SMALL_STATE(2258)] = 82720,
- [SMALL_STATE(2259)] = 82828,
- [SMALL_STATE(2260)] = 82878,
- [SMALL_STATE(2261)] = 82928,
- [SMALL_STATE(2262)] = 82980,
- [SMALL_STATE(2263)] = 83030,
- [SMALL_STATE(2264)] = 83080,
- [SMALL_STATE(2265)] = 83154,
- [SMALL_STATE(2266)] = 83230,
- [SMALL_STATE(2267)] = 83280,
- [SMALL_STATE(2268)] = 83332,
- [SMALL_STATE(2269)] = 83396,
- [SMALL_STATE(2270)] = 83462,
- [SMALL_STATE(2271)] = 83512,
- [SMALL_STATE(2272)] = 83570,
- [SMALL_STATE(2273)] = 83624,
- [SMALL_STATE(2274)] = 83674,
- [SMALL_STATE(2275)] = 83724,
- [SMALL_STATE(2276)] = 83774,
- [SMALL_STATE(2277)] = 83824,
- [SMALL_STATE(2278)] = 83874,
- [SMALL_STATE(2279)] = 83982,
- [SMALL_STATE(2280)] = 84090,
- [SMALL_STATE(2281)] = 84198,
- [SMALL_STATE(2282)] = 84306,
- [SMALL_STATE(2283)] = 84414,
- [SMALL_STATE(2284)] = 84522,
- [SMALL_STATE(2285)] = 84604,
- [SMALL_STATE(2286)] = 84676,
- [SMALL_STATE(2287)] = 84772,
- [SMALL_STATE(2288)] = 84870,
- [SMALL_STATE(2289)] = 84948,
- [SMALL_STATE(2290)] = 85038,
- [SMALL_STATE(2291)] = 85130,
- [SMALL_STATE(2292)] = 85224,
- [SMALL_STATE(2293)] = 85300,
- [SMALL_STATE(2294)] = 85378,
- [SMALL_STATE(2295)] = 85464,
- [SMALL_STATE(2296)] = 85564,
- [SMALL_STATE(2297)] = 85672,
- [SMALL_STATE(2298)] = 85780,
- [SMALL_STATE(2299)] = 85888,
- [SMALL_STATE(2300)] = 85996,
- [SMALL_STATE(2301)] = 86104,
- [SMALL_STATE(2302)] = 86212,
- [SMALL_STATE(2303)] = 86320,
- [SMALL_STATE(2304)] = 86428,
- [SMALL_STATE(2305)] = 86480,
- [SMALL_STATE(2306)] = 86550,
- [SMALL_STATE(2307)] = 86626,
- [SMALL_STATE(2308)] = 86682,
- [SMALL_STATE(2309)] = 86790,
- [SMALL_STATE(2310)] = 86858,
- [SMALL_STATE(2311)] = 86908,
- [SMALL_STATE(2312)] = 86962,
- [SMALL_STATE(2313)] = 87016,
- [SMALL_STATE(2314)] = 87124,
- [SMALL_STATE(2315)] = 87188,
- [SMALL_STATE(2316)] = 87240,
- [SMALL_STATE(2317)] = 87306,
- [SMALL_STATE(2318)] = 87372,
- [SMALL_STATE(2319)] = 87480,
- [SMALL_STATE(2320)] = 87546,
- [SMALL_STATE(2321)] = 87612,
- [SMALL_STATE(2322)] = 87664,
- [SMALL_STATE(2323)] = 87772,
- [SMALL_STATE(2324)] = 87836,
- [SMALL_STATE(2325)] = 87902,
- [SMALL_STATE(2326)] = 87962,
- [SMALL_STATE(2327)] = 88016,
- [SMALL_STATE(2328)] = 88102,
- [SMALL_STATE(2329)] = 88160,
- [SMALL_STATE(2330)] = 88224,
- [SMALL_STATE(2331)] = 88278,
- [SMALL_STATE(2332)] = 88336,
- [SMALL_STATE(2333)] = 88388,
- [SMALL_STATE(2334)] = 88440,
- [SMALL_STATE(2335)] = 88498,
- [SMALL_STATE(2336)] = 88550,
- [SMALL_STATE(2337)] = 88604,
- [SMALL_STATE(2338)] = 88658,
- [SMALL_STATE(2339)] = 88708,
- [SMALL_STATE(2340)] = 88758,
- [SMALL_STATE(2341)] = 88810,
- [SMALL_STATE(2342)] = 88862,
- [SMALL_STATE(2343)] = 88912,
- [SMALL_STATE(2344)] = 88966,
- [SMALL_STATE(2345)] = 89024,
- [SMALL_STATE(2346)] = 89132,
- [SMALL_STATE(2347)] = 89240,
- [SMALL_STATE(2348)] = 89348,
- [SMALL_STATE(2349)] = 89456,
- [SMALL_STATE(2350)] = 89564,
- [SMALL_STATE(2351)] = 89672,
- [SMALL_STATE(2352)] = 89754,
- [SMALL_STATE(2353)] = 89826,
- [SMALL_STATE(2354)] = 89922,
- [SMALL_STATE(2355)] = 90020,
- [SMALL_STATE(2356)] = 90098,
- [SMALL_STATE(2357)] = 90188,
- [SMALL_STATE(2358)] = 90280,
- [SMALL_STATE(2359)] = 90374,
- [SMALL_STATE(2360)] = 90450,
- [SMALL_STATE(2361)] = 90528,
- [SMALL_STATE(2362)] = 90614,
- [SMALL_STATE(2363)] = 90714,
- [SMALL_STATE(2364)] = 90822,
- [SMALL_STATE(2365)] = 90930,
- [SMALL_STATE(2366)] = 91038,
- [SMALL_STATE(2367)] = 91146,
- [SMALL_STATE(2368)] = 91254,
- [SMALL_STATE(2369)] = 91362,
- [SMALL_STATE(2370)] = 91470,
- [SMALL_STATE(2371)] = 91578,
- [SMALL_STATE(2372)] = 91632,
- [SMALL_STATE(2373)] = 91684,
- [SMALL_STATE(2374)] = 91754,
- [SMALL_STATE(2375)] = 91830,
- [SMALL_STATE(2376)] = 91938,
- [SMALL_STATE(2377)] = 92006,
- [SMALL_STATE(2378)] = 92058,
- [SMALL_STATE(2379)] = 92108,
- [SMALL_STATE(2380)] = 92158,
- [SMALL_STATE(2381)] = 92224,
- [SMALL_STATE(2382)] = 92332,
- [SMALL_STATE(2383)] = 92382,
- [SMALL_STATE(2384)] = 92432,
- [SMALL_STATE(2385)] = 92482,
- [SMALL_STATE(2386)] = 92536,
- [SMALL_STATE(2387)] = 92610,
- [SMALL_STATE(2388)] = 92686,
- [SMALL_STATE(2389)] = 92736,
- [SMALL_STATE(2390)] = 92813,
- [SMALL_STATE(2391)] = 92882,
- [SMALL_STATE(2392)] = 92933,
- [SMALL_STATE(2393)] = 92988,
- [SMALL_STATE(2394)] = 93047,
- [SMALL_STATE(2395)] = 93116,
- [SMALL_STATE(2396)] = 93175,
- [SMALL_STATE(2397)] = 93244,
- [SMALL_STATE(2398)] = 93303,
- [SMALL_STATE(2399)] = 93360,
- [SMALL_STATE(2400)] = 93419,
- [SMALL_STATE(2401)] = 93478,
- [SMALL_STATE(2402)] = 93535,
- [SMALL_STATE(2403)] = 93590,
- [SMALL_STATE(2404)] = 93647,
- [SMALL_STATE(2405)] = 93716,
- [SMALL_STATE(2406)] = 93785,
- [SMALL_STATE(2407)] = 93860,
- [SMALL_STATE(2408)] = 93965,
- [SMALL_STATE(2409)] = 94032,
- [SMALL_STATE(2410)] = 94089,
- [SMALL_STATE(2411)] = 94142,
- [SMALL_STATE(2412)] = 94247,
- [SMALL_STATE(2413)] = 94306,
- [SMALL_STATE(2414)] = 94375,
- [SMALL_STATE(2415)] = 94426,
- [SMALL_STATE(2416)] = 94531,
- [SMALL_STATE(2417)] = 94582,
- [SMALL_STATE(2418)] = 94657,
- [SMALL_STATE(2419)] = 94716,
- [SMALL_STATE(2420)] = 94775,
- [SMALL_STATE(2421)] = 94844,
- [SMALL_STATE(2422)] = 94903,
- [SMALL_STATE(2423)] = 94960,
- [SMALL_STATE(2424)] = 95019,
- [SMALL_STATE(2425)] = 95078,
- [SMALL_STATE(2426)] = 95133,
- [SMALL_STATE(2427)] = 95192,
- [SMALL_STATE(2428)] = 95247,
- [SMALL_STATE(2429)] = 95298,
- [SMALL_STATE(2430)] = 95403,
- [SMALL_STATE(2431)] = 95508,
- [SMALL_STATE(2432)] = 95613,
- [SMALL_STATE(2433)] = 95718,
- [SMALL_STATE(2434)] = 95823,
- [SMALL_STATE(2435)] = 95904,
- [SMALL_STATE(2436)] = 95975,
- [SMALL_STATE(2437)] = 96064,
- [SMALL_STATE(2438)] = 96159,
- [SMALL_STATE(2439)] = 96256,
- [SMALL_STATE(2440)] = 96333,
- [SMALL_STATE(2441)] = 96422,
- [SMALL_STATE(2442)] = 96513,
- [SMALL_STATE(2443)] = 96606,
- [SMALL_STATE(2444)] = 96681,
- [SMALL_STATE(2445)] = 96758,
- [SMALL_STATE(2446)] = 96843,
- [SMALL_STATE(2447)] = 96942,
- [SMALL_STATE(2448)] = 97047,
- [SMALL_STATE(2449)] = 97152,
- [SMALL_STATE(2450)] = 97211,
- [SMALL_STATE(2451)] = 97316,
- [SMALL_STATE(2452)] = 97421,
- [SMALL_STATE(2453)] = 97526,
- [SMALL_STATE(2454)] = 97631,
- [SMALL_STATE(2455)] = 97736,
- [SMALL_STATE(2456)] = 97795,
- [SMALL_STATE(2457)] = 97854,
- [SMALL_STATE(2458)] = 97959,
- [SMALL_STATE(2459)] = 98018,
- [SMALL_STATE(2460)] = 98077,
- [SMALL_STATE(2461)] = 98136,
- [SMALL_STATE(2462)] = 98195,
- [SMALL_STATE(2463)] = 98248,
- [SMALL_STATE(2464)] = 98307,
- [SMALL_STATE(2465)] = 98376,
- [SMALL_STATE(2466)] = 98435,
- [SMALL_STATE(2467)] = 98516,
- [SMALL_STATE(2468)] = 98573,
- [SMALL_STATE(2469)] = 98630,
- [SMALL_STATE(2470)] = 98681,
- [SMALL_STATE(2471)] = 98740,
- [SMALL_STATE(2472)] = 98799,
- [SMALL_STATE(2473)] = 98863,
- [SMALL_STATE(2474)] = 98913,
- [SMALL_STATE(2475)] = 98969,
- [SMALL_STATE(2476)] = 99023,
- [SMALL_STATE(2477)] = 99077,
- [SMALL_STATE(2478)] = 99143,
- [SMALL_STATE(2479)] = 99197,
- [SMALL_STATE(2480)] = 99265,
- [SMALL_STATE(2481)] = 99329,
- [SMALL_STATE(2482)] = 99393,
- [SMALL_STATE(2483)] = 99453,
- [SMALL_STATE(2484)] = 99513,
- [SMALL_STATE(2485)] = 99561,
- [SMALL_STATE(2486)] = 99615,
- [SMALL_STATE(2487)] = 99669,
- [SMALL_STATE(2488)] = 99717,
- [SMALL_STATE(2489)] = 99767,
- [SMALL_STATE(2490)] = 99817,
- [SMALL_STATE(2491)] = 99867,
- [SMALL_STATE(2492)] = 99917,
- [SMALL_STATE(2493)] = 99977,
- [SMALL_STATE(2494)] = 100027,
- [SMALL_STATE(2495)] = 100077,
- [SMALL_STATE(2496)] = 100137,
- [SMALL_STATE(2497)] = 100187,
- [SMALL_STATE(2498)] = 100251,
- [SMALL_STATE(2499)] = 100311,
- [SMALL_STATE(2500)] = 100361,
- [SMALL_STATE(2501)] = 100415,
- [SMALL_STATE(2502)] = 100465,
- [SMALL_STATE(2503)] = 100519,
- [SMALL_STATE(2504)] = 100573,
- [SMALL_STATE(2505)] = 100623,
- [SMALL_STATE(2506)] = 100695,
- [SMALL_STATE(2507)] = 100749,
- [SMALL_STATE(2508)] = 100817,
- [SMALL_STATE(2509)] = 100887,
- [SMALL_STATE(2510)] = 100937,
- [SMALL_STATE(2511)] = 100991,
- [SMALL_STATE(2512)] = 101055,
- [SMALL_STATE(2513)] = 101103,
- [SMALL_STATE(2514)] = 101162,
- [SMALL_STATE(2515)] = 101221,
- [SMALL_STATE(2516)] = 101278,
- [SMALL_STATE(2517)] = 101337,
- [SMALL_STATE(2518)] = 101394,
- [SMALL_STATE(2519)] = 101447,
- [SMALL_STATE(2520)] = 101500,
- [SMALL_STATE(2521)] = 101549,
- [SMALL_STATE(2522)] = 101602,
- [SMALL_STATE(2523)] = 101659,
- [SMALL_STATE(2524)] = 101716,
- [SMALL_STATE(2525)] = 101773,
- [SMALL_STATE(2526)] = 101830,
- [SMALL_STATE(2527)] = 101887,
- [SMALL_STATE(2528)] = 101944,
- [SMALL_STATE(2529)] = 102003,
- [SMALL_STATE(2530)] = 102062,
- [SMALL_STATE(2531)] = 102119,
- [SMALL_STATE(2532)] = 102178,
- [SMALL_STATE(2533)] = 102231,
- [SMALL_STATE(2534)] = 102290,
- [SMALL_STATE(2535)] = 102353,
- [SMALL_STATE(2536)] = 102406,
- [SMALL_STATE(2537)] = 102471,
- [SMALL_STATE(2538)] = 102530,
- [SMALL_STATE(2539)] = 102589,
- [SMALL_STATE(2540)] = 102646,
- [SMALL_STATE(2541)] = 102703,
- [SMALL_STATE(2542)] = 102762,
- [SMALL_STATE(2543)] = 102819,
- [SMALL_STATE(2544)] = 102882,
- [SMALL_STATE(2545)] = 102939,
- [SMALL_STATE(2546)] = 103000,
- [SMALL_STATE(2547)] = 103049,
- [SMALL_STATE(2548)] = 103108,
- [SMALL_STATE(2549)] = 103157,
- [SMALL_STATE(2550)] = 103216,
- [SMALL_STATE(2551)] = 103273,
- [SMALL_STATE(2552)] = 103330,
- [SMALL_STATE(2553)] = 103389,
- [SMALL_STATE(2554)] = 103448,
- [SMALL_STATE(2555)] = 103505,
- [SMALL_STATE(2556)] = 103553,
- [SMALL_STATE(2557)] = 103599,
- [SMALL_STATE(2558)] = 103647,
- [SMALL_STATE(2559)] = 103693,
- [SMALL_STATE(2560)] = 103739,
- [SMALL_STATE(2561)] = 103785,
- [SMALL_STATE(2562)] = 103831,
- [SMALL_STATE(2563)] = 103877,
- [SMALL_STATE(2564)] = 103923,
- [SMALL_STATE(2565)] = 103973,
- [SMALL_STATE(2566)] = 104019,
- [SMALL_STATE(2567)] = 104065,
- [SMALL_STATE(2568)] = 104111,
- [SMALL_STATE(2569)] = 104157,
- [SMALL_STATE(2570)] = 104203,
- [SMALL_STATE(2571)] = 104251,
- [SMALL_STATE(2572)] = 104297,
- [SMALL_STATE(2573)] = 104343,
- [SMALL_STATE(2574)] = 104389,
- [SMALL_STATE(2575)] = 104435,
- [SMALL_STATE(2576)] = 104485,
- [SMALL_STATE(2577)] = 104533,
- [SMALL_STATE(2578)] = 104579,
- [SMALL_STATE(2579)] = 104625,
- [SMALL_STATE(2580)] = 104671,
- [SMALL_STATE(2581)] = 104719,
- [SMALL_STATE(2582)] = 104765,
- [SMALL_STATE(2583)] = 104813,
- [SMALL_STATE(2584)] = 104859,
- [SMALL_STATE(2585)] = 104905,
- [SMALL_STATE(2586)] = 104951,
- [SMALL_STATE(2587)] = 104997,
- [SMALL_STATE(2588)] = 105043,
- [SMALL_STATE(2589)] = 105089,
- [SMALL_STATE(2590)] = 105135,
- [SMALL_STATE(2591)] = 105181,
- [SMALL_STATE(2592)] = 105229,
- [SMALL_STATE(2593)] = 105275,
- [SMALL_STATE(2594)] = 105333,
- [SMALL_STATE(2595)] = 105379,
- [SMALL_STATE(2596)] = 105425,
- [SMALL_STATE(2597)] = 105471,
- [SMALL_STATE(2598)] = 105517,
- [SMALL_STATE(2599)] = 105565,
- [SMALL_STATE(2600)] = 105613,
- [SMALL_STATE(2601)] = 105659,
- [SMALL_STATE(2602)] = 105715,
- [SMALL_STATE(2603)] = 105761,
- [SMALL_STATE(2604)] = 105807,
- [SMALL_STATE(2605)] = 105855,
- [SMALL_STATE(2606)] = 105901,
- [SMALL_STATE(2607)] = 105947,
- [SMALL_STATE(2608)] = 105995,
- [SMALL_STATE(2609)] = 106043,
- [SMALL_STATE(2610)] = 106089,
- [SMALL_STATE(2611)] = 106135,
- [SMALL_STATE(2612)] = 106181,
- [SMALL_STATE(2613)] = 106227,
- [SMALL_STATE(2614)] = 106273,
- [SMALL_STATE(2615)] = 106319,
- [SMALL_STATE(2616)] = 106365,
- [SMALL_STATE(2617)] = 106411,
- [SMALL_STATE(2618)] = 106459,
- [SMALL_STATE(2619)] = 106505,
- [SMALL_STATE(2620)] = 106556,
- [SMALL_STATE(2621)] = 106623,
- [SMALL_STATE(2622)] = 106668,
- [SMALL_STATE(2623)] = 106721,
- [SMALL_STATE(2624)] = 106774,
- [SMALL_STATE(2625)] = 106819,
- [SMALL_STATE(2626)] = 106864,
- [SMALL_STATE(2627)] = 106909,
- [SMALL_STATE(2628)] = 106954,
- [SMALL_STATE(2629)] = 106999,
- [SMALL_STATE(2630)] = 107050,
- [SMALL_STATE(2631)] = 107095,
- [SMALL_STATE(2632)] = 107153,
- [SMALL_STATE(2633)] = 107201,
- [SMALL_STATE(2634)] = 107273,
- [SMALL_STATE(2635)] = 107333,
- [SMALL_STATE(2636)] = 107391,
- [SMALL_STATE(2637)] = 107451,
- [SMALL_STATE(2638)] = 107507,
- [SMALL_STATE(2639)] = 107579,
- [SMALL_STATE(2640)] = 107637,
- [SMALL_STATE(2641)] = 107695,
- [SMALL_STATE(2642)] = 107755,
- [SMALL_STATE(2643)] = 107803,
- [SMALL_STATE(2644)] = 107856,
- [SMALL_STATE(2645)] = 107919,
- [SMALL_STATE(2646)] = 107972,
- [SMALL_STATE(2647)] = 108025,
- [SMALL_STATE(2648)] = 108078,
- [SMALL_STATE(2649)] = 108131,
- [SMALL_STATE(2650)] = 108184,
- [SMALL_STATE(2651)] = 108237,
- [SMALL_STATE(2652)] = 108290,
- [SMALL_STATE(2653)] = 108343,
- [SMALL_STATE(2654)] = 108396,
- [SMALL_STATE(2655)] = 108449,
- [SMALL_STATE(2656)] = 108512,
- [SMALL_STATE(2657)] = 108565,
- [SMALL_STATE(2658)] = 108618,
- [SMALL_STATE(2659)] = 108671,
- [SMALL_STATE(2660)] = 108724,
- [SMALL_STATE(2661)] = 108777,
- [SMALL_STATE(2662)] = 108830,
- [SMALL_STATE(2663)] = 108883,
- [SMALL_STATE(2664)] = 108936,
- [SMALL_STATE(2665)] = 108989,
- [SMALL_STATE(2666)] = 109042,
- [SMALL_STATE(2667)] = 109095,
- [SMALL_STATE(2668)] = 109148,
- [SMALL_STATE(2669)] = 109201,
- [SMALL_STATE(2670)] = 109254,
- [SMALL_STATE(2671)] = 109307,
- [SMALL_STATE(2672)] = 109356,
- [SMALL_STATE(2673)] = 109409,
- [SMALL_STATE(2674)] = 109463,
- [SMALL_STATE(2675)] = 109527,
- [SMALL_STATE(2676)] = 109587,
- [SMALL_STATE(2677)] = 109641,
- [SMALL_STATE(2678)] = 109701,
- [SMALL_STATE(2679)] = 109755,
- [SMALL_STATE(2680)] = 109809,
- [SMALL_STATE(2681)] = 109889,
- [SMALL_STATE(2682)] = 109969,
- [SMALL_STATE(2683)] = 110033,
- [SMALL_STATE(2684)] = 110113,
- [SMALL_STATE(2685)] = 110193,
- [SMALL_STATE(2686)] = 110273,
- [SMALL_STATE(2687)] = 110327,
- [SMALL_STATE(2688)] = 110391,
- [SMALL_STATE(2689)] = 110445,
- [SMALL_STATE(2690)] = 110525,
- [SMALL_STATE(2691)] = 110579,
- [SMALL_STATE(2692)] = 110659,
- [SMALL_STATE(2693)] = 110713,
- [SMALL_STATE(2694)] = 110767,
- [SMALL_STATE(2695)] = 110821,
- [SMALL_STATE(2696)] = 110878,
- [SMALL_STATE(2697)] = 110935,
- [SMALL_STATE(2698)] = 110976,
- [SMALL_STATE(2699)] = 111033,
- [SMALL_STATE(2700)] = 111090,
- [SMALL_STATE(2701)] = 111147,
- [SMALL_STATE(2702)] = 111204,
- [SMALL_STATE(2703)] = 111261,
- [SMALL_STATE(2704)] = 111302,
- [SMALL_STATE(2705)] = 111343,
- [SMALL_STATE(2706)] = 111400,
- [SMALL_STATE(2707)] = 111457,
- [SMALL_STATE(2708)] = 111510,
- [SMALL_STATE(2709)] = 111567,
- [SMALL_STATE(2710)] = 111608,
- [SMALL_STATE(2711)] = 111665,
- [SMALL_STATE(2712)] = 111722,
- [SMALL_STATE(2713)] = 111779,
- [SMALL_STATE(2714)] = 111832,
- [SMALL_STATE(2715)] = 111873,
- [SMALL_STATE(2716)] = 111930,
- [SMALL_STATE(2717)] = 111981,
- [SMALL_STATE(2718)] = 112038,
- [SMALL_STATE(2719)] = 112081,
- [SMALL_STATE(2720)] = 112138,
- [SMALL_STATE(2721)] = 112186,
- [SMALL_STATE(2722)] = 112234,
- [SMALL_STATE(2723)] = 112282,
- [SMALL_STATE(2724)] = 112332,
- [SMALL_STATE(2725)] = 112380,
- [SMALL_STATE(2726)] = 112428,
- [SMALL_STATE(2727)] = 112476,
- [SMALL_STATE(2728)] = 112524,
- [SMALL_STATE(2729)] = 112574,
- [SMALL_STATE(2730)] = 112622,
- [SMALL_STATE(2731)] = 112670,
- [SMALL_STATE(2732)] = 112718,
- [SMALL_STATE(2733)] = 112766,
- [SMALL_STATE(2734)] = 112816,
- [SMALL_STATE(2735)] = 112864,
- [SMALL_STATE(2736)] = 112914,
- [SMALL_STATE(2737)] = 112962,
- [SMALL_STATE(2738)] = 113012,
- [SMALL_STATE(2739)] = 113060,
- [SMALL_STATE(2740)] = 113108,
- [SMALL_STATE(2741)] = 113156,
- [SMALL_STATE(2742)] = 113206,
- [SMALL_STATE(2743)] = 113254,
- [SMALL_STATE(2744)] = 113302,
- [SMALL_STATE(2745)] = 113350,
- [SMALL_STATE(2746)] = 113398,
- [SMALL_STATE(2747)] = 113446,
- [SMALL_STATE(2748)] = 113494,
- [SMALL_STATE(2749)] = 113542,
- [SMALL_STATE(2750)] = 113590,
- [SMALL_STATE(2751)] = 113638,
- [SMALL_STATE(2752)] = 113686,
- [SMALL_STATE(2753)] = 113734,
- [SMALL_STATE(2754)] = 113782,
- [SMALL_STATE(2755)] = 113832,
- [SMALL_STATE(2756)] = 113882,
- [SMALL_STATE(2757)] = 113930,
- [SMALL_STATE(2758)] = 113978,
- [SMALL_STATE(2759)] = 114028,
- [SMALL_STATE(2760)] = 114076,
- [SMALL_STATE(2761)] = 114126,
- [SMALL_STATE(2762)] = 114174,
- [SMALL_STATE(2763)] = 114224,
- [SMALL_STATE(2764)] = 114272,
- [SMALL_STATE(2765)] = 114320,
- [SMALL_STATE(2766)] = 114368,
- [SMALL_STATE(2767)] = 114418,
- [SMALL_STATE(2768)] = 114466,
- [SMALL_STATE(2769)] = 114516,
- [SMALL_STATE(2770)] = 114564,
- [SMALL_STATE(2771)] = 114612,
- [SMALL_STATE(2772)] = 114660,
- [SMALL_STATE(2773)] = 114708,
- [SMALL_STATE(2774)] = 114756,
- [SMALL_STATE(2775)] = 114804,
- [SMALL_STATE(2776)] = 114852,
- [SMALL_STATE(2777)] = 114902,
- [SMALL_STATE(2778)] = 114950,
- [SMALL_STATE(2779)] = 114998,
- [SMALL_STATE(2780)] = 115046,
- [SMALL_STATE(2781)] = 115094,
- [SMALL_STATE(2782)] = 115129,
- [SMALL_STATE(2783)] = 115170,
- [SMALL_STATE(2784)] = 115211,
- [SMALL_STATE(2785)] = 115252,
- [SMALL_STATE(2786)] = 115280,
- [SMALL_STATE(2787)] = 115308,
- [SMALL_STATE(2788)] = 115336,
- [SMALL_STATE(2789)] = 115364,
- [SMALL_STATE(2790)] = 115392,
- [SMALL_STATE(2791)] = 115420,
- [SMALL_STATE(2792)] = 115448,
- [SMALL_STATE(2793)] = 115476,
- [SMALL_STATE(2794)] = 115504,
- [SMALL_STATE(2795)] = 115532,
- [SMALL_STATE(2796)] = 115560,
- [SMALL_STATE(2797)] = 115588,
- [SMALL_STATE(2798)] = 115616,
- [SMALL_STATE(2799)] = 115644,
- [SMALL_STATE(2800)] = 115672,
- [SMALL_STATE(2801)] = 115700,
- [SMALL_STATE(2802)] = 115728,
- [SMALL_STATE(2803)] = 115756,
- [SMALL_STATE(2804)] = 115784,
- [SMALL_STATE(2805)] = 115812,
- [SMALL_STATE(2806)] = 115840,
- [SMALL_STATE(2807)] = 115868,
- [SMALL_STATE(2808)] = 115896,
- [SMALL_STATE(2809)] = 115924,
- [SMALL_STATE(2810)] = 115952,
- [SMALL_STATE(2811)] = 115980,
- [SMALL_STATE(2812)] = 116008,
- [SMALL_STATE(2813)] = 116036,
- [SMALL_STATE(2814)] = 116064,
- [SMALL_STATE(2815)] = 116092,
- [SMALL_STATE(2816)] = 116120,
- [SMALL_STATE(2817)] = 116148,
- [SMALL_STATE(2818)] = 116176,
- [SMALL_STATE(2819)] = 116204,
- [SMALL_STATE(2820)] = 116261,
- [SMALL_STATE(2821)] = 116288,
- [SMALL_STATE(2822)] = 116345,
- [SMALL_STATE(2823)] = 116372,
- [SMALL_STATE(2824)] = 116421,
- [SMALL_STATE(2825)] = 116454,
- [SMALL_STATE(2826)] = 116480,
- [SMALL_STATE(2827)] = 116508,
- [SMALL_STATE(2828)] = 116546,
- [SMALL_STATE(2829)] = 116576,
- [SMALL_STATE(2830)] = 116602,
- [SMALL_STATE(2831)] = 116628,
- [SMALL_STATE(2832)] = 116658,
- [SMALL_STATE(2833)] = 116696,
- [SMALL_STATE(2834)] = 116726,
- [SMALL_STATE(2835)] = 116752,
- [SMALL_STATE(2836)] = 116780,
- [SMALL_STATE(2837)] = 116806,
- [SMALL_STATE(2838)] = 116832,
- [SMALL_STATE(2839)] = 116858,
- [SMALL_STATE(2840)] = 116896,
- [SMALL_STATE(2841)] = 116930,
- [SMALL_STATE(2842)] = 116956,
- [SMALL_STATE(2843)] = 116982,
- [SMALL_STATE(2844)] = 117008,
- [SMALL_STATE(2845)] = 117034,
- [SMALL_STATE(2846)] = 117060,
- [SMALL_STATE(2847)] = 117091,
- [SMALL_STATE(2848)] = 117116,
- [SMALL_STATE(2849)] = 117141,
- [SMALL_STATE(2850)] = 117166,
- [SMALL_STATE(2851)] = 117193,
- [SMALL_STATE(2852)] = 117218,
- [SMALL_STATE(2853)] = 117242,
- [SMALL_STATE(2854)] = 117266,
- [SMALL_STATE(2855)] = 117290,
- [SMALL_STATE(2856)] = 117314,
- [SMALL_STATE(2857)] = 117338,
- [SMALL_STATE(2858)] = 117362,
- [SMALL_STATE(2859)] = 117390,
- [SMALL_STATE(2860)] = 117414,
- [SMALL_STATE(2861)] = 117440,
- [SMALL_STATE(2862)] = 117464,
- [SMALL_STATE(2863)] = 117498,
- [SMALL_STATE(2864)] = 117532,
- [SMALL_STATE(2865)] = 117566,
- [SMALL_STATE(2866)] = 117590,
- [SMALL_STATE(2867)] = 117614,
- [SMALL_STATE(2868)] = 117646,
- [SMALL_STATE(2869)] = 117680,
- [SMALL_STATE(2870)] = 117714,
- [SMALL_STATE(2871)] = 117748,
- [SMALL_STATE(2872)] = 117772,
- [SMALL_STATE(2873)] = 117796,
- [SMALL_STATE(2874)] = 117820,
- [SMALL_STATE(2875)] = 117844,
- [SMALL_STATE(2876)] = 117866,
- [SMALL_STATE(2877)] = 117890,
- [SMALL_STATE(2878)] = 117914,
- [SMALL_STATE(2879)] = 117936,
- [SMALL_STATE(2880)] = 117968,
- [SMALL_STATE(2881)] = 118002,
- [SMALL_STATE(2882)] = 118036,
- [SMALL_STATE(2883)] = 118070,
- [SMALL_STATE(2884)] = 118094,
- [SMALL_STATE(2885)] = 118116,
- [SMALL_STATE(2886)] = 118140,
- [SMALL_STATE(2887)] = 118174,
- [SMALL_STATE(2888)] = 118208,
- [SMALL_STATE(2889)] = 118242,
- [SMALL_STATE(2890)] = 118266,
- [SMALL_STATE(2891)] = 118290,
- [SMALL_STATE(2892)] = 118312,
- [SMALL_STATE(2893)] = 118344,
- [SMALL_STATE(2894)] = 118378,
- [SMALL_STATE(2895)] = 118412,
- [SMALL_STATE(2896)] = 118446,
- [SMALL_STATE(2897)] = 118470,
- [SMALL_STATE(2898)] = 118496,
- [SMALL_STATE(2899)] = 118518,
- [SMALL_STATE(2900)] = 118540,
- [SMALL_STATE(2901)] = 118562,
- [SMALL_STATE(2902)] = 118594,
- [SMALL_STATE(2903)] = 118626,
- [SMALL_STATE(2904)] = 118650,
- [SMALL_STATE(2905)] = 118684,
- [SMALL_STATE(2906)] = 118708,
- [SMALL_STATE(2907)] = 118732,
- [SMALL_STATE(2908)] = 118756,
- [SMALL_STATE(2909)] = 118790,
- [SMALL_STATE(2910)] = 118814,
- [SMALL_STATE(2911)] = 118838,
- [SMALL_STATE(2912)] = 118862,
- [SMALL_STATE(2913)] = 118886,
- [SMALL_STATE(2914)] = 118910,
- [SMALL_STATE(2915)] = 118934,
- [SMALL_STATE(2916)] = 118958,
- [SMALL_STATE(2917)] = 118982,
- [SMALL_STATE(2918)] = 119016,
- [SMALL_STATE(2919)] = 119040,
- [SMALL_STATE(2920)] = 119062,
- [SMALL_STATE(2921)] = 119086,
- [SMALL_STATE(2922)] = 119110,
- [SMALL_STATE(2923)] = 119134,
- [SMALL_STATE(2924)] = 119158,
- [SMALL_STATE(2925)] = 119182,
- [SMALL_STATE(2926)] = 119206,
- [SMALL_STATE(2927)] = 119230,
- [SMALL_STATE(2928)] = 119254,
- [SMALL_STATE(2929)] = 119278,
- [SMALL_STATE(2930)] = 119302,
- [SMALL_STATE(2931)] = 119326,
- [SMALL_STATE(2932)] = 119350,
- [SMALL_STATE(2933)] = 119374,
- [SMALL_STATE(2934)] = 119398,
- [SMALL_STATE(2935)] = 119422,
- [SMALL_STATE(2936)] = 119446,
- [SMALL_STATE(2937)] = 119470,
- [SMALL_STATE(2938)] = 119494,
- [SMALL_STATE(2939)] = 119518,
- [SMALL_STATE(2940)] = 119542,
- [SMALL_STATE(2941)] = 119566,
- [SMALL_STATE(2942)] = 119590,
- [SMALL_STATE(2943)] = 119614,
- [SMALL_STATE(2944)] = 119636,
- [SMALL_STATE(2945)] = 119660,
- [SMALL_STATE(2946)] = 119684,
- [SMALL_STATE(2947)] = 119708,
- [SMALL_STATE(2948)] = 119732,
- [SMALL_STATE(2949)] = 119756,
- [SMALL_STATE(2950)] = 119780,
- [SMALL_STATE(2951)] = 119804,
- [SMALL_STATE(2952)] = 119828,
- [SMALL_STATE(2953)] = 119860,
- [SMALL_STATE(2954)] = 119889,
- [SMALL_STATE(2955)] = 119934,
- [SMALL_STATE(2956)] = 119977,
- [SMALL_STATE(2957)] = 120020,
- [SMALL_STATE(2958)] = 120049,
- [SMALL_STATE(2959)] = 120078,
- [SMALL_STATE(2960)] = 120121,
- [SMALL_STATE(2961)] = 120150,
- [SMALL_STATE(2962)] = 120189,
- [SMALL_STATE(2963)] = 120218,
- [SMALL_STATE(2964)] = 120257,
- [SMALL_STATE(2965)] = 120300,
- [SMALL_STATE(2966)] = 120343,
- [SMALL_STATE(2967)] = 120386,
- [SMALL_STATE(2968)] = 120429,
- [SMALL_STATE(2969)] = 120472,
- [SMALL_STATE(2970)] = 120515,
- [SMALL_STATE(2971)] = 120540,
- [SMALL_STATE(2972)] = 120583,
- [SMALL_STATE(2973)] = 120612,
- [SMALL_STATE(2974)] = 120651,
- [SMALL_STATE(2975)] = 120694,
- [SMALL_STATE(2976)] = 120729,
- [SMALL_STATE(2977)] = 120772,
- [SMALL_STATE(2978)] = 120815,
- [SMALL_STATE(2979)] = 120844,
- [SMALL_STATE(2980)] = 120883,
- [SMALL_STATE(2981)] = 120926,
- [SMALL_STATE(2982)] = 120969,
- [SMALL_STATE(2983)] = 121008,
- [SMALL_STATE(2984)] = 121037,
- [SMALL_STATE(2985)] = 121080,
- [SMALL_STATE(2986)] = 121123,
- [SMALL_STATE(2987)] = 121166,
- [SMALL_STATE(2988)] = 121209,
- [SMALL_STATE(2989)] = 121236,
- [SMALL_STATE(2990)] = 121279,
- [SMALL_STATE(2991)] = 121322,
- [SMALL_STATE(2992)] = 121351,
- [SMALL_STATE(2993)] = 121394,
- [SMALL_STATE(2994)] = 121419,
- [SMALL_STATE(2995)] = 121462,
- [SMALL_STATE(2996)] = 121487,
- [SMALL_STATE(2997)] = 121507,
- [SMALL_STATE(2998)] = 121543,
- [SMALL_STATE(2999)] = 121579,
- [SMALL_STATE(3000)] = 121601,
- [SMALL_STATE(3001)] = 121629,
- [SMALL_STATE(3002)] = 121657,
- [SMALL_STATE(3003)] = 121677,
- [SMALL_STATE(3004)] = 121703,
- [SMALL_STATE(3005)] = 121731,
- [SMALL_STATE(3006)] = 121757,
- [SMALL_STATE(3007)] = 121785,
- [SMALL_STATE(3008)] = 121807,
- [SMALL_STATE(3009)] = 121827,
- [SMALL_STATE(3010)] = 121863,
- [SMALL_STATE(3011)] = 121883,
- [SMALL_STATE(3012)] = 121903,
- [SMALL_STATE(3013)] = 121925,
- [SMALL_STATE(3014)] = 121945,
- [SMALL_STATE(3015)] = 121973,
- [SMALL_STATE(3016)] = 121995,
- [SMALL_STATE(3017)] = 122037,
- [SMALL_STATE(3018)] = 122061,
- [SMALL_STATE(3019)] = 122083,
- [SMALL_STATE(3020)] = 122111,
- [SMALL_STATE(3021)] = 122133,
- [SMALL_STATE(3022)] = 122155,
- [SMALL_STATE(3023)] = 122175,
- [SMALL_STATE(3024)] = 122197,
- [SMALL_STATE(3025)] = 122217,
- [SMALL_STATE(3026)] = 122237,
- [SMALL_STATE(3027)] = 122273,
- [SMALL_STATE(3028)] = 122293,
- [SMALL_STATE(3029)] = 122329,
- [SMALL_STATE(3030)] = 122365,
- [SMALL_STATE(3031)] = 122385,
- [SMALL_STATE(3032)] = 122409,
- [SMALL_STATE(3033)] = 122431,
- [SMALL_STATE(3034)] = 122451,
- [SMALL_STATE(3035)] = 122473,
- [SMALL_STATE(3036)] = 122495,
- [SMALL_STATE(3037)] = 122519,
- [SMALL_STATE(3038)] = 122555,
- [SMALL_STATE(3039)] = 122591,
- [SMALL_STATE(3040)] = 122627,
- [SMALL_STATE(3041)] = 122647,
- [SMALL_STATE(3042)] = 122667,
- [SMALL_STATE(3043)] = 122689,
- [SMALL_STATE(3044)] = 122711,
- [SMALL_STATE(3045)] = 122733,
- [SMALL_STATE(3046)] = 122775,
- [SMALL_STATE(3047)] = 122797,
- [SMALL_STATE(3048)] = 122823,
- [SMALL_STATE(3049)] = 122843,
- [SMALL_STATE(3050)] = 122879,
- [SMALL_STATE(3051)] = 122903,
- [SMALL_STATE(3052)] = 122939,
- [SMALL_STATE(3053)] = 122967,
- [SMALL_STATE(3054)] = 122987,
- [SMALL_STATE(3055)] = 123015,
- [SMALL_STATE(3056)] = 123035,
- [SMALL_STATE(3057)] = 123055,
- [SMALL_STATE(3058)] = 123091,
- [SMALL_STATE(3059)] = 123111,
- [SMALL_STATE(3060)] = 123139,
- [SMALL_STATE(3061)] = 123159,
- [SMALL_STATE(3062)] = 123179,
- [SMALL_STATE(3063)] = 123215,
- [SMALL_STATE(3064)] = 123251,
- [SMALL_STATE(3065)] = 123271,
- [SMALL_STATE(3066)] = 123291,
- [SMALL_STATE(3067)] = 123311,
- [SMALL_STATE(3068)] = 123331,
- [SMALL_STATE(3069)] = 123355,
- [SMALL_STATE(3070)] = 123375,
- [SMALL_STATE(3071)] = 123411,
- [SMALL_STATE(3072)] = 123431,
- [SMALL_STATE(3073)] = 123451,
- [SMALL_STATE(3074)] = 123471,
- [SMALL_STATE(3075)] = 123507,
- [SMALL_STATE(3076)] = 123543,
- [SMALL_STATE(3077)] = 123563,
- [SMALL_STATE(3078)] = 123583,
- [SMALL_STATE(3079)] = 123603,
- [SMALL_STATE(3080)] = 123623,
- [SMALL_STATE(3081)] = 123643,
- [SMALL_STATE(3082)] = 123679,
- [SMALL_STATE(3083)] = 123712,
- [SMALL_STATE(3084)] = 123745,
- [SMALL_STATE(3085)] = 123766,
- [SMALL_STATE(3086)] = 123803,
- [SMALL_STATE(3087)] = 123824,
- [SMALL_STATE(3088)] = 123845,
- [SMALL_STATE(3089)] = 123884,
- [SMALL_STATE(3090)] = 123921,
- [SMALL_STATE(3091)] = 123958,
- [SMALL_STATE(3092)] = 123995,
- [SMALL_STATE(3093)] = 124028,
- [SMALL_STATE(3094)] = 124061,
- [SMALL_STATE(3095)] = 124098,
- [SMALL_STATE(3096)] = 124135,
- [SMALL_STATE(3097)] = 124158,
- [SMALL_STATE(3098)] = 124179,
- [SMALL_STATE(3099)] = 124216,
- [SMALL_STATE(3100)] = 124255,
- [SMALL_STATE(3101)] = 124294,
- [SMALL_STATE(3102)] = 124317,
- [SMALL_STATE(3103)] = 124354,
- [SMALL_STATE(3104)] = 124387,
- [SMALL_STATE(3105)] = 124416,
- [SMALL_STATE(3106)] = 124453,
- [SMALL_STATE(3107)] = 124490,
- [SMALL_STATE(3108)] = 124527,
- [SMALL_STATE(3109)] = 124566,
- [SMALL_STATE(3110)] = 124585,
- [SMALL_STATE(3111)] = 124618,
- [SMALL_STATE(3112)] = 124655,
- [SMALL_STATE(3113)] = 124678,
- [SMALL_STATE(3114)] = 124701,
- [SMALL_STATE(3115)] = 124738,
- [SMALL_STATE(3116)] = 124775,
- [SMALL_STATE(3117)] = 124812,
- [SMALL_STATE(3118)] = 124849,
- [SMALL_STATE(3119)] = 124886,
- [SMALL_STATE(3120)] = 124919,
- [SMALL_STATE(3121)] = 124956,
- [SMALL_STATE(3122)] = 124985,
- [SMALL_STATE(3123)] = 125004,
- [SMALL_STATE(3124)] = 125041,
- [SMALL_STATE(3125)] = 125070,
- [SMALL_STATE(3126)] = 125107,
- [SMALL_STATE(3127)] = 125138,
- [SMALL_STATE(3128)] = 125169,
- [SMALL_STATE(3129)] = 125206,
- [SMALL_STATE(3130)] = 125239,
- [SMALL_STATE(3131)] = 125276,
- [SMALL_STATE(3132)] = 125307,
- [SMALL_STATE(3133)] = 125340,
- [SMALL_STATE(3134)] = 125369,
- [SMALL_STATE(3135)] = 125402,
- [SMALL_STATE(3136)] = 125439,
- [SMALL_STATE(3137)] = 125468,
- [SMALL_STATE(3138)] = 125507,
- [SMALL_STATE(3139)] = 125532,
- [SMALL_STATE(3140)] = 125565,
- [SMALL_STATE(3141)] = 125596,
- [SMALL_STATE(3142)] = 125621,
- [SMALL_STATE(3143)] = 125652,
- [SMALL_STATE(3144)] = 125672,
- [SMALL_STATE(3145)] = 125690,
- [SMALL_STATE(3146)] = 125710,
- [SMALL_STATE(3147)] = 125732,
- [SMALL_STATE(3148)] = 125750,
- [SMALL_STATE(3149)] = 125768,
- [SMALL_STATE(3150)] = 125788,
- [SMALL_STATE(3151)] = 125810,
- [SMALL_STATE(3152)] = 125828,
- [SMALL_STATE(3153)] = 125852,
- [SMALL_STATE(3154)] = 125870,
- [SMALL_STATE(3155)] = 125890,
- [SMALL_STATE(3156)] = 125910,
- [SMALL_STATE(3157)] = 125932,
- [SMALL_STATE(3158)] = 125952,
- [SMALL_STATE(3159)] = 125972,
- [SMALL_STATE(3160)] = 125992,
- [SMALL_STATE(3161)] = 126012,
- [SMALL_STATE(3162)] = 126032,
- [SMALL_STATE(3163)] = 126058,
- [SMALL_STATE(3164)] = 126078,
- [SMALL_STATE(3165)] = 126098,
- [SMALL_STATE(3166)] = 126118,
- [SMALL_STATE(3167)] = 126138,
- [SMALL_STATE(3168)] = 126174,
- [SMALL_STATE(3169)] = 126198,
- [SMALL_STATE(3170)] = 126218,
- [SMALL_STATE(3171)] = 126238,
- [SMALL_STATE(3172)] = 126258,
- [SMALL_STATE(3173)] = 126282,
- [SMALL_STATE(3174)] = 126302,
- [SMALL_STATE(3175)] = 126322,
- [SMALL_STATE(3176)] = 126346,
- [SMALL_STATE(3177)] = 126368,
- [SMALL_STATE(3178)] = 126390,
- [SMALL_STATE(3179)] = 126408,
- [SMALL_STATE(3180)] = 126426,
- [SMALL_STATE(3181)] = 126446,
- [SMALL_STATE(3182)] = 126464,
- [SMALL_STATE(3183)] = 126482,
- [SMALL_STATE(3184)] = 126500,
- [SMALL_STATE(3185)] = 126526,
- [SMALL_STATE(3186)] = 126544,
- [SMALL_STATE(3187)] = 126564,
- [SMALL_STATE(3188)] = 126584,
- [SMALL_STATE(3189)] = 126604,
- [SMALL_STATE(3190)] = 126624,
- [SMALL_STATE(3191)] = 126644,
- [SMALL_STATE(3192)] = 126664,
- [SMALL_STATE(3193)] = 126684,
- [SMALL_STATE(3194)] = 126704,
- [SMALL_STATE(3195)] = 126724,
- [SMALL_STATE(3196)] = 126744,
- [SMALL_STATE(3197)] = 126764,
- [SMALL_STATE(3198)] = 126784,
- [SMALL_STATE(3199)] = 126806,
- [SMALL_STATE(3200)] = 126828,
- [SMALL_STATE(3201)] = 126846,
- [SMALL_STATE(3202)] = 126870,
- [SMALL_STATE(3203)] = 126888,
- [SMALL_STATE(3204)] = 126912,
- [SMALL_STATE(3205)] = 126936,
- [SMALL_STATE(3206)] = 126956,
- [SMALL_STATE(3207)] = 126976,
- [SMALL_STATE(3208)] = 126998,
- [SMALL_STATE(3209)] = 127018,
- [SMALL_STATE(3210)] = 127036,
- [SMALL_STATE(3211)] = 127056,
- [SMALL_STATE(3212)] = 127080,
- [SMALL_STATE(3213)] = 127100,
- [SMALL_STATE(3214)] = 127120,
- [SMALL_STATE(3215)] = 127149,
- [SMALL_STATE(3216)] = 127182,
- [SMALL_STATE(3217)] = 127215,
- [SMALL_STATE(3218)] = 127248,
- [SMALL_STATE(3219)] = 127281,
- [SMALL_STATE(3220)] = 127316,
- [SMALL_STATE(3221)] = 127351,
- [SMALL_STATE(3222)] = 127368,
- [SMALL_STATE(3223)] = 127403,
- [SMALL_STATE(3224)] = 127422,
- [SMALL_STATE(3225)] = 127457,
- [SMALL_STATE(3226)] = 127476,
- [SMALL_STATE(3227)] = 127499,
- [SMALL_STATE(3228)] = 127518,
- [SMALL_STATE(3229)] = 127541,
- [SMALL_STATE(3230)] = 127562,
- [SMALL_STATE(3231)] = 127583,
- [SMALL_STATE(3232)] = 127618,
- [SMALL_STATE(3233)] = 127649,
- [SMALL_STATE(3234)] = 127670,
- [SMALL_STATE(3235)] = 127705,
- [SMALL_STATE(3236)] = 127740,
- [SMALL_STATE(3237)] = 127763,
- [SMALL_STATE(3238)] = 127796,
- [SMALL_STATE(3239)] = 127813,
- [SMALL_STATE(3240)] = 127830,
- [SMALL_STATE(3241)] = 127865,
- [SMALL_STATE(3242)] = 127882,
- [SMALL_STATE(3243)] = 127915,
- [SMALL_STATE(3244)] = 127934,
- [SMALL_STATE(3245)] = 127969,
- [SMALL_STATE(3246)] = 128000,
- [SMALL_STATE(3247)] = 128035,
- [SMALL_STATE(3248)] = 128070,
- [SMALL_STATE(3249)] = 128099,
- [SMALL_STATE(3250)] = 128124,
- [SMALL_STATE(3251)] = 128150,
- [SMALL_STATE(3252)] = 128166,
- [SMALL_STATE(3253)] = 128196,
- [SMALL_STATE(3254)] = 128226,
- [SMALL_STATE(3255)] = 128258,
- [SMALL_STATE(3256)] = 128286,
- [SMALL_STATE(3257)] = 128302,
- [SMALL_STATE(3258)] = 128318,
- [SMALL_STATE(3259)] = 128346,
- [SMALL_STATE(3260)] = 128378,
- [SMALL_STATE(3261)] = 128400,
- [SMALL_STATE(3262)] = 128432,
- [SMALL_STATE(3263)] = 128460,
- [SMALL_STATE(3264)] = 128492,
- [SMALL_STATE(3265)] = 128524,
- [SMALL_STATE(3266)] = 128540,
- [SMALL_STATE(3267)] = 128572,
- [SMALL_STATE(3268)] = 128598,
- [SMALL_STATE(3269)] = 128614,
- [SMALL_STATE(3270)] = 128630,
- [SMALL_STATE(3271)] = 128660,
- [SMALL_STATE(3272)] = 128676,
- [SMALL_STATE(3273)] = 128692,
- [SMALL_STATE(3274)] = 128722,
- [SMALL_STATE(3275)] = 128750,
- [SMALL_STATE(3276)] = 128782,
- [SMALL_STATE(3277)] = 128798,
- [SMALL_STATE(3278)] = 128824,
- [SMALL_STATE(3279)] = 128840,
- [SMALL_STATE(3280)] = 128870,
- [SMALL_STATE(3281)] = 128886,
- [SMALL_STATE(3282)] = 128904,
- [SMALL_STATE(3283)] = 128920,
- [SMALL_STATE(3284)] = 128946,
- [SMALL_STATE(3285)] = 128968,
- [SMALL_STATE(3286)] = 128984,
- [SMALL_STATE(3287)] = 129014,
- [SMALL_STATE(3288)] = 129044,
- [SMALL_STATE(3289)] = 129072,
- [SMALL_STATE(3290)] = 129102,
- [SMALL_STATE(3291)] = 129134,
- [SMALL_STATE(3292)] = 129162,
- [SMALL_STATE(3293)] = 129178,
- [SMALL_STATE(3294)] = 129206,
- [SMALL_STATE(3295)] = 129238,
- [SMALL_STATE(3296)] = 129254,
- [SMALL_STATE(3297)] = 129282,
- [SMALL_STATE(3298)] = 129310,
- [SMALL_STATE(3299)] = 129342,
- [SMALL_STATE(3300)] = 129358,
- [SMALL_STATE(3301)] = 129374,
- [SMALL_STATE(3302)] = 129390,
- [SMALL_STATE(3303)] = 129418,
- [SMALL_STATE(3304)] = 129450,
- [SMALL_STATE(3305)] = 129480,
- [SMALL_STATE(3306)] = 129508,
- [SMALL_STATE(3307)] = 129538,
- [SMALL_STATE(3308)] = 129554,
- [SMALL_STATE(3309)] = 129580,
- [SMALL_STATE(3310)] = 129606,
- [SMALL_STATE(3311)] = 129636,
- [SMALL_STATE(3312)] = 129652,
- [SMALL_STATE(3313)] = 129682,
- [SMALL_STATE(3314)] = 129698,
- [SMALL_STATE(3315)] = 129726,
- [SMALL_STATE(3316)] = 129752,
- [SMALL_STATE(3317)] = 129780,
- [SMALL_STATE(3318)] = 129802,
- [SMALL_STATE(3319)] = 129834,
- [SMALL_STATE(3320)] = 129860,
- [SMALL_STATE(3321)] = 129880,
- [SMALL_STATE(3322)] = 129908,
- [SMALL_STATE(3323)] = 129940,
- [SMALL_STATE(3324)] = 129968,
- [SMALL_STATE(3325)] = 129996,
- [SMALL_STATE(3326)] = 130012,
- [SMALL_STATE(3327)] = 130040,
- [SMALL_STATE(3328)] = 130056,
- [SMALL_STATE(3329)] = 130088,
- [SMALL_STATE(3330)] = 130104,
- [SMALL_STATE(3331)] = 130122,
- [SMALL_STATE(3332)] = 130138,
- [SMALL_STATE(3333)] = 130160,
- [SMALL_STATE(3334)] = 130184,
- [SMALL_STATE(3335)] = 130214,
- [SMALL_STATE(3336)] = 130230,
- [SMALL_STATE(3337)] = 130246,
- [SMALL_STATE(3338)] = 130268,
- [SMALL_STATE(3339)] = 130288,
- [SMALL_STATE(3340)] = 130316,
- [SMALL_STATE(3341)] = 130344,
- [SMALL_STATE(3342)] = 130370,
- [SMALL_STATE(3343)] = 130398,
- [SMALL_STATE(3344)] = 130414,
- [SMALL_STATE(3345)] = 130432,
- [SMALL_STATE(3346)] = 130460,
- [SMALL_STATE(3347)] = 130478,
- [SMALL_STATE(3348)] = 130508,
- [SMALL_STATE(3349)] = 130540,
- [SMALL_STATE(3350)] = 130570,
- [SMALL_STATE(3351)] = 130602,
- [SMALL_STATE(3352)] = 130618,
- [SMALL_STATE(3353)] = 130648,
- [SMALL_STATE(3354)] = 130678,
- [SMALL_STATE(3355)] = 130704,
- [SMALL_STATE(3356)] = 130736,
- [SMALL_STATE(3357)] = 130766,
- [SMALL_STATE(3358)] = 130796,
- [SMALL_STATE(3359)] = 130824,
- [SMALL_STATE(3360)] = 130840,
- [SMALL_STATE(3361)] = 130870,
- [SMALL_STATE(3362)] = 130898,
- [SMALL_STATE(3363)] = 130928,
- [SMALL_STATE(3364)] = 130960,
- [SMALL_STATE(3365)] = 130976,
- [SMALL_STATE(3366)] = 131004,
- [SMALL_STATE(3367)] = 131030,
- [SMALL_STATE(3368)] = 131062,
- [SMALL_STATE(3369)] = 131092,
- [SMALL_STATE(3370)] = 131122,
- [SMALL_STATE(3371)] = 131150,
- [SMALL_STATE(3372)] = 131178,
- [SMALL_STATE(3373)] = 131206,
- [SMALL_STATE(3374)] = 131236,
- [SMALL_STATE(3375)] = 131264,
- [SMALL_STATE(3376)] = 131292,
- [SMALL_STATE(3377)] = 131322,
- [SMALL_STATE(3378)] = 131352,
- [SMALL_STATE(3379)] = 131382,
- [SMALL_STATE(3380)] = 131412,
- [SMALL_STATE(3381)] = 131442,
- [SMALL_STATE(3382)] = 131470,
- [SMALL_STATE(3383)] = 131498,
- [SMALL_STATE(3384)] = 131526,
- [SMALL_STATE(3385)] = 131558,
- [SMALL_STATE(3386)] = 131574,
- [SMALL_STATE(3387)] = 131604,
- [SMALL_STATE(3388)] = 131632,
- [SMALL_STATE(3389)] = 131660,
- [SMALL_STATE(3390)] = 131688,
- [SMALL_STATE(3391)] = 131716,
- [SMALL_STATE(3392)] = 131744,
- [SMALL_STATE(3393)] = 131772,
- [SMALL_STATE(3394)] = 131800,
- [SMALL_STATE(3395)] = 131816,
- [SMALL_STATE(3396)] = 131848,
- [SMALL_STATE(3397)] = 131876,
- [SMALL_STATE(3398)] = 131902,
- [SMALL_STATE(3399)] = 131934,
- [SMALL_STATE(3400)] = 131950,
- [SMALL_STATE(3401)] = 131982,
- [SMALL_STATE(3402)] = 132014,
- [SMALL_STATE(3403)] = 132042,
- [SMALL_STATE(3404)] = 132074,
- [SMALL_STATE(3405)] = 132090,
- [SMALL_STATE(3406)] = 132106,
- [SMALL_STATE(3407)] = 132136,
- [SMALL_STATE(3408)] = 132164,
- [SMALL_STATE(3409)] = 132194,
- [SMALL_STATE(3410)] = 132224,
- [SMALL_STATE(3411)] = 132256,
- [SMALL_STATE(3412)] = 132288,
- [SMALL_STATE(3413)] = 132314,
- [SMALL_STATE(3414)] = 132342,
- [SMALL_STATE(3415)] = 132374,
- [SMALL_STATE(3416)] = 132394,
- [SMALL_STATE(3417)] = 132410,
- [SMALL_STATE(3418)] = 132426,
- [SMALL_STATE(3419)] = 132456,
- [SMALL_STATE(3420)] = 132472,
- [SMALL_STATE(3421)] = 132500,
- [SMALL_STATE(3422)] = 132522,
- [SMALL_STATE(3423)] = 132554,
- [SMALL_STATE(3424)] = 132570,
- [SMALL_STATE(3425)] = 132600,
- [SMALL_STATE(3426)] = 132622,
- [SMALL_STATE(3427)] = 132644,
- [SMALL_STATE(3428)] = 132660,
- [SMALL_STATE(3429)] = 132678,
- [SMALL_STATE(3430)] = 132694,
- [SMALL_STATE(3431)] = 132724,
- [SMALL_STATE(3432)] = 132740,
- [SMALL_STATE(3433)] = 132770,
- [SMALL_STATE(3434)] = 132802,
- [SMALL_STATE(3435)] = 132818,
- [SMALL_STATE(3436)] = 132848,
- [SMALL_STATE(3437)] = 132880,
- [SMALL_STATE(3438)] = 132906,
- [SMALL_STATE(3439)] = 132922,
- [SMALL_STATE(3440)] = 132954,
- [SMALL_STATE(3441)] = 132970,
- [SMALL_STATE(3442)] = 132996,
- [SMALL_STATE(3443)] = 133022,
- [SMALL_STATE(3444)] = 133050,
- [SMALL_STATE(3445)] = 133076,
- [SMALL_STATE(3446)] = 133108,
- [SMALL_STATE(3447)] = 133136,
- [SMALL_STATE(3448)] = 133164,
- [SMALL_STATE(3449)] = 133194,
- [SMALL_STATE(3450)] = 133223,
- [SMALL_STATE(3451)] = 133248,
- [SMALL_STATE(3452)] = 133273,
- [SMALL_STATE(3453)] = 133302,
- [SMALL_STATE(3454)] = 133327,
- [SMALL_STATE(3455)] = 133348,
- [SMALL_STATE(3456)] = 133373,
- [SMALL_STATE(3457)] = 133394,
- [SMALL_STATE(3458)] = 133423,
- [SMALL_STATE(3459)] = 133448,
- [SMALL_STATE(3460)] = 133477,
- [SMALL_STATE(3461)] = 133502,
- [SMALL_STATE(3462)] = 133531,
- [SMALL_STATE(3463)] = 133554,
- [SMALL_STATE(3464)] = 133583,
- [SMALL_STATE(3465)] = 133600,
- [SMALL_STATE(3466)] = 133617,
- [SMALL_STATE(3467)] = 133646,
- [SMALL_STATE(3468)] = 133671,
- [SMALL_STATE(3469)] = 133696,
- [SMALL_STATE(3470)] = 133717,
- [SMALL_STATE(3471)] = 133734,
- [SMALL_STATE(3472)] = 133751,
- [SMALL_STATE(3473)] = 133768,
- [SMALL_STATE(3474)] = 133791,
- [SMALL_STATE(3475)] = 133814,
- [SMALL_STATE(3476)] = 133835,
- [SMALL_STATE(3477)] = 133850,
- [SMALL_STATE(3478)] = 133875,
- [SMALL_STATE(3479)] = 133900,
- [SMALL_STATE(3480)] = 133915,
- [SMALL_STATE(3481)] = 133930,
- [SMALL_STATE(3482)] = 133953,
- [SMALL_STATE(3483)] = 133974,
- [SMALL_STATE(3484)] = 133995,
- [SMALL_STATE(3485)] = 134018,
- [SMALL_STATE(3486)] = 134041,
- [SMALL_STATE(3487)] = 134066,
- [SMALL_STATE(3488)] = 134089,
- [SMALL_STATE(3489)] = 134114,
- [SMALL_STATE(3490)] = 134137,
- [SMALL_STATE(3491)] = 134160,
- [SMALL_STATE(3492)] = 134189,
- [SMALL_STATE(3493)] = 134211,
- [SMALL_STATE(3494)] = 134235,
- [SMALL_STATE(3495)] = 134257,
- [SMALL_STATE(3496)] = 134275,
- [SMALL_STATE(3497)] = 134297,
- [SMALL_STATE(3498)] = 134311,
- [SMALL_STATE(3499)] = 134333,
- [SMALL_STATE(3500)] = 134351,
- [SMALL_STATE(3501)] = 134369,
- [SMALL_STATE(3502)] = 134391,
- [SMALL_STATE(3503)] = 134413,
- [SMALL_STATE(3504)] = 134435,
- [SMALL_STATE(3505)] = 134453,
- [SMALL_STATE(3506)] = 134479,
- [SMALL_STATE(3507)] = 134501,
- [SMALL_STATE(3508)] = 134527,
- [SMALL_STATE(3509)] = 134549,
- [SMALL_STATE(3510)] = 134571,
- [SMALL_STATE(3511)] = 134593,
- [SMALL_STATE(3512)] = 134615,
- [SMALL_STATE(3513)] = 134641,
- [SMALL_STATE(3514)] = 134663,
- [SMALL_STATE(3515)] = 134677,
- [SMALL_STATE(3516)] = 134703,
- [SMALL_STATE(3517)] = 134725,
- [SMALL_STATE(3518)] = 134747,
- [SMALL_STATE(3519)] = 134769,
- [SMALL_STATE(3520)] = 134791,
- [SMALL_STATE(3521)] = 134809,
- [SMALL_STATE(3522)] = 134831,
- [SMALL_STATE(3523)] = 134845,
- [SMALL_STATE(3524)] = 134871,
- [SMALL_STATE(3525)] = 134889,
- [SMALL_STATE(3526)] = 134915,
- [SMALL_STATE(3527)] = 134941,
- [SMALL_STATE(3528)] = 134955,
- [SMALL_STATE(3529)] = 134981,
- [SMALL_STATE(3530)] = 135007,
- [SMALL_STATE(3531)] = 135033,
- [SMALL_STATE(3532)] = 135059,
- [SMALL_STATE(3533)] = 135085,
- [SMALL_STATE(3534)] = 135107,
- [SMALL_STATE(3535)] = 135129,
- [SMALL_STATE(3536)] = 135151,
- [SMALL_STATE(3537)] = 135169,
- [SMALL_STATE(3538)] = 135187,
- [SMALL_STATE(3539)] = 135209,
- [SMALL_STATE(3540)] = 135231,
- [SMALL_STATE(3541)] = 135253,
- [SMALL_STATE(3542)] = 135271,
- [SMALL_STATE(3543)] = 135293,
- [SMALL_STATE(3544)] = 135311,
- [SMALL_STATE(3545)] = 135333,
- [SMALL_STATE(3546)] = 135359,
- [SMALL_STATE(3547)] = 135381,
- [SMALL_STATE(3548)] = 135397,
- [SMALL_STATE(3549)] = 135419,
- [SMALL_STATE(3550)] = 135445,
- [SMALL_STATE(3551)] = 135467,
- [SMALL_STATE(3552)] = 135489,
- [SMALL_STATE(3553)] = 135503,
- [SMALL_STATE(3554)] = 135525,
- [SMALL_STATE(3555)] = 135547,
- [SMALL_STATE(3556)] = 135569,
- [SMALL_STATE(3557)] = 135591,
- [SMALL_STATE(3558)] = 135613,
- [SMALL_STATE(3559)] = 135635,
- [SMALL_STATE(3560)] = 135653,
- [SMALL_STATE(3561)] = 135667,
- [SMALL_STATE(3562)] = 135689,
- [SMALL_STATE(3563)] = 135711,
- [SMALL_STATE(3564)] = 135725,
- [SMALL_STATE(3565)] = 135747,
- [SMALL_STATE(3566)] = 135769,
- [SMALL_STATE(3567)] = 135791,
- [SMALL_STATE(3568)] = 135805,
- [SMALL_STATE(3569)] = 135831,
- [SMALL_STATE(3570)] = 135853,
- [SMALL_STATE(3571)] = 135879,
- [SMALL_STATE(3572)] = 135901,
- [SMALL_STATE(3573)] = 135919,
- [SMALL_STATE(3574)] = 135933,
- [SMALL_STATE(3575)] = 135951,
- [SMALL_STATE(3576)] = 135969,
- [SMALL_STATE(3577)] = 135991,
- [SMALL_STATE(3578)] = 136013,
- [SMALL_STATE(3579)] = 136035,
- [SMALL_STATE(3580)] = 136057,
- [SMALL_STATE(3581)] = 136079,
- [SMALL_STATE(3582)] = 136101,
- [SMALL_STATE(3583)] = 136127,
- [SMALL_STATE(3584)] = 136149,
- [SMALL_STATE(3585)] = 136171,
- [SMALL_STATE(3586)] = 136187,
- [SMALL_STATE(3587)] = 136209,
- [SMALL_STATE(3588)] = 136231,
- [SMALL_STATE(3589)] = 136247,
- [SMALL_STATE(3590)] = 136273,
- [SMALL_STATE(3591)] = 136289,
- [SMALL_STATE(3592)] = 136315,
- [SMALL_STATE(3593)] = 136337,
- [SMALL_STATE(3594)] = 136355,
- [SMALL_STATE(3595)] = 136377,
- [SMALL_STATE(3596)] = 136399,
- [SMALL_STATE(3597)] = 136417,
- [SMALL_STATE(3598)] = 136439,
- [SMALL_STATE(3599)] = 136453,
- [SMALL_STATE(3600)] = 136475,
- [SMALL_STATE(3601)] = 136501,
- [SMALL_STATE(3602)] = 136519,
- [SMALL_STATE(3603)] = 136541,
- [SMALL_STATE(3604)] = 136563,
- [SMALL_STATE(3605)] = 136585,
- [SMALL_STATE(3606)] = 136607,
- [SMALL_STATE(3607)] = 136623,
- [SMALL_STATE(3608)] = 136641,
- [SMALL_STATE(3609)] = 136663,
- [SMALL_STATE(3610)] = 136679,
- [SMALL_STATE(3611)] = 136695,
- [SMALL_STATE(3612)] = 136721,
- [SMALL_STATE(3613)] = 136743,
- [SMALL_STATE(3614)] = 136765,
- [SMALL_STATE(3615)] = 136787,
- [SMALL_STATE(3616)] = 136809,
- [SMALL_STATE(3617)] = 136831,
- [SMALL_STATE(3618)] = 136857,
- [SMALL_STATE(3619)] = 136873,
- [SMALL_STATE(3620)] = 136893,
- [SMALL_STATE(3621)] = 136909,
- [SMALL_STATE(3622)] = 136935,
- [SMALL_STATE(3623)] = 136961,
- [SMALL_STATE(3624)] = 136981,
- [SMALL_STATE(3625)] = 137007,
- [SMALL_STATE(3626)] = 137023,
- [SMALL_STATE(3627)] = 137045,
- [SMALL_STATE(3628)] = 137063,
- [SMALL_STATE(3629)] = 137085,
- [SMALL_STATE(3630)] = 137105,
- [SMALL_STATE(3631)] = 137125,
- [SMALL_STATE(3632)] = 137143,
- [SMALL_STATE(3633)] = 137165,
- [SMALL_STATE(3634)] = 137187,
- [SMALL_STATE(3635)] = 137209,
- [SMALL_STATE(3636)] = 137223,
- [SMALL_STATE(3637)] = 137245,
- [SMALL_STATE(3638)] = 137267,
- [SMALL_STATE(3639)] = 137281,
- [SMALL_STATE(3640)] = 137299,
- [SMALL_STATE(3641)] = 137325,
- [SMALL_STATE(3642)] = 137343,
- [SMALL_STATE(3643)] = 137361,
- [SMALL_STATE(3644)] = 137383,
- [SMALL_STATE(3645)] = 137405,
- [SMALL_STATE(3646)] = 137427,
- [SMALL_STATE(3647)] = 137447,
- [SMALL_STATE(3648)] = 137469,
- [SMALL_STATE(3649)] = 137485,
- [SMALL_STATE(3650)] = 137507,
- [SMALL_STATE(3651)] = 137533,
- [SMALL_STATE(3652)] = 137553,
- [SMALL_STATE(3653)] = 137575,
- [SMALL_STATE(3654)] = 137601,
- [SMALL_STATE(3655)] = 137627,
- [SMALL_STATE(3656)] = 137649,
- [SMALL_STATE(3657)] = 137663,
- [SMALL_STATE(3658)] = 137685,
- [SMALL_STATE(3659)] = 137707,
- [SMALL_STATE(3660)] = 137727,
- [SMALL_STATE(3661)] = 137753,
- [SMALL_STATE(3662)] = 137775,
- [SMALL_STATE(3663)] = 137801,
- [SMALL_STATE(3664)] = 137827,
- [SMALL_STATE(3665)] = 137849,
- [SMALL_STATE(3666)] = 137875,
- [SMALL_STATE(3667)] = 137895,
- [SMALL_STATE(3668)] = 137917,
- [SMALL_STATE(3669)] = 137939,
- [SMALL_STATE(3670)] = 137953,
- [SMALL_STATE(3671)] = 137975,
- [SMALL_STATE(3672)] = 138001,
- [SMALL_STATE(3673)] = 138023,
- [SMALL_STATE(3674)] = 138045,
- [SMALL_STATE(3675)] = 138059,
- [SMALL_STATE(3676)] = 138081,
- [SMALL_STATE(3677)] = 138103,
- [SMALL_STATE(3678)] = 138125,
- [SMALL_STATE(3679)] = 138143,
- [SMALL_STATE(3680)] = 138161,
- [SMALL_STATE(3681)] = 138183,
- [SMALL_STATE(3682)] = 138201,
- [SMALL_STATE(3683)] = 138219,
- [SMALL_STATE(3684)] = 138241,
- [SMALL_STATE(3685)] = 138263,
- [SMALL_STATE(3686)] = 138285,
- [SMALL_STATE(3687)] = 138307,
- [SMALL_STATE(3688)] = 138329,
- [SMALL_STATE(3689)] = 138351,
- [SMALL_STATE(3690)] = 138373,
- [SMALL_STATE(3691)] = 138399,
- [SMALL_STATE(3692)] = 138421,
- [SMALL_STATE(3693)] = 138443,
- [SMALL_STATE(3694)] = 138465,
- [SMALL_STATE(3695)] = 138491,
- [SMALL_STATE(3696)] = 138507,
- [SMALL_STATE(3697)] = 138527,
- [SMALL_STATE(3698)] = 138545,
- [SMALL_STATE(3699)] = 138571,
- [SMALL_STATE(3700)] = 138597,
- [SMALL_STATE(3701)] = 138611,
- [SMALL_STATE(3702)] = 138633,
- [SMALL_STATE(3703)] = 138655,
- [SMALL_STATE(3704)] = 138681,
- [SMALL_STATE(3705)] = 138705,
- [SMALL_STATE(3706)] = 138727,
- [SMALL_STATE(3707)] = 138749,
- [SMALL_STATE(3708)] = 138771,
- [SMALL_STATE(3709)] = 138793,
- [SMALL_STATE(3710)] = 138819,
- [SMALL_STATE(3711)] = 138845,
- [SMALL_STATE(3712)] = 138867,
- [SMALL_STATE(3713)] = 138889,
- [SMALL_STATE(3714)] = 138911,
- [SMALL_STATE(3715)] = 138933,
- [SMALL_STATE(3716)] = 138955,
- [SMALL_STATE(3717)] = 138977,
- [SMALL_STATE(3718)] = 138999,
- [SMALL_STATE(3719)] = 139021,
- [SMALL_STATE(3720)] = 139043,
- [SMALL_STATE(3721)] = 139069,
- [SMALL_STATE(3722)] = 139091,
- [SMALL_STATE(3723)] = 139113,
- [SMALL_STATE(3724)] = 139132,
- [SMALL_STATE(3725)] = 139147,
- [SMALL_STATE(3726)] = 139170,
- [SMALL_STATE(3727)] = 139185,
- [SMALL_STATE(3728)] = 139200,
- [SMALL_STATE(3729)] = 139223,
- [SMALL_STATE(3730)] = 139236,
- [SMALL_STATE(3731)] = 139249,
- [SMALL_STATE(3732)] = 139272,
- [SMALL_STATE(3733)] = 139285,
- [SMALL_STATE(3734)] = 139308,
- [SMALL_STATE(3735)] = 139331,
- [SMALL_STATE(3736)] = 139348,
- [SMALL_STATE(3737)] = 139365,
- [SMALL_STATE(3738)] = 139388,
- [SMALL_STATE(3739)] = 139407,
- [SMALL_STATE(3740)] = 139420,
- [SMALL_STATE(3741)] = 139435,
- [SMALL_STATE(3742)] = 139450,
- [SMALL_STATE(3743)] = 139467,
- [SMALL_STATE(3744)] = 139484,
- [SMALL_STATE(3745)] = 139499,
- [SMALL_STATE(3746)] = 139516,
- [SMALL_STATE(3747)] = 139531,
- [SMALL_STATE(3748)] = 139554,
- [SMALL_STATE(3749)] = 139571,
- [SMALL_STATE(3750)] = 139594,
- [SMALL_STATE(3751)] = 139613,
- [SMALL_STATE(3752)] = 139628,
- [SMALL_STATE(3753)] = 139645,
- [SMALL_STATE(3754)] = 139662,
- [SMALL_STATE(3755)] = 139677,
- [SMALL_STATE(3756)] = 139692,
- [SMALL_STATE(3757)] = 139715,
- [SMALL_STATE(3758)] = 139738,
- [SMALL_STATE(3759)] = 139761,
- [SMALL_STATE(3760)] = 139778,
- [SMALL_STATE(3761)] = 139791,
- [SMALL_STATE(3762)] = 139806,
- [SMALL_STATE(3763)] = 139823,
- [SMALL_STATE(3764)] = 139838,
- [SMALL_STATE(3765)] = 139853,
- [SMALL_STATE(3766)] = 139868,
- [SMALL_STATE(3767)] = 139885,
- [SMALL_STATE(3768)] = 139908,
- [SMALL_STATE(3769)] = 139923,
- [SMALL_STATE(3770)] = 139940,
- [SMALL_STATE(3771)] = 139963,
- [SMALL_STATE(3772)] = 139980,
- [SMALL_STATE(3773)] = 140003,
- [SMALL_STATE(3774)] = 140026,
- [SMALL_STATE(3775)] = 140045,
- [SMALL_STATE(3776)] = 140068,
- [SMALL_STATE(3777)] = 140085,
- [SMALL_STATE(3778)] = 140102,
- [SMALL_STATE(3779)] = 140117,
- [SMALL_STATE(3780)] = 140136,
- [SMALL_STATE(3781)] = 140151,
- [SMALL_STATE(3782)] = 140170,
- [SMALL_STATE(3783)] = 140185,
- [SMALL_STATE(3784)] = 140204,
- [SMALL_STATE(3785)] = 140223,
- [SMALL_STATE(3786)] = 140238,
- [SMALL_STATE(3787)] = 140255,
- [SMALL_STATE(3788)] = 140272,
- [SMALL_STATE(3789)] = 140295,
- [SMALL_STATE(3790)] = 140308,
- [SMALL_STATE(3791)] = 140325,
- [SMALL_STATE(3792)] = 140342,
- [SMALL_STATE(3793)] = 140357,
- [SMALL_STATE(3794)] = 140372,
- [SMALL_STATE(3795)] = 140387,
- [SMALL_STATE(3796)] = 140404,
- [SMALL_STATE(3797)] = 140427,
- [SMALL_STATE(3798)] = 140450,
- [SMALL_STATE(3799)] = 140473,
- [SMALL_STATE(3800)] = 140490,
- [SMALL_STATE(3801)] = 140513,
- [SMALL_STATE(3802)] = 140536,
- [SMALL_STATE(3803)] = 140553,
- [SMALL_STATE(3804)] = 140570,
- [SMALL_STATE(3805)] = 140587,
- [SMALL_STATE(3806)] = 140604,
- [SMALL_STATE(3807)] = 140627,
- [SMALL_STATE(3808)] = 140644,
- [SMALL_STATE(3809)] = 140667,
- [SMALL_STATE(3810)] = 140684,
- [SMALL_STATE(3811)] = 140701,
- [SMALL_STATE(3812)] = 140716,
- [SMALL_STATE(3813)] = 140735,
- [SMALL_STATE(3814)] = 140750,
- [SMALL_STATE(3815)] = 140769,
- [SMALL_STATE(3816)] = 140784,
- [SMALL_STATE(3817)] = 140799,
- [SMALL_STATE(3818)] = 140822,
- [SMALL_STATE(3819)] = 140845,
- [SMALL_STATE(3820)] = 140864,
- [SMALL_STATE(3821)] = 140883,
- [SMALL_STATE(3822)] = 140900,
- [SMALL_STATE(3823)] = 140923,
- [SMALL_STATE(3824)] = 140946,
- [SMALL_STATE(3825)] = 140969,
- [SMALL_STATE(3826)] = 140986,
- [SMALL_STATE(3827)] = 141003,
- [SMALL_STATE(3828)] = 141024,
- [SMALL_STATE(3829)] = 141043,
- [SMALL_STATE(3830)] = 141062,
- [SMALL_STATE(3831)] = 141079,
- [SMALL_STATE(3832)] = 141096,
- [SMALL_STATE(3833)] = 141119,
- [SMALL_STATE(3834)] = 141142,
- [SMALL_STATE(3835)] = 141165,
- [SMALL_STATE(3836)] = 141178,
- [SMALL_STATE(3837)] = 141201,
- [SMALL_STATE(3838)] = 141220,
- [SMALL_STATE(3839)] = 141235,
- [SMALL_STATE(3840)] = 141258,
- [SMALL_STATE(3841)] = 141281,
- [SMALL_STATE(3842)] = 141304,
- [SMALL_STATE(3843)] = 141327,
- [SMALL_STATE(3844)] = 141350,
- [SMALL_STATE(3845)] = 141373,
- [SMALL_STATE(3846)] = 141388,
- [SMALL_STATE(3847)] = 141401,
- [SMALL_STATE(3848)] = 141418,
- [SMALL_STATE(3849)] = 141441,
- [SMALL_STATE(3850)] = 141458,
- [SMALL_STATE(3851)] = 141481,
- [SMALL_STATE(3852)] = 141496,
- [SMALL_STATE(3853)] = 141519,
- [SMALL_STATE(3854)] = 141542,
- [SMALL_STATE(3855)] = 141565,
- [SMALL_STATE(3856)] = 141580,
- [SMALL_STATE(3857)] = 141593,
- [SMALL_STATE(3858)] = 141606,
- [SMALL_STATE(3859)] = 141625,
- [SMALL_STATE(3860)] = 141646,
- [SMALL_STATE(3861)] = 141669,
- [SMALL_STATE(3862)] = 141682,
- [SMALL_STATE(3863)] = 141703,
- [SMALL_STATE(3864)] = 141726,
- [SMALL_STATE(3865)] = 141743,
- [SMALL_STATE(3866)] = 141762,
- [SMALL_STATE(3867)] = 141781,
- [SMALL_STATE(3868)] = 141798,
- [SMALL_STATE(3869)] = 141817,
- [SMALL_STATE(3870)] = 141832,
- [SMALL_STATE(3871)] = 141849,
- [SMALL_STATE(3872)] = 141866,
- [SMALL_STATE(3873)] = 141883,
- [SMALL_STATE(3874)] = 141900,
- [SMALL_STATE(3875)] = 141917,
- [SMALL_STATE(3876)] = 141934,
- [SMALL_STATE(3877)] = 141957,
- [SMALL_STATE(3878)] = 141972,
- [SMALL_STATE(3879)] = 141995,
- [SMALL_STATE(3880)] = 142018,
- [SMALL_STATE(3881)] = 142041,
- [SMALL_STATE(3882)] = 142064,
- [SMALL_STATE(3883)] = 142081,
- [SMALL_STATE(3884)] = 142096,
- [SMALL_STATE(3885)] = 142119,
- [SMALL_STATE(3886)] = 142136,
- [SMALL_STATE(3887)] = 142153,
- [SMALL_STATE(3888)] = 142168,
- [SMALL_STATE(3889)] = 142181,
- [SMALL_STATE(3890)] = 142204,
- [SMALL_STATE(3891)] = 142227,
- [SMALL_STATE(3892)] = 142250,
- [SMALL_STATE(3893)] = 142273,
- [SMALL_STATE(3894)] = 142290,
- [SMALL_STATE(3895)] = 142305,
- [SMALL_STATE(3896)] = 142328,
- [SMALL_STATE(3897)] = 142341,
- [SMALL_STATE(3898)] = 142364,
- [SMALL_STATE(3899)] = 142387,
- [SMALL_STATE(3900)] = 142402,
- [SMALL_STATE(3901)] = 142415,
- [SMALL_STATE(3902)] = 142432,
- [SMALL_STATE(3903)] = 142451,
- [SMALL_STATE(3904)] = 142466,
- [SMALL_STATE(3905)] = 142489,
- [SMALL_STATE(3906)] = 142512,
- [SMALL_STATE(3907)] = 142535,
- [SMALL_STATE(3908)] = 142552,
- [SMALL_STATE(3909)] = 142575,
- [SMALL_STATE(3910)] = 142592,
- [SMALL_STATE(3911)] = 142615,
- [SMALL_STATE(3912)] = 142632,
- [SMALL_STATE(3913)] = 142649,
- [SMALL_STATE(3914)] = 142668,
- [SMALL_STATE(3915)] = 142691,
- [SMALL_STATE(3916)] = 142707,
- [SMALL_STATE(3917)] = 142723,
- [SMALL_STATE(3918)] = 142739,
- [SMALL_STATE(3919)] = 142753,
- [SMALL_STATE(3920)] = 142769,
- [SMALL_STATE(3921)] = 142781,
- [SMALL_STATE(3922)] = 142793,
- [SMALL_STATE(3923)] = 142805,
- [SMALL_STATE(3924)] = 142821,
- [SMALL_STATE(3925)] = 142837,
- [SMALL_STATE(3926)] = 142853,
- [SMALL_STATE(3927)] = 142869,
- [SMALL_STATE(3928)] = 142885,
- [SMALL_STATE(3929)] = 142901,
- [SMALL_STATE(3930)] = 142917,
- [SMALL_STATE(3931)] = 142933,
- [SMALL_STATE(3932)] = 142947,
- [SMALL_STATE(3933)] = 142963,
- [SMALL_STATE(3934)] = 142975,
- [SMALL_STATE(3935)] = 142991,
- [SMALL_STATE(3936)] = 143003,
- [SMALL_STATE(3937)] = 143015,
- [SMALL_STATE(3938)] = 143027,
- [SMALL_STATE(3939)] = 143043,
- [SMALL_STATE(3940)] = 143055,
- [SMALL_STATE(3941)] = 143067,
- [SMALL_STATE(3942)] = 143079,
- [SMALL_STATE(3943)] = 143091,
- [SMALL_STATE(3944)] = 143103,
- [SMALL_STATE(3945)] = 143115,
- [SMALL_STATE(3946)] = 143127,
- [SMALL_STATE(3947)] = 143139,
- [SMALL_STATE(3948)] = 143151,
- [SMALL_STATE(3949)] = 143167,
- [SMALL_STATE(3950)] = 143183,
- [SMALL_STATE(3951)] = 143203,
- [SMALL_STATE(3952)] = 143219,
- [SMALL_STATE(3953)] = 143235,
- [SMALL_STATE(3954)] = 143247,
- [SMALL_STATE(3955)] = 143259,
- [SMALL_STATE(3956)] = 143271,
- [SMALL_STATE(3957)] = 143283,
- [SMALL_STATE(3958)] = 143301,
- [SMALL_STATE(3959)] = 143317,
- [SMALL_STATE(3960)] = 143333,
- [SMALL_STATE(3961)] = 143349,
- [SMALL_STATE(3962)] = 143367,
- [SMALL_STATE(3963)] = 143383,
- [SMALL_STATE(3964)] = 143399,
- [SMALL_STATE(3965)] = 143415,
- [SMALL_STATE(3966)] = 143431,
- [SMALL_STATE(3967)] = 143447,
- [SMALL_STATE(3968)] = 143463,
- [SMALL_STATE(3969)] = 143475,
- [SMALL_STATE(3970)] = 143491,
- [SMALL_STATE(3971)] = 143507,
- [SMALL_STATE(3972)] = 143523,
- [SMALL_STATE(3973)] = 143539,
- [SMALL_STATE(3974)] = 143555,
- [SMALL_STATE(3975)] = 143571,
- [SMALL_STATE(3976)] = 143583,
- [SMALL_STATE(3977)] = 143603,
- [SMALL_STATE(3978)] = 143615,
- [SMALL_STATE(3979)] = 143627,
- [SMALL_STATE(3980)] = 143639,
- [SMALL_STATE(3981)] = 143659,
- [SMALL_STATE(3982)] = 143675,
- [SMALL_STATE(3983)] = 143695,
- [SMALL_STATE(3984)] = 143715,
- [SMALL_STATE(3985)] = 143731,
- [SMALL_STATE(3986)] = 143747,
- [SMALL_STATE(3987)] = 143759,
- [SMALL_STATE(3988)] = 143771,
- [SMALL_STATE(3989)] = 143783,
- [SMALL_STATE(3990)] = 143795,
- [SMALL_STATE(3991)] = 143813,
- [SMALL_STATE(3992)] = 143833,
- [SMALL_STATE(3993)] = 143849,
- [SMALL_STATE(3994)] = 143865,
- [SMALL_STATE(3995)] = 143881,
- [SMALL_STATE(3996)] = 143901,
- [SMALL_STATE(3997)] = 143915,
- [SMALL_STATE(3998)] = 143933,
- [SMALL_STATE(3999)] = 143945,
- [SMALL_STATE(4000)] = 143957,
- [SMALL_STATE(4001)] = 143969,
- [SMALL_STATE(4002)] = 143985,
- [SMALL_STATE(4003)] = 143997,
- [SMALL_STATE(4004)] = 144009,
- [SMALL_STATE(4005)] = 144021,
- [SMALL_STATE(4006)] = 144033,
- [SMALL_STATE(4007)] = 144045,
- [SMALL_STATE(4008)] = 144057,
- [SMALL_STATE(4009)] = 144069,
- [SMALL_STATE(4010)] = 144089,
- [SMALL_STATE(4011)] = 144105,
- [SMALL_STATE(4012)] = 144123,
- [SMALL_STATE(4013)] = 144143,
- [SMALL_STATE(4014)] = 144163,
- [SMALL_STATE(4015)] = 144183,
- [SMALL_STATE(4016)] = 144195,
- [SMALL_STATE(4017)] = 144211,
- [SMALL_STATE(4018)] = 144229,
- [SMALL_STATE(4019)] = 144245,
- [SMALL_STATE(4020)] = 144261,
- [SMALL_STATE(4021)] = 144281,
- [SMALL_STATE(4022)] = 144297,
- [SMALL_STATE(4023)] = 144313,
- [SMALL_STATE(4024)] = 144333,
- [SMALL_STATE(4025)] = 144349,
- [SMALL_STATE(4026)] = 144365,
- [SMALL_STATE(4027)] = 144377,
- [SMALL_STATE(4028)] = 144389,
- [SMALL_STATE(4029)] = 144409,
- [SMALL_STATE(4030)] = 144421,
- [SMALL_STATE(4031)] = 144441,
- [SMALL_STATE(4032)] = 144455,
- [SMALL_STATE(4033)] = 144467,
- [SMALL_STATE(4034)] = 144485,
- [SMALL_STATE(4035)] = 144497,
- [SMALL_STATE(4036)] = 144509,
- [SMALL_STATE(4037)] = 144529,
- [SMALL_STATE(4038)] = 144541,
- [SMALL_STATE(4039)] = 144553,
- [SMALL_STATE(4040)] = 144569,
- [SMALL_STATE(4041)] = 144581,
- [SMALL_STATE(4042)] = 144593,
- [SMALL_STATE(4043)] = 144605,
- [SMALL_STATE(4044)] = 144621,
- [SMALL_STATE(4045)] = 144633,
- [SMALL_STATE(4046)] = 144649,
- [SMALL_STATE(4047)] = 144665,
- [SMALL_STATE(4048)] = 144683,
- [SMALL_STATE(4049)] = 144695,
- [SMALL_STATE(4050)] = 144707,
- [SMALL_STATE(4051)] = 144721,
- [SMALL_STATE(4052)] = 144735,
- [SMALL_STATE(4053)] = 144747,
- [SMALL_STATE(4054)] = 144767,
- [SMALL_STATE(4055)] = 144779,
- [SMALL_STATE(4056)] = 144791,
- [SMALL_STATE(4057)] = 144807,
- [SMALL_STATE(4058)] = 144823,
- [SMALL_STATE(4059)] = 144841,
- [SMALL_STATE(4060)] = 144853,
- [SMALL_STATE(4061)] = 144867,
- [SMALL_STATE(4062)] = 144887,
- [SMALL_STATE(4063)] = 144899,
- [SMALL_STATE(4064)] = 144911,
- [SMALL_STATE(4065)] = 144931,
- [SMALL_STATE(4066)] = 144943,
- [SMALL_STATE(4067)] = 144955,
- [SMALL_STATE(4068)] = 144975,
- [SMALL_STATE(4069)] = 144995,
- [SMALL_STATE(4070)] = 145015,
- [SMALL_STATE(4071)] = 145031,
- [SMALL_STATE(4072)] = 145043,
- [SMALL_STATE(4073)] = 145055,
- [SMALL_STATE(4074)] = 145067,
- [SMALL_STATE(4075)] = 145079,
- [SMALL_STATE(4076)] = 145091,
- [SMALL_STATE(4077)] = 145103,
- [SMALL_STATE(4078)] = 145115,
- [SMALL_STATE(4079)] = 145135,
- [SMALL_STATE(4080)] = 145155,
- [SMALL_STATE(4081)] = 145171,
- [SMALL_STATE(4082)] = 145183,
- [SMALL_STATE(4083)] = 145195,
- [SMALL_STATE(4084)] = 145211,
- [SMALL_STATE(4085)] = 145227,
- [SMALL_STATE(4086)] = 145245,
- [SMALL_STATE(4087)] = 145263,
- [SMALL_STATE(4088)] = 145279,
- [SMALL_STATE(4089)] = 145293,
- [SMALL_STATE(4090)] = 145313,
- [SMALL_STATE(4091)] = 145333,
- [SMALL_STATE(4092)] = 145349,
- [SMALL_STATE(4093)] = 145365,
- [SMALL_STATE(4094)] = 145385,
- [SMALL_STATE(4095)] = 145403,
- [SMALL_STATE(4096)] = 145415,
- [SMALL_STATE(4097)] = 145427,
- [SMALL_STATE(4098)] = 145439,
- [SMALL_STATE(4099)] = 145451,
- [SMALL_STATE(4100)] = 145469,
- [SMALL_STATE(4101)] = 145489,
- [SMALL_STATE(4102)] = 145501,
- [SMALL_STATE(4103)] = 145513,
- [SMALL_STATE(4104)] = 145525,
- [SMALL_STATE(4105)] = 145541,
- [SMALL_STATE(4106)] = 145553,
- [SMALL_STATE(4107)] = 145565,
- [SMALL_STATE(4108)] = 145577,
- [SMALL_STATE(4109)] = 145593,
- [SMALL_STATE(4110)] = 145613,
- [SMALL_STATE(4111)] = 145631,
- [SMALL_STATE(4112)] = 145651,
- [SMALL_STATE(4113)] = 145667,
- [SMALL_STATE(4114)] = 145683,
- [SMALL_STATE(4115)] = 145699,
- [SMALL_STATE(4116)] = 145715,
- [SMALL_STATE(4117)] = 145731,
- [SMALL_STATE(4118)] = 145751,
- [SMALL_STATE(4119)] = 145767,
- [SMALL_STATE(4120)] = 145783,
- [SMALL_STATE(4121)] = 145795,
- [SMALL_STATE(4122)] = 145807,
- [SMALL_STATE(4123)] = 145819,
- [SMALL_STATE(4124)] = 145831,
- [SMALL_STATE(4125)] = 145843,
- [SMALL_STATE(4126)] = 145863,
- [SMALL_STATE(4127)] = 145881,
- [SMALL_STATE(4128)] = 145897,
- [SMALL_STATE(4129)] = 145913,
- [SMALL_STATE(4130)] = 145929,
- [SMALL_STATE(4131)] = 145945,
- [SMALL_STATE(4132)] = 145963,
- [SMALL_STATE(4133)] = 145977,
- [SMALL_STATE(4134)] = 145993,
- [SMALL_STATE(4135)] = 146009,
- [SMALL_STATE(4136)] = 146025,
- [SMALL_STATE(4137)] = 146041,
- [SMALL_STATE(4138)] = 146057,
- [SMALL_STATE(4139)] = 146075,
- [SMALL_STATE(4140)] = 146091,
- [SMALL_STATE(4141)] = 146111,
- [SMALL_STATE(4142)] = 146127,
- [SMALL_STATE(4143)] = 146143,
- [SMALL_STATE(4144)] = 146161,
- [SMALL_STATE(4145)] = 146177,
- [SMALL_STATE(4146)] = 146193,
- [SMALL_STATE(4147)] = 146209,
- [SMALL_STATE(4148)] = 146221,
- [SMALL_STATE(4149)] = 146237,
- [SMALL_STATE(4150)] = 146253,
- [SMALL_STATE(4151)] = 146269,
- [SMALL_STATE(4152)] = 146281,
- [SMALL_STATE(4153)] = 146297,
- [SMALL_STATE(4154)] = 146309,
- [SMALL_STATE(4155)] = 146321,
- [SMALL_STATE(4156)] = 146341,
- [SMALL_STATE(4157)] = 146357,
- [SMALL_STATE(4158)] = 146373,
- [SMALL_STATE(4159)] = 146393,
- [SMALL_STATE(4160)] = 146413,
- [SMALL_STATE(4161)] = 146429,
- [SMALL_STATE(4162)] = 146445,
- [SMALL_STATE(4163)] = 146461,
- [SMALL_STATE(4164)] = 146477,
- [SMALL_STATE(4165)] = 146495,
- [SMALL_STATE(4166)] = 146511,
- [SMALL_STATE(4167)] = 146527,
- [SMALL_STATE(4168)] = 146543,
- [SMALL_STATE(4169)] = 146559,
- [SMALL_STATE(4170)] = 146575,
- [SMALL_STATE(4171)] = 146595,
- [SMALL_STATE(4172)] = 146611,
- [SMALL_STATE(4173)] = 146627,
- [SMALL_STATE(4174)] = 146643,
- [SMALL_STATE(4175)] = 146663,
- [SMALL_STATE(4176)] = 146683,
- [SMALL_STATE(4177)] = 146699,
- [SMALL_STATE(4178)] = 146719,
- [SMALL_STATE(4179)] = 146739,
- [SMALL_STATE(4180)] = 146755,
- [SMALL_STATE(4181)] = 146775,
- [SMALL_STATE(4182)] = 146791,
- [SMALL_STATE(4183)] = 146811,
- [SMALL_STATE(4184)] = 146827,
- [SMALL_STATE(4185)] = 146843,
- [SMALL_STATE(4186)] = 146859,
- [SMALL_STATE(4187)] = 146875,
- [SMALL_STATE(4188)] = 146891,
- [SMALL_STATE(4189)] = 146907,
- [SMALL_STATE(4190)] = 146923,
- [SMALL_STATE(4191)] = 146939,
- [SMALL_STATE(4192)] = 146955,
- [SMALL_STATE(4193)] = 146975,
- [SMALL_STATE(4194)] = 146995,
- [SMALL_STATE(4195)] = 147011,
- [SMALL_STATE(4196)] = 147031,
- [SMALL_STATE(4197)] = 147051,
- [SMALL_STATE(4198)] = 147067,
- [SMALL_STATE(4199)] = 147083,
- [SMALL_STATE(4200)] = 147099,
- [SMALL_STATE(4201)] = 147115,
- [SMALL_STATE(4202)] = 147131,
- [SMALL_STATE(4203)] = 147151,
- [SMALL_STATE(4204)] = 147171,
- [SMALL_STATE(4205)] = 147183,
- [SMALL_STATE(4206)] = 147195,
- [SMALL_STATE(4207)] = 147215,
- [SMALL_STATE(4208)] = 147235,
- [SMALL_STATE(4209)] = 147251,
- [SMALL_STATE(4210)] = 147267,
- [SMALL_STATE(4211)] = 147287,
- [SMALL_STATE(4212)] = 147299,
- [SMALL_STATE(4213)] = 147319,
- [SMALL_STATE(4214)] = 147331,
- [SMALL_STATE(4215)] = 147343,
- [SMALL_STATE(4216)] = 147355,
- [SMALL_STATE(4217)] = 147367,
- [SMALL_STATE(4218)] = 147379,
- [SMALL_STATE(4219)] = 147391,
- [SMALL_STATE(4220)] = 147411,
- [SMALL_STATE(4221)] = 147423,
- [SMALL_STATE(4222)] = 147435,
- [SMALL_STATE(4223)] = 147455,
- [SMALL_STATE(4224)] = 147467,
- [SMALL_STATE(4225)] = 147487,
- [SMALL_STATE(4226)] = 147507,
- [SMALL_STATE(4227)] = 147519,
- [SMALL_STATE(4228)] = 147537,
- [SMALL_STATE(4229)] = 147553,
- [SMALL_STATE(4230)] = 147569,
- [SMALL_STATE(4231)] = 147585,
- [SMALL_STATE(4232)] = 147601,
- [SMALL_STATE(4233)] = 147617,
- [SMALL_STATE(4234)] = 147635,
- [SMALL_STATE(4235)] = 147655,
- [SMALL_STATE(4236)] = 147675,
- [SMALL_STATE(4237)] = 147691,
- [SMALL_STATE(4238)] = 147707,
- [SMALL_STATE(4239)] = 147721,
- [SMALL_STATE(4240)] = 147735,
- [SMALL_STATE(4241)] = 147751,
- [SMALL_STATE(4242)] = 147767,
- [SMALL_STATE(4243)] = 147783,
- [SMALL_STATE(4244)] = 147799,
- [SMALL_STATE(4245)] = 147815,
- [SMALL_STATE(4246)] = 147831,
- [SMALL_STATE(4247)] = 147847,
- [SMALL_STATE(4248)] = 147863,
- [SMALL_STATE(4249)] = 147879,
- [SMALL_STATE(4250)] = 147895,
- [SMALL_STATE(4251)] = 147907,
- [SMALL_STATE(4252)] = 147925,
- [SMALL_STATE(4253)] = 147945,
- [SMALL_STATE(4254)] = 147961,
- [SMALL_STATE(4255)] = 147977,
- [SMALL_STATE(4256)] = 147997,
- [SMALL_STATE(4257)] = 148017,
- [SMALL_STATE(4258)] = 148033,
- [SMALL_STATE(4259)] = 148053,
- [SMALL_STATE(4260)] = 148067,
- [SMALL_STATE(4261)] = 148081,
- [SMALL_STATE(4262)] = 148101,
- [SMALL_STATE(4263)] = 148113,
- [SMALL_STATE(4264)] = 148133,
- [SMALL_STATE(4265)] = 148149,
- [SMALL_STATE(4266)] = 148165,
- [SMALL_STATE(4267)] = 148181,
- [SMALL_STATE(4268)] = 148197,
- [SMALL_STATE(4269)] = 148209,
- [SMALL_STATE(4270)] = 148225,
- [SMALL_STATE(4271)] = 148245,
- [SMALL_STATE(4272)] = 148265,
- [SMALL_STATE(4273)] = 148281,
- [SMALL_STATE(4274)] = 148293,
- [SMALL_STATE(4275)] = 148305,
- [SMALL_STATE(4276)] = 148319,
- [SMALL_STATE(4277)] = 148333,
- [SMALL_STATE(4278)] = 148349,
- [SMALL_STATE(4279)] = 148365,
- [SMALL_STATE(4280)] = 148379,
- [SMALL_STATE(4281)] = 148393,
- [SMALL_STATE(4282)] = 148409,
- [SMALL_STATE(4283)] = 148425,
- [SMALL_STATE(4284)] = 148443,
- [SMALL_STATE(4285)] = 148455,
- [SMALL_STATE(4286)] = 148471,
- [SMALL_STATE(4287)] = 148487,
- [SMALL_STATE(4288)] = 148503,
- [SMALL_STATE(4289)] = 148519,
- [SMALL_STATE(4290)] = 148535,
- [SMALL_STATE(4291)] = 148551,
- [SMALL_STATE(4292)] = 148567,
- [SMALL_STATE(4293)] = 148581,
- [SMALL_STATE(4294)] = 148595,
- [SMALL_STATE(4295)] = 148609,
- [SMALL_STATE(4296)] = 148623,
- [SMALL_STATE(4297)] = 148635,
- [SMALL_STATE(4298)] = 148649,
- [SMALL_STATE(4299)] = 148669,
- [SMALL_STATE(4300)] = 148683,
- [SMALL_STATE(4301)] = 148695,
- [SMALL_STATE(4302)] = 148707,
- [SMALL_STATE(4303)] = 148727,
- [SMALL_STATE(4304)] = 148739,
- [SMALL_STATE(4305)] = 148759,
- [SMALL_STATE(4306)] = 148775,
- [SMALL_STATE(4307)] = 148791,
- [SMALL_STATE(4308)] = 148803,
- [SMALL_STATE(4309)] = 148817,
- [SMALL_STATE(4310)] = 148831,
- [SMALL_STATE(4311)] = 148843,
- [SMALL_STATE(4312)] = 148855,
- [SMALL_STATE(4313)] = 148871,
- [SMALL_STATE(4314)] = 148891,
- [SMALL_STATE(4315)] = 148907,
- [SMALL_STATE(4316)] = 148923,
- [SMALL_STATE(4317)] = 148939,
- [SMALL_STATE(4318)] = 148959,
- [SMALL_STATE(4319)] = 148975,
- [SMALL_STATE(4320)] = 148989,
- [SMALL_STATE(4321)] = 149003,
- [SMALL_STATE(4322)] = 149019,
- [SMALL_STATE(4323)] = 149035,
- [SMALL_STATE(4324)] = 149051,
- [SMALL_STATE(4325)] = 149069,
- [SMALL_STATE(4326)] = 149085,
- [SMALL_STATE(4327)] = 149101,
- [SMALL_STATE(4328)] = 149117,
- [SMALL_STATE(4329)] = 149133,
- [SMALL_STATE(4330)] = 149145,
- [SMALL_STATE(4331)] = 149157,
- [SMALL_STATE(4332)] = 149177,
- [SMALL_STATE(4333)] = 149189,
- [SMALL_STATE(4334)] = 149209,
- [SMALL_STATE(4335)] = 149221,
- [SMALL_STATE(4336)] = 149237,
- [SMALL_STATE(4337)] = 149249,
- [SMALL_STATE(4338)] = 149269,
- [SMALL_STATE(4339)] = 149285,
- [SMALL_STATE(4340)] = 149301,
- [SMALL_STATE(4341)] = 149317,
- [SMALL_STATE(4342)] = 149333,
- [SMALL_STATE(4343)] = 149345,
- [SMALL_STATE(4344)] = 149357,
- [SMALL_STATE(4345)] = 149373,
- [SMALL_STATE(4346)] = 149389,
- [SMALL_STATE(4347)] = 149401,
- [SMALL_STATE(4348)] = 149419,
- [SMALL_STATE(4349)] = 149439,
- [SMALL_STATE(4350)] = 149451,
- [SMALL_STATE(4351)] = 149471,
- [SMALL_STATE(4352)] = 149487,
- [SMALL_STATE(4353)] = 149503,
- [SMALL_STATE(4354)] = 149523,
- [SMALL_STATE(4355)] = 149543,
- [SMALL_STATE(4356)] = 149559,
- [SMALL_STATE(4357)] = 149575,
- [SMALL_STATE(4358)] = 149587,
- [SMALL_STATE(4359)] = 149599,
- [SMALL_STATE(4360)] = 149615,
- [SMALL_STATE(4361)] = 149627,
- [SMALL_STATE(4362)] = 149639,
- [SMALL_STATE(4363)] = 149655,
- [SMALL_STATE(4364)] = 149667,
- [SMALL_STATE(4365)] = 149679,
- [SMALL_STATE(4366)] = 149691,
- [SMALL_STATE(4367)] = 149709,
- [SMALL_STATE(4368)] = 149725,
- [SMALL_STATE(4369)] = 149741,
- [SMALL_STATE(4370)] = 149753,
- [SMALL_STATE(4371)] = 149765,
- [SMALL_STATE(4372)] = 149781,
- [SMALL_STATE(4373)] = 149793,
- [SMALL_STATE(4374)] = 149809,
- [SMALL_STATE(4375)] = 149825,
- [SMALL_STATE(4376)] = 149845,
- [SMALL_STATE(4377)] = 149865,
- [SMALL_STATE(4378)] = 149885,
- [SMALL_STATE(4379)] = 149905,
- [SMALL_STATE(4380)] = 149917,
- [SMALL_STATE(4381)] = 149933,
- [SMALL_STATE(4382)] = 149945,
- [SMALL_STATE(4383)] = 149961,
- [SMALL_STATE(4384)] = 149973,
- [SMALL_STATE(4385)] = 149989,
- [SMALL_STATE(4386)] = 150005,
- [SMALL_STATE(4387)] = 150021,
- [SMALL_STATE(4388)] = 150037,
- [SMALL_STATE(4389)] = 150053,
- [SMALL_STATE(4390)] = 150069,
- [SMALL_STATE(4391)] = 150085,
- [SMALL_STATE(4392)] = 150099,
- [SMALL_STATE(4393)] = 150113,
- [SMALL_STATE(4394)] = 150131,
- [SMALL_STATE(4395)] = 150149,
- [SMALL_STATE(4396)] = 150165,
- [SMALL_STATE(4397)] = 150183,
- [SMALL_STATE(4398)] = 150199,
- [SMALL_STATE(4399)] = 150219,
- [SMALL_STATE(4400)] = 150231,
- [SMALL_STATE(4401)] = 150247,
- [SMALL_STATE(4402)] = 150263,
- [SMALL_STATE(4403)] = 150275,
- [SMALL_STATE(4404)] = 150287,
- [SMALL_STATE(4405)] = 150299,
- [SMALL_STATE(4406)] = 150311,
- [SMALL_STATE(4407)] = 150327,
- [SMALL_STATE(4408)] = 150343,
- [SMALL_STATE(4409)] = 150363,
- [SMALL_STATE(4410)] = 150379,
- [SMALL_STATE(4411)] = 150399,
- [SMALL_STATE(4412)] = 150419,
- [SMALL_STATE(4413)] = 150431,
- [SMALL_STATE(4414)] = 150447,
- [SMALL_STATE(4415)] = 150463,
- [SMALL_STATE(4416)] = 150479,
- [SMALL_STATE(4417)] = 150495,
- [SMALL_STATE(4418)] = 150511,
- [SMALL_STATE(4419)] = 150527,
- [SMALL_STATE(4420)] = 150547,
- [SMALL_STATE(4421)] = 150562,
- [SMALL_STATE(4422)] = 150579,
- [SMALL_STATE(4423)] = 150594,
- [SMALL_STATE(4424)] = 150611,
- [SMALL_STATE(4425)] = 150628,
- [SMALL_STATE(4426)] = 150641,
- [SMALL_STATE(4427)] = 150658,
- [SMALL_STATE(4428)] = 150675,
- [SMALL_STATE(4429)] = 150692,
- [SMALL_STATE(4430)] = 150709,
- [SMALL_STATE(4431)] = 150726,
- [SMALL_STATE(4432)] = 150743,
- [SMALL_STATE(4433)] = 150760,
- [SMALL_STATE(4434)] = 150775,
- [SMALL_STATE(4435)] = 150792,
- [SMALL_STATE(4436)] = 150807,
- [SMALL_STATE(4437)] = 150822,
- [SMALL_STATE(4438)] = 150835,
- [SMALL_STATE(4439)] = 150852,
- [SMALL_STATE(4440)] = 150867,
- [SMALL_STATE(4441)] = 150884,
- [SMALL_STATE(4442)] = 150899,
- [SMALL_STATE(4443)] = 150914,
- [SMALL_STATE(4444)] = 150931,
- [SMALL_STATE(4445)] = 150948,
- [SMALL_STATE(4446)] = 150963,
- [SMALL_STATE(4447)] = 150980,
- [SMALL_STATE(4448)] = 150999,
- [SMALL_STATE(4449)] = 151016,
- [SMALL_STATE(4450)] = 151035,
- [SMALL_STATE(4451)] = 151052,
- [SMALL_STATE(4452)] = 151069,
- [SMALL_STATE(4453)] = 151084,
- [SMALL_STATE(4454)] = 151101,
- [SMALL_STATE(4455)] = 151118,
- [SMALL_STATE(4456)] = 151135,
- [SMALL_STATE(4457)] = 151150,
- [SMALL_STATE(4458)] = 151167,
- [SMALL_STATE(4459)] = 151184,
- [SMALL_STATE(4460)] = 151201,
- [SMALL_STATE(4461)] = 151218,
- [SMALL_STATE(4462)] = 151235,
- [SMALL_STATE(4463)] = 151246,
- [SMALL_STATE(4464)] = 151263,
- [SMALL_STATE(4465)] = 151274,
- [SMALL_STATE(4466)] = 151291,
- [SMALL_STATE(4467)] = 151308,
- [SMALL_STATE(4468)] = 151325,
- [SMALL_STATE(4469)] = 151342,
- [SMALL_STATE(4470)] = 151359,
- [SMALL_STATE(4471)] = 151374,
- [SMALL_STATE(4472)] = 151391,
- [SMALL_STATE(4473)] = 151408,
- [SMALL_STATE(4474)] = 151425,
- [SMALL_STATE(4475)] = 151442,
- [SMALL_STATE(4476)] = 151457,
- [SMALL_STATE(4477)] = 151474,
- [SMALL_STATE(4478)] = 151491,
- [SMALL_STATE(4479)] = 151508,
- [SMALL_STATE(4480)] = 151525,
- [SMALL_STATE(4481)] = 151542,
- [SMALL_STATE(4482)] = 151557,
- [SMALL_STATE(4483)] = 151574,
- [SMALL_STATE(4484)] = 151591,
- [SMALL_STATE(4485)] = 151608,
- [SMALL_STATE(4486)] = 151625,
- [SMALL_STATE(4487)] = 151642,
- [SMALL_STATE(4488)] = 151655,
- [SMALL_STATE(4489)] = 151674,
- [SMALL_STATE(4490)] = 151691,
- [SMALL_STATE(4491)] = 151710,
- [SMALL_STATE(4492)] = 151727,
- [SMALL_STATE(4493)] = 151744,
- [SMALL_STATE(4494)] = 151761,
- [SMALL_STATE(4495)] = 151778,
- [SMALL_STATE(4496)] = 151795,
- [SMALL_STATE(4497)] = 151812,
- [SMALL_STATE(4498)] = 151829,
- [SMALL_STATE(4499)] = 151844,
- [SMALL_STATE(4500)] = 151861,
- [SMALL_STATE(4501)] = 151876,
- [SMALL_STATE(4502)] = 151891,
- [SMALL_STATE(4503)] = 151906,
- [SMALL_STATE(4504)] = 151923,
- [SMALL_STATE(4505)] = 151940,
- [SMALL_STATE(4506)] = 151957,
- [SMALL_STATE(4507)] = 151972,
- [SMALL_STATE(4508)] = 151989,
- [SMALL_STATE(4509)] = 152006,
- [SMALL_STATE(4510)] = 152023,
- [SMALL_STATE(4511)] = 152038,
- [SMALL_STATE(4512)] = 152053,
- [SMALL_STATE(4513)] = 152070,
- [SMALL_STATE(4514)] = 152085,
- [SMALL_STATE(4515)] = 152102,
- [SMALL_STATE(4516)] = 152119,
- [SMALL_STATE(4517)] = 152134,
- [SMALL_STATE(4518)] = 152151,
- [SMALL_STATE(4519)] = 152168,
- [SMALL_STATE(4520)] = 152185,
- [SMALL_STATE(4521)] = 152198,
- [SMALL_STATE(4522)] = 152213,
- [SMALL_STATE(4523)] = 152232,
- [SMALL_STATE(4524)] = 152251,
- [SMALL_STATE(4525)] = 152268,
- [SMALL_STATE(4526)] = 152285,
- [SMALL_STATE(4527)] = 152302,
- [SMALL_STATE(4528)] = 152319,
- [SMALL_STATE(4529)] = 152336,
- [SMALL_STATE(4530)] = 152353,
- [SMALL_STATE(4531)] = 152370,
- [SMALL_STATE(4532)] = 152385,
- [SMALL_STATE(4533)] = 152400,
- [SMALL_STATE(4534)] = 152415,
- [SMALL_STATE(4535)] = 152432,
- [SMALL_STATE(4536)] = 152447,
- [SMALL_STATE(4537)] = 152464,
- [SMALL_STATE(4538)] = 152481,
- [SMALL_STATE(4539)] = 152498,
- [SMALL_STATE(4540)] = 152515,
- [SMALL_STATE(4541)] = 152530,
- [SMALL_STATE(4542)] = 152547,
- [SMALL_STATE(4543)] = 152564,
- [SMALL_STATE(4544)] = 152581,
- [SMALL_STATE(4545)] = 152598,
- [SMALL_STATE(4546)] = 152615,
- [SMALL_STATE(4547)] = 152632,
- [SMALL_STATE(4548)] = 152649,
- [SMALL_STATE(4549)] = 152666,
- [SMALL_STATE(4550)] = 152683,
- [SMALL_STATE(4551)] = 152700,
- [SMALL_STATE(4552)] = 152711,
- [SMALL_STATE(4553)] = 152728,
- [SMALL_STATE(4554)] = 152745,
- [SMALL_STATE(4555)] = 152762,
- [SMALL_STATE(4556)] = 152779,
- [SMALL_STATE(4557)] = 152796,
- [SMALL_STATE(4558)] = 152813,
- [SMALL_STATE(4559)] = 152830,
- [SMALL_STATE(4560)] = 152841,
- [SMALL_STATE(4561)] = 152856,
- [SMALL_STATE(4562)] = 152873,
- [SMALL_STATE(4563)] = 152890,
- [SMALL_STATE(4564)] = 152907,
- [SMALL_STATE(4565)] = 152917,
- [SMALL_STATE(4566)] = 152931,
- [SMALL_STATE(4567)] = 152945,
- [SMALL_STATE(4568)] = 152959,
- [SMALL_STATE(4569)] = 152969,
- [SMALL_STATE(4570)] = 152983,
- [SMALL_STATE(4571)] = 152993,
- [SMALL_STATE(4572)] = 153007,
- [SMALL_STATE(4573)] = 153021,
- [SMALL_STATE(4574)] = 153031,
- [SMALL_STATE(4575)] = 153041,
- [SMALL_STATE(4576)] = 153051,
- [SMALL_STATE(4577)] = 153061,
- [SMALL_STATE(4578)] = 153075,
- [SMALL_STATE(4579)] = 153089,
- [SMALL_STATE(4580)] = 153103,
- [SMALL_STATE(4581)] = 153117,
- [SMALL_STATE(4582)] = 153131,
- [SMALL_STATE(4583)] = 153145,
- [SMALL_STATE(4584)] = 153159,
- [SMALL_STATE(4585)] = 153169,
- [SMALL_STATE(4586)] = 153179,
- [SMALL_STATE(4587)] = 153189,
- [SMALL_STATE(4588)] = 153199,
- [SMALL_STATE(4589)] = 153209,
- [SMALL_STATE(4590)] = 153219,
- [SMALL_STATE(4591)] = 153231,
- [SMALL_STATE(4592)] = 153245,
- [SMALL_STATE(4593)] = 153255,
- [SMALL_STATE(4594)] = 153269,
- [SMALL_STATE(4595)] = 153283,
- [SMALL_STATE(4596)] = 153297,
- [SMALL_STATE(4597)] = 153307,
- [SMALL_STATE(4598)] = 153321,
- [SMALL_STATE(4599)] = 153331,
- [SMALL_STATE(4600)] = 153341,
- [SMALL_STATE(4601)] = 153351,
- [SMALL_STATE(4602)] = 153361,
- [SMALL_STATE(4603)] = 153375,
- [SMALL_STATE(4604)] = 153389,
- [SMALL_STATE(4605)] = 153399,
- [SMALL_STATE(4606)] = 153409,
- [SMALL_STATE(4607)] = 153423,
- [SMALL_STATE(4608)] = 153433,
- [SMALL_STATE(4609)] = 153443,
- [SMALL_STATE(4610)] = 153453,
- [SMALL_STATE(4611)] = 153467,
- [SMALL_STATE(4612)] = 153481,
- [SMALL_STATE(4613)] = 153491,
- [SMALL_STATE(4614)] = 153501,
- [SMALL_STATE(4615)] = 153515,
- [SMALL_STATE(4616)] = 153525,
- [SMALL_STATE(4617)] = 153539,
- [SMALL_STATE(4618)] = 153549,
- [SMALL_STATE(4619)] = 153563,
- [SMALL_STATE(4620)] = 153577,
- [SMALL_STATE(4621)] = 153591,
- [SMALL_STATE(4622)] = 153605,
- [SMALL_STATE(4623)] = 153619,
- [SMALL_STATE(4624)] = 153633,
- [SMALL_STATE(4625)] = 153647,
- [SMALL_STATE(4626)] = 153661,
- [SMALL_STATE(4627)] = 153671,
- [SMALL_STATE(4628)] = 153681,
- [SMALL_STATE(4629)] = 153695,
- [SMALL_STATE(4630)] = 153705,
- [SMALL_STATE(4631)] = 153715,
- [SMALL_STATE(4632)] = 153725,
- [SMALL_STATE(4633)] = 153735,
- [SMALL_STATE(4634)] = 153745,
- [SMALL_STATE(4635)] = 153755,
- [SMALL_STATE(4636)] = 153765,
- [SMALL_STATE(4637)] = 153779,
- [SMALL_STATE(4638)] = 153793,
- [SMALL_STATE(4639)] = 153803,
- [SMALL_STATE(4640)] = 153813,
- [SMALL_STATE(4641)] = 153823,
- [SMALL_STATE(4642)] = 153833,
- [SMALL_STATE(4643)] = 153847,
- [SMALL_STATE(4644)] = 153857,
- [SMALL_STATE(4645)] = 153871,
- [SMALL_STATE(4646)] = 153885,
- [SMALL_STATE(4647)] = 153895,
- [SMALL_STATE(4648)] = 153909,
- [SMALL_STATE(4649)] = 153919,
- [SMALL_STATE(4650)] = 153929,
- [SMALL_STATE(4651)] = 153943,
- [SMALL_STATE(4652)] = 153957,
- [SMALL_STATE(4653)] = 153971,
- [SMALL_STATE(4654)] = 153985,
- [SMALL_STATE(4655)] = 153995,
- [SMALL_STATE(4656)] = 154009,
- [SMALL_STATE(4657)] = 154023,
- [SMALL_STATE(4658)] = 154033,
- [SMALL_STATE(4659)] = 154045,
- [SMALL_STATE(4660)] = 154059,
- [SMALL_STATE(4661)] = 154073,
- [SMALL_STATE(4662)] = 154087,
- [SMALL_STATE(4663)] = 154101,
- [SMALL_STATE(4664)] = 154115,
- [SMALL_STATE(4665)] = 154125,
- [SMALL_STATE(4666)] = 154135,
- [SMALL_STATE(4667)] = 154145,
- [SMALL_STATE(4668)] = 154155,
- [SMALL_STATE(4669)] = 154169,
- [SMALL_STATE(4670)] = 154179,
- [SMALL_STATE(4671)] = 154189,
- [SMALL_STATE(4672)] = 154203,
- [SMALL_STATE(4673)] = 154217,
- [SMALL_STATE(4674)] = 154227,
- [SMALL_STATE(4675)] = 154241,
- [SMALL_STATE(4676)] = 154253,
- [SMALL_STATE(4677)] = 154267,
- [SMALL_STATE(4678)] = 154281,
- [SMALL_STATE(4679)] = 154291,
- [SMALL_STATE(4680)] = 154307,
- [SMALL_STATE(4681)] = 154317,
- [SMALL_STATE(4682)] = 154331,
- [SMALL_STATE(4683)] = 154345,
- [SMALL_STATE(4684)] = 154359,
- [SMALL_STATE(4685)] = 154369,
- [SMALL_STATE(4686)] = 154379,
- [SMALL_STATE(4687)] = 154389,
- [SMALL_STATE(4688)] = 154399,
- [SMALL_STATE(4689)] = 154409,
- [SMALL_STATE(4690)] = 154419,
- [SMALL_STATE(4691)] = 154433,
- [SMALL_STATE(4692)] = 154447,
- [SMALL_STATE(4693)] = 154461,
- [SMALL_STATE(4694)] = 154471,
- [SMALL_STATE(4695)] = 154485,
- [SMALL_STATE(4696)] = 154499,
- [SMALL_STATE(4697)] = 154509,
- [SMALL_STATE(4698)] = 154519,
- [SMALL_STATE(4699)] = 154533,
- [SMALL_STATE(4700)] = 154543,
- [SMALL_STATE(4701)] = 154553,
- [SMALL_STATE(4702)] = 154567,
- [SMALL_STATE(4703)] = 154577,
- [SMALL_STATE(4704)] = 154591,
- [SMALL_STATE(4705)] = 154601,
- [SMALL_STATE(4706)] = 154615,
- [SMALL_STATE(4707)] = 154625,
- [SMALL_STATE(4708)] = 154635,
- [SMALL_STATE(4709)] = 154645,
- [SMALL_STATE(4710)] = 154655,
- [SMALL_STATE(4711)] = 154665,
- [SMALL_STATE(4712)] = 154675,
- [SMALL_STATE(4713)] = 154689,
- [SMALL_STATE(4714)] = 154699,
- [SMALL_STATE(4715)] = 154709,
- [SMALL_STATE(4716)] = 154719,
- [SMALL_STATE(4717)] = 154729,
- [SMALL_STATE(4718)] = 154739,
- [SMALL_STATE(4719)] = 154749,
- [SMALL_STATE(4720)] = 154759,
- [SMALL_STATE(4721)] = 154773,
- [SMALL_STATE(4722)] = 154787,
- [SMALL_STATE(4723)] = 154797,
- [SMALL_STATE(4724)] = 154813,
- [SMALL_STATE(4725)] = 154823,
- [SMALL_STATE(4726)] = 154833,
- [SMALL_STATE(4727)] = 154843,
- [SMALL_STATE(4728)] = 154853,
- [SMALL_STATE(4729)] = 154865,
- [SMALL_STATE(4730)] = 154875,
- [SMALL_STATE(4731)] = 154889,
- [SMALL_STATE(4732)] = 154899,
- [SMALL_STATE(4733)] = 154909,
- [SMALL_STATE(4734)] = 154919,
- [SMALL_STATE(4735)] = 154933,
- [SMALL_STATE(4736)] = 154947,
- [SMALL_STATE(4737)] = 154957,
- [SMALL_STATE(4738)] = 154967,
- [SMALL_STATE(4739)] = 154977,
- [SMALL_STATE(4740)] = 154987,
- [SMALL_STATE(4741)] = 154997,
- [SMALL_STATE(4742)] = 155007,
- [SMALL_STATE(4743)] = 155021,
- [SMALL_STATE(4744)] = 155031,
- [SMALL_STATE(4745)] = 155045,
- [SMALL_STATE(4746)] = 155055,
- [SMALL_STATE(4747)] = 155069,
- [SMALL_STATE(4748)] = 155079,
- [SMALL_STATE(4749)] = 155089,
- [SMALL_STATE(4750)] = 155099,
- [SMALL_STATE(4751)] = 155109,
- [SMALL_STATE(4752)] = 155123,
- [SMALL_STATE(4753)] = 155135,
- [SMALL_STATE(4754)] = 155149,
- [SMALL_STATE(4755)] = 155161,
- [SMALL_STATE(4756)] = 155171,
- [SMALL_STATE(4757)] = 155183,
- [SMALL_STATE(4758)] = 155193,
- [SMALL_STATE(4759)] = 155203,
- [SMALL_STATE(4760)] = 155217,
- [SMALL_STATE(4761)] = 155227,
- [SMALL_STATE(4762)] = 155239,
- [SMALL_STATE(4763)] = 155249,
- [SMALL_STATE(4764)] = 155259,
- [SMALL_STATE(4765)] = 155269,
- [SMALL_STATE(4766)] = 155279,
- [SMALL_STATE(4767)] = 155293,
- [SMALL_STATE(4768)] = 155303,
- [SMALL_STATE(4769)] = 155315,
- [SMALL_STATE(4770)] = 155325,
- [SMALL_STATE(4771)] = 155339,
- [SMALL_STATE(4772)] = 155349,
- [SMALL_STATE(4773)] = 155363,
- [SMALL_STATE(4774)] = 155373,
- [SMALL_STATE(4775)] = 155383,
- [SMALL_STATE(4776)] = 155393,
- [SMALL_STATE(4777)] = 155403,
- [SMALL_STATE(4778)] = 155413,
- [SMALL_STATE(4779)] = 155423,
- [SMALL_STATE(4780)] = 155437,
- [SMALL_STATE(4781)] = 155447,
- [SMALL_STATE(4782)] = 155461,
- [SMALL_STATE(4783)] = 155471,
- [SMALL_STATE(4784)] = 155481,
- [SMALL_STATE(4785)] = 155491,
- [SMALL_STATE(4786)] = 155501,
- [SMALL_STATE(4787)] = 155511,
- [SMALL_STATE(4788)] = 155521,
- [SMALL_STATE(4789)] = 155531,
- [SMALL_STATE(4790)] = 155541,
- [SMALL_STATE(4791)] = 155551,
- [SMALL_STATE(4792)] = 155565,
- [SMALL_STATE(4793)] = 155575,
- [SMALL_STATE(4794)] = 155585,
- [SMALL_STATE(4795)] = 155595,
- [SMALL_STATE(4796)] = 155605,
- [SMALL_STATE(4797)] = 155615,
- [SMALL_STATE(4798)] = 155625,
- [SMALL_STATE(4799)] = 155635,
- [SMALL_STATE(4800)] = 155649,
- [SMALL_STATE(4801)] = 155659,
- [SMALL_STATE(4802)] = 155669,
- [SMALL_STATE(4803)] = 155679,
- [SMALL_STATE(4804)] = 155693,
- [SMALL_STATE(4805)] = 155703,
- [SMALL_STATE(4806)] = 155713,
- [SMALL_STATE(4807)] = 155723,
- [SMALL_STATE(4808)] = 155733,
- [SMALL_STATE(4809)] = 155743,
- [SMALL_STATE(4810)] = 155753,
- [SMALL_STATE(4811)] = 155763,
- [SMALL_STATE(4812)] = 155773,
- [SMALL_STATE(4813)] = 155787,
- [SMALL_STATE(4814)] = 155797,
- [SMALL_STATE(4815)] = 155807,
- [SMALL_STATE(4816)] = 155817,
- [SMALL_STATE(4817)] = 155827,
- [SMALL_STATE(4818)] = 155837,
- [SMALL_STATE(4819)] = 155851,
- [SMALL_STATE(4820)] = 155861,
- [SMALL_STATE(4821)] = 155875,
- [SMALL_STATE(4822)] = 155889,
- [SMALL_STATE(4823)] = 155899,
- [SMALL_STATE(4824)] = 155913,
- [SMALL_STATE(4825)] = 155927,
- [SMALL_STATE(4826)] = 155937,
- [SMALL_STATE(4827)] = 155947,
- [SMALL_STATE(4828)] = 155957,
- [SMALL_STATE(4829)] = 155969,
- [SMALL_STATE(4830)] = 155985,
- [SMALL_STATE(4831)] = 155999,
- [SMALL_STATE(4832)] = 156009,
- [SMALL_STATE(4833)] = 156021,
- [SMALL_STATE(4834)] = 156031,
- [SMALL_STATE(4835)] = 156045,
- [SMALL_STATE(4836)] = 156059,
- [SMALL_STATE(4837)] = 156069,
- [SMALL_STATE(4838)] = 156079,
- [SMALL_STATE(4839)] = 156093,
- [SMALL_STATE(4840)] = 156107,
- [SMALL_STATE(4841)] = 156117,
- [SMALL_STATE(4842)] = 156127,
- [SMALL_STATE(4843)] = 156137,
- [SMALL_STATE(4844)] = 156147,
- [SMALL_STATE(4845)] = 156157,
- [SMALL_STATE(4846)] = 156167,
- [SMALL_STATE(4847)] = 156177,
- [SMALL_STATE(4848)] = 156187,
- [SMALL_STATE(4849)] = 156201,
- [SMALL_STATE(4850)] = 156211,
- [SMALL_STATE(4851)] = 156221,
- [SMALL_STATE(4852)] = 156231,
- [SMALL_STATE(4853)] = 156241,
- [SMALL_STATE(4854)] = 156251,
- [SMALL_STATE(4855)] = 156261,
- [SMALL_STATE(4856)] = 156271,
- [SMALL_STATE(4857)] = 156281,
- [SMALL_STATE(4858)] = 156293,
- [SMALL_STATE(4859)] = 156307,
- [SMALL_STATE(4860)] = 156317,
- [SMALL_STATE(4861)] = 156327,
- [SMALL_STATE(4862)] = 156341,
- [SMALL_STATE(4863)] = 156351,
- [SMALL_STATE(4864)] = 156361,
- [SMALL_STATE(4865)] = 156371,
- [SMALL_STATE(4866)] = 156381,
- [SMALL_STATE(4867)] = 156391,
- [SMALL_STATE(4868)] = 156401,
- [SMALL_STATE(4869)] = 156411,
- [SMALL_STATE(4870)] = 156421,
- [SMALL_STATE(4871)] = 156431,
- [SMALL_STATE(4872)] = 156441,
- [SMALL_STATE(4873)] = 156455,
- [SMALL_STATE(4874)] = 156465,
- [SMALL_STATE(4875)] = 156475,
- [SMALL_STATE(4876)] = 156485,
- [SMALL_STATE(4877)] = 156495,
- [SMALL_STATE(4878)] = 156505,
- [SMALL_STATE(4879)] = 156515,
- [SMALL_STATE(4880)] = 156525,
- [SMALL_STATE(4881)] = 156535,
- [SMALL_STATE(4882)] = 156545,
- [SMALL_STATE(4883)] = 156555,
- [SMALL_STATE(4884)] = 156565,
- [SMALL_STATE(4885)] = 156575,
- [SMALL_STATE(4886)] = 156585,
- [SMALL_STATE(4887)] = 156595,
- [SMALL_STATE(4888)] = 156609,
- [SMALL_STATE(4889)] = 156623,
- [SMALL_STATE(4890)] = 156637,
- [SMALL_STATE(4891)] = 156651,
- [SMALL_STATE(4892)] = 156661,
- [SMALL_STATE(4893)] = 156675,
- [SMALL_STATE(4894)] = 156689,
- [SMALL_STATE(4895)] = 156699,
- [SMALL_STATE(4896)] = 156713,
- [SMALL_STATE(4897)] = 156723,
- [SMALL_STATE(4898)] = 156737,
- [SMALL_STATE(4899)] = 156751,
- [SMALL_STATE(4900)] = 156761,
- [SMALL_STATE(4901)] = 156771,
- [SMALL_STATE(4902)] = 156781,
- [SMALL_STATE(4903)] = 156791,
- [SMALL_STATE(4904)] = 156805,
- [SMALL_STATE(4905)] = 156815,
- [SMALL_STATE(4906)] = 156825,
- [SMALL_STATE(4907)] = 156839,
- [SMALL_STATE(4908)] = 156853,
- [SMALL_STATE(4909)] = 156863,
- [SMALL_STATE(4910)] = 156873,
- [SMALL_STATE(4911)] = 156883,
- [SMALL_STATE(4912)] = 156893,
- [SMALL_STATE(4913)] = 156907,
- [SMALL_STATE(4914)] = 156917,
- [SMALL_STATE(4915)] = 156927,
- [SMALL_STATE(4916)] = 156937,
- [SMALL_STATE(4917)] = 156947,
- [SMALL_STATE(4918)] = 156957,
- [SMALL_STATE(4919)] = 156967,
- [SMALL_STATE(4920)] = 156977,
- [SMALL_STATE(4921)] = 156987,
- [SMALL_STATE(4922)] = 157001,
- [SMALL_STATE(4923)] = 157011,
- [SMALL_STATE(4924)] = 157025,
- [SMALL_STATE(4925)] = 157035,
- [SMALL_STATE(4926)] = 157051,
- [SMALL_STATE(4927)] = 157061,
- [SMALL_STATE(4928)] = 157071,
- [SMALL_STATE(4929)] = 157081,
- [SMALL_STATE(4930)] = 157091,
- [SMALL_STATE(4931)] = 157101,
- [SMALL_STATE(4932)] = 157111,
- [SMALL_STATE(4933)] = 157121,
- [SMALL_STATE(4934)] = 157131,
- [SMALL_STATE(4935)] = 157141,
- [SMALL_STATE(4936)] = 157151,
- [SMALL_STATE(4937)] = 157161,
- [SMALL_STATE(4938)] = 157171,
- [SMALL_STATE(4939)] = 157185,
- [SMALL_STATE(4940)] = 157195,
- [SMALL_STATE(4941)] = 157207,
- [SMALL_STATE(4942)] = 157221,
- [SMALL_STATE(4943)] = 157231,
- [SMALL_STATE(4944)] = 157241,
- [SMALL_STATE(4945)] = 157251,
- [SMALL_STATE(4946)] = 157263,
- [SMALL_STATE(4947)] = 157273,
- [SMALL_STATE(4948)] = 157283,
- [SMALL_STATE(4949)] = 157293,
- [SMALL_STATE(4950)] = 157303,
- [SMALL_STATE(4951)] = 157313,
- [SMALL_STATE(4952)] = 157327,
- [SMALL_STATE(4953)] = 157337,
- [SMALL_STATE(4954)] = 157347,
- [SMALL_STATE(4955)] = 157361,
- [SMALL_STATE(4956)] = 157371,
- [SMALL_STATE(4957)] = 157381,
- [SMALL_STATE(4958)] = 157391,
- [SMALL_STATE(4959)] = 157401,
- [SMALL_STATE(4960)] = 157411,
- [SMALL_STATE(4961)] = 157421,
- [SMALL_STATE(4962)] = 157431,
- [SMALL_STATE(4963)] = 157441,
- [SMALL_STATE(4964)] = 157453,
- [SMALL_STATE(4965)] = 157465,
- [SMALL_STATE(4966)] = 157475,
- [SMALL_STATE(4967)] = 157485,
- [SMALL_STATE(4968)] = 157495,
- [SMALL_STATE(4969)] = 157505,
- [SMALL_STATE(4970)] = 157515,
- [SMALL_STATE(4971)] = 157525,
- [SMALL_STATE(4972)] = 157535,
- [SMALL_STATE(4973)] = 157545,
- [SMALL_STATE(4974)] = 157555,
- [SMALL_STATE(4975)] = 157565,
- [SMALL_STATE(4976)] = 157575,
- [SMALL_STATE(4977)] = 157585,
- [SMALL_STATE(4978)] = 157595,
- [SMALL_STATE(4979)] = 157605,
- [SMALL_STATE(4980)] = 157615,
- [SMALL_STATE(4981)] = 157625,
- [SMALL_STATE(4982)] = 157635,
- [SMALL_STATE(4983)] = 157645,
- [SMALL_STATE(4984)] = 157655,
- [SMALL_STATE(4985)] = 157665,
- [SMALL_STATE(4986)] = 157675,
- [SMALL_STATE(4987)] = 157685,
- [SMALL_STATE(4988)] = 157695,
- [SMALL_STATE(4989)] = 157705,
- [SMALL_STATE(4990)] = 157715,
- [SMALL_STATE(4991)] = 157725,
- [SMALL_STATE(4992)] = 157735,
- [SMALL_STATE(4993)] = 157745,
- [SMALL_STATE(4994)] = 157755,
- [SMALL_STATE(4995)] = 157765,
- [SMALL_STATE(4996)] = 157775,
- [SMALL_STATE(4997)] = 157785,
- [SMALL_STATE(4998)] = 157795,
- [SMALL_STATE(4999)] = 157805,
- [SMALL_STATE(5000)] = 157815,
- [SMALL_STATE(5001)] = 157825,
- [SMALL_STATE(5002)] = 157835,
- [SMALL_STATE(5003)] = 157845,
- [SMALL_STATE(5004)] = 157855,
- [SMALL_STATE(5005)] = 157865,
- [SMALL_STATE(5006)] = 157875,
- [SMALL_STATE(5007)] = 157885,
- [SMALL_STATE(5008)] = 157895,
- [SMALL_STATE(5009)] = 157905,
- [SMALL_STATE(5010)] = 157915,
- [SMALL_STATE(5011)] = 157925,
- [SMALL_STATE(5012)] = 157935,
- [SMALL_STATE(5013)] = 157945,
- [SMALL_STATE(5014)] = 157955,
- [SMALL_STATE(5015)] = 157965,
- [SMALL_STATE(5016)] = 157975,
- [SMALL_STATE(5017)] = 157985,
- [SMALL_STATE(5018)] = 157995,
- [SMALL_STATE(5019)] = 158005,
- [SMALL_STATE(5020)] = 158015,
- [SMALL_STATE(5021)] = 158029,
- [SMALL_STATE(5022)] = 158039,
- [SMALL_STATE(5023)] = 158051,
- [SMALL_STATE(5024)] = 158061,
- [SMALL_STATE(5025)] = 158071,
- [SMALL_STATE(5026)] = 158083,
- [SMALL_STATE(5027)] = 158093,
- [SMALL_STATE(5028)] = 158103,
- [SMALL_STATE(5029)] = 158113,
- [SMALL_STATE(5030)] = 158123,
- [SMALL_STATE(5031)] = 158137,
- [SMALL_STATE(5032)] = 158147,
- [SMALL_STATE(5033)] = 158161,
- [SMALL_STATE(5034)] = 158171,
- [SMALL_STATE(5035)] = 158181,
- [SMALL_STATE(5036)] = 158191,
- [SMALL_STATE(5037)] = 158201,
- [SMALL_STATE(5038)] = 158211,
- [SMALL_STATE(5039)] = 158221,
- [SMALL_STATE(5040)] = 158235,
- [SMALL_STATE(5041)] = 158245,
- [SMALL_STATE(5042)] = 158255,
- [SMALL_STATE(5043)] = 158265,
- [SMALL_STATE(5044)] = 158275,
- [SMALL_STATE(5045)] = 158285,
- [SMALL_STATE(5046)] = 158295,
- [SMALL_STATE(5047)] = 158305,
- [SMALL_STATE(5048)] = 158315,
- [SMALL_STATE(5049)] = 158325,
- [SMALL_STATE(5050)] = 158339,
- [SMALL_STATE(5051)] = 158349,
- [SMALL_STATE(5052)] = 158359,
- [SMALL_STATE(5053)] = 158369,
- [SMALL_STATE(5054)] = 158379,
- [SMALL_STATE(5055)] = 158389,
- [SMALL_STATE(5056)] = 158399,
- [SMALL_STATE(5057)] = 158409,
- [SMALL_STATE(5058)] = 158419,
- [SMALL_STATE(5059)] = 158429,
- [SMALL_STATE(5060)] = 158439,
- [SMALL_STATE(5061)] = 158453,
- [SMALL_STATE(5062)] = 158463,
- [SMALL_STATE(5063)] = 158473,
- [SMALL_STATE(5064)] = 158483,
- [SMALL_STATE(5065)] = 158493,
- [SMALL_STATE(5066)] = 158503,
- [SMALL_STATE(5067)] = 158513,
- [SMALL_STATE(5068)] = 158523,
- [SMALL_STATE(5069)] = 158533,
- [SMALL_STATE(5070)] = 158543,
- [SMALL_STATE(5071)] = 158557,
- [SMALL_STATE(5072)] = 158571,
- [SMALL_STATE(5073)] = 158581,
- [SMALL_STATE(5074)] = 158591,
- [SMALL_STATE(5075)] = 158601,
- [SMALL_STATE(5076)] = 158611,
- [SMALL_STATE(5077)] = 158625,
- [SMALL_STATE(5078)] = 158635,
- [SMALL_STATE(5079)] = 158645,
- [SMALL_STATE(5080)] = 158655,
- [SMALL_STATE(5081)] = 158669,
- [SMALL_STATE(5082)] = 158683,
- [SMALL_STATE(5083)] = 158695,
- [SMALL_STATE(5084)] = 158705,
- [SMALL_STATE(5085)] = 158715,
- [SMALL_STATE(5086)] = 158725,
- [SMALL_STATE(5087)] = 158739,
- [SMALL_STATE(5088)] = 158753,
- [SMALL_STATE(5089)] = 158763,
- [SMALL_STATE(5090)] = 158777,
- [SMALL_STATE(5091)] = 158787,
- [SMALL_STATE(5092)] = 158797,
- [SMALL_STATE(5093)] = 158811,
- [SMALL_STATE(5094)] = 158821,
- [SMALL_STATE(5095)] = 158833,
- [SMALL_STATE(5096)] = 158843,
- [SMALL_STATE(5097)] = 158853,
- [SMALL_STATE(5098)] = 158863,
- [SMALL_STATE(5099)] = 158875,
- [SMALL_STATE(5100)] = 158885,
- [SMALL_STATE(5101)] = 158895,
- [SMALL_STATE(5102)] = 158909,
- [SMALL_STATE(5103)] = 158919,
- [SMALL_STATE(5104)] = 158929,
- [SMALL_STATE(5105)] = 158939,
- [SMALL_STATE(5106)] = 158949,
- [SMALL_STATE(5107)] = 158959,
- [SMALL_STATE(5108)] = 158969,
- [SMALL_STATE(5109)] = 158979,
- [SMALL_STATE(5110)] = 158989,
- [SMALL_STATE(5111)] = 159003,
- [SMALL_STATE(5112)] = 159013,
- [SMALL_STATE(5113)] = 159023,
- [SMALL_STATE(5114)] = 159033,
- [SMALL_STATE(5115)] = 159043,
- [SMALL_STATE(5116)] = 159053,
- [SMALL_STATE(5117)] = 159067,
- [SMALL_STATE(5118)] = 159077,
- [SMALL_STATE(5119)] = 159087,
- [SMALL_STATE(5120)] = 159097,
- [SMALL_STATE(5121)] = 159107,
- [SMALL_STATE(5122)] = 159117,
- [SMALL_STATE(5123)] = 159127,
- [SMALL_STATE(5124)] = 159137,
- [SMALL_STATE(5125)] = 159151,
- [SMALL_STATE(5126)] = 159161,
- [SMALL_STATE(5127)] = 159175,
- [SMALL_STATE(5128)] = 159185,
- [SMALL_STATE(5129)] = 159197,
- [SMALL_STATE(5130)] = 159211,
- [SMALL_STATE(5131)] = 159225,
- [SMALL_STATE(5132)] = 159235,
- [SMALL_STATE(5133)] = 159245,
- [SMALL_STATE(5134)] = 159257,
- [SMALL_STATE(5135)] = 159271,
- [SMALL_STATE(5136)] = 159281,
- [SMALL_STATE(5137)] = 159295,
- [SMALL_STATE(5138)] = 159305,
- [SMALL_STATE(5139)] = 159315,
- [SMALL_STATE(5140)] = 159329,
- [SMALL_STATE(5141)] = 159341,
- [SMALL_STATE(5142)] = 159355,
- [SMALL_STATE(5143)] = 159365,
- [SMALL_STATE(5144)] = 159375,
- [SMALL_STATE(5145)] = 159387,
- [SMALL_STATE(5146)] = 159397,
- [SMALL_STATE(5147)] = 159407,
- [SMALL_STATE(5148)] = 159417,
- [SMALL_STATE(5149)] = 159431,
- [SMALL_STATE(5150)] = 159441,
- [SMALL_STATE(5151)] = 159455,
- [SMALL_STATE(5152)] = 159469,
- [SMALL_STATE(5153)] = 159483,
- [SMALL_STATE(5154)] = 159497,
- [SMALL_STATE(5155)] = 159509,
- [SMALL_STATE(5156)] = 159523,
- [SMALL_STATE(5157)] = 159537,
- [SMALL_STATE(5158)] = 159551,
- [SMALL_STATE(5159)] = 159565,
- [SMALL_STATE(5160)] = 159575,
- [SMALL_STATE(5161)] = 159585,
- [SMALL_STATE(5162)] = 159595,
- [SMALL_STATE(5163)] = 159605,
- [SMALL_STATE(5164)] = 159615,
- [SMALL_STATE(5165)] = 159625,
- [SMALL_STATE(5166)] = 159639,
- [SMALL_STATE(5167)] = 159653,
- [SMALL_STATE(5168)] = 159663,
- [SMALL_STATE(5169)] = 159673,
- [SMALL_STATE(5170)] = 159683,
- [SMALL_STATE(5171)] = 159697,
- [SMALL_STATE(5172)] = 159711,
- [SMALL_STATE(5173)] = 159721,
- [SMALL_STATE(5174)] = 159731,
- [SMALL_STATE(5175)] = 159741,
- [SMALL_STATE(5176)] = 159751,
- [SMALL_STATE(5177)] = 159767,
- [SMALL_STATE(5178)] = 159777,
- [SMALL_STATE(5179)] = 159787,
- [SMALL_STATE(5180)] = 159797,
- [SMALL_STATE(5181)] = 159807,
- [SMALL_STATE(5182)] = 159817,
- [SMALL_STATE(5183)] = 159827,
- [SMALL_STATE(5184)] = 159838,
- [SMALL_STATE(5185)] = 159849,
- [SMALL_STATE(5186)] = 159858,
- [SMALL_STATE(5187)] = 159869,
- [SMALL_STATE(5188)] = 159880,
- [SMALL_STATE(5189)] = 159889,
- [SMALL_STATE(5190)] = 159898,
- [SMALL_STATE(5191)] = 159909,
- [SMALL_STATE(5192)] = 159918,
- [SMALL_STATE(5193)] = 159929,
- [SMALL_STATE(5194)] = 159940,
- [SMALL_STATE(5195)] = 159951,
- [SMALL_STATE(5196)] = 159962,
- [SMALL_STATE(5197)] = 159973,
- [SMALL_STATE(5198)] = 159982,
- [SMALL_STATE(5199)] = 159991,
- [SMALL_STATE(5200)] = 160002,
- [SMALL_STATE(5201)] = 160013,
- [SMALL_STATE(5202)] = 160024,
- [SMALL_STATE(5203)] = 160035,
- [SMALL_STATE(5204)] = 160046,
- [SMALL_STATE(5205)] = 160055,
- [SMALL_STATE(5206)] = 160066,
- [SMALL_STATE(5207)] = 160077,
- [SMALL_STATE(5208)] = 160088,
- [SMALL_STATE(5209)] = 160099,
- [SMALL_STATE(5210)] = 160110,
- [SMALL_STATE(5211)] = 160121,
- [SMALL_STATE(5212)] = 160130,
- [SMALL_STATE(5213)] = 160141,
- [SMALL_STATE(5214)] = 160152,
- [SMALL_STATE(5215)] = 160161,
- [SMALL_STATE(5216)] = 160172,
- [SMALL_STATE(5217)] = 160183,
- [SMALL_STATE(5218)] = 160194,
- [SMALL_STATE(5219)] = 160203,
- [SMALL_STATE(5220)] = 160212,
- [SMALL_STATE(5221)] = 160223,
- [SMALL_STATE(5222)] = 160234,
- [SMALL_STATE(5223)] = 160243,
- [SMALL_STATE(5224)] = 160252,
- [SMALL_STATE(5225)] = 160263,
- [SMALL_STATE(5226)] = 160274,
- [SMALL_STATE(5227)] = 160285,
- [SMALL_STATE(5228)] = 160294,
- [SMALL_STATE(5229)] = 160305,
- [SMALL_STATE(5230)] = 160316,
- [SMALL_STATE(5231)] = 160327,
- [SMALL_STATE(5232)] = 160338,
- [SMALL_STATE(5233)] = 160347,
- [SMALL_STATE(5234)] = 160358,
- [SMALL_STATE(5235)] = 160369,
- [SMALL_STATE(5236)] = 160380,
- [SMALL_STATE(5237)] = 160391,
- [SMALL_STATE(5238)] = 160402,
- [SMALL_STATE(5239)] = 160413,
- [SMALL_STATE(5240)] = 160424,
- [SMALL_STATE(5241)] = 160435,
- [SMALL_STATE(5242)] = 160446,
- [SMALL_STATE(5243)] = 160457,
- [SMALL_STATE(5244)] = 160468,
- [SMALL_STATE(5245)] = 160479,
- [SMALL_STATE(5246)] = 160490,
- [SMALL_STATE(5247)] = 160501,
- [SMALL_STATE(5248)] = 160512,
- [SMALL_STATE(5249)] = 160523,
- [SMALL_STATE(5250)] = 160534,
- [SMALL_STATE(5251)] = 160545,
- [SMALL_STATE(5252)] = 160554,
- [SMALL_STATE(5253)] = 160565,
- [SMALL_STATE(5254)] = 160576,
- [SMALL_STATE(5255)] = 160587,
- [SMALL_STATE(5256)] = 160598,
- [SMALL_STATE(5257)] = 160609,
- [SMALL_STATE(5258)] = 160618,
- [SMALL_STATE(5259)] = 160629,
- [SMALL_STATE(5260)] = 160640,
- [SMALL_STATE(5261)] = 160649,
- [SMALL_STATE(5262)] = 160658,
- [SMALL_STATE(5263)] = 160669,
- [SMALL_STATE(5264)] = 160680,
- [SMALL_STATE(5265)] = 160691,
- [SMALL_STATE(5266)] = 160702,
- [SMALL_STATE(5267)] = 160713,
- [SMALL_STATE(5268)] = 160722,
- [SMALL_STATE(5269)] = 160733,
- [SMALL_STATE(5270)] = 160742,
- [SMALL_STATE(5271)] = 160753,
- [SMALL_STATE(5272)] = 160764,
- [SMALL_STATE(5273)] = 160775,
- [SMALL_STATE(5274)] = 160786,
- [SMALL_STATE(5275)] = 160795,
- [SMALL_STATE(5276)] = 160804,
- [SMALL_STATE(5277)] = 160815,
- [SMALL_STATE(5278)] = 160826,
- [SMALL_STATE(5279)] = 160837,
- [SMALL_STATE(5280)] = 160848,
- [SMALL_STATE(5281)] = 160859,
- [SMALL_STATE(5282)] = 160870,
- [SMALL_STATE(5283)] = 160881,
- [SMALL_STATE(5284)] = 160892,
- [SMALL_STATE(5285)] = 160903,
- [SMALL_STATE(5286)] = 160914,
- [SMALL_STATE(5287)] = 160925,
- [SMALL_STATE(5288)] = 160936,
- [SMALL_STATE(5289)] = 160947,
- [SMALL_STATE(5290)] = 160958,
- [SMALL_STATE(5291)] = 160969,
- [SMALL_STATE(5292)] = 160978,
- [SMALL_STATE(5293)] = 160989,
- [SMALL_STATE(5294)] = 161000,
- [SMALL_STATE(5295)] = 161011,
- [SMALL_STATE(5296)] = 161022,
- [SMALL_STATE(5297)] = 161033,
- [SMALL_STATE(5298)] = 161044,
- [SMALL_STATE(5299)] = 161055,
- [SMALL_STATE(5300)] = 161066,
- [SMALL_STATE(5301)] = 161077,
- [SMALL_STATE(5302)] = 161086,
- [SMALL_STATE(5303)] = 161097,
- [SMALL_STATE(5304)] = 161106,
- [SMALL_STATE(5305)] = 161117,
- [SMALL_STATE(5306)] = 161128,
- [SMALL_STATE(5307)] = 161137,
- [SMALL_STATE(5308)] = 161146,
- [SMALL_STATE(5309)] = 161157,
- [SMALL_STATE(5310)] = 161168,
- [SMALL_STATE(5311)] = 161179,
- [SMALL_STATE(5312)] = 161190,
- [SMALL_STATE(5313)] = 161199,
- [SMALL_STATE(5314)] = 161210,
- [SMALL_STATE(5315)] = 161221,
- [SMALL_STATE(5316)] = 161230,
- [SMALL_STATE(5317)] = 161241,
- [SMALL_STATE(5318)] = 161252,
- [SMALL_STATE(5319)] = 161263,
- [SMALL_STATE(5320)] = 161274,
- [SMALL_STATE(5321)] = 161285,
- [SMALL_STATE(5322)] = 161294,
- [SMALL_STATE(5323)] = 161305,
- [SMALL_STATE(5324)] = 161314,
- [SMALL_STATE(5325)] = 161325,
- [SMALL_STATE(5326)] = 161336,
- [SMALL_STATE(5327)] = 161347,
- [SMALL_STATE(5328)] = 161358,
- [SMALL_STATE(5329)] = 161369,
- [SMALL_STATE(5330)] = 161378,
- [SMALL_STATE(5331)] = 161387,
- [SMALL_STATE(5332)] = 161396,
- [SMALL_STATE(5333)] = 161405,
- [SMALL_STATE(5334)] = 161416,
- [SMALL_STATE(5335)] = 161425,
- [SMALL_STATE(5336)] = 161436,
- [SMALL_STATE(5337)] = 161447,
- [SMALL_STATE(5338)] = 161458,
- [SMALL_STATE(5339)] = 161469,
- [SMALL_STATE(5340)] = 161480,
- [SMALL_STATE(5341)] = 161491,
- [SMALL_STATE(5342)] = 161502,
- [SMALL_STATE(5343)] = 161513,
- [SMALL_STATE(5344)] = 161524,
- [SMALL_STATE(5345)] = 161535,
- [SMALL_STATE(5346)] = 161544,
- [SMALL_STATE(5347)] = 161553,
- [SMALL_STATE(5348)] = 161564,
- [SMALL_STATE(5349)] = 161575,
- [SMALL_STATE(5350)] = 161586,
- [SMALL_STATE(5351)] = 161597,
- [SMALL_STATE(5352)] = 161606,
- [SMALL_STATE(5353)] = 161615,
- [SMALL_STATE(5354)] = 161626,
- [SMALL_STATE(5355)] = 161637,
- [SMALL_STATE(5356)] = 161648,
- [SMALL_STATE(5357)] = 161659,
- [SMALL_STATE(5358)] = 161670,
- [SMALL_STATE(5359)] = 161681,
- [SMALL_STATE(5360)] = 161692,
- [SMALL_STATE(5361)] = 161701,
- [SMALL_STATE(5362)] = 161712,
- [SMALL_STATE(5363)] = 161723,
- [SMALL_STATE(5364)] = 161734,
- [SMALL_STATE(5365)] = 161743,
- [SMALL_STATE(5366)] = 161754,
- [SMALL_STATE(5367)] = 161765,
- [SMALL_STATE(5368)] = 161776,
- [SMALL_STATE(5369)] = 161787,
- [SMALL_STATE(5370)] = 161798,
- [SMALL_STATE(5371)] = 161809,
- [SMALL_STATE(5372)] = 161820,
- [SMALL_STATE(5373)] = 161831,
- [SMALL_STATE(5374)] = 161842,
- [SMALL_STATE(5375)] = 161853,
- [SMALL_STATE(5376)] = 161864,
- [SMALL_STATE(5377)] = 161875,
- [SMALL_STATE(5378)] = 161886,
- [SMALL_STATE(5379)] = 161897,
- [SMALL_STATE(5380)] = 161908,
- [SMALL_STATE(5381)] = 161919,
- [SMALL_STATE(5382)] = 161928,
- [SMALL_STATE(5383)] = 161939,
- [SMALL_STATE(5384)] = 161948,
- [SMALL_STATE(5385)] = 161957,
- [SMALL_STATE(5386)] = 161966,
- [SMALL_STATE(5387)] = 161977,
- [SMALL_STATE(5388)] = 161988,
- [SMALL_STATE(5389)] = 161999,
- [SMALL_STATE(5390)] = 162010,
- [SMALL_STATE(5391)] = 162021,
- [SMALL_STATE(5392)] = 162032,
- [SMALL_STATE(5393)] = 162043,
- [SMALL_STATE(5394)] = 162054,
- [SMALL_STATE(5395)] = 162065,
- [SMALL_STATE(5396)] = 162076,
- [SMALL_STATE(5397)] = 162087,
- [SMALL_STATE(5398)] = 162098,
- [SMALL_STATE(5399)] = 162109,
- [SMALL_STATE(5400)] = 162120,
- [SMALL_STATE(5401)] = 162131,
- [SMALL_STATE(5402)] = 162142,
- [SMALL_STATE(5403)] = 162153,
- [SMALL_STATE(5404)] = 162164,
- [SMALL_STATE(5405)] = 162175,
- [SMALL_STATE(5406)] = 162184,
- [SMALL_STATE(5407)] = 162195,
- [SMALL_STATE(5408)] = 162206,
- [SMALL_STATE(5409)] = 162217,
- [SMALL_STATE(5410)] = 162228,
- [SMALL_STATE(5411)] = 162239,
- [SMALL_STATE(5412)] = 162250,
- [SMALL_STATE(5413)] = 162261,
- [SMALL_STATE(5414)] = 162272,
- [SMALL_STATE(5415)] = 162283,
- [SMALL_STATE(5416)] = 162292,
- [SMALL_STATE(5417)] = 162303,
- [SMALL_STATE(5418)] = 162314,
- [SMALL_STATE(5419)] = 162325,
- [SMALL_STATE(5420)] = 162334,
- [SMALL_STATE(5421)] = 162345,
- [SMALL_STATE(5422)] = 162356,
- [SMALL_STATE(5423)] = 162367,
- [SMALL_STATE(5424)] = 162378,
- [SMALL_STATE(5425)] = 162389,
- [SMALL_STATE(5426)] = 162400,
- [SMALL_STATE(5427)] = 162409,
- [SMALL_STATE(5428)] = 162420,
- [SMALL_STATE(5429)] = 162431,
- [SMALL_STATE(5430)] = 162442,
- [SMALL_STATE(5431)] = 162453,
- [SMALL_STATE(5432)] = 162464,
- [SMALL_STATE(5433)] = 162475,
- [SMALL_STATE(5434)] = 162486,
- [SMALL_STATE(5435)] = 162497,
- [SMALL_STATE(5436)] = 162508,
- [SMALL_STATE(5437)] = 162519,
- [SMALL_STATE(5438)] = 162530,
- [SMALL_STATE(5439)] = 162541,
- [SMALL_STATE(5440)] = 162552,
- [SMALL_STATE(5441)] = 162563,
- [SMALL_STATE(5442)] = 162574,
- [SMALL_STATE(5443)] = 162585,
- [SMALL_STATE(5444)] = 162596,
- [SMALL_STATE(5445)] = 162607,
- [SMALL_STATE(5446)] = 162618,
- [SMALL_STATE(5447)] = 162627,
- [SMALL_STATE(5448)] = 162636,
- [SMALL_STATE(5449)] = 162647,
- [SMALL_STATE(5450)] = 162658,
- [SMALL_STATE(5451)] = 162667,
- [SMALL_STATE(5452)] = 162676,
- [SMALL_STATE(5453)] = 162687,
- [SMALL_STATE(5454)] = 162696,
- [SMALL_STATE(5455)] = 162707,
- [SMALL_STATE(5456)] = 162718,
- [SMALL_STATE(5457)] = 162729,
- [SMALL_STATE(5458)] = 162740,
- [SMALL_STATE(5459)] = 162751,
- [SMALL_STATE(5460)] = 162762,
- [SMALL_STATE(5461)] = 162773,
- [SMALL_STATE(5462)] = 162784,
- [SMALL_STATE(5463)] = 162795,
- [SMALL_STATE(5464)] = 162806,
- [SMALL_STATE(5465)] = 162817,
- [SMALL_STATE(5466)] = 162828,
- [SMALL_STATE(5467)] = 162839,
- [SMALL_STATE(5468)] = 162850,
- [SMALL_STATE(5469)] = 162859,
- [SMALL_STATE(5470)] = 162870,
- [SMALL_STATE(5471)] = 162881,
- [SMALL_STATE(5472)] = 162892,
- [SMALL_STATE(5473)] = 162903,
- [SMALL_STATE(5474)] = 162914,
- [SMALL_STATE(5475)] = 162925,
- [SMALL_STATE(5476)] = 162936,
- [SMALL_STATE(5477)] = 162947,
- [SMALL_STATE(5478)] = 162956,
- [SMALL_STATE(5479)] = 162967,
- [SMALL_STATE(5480)] = 162978,
- [SMALL_STATE(5481)] = 162989,
- [SMALL_STATE(5482)] = 162998,
- [SMALL_STATE(5483)] = 163007,
- [SMALL_STATE(5484)] = 163018,
- [SMALL_STATE(5485)] = 163027,
- [SMALL_STATE(5486)] = 163036,
- [SMALL_STATE(5487)] = 163045,
- [SMALL_STATE(5488)] = 163054,
- [SMALL_STATE(5489)] = 163065,
- [SMALL_STATE(5490)] = 163076,
- [SMALL_STATE(5491)] = 163087,
- [SMALL_STATE(5492)] = 163098,
- [SMALL_STATE(5493)] = 163107,
- [SMALL_STATE(5494)] = 163116,
- [SMALL_STATE(5495)] = 163125,
- [SMALL_STATE(5496)] = 163134,
- [SMALL_STATE(5497)] = 163145,
- [SMALL_STATE(5498)] = 163156,
- [SMALL_STATE(5499)] = 163167,
- [SMALL_STATE(5500)] = 163178,
- [SMALL_STATE(5501)] = 163189,
- [SMALL_STATE(5502)] = 163200,
- [SMALL_STATE(5503)] = 163211,
- [SMALL_STATE(5504)] = 163222,
- [SMALL_STATE(5505)] = 163231,
- [SMALL_STATE(5506)] = 163242,
- [SMALL_STATE(5507)] = 163251,
- [SMALL_STATE(5508)] = 163262,
- [SMALL_STATE(5509)] = 163273,
- [SMALL_STATE(5510)] = 163282,
- [SMALL_STATE(5511)] = 163293,
- [SMALL_STATE(5512)] = 163302,
- [SMALL_STATE(5513)] = 163311,
- [SMALL_STATE(5514)] = 163322,
- [SMALL_STATE(5515)] = 163333,
- [SMALL_STATE(5516)] = 163344,
- [SMALL_STATE(5517)] = 163355,
- [SMALL_STATE(5518)] = 163366,
- [SMALL_STATE(5519)] = 163377,
- [SMALL_STATE(5520)] = 163388,
- [SMALL_STATE(5521)] = 163399,
- [SMALL_STATE(5522)] = 163410,
- [SMALL_STATE(5523)] = 163421,
- [SMALL_STATE(5524)] = 163432,
- [SMALL_STATE(5525)] = 163443,
- [SMALL_STATE(5526)] = 163454,
- [SMALL_STATE(5527)] = 163465,
- [SMALL_STATE(5528)] = 163476,
- [SMALL_STATE(5529)] = 163487,
- [SMALL_STATE(5530)] = 163498,
- [SMALL_STATE(5531)] = 163509,
- [SMALL_STATE(5532)] = 163520,
- [SMALL_STATE(5533)] = 163529,
- [SMALL_STATE(5534)] = 163538,
- [SMALL_STATE(5535)] = 163546,
- [SMALL_STATE(5536)] = 163554,
- [SMALL_STATE(5537)] = 163562,
- [SMALL_STATE(5538)] = 163570,
- [SMALL_STATE(5539)] = 163578,
- [SMALL_STATE(5540)] = 163586,
- [SMALL_STATE(5541)] = 163594,
- [SMALL_STATE(5542)] = 163602,
- [SMALL_STATE(5543)] = 163610,
- [SMALL_STATE(5544)] = 163618,
- [SMALL_STATE(5545)] = 163626,
- [SMALL_STATE(5546)] = 163634,
- [SMALL_STATE(5547)] = 163642,
- [SMALL_STATE(5548)] = 163650,
- [SMALL_STATE(5549)] = 163658,
- [SMALL_STATE(5550)] = 163666,
- [SMALL_STATE(5551)] = 163674,
- [SMALL_STATE(5552)] = 163682,
- [SMALL_STATE(5553)] = 163690,
- [SMALL_STATE(5554)] = 163698,
- [SMALL_STATE(5555)] = 163706,
- [SMALL_STATE(5556)] = 163714,
- [SMALL_STATE(5557)] = 163722,
- [SMALL_STATE(5558)] = 163730,
- [SMALL_STATE(5559)] = 163738,
- [SMALL_STATE(5560)] = 163746,
- [SMALL_STATE(5561)] = 163754,
- [SMALL_STATE(5562)] = 163764,
- [SMALL_STATE(5563)] = 163772,
- [SMALL_STATE(5564)] = 163780,
- [SMALL_STATE(5565)] = 163788,
- [SMALL_STATE(5566)] = 163796,
- [SMALL_STATE(5567)] = 163804,
- [SMALL_STATE(5568)] = 163812,
- [SMALL_STATE(5569)] = 163820,
- [SMALL_STATE(5570)] = 163828,
- [SMALL_STATE(5571)] = 163836,
- [SMALL_STATE(5572)] = 163844,
- [SMALL_STATE(5573)] = 163852,
- [SMALL_STATE(5574)] = 163860,
- [SMALL_STATE(5575)] = 163868,
- [SMALL_STATE(5576)] = 163876,
- [SMALL_STATE(5577)] = 163884,
- [SMALL_STATE(5578)] = 163892,
- [SMALL_STATE(5579)] = 163900,
- [SMALL_STATE(5580)] = 163908,
- [SMALL_STATE(5581)] = 163916,
- [SMALL_STATE(5582)] = 163924,
- [SMALL_STATE(5583)] = 163932,
- [SMALL_STATE(5584)] = 163940,
- [SMALL_STATE(5585)] = 163948,
- [SMALL_STATE(5586)] = 163956,
- [SMALL_STATE(5587)] = 163964,
- [SMALL_STATE(5588)] = 163972,
- [SMALL_STATE(5589)] = 163980,
- [SMALL_STATE(5590)] = 163988,
- [SMALL_STATE(5591)] = 163996,
- [SMALL_STATE(5592)] = 164004,
- [SMALL_STATE(5593)] = 164012,
- [SMALL_STATE(5594)] = 164020,
- [SMALL_STATE(5595)] = 164028,
- [SMALL_STATE(5596)] = 164036,
- [SMALL_STATE(5597)] = 164044,
- [SMALL_STATE(5598)] = 164052,
- [SMALL_STATE(5599)] = 164060,
- [SMALL_STATE(5600)] = 164068,
- [SMALL_STATE(5601)] = 164076,
- [SMALL_STATE(5602)] = 164084,
- [SMALL_STATE(5603)] = 164092,
- [SMALL_STATE(5604)] = 164100,
- [SMALL_STATE(5605)] = 164110,
- [SMALL_STATE(5606)] = 164118,
- [SMALL_STATE(5607)] = 164126,
- [SMALL_STATE(5608)] = 164134,
- [SMALL_STATE(5609)] = 164142,
- [SMALL_STATE(5610)] = 164150,
- [SMALL_STATE(5611)] = 164158,
- [SMALL_STATE(5612)] = 164166,
- [SMALL_STATE(5613)] = 164174,
- [SMALL_STATE(5614)] = 164182,
- [SMALL_STATE(5615)] = 164190,
- [SMALL_STATE(5616)] = 164198,
- [SMALL_STATE(5617)] = 164206,
- [SMALL_STATE(5618)] = 164214,
- [SMALL_STATE(5619)] = 164222,
- [SMALL_STATE(5620)] = 164230,
- [SMALL_STATE(5621)] = 164238,
- [SMALL_STATE(5622)] = 164246,
- [SMALL_STATE(5623)] = 164254,
- [SMALL_STATE(5624)] = 164262,
- [SMALL_STATE(5625)] = 164270,
- [SMALL_STATE(5626)] = 164278,
- [SMALL_STATE(5627)] = 164286,
- [SMALL_STATE(5628)] = 164294,
- [SMALL_STATE(5629)] = 164302,
- [SMALL_STATE(5630)] = 164310,
- [SMALL_STATE(5631)] = 164318,
- [SMALL_STATE(5632)] = 164326,
- [SMALL_STATE(5633)] = 164334,
- [SMALL_STATE(5634)] = 164342,
- [SMALL_STATE(5635)] = 164350,
- [SMALL_STATE(5636)] = 164358,
- [SMALL_STATE(5637)] = 164366,
- [SMALL_STATE(5638)] = 164374,
- [SMALL_STATE(5639)] = 164382,
- [SMALL_STATE(5640)] = 164390,
- [SMALL_STATE(5641)] = 164398,
- [SMALL_STATE(5642)] = 164406,
- [SMALL_STATE(5643)] = 164414,
- [SMALL_STATE(5644)] = 164422,
- [SMALL_STATE(5645)] = 164432,
- [SMALL_STATE(5646)] = 164440,
- [SMALL_STATE(5647)] = 164448,
- [SMALL_STATE(5648)] = 164456,
- [SMALL_STATE(5649)] = 164464,
- [SMALL_STATE(5650)] = 164472,
- [SMALL_STATE(5651)] = 164480,
- [SMALL_STATE(5652)] = 164488,
- [SMALL_STATE(5653)] = 164496,
- [SMALL_STATE(5654)] = 164504,
- [SMALL_STATE(5655)] = 164512,
- [SMALL_STATE(5656)] = 164520,
- [SMALL_STATE(5657)] = 164528,
- [SMALL_STATE(5658)] = 164536,
- [SMALL_STATE(5659)] = 164544,
- [SMALL_STATE(5660)] = 164552,
- [SMALL_STATE(5661)] = 164560,
- [SMALL_STATE(5662)] = 164568,
- [SMALL_STATE(5663)] = 164576,
- [SMALL_STATE(5664)] = 164584,
- [SMALL_STATE(5665)] = 164592,
- [SMALL_STATE(5666)] = 164600,
- [SMALL_STATE(5667)] = 164608,
- [SMALL_STATE(5668)] = 164616,
- [SMALL_STATE(5669)] = 164624,
- [SMALL_STATE(5670)] = 164632,
- [SMALL_STATE(5671)] = 164640,
- [SMALL_STATE(5672)] = 164648,
- [SMALL_STATE(5673)] = 164656,
- [SMALL_STATE(5674)] = 164664,
- [SMALL_STATE(5675)] = 164672,
- [SMALL_STATE(5676)] = 164680,
- [SMALL_STATE(5677)] = 164688,
- [SMALL_STATE(5678)] = 164696,
- [SMALL_STATE(5679)] = 164704,
- [SMALL_STATE(5680)] = 164712,
- [SMALL_STATE(5681)] = 164720,
- [SMALL_STATE(5682)] = 164728,
- [SMALL_STATE(5683)] = 164736,
- [SMALL_STATE(5684)] = 164744,
- [SMALL_STATE(5685)] = 164752,
- [SMALL_STATE(5686)] = 164760,
- [SMALL_STATE(5687)] = 164768,
- [SMALL_STATE(5688)] = 164776,
- [SMALL_STATE(5689)] = 164784,
- [SMALL_STATE(5690)] = 164792,
- [SMALL_STATE(5691)] = 164800,
- [SMALL_STATE(5692)] = 164808,
- [SMALL_STATE(5693)] = 164816,
- [SMALL_STATE(5694)] = 164824,
- [SMALL_STATE(5695)] = 164832,
- [SMALL_STATE(5696)] = 164840,
- [SMALL_STATE(5697)] = 164848,
- [SMALL_STATE(5698)] = 164856,
- [SMALL_STATE(5699)] = 164864,
- [SMALL_STATE(5700)] = 164872,
- [SMALL_STATE(5701)] = 164880,
- [SMALL_STATE(5702)] = 164888,
- [SMALL_STATE(5703)] = 164896,
- [SMALL_STATE(5704)] = 164904,
- [SMALL_STATE(5705)] = 164912,
- [SMALL_STATE(5706)] = 164920,
- [SMALL_STATE(5707)] = 164930,
- [SMALL_STATE(5708)] = 164938,
- [SMALL_STATE(5709)] = 164946,
- [SMALL_STATE(5710)] = 164954,
- [SMALL_STATE(5711)] = 164962,
- [SMALL_STATE(5712)] = 164970,
- [SMALL_STATE(5713)] = 164978,
- [SMALL_STATE(5714)] = 164986,
- [SMALL_STATE(5715)] = 164994,
- [SMALL_STATE(5716)] = 165002,
- [SMALL_STATE(5717)] = 165010,
- [SMALL_STATE(5718)] = 165018,
- [SMALL_STATE(5719)] = 165026,
- [SMALL_STATE(5720)] = 165034,
- [SMALL_STATE(5721)] = 165042,
- [SMALL_STATE(5722)] = 165050,
- [SMALL_STATE(5723)] = 165058,
- [SMALL_STATE(5724)] = 165066,
- [SMALL_STATE(5725)] = 165074,
- [SMALL_STATE(5726)] = 165082,
- [SMALL_STATE(5727)] = 165090,
- [SMALL_STATE(5728)] = 165098,
- [SMALL_STATE(5729)] = 165106,
- [SMALL_STATE(5730)] = 165114,
- [SMALL_STATE(5731)] = 165122,
- [SMALL_STATE(5732)] = 165130,
- [SMALL_STATE(5733)] = 165138,
- [SMALL_STATE(5734)] = 165146,
- [SMALL_STATE(5735)] = 165154,
- [SMALL_STATE(5736)] = 165162,
- [SMALL_STATE(5737)] = 165170,
- [SMALL_STATE(5738)] = 165178,
- [SMALL_STATE(5739)] = 165186,
- [SMALL_STATE(5740)] = 165194,
- [SMALL_STATE(5741)] = 165202,
- [SMALL_STATE(5742)] = 165210,
- [SMALL_STATE(5743)] = 165218,
- [SMALL_STATE(5744)] = 165226,
- [SMALL_STATE(5745)] = 165234,
- [SMALL_STATE(5746)] = 165242,
- [SMALL_STATE(5747)] = 165250,
- [SMALL_STATE(5748)] = 165258,
- [SMALL_STATE(5749)] = 165266,
- [SMALL_STATE(5750)] = 165274,
- [SMALL_STATE(5751)] = 165282,
- [SMALL_STATE(5752)] = 165290,
- [SMALL_STATE(5753)] = 165298,
- [SMALL_STATE(5754)] = 165306,
- [SMALL_STATE(5755)] = 165314,
- [SMALL_STATE(5756)] = 165322,
- [SMALL_STATE(5757)] = 165330,
- [SMALL_STATE(5758)] = 165338,
- [SMALL_STATE(5759)] = 165346,
- [SMALL_STATE(5760)] = 165356,
- [SMALL_STATE(5761)] = 165364,
- [SMALL_STATE(5762)] = 165372,
- [SMALL_STATE(5763)] = 165382,
- [SMALL_STATE(5764)] = 165390,
- [SMALL_STATE(5765)] = 165398,
- [SMALL_STATE(5766)] = 165406,
- [SMALL_STATE(5767)] = 165414,
- [SMALL_STATE(5768)] = 165422,
- [SMALL_STATE(5769)] = 165430,
- [SMALL_STATE(5770)] = 165438,
- [SMALL_STATE(5771)] = 165446,
- [SMALL_STATE(5772)] = 165454,
- [SMALL_STATE(5773)] = 165462,
- [SMALL_STATE(5774)] = 165470,
- [SMALL_STATE(5775)] = 165478,
- [SMALL_STATE(5776)] = 165486,
- [SMALL_STATE(5777)] = 165494,
- [SMALL_STATE(5778)] = 165502,
- [SMALL_STATE(5779)] = 165510,
- [SMALL_STATE(5780)] = 165518,
- [SMALL_STATE(5781)] = 165526,
- [SMALL_STATE(5782)] = 165534,
- [SMALL_STATE(5783)] = 165542,
- [SMALL_STATE(5784)] = 165550,
- [SMALL_STATE(5785)] = 165558,
- [SMALL_STATE(5786)] = 165566,
- [SMALL_STATE(5787)] = 165574,
- [SMALL_STATE(5788)] = 165582,
- [SMALL_STATE(5789)] = 165590,
- [SMALL_STATE(5790)] = 165598,
- [SMALL_STATE(5791)] = 165606,
- [SMALL_STATE(5792)] = 165614,
- [SMALL_STATE(5793)] = 165622,
- [SMALL_STATE(5794)] = 165630,
- [SMALL_STATE(5795)] = 165638,
- [SMALL_STATE(5796)] = 165646,
- [SMALL_STATE(5797)] = 165656,
- [SMALL_STATE(5798)] = 165664,
- [SMALL_STATE(5799)] = 165672,
- [SMALL_STATE(5800)] = 165680,
- [SMALL_STATE(5801)] = 165688,
- [SMALL_STATE(5802)] = 165696,
- [SMALL_STATE(5803)] = 165704,
- [SMALL_STATE(5804)] = 165712,
- [SMALL_STATE(5805)] = 165720,
- [SMALL_STATE(5806)] = 165728,
- [SMALL_STATE(5807)] = 165736,
- [SMALL_STATE(5808)] = 165744,
- [SMALL_STATE(5809)] = 165752,
- [SMALL_STATE(5810)] = 165760,
- [SMALL_STATE(5811)] = 165768,
- [SMALL_STATE(5812)] = 165776,
- [SMALL_STATE(5813)] = 165784,
- [SMALL_STATE(5814)] = 165792,
- [SMALL_STATE(5815)] = 165800,
- [SMALL_STATE(5816)] = 165808,
- [SMALL_STATE(5817)] = 165816,
- [SMALL_STATE(5818)] = 165824,
- [SMALL_STATE(5819)] = 165832,
- [SMALL_STATE(5820)] = 165840,
- [SMALL_STATE(5821)] = 165848,
- [SMALL_STATE(5822)] = 165856,
- [SMALL_STATE(5823)] = 165864,
- [SMALL_STATE(5824)] = 165872,
- [SMALL_STATE(5825)] = 165880,
- [SMALL_STATE(5826)] = 165888,
- [SMALL_STATE(5827)] = 165896,
- [SMALL_STATE(5828)] = 165904,
- [SMALL_STATE(5829)] = 165912,
- [SMALL_STATE(5830)] = 165920,
- [SMALL_STATE(5831)] = 165928,
- [SMALL_STATE(5832)] = 165936,
- [SMALL_STATE(5833)] = 165944,
- [SMALL_STATE(5834)] = 165952,
- [SMALL_STATE(5835)] = 165960,
- [SMALL_STATE(5836)] = 165968,
- [SMALL_STATE(5837)] = 165976,
- [SMALL_STATE(5838)] = 165984,
- [SMALL_STATE(5839)] = 165992,
- [SMALL_STATE(5840)] = 166000,
- [SMALL_STATE(5841)] = 166008,
- [SMALL_STATE(5842)] = 166016,
- [SMALL_STATE(5843)] = 166024,
- [SMALL_STATE(5844)] = 166032,
- [SMALL_STATE(5845)] = 166040,
- [SMALL_STATE(5846)] = 166048,
- [SMALL_STATE(5847)] = 166056,
- [SMALL_STATE(5848)] = 166064,
- [SMALL_STATE(5849)] = 166072,
- [SMALL_STATE(5850)] = 166080,
- [SMALL_STATE(5851)] = 166088,
- [SMALL_STATE(5852)] = 166096,
- [SMALL_STATE(5853)] = 166104,
- [SMALL_STATE(5854)] = 166112,
- [SMALL_STATE(5855)] = 166120,
- [SMALL_STATE(5856)] = 166128,
- [SMALL_STATE(5857)] = 166136,
- [SMALL_STATE(5858)] = 166144,
- [SMALL_STATE(5859)] = 166152,
- [SMALL_STATE(5860)] = 166160,
- [SMALL_STATE(5861)] = 166168,
- [SMALL_STATE(5862)] = 166176,
- [SMALL_STATE(5863)] = 166184,
- [SMALL_STATE(5864)] = 166192,
- [SMALL_STATE(5865)] = 166200,
- [SMALL_STATE(5866)] = 166208,
- [SMALL_STATE(5867)] = 166216,
- [SMALL_STATE(5868)] = 166226,
- [SMALL_STATE(5869)] = 166234,
- [SMALL_STATE(5870)] = 166242,
- [SMALL_STATE(5871)] = 166250,
- [SMALL_STATE(5872)] = 166258,
- [SMALL_STATE(5873)] = 166266,
- [SMALL_STATE(5874)] = 166274,
- [SMALL_STATE(5875)] = 166284,
- [SMALL_STATE(5876)] = 166292,
- [SMALL_STATE(5877)] = 166300,
- [SMALL_STATE(5878)] = 166308,
- [SMALL_STATE(5879)] = 166316,
- [SMALL_STATE(5880)] = 166324,
- [SMALL_STATE(5881)] = 166332,
- [SMALL_STATE(5882)] = 166340,
- [SMALL_STATE(5883)] = 166348,
- [SMALL_STATE(5884)] = 166356,
- [SMALL_STATE(5885)] = 166364,
- [SMALL_STATE(5886)] = 166372,
- [SMALL_STATE(5887)] = 166380,
- [SMALL_STATE(5888)] = 166388,
- [SMALL_STATE(5889)] = 166396,
- [SMALL_STATE(5890)] = 166404,
- [SMALL_STATE(5891)] = 166412,
- [SMALL_STATE(5892)] = 166420,
- [SMALL_STATE(5893)] = 166428,
- [SMALL_STATE(5894)] = 166436,
- [SMALL_STATE(5895)] = 166444,
- [SMALL_STATE(5896)] = 166452,
- [SMALL_STATE(5897)] = 166460,
- [SMALL_STATE(5898)] = 166468,
- [SMALL_STATE(5899)] = 166476,
- [SMALL_STATE(5900)] = 166484,
- [SMALL_STATE(5901)] = 166492,
- [SMALL_STATE(5902)] = 166500,
- [SMALL_STATE(5903)] = 166508,
- [SMALL_STATE(5904)] = 166516,
- [SMALL_STATE(5905)] = 166524,
- [SMALL_STATE(5906)] = 166532,
- [SMALL_STATE(5907)] = 166540,
- [SMALL_STATE(5908)] = 166548,
- [SMALL_STATE(5909)] = 166556,
- [SMALL_STATE(5910)] = 166564,
- [SMALL_STATE(5911)] = 166572,
- [SMALL_STATE(5912)] = 166580,
- [SMALL_STATE(5913)] = 166588,
- [SMALL_STATE(5914)] = 166596,
- [SMALL_STATE(5915)] = 166606,
- [SMALL_STATE(5916)] = 166614,
- [SMALL_STATE(5917)] = 166622,
- [SMALL_STATE(5918)] = 166630,
- [SMALL_STATE(5919)] = 166638,
- [SMALL_STATE(5920)] = 166646,
- [SMALL_STATE(5921)] = 166654,
- [SMALL_STATE(5922)] = 166662,
- [SMALL_STATE(5923)] = 166670,
- [SMALL_STATE(5924)] = 166678,
-};
-
-static const TSParseActionEntry ts_parse_actions[] = {
- [0] = {.entry = {.count = 0, .reusable = false}},
- [1] = {.entry = {.count = 1, .reusable = false}}, RECOVER(),
- [3] = {.entry = {.count = 1, .reusable = false}}, SHIFT_EXTRA(),
- [5] = {.entry = {.count = 1, .reusable = true}}, SHIFT_EXTRA(),
- [7] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_program, 0, 0, 0),
- [9] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1285),
- [11] = {.entry = {.count = 1, .reusable = true}}, SHIFT(18),
- [13] = {.entry = {.count = 1, .reusable = false}}, SHIFT(639),
- [15] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1239),
- [17] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1124),
- [19] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5),
- [21] = {.entry = {.count = 1, .reusable = false}}, SHIFT(497),
- [23] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2823),
- [25] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5187),
- [27] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3688),
- [29] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1128),
- [31] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3488),
- [33] = {.entry = {.count = 1, .reusable = true}}, SHIFT(497),
- [35] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5489),
- [37] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5358),
- [39] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4690),
- [41] = {.entry = {.count = 1, .reusable = true}}, SHIFT(187),
- [43] = {.entry = {.count = 1, .reusable = false}}, SHIFT(500),
- [45] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5389),
- [47] = {.entry = {.count = 1, .reusable = false}}, SHIFT(68),
- [49] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5293),
- [51] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4964),
- [53] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5140),
- [55] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5485),
- [57] = {.entry = {.count = 1, .reusable = false}}, SHIFT(294),
- [59] = {.entry = {.count = 1, .reusable = false}}, SHIFT(310),
- [61] = {.entry = {.count = 1, .reusable = true}}, SHIFT(725),
- [63] = {.entry = {.count = 1, .reusable = false}}, SHIFT(156),
- [65] = {.entry = {.count = 1, .reusable = true}}, SHIFT(199),
- [67] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4829),
- [69] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4454),
- [71] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4558),
- [73] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3219),
- [75] = {.entry = {.count = 1, .reusable = false}}, SHIFT(675),
- [77] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3568),
- [79] = {.entry = {.count = 1, .reusable = false}}, SHIFT(103),
- [81] = {.entry = {.count = 1, .reusable = false}}, SHIFT(389),
- [83] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5867),
- [85] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3449),
- [87] = {.entry = {.count = 1, .reusable = true}}, SHIFT(416),
- [89] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3779),
- [91] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2310),
- [93] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5729),
- [95] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2310),
- [97] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2315),
- [99] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4394),
- [101] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1263),
- [103] = {.entry = {.count = 1, .reusable = false}}, SHIFT(655),
- [105] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1125),
- [107] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5895),
- [109] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5782),
- [111] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5584),
- [113] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1206),
- [115] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1189),
- [117] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2883),
- [119] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_pattern, 1, -1, 1), SHIFT(448),
- [122] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_primary_expression, 1, 0, 1),
- [124] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1111),
- [126] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1095),
- [128] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 1), REDUCE(sym_pattern, 1, -1, 1),
- [131] = {.entry = {.count = 1, .reusable = false}}, SHIFT(274),
- [133] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4048),
- [135] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2885),
- [137] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1, 0, 1), SHIFT(442),
- [140] = {.entry = {.count = 1, .reusable = true}}, SHIFT(78),
- [142] = {.entry = {.count = 1, .reusable = false}}, SHIFT(443),
- [144] = {.entry = {.count = 1, .reusable = false}}, SHIFT(163),
- [146] = {.entry = {.count = 1, .reusable = true}}, SHIFT(49),
- [148] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4679),
- [150] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4443),
- [152] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4451),
- [154] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3240),
- [156] = {.entry = {.count = 1, .reusable = false}}, SHIFT(668),
- [158] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3699),
- [160] = {.entry = {.count = 1, .reusable = true}}, SHIFT(333),
- [162] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 1),
- [164] = {.entry = {.count = 1, .reusable = false}}, SHIFT(94),
- [166] = {.entry = {.count = 1, .reusable = false}}, SHIFT(446),
- [168] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__augmented_assignment_lhs, 1, 0, 1),
- [170] = {.entry = {.count = 1, .reusable = true}}, SHIFT(493),
- [172] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1047),
- [174] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1048),
- [176] = {.entry = {.count = 1, .reusable = false}}, SHIFT(507),
- [178] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1, 0, 1), SHIFT(5604),
- [181] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3452),
- [183] = {.entry = {.count = 1, .reusable = true}}, SHIFT(442),
- [185] = {.entry = {.count = 1, .reusable = false}}, SHIFT(224),
- [187] = {.entry = {.count = 1, .reusable = false}}, SHIFT(442),
- [189] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 1), SHIFT(420),
- [192] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3478),
- [194] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2271),
- [196] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5605),
- [198] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2050),
- [200] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1650),
- [202] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2271),
- [204] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1962),
- [206] = {.entry = {.count = 1, .reusable = false}}, SHIFT(175),
- [208] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1051),
- [210] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1235),
- [212] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5701),
- [214] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5702),
- [216] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1052),
- [218] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5704),
- [220] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2851),
- [222] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1310),
- [224] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_pattern, 1, -1, 1), SHIFT(421),
- [227] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pattern, 1, -1, 1),
- [229] = {.entry = {.count = 1, .reusable = true}}, SHIFT(327),
- [231] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1158),
- [233] = {.entry = {.count = 1, .reusable = false}}, SHIFT(628),
- [235] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2775),
- [237] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1132),
- [239] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1100),
- [241] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1434),
- [243] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2031),
- [245] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1101),
- [247] = {.entry = {.count = 1, .reusable = true}}, SHIFT(205),
- [249] = {.entry = {.count = 1, .reusable = false}}, SHIFT(632),
- [251] = {.entry = {.count = 1, .reusable = false}}, SHIFT(71),
- [253] = {.entry = {.count = 1, .reusable = true}}, SHIFT(591),
- [255] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2195),
- [257] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3918),
- [259] = {.entry = {.count = 1, .reusable = false}}, SHIFT(641),
- [261] = {.entry = {.count = 1, .reusable = false}}, SHIFT(644),
- [263] = {.entry = {.count = 1, .reusable = false}}, SHIFT(647),
- [265] = {.entry = {.count = 1, .reusable = false}}, SHIFT(636),
- [267] = {.entry = {.count = 1, .reusable = false}}, SHIFT(667),
- [269] = {.entry = {.count = 1, .reusable = false}}, SHIFT(659),
- [271] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1107),
- [273] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1160),
- [275] = {.entry = {.count = 1, .reusable = true}}, SHIFT(212),
- [277] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1924),
- [279] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1156),
- [281] = {.entry = {.count = 1, .reusable = false}}, SHIFT(629),
- [283] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1133),
- [285] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1106),
- [287] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1439),
- [289] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1108),
- [291] = {.entry = {.count = 1, .reusable = false}}, SHIFT(633),
- [293] = {.entry = {.count = 1, .reusable = false}}, SHIFT(69),
- [295] = {.entry = {.count = 1, .reusable = false}}, SHIFT(642),
- [297] = {.entry = {.count = 1, .reusable = false}}, SHIFT(650),
- [299] = {.entry = {.count = 1, .reusable = false}}, SHIFT(649),
- [301] = {.entry = {.count = 1, .reusable = false}}, SHIFT(634),
- [303] = {.entry = {.count = 1, .reusable = false}}, SHIFT(661),
- [305] = {.entry = {.count = 1, .reusable = false}}, SHIFT(662),
- [307] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1104),
- [309] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1157),
- [311] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1154),
- [313] = {.entry = {.count = 1, .reusable = false}}, SHIFT(630),
- [315] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1135),
- [317] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1102),
- [319] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1103),
- [321] = {.entry = {.count = 1, .reusable = false}}, SHIFT(631),
- [323] = {.entry = {.count = 1, .reusable = false}}, SHIFT(70),
- [325] = {.entry = {.count = 1, .reusable = false}}, SHIFT(640),
- [327] = {.entry = {.count = 1, .reusable = false}}, SHIFT(646),
- [329] = {.entry = {.count = 1, .reusable = false}}, SHIFT(643),
- [331] = {.entry = {.count = 1, .reusable = false}}, SHIFT(635),
- [333] = {.entry = {.count = 1, .reusable = false}}, SHIFT(664),
- [335] = {.entry = {.count = 1, .reusable = false}}, SHIFT(665),
- [337] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1105),
- [339] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1140),
- [341] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0),
- [343] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(1285),
- [346] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(639),
- [349] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0),
- [351] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(1239),
- [354] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(1124),
- [357] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(5),
- [360] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(497),
- [363] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(2823),
- [366] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(5187),
- [369] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(3688),
- [372] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(1128),
- [375] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(3488),
- [378] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(497),
- [381] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(5489),
- [384] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(5358),
- [387] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(4690),
- [390] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(187),
- [393] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(500),
- [396] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(5389),
- [399] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(68),
- [402] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(5293),
- [405] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(4964),
- [408] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(5140),
- [411] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(5485),
- [414] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(294),
- [417] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(310),
- [420] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(725),
- [423] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(156),
- [426] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(199),
- [429] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(4829),
- [432] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(4454),
- [435] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(4558),
- [438] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(3219),
- [441] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(675),
- [444] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(3568),
- [447] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(103),
- [450] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(389),
- [453] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(5867),
- [456] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(3449),
- [459] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(416),
- [462] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(3779),
- [465] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(2310),
- [468] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(5729),
- [471] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(2310),
- [474] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(2315),
- [477] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(4394),
- [480] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(1263),
- [483] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(655),
- [486] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(1125),
- [489] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(5895),
- [492] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(5782),
- [495] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(5584),
- [498] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_switch_default, 3, 0, 54),
- [500] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_switch_default, 3, 0, 54),
- [502] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_switch_case, 4, 0, 240),
- [504] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_switch_case, 4, 0, 240),
- [506] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_switch_case, 3, 0, 88),
- [508] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_switch_case, 3, 0, 88),
- [510] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_switch_default, 2, 0, 0),
- [512] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_switch_default, 2, 0, 0),
- [514] = {.entry = {.count = 1, .reusable = true}}, SHIFT(687),
- [516] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_program, 2, 0, 0),
- [518] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_program, 1, 0, 0),
- [520] = {.entry = {.count = 1, .reusable = true}}, SHIFT(683),
- [522] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1696),
- [524] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1716),
- [526] = {.entry = {.count = 1, .reusable = true}}, SHIFT(243),
- [528] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1500),
- [530] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1533),
- [532] = {.entry = {.count = 1, .reusable = true}}, SHIFT(226),
- [534] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2555),
- [536] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2557),
- [538] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2591),
- [540] = {.entry = {.count = 1, .reusable = true}}, SHIFT(704),
- [542] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2598),
- [544] = {.entry = {.count = 1, .reusable = true}}, SHIFT(694),
- [546] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1264),
- [548] = {.entry = {.count = 1, .reusable = false}}, SHIFT(638),
- [550] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1238),
- [552] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1129),
- [554] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4),
- [556] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5255),
- [558] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1123),
- [560] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5264),
- [562] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4712),
- [564] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5272),
- [566] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3222),
- [568] = {.entry = {.count = 1, .reusable = false}}, SHIFT(679),
- [570] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3582),
- [572] = {.entry = {.count = 1, .reusable = false}}, SHIFT(96),
- [574] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1265),
- [576] = {.entry = {.count = 1, .reusable = false}}, SHIFT(651),
- [578] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1117),
- [580] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1277),
- [582] = {.entry = {.count = 1, .reusable = false}}, SHIFT(637),
- [584] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1229),
- [586] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1130),
- [588] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5470),
- [590] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1127),
- [592] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5529),
- [594] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5129),
- [596] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5473),
- [598] = {.entry = {.count = 1, .reusable = false}}, SHIFT(680),
- [600] = {.entry = {.count = 1, .reusable = false}}, SHIFT(104),
- [602] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1278),
- [604] = {.entry = {.count = 1, .reusable = false}}, SHIFT(657),
- [606] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1131),
- [608] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1180),
- [610] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1191),
- [612] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2883),
- [614] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1109),
- [616] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1094),
- [618] = {.entry = {.count = 1, .reusable = true}}, SHIFT(225),
- [620] = {.entry = {.count = 1, .reusable = false}}, SHIFT(273),
- [622] = {.entry = {.count = 1, .reusable = true}}, SHIFT(600),
- [624] = {.entry = {.count = 1, .reusable = false}}, SHIFT(376),
- [626] = {.entry = {.count = 1, .reusable = false}}, SHIFT(155),
- [628] = {.entry = {.count = 1, .reusable = true}}, SHIFT(54),
- [630] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1592),
- [632] = {.entry = {.count = 1, .reusable = false}}, SHIFT(669),
- [634] = {.entry = {.count = 1, .reusable = false}}, SHIFT(122),
- [636] = {.entry = {.count = 1, .reusable = false}}, SHIFT(390),
- [638] = {.entry = {.count = 1, .reusable = true}}, SHIFT(152),
- [640] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1069),
- [642] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1070),
- [644] = {.entry = {.count = 1, .reusable = false}}, SHIFT(377),
- [646] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5604),
- [648] = {.entry = {.count = 1, .reusable = false}}, SHIFT(197),
- [650] = {.entry = {.count = 1, .reusable = false}}, SHIFT(600),
- [652] = {.entry = {.count = 1, .reusable = true}}, SHIFT(444),
- [654] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5547),
- [656] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2422),
- [658] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2325),
- [660] = {.entry = {.count = 1, .reusable = false}}, SHIFT(178),
- [662] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1072),
- [664] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1275),
- [666] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5920),
- [668] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5892),
- [670] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1073),
- [672] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1933),
- [674] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1823),
- [676] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1838),
- [678] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1965),
- [680] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1970),
- [682] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2174),
- [684] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2177),
- [686] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2401),
- [688] = {.entry = {.count = 1, .reusable = true}}, SHIFT(217),
- [690] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1827),
- [692] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1247),
- [694] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1253),
- [696] = {.entry = {.count = 1, .reusable = false}}, SHIFT(382),
- [698] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1126),
- [700] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1423),
- [702] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1653),
- [704] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__property_name, 1, 0, 7), SHIFT(38),
- [707] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5773),
- [709] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3246),
- [711] = {.entry = {.count = 1, .reusable = false}}, SHIFT(681),
- [713] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3663),
- [715] = {.entry = {.count = 1, .reusable = true}}, SHIFT(312),
- [717] = {.entry = {.count = 1, .reusable = false}}, SHIFT(98),
- [719] = {.entry = {.count = 1, .reusable = true}}, SHIFT(420),
- [721] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1978),
- [723] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__property_name, 1, 0, 7),
- [725] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1664),
- [727] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1977),
- [729] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1184),
- [731] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1093),
- [733] = {.entry = {.count = 1, .reusable = false}}, SHIFT(290),
- [735] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5037),
- [737] = {.entry = {.count = 1, .reusable = true}}, SHIFT(53),
- [739] = {.entry = {.count = 1, .reusable = false}}, SHIFT(101),
- [741] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1047),
- [743] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1048),
- [745] = {.entry = {.count = 1, .reusable = false}}, SHIFT(609),
- [747] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3460),
- [749] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2155),
- [751] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1991),
- [753] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2155),
- [755] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1993),
- [757] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3957),
- [759] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2),
- [761] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1051),
- [763] = {.entry = {.count = 1, .reusable = false}}, SHIFT(280),
- [765] = {.entry = {.count = 1, .reusable = false}}, SHIFT(282),
- [767] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1222),
- [769] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1192),
- [771] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1421),
- [773] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 1), SHIFT(186),
- [776] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 1), SHIFT(201),
- [779] = {.entry = {.count = 1, .reusable = false}}, SHIFT(90),
- [781] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1, 0, 1), SHIFT(3452),
- [784] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 1), SHIFT(3868),
- [787] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1650),
- [789] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2125),
- [791] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1794),
- [793] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pattern, 1, -1, 1),
- [795] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2235),
- [797] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2236),
- [799] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2238),
- [801] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2312),
- [803] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2272),
- [805] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2311),
- [807] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1215),
- [809] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1240),
- [811] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1113),
- [813] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1425),
- [815] = {.entry = {.count = 1, .reusable = true}}, SHIFT(186),
- [817] = {.entry = {.count = 1, .reusable = true}}, SHIFT(200),
- [819] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5705),
- [821] = {.entry = {.count = 1, .reusable = false}}, SHIFT(671),
- [823] = {.entry = {.count = 1, .reusable = false}}, SHIFT(91),
- [825] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3868),
- [827] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1553),
- [829] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1961),
- [831] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3),
- [833] = {.entry = {.count = 1, .reusable = false}}, SHIFT(278),
- [835] = {.entry = {.count = 1, .reusable = false}}, SHIFT(284),
- [837] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1366),
- [839] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1375),
- [841] = {.entry = {.count = 1, .reusable = false}}, SHIFT(421),
- [843] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1195),
- [845] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1422),
- [847] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_rest_pattern, 2, 0, 28),
- [849] = {.entry = {.count = 1, .reusable = true}}, SHIFT(202),
- [851] = {.entry = {.count = 1, .reusable = false}}, SHIFT(729),
- [853] = {.entry = {.count = 1, .reusable = false}}, SHIFT(142),
- [855] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_rest_pattern, 2, 0, 28),
- [857] = {.entry = {.count = 1, .reusable = false}}, SHIFT(448),
- [859] = {.entry = {.count = 1, .reusable = false}}, SHIFT(385),
- [861] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1, 0, 1), SHIFT(302),
- [864] = {.entry = {.count = 1, .reusable = false}}, SHIFT(302),
- [866] = {.entry = {.count = 1, .reusable = true}}, SHIFT(39),
- [868] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1254),
- [870] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1250),
- [872] = {.entry = {.count = 1, .reusable = false}}, SHIFT(447),
- [874] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1121),
- [876] = {.entry = {.count = 1, .reusable = false}}, SHIFT(673),
- [878] = {.entry = {.count = 1, .reusable = true}}, SHIFT(334),
- [880] = {.entry = {.count = 1, .reusable = false}}, SHIFT(99),
- [882] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5644),
- [884] = {.entry = {.count = 1, .reusable = true}}, SHIFT(38),
- [886] = {.entry = {.count = 1, .reusable = true}}, SHIFT(59),
- [888] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 1), REDUCE(sym_rest_pattern, 2, 0, 28),
- [891] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1339),
- [893] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1334),
- [895] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_pattern, 1, -1, 1), SHIFT(504),
- [898] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1177),
- [900] = {.entry = {.count = 1, .reusable = true}}, SHIFT(988),
- [902] = {.entry = {.count = 1, .reusable = false}}, SHIFT(708),
- [904] = {.entry = {.count = 1, .reusable = true}}, SHIFT(348),
- [906] = {.entry = {.count = 1, .reusable = false}}, SHIFT(128),
- [908] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1305),
- [910] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1299),
- [912] = {.entry = {.count = 1, .reusable = false}}, SHIFT(578),
- [914] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1134),
- [916] = {.entry = {.count = 1, .reusable = false}}, SHIFT(685),
- [918] = {.entry = {.count = 1, .reusable = true}}, SHIFT(361),
- [920] = {.entry = {.count = 1, .reusable = false}}, SHIFT(110),
- [922] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5706),
- [924] = {.entry = {.count = 1, .reusable = true}}, SHIFT(313),
- [926] = {.entry = {.count = 1, .reusable = false}}, SHIFT(504),
- [928] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1314),
- [930] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1326),
- [932] = {.entry = {.count = 1, .reusable = false}}, SHIFT(392),
- [934] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1138),
- [936] = {.entry = {.count = 1, .reusable = false}}, SHIFT(692),
- [938] = {.entry = {.count = 1, .reusable = false}}, SHIFT(111),
- [940] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1029),
- [942] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1324),
- [944] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1307),
- [946] = {.entry = {.count = 1, .reusable = false}}, SHIFT(472),
- [948] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1145),
- [950] = {.entry = {.count = 1, .reusable = false}}, SHIFT(688),
- [952] = {.entry = {.count = 1, .reusable = true}}, SHIFT(340),
- [954] = {.entry = {.count = 1, .reusable = false}}, SHIFT(119),
- [956] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1341),
- [958] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1337),
- [960] = {.entry = {.count = 1, .reusable = false}}, SHIFT(541),
- [962] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1170),
- [964] = {.entry = {.count = 1, .reusable = false}}, SHIFT(712),
- [966] = {.entry = {.count = 1, .reusable = true}}, SHIFT(354),
- [968] = {.entry = {.count = 1, .reusable = false}}, SHIFT(130),
- [970] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5796),
- [972] = {.entry = {.count = 1, .reusable = false}}, SHIFT(413),
- [974] = {.entry = {.count = 1, .reusable = false}}, SHIFT(525),
- [976] = {.entry = {.count = 1, .reusable = false}}, SHIFT(491),
- [978] = {.entry = {.count = 1, .reusable = false}}, SHIFT(558),
- [980] = {.entry = {.count = 1, .reusable = false}}, SHIFT(602),
- [982] = {.entry = {.count = 1, .reusable = false}}, SHIFT(438),
- [984] = {.entry = {.count = 1, .reusable = false}}, SHIFT(467),
- [986] = {.entry = {.count = 1, .reusable = false}}, SHIFT(598),
- [988] = {.entry = {.count = 1, .reusable = false}}, SHIFT(611),
- [990] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1175),
- [992] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3149),
- [994] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1088),
- [996] = {.entry = {.count = 1, .reusable = false}}, SHIFT(279),
- [998] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3195),
- [1000] = {.entry = {.count = 1, .reusable = true}}, SHIFT(72),
- [1002] = {.entry = {.count = 1, .reusable = true}}, SHIFT(58),
- [1004] = {.entry = {.count = 1, .reusable = false}}, SHIFT(113),
- [1006] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1034),
- [1008] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1035),
- [1010] = {.entry = {.count = 1, .reusable = false}}, SHIFT(386),
- [1012] = {.entry = {.count = 1, .reusable = false}}, SHIFT(211),
- [1014] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3486),
- [1016] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1972),
- [1018] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1974),
- [1020] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1972),
- [1022] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1822),
- [1024] = {.entry = {.count = 1, .reusable = false}}, SHIFT(180),
- [1026] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1043),
- [1028] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1188),
- [1030] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5849),
- [1032] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5817),
- [1034] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1045),
- [1036] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5818),
- [1038] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3097),
- [1040] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1321),
- [1042] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1284),
- [1044] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1216),
- [1046] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1114),
- [1048] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1091),
- [1050] = {.entry = {.count = 1, .reusable = true}}, SHIFT(57),
- [1052] = {.entry = {.count = 1, .reusable = false}}, SHIFT(672),
- [1054] = {.entry = {.count = 1, .reusable = false}}, SHIFT(92),
- [1056] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2506),
- [1058] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2403),
- [1060] = {.entry = {.count = 1, .reusable = false}}, SHIFT(164),
- [1062] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1306),
- [1064] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1182),
- [1066] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1090),
- [1068] = {.entry = {.count = 1, .reusable = false}}, SHIFT(285),
- [1070] = {.entry = {.count = 1, .reusable = true}}, SHIFT(44),
- [1072] = {.entry = {.count = 1, .reusable = false}}, SHIFT(608),
- [1074] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3468),
- [1076] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1668),
- [1078] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1670),
- [1080] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1668),
- [1082] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1805),
- [1084] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1202),
- [1086] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1296),
- [1088] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1089),
- [1090] = {.entry = {.count = 1, .reusable = false}}, SHIFT(267),
- [1092] = {.entry = {.count = 1, .reusable = true}}, SHIFT(50),
- [1094] = {.entry = {.count = 1, .reusable = false}}, SHIFT(136),
- [1096] = {.entry = {.count = 1, .reusable = false}}, SHIFT(440),
- [1098] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3450),
- [1100] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1945),
- [1102] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1927),
- [1104] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1945),
- [1106] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2474),
- [1108] = {.entry = {.count = 1, .reusable = false}}, SHIFT(185),
- [1110] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1312),
- [1112] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1281),
- [1114] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1333),
- [1116] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1181),
- [1118] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1099),
- [1120] = {.entry = {.count = 1, .reusable = false}}, SHIFT(281),
- [1122] = {.entry = {.count = 1, .reusable = true}}, SHIFT(534),
- [1124] = {.entry = {.count = 1, .reusable = false}}, SHIFT(535),
- [1126] = {.entry = {.count = 1, .reusable = false}}, SHIFT(161),
- [1128] = {.entry = {.count = 1, .reusable = false}}, SHIFT(710),
- [1130] = {.entry = {.count = 1, .reusable = false}}, SHIFT(126),
- [1132] = {.entry = {.count = 1, .reusable = false}}, SHIFT(537),
- [1134] = {.entry = {.count = 1, .reusable = false}}, SHIFT(529),
- [1136] = {.entry = {.count = 1, .reusable = false}}, SHIFT(264),
- [1138] = {.entry = {.count = 1, .reusable = false}}, SHIFT(534),
- [1140] = {.entry = {.count = 1, .reusable = true}}, SHIFT(621),
- [1142] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5764),
- [1144] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2467),
- [1146] = {.entry = {.count = 1, .reusable = false}}, SHIFT(183),
- [1148] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1303),
- [1150] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1236),
- [1152] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1308),
- [1154] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1153),
- [1156] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1096),
- [1158] = {.entry = {.count = 1, .reusable = false}}, SHIFT(287),
- [1160] = {.entry = {.count = 1, .reusable = true}}, SHIFT(573),
- [1162] = {.entry = {.count = 1, .reusable = true}}, SHIFT(80),
- [1164] = {.entry = {.count = 1, .reusable = false}}, SHIFT(574),
- [1166] = {.entry = {.count = 1, .reusable = false}}, SHIFT(158),
- [1168] = {.entry = {.count = 1, .reusable = true}}, SHIFT(55),
- [1170] = {.entry = {.count = 1, .reusable = false}}, SHIFT(695),
- [1172] = {.entry = {.count = 1, .reusable = false}}, SHIFT(116),
- [1174] = {.entry = {.count = 1, .reusable = false}}, SHIFT(622),
- [1176] = {.entry = {.count = 1, .reusable = false}}, SHIFT(417),
- [1178] = {.entry = {.count = 1, .reusable = false}}, SHIFT(250),
- [1180] = {.entry = {.count = 1, .reusable = false}}, SHIFT(573),
- [1182] = {.entry = {.count = 1, .reusable = true}}, SHIFT(575),
- [1184] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3467),
- [1186] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2425),
- [1188] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5565),
- [1190] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2402),
- [1192] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2425),
- [1194] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2129),
- [1196] = {.entry = {.count = 1, .reusable = false}}, SHIFT(179),
- [1198] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1279),
- [1200] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1199),
- [1202] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1270),
- [1204] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1116),
- [1206] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1092),
- [1208] = {.entry = {.count = 1, .reusable = false}}, SHIFT(272),
- [1210] = {.entry = {.count = 1, .reusable = true}}, SHIFT(617),
- [1212] = {.entry = {.count = 1, .reusable = false}}, SHIFT(618),
- [1214] = {.entry = {.count = 1, .reusable = false}}, SHIFT(157),
- [1216] = {.entry = {.count = 1, .reusable = true}}, SHIFT(51),
- [1218] = {.entry = {.count = 1, .reusable = false}}, SHIFT(677),
- [1220] = {.entry = {.count = 1, .reusable = false}}, SHIFT(100),
- [1222] = {.entry = {.count = 1, .reusable = false}}, SHIFT(625),
- [1224] = {.entry = {.count = 1, .reusable = false}}, SHIFT(469),
- [1226] = {.entry = {.count = 1, .reusable = false}}, SHIFT(258),
- [1228] = {.entry = {.count = 1, .reusable = false}}, SHIFT(617),
- [1230] = {.entry = {.count = 1, .reusable = true}}, SHIFT(391),
- [1232] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3458),
- [1234] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1951),
- [1236] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5826),
- [1238] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1956),
- [1240] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1951),
- [1242] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2047),
- [1244] = {.entry = {.count = 1, .reusable = false}}, SHIFT(173),
- [1246] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1224),
- [1248] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1226),
- [1250] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1317),
- [1252] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1141),
- [1254] = {.entry = {.count = 1, .reusable = false}}, SHIFT(276),
- [1256] = {.entry = {.count = 1, .reusable = true}}, SHIFT(498),
- [1258] = {.entry = {.count = 1, .reusable = false}}, SHIFT(499),
- [1260] = {.entry = {.count = 1, .reusable = false}}, SHIFT(160),
- [1262] = {.entry = {.count = 1, .reusable = false}}, SHIFT(702),
- [1264] = {.entry = {.count = 1, .reusable = false}}, SHIFT(118),
- [1266] = {.entry = {.count = 1, .reusable = false}}, SHIFT(501),
- [1268] = {.entry = {.count = 1, .reusable = false}}, SHIFT(494),
- [1270] = {.entry = {.count = 1, .reusable = false}}, SHIFT(259),
- [1272] = {.entry = {.count = 1, .reusable = false}}, SHIFT(498),
- [1274] = {.entry = {.count = 1, .reusable = true}}, SHIFT(620),
- [1276] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5552),
- [1278] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2344),
- [1280] = {.entry = {.count = 1, .reusable = false}}, SHIFT(177),
- [1282] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1276),
- [1284] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1220),
- [1286] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1295),
- [1288] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1136),
- [1290] = {.entry = {.count = 1, .reusable = false}}, SHIFT(269),
- [1292] = {.entry = {.count = 1, .reusable = true}}, SHIFT(606),
- [1294] = {.entry = {.count = 1, .reusable = false}}, SHIFT(607),
- [1296] = {.entry = {.count = 1, .reusable = false}}, SHIFT(159),
- [1298] = {.entry = {.count = 1, .reusable = false}}, SHIFT(684),
- [1300] = {.entry = {.count = 1, .reusable = false}}, SHIFT(121),
- [1302] = {.entry = {.count = 1, .reusable = false}}, SHIFT(613),
- [1304] = {.entry = {.count = 1, .reusable = false}}, SHIFT(601),
- [1306] = {.entry = {.count = 1, .reusable = false}}, SHIFT(257),
- [1308] = {.entry = {.count = 1, .reusable = false}}, SHIFT(606),
- [1310] = {.entry = {.count = 1, .reusable = true}}, SHIFT(577),
- [1312] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5742),
- [1314] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2334),
- [1316] = {.entry = {.count = 1, .reusable = false}}, SHIFT(181),
- [1318] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1273),
- [1320] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1232),
- [1322] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1343),
- [1324] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1173),
- [1326] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1098),
- [1328] = {.entry = {.count = 1, .reusable = false}}, SHIFT(266),
- [1330] = {.entry = {.count = 1, .reusable = true}}, SHIFT(56),
- [1332] = {.entry = {.count = 1, .reusable = false}}, SHIFT(713),
- [1334] = {.entry = {.count = 1, .reusable = false}}, SHIFT(124),
- [1336] = {.entry = {.count = 1, .reusable = false}}, SHIFT(383),
- [1338] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3477),
- [1340] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2485),
- [1342] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2486),
- [1344] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2485),
- [1346] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2256),
- [1348] = {.entry = {.count = 1, .reusable = false}}, SHIFT(182),
- [1350] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1274),
- [1352] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1241),
- [1354] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1249),
- [1356] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1118),
- [1358] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1097),
- [1360] = {.entry = {.count = 1, .reusable = false}}, SHIFT(674),
- [1362] = {.entry = {.count = 1, .reusable = false}}, SHIFT(106),
- [1364] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2157),
- [1366] = {.entry = {.count = 1, .reusable = false}}, SHIFT(176),
- [1368] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1248),
- [1370] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1213),
- [1372] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1283),
- [1374] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1120),
- [1376] = {.entry = {.count = 1, .reusable = false}}, SHIFT(283),
- [1378] = {.entry = {.count = 1, .reusable = false}}, SHIFT(678),
- [1380] = {.entry = {.count = 1, .reusable = false}}, SHIFT(102),
- [1382] = {.entry = {.count = 1, .reusable = false}}, SHIFT(623),
- [1384] = {.entry = {.count = 1, .reusable = false}}, SHIFT(260),
- [1386] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1959),
- [1388] = {.entry = {.count = 1, .reusable = false}}, SHIFT(174),
- [1390] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1246),
- [1392] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1282),
- [1394] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1335),
- [1396] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1169),
- [1398] = {.entry = {.count = 1, .reusable = false}}, SHIFT(271),
- [1400] = {.entry = {.count = 1, .reusable = true}}, SHIFT(566),
- [1402] = {.entry = {.count = 1, .reusable = false}}, SHIFT(567),
- [1404] = {.entry = {.count = 1, .reusable = false}}, SHIFT(162),
- [1406] = {.entry = {.count = 1, .reusable = false}}, SHIFT(707),
- [1408] = {.entry = {.count = 1, .reusable = false}}, SHIFT(125),
- [1410] = {.entry = {.count = 1, .reusable = false}}, SHIFT(569),
- [1412] = {.entry = {.count = 1, .reusable = false}}, SHIFT(562),
- [1414] = {.entry = {.count = 1, .reusable = false}}, SHIFT(252),
- [1416] = {.entry = {.count = 1, .reusable = false}}, SHIFT(566),
- [1418] = {.entry = {.count = 1, .reusable = true}}, SHIFT(471),
- [1420] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5902),
- [1422] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2468),
- [1424] = {.entry = {.count = 1, .reusable = false}}, SHIFT(184),
- [1426] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1304),
- [1428] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1217),
- [1430] = {.entry = {.count = 1, .reusable = false}}, SHIFT(495),
- [1432] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_yield_expression, 1, 0, 0),
- [1434] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_yield_expression, 1, 0, 0),
- [1436] = {.entry = {.count = 1, .reusable = false}}, SHIFT(93),
- [1438] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1943),
- [1440] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1262),
- [1442] = {.entry = {.count = 1, .reusable = false}}, SHIFT(616),
- [1444] = {.entry = {.count = 1, .reusable = false}}, SHIFT(105),
- [1446] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1280),
- [1448] = {.entry = {.count = 1, .reusable = false}}, SHIFT(449),
- [1450] = {.entry = {.count = 1, .reusable = false}}, SHIFT(97),
- [1452] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2377),
- [1454] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1328),
- [1456] = {.entry = {.count = 1, .reusable = false}}, SHIFT(394),
- [1458] = {.entry = {.count = 1, .reusable = false}}, SHIFT(115),
- [1460] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2496),
- [1462] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1287),
- [1464] = {.entry = {.count = 1, .reusable = false}}, SHIFT(579),
- [1466] = {.entry = {.count = 1, .reusable = false}}, SHIFT(109),
- [1468] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2469),
- [1470] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1319),
- [1472] = {.entry = {.count = 1, .reusable = false}}, SHIFT(473),
- [1474] = {.entry = {.count = 1, .reusable = false}}, SHIFT(120),
- [1476] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2509),
- [1478] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1331),
- [1480] = {.entry = {.count = 1, .reusable = false}}, SHIFT(505),
- [1482] = {.entry = {.count = 1, .reusable = false}}, SHIFT(127),
- [1484] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2546),
- [1486] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1340),
- [1488] = {.entry = {.count = 1, .reusable = false}}, SHIFT(542),
- [1490] = {.entry = {.count = 1, .reusable = false}}, SHIFT(129),
- [1492] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2548),
- [1494] = {.entry = {.count = 1, .reusable = false}}, SHIFT(422),
- [1496] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2824),
- [1498] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1310),
- [1500] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3457),
- [1502] = {.entry = {.count = 1, .reusable = true}}, SHIFT(89),
- [1504] = {.entry = {.count = 1, .reusable = true}}, SHIFT(847),
- [1506] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4504),
- [1508] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4505),
- [1510] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4489),
- [1512] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5690),
- [1514] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4779),
- [1516] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4366),
- [1518] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2889),
- [1520] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2890),
- [1522] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2889),
- [1524] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1050),
- [1526] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1289),
- [1528] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3899),
- [1530] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3553),
- [1532] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1143),
- [1534] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3451),
- [1536] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3234),
- [1538] = {.entry = {.count = 1, .reusable = false}}, SHIFT(705),
- [1540] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3690),
- [1542] = {.entry = {.count = 1, .reusable = false}}, SHIFT(660),
- [1544] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1155),
- [1546] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5567),
- [1548] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5620),
- [1550] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5621),
- [1552] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1291),
- [1554] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1151),
- [1556] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3869),
- [1558] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1161),
- [1560] = {.entry = {.count = 1, .reusable = false}}, SHIFT(696),
- [1562] = {.entry = {.count = 1, .reusable = false}}, SHIFT(663),
- [1564] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1159),
- [1566] = {.entry = {.count = 1, .reusable = false}}, SHIFT(700),
- [1568] = {.entry = {.count = 1, .reusable = false}}, SHIFT(666),
- [1570] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1167),
- [1572] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4554),
- [1574] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1069),
- [1576] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1070),
- [1578] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1071),
- [1580] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1072),
- [1582] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2957),
- [1584] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3149),
- [1586] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1321),
- [1588] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3461),
- [1590] = {.entry = {.count = 1, .reusable = true}}, SHIFT(84),
- [1592] = {.entry = {.count = 1, .reusable = true}}, SHIFT(783),
- [1594] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4438),
- [1596] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4440),
- [1598] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4484),
- [1600] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1034),
- [1602] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1035),
- [1604] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5811),
- [1606] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4099),
- [1608] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3160),
- [1610] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3159),
- [1612] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3160),
- [1614] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1042),
- [1616] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1043),
- [1618] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1214),
- [1620] = {.entry = {.count = 1, .reusable = false}}, SHIFT(83),
- [1622] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2225),
- [1624] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1841),
- [1626] = {.entry = {.count = 1, .reusable = false}}, SHIFT(79),
- [1628] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3552),
- [1630] = {.entry = {.count = 1, .reusable = true}}, SHIFT(201),
- [1632] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2134),
- [1634] = {.entry = {.count = 1, .reusable = false}}, SHIFT(77),
- [1636] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3497),
- [1638] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3835),
- [1640] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3635),
- [1642] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4669),
- [1644] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3861),
- [1646] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3732),
- [1648] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4919),
- [1650] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_predefined_type, 1, 0, 0),
- [1652] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_predefined_type, 1, 0, 0),
- [1654] = {.entry = {.count = 1, .reusable = true}}, SHIFT(227),
- [1656] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2114),
- [1658] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1649),
- [1660] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1818),
- [1662] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1707),
- [1664] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2150),
- [1666] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2518),
- [1668] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2475),
- [1670] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1267),
- [1672] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1261),
- [1674] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1122),
- [1676] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1419),
- [1678] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3501),
- [1680] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1119),
- [1682] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3519),
- [1684] = {.entry = {.count = 1, .reusable = true}}, SHIFT(203),
- [1686] = {.entry = {.count = 1, .reusable = false}}, SHIFT(676),
- [1688] = {.entry = {.count = 1, .reusable = false}}, SHIFT(95),
- [1690] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2307),
- [1692] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1302),
- [1694] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1286),
- [1696] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1137),
- [1698] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1424),
- [1700] = {.entry = {.count = 1, .reusable = true}}, SHIFT(248),
- [1702] = {.entry = {.count = 1, .reusable = true}}, SHIFT(206),
- [1704] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4403),
- [1706] = {.entry = {.count = 1, .reusable = false}}, SHIFT(682),
- [1708] = {.entry = {.count = 1, .reusable = false}}, SHIFT(107),
- [1710] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2510),
- [1712] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__module, 1, 0, 5),
- [1714] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__module, 1, 0, 5),
- [1716] = {.entry = {.count = 1, .reusable = true}}, SHIFT(24),
- [1718] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5810),
- [1720] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_statement_block, 2, 0, 0),
- [1722] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_statement_block, 2, 0, 0),
- [1724] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object, 2, 0, 0),
- [1726] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object_pattern, 2, 0, 0),
- [1728] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object, 2, 0, 0),
- [1730] = {.entry = {.count = 1, .reusable = true}}, SHIFT(701),
- [1732] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5648),
- [1734] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 5, 0, 195),
- [1736] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 5, 0, 195),
- [1738] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class, 5, 0, 195),
- [1740] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class, 5, 0, 195),
- [1742] = {.entry = {.count = 1, .reusable = true}}, SHIFT(843),
- [1744] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_array_repeat1, 1, 0, 0), REDUCE(aux_sym_array_pattern_repeat1, 1, 0, 0),
- [1747] = {.entry = {.count = 3, .reusable = true}}, REDUCE(aux_sym_array_repeat1, 1, 0, 0), REDUCE(aux_sym_array_pattern_repeat1, 1, 0, 0), SHIFT(3158),
- [1751] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_statement_block, 4, 0, 0),
- [1753] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_statement_block, 4, 0, 0),
- [1755] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 5, 0, 181),
- [1757] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 5, 0, 181),
- [1759] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_expression, 5, 0, 181),
- [1761] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_expression, 5, 0, 181),
- [1763] = {.entry = {.count = 1, .reusable = true}}, SHIFT(835),
- [1765] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_body, 3, 0, 105),
- [1767] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_body, 3, 0, 105),
- [1769] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 4, 0, 126),
- [1771] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 4, 0, 126),
- [1773] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_expression, 4, 0, 126),
- [1775] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_expression, 4, 0, 126),
- [1777] = {.entry = {.count = 1, .reusable = true}}, SHIFT(813),
- [1779] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__module, 2, 0, 25),
- [1781] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__module, 2, 0, 25),
- [1783] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_declaration, 1, 0, 0),
- [1785] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_declaration, 1, 0, 0),
- [1787] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expression, 1, 0, 0),
- [1789] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expression, 1, 0, 0),
- [1791] = {.entry = {.count = 3, .reusable = true}}, REDUCE(aux_sym_array_repeat1, 1, 0, 0), REDUCE(aux_sym_array_pattern_repeat1, 1, 0, 0), SHIFT(2872),
- [1795] = {.entry = {.count = 1, .reusable = true}}, SHIFT(239),
- [1797] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_nested_identifier, 3, 0, 70),
- [1799] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_nested_identifier, 3, 0, 70),
- [1801] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 4, 0, 106),
- [1803] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 4, 0, 106),
- [1805] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class, 4, 0, 106),
- [1807] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class, 4, 0, 106),
- [1809] = {.entry = {.count = 1, .reusable = true}}, SHIFT(807),
- [1811] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 5, 0, 166),
- [1813] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 5, 0, 166),
- [1815] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class, 5, 0, 166),
- [1817] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class, 5, 0, 166),
- [1819] = {.entry = {.count = 1, .reusable = true}}, SHIFT(834),
- [1821] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_string, 3, 0, 0),
- [1823] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_string, 3, 0, 0),
- [1825] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 4, 0, 147),
- [1827] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 4, 0, 147),
- [1829] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class, 4, 0, 147),
- [1831] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class, 4, 0, 147),
- [1833] = {.entry = {.count = 1, .reusable = true}}, SHIFT(822),
- [1835] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 4, 0, 107),
- [1837] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 4, 0, 107),
- [1839] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class, 4, 0, 107),
- [1841] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class, 4, 0, 107),
- [1843] = {.entry = {.count = 1, .reusable = true}}, SHIFT(869),
- [1845] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generator_function_declaration, 5, 0, 181),
- [1847] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generator_function_declaration, 5, 0, 181),
- [1849] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generator_function, 5, 0, 181),
- [1851] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generator_function, 5, 0, 181),
- [1853] = {.entry = {.count = 1, .reusable = true}}, SHIFT(836),
- [1855] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_nested_identifier, 3, 0, 83),
- [1857] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_nested_identifier, 3, 0, 83),
- [1859] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 5, 0, 194),
- [1861] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 5, 0, 194),
- [1863] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class, 5, 0, 194),
- [1865] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class, 5, 0, 194),
- [1867] = {.entry = {.count = 1, .reusable = true}}, SHIFT(842),
- [1869] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3669),
- [1871] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_statement_block, 3, 0, 0),
- [1873] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_statement_block, 3, 0, 0),
- [1875] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 3, 0, 46),
- [1877] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 3, 0, 46),
- [1879] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class, 3, 0, 46),
- [1881] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class, 3, 0, 46),
- [1883] = {.entry = {.count = 1, .reusable = true}}, SHIFT(774),
- [1885] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generator_function_declaration, 6, 0, 229),
- [1887] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generator_function_declaration, 6, 0, 229),
- [1889] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generator_function, 6, 0, 229),
- [1891] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generator_function, 6, 0, 229),
- [1893] = {.entry = {.count = 1, .reusable = true}}, SHIFT(848),
- [1895] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 6, 0, 235),
- [1897] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 6, 0, 235),
- [1899] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class, 6, 0, 235),
- [1901] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class, 6, 0, 235),
- [1903] = {.entry = {.count = 1, .reusable = true}}, SHIFT(852),
- [1905] = {.entry = {.count = 1, .reusable = true}}, SHIFT(218),
- [1907] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1318),
- [1909] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1313),
- [1911] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1163),
- [1913] = {.entry = {.count = 1, .reusable = false}}, SHIFT(698),
- [1915] = {.entry = {.count = 1, .reusable = false}}, SHIFT(112),
- [1917] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_string, 2, 0, 0),
- [1919] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_string, 2, 0, 0),
- [1921] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_body, 2, 0, 0),
- [1923] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_body, 2, 0, 0),
- [1925] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_internal_module, 2, 0, 6),
- [1927] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_internal_module, 2, 0, 6),
- [1929] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_array_pattern_repeat1, 1, 0, 0),
- [1931] = {.entry = {.count = 1, .reusable = true}}, SHIFT(261),
- [1933] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1437),
- [1935] = {.entry = {.count = 1, .reusable = true}}, SHIFT(615),
- [1937] = {.entry = {.count = 1, .reusable = true}}, SHIFT(913),
- [1939] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3247),
- [1941] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2371),
- [1943] = {.entry = {.count = 1, .reusable = false}}, SHIFT(73),
- [1945] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3209),
- [1947] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3476),
- [1949] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3012),
- [1951] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_array_repeat1, 1, 0, 0),
- [1953] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1801),
- [1955] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2484),
- [1957] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2126),
- [1959] = {.entry = {.count = 1, .reusable = false}}, SHIFT(75),
- [1961] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1237),
- [1963] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2409),
- [1965] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1266),
- [1967] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1591),
- [1969] = {.entry = {.count = 1, .reusable = false}}, SHIFT(81),
- [1971] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1205),
- [1973] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3931),
- [1975] = {.entry = {.count = 1, .reusable = true}}, SHIFT(415),
- [1977] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1219),
- [1979] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1172),
- [1981] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2008),
- [1983] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1211),
- [1985] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1268),
- [1987] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2328),
- [1989] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1193),
- [1991] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_accessibility_modifier, 1, 0, 0),
- [1993] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_accessibility_modifier, 1, 0, 0),
- [1995] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1152),
- [1997] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1950),
- [1999] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1218),
- [2001] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_override_modifier, 1, 0, 0),
- [2003] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_override_modifier, 1, 0, 0),
- [2005] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1171),
- [2007] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1164),
- [2009] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1187),
- [2011] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1168),
- [2013] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3741),
- [2015] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2237),
- [2017] = {.entry = {.count = 1, .reusable = false}}, SHIFT(82),
- [2019] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2130),
- [2021] = {.entry = {.count = 1, .reusable = false}}, SHIFT(76),
- [2023] = {.entry = {.count = 1, .reusable = true}}, SHIFT(771),
- [2025] = {.entry = {.count = 1, .reusable = false}}, SHIFT(74),
- [2027] = {.entry = {.count = 1, .reusable = true}}, SHIFT(65),
- [2029] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1332),
- [2031] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1342),
- [2033] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1176),
- [2035] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1420),
- [2037] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3723),
- [2039] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1200),
- [2041] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3902),
- [2043] = {.entry = {.count = 1, .reusable = true}}, SHIFT(204),
- [2045] = {.entry = {.count = 1, .reusable = false}}, SHIFT(714),
- [2047] = {.entry = {.count = 1, .reusable = false}}, SHIFT(123),
- [2049] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2535),
- [2051] = {.entry = {.count = 1, .reusable = true}}, SHIFT(33),
- [2053] = {.entry = {.count = 1, .reusable = true}}, SHIFT(46),
- [2055] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6),
- [2057] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1316),
- [2059] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1325),
- [2061] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1166),
- [2063] = {.entry = {.count = 1, .reusable = false}}, SHIFT(693),
- [2065] = {.entry = {.count = 1, .reusable = false}}, SHIFT(117),
- [2067] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7),
- [2069] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8),
- [2071] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1311),
- [2073] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1330),
- [2075] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1142),
- [2077] = {.entry = {.count = 1, .reusable = false}}, SHIFT(697),
- [2079] = {.entry = {.count = 1, .reusable = false}}, SHIFT(114),
- [2081] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2410),
- [2083] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1952),
- [2085] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1370),
- [2087] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1382),
- [2089] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1185),
- [2091] = {.entry = {.count = 1, .reusable = false}}, SHIFT(744),
- [2093] = {.entry = {.count = 1, .reusable = false}}, SHIFT(140),
- [2095] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2570),
- [2097] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1380),
- [2099] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1371),
- [2101] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1198),
- [2103] = {.entry = {.count = 1, .reusable = false}}, SHIFT(727),
- [2105] = {.entry = {.count = 1, .reusable = false}}, SHIFT(135),
- [2107] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2599),
- [2109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1891),
- [2111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1596),
- [2113] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1365),
- [2115] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1384),
- [2117] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1186),
- [2119] = {.entry = {.count = 1, .reusable = false}}, SHIFT(726),
- [2121] = {.entry = {.count = 1, .reusable = false}}, SHIFT(137),
- [2123] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2576),
- [2125] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1209),
- [2127] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1204),
- [2129] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1110),
- [2131] = {.entry = {.count = 1, .reusable = false}}, SHIFT(670),
- [2133] = {.entry = {.count = 1, .reusable = false}}, SHIFT(85),
- [2135] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1795),
- [2137] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1368),
- [2139] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1386),
- [2141] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1196),
- [2143] = {.entry = {.count = 1, .reusable = false}}, SHIFT(740),
- [2145] = {.entry = {.count = 1, .reusable = false}}, SHIFT(133),
- [2147] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2608),
- [2149] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2330),
- [2151] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1357),
- [2153] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1356),
- [2155] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1207),
- [2157] = {.entry = {.count = 1, .reusable = false}}, SHIFT(743),
- [2159] = {.entry = {.count = 1, .reusable = false}}, SHIFT(132),
- [2161] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2582),
- [2163] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1385),
- [2165] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1381),
- [2167] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1190),
- [2169] = {.entry = {.count = 1, .reusable = false}}, SHIFT(742),
- [2171] = {.entry = {.count = 1, .reusable = false}}, SHIFT(134),
- [2173] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2604),
- [2175] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1292),
- [2177] = {.entry = {.count = 1, .reusable = false}}, SHIFT(108),
- [2179] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2462),
- [2181] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1351),
- [2183] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1349),
- [2185] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1208),
- [2187] = {.entry = {.count = 1, .reusable = false}}, SHIFT(747),
- [2189] = {.entry = {.count = 1, .reusable = false}}, SHIFT(139),
- [2191] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2580),
- [2193] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1376),
- [2195] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1374),
- [2197] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1197),
- [2199] = {.entry = {.count = 1, .reusable = false}}, SHIFT(745),
- [2201] = {.entry = {.count = 1, .reusable = false}}, SHIFT(131),
- [2203] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2617),
- [2205] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1363),
- [2207] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1361),
- [2209] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1210),
- [2211] = {.entry = {.count = 1, .reusable = false}}, SHIFT(733),
- [2213] = {.entry = {.count = 1, .reusable = false}}, SHIFT(138),
- [2215] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2607),
- [2217] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4951),
- [2219] = {.entry = {.count = 1, .reusable = true}}, SHIFT(167),
- [2221] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5136),
- [2223] = {.entry = {.count = 1, .reusable = false}}, SHIFT(379),
- [2225] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5754),
- [2227] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3818),
- [2229] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3245),
- [2231] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5616),
- [2233] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3688),
- [2235] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3693),
- [2237] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3488),
- [2239] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 1), REDUCE(sym__property_name, 1, 0, 7),
- [2242] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5663),
- [2244] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5718),
- [2246] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5282),
- [2248] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1, 0, 1), REDUCE(sym__property_name, 1, 0, 7),
- [2251] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2684),
- [2253] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3853),
- [2255] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5895),
- [2257] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5782),
- [2259] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5584),
- [2261] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4487),
- [2263] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4425),
- [2265] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1, 0, 1), SHIFT(2752),
- [2268] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 1), REDUCE(sym__property_name, 1, 0, 7), SHIFT(193),
- [2272] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 1), SHIFT(381),
- [2275] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4538),
- [2277] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4539),
- [2279] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3530),
- [2281] = {.entry = {.count = 3, .reusable = false}}, REDUCE(sym_primary_expression, 1, 0, 1), REDUCE(sym__property_name, 1, 0, 7), SHIFT(4779),
- [2285] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3788),
- [2287] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2637),
- [2289] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5628),
- [2291] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3507),
- [2293] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5226),
- [2295] = {.entry = {.count = 1, .reusable = true}}, SHIFT(172),
- [2297] = {.entry = {.count = 1, .reusable = false}}, SHIFT(595),
- [2299] = {.entry = {.count = 1, .reusable = true}}, SHIFT(170),
- [2301] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3908),
- [2303] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2683),
- [2305] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3910),
- [2307] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3760),
- [2309] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2631),
- [2311] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2634),
- [2313] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2651),
- [2315] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2718),
- [2317] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3600),
- [2319] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_type, 4, 0, 0),
- [2321] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object_type, 4, 0, 0),
- [2323] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_type, 5, 0, 0),
- [2325] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object_type, 5, 0, 0),
- [2327] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_type, 6, 0, 0),
- [2329] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object_type, 6, 0, 0),
- [2331] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_type, 2, 0, 0),
- [2333] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object_type, 2, 0, 0),
- [2335] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_type, 3, 0, 0),
- [2337] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object_type, 3, 0, 0),
- [2339] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5599),
- [2341] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3881),
- [2343] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5884),
- [2345] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3553),
- [2347] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3680),
- [2349] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3451),
- [2351] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5631),
- [2353] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5885),
- [2355] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5363),
- [2357] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2681),
- [2359] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3528),
- [2361] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5567),
- [2363] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5369),
- [2365] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5620),
- [2367] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5621),
- [2369] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5698),
- [2371] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5675),
- [2373] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 1), SHIFT(193),
- [2376] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3526),
- [2378] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1, 0, 1), SHIFT(4779),
- [2381] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5637),
- [2383] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5627),
- [2385] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5836),
- [2387] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5834),
- [2389] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3570),
- [2391] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5700),
- [2393] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5686),
- [2395] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3591),
- [2397] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5771),
- [2399] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5768),
- [2401] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5752),
- [2403] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5751),
- [2405] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_try_statement, 2, 0, 11),
- [2407] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_try_statement, 2, 0, 11),
- [2409] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5150),
- [2411] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5499),
- [2413] = {.entry = {.count = 1, .reusable = true}}, SHIFT(690),
- [2415] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5559),
- [2417] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5558),
- [2419] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5587),
- [2421] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5585),
- [2423] = {.entry = {.count = 1, .reusable = true}}, SHIFT(689),
- [2425] = {.entry = {.count = 1, .reusable = true}}, SHIFT(703),
- [2427] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3694),
- [2429] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_try_statement, 3, 0, 42),
- [2431] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_try_statement, 3, 0, 42),
- [2433] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5909),
- [2435] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5908),
- [2437] = {.entry = {.count = 1, .reusable = true}}, SHIFT(17),
- [2439] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5784),
- [2441] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5786),
- [2443] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parenthesized_expression, 4, 0, 94),
- [2445] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parenthesized_expression, 4, 0, 94),
- [2447] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_catch_clause, 6, 0, 274),
- [2449] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_catch_clause, 6, 0, 274),
- [2451] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_catch_clause, 5, 0, 243),
- [2453] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_catch_clause, 5, 0, 243),
- [2455] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_empty_statement, 1, 0, 0),
- [2457] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_empty_statement, 1, 0, 0),
- [2459] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parenthesized_expression, 3, 0, 0),
- [2461] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parenthesized_expression, 3, 0, 0),
- [2463] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_catch_clause, 2, 0, 11),
- [2465] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_catch_clause, 2, 0, 11),
- [2467] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_do_statement, 4, 0, 100),
- [2469] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_do_statement, 4, 0, 100),
- [2471] = {.entry = {.count = 1, .reusable = true}}, SHIFT(806),
- [2473] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 3, 0, 34),
- [2475] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 3, 0, 34),
- [2477] = {.entry = {.count = 1, .reusable = false}}, SHIFT(52),
- [2479] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expression_statement, 2, 0, 0),
- [2481] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expression_statement, 2, 0, 0),
- [2483] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_break_statement, 3, 0, 44),
- [2485] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_break_statement, 3, 0, 44),
- [2487] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_statement, 4, 0, 81),
- [2489] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_export_statement, 4, 0, 81),
- [2491] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_statement, 4, 0, 87),
- [2493] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import_statement, 4, 0, 87),
- [2495] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_statement, 4, 0, 0),
- [2497] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import_statement, 4, 0, 0),
- [2499] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_statement, 4, 0, 81),
- [2501] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import_statement, 4, 0, 81),
- [2503] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_statement, 4, 0, 29),
- [2505] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import_statement, 4, 0, 29),
- [2507] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_break_statement, 2, 0, 0),
- [2509] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_break_statement, 2, 0, 0),
- [2511] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_declaration, 4, 0, 0),
- [2513] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_variable_declaration, 4, 0, 0),
- [2515] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lexical_declaration, 4, 0, 33),
- [2517] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_lexical_declaration, 4, 0, 33),
- [2519] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_declaration, 4, 0, 91),
- [2521] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_declaration, 4, 0, 91),
- [2523] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_continue_statement, 2, 0, 0),
- [2525] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_continue_statement, 2, 0, 0),
- [2527] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 4, 0, 92),
- [2529] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 4, 0, 92),
- [2531] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_switch_body, 2, 0, 0),
- [2533] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_switch_body, 2, 0, 0),
- [2535] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_statement, 3, 0, 21),
- [2537] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_export_statement, 3, 0, 21),
- [2539] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_labeled_statement, 3, -1, 23),
- [2541] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_labeled_statement, 3, -1, 23),
- [2543] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_in_statement, 4, 0, 93),
- [2545] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_in_statement, 4, 0, 93),
- [2547] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_statement, 3, 0, 0),
- [2549] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_export_statement, 3, 0, 0),
- [2551] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_debugger_statement, 2, 0, 0),
- [2553] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_debugger_statement, 2, 0, 0),
- [2555] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_return_statement, 2, 0, 0),
- [2557] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_return_statement, 2, 0, 0),
- [2559] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_finally_clause, 2, 0, 11),
- [2561] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_finally_clause, 2, 0, 11),
- [2563] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_try_statement, 4, 0, 101),
- [2565] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_try_statement, 4, 0, 101),
- [2567] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 4, 0, 46),
- [2569] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 4, 0, 46),
- [2571] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3142),
- [2573] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5562),
- [2575] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2007),
- [2577] = {.entry = {.count = 1, .reusable = true}}, SHIFT(151),
- [2579] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5690),
- [2581] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4779),
- [2583] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature, 4, 0, 125),
- [2585] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature, 4, 0, 125),
- [2587] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_class_declaration, 4, 0, 139),
- [2589] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_abstract_class_declaration, 4, 0, 139),
- [2591] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interface_declaration, 4, 0, 142),
- [2593] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interface_declaration, 4, 0, 142),
- [2595] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interface_declaration, 4, 0, 143),
- [2597] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interface_declaration, 4, 0, 143),
- [2599] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_body, 2, 0, 0),
- [2601] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_body, 2, 0, 0),
- [2603] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5923),
- [2605] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3164),
- [2607] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_statement, 3, 0, 29),
- [2609] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import_statement, 3, 0, 29),
- [2611] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_statement, 3, 0, 0),
- [2613] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import_statement, 3, 0, 0),
- [2615] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5622),
- [2617] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1579),
- [2619] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_statement, 3, 0, 30),
- [2621] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_with_statement, 3, 0, 30),
- [2623] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_statement, 4, 0, 146),
- [2625] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_export_statement, 4, 0, 146),
- [2627] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_statement, 5, 0, 150),
- [2629] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_export_statement, 5, 0, 150),
- [2631] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5682),
- [2633] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3327),
- [2635] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_statement, 5, 0, 0),
- [2637] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_export_statement, 5, 0, 0),
- [2639] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_declaration, 3, 0, 0),
- [2641] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_variable_declaration, 3, 0, 0),
- [2643] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lexical_declaration, 3, 0, 33),
- [2645] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_lexical_declaration, 3, 0, 33),
- [2647] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_alias_declaration, 5, 0, 152),
- [2649] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_alias_declaration, 5, 0, 152),
- [2651] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_switch_statement, 3, 0, 35),
- [2653] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_switch_statement, 3, 0, 35),
- [2655] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_statement, 5, 0, 150),
- [2657] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import_statement, 5, 0, 150),
- [2659] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_statement, 5, 0, 87),
- [2661] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import_statement, 5, 0, 87),
- [2663] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_statement, 5, 0, 0),
- [2665] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import_statement, 5, 0, 0),
- [2667] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_alias, 5, 0, 0),
- [2669] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import_alias, 5, 0, 0),
- [2671] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_statement, 5, 0, 81),
- [2673] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import_statement, 5, 0, 81),
- [2675] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_else_clause, 2, 0, 0),
- [2677] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_else_clause, 2, 0, 0),
- [2679] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_switch_body, 3, 0, 0),
- [2681] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_switch_body, 3, 0, 0),
- [2683] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_do_statement, 5, 0, 100),
- [2685] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_do_statement, 5, 0, 100),
- [2687] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 5, 0, 106),
- [2689] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 5, 0, 106),
- [2691] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_in_statement, 3, 0, 36),
- [2693] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_in_statement, 3, 0, 36),
- [2695] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature, 5, 0, 180),
- [2697] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature, 5, 0, 180),
- [2699] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 5, 0, 126),
- [2701] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 5, 0, 126),
- [2703] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_class_declaration, 5, 0, 185),
- [2705] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_abstract_class_declaration, 5, 0, 185),
- [2707] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_class_declaration, 5, 0, 186),
- [2709] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_abstract_class_declaration, 5, 0, 186),
- [2711] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interface_declaration, 5, 0, 189),
- [2713] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interface_declaration, 5, 0, 189),
- [2715] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_body, 3, 0, 60),
- [2717] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_body, 3, 0, 60),
- [2719] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_body, 3, 0, 0),
- [2721] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_body, 3, 0, 0),
- [2723] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ambient_declaration, 2, 0, 0),
- [2725] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ambient_declaration, 2, 0, 0),
- [2727] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_statement, 5, 0, 193),
- [2729] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_export_statement, 5, 0, 193),
- [2731] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 5, 0, 147),
- [2733] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 5, 0, 147),
- [2735] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 3, 0, 41),
- [2737] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 3, 0, 41),
- [2739] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_class_declaration, 5, 0, 197),
- [2741] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_abstract_class_declaration, 5, 0, 197),
- [2743] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_module, 2, 0, 6),
- [2745] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_module, 2, 0, 6),
- [2747] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_try_statement, 3, 0, 43),
- [2749] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_try_statement, 3, 0, 43),
- [2751] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_continue_statement, 3, 0, 44),
- [2753] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_continue_statement, 3, 0, 44),
- [2755] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_alias_declaration, 6, 0, 199),
- [2757] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_alias_declaration, 6, 0, 199),
- [2759] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_statement, 6, 0, 150),
- [2761] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import_statement, 6, 0, 150),
- [2763] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_return_statement, 3, 0, 0),
- [2765] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_return_statement, 3, 0, 0),
- [2767] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_throw_statement, 3, 0, 0),
- [2769] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_throw_statement, 3, 0, 0),
- [2771] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 6, 0, 204),
- [2773] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 6, 0, 204),
- [2775] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 6, 0, 166),
- [2777] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 6, 0, 166),
- [2779] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 6, 0, 181),
- [2781] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 6, 0, 181),
- [2783] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generator_function_declaration, 6, 0, 181),
- [2785] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generator_function_declaration, 6, 0, 181),
- [2787] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_class_declaration, 6, 0, 230),
- [2789] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_abstract_class_declaration, 6, 0, 230),
- [2791] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_body, 4, 0, 60),
- [2793] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_body, 4, 0, 60),
- [2795] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_body, 4, 0, 232),
- [2797] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_body, 4, 0, 232),
- [2799] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_body, 4, 0, 0),
- [2801] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_body, 4, 0, 0),
- [2803] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_body, 4, 0, 234),
- [2805] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_body, 4, 0, 234),
- [2807] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 6, 0, 194),
- [2809] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 6, 0, 194),
- [2811] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 6, 0, 195),
- [2813] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 6, 0, 195),
- [2815] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_class_declaration, 6, 0, 236),
- [2817] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_abstract_class_declaration, 6, 0, 236),
- [2819] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_class_declaration, 6, 0, 237),
- [2821] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_abstract_class_declaration, 6, 0, 237),
- [2823] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 7, 0, 242),
- [2825] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 7, 0, 242),
- [2827] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5596),
- [2829] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2907),
- [2831] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generator_function_declaration, 7, 0, 229),
- [2833] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generator_function_declaration, 7, 0, 229),
- [2835] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ambient_declaration, 7, 0, 269),
- [2837] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ambient_declaration, 7, 0, 269),
- [2839] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_body, 5, 0, 232),
- [2841] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_body, 5, 0, 232),
- [2843] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_body, 5, 0, 234),
- [2845] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_body, 5, 0, 234),
- [2847] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 7, 0, 235),
- [2849] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 7, 0, 235),
- [2851] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_class_declaration, 7, 0, 270),
- [2853] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_abstract_class_declaration, 7, 0, 270),
- [2855] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_statement, 1, 0, 0),
- [2857] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_statement, 1, 0, 0),
- [2859] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ambient_declaration, 3, 0, 0),
- [2861] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ambient_declaration, 3, 0, 0),
- [2863] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interface_declaration, 3, 0, 68),
- [2865] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interface_declaration, 3, 0, 68),
- [2867] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_declaration, 3, 0, 69),
- [2869] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_declaration, 3, 0, 69),
- [2871] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_statement, 2, 0, 4),
- [2873] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_export_statement, 2, 0, 4),
- [2875] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_statement, 3, 0, 79),
- [2877] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_export_statement, 3, 0, 79),
- [2879] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_statement, 4, 0, 82),
- [2881] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_export_statement, 4, 0, 82),
- [2883] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_statement, 4, 0, 0),
- [2885] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_export_statement, 4, 0, 0),
- [2887] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 5, 0, 107),
- [2889] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 5, 0, 107),
- [2891] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2122),
- [2893] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3440),
- [2895] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3265),
- [2897] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1908),
- [2899] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2853),
- [2901] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3169),
- [2903] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3190),
- [2905] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2920),
- [2907] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1483),
- [2909] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1509),
- [2911] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__for_header, 7, 0, 273),
- [2913] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_header, 7, 0, 273),
- [2915] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__for_header, 6, 0, 241),
- [2917] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_header, 6, 0, 241),
- [2919] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__for_header, 5, 0, 202),
- [2921] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_header, 5, 0, 202),
- [2923] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__for_header, 5, 0, 203),
- [2925] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_header, 5, 0, 203),
- [2927] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1616),
- [2929] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1935),
- [2931] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1323),
- [2933] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3463),
- [2935] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1936),
- [2937] = {.entry = {.count = 1, .reusable = true}}, SHIFT(86),
- [2939] = {.entry = {.count = 1, .reusable = true}}, SHIFT(775),
- [2941] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4479),
- [2943] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1061),
- [2945] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1062),
- [2947] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5614),
- [2949] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1797),
- [2951] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3990),
- [2953] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1947),
- [2955] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1810),
- [2957] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1947),
- [2959] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1063),
- [2961] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1064),
- [2963] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5623),
- [2965] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2972),
- [2967] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5744),
- [2969] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1065),
- [2971] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5613),
- [2973] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1323),
- [2975] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2901),
- [2977] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5811),
- [2979] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3101),
- [2981] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2960),
- [2983] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3004),
- [2985] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3256),
- [2987] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1315),
- [2989] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3459),
- [2991] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3257),
- [2993] = {.entry = {.count = 1, .reusable = true}}, SHIFT(88),
- [2995] = {.entry = {.count = 1, .reusable = true}}, SHIFT(791),
- [2997] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4426),
- [2999] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4427),
- [3001] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4423),
- [3003] = {.entry = {.count = 1, .reusable = true}}, SHIFT(996),
- [3005] = {.entry = {.count = 1, .reusable = true}}, SHIFT(997),
- [3007] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5600),
- [3009] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3221),
- [3011] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4138),
- [3013] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3272),
- [3015] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3225),
- [3017] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3272),
- [3019] = {.entry = {.count = 1, .reusable = false}}, SHIFT(998),
- [3021] = {.entry = {.count = 1, .reusable = true}}, SHIFT(999),
- [3023] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5873),
- [3025] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2983),
- [3027] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5615),
- [3029] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1000),
- [3031] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5618),
- [3033] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1315),
- [3035] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2840),
- [3037] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2970),
- [3039] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2953),
- [3041] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3249),
- [3043] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1329),
- [3045] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3491),
- [3047] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4460),
- [3049] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1078),
- [3051] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1025),
- [3053] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3585),
- [3055] = {.entry = {.count = 1, .reusable = false}}, SHIFT(935),
- [3057] = {.entry = {.count = 1, .reusable = true}}, SHIFT(936),
- [3059] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5891),
- [3061] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2991),
- [3063] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5624),
- [3065] = {.entry = {.count = 1, .reusable = false}}, SHIFT(937),
- [3067] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1329),
- [3069] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1435),
- [3071] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1539),
- [3073] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1309),
- [3075] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3466),
- [3077] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1540),
- [3079] = {.entry = {.count = 1, .reusable = true}}, SHIFT(87),
- [3081] = {.entry = {.count = 1, .reusable = true}}, SHIFT(786),
- [3083] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4529),
- [3085] = {.entry = {.count = 1, .reusable = true}}, SHIFT(972),
- [3087] = {.entry = {.count = 1, .reusable = true}}, SHIFT(973),
- [3089] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5799),
- [3091] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1446),
- [3093] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4126),
- [3095] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1545),
- [3097] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1449),
- [3099] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1545),
- [3101] = {.entry = {.count = 1, .reusable = false}}, SHIFT(976),
- [3103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(977),
- [3105] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5862),
- [3107] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2962),
- [3109] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5595),
- [3111] = {.entry = {.count = 1, .reusable = false}}, SHIFT(978),
- [3113] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5629),
- [3115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1309),
- [3117] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3184),
- [3119] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3471),
- [3121] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2978),
- [3123] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arguments, 3, 0, 0),
- [3125] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arguments, 3, 0, 0),
- [3127] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arguments, 4, 0, 0),
- [3129] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arguments, 4, 0, 0),
- [3131] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arguments, 2, 0, 0),
- [3133] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arguments, 2, 0, 0),
- [3135] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3034),
- [3137] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1896),
- [3139] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1466),
- [3141] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3429),
- [3143] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2975),
- [3145] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3894),
- [3147] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3143),
- [3149] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2877),
- [3151] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1465),
- [3153] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2845),
- [3155] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3609),
- [3157] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2842),
- [3159] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3695),
- [3161] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3431),
- [3163] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2999),
- [3165] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3331),
- [3167] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5025),
- [3169] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2104),
- [3171] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2105),
- [3173] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5082),
- [3175] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1598),
- [3177] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1798),
- [3179] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2004),
- [3181] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1443),
- [3183] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1546),
- [3185] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3141),
- [3187] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3276),
- [3189] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1938),
- [3191] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1535),
- [3193] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3133),
- [3195] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1410),
- [3197] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2736),
- [3199] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1979),
- [3201] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1112),
- [3203] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1826),
- [3205] = {.entry = {.count = 1, .reusable = true}}, SHIFT(191),
- [3207] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1400),
- [3209] = {.entry = {.count = 1, .reusable = true}}, SHIFT(208),
- [3211] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1698),
- [3213] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2963),
- [3215] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5776),
- [3217] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3049),
- [3219] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1567),
- [3221] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1703),
- [3223] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1813),
- [3225] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2184),
- [3227] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2185),
- [3229] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5563),
- [3231] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3166),
- [3233] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1115),
- [3235] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1791),
- [3237] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1402),
- [3239] = {.entry = {.count = 1, .reusable = true}}, SHIFT(656),
- [3241] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3121),
- [3243] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1412),
- [3245] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1585),
- [3247] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1743),
- [3249] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2979),
- [3251] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1589),
- [3253] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1749),
- [3255] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1809),
- [3257] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2178),
- [3259] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2179),
- [3261] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2398),
- [3263] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3104),
- [3265] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1417),
- [3267] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1831),
- [3269] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1655),
- [3271] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2982),
- [3273] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1549),
- [3275] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1666),
- [3277] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1835),
- [3279] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2165),
- [3281] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2166),
- [3283] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1964),
- [3285] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1969),
- [3287] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3124),
- [3289] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1404),
- [3291] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1930),
- [3293] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1632),
- [3295] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2961),
- [3297] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1506),
- [3299] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1640),
- [3301] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1840),
- [3303] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2180),
- [3305] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2181),
- [3307] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2173),
- [3309] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3136),
- [3311] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1414),
- [3313] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1658),
- [3315] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2973),
- [3317] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1552),
- [3319] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1662),
- [3321] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1843),
- [3323] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2186),
- [3325] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2187),
- [3327] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2176),
- [3329] = {.entry = {.count = 1, .reusable = false}}, SHIFT(210),
- [3331] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4421),
- [3333] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4512),
- [3335] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3453),
- [3337] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1948),
- [3339] = {.entry = {.count = 1, .reusable = true}}, SHIFT(238),
- [3341] = {.entry = {.count = 1, .reusable = false}}, SHIFT(709),
- [3343] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1485),
- [3345] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3230),
- [3347] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1426),
- [3349] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_object_repeat1, 1, 0, 0), REDUCE(aux_sym_object_pattern_repeat1, 1, 0, 0),
- [3352] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2077),
- [3354] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3140),
- [3356] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1855),
- [3358] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2079),
- [3360] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2268),
- [3362] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2500),
- [3364] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2503),
- [3366] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1442),
- [3368] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4428),
- [3370] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3214),
- [3372] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4954),
- [3374] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subscript_expression, 5, 0, 191),
- [3376] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subscript_expression, 5, 0, 191),
- [3378] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_member_expression, 3, 0, 71),
- [3380] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_member_expression, 3, 0, 71),
- [3382] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_query_member_expression_in_type_annotation, 3, 0, 71),
- [3384] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_member_expression, 3, 0, 70),
- [3386] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_member_expression, 3, 0, 70),
- [3388] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_member_expression, 3, 0, 72),
- [3390] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_member_expression, 3, 0, 72),
- [3392] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_member_expression, 3, 0, 73),
- [3394] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_member_expression, 3, 0, 73),
- [3396] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_non_null_expression, 2, 0, 0),
- [3398] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_non_null_expression, 2, 0, 0),
- [3400] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_primary_expression, 1, 0, 0),
- [3402] = {.entry = {.count = 1, .reusable = false}}, SHIFT(375),
- [3404] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 0),
- [3406] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_query, 2, 0, 0),
- [3408] = {.entry = {.count = 1, .reusable = true}}, SHIFT(256),
- [3410] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5366),
- [3412] = {.entry = {.count = 1, .reusable = true}}, SHIFT(347),
- [3414] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4577),
- [3416] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__augmented_assignment_lhs, 1, 0, 0),
- [3418] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_query, 2, 0, 0),
- [3420] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1059),
- [3422] = {.entry = {.count = 1, .reusable = false}}, SHIFT(387),
- [3424] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 0), REDUCE(sym__property_name, 1, 0, 7),
- [3427] = {.entry = {.count = 1, .reusable = true}}, SHIFT(326),
- [3429] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1, 0, 0), REDUCE(sym__property_name, 1, 0, 7),
- [3432] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3482),
- [3434] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subscript_expression, 4, 0, 144),
- [3436] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subscript_expression, 4, 0, 144),
- [3438] = {.entry = {.count = 1, .reusable = true}}, SHIFT(251),
- [3440] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5431),
- [3442] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4799),
- [3444] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1056),
- [3446] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_query_member_expression_in_type_annotation, 3, 0, 70),
- [3448] = {.entry = {.count = 1, .reusable = false}}, SHIFT(378),
- [3450] = {.entry = {.count = 1, .reusable = false}}, SHIFT(450),
- [3452] = {.entry = {.count = 1, .reusable = true}}, SHIFT(335),
- [3454] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_pattern, 1, -1, 0), SHIFT(375),
- [3457] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 0), REDUCE(sym_pattern, 1, -1, 0), REDUCE(sym_primary_type, 1, 0, 49),
- [3461] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_primary_type, 1, 0, 49),
- [3463] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 0), REDUCE(sym_primary_type, 1, 0, 49),
- [3466] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 0), SHIFT(5556),
- [3469] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1, 0, 0), REDUCE(sym_primary_type, 1, 0, 49),
- [3472] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1, 0, 0), SHIFT(1059),
- [3475] = {.entry = {.count = 1, .reusable = false}}, SHIFT(423),
- [3477] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1075),
- [3479] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 0), SHIFT(5669),
- [3482] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1, 0, 0), SHIFT(1056),
- [3485] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_type, 1, 0, 49), SHIFT(5507),
- [3488] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_decorator, 2, 0, 0),
- [3490] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decorator, 2, 0, 0),
- [3492] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5664),
- [3494] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1021),
- [3496] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 0), REDUCE(sym_pattern, 1, -1, 0),
- [3499] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pattern, 1, -1, 0),
- [3501] = {.entry = {.count = 1, .reusable = false}}, SHIFT(395),
- [3503] = {.entry = {.count = 1, .reusable = true}}, SHIFT(317),
- [3505] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 1), REDUCE(sym_predefined_type, 1, 0, 0),
- [3508] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1, 0, 1), REDUCE(sym_predefined_type, 1, 0, 0),
- [3511] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_pattern, 1, -1, 0), SHIFT(423),
- [3514] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pattern, 1, -1, 0),
- [3516] = {.entry = {.count = 1, .reusable = true}}, SHIFT(328),
- [3518] = {.entry = {.count = 1, .reusable = false}}, SHIFT(474),
- [3520] = {.entry = {.count = 1, .reusable = true}}, SHIFT(342),
- [3522] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_decorator_call_expression, 2, 0, 15),
- [3524] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decorator_call_expression, 2, 0, 15),
- [3526] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5532),
- [3528] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 1), SHIFT(232),
- [3531] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_export_statement_repeat1, 2, 0, 20),
- [3533] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_export_statement_repeat1, 2, 0, 20),
- [3535] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_export_statement_repeat1, 2, 0, 20), SHIFT_REPEAT(3957),
- [3538] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_decorator_call_expression, 3, 0, 74),
- [3540] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decorator_call_expression, 3, 0, 74),
- [3542] = {.entry = {.count = 1, .reusable = false}}, SHIFT(580),
- [3544] = {.entry = {.count = 1, .reusable = true}}, SHIFT(362),
- [3546] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_pattern, 1, -1, 0), REDUCE(sym_primary_type, 1, 0, 49),
- [3549] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_rest_pattern, 2, 0, 0),
- [3551] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_rest_pattern, 2, 0, 0),
- [3553] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_export_statement_repeat1, 2, 0, 20), SHIFT(3244),
- [3556] = {.entry = {.count = 1, .reusable = false}}, SHIFT(506),
- [3558] = {.entry = {.count = 1, .reusable = true}}, SHIFT(349),
- [3560] = {.entry = {.count = 1, .reusable = false}}, SHIFT(543),
- [3562] = {.entry = {.count = 1, .reusable = true}}, SHIFT(355),
- [3564] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_decorator_member_expression, 3, 0, 70),
- [3566] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decorator_member_expression, 3, 0, 70),
- [3568] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_decorator_parenthesized_expression, 3, 0, 0),
- [3570] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decorator_parenthesized_expression, 3, 0, 0),
- [3572] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 0), REDUCE(sym_primary_type, 1, 0, 49), REDUCE(sym_rest_pattern, 2, 0, 0),
- [3576] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_export_statement_repeat1, 1, 0, 2),
- [3578] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_export_statement_repeat1, 1, 0, 2),
- [3580] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 1), REDUCE(sym_predefined_type, 1, 0, 0), REDUCE(sym_rest_pattern, 2, 0, 28),
- [3584] = {.entry = {.count = 1, .reusable = true}}, SHIFT(302),
- [3586] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1, 0, 0), SHIFT(303),
- [3589] = {.entry = {.count = 1, .reusable = true}}, SHIFT(303),
- [3591] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5039),
- [3593] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 0), REDUCE(sym_rest_pattern, 2, 0, 0),
- [3596] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_query_member_expression_in_type_annotation, 3, 0, 70),
- [3598] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_query_member_expression_in_type_annotation, 3, 0, 71),
- [3600] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_pattern, 1, -1, 0), SHIFT(506),
- [3603] = {.entry = {.count = 1, .reusable = false}}, SHIFT(989),
- [3605] = {.entry = {.count = 1, .reusable = true}}, SHIFT(990),
- [3607] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3183),
- [3609] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1427),
- [3611] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2745),
- [3613] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1398),
- [3615] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1570),
- [3617] = {.entry = {.count = 1, .reusable = true}}, SHIFT(370),
- [3619] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2144),
- [3621] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3162),
- [3623] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3028),
- [3625] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1960),
- [3627] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2146),
- [3629] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2424),
- [3631] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1942),
- [3633] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2391),
- [3635] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1396),
- [3637] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3313),
- [3639] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1030),
- [3641] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1401),
- [3643] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1976),
- [3645] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1397),
- [3647] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3739),
- [3649] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3213),
- [3651] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3197),
- [3653] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3856),
- [3655] = {.entry = {.count = 1, .reusable = true}}, SHIFT(653),
- [3657] = {.entry = {.count = 1, .reusable = false}}, SHIFT(599),
- [3659] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1897),
- [3661] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3434),
- [3663] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3857),
- [3665] = {.entry = {.count = 1, .reusable = true}}, SHIFT(652),
- [3667] = {.entry = {.count = 1, .reusable = false}}, SHIFT(526),
- [3669] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3343),
- [3671] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1514),
- [3673] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1467),
- [3675] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3271),
- [3677] = {.entry = {.count = 1, .reusable = false}}, SHIFT(468),
- [3679] = {.entry = {.count = 1, .reusable = true}}, SHIFT(654),
- [3681] = {.entry = {.count = 1, .reusable = false}}, SHIFT(439),
- [3683] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1911),
- [3685] = {.entry = {.count = 1, .reusable = false}}, SHIFT(492),
- [3687] = {.entry = {.count = 1, .reusable = false}}, SHIFT(612),
- [3689] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1493),
- [3691] = {.entry = {.count = 1, .reusable = false}}, SHIFT(414),
- [3693] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3193),
- [3695] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3846),
- [3697] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2106),
- [3699] = {.entry = {.count = 1, .reusable = false}}, SHIFT(603),
- [3701] = {.entry = {.count = 1, .reusable = false}}, SHIFT(559),
- [3703] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2731),
- [3705] = {.entry = {.count = 1, .reusable = true}}, SHIFT(699),
- [3707] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1409),
- [3709] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2214),
- [3711] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2955),
- [3713] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4085),
- [3715] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1733),
- [3717] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2018),
- [3719] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2399),
- [3721] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1755),
- [3723] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2675),
- [3725] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2748),
- [3727] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4720),
- [3729] = {.entry = {.count = 1, .reusable = true}}, SHIFT(165),
- [3731] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4721),
- [3733] = {.entry = {.count = 1, .reusable = true}}, SHIFT(384),
- [3735] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5572),
- [3737] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__property_name, 1, 0, 7), SHIFT(1434),
- [3740] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__property_name, 1, 0, 7), SHIFT(1819),
- [3743] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__property_name, 1, 0, 7),
- [3745] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3892),
- [3747] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1694),
- [3749] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1418),
- [3751] = {.entry = {.count = 1, .reusable = true}}, SHIFT(220),
- [3753] = {.entry = {.count = 1, .reusable = true}}, SHIFT(246),
- [3755] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1406),
- [3757] = {.entry = {.count = 1, .reusable = true}}, SHIFT(691),
- [3759] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1403),
- [3761] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_class_body_repeat1, 2, 0, 20), SHIFT_REPEAT(3183),
- [3764] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_class_body_repeat1, 2, 0, 20), SHIFT_REPEAT(2731),
- [3767] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_class_body_repeat1, 2, 0, 20),
- [3769] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_class_body_repeat1, 2, 0, 20), SHIFT_REPEAT(1409),
- [3772] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_class_body_repeat1, 2, 0, 20), SHIFT_REPEAT(370),
- [3775] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_class_body_repeat1, 2, 0, 20), SHIFT_REPEAT(4438),
- [3778] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_class_body_repeat1, 2, 0, 20), SHIFT_REPEAT(4440),
- [3781] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_class_body_repeat1, 2, 0, 20), SHIFT_REPEAT(2214),
- [3784] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_class_body_repeat1, 2, 0, 20), SHIFT_REPEAT(5776),
- [3787] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_class_body_repeat1, 2, 0, 20), SHIFT_REPEAT(2955),
- [3790] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_class_body_repeat1, 2, 0, 20), SHIFT_REPEAT(4085),
- [3793] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_class_body_repeat1, 2, 0, 20), SHIFT_REPEAT(1733),
- [3796] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_class_body_repeat1, 2, 0, 20), SHIFT_REPEAT(2018),
- [3799] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_class_body_repeat1, 2, 0, 20), SHIFT_REPEAT(2399),
- [3802] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_class_body_repeat1, 2, 0, 20), SHIFT_REPEAT(1755),
- [3805] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_class_body_repeat1, 2, 0, 20), SHIFT_REPEAT(1942),
- [3808] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_class_body_repeat1, 2, 0, 20), SHIFT_REPEAT(2391),
- [3811] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_class_body_repeat1, 2, 0, 20), SHIFT_REPEAT(2675),
- [3814] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_class_body_repeat1, 2, 0, 20), SHIFT_REPEAT(2748),
- [3817] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__property_name, 1, 0, 7), SHIFT(1653),
- [3820] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1736),
- [3822] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1413),
- [3824] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__property_name, 1, 0, 7), SHIFT(1664),
- [3827] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1690),
- [3829] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__property_name, 1, 0, 7), SHIFT(2392),
- [3832] = {.entry = {.count = 1, .reusable = true}}, SHIFT(763),
- [3834] = {.entry = {.count = 1, .reusable = true}}, SHIFT(762),
- [3836] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1415),
- [3838] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__property_name, 1, 0, 7), SHIFT(1977),
- [3841] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1777),
- [3843] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3437),
- [3845] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2152),
- [3847] = {.entry = {.count = 1, .reusable = true}}, SHIFT(244),
- [3849] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2153),
- [3851] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3665),
- [3853] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1963),
- [3855] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2154),
- [3857] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2396),
- [3859] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2547),
- [3861] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2516),
- [3863] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3315),
- [3865] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2532),
- [3867] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2170),
- [3869] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1971),
- [3871] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2172),
- [3873] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2464),
- [3875] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2514),
- [3877] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2531),
- [3879] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3444),
- [3881] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1820),
- [3883] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2386),
- [3885] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1944),
- [3887] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2387),
- [3889] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2390),
- [3891] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2552),
- [3893] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2553),
- [3895] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3397),
- [3897] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1697),
- [3899] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2175),
- [3901] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2036),
- [3903] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2183),
- [3905] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2404),
- [3907] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2529),
- [3909] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2513),
- [3911] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3267),
- [3913] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2038),
- [3915] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2242),
- [3917] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2039),
- [3919] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2243),
- [3921] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2394),
- [3923] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2528),
- [3925] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2541),
- [3927] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3308),
- [3929] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2478),
- [3931] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2162),
- [3933] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1968),
- [3935] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2164),
- [3937] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2420),
- [3939] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2537),
- [3941] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2538),
- [3943] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3319),
- [3945] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1706),
- [3947] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2264),
- [3949] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1926),
- [3951] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2265),
- [3953] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2413),
- [3955] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2549),
- [3957] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2533),
- [3959] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym__property_name, 1, 0, 7), REDUCE(aux_sym_object_repeat1, 2, 0, 26), REDUCE(aux_sym_object_pattern_repeat1, 2, 0, 27),
- [3963] = {.entry = {.count = 1, .reusable = true}}, SHIFT(380),
- [3965] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_new_expression, 2, 0, 13),
- [3967] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_new_expression, 2, 0, 13),
- [3969] = {.entry = {.count = 1, .reusable = true}}, SHIFT(249),
- [3971] = {.entry = {.count = 1, .reusable = true}}, SHIFT(318),
- [3973] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5388),
- [3975] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3534),
- [3977] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1036),
- [3979] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_query, 2, 0, 111),
- [3981] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_query, 2, 0, 111),
- [3983] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5286),
- [3985] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_query, 2, 0, 112),
- [3987] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_query, 2, 0, 112),
- [3989] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5288),
- [3991] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5285),
- [3993] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3536),
- [3995] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2477),
- [3997] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2417),
- [3999] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2479),
- [4001] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2545),
- [4003] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2629),
- [4005] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2619),
- [4007] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_primary_type, 1, 0, 49),
- [4009] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5652),
- [4011] = {.entry = {.count = 1, .reusable = true}}, SHIFT(969),
- [4013] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_asserts, 2, 0, 0),
- [4015] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_asserts, 2, 0, 0),
- [4017] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1622),
- [4019] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type, 1, 0, 51),
- [4021] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type, 1, 0, 51),
- [4023] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5248),
- [4025] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_primary_type, 1, 0, 0),
- [4027] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_primary_type, 1, 0, 0),
- [4029] = {.entry = {.count = 1, .reusable = true}}, SHIFT(20),
- [4031] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5793),
- [4033] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5803),
- [4035] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_instantiation_expression, 2, 0, 17),
- [4037] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_instantiation_expression, 2, 0, 17),
- [4039] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_primary_type, 1, 0, 50),
- [4041] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_primary_type, 1, 0, 50),
- [4043] = {.entry = {.count = 1, .reusable = true}}, SHIFT(970),
- [4045] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_predefined_type, 2, 0, 117),
- [4047] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_predefined_type, 2, 0, 117),
- [4049] = {.entry = {.count = 1, .reusable = false}}, SHIFT(528),
- [4051] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1055),
- [4053] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assignment_expression, 4, 0, 129),
- [4055] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1150),
- [4057] = {.entry = {.count = 1, .reusable = false}}, SHIFT(527),
- [4059] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5073),
- [4061] = {.entry = {.count = 1, .reusable = true}}, SHIFT(531),
- [4063] = {.entry = {.count = 1, .reusable = true}}, SHIFT(533),
- [4065] = {.entry = {.count = 1, .reusable = false}}, SHIFT(536),
- [4067] = {.entry = {.count = 1, .reusable = true}}, SHIFT(536),
- [4069] = {.entry = {.count = 1, .reusable = false}}, SHIFT(539),
- [4071] = {.entry = {.count = 1, .reusable = true}}, SHIFT(560),
- [4073] = {.entry = {.count = 1, .reusable = false}}, SHIFT(561),
- [4075] = {.entry = {.count = 1, .reusable = false}}, SHIFT(563),
- [4077] = {.entry = {.count = 1, .reusable = true}}, SHIFT(528),
- [4079] = {.entry = {.count = 1, .reusable = true}}, SHIFT(564),
- [4081] = {.entry = {.count = 1, .reusable = false}}, SHIFT(144),
- [4083] = {.entry = {.count = 1, .reusable = true}}, SHIFT(527),
- [4085] = {.entry = {.count = 1, .reusable = false}}, SHIFT(568),
- [4087] = {.entry = {.count = 1, .reusable = true}}, SHIFT(568),
- [4089] = {.entry = {.count = 1, .reusable = true}}, SHIFT(571),
- [4091] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1631),
- [4093] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1058),
- [4095] = {.entry = {.count = 1, .reusable = true}}, SHIFT(397),
- [4097] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_nested_type_identifier, 3, 0, 173),
- [4099] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_nested_type_identifier, 3, 0, 173),
- [4101] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_nested_identifier, 3, 0, 83), REDUCE(sym_nested_type_identifier, 3, 0, 173),
- [4104] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 3, 0, 174),
- [4106] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 3, 0, 174),
- [4108] = {.entry = {.count = 1, .reusable = false}}, SHIFT(980),
- [4110] = {.entry = {.count = 1, .reusable = false}}, SHIFT(981),
- [4112] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1084),
- [4114] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_query_member_expression_in_type_annotation, 3, 0, 175),
- [4116] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_query_member_expression_in_type_annotation, 3, 0, 175),
- [4118] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_query_member_expression_in_type_annotation, 3, 0, 176),
- [4120] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_query_member_expression_in_type_annotation, 3, 0, 176),
- [4122] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_query_member_expression_in_type_annotation, 3, 0, 177),
- [4124] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_query_member_expression_in_type_annotation, 3, 0, 177),
- [4126] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_query_member_expression_in_type_annotation, 3, 0, 178),
- [4128] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_query_member_expression_in_type_annotation, 3, 0, 178),
- [4130] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_intersection_type, 3, 0, 0),
- [4132] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_intersection_type, 3, 0, 0),
- [4134] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_type, 3, 0, 0),
- [4136] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_type, 3, 0, 0),
- [4138] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_type, 3, 0, 0),
- [4140] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_type, 3, 0, 0),
- [4142] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_arguments, 5, 0, 0),
- [4144] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_arguments, 5, 0, 0),
- [4146] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_query_member_expression, 3, 0, 71),
- [4148] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_query_member_expression, 3, 0, 71),
- [4150] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_query_member_expression, 3, 0, 175),
- [4152] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_query_member_expression, 3, 0, 175),
- [4154] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_query_member_expression, 3, 0, 176),
- [4156] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_query_member_expression, 3, 0, 176),
- [4158] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_query_member_expression, 3, 0, 225),
- [4160] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_query_member_expression, 3, 0, 225),
- [4162] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_query_member_expression, 3, 0, 226),
- [4164] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_query_member_expression, 3, 0, 226),
- [4166] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_query_member_expression, 3, 0, 177),
- [4168] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_query_member_expression, 3, 0, 177),
- [4170] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_unary_expression, 2, 0, 8),
- [4172] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unary_expression, 2, 0, 8),
- [4174] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_unary_expression, 2, 0, 8), SHIFT(144),
- [4177] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_query_member_expression, 3, 0, 178),
- [4179] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_query_member_expression, 3, 0, 178),
- [4181] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_type, 4, 0, 0),
- [4183] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_type, 4, 0, 0),
- [4185] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_constructor_type, 4, 0, 227),
- [4187] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constructor_type, 4, 0, 227),
- [4189] = {.entry = {.count = 1, .reusable = true}}, SHIFT(23),
- [4191] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5568),
- [4193] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5575),
- [4195] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_infer_type, 4, 0, 116),
- [4197] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_infer_type, 4, 0, 116),
- [4199] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_await_expression, 2, 0, 0),
- [4201] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_await_expression, 2, 0, 0),
- [4203] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_await_expression, 2, 0, 0), SHIFT(144),
- [4206] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_lookup_type, 4, 0, 0),
- [4208] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lookup_type, 4, 0, 0),
- [4210] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_yield_expression, 2, 0, 0),
- [4212] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 4, 0, 228),
- [4214] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 4, 0, 228),
- [4216] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_query_subscript_expression, 4, 0, 144),
- [4218] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_query_subscript_expression, 4, 0, 144),
- [4220] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_query_subscript_expression, 4, 0, 264),
- [4222] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_query_subscript_expression, 4, 0, 264),
- [4224] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_query_subscript_expression, 4, 0, 265),
- [4226] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_query_subscript_expression, 4, 0, 265),
- [4228] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1702),
- [4230] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_update_expression, 2, 0, 8),
- [4232] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_update_expression, 2, 0, 8),
- [4234] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_update_expression, 2, 0, 8), SHIFT(144),
- [4237] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_query_subscript_expression, 4, 0, 266),
- [4239] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_query_subscript_expression, 4, 0, 266),
- [4241] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2742),
- [4243] = {.entry = {.count = 1, .reusable = true}}, SHIFT(393),
- [4245] = {.entry = {.count = 1, .reusable = true}}, SHIFT(410),
- [4247] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2252),
- [4249] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3081),
- [4251] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2269),
- [4253] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2449),
- [4255] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arrow_function, 3, 0, 24),
- [4257] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assignment_expression, 3, 0, 22),
- [4259] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_type, 5, 0, 0),
- [4261] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_type, 5, 0, 0),
- [4263] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_constructor_type, 5, 0, 267),
- [4265] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constructor_type, 5, 0, 267),
- [4267] = {.entry = {.count = 1, .reusable = true}}, SHIFT(530),
- [4269] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1272),
- [4271] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_constructor_type, 5, 0, 268),
- [4273] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constructor_type, 5, 0, 268),
- [4275] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_query_subscript_expression, 5, 0, 296),
- [4277] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_query_subscript_expression, 5, 0, 296),
- [4279] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_query_subscript_expression, 5, 0, 297),
- [4281] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_query_subscript_expression, 5, 0, 297),
- [4283] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_yield_expression, 3, 0, 0),
- [4285] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_query_subscript_expression, 5, 0, 298),
- [4287] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_query_subscript_expression, 5, 0, 298),
- [4289] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_new_expression, 3, 0, 58),
- [4291] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_new_expression, 3, 0, 58),
- [4293] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_query_subscript_expression, 5, 0, 299),
- [4295] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_query_subscript_expression, 5, 0, 299),
- [4297] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assignment_expression, 3, 0, 65),
- [4299] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arrow_function, 3, 0, 66),
- [4301] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_constructor_type, 6, 0, 300),
- [4303] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constructor_type, 6, 0, 300),
- [4305] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_binary_expression, 3, 0, 67),
- [4307] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_binary_expression, 3, 0, 67),
- [4309] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_conditional_type, 7, 0, 320),
- [4311] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_conditional_type, 7, 0, 320),
- [4313] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1178),
- [4315] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_binary_expression, 3, 0, 67), SHIFT(144),
- [4318] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_as_expression, 3, 0, 0),
- [4320] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_as_expression, 3, 0, 0),
- [4322] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_sequence_expression_repeat1, 2, 0, 0),
- [4324] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_existential_type, 1, 0, 0),
- [4326] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_existential_type, 1, 0, 0),
- [4328] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_literal_type, 1, 0, 0),
- [4330] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_literal_type, 1, 0, 0),
- [4332] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_arguments, 3, 0, 0),
- [4334] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_arguments, 3, 0, 0),
- [4336] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type, 1, 0, 52),
- [4338] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type, 1, 0, 52),
- [4340] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5250),
- [4342] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type, 1, 0, 0),
- [4344] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type, 1, 0, 0),
- [4346] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_satisfies_expression, 3, 0, 0),
- [4348] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_satisfies_expression, 3, 0, 0),
- [4350] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arrow_function, 3, 0, 77),
- [4352] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_augmented_assignment_expression, 3, 0, 67),
- [4354] = {.entry = {.count = 1, .reusable = true}}, SHIFT(730),
- [4356] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_predicate, 3, 0, 89),
- [4358] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_predicate, 3, 0, 89),
- [4360] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_predicate, 3, 0, 192),
- [4362] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_predicate, 3, 0, 192),
- [4364] = {.entry = {.count = 1, .reusable = true}}, SHIFT(921),
- [4366] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_literal_type, 1, 0, 53),
- [4368] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_literal_type, 1, 0, 53),
- [4370] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arrow_function, 4, 0, 121),
- [4372] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arrow_function, 4, 0, 123),
- [4374] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arrow_function, 4, 0, 124),
- [4376] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assignment_expression, 4, 0, 128),
- [4378] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_query, 2, 0, 113),
- [4380] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_query, 2, 0, 113),
- [4382] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5296),
- [4384] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_query, 2, 0, 114),
- [4386] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_query, 2, 0, 114),
- [4388] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ternary_expression, 5, 0, 190),
- [4390] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_type, 2, 0, 0),
- [4392] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_type, 2, 0, 0),
- [4394] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_intersection_type, 2, 0, 0),
- [4396] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_intersection_type, 2, 0, 0),
- [4398] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_type, 2, 0, 0),
- [4400] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_type, 2, 0, 0),
- [4402] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__number, 2, 0, 8),
- [4404] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__number, 2, 0, 8),
- [4406] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_template_literal_type, 2, 0, 0),
- [4408] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_template_literal_type, 2, 0, 0),
- [4410] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generic_type, 2, 0, 115),
- [4412] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generic_type, 2, 0, 115),
- [4414] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_object, 2, 0, 0), REDUCE(sym_object_type, 2, 0, 0),
- [4417] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_object, 2, 0, 0), REDUCE(sym_object_type, 2, 0, 0),
- [4420] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_readonly_type, 2, 0, 0),
- [4422] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_readonly_type, 2, 0, 0),
- [4424] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_flow_maybe_type, 2, 0, 0),
- [4426] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_flow_maybe_type, 2, 0, 0),
- [4428] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_infer_type, 2, 0, 116),
- [4430] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_infer_type, 2, 0, 116),
- [4432] = {.entry = {.count = 1, .reusable = true}}, SHIFT(983),
- [4434] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_index_type_query, 2, 0, 0),
- [4436] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_index_type_query, 2, 0, 0),
- [4438] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array, 2, 0, 0),
- [4440] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_pattern, 2, 0, 0),
- [4442] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array, 2, 0, 0),
- [4444] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_array, 2, 0, 0), REDUCE(sym_tuple_type, 2, 0, 0),
- [4447] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_array, 2, 0, 0), REDUCE(sym_tuple_type, 2, 0, 0),
- [4450] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_call_expression, 2, 0, 15),
- [4452] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_call_expression, 2, 0, 15),
- [4454] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_query_call_expression, 2, 0, 15),
- [4456] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_query_call_expression, 2, 0, 15),
- [4458] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_query_call_expression_in_type_annotation, 2, 0, 15),
- [4460] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_query_call_expression_in_type_annotation, 2, 0, 15),
- [4462] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generic_type, 2, 0, 118),
- [4464] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generic_type, 2, 0, 118),
- [4466] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_query_call_expression_in_type_annotation, 2, 0, 119),
- [4468] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_query_call_expression_in_type_annotation, 2, 0, 119),
- [4470] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_arguments, 4, 0, 0),
- [4472] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_arguments, 4, 0, 0),
- [4474] = {.entry = {.count = 1, .reusable = true}}, SHIFT(892),
- [4476] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_query_instantiation_expression, 2, 0, 169),
- [4478] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_query_instantiation_expression, 2, 0, 169),
- [4480] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_query_call_expression, 2, 0, 119),
- [4482] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_query_call_expression, 2, 0, 119),
- [4484] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_query_instantiation_expression, 2, 0, 170),
- [4486] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_query_instantiation_expression, 2, 0, 170),
- [4488] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_query_call_expression, 2, 0, 171),
- [4490] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_query_call_expression, 2, 0, 171),
- [4492] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_query_instantiation_expression, 2, 0, 172),
- [4494] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_query_instantiation_expression, 2, 0, 172),
- [4496] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parenthesized_type, 3, 0, 0),
- [4498] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parenthesized_type, 3, 0, 0),
- [4500] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_type, 3, 0, 0),
- [4502] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_type, 3, 0, 0),
- [4504] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_template_literal_type, 3, 0, 0),
- [4506] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_template_literal_type, 3, 0, 0),
- [4508] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_nested_identifier, 3, 0, 70), REDUCE(sym_nested_type_identifier, 3, 0, 173),
- [4511] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_query_member_expression, 3, 0, 70),
- [4513] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_query_member_expression, 3, 0, 70),
- [4515] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arrow_function, 4, 0, 121),
- [4517] = {.entry = {.count = 1, .reusable = false}}, SHIFT(445),
- [4519] = {.entry = {.count = 1, .reusable = true}}, SHIFT(262),
- [4521] = {.entry = {.count = 1, .reusable = false}}, SHIFT(412),
- [4523] = {.entry = {.count = 1, .reusable = true}}, SHIFT(305),
- [4525] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5402),
- [4527] = {.entry = {.count = 1, .reusable = false}}, SHIFT(490),
- [4529] = {.entry = {.count = 1, .reusable = true}}, SHIFT(490),
- [4531] = {.entry = {.count = 1, .reusable = false}}, SHIFT(524),
- [4533] = {.entry = {.count = 1, .reusable = true}}, SHIFT(445),
- [4535] = {.entry = {.count = 1, .reusable = true}}, SHIFT(557),
- [4537] = {.entry = {.count = 1, .reusable = false}}, SHIFT(153),
- [4539] = {.entry = {.count = 1, .reusable = true}}, SHIFT(412),
- [4541] = {.entry = {.count = 1, .reusable = false}}, SHIFT(596),
- [4543] = {.entry = {.count = 1, .reusable = true}}, SHIFT(596),
- [4545] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2270),
- [4547] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5598),
- [4549] = {.entry = {.count = 1, .reusable = false}}, SHIFT(993),
- [4551] = {.entry = {.count = 1, .reusable = true}}, SHIFT(958),
- [4553] = {.entry = {.count = 1, .reusable = false}}, SHIFT(520),
- [4555] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1037),
- [4557] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_object_assignment_pattern, 3, 0, 65), REDUCE(sym_assignment_expression, 3, 0, 65),
- [4560] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_assignment_pattern, 3, 0, 65),
- [4562] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1252),
- [4564] = {.entry = {.count = 1, .reusable = true}}, SHIFT(475),
- [4566] = {.entry = {.count = 1, .reusable = true}}, SHIFT(489),
- [4568] = {.entry = {.count = 1, .reusable = true}}, SHIFT(522),
- [4570] = {.entry = {.count = 1, .reusable = false}}, SHIFT(523),
- [4572] = {.entry = {.count = 1, .reusable = true}}, SHIFT(597),
- [4574] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1066),
- [4576] = {.entry = {.count = 1, .reusable = true}}, SHIFT(437),
- [4578] = {.entry = {.count = 1, .reusable = false}}, SHIFT(453),
- [4580] = {.entry = {.count = 1, .reusable = false}}, SHIFT(451),
- [4582] = {.entry = {.count = 1, .reusable = true}}, SHIFT(454),
- [4584] = {.entry = {.count = 1, .reusable = true}}, SHIFT(455),
- [4586] = {.entry = {.count = 1, .reusable = false}}, SHIFT(456),
- [4588] = {.entry = {.count = 1, .reusable = true}}, SHIFT(456),
- [4590] = {.entry = {.count = 1, .reusable = false}}, SHIFT(457),
- [4592] = {.entry = {.count = 1, .reusable = true}}, SHIFT(458),
- [4594] = {.entry = {.count = 1, .reusable = false}}, SHIFT(459),
- [4596] = {.entry = {.count = 1, .reusable = false}}, SHIFT(460),
- [4598] = {.entry = {.count = 1, .reusable = true}}, SHIFT(453),
- [4600] = {.entry = {.count = 1, .reusable = true}}, SHIFT(461),
- [4602] = {.entry = {.count = 1, .reusable = false}}, SHIFT(148),
- [4604] = {.entry = {.count = 1, .reusable = true}}, SHIFT(451),
- [4606] = {.entry = {.count = 1, .reusable = false}}, SHIFT(462),
- [4608] = {.entry = {.count = 1, .reusable = true}}, SHIFT(462),
- [4610] = {.entry = {.count = 1, .reusable = true}}, SHIFT(463),
- [4612] = {.entry = {.count = 1, .reusable = true}}, SHIFT(626),
- [4614] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__initializer, 2, 0, 88),
- [4616] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__initializer, 2, 0, 88), SHIFT(451),
- [4619] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_call_expression, 3, 0, 74),
- [4621] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_call_expression, 3, 0, 74),
- [4623] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_binary_expression, 3, 0, 67), SHIFT(153),
- [4626] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_glimmer_template, 2, 0, 12),
- [4628] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_glimmer_template, 2, 0, 12),
- [4630] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_update_expression, 2, 0, 16),
- [4632] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_update_expression, 2, 0, 16),
- [4634] = {.entry = {.count = 1, .reusable = true}}, SHIFT(381),
- [4636] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3770),
- [4638] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2657),
- [4640] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_jsx_element, 2, 0, 12),
- [4642] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_jsx_element, 2, 0, 12),
- [4644] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_unary_expression, 2, 0, 8), SHIFT(148),
- [4647] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_await_expression, 2, 0, 0), SHIFT(148),
- [4650] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_jsx_self_closing_element, 5, -1, 183),
- [4652] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_jsx_self_closing_element, 5, -1, 183),
- [4654] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_jsx_self_closing_element, 5, -1, 184),
- [4656] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_jsx_self_closing_element, 5, -1, 184),
- [4658] = {.entry = {.count = 1, .reusable = true}}, SHIFT(306),
- [4660] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arrow_function, 3, 0, 24),
- [4662] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_update_expression, 2, 0, 8), SHIFT(148),
- [4665] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class, 2, 0, 11),
- [4667] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class, 2, 0, 11),
- [4669] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_object_assignment_pattern, 3, 0, 84), REDUCE(sym_assignment_expression, 3, 0, 22),
- [4672] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_assignment_pattern, 3, 0, 84),
- [4674] = {.entry = {.count = 1, .reusable = true}}, SHIFT(867),
- [4676] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object, 3, 0, 26),
- [4678] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object_pattern, 3, 0, 27),
- [4680] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object, 3, 0, 26),
- [4682] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_object, 3, 0, 26), REDUCE(sym_object_pattern, 3, 0, 27),
- [4685] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_await_expression, 2, 0, 0), SHIFT(153),
- [4688] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_binary_expression, 3, 0, 67), SHIFT(148),
- [4691] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 0), REDUCE(sym_literal_type, 1, 0, 0),
- [4694] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1, 0, 0), REDUCE(sym_literal_type, 1, 0, 0),
- [4697] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 0), REDUCE(sym_primary_type, 1, 0, 50),
- [4700] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1, 0, 0), REDUCE(sym_primary_type, 1, 0, 50),
- [4703] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_spread_element, 2, 0, 0),
- [4705] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_call_expression, 3, 0, 75),
- [4707] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_call_expression, 3, 0, 75),
- [4709] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_jsx_closing_element, 2, 0, 0),
- [4711] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_jsx_closing_element, 2, 0, 0),
- [4713] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_jsx_element, 3, 0, 76),
- [4715] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_jsx_element, 3, 0, 76),
- [4717] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arrow_function, 3, 0, 77),
- [4719] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object, 3, 0, 0),
- [4721] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object, 3, 0, 0),
- [4723] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class, 3, 0, 80),
- [4725] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class, 3, 0, 80),
- [4727] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object, 4, 0, 26),
- [4729] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object, 4, 0, 26),
- [4731] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object, 4, 0, 0),
- [4733] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object, 4, 0, 0),
- [4735] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array, 4, 0, 0),
- [4737] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array, 4, 0, 0),
- [4739] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5193),
- [4741] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5195),
- [4743] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5196),
- [4745] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1686),
- [4747] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_object, 2, 0, 0), REDUCE(sym_object_pattern, 2, 0, 0),
- [4750] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_update_expression, 2, 0, 8), SHIFT(153),
- [4753] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_jsx_self_closing_element, 2, -1, 0),
- [4755] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_jsx_self_closing_element, 2, -1, 0),
- [4757] = {.entry = {.count = 1, .reusable = true}}, SHIFT(466),
- [4759] = {.entry = {.count = 1, .reusable = true}}, SHIFT(738),
- [4761] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_array, 2, 0, 0), REDUCE(sym_array_pattern, 2, 0, 0),
- [4764] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class, 4, 0, 120),
- [4766] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class, 4, 0, 120),
- [4768] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_expression, 4, 0, 122),
- [4770] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_expression, 4, 0, 122),
- [4772] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arrow_function, 4, 0, 123),
- [4774] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_template_string, 2, 0, 0),
- [4776] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_template_string, 2, 0, 0),
- [4778] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arrow_function, 4, 0, 124),
- [4780] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1656),
- [4782] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generator_function, 4, 0, 122),
- [4784] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generator_function, 4, 0, 122),
- [4786] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3597),
- [4788] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_new_expression, 4, 0, 127),
- [4790] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_new_expression, 4, 0, 127),
- [4792] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class, 4, 0, 149),
- [4794] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class, 4, 0, 149),
- [4796] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_regex, 4, 0, 130),
- [4798] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_regex, 4, 0, 130),
- [4800] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_jsx_self_closing_element, 4, -1, 133),
- [4802] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_jsx_self_closing_element, 4, -1, 133),
- [4804] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_jsx_self_closing_element, 4, -1, 135),
- [4806] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_jsx_self_closing_element, 4, -1, 135),
- [4808] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_unary_expression, 2, 0, 8), SHIFT(153),
- [4811] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array, 3, 0, 0),
- [4813] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array, 3, 0, 0),
- [4815] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_jsx_self_closing_element, 4, -1, 137),
- [4817] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_jsx_self_closing_element, 4, -1, 137),
- [4819] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_jsx_self_closing_element, 4, -1, 138),
- [4821] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_jsx_self_closing_element, 4, -1, 138),
- [4823] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_glimmer_template, 3, 0, 45),
- [4825] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_glimmer_template, 3, 0, 45),
- [4827] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2774),
- [4829] = {.entry = {.count = 1, .reusable = true}}, SHIFT(26),
- [4831] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2136),
- [4833] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2980),
- [4835] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2137),
- [4837] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2400),
- [4839] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__property_name, 1, 0, 7), SHIFT(5300),
- [4842] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class, 3, 0, 54),
- [4844] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class, 3, 0, 54),
- [4846] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class, 3, 0, 55),
- [4848] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class, 3, 0, 55),
- [4850] = {.entry = {.count = 1, .reusable = true}}, SHIFT(831),
- [4852] = {.entry = {.count = 1, .reusable = true}}, SHIFT(832),
- [4854] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3942),
- [4856] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_expression, 3, 0, 56),
- [4858] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_expression, 3, 0, 56),
- [4860] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_meta_property, 3, 0, 0),
- [4862] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_meta_property, 3, 0, 0),
- [4864] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3354),
- [4866] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2480),
- [4868] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2482),
- [4870] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2741),
- [4872] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2751),
- [4874] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_new_expression, 3, 0, 57),
- [4876] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_new_expression, 3, 0, 57),
- [4878] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_template_string, 2, 0, 0), REDUCE(sym_template_literal_type, 2, 0, 0),
- [4881] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_template_string, 2, 0, 0), REDUCE(sym_template_literal_type, 2, 0, 0),
- [4884] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generator_function, 5, 0, 179),
- [4886] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generator_function, 5, 0, 179),
- [4888] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_jsx_self_closing_element, 3, -1, 60),
- [4890] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_jsx_self_closing_element, 3, -1, 60),
- [4892] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3288),
- [4894] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2481),
- [4896] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2483),
- [4898] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2733),
- [4900] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2734),
- [4902] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_jsx_self_closing_element, 3, -1, 64),
- [4904] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_jsx_self_closing_element, 3, -1, 64),
- [4906] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_call_expression, 4, 0, 145),
- [4908] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_call_expression, 4, 0, 145),
- [4910] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_jsx_closing_element, 3, 0, 60),
- [4912] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_jsx_closing_element, 3, 0, 60),
- [4914] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_template_string, 3, 0, 0),
- [4916] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_template_string, 3, 0, 0),
- [4918] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_jsx_closing_element, 3, 0, 64),
- [4920] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_jsx_closing_element, 3, 0, 64),
- [4922] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arrow_function, 3, 0, 66),
- [4924] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class, 4, 0, 148),
- [4926] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class, 4, 0, 148),
- [4928] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class, 5, 0, 196),
- [4930] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class, 5, 0, 196),
- [4932] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_object_assignment_pattern, 3, 0, 84), REDUCE(sym_assignment_expression, 3, 0, 65),
- [4935] = {.entry = {.count = 1, .reusable = false}}, SHIFT(582),
- [4937] = {.entry = {.count = 1, .reusable = false}}, SHIFT(581),
- [4939] = {.entry = {.count = 1, .reusable = true}}, SHIFT(583),
- [4941] = {.entry = {.count = 1, .reusable = true}}, SHIFT(584),
- [4943] = {.entry = {.count = 1, .reusable = false}}, SHIFT(585),
- [4945] = {.entry = {.count = 1, .reusable = true}}, SHIFT(585),
- [4947] = {.entry = {.count = 1, .reusable = false}}, SHIFT(586),
- [4949] = {.entry = {.count = 1, .reusable = true}}, SHIFT(587),
- [4951] = {.entry = {.count = 1, .reusable = false}}, SHIFT(588),
- [4953] = {.entry = {.count = 1, .reusable = false}}, SHIFT(589),
- [4955] = {.entry = {.count = 1, .reusable = true}}, SHIFT(582),
- [4957] = {.entry = {.count = 1, .reusable = true}}, SHIFT(590),
- [4959] = {.entry = {.count = 1, .reusable = false}}, SHIFT(150),
- [4961] = {.entry = {.count = 1, .reusable = true}}, SHIFT(581),
- [4963] = {.entry = {.count = 1, .reusable = false}}, SHIFT(592),
- [4965] = {.entry = {.count = 1, .reusable = true}}, SHIFT(592),
- [4967] = {.entry = {.count = 1, .reusable = true}}, SHIFT(593),
- [4969] = {.entry = {.count = 1, .reusable = true}}, SHIFT(614),
- [4971] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__extends_clause_single, 1, 0, 47),
- [4973] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4559),
- [4975] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5399),
- [4977] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1830),
- [4979] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1255),
- [4981] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3838),
- [4983] = {.entry = {.count = 1, .reusable = true}}, SHIFT(959),
- [4985] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_pattern, 2, 0, 0),
- [4987] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_pattern, 3, 0, 27),
- [4989] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_pattern, 2, 0, 0),
- [4991] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assignment_pattern, 3, 0, 65),
- [4993] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3277),
- [4995] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2511),
- [4997] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2492),
- [4999] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2728),
- [5001] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2729),
- [5003] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_object, 2, 0, 0), REDUCE(sym_object_pattern, 2, 0, 0), REDUCE(sym_object_type, 2, 0, 0),
- [5007] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_array, 2, 0, 0), REDUCE(sym_array_pattern, 2, 0, 0), REDUCE(sym_tuple_type, 2, 0, 0),
- [5011] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_array_repeat1, 2, 0, 0),
- [5013] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1728),
- [5015] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1438),
- [5017] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1162),
- [5019] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3996),
- [5021] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2204),
- [5023] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1139),
- [5025] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1256),
- [5027] = {.entry = {.count = 1, .reusable = true}}, SHIFT(911),
- [5029] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3018),
- [5031] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12),
- [5033] = {.entry = {.count = 1, .reusable = true}}, SHIFT(891),
- [5035] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2487),
- [5037] = {.entry = {.count = 1, .reusable = true}}, SHIFT(893),
- [5039] = {.entry = {.count = 1, .reusable = true}}, SHIFT(36),
- [5041] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3182),
- [5043] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3479),
- [5045] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3389),
- [5047] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2497),
- [5049] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2498),
- [5051] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2766),
- [5053] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2767),
- [5055] = {.entry = {.count = 1, .reusable = true}}, SHIFT(47),
- [5057] = {.entry = {.count = 1, .reusable = true}}, SHIFT(883),
- [5059] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_binary_expression, 3, 0, 67), SHIFT(150),
- [5062] = {.entry = {.count = 1, .reusable = true}}, SHIFT(66),
- [5064] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2208),
- [5066] = {.entry = {.count = 1, .reusable = true}}, SHIFT(881),
- [5068] = {.entry = {.count = 1, .reusable = true}}, SHIFT(885),
- [5070] = {.entry = {.count = 1, .reusable = true}}, SHIFT(887),
- [5072] = {.entry = {.count = 1, .reusable = true}}, SHIFT(889),
- [5074] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_unary_expression, 2, 0, 8), SHIFT(150),
- [5077] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_await_expression, 2, 0, 0), SHIFT(150),
- [5080] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_update_expression, 2, 0, 8), SHIFT(150),
- [5083] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1076),
- [5085] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1077),
- [5087] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1079),
- [5089] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pair, 3, 0, 85),
- [5091] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2752),
- [5093] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5401),
- [5095] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_object_pattern, 2, 0, 0), REDUCE(sym_object_type, 2, 0, 0),
- [5098] = {.entry = {.count = 1, .reusable = true}}, SHIFT(930),
- [5100] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_array_pattern, 2, 0, 0), REDUCE(sym_tuple_type, 2, 0, 0),
- [5103] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_regex, 3, 0, 37),
- [5105] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_regex, 3, 0, 37),
- [5107] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1724),
- [5109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1819),
- [5111] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4255),
- [5113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2231),
- [5115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3656),
- [5117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5634),
- [5119] = {.entry = {.count = 1, .reusable = false}}, SHIFT(398),
- [5121] = {.entry = {.count = 1, .reusable = false}}, SHIFT(396),
- [5123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(866),
- [5125] = {.entry = {.count = 1, .reusable = true}}, SHIFT(399),
- [5127] = {.entry = {.count = 1, .reusable = true}}, SHIFT(400),
- [5129] = {.entry = {.count = 1, .reusable = false}}, SHIFT(401),
- [5131] = {.entry = {.count = 1, .reusable = true}}, SHIFT(401),
- [5133] = {.entry = {.count = 1, .reusable = false}}, SHIFT(402),
- [5135] = {.entry = {.count = 1, .reusable = true}}, SHIFT(403),
- [5137] = {.entry = {.count = 1, .reusable = false}}, SHIFT(404),
- [5139] = {.entry = {.count = 1, .reusable = false}}, SHIFT(405),
- [5141] = {.entry = {.count = 1, .reusable = true}}, SHIFT(398),
- [5143] = {.entry = {.count = 1, .reusable = true}}, SHIFT(406),
- [5145] = {.entry = {.count = 1, .reusable = false}}, SHIFT(147),
- [5147] = {.entry = {.count = 1, .reusable = true}}, SHIFT(396),
- [5149] = {.entry = {.count = 1, .reusable = false}}, SHIFT(407),
- [5151] = {.entry = {.count = 1, .reusable = true}}, SHIFT(407),
- [5153] = {.entry = {.count = 1, .reusable = true}}, SHIFT(408),
- [5155] = {.entry = {.count = 1, .reusable = true}}, SHIFT(624),
- [5157] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2726),
- [5159] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2240),
- [5161] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2964),
- [5163] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2241),
- [5165] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2426),
- [5167] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2769),
- [5169] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2171),
- [5171] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2986),
- [5173] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2245),
- [5175] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2465),
- [5177] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2987),
- [5179] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2732),
- [5181] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2740),
- [5183] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2250),
- [5185] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3057),
- [5187] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2251),
- [5189] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2393),
- [5191] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__parameter_name, 1, 0, 9),
- [5193] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__parameter_name, 1, 0, 9),
- [5195] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__parameter_name, 1, 0, 9), REDUCE(sym_primary_type, 1, 0, 50),
- [5198] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2151),
- [5200] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2476),
- [5202] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2521),
- [5204] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3983),
- [5206] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4402),
- [5208] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3941),
- [5210] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5199),
- [5212] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 0), REDUCE(sym__parameter_name, 1, 0, 9),
- [5215] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 0), REDUCE(sym__parameter_name, 1, 0, 9), REDUCE(sym_primary_type, 1, 0, 50),
- [5219] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_binary_expression, 3, 0, 67), SHIFT(147),
- [5222] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4072),
- [5224] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4071),
- [5226] = {.entry = {.count = 1, .reusable = true}}, SHIFT(821),
- [5228] = {.entry = {.count = 1, .reusable = true}}, SHIFT(820),
- [5230] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1004),
- [5232] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_unary_expression, 2, 0, 8), SHIFT(147),
- [5235] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_await_expression, 2, 0, 0), SHIFT(147),
- [5238] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_update_expression, 2, 0, 8), SHIFT(147),
- [5241] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2770),
- [5243] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2244),
- [5245] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2971),
- [5247] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2319),
- [5249] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2471),
- [5251] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2974),
- [5253] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2764),
- [5255] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2720),
- [5257] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2323),
- [5259] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3039),
- [5261] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2324),
- [5263] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2423),
- [5265] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__parameter_name, 2, 0, 37),
- [5267] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__parameter_name, 2, 0, 37),
- [5269] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_type, 1, 0, 50), REDUCE(sym__parameter_name, 2, 0, 37),
- [5272] = {.entry = {.count = 1, .reusable = false}}, SHIFT(477),
- [5274] = {.entry = {.count = 1, .reusable = false}}, SHIFT(476),
- [5276] = {.entry = {.count = 1, .reusable = true}}, SHIFT(478),
- [5278] = {.entry = {.count = 1, .reusable = true}}, SHIFT(479),
- [5280] = {.entry = {.count = 1, .reusable = false}}, SHIFT(480),
- [5282] = {.entry = {.count = 1, .reusable = true}}, SHIFT(480),
- [5284] = {.entry = {.count = 1, .reusable = false}}, SHIFT(481),
- [5286] = {.entry = {.count = 1, .reusable = true}}, SHIFT(482),
- [5288] = {.entry = {.count = 1, .reusable = false}}, SHIFT(483),
- [5290] = {.entry = {.count = 1, .reusable = false}}, SHIFT(484),
- [5292] = {.entry = {.count = 1, .reusable = true}}, SHIFT(477),
- [5294] = {.entry = {.count = 1, .reusable = true}}, SHIFT(485),
- [5296] = {.entry = {.count = 1, .reusable = false}}, SHIFT(149),
- [5298] = {.entry = {.count = 1, .reusable = true}}, SHIFT(476),
- [5300] = {.entry = {.count = 1, .reusable = false}}, SHIFT(486),
- [5302] = {.entry = {.count = 1, .reusable = true}}, SHIFT(486),
- [5304] = {.entry = {.count = 1, .reusable = true}}, SHIFT(487),
- [5306] = {.entry = {.count = 1, .reusable = true}}, SHIFT(502),
- [5308] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_binary_expression, 3, 0, 67), SHIFT(149),
- [5311] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2743),
- [5313] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2253),
- [5315] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3074),
- [5317] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2380),
- [5319] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2456),
- [5321] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_unary_expression, 2, 0, 8), SHIFT(149),
- [5324] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_await_expression, 2, 0, 0), SHIFT(149),
- [5327] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_update_expression, 2, 0, 8), SHIFT(149),
- [5330] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__parameter_name, 3, 0, 99),
- [5332] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__parameter_name, 3, 0, 99),
- [5334] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2189),
- [5336] = {.entry = {.count = 1, .reusable = false}}, SHIFT(545),
- [5338] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__initializer, 2, 0, 88), SHIFT(544),
- [5341] = {.entry = {.count = 1, .reusable = false}}, SHIFT(544),
- [5343] = {.entry = {.count = 1, .reusable = true}}, SHIFT(546),
- [5345] = {.entry = {.count = 1, .reusable = true}}, SHIFT(547),
- [5347] = {.entry = {.count = 1, .reusable = false}}, SHIFT(548),
- [5349] = {.entry = {.count = 1, .reusable = true}}, SHIFT(548),
- [5351] = {.entry = {.count = 1, .reusable = false}}, SHIFT(549),
- [5353] = {.entry = {.count = 1, .reusable = true}}, SHIFT(550),
- [5355] = {.entry = {.count = 1, .reusable = false}}, SHIFT(551),
- [5357] = {.entry = {.count = 1, .reusable = false}}, SHIFT(552),
- [5359] = {.entry = {.count = 1, .reusable = true}}, SHIFT(545),
- [5361] = {.entry = {.count = 1, .reusable = true}}, SHIFT(553),
- [5363] = {.entry = {.count = 1, .reusable = false}}, SHIFT(154),
- [5365] = {.entry = {.count = 1, .reusable = true}}, SHIFT(544),
- [5367] = {.entry = {.count = 1, .reusable = false}}, SHIFT(554),
- [5369] = {.entry = {.count = 1, .reusable = true}}, SHIFT(554),
- [5371] = {.entry = {.count = 1, .reusable = true}}, SHIFT(555),
- [5373] = {.entry = {.count = 1, .reusable = true}}, SHIFT(570),
- [5375] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3731),
- [5377] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2652),
- [5379] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2772),
- [5381] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3854),
- [5383] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2668),
- [5385] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3824),
- [5387] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2665),
- [5389] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__extends_clause_single, 2, 0, 108),
- [5391] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3734),
- [5393] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2656),
- [5395] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_array, 2, 0, 0), REDUCE(sym_array_pattern, 2, 0, 0),
- [5398] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_object, 3, 0, 26), REDUCE(sym_object_pattern, 3, 0, 27),
- [5401] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_object, 2, 0, 0), REDUCE(sym_object_pattern, 2, 0, 0),
- [5404] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 0), REDUCE(sym_literal_type, 1, 0, 0), REDUCE(sym_rest_pattern, 2, 0, 0),
- [5408] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3757),
- [5410] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2666),
- [5412] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2202),
- [5414] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2981),
- [5416] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2418),
- [5418] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 0), REDUCE(sym__property_name, 1, 0, 0),
- [5421] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__property_name, 1, 0, 0),
- [5423] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1, 0, 0), REDUCE(sym__property_name, 1, 0, 0),
- [5426] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__property_name, 1, 0, 0),
- [5428] = {.entry = {.count = 1, .reusable = false}}, SHIFT(509),
- [5430] = {.entry = {.count = 1, .reusable = false}}, SHIFT(508),
- [5432] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3514),
- [5434] = {.entry = {.count = 1, .reusable = true}}, SHIFT(510),
- [5436] = {.entry = {.count = 1, .reusable = true}}, SHIFT(511),
- [5438] = {.entry = {.count = 1, .reusable = false}}, SHIFT(512),
- [5440] = {.entry = {.count = 1, .reusable = true}}, SHIFT(512),
- [5442] = {.entry = {.count = 1, .reusable = false}}, SHIFT(513),
- [5444] = {.entry = {.count = 1, .reusable = true}}, SHIFT(514),
- [5446] = {.entry = {.count = 1, .reusable = false}}, SHIFT(515),
- [5448] = {.entry = {.count = 1, .reusable = false}}, SHIFT(627),
- [5450] = {.entry = {.count = 1, .reusable = true}}, SHIFT(509),
- [5452] = {.entry = {.count = 1, .reusable = true}}, SHIFT(517),
- [5454] = {.entry = {.count = 1, .reusable = false}}, SHIFT(146),
- [5456] = {.entry = {.count = 1, .reusable = true}}, SHIFT(508),
- [5458] = {.entry = {.count = 1, .reusable = false}}, SHIFT(518),
- [5460] = {.entry = {.count = 1, .reusable = true}}, SHIFT(518),
- [5462] = {.entry = {.count = 1, .reusable = true}}, SHIFT(519),
- [5464] = {.entry = {.count = 1, .reusable = true}}, SHIFT(538),
- [5466] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2773),
- [5468] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3878),
- [5470] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2669),
- [5472] = {.entry = {.count = 1, .reusable = true}}, SHIFT(610),
- [5474] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_array, 3, 0, 0), REDUCE(sym_computed_property_name, 3, 0, 0),
- [5477] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_computed_property_name, 3, 0, 0),
- [5479] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_array, 3, 0, 0), REDUCE(sym_computed_property_name, 3, 0, 0),
- [5482] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_computed_property_name, 3, 0, 0),
- [5484] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2763),
- [5486] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3843),
- [5488] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2647),
- [5490] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2239),
- [5492] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3063),
- [5494] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2397),
- [5496] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2746),
- [5498] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2255),
- [5500] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3009),
- [5502] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2459),
- [5504] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3181),
- [5506] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3747),
- [5508] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2653),
- [5510] = {.entry = {.count = 1, .reusable = true}}, SHIFT(540),
- [5512] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4441),
- [5514] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_object_pattern_repeat1, 1, 0, 0),
- [5516] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__parameter_name, 4, 0, 155),
- [5518] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__parameter_name, 4, 0, 155),
- [5520] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__parameter_name, 4, 0, 157),
- [5522] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__parameter_name, 4, 0, 157),
- [5524] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2727),
- [5526] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3842),
- [5528] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2672),
- [5530] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2780),
- [5532] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3798),
- [5534] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2663),
- [5536] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2314),
- [5538] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2966),
- [5540] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2421),
- [5542] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2771),
- [5544] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3817),
- [5546] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2667),
- [5548] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2967),
- [5550] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2977),
- [5552] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3767),
- [5554] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2670),
- [5556] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3808),
- [5558] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2658),
- [5560] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2744),
- [5562] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3914),
- [5564] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2659),
- [5566] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3832),
- [5568] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2660),
- [5570] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2747),
- [5572] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3834),
- [5574] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2661),
- [5576] = {.entry = {.count = 1, .reusable = true}}, SHIFT(441),
- [5578] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__parameter_name, 3, 0, 95),
- [5580] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__parameter_name, 3, 0, 95),
- [5582] = {.entry = {.count = 1, .reusable = true}}, SHIFT(496),
- [5584] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_binary_expression, 3, 0, 67), SHIFT(146),
- [5587] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_unary_expression, 2, 0, 8), SHIFT(146),
- [5590] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_await_expression, 2, 0, 0), SHIFT(146),
- [5593] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_update_expression, 2, 0, 8), SHIFT(146),
- [5596] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__parameter_name, 5, 0, 205),
- [5598] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__parameter_name, 5, 0, 205),
- [5600] = {.entry = {.count = 1, .reusable = true}}, SHIFT(532),
- [5602] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2749),
- [5604] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3822),
- [5606] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2648),
- [5608] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2329),
- [5610] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2984),
- [5612] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2455),
- [5614] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2138),
- [5616] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2994),
- [5618] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2419),
- [5620] = {.entry = {.count = 1, .reusable = true}}, SHIFT(565),
- [5622] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2956),
- [5624] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2965),
- [5626] = {.entry = {.count = 1, .reusable = true}}, SHIFT(419),
- [5628] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2750),
- [5630] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3880),
- [5632] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2645),
- [5634] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2207),
- [5636] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3038),
- [5638] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2463),
- [5640] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4055),
- [5642] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3696),
- [5644] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2466),
- [5646] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5315),
- [5648] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2507),
- [5650] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3611),
- [5652] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2389),
- [5654] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2508),
- [5656] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2543),
- [5658] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2622),
- [5660] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2623),
- [5662] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2739),
- [5664] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3772),
- [5666] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2646),
- [5668] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4095),
- [5670] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4096),
- [5672] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4120),
- [5674] = {.entry = {.count = 1, .reusable = true}}, SHIFT(604),
- [5676] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_binary_expression, 3, 0, 67), SHIFT(154),
- [5679] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__parameter_name, 2, 0, 40),
- [5681] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__parameter_name, 2, 0, 40),
- [5683] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_unary_expression, 2, 0, 8), SHIFT(154),
- [5686] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_await_expression, 2, 0, 0), SHIFT(154),
- [5689] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_update_expression, 2, 0, 8), SHIFT(154),
- [5692] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2254),
- [5694] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3029),
- [5696] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2458),
- [5698] = {.entry = {.count = 1, .reusable = true}}, SHIFT(470),
- [5700] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5291),
- [5702] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3366),
- [5704] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_unary_expression, 2, 0, 8), SHIFT(145),
- [5707] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_await_expression, 2, 0, 0), SHIFT(145),
- [5710] = {.entry = {.count = 1, .reusable = false}}, SHIFT(425),
- [5712] = {.entry = {.count = 1, .reusable = false}}, SHIFT(424),
- [5714] = {.entry = {.count = 1, .reusable = true}}, SHIFT(426),
- [5716] = {.entry = {.count = 1, .reusable = true}}, SHIFT(427),
- [5718] = {.entry = {.count = 1, .reusable = false}}, SHIFT(428),
- [5720] = {.entry = {.count = 1, .reusable = true}}, SHIFT(428),
- [5722] = {.entry = {.count = 1, .reusable = false}}, SHIFT(429),
- [5724] = {.entry = {.count = 1, .reusable = true}}, SHIFT(430),
- [5726] = {.entry = {.count = 1, .reusable = false}}, SHIFT(431),
- [5728] = {.entry = {.count = 1, .reusable = false}}, SHIFT(432),
- [5730] = {.entry = {.count = 1, .reusable = true}}, SHIFT(425),
- [5732] = {.entry = {.count = 1, .reusable = true}}, SHIFT(433),
- [5734] = {.entry = {.count = 1, .reusable = false}}, SHIFT(145),
- [5736] = {.entry = {.count = 1, .reusable = true}}, SHIFT(424),
- [5738] = {.entry = {.count = 1, .reusable = false}}, SHIFT(434),
- [5740] = {.entry = {.count = 1, .reusable = true}}, SHIFT(434),
- [5742] = {.entry = {.count = 1, .reusable = true}}, SHIFT(435),
- [5744] = {.entry = {.count = 1, .reusable = true}}, SHIFT(452),
- [5746] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_update_expression, 2, 0, 8), SHIFT(145),
- [5749] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_object_repeat1, 2, 0, 26), REDUCE(aux_sym_object_pattern_repeat1, 2, 0, 27),
- [5752] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_binary_expression, 3, 0, 67), SHIFT(145),
- [5755] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2765),
- [5757] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2140),
- [5759] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2992),
- [5761] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1957),
- [5763] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1958),
- [5765] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2412),
- [5767] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1770),
- [5769] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2723),
- [5771] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2725),
- [5773] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3897),
- [5775] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3877),
- [5777] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_object_repeat1, 1, 0, 0),
- [5779] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2534),
- [5781] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2505),
- [5783] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2536),
- [5785] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2593),
- [5787] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2642),
- [5789] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2632),
- [5791] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3840),
- [5793] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3358),
- [5795] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2554),
- [5797] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_class, 3, 0, 55), REDUCE(sym_class, 4, 0, 149),
- [5800] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_class, 3, 0, 55), REDUCE(sym_class, 4, 0, 149),
- [5803] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2395),
- [5805] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3371),
- [5807] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2542),
- [5809] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3372),
- [5811] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2759),
- [5813] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_class, 4, 0, 106), REDUCE(sym_class, 5, 0, 194),
- [5816] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_class, 4, 0, 106), REDUCE(sym_class, 5, 0, 194),
- [5819] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_class, 4, 0, 107), REDUCE(sym_class, 5, 0, 195),
- [5822] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_class, 4, 0, 107), REDUCE(sym_class, 5, 0, 195),
- [5825] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_class, 4, 0, 120), REDUCE(sym_class, 5, 0, 196),
- [5828] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_class, 4, 0, 120), REDUCE(sym_class, 5, 0, 196),
- [5831] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2756),
- [5833] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_class, 5, 0, 166), REDUCE(sym_class, 6, 0, 235),
- [5836] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_class, 5, 0, 166), REDUCE(sym_class, 6, 0, 235),
- [5839] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3255),
- [5841] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2724),
- [5843] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3413),
- [5845] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2524),
- [5847] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3443),
- [5849] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2777),
- [5851] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_class, 2, 0, 11), REDUCE(sym_class, 3, 0, 80),
- [5854] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_class, 2, 0, 11), REDUCE(sym_class, 3, 0, 80),
- [5857] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_class, 3, 0, 46), REDUCE(sym_class, 4, 0, 147),
- [5860] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_class, 3, 0, 46), REDUCE(sym_class, 4, 0, 147),
- [5863] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_class, 3, 0, 54), REDUCE(sym_class, 4, 0, 148),
- [5866] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_class, 3, 0, 54), REDUCE(sym_class, 4, 0, 148),
- [5869] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_object_repeat1, 2, 0, 26),
- [5871] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2540),
- [5873] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3365),
- [5875] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3305),
- [5877] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3309),
- [5879] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3383),
- [5881] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3388),
- [5883] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3326),
- [5885] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3402),
- [5887] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3407),
- [5889] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3339),
- [5891] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3262),
- [5893] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3412),
- [5895] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3314),
- [5897] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3420),
- [5899] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3316),
- [5901] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3297),
- [5903] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3321),
- [5905] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2621),
- [5907] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_definition, 7, 0, 271),
- [5909] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_definition, 7, 0, 271),
- [5911] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2627),
- [5913] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_definition, 5, 0, 181),
- [5915] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_definition, 5, 0, 181),
- [5917] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_definition, 7, 0, 272),
- [5919] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_definition, 7, 0, 272),
- [5921] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_definition, 6, 0, 238),
- [5923] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_definition, 6, 0, 238),
- [5925] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_class_body_repeat1, 1, 0, 0),
- [5927] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_class_body_repeat1, 1, 0, 0),
- [5929] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_class_body_repeat1, 1, 0, 0), SHIFT_REPEAT(2630),
- [5932] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2630),
- [5934] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_definition, 6, 0, 229),
- [5936] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_definition, 6, 0, 229),
- [5938] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_definition, 3, 0, 86),
- [5940] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_definition, 3, 0, 86),
- [5942] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_definition, 4, 0, 126),
- [5944] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_definition, 4, 0, 126),
- [5946] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_definition, 5, 0, 200),
- [5948] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_definition, 5, 0, 200),
- [5950] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_class_body_repeat1, 2, 0, 103),
- [5952] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_class_body_repeat1, 2, 0, 103),
- [5954] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_class_body_repeat1, 2, 0, 103), SHIFT_REPEAT(2628),
- [5957] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2624),
- [5959] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_definition, 8, 0, 301),
- [5961] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_definition, 8, 0, 301),
- [5963] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_definition, 8, 0, 302),
- [5965] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_definition, 8, 0, 302),
- [5967] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_definition, 9, 0, 321),
- [5969] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_definition, 9, 0, 321),
- [5971] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_definition, 9, 0, 322),
- [5973] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_definition, 9, 0, 322),
- [5975] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_definition, 10, 0, 337),
- [5977] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_definition, 10, 0, 337),
- [5979] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2612),
- [5981] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_definition, 4, 0, 153),
- [5983] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_definition, 4, 0, 153),
- [5985] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2560),
- [5987] = {.entry = {.count = 1, .reusable = true}}, SHIFT(263),
- [5989] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5737),
- [5991] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1021),
- [5993] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2778),
- [5995] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2640),
- [5997] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3850),
- [5999] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2641),
- [6001] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2649),
- [6003] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_class_body_repeat1, 3, 0, 103),
- [6005] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_class_body_repeat1, 3, 0, 103),
- [6007] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_static_block, 2, 0, 11),
- [6009] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_static_block, 2, 0, 11),
- [6011] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_static_block, 3, 0, 54),
- [6013] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_static_block, 3, 0, 54),
- [6015] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_class_body_repeat1, 2, 0, 0),
- [6017] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_class_body_repeat1, 2, 0, 0),
- [6019] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1954),
- [6021] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1955),
- [6023] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1824),
- [6025] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2677),
- [6027] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2753),
- [6029] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3725),
- [6031] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2662),
- [6033] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2639),
- [6035] = {.entry = {.count = 1, .reusable = true}}, SHIFT(371),
- [6037] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2989),
- [6039] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2044),
- [6041] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2045),
- [6043] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1852),
- [6045] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2737),
- [6047] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2738),
- [6049] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2779),
- [6051] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3890),
- [6053] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2643),
- [6055] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2721),
- [6057] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3852),
- [6059] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2650),
- [6061] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2635),
- [6063] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3904),
- [6065] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3823),
- [6067] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3381),
- [6069] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2472),
- [6071] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2495),
- [6073] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2760),
- [6075] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2761),
- [6077] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3836),
- [6079] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3905),
- [6081] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3895),
- [6083] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_export_statement_repeat1, 2, 0, 20), SHIFT_REPEAT(4085),
- [6086] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3773),
- [6088] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4123),
- [6090] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4532),
- [6092] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2048),
- [6094] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2722),
- [6096] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2969),
- [6098] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2460),
- [6100] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2461),
- [6102] = {.entry = {.count = 1, .reusable = true}}, SHIFT(782),
- [6104] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3980),
- [6106] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2730),
- [6108] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2985),
- [6110] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2470),
- [6112] = {.entry = {.count = 1, .reusable = true}}, SHIFT(838),
- [6114] = {.entry = {.count = 1, .reusable = true}}, SHIFT(840),
- [6116] = {.entry = {.count = 1, .reusable = true}}, SHIFT(169),
- [6118] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2620),
- [6120] = {.entry = {.count = 1, .reusable = true}}, SHIFT(168),
- [6122] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3989),
- [6124] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4023),
- [6126] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2080),
- [6128] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4098),
- [6130] = {.entry = {.count = 1, .reusable = true}}, SHIFT(166),
- [6132] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4102),
- [6134] = {.entry = {.count = 1, .reusable = true}}, SHIFT(171),
- [6136] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4122),
- [6138] = {.entry = {.count = 1, .reusable = true}}, SHIFT(850),
- [6140] = {.entry = {.count = 1, .reusable = true}}, SHIFT(851),
- [6142] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2976),
- [6144] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2320),
- [6146] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2636),
- [6148] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2990),
- [6150] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2248),
- [6152] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2316),
- [6154] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2959),
- [6156] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2182),
- [6158] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2757),
- [6160] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2664),
- [6162] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2968),
- [6164] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2317),
- [6166] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2211),
- [6168] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2654),
- [6170] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2210),
- [6172] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3291),
- [6174] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2523),
- [6176] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3324),
- [6178] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3293),
- [6180] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3370),
- [6182] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3374),
- [6184] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2544),
- [6186] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3375),
- [6188] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3382),
- [6190] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2551),
- [6192] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3391),
- [6194] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2517),
- [6196] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3392),
- [6198] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3323),
- [6200] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2530),
- [6202] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2522),
- [6204] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3387),
- [6206] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2550),
- [6208] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3390),
- [6210] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3258),
- [6212] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2525),
- [6214] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3274),
- [6216] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3296),
- [6218] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2515),
- [6220] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3340),
- [6222] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3446),
- [6224] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2526),
- [6226] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3447),
- [6228] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3302),
- [6230] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2527),
- [6232] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3393),
- [6234] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2539),
- [6236] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3396),
- [6238] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5314),
- [6240] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5741),
- [6242] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5437),
- [6244] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4803),
- [6246] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1056),
- [6248] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5459),
- [6250] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4812),
- [6252] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3659),
- [6254] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1053),
- [6256] = {.entry = {.count = 1, .reusable = true}}, SHIFT(270),
- [6258] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameter, 1, 0, 14),
- [6260] = {.entry = {.count = 1, .reusable = true}}, SHIFT(918),
- [6262] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_type_parameter, 1, 0, 14), SHIFT(3903),
- [6265] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3659),
- [6267] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5845),
- [6269] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1769),
- [6271] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1054),
- [6273] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2168),
- [6275] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4828),
- [6277] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5668),
- [6279] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2954),
- [6281] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3167),
- [6283] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3088),
- [6285] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import, 1, 0, 0),
- [6287] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5669),
- [6289] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1059),
- [6291] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5392),
- [6293] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4578),
- [6295] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5474),
- [6297] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4824),
- [6299] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5407),
- [6301] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4579),
- [6303] = {.entry = {.count = 1, .reusable = true}}, SHIFT(974),
- [6305] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5429),
- [6307] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5444),
- [6309] = {.entry = {.count = 1, .reusable = true}}, SHIFT(920),
- [6311] = {.entry = {.count = 1, .reusable = true}}, SHIFT(254),
- [6313] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5461),
- [6315] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4659),
- [6317] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1068),
- [6319] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5465),
- [6321] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4660),
- [6323] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5467),
- [6325] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4661),
- [6327] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2851),
- [6329] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5710),
- [6331] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5704),
- [6333] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5712),
- [6335] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5723),
- [6337] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5728),
- [6339] = {.entry = {.count = 1, .reusable = true}}, SHIFT(516),
- [6341] = {.entry = {.count = 1, .reusable = true}}, SHIFT(436),
- [6343] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5766),
- [6345] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5789),
- [6347] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5535),
- [6349] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5673),
- [6351] = {.entry = {.count = 1, .reusable = true}}, SHIFT(488),
- [6353] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5860),
- [6355] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5876),
- [6357] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5898),
- [6359] = {.entry = {.count = 1, .reusable = true}}, SHIFT(521),
- [6361] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5918),
- [6363] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5919),
- [6365] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5797),
- [6367] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5672),
- [6369] = {.entry = {.count = 1, .reusable = true}}, SHIFT(556),
- [6371] = {.entry = {.count = 1, .reusable = true}}, SHIFT(409),
- [6373] = {.entry = {.count = 1, .reusable = true}}, SHIFT(572),
- [6375] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5556),
- [6377] = {.entry = {.count = 1, .reusable = true}}, SHIFT(955),
- [6379] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5822),
- [6381] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5839),
- [6383] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5576),
- [6385] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5636),
- [6387] = {.entry = {.count = 1, .reusable = true}}, SHIFT(594),
- [6389] = {.entry = {.count = 1, .reusable = true}}, SHIFT(465),
- [6391] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5857),
- [6393] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2993),
- [6395] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4832),
- [6397] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4831),
- [6399] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__import_identifier, 1, 0, 1),
- [6401] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__import_identifier, 1, 0, 1),
- [6403] = {.entry = {.count = 1, .reusable = true}}, SHIFT(418),
- [6405] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 1, 0, 5),
- [6407] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3689),
- [6409] = {.entry = {.count = 1, .reusable = true}}, SHIFT(195),
- [6411] = {.entry = {.count = 1, .reusable = true}}, SHIFT(979),
- [6413] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3091),
- [6415] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 5, 0, 259),
- [6417] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3561),
- [6419] = {.entry = {.count = 1, .reusable = true}}, SHIFT(193),
- [6421] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3102),
- [6423] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5449),
- [6425] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3584),
- [6427] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3105),
- [6429] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3096),
- [6431] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1436),
- [6433] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 3, 0, 158),
- [6435] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3533),
- [6437] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3107),
- [6439] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3649),
- [6441] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3115),
- [6443] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 4, 0, 214),
- [6445] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3521),
- [6447] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3114),
- [6449] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 4, 0, 216),
- [6451] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3558),
- [6453] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3135),
- [6455] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3535),
- [6457] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3106),
- [6459] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 2, 0, 60),
- [6461] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3509),
- [6463] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3085),
- [6465] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3498),
- [6467] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3118),
- [6469] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1816),
- [6471] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3518),
- [6473] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3095),
- [6475] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_jsx_namespace_name, 3, 0, 0),
- [6477] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_jsx_namespace_name, 3, 0, 0),
- [6479] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_type, 1, 0, 49), REDUCE(sym_jsx_namespace_name, 3, 0, 0),
- [6482] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3508),
- [6484] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3098),
- [6486] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3604),
- [6488] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3128),
- [6490] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3470),
- [6492] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3117),
- [6494] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 6, 0, 294),
- [6496] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3506),
- [6498] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3089),
- [6500] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3243),
- [6502] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 5, 0, 253),
- [6504] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3655),
- [6506] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3111),
- [6508] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3123),
- [6510] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 3, 0, 163),
- [6512] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3550),
- [6514] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3125),
- [6516] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3555),
- [6518] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3130),
- [6520] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3599),
- [6522] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3090),
- [6524] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3605),
- [6526] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3094),
- [6528] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3648),
- [6530] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 2, 0, 104),
- [6532] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3544),
- [6534] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3116),
- [6536] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3672),
- [6538] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3120),
- [6540] = {.entry = {.count = 1, .reusable = true}}, SHIFT(975),
- [6542] = {.entry = {.count = 1, .reusable = false}}, SHIFT(291),
- [6544] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3794),
- [6546] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2998),
- [6548] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4125),
- [6550] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3796),
- [6552] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3134),
- [6554] = {.entry = {.count = 1, .reusable = true}}, SHIFT(952),
- [6556] = {.entry = {.count = 1, .reusable = true}}, SHIFT(953),
- [6558] = {.entry = {.count = 1, .reusable = true}}, SHIFT(954),
- [6560] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5660),
- [6562] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1081),
- [6564] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5416),
- [6566] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4580),
- [6568] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_signature, 5, 0, 253),
- [6570] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3083),
- [6572] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5463),
- [6574] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3903),
- [6576] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3851),
- [6578] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3037),
- [6580] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3976),
- [6582] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_signature, 1, 0, 5),
- [6584] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3132),
- [6586] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_signature, 4, 0, 214),
- [6588] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3093),
- [6590] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3129),
- [6592] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_signature, 3, 0, 158),
- [6594] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3103),
- [6596] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4275),
- [6598] = {.entry = {.count = 1, .reusable = true}}, SHIFT(141),
- [6600] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3110),
- [6602] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3062),
- [6604] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4225),
- [6606] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_signature, 2, 0, 60),
- [6608] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3082),
- [6610] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3119),
- [6612] = {.entry = {.count = 1, .reusable = true}}, SHIFT(995),
- [6614] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3075),
- [6616] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4093),
- [6618] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3092),
- [6620] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3139),
- [6622] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_signature, 3, 0, 60),
- [6624] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_signature, 6, 0, 253),
- [6626] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 3, 0, 60),
- [6628] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 7, 0, 294),
- [6630] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 4, 0, 163),
- [6632] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 2, 0, 5),
- [6634] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_signature, 4, 0, 158),
- [6636] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_signature, 5, 0, 214),
- [6638] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 5, 0, 216),
- [6640] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3811),
- [6642] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5852),
- [6644] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1771),
- [6646] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2205),
- [6648] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 6, 0, 259),
- [6650] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 4, 0, 158),
- [6652] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4276),
- [6654] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_signature, 2, 0, 5),
- [6656] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 6, 0, 253),
- [6658] = {.entry = {.count = 1, .reusable = true}}, SHIFT(956),
- [6660] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5455),
- [6662] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 5, 0, 214),
- [6664] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 3, 0, 104),
- [6666] = {.entry = {.count = 1, .reusable = true}}, SHIFT(255),
- [6668] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_jsx_element_repeat1, 2, 0, 0), SHIFT_REPEAT(291),
- [6671] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_jsx_element_repeat1, 2, 0, 0), SHIFT_REPEAT(3794),
- [6674] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_jsx_element_repeat1, 2, 0, 0), SHIFT_REPEAT(3134),
- [6677] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_jsx_element_repeat1, 2, 0, 0),
- [6679] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_jsx_element_repeat1, 2, 0, 0), SHIFT_REPEAT(3796),
- [6682] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3855),
- [6684] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5438),
- [6686] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_type, 1, 0, 49), SHIFT(5507),
- [6689] = {.entry = {.count = 1, .reusable = true}}, SHIFT(919),
- [6691] = {.entry = {.count = 1, .reusable = true}}, SHIFT(945),
- [6693] = {.entry = {.count = 1, .reusable = false}}, SHIFT(947),
- [6695] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1083),
- [6697] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5469),
- [6699] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4662),
- [6701] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4857),
- [6703] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3232),
- [6705] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5805),
- [6707] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5842),
- [6709] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3704),
- [6711] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1008),
- [6713] = {.entry = {.count = 1, .reusable = true}}, SHIFT(961),
- [6715] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_declarator, 1, 0, 5),
- [6717] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5238),
- [6719] = {.entry = {.count = 1, .reusable = true}}, SHIFT(309),
- [6721] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5586),
- [6723] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3433),
- [6725] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1405),
- [6727] = {.entry = {.count = 1, .reusable = false}}, SHIFT(337),
- [6729] = {.entry = {.count = 1, .reusable = false}}, SHIFT(963),
- [6731] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3350),
- [6733] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3355),
- [6735] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5440),
- [6737] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3400),
- [6739] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_annotation, 2, 0, 0),
- [6741] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1082),
- [6743] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__call_signature, 1, 0, 3),
- [6745] = {.entry = {.count = 1, .reusable = true}}, SHIFT(907),
- [6747] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3322),
- [6749] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4728),
- [6751] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4734),
- [6753] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__call_signature, 2, 0, 19),
- [6755] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3348),
- [6757] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3294),
- [6759] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5850),
- [6761] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3367),
- [6763] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1411),
- [6765] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3403),
- [6767] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5022),
- [6769] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4324),
- [6771] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5540),
- [6773] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5018),
- [6775] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3298),
- [6777] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3275),
- [6779] = {.entry = {.count = 1, .reusable = true}}, SHIFT(464),
- [6781] = {.entry = {.count = 1, .reusable = true}}, SHIFT(941),
- [6783] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4447),
- [6785] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4449),
- [6787] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3806),
- [6789] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3761),
- [6791] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4319),
- [6793] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3845),
- [6795] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4320),
- [6797] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3538),
- [6799] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3539),
- [6801] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3510),
- [6803] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3511),
- [6805] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5457),
- [6807] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1007),
- [6809] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1012),
- [6811] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1085),
- [6813] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 7, 0, 319),
- [6815] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3571),
- [6817] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3576),
- [6819] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5207),
- [6821] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5239),
- [6823] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3727),
- [6825] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3763),
- [6827] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3740),
- [6829] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3764),
- [6831] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3516),
- [6833] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3517),
- [6835] = {.entry = {.count = 1, .reusable = true}}, SHIFT(337),
- [6837] = {.entry = {.count = 1, .reusable = true}}, SHIFT(963),
- [6839] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_pattern, 4, 0, 0),
- [6841] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3744),
- [6843] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3765),
- [6845] = {.entry = {.count = 1, .reusable = true}}, SHIFT(917),
- [6847] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5737),
- [6849] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3746),
- [6851] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3768),
- [6853] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3751),
- [6855] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3778),
- [6857] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3565),
- [6859] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3566),
- [6861] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3754),
- [6863] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3780),
- [6865] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5480),
- [6867] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3577),
- [6869] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3578),
- [6871] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3579),
- [6873] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3580),
- [6875] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_pattern, 3, 0, 0),
- [6877] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3548),
- [6879] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3551),
- [6881] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3556),
- [6883] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3557),
- [6885] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3636),
- [6887] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3637),
- [6889] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5278),
- [6891] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3792),
- [6893] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3643),
- [6895] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3644),
- [6897] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 6, 0, 287),
- [6899] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3712),
- [6901] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2191),
- [6903] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3793),
- [6905] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3684),
- [6907] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3686),
- [6909] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3540),
- [6911] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3602),
- [6913] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5277),
- [6915] = {.entry = {.count = 1, .reusable = true}}, SHIFT(902),
- [6917] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3628),
- [6919] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3675),
- [6921] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3615),
- [6923] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3677),
- [6925] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3715),
- [6927] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3685),
- [6929] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3718),
- [6931] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3496),
- [6933] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_annotation, 2, 0, 0),
- [6935] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3542),
- [6937] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3554),
- [6939] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3586),
- [6941] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3587),
- [6943] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4929),
- [6945] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1020),
- [6947] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__jsx_start_opening_element_repeat1, 2, 0, 134), SHIFT_REPEAT(3659),
- [6950] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__jsx_start_opening_element_repeat1, 2, 0, 134), SHIFT_REPEAT(270),
- [6953] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__jsx_start_opening_element_repeat1, 2, 0, 134),
- [6955] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__jsx_start_opening_element_repeat1, 2, 0, 134), SHIFT_REPEAT(3659),
- [6958] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2259),
- [6960] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1407),
- [6962] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_pattern, 3, 0, 0),
- [6964] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2266),
- [6966] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4292),
- [6968] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3691),
- [6970] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3708),
- [6972] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5078),
- [6974] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4293),
- [6976] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1408),
- [6978] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3502),
- [6980] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3503),
- [6982] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4294),
- [6984] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3513),
- [6986] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3595),
- [6988] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3683),
- [6990] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3721),
- [6992] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3645),
- [6994] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3664),
- [6996] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1725),
- [6998] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3670),
- [7000] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3673),
- [7002] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3676),
- [7004] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3692),
- [7006] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1726),
- [7008] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1729),
- [7010] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1730),
- [7012] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1731),
- [7014] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1734),
- [7016] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3603),
- [7018] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3613),
- [7020] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3581),
- [7022] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3722),
- [7024] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3657),
- [7026] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3714),
- [7028] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2193),
- [7030] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3701),
- [7032] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3705),
- [7034] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3546),
- [7036] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3564),
- [7038] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3719),
- [7040] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3711),
- [7042] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3706),
- [7044] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3707),
- [7046] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3614),
- [7048] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3616),
- [7050] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3702),
- [7052] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3562),
- [7054] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3569),
- [7056] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3583),
- [7058] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3647),
- [7060] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3667),
- [7062] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3668),
- [7064] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3687),
- [7066] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4295),
- [7068] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3713),
- [7070] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3494),
- [7072] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1638),
- [7074] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1639),
- [7076] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3592),
- [7078] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3594),
- [7080] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4297),
- [7082] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3492),
- [7084] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3716),
- [7086] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_pattern, 4, 0, 27),
- [7088] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2194),
- [7090] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2190),
- [7092] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4299),
- [7094] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2124),
- [7096] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1416),
- [7098] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_pattern, 4, 0, 0),
- [7100] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3608),
- [7102] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3612),
- [7104] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5464),
- [7106] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3626),
- [7108] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3632),
- [7110] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3633),
- [7112] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3634),
- [7114] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2192),
- [7116] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2821),
- [7118] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5832),
- [7120] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3755),
- [7122] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3216),
- [7124] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2217),
- [7126] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3783),
- [7128] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1953),
- [7130] = {.entry = {.count = 1, .reusable = true}}, SHIFT(143),
- [7132] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4520),
- [7134] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5691),
- [7136] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2819),
- [7138] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3242),
- [7140] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1700),
- [7142] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_adding_type_annotation, 2, 0, 0),
- [7144] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2784),
- [7146] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2831),
- [7148] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3858),
- [7150] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2020),
- [7152] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2862),
- [7154] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3199),
- [7156] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2156),
- [7158] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2827),
- [7160] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3003),
- [7162] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1026),
- [7164] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1027),
- [7166] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1028),
- [7168] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1691),
- [7170] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1981),
- [7172] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1433),
- [7174] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1571),
- [7176] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2427),
- [7178] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1761),
- [7180] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_omitting_type_annotation, 2, 0, 0),
- [7182] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1009),
- [7184] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_opting_type_annotation, 2, 0, 0),
- [7186] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2502),
- [7188] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2331),
- [7190] = {.entry = {.count = 1, .reusable = true}}, SHIFT(28),
- [7192] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5865),
- [7194] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5880),
- [7196] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1973),
- [7198] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5781),
- [7200] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3126),
- [7202] = {.entry = {.count = 1, .reusable = true}}, SHIFT(576),
- [7204] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_required_parameter, 1, 0, 10),
- [7206] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3827),
- [7208] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_signature, 7, 0, 303),
- [7210] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_parameters, 4, 0, 0),
- [7212] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_signature, 7, 0, 304),
- [7214] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3248),
- [7216] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_construct_signature, 4, 0, 263),
- [7218] = {.entry = {.count = 1, .reusable = true}}, SHIFT(709),
- [7220] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5740),
- [7222] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3214),
- [7224] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_signature, 5, 0, 245),
- [7226] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_signature, 8, 0, 325),
- [7228] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4195),
- [7230] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3758),
- [7232] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3482),
- [7234] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5894),
- [7236] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4730),
- [7238] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4526),
- [7240] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4375),
- [7242] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3801),
- [7244] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_extends_type_clause, 2, 0, 140),
- [7246] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4469),
- [7248] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5711),
- [7250] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1067),
- [7252] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_extends_type_clause, 2, 0, 140),
- [7254] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_optional_chain, 1, 0, 0),
- [7256] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_signature, 8, 0, 330),
- [7258] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_signature, 5, 0, 244),
- [7260] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 8, 0, 319),
- [7262] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_signature, 9, 0, 339),
- [7264] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_parameters, 5, 0, 0),
- [7266] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3453),
- [7268] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_signature, 3, 0, 125),
- [7270] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_parameters, 3, 0, 0),
- [7272] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4376),
- [7274] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3797),
- [7276] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4158),
- [7278] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3775),
- [7280] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_signature, 3, 0, 162),
- [7282] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_construct_signature, 2, 0, 168),
- [7284] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4170),
- [7286] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3728),
- [7288] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_pattern, 1, -1, 0), SHIFT(423),
- [7291] = {.entry = {.count = 1, .reusable = true}}, SHIFT(942),
- [7293] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4180),
- [7295] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3749),
- [7297] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_signature, 6, 0, 279),
- [7299] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_signature, 6, 0, 280),
- [7301] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4428),
- [7303] = {.entry = {.count = 1, .reusable = true}}, SHIFT(423),
- [7305] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_pattern, 1, -1, 0), SHIFT(375),
- [7308] = {.entry = {.count = 1, .reusable = true}}, SHIFT(619),
- [7310] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4140),
- [7312] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1005),
- [7314] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1006),
- [7316] = {.entry = {.count = 1, .reusable = true}}, SHIFT(934),
- [7318] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1011),
- [7320] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_construct_signature, 3, 0, 223),
- [7322] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_construct_signature, 3, 0, 224),
- [7324] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_parameters, 2, 0, 0),
- [7326] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_signature, 2, 0, 102),
- [7328] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1054),
- [7330] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameter, 2, 0, 59),
- [7332] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_jsx_attribute, 1, 0, 7),
- [7334] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3341),
- [7336] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_jsx_attribute, 1, 0, 7),
- [7338] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4202),
- [7340] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3733),
- [7342] = {.entry = {.count = 1, .reusable = true}}, SHIFT(286),
- [7344] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_signature, 4, 0, 206),
- [7346] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_signature, 4, 0, 180),
- [7348] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4252),
- [7350] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3876),
- [7352] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4258),
- [7354] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3884),
- [7356] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4178),
- [7358] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3841),
- [7360] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 7, 0, 287),
- [7362] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4535),
- [7364] = {.entry = {.count = 1, .reusable = true}}, SHIFT(232),
- [7366] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4410),
- [7368] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_jsx_opening_element, 4, -1, 133),
- [7370] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4182),
- [7372] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__call_signature, 3, 0, 78),
- [7374] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__call_signature, 2, 0, 18),
- [7376] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4302),
- [7378] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4159),
- [7380] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4354),
- [7382] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1362),
- [7384] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1350),
- [7386] = {.entry = {.count = 1, .reusable = true}}, SHIFT(933),
- [7388] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1554),
- [7390] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constraint, 2, 0, 0),
- [7392] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_jsx_opening_element, 4, -1, 135),
- [7394] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_jsx_expression, 2, 0, 0),
- [7396] = {.entry = {.count = 1, .reusable = true}}, SHIFT(901),
- [7398] = {.entry = {.count = 1, .reusable = true}}, SHIFT(29),
- [7400] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1377),
- [7402] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_jsx_opening_element, 4, -1, 137),
- [7404] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4155),
- [7406] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_sequence_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(530),
- [7409] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4203),
- [7411] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_implements_clause_repeat1, 2, 0, 0),
- [7413] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_jsx_opening_element, 4, -1, 138),
- [7415] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1360),
- [7417] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1600),
- [7419] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_jsx_opening_element, 2, -1, 0),
- [7421] = {.entry = {.count = 1, .reusable = true}}, SHIFT(929),
- [7423] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4940),
- [7425] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4206),
- [7427] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4207),
- [7429] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_jsx_opening_element, 5, -1, 183),
- [7431] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1364),
- [7433] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3982),
- [7435] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4036),
- [7437] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1379),
- [7439] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2037),
- [7441] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4079),
- [7443] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4331),
- [7445] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_switch_body_repeat1, 2, 0, 0), SHIFT_REPEAT(5539),
- [7448] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_switch_body_repeat1, 2, 0, 0),
- [7450] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_switch_body_repeat1, 2, 0, 0), SHIFT_REPEAT(374),
- [7453] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4117),
- [7455] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_object_type_repeat1, 2, 0, 0), SHIFT_REPEAT(1399),
- [7458] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_object_type_repeat1, 2, 0, 0),
- [7460] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2233),
- [7462] = {.entry = {.count = 1, .reusable = true}}, SHIFT(304),
- [7464] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_template_string_repeat1, 2, 0, 0), SHIFT_REPEAT(3781),
- [7467] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_template_string_repeat1, 2, 0, 0),
- [7469] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_template_string_repeat1, 2, 0, 0), SHIFT_REPEAT(304),
- [7472] = {.entry = {.count = 1, .reusable = true}}, SHIFT(938),
- [7474] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3781),
- [7476] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1776),
- [7478] = {.entry = {.count = 1, .reusable = true}}, SHIFT(939),
- [7480] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1086),
- [7482] = {.entry = {.count = 1, .reusable = true}}, SHIFT(944),
- [7484] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1346),
- [7486] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4069),
- [7488] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_jsx_text, 1, 0, 0),
- [7490] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3016),
- [7492] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3215),
- [7494] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3724),
- [7496] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4377),
- [7498] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3950),
- [7500] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_extends_type_clause, 2, 0, 141),
- [7502] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_extends_type_clause, 2, 0, 141),
- [7504] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4398),
- [7506] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1378),
- [7508] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3789),
- [7510] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_sequence_expression, 2, 0, 0),
- [7512] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1372),
- [7514] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3045),
- [7516] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3217),
- [7518] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4259),
- [7520] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4053),
- [7522] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1352),
- [7524] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_jsx_opening_element, 3, -1, 64),
- [7526] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_export_statement_repeat1, 2, 0, 20), SHIFT_REPEAT(4394),
- [7529] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4210),
- [7531] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4235),
- [7533] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4234),
- [7535] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4193),
- [7537] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1367),
- [7539] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_jsx_attribute, 1, 0, 0),
- [7541] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3250),
- [7543] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_jsx_attribute, 1, 0, 0),
- [7545] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_optional_parameter, 2, 0, 10),
- [7547] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1355),
- [7549] = {.entry = {.count = 1, .reusable = true}}, SHIFT(658),
- [7551] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1348),
- [7553] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4064),
- [7555] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_implements_clause, 2, 0, 0),
- [7557] = {.entry = {.count = 1, .reusable = true}}, SHIFT(946),
- [7559] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4067),
- [7561] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4068),
- [7563] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_jsx_expression, 3, 0, 0),
- [7565] = {.entry = {.count = 1, .reusable = true}}, SHIFT(927),
- [7567] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3015),
- [7569] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4411),
- [7571] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4196),
- [7573] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4304),
- [7575] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4212),
- [7577] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1233),
- [7579] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_jsx_opening_element, 5, -1, 184),
- [7581] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2689),
- [7583] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3220),
- [7585] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5538),
- [7587] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4109),
- [7589] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4271),
- [7591] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4219),
- [7593] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2209),
- [7595] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__tuple_type_member, 1, 0, 0),
- [7597] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5511),
- [7599] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2685),
- [7601] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3224),
- [7603] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_extends_type_clause_repeat1, 2, 0, 140),
- [7605] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_extends_type_clause_repeat1, 2, 0, 140),
- [7607] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2691),
- [7609] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4692),
- [7611] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5539),
- [7613] = {.entry = {.count = 1, .reusable = true}}, SHIFT(805),
- [7615] = {.entry = {.count = 1, .reusable = true}}, SHIFT(374),
- [7617] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1354),
- [7619] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1713),
- [7621] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5548),
- [7623] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1359),
- [7625] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1353),
- [7627] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3385),
- [7629] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4261),
- [7631] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4222),
- [7633] = {.entry = {.count = 1, .reusable = true}}, SHIFT(926),
- [7635] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3359),
- [7637] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4028),
- [7639] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4263),
- [7641] = {.entry = {.count = 1, .reusable = true}}, SHIFT(923),
- [7643] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3547),
- [7645] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4177),
- [7647] = {.entry = {.count = 1, .reusable = true}}, SHIFT(922),
- [7649] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2844),
- [7651] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4224),
- [7653] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_asserts_annotation, 2, 0, 0),
- [7655] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4313),
- [7657] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2703),
- [7659] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5606),
- [7661] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_predicate_annotation, 2, 0, 0),
- [7663] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5532),
- [7665] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_jsx_opening_element, 3, -1, 60),
- [7667] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4078),
- [7669] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4350),
- [7671] = {.entry = {.count = 1, .reusable = true}}, SHIFT(931),
- [7673] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2035),
- [7675] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1358),
- [7677] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1347),
- [7679] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3186),
- [7681] = {.entry = {.count = 1, .reusable = true}}, SHIFT(765),
- [7683] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4061),
- [7685] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__call_signature, 1, 0, 3), SHIFT(994),
- [7688] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 6, 0, 293),
- [7690] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 6, 0, 289),
- [7692] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 5, 0, 255),
- [7694] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 5, 0, 257),
- [7696] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_jsx_expression, 2, 0, 0),
- [7698] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__call_signature, 1, 0, 3), SHIFT(908),
- [7701] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1183),
- [7703] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4830),
- [7705] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_default_type, 2, 0, 0),
- [7707] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameters, 4, 0, 0),
- [7709] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4705),
- [7711] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1677),
- [7713] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5244),
- [7715] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2678),
- [7717] = {.entry = {.count = 1, .reusable = true}}, SHIFT(817),
- [7719] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3953),
- [7721] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2022),
- [7723] = {.entry = {.count = 1, .reusable = true}}, SHIFT(940),
- [7725] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4017),
- [7727] = {.entry = {.count = 1, .reusable = true}}, SHIFT(778),
- [7729] = {.entry = {.count = 1, .reusable = true}}, SHIFT(776),
- [7731] = {.entry = {.count = 1, .reusable = true}}, SHIFT(777),
- [7733] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_jsx_expression, 3, 0, 0),
- [7735] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5419),
- [7737] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_construct_signature, 4, 0, 261),
- [7739] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__call_signature, 1, 0, 3), SHIFT(899),
- [7742] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3978),
- [7744] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3975),
- [7746] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3977),
- [7748] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4008),
- [7750] = {.entry = {.count = 1, .reusable = true}}, SHIFT(947),
- [7752] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2091),
- [7754] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4233),
- [7756] = {.entry = {.count = 1, .reusable = true}}, SHIFT(812),
- [7758] = {.entry = {.count = 1, .reusable = true}}, SHIFT(810),
- [7760] = {.entry = {.count = 1, .reusable = true}}, SHIFT(811),
- [7762] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2688),
- [7764] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4065),
- [7766] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__call_signature, 1, 0, 3), SHIFT(960),
- [7769] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__call_signature, 2, 0, 19), SHIFT(895),
- [7772] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4054),
- [7774] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4049),
- [7776] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4052),
- [7778] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_signature, 4, 0, 210),
- [7780] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4077),
- [7782] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_signature, 5, 0, 247),
- [7784] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_signature, 4, 0, 212),
- [7786] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_signature, 5, 0, 251),
- [7788] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_construct_signature, 5, 0, 295),
- [7790] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_construct_signature, 4, 0, 262),
- [7792] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__call_signature, 2, 0, 19), SHIFT(965),
- [7795] = {.entry = {.count = 1, .reusable = true}}, SHIFT(795),
- [7797] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__call_signature, 2, 0, 19), SHIFT(897),
- [7800] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4121),
- [7802] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 5, 0, 251),
- [7804] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_index_signature, 7, 0, 306),
- [7806] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_index_signature, 7, 0, 307),
- [7808] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 7, 0, 309),
- [7810] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 7, 0, 312),
- [7812] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2601),
- [7814] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4735),
- [7816] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5260),
- [7818] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 7, 0, 315),
- [7820] = {.entry = {.count = 1, .reusable = true}}, SHIFT(375),
- [7822] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5166),
- [7824] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3883),
- [7826] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5514),
- [7828] = {.entry = {.count = 1, .reusable = true}}, SHIFT(828),
- [7830] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3188),
- [7832] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4110),
- [7834] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3163),
- [7836] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 7, 0, 318),
- [7838] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4616),
- [7840] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4279),
- [7842] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5215),
- [7844] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1583),
- [7846] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4131),
- [7848] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1610),
- [7850] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__jsx_string, 3, 0, 0),
- [7852] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__jsx_string, 3, 0, 0),
- [7854] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3336),
- [7856] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4143),
- [7858] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_declarator, 2, 0, 31),
- [7860] = {.entry = {.count = 1, .reusable = true}}, SHIFT(314),
- [7862] = {.entry = {.count = 1, .reusable = true}}, SHIFT(315),
- [7864] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3417),
- [7866] = {.entry = {.count = 1, .reusable = true}}, SHIFT(319),
- [7868] = {.entry = {.count = 1, .reusable = true}}, SHIFT(321),
- [7870] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 3, 0, 160),
- [7872] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5216),
- [7874] = {.entry = {.count = 1, .reusable = true}}, SHIFT(798),
- [7876] = {.entry = {.count = 1, .reusable = true}}, SHIFT(797),
- [7878] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 3, 0, 89),
- [7880] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 3, 0, 165),
- [7882] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 5, 0, 247),
- [7884] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_signature, 2, 0, 32),
- [7886] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_index_signature, 6, 0, 275),
- [7888] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_signature, 6, 0, 283),
- [7890] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_index_signature, 6, 0, 277),
- [7892] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_signature, 6, 0, 286),
- [7894] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_index_signature, 6, 0, 278),
- [7896] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_index_signature, 8, 0, 323),
- [7898] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5030),
- [7900] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2339),
- [7902] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5356),
- [7904] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_index_signature, 8, 0, 324),
- [7906] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_rest_type, 2, 0, 0),
- [7908] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 8, 0, 328),
- [7910] = {.entry = {.count = 1, .reusable = true}}, SHIFT(752),
- [7912] = {.entry = {.count = 1, .reusable = true}}, SHIFT(753),
- [7914] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5102),
- [7916] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_template_literal_type_repeat1, 2, 0, 0),
- [7918] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_template_literal_type_repeat1, 2, 0, 0), SHIFT_REPEAT(940),
- [7921] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_template_literal_type_repeat1, 2, 0, 0), SHIFT_REPEAT(4233),
- [7924] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 8, 0, 333),
- [7926] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_jsx_attribute, 3, 0, 7),
- [7928] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_jsx_attribute, 3, 0, 7),
- [7930] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_jsx_attribute, 3, 0, 0),
- [7932] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_jsx_attribute, 3, 0, 0),
- [7934] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 8, 0, 336),
- [7936] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameters, 5, 0, 0),
- [7938] = {.entry = {.count = 1, .reusable = true}}, SHIFT(755),
- [7940] = {.entry = {.count = 1, .reusable = true}}, SHIFT(754),
- [7942] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3527),
- [7944] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3235),
- [7946] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5601),
- [7948] = {.entry = {.count = 1, .reusable = true}}, SHIFT(784),
- [7950] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__call_signature, 2, 0, 19), SHIFT(1031),
- [7953] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_declarator, 2, 0, 32),
- [7955] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5767),
- [7957] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 6, 0, 283),
- [7959] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5545),
- [7961] = {.entry = {.count = 1, .reusable = true}}, SHIFT(785),
- [7963] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1039),
- [7965] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_mapped_type_clause, 3, 0, 207),
- [7967] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_index_signature, 4, 0, 208),
- [7969] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 4, 0, 210),
- [7971] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 4, 0, 212),
- [7973] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_signature, 7, 0, 309),
- [7975] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 9, 0, 342),
- [7977] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 2, 0, 32),
- [7979] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 4, 0, 218),
- [7981] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4658),
- [7983] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 4, 0, 220),
- [7985] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_call_signature, 1, 0, 110),
- [7987] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5863),
- [7989] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 6, 0, 286),
- [7991] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__call_signature, 1, 0, 3), SHIFT(905),
- [7994] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2873),
- [7996] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__call_signature, 1, 0, 3), SHIFT(1010),
- [7999] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__call_signature, 2, 0, 19), SHIFT(906),
- [8002] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__call_signature, 2, 0, 19), SHIFT(1014),
- [8005] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_construct_signature, 3, 0, 222),
- [8007] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_signature, 3, 0, 160),
- [8009] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_signature, 3, 0, 89),
- [8011] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2923),
- [8013] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4347),
- [8015] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_index_signature, 5, 0, 252),
- [8017] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__jsx_start_opening_element_repeat1, 1, 0, 61),
- [8019] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__jsx_start_opening_element_repeat1, 1, 0, 61),
- [8021] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__jsx_string, 2, 0, 0),
- [8023] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__jsx_string, 2, 0, 0),
- [8025] = {.entry = {.count = 1, .reusable = true}}, SHIFT(849),
- [8027] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3283),
- [8029] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_extends_type_clause_repeat1, 2, 0, 141),
- [8031] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_extends_type_clause_repeat1, 2, 0, 141),
- [8033] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameters, 3, 0, 0),
- [8035] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3717),
- [8037] = {.entry = {.count = 1, .reusable = true}}, SHIFT(758),
- [8039] = {.entry = {.count = 1, .reusable = false}}, SHIFT(245),
- [8041] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4486),
- [8043] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_sequence_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(466),
- [8046] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3307),
- [8048] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4430),
- [8050] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4431),
- [8052] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3311),
- [8054] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4480),
- [8056] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4493),
- [8058] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3173),
- [8060] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4404),
- [8062] = {.entry = {.count = 1, .reusable = true}}, SHIFT(968),
- [8064] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4941),
- [8066] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2820),
- [8068] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4463),
- [8070] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_extends_clause, 3, 0, 109),
- [8072] = {.entry = {.count = 1, .reusable = true}}, SHIFT(307),
- [8074] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4465),
- [8076] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_object_pattern_repeat1, 2, 0, 27),
- [8078] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4405),
- [8080] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1448),
- [8082] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4457),
- [8084] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1033),
- [8086] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_implements_clause_repeat1, 2, 0, 0), SHIFT_REPEAT(946),
- [8089] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2925),
- [8091] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4522),
- [8093] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4392),
- [8095] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4522),
- [8097] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2680),
- [8099] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4523),
- [8101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4523),
- [8103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4459),
- [8105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(793),
- [8107] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1428),
- [8109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4518),
- [8111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2871),
- [8113] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameter, 3, 0, 132),
- [8115] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1445),
- [8117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3244),
- [8119] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3652),
- [8121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4250),
- [8123] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__from_clause, 2, 0, 29),
- [8125] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2822),
- [8127] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3473),
- [8129] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4590),
- [8131] = {.entry = {.count = 1, .reusable = true}}, SHIFT(605),
- [8133] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3674),
- [8135] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3862),
- [8137] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_extends_type_clause, 3, 0, 187),
- [8139] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_extends_type_clause, 3, 0, 187),
- [8141] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_extends_type_clause, 3, 0, 188),
- [8143] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_extends_type_clause, 3, 0, 188),
- [8145] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1049),
- [8147] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1016),
- [8149] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1036),
- [8151] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_string_repeat1, 2, 0, 0),
- [8153] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_string_repeat1, 2, 0, 0), SHIFT_REPEAT(4480),
- [8156] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_extends_clause, 2, 0, 48),
- [8158] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1018),
- [8160] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1608),
- [8162] = {.entry = {.count = 1, .reusable = true}}, SHIFT(971),
- [8164] = {.entry = {.count = 1, .reusable = false}}, SHIFT(231),
- [8166] = {.entry = {.count = 1, .reusable = true}}, SHIFT(372),
- [8168] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__jsx_string_repeat1, 2, 0, 0), SHIFT_REPEAT(4488),
- [8171] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__jsx_string_repeat1, 2, 0, 0),
- [8173] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__jsx_string_repeat1, 2, 0, 0), SHIFT_REPEAT(4488),
- [8176] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__jsx_string_repeat2, 2, 0, 0), SHIFT_REPEAT(4490),
- [8179] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__jsx_string_repeat2, 2, 0, 0),
- [8181] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__jsx_string_repeat2, 2, 0, 0), SHIFT_REPEAT(4490),
- [8184] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_string_repeat2, 2, 0, 0),
- [8186] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_string_repeat2, 2, 0, 0), SHIFT_REPEAT(4493),
- [8189] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1489),
- [8191] = {.entry = {.count = 1, .reusable = true}}, SHIFT(993),
- [8193] = {.entry = {.count = 1, .reusable = true}}, SHIFT(951),
- [8195] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2089),
- [8197] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_extends_clause_repeat1, 2, 0, 167),
- [8199] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_extends_clause_repeat1, 2, 0, 167), SHIFT_REPEAT(307),
- [8202] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3231),
- [8204] = {.entry = {.count = 1, .reusable = true}}, SHIFT(769),
- [8206] = {.entry = {.count = 1, .reusable = true}}, SHIFT(759),
- [8208] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_optional_parameter, 3, 0, 97),
- [8210] = {.entry = {.count = 1, .reusable = false}}, SHIFT(648),
- [8212] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4508),
- [8214] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4509),
- [8216] = {.entry = {.count = 1, .reusable = true}}, SHIFT(794),
- [8218] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1429),
- [8220] = {.entry = {.count = 1, .reusable = false}}, SHIFT(645),
- [8222] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_required_parameter, 2, 0, 39),
- [8224] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_array_repeat1, 2, 0, 0), SHIFT_REPEAT(261),
- [8227] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4503),
- [8229] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1893),
- [8231] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_template_string_repeat1, 1, 0, 0),
- [8233] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_template_string_repeat1, 1, 0, 0), REDUCE(aux_sym_template_literal_type_repeat1, 1, 0, 0),
- [8236] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4383),
- [8238] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4488),
- [8240] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4132),
- [8242] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4488),
- [8244] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4490),
- [8246] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4490),
- [8248] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3405),
- [8250] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3532),
- [8252] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4945),
- [8254] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_extends_type_clause_repeat1, 2, 0, 231),
- [8256] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_extends_type_clause_repeat1, 2, 0, 231), SHIFT_REPEAT(4469),
- [8259] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_extends_type_clause_repeat1, 2, 0, 231),
- [8261] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3954),
- [8263] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_enum_body_repeat1, 2, 0, 60),
- [8265] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3955),
- [8267] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3292),
- [8269] = {.entry = {.count = 1, .reusable = true}}, SHIFT(503),
- [8271] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1087),
- [8273] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3474),
- [8275] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3122),
- [8277] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4547),
- [8279] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4552),
- [8281] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameter, 2, 0, 63),
- [8283] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3489),
- [8285] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1046),
- [8287] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3295),
- [8289] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1057),
- [8291] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3490),
- [8293] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3109),
- [8295] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1060),
- [8297] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_mapped_type_clause, 5, 0, 276),
- [8299] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3968),
- [8301] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_require_clause, 6, 0, 239),
- [8303] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3484),
- [8305] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1074),
- [8307] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3212),
- [8309] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4507),
- [8311] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_template_substitution, 3, 0, 0),
- [8313] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_variable_declaration_repeat1, 2, 0, 0), SHIFT_REPEAT(3717),
- [8316] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_variable_declaration_repeat1, 2, 0, 0),
- [8318] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1080),
- [8320] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3485),
- [8322] = {.entry = {.count = 1, .reusable = true}}, SHIFT(991),
- [8324] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 7, 0, 314),
- [8326] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1685),
- [8328] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2679),
- [8330] = {.entry = {.count = 1, .reusable = true}}, SHIFT(818),
- [8332] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 5, 0, 254),
- [8334] = {.entry = {.count = 1, .reusable = true}}, SHIFT(912),
- [8336] = {.entry = {.count = 1, .reusable = true}}, SHIFT(916),
- [8338] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 6, 0, 292),
- [8340] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 7, 0, 316),
- [8342] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2906),
- [8344] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2879),
- [8346] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2909),
- [8348] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2912),
- [8350] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2880),
- [8352] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2913),
- [8354] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2922),
- [8356] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2881),
- [8358] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2924),
- [8360] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2929),
- [8362] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2882),
- [8364] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2930),
- [8366] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1854),
- [8368] = {.entry = {.count = 1, .reusable = true}}, SHIFT(876),
- [8370] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 7, 0, 313),
- [8372] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_parameters, 4, 0, 0),
- [8374] = {.entry = {.count = 1, .reusable = true}}, SHIFT(194),
- [8376] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1689),
- [8378] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3638),
- [8380] = {.entry = {.count = 1, .reusable = true}}, SHIFT(925),
- [8382] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 6, 0, 288),
- [8384] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5274),
- [8386] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 5, 0, 256),
- [8388] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 6, 0, 290),
- [8390] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5275),
- [8392] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2232),
- [8394] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5236),
- [8396] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 5, 0, 258),
- [8398] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 7, 0, 317),
- [8400] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_named_imports_repeat1, 2, 0, 0), SHIFT_REPEAT(3347),
- [8403] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_named_imports_repeat1, 2, 0, 0),
- [8405] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4308),
- [8407] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5394),
- [8409] = {.entry = {.count = 1, .reusable = true}}, SHIFT(878),
- [8411] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1609),
- [8413] = {.entry = {.count = 1, .reusable = true}}, SHIFT(980),
- [8415] = {.entry = {.count = 1, .reusable = true}}, SHIFT(981),
- [8417] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3278),
- [8419] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3438),
- [8421] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3007),
- [8423] = {.entry = {.count = 1, .reusable = true}}, SHIFT(924),
- [8425] = {.entry = {.count = 1, .reusable = true}}, SHIFT(879),
- [8427] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2262),
- [8429] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4527),
- [8431] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5433),
- [8433] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 5, 0, 246),
- [8435] = {.entry = {.count = 1, .reusable = true}}, SHIFT(871),
- [8437] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3416),
- [8439] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2512),
- [8441] = {.entry = {.count = 1, .reusable = true}}, SHIFT(914),
- [8443] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4086),
- [8445] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_specifier, 2, 0, 60),
- [8447] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3053),
- [8449] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2892),
- [8451] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3055),
- [8453] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3061),
- [8455] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2893),
- [8457] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3064),
- [8459] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3067),
- [8461] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2894),
- [8463] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3069),
- [8465] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3076),
- [8467] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2895),
- [8469] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3077),
- [8471] = {.entry = {.count = 1, .reusable = true}}, SHIFT(872),
- [8473] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_clause, 3, 0, 0),
- [8475] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3342),
- [8477] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2198),
- [8479] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3423),
- [8481] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 6, 0, 291),
- [8483] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_array_pattern_repeat1, 2, 0, 0), SHIFT_REPEAT(248),
- [8486] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_array_pattern_repeat1, 2, 0, 0),
- [8488] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pair_pattern, 3, 0, 85),
- [8490] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4925),
- [8492] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1630),
- [8494] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3153),
- [8496] = {.entry = {.count = 1, .reusable = true}}, SHIFT(932),
- [8498] = {.entry = {.count = 1, .reusable = true}}, SHIFT(209),
- [8500] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5322),
- [8502] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_object_repeat1, 2, 0, 0), SHIFT_REPEAT(2466),
- [8505] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_object_repeat1, 2, 0, 0),
- [8507] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5311),
- [8509] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_object_pattern_repeat1, 2, 0, 0), SHIFT_REPEAT(2231),
- [8512] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_object_pattern_repeat1, 2, 0, 0),
- [8514] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3480),
- [8516] = {.entry = {.count = 1, .reusable = true}}, SHIFT(928),
- [8518] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1775),
- [8520] = {.entry = {.count = 1, .reusable = true}}, SHIFT(207),
- [8522] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5308),
- [8524] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 3, 0, 159),
- [8526] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4283),
- [8528] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5039),
- [8530] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_glimmer_template_repeat1, 2, 0, 0), SHIFT_REPEAT(4723),
- [8533] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_glimmer_template_repeat1, 2, 0, 0),
- [8535] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4597),
- [8537] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_method_signature, 3, 0, 125),
- [8539] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5451),
- [8541] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3898),
- [8543] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 3, 0, 161),
- [8545] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 3, 0, 90),
- [8547] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5493),
- [8549] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4550),
- [8551] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4412),
- [8553] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3218),
- [8555] = {.entry = {.count = 1, .reusable = true}}, SHIFT(45),
- [8557] = {.entry = {.count = 1, .reusable = true}}, SHIFT(801),
- [8559] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5427),
- [8561] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4015),
- [8563] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3351),
- [8565] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 3, 0, 164),
- [8567] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_parameters, 3, 0, 0),
- [8569] = {.entry = {.count = 1, .reusable = true}}, SHIFT(870),
- [8571] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2090),
- [8573] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_extends_clause_repeat1, 2, 0, 48),
- [8575] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1259),
- [8577] = {.entry = {.count = 1, .reusable = true}}, SHIFT(341),
- [8579] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1260),
- [8581] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1076),
- [8583] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1077),
- [8585] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_declarator, 3, 0, 89),
- [8587] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_declarator, 3, 0, 90),
- [8589] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2800),
- [8591] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2902),
- [8593] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2801),
- [8595] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2804),
- [8597] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2904),
- [8599] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2805),
- [8601] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2808),
- [8603] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2908),
- [8605] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2809),
- [8607] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2690),
- [8609] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4066),
- [8611] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1453),
- [8613] = {.entry = {.count = 1, .reusable = true}}, SHIFT(915),
- [8615] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2785),
- [8617] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2917),
- [8619] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2812),
- [8621] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4888),
- [8623] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__import_identifier, 1, 0, 0),
- [8625] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5176),
- [8627] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2384),
- [8629] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3844),
- [8631] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5592),
- [8633] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3522),
- [8635] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1682),
- [8637] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 8, 0, 326),
- [8639] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 8, 0, 327),
- [8641] = {.entry = {.count = 1, .reusable = true}}, SHIFT(874),
- [8643] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 8, 0, 329),
- [8645] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 8, 0, 331),
- [8647] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 8, 0, 332),
- [8649] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 8, 0, 334),
- [8651] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__module_export_name, 1, 0, 0),
- [8653] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3237),
- [8655] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5841),
- [8657] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 6, 0, 281),
- [8659] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 8, 0, 335),
- [8661] = {.entry = {.count = 1, .reusable = true}}, SHIFT(873),
- [8663] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4752),
- [8665] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5542),
- [8667] = {.entry = {.count = 1, .reusable = true}}, SHIFT(875),
- [8669] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3158),
- [8671] = {.entry = {.count = 1, .reusable = true}}, SHIFT(196),
- [8673] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5069),
- [8675] = {.entry = {.count = 1, .reusable = true}}, SHIFT(190),
- [8677] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3888),
- [8679] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2692),
- [8681] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4101),
- [8683] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2693),
- [8685] = {.entry = {.count = 1, .reusable = true}}, SHIFT(839),
- [8687] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2694),
- [8689] = {.entry = {.count = 1, .reusable = true}}, SHIFT(841),
- [8691] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2673),
- [8693] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4103),
- [8695] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 6, 0, 282),
- [8697] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_formal_parameters_repeat1, 2, 0, 0), SHIFT_REPEAT(198),
- [8700] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_formal_parameters_repeat1, 2, 0, 0),
- [8702] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4723),
- [8704] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1732),
- [8706] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_clause, 5, 0, 0),
- [8708] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 5, 0, 260),
- [8710] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_parameters_repeat1, 2, 0, 0), SHIFT_REPEAT(4887),
- [8713] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_type_parameters_repeat1, 2, 0, 0),
- [8715] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_parameters, 5, 0, 0),
- [8717] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1038),
- [8719] = {.entry = {.count = 1, .reusable = true}}, SHIFT(378),
- [8721] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5306),
- [8723] = {.entry = {.count = 1, .reusable = true}}, SHIFT(757),
- [8725] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 4, 0, 209),
- [8727] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 4, 0, 211),
- [8729] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 4, 0, 213),
- [8731] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 9, 0, 338),
- [8733] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 6, 0, 284),
- [8735] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 9, 0, 340),
- [8737] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 9, 0, 341),
- [8739] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 2, 0, 31),
- [8741] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_method_signature, 4, 0, 180),
- [8743] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_method_signature, 4, 0, 206),
- [8745] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 4, 0, 215),
- [8747] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 9, 0, 343),
- [8749] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 4, 0, 217),
- [8751] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 5, 0, 250),
- [8753] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_clause, 2, 0, 0),
- [8755] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3361),
- [8757] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4664),
- [8759] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3997),
- [8761] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_specifier, 1, 0, 5),
- [8763] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 4, 0, 219),
- [8765] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2220),
- [8767] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4467),
- [8769] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4761),
- [8771] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 4, 0, 221),
- [8773] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 10, 0, 344),
- [8775] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1001),
- [8777] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 6, 0, 285),
- [8779] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 7, 0, 305),
- [8781] = {.entry = {.count = 1, .reusable = true}}, SHIFT(877),
- [8783] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2872),
- [8785] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_method_signature, 6, 0, 279),
- [8787] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 7, 0, 308),
- [8789] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 7, 0, 310),
- [8791] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 7, 0, 311),
- [8793] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_method_signature, 6, 0, 280),
- [8795] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_method_signature, 7, 0, 303),
- [8797] = {.entry = {.count = 1, .reusable = true}}, SHIFT(192),
- [8799] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_heritage, 1, 0, 0),
- [8801] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_clause, 4, 0, 0),
- [8803] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1148),
- [8805] = {.entry = {.count = 1, .reusable = true}}, SHIFT(325),
- [8807] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1149),
- [8809] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_export_clause_repeat1, 2, 0, 0), SHIFT_REPEAT(3455),
- [8812] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_export_clause_repeat1, 2, 0, 0),
- [8814] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5211),
- [8816] = {.entry = {.count = 1, .reusable = true}}, SHIFT(189),
- [8818] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3560),
- [8820] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_type_repeat1, 2, 0, 0), SHIFT_REPEAT(880),
- [8823] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_tuple_type_repeat1, 2, 0, 0),
- [8825] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_template_type, 3, 0, 0),
- [8827] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_implements_clause, 3, 0, 0),
- [8829] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 5, 0, 248),
- [8831] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 5, 0, 249),
- [8833] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5331),
- [8835] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5332),
- [8837] = {.entry = {.count = 1, .reusable = true}}, SHIFT(215),
- [8839] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5479),
- [8841] = {.entry = {.count = 1, .reusable = true}}, SHIFT(188),
- [8843] = {.entry = {.count = 1, .reusable = true}}, SHIFT(64),
- [8845] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_method_signature, 5, 0, 244),
- [8847] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4954),
- [8849] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5409),
- [8851] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5307),
- [8853] = {.entry = {.count = 1, .reusable = true}}, SHIFT(761),
- [8855] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_body_repeat1, 2, 0, 233), SHIFT_REPEAT(2716),
- [8858] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_enum_body_repeat1, 2, 0, 233),
- [8860] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_pattern, 1, -1, 0), SHIFT(506),
- [8863] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3865),
- [8865] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1684),
- [8867] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3563),
- [8869] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3598),
- [8871] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_method_signature, 5, 0, 245),
- [8873] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3815),
- [8875] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2132),
- [8877] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4461),
- [8879] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2213),
- [8881] = {.entry = {.count = 1, .reusable = true}}, SHIFT(311),
- [8883] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_specifier, 1, 0, 5),
- [8885] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameter, 4, 0, 182),
- [8887] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4752),
- [8889] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_optional_parameter, 4, 0, 156),
- [8891] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2107),
- [8893] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2108),
- [8895] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2109),
- [8897] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2110),
- [8899] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2113),
- [8901] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2115),
- [8903] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2118),
- [8905] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2119),
- [8907] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1320),
- [8909] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1322),
- [8911] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2327),
- [8913] = {.entry = {.count = 1, .reusable = true}}, SHIFT(756),
- [8915] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_assignment, 2, 0, 31),
- [8917] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4309),
- [8919] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1612),
- [8921] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1455),
- [8923] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1243),
- [8925] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1245),
- [8927] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4475),
- [8929] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_clause, 1, 0, 0),
- [8931] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1459),
- [8933] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1460),
- [8935] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1461),
- [8937] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1462),
- [8939] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1781),
- [8941] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_optional_parameter, 3, 0, 96),
- [8943] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_specifier, 4, 0, 198),
- [8945] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_required_parameter, 3, 0, 98),
- [8947] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2676),
- [8949] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_specifier, 4, 0, 201),
- [8951] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_specifier, 4, 0, 198),
- [8953] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1297),
- [8955] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1298),
- [8957] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1223),
- [8959] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1225),
- [8961] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4337),
- [8963] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5594),
- [8965] = {.entry = {.count = 1, .reusable = true}}, SHIFT(865),
- [8967] = {.entry = {.count = 1, .reusable = true}}, SHIFT(864),
- [8969] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1613),
- [8971] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1469),
- [8973] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1470),
- [8975] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1471),
- [8977] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1474),
- [8979] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1475),
- [8981] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1478),
- [8983] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1480),
- [8985] = {.entry = {.count = 1, .reusable = true}}, SHIFT(799),
- [8987] = {.entry = {.count = 1, .reusable = true}}, SHIFT(800),
- [8989] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4003),
- [8991] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4002),
- [8993] = {.entry = {.count = 1, .reusable = true}}, SHIFT(749),
- [8995] = {.entry = {.count = 1, .reusable = true}}, SHIFT(827),
- [8997] = {.entry = {.count = 1, .reusable = true}}, SHIFT(298),
- [8999] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4004),
- [9001] = {.entry = {.count = 1, .reusable = true}}, SHIFT(989),
- [9003] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1041),
- [9005] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_specifier, 2, 0, 60),
- [9007] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2686),
- [9009] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameter, 3, 0, 131),
- [9011] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2221),
- [9013] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4175),
- [9015] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5889),
- [9017] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4012),
- [9019] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5848),
- [9021] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3913),
- [9023] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4192),
- [9025] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5896),
- [9027] = {.entry = {.count = 1, .reusable = true}}, SHIFT(803),
- [9029] = {.entry = {.count = 1, .reusable = true}}, SHIFT(802),
- [9031] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_attribute, 2, 0, 0),
- [9033] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1146),
- [9035] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1147),
- [9037] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4754),
- [9039] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2910),
- [9041] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2911),
- [9043] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2093),
- [9045] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2094),
- [9047] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2098),
- [9049] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2099),
- [9051] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2100),
- [9053] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2101),
- [9055] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1257),
- [9057] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1258),
- [9059] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2914),
- [9061] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2916),
- [9063] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3032),
- [9065] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3035),
- [9067] = {.entry = {.count = 1, .reusable = true}}, SHIFT(830),
- [9069] = {.entry = {.count = 1, .reusable = true}}, SHIFT(829),
- [9071] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2927),
- [9073] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2928),
- [9075] = {.entry = {.count = 1, .reusable = true}}, SHIFT(790),
- [9077] = {.entry = {.count = 1, .reusable = true}}, SHIFT(789),
- [9079] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_specifier, 3, 0, 151),
- [9081] = {.entry = {.count = 1, .reusable = true}}, SHIFT(792),
- [9083] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2834),
- [9085] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2830),
- [9087] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2837),
- [9089] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2836),
- [9091] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3178),
- [9093] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3179),
- [9095] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2802),
- [9097] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2803),
- [9099] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3144),
- [9101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3147),
- [9103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3148),
- [9105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3151),
- [9107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2825),
- [9109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2838),
- [9111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(750),
- [9113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(868),
- [9115] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_optional_tuple_parameter, 3, 0, 89),
- [9117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3042),
- [9119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3043),
- [9121] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_specifier, 3, 0, 154),
- [9123] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_required_parameter, 2, 0, 38),
- [9125] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3044),
- [9127] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3046),
- [9129] = {.entry = {.count = 1, .reusable = true}}, SHIFT(751),
- [9131] = {.entry = {.count = 1, .reusable = true}}, SHIFT(808),
- [9133] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1288),
- [9135] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1293),
- [9137] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2806),
- [9139] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2807),
- [9141] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3940),
- [9143] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3939),
- [9145] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3894),
- [9147] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1227),
- [9149] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1242),
- [9151] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3058),
- [9153] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3060),
- [9155] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3065),
- [9157] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3066),
- [9159] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3071),
- [9161] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3072),
- [9163] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2810),
- [9165] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2811),
- [9167] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1165),
- [9169] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1144),
- [9171] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_enum_body_repeat1, 2, 0, 0),
- [9173] = {.entry = {.count = 1, .reusable = true}}, SHIFT(770),
- [9175] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameter, 3, 0, 136),
- [9177] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3945),
- [9179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3944),
- [9181] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3947),
- [9183] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3946),
- [9185] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_specifier, 3, 0, 151),
- [9187] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameter, 2, 0, 62),
- [9189] = {.entry = {.count = 1, .reusable = true}}, SHIFT(316),
- [9191] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_parameter, 2, 0, 32),
- [9193] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_optional_type, 2, 0, 0),
- [9195] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3816),
- [9197] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3040),
- [9199] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2946),
- [9201] = {.entry = {.count = 1, .reusable = true}}, SHIFT(559),
- [9203] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5426),
- [9205] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5544),
- [9207] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13),
- [9209] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5662),
- [9211] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4624),
- [9213] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1528),
- [9215] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3439),
- [9217] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_namespace_export, 3, 0, 0),
- [9219] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1903),
- [9221] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5190),
- [9223] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3436),
- [9225] = {.entry = {.count = 1, .reusable = true}}, SHIFT(960),
- [9227] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1904),
- [9229] = {.entry = {.count = 1, .reusable = true}}, SHIFT(343),
- [9231] = {.entry = {.count = 1, .reusable = true}}, SHIFT(895),
- [9233] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1905),
- [9235] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3031),
- [9237] = {.entry = {.count = 1, .reusable = true}}, SHIFT(344),
- [9239] = {.entry = {.count = 1, .reusable = true}}, SHIFT(345),
- [9241] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2520),
- [9243] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4515),
- [9245] = {.entry = {.count = 1, .reusable = true}}, SHIFT(882),
- [9247] = {.entry = {.count = 1, .reusable = true}}, SHIFT(346),
- [9249] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5787),
- [9251] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1642),
- [9253] = {.entry = {.count = 1, .reusable = true}}, SHIFT(320),
- [9255] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2947),
- [9257] = {.entry = {.count = 1, .reusable = true}}, SHIFT(395),
- [9259] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5856),
- [9261] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1906),
- [9263] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5496),
- [9265] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1643),
- [9267] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2818),
- [9269] = {.entry = {.count = 1, .reusable = true}}, SHIFT(984),
- [9271] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4742),
- [9273] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2797),
- [9275] = {.entry = {.count = 1, .reusable = true}}, SHIFT(992),
- [9277] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2798),
- [9279] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5357),
- [9281] = {.entry = {.count = 1, .reusable = true}}, SHIFT(322),
- [9283] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_named_imports, 5, 0, 0),
- [9285] = {.entry = {.count = 1, .reusable = true}}, SHIFT(323),
- [9287] = {.entry = {.count = 1, .reusable = true}}, SHIFT(324),
- [9289] = {.entry = {.count = 1, .reusable = true}}, SHIFT(492),
- [9291] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5542),
- [9293] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1907),
- [9295] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4013),
- [9297] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1588),
- [9299] = {.entry = {.count = 1, .reusable = true}}, SHIFT(414),
- [9301] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2092),
- [9303] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3335),
- [9305] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5625),
- [9307] = {.entry = {.count = 1, .reusable = true}}, SHIFT(388),
- [9309] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5914),
- [9311] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5390),
- [9313] = {.entry = {.count = 1, .reusable = true}}, SHIFT(964),
- [9315] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1003),
- [9317] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5720),
- [9319] = {.entry = {.count = 1, .reusable = true}}, SHIFT(994),
- [9321] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1808),
- [9323] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2016),
- [9325] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3344),
- [9327] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3462),
- [9329] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3238),
- [9331] = {.entry = {.count = 1, .reusable = true}}, SHIFT(329),
- [9333] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3529),
- [9335] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5375),
- [9337] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4519),
- [9339] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3785),
- [9341] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3414),
- [9343] = {.entry = {.count = 1, .reusable = true}}, SHIFT(905),
- [9345] = {.entry = {.count = 1, .reusable = true}}, SHIFT(367),
- [9347] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1451),
- [9349] = {.entry = {.count = 1, .reusable = true}}, SHIFT(967),
- [9351] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3363),
- [9353] = {.entry = {.count = 1, .reusable = true}}, SHIFT(900),
- [9355] = {.entry = {.count = 1, .reusable = true}}, SHIFT(275),
- [9357] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2799),
- [9359] = {.entry = {.count = 1, .reusable = true}}, SHIFT(368),
- [9361] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1010),
- [9363] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3481),
- [9365] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4551),
- [9367] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2814),
- [9369] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_clause, 3, 0, 0),
- [9371] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2095),
- [9373] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5762),
- [9375] = {.entry = {.count = 1, .reusable = true}}, SHIFT(906),
- [9377] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1013),
- [9379] = {.entry = {.count = 1, .reusable = true}}, SHIFT(982),
- [9381] = {.entry = {.count = 1, .reusable = true}}, SHIFT(236),
- [9383] = {.entry = {.count = 1, .reusable = true}}, SHIFT(957),
- [9385] = {.entry = {.count = 1, .reusable = true}}, SHIFT(909),
- [9387] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1611),
- [9389] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5681),
- [9391] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1014),
- [9393] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1015),
- [9395] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2931),
- [9397] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2815),
- [9399] = {.entry = {.count = 1, .reusable = true}}, SHIFT(962),
- [9401] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2932),
- [9403] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3145),
- [9405] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1017),
- [9407] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3157),
- [9409] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3422),
- [9411] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1231),
- [9413] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2948),
- [9415] = {.entry = {.count = 1, .reusable = true}}, SHIFT(894),
- [9417] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5853),
- [9419] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2835),
- [9421] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2781),
- [9423] = {.entry = {.count = 1, .reusable = true}}, SHIFT(943),
- [9425] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3073),
- [9427] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2949),
- [9429] = {.entry = {.count = 1, .reusable = true}}, SHIFT(330),
- [9431] = {.entry = {.count = 1, .reusable = true}}, SHIFT(985),
- [9433] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2933),
- [9435] = {.entry = {.count = 1, .reusable = true}}, SHIFT(369),
- [9437] = {.entry = {.count = 1, .reusable = true}}, SHIFT(612),
- [9439] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1456),
- [9441] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2934),
- [9443] = {.entry = {.count = 1, .reusable = true}}, SHIFT(986),
- [9445] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2786),
- [9447] = {.entry = {.count = 1, .reusable = true}}, ACCEPT_INPUT(),
- [9449] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2918),
- [9451] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5333),
- [9453] = {.entry = {.count = 1, .reusable = true}}, SHIFT(898),
- [9455] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1019),
- [9457] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2788),
- [9459] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2789),
- [9461] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2791),
- [9463] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2935),
- [9465] = {.entry = {.count = 1, .reusable = true}}, SHIFT(331),
- [9467] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2936),
- [9469] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4492),
- [9471] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3068),
- [9473] = {.entry = {.count = 1, .reusable = true}}, SHIFT(373),
- [9475] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2849),
- [9477] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1754),
- [9479] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5759),
- [9481] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5708),
- [9483] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2826),
- [9485] = {.entry = {.count = 1, .reusable = true}}, SHIFT(908),
- [9487] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1912),
- [9489] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4386),
- [9491] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1913),
- [9493] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1914),
- [9495] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2792),
- [9497] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2813),
- [9499] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1915),
- [9501] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2816),
- [9503] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5370),
- [9505] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2937),
- [9507] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3036),
- [9509] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5531),
- [9511] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4387),
- [9513] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1916),
- [9515] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1917),
- [9517] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_heritage, 2, 0, 0),
- [9519] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1918),
- [9521] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1919),
- [9523] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1920),
- [9525] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1921),
- [9527] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2817),
- [9529] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2790),
- [9531] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2787),
- [9533] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2590),
- [9535] = {.entry = {.count = 1, .reusable = true}}, SHIFT(332),
- [9537] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2938),
- [9539] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5835),
- [9541] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1040),
- [9543] = {.entry = {.count = 1, .reusable = true}}, SHIFT(363),
- [9545] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2029),
- [9547] = {.entry = {.count = 1, .reusable = true}}, SHIFT(474),
- [9549] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3487),
- [9551] = {.entry = {.count = 1, .reusable = true}}, SHIFT(896),
- [9553] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2950),
- [9555] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3025),
- [9557] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1902),
- [9559] = {.entry = {.count = 1, .reusable = true}}, SHIFT(364),
- [9561] = {.entry = {.count = 1, .reusable = true}}, SHIFT(365),
- [9563] = {.entry = {.count = 1, .reusable = true}}, SHIFT(366),
- [9565] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5537),
- [9567] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2951),
- [9569] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1494),
- [9571] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1044),
- [9573] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2414),
- [9575] = {.entry = {.count = 1, .reusable = true}}, SHIFT(411),
- [9577] = {.entry = {.count = 1, .reusable = true}}, SHIFT(599),
- [9579] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2127),
- [9581] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1495),
- [9583] = {.entry = {.count = 1, .reusable = true}}, SHIFT(350),
- [9585] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2941),
- [9587] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3398),
- [9589] = {.entry = {.count = 1, .reusable = true}}, SHIFT(351),
- [9591] = {.entry = {.count = 1, .reusable = true}}, SHIFT(948),
- [9593] = {.entry = {.count = 1, .reusable = true}}, SHIFT(949),
- [9595] = {.entry = {.count = 1, .reusable = true}}, SHIFT(352),
- [9597] = {.entry = {.count = 1, .reusable = true}}, SHIFT(353),
- [9599] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2147),
- [9601] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5670),
- [9603] = {.entry = {.count = 1, .reusable = true}}, SHIFT(965),
- [9605] = {.entry = {.count = 1, .reusable = true}}, SHIFT(966),
- [9607] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1496),
- [9609] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5262),
- [9611] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3622),
- [9613] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1497),
- [9615] = {.entry = {.count = 1, .reusable = true}}, SHIFT(737),
- [9617] = {.entry = {.count = 1, .reusable = true}}, SHIFT(739),
- [9619] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3384),
- [9621] = {.entry = {.count = 1, .reusable = true}}, SHIFT(910),
- [9623] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2942),
- [9625] = {.entry = {.count = 1, .reusable = true}}, SHIFT(526),
- [9627] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_namespace_import, 3, 0, 0),
- [9629] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1498),
- [9631] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1568),
- [9633] = {.entry = {.count = 1, .reusable = true}}, SHIFT(897),
- [9635] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1174),
- [9637] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5561),
- [9639] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3030),
- [9641] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1499),
- [9643] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1582),
- [9645] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1501),
- [9647] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5722),
- [9649] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1569),
- [9651] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1271),
- [9653] = {.entry = {.count = 1, .reusable = true}}, SHIFT(950),
- [9655] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3033),
- [9657] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1022),
- [9659] = {.entry = {.count = 1, .reusable = true}}, SHIFT(308),
- [9661] = {.entry = {.count = 1, .reusable = true}}, SHIFT(228),
- [9663] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3187),
- [9665] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1023),
- [9667] = {.entry = {.count = 1, .reusable = true}}, SHIFT(720),
- [9669] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3207),
- [9671] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3084),
- [9673] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1503),
- [9675] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1504),
- [9677] = {.entry = {.count = 1, .reusable = true}}, SHIFT(580),
- [9679] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2793),
- [9681] = {.entry = {.count = 1, .reusable = true}}, SHIFT(439),
- [9683] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1505),
- [9685] = {.entry = {.count = 1, .reusable = true}}, SHIFT(899),
- [9687] = {.entry = {.count = 1, .reusable = true}}, SHIFT(360),
- [9689] = {.entry = {.count = 1, .reusable = true}}, SHIFT(336),
- [9691] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4602),
- [9693] = {.entry = {.count = 1, .reusable = true}}, SHIFT(450),
- [9695] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3658),
- [9697] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2944),
- [9699] = {.entry = {.count = 1, .reusable = true}}, SHIFT(301),
- [9701] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1002),
- [9703] = {.entry = {.count = 1, .reusable = true}}, SHIFT(338),
- [9705] = {.entry = {.count = 1, .reusable = true}}, SHIFT(339),
- [9707] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3056),
- [9709] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2794),
- [9711] = {.entry = {.count = 1, .reusable = true}}, SHIFT(903),
- [9713] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_named_imports, 3, 0, 0),
- [9715] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_named_imports, 2, 0, 0),
- [9717] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2795),
- [9719] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3464),
- [9721] = {.entry = {.count = 1, .reusable = true}}, SHIFT(468),
- [9723] = {.entry = {.count = 1, .reusable = true}}, SHIFT(987),
- [9725] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4089),
- [9727] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4491),
- [9729] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_named_imports, 4, 0, 0),
- [9731] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2796),
- [9733] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3465),
- [9735] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5791),
- [9737] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3078),
- [9739] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5312),
- [9741] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1515),
- [9743] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3079),
- [9745] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2996),
- [9747] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1516),
- [9749] = {.entry = {.count = 1, .reusable = true}}, SHIFT(506),
- [9751] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4530),
- [9753] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3401),
- [9755] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1517),
- [9757] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3567),
- [9759] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3013),
- [9761] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5874),
- [9763] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1519),
- [9765] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2939),
- [9767] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1898),
- [9769] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3022),
- [9771] = {.entry = {.count = 1, .reusable = true}}, SHIFT(543),
- [9773] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4424),
- [9775] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2163),
- [9777] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3027),
- [9779] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1520),
- [9781] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3041),
- [9783] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1521),
- [9785] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1899),
- [9787] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3573),
- [9789] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1523),
- [9791] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3048),
- [9793] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3080),
- [9795] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5376),
- [9797] = {.entry = {.count = 1, .reusable = true}}, SHIFT(884),
- [9799] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1031),
- [9801] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4348),
- [9803] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4472),
- [9805] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3620),
- [9807] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2940),
- [9809] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5646),
- [9811] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5549),
- [9813] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4353),
- [9815] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1900),
- [9817] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1524),
- [9819] = {.entry = {.count = 1, .reusable = true}}, SHIFT(886),
- [9821] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1526),
- [9823] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3008),
- [9825] = {.entry = {.count = 1, .reusable = true}}, SHIFT(356),
- [9827] = {.entry = {.count = 1, .reusable = true}}, SHIFT(888),
- [9829] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5643),
- [9831] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1032),
- [9833] = {.entry = {.count = 1, .reusable = true}}, SHIFT(357),
- [9835] = {.entry = {.count = 1, .reusable = true}}, SHIFT(358),
- [9837] = {.entry = {.count = 1, .reusable = true}}, SHIFT(890),
- [9839] = {.entry = {.count = 1, .reusable = true}}, SHIFT(359),
- [9841] = {.entry = {.count = 1, .reusable = true}}, SHIFT(603),
- [9843] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1934),
- [9845] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1024),
- [9847] = {.entry = {.count = 1, .reusable = true}}, SHIFT(904),
- [9849] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2945),
- [9851] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3010),
- [9853] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3011),
- [9855] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4555),
- [9857] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3024),
- [9859] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1901),
- [9861] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3002),
-};
-
-enum ts_external_scanner_symbol_identifiers {
- ts_external_token__automatic_semicolon = 0,
- ts_external_token__template_chars = 1,
- ts_external_token__ternary_qmark = 2,
- ts_external_token_html_comment = 3,
- ts_external_token_PIPE_PIPE = 4,
- ts_external_token_escape_sequence = 5,
- ts_external_token_regex_pattern = 6,
- ts_external_token__function_signature_automatic_semicolon = 7,
- ts_external_token___error_recovery = 8,
-};
-
-static const TSSymbol ts_external_scanner_symbol_map[EXTERNAL_TOKEN_COUNT] = {
- [ts_external_token__automatic_semicolon] = sym__automatic_semicolon,
- [ts_external_token__template_chars] = sym__template_chars,
- [ts_external_token__ternary_qmark] = sym__ternary_qmark,
- [ts_external_token_html_comment] = sym_html_comment,
- [ts_external_token_PIPE_PIPE] = anon_sym_PIPE_PIPE,
- [ts_external_token_escape_sequence] = sym_escape_sequence,
- [ts_external_token_regex_pattern] = sym_regex_pattern,
- [ts_external_token__function_signature_automatic_semicolon] = sym__function_signature_automatic_semicolon,
- [ts_external_token___error_recovery] = sym___error_recovery,
-};
-
-static const bool ts_external_scanner_states[11][EXTERNAL_TOKEN_COUNT] = {
- [1] = {
- [ts_external_token__automatic_semicolon] = true,
- [ts_external_token__template_chars] = true,
- [ts_external_token__ternary_qmark] = true,
- [ts_external_token_html_comment] = true,
- [ts_external_token_PIPE_PIPE] = true,
- [ts_external_token_escape_sequence] = true,
- [ts_external_token__function_signature_automatic_semicolon] = true,
- [ts_external_token___error_recovery] = true,
- },
- [2] = {
- [ts_external_token_html_comment] = true,
- },
- [3] = {
- [ts_external_token__ternary_qmark] = true,
- [ts_external_token_html_comment] = true,
- [ts_external_token_PIPE_PIPE] = true,
- },
- [4] = {
- [ts_external_token__automatic_semicolon] = true,
- [ts_external_token__ternary_qmark] = true,
- [ts_external_token_html_comment] = true,
- [ts_external_token_PIPE_PIPE] = true,
- },
- [5] = {
- [ts_external_token__automatic_semicolon] = true,
- [ts_external_token_html_comment] = true,
- },
- [6] = {
- [ts_external_token__automatic_semicolon] = true,
- [ts_external_token_html_comment] = true,
- [ts_external_token__function_signature_automatic_semicolon] = true,
- },
- [7] = {
- [ts_external_token__template_chars] = true,
- [ts_external_token_html_comment] = true,
- [ts_external_token_escape_sequence] = true,
- },
- [8] = {
- [ts_external_token__template_chars] = true,
- [ts_external_token_html_comment] = true,
- },
- [9] = {
- [ts_external_token_html_comment] = true,
- [ts_external_token_escape_sequence] = true,
- },
- [10] = {
- [ts_external_token_html_comment] = true,
- [ts_external_token_regex_pattern] = true,
- },
-};
-
-#ifdef __cplusplus
-extern "C" {
-#endif
-void *tree_sitter_tsx_external_scanner_create(void);
-void tree_sitter_tsx_external_scanner_destroy(void *);
-bool tree_sitter_tsx_external_scanner_scan(void *, TSLexer *, const bool *);
-unsigned tree_sitter_tsx_external_scanner_serialize(void *, char *);
-void tree_sitter_tsx_external_scanner_deserialize(void *, const char *, unsigned);
-
-#ifdef TREE_SITTER_HIDE_SYMBOLS
-#define TS_PUBLIC
-#elif defined(_WIN32)
-#define TS_PUBLIC __declspec(dllexport)
-#else
-#define TS_PUBLIC __attribute__((visibility("default")))
-#endif
-
-TS_PUBLIC const TSLanguage *tree_sitter_tsx(void) {
- static const TSLanguage language = {
- .version = LANGUAGE_VERSION,
- .symbol_count = SYMBOL_COUNT,
- .alias_count = ALIAS_COUNT,
- .token_count = TOKEN_COUNT,
- .external_token_count = EXTERNAL_TOKEN_COUNT,
- .state_count = STATE_COUNT,
- .large_state_count = LARGE_STATE_COUNT,
- .production_id_count = PRODUCTION_ID_COUNT,
- .field_count = FIELD_COUNT,
- .max_alias_sequence_length = MAX_ALIAS_SEQUENCE_LENGTH,
- .parse_table = &ts_parse_table[0][0],
- .small_parse_table = ts_small_parse_table,
- .small_parse_table_map = ts_small_parse_table_map,
- .parse_actions = ts_parse_actions,
- .symbol_names = ts_symbol_names,
- .field_names = ts_field_names,
- .field_map_slices = ts_field_map_slices,
- .field_map_entries = ts_field_map_entries,
- .symbol_metadata = ts_symbol_metadata,
- .public_symbol_map = ts_symbol_map,
- .alias_map = ts_non_terminal_alias_map,
- .alias_sequences = &ts_alias_sequences[0][0],
- .lex_modes = ts_lex_modes,
- .lex_fn = ts_lex,
- .keyword_lex_fn = ts_lex_keywords,
- .keyword_capture_token = sym_identifier,
- .external_scanner = {
- &ts_external_scanner_states[0][0],
- ts_external_scanner_symbol_map,
- tree_sitter_tsx_external_scanner_create,
- tree_sitter_tsx_external_scanner_destroy,
- tree_sitter_tsx_external_scanner_scan,
- tree_sitter_tsx_external_scanner_serialize,
- tree_sitter_tsx_external_scanner_deserialize,
- },
- .primary_state_ids = ts_primary_state_ids,
- };
- return &language;
-}
-#ifdef __cplusplus
-}
-#endif
diff --git a/gts/src/scanner.c b/gts/src/scanner.c
deleted file mode 100644
index ac3f57ce..00000000
--- a/gts/src/scanner.c
+++ /dev/null
@@ -1,13 +0,0 @@
-#include "../../common/scanner.h"
-
-void *tree_sitter_tsx_external_scanner_create() { return NULL; }
-
-void tree_sitter_tsx_external_scanner_destroy(void *payload) {}
-
-unsigned tree_sitter_tsx_external_scanner_serialize(void *payload, char *buffer) { return 0; }
-
-void tree_sitter_tsx_external_scanner_deserialize(void *payload, const char *buffer, unsigned length) {}
-
-bool tree_sitter_tsx_external_scanner_scan(void *payload, TSLexer *lexer, const bool *valid_symbols) {
- return external_scanner_scan(payload, lexer, valid_symbols);
-}
diff --git a/gts/src/tree_sitter/alloc.h b/gts/src/tree_sitter/alloc.h
deleted file mode 100644
index 1f4466d7..00000000
--- a/gts/src/tree_sitter/alloc.h
+++ /dev/null
@@ -1,54 +0,0 @@
-#ifndef TREE_SITTER_ALLOC_H_
-#define TREE_SITTER_ALLOC_H_
-
-#ifdef __cplusplus
-extern "C" {
-#endif
-
-#include
-#include
-#include
-
-// Allow clients to override allocation functions
-#ifdef TREE_SITTER_REUSE_ALLOCATOR
-
-extern void *(*ts_current_malloc)(size_t);
-extern void *(*ts_current_calloc)(size_t, size_t);
-extern void *(*ts_current_realloc)(void *, size_t);
-extern void (*ts_current_free)(void *);
-
-#ifndef ts_malloc
-#define ts_malloc ts_current_malloc
-#endif
-#ifndef ts_calloc
-#define ts_calloc ts_current_calloc
-#endif
-#ifndef ts_realloc
-#define ts_realloc ts_current_realloc
-#endif
-#ifndef ts_free
-#define ts_free ts_current_free
-#endif
-
-#else
-
-#ifndef ts_malloc
-#define ts_malloc malloc
-#endif
-#ifndef ts_calloc
-#define ts_calloc calloc
-#endif
-#ifndef ts_realloc
-#define ts_realloc realloc
-#endif
-#ifndef ts_free
-#define ts_free free
-#endif
-
-#endif
-
-#ifdef __cplusplus
-}
-#endif
-
-#endif // TREE_SITTER_ALLOC_H_
diff --git a/gts/src/tree_sitter/array.h b/gts/src/tree_sitter/array.h
deleted file mode 100644
index 15a3b233..00000000
--- a/gts/src/tree_sitter/array.h
+++ /dev/null
@@ -1,290 +0,0 @@
-#ifndef TREE_SITTER_ARRAY_H_
-#define TREE_SITTER_ARRAY_H_
-
-#ifdef __cplusplus
-extern "C" {
-#endif
-
-#include "./alloc.h"
-
-#include
-#include
-#include
-#include
-#include
-
-#ifdef _MSC_VER
-#pragma warning(disable : 4101)
-#elif defined(__GNUC__) || defined(__clang__)
-#pragma GCC diagnostic push
-#pragma GCC diagnostic ignored "-Wunused-variable"
-#endif
-
-#define Array(T) \
- struct { \
- T *contents; \
- uint32_t size; \
- uint32_t capacity; \
- }
-
-/// Initialize an array.
-#define array_init(self) \
- ((self)->size = 0, (self)->capacity = 0, (self)->contents = NULL)
-
-/// Create an empty array.
-#define array_new() \
- { NULL, 0, 0 }
-
-/// Get a pointer to the element at a given `index` in the array.
-#define array_get(self, _index) \
- (assert((uint32_t)(_index) < (self)->size), &(self)->contents[_index])
-
-/// Get a pointer to the first element in the array.
-#define array_front(self) array_get(self, 0)
-
-/// Get a pointer to the last element in the array.
-#define array_back(self) array_get(self, (self)->size - 1)
-
-/// Clear the array, setting its size to zero. Note that this does not free any
-/// memory allocated for the array's contents.
-#define array_clear(self) ((self)->size = 0)
-
-/// Reserve `new_capacity` elements of space in the array. If `new_capacity` is
-/// less than the array's current capacity, this function has no effect.
-#define array_reserve(self, new_capacity) \
- _array__reserve((Array *)(self), array_elem_size(self), new_capacity)
-
-/// Free any memory allocated for this array. Note that this does not free any
-/// memory allocated for the array's contents.
-#define array_delete(self) _array__delete((Array *)(self))
-
-/// Push a new `element` onto the end of the array.
-#define array_push(self, element) \
- (_array__grow((Array *)(self), 1, array_elem_size(self)), \
- (self)->contents[(self)->size++] = (element))
-
-/// Increase the array's size by `count` elements.
-/// New elements are zero-initialized.
-#define array_grow_by(self, count) \
- do { \
- if ((count) == 0) break; \
- _array__grow((Array *)(self), count, array_elem_size(self)); \
- memset((self)->contents + (self)->size, 0, (count) * array_elem_size(self)); \
- (self)->size += (count); \
- } while (0)
-
-/// Append all elements from one array to the end of another.
-#define array_push_all(self, other) \
- array_extend((self), (other)->size, (other)->contents)
-
-/// Append `count` elements to the end of the array, reading their values from the
-/// `contents` pointer.
-#define array_extend(self, count, contents) \
- _array__splice( \
- (Array *)(self), array_elem_size(self), (self)->size, \
- 0, count, contents \
- )
-
-/// Remove `old_count` elements from the array starting at the given `index`. At
-/// the same index, insert `new_count` new elements, reading their values from the
-/// `new_contents` pointer.
-#define array_splice(self, _index, old_count, new_count, new_contents) \
- _array__splice( \
- (Array *)(self), array_elem_size(self), _index, \
- old_count, new_count, new_contents \
- )
-
-/// Insert one `element` into the array at the given `index`.
-#define array_insert(self, _index, element) \
- _array__splice((Array *)(self), array_elem_size(self), _index, 0, 1, &(element))
-
-/// Remove one element from the array at the given `index`.
-#define array_erase(self, _index) \
- _array__erase((Array *)(self), array_elem_size(self), _index)
-
-/// Pop the last element off the array, returning the element by value.
-#define array_pop(self) ((self)->contents[--(self)->size])
-
-/// Assign the contents of one array to another, reallocating if necessary.
-#define array_assign(self, other) \
- _array__assign((Array *)(self), (const Array *)(other), array_elem_size(self))
-
-/// Swap one array with another
-#define array_swap(self, other) \
- _array__swap((Array *)(self), (Array *)(other))
-
-/// Get the size of the array contents
-#define array_elem_size(self) (sizeof *(self)->contents)
-
-/// Search a sorted array for a given `needle` value, using the given `compare`
-/// callback to determine the order.
-///
-/// If an existing element is found to be equal to `needle`, then the `index`
-/// out-parameter is set to the existing value's index, and the `exists`
-/// out-parameter is set to true. Otherwise, `index` is set to an index where
-/// `needle` should be inserted in order to preserve the sorting, and `exists`
-/// is set to false.
-#define array_search_sorted_with(self, compare, needle, _index, _exists) \
- _array__search_sorted(self, 0, compare, , needle, _index, _exists)
-
-/// Search a sorted array for a given `needle` value, using integer comparisons
-/// of a given struct field (specified with a leading dot) to determine the order.
-///
-/// See also `array_search_sorted_with`.
-#define array_search_sorted_by(self, field, needle, _index, _exists) \
- _array__search_sorted(self, 0, _compare_int, field, needle, _index, _exists)
-
-/// Insert a given `value` into a sorted array, using the given `compare`
-/// callback to determine the order.
-#define array_insert_sorted_with(self, compare, value) \
- do { \
- unsigned _index, _exists; \
- array_search_sorted_with(self, compare, &(value), &_index, &_exists); \
- if (!_exists) array_insert(self, _index, value); \
- } while (0)
-
-/// Insert a given `value` into a sorted array, using integer comparisons of
-/// a given struct field (specified with a leading dot) to determine the order.
-///
-/// See also `array_search_sorted_by`.
-#define array_insert_sorted_by(self, field, value) \
- do { \
- unsigned _index, _exists; \
- array_search_sorted_by(self, field, (value) field, &_index, &_exists); \
- if (!_exists) array_insert(self, _index, value); \
- } while (0)
-
-// Private
-
-typedef Array(void) Array;
-
-/// This is not what you're looking for, see `array_delete`.
-static inline void _array__delete(Array *self) {
- if (self->contents) {
- ts_free(self->contents);
- self->contents = NULL;
- self->size = 0;
- self->capacity = 0;
- }
-}
-
-/// This is not what you're looking for, see `array_erase`.
-static inline void _array__erase(Array *self, size_t element_size,
- uint32_t index) {
- assert(index < self->size);
- char *contents = (char *)self->contents;
- memmove(contents + index * element_size, contents + (index + 1) * element_size,
- (self->size - index - 1) * element_size);
- self->size--;
-}
-
-/// This is not what you're looking for, see `array_reserve`.
-static inline void _array__reserve(Array *self, size_t element_size, uint32_t new_capacity) {
- if (new_capacity > self->capacity) {
- if (self->contents) {
- self->contents = ts_realloc(self->contents, new_capacity * element_size);
- } else {
- self->contents = ts_malloc(new_capacity * element_size);
- }
- self->capacity = new_capacity;
- }
-}
-
-/// This is not what you're looking for, see `array_assign`.
-static inline void _array__assign(Array *self, const Array *other, size_t element_size) {
- _array__reserve(self, element_size, other->size);
- self->size = other->size;
- memcpy(self->contents, other->contents, self->size * element_size);
-}
-
-/// This is not what you're looking for, see `array_swap`.
-static inline void _array__swap(Array *self, Array *other) {
- Array swap = *other;
- *other = *self;
- *self = swap;
-}
-
-/// This is not what you're looking for, see `array_push` or `array_grow_by`.
-static inline void _array__grow(Array *self, uint32_t count, size_t element_size) {
- uint32_t new_size = self->size + count;
- if (new_size > self->capacity) {
- uint32_t new_capacity = self->capacity * 2;
- if (new_capacity < 8) new_capacity = 8;
- if (new_capacity < new_size) new_capacity = new_size;
- _array__reserve(self, element_size, new_capacity);
- }
-}
-
-/// This is not what you're looking for, see `array_splice`.
-static inline void _array__splice(Array *self, size_t element_size,
- uint32_t index, uint32_t old_count,
- uint32_t new_count, const void *elements) {
- uint32_t new_size = self->size + new_count - old_count;
- uint32_t old_end = index + old_count;
- uint32_t new_end = index + new_count;
- assert(old_end <= self->size);
-
- _array__reserve(self, element_size, new_size);
-
- char *contents = (char *)self->contents;
- if (self->size > old_end) {
- memmove(
- contents + new_end * element_size,
- contents + old_end * element_size,
- (self->size - old_end) * element_size
- );
- }
- if (new_count > 0) {
- if (elements) {
- memcpy(
- (contents + index * element_size),
- elements,
- new_count * element_size
- );
- } else {
- memset(
- (contents + index * element_size),
- 0,
- new_count * element_size
- );
- }
- }
- self->size += new_count - old_count;
-}
-
-/// A binary search routine, based on Rust's `std::slice::binary_search_by`.
-/// This is not what you're looking for, see `array_search_sorted_with` or `array_search_sorted_by`.
-#define _array__search_sorted(self, start, compare, suffix, needle, _index, _exists) \
- do { \
- *(_index) = start; \
- *(_exists) = false; \
- uint32_t size = (self)->size - *(_index); \
- if (size == 0) break; \
- int comparison; \
- while (size > 1) { \
- uint32_t half_size = size / 2; \
- uint32_t mid_index = *(_index) + half_size; \
- comparison = compare(&((self)->contents[mid_index] suffix), (needle)); \
- if (comparison <= 0) *(_index) = mid_index; \
- size -= half_size; \
- } \
- comparison = compare(&((self)->contents[*(_index)] suffix), (needle)); \
- if (comparison == 0) *(_exists) = true; \
- else if (comparison < 0) *(_index) += 1; \
- } while (0)
-
-/// Helper macro for the `_sorted_by` routines below. This takes the left (existing)
-/// parameter by reference in order to work with the generic sorting function above.
-#define _compare_int(a, b) ((int)*(a) - (int)(b))
-
-#ifdef _MSC_VER
-#pragma warning(default : 4101)
-#elif defined(__GNUC__) || defined(__clang__)
-#pragma GCC diagnostic pop
-#endif
-
-#ifdef __cplusplus
-}
-#endif
-
-#endif // TREE_SITTER_ARRAY_H_
diff --git a/gts/src/tree_sitter/parser.h b/gts/src/tree_sitter/parser.h
deleted file mode 100644
index 17f0e94b..00000000
--- a/gts/src/tree_sitter/parser.h
+++ /dev/null
@@ -1,265 +0,0 @@
-#ifndef TREE_SITTER_PARSER_H_
-#define TREE_SITTER_PARSER_H_
-
-#ifdef __cplusplus
-extern "C" {
-#endif
-
-#include
-#include
-#include
-
-#define ts_builtin_sym_error ((TSSymbol)-1)
-#define ts_builtin_sym_end 0
-#define TREE_SITTER_SERIALIZATION_BUFFER_SIZE 1024
-
-#ifndef TREE_SITTER_API_H_
-typedef uint16_t TSStateId;
-typedef uint16_t TSSymbol;
-typedef uint16_t TSFieldId;
-typedef struct TSLanguage TSLanguage;
-#endif
-
-typedef struct {
- TSFieldId field_id;
- uint8_t child_index;
- bool inherited;
-} TSFieldMapEntry;
-
-typedef struct {
- uint16_t index;
- uint16_t length;
-} TSFieldMapSlice;
-
-typedef struct {
- bool visible;
- bool named;
- bool supertype;
-} TSSymbolMetadata;
-
-typedef struct TSLexer TSLexer;
-
-struct TSLexer {
- int32_t lookahead;
- TSSymbol result_symbol;
- void (*advance)(TSLexer *, bool);
- void (*mark_end)(TSLexer *);
- uint32_t (*get_column)(TSLexer *);
- bool (*is_at_included_range_start)(const TSLexer *);
- bool (*eof)(const TSLexer *);
-};
-
-typedef enum {
- TSParseActionTypeShift,
- TSParseActionTypeReduce,
- TSParseActionTypeAccept,
- TSParseActionTypeRecover,
-} TSParseActionType;
-
-typedef union {
- struct {
- uint8_t type;
- TSStateId state;
- bool extra;
- bool repetition;
- } shift;
- struct {
- uint8_t type;
- uint8_t child_count;
- TSSymbol symbol;
- int16_t dynamic_precedence;
- uint16_t production_id;
- } reduce;
- uint8_t type;
-} TSParseAction;
-
-typedef struct {
- uint16_t lex_state;
- uint16_t external_lex_state;
-} TSLexMode;
-
-typedef union {
- TSParseAction action;
- struct {
- uint8_t count;
- bool reusable;
- } entry;
-} TSParseActionEntry;
-
-typedef struct {
- int32_t start;
- int32_t end;
-} TSCharacterRange;
-
-struct TSLanguage {
- uint32_t version;
- uint32_t symbol_count;
- uint32_t alias_count;
- uint32_t token_count;
- uint32_t external_token_count;
- uint32_t state_count;
- uint32_t large_state_count;
- uint32_t production_id_count;
- uint32_t field_count;
- uint16_t max_alias_sequence_length;
- const uint16_t *parse_table;
- const uint16_t *small_parse_table;
- const uint32_t *small_parse_table_map;
- const TSParseActionEntry *parse_actions;
- const char * const *symbol_names;
- const char * const *field_names;
- const TSFieldMapSlice *field_map_slices;
- const TSFieldMapEntry *field_map_entries;
- const TSSymbolMetadata *symbol_metadata;
- const TSSymbol *public_symbol_map;
- const uint16_t *alias_map;
- const TSSymbol *alias_sequences;
- const TSLexMode *lex_modes;
- bool (*lex_fn)(TSLexer *, TSStateId);
- bool (*keyword_lex_fn)(TSLexer *, TSStateId);
- TSSymbol keyword_capture_token;
- struct {
- const bool *states;
- const TSSymbol *symbol_map;
- void *(*create)(void);
- void (*destroy)(void *);
- bool (*scan)(void *, TSLexer *, const bool *symbol_whitelist);
- unsigned (*serialize)(void *, char *);
- void (*deserialize)(void *, const char *, unsigned);
- } external_scanner;
- const TSStateId *primary_state_ids;
-};
-
-static inline bool set_contains(TSCharacterRange *ranges, uint32_t len, int32_t lookahead) {
- uint32_t index = 0;
- uint32_t size = len - index;
- while (size > 1) {
- uint32_t half_size = size / 2;
- uint32_t mid_index = index + half_size;
- TSCharacterRange *range = &ranges[mid_index];
- if (lookahead >= range->start && lookahead <= range->end) {
- return true;
- } else if (lookahead > range->end) {
- index = mid_index;
- }
- size -= half_size;
- }
- TSCharacterRange *range = &ranges[index];
- return (lookahead >= range->start && lookahead <= range->end);
-}
-
-/*
- * Lexer Macros
- */
-
-#ifdef _MSC_VER
-#define UNUSED __pragma(warning(suppress : 4101))
-#else
-#define UNUSED __attribute__((unused))
-#endif
-
-#define START_LEXER() \
- bool result = false; \
- bool skip = false; \
- UNUSED \
- bool eof = false; \
- int32_t lookahead; \
- goto start; \
- next_state: \
- lexer->advance(lexer, skip); \
- start: \
- skip = false; \
- lookahead = lexer->lookahead;
-
-#define ADVANCE(state_value) \
- { \
- state = state_value; \
- goto next_state; \
- }
-
-#define ADVANCE_MAP(...) \
- { \
- static const uint16_t map[] = { __VA_ARGS__ }; \
- for (uint32_t i = 0; i < sizeof(map) / sizeof(map[0]); i += 2) { \
- if (map[i] == lookahead) { \
- state = map[i + 1]; \
- goto next_state; \
- } \
- } \
- }
-
-#define SKIP(state_value) \
- { \
- skip = true; \
- state = state_value; \
- goto next_state; \
- }
-
-#define ACCEPT_TOKEN(symbol_value) \
- result = true; \
- lexer->result_symbol = symbol_value; \
- lexer->mark_end(lexer);
-
-#define END_STATE() return result;
-
-/*
- * Parse Table Macros
- */
-
-#define SMALL_STATE(id) ((id) - LARGE_STATE_COUNT)
-
-#define STATE(id) id
-
-#define ACTIONS(id) id
-
-#define SHIFT(state_value) \
- {{ \
- .shift = { \
- .type = TSParseActionTypeShift, \
- .state = (state_value) \
- } \
- }}
-
-#define SHIFT_REPEAT(state_value) \
- {{ \
- .shift = { \
- .type = TSParseActionTypeShift, \
- .state = (state_value), \
- .repetition = true \
- } \
- }}
-
-#define SHIFT_EXTRA() \
- {{ \
- .shift = { \
- .type = TSParseActionTypeShift, \
- .extra = true \
- } \
- }}
-
-#define REDUCE(symbol_name, children, precedence, prod_id) \
- {{ \
- .reduce = { \
- .type = TSParseActionTypeReduce, \
- .symbol = symbol_name, \
- .child_count = children, \
- .dynamic_precedence = precedence, \
- .production_id = prod_id \
- }, \
- }}
-
-#define RECOVER() \
- {{ \
- .type = TSParseActionTypeRecover \
- }}
-
-#define ACCEPT_INPUT() \
- {{ \
- .type = TSParseActionTypeAccept \
- }}
-
-#ifdef __cplusplus
-}
-#endif
-
-#endif // TREE_SITTER_PARSER_H_